
/* MAIN MENU UL*/
.custom_menu {
  height:50px; color:#000; margin:0; padding:0; background:#20409a; border-radius:3px 0 0 0; box-shadow:0 0 40px #000;;
  list-style:none; 
	margin:0 auto;
	width:1000px;
}

.fixed_menu_wrapper{
  background-color:#000;;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:10000;
}


/* MAIN MENU LI */
.custom_menu li.top{ 
  height:50px;;
  position:relative; 
  float:left;
  z-index:200;
}

/* MAIN MENU A NORMAL */
.custom_menu li a.top_link{
  line-height:50px; color:#FFF; font-size:13px; padding: 0 15px; text-transform:uppercase; border-right:1px solid #556697; text-shadow:-2px -2px 0 #000;;
  display:block;
  text-decoration:none;
}

/* MAIN MENU A HOVER */
.custom_menu li:hover a.top_link{
  color:#FFF;;
}

/* MAIN MENU A ACTIVE */
.custom_menu li a.top_link_active{
  background-color:#101010;;
}

/* MAIN MENU A AVEC SOUS-MENU */
.custom_menu li a.top_link_sub{
   ;
}

.highlight_element{
	background:yellow;;		 
}

.highlight_element:hover{
	background:red;;		 
}

/* SOUS-MENU UL*/
.custom_menu .sub{
  /* obligatoire selon height du main menu UL */ top:50px; margin:0; padding:10px; background:#161616; box-shadow:3px 3px 0px #BBB;;
  list-style:none;
  position:absolute;  
}
.custom_menu li ul.sub{
  left:0px;
  display:none;
}
.custom_menu li ul li ul.sub{
  top:0px;
  left:100%;
  display:none;
}

/* SOUS-MENU LI*/
.custom_menu .sub li{
  margin:0; padding:0;;
  position:relative;
}

/* SOUS-MENU A NORMAL*/
.custom_menu .sub li a{
  text-transform: uppercase; color:#BBB; width:200px; line-height:30px; font-size:12px; text-align:left; padding-left:15px;;
  display:block; 
  text-decoration:none;
}

/* SOUS-MENU A HOVER*/
.custom_menu li ul.sub li:hover > a{
  background:#BBB; color:#161616;;
}

/* SOUS-MENU A AVEC SOUS-MENU */
.custom_menu .sub li a.sub_link_sub{
  ;
}

/* AFFICHER LE SOUS-MENU */
.custom_menu li:hover ul{
  display:block;
}
.custom_menu li ul li:hover ul{
  display:block;
}

/*******************************************/
/* MENU FIXE */
/*******************************************/
.menu_fixe{
  height:40px; margin-top:20px; background: rgba(0, 0, 0, 0.8);;
}
.menu_fixe .right{
  height:40px; position:relative; margin-right:6px;;
  float:right;
}
.menu_fixe .right a{
  line-height:40px; color:#FFF; float:right; font-size:12px; height:40px; text-transform:uppercase; padding:0 10px;;
}

.menu_fixe .right a:hover{
   text-decoration:underline !important;;
}

.menu_fixe .right a:last-child{
   ;
}

.menu_fixe .left{
  background:#ed1c24; width:400px; height:31px; padding:9px 5px 0 9px; border-radius:5px 5px 0 0;;
  float:left;
}
