@charset "utf-8";
/* CSS Document */

body{
	font: 100% Arial, Helvetica, sans-serif;
	background: #999999;
	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;
}

ul, li, img, html
{
	margin: 0;
	padding: 0;
}

#container {
	width: 780px;
	margin-top: 0.5em;
	margin-bottom:1em;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #CCCCCC;
	background-image: url(../images/background2.jpg);
	background-repeat: no-repeat;
	overflow: hidden;
} 

#sidebar
{
	width:140px;
	float: left;
/*	background: #DEDFD7; */
	margin-left: 1.5em;
	margin-top: 2em;
}

/* SIDEBAR */

#sidebar ul#nav li
{
/*	border-top: 1px solid #f6f4f4;
	border-bottom: 1px solid #b2b2b2; */
	text-align: right;
	padding-right: .5em;
	line-height: 2.5em;
	font-size: .75em;
	list-style-image: none;
	list-style-type: none;
}

#sidebar ul#nav li:hover
{
/*	border-bottom: 1px solid #014B34;
	background: #CFD0CA url(images/arrow.png) 2% 50% no-repeat; */
}



ul#nav li a
{
	color: #fff;
	text-decoration: none;
}

#nav li a:hover
{
	color: #014B34;
        font-weight: bold;
	text-decoration: none;
}

#sidebar ul#nav li#in a{
        color: #014B34;
        font-weight: bold;
        font-size: 1.1em;
}

#sidebar ul#nav li#in a:hover{
        color: #fff;
        font-weight: bold;
        font-size: 1.1em;
}

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

#mainContent {
	margin-left: 16em;
	width: auto;
	height: auto;
} 

#mainContent div {
	float: left;
	margin-right: 0em;
}

#mainContent p {
	font-size: .85em;
	line-height: 1.5em;
}

#footer {
	margin-top: 1em;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #F0F0EC;
	clear: both;
} 


#footer {
	text-align: center;
	line-height: 1.2em;
	font-size: .75em;
	list-style-image: none;
	list-style-type: none;
}

#footer a
{
	color: #444444;
	text-decoration: none;
}

#footer a:hover
{
	color: #014B34;
	text-decoration: none;
	font-weight: bold;
}


/* TAB PANEL START */

#contact {
	margin-left: .5em;
}

#contact h1{
	text-align: right;
	color:#FFF;
	font-size: 1.2em;
	margin-top: 2em;
	margin-bottom: .5em;
	font-weight: normal;
	border-bottom: 1px solid #FFF;
}

#contact td {
	font-size: .80em;
	color: #FFF;
}

#contact td a{
	color:#063;
	text-decoration: none;
	font-size: 90%;
}

#contact td a:hover{
	text-decoration: underline;
	color: #063;
	font-weight: bold;
}

#form{
	overflow: hidden;
	width: 90%;
	height: 450px;
}


#form h1{
	text-align: left;
	color:#666;
	font-size: 1.1em;
	margin-top: .1em;
	margin-bottom: .25em;
	font-weight: normal;
}

#form td h2{
	text-align: left;
	color:#666;
	font-size: 1.25em;
	margin-top: .1em;
	margin-bottom: .25em;
	font-weight: normal;
}

#form td{
	font-size: .65em;
}

#links ul{
	list-style: none;
}

#links a {
	color: #444444;
	text-decoration: none;
	display: inline-block;
	float: left;
	padding-left: .75em;
	padding-right: .75em;
	padding-top: .75em;
}

#links a:hover {
	color: #063;
	text-decoration: none;
	font-weight: bold;
	background: url(../images/rightArrow.gif) 2% 75% no-repeat;
}

#active a:link, #active a:visited, #active a:visited {
	color:#063;
	font-size: 1.2em;
	padding-top: .2em;
	padding-left: .25em;
	padding-right: .25em;
}


#active a:hover {
	background: none;
	font-weight: normal;
	
}


#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 */
}
.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: 0px;
}
.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;
}
