@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	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: #000000;
}

p {
	margin: 0;
	padding: 5px 0px;
}

.template #container { 
	width: 820px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.template #header { 
	background: #163764; 
	height:20px;
	margin:0;
} 


.template .topLtBlueBox{
	background:#73a5d6;
	width:100px;
	height:60px;
	border:1px solid #fff;
	font-size:11px;
}
.template .greenBox{
	background:#749f83;
	width:100px;
	height:115px;
	border:1px solid #fff;
}
.template .longLtBlueBox {
	background: #a5c4e3;
	width:100px;
	height:395px;
	border:1px solid #fff;
}
.template .navBlueBox {
	background: #145690;
	width:100px;
	height:20px;
	border:1px solid #fff;
}
/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.template #headTable {
	margin:0;
	padding:0;
}
.template #headBlueBox {
	border:1px solid #fff;
	height:60px;
	width:600px;
	background: #145690;
}
.template #headImgs {
	height:116px;
	border:1px solid #fff;
	overflow:hidden;
}
.template #navBar {
	height:20px;
	border:1px solid #fff;
	background:#163764;
	color:#fff;
	font-size:12px;
}
.template #navList {
	margin:3px 0;
}
.template #navList ul{
	display:inline;
	margin-left:-20px;
}
.template #navList li{
	display:inline;
	list-style:none;
	padding:3px 15px;
	color:#749f83;
}
.template #navList li a{
	color:#fff;
	text-decoration:none;
	font-weight:normal;
}
.template #navList li a:hover{
	color:#749f83;
	text-decoration:none;
}
.template #navList li:hover, .template #navList sf.hover{
	background:#316b9d;
}
.template #mainContent { 
	margin: 0 100px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	height:600px;
	width:603px;
}
.template #contentDiv{
	border:1px solid #fff;
}

.template #content{
	padding:20px;
	width:350px;
	font-size:12px;
	color:#14578e;
}
.template #contentSideBar{
	background:#749f83;
	padding: 20px 10px;
	width:190px;
	font-size:12px;
	color:#14578e;
}

.template .whitLinks {
	color: #fff;
	text-decoration: underline;
}


.template #footer { 
	background:#163764;
	border-top: 1px solid #fff;
	margin:0;
	height:20px;
	text-align: center;
	color: #fff;
	font-style: italic;
	font-weight: bold;
	font-size: 12px;
} 

.template #acerDiv {
	text-align:center;
	font-size:9px;
	padding:3px;
}
.template #acerDiv a{
	color:#a5c4e3;
	text-decoration:none;
}

.template #acerDiv a:hover{
	color:#163764;
	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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.imgBorder {
	border: 3px solid #145690;
}