/*
    ACESSO A DOCUMENTOS
    DESENVOLVIDO POR DIALWEB.COM.BR
*/

@import url(http://fonts.googleapis.com/css?family=Poppins:400,600);

html, body {
    height: 100%;
}

body {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
	color: #666;
    background: #E5E5E5;
}



/* FORMULARIO */
form label {
    display: block;
    margin-top: 10px;
}

form label > span {
    font-weight: bold;
	}

form input, form select, form textarea {
    display: block;
    height: 45px;
    border: 1px solid #CCC;
    padding: 0 10px;
    width: 100%;
    -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

form textarea {
    height: auto;
    padding: 10px;
    resize: none;
}

form input[type=checkbox], form input[type=radio] {
    display: inline;
    padding: 0;
    width: auto;
    height: auto;
}

form button {
    display: block;
    width: 100%;
    height: 45px;
    margin: 20px auto 0 auto;
    padding: 0 35px;
    border: 0;
    background: #DDD;
    -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

form button:hover {
    background: #CCC;
}

form button.green {
    color: #FFF;
    background: #63C76A;
}

form button.green:hover {
    background: #59BD60;
}

form label.col {
    float: left;
    width: 50%;
    margin-left: 2%;
}

form label.col.f {
    margin-left: 0;
}

form label.col.small {
    width: 18%;
}

form label.col.medium {
    width: 49%;
}

form label.col.large {
    width: 79%;
}

form .btnCenter {
    text-align: center;
}

form .btnCenter > button {
    display: inline-block;
    width: auto;
    margin: 20px 1% 0 1%;
}



/* ALINHAMENTOS */
.alCenter {
    text-align: center;
}



/* ALERTA */
.alerta {
    color: #1B1E21;
    background-color: #D6D8D9;
    border: 1px solid #C6C8CA;
    margin-bottom: 10px;
    padding: 10px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.alerta.erro {
    color: #721C24;
    background-color: #F8D7DA;
    border-color: #F5C6CB;
}

.alerta.erro > .badge {
    color: #FFF;
    background: #DC3545;
}

.alerta.sucesso {
    color: #155724;
    background: #D4EDDA;
    border-color: #C3E6CB;
}

.alerta.sucesso > .badge {
    color: #FFF;
    background: #28A745;
}

.alerta.atencao {
    color: #856404;
    background: #FFF3CD;
    border-color: #FFEEBA;
}

.alerta.atencao > .badge {
    color: #212529;
    background: #FFC107;
}

.alerta > .badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    text-align: center;
    vertical-align: baseline;
    text-transform: capitalize;
    margin-right: 5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}



/* ESTRUTURA */
h1 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -1px;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -1px;
}

h2 > span {
	font-size: 10px;
	font-weight: 400;
	letter-spacing: normal;
}

strong {
    font-weight: bold;
}

a {
    color: #666;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#content {
    padding: 100px 35px 35px 335px;
	max-width: 1200px; /* TODO: REMOVER ESTA LINHA */
}

#content > .boxTitulo {
    line-height: 45px;
    margin-bottom: 20px;
}

#content > .boxTitulo > h1 {
    float: left;
}

#content > .boxTitulo > a {
    float: right;
    background: #CCC;
    padding: 0 35px;
    text-decoration: none;
    text-transform: uppercase;
	margin-left: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#content > .boxTitulo > a:hover {
    background: #BBB;
}

#content > .boxTitulo > a.blue {
    background: #4272D7;
    color: #FFF;
}

#content > .boxTitulo > a.blue:hover {
    background: #3868CD;
}

#content > .boxTitulo > a > span {
    font-size: 12px;
    margin-right: 5px;
}

.bgBox {
    background: #FFF;
    padding: 35px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



/* RESULTADOS */
.bgBox.resultados {
    background: transparent;
    padding: 0;
}

.bgBox.resultados > header {
    color: #FFF;
    background: #333;
    line-height: 60px;
    text-transform: uppercase;
}

.bgBox.resultados > footer {
    background: #F5F5F5;
    line-height: 60px;
    border-top: 1px solid #E5E5E5;
    padding: 0 35px;
    text-align: center;
    font-size: 14px;
}

.bgBox.resultados > .resultado {
    background: #FFF;
    padding: 10px 0;
}

.bgBox.resultados > .resultado:hover {
    background: #F5F5F5;
}

.bgBox.resultados > .resultado span {
    font-size: 8px;
}

.bgBox.resultados > .noResult {
    padding: 10px 35px;
    text-align: center;
    background: #FFF;
}

.bgBox.resultados > .resultado > .acoes {
    float: right;
    padding-right: 35px;
}

.bgBox.resultados > .resultado > .acoes > a {
    margin-left: 10px;
    text-decoration: none;
}

.bgBox.resultados > .noResult > a {
    font-weight: bold;
}

.bgBox.resultados .col {
    float: left;
    padding-left: 35px;
}

.bgBox.resultados .col.w65 {
    width: 65px;
}

.bgBox.resultados .col.w150 {
    width: 150px;
}

.bgBox.resultados .col.w300 {
    width: 300px;
}

.bgBox.resultados .col.w400 {
    width: 400px;
}



/* LOGIN.PHP */
#login {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    margin-top: -210px;
    margin-left: -200px;
    background: #FFF;
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#login > .logo {
    margin: 0 auto 10px auto;
    width: 110px;
    height: 34px;
    background: url(../imagens/logo.png);
    text-indent: -999px;
    overflow: hidden;
}

#login > h1 {
    text-align: center;
}



/* HEADER */
#header {
    position: fixed;
    width: 100%;
    background: #F5F5F5;
    padding: 10px 35px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

#header > .logo {
    float: left;
    width: 110px;
    height: 34px;
    background: url(../imagens/logo.png);
    background-size: cover;
    text-indent: -999px;
    overflow: hidden;
}

#header > .usuario {
    float: right;
    display: table;
}

#header > .usuario > .foto {
    display: table-cell;
    width: 45px;
    height: 45px;
}

#header > .usuario > .foto > img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#header > .usuario > .nome {
    display: table-cell;
    padding-left: 10px;
    vertical-align: middle;
    font-weight: bold;
}

#header > .usuario > .nome > span {
    font-size: 8px;
    vertical-align: middle;
}



/* MENU */
#menu {
    position: fixed;
    width: 300px;
    height: calc(100% - 65px);
    top: 65px;
    left: 0;
    background: #FFF;
    padding: 50px 35px;
}

#menu > a {
    display: block;
    line-height: 50px;
    text-decoration: none;
}

#menu > a:hover {
    color: #4272D7;
}

#menu > a > span {
    min-width: 20px;
    text-align: center;
    margin-right: 10px;
}










@media screen and (max-width: 1199px) {
	#menu {
		width: 100%;
		height: auto;
		padding: 10px 0;
	}
	
	#menu > a {
		float: left;
	}
	
	#content {
		padding: 165px 2% 0 2%;
	}
}