/* ----------------------//
*	Menu System
*-----------------------*/
#pad {
	height:140px;
}
#menu {
	padding:0 0 0 1px;
	margin:0 auto;
	list-style:none;
	position:relative;
	z-index:500;
	height: 40px;
	width: 700px;
	background: url('/gfx/menu_bkg.jpg') repeat-x top left;
}
#menu li {
	float:left;
	margin:0px;
	line-height: 28px;
	width: 170px;
	margin: 0px 1px;
}
#menu li a {
	display:block;
	float:left;
	text-decoration:none;
	font-size:14px;
	font-weight:bold;
	width: 100%;
	text-align: center;
}
#menu table {
	border-collapse:collapse;
	width:0;
	height:0;
	position:absolute;
	top:0;
	left:0;
}
#menu li a {
	color:#fff;
}
#menu li a:hover {
	z-index:200;
	position:relative;
	color:#000;
}
#menu li:hover {
	position:relative;
	z-index:200;
}
#menu li:hover > a {
	color:#fff;
	height: 35px;
	background: url('/gfx/menu_bkg_hover.jpg') repeat-x top left;
}
#menu li:hover > a.sub {
	color:#fff;
	background: url('/gfx/menu_bkg_hover.jpg') repeat-x top left;
}
#menu :hover ul {
	left:0;
	top:30px;
	background:#3695e0;
	font-size: 10px;
}
/* keep the 'next' level invisible by placing it off screen. */
#menu ul, #menu :hover ul ul {
	position:absolute;
	left:-9999px;
	top:-9999px;
	width:0;
	height:0;
	margin:0;
	padding:0;
	list-style:none;
	font-size: 10px;
}
#menu :hover ul :hover ul {
	left:180px;
	top:0px;
	background:#3695e0;
	white-space:nowrap;
	width:180px;
	z-index:200;
	height:auto;
	font-size: 10px;
}
/*INCREASE THIS HEIGHT TO PUT MARGIN*/
#menu :hover ul li {
	margin:0;
	height: 24px;
}
#menu :hover ul li a {
	width:180px;
	padding:0;
	text-indent:5px;
	background:#3695e0;
	color:#fff;
	display: block;
	margin-bottom: 1px;
	height:24px;
	line-height:24px;
	text-align: left;
	font-size: 10px;
}
#menu :hover ul li a.small {
	font-size: 10px;
}
#menu :hover ul :hover {
	background: url('/gfx/menu_bkg_hover.jpg') repeat-x top left;
	color:#fff;
}
