@charset "utf-8";

/* CSS Document */

.urbangreymenu {
	width: 175px; /*width of menu*/
}

.urbangreymenu .accordionHead {
	font: bold 13px Verdana;
	color: yellow;  /* Color if it HAS a sub menu */
	background:#183C52 /* url(../images/arrowstop.gif) */ no-repeat 10px 10px;  /*last 2 values are the x and y coordinates of bullet image*/
	width: 160px;
	margin: 0;
	text-transform: capitalize;  /* uppercase results in all caps */
	text-align: left;  /* aligns the text to the left */
	padding: 7px 0 5px 15px;  
		/* 31px is left indentation of Menu text*/
		/* padding of Menu items */
}

.urbangreymenu .accordionHead a {
	text-decoration: none;
	background:#183C52  no-repeat 10px 10px;  /*last 2 values are the x and y coordinates of bullet image*/
	color: white; /* Color if it DOES NOT HAVE a sub menu */
	display: block;
}

.urbangreymenu ul {
	list-style-type: none;
	margin: 0;
	/* USED?  padding: 25;  indents the SubMenu items */
	margin-bottom: 5; /*bottom spacing between each UL and rest of content*/
}

.urbangreymenu ul li {
	/* padding-bottom: 2px; bottom spacing between menu items*/
	padding-bottom: 0px; /*bottom spacing between menu items*/
}

.urbangreymenu ul li a{
	font: bold 10px Arial;
	color: black;
	background: #81bce8;
	display: block;
	padding: 5px 0px 5px 10px;  /* padding of SubMenu items N-E-S-W*/
	line-height: 15px; /* 17 */  
	text-decoration: none;
}

.urbangreymenu ul li a:hover{ /* hover state CSS */
	color:#fff;
	background:#3399CC;
}

ul.f2cnoshow,
ul.f2cnoshow li,
ul.f2cnoshow li a {
	display:none !important;
	height:0 !important;
	position:absolute !important;
	left:-10000px !important;
}

