@charset "UTF-8";
body  {
	font: 11px 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: #666666;
}

h1 {
	color: #005581;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	margin: 10px 0px 0px 0px;
	padding: 0;
}

h2 {
	color: #c41230;
	font-size: 12px;
	margin: 0;
	padding: 0;
}

h3 {
	color: #333333;
	font-size: 11px;
	padding: 5px 10px 0px 10px;
	margin: 5px 10px 5px 10px;
}

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

/********************* List Styles *********************/

ul {
	
	/*list-style: disc url(../images/bullet.gif) inside;*/
	
	/*text-indent: -1em;*/
	padding: 2px 10px 10px 10px; /* added 4/14 by nk */
	margin: 0px 0px 0px 30px;    /* added 4/14 by nk */
	
}
	
ul li {
	
    background-position:0 5px;
}
	
ul ul{
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
	}
	
ul ul li{
	padding: 5px 2px 5px 12px;
	background:none;
}


/********************* Link Styles *********************/


a {
	text-decoration: none;
	color: #FFFFFF;
}

a:link {
	text-decoration: none;
	color: #FFFFFF;
}

a:visited {
	text-decoration: none;
	color: #FFFFFF;
}

a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

/************* #login styles ***************/

#loginForm{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: right;
	color: #F5f5f5;
	width: 400px;
	text-align: right;	
}

#login{
	padding: 0px 0px 0px 0px;
	font-size: 9px;
	color: #f5f5f5;
}

.login a{
	padding: 0px 0px 0px 0px;
	font-size: 75%;
	color: #D5B664;

}

#login form{
	margin: 0px;
	padding: 0px;
	font-size: 10px;
	background: transparent;	
}

#login input{
	margin: 0px;
	padding: 0px;
	border: 1px solid #B7ABB7;
	clear: both;
	background: transparent;
	color:#ffffff;
}

#login .text {
	font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
	font-size: 9px;
	width: 50px;
	margin-right: 6px;
	color: #A498B0;
	background: transparent;
	padding: 2px 2px 2px 2px;
}

/*.style input {
	background: transparent;
}*/

#login label{
	display: block;
	margin: 0px;
	padding: 0px 0px 2px 0px;
	color: #f5f5f5;
	text-transform: uppercase;
	font-size: 10px;
}

#login .buttons {
	font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
	font-size: 9px;
	background-color: #ffffff;
	color: #b72f34;
	margin-right: 6px;
	border: 1px solid #D5B664;
	width: 16px;
	clear: both;
}

/********************* Build Styles *********************/

.twoColFixLtHdr #container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #a3cbee;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColFixLtHdr #utils {
	width: 950px;
	margin: 0 auto;
	background-image: url(../images/utils_bg.jpg);
	background-repeat: no-repeat;
	padding: 4px 0px 4px 0px;
	font-size: 10px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #util_left {
	padding: 0px 10px 0px 10px;
	width:400px;
	float:left;
}


.twoColFixLtHdr #navBar {
	padding: 4px 0px 4px 10px;
	background-color: #c41230;
	color: #FFFFFF;
	border-bottom: 6px solid #005581;
}

.twoColFixLtHdr #navBar a {
	text-decoration: none;
	color: #FFFFFF;
	padding: 2px 4px 2px 4px;
}

.twoColFixLtHdr #navBar a:link {
	text-decoration: none;
	color: #FFFFFF;
	padding: 2px 4px 2px 4px;
}

.twoColFixLtHdr #navBar a:visited {
	text-decoration: none;
	color: #FFFFFF;
	padding: 2px 4px 2px 4px;
}

.twoColFixLtHdr #navBar a:hover {
	text-decoration: none;
	color: #538dc4;
	background-color: #FFFFFF;
	padding: 2px 4px 2px 4px;
}
 
.twoColFixLtHdr #header {  
	padding: 0px 0px 0px 0px;  /* 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 #header h1 {
	margin: 0px 0px 0px 0px; /* 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: 0px 0px 0px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.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: 15px 10px 15px 20px;
	border-right: 1px dotted #cccccc;
	border-bottom: 1px dotted #cccccc;
}


.twoColFixLtHdr #sidebar1 a {
	text-decoration: none;
	color: #538dc4;
}

.twoColFixLtHdr #sidebar1 a:link {
	text-decoration: none;
	color: #538dc4;
}

.twoColFixLtHdr #sidebar1 a:visited {
	text-decoration: none;
	color: #538dc4;
}

.twoColFixLtHdr #sidebar1 a:hover {
	text-decoration: none;
	color: #b72f34;
}

.twoColFixLtHdr #sidebar1 ul {
	margin: 10px 0px 10px 0px;
	/*list-style: disc url(../images/bullet.gif) inside;*/
	padding: 0px 0px 0px 10px;
	/*text-indent: -1em;*/
	list-style-type:none;
	color: #538dc4;
	}
	
.twoColFixLtHdr #sidebar1 ul li {
	padding: 5px 0px 5px 10px;
    background:transparent url(../images/bullet.gif) no-repeat;
    background-position:0 5px;
	border-bottom: 2px dotted #cccccc;
}
	
.twoColFixLtHdr #sidebar1 ul ul{
	list-style: none;
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
	}
	
.twoColFixLtHdr #sidebar1 ul ul li{
	padding: 5px 2px 5px 12px;
	background:none;
}

.twoColFixLtHdr #adSpace {
	font-size: 10px;
}

.twoColFixLtHdr #adSpace p {
	padding: 5px 0px 0px 0px;
	margin: 5px 5px 5px 5px;
}

.twoColFixLtHdr #adSpace h4 {
	color: #c41230;
	font-size: 11px;
	margin: 0;
	padding: 0;
}
.twoColFixLtHdr #adSpace h5 {
	color: #333333;
	font-size: 10px;
	padding: 5px 0px 0px 0px;
	margin: 5px 0px 5px 0px;
}


.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 230px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.twoColFixLtHdr #mainContent a {
	text-decoration: none;
	color: #538dc4;
	font-weight: bold;
}

.twoColFixLtHdr #mainContent a:link {
	text-decoration: none;
	color: #538dc4;
	font-weight: bold;
}

.twoColFixLtHdr #mainContent a:visited {
	text-decoration: none;
	color: #538dc4;
	font-weight: bold;
}

.twoColFixLtHdr #mainContent a:hover {
	text-decoration: none;
	color: #b72f34;
	font-weight: bold;
}

.read a {
	text-decoration: none;
	color: #b72f34;
	font-size: 10px;	
}

.read a:link {
	text-decoration: none;
	color: #b72f34;
	font-size: 10px;
}

.read a:visited {
	text-decoration: none;
	color: #b72f34;
	font-size: 10px;
}

.read a:hover {
	text-decoration: underline;
	color: #005581;
	font-size: 10px;
}

.read img{
	float: left;
	padding: 4px 0px 4px 0px;
}


/**********************  Footer Styles      ********************************/

.twoColFixLtHdr #footer {
	padding: 40px 10px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
	background-image: url(../images/footer_bg.jpg);
	background-repeat: repeat-x;
	font-size: 10px;
}

.twoColFixLtHdr #logos {
	background-image: url(../images/footer_logos.jpg);
	background-repeat: no-repeat;
}

.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColFixLtHdr #footNav {
	
}

.twoColFixLtHdr #footer a {
	text-decoration: none;
	color: #b72f34;	
}

.twoColFixLtHdr #footer a:link {
	text-decoration: none;
	color: #b72f34;
}

.twoColFixLtHdr #footer a:visited {
	text-decoration: none;
	color: #b72f34;
}

.twoColFixLtHdr #footer a:hover {
	text-decoration: underline;
	color: #b72f34;
}


/**********************  Float Styles      ********************************/

.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;
}
