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

.anylinkcss{
border:6px solid #676563; position: absolute ;
top: 0;
left: 0;
visibility: hidden;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background:#808080;
width: 200px; font-style:normal; font-variant:normal; font-weight:normal; font-size:12px; font-family:arial;
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
font: 12px Arial;
color: white;
background: #808080;
}

.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 5px;
padding: 1px;
text-decoration: none;
font-weight: normal;
text-indent: 5px;
font: 12px Arial;
line-height: 20px;
color: white;
background: #808080;
}

.anylinkcss a:hover{ /*hover background color*/
background: #676563;
color: white;
}

/* ######### 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;
}

/* ######### urbangrey ######### */

.urbangreymenu{
width: 155.5px; /*width of menu*/
}

.urbangreymenu .headerbar{
font: bold 13px ARIAL;
color: white;
background: #808080;
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: 1;
padding: 1;
margin-bottom: 1; /*bottom spacing between each UL and rest of content*/
}

.urbangreymenu ul li{
padding-bottom: 1px; /*bottom spacing between menu items*/
}

.urbangreymenu ul li a{
font: 13px Arial;
color: white;
position: relative;
background: #808080;
display: block;
padding: 5px 0;
line-height: 25px;
padding-left: 0px; /*link text is indented 8px*/
text-decoration: none;
}

.urbangreymenu ul li a:visited{
color: white;
}

.urbangreymenu ul li a:hover{ /*hover state CSS*/
color: white;
background: #676563;
}