/* TOPO */
html {
	position: relative;
	min-height: 100%;
}
body {
	height: 100%;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */  
}

.container-logo{
	height: 170px;
	overflow: hidden;
}

.menu-container{
	margin-top: 122px;
}

.navbar {
float: right;
  margin-bottom: 0;
  padding: 0;
  background: none;
  z-index: 1000;
  position: relative;
  min-height: 50px;
}

.navbar .nav > li > a {
	float: none;
	padding: 4px 10px;
	height: 34px;
	line-height: 26px;
	margin-top: 2px;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	text-shadow: none;
	transition: color 0.1s ease-in-out;
	-o-transition: color 0.1s ease-in-out;
	-moz-transition: color 0.1s ease-in-out;
	-webkit-transition: color 0.1s ease-in-out;
	font-size: 14px;
}


.navbar .nav {
	padding-left: 0;
}

.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
	text-decoration: none;
	background-color: transparent;
	transition: color 0.1s ease-in-out;
	-o-transition: color 0.1s ease-in-out;
	-moz-transition: color 0.1s ease-in-out;
	-webkit-transition: color 0.1s ease-in-out;
}
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {	
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.navbar-toggle{
	position: relative;
	top: 12px;
	right: 10px;
	width: 48px;
	height: 32px;
	padding: 3px 12px;	
	border-radius: 4px;
	margin: 0;
}


.navbar-nav>li>.dropdown-menu a {	
	height: 26px;
	line-height: 20px;
	font-size: 14px;
	font-weight: bold;
}

.container-destaque .wrapper {
	margin-top: 8px;
	margin-bottom: 8px;
}

.rede-social {float: right;}

/* ***************************************** 
 * RESIZE 
   *****************************************/ 

/* MAX-WIDTH 320px */
@media (max-width: 320px) {  


}


/* MAX-WIDTH 360px */
@media (max-width: 360px) {
  .wrapper { margin-top: 0; }

  .social-container {
    font-size: 0.9em;
    margin: 0;
    padding: 0 10px;
  } 

}

/* MIN-WIDTH 445px E MAX-WIDTH 360px */
@media (min-width: 360px) and (max-width: 445px) {

}


/* MAX-WIDTH 768px */
@media (max-width: 767px) {	
 .rede-social {float: left;}
}


/* MAX-WIDTH 800px */
@media (max-width: 800px) {
  .pagina_imagem { float: none !important; }
}


/* MAX-WIDTH 980px */
@media (max-width: 980px) {
.navbar {width: 100% !important;} 
}


/* MIN-WIDTH 981px E MAX-WIDTH 1199px */
@media (min-width: 981px) and (max-width: 1199px) {

}

/* CÓDIGO PARA CENTRALIZAR O MENU */
.navbar-collapse{
	padding-left: 0;
	padding-right: 0;
}
@media (min-width: 768px){
    .navbar-nav {
        margin: 0 auto;
        display: table;
        table-layout: auto;
        float: none;
        width: 100%;
    }
    .navbar-nav>li {
        display: table-cell;
        float: none;
        text-align: center;
    }
}