/**
 * Estilo utilizado no menu da aplicação.
 */

fieldset {
    border: 1px solid #ffa20c;
}

legend {
    color: #fff;
    background: #ffa20c;
    border: 1px solid #781351;
    padding: 2px 6px
}

select {
    border: 1px solid #000;
    padding: 3px;
}


body,td,div {
    font-size: 11px;
    font-family: Verdana, Geneva, sans-serif;
}

.suggestiontableCaption {
    color: #B05A13;
    background: #FF9F2C;
    border: 1px solid #B05A13;
    padding: 2px 6px;
}

.suggestionColumn {
    width: 110px;
}

.suggestionDiv {
    width: 100%;
    height: 100%;
}

.suggestionText {
    overflow: hidden;
    display: none;
    padding: 0px;
    width: 100%;
    height: 100%;
}





.w100p {
    width: 100%;
}

.w100pbody {
    width: 100%;
    left: 0px;
    float: left;
    clear: both;
	z-index:-1;
}


.fr {
    float: right;
}

.fl {
    float: left;
}

.al {
    text-align: left;
}

.ar {
    text-align: right;
}

.ac {
    text-align: center;
}

.cw {
    color: white;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml40 {
    margin-left: 40px;
}

.tit {
    color: #0000FF;
}

.tit1,.tit1b {
    font-size: 14px;
}

.tit1b {
    font-weight: bold;
}

.tit2 {
    font-size: 12px;
    font-weight: bold;
}

.boxHeader {
    width: 300px;
    margin: 5px;
}

.btLogout {
    background: #ff9623;
    color: #FFFFFF;
    padding: 5px;
    font-weight: bold;
    border: none;
    margin-top: 5px;
    width: 100px;
    float: right;
}

.txtAviso {
    color: Firebrick;
}

.txtErro {
    color: Red;
}

/* Sobrepondo menu */
.menuLink {
    color: white;
    font-weight: bold;
    line-height: 25px;
    text-decoration: none;
    padding: 0px 8px;
    position: relative;
    z-index: 10;
}

#menuNavbar {
    height: 29px;
	z-index:100; 
	position:relative;
	
	background: url("../images/ui-bg_gloss-wave_35_f6a828_500x100.png") repeat-x scroll 50% 50% #F6A828;
    border: 1px solid #E78F08;
    border-radius: 4px 4px 4px 4px;
}

#menuNavbar .sf-menu a {
    border-top: none;
    color: #FFF;
}

#menuNavbar .sf-menu li a {
    font-weight: bold;
}

#menuNavbar .sf-menu li ul a {
    font-weight: normal;
}

#menuNavbar .sf-menu>li {
    text-align: center;
    width: 155px;
}

/* SUPERFISH MENU
 * BEGIN
 */
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
    margin:         0;
    padding:        0;
    list-style:     none;
}
.sf-menu {
    line-height:    1.0;
}
.sf-menu ul {
    position:       absolute;
    top:            -999em;
    width:          155px; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
    width:          100%;
    text-align:     left;
}
.sf-menu li:hover {
    visibility:     inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
    float:          left;
    position:       relative;
}
.sf-menu a {
    display:        block;
    position:       relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
    left:           0;
    top:            2.8em; /* match top ul list item height */
    z-index:        99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
    top:            -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
    left:           155px; /* match ul width */
    top:            0px;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
    top:            -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
    left:           10em; /* match ul width */
    top:            0;
}

/*** DEMO SKIN ***/
.sf-menu {
    float:          left;
    margin-bottom:  1em;
}
.sf-menu a {
    border-left:    1px solid #fff;
    border-top:     1px solid #CFDEFF;
    padding:        .75em 1em;
    text-decoration:none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
    color:          #13a;
}

.sf-menu li .first {
	border-left: 0px none;
}

.sf-menu li {
    
}

.sf-menu li li {
    background-color: #F5AB31;
}

.sf-menu li li li {
    background-color: #F5AB31;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    background-color:     #ED8B20;
    outline:        0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
    padding-right:  2.25em;
    min-width:      1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
    position:       absolute;
    display:        block;
    right:          .75em;
    top:            1.05em; /* IE6 only */
    width:          10px;
    height:         10px;
    text-indent:    -999em;
    overflow:       hidden;
    background:     url('/app_themes/infocenter/resources/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
    top:            .8em;
    background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
    background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
    background: url('/app_themes/infocenter/resources/images/shadow.png') no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
    background: transparent;
}
/* SUPERFISH MENU
 * END
 */

 
.feedbackErrorMessage {
    color: #A60000;
    background-color: #FFC2C2;
    background-image: url('/reports/resources/images/error-32.png');

    border: 1px solid;
    margin: 10px 0px;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.feedbackInfoMessage {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('/reports/resources/images/info-32.png');

    border: 1px solid;
    margin: 10px 0px;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.feedbackSuccessMessage {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image: url('/reports/resources/images/success-32.png');

    border: 1px solid;
    margin: 10px 0px;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.feedbackWarningMessage {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('/reports/resources/images/warning-32.png');

    border: 1px solid;
    margin: 10px 0px;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

/*
 * ASMSELECT BEGIN
 */
.asmContainer {
    /* container that surrounds entire asmSelect widget */
}

.asmSelect {
    /* the newly created regular 'select' */
    display: inline; 
}

.asmOptionDisabled {
    /* disabled options in new select */
    color: #999; 
}

.asmHighlight {
    /* the highlight span */
    padding: 0;
    margin: 0 0 0 1em;
}

.asmList {
    /* html list that contains selected items */
    margin: 0.25em 0 1em 0; 
    position: relative;
    display: block;
    padding-left: 0; 
    list-style: none; 
}

.asmListItem {
    /* li item from the html list above */
    position: relative; 
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    background: #ddd;
    border: 1px solid #bbb; 
    width: 100%; 
    margin: 0 0 -1px 0; 
    line-height: 1em;
}

.asmListItem:hover {
    background-color: #e5e5e5;
}

.asmListItemLabel {
    /* this is a span that surrounds the text in the item, except for the remove link */
    padding: 5px; 
    display: block;
}

.asmListSortable .asmListItemLabel {
    cursor: move; 
}

.asmListItemRemove {
    /* the remove link in each list item */
    position: absolute;
    right: 0; 
    top: 0;
    padding: 5px; 
}

/*
 * ASMSELECT END
 */
 #divWacthDogPU {
 }
 
 #divWacthDogPU thead {
    text-align: left;
 }
 
 #divWacthDogPU th {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 10px;
 }
 
 #divWacthDogPU tr {
    vertical-align: top;
 }
 
 #divWacthDogPU table table {
    border: solid 1px black;
    width: 100%;
 }
 
.titulo {
    background: url("../images/ui-bg_gloss-wave_35_f6a828_500x100.png") repeat-x scroll 50% 50% #F6A828;
    border: 1px solid #E78F08;
    border-radius: 4px 4px 4px 4px;
    font-size: 16px; 
    color: #FFFFFF;
    padding: 5px 10px 5px 10px;
    margin: 0px 0px 10px 0px;
    font-weight: bold;
}

#divLoading {
	display: none;
	font-size: 16px;
	font-weight: bold; 
}

#divMessage {
	display: none;
}

#bottomMenuWDDetailed {
	background-color: #FF9623;
	width: 700px; 
	height: 30px
}

#bottomMenuWDDetailed td { 
	background-color: #FFFFFF; 
	color: blue; 
	width: 72px; 
	height: 35px;
	
}

#tabs ul {
	margin: 10px 0px 4px 10px;
	padding: 0px 0px 0px 0px;
}

#tabs a {
	text-decoration: none;
}

#tabs li {
	display:inline;
	padding: 0.5em 1em;
	margin: 1px;
	border-bottom: 0px none;
}

.chartsWatchDogPUDetail {
	border: 1px solid #DDDDDD;
	border-top: 0px none;
	background-color: #DDDDDD;
	height:470px;
	padding: 10px 0px 0px 10px;
	border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.tabSelectedWatchDogPUDetail {
	background-color: #DDDDDD;
}

.tabSelectedWatchDogPUDetail a {
	color: #1C94C4 !important;
}