﻿/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */




html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;	
	font-family: "Trebuchet MS", Helvetica, sans-serif;	
    zoom: .95;	
}


/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}




/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 144dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}




/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body{
	padding:0;
	margin:0;
	background-color: #F0F0F0;
	border: none;
	overflow:auto;
	overflow-style:marquee-line;
}

@font-face {
    font-family: Swiss721;
    src: url('Swis721.ttf') format("truetype"); /* Swiss 721 light */
}

input:focus {
    outline:none;
}

select:focus {
    outline:none;
}

#header {
	position: fixed;
	display: block;
	width: 100%;
	height: 80px;
	padding: 0;
	margin: 0;
	top: 0;
	left:0;
	background-color:#05418C;
	background-repeat:repeat-x;
	background-size: 100% 100%;
	vertical-align: middle;
	z-index: 100000;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg);}
    100% { -webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
    0% { -moz-transform: rotate(0deg);}
    100% { -moz-transform: rotate(360deg);}
}
@-o-keyframes spin {
    0% { -o-transform: rotate(0deg);}
    100% { -o-transform: rotate(360deg);}
}
@-ms-keyframes spin {
    0% { -ms-transform: rotate(0deg);}
    100% { -ms-transform: rotate(360deg);}
}
@-sand-keyframes spin {
    0% { -sand-transform: rotate(0deg);}
    100% { -sand-transform: rotate(360deg);}
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

#spinImg {
	position: fixed;
	display: none;
	height: 48px;
	width: 48px;
	padding: 0;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 100001;
	-webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    -ms-animation: spin 1s linear infinite;
    -sand-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

#spinImg2 {
	position: fixed;
	display: display;
	height: 48px;
	width: 48px;
	padding: 0;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 100001;
}

#footer {
	position: fixed;
	display: block;
	width: 100%;
	height: 25px;
	line-height: 25px;
	padding: 5px;
	margin: 0;
	bottom: 0;
	left:0;
	color:#FFFFFF;
	background-color:#333333;
	background-repeat:repeat-x;
	background-size: 100% 100%;
	vertical-align: middle;
	z-index: 99991;
}

#index {
	vertical-align: middle;
	display:block;
	position: absolute;
	padding: 0;
	top:0px;
	bottom: 0px;
	height: auto;
	width: 100%;
	/* background-image: url(./splash.jpg); */
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: left top;
	background-size: 100% auto;
	overflow-style:marquee-line;
}

#indexDes{
	vertical-align: middle;
	display:block;
	padding: 0;
	top:0px;
	bottom: auto;
	height: auto;
	width: 800px;
	left: 0px;
	right: 0px;
	margin: 10px auto 10px auto;
	border: 1px solid #C8C9CB !important;
}

#indexPlc{
	vertical-align: middle;
	display:block;
	padding: 0;
	top: auto;
	bottom: auto;
	height: auto;
	width: 800px;
	left: 0px;
	right: 0px;
	margin: 0px auto 10px auto;
	border: 1px solid #C8C9CB !important;
	page-break-before: always;
}

.divLeft {
	display: block;
	padding: 0;
	margin: 0 0 10px 0;
	position: relative;
	float: left;
	width: 300px;
	border: none;
	height: auto;
}

.divRight {
	display: block;
	padding: 0;
	margin: 0 0 10px 0;
	position: relative;
	float: right;
	width: 300px;
	border: none;
	height: auto;
}

.divLeftOrc {
	display: block;
	padding: 0;
	margin: 0 0 10px 0;
	position: relative;
	float: left;
	width: 540px;
	border: none;
	height: auto;
}

.divRightOrc {
	display: block;
	padding: 0;
	margin: 0 0 10px 0;
	position: relative;
	float: right;
	width: 300px;
	border: none;
	height: auto;
}

.trTitulo {
	display:block;
	position:fixed;
	top:80px;
	padding: 0;
	margin: 0;
	left:0;
	height: 40px;
	line-height: 40px;
	width: 100%;
	color: #FFFFFF;
	border: none;
	background-color: #8490c8;
	background-image: url(../img/header.png);
	background-repeat:repeat-x;
	background-size: 100% 100%;
	vertical-align: middle;
	z-index: 99999;
}

#listas {
	display:block;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
	bottom: 0;
	height: auto;
	width: auto;
	overflow-style:marquee-line;
	vertical-align: middle;
	text-align: center;
}

.tdListas {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: auto;
	padding-bottom: auto;
}

.tdLinha {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.tdLinMed {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.txCenterXs {
	text-align: center;
	font-family: Helvetica;
	font-size:8pt;
	font-style: normal;
	font-weight: normal;
}

.txLeftXs {
	text-align: left;
	font-family: Helvetica;
	font-size:8pt;
	font-style: normal;
	font-weight: normal;
}

.txLeftXXs {
	text-align: left;
	font-family: Helvetica;
	font-size:6pt;
	font-style: normal;
	font-weight: normal;
}

.txCenterSm {
	text-align: center;
	font-family: Helvetica;
	font-size:10pt;
	font-style: normal;
	font-weight: normal;
}

.txLeftSm {
	text-align: left;
	font-family: Helvetica;
	font-size:10pt;
	font-style: normal;
	font-weight: normal;
}

.txCenterMed {
	text-align: center;
	font-family: Helvetica;
	font-size:12pt;
	font-style: normal;
	font-weight: normal;
}

.txLeftMed {
	text-align: left;
	font-family: Helvetica;
	font-size:12pt;
	font-style: normal;
	font-weight: normal;
}

.txRightMed {
	text-align: right;
	font-family: Helvetica;
	font-size:12pt;
	font-style: normal;
	font-weight: normal;
}

.txCenterLarge {
	text-align: center;
	font-family: Helvetica;
	font-size:16pt;
	font-style: normal;
	font-weight:normal;
}

.txLeftLarge {
	text-align: left;
	font-family: Helvetica;
	font-size:16pt;
	font-style: normal;
	font-weight:normal;
}

.txRightLarge {
	text-align: right;
	font-family: Helvetica;
	font-size:16pt;
	font-style: normal;
	font-weight: normal;
}

.trTitEsq {
	height: 40px;
	line-height: 40px;
	width: 100%;
	color: #FFFFFF;
	border: none;
	background-color: #707070;
	background-image: url(../img/header.png);
	background-repeat:repeat-x;
	background-size: 100% 100%;
	vertical-align: middle;
	margin: auto;
}

.trFolhaTit {
	width: 600px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: #333;
	background-color: #C8C9CB;
	vertical-align: middle;
}

.hand:hover {
	cursor: pointer;
}

.txSearch {
	position: absolute;
	left: 0;
	right: 0;
	width: auto;
	height: 22px;
	margin: 22px 15px 10px 15px;
	font-size:16px;
	vertical-align: middle;
	text-transform: uppercase;
}

.trButton {
	vertical-align: middle;
	width: 100%;
	height: auto;
	border-left: 0 !important;
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 1px solid #50D2FA !important;
	color: #333;
	background-color: #FFFFFF;
}

.btEsq {
	color: #E1E3F2;
	background-color: #0B4EA2;
	display:block;
	position: relative;
	margin: 3px 10px 2px 10px;
    text-align:center;
	padding: 5px;
	width: auto;
	height: auto;
	float: left;
	font-family:Helvetica;
	font-size:16px;
	border: none;
    border-radius: 2px;
}

.btEsq:hover{
	cursor: pointer;
	background-color: #BAC0E2;
	color:#8490c8;
}

.btDir {
	color: #E1E3F2;
	background-color: #0B4EA2;
	display:block;
	position: relative;
	margin: 3px 10px 2px 10px;
    text-align:center;
	padding: 5px;
	width: auto;
	height: auto;
	float: right;
	font-family:Helvetica;
	font-size:16px;
	border: none;
    border-radius: 2px;
}

.btDir:hover{
	cursor: pointer;
	background-color: #BAC0E2;
	color:#8490c8;
}

.btSmall {
	color: #E1E3F2;
	background-color: #0B4EA2;
	display: inline-block;
	position: relative;
	margin: 0px;
    text-align:center;
	padding: 5px;
	width: auto;
	height: auto;
	font-family:Helvetica;
	font-size:16px;
	border: none;
    border-radius: 2px;
}

.btSmall:hover{
	cursor: pointer;
	background-color: #BAC0E2;
	color:#8490c8;
}

.btWide {
	color: #E1E3F2;
	background-color: #0B4EA2;
	display:block;
	position: relative;
	margin: 10px 15px 10px 15px;
    text-align:center;
	padding: 5px;
	right: 0px;
	left: 0px;
	width: auto;
	height: auto;
	font-family:Helvetica;
	font-size:16px;
	border: none;
    border-radius: 2px;
}

.btWide:hover{
	cursor: pointer;
	background-color: #BAC0E2;
	color:#8490c8;
}

.txUpper {
	text-transform: uppercase;
}

.lbCad {
	margin: 10px 15px 5px 15px;
	font-family:Helvetica;
	font-size:12pt;
}

.txCad {
	margin: 0px 15px 5px 15px;
	font-family:Helvetica;
	font-size:12pt;
}

.lbCadL {
	margin: 10px 0px 5px 15px;
	font-family:Helvetica;
	font-size:12pt;
}

.lbCadR {
	margin: 10px 15px 5px 0px;
	font-family:Helvetica;
	font-size:12pt;
}

.txCadR {
	margin: 0px 15px 5px 0px;
	font-family:Helvetica;
	font-size:12pt;
}

.txCadL {
	margin: 0px 0px 5px 15px;
	font-family:Helvetica;
	font-size:12pt;
}

.lbCadM {
	margin: 10px 0px 5px 75px;
	font-family:Helvetica;
	font-size:12pt;
}

.txCadM {
	margin: 0px 15px 5px 75px;
	font-family:Helvetica;
	font-size:12pt;
}

input[type="text"]:disabled{
	background-color: #E0E0E0;
}

.btMenu {
	color:#2B1F51;
	background-color: #8297AC;
	display:block;
	position: relative;
	margin:10px 0 0 40px;
	padding: 20px;
	right: 0px;
	left: 0px;
	width: 360px;
	height: auto;
}

.btMenu:hover {
	cursor: pointer;
	background-color: #2B1F51;
	color:#8297AC;
}

.txRed{
	color: #C33;
}

.txWide {
	color: #FFFFFF;
	background-color: #8490C8;
	display:block;
	position: relative;
	margin: 10px 15px 10px 15px;
    text-align:center;
	padding: 5px 2px 5px 2px;
	right: 0px;
	left: 0px;
	width: auto;
	height: auto;
	min-height: 20px;
	font-family:Helvetica;
	font-size:16px;
	border: 1px solid #C8C9CB !important;
    border-radius: 2px;
}

.tbAuxHide {
	display: none;
}

.trTbTit {
	color: #00000;
	background-color: #E1E3F2;
}

table.tbDes {
	width: 802px;
	height: auto;
	border-left: 0 !important;
	border-right: 0 !important;
	margin-left: -1px;
	margin-right: 0px;
	border: 1px solid #C8C9CB !important;
	border-collapse: collapse !important; 
}

table.tbDes td, table.tbDes th { border: 1px solid #C8C9CB !important; border-collapse: collapse !important; }

.trBordLess {
	width: 600px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	border-left: 0 !important;
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-collapse: collapse !important;
	color: #333;
	background-color: #FFFFFF;
}

.imgConfig {
	position: absolute;
	bottom:0px;
	top:0px;
	left:0px;
	right:0px;
	display: none;
	margin:auto;
}

#divCp{
	border-left:1px solid #C8C9CB !important;
	border-collapse:collapse !important;
	display:inline-block;
	width:201px;
	float: right;
	height:60px;
	top:0px;
	bottom: opx;
	right:0px;
}

table.tbLeg {
	width: 250px;
	height: auto;
	border-left: 0 !important;
	border-right: 0 !important;
	margin-left: 4px;
	margin-right: 4px;
	border: 1px solid #C8C9CB !important;
	border-collapse: collapse !important; 
	font-family:Helvetica;
	font-size:8pt;
}

table.tbLeg td, table.tbLeg th { border: 1px solid #C8C9CB !important; border-collapse: collapse !important; }

.txMedDes {
	position:absolute;
	font-family:Helvetica;
	font-size:8pt;
	font-weight:bold;
	display:none;
}

table.tbPlaca {
	width: 640px;
	height: auto;
	border-left: 0 !important;
	border-right: 0 !important;
	margin: 0px 20px 5px 20px;
	border: 0px none !important;
	border-collapse: collapse !important; 
	font-family:Helvetica;
	font-size:8pt;
	color:#FFF;
}

table.tbPlaca td, table.tbPlaca th { border: 0px none !important; border-collapse: collapse !important; }

.tdPlaca{
	width:320px;
	height:auto;
	line-height:36px;
	vertical-align:middle;
	text-align:right;
}

.txPlaca{
	font-family:Helvetica;
	font-size:14pt;
	margin: auto 20px auto 5px;
	vertical-align:middle;
	text-align:center;
	border: 1px solid #C8C9CB !important;
}

.tbPlaca input[type='text'][disabled], .txPlaca textarea[disabled]{
	background-color:#F5F5F5;
	color:#000000;
	border: 1px solid #C8C9CB !important;
}

.txVert{
	position:absolute;
	white-space:nowrap;
	margin-top: -7px;
	margin-left: -25px;
	transform:rotate(270deg);
	-ms-transform:rotate(270deg); /* IE 9 */
	-moz-transform:rotate(270deg); /* Firefox */
	-webkit-transform:rotate(270deg); /* Safari and Chrome */
	-o-transform:rotate(270deg); /* Opera */
}