@charset "UTF-8";
/* CSS Document */

.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/

	position: relative;
	outline: none;


}


/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-left: 1px dotted #ffdaa2;
border-right: 1px dotted #ffdaa2;
border-bottom: 1px dotted #ffdaa2;
font: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #ffffff;
line-height: 18px;
z-index: 8000; /* zIndex should be greater than that of shadow's below */
background:url(images/nav_trans_bg.png) repeat;
width: 175px; /* default width for menu */
}

.ie .anylinkmenu {
  background-color: #000000;
  background-image: none;
}

.anylinkmenu ul{
margin: 0;
padding: 0;
padding-top: 6px;
list-style-type: none;


}

.anylinkmenu ul li a{
width: 100%;
display: block;
text-indent: 3px;
padding-left: 8px;
padding-bottom: 7px;
color: #ffffff;
text-decoration: none;
outline: none;
font-size: 12px;
text-indent: 5px;
font-family: Arial, Helvetica, sans-serif
}

.anylinkmenu a:hover{ /*hover background color*/

color: #E8CB88;
}

.anylinkmenu a:selected{ /*hover background color*/

outline: none;
}




