/* controls the look of the drop-down menu's 

 Copyright 2007 - Zoute snor
 
 css cleaned up and validated by Mark Rabideau -- 26 Nov 2007
 
 All rights reserved. You are free to use this software and redistribute it for free but may not include it in any commercial distribution without prior written permission.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* define the consecutive colors */

#dropdownmenu {
display:block;
position:relative;
top:35px;
left:0;
width:auto;
z-index:5;
height:auto;
font-family: "Trebuchet MS", sans-serif;
font-weight: bold;
font-size: 1.1em;

}

#dropdownmenu ul {
bottom:0;
left:0px;
list-style-type:none;
margin:0 0 2px;
min-height:1%;
position:relative;
width:auto;
z-index:500;
height:auto;
font-weight:700;
-moz-opacity:0.95; /* for mozilla */
opacity: 0.95; /* for safari */
khtml-opacity: 0.95; /* for konquerer and older safari */
/*filter: alpha(opacity = 95); for ie*/
}

#dropdownmenu li {
display:inline;
float:left;
margin:0;
padding:10px 16px;
position:relative;
text-align:left;
}

#dropdownmenu h2 {
font-size:1.2em;
margin:0;
padding:0;
font-weight:bold;
}

#dropdownmenu li ul {
height:auto;
left:0;
top:100%;
width:150px;
/*border-top: 1px dotted #FFFFFF;*/
}

#dropdownmenu li.LargeMenu ul {
height:auto;
left:0;
top:100%;
width:180px;
}

#dropdownmenu li ul li {
display:block;
height:auto;
text-align:left;
width:118px;
}

#dropdownmenu li.LargeMenu ul li {
display:block;
height:auto;
height:auto;
text-align:left;
width:148px;
}

#dropdownmenu a {
color:#FFFFFF;
text-decoration:none;
}

#dropdownmenu li li ul {
left:0;
top:0;
}

#dropdownmenu li li:hover ul {
left:150px;
}

/* initially hide all sub sidemenus */
#dropdownmenu ul ul,#dropdownmenu ul li:hover ul ul,#dropdownmenu ul ul li:hover ul ul,#dropdownmenu ul ul ul li:hover ul ul,#dropdownmenu ul ul ul ul li:hover ul ul {
display:none;
position:absolute;
}

/* display submenus on hover */
#dropdownmenu li:hover ul,#dropdownmenu ul li:hover ul,#dropdownmenu ul ul li:hover ul,#dropdownmenu ul ul ul li:hover ul,#dropdownmenu ul ul ul ul li:hover ul,#dropdownmenu ul ul ul ul ul li:hover ul {
display:block;
}

#dropdownmenu #PhpWebcontent {
display:none;
}

#dropdownmenu ul li:hover {
background:#3A297B;
}

#dropdownmenu ul li ul li {
background:#3A297B;
padding-top:3px;
padding-bottom:3px;
/*border-bottom: 1px dotted #FFFFFF;*/
}

#dropdownmenu ul li ul ul li:hover {
background:#08ADE7;
}

#dropdownmenu ul li ul li:hover,#dropdownmenu ul li ul ul li {
background:#08ADE7;
}

#dropdownmenu li.current_page_ancestor, #dropdownmenu li.current_page_item {
background:#FFFFFF;
}
#dropdownmenu li.current_page_ancestor a, #dropdownmenu li.current_page_item a {
color:#DE002E ;
}
/*#dropdownmenu ul li.current_page_ancestor:hover ul, ul li.current_page_item:hover ul{
display:none;
}*/
#dropdownmenu ul{
	text-transform: uppercase;
}
#dropdownmenu ul li ul{
	text-transform: none;
}
#dropdownmenu ul li.current_page_ancestor:hover, #dropdownmenu ul li.current_page_item:hover{
	background:#FFFFFF;
}
#dropdownmenu li.current_page_ancestor:hover ul,#dropdownmenu ul li.current_page_ancestor:hover ul,#dropdownmenu ul ul li.current_page_ancestor:hover ul,#dropdownmenu ul ul ul li.current_page_ancestor:hover ul,#dropdownmenu ul ul ul ul li.current_page_ancestor:hover ul,#dropdownmenu ul ul ul ul ul li.current_page_ancestor:hover ul {
display:none;
}
#dropdownmenu li.current_page_item:hover ul,#dropdownmenu ul li.current_page_item:hover ul,#dropdownmenu ul ul li.current_page_item:hover ul,#dropdownmenu ul ul ul li.current_page_item:hover ul,#dropdownmenu ul ul ul ul li.current_page_item:hover ul,#dropdownmenu ul ul ul ul ul li.current_page_item:hover ul {
display:none;
}
#dropdownmenu li.admintab {
	font-size:0.9 em;
	width:50px;

}