/* CSS-Based Menu */

/* Menu Container START */
#menu{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width:152px;
	position:relative;
	z-index:3;
	margin-top: 0px;
	margin-right: 0;
}
/* Menu Container END */

/* Visbile-Level (1st-level) Menu UL START */
#menu ul {
	margin:0px 0 8px 0;
	list-style-type: none;
	border:0px solid #ccc;
	text-align: left;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
}
/* Visbile-Level (1st-level) Menu UL END */

/* 2nd-Level Menu (fly-out menu) UL START */
#menu ul li ul {
	visibility:hidden;
	position:absolute;
	height:0;
	background-color:#546078;
	border:4px solid #ccc;
	overflow:hidden;
	top:0;
	left:170px;
	width: 136px;
}
/* 2nd-Level Menu (fly-out menu) UL END */

/* Opacity control of the fly-out menu background START */
#menu ul li ul {
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
 	-moz-opacity: 0.8;
	opacity:0.8;	
}
/* Opacity control of the fly-out menu background END */

/* Visible (1st-level) menu LI START */
#menu ul li {
	float:left;
	position:relative;
}
/* Visible (1st-level) menu LI END */

/* Visible (1st-level) menu LI link-behaviour START */
#menu ul li a, #menu ul li a:visited {
	display:block;
	float:left;
	text-decoration:none;
	color:#546078;
	width:145px;
	height:21px;
	line-height:14px;
	font-size:11px;
	background:transparent;
	padding-left:10px;
	padding-top: 4px;
}

* html #menu ul li a, * html #menu ul li a:visited {
	width:136px;
}
/* Visible (1st-level) menu LI link-behaviour END */

/* Sub-menu (2nd-level, fly-out) TABLE style START */
#menu table {
	border-collapse:collapse;
	border:0;
	margin:-1px;
	padding: 0;
}
/* Sub-menu (2nd-level, fly-out) TABLE style END */

/* Visible (1st-level) menu LI link on-HOVER behaviour START */
#menu ul li:hover a,
#menu ul li a:hover{
	background:#546078;
	color:#f6f6f6;
}
/* Visible (1st-level) menu LI link on-HOVER behaviour END */

/* Sub-menu (2nd-level, fly-out) UL properties START */
#menu ul li:hover ul,
#menu ul li a:hover ul {
	visibility:visible;
	position:absolute;
	height:auto;
	border:0px solid #ccc;/*iuncrease the border size to affect the border of the child menu*/
	background:#f6f6f6;
	overflow:visible;
	padding-left: 0px;
	width: 200px;
}
/* Sub-menu (2nd-level, fly-out) UL properties END */

/* Sub-menu (2nd-level, fly-out) LI link-behaviour START */
#menu ul li:hover ul li a,
#menu ul li a:hover ul li a{
	display:block;
	background:transparent;
	color:#546078;
	line-height:14px;
	height:auto;
	text-decoration:none;
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 20px;
	margin-left: 0px;
}
/* Sub-menu (2nd-level, fly-out) LI link-behaviour END */

/* Sub-menu (2nd-level, fly-out) LI link on HOVER-behaviour START */
#menu ul li:hover ul li:hover a,
#menu ul li a:hover ul li a:hover {
	background-color:#546078;
	color:#f6f6f6;
	text-decoration:none;
}
/* Sub-menu (2nd-level, fly-out) LI link on HOVER-behaviour END */