/*
Inspired from tswtabs.css 1.0.2 and jsfiddle.net
Please use the CSS Menu Button Wizard at
http://www.thesitewizard.com/wizards...-buttons.shtml
to generate your own customized menu buttons.
*/

#espacebmenus ul {
    margin-right: auto;
    margin-left: auto;
	padding: 7px ;
	list-style: none ;
	display: table ;
	text-align: center;
}
#espacebmenus ul li {
	padding:0 ;
	text-align: center ;
	list-style: none ;
	font-family: "Verdana", "Lucida Grande", "Lucida Sans", Tahoma, sans-serif;
	font-size: 10px;
	float:left; /*pour IE*/
}
#espacebmenus li a {
	color: #3965A5 ;
	background-color: #D0D0E8 ;
	padding: 8px ;
	text-decoration: none ;
	float:left; 
	border:0px;
}
#espacebmenus li a:hover {
	background-color:#D0D0E8;
    color:#9CB2D2;
}

/*
inspired from http://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_topnav
*/
ul.topnav {
  list-style: none;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  display: table ;
  text-align: center;
  align: center;
  background-color: #D0D0E8;
}

ul.topnav li {
text-align: center ;
list-style: none ;
font-family: "Verdana", "Lucida Grande", Tahoma, sans-serif;
font-size: 10px;
float: left;}

ul.topnav li a {
  display: inline-block;
  color: #3965A5 ;
  text-align: center;
  padding: 0px 10px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 10px;
}

ul.topnav li a:hover {background-color:#D0D0E8;
        color:#9CB2D2;}

ul.topnav li.icon {display: none;}

@media only screen and (max-width:680px) and (-webkit-min-device-pixel-ratio : 2),
	   only screen and (max-width:380px)    {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: left;
    display: inline-block;
  }

  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    left: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
}

@media only screen and (max-width:680px)  { /* and (-webkit-min-device-pixel-ratio : 2)*/
div.menu-bar {
     width : 100%;
     align: left;
     text-align: left;
   }
}

/* menu icon creation */
.box-shadow-menu {
  position: relative;
  padding-left: 1.25em;
}
.box-shadow-menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1em;
  height: 0.15em;
  background: black;
  box-shadow: 
    0 0.25em 0 0 black,
    0 0.5em 0 0 black;
}

