@charset "UTF-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
 CSS Types
 
   input {}     define para todas as tags <INPUT>
   .input		define para os elementos declarados com class='input', pode ser combinado class='input test"
   #input		define para o elemento com id='input' 
   
   Selector	Example	Example description
	.class						.intro					Selects all elements with class="intro"
	#id							#firstname				Selects the element with id="firstname"
	*							*						Selects all elements
	element						p						Selects all <p> elements
	element,element				div, p					Selects all <div> elements and all <p> elements
	element element				div p					Selects all <p> elements inside <div> elements
	element>element				div > p					Selects all <p> elements where the parent is a <div> element
	element+element				div + p					Selects all <p> elements that are placed immediately after <div> elements
	element1~element2			p ~ ul					Selects every <ul> element that are preceded by a <p> element
	[attribute]					[target]				Selects all elements with a target attribute
	[attribute=value]			[target=_blank]			Selects all elements with target="_blank"
	[attribute~=value]			[title~=flower]			Selects all elements with a title attribute containing the word "flower"
	[attribute|=value]			[lang|=en]				Selects all elements with a lang attribute value starting with "en"
	[attribute^=value]			a[href^="https"]		Selects every <a> element whose href attribute value begins with "https"
	[attribute$=value]			a[href$=".pdf"]			Selects every <a> element whose href attribute value ends with ".pdf"
	[attribute*=value]			a[href*="w3schools"]	Selects every <a> element whose href attribute value contains the substring "w3schools"
	:active						a:active				Selects the active link
	::after						p::after				Insert something after the content of each <p> element
	::before					p::before				Insert something before the content of each <p> element
	:checked					input:checked			Selects every checked <input> element
	:disabled					input:disabled			Selects every disabled <input> element
	:empty						p:empty					Selects every <p> element that has no children (including text nodes)
	:enabled					input:enabled			Selects every enabled <input> element
	:first-child				p:first-child			Selects every <p> element that is the first child of its parent
	::first-letter				p::first-letter			Selects the first letter of every <p> element
	::first-line				p::first-line			Selects the first line of every <p> element
	:first-of-type				p:first-of-type			Selects every <p> element that is the first <p> element of its parent
	:focus						input:focus				Selects the input element which has focus
	:hover						a:hover					Selects links on mouse over
	:in-range					input:in-range			Selects input elements with a value within a specified range
	:invalid					input:invalid			Selects all input elements with an invalid value
	:lang(language)				p:lang(it)				Selects every <p> element with a lang attribute equal to "it" (Italian)
	:last-child					p:last-child			Selects every <p> element that is the last child of its parent
	:last-of-type				p:last-of-type			Selects every <p> element that is the last <p> element of its parent
	:link						a:link					Selects all unvisited links
	:not(selector)				:not(p)					Selects every element that is not a <p> element
	:nth-child(n)				p:nth-child(2)			Selects every <p> element that is the second child of its parent
	:nth-last-child(n)			p:nth-last-child(2)		Selects every <p> element that is the second child of its parent, counting from the last child
	:nth-last-of-type(n)		p:nth-last-of-type(2)	Selects every <p> element that is the second <p> element of its parent, counting from the last child
	:nth-of-type(n)				p:nth-of-type(2)		Selects every <p> element that is the second <p> element of its parent
	:only-of-type				p:only-of-type			Selects every <p> element that is the only <p> element of its parent
	:only-child					p:only-child			Selects every <p> element that is the only child of its parent
	:optional					input:optional			Selects input elements with no "required" attribute
	:out-of-range				input:out-of-range		Selects input elements with a value outside a specified range
	:read-only					input:read-only			Selects input elements with the "readonly" attribute specified
	:read-write					input:read-write		Selects input elements with the "readonly" attribute NOT specified
	:required					input:required			Selects input elements with the "required" attribute specified
	:root						:root					Selects the document's root element
	::selection					::selection				Selects the portion of an element that is selected by a user
	:target						#news:target			Selects the current active #news element (clicked on a URL containing that anchor name)
	:valid						input:valid				Selects all input elements with a valid value
	:visited					a:visited				Selects all visited links
   
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* #wrapper {width: 1100px; margin: 0 auto;}
*/

#wrapper {width: 95%; margin: 0 auto;}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	CABECALHO 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#top-information {
	height:4.5em;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:3px;
	margin-top:20px;
	color:#999999;
	font-size:.85em;
	position:relative;
	width:auto;
/*	width:760px;  */
	}
	
#top-logo {
	position:absolute; 
/*	top:.5em;  */
	left:15px;
	font-size:30px;
	font-family:Georgia, "Times New Roman", Times, serif;
/*	height:60px;
	width:600px; */
/*	padding:.1em 0 .2em 0; */
/*	font-variant:small-caps;  */
	}
#top-logo img{
	height:50px;
	width:400px;
	}

#logo a {
	color:#4A6BB3;
	text-decoration:none;
	}

#top-information-home {
	text-align:right;
	border-bottom:1px dashed #CACACA;
	position:absolute;
	top:0;
	right:25.5%;
	height:2em;
	width:15%;
	padding:0 1.5% 0 0;
	}
	
#top-information-phone {
	text-align:center;
	border-left:1px dashed #CACACA;
	position:absolute;
	top:0;
	left:75%;
	height:100%;
	padding:0 0 0 2%;
	}

#top-information-link {
	text-align: center;
	border-left:1px dashed #CACACA;
	position:absolute;
	top:0;
	right:0;
	height:2em;
	width:8.5%;
	padding:0 0 0 1.5%;
	}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	RODAPE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
        
footer {
    background-color:   #337ab7;
    height: 25px;
    font-size: 10px;
    text-align: center;
    color:  white;
    padding: 5px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	BODY
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

main {
	margin:0px;
	margin-top: 30px;
	background-color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	line-height:1.4em;
	color:#666666;
/*        width: 1100px;  */
/*        height: 700px;  */
}

p {
	margin:10px 0;
}

/*select {
	width: 90%;
}*/

.tab {
	margin:10px 0;
    margin-left: 40px;
}
/* .tab:before {
  content: "-";
}
*/

.clear {
	clear:both;
}

.center {
    text-align: center;
    width: 100%;
    margin: auto;
}

table > caption {
    text-align:center;
    margin-bottom: 10px;
    width:100%;
}

.table {
    margin-bottom: 10px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	MENU DE NAVEGACAO SECUNDARIO
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.navnivel2 {
  border-radius: 4px;
/*  color: #888;  */
  display: block;
  margin: 10px 0px 5px 22px;
  overflow: hidden; 
  width: 170px; 
  float: right;
  background-color:    #2aabd2;
}

.navnivel2 ul {
    margin: 0px 0px 0px 22px;
    padding: 0;
    float: right;
}

.navnivel2 ul li {
      display: inline-block;
      list-style-type: none;
      
      -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s; 
}
      .navnivel2 > ul > li > a > .caret,
	  nav > ul > li > div ul > li > a > .caret {
        border-top: 4px solid #aaa;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        content: "";
        display: inline-block;
        height: 0;
        width: 0;
        vertical-align: middle;
  
        -webkit-transition: color 0.1s linear;
     	  -moz-transition: color 0.1s linear;
       	-o-transition: color 0.1s linear;
          transition: color 0.1s linear; 
      }
	  
      .navnivel2 > ul > li > div ul > li > a > .caret {
	border-bottom: 4px solid transparent;
	border-top: 4px solid transparent;
	border-right: 4px solid transparent;
	border-left: 4px solid #f2f2f2;
	margin: 0 0 0 8px;
      }

      .navnivel2 > ul > li > a {
/*        color: #aaa; */
        color: white; 
        display:  block;
        line-height: 26px;
        padding: 0 24px;
        text-decoration: none;
        text-align: center;
      }

        .navnivel2 > ul > li:hover {
          background-color:  #2aabd2;
        }

        .navnivel2 > ul > li:hover > a {
          color: rgb( 255, 255, 255 );
        }

        .navnivel2 > ul > li:hover > a > .caret {
          border-top-color: rgb( 255, 255, 255 );
        }
		
	.navnivel2 > ul > li > div ul > li:hover > a > .caret {
	  border-left-color: rgb(255,255,255);
	}
      
      .navnivel2 > ul > li > div,
	  nav > ul > li > div ul > li > div {
        background-color: #2aabd2;
        border-top: 0;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
        display: none;
        margin: 0;
        opacity: 0;
        position: absolute;
        width: 165px;
        visibility: hidden;
  
        -webkit-transiton: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        -ms-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        -transition: opacity 0.2s;
      }
	  
        .navnivel2 > ul > li > div ul > li > div {
	  background-color: rgb( 40, 44, 47 );
	  border-radius: 0 4px 4px 4px;
	  box-shadow: inset 2px 0 5px rgba(0,0,0,.15);
	  margin-top: -42px;
	  right: -165px;
	}

        .navnivel2 > ul > li:hover > div,
		nav > ul > li > div ul > li:hover > div {
          display: block;
          opacity: 1;
          visibility: visible;
        }

          .navnivel2 > ul > li > div ul > li,
		  nav > ul > li > div ul > li > div ul > li {
            display: block;
	    position: relative;
          }

            .navnivel2 > ul > li > div ul > li > a,
			nav > ul > li > div ul > li > div ul > li > a {
              color: #fff;
              display: block;
              padding: 6px 24px;
              text-decoration: none;
            }

              .navnivel2 > ul > li > div ul > li:hover > a {
                background-color: rgba( 255, 255, 255, 0.1);
              }  
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	MENU DE NAVEGACAO PRIMARIO
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

nav {
 	border-radius: 4px;
/*  color: #888;  */
  	font-size: 12px;
  	display: block;  
/*  margin: 5px 0px 0px 10px; */
/*  overflow: hidden;  */
  	width: 100%; 
  	float: right;
  	background-color: #337ab7;
}

nav ul { 
	padding: 0; 
	list-style: none;
	white-space: nowrap;
	margin: 0;
/*    padding: 0;   */
    float: right;
/*    display: inline-block;  */
    background-color: #337ab7;
    border-radius: 0 0 4px 4px; 
 }

nav li:hover>ul { display: block; }

nav li {
  min-width: 10em;
/*  text-decoration: none;  */
  color: white;
  text-align: center;
}

nav a {
  display: block;
  line-height: 25px;
  padding: 0 14px;
/*  padding: .5em;  */
  text-decoration: none;
  color: white;
  text-align: center;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 100%; left: 0;
}

nav>ul>li { float: left; position: relative; }

nav ul ul ul { 
	position: relative;
	left: 40%; top: 0px;
	background-color: lightblue;
}

	/*  Define o simbolo do caret do segundo nivel de menu, indicando seta para direita */
nav > ul > li > ul  .caret {
	border-bottom: 4px solid transparent;
	border-top: 4px solid transparent;
	border-right: 4px solid transparent;
	border-left: 4px solid #f2f2f2;  
	margin: 0 0 0 8px;
}  

nav .line {
    border-bottom: 1px solid lightblue; 
    line-height: 25px;
    width: 100%; 
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	CONTENT CONTAINER - ONE COLUMN
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#content-container {		/* select element with id=content-container  */
    background-color: white;
    height: 100%;
    width: 100%;
    border:1px solid #818181;
    padding: 10px;
    margin-top: 30px;
    float: top;
}
#content-container-one-column {
    height: 100%;
    width: 100%;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	CONTENT CONTAINER - TWO COLUMN
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#content-container-two-column {
	width:100%;
}

#content-main-two-column {
	width:70%;
}

#content-side-two-column {
	width:25%;
    float : inside;
}


input[type="date"] {
    width: 125px;
}

input[type="datetime-local"] {
    width: 148px;
}

/* input:required:invalid, input:focus:invalid, .ng-invalid {  */
input:required:invalid, input:focus:invalid, .ng-invalid {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeVJREFUeNqkU01oE1EQ/mazSTdRmqSxLVSJVKU9RYoHD8WfHr16kh5EFA8eSy6hXrwUPBSKZ6E9V1CU4tGf0DZWDEQrGkhprRDbCvlpavan3ezu+LLSUnADLZnHwHvzmJlvvpkhZkY7IqFNaTuAfPhhP/8Uo87SGSaDsP27hgYM/lUpy6lHdqsAtM+BPfvqKp3ufYKwcgmWCug6oKmrrG3PoaqngWjdd/922hOBs5C/jJA6x7AiUt8VYVUAVQXXShfIqCYRMZO8/N1N+B8H1sOUwivpSUSVCJ2MAjtVwBAIdv+AQkHQqbOgc+fBvorjyQENDcch16/BtkQdAlC4E6jrYHGgGU18Io3gmhzJuwub6/fQJYNi/YBpCifhbDaAPXFvCBVxXbvfbNGFeN8DkjogWAd8DljV3KRutcEAeHMN/HXZ4p9bhncJHCyhNx52R0Kv/XNuQvYBnM+CP7xddXL5KaJw0TMAF8qjnMvegeK/SLHubhpKDKIrJDlvXoMX3y9xcSMZyBQ+tpyk5hzsa2Ns7LGdfWdbL6fZvHn92d7dgROH/730YBLtiZmEdGPkFnhX4kxmjVe2xgPfCtrRd6GHRtEh9zsL8xVe+pwSzj+OtwvletZZ/wLeKD71L+ZeHHWZ/gowABkp7AwwnEjFAAAAAElFTkSuQmCC);
    background-position: right top;
    background-repeat: no-repeat;
    -moz-box-shadow: none;
}
/*input:required:valid{
     background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAepJREFUeNrEk79PFEEUx9/uDDd7v/AAQQnEQokmJCRGwc7/QeM/YGVxsZJQYI/EhCChICYmUJigNBSGzobQaI5SaYRw6imne0d2D/bYmZ3dGd+YQKEHYiyc5GUyb3Y+77vfeWNpreFfhvXfAWAAJtbKi7dff1rWK9vPHx3mThP2Iaipk5EzTg8Qmru38H7izmkFHAF4WH1R52654PR0Oamzj2dKxYt/Bbg1OPZuY3d9aU82VGem/5LtnJscLxWzfzRxaWNqWJP0XUadIbSzu5DuvUJpzq7sfYBKsP1GJeLB+PWpt8cCXm4+2+zLXx4guKiLXWA2Nc5ChOuacMEPv20FkT+dIawyenVi5VcAbcigWzXLeNiDRCdwId0LFm5IUMBIBgrp8wOEsFlfeCGm23/zoBZWn9a4C314A1nCoM1OAVccuGyCkPs/P+pIdVIOkG9pIh6YlyqCrwhRKD3GygK9PUBImIQQxRi4b2O+JcCLg8+e8NZiLVEygwCrWpYF0jQJziYU/ho2TUuCPTn8hHcQNuZy1/94sAMOzQHDeqaij7Cd8Dt8CatGhX3iWxgtFW/m29pnUjR7TSQcRCIAVW1FSr6KAVYdi+5Pj8yunviYHq7f72po3Y9dbi7CxzDO1+duzCXH9cEPAQYAhJELY/AqBtwAAAAASUVORK5CYII=);
    background-position: right top;
    background-repeat: no-repeat;
} */

.title_box { 
    border: #3c5a86 1px solid; 
}

.title_box #title { 
    position: relative; 
    top : -0.5em;
    margin-left: 1em;
    display: inline; 
    background-color: white; 
}

.title_box #content {
}

.align-right{
	float: right;
}

.lbc-input-erro {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeVJREFUeNqkU01oE1EQ/mazSTdRmqSxLVSJVKU9RYoHD8WfHr16kh5EFA8eSy6hXrwUPBSKZ6E9V1CU4tGf0DZWDEQrGkhprRDbCvlpavan3ezu+LLSUnADLZnHwHvzmJlvvpkhZkY7IqFNaTuAfPhhP/8Uo87SGSaDsP27hgYM/lUpy6lHdqsAtM+BPfvqKp3ufYKwcgmWCug6oKmrrG3PoaqngWjdd/922hOBs5C/jJA6x7AiUt8VYVUAVQXXShfIqCYRMZO8/N1N+B8H1sOUwivpSUSVCJ2MAjtVwBAIdv+AQkHQqbOgc+fBvorjyQENDcch16/BtkQdAlC4E6jrYHGgGU18Io3gmhzJuwub6/fQJYNi/YBpCifhbDaAPXFvCBVxXbvfbNGFeN8DkjogWAd8DljV3KRutcEAeHMN/HXZ4p9bhncJHCyhNx52R0Kv/XNuQvYBnM+CP7xddXL5KaJw0TMAF8qjnMvegeK/SLHubhpKDKIrJDlvXoMX3y9xcSMZyBQ+tpyk5hzsa2Ns7LGdfWdbL6fZvHn92d7dgROH/730YBLtiZmEdGPkFnhX4kxmjVe2xgPfCtrRd6GHRtEh9zsL8xVe+pwSzj+OtwvletZZ/wLeKD71L+ZeHHWZ/gowABkp7AwwnEjFAAAAAElFTkSuQmCC);
    background-position: right top;
    background-repeat: no-repeat;
    font-size:1.5em;
  -moz-box-shadow: none;
}
.lbc-input-ok {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAepJREFUeNrEk79PFEEUx9/uDDd7v/AAQQnEQokmJCRGwc7/QeM/YGVxsZJQYI/EhCChICYmUJigNBSGzobQaI5SaYRw6imne0d2D/bYmZ3dGd+YQKEHYiyc5GUyb3Y+77vfeWNpreFfhvXfAWAAJtbKi7dff1rWK9vPHx3mThP2Iaipk5EzTg8Qmru38H7izmkFHAF4WH1R52654PR0Oamzj2dKxYt/Bbg1OPZuY3d9aU82VGem/5LtnJscLxWzfzRxaWNqWJP0XUadIbSzu5DuvUJpzq7sfYBKsP1GJeLB+PWpt8cCXm4+2+zLXx4guKiLXWA2Nc5ChOuacMEPv20FkT+dIawyenVi5VcAbcigWzXLeNiDRCdwId0LFm5IUMBIBgrp8wOEsFlfeCGm23/zoBZWn9a4C314A1nCoM1OAVccuGyCkPs/P+pIdVIOkG9pIh6YlyqCrwhRKD3GygK9PUBImIQQxRi4b2O+JcCLg8+e8NZiLVEygwCrWpYF0jQJziYU/ho2TUuCPTn8hHcQNuZy1/94sAMOzQHDeqaij7Cd8Dt8CatGhX3iWxgtFW/m29pnUjR7TSQcRCIAVW1FSr6KAVYdi+5Pj8yunviYHq7f72po3Y9dbi7CxzDO1+duzCXH9cEPAQYAhJELY/AqBtwAAAAASUVORK5CYII=);
    background-position: right top;
    background-repeat: no-repeat;
    font-size:1.5em;
}

.sortorder:after {
  content: '\25b2';
}
.sortorder.reverse:after {
  content: '\25bc';
}

.alert {
    padding: 3px;
    font-size: 12px;
    float: auto;
}

.badge-danger {
  background-color: #d43f3a;
}
.badge-warning {
background-color: #d58512;
}

.badge-success {
background-color: #398439;
}

.badge-info {
background-color: #269abc;
}

.badge-inverse {
background-color: #333333;
}

.modal-login-header, .login-h4, .close {
    background-color: #5cb85c;
    color:white !important;
    text-align: center;
    font-size: 30px;
}

.modal-login-footer {
    background-color: #f9f9f9;
}

.noshow {
    display: none;  
}

.show {
    display: in-line;  
}

.prtheader {
/*	margin:20px 20px 20px 40px; */
    height: 100px; 
    top: 0;
    text-align: center;
}

.prtmain {
/*	margin:10px 20px 20px 40px; */
	line-height:1.3em;
    font-size: 7px;
/*    border:1px solid #818181; */
}

.prtfooter {
/*	margin:10px 20px 20px 40px;  */
    font-size: 12px;
/*    border:1px solid #818181;  */
    height: 50px; 
    width: 100%; 
    display: table-footer-group;
}

.prtfooter:after {
    counter-increment: page;
    content: "Pag: " counter(page);
    left: 0; 
    top: 100%;
    white-space: nowrap; 
    z-index: 20px;
    -moz-border-radius: 5px; 
    -moz-box-shadow: 0px 0px 4px #222;  
    background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);  
    background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);  
}

.seloqrtopright {
    position: absolute;
    top: 0;
    right: 0px;
    width: 100px; 
    height: 100px; 
    margin: 20px 20px 10px 10px;
}

.selotopright {
    position: absolute;
    top: 0;
    right: 110px;
    width: 155px; 
    height: 100px; 
    margin: 20px 20px 10px 10px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
	Acerta tamanho bootbox.dialog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ 
.dialogWide > .modal-dialog {
     width: 80% !important;
}

@page {
	size: A4;
    margin: 3cm 0 1cm 0 ;   /* margens geral da pagina */
}

@media print {	
  .prtheader, .seloqrtopright, .selotopright{
    position: fixed;
    top: 0;
  }
  .prtfooter {
     position: fixed;
     bottom: 0;
     height: 2cm; 
  }
  .prtmain {
     margin: 3.5cm 0 0 0;
  }
  .noprint{
     display:none;
  }

  
}

