/****************************************************************/
/*   Design:   Multiflex-3.11 / Drop-Down Menu                  */
/*--------------------------------------------------------------*/
/*   Design:   www.1234.info, based on Stu Nichols ingenious    */
/*             designs over at www.cssplay.co.uk                */
/*   Date:     January 8, 2008                                  */
/*--------------------------------------------------------------*/
/*   License:  Public domain.                                   */
/****************************************************************/

/***************/
/*  1. PAGE  */
/***************/

*{padding:0; margin:0;}
 body {font-size:62.5%; font-family:"trebuchet ms" verdana,arial,sans-serif;} /*Font-size: 1.0em = 10px when browser default size is 16px*/
.page-container {
	width:770px;
	border:none;
	font-size:1.0em;
}

/**********************/
/*  2. DROP-DOWN MENU */
/**********************/

/*Basic Setup*/
.dropnav {
	white-space:nowrap /*IE hack*/;
	float:left;
	width:770px;
	background:#6699FF;
	color:#FFFFFF;
	font-size:110%;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 35px;
	height: 35px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	border-left: 1px solid #333333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	font-family: Arial, Helvetica, sans-serif;
} /*Color navigation bar normal mode*/
.dropnav ul {list-style-type:none;}
.dropnav ul li {
	float:left;
	z-index:auto /*IE6*/;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000000;
}
.dropnav ul li a {
	float:none !important /*Non-IE6*/;
	float:left /*IE-6*/;
	display:block;
	height:35px;
	font-weight:bold;
	color: #FFFFFF;
	line-height: 35px;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
}
.dropnav ul li ul {
	display:none;
	border:none;

}

/*Non-IE6 hovering*/
.dropnav ul li:hover {position:relative;} /*Sylvain IE hack*/
.dropnav ul li:hover a {
	background-color:#6699FF;
	text-decoration:none;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
} /*Color main cells hovering mode*/
.dropnav ul li:hover ul {
	display:block;
	width:10em;
	position:absolute;
	z-index:999;
	top:2.9em;
	margin-top:0.1em;
	left:0;
}
.dropnav ul li:hover ul li a {
	white-space:normal;
	display:block;
	width:10em;
	height:auto;
	line-height:1.3em;
	background-color:#6699FF;
	font-weight:bold;
	color:#FFFFFF;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-top: 4px;
	font-variant: small-caps;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
} /*Color subcells normal mode*/
.dropnav ul li:hover ul li a:hover {
	background-color:#99CCFF;
	text-decoration:none;
	color: #000000;
} /*Color subcells hovering mode*/

/*IE6 hovering*/
.dropnav table {position:absolute; top:0; left:-1px; border-collapse:collapse;}
.dropnav ul li a:hover {
	position:relative /*Sylvain IE hack*/;
	z-index:1000 /*Sylvain IE hack*/;
	background-color:#6699ff;
	text-decoration:none;
} /*Color main cells hovering mode*/
.dropnav ul li a:hover ul {display:block; width:10.0em; position:absolute; z-index:999; top:3.1em; t\op:3.0em; left:0; marg\in-top:0.1em;}
.dropnav ul li a:hover ul li a {
	white-space:normal;
	display:block;
	w\idth:10em;
	height:1px;
	line-height:1.3em;
	padding:4px 16px;
	border-left:solid 1px rgb(175,175,175);
	border-bottom: solid 1px rgb(175,175,175);
	background-color:rgb(237,237,237);
	font-weight:normal;
	color:rgb(50,50,50);
} /*Color subcells normal mode*/
.dropnav ul li a:hover ul li a:hover {background-color:rgb(210,210,210); text-decoration:none;} /*Color subcells hovering mode*/









 
