/* The menu styling */

/* Remove the padding, margins and bullets from the lists */

.menu, .menu ul {

	list-style-type:none;

	padding:0; margin:0;

	font-family:Verdana, Arial, Helvetica, sans-serif;

}



/* Set up the top level list items and float left to place inline */

.menu li.top {

	display:block;

	float:left;

	position:relative;

}



/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */

.menu table {

	width:0;

	height:0;

	position:absolute;

	top:0; left:0;}



/* Default top link link styling */

.menu li.top a.top_link {

	display:block;

	float:left;

	height:48px;

}

.menu li.top a span {

	position:absolute;

	left:-9999px;

	top:0; z-index:0;

	font-size:10px;

} /* move the link text off screen */



/* pre-load the hover images into the lists */

.menu li.p1 {width:73px; background:url(../images/home_1.gif) no-repeat;}

.menu li.p2 {width:91px; background:url(../images/about_1.gif) no-repeat;}

.menu li.p3 {width:94px; background:url(../images/products_1.gif) no-repeat;}

.menu li.p4 {width:85px; background:url(../images/contact_1.gif) no-repeat;}

.menu li.p5 {width:96px; background:url(../images/orders_1.gif) no-repeat;}

.menu li.p6 {width:65px; background:url(../images/links_0.gif) no-repeat;}



/* set up the normal unhovered images in the links */

.menu li a#home {width:73px; background:url(../images/home_0.gif) no-repeat;}

.menu li a#about {width:91px; background:url(../images/about_0.gif) no-repeat;}

.menu li a#products {width:94px; background:url(../images/products_0.gif) no-repeat;}

.menu li a#contacts {width:85px; background:url(../images/contact_0.gif) no-repeat;}

.menu li a#orders {width:96px; background:url(../images/orders_0.gif) no-repeat;}

.menu li a#links {width:65px; background:url(../images/links_1.gif) no-repeat;}



/* Style the list OR link hover. Depends on which browser is used */

.menu a:hover {visibility:visible;} /* for IE6 */

.menu li:hover { position:relative; z-index:200;} /* for IE7 */



/* make the links transparent on hover so that the hover images in the lists show through (no flicker) */

.menu li a#home:hover, .menu li:hover a#home,

.menu li a#about:hover, .menu li:hover a#about,

.menu li a#products:hover, .menu li:hover a#products,

.menu li a#contacts:hover, .menu li:hover a#contacts,

.menu li a#orders:hover, .menu li:hover a#orders,

.menu li a#links:hover, .menu li:hover a#links,

.menu li a#privacy:hover, .menu li:hover a#privacy {background:transparent;}



/* keep the 'next' level invisible by placing it off screen. */

.menu ul, 

.menu :hover ul :hover ul :hover ul :hover ul {

	position:absolute;

	left:-9999px;

	top:-9999px;

	width:0;

	height:0;

}



/* set up the first drop down sub level */

.menu :hover ul.sub {
	left:0;
	top:48px;
	background: #000000;
	border:2px solid #7F8577;
	width:144px;
	height:362px;
	white-space: nowrap;

}

.menu :hover ul.sub li {

	display:block;

	height:40px;

	position:relative;

	float:left;

	width:144px;

}

.menu :hover ul.sub li a {

	display:block;

	font-size:11px;

	height:40px;

	width:144px;

	line-height:42px;

	text-indent:5px;

	color:#A4A4A4;

	text-decoration:none;

	border-top-width: thin;

	border-top-style: solid;

	border-top-color: #999999;

	border-bottom-width: thin;

	border-bottom-style: solid;

	border-bottom-color: #999999;

}

.menu :hover ul.sub li a:hover {

	background:#000000;

	color:#FFFFFF;

}

