body  {
	background: #65686a;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
}
 .form {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: #E4E4E2;
	border: 1px solid #545452;
	width: 230px;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.thrColElsHdr #container {
	width: 996px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FFFFFF;
	height: auto;
} 
.thrColElsHdr #header {
	background-image: url(images/top_b.gif);
	background-repeat: no-repeat;
	background-position: top;
	height: auto;
	width: auto;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
} 
.top_nav {
	float: left;
	height: auto;
	width: auto;
	vertical-align: top;
}

.thrColElsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/

.thrColElsHdr #sidebar2 {
	float: right;
	width: 347px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	text-align: left;
	vertical-align: top;
	background-color: #FFFFFF;
	position: static;
}
.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.landing {
	background-image: url(images/fix-landing.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #FFF;
}



.maincontent {
	margin-top: 0px;
	margin-bottom: 0;
	margin-left: 0em;
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	vertical-align: top;
	width: 610px;
	position: relative;
	float: left;
	height: auto;
	padding: 0px;
} 

.maincontent h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #235E9B;
	margin-bottom: 15px;
	padding-bottom: 0px;
	height: auto;

} 
.footer {
	background-image: url(images/bottom_b.gif);
	background-repeat: no-repeat;
	background-position: top;
	background-color: #65686A;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 25px;
	margin-top: 0px;
} 
.footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 15px;
	font-weight: bold;
	color: #bac0c4;
}

.footer a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 15px;
	font-weight: bold;
	color: #bac0c4;
	text-decoration: none;
}

.footer2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 15px;
	color: #a2a8ab;
	text-decoration: none;
}

.black {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 15px;
	color: #333;
	text-decoration: none;
}



/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.left_shadow {
	height: 100%;
	width: 16px;
	vertical-align: top;
	background-image: url(images/left.jpg);
	background-repeat: repeat-y;
	margin-bottom: 0px;
}
.right_shadow {
	height: 100%;
	width: 23px;
	vertical-align: top;
	background-image: url(images/right.jpg);
	background-repeat: repeat-y;
	margin-bottom: 0px;
}

.main_home h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #235e9b;
	margin-top: 0px;
	text-align: left;
} 
.main_home {
	vertical-align: top;
	width: auto;
	padding-top: 25px;
	padding-right: 50px;
	padding-bottom: 35px;
	padding-left: 60px;
	height: auto;
	position: inherit;
}
.main_home p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	padding-top: 5px;
	margin: 0px;
	text-align: justify;
	text-indent: 20px;
}


.main_home a{
	color: #61615F;
	font-weight: bold;

}
.sub {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #636361;
	margin-top: 0px;
	font-weight: bold;
	margin-left: 0px;
	padding-left: 45px;
	padding-top: 0px;
}

.redinside {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #535353;
	font-weight: bold;
	text-align: left;

}
.sub li{
	margin-top: 0px;
	list-style-position: outside;
	list-style-image: url(images/list.jpg);
	padding-bottom: 10px;
}

.sidebar2_inside {
	width: 305px;
	padding-left: 8px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	padding-top: 30px;
}
.table_sidebar {
	width: 220px;
	text-align: left;
	padding-left: 25px;
	margin-bottom: 0px;
	padding-bottom: 20px;
	margin-top: -5px;
	padding-top: 20px;
	background-color: #eae8e8;
	padding-right: 20px;
	margin-left: 25px;
}

.table_sidebar p{
	text-align: justify;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.table_sidebar a{
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #A5223E;
	font-weight: bold;
	text-decoration: none;
}




.table_sidebar2 {
	width: 245px;
	padding-left: 20px;
	margin-bottom: 0px;
	padding-bottom: 20px;
	margin-top: -5px;
	padding-top: 20px;
	background-color: #eae8e8;
	margin-left: 29px;
}
.table_sidebar2 p{
	text-align: justify;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	width: 140px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	display: block;
	white-space: normal;

  overflow: hidden; 
}


.table_sidebar2 a{
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #A5223E;
	font-weight: bold;
	text-decoration: none;
}
.table_image {
	width: 95px;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	position: absolute;
	padding: 0px;
	left: 7.771in;
}

.sidebar1 {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	text-align: left;
	vertical-align: top;
	background-color: #FFFFFF;
	height: auto;
	width: 261px;
	padding: 0px;
	float: left;
	margin-top: 0px;
}

.maincontentInside {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0em;
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	vertical-align: top;
	width: 696px;
	float: right;
} 

.main_inside {
	vertical-align: top;
	width: auto;
	padding-top: 15px;
	padding-right: 60px;
	padding-bottom: 10px;
	padding-left: 60px;
	height: auto;
	position: inherit;
	margin: -3px;
}
.main_isnide p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-indent: 20px;
}

.main_insideTemplate h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235e9b;
	margin-top: 0px;
	font-weight: bold;
	text-align: center;
} 
.main_insideTemplate {
	vertical-align: top;
	width: auto;
	padding-top: 35px;
	padding-right: 65px;
	padding-bottom: 25px;
	padding-left: 60px;
	height: auto;
	text-align: justify;
}

.main_insideTemplate p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	padding-top: 5px;
	margin-top: 0px;
	text-indent: 10px;
}

.main_insideTemplate h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #235E9B;
	margin-bottom: 0px;
	padding-bottom: 0px;
	height: auto;
	margin-top: 0px;

} 
#check {
	float: left;
	height: 20px;
	margin-right: 8px;
	clear: left;
}
#question p {
}


.main_insideTemplate h3{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #626466;
	margin-bottom: 0px;
	padding-bottom: 0px;
	height: auto;

} 
.maincontentInsidecontact {
	margin-top: 0;
	margin-bottom: 0;
	vertical-align: top;
	width: 365px;
	float: left;
	background-image: url(images/back_main_home.jpg);
	background-position: top;
	background-repeat: repeat-x;
	height: auto;
	background-color: #FFF;
}
.contact {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #565654;
	margin-top: 2px;
	font-weight: bold;
	margin-left: 0px;
	padding-left: 0px;
	padding-top: 2px;
}
.sidebar1Contact {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	text-align: left;
	vertical-align: top;
	height: auto;
	width: 260px;
	float: right;
	padding-top: 38px;
	padding-right: 35px;
	padding-bottom: 30px;
	padding-left: 30px;
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
}

.sidebar1Contact P{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	text-indent: 10px;
	margin-top: 0px;
}

.sidebar1Contact h2{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #235E9B;
	text-align: left;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 19px;
	margin-left: 0px;
	padding: 0px;
}
.main_insideTemplate2 p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	margin-top: 0px;
	padding: 0px;
}
.main_insideTemplate2 {
	vertical-align: top;
	width: auto;
	padding-top: 35px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	height: auto;
	text-align: justify;
	float: left;
}
.main_insideTemplate2 h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #235E9B;
	margin-bottom: 0px;
	padding-bottom: 0px;
	height: auto;
}
.main_insideTemplate2 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235E9B;
	margin-top: 0px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.boton {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	background-color: #A71633;
	border: 1px solid #545452;
	font-weight: bold;
}
.sidebar2_inside2 {
	width: 305px;
	padding-left: 8px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	padding-top: 20px;
}
.sidebar1Contact li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
}
.sidebar1Contact ul {
	margin-top: 0px;
	margin-left: 10px;
	padding-left: 10px;
}
.main_insideTemplate li {
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	padding-top: 5px;
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 0px;
}

.main_insideTemplate a {
	font-size: 11px;
	line-height: 16px;
	color: #626466;
	padding-top: 5px;
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 0px;
	text-align: left;
}
.main_insideTemplate ul {
	margin-left: 15px;
	padding-left: 15px;

}
.top_nav_shadow {
	height: 16px;
	vertical-align: top;
	background-image: url(images/top_b.gif);
}
.sidebar1Contact a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	text-indent: 10px;
	margin-top: 0px;
}
#container table tr td .maincontentInside .main_insideTemplate h4 {
	font-family: Arial, Helvetica, sans-serif;
	color: #0251E1;
	font-size: 1.2em;
}
#container table tr td .maincontentInside .main_insideTemplate h4 strong u a {
	font-size: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	color: #0251E1;
}
.main_insideTemplate h5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235e9b;
	margin-top: 0px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 5px;
	padding-bottom: 0px;
}
.main_insideTemplate2 h5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235E9B;
	margin-top: 0px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 30px;
}
#inside {
	background-repeat: repeat-x;
	background-position: top;
	height: 2300px;
	margin: 0px;
	padding: 0px;
}
#diagram {
	width: 590px;
	float: left;
	height: auto;
	background-image: url(images/back.jpg);
	background-repeat: repeat-x;
	background-color: #FFF;
}
.sidebar1Contact2 {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	text-align: left;
	vertical-align: top;
	height: auto;
	width: 410px;
	float: left;
	padding-top: 15px;
	padding-right: 35px;
	padding-left: 30px;
	background-image: url(images/back_main_home2.jpg);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
	border-right-width: 1px;
	border-right-color: #0FB2F5;
	background-color: #F8F2F2;
}
#space {
	width: 260px;
	float: left;
	background-image: url(images/back_main_home2.jpg);
	background-repeat: repeat-x;
	background-color: #F7F1F1;
	height: 1000px;
}

.sidebar1Contact2  a {
	color: #626466;
}

.sidebar1Contact2 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
}
.sidebar1Contact2 ul {
	margin-top: 0px;
	margin-left: 10px;
	padding-left: 10px;
}
.sidebar1Contact2 h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #235E9B;
	text-align: left;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 19px;
	margin-left: 0px;
	padding: 0px;
}
.sidebar1Contact2 P {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
}
.boton2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 25px;
	color: #FFFFFF;
	background-color: #ae344d;
	border: 1px solid #9AA2C9;
	font-weight: bold;
	text-decoration: none;
}
.sidebar-graph {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	background-repeat: repeat-x;
	background-position: top;
	text-align: center;
	vertical-align: top;
	height: auto;
	width: 261px;
	float: right;
	margin-top: 22px;
	margin-left: 25px;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.sidebar-graph a {
	text-decoration: none;
}
.form2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: #E4E4E2;
	border: 1px solid #545452;
	width: 250px;
}
#diagram2 {
	width: 590px;
	float: left;
	height: 550px;
	background-image: url(images/back.jpg);
	background-repeat: repeat-x;
}
.boton3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	background-color: #ae344d;
	border: 1px solid #9AA2C9;
	font-weight: bold;
	text-decoration: none;
}
.sidebar-graph h3 {
	color: #AF3951;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
}
.sidebar-graph-con {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	background-repeat: repeat-x;
	background-position: top;
	text-align: center;
	vertical-align: top;
	height: auto;
	width: 261px;
	float: right;
	margin-top: 10px;
	margin-left: 0px;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.sidebar-graph-con a {
	text-decoration: none;
}
.sidebar-graph-con h3 {
	color: #AF3951;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
}
.sidebar1Contact3 {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	text-align: left;
	vertical-align: top;
	height: auto;
	width: 310px;
	float: left;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 30px;
	padding-left: 0px;
	background-image: url(images/back_main_home2.jpg);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
	border-right-width: 1px;
	border-right-color: #0FB2F5;
}
.sidebar1Contact3 a {
	color: #626466;
}
.sidebar1Contact3 li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
}
.sidebar1Contact3 ul {
	margin-top: 0px;
	margin-left: 10px;
	padding-left: 10px;
}
.sidebar1Contact3 h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #235E9B;
	text-align: left;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 19px;
	margin-left: 0px;
	padding: 0px;
}
.sidebar1Contact3 P {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
}
.sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #AE344D;
}
.sidebar1 a {
	font-size: 12px;
	color: #626466;
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
}
.boton4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 19px;
	color: #FFFFFF;
	background-color: #ae344d;
	border: 1px solid #9AA2C9;
	font-weight: bold;
	text-decoration: none;
	margin-right: 8px;
}

.sidebar1Contact-landing li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
}
.sidebar1Contact-landing ul {
	margin-top: 0px;
	margin-left: 10px;
	padding-left: 10px;
}
.sidebar1Contact-landing h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #235E9B;
	text-align: left;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 19px;
	margin-left: 0px;
	padding: 0px;
}
.sidebar1Contact-landing {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	text-align: left;
	vertical-align: top;
	height: auto;
	width: 410px;
	float: left;
	padding-top: 50px;
	padding-right: 35px;
	padding-bottom: 0%;
	padding-left: 30px;
	background-image: url(images/back_main_home2.jpg);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
	border-right-width: 1px;
	border-right-color: #0FB2F5;
	background-color: #F9F3F3;
}
.sidebar1Contact-landing P {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	text-align: justify;
	margin-top: 0px;
	padding-left: 20px;
}
.sidebar1Contact-landing a {
	color: #626466;
}
#question_1 {
}
#question_1 h3 {
	color: #235E9B;
}
#question h3 {
	color: #235E9B;
	font-size: 15px;
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	margin-bottom: 10px;
}
#question p {
	color: #666;
	padding-left: 0px;
	text-align: left;
	margin-left: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 5px;
}
#question {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #666;
	line-height: 17px;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666;
	padding-bottom: 5px;
}
.main_insideTemplate_quiz {
	vertical-align: top;
	width: auto;
	padding-top: 35px;
	padding-right: 45px;
	padding-bottom: 25px;
	padding-left: 55px;
	height: auto;
}
.main_insideTemplate_quiz h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235e9b;
	margin-top: 0px;
	font-weight: bold;
	text-align: left;
}
.main_insideTemplate_quiz h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	font-weight: bold;
	color: #666;
	margin-bottom: 20px;
	padding-bottom: 0px;
	height: auto;
	margin-top: 0px;
	padding-top: 5px;
}
#ques {

}
#ques {
	height: auto;
	padding-bottom: 5px;
}
#form-inside {
	width: 500px;
	float: left;
	padding-bottom: 10px;
	clear: left;
}
.main_insideTemplate_quiz h1 {
	color: #000;
}
#form-quiz {
	overflow: hidden;
}
.main_insideTemplate_quiz p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	color: #666;
	line-height: 16px;
	font-weight: normal;
}
.main_insideTemplate_quiz h4 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: italic;
	font-weight: normal;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.main_insideTemplate_quiz h5 {
	color: #035398;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14pt;
	text-align: center;
	font-weight: bold;
}
.main_insideTemplate_quiz h6{
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 13pt;
	font-weight: bold;
	border: 2px solid #333;
	padding: 5px;
	width: 300px;
	text-align: center;
	margin: 0px;
	background-color: #FFF;
}

.main_insideTemplate_quiz p strong {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	color: #666;
	line-height: 16px;
	font-weight: normal;
}

.main_insideTemplate_quiz strong {
	font-weight: bold;
	color: #0251E1;
}
.main_insideTemplate_quiz b {
	font-weight: bold;
	color: #0251E1;
}

.main_insideTemplate_quiz h1 strong {
	font-weight: bold;
	color: #000;

}


.sidebar-quiz {
	float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	background-image: url(images/stripe3.jpg);
	background-repeat: repeat-y;
	background-position: top;
	text-align: left;
	vertical-align: top;
	background-color: #FFFFFF;
	height: 100%;
	width: 261px;
	padding: 0px;
	float: left;
	margin-top: 0px;
	overflow: visible;
}

.main_insideTemplate_quiz h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	margin: 0px;
	padding: 0px;
}
#thnaks-inside {
	padding-right: 50px;
}
.botonquiz {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	background-color: #ae344d;
	font-weight: bold;
	text-decoration: none;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 3px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #666;
}
.sidebar-quiz table {
}
.white {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.border {
	border: 1px solid #969696;
}
.sidebar2_inside-download {
	width: 305px;
	padding-left: 8px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
}
#main-white {
	width: 695px;
	overflow: hidden;
	background-image: url(images/back_main_home.jpg);
	background-position: top;
	background-repeat: repeat-x;
	height: 100%;
	float: left;
}
#text-whitefla {
	width: 645px;
	margin-left: 20px;
	margin-right: 30px;
}

#text-whitefla h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235E9B;
	margin-top: 0px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

#text-whitefla h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #235E9B;
	margin-bottom: 0px;
	padding-bottom: 0px;
	height: auto;
}

#text-whitefla p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	margin-top: 0px;
	padding: 0px;
	text-align: justify;
	
}

#flash {
float: left
	width: 329px; /* top and bottom padding create visual space within this div */
	text-align: left;
	vertical-align: top;
	height: auto;
	width: 280px;
	float: right;
	padding-top: 38px;
	padding-right: 10px;
	padding-bottom: 30px;
	padding-left: 10px;
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
}

#flash h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	font-weight: bolder;
	color: #A1203E;
	margin-bottom: 0px;
	padding-bottom: 10px;
	margin-top: 0px;
	padding-top: 0px;
	text-align: center;
}
#download h5 a {
	font-size: 14px;
	color: #235E9B;
	font-weight: bold;
	text-align: left;
}
#mandatory {
	font-size: 10px;
	font-style: italic;
	color: #333;
	text-align: right;
	padding-right: 10px;
	font-family: Arial, Helvetica, sans-serif;
}




.sidebarnew {
	width: 329px; /* top and bottom padding create visual space within this div */
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	text-align: left;
	vertical-align: top;
	background-color: #FFFFFF;
	height: auto;
	width: 305px;
	padding: 0px;
	float: left;
	margin-top: 0px;
}


.main_insideTemplateNew {
	vertical-align: top;
	width: auto;
	padding-top: 35px;
	padding-right: 45px;
	padding-bottom: 25px;
	padding-left: 40px;
	height: auto;
	text-align: justify;
	float: left;
}

.main_insideTemplateNew p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	padding-top: 5px;
	margin-top: 0px;
	text-indent: 0px;
}

.main_insideTemplateNew h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #235E9B;
	margin-bottom: 0px;
	padding-bottom: 15px;
	height: auto;	
text-align: center;

} 
.main_insideTemplateNew h3{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #626466;
	margin-bottom: 0px;
	padding-bottom: 0px;
	height: auto;

} 

.main_insideTemplateNew h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235e9b;
	margin-top: 0px;
	font-weight: bold;
	text-align: center;
} 

.main_insideTemplateNew ul {
	margin-left: 15px;
	padding-left: 15px;

}

.main_insideTemplateNew li {
	font-size: 12px;
	line-height: 16px;
	color: #626466;
	padding-top: 5px;
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 0px;
}


.maincontentInsideNew {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0em;
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	vertical-align: top;
	width: 652px;
	float: left;
} 




.sidebarnewcont {
	width: 329px; /* top and bottom padding create visual space within this div */
	background-image: url(images/back_main_home.jpg);
	background-repeat: repeat-x;
	background-position: top;
	text-align: left;
	vertical-align: top;
	background-color: #FFFFFF;
	height: auto;
	width: 290px;
	float: left;
	margin-top: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.main_insideTemplate2 h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #235E9B;
	margin-top: 0px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 30px;
}
