@charset "utf-8";
body  {
	font: 62.5% Arial, Helvetica, sans-serif;
	background: #fff;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #170c3f;
}

html { overflow: -moz-scrollbars-vertical !important; }


/* PAGE LAYOUT */

.twoColFixLtHdr #container { 
	width: 778px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-left: 1px solid #bababa;
	border-right: 1px solid #bababa;
} 
.twoColFixLtHdr #header { 
	padding: 20px 0 0px 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.twoColFixLtHdr #navigation { 
	padding: 0px 0 0px 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 20px 30px 20px 10px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 240px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 10px 20px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixLtHdr #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: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}

.popupWindow {
    padding: 15px;
}

ul {
    text-align: left;
    list-style-type: disc;
    list-style-position:outside;
} 

ul li {
    margin-left: 0;
    line-height: 1.6em;
	font-size: 1.3em;
	font-weight: normal;
}


/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}


h1 {
	color: #2a166d;
	font-size: 2.8em;
	font-weight: bold;
	text-align: left;
}

h2 {
	color: #2a166d;
	font-size: 2.4em;
	font-weight: bold;
	text-align: left;
}

h3 {
	color: #2a166d;
	font-size: 1.8em;
	font-weight: normal;
	text-align: left;
}
h4 {
	color: #0faff0;
	font-size: 1.8em;
	font-weight: normal;
	text-align: left;
}

p {
	line-height: 1.6em;
	font-size: 1.3em;
	font-weight: normal;
	text-align: justify;
}



.text_h2 {
	color: #0faff0;
	line-height: 1.2em;
	font-size: 1.8em;
	font-weight: normal;
	text-align: left;
}

.text_h3 {
	color: #0faff0;
	line-height: .8em;
	font-size: 1.6em;
	font-weight: normal;
	text-align: left;
	padding-top: 10px;
}
.text_h4 {
	color: #0faff0;
	line-height: 1.2em;
	font-size: 2.0em;
	font-weight: normal;
	text-align: left;
}

.text_info {
	line-height: 1.6em;
	font-size: 1.2em;
	font-weight: normal;
	text-align: justify;
}
.text_info_blue {
	color: #0faff0;
	line-height: 1.6em;
	font-size: 1.2em;
	font-weight: bold;
	text-align: justify;
}

.text_body {
	line-height: 1.8em;
	font-size: 1.3em;
	font-weight: normal;
	text-align: justify;
}

.text_footer {
	color: #444444;
	line-height: 1.2em;
	font-size: 1.0em;
	font-weight: normal;
	text-align: left;
}

/* IMAGES */

.img_main_preview {
	border: 2px;
	border-color: #d20121;
	border-style: solid;
	height: 100px;
	width: 100px;
	margin-right: 10px;
	margin-bottom: 20px;
}

.img_tag {
	border: 0px;
	width: 200px;
	margin-bottom: 5px;
}

.img_nav {
	border: 0px;
	height: 40px;
}

.img_table {
	border: 0px;
	margin-right: 20px;
}

.img_menu_title {
	border: 0px;
	width: 270px;
	height: 36px;
	margin-bottom: 5px;
	margin-top: 10px;
}

.img_photo {
	border: #bababa 1px solid;
	padding: 4px;
}




/* LINKS */

A:link {
	text-decoration: none;
	color: #00a7e3;
}
A:visited {
	text-decoration: none;
	color: #00a7e3;
}
A:active {
	text-decoration: underline;
	color: #00a7e3;
}
A:hover {
	text-decoration: underline; 
	color: #00a7e3;
}