/*
    CATALOGO PHB
    DESENVOLVIDO POR DIALWEB.COM.BR
*/

@import url(http://fonts.googleapis.com/css?family=Lato:900);
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700);

html, body
{
	height: 100%;
}

html
{
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
}

body
{
	background: #EEE;
}



/* LOGIN */
#login
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 336px;
	margin-top: -168px;
	margin-left: -200px;
}

#login > .logo
{
	margin: 0 auto 10px auto;
	width: 356px;
	height: 80px;
	background: url(../imagens/logo.png) no-repeat;
}

#login > form
{
	background: #FFF;
	padding: 30px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-webkit-box-shadow: 0 0 3px #000;
	-moz-box-shadow: 0 0 3px #000;
	box-shadow: 0 0 3px #000;
}

#login > form > input
{
	display: block;
	border: 1px solid #CCC;
	padding: 0 10px;
	height: 40px;
	margin: 0 0 5px 0;
	width: 100%;
}

#login > form > input[type=submit]
{
	width: auto;
	background: #0D3192;
	margin: 10px auto 0 auto;
	border: none;
	padding: 0 15px;
	color: #FFF;
	font-weight: bold;
}

#login > form > h1
{
	margin: 0 0 15px 0;
	padding: 0;
	font-family: Lato, Roboto, Arial, Helvetica, sans-serif;
	font-size: 24px;
	letter-spacing: -1px;
	text-align: center;
}



/* HEADER */
#header
{
	position: fixed;
	top: 0;
	left: 0;
	background: #111;
	width: 245px;
	min-height: 100%;
	padding: 20px 0 20px 20px;
	border-right: 5px solid #CC0000;
}

#header > .logo
{
	display: block;
	width: 200px;
	height: 80px;
	margin-bottom: 20px;
	overflow: hidden;
	text-indent: -999px;
	background: url(../imagens/logo2.png) no-repeat;
}

#header > .logado
{
	color: #FFF;
	text-align: center;
	margin-bottom: 20px;
	width: 200px;
}

#header > .logado > a
{
	color: #FFF;
	font-size: 12px;
}

#header > #menu
{
	
}

#header > #menu > a
{
	display: block;
	margin: 3px 20px 0 0;
	color: #FFF;
	text-decoration: none;
	padding: 0 15px;
	line-height: 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#header > #menu > a:hover
{
	background: #FFF;
	color: #000;
	text-decoration: none;
}

#header > #menu > a.atual
{
	background: #CC0000;
	color: #FFF;
	margin: 3px 0 0 0;
	font-weight: bold;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}


/* LINKS */
a
{
	color: #000;
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}



/* ESTRUTURA */
h1
{
	margin: 0 0 10px 0;
	padding: 0;
	font-family: Lato, Roboto, Arial, Helvetica, sans-serif;
	font-size: 24px;
	letter-spacing: -1px;
}

h2
{
	margin: 20px 0 0 0;
	padding: 0;
	font-family: Lato, Roboto, Arial, Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: -1px;
}

h2.nM
{
	margin-top: 0;
}



/* FORMULARIO */
form label
{
	display: block;
	float: left;
	width: 140px;
	line-height: 40px;
	margin: 0 10px 5px 0;
	text-align: right;
}

form label.r
{
	font-weight: bold;
}

form label.reset
{
	float: none;
	display: inline-block;
	line-height: normal;
	width: auto;
	margin: 0;
	text-align: left;
}

form input, form select, form textarea
{
	float: left;
	height: 40px;
	border: 1px solid #CCC;
	padding: 0 10px;
	width: 680px;
	margin: 0 0 5px 0;
	-webkit-transition: border 0.2s linear;
	-moz-transition: border 0.2s linear;
	transition: border 0.2s linear;
}

form input:hover, form select:hover, form textarea:hover
{
	border: 1px solid #999;
}

form input:focus, form select:focus, form textarea:focus
{
	border: 1px solid #666;
}

form input[type=checkbox], form input[type=radio]
{
	float: none;
	display: inline-block;
	width: auto;
	height: auto;
}

form input[type=submit]
{
	display: block;
	float: none;
	width: auto;
	background: #0D3192;
	margin: 15px auto 0 auto;
	border: none;
	padding: 0 15px;
	color: #FFF;
	font-weight: bold;
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	transition: background 0.2s linear;
}

form input[type=submit]:hover, form input[type=submit]:focus
{
	background: #061848;
}

form .input
{
	float: left;
	width: 680px;
	padding-top: 10px;
}

form .input.h
{
	line-height: 40px;
	margin-bottom: 5px;
}



/* CONTENT */
#content
{
	margin-left: 270px;
	padding: 20px 0;
	width: 830px;
}



/* BOTOES */
.botoes
{
	margin-bottom: 10px;
}

.botoes > a
{
	display: inline-block;
	padding: 0 10px;
	line-height: 30px;
	text-decoration: none;
	background: #DDD;
}

.botoes > a:hover
{
	text-decoration: none;
	background: #CCC;
}

.botoes > .adicionar
{
	background: #8CC63F;
	color: #FFF;
	font-weight: bold;
}

.botoes > .adicionar:hover
{
	background: #7AB32E;
}



/* RESULTADOS */
.resultados
{
	
}

.resultados > .cabecalho
{
	font-weight: bold;
	text-transform: uppercase;
	line-height: 40px;
	padding: 0 5px;
}

.resultados > .noResult
{
	padding: 5px;
	text-align: center;
	border-top: 1px solid #CCC;
}

.resultados > .resultado
{
	padding: 5px;
	border-top: 1px solid #CCC;
}

.resultados > .resultado:hover
{
	background: #DDD;
}

.resultados > .resultado:hover > .acoes
{
	display: block;
}

.resultados > .resultado.edit
{
	cursor: pointer;
}

.resultados > .resultado > div > .mini
{
	font-size: 11px;
}

.resultados > .resultado input, .resultados > .resultado select
{
	width: 100%;
	height: 24px;
	padding: 2px 5px;
	font-size: 12px;
	margin: 0;
}

form.resultado .acoes
{
	display: block;
}

.resultados .col50
{
	float: left;
	width: 50px;
}

.resultados .col100
{
	float: left;
	width: 100px;
}

.resultados .col150
{
	float: left;
	width: 150px;
}

.resultados .col200
{
	float: left;
	width: 200px;
}

.resultados .col250
{
	float: left;
	width: 250px;
}

.resultados .col300
{
	float: left;
	width: 300px;
}

.resultados .col350
{
	float: left;
	width: 350px;
}

.resultados .acoes
{
	float: right;
	display: none;
}

form.resultado .salvar, form.resultado .cancelar
{
	display: inline-block;
	margin-left: 5px;
	width: 24px;
	height: 24px;
	overflow: hidden;
	text-indent: -999px;
}

form.resultado .salvar
{
	background: url(../imagens/icoSalvar.png);
}

form.resultado .cancelar
{
	background: url(../imagens/icoCancelar.png);
}



/* PESQUISAR */
#frmPesquisar
{
	position: relative;
	margin-bottom: 30px;
}

#frmPesquisar > input[type=text]
{
	display: block;
	float: none;
	width: 100%;
	margin: 0;
}

#frmPesquisar > input[type=submit]
{
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	background-image: url(../imagens/btnPesquisar.png);
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: -999px;
	width: 60px;
}



/* ALINHAMENTOS */
.alCenter
{
	text-align: center;
}



/* ALERTA */
.alerta
{
    border: 1px solid #F0C837;
    background-color: #FFFBE9;
    margin-bottom: 10px;
    padding: 7px 10px;
    text-align: center;
}

.alerta.erro
{
    background-color: #FFEBE8;
    border-color: #DD3C10;
}

.alerta.sucesso
{
    background-color: #C9E49F;
    border-color: #79BD12;
}

.alerta.info
{
    background-image: url(../imagens/ico_alertaInfo.png);
    background-position: left top;
    background-repeat: no-repeat;
    text-align: left;
    padding-left: 40px;
}