@charset "UTF-8";	
  
/* CSS para o menu lateral */
.navbar-inverse {
	margin:0px;
	border-radius: 0px;
	color: #fff;
	background-color: #337ab7;
	border-color: #337ab7;
	background-image:none;
}
.navbar-inverse .navbar-nav > li > a {
    color: #fff;
}
.navbar-inverse .navbar-brand {
    color: #fff;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #333;
}
@media (max-width: 767px)
{
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
		color: #fff;
	}
}

/*  Botão no modo Link: quebrar linha */
.btn-link {
	padding:0px;
	white-space:normal;
	text-align:left;
}

.btn-link:hover, .btn-link:focus {
  color: #cc3300;
  text-decoration: none;
  background-color: transparent;
}
a:hover, a:focus {
  color: #cc3300;
  text-decoration: none;
  background-color: transparent;
}

/* Mudar a cor da borda do nav-tabs */

.nav-tabs {
    margin: 0;
}

.tab-content {
    padding: 30px;
    height: 100%; 
    border-left: 1px solid #337ab7 ; 
    border-right: 1px solid #337ab7;
}

.nav-tabs>li.active>a {
    border-color: #337ab7;
    border-bottom-color: #fff;
}

.nav-tabs .nav-link.active {
    border-color: #337ab7;
    border-bottom-color: #fff;
	border-color: #337ab7 #337ab7 #fff !important;
}

.nav-tabs>li.active>a:hover {
    border-color: #337ab7;
    border-bottom-color: #fff;
}

.nav-tabs>li>a:hover {
    border-color: #80bfff #80bfff #337ab7 !important;
	background-color: #e6f2ff;
}

.nav-tabs>li.active>a:focus {
    border-color: #337ab7;
    border-bottom-color: #fff;
}

.nav-tabs {
    border-bottom: 1px solid #337ab7;
}

/* Configuração da votação com estrelas */
.starRating:not(old){
  display        : inline-block;
  width          : 7.5em;
  height         : 1.5em;
  overflow       : hidden;
  vertical-align : bottom;
}
.starRating:not(old) > input{
  margin-right : -100%;
  opacity      : 0;
}
.starRating:not(old) > label{
  display         : block;
  float           : right;
  position        : relative;
  background      : url('/pix/star-off.svg');
  background-size : contain;
}
.starRating:not(old) > label:before{
  content         : '';
  display         : block;
  width           : 1.5em;
  height          : 1.5em;
  background      : url('/pix/star-on.svg');
  background-size : contain;
  opacity         : 0;
  transition      : opacity 0.2s linear;
}
.starRating:not(old) > label:hover:before,
.starRating:not(old) > label:hover ~ label:before,
.starRating:not(:hover) > :checked ~ label:before{
  opacity : 1;
}

/* Configuração de Vídeo */
figure 
{
	width: 98%; 
	min-width: 17.5em; 
	margin:0 auto;
}
figcaption 
{
	font: 120% sans-serif; 
	text-align: center;
}
.boxVideo 
{
	position: relative;
	padding-bottom: 56.25%; 
	padding-top: 25px;
	height: 0;
	margin:0 auto;
}
.boxVideo iframe 
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Texto Formatado embeded */
iframe.cheio 
{
width: 100%;
height: auto;
}
@charset "UTF-8";

/* Google Font */

/* Centraliza icone com o texto */
.material-icons 
{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Rules for sizing the icon. */
.material-icons.md-8 { font-size: 8px; }
.material-icons.md-12 { font-size: 12px; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* Centralizar o texto com o Icone */
h1, h2, h3, h4, h5, h6, a
{
	display: inline-flex;
	vertical-align: middle;
	align-items: center;
}

/* Autocompletar formulário */
.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.awesomplete {
    display: inline-block;
    position: relative;
}

.awesomplete > input {
    display: block;
	color: #1c4263;
	padding:3px;
}

.awesomplete > ul {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 350px;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.awesomplete > ul:empty {
    display: none;
}

.awesomplete > ul {
	border-radius: .3em;
	margin: .2em 0 0;
	background: hsla(0,0%,100%,.9);
	background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
	border: 1px solid rgba(0,0,0,.3);
	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
	text-shadow: none;
	color: #1c4263;
}

@supports (transform: scale(0)) {
	.awesomplete > ul {
		transition: .3s cubic-bezier(.4,.2,.5,1.4);
		transform-origin: 1.43em -.43em;
	}
	
	.awesomplete > ul[hidden],
	.awesomplete > ul:empty {
		opacity: 0;
		transform: scale(0);
		display: block;
		transition-timing-function: ease;
	}
}

	/* Pointer */
	.awesomplete > ul:before {
		content: "";
		position: absolute;
		top: -.43em;
		left: 1em;
		width: 0; height: 0;
		padding: .4em;
		background: white;
		border: inherit;
		border-right: 0;
		border-bottom: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.awesomplete > ul > li {
		position: relative;
		padding: .2em .5em;
		cursor: pointer;
	}
	
	.awesomplete > ul > li:hover {
		background: #b8d3e0;
		color: black;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: #337ab7;
		color: white;
	}
	
		.awesomplete mark {
			background: #b8d3e0;
		}
		
		.awesomplete li:hover mark {
			background: #d1ce00;
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: #5d6b00;
			color: inherit;
		}

/* Caixa de texto tipo <pre> */
.texto-pre 
{
	width:100%;
	display: block;
	padding: 9.5px;
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.42857143;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* Área de Impressão - basta colocar o id="printcontent" no que for imprimir */
@media print
{
	body * { visibility: hidden; }
	#printcontent * 
	{
		visibility: visible;
		// background: #fff !important;
		// color: #333 !important;
		// border-color: #ccc !important; 
	}
	#printcontent { position: absolute; top: 40px; left: -170px;}
	.no-print, .no-print *
    {
        display: none !important;
    }
	/* button { display: none !important;} */
	a[href]:after { content: none !important; }
}