/* ######### Default class for drop down menus ######### */

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-bottom-width: 0;
font: normal 11px Arial;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #000000;
width: 180px; /* default width for menu */
text-align:left;
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.anylinkcss ul li
{
	padding-left:6px;
	border: 1px solid black;
}
.anylinkcss ul li:hover
{
	padding-left:6px;
	background: #c31616;
}
.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 3px;
font: normal 11px Arial;
color:#ffffff;
padding: 1px 0;
text-decoration: none;
font-weight: normal;
text-indent: 5px;
}

.anylinkcss a:hover{ /*hover background color*/
color: #ffffff;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px;
font: normal 12px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #DEFFCA;
}

.anylinkcsscols .column{
width: 130px;
float: left;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcsscols li{
padding-bottom: 3px;
}

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}





.urbangreymenu{
/*width: 170px; width of menu*/
}

.urbangreymenu .headerbar{
font: bold 13px Verdana;
color: white;
background: #606060;
margin-bottom: 0; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
text-indent: 10px;
padding: 7px 0 7px 0; /*31px is left indentation of header text*/
}

.urbangreymenu ul{
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0;
display:block; /*bottom spacing between each UL and rest of content*/
}

.urbangreymenu ul li{
padding-bottom: 1px; /*bottom spacing between menu items*/
display:block; 

}
.cnt_menu
{
	overflow:hidden;
	height:400px;
}

.urbangreymenu ul li a{
background:#dedfdf top left no-repeat;
font: bold 13px "Trebuchet MS";
color: #2d2d2d;
display: block;
padding: 11px 0;
line-height: 17px;
padding-right: 11px; /*link text is indented 8px*/
text-decoration: none;
text-align:right;
}

.urbangreymenu ul li a:visited{
color: #2d2d2d;
}

.urbangreymenu ul li a:hover{ /*hover state CSS*/
color: #ffffff;
background:#000000 top left no-repeat;
}

.urbangreymenu ul li.selected a{ /*hover state CSS*/
color: #ffffff;
background:#000000 top left no-repeat;
}