/* CSS Document */

.menu {
	width: 880px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	padding-left: 5px;
	padding-right: 5px;
	margin:0;
	list-style-type:none;
	list-style-image: none;
}
.menu ul ul {
/*width:72px;*/
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 5px;
	list-style-image: none;
}
/* style the links for the top level */

.menu a, .menu a:link, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px;
	color:#fff;
	/*width:72px;*/
	height:35px;
	border:0 none;
	line-height:35px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited, * html .menu li {
/*width:62px;*/	
}
#id1 {
	width: 85px;
	padding: 0;
}
#id2 {
	width: 80px;
	padding: 0;
}
#id3 {
	width: 150px;
	padding: 0;
}
#id4 {
	width: 160px;
	padding: 0;
}
#id5 {
	width: 90px;
	padding: 0;
}
#id6 {
	width: 100px;
	padding: 0;
}
#id7 {
	width: 110px;
	padding: 0;
}
.menu ul ul a {
	font-weight: normal;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:35px;
	left:-20px;
	text-align: left;/*width:62px;*/
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:34px;
	t\op:35px;
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited, .menu ul ul a:link {
	background-color:#3F2A15;
	color:#fff;
	height:auto;
	line-height:1em;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 8px;
	padding-right: 8px;
	width:130px;
	text-align: left;
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
/* style the top level hover */
.menu a:hover {
	color:#FF6600;
	background: none;
	text-decoration: none;
}
.menu ul ul a:hover {
	color:#FF6600;
	background-color:#3F2A15;
	text-decoration: none;
}
.menu a:hover {
	color:#FF6600;
	background: none;
	text-decoration: none;
}
.menu ul ul a:hover {
	color:#FF6600;
	background-color:#3F2A15;
	text-decoration: none;
}
/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul {
	visibility:visible;
}

