/* FONT STACK */
body,
input, select, textarea, table {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

input {
	height: 28px;
	color: #fff;
}

input[type="text"],
input[type="file"] ,
input[type="email"] ,
input[type="password"] {
    color: #333333;
}

input[type="radio"],
input[type="checkbox"] {
    position: absolute; left: -999em;
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
    content:''; /* this is generated content*/ 
    display: inline-block; /* make this fake elements inline block */
    position:relative; /* we need to move the element without effecting the doc flow */
    top:2px;  /* we're moving it slightly down for alignment purposes */
    left:-5px; /* we're moving it slightly to the left */
    width:14px; height:15px; /* the width and height of the fake elements */
    background-image:url('../images/checkbox.png'); /* the background image sprite */
    background-position: top;
}

input[type="checkbox"] + label:before { background-position: 0 0px;} 
input[type="checkbox"]:checked + label:before {background-position: 0 0; background-image:url('../images/checkbox2.png');}
input[type="radio"] + label:before { background-position: -25px -25px;} 
input[type="radio"]:checked + label:before { background-position: -25px 0; background-image:url('../images/checkbox.png')}

div.styled {
    overflow:hidden; /* this hides the select's drop button */
    padding:0; 
    margin-right:0;
    background: #EAEAEA url('../images/select.png') no-repeat right;
    /* this is the new drop button, in image form */
    width:12em; border-radius:2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    border: solid 1px #ccc;
}

div.styled select {
    width:125% /* this percentage effectively extends the drop down button out of view */;
    background-color:transparent /* this hides the select's background making any styling visible from the div */;
    background-image:none;
    -webkit-appearance: none /* this is required for Webkit browsers */;
    border:none;
    box-shadow:none;
    padding:0.3em 0.5em; /* padding should be added to the select, not the div */
}

.ui-widget {
    /*font-family: "Trebuchet MS", Arial, sans-serif;*/
    font-family: Roboto, sans-serif;
    font-size: 1em;
}

#tabs {
    font-size: 12px;
    margin-bottom: 25px;
}

.nomeTela {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding-top: 30px;
}

.logout {
    text-align: right;
    padding-top: 15px;
    font-weight: bold;
}

.barrasuperior a {
    text-decoration: none;
    color: black;
}

.menu-index {
    text-decoration: none;
}

.fundoMenu {
    height: 30px;
    background-color: #4591c8;
    border-radius: 5px;
}

.pesquisa {
    background-color: #ffffff;
    width: 100%;
    float: left;
        border-top: 1px solid #9C9C9C;
        border-left: 1px solid #9C9C9C;
        border-right: 1px solid #9C9C9C;
        border-bottom: 1px solid #9C9C9C;
    border-width: 1px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.identifica {
        background-color: #ffffff;
		width: 100%;
		float: left;
			border-top: 1px solid #9C9C9C;
			border-left: 1px solid #9C9C9C;
			border-right: 1px solid #9C9C9C;
			border-bottom: 1px solid #9C9C9C;
		border-width: 1px;
		border-radius: 5px;
		font-size: 14px;
		margin-bottom: 10px;
		line-height: 15px;
}

.identifica2 {
		min-height: 25px;
}

.identifica  h1 {
        color: #2B72B4;
        font-weight: bold;
        font-size: 16px;
        margin: 0.8em 0 0.8em 0;
		padding-left: 10px;        
}

.pesquisa_p {
    color: #777777;
    font-weight: bold;
    font-size: 1.25em;
    margin: 0.2em 0 0.3em 1em;
}

h1, h2, h3, h4, h5, h6 {
        line-height: 1.1;
}

/* BASE LAYOUT */

html {
        background-color: #fff;
        background-image: -moz-linear-gradient(center top, #aaa, #ddd);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #aaa), color-stop(1, #ddd));
        background-image: linear-gradient(top, #aaa, #ddd);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr = '#aaaaaa', EndColorStr = '#dddddd');
        background-repeat: no-repeat;
        height: 100%;
        /* change the box model to exclude the padding from the calculation of 100% height (IE8+) */
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
}

html.no-cssgradients {
        background-color: #aaa;
}

.ie6 html {
        height: 100%;
}

html * {
        margin: 0;
}

body {
        background: #FFFFFF;
        margin: 0 auto;
		height:100%;
}

/* replace with .no-boxshadow body if you have modernizr available */
.ie6 body,
.ie7 body,
.ie8 body {
        border-color: #255b17;
        border-style: solid;
        border-width: 0 1px;
}

.ie6 body {
        height: 100%;
}

/*a:link, a:visited, a:hover {
        color: #48802c;
}*/

a:hover, a:active {
        outline: none; /* prevents outline in webkit on active links but retains it for tab focus */
}

h1 {
        color: #ffffff;
        font-weight: normal;
        font-size: 1.25em;
        margin: 0.8em 0 0 0;
        
}

ul {
        padding: 0;
}

img {
        border: 0;
}

/* GENERAL */

#wlLogo a {
        display: inline-block;
        margin: 1em;
}

.content {
}

.content h1 {
        border-bottom: 1px solid #CCCCCC;
        margin: 0.8em 0 0.3em;
        padding: 0 0.25em;
}

.scaffold-list h1 {
        border: none;
}

.header {
        background: #FFFFFF;
        border-radius: 5px;
}

.footer {
        background-color: #2B72B4;
        color: #FFF;
        clear: both;
        padding: 1em;
        min-height: 1em;
        text-align: right;
        font-size: 14px;
		font-weight: bolder;
        border-radius: 5px;
		position: absolute;
		bottom: 0;
		width: 940px;
}

#pagina {
		position: relative;
		min-height: 100%;
}

.footer a {
        color: #255b17;
}

.spinner {
        background: url(../images/spinner.gif) 50% 50% no-repeat transparent;
        height: 16px;
        width: 16px;
    padding: 0.5em;
    position: absolute;
    right: 0;
        top: 0;
        text-indent: -9999px;
}

/* NAVIGATION MENU */


.nav {
        background-color: #2B72B4;
        padding: 0.5em 0.75em;
/*           -moz-box-shadow: 0 0 3px 1px #aaaaaa;
        -webkit-box-shadow: 0 0 3px 1px #aaaaaa;
                box-shadow: 0 0 3px 1px #aaaaaa;*/
        zoom: 1;
        margin-bottom: 10px;
        margin-top: 0px;
        border-radius: 5px;	
}

.nav ul {
        overflow: hidden;
        padding-left: 0;
        zoom: 1;
		width: 840px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 5px;
}

.nav li {
        display: block;
        float: left;
        list-style-type: none;
        margin-right: 15px;
}

.nav a {
        color: #fff;
        display: block;
        padding: 0.25em 0.7em;
        text-decoration: none;
           -moz-border-radius: 0.3em;
        -webkit-border-radius: 0.3em;
                border-radius: 0.3em;
		padding-bottom: 10px;
		text-align: center;
		font-size: 16px;
}

.nav a:active, .nav a:visited {
        color: #fff;
}

.nav a:focus, .nav a:hover {
        /*background-color: #999999;
        color: #ffffff;
        outline: none;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);*/
    background-image: url('../images/nav_back.png');
    background-position: bottom;	
    background-repeat: no-repeat;
	display:table;		
}

.no-borderradius .nav a:focus, .no-borderradius .nav a:hover {
        background-color: transparent;
        color: #444444;
        text-decoration: underline;
}

.nav a.home, .nav a.list, .nav a.create {
        background-position: 0.7em center;
        background-repeat: no-repeat;
        text-indent: 25px;
}

.crud {
        background-color: #FFFFFF;
        padding: 0.5em 0.75em;
        margin-bottom: 10px;
        margin-top: 0px;
        border-radius: 5px;	
}

.crud ul {
        overflow: hidden;
        padding-left: 0;
		margin-top: 5px;
}

.crud li {
        display: block;
        float: left;
        list-style-type: none;
        margin-right: 15px;	
}


.crud2 {
        background-color: #FFFFFF;
        margin-bottom: 10px;
        margin-top: 0px;
}

.crud2 ul {
        overflow: hidden;
        padding-left: 0;
        zoom: 1;
		margin-left: auto;
		margin-right: auto;
		margin-top: 5px;
}

.crud2 li {
        display: block;
        float: left;
        list-style-type: none;
        margin-right: 15px;
}

.crud2 a {
        color: #666666;
        display: block;
        padding: 0.25em 0.7em;
		padding-bottom: 10px;
		text-align: center;
		font-size: 18px;
		text-decoration: none;
}

/* CREATE/EDIT FORMS AND SHOW PAGES */

fieldset,
.property-list {
        padding:0;
        position: relative;
        zoom: 1;
        border: none;
        margin-bottom: 13px;
}

.property-list .fieldcontain {
        list-style: none;
        overflow: hidden;
        zoom: 1;
}

.fieldcontain {
        margin-top: 1em;
}

.fieldcontain label,
.fieldcontain .property-label {
        color: #666666;
        text-align: right;
        width: 25%;
}

.fieldcontain .property-label {
        float: left;
}

.fieldcontain .property-value {
        display: block;
        margin-left: 27%;
}

.property-value {
	font-weight: bold;
	border: 1px;
	border-style: solid;
	border-color: silver;
        border-radius: 5px;
	padding: 0.2em 0.4em;
	min-height: 1.2em;
}

label {
        cursor: pointer;
        display: inline-block;
        margin: 0 0.25em 0 0;
}

.label {
		font-weight: bolder;
		color: #868686;
}

input, select, textarea {
        background-color: #fcfcfc;
        border: 1px solid #cccccc;
        border-radius: 5px;
        font-size: 1em;
        padding: 0.2em 0.4em;
}

select {
        padding: 0.2em 0.2em 0.2em 0;
}

select[multiple] {
        vertical-align: top;
}

textarea {
        width: 250px;
        height: 150px;
        overflow: auto; /* IE always renders vertical scrollbar without this */
        vertical-align: top;
        margin-bottom: 10px;
}

input[type=checkbox], input[type=radio] {
        background-color: transparent;
        border: 0;
        padding: 0;
}

input:focus, select:focus, textarea:focus {
        /*background-color: #ffffff;*/
        border: 1px solid #eeeeee;
        outline: 0;
           -moz-box-shadow: 0 0 0.5em #ffffff;
        -webkit-box-shadow: 0 0 0.5em #ffffff;
                box-shadow: 0 0 0.5em #ffffff;
}

.required-indicator {
        color: #48802C;
        display: inline-block;
        font-weight: bold;
        margin-left: 0.3em;
        position: relative;
        top: 0.1em;
}

ul.one-to-many {
        display: inline-block;
        list-style-position: inside;
        vertical-align: top;
}

.ie6 ul.one-to-many, .ie7 ul.one-to-many {
        display: inline;
        zoom: 1;
}

ul.one-to-many li.add {
        list-style-type: none;
}

/* EMBEDDED PROPERTIES */

fieldset.embedded {
        background-color: transparent;
        border: 1px solid #CCCCCC;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
           -moz-box-shadow: none;
        -webkit-box-shadow: none;
                box-shadow: none;
}

fieldset.embedded legend {
        margin: 0 1em;
}

/* MESSAGES AND ERRORS */

.errors,
.message {
        font-size: 0.8em;
        line-height: 2;
        margin: 1em 2em;
        padding: 0.25em;
}

.message {
        background: #f3f3ff;
        border: 1px solid #b2d1ff;
        color: #006dba;
           -moz-box-shadow: 0 0 0.25em #b2d1ff;
        -webkit-box-shadow: 0 0 0.25em #b2d1ff;
                box-shadow: 0 0 0.25em #b2d1ff;
}

.errors {
        background: #fff3f3;
        border: 1px solid #ffaaaa;
        color: #cc0000;
           -moz-box-shadow: 0 0 0.25em #ff8888;
        -webkit-box-shadow: 0 0 0.25em #ff8888;
                box-shadow: 0 0 0.25em #ff8888;
}

.errors ul,
.message {
        padding: 0;
}

.errors li {
        list-style: none;
        background: transparent url(../images/skin/exclamation.png) 0.5em 50% no-repeat;
        text-indent: 2.2em;
}

.message {
        background: transparent url(../images/skin/information.png) 0.5em 50% no-repeat;
        text-indent: 2.2em;
}

/* form fields with errors */

.error input, .error select, .error textarea {
        background: #fff3f3;
        border-color: #ffaaaa;
        color: #cc0000;
}

.error input:focus, .error select:focus, .error textarea:focus {
           -moz-box-shadow: 0 0 0.5em #ffaaaa;
        -webkit-box-shadow: 0 0 0.5em #ffaaaa;
                box-shadow: 0 0 0.5em #ffaaaa;
}

/* same effects for browsers that support HTML5 client-side validation (these have to be specified separately or IE will ignore the entire rule) */

input:invalid, select:invalid, textarea:invalid {
        background: #fff3f3;
        border-color: #ffaaaa;
        color: #cc0000;
}

input:invalid:focus, select:invalid:focus, textarea:invalid:focus {
           -moz-box-shadow: 0 0 0.5em #ffaaaa;
        -webkit-box-shadow: 0 0 0.5em #ffaaaa;
                box-shadow: 0 0 0.5em #ffaaaa;
}

/* TABLES */

table {
        border-top: 1px solid #9C9C9C;
        border-left: 1px solid #9C9C9C;
        border-right: 1px solid #9C9C9C;
        border-bottom: 1px solid #9C9C9C;
        /*border-collapse: collapse;*/
        border-collapse: separate;
        width: 100%;
        margin-top: 1px;
        margin-left: 0px;
        margin-bottom: 1em;
        border-radius: 5px;
}

tr {
        border: 0;
}

tr>td:first-child, tr>th:first-child {
        padding-left: 1.25em;
}

tr>td:last-child, tr>th:last-child {
        padding-right: 1.25em;
}

td, th {
        line-height: 1.5em;
        padding: 0.5em 0.6em;
        text-align: center;
        vertical-align: top;
}

th {
        background-color: #efefef;
        background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #ccc));
            filter: progid:DXImageTransform.Microsoft.gradient(startColorStr = '#ffffff', EndColorStr = '#ccc');
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#ccc')";
        color: #666666;
        font-weight: bold;
        line-height: 1.7em;
        padding: 0.2em 0.6em;
}

thead th {
        white-space: nowrap;
        border-bottom: 1px solid #9C9C9C;
}

th a {
        display: block;
        text-decoration: none;
}

th a:link, th a:visited {
        color: #666666;
}

th a:hover, th a:focus {
        color: #333333;
}

th.sortable a {
        background-position: right;
        background-repeat: no-repeat;
        padding-right: 1.1em;
}

th.asc a {
        background-image: url(../images/skin/sorted_asc.gif);
}

th.desc a {
        background-image: url(../images/skin/sorted_desc.gif);
}

.odd {
        background: #DDDDDD;
}

.even {
        background: #ffffff;
}

th:hover, tr:hover {
        background: #BFDFFF;
}

/* PAGINATION */

.pagination {
        border-top: 0;
        margin: 0;
        padding: 0.3em 0.2em;
        text-align: center;
        background-color: #fff;
		margin-bottom: 60px;		
}

.pagination a,
.pagination .currentStep {
        color: #000;
        display: inline-block;
        margin: 0 0.1em;
        padding: 0.25em 0.7em;
        text-decoration: none;
           -moz-border-radius: 0.3em;
        -webkit-border-radius: 0.3em;
                border-radius: 0.3em;
}

.pagination a:hover, .pagination a:focus,
.pagination .currentStep {
        background-color: #2B72B4;
        color: #ffffff;
        outline: none;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.no-borderradius .pagination a:hover, .no-borderradius .pagination a:focus,
.no-borderradius .pagination .currentStep {
        background-color: transparent;
        color: #444444;
        text-decoration: underline;
}

/* ACTION BUTTONS */

.buttons {
        background-color: #efefef;
        overflow: hidden;
        padding: 0.3em;
/*           -moz-box-shadow: 0 0 3px 1px #aaaaaa;
        -webkit-box-shadow: 0 0 3px 1px #aaaaaa;
                box-shadow: 0 0 3px 1px #aaaaaa;*/
        margin: 0.1em 0 0 0;
        border: none;
}

.editando {
		margin-bottom: 60px;
}
.buttons input,
.buttons a {
        background-color: transparent;
        border: 0;
        color: #666666;
        cursor: pointer;
        display: inline-block;
        margin: 0 0.25em 0;
        overflow: visible;
        padding: 0.25em 0.7em;
        text-decoration: none;

           -moz-border-radius: 0.3em;
        -webkit-border-radius: 0.3em;
                border-radius: 0.3em;
}

.buttons input:hover, .buttons input:focus,
.buttons a:hover, .buttons a:focus {
        background-color: #999999;
        color: #ffffff;
        outline: none;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
           -moz-box-shadow: none;
        -webkit-box-shadow: none;
                box-shadow: none;
}

.no-borderradius .buttons input:hover, .no-borderradius .buttons input:focus,
.no-borderradius .buttons a:hover, .no-borderradius .buttons a:focus {
        background-color: transparent;
        color: #444444;
        text-decoration: underline;
}

.buttons .delete, .buttons .edit, .buttons .save {
        background-position: 0.7em center;
        background-repeat: no-repeat;
        text-indent: 25px;
}

.ie6 .buttons input.delete, .ie6 .buttons input.edit, .ie6 .buttons input.save,
.ie7 .buttons input.delete, .ie7 .buttons input.edit, .ie7 .buttons input.save {
        padding-left: 36px;
}

a.skip {
        position: absolute;
        left: -9999px;
}

.inputImage {
    border: none;
}

/** IMAGEM DOS BOTOES **/
.list {
    background-image: url('../images/list.png');
    background-position: 0.7em 5px;
    background-repeat: no-repeat;
    text-indent: 32px;
}
.create {
    background-image: url('../images/new.png');
    background-position: 0.7em 7px;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.edit {
    background-image: url('../images/edit.png');
    background-position: 0.7em 7px;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.delete {
    background-image: url('../images/delete.png');
    background-position: 0.7em 7px;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.save {
    background-image: url('../images/update.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.cancel {
    background-image: url('../images/cancel.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
	line-height: 23px;
	height: 23px;
}

.print {
    background-image: url('../images/print.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.search {
    background-image: url('../images/search.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
	background-color: #2B72B4;	
    text-indent: 25px;
}

.email {
    background-image: url('../images/email.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.view {
    background-image: url('../images/view.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.config {
    background-image: url('../images/config.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.download {
    background-image: url('../images/download.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
    text-indent: 25px;
}

.limpar {
    background-image: url('../images/dell.png');
    background-position: 0.7em center;
    background-repeat: no-repeat;
	background-color: #2B72B4;	
    text-indent: 25px;
}

.config-32 {
    background-image: url('../images/config_32.png');
    background-position: 50% top;	
    background-repeat: no-repeat;
	display:table;
	height:15px;
	width:130px;
}

.email-32 {
    background-image: url('../images/email_32.png');
    background-position: 50% top;	
    background-repeat: no-repeat;
	display:table;
	height:15px;
	width:130px;
}

.home-32 {
    background-image: url('../images/home_32.png');
    background-position: 50% top;	
    background-repeat: no-repeat;
	display:table;
	height:15px;
	width:130px;
}

.user-32 {
    background-image: url('../images/user_32.png');
    background-position: 50% top;	
    background-repeat: no-repeat;
	display:table;
	height:15px;
	width:130px;
}

.entidade-32 {
    background-image: url('../images/entidade_32.png');
    background-position: 50% top;	
    background-repeat: no-repeat;
	display:table;
	height:15px;
	width:130px;
}

.separador {
    background-color: #BEBEBE;
    margin-left: 0;
    min-height: 0;
    margin-bottom: 5px;
    margin-left: 10px;
    border-radius: 10px;
}

.separador h1 {
    margin: 5px 0px 5px 10px;
    border-bottom: none;

}

.textareahalf {
    height: 75px;
}

.textareabig {
    height: 250px;
}

.gridCampo {
    min-height: 30px;
}

.gridLabel {
    min-height: 18px;
}

.gridShow {
    min-height: 23px;
}

#tabs-1, #tabs-2, #tabs-3, #tabs-4,
#tabs-5, #tabs-6, #tabs-7, #tabs-8 {
    padding: 1em 0em;
}

.sf-menu {
    margin-left: 10px;
}

.sf-menu ui {
    color: white;
}

.linksemtabs {
    color: #222;
}

.linksemborda {
    text-decoration: none;
    color: #333;
}

.corVerde {
    background: #9CBD9F;
}

.corAzul {
    background: #528FE3;
}

.corVermelha {
    background: #FF908E;
}

.botaologout {
    background-color: #FFFFFF;
           -moz-box-shadow: none;
        -webkit-box-shadow: none;
                box-shadow: none;
}

.botaologout a {
    color: #333;
}

.liberacao {
    margin-top: 10px;
           -moz-border-radius: 0.3em;
        -webkit-border-radius: 0.3em;
                border-radius: 0.3em;
}

#tarefavermelho {
    color: red;
}

.table-sem-hover:hover {
    background: none;
}

a.tooltip{
  position:relative; 
  font-size:12px; 
  color:#039;
  text-decoration:none;
  }

  a.tooltip:hover{
  background:transparent;
  color:#f00;
  z-index:25; 

  }
  a.tooltip span{display: none
  }

  a.tooltip:hover span{ 
  display:block;
  position:absolute;
  width:210px; 
  top:20px;
  left:0;
  font-size: 12px;
  padding:5px;
      color: rgb(113, 157, 171);
      background: rgb(255, 255, 255);
      border: 4px solid rgb(255, 255, 255);
      border-radius: 5px;
      text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
      box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 4px 0px;
  }