@charset "UTF-8";
/* CSS Document */
* {
	margin:0;
	padding:0;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
} 
html {
  background-color:#000;
}
body {
	font-family: 'Oswald', sans-serif;
  font-weight:200;
  padding-top:60px;
  background-color:#F8F8F8;
}
img{
	 border-style:none;
}
ul {
	list-style-type:none;
}
a {
	text-decoration:none;
	outline:none;
}
br {
	letter-spacing: normal;
}
span.text-br {
	display:inline-block;
}
h1, h2, h3, h4 {
	font-family: 'Gentium Book Basic', serif;
	font-weight:400;
}
h1 {
	font-size:30px;
	margin-bottom:20px;
}
h2 {
	font-size:26px;
	margin-bottom:20px;
  font-weight:500;
}
h3 {
	font-size:20px;
}
h4 {
	font-size:18px;
	color:#EE402F;
}
p {
	font-size:18px;
  line-height:1.5em;
	color:#898989;
	margin:0 auto;
}



.container {
	width:100%;
	min-height: 1px;
	margin-right: auto;
	margin-left: auto;
	position:relative;
}
.container:after {
  content: ".";  
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; 
}
* html .container {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.content {
	max-width:100%;
	margin:0 auto;
	position:relative;
	padding-right: 20px;
	padding-left: 20px;
}

.header {
	height:60px;
	background-color: #000;
	z-index:1000;
	position:fixed;
	top:0;
}
.logo {
  float:left;
}
.logo a {
  color:#FFF;
  font-size:20px;
  font-family: 'Gentium Book Basic', serif;
  font-weight:400;
  padding:20px 0;
  display:block;
}

/* MainMenu */
.wrap-menu {
	padding:20px 0;
}
.menu {
	float:right;
}
.menu li {
	text-align:center;
	float:left;
    position: relative;
  margin-left:20px;
}
.menu li a {
	width:100%;
	color:#FFF;
	font-size:16px;
	line-height: 16px;
	padding: 2px 10px;
	display:block;
}

.menu li:hover > a {
    opacity:0.5;
}

.menu li:hover > ul {
    display: block;
}

.menu li.active a {
	color:#289584;
  font-weight:400;
}
.menu li.active:hover > a {
    opacity:1;
}

/* Clear floated elements */
.menu:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html .menu             { zoom: 1; } /* IE6 */
*:first-child+html .menu { zoom: 1; } /* IE7 */

#menu-toggle{ 
 	display: none;
	float:right;
	z-index:1001;
}

.footer {
  min-height: 60px;
	background-color: #000;
	z-index:1000;
	position: relative;
}


@media only screen and (max-width: 768px) {
  .header .content{
    padding: 0 0;
  }
  .logo {
    	padding-left:10px;
    	float:none;
	}
  	.wrap-menu {
    	padding: 0 0;
	}
  	#menu-toggle{
    	display: inline-block;
      	position: absolute;
      	top:15px;
  		right:8px;
      float:none;
  	}
	#menu-toggle a{
		width:35px;
		height:30px;
    	display: block;
		text-indent:-9999px;
  	}
	#menu-toggle:before{
		content: url(../images/icone_menu.png);
		color:#FFF;
    	display: block;
  	}
  	.menu {
		width:100%;
      height:100%;
      background-color:#000;
  		opacity: .85;
      float:none;
  	}
  	.menu li {
		width:100%;
		float:none;
  		margin-left:0;
	}
  	.menu li a {
		padding: 20px 0;
	}
}
@media only screen and (max-width: 480px) {
	.content {
    	padding-right: 15px;
    	padding-left: 15px;
	}
  	.logo a {
    	font-size: 16px;
	}
}