﻿#cssdropdown, #cssdropdown ul {
padding: 0;
margin: 0;
list-style: none;
	opacity:0.95;
	filter:alpha(opacity=95);
}

#cssdropdown li {
float: left;
position: relative;
}

#cssdropdown li ul li {
float: left;
position: relative;
padding: 5px 5px 5px 5px;
}

.mainitems{ border-right: 1px solid #999; background-color: #666; }

.active { background-color: #333;
}

.mainitems a{
text-decoration: none;
display:block;
color: #f0f0f0;
padding: 12px 10px 11px 10px;
}


.mainitems a:hover {
	background-color: #333333;
	text-decoration: underline;
}
.subuls a:hover {
	background-color: #999;
	text-decoration: underline;
}



.subuls a {
text-decoration: none;
color: #f0f0f0;
display:inline;
padding:0px;				
}

.subuls{
display: none;
width: 10em;
position: absolute;
top: 1.2em;
left: 0;
background-color: #999;
border: 1px solid #666;
}

.subuls li{
width: 100%;
}

.subuls li a:hover{
/*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;
}


/*
Here is the admin menu */
#admindropdowns, #admindropdowns ul {
padding: 0;
margin: 0;
list-style: none;
z-index:1000;
}

#admindropdowns li {
float: right;
position: relative;
width: 150px;
}

#admindropdowns li ul li {
float: left;
position: relative;
padding: 5px 5px 5px 5px;
}

.mainadminitems{ border-left: 1px solid #666; background-color: #333; }

.active { background-color: #333;
}

.mainadminitems a{
text-decoration: none;
display:block;
color: #f0f0f0;
padding: 6px 10px 5px 10px;
}


.mainadminitems a:hover {
	background-color: #333333;
	text-decoration: underline;
}
.subadminbullets a:hover {
	background-color: #999;
	text-decoration: underline;
}



.subadminbullets a {
text-decoration: none;
color: #f0f0f0;
display:inline;
padding:0px;				
}

.subadminbullets{
display: none;
width: 150px;
position: absolute;
top: 1.2em;
left: 0;
background-color: #999;
border: 1px solid #666;
z-index: 8000;
}

.subadminbullets li{
width: 100%;
}

.subadminbullets li a:hover{
/*text-decoration:underline;*/
}


#admindropdowns 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;
}

#admindropdowns li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}


