/*
 *		Horizontal, top-2-bottom menu
 *		Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by/2.0/
 */


/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

/* move all list items into one row, by floating them */
.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;

	padding-right: 33px; /* PSR : reglage espace entre bouton */
}

/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.menu li:hover {
	position: relative;
}

/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem) */
.menu li li {
	/* width: 100%; */
	margin-left:20px;
	width: 150px;
	padding-left:0px;
	border-top:1px solid #8ac2cd;
}

/* fix the position for 2nd level submenus.
	first make sure no horizontal scrollbars are visible on initial page load by sliding them all into top-left corner  */
.menu li li div {
	top: 0;
	left: 0;
}

/* ...and then place the submenu where it should be when shown */
.menu li li:hover div {
	left: 100%;
}

/* initialy hide all sub menus */
.menu div {
	display: none;
	position: absolute;
	/* z-index: 10; */

  /* top : 0px; */
	z-index: 10;
  width:150px;
  left:-20px;
  border:0px green solid ;
}

/* display them on hover */
.menu li:hover>div {
	display: block;
}

/* -- float.clear -- force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
/* IE7 float clear: */
.menu, .menu ul {
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu div" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */

.menu div {
	/* padding: 10px 30px 30px 30px; */
	/* margin: -10px 0 0 -30px; */
	/*background: #f00;*/		/* uncomment this if you want to see the "safe" area. you can also use to adjust the safe area to your requirement */
	overflow: hidden;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu {		/* navigation background style */
	position:relative;
	z-index:1000;
	top:0px;
	color: #333;
	background:url(../images/nav-bg.gif) 0 0 repeat; position:relative;
	/*background: #fff;*/	 /* uncomment this if you want to use a color instead of background image */
	border: 0px solid #ccc;

	padding-left:70px; /* PSR reglage decalage menu gauche  - 85 px accueil - 70 px rub */
}

.menu ul {	/* drop down menu style */
	width: 150px;  /* important permet de regler la taille du filet */
  background: #174569; /* #174569; */ /* fond niv2 no partie centrale */; /* #174569; */ /* fond niv2 partie gauche fond */
  filter:alpha(opacity=85);
  -moz-opacity:0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
	border:0px solid purple;
  /* overflow:hidden; */
}

.menu li li:hover>div {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

.menu ul a:hover { /* drop down hover style (IE6 included) */
	/* background: #eee; */
	/* font-weight:normal; */

  color :#ec732f
	font-weight:bold;
	font-size : 11px;

}

.menu li:hover>a { 	/* first level hover button style (IE6 excluded) */
	color: #ffffff;
	background: url(../images/nav2.gif) 100% 0 no-repeat;
	/*background: #eee;*/	 /* uncomment this if you want to use a color instead of background image */

  font-weight:bold;
}

.hover2 li:hover>a {	/* drop down hover style (IE6 excluded) */
	/* color: #000; */
	/* background: #eee; */

	color: #ec732f;
	background: ##174569; /* #174569; */ /* fond niv2 no partie centrale */; /* #174569; */ /* fond niv2 hover centrale + droite */
  filter:alpha(opacity=85);
  -moz-opacity:0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
	font-weight:bold;
	font-size : 11px;
}

.menu a {	/* first level button style (IE6 included) */
	/* color: #333; */
	padding: 6px;
	display: block;
	text-decoration: none;
	font-weight:bold;

	color: #dcdcdc;
	font-size : 14px;
	font-family: verdana, arial, helvetica;

}

.menu a:hover {		/* first level button hover style (IE6 included) */
	color: #000;
	background: url(../images/nav2.gif) 100% 0 no-repeat;
	/*background: #eee;*/	 /* uncomment this if you want to use a color instead of background image */
	text-decoration: none;
	font-weight:bold;

}

.menu ul a {	/* remove inheritance from submenus (IE6 included)*/
	/* color: #333; */
	/* background: #fff; */
	/* font-weight:normal; */

  font-size : 11px;
  color: #ffffff;
  font-weight:bold;
  background: #174569; /* #174569; */ /* fond niv2 no partie centrale */
  filter:alpha(opacity=85);
  -moz-opacity:0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
}

.active a {	/* first level menu active state style (IE6 included) */
	color: #000;
	background: url(../images/nav2.gif) 100% 0 no-repeat;
	font-weight: bold;
	text-decoration: none;

	color: #ffffff;
}


/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
.menu {
	display: inline-block;
}
/* End Fix */

/************ ADD PSR    *******/
.menu li.col2 div.hover2 {
    width:180px;
}

.menu li.col2 li  {
    width:180px;
}

.menu li.col2 ul {	/* drop down menu style */
	width: 180px;  /* important permet de regler la taille du filet */
}


/*]]>*/
