@charset "utf-8";
/* ------------------------------
global styles
------------------------------ */
body  {
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #313131;
	background-color: #FFFFFF;
	text-align: left;
}

a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	color: #0E074F;
}

a:link { 
	color: #0E074F; 
}
a:visited { 	
	color: #0E074F;
	 
}
a:hover	{ 
	color: #FFFFFF; 
	background-color: #0E074F;
}
a:active {
 	color: #FFFFFF; 
	background-color: #0E074F;
	}

h1 {
	color: #0E074F;
 	font: bold 20px georgia, Verdana, Arial, Helvetica, sans-serif;
 }

h2 {
	color: #0E074F;
 	font: bold 17px georgia, Verdana, Arial, Helvetica, sans-serif;
 }

h3 {
	color: #313131;
 	font: bold 14px georgia, Verdana, Arial, Helvetica, sans-serif;
 }
 
 h4 {
	color: #313131;
 	font: italic bold 12px Verdana, Arial, Helvetica, sans-serif;
 }
 
 li {
	line-height: 16px;	 
 }
 
  tr td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #313131;
 }
 /* ------------------------------
container styles
------------------------------ */
#container {
	width: 960px;
	text-align: left;
	background: #FFFFFF;
}

.darkblue {
	color: #0E074F;
}

.white {
	color: #FFFFFF;
}

.bluebg {
	color: #FFFFFF;
	background-color: #0E074F;
}

.xsmall {
	font-size: x-small;
}

/* ------------------------------
header styles
------------------------------ */
#header { 
} 
#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* ------------------------------
marquee  styles
------------------------------ */
#marquee { 
} 
#marquee 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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* ------------------------------
sidebar1 styles
------------------------------ */
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* 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 15px;
}

#sidebar1 {
}

#sidebar2 {
	text-align: center;
}

/* ------------------------------
maintext  styles
------------------------------ */
#mainContent {
	margin: 0 0 0 210px; /* 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 */
	font-size: 12px;
	border-left-style: solid;
	border-left-color: #7F7CA3;
	border-left-width: thick;
} 

/* ------------------------------
boxes
------------------------------ */
.boxborder {
	border: 3px solid #B6B3CB;
	padding: 5px;
	text-align: center;
	float: left;
	margin: 5px;
	} 


/* ------------------------------
footer styles
------------------------------ */
#footer {
	height: 20px;
	background-color: #0E074F;
	color: #FFFFFF;
	font-size: x-small;
	padding-left: 10px;
	}

#footer ul {
border: 0;
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

#footer ul li {
	display: block;
	float: right;
	text-align: center;
	padding: 0;
	margin: 0;
}

#footer ul li a {
	background: #B21E23;
	color: #FFFFFF;
	width: 78px;
	height: 18px;
	padding: 0;
	text-decoration: none;
	display: block;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	font-variant: normal;
	}

#footer ul li a:visited {
	color: #FFFFFF;
}
#footer ul li a:hover {
	color: #000000;
	background: #989898;
}



/* ------------------------------
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;
}

