@charset "UTF-8";
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	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;
}

img {
	border: 0;
}

/*default link*/
a:link {color: #000066; text-decoration: none;}
a:visited {color: #000066; text-decoration: none;}
a:hover {color: #006666; text-decoration: none;}
a:active {color: #000066; text-decoration: none;}

/**
 * Horizontal CSS Drop-Down Menu Module
 *
 * @file		dropdown.css
 * @package		Dropdown
 * @version		0.7.1
 * @type		Transitional
 * @stacks		597-599
 * @browsers	Windows: IE6+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2006-2008 Live Web Institute. All Rights Reserved.
 *
 */

ul.dropdown,
ul.dropdown li,
ul.dropdown ul {
 list-style: none;
 margin: 0;
 padding: 0;
}

ul.dropdown {
 position: relative;
 z-index: 597;
 float: left;
}

ul.dropdown li {
 float: left;
 line-height: 1.3em;
 vertical-align: middle;
 zoom: 1;
}

ul.dropdown li.hover,
ul.dropdown li:hover {
 position: relative;
 z-index: 599;
 cursor: default;
}

ul.dropdown ul {
 visibility: hidden;
 position: absolute;
 top: 100%;
 left: 0;
 z-index: 598;
 width: 100%;
}

ul.dropdown ul li {
 float: none;
}

ul.dropdown ul ul {
 top: 1px;
 left: 99%;
}

ul.dropdown li:hover > ul {
 visibility: visible;
}

/* Navbar Theme */
ul.dropdown {

margin-left: 75px;	
border-left: solid 1px #99cccd;

}

	ul.dropdown li {
	 font-size: 12px;
	border-right: solid 1px #99cccd;
	padding: 10px 15px 6px;
	height: 20px;
	}
	
	ul.dropdown li.lastlink {
	 
	border-right: 0;
	
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 
	 color: #000;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #000; text-decoration: none; }
	ul.dropdown a:hover		{ color: #EF8947; }
	ul.dropdown a:active	{ color: #000; }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 120px;
	 margin-top: 1px;
	}

		ul.dropdown ul li {
		 display: block;
		 font-weight: normal;
		 font-family: 'Trebuchet MS', Arial;
		 font-size: 12px;
		 width: 120;
		 background-color: #99cccd;
		 border-bottom: solid 1px white;
		
		}
		
		



#container {
	width: 800px;  
	background: #FFFFFF;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	

	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	
	
}
#navbar {
	width:610px;
	height:142px;
	float:right;
	
}

#navtop {
	width:auto;
	height:140px;
	text-align:right;
	font-size:10px;
}

#navlinks {
	width:auto;
	height:36px;
	border-top:6px solid #006666;
	border-bottom:6px solid #006666;
}

#navlinks p {
text-align:center;
font-size:12px;
font-family:Trebuchet MS, Arial;
	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 */
}

#navlinks a:link, #navlinks a:visited, #navlinks a:active {
	color:#000;
	text-decoration:none;
}

#navlinks a:hover {
	color :#EF8947;
	text-decoration:underline;
}

#mainContent {
	margin:0;
	padding-top:15px;
	padding-bottom:20px;
	
	height:auto;
}



#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* 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: 0;
}

#sidebar1 p {
	padding-left:4px;
	padding-right:4px;
}

#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 165px; /* 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 */
	background-color:#5A9494;
	padding: 5px 10px 15px 15px;
	font-size:11px;
	

}

#sidebar3 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* 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: 5px;
	background-color:#5A9494;
	font-size:11px;
	
	

}

#mainCol {
	margin-left:280px;
	margin-right:205px;
	margin-top:0px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainCol2 {
	margin-left:280px;
	margin-right:230px;
	width:240px;
	margin-top:0px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.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;
}

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
} 
#footer p {
text-align:center;
font-size:10px;
	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 */
}



.smallfont {
font-size:10px;
color:#000;
	}
	
.greenspace {
	background-color:#006666;
	width:100%;
	height:6px;
	margin:0px;
	padding:0px;
	line-height:0px;
}

h4 {
color:#000;
padding:10px;

background-color:#5A9494;
font-size:14px;
margin-top:0px;
}

h3 {

font-size:12px;

}

.title {

font-size:16px;
font-family:Trebuchet MS, Verdana;
border-bottom:6px solid #006666;
width:100%;
margin:0px;
}

.title-purple {

font-size:16px;
font-family:Trebuchet MS, Verdana;
border-bottom:6px solid #A990C8;
width:100%;
margin:0px;
}

.title2 {

font-size:16px;
font-family:Trebuchet MS, Verdana;
border-bottom:3px solid #006666;
width:100%;
margin:0px;
text-align:center;
margin-top:20px;
}

.centertd {

text-align:center;
padding-top:10px;
}

.small {
	font-size:9px;
	border-color:#666;
	border-width:1px;
	border-style:solid;
	padding:3px;
	width:80px;
	height:10px;
}

.quote {
	padding-left:10px; padding-right:10px; font-size: 11px;
}


.fieldlabel {text-align:right;
width:300px;}

.fieldlabel2 {text-align:right;
width:200px;}

