/* CSS Document */


.body-text 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	color: #666666;
}

.small-text 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: 12px;
	color: #666666;
}


.header-text 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 15pt;
	font-weight: bold;
	color: #A2B7BC;
}

.sub-header-text 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 15pt;
	font-weight: bold;
	color: #B99875;
}

A.body-text-link {color:#666666; text-decoration:underline;}
A.body-text-link:visited {color:#666666; text-decoration:underline;}
A.body-text-link:hover {color:#A2B7BC; text-decoration:none;}

/* FIRST ATTEMPT AT DROPDOWN */

div.lev1 {
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	width: 101px;
	height: 18px;
	position: relative;
}

#container1 {
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	z-index: 1;
	position: relative;
	top: -15px;
	left: 0px;
	visibility: hidden;
}

div.lev2 {
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	width: 196px;
	height: 213px;
	position: relative;
}

/* SECOND ATTEMPT AT DROPDOWN */

#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
}

#cssdropdown li {
float: left;
position: relative;
}

.mainitems{
}

.mainitems a{
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
text-decoration: none;
}

.subuls{
display: none;
width: 10em;
position: absolute;
top: 18px;
left: 0;
}

.subuls li{
width: 100%;
}

.subuls li a{
text-decoration: underline;
}

#cssdropdown li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
top: auto;
left: auto;
}

#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}

#restofcontent { /*wrap rest of content of the page inside this div*/
clear: left;
}


