/* common styling */
.menu {
	width:630px;
	position:relative;
	margin:0;
	font-size:11px;
	margin:0px 0px 0px 0px;
	z-index:100;
}
/*this class control the main menu before hover*/
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#000000;
	width:90px;
	height:49px;
	text-align:center;
	border:0px solid #fff;
	background:#FFFFFF;
	line-height:49px;
	font-size:11px;
	overflow:hidden;
	font-weight : bold;
}

.menu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}

.menu ul li {
	float:left;
	margin-right:0px;
	position:relative;
}

.menu ul li ul {
	display: none;
}
/*this class control the main menu on hover*/
/* specific to non IE browsers */
.menu ul li:hover a {
	color:#000000;
	background-image : url(/images/menu_bg.gif);
	background-color : #CCCCCC;
	font-weight : bold;
}

.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:49px;
	left:0;
	width:180px;
}
/*this class control the sub menu before hover*/
.menu ul li:hover ul li a.hide {
	background:#F6F6F6;
	color:#666666;
	font-weight : normal;
}
/*this class control the sub menu on hover*/
.menu ul li:hover ul li:hover a.hide {
	background:#888888;
	color:#FFFFFF;
}

.menu ul li:hover ul li ul {
	display: none;
}
/*this class control the drop menu before hover*/
.menu ul li:hover ul li a {
	display:block;
	background:#F6F6F6;
	color:#666666;
	height:20px;
	line-height:20px;
	border-top:1px solid #DDDDDD;
	border-bottom:1px solid #FFFFFF;
	width:180px;
	text-align : left;
	font-weight : normal;
	padding-left : 6px;
}
/*this class control the drop menu on hover*/
.menu ul li:hover ul li a:hover {
	background:#888888;
	color:#FFFFFF;
}

.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:181px;
	top:0;
	margin-left : 6px;
}

.menu ul li:hover ul li:hover ul.left {
	left:-181px;
	margin-left : -6px;
}