/* CSS Document */

.urbangreymenu
{
	width: 180px; /*width of menu*/
	display: block;
	overflow: hidden;
	margin: auto;
}
.urbangreymenu dl, .urbangreymenu dd
{
	margin: 0;
	padding: 0;
}
.urbangreymenu .headerbar { padding: 0 0 2px 0; }
.urbangreymenu .headerbar a
{
	color: white; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	padding: 10px 0 10px 31px; /*31px is left indentation of header text*/
	display: block;
	/*font-family: Verdana;*/
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	background-color: #918959;
	background-image: url(../images/arrowstop.gif);
	background-repeat: no-repeat;
	background-position: 8px 10px;
}
.urbangreymenu .headerbar a:hover
{ /*hover state CSS*/
/*background: #ffcc00 url(../images/arrowstop.gif) no-repeat 8px 10px;*/
	background: #c05ec4 url(../images/arrowstop.gif) no-repeat 8px 10px;
	color: white;
	text-decoration: none;
}
.urbangreymenu dd { display: none; }
.urbangreymenu dd.disp { display: block; }
.urbangreymenu ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}
.urbangreymenu ul li
{
	padding-bottom: 2px; /*bottom spacing between menu items*/
	display: block;
}
.urbangreymenu ul li a
{
	color: #FFFFFF;
	background: #B0A97D;
	display: block;
	padding: 5px 0 5px 15px;
	line-height: 14px; /*link text is indented 8px*/
	text-decoration: none;
	/*font-family: Arial;*/
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}
.urbangreymenu ul li a:visited { color: #E0E0E0; }
.urbangreymenu ul li a:hover
{ /*hover state CSS*/
	color: white;
	/*background: #ffcc00;*/
	background: #e09ce0;
}
