﻿/* Liste déroulante */
.menubar-wrapper-dropdown {
    /* Size & position */
    position: relative;
    min-width: 150px;
    max-width: 350px;
    width: auto;
    margin: 0 auto;
    padding: 15px 15px;
    color:#929292;
    font-size:14px;
 
    /* Styles */
    background: #fff;
/*     border-radius: 5px; */
    cursor: pointer;
    outline: none;
    transition: all 0.5s ease-out;
	z-index:50;
	text-align:center;
}

.in ul#menuBar {
	width: 100%;
}

.menubar-wrapper-dropdown .menubar-dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
 
    /* Styles */
    background: #fff;
/*     border-radius: 0 0 5px 5px; */
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    transition: all 0.5s ease-out;
	text-align:left;
	z-index:50;
 
    /* Hiding */
    max-height: 0;
    overflow: hidden;
}

.menubar-wrapper-dropdown .menubar-dropdown li {
    padding: 0 10px ;
	z-index:50;
}
 
.menubar-wrapper-dropdown .menubar-dropdown li a {
    display: block;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
	color:#929292;
	z-index:50;
}
 
.menubar-wrapper-dropdown .menubar-dropdown li:last-of-type a {
    border: none;
}

 
/* Hover state */
 


.menubar-wrapper-dropdown:hover {
	background-color: #ff7600;
    color:#fff;
}

.menubar-wrapper-dropdown:hover .menubar-dropdown {
   background-color: white;
    color:lightgray;
}

.menubar-wrapper-dropdown .menubar-dropdown li:hover a {
    color: #ff7600;
}


/* Active state */
 
.menubar-wrapper-dropdown.selectionne {
/*     border-radius: 5px 5px 0 0; */
    background: #ff7600;
    box-shadow: none;
    border-bottom: none;
    color: white;
}
 
.menubar-wrapper-dropdown.selectionne:after {
    border-color: white transparent;
}
 
.menubar-wrapper-dropdown.selectionne .menubar-dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 400px;
}

.menubar-wrapper-dropdown.actif {
/*     border-radius: 5px 5px 0 0; */
    background: #ff7600;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.in .menubar-wrapper-dropdown {
    max-width:100%;
    position:static;
    padding:0px;
    padding-top:15px;
}

.in .gwt-HTML{
	padding-bottom:15px;
	padding-left:20px;
	text-align:left;
}

.in .menubar-wrapper-dropdown .menubar-dropdown {
    position:inherit;
    
}

.navbar-collapse in{
	transition-delay: 0s;
	transition-duration: 0.35s;
	transition-property: height;
	transition-timing-function: ease;
	width: 720px;
}

.navbar-nav {
    float: right;
}


/* Responsive */
.menubar-petite ul {
    border: 0 none !important;
}

.menubar-petite #menubar {
	width:100%;
}

.menubar-petite .navbar-nav > li {
    float: none;
}

.menubar-petite {
	border-top:0px;
}

#bouton-ouverture{
	background-color:#ffffff;
}

.menubar-petite #bouton-ouverture{
	background-color:#dddddd;
}

.navbar-brand img {
	height: 3em;
}

.logosite {
	height: 4em;
	margin-top: 19px;
	z-index: 20;
	position: absolute;
}