@charset "UTF-8";
/* CSS Document */
* {
	margin:0px;
	padding:0px;
}

body {
	background-color:#000000;
	font-family:"Courier New", Courier, monospace;
	font-size:12px;
	color:#999999;
}

#container {
	width:854px;
	height:730px;
	background-image:url(../images/bg_img.jpg);
	background-repeat:no-repeat;
	margin:0 auto;
}

a {
	text-decoration:none;
}

a:link, a:visited {
	color:#999999;
}

a:hover {
	color:#CCCCCC;
}

a:active {
	color:#999999;
}

#nav-container {
	padding-top:592px;
	padding-left:232px;
}

ul { 		/* all lists */
	padding:0px;
	margin:0px;
	list-style:none;
}


li { 		/* all list items */
	float:left;
	position:relative;
	padding:0px 33px 0px 0px;
}

li.prod-list {
	width:350px;
	padding:10px 0px 0px 15px;
} 

li ul {		/* second-level lists */
	display:none;
	position:absolute;
	top:1em;
	left:0;
}

li>ul { 		/* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top:auto;
	left:auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#content {
	clear: left;
}