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

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

.urbangreymenu .headerbar{
	color: white; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*31px is left indentation of header text*/
	margin: 0;
	font-family: Verdana;
	font-weight: bold;
	padding: 0px;
}

.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*/
	list-style-image: none;
}

.urbangreymenu ul li{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #7EBAD8;
	margin-left: 10px;
	margin-right: 5px;
	padding: 0px;
}

.urbangreymenu ul li a{
	color: #FFFFFF;
	display: block;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
	font-family: Arial;
	font-size: 0.9em;
	font-weight: bold;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	height: 15px;
}

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

.urbangreymenu ul li a:hover{ /*hover state CSS*/
	color: white;
	background-image: url(images/sublink.gif);
	background-repeat: no-repeat;
	background-position: -10px center;
}

