/* 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:absolute;
top:0;
left:0;
width:auto;
z-index:5;
height:auto;
}

#dropdownmenu ul {
bottom:0;
left:20px;
list-style-type:none;
margin:0 0 2px;
min-height:1%;
position:relative;
width:auto;
z-index:500;
height:auto;
font-variant:small-caps;
font-weight:700;
}

#dropdownmenu li {
display:inline;
float:left;
margin:0;
padding:5px 16px;
position:relative;
text-align:left;
}

#dropdownmenu h2 {
color:#FFF;
font-size:1.2em;
margin:0;
padding:0;
font-weight:bold;
}

#dropdownmenu li ul {
height:auto;
left:0;
top:100%;
width:150px;
}

#dropdownmenu li.LargeMenu ul {
height:auto;
left:0;
top:100%;
width:180px;
}

#dropdownmenu li ul li {
display:block;
height:auto;
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:#8B211F;
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:white;
border:1px ridge #A2A2A2;
}

#dropdownmenu ul li ul li {
background:#E3E3EF;
border:1px outset silver;
}

#dropdownmenu ul li ul ul li:hover {
background:#D6D4D2;
border:1px inset silver;
}

#dropdownmenu ul li ul li:hover,#dropdownmenu ul li ul ul li {
background:#D0D0D0;
}
