#menu a { display: block; }

/* Set margin and padding to 0px and remove bullets from all list items */
#menu ul { 
	padding:0px;
	margin:0px;
	list-style:none;
}

/* Move sub menu items off the screen and out of view until called */
#topMenu li ul {
	position: absolute;
	left:-999em;
	z-index:99999;
}

/* Display sub menus when the mouse hovers over the top menu item (Used by JavaScript) */
#topMenu li:hover ul, #topMenu li.showMenu ul { left: auto; }

#menu {
	background-color: #000;  /* Background color of top menu */
	font-family: Verdana, Arial, Helvetica, sans-serif;  /* Font used for all menu items */
	font-size: 10px;  /* Font size of all menu items */
	height: 17px;  /* Height of top menu items */
	padding-top:4px;
	margin: auto;  /* Centers menu on page */
	width: 500px;  /* Width of top menu (must be set to center menu on page) */
}

#menu li { float: left; }  /* Display top menu items horizontally from left to right */

#topMenu a {
	text-decoration: none;  /* Remove underline from all menu item links */
}

#menu #home { width:53px; }
#menu #catalog { width:102px; }
#menu #login { width:102px; }
#menu #locator { width:103px; }
#menu #aboutUs { width:75px; }
#menu #contactUs { width:62px; }

.tmLink a, .tmLink a:visited {
	color: #ccc;  /* Set color of top menu text */
	font-weight: bold;  /* Make top menu text bold */
	text-align: left;  /* Center top menu text in menu button */
}

.tmLink a:hover {
	color: #fff;  /* Set top menu rollover text color */
}

.subMenu {
	background-color: #000;  /* Set the background color of the sub menus */
	width: 190px;  /* Set the width of the sub menus */
}

.subMenu a {
	padding-left:3px;
	color: #ccc;  /* Set the font color of the sub menu items */
	height: 15px;  /* Set the height of the sub menu items */
	line-height: 15px;  /* Set the line height of teh sub menu items (for vertical alignment) */
	white-space:nowrap;
}

.subMenu li.first { padding-top:5px; }
.subMenu li.last { padding-bottom:3px; }

.subMenu a:hover {
	color: #fff;  /* Set sub menu rollover text color */
}

