<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Login Homepage */

@font-face {
    font-family: 'Roboto-Regular';
    src: url('/fonts/roboto_ttf/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoCondensed-Bold';
    src: url('/fonts/roboto_ttf/RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoCondensed-Regular';
    src: url('/fonts/roboto_ttf/RobotoCondensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoCondensed-Light';
    src: url('/fonts/roboto_ttf/RobotoCondensed-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoCondensed-Italic';
    src: url('/fonts/roboto_ttf/RobotoCondensed-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('/fonts/roboto_ttf/Roboto-light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('/fonts/roboto_ttf/Roboto-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('/fonts/roboto_ttf/Roboto-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.loginpage {
	height: 100%;
	overflow: hidden;
	width: 100%;
}
.lp_top {
	position: relative;
	overflow: hidden;
	height: 100%;
	display: none;
}
.lp_loginform {
	padding-left: 5px;
	padding-right: 5px;
	width: 323px;
	padding-bottom: 30px;
	margin: 0 auto;
	position: relative;
	top: 150px;
	z-index: 999;
	border-radius: 4px;
	background: #f4f4f5;
	background: -moz-linear-gradient(top, #f4f4f5 0%, #d7d8d9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f5), color-stop(100%,#d7d8d9));
	background: -webkit-linear-gradient(top, #f4f4f5 0%,#d7d8d9 100%);
	background: -o-linear-gradient(top, #f4f4f5 0%,#d7d8d9 100%);
	background: -ms-linear-gradient(top, #f4f4f5 0%,#d7d8d9 100%);
	background: linear-gradient(to bottom, #f4f4f5 0%,#d7d8d9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f5', endColorstr='#d7d8d9',GradientType=0 );
	box-shadow: 0 0 20px #000;
}
.lp_logo {
	width: 241px;
	/* height: 45px; */
	margin: 0 auto;
	padding-top: 14px;
	padding-bottom: 8px;
	background-color: #008cba;
	font-family:"Roboto-Medium";
	position: relative;
	top: -10px;
	color:#fff;
	font-size:16px;
	text-align: center;
}
.lp_loginform form {
	padding-top: 26px;
}
.lp_loginform form input {
	display: block;
	width: 225px;
	height: 30px;
	padding: 0;
	color:#A9A9A9;
	padding-left: 10px;
	font-family:"Roboto-Medium";
	margin: 0 auto;
	margin-bottom: 25px;
	border: none;
	line-height: 30px;
	font-size: 14px;
}
.lp_loginform form select {
	display: block;
	width: 235px;
	height: 30px;
	padding: 0;
	color:#A9A9A9;
	padding-left: 10px;
	font-family:"Roboto-Medium";
	margin: 0 auto;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;
	line-height: 30px;
	font-size: 13px;
}
.lp_loginform form label {
	display: block;
	width: 225px;
	margin: 0 auto;
	margin-top: -5px;
	color: #989798;
	font-size: 12px;
}
.lp_loginform form label input {
	width: auto;
	height: auto;
	margin-right: 5px;
	margin-bottom: 16px;
	display: inline-block;
}
.forgotpassword {
	display: block;
	font-size: 12px;
	color: #008cba;	
	font-family:"Roboto-Bold";
	text-align: center;
}

.lp_submit, .general_submit {
	width: 120px !important;
	padding-left: 0 !important;
	margin-bottom: 13px !important;
	color: #FFF !important;	
	font-family:"Roboto-Regular";
	font-size: 16px !important;
	font-weight: lighter;
	cursor: pointer;
	border-radius: 2px;
	background: #008cba;
	background: -moz-linear-gradient(top, #008cba 0%, #00445f 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#008cba), color-stop(100%,#00445f));
	background: -webkit-linear-gradient(top, #008cba 0%,#00445f 100%);
	background: -o-linear-gradient(top, #008cba 0%,#00445f 100%);
	background: -ms-linear-gradient(top, #008cba 0%,#00445f 100%);
	background: linear-gradient(to bottom, #008cba 0%,#00445f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008cba', endColorstr='#00445f',GradientType=0 );
}


#errormesg {
	text-align: center;
	font-size: 13px;
	display: block;
	padding-bottom: 18px;
	color: red;
}
	
#errormesg a {
	color: #666;
}

#errormesg a:hover {
	color: #006C92;
}

.zeromarg #conteiner #main {
	margin: 0px;
	padding: 0px;
	width: 996px;
	position: relative;
	overflow: visible;
	background-image: url(/img/fundo_pav_60.jpg);
	background-repeat: no-repeat;
	height: 650px;
}

.msgbox	{
	font-family: "Roboto-Medium";
	margin:auto;
	width:70%;
	position:relative;
	padding:20px;
	color:#000;	
}

</pre></body></html>