﻿
.urbangreymenu{
width: 21.4em; /*width of menu*/
border: 1px solid #fff; 
}

.urbangreymenu .headerbar{
    color: white;
    background: #000 url(/content/images/arrowstop.gif) no-repeat 8px 6px; /*last 2 values are the x and y coordinates of bullet image*/
    border: 1px solid #fff; 
    
    margin-bottom: 0; /*bottom spacing between header and rest of content*/
    text-transform: uppercase;
    padding: 7px 0 7px 10px; /*31px is left indentation of header text*/
}

.urbangreymenu .headerbar a
{
text-decoration: none;
color: white;
display: block;
}

.urbangreymenu ul{
    list-style-type: none;
    
    margin: 0;
    padding: 0;
    margin-bottom: 1px; /*bottom spacing between each UL and rest of content*/
}

.urbangreymenu ul li{
    background: #ccc;
    color: #000;
    padding-left: 0px;
    border: 1px solid #fff; 
}

.urbangreymenu ul li a{
color: black;
background: #E9E9E9;
display: block;
padding: 5px 0;
line-height: 17px;
padding-left: 25px; /*link text is indented 8px*/
text-decoration: none;
}

.urbangreymenu ul li a:visited{
color: black;
}

.urbangreymenu ul li a:hover{ /*hover state CSS*/
  background: #ccc;
  border-left: 5px #000 solid;
  padding-left: 20px;
}

