/* CSS Document */

#slantedmenu{
font-weight: bold;
font-size: 90%;
width: 750px;
clear:both;
}

#slantedmenu:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

#slantedmenu ul{
text-indent: 10px;
padding: 3px 0;
margin: 0;
background-color: #231F20;
border-top: 1px solid #bebebe;
text-align: left; /*set value to "center" for example to center items*/
}

#slantedmenu ul li{
display: inline;
}

#slantedmenu ul li a{
color: #FFFFFF;
padding: 3px 0;
padding-right: 25px;
margin: 0;
text-decoration: none;
background: transparent url(../images/slantdivider2.gif) top right no-repeat;
font: 12px Verdana, Arial, Helvetica, sans-serif;
}

#hide {
background:none;
}


#slantedmenu ul li a:visited{
color: #FFFFFF;
} 

#slantedmenu ul li a:hover{
color: #57be22;
}

#slantedmenu ul li ul{
display: none;
}

#slantedmenu ul li:hover ul {
display: inline;
position: fixed;
color: #57be22;
margin-top:19px;
margin-left: -100px;
}

#slantedmenu ul li a:hover ul {
display: inline;
position: fixed;
color: #57be22;
margin-top:19px;
margin-left: -100px;
}

#slantedmenu ul ul{
text-indent: 10px;
padding: 3px 0;
margin: 0;
background-color: #231F20;
border: 1px solid #bebebe;
text-align: left; /*set value to "center" for example to center items*/
}

