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

.urbangreymenu{
	width: 200px; /*width of menu*/
	margin-left: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.urbangreymenu .headerbar{
	font: bold 10px Verdana;
	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;
	background-position: left center;
	background-color: #666666;
	background-image: url(images/titlebar.png);
	background-repeat: repeat-x;
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 15px;
	margin-top: 10px;
}

.urbangreymenu .selected{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(images/titlebar-active.png);
	background-repeat: repeat-x;
	background-position: left center;
}

.urbangreymenu .headerbar a{
text-decoration: none;
color: white;
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*/
}

.urbangreymenu ul li a{
	color: #000000; /*custom bullet list image*/
	display: block;
	padding: 3px 0;
	padding-left: 20px; /*link text is indented 19px*/
	text-decoration: none;
	border-bottom: 1px solid #dadada;
	font-size: 11px;
	background-color: #E5E5E5;
	background-image: url(images/arrowbullet.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.urbangreymenu ul li a:visited{
	color: #666666;
}

.urbangreymenu ul li a:hover{ /*hover state CSS*/
	color: white;
	font-weight: bold;
	background-image: url(images/arrowbullet.png);
	background-repeat: no-repeat;
	background-color: #89A9C0;
}

