#menuMain				{	display:block;padding-left:55px;}

#nav					{	display:inline-block;
							text-align:center;
						}

#nav, #nav ul 			{	/* all lists */
							padding: 0;
							margin: 0;
							list-style: none;
							line-height: 1;
						}

#nav a 					{	display: block;
							position:relative;
							height:45px;
							width:100%;							
							color:black;
							text-decoration:none;
							font-weight:bold;
							font-size:.90em;
						}
						
#nav a span				{	display:inline-block;
							position:absolute;
							width:100%;
							top:50%;
							left:0;
						}
						
#nav li.home				{	width:60px;}
#nav li.home a span			{	height:1em; margin-top:-.5em;}
#nav li.usedclothing		{	width:100px;}
#nav li.usedclothing a span	{	height:1em; margin-top:-.5em;}
#nav li.usedshoes			{	width:100px;}
#nav li.usedshoes a span	{	height:2em; margin-top:-1em;}
#nav li.wipers				{	width:80px;}
#nav li.wipers a span		{	height:1em; margin-top:-.5em;}
#nav li.vintage				{	width:130px;}
#nav li.vintage a span		{	height:2em; margin-top:-1em;}
#nav li.new					{	width:110px;}
#nav li.new a span			{	height:2em; margin-top:-1em;}
#nav li.about				{	width:83px;}
#nav li.about a span		{	height:1em; margin-top:-.5em;}						
			
#nav a:hover			{	background-color:#dddddd;
						}
						
#nav a.on              {	background-color:#dddddd;
						}					

#nav li 				{	/* all list items */
							float: left;
							margin-right:0px;
							/*width: 10em;  width needed or else Opera goes nuts */
						}

#nav li ul 				{ 	/* second-level lists */
							position: absolute;
							background: #ffffff;
							border:1px solid #000000;
							left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
						}

#nav li ul li 			{	clear:both;
							margin-right:0px;
						}

#nav li ul li a 		{	width:124px;
							height:auto;
							text-align:left;
							color:#000000;
							font:9pt "Lucida Sans Unicode", "Lucida Grande", Helvetica, sans-serif;
						}
#nav li ul li a:hover 	{	background-color:#cccccc;
							color:black;
						}

#nav li:hover ul, #nav li.sfhover ul 
						{ 	/* lists nested under hovered list items */
							left: auto;
						}
						
						
