@charset "utf-8";
/* CSS Document */

body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-image: url(media/bg.jpg);
	background-repeat: repeat-x;
	background-color: #dff2f8;
}
body,td,th {
	color: #0199CB;
	font-family: Helvetica, Arial, sans-serif;
}
.twoColFixRtHdr #container { 
	width: 870px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	height:100%;
} 
.twoColFixRtHdr #header { 
height: 66px;
background-image: url(media/hdr.jpg);
padding-left: 15px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 25px;
padding-bottom: 25px;
padding-right: 15px;
} 
.twoColFixRtHdr #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 */

}
.twoColFixRtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* 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;
}
.twoColFixRtHdr #mainContent { 
	background-image: url(media/vcbg.jpg);
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height:100%;
} 
.twoColFixRtHdr #footerhr { 
	background-image: url(media/footerdivide.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	margin-bottom: 4px;
	height: 1px;
} 
.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;
}
.style2 {
	font-size: large;

}
#style4 {
	font-size: x-small;
	color: #666666;
	padding-top: 5px;
	}
	
	.arrowlistmenu{
width: 220px; /*width of menu*/
}

.arrowlistmenu .headerbar{
font: bold 16px Arial;
color: white;
background: black url(media/titlebar.png) repeat-x center left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
}

.arrowlistmenu ul{
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #0199CB;
background: url(media/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: 
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #666666;
background-color: ;
}
.style5 {font-size: small; color: #666666; }
.style6 {font-size: small}
.style7 {font-size: x-large}
.style9 {font-size: large; color: #0199CB; }
.style10 {color: #58BADD}
.style11 {color: #0099CB}
a:link {
	color: #0099CB;
}
a:visited {
	color: #0099CB;
}
a:hover {
	color: #006699;
}
a:active {
	color: #0099CB;
}
