/*		------	Basic style	------		*/
#flashcontent {z-index: 1;}

#menu {
	/*
	height: ??;
	Since we are floating all LIs, then you need to set height in the make-up part, if you want to place some background on the menu
	*/
	display: block;
	/*width:768px;*/
	margin:0px;
	padding:0px;
	margin-left:-1px;
}

#menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
	z-index:100;
}

#menu a {
	display: block;
}

* html #menu li a {
	position: relative;/* Fix IE6's inability to expand clickable area */
}

#menu li ul {
	visibility: hidden;
	position: absolute;
	top: 25px;
	left:0px;
	z-index:300;
}

/* using display is better (no scrollbars when page loads), but IE can't handle it, so only good browsers should see this */
html>body #menu li ul {
	display: none;
}

#menu li li {
	width: 100%;
}

/* fix the position */
#menu li li ul {
	top: 0;
	left: 100%;
}

/* simulate child selector for IE */
div#menu li.iehover ul,
#menu li.iehover li.iehover ul,
#menu li.iehover li.iehover li.iehover ul {
	visibility: visible;
	z-index:300;
}
div#menu li.iehover li ul,
#menu li.iehover li.iehover li ul,
#menu li.iehover li.iehover li.iehover li ul {
	visibility: hidden;
}

/* do the normal show, with increased specificity, for good browsers */
#menu ul#menuList li:hover>ul {
	display: block;
	visibility: visible;
}


/*		------   Make-up	--------			*/

#menu {
	/*font-family: Tahoma, sans-serif;
	font-size: 11px;
	color: #000;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	height: 28px; 	Height mentioned above	 */
	font-family:arial,helvetica,sans-serif; 
	font-weight:bold; 
	font-size:11px;
	text-decoration:none; 
	text-transform:capitalize; 
	letter-spacing:0;
}

#menu li {
	
	margin:0px;
	color:#ffffff; 
	font-family:arial,helvetica,sans-serif; 
	font-weight:bold; 
	font-size:11px;
	text-decoration:none; 
	text-transform:capitalize; 
	letter-spacing:0;
	width:9.66em; 
	height:25px;
	border-left: 1px solid white;
	background-color: #677787;
/*	background-image: url('images/nav_off.gif'); */
}

#menu div {
	text-decoration: none;
	/*text-align: center;
	color: #000;
	padding: 4px 5px 5px;*/
	padding:5px 0 8px 16px;
	cursor: pointer;
	color:#ffffff; 
	text-transform:capitalize; 
	letter-spacing:0;
}
#menu a {
	text-decoration: none;
	/*text-align: center;
	color: #000;
	padding: 4px 5px 5px;*/
	padding:5px 0 8px 16px;
	color:#ffffff; 
	text-transform:capitalize; 
	letter-spacing:0;
}

#menu a:hover, #menu a.iehover,
#menu div:hover, #menu div.iehover{
	color:#ACB3BC;
	cursor: pointer;
}

#menu .navhome {
	/*background-image: url('images/nav_on.gif'); */
	background-color: #677787;
}
#menu li:hover, #menu li.iehover,
#menu li div:hover, #menu li div.iehover {
	color:#ACB3BC; 
	font-family:arial,helvetica,sans-serif; 
	font-weight:bold; 
	font-size:11px;
	text-decoration:none; 
	text-transform:capitalize; 
	letter-spacing:0;
}


#menu li li {
	width: 123px;/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
	padding:0px;
	margin:0px;
	height:auto;
}

#menu li ul {
	color: #000;
	background-color: #fff;
	background-image: url(images/iconbg.gif);
	background-repeat: repeat-y;
	border: 1px solid #ccc;
	width: 125px;
	padding:0;
	margin:0;
	border:1px #000 solid;
	z-index:300;
}

#menu li ul a {
	/*background:#fff;
	text-align: left;
	color: #677787;*/
	color:#fff; 
	font:normal 11px arial,helvetica,sans-serif; 
	text-decoration:none;
	background-color: #ACB3BC;	
	margin:0;
	padding:2px 2px 2px 5px;
	border-bottom:1px solid #fff; 
	/*line-height:15px;	*/
}

#menu li ul a:hover {
	color: #fff;
	background:#677787;
}

#menu li ul a.submenu {
	background-image: url(images/arrow_orange.gif);
	background-repeat: no-repeat;
	background-position: 100% 5px;
	
}

/*		------   Specific fixes	(thank to W3C for these) --------			*/
/* 
		I'm gonna move the submenus 5px up
		5px works fine here and it is roughly calculated as:
			padding-bottom + margin-bottom + border-bottom of the LI
			+
			*-top values of the LI
			
		Mostly it needs a bit of trial and error.
		Basic idea is to remove the scrollbar when menu re-positioning is perfomed. Of course, script could take care of that, but that takes too much code - this is easier.
*/
#menu li li ul {
	margin-top: 0px;
}



/* Fixes for IE5/Mac \*//*/

#menu a {
	float: left;
}

html>body #menu li ul {
	display: block;
}

#menu li ul {
	top: 24px;
	left: 0;
}

#menu li li ul {
	top: 0;
	left: 100%;
}

/**/



/*		----------- Left side nav ----------		*/

* html ul.leftNavMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url('csshover.htc');
	}
	
* html ul.leftNavMenu ul {  /* copy of above declaration without the > selector */
	display: none; position: absolute; top: 2px; left: 234px;
	}

* html ul.leftNavMenu li ul li ul {		
	display: none; 					
	position: absolute; 				
	top: 2px;							
	left: 163px;	   
	}

ul.leftNavMenu, ul.leftNavMenu ul {
	display: block;                  
	padding-left: 0px;         
	cursor: pointer;          
	margin: 0 0 5px 0;           
	}
ul.leftNavMenu ul	{	width: 170px;}
	

* html ul.leftNavMenu li {	padding: 2px 0 4px 0;	} 


ul.leftNavMenu li {
	list-style-type: none;
	margin:5px 0 0px 0;
	padding: 5px 0 5px 0; 
	position: relative;
	font:bold 11px arial, helvetica, sans-serif; 
	text-decoration:none;
	}
	
ul.leftNavMenu li ul  {
	border: 1px solid #000;
	height: auto;
	text-decoration: none;
	margin: 0;
	background-color:#acb3bc; 	
}

ul.leftNavMenu li > ul {  
	display: none;          
	position: absolute;     
	top: 2px;              
	left: 234px; 
	border: 1px solid #000;              
	}

ul.leftNavMenu li ul li	{
	border-left: none;
	border-bottom: 1px solid #fff;
	padding:2px 0 2px 5px;
	line-height:15px;
	height: auto;
	text-decoration: none;
	margin: 0;
	background-color:#acb3bc; 	
	}
	
ul.leftNavMenu li ul li a { 
	color:#eee; 
	font-family:arial,helvetica,sans-serif; 
	font-weight:normal; 
	font-size:11px;
	text-decoration:none;
	}

ul.leftNavMenu li ul li a:hover { 	color:#fff; }

ul.leftNavMenu li ul li > ul {		
	display: none; 					
	position: absolute; 				
	top: 2px;							
	left: 170px;	   
	}
	
ul.leftNavMenu li.menu_header	{
	font-family:11px bold arial, helvetica, sans-serif;
	color:#fff; 
	background-color:#ACB3BC; 
	text-transform:capitalize; 
	padding-left:25px;
	color:#fff;
	cursor: default;
	}

ul.leftNavMenu li.menu_header:hover	{color:#fff;cursor: default;}

ul.leftNavMenu li:hover, ul.leftNavMenu li.CSStoHighlight {color: #acb3bc;}

ul.leftNavMenu ul.CSStoShow {  display: block;}

ul.leftNavMenu li:hover > ul {display: block; }


#request	{
	color: rgb(255,104,32);
	}
