/*======= Fonts ==================*/
 @keyframes roll {
     0% {
         transform: rotateX(360deg);
    }
     5% {
         transform: none;
    }
}
@keyframes pulsate {
     0%,100% {
         transform: scale(1);
    }
     50% {
         transform: scale(1.2) translateX (30px ) translateY (5px );
    }
}

* {
	box-sizing: border-box;
}
form {
	margin: 0;
}
table {
	width: 100%;
	border-spacing: 0;
}
legend {
	font-weight: bold;
	font-size: 1.2em;
}
a {
	text-decoration: none;
	color: inherit;
}
textarea {
	resize: none;
}
body {
	background-color: #ccddee;
	margin: 8px;
	font-family: Calibri, Arial, Helvetica, sans-serif;
}
#page {
    background: #e8eff3;
    margin: auto;
    width: 80%;
    min-width: 50em;
    padding: 0 0em 1em;
    color: #334;
    box-shadow: 0 0 3em -2em;
}

#content {
    padding: 0 0.5em;
}

#footer {
  padding: 0 1em;
}
/* ======= HEADER ===========================*/
 
 #header {
     height: 102px;
     width: 100%;
     top: 0;
     border-bottom: 1px solid #eeeeff;
     z-index: 1010;
     background: linear-gradient(180deg, #73baddaa 30%, transparent 86%);
}
 #header-content {
     margin: 0 auto;
     width: 950px;
     padding-top: 3px;
     height: 100px;
}
/* Titolo applicativo */
 #header-content .titoloApp {
     float: left;
}
 #header-content h1 {
     font-size: 250%;
     line-height: 35px;
     text-shadow: 2px 2px 0 #eeeeff, 2px 2px 2px #eeeeff;
     animation: roll 30s infinite;
}
 #header-content h1:hover {
     animation: pulsate 0.8s infinite;
}
 #header-content h2 {
     font-weight: normal;
     font-size: 125%;
     line-height: 15px;
     text-shadow: 1px 1px 0 #eeeeff;
     margin: 3px 0;
}
 #header-content .navigazione {
     width: 75%;
     float: right;
     height: 74px;
}
 #panSlides {
     background: white;
     border-radius: 2px;
     box-shadow: 0 2px 6px #CCCCCC;
     padding: 1%;
     margin: 6px;
     height: 95px;
     width: 300px;
     float: left;
}

.iceSlideShowSlide {
     display: block;
}

.iceSlideShowSlide img {
     width: 100%;
}

@keyframes waveflag {
     0%,50% {
         transform: skewY(0deg);
    }
     25% {
         transform: skewY(3deg) translateY(4px) translateX(-8px) scaleX(0.9);
    }
     75% {
         transform: skewY(-3deg) translateY(-4px) translateX(-8px) scaleX(0.9);
    }
}
 
@keyframes waveflag-shadow {
     0%,100% {
         transform: skewY(0deg);
         opacity: 0.5;
    }
     50% {
         transform: scaleX(0.95) scaleY(0.95) translateX(-5px);
         opacity: 1;
    }
}

.logoEnte {
	position:relative;
}

.logoEnte-flag, .logoEnte-asta, .logoEnte-flag:after {
     position: absolute;
}

.logoEnte-flag {
     background: url("../images/flag.png") no-repeat left top;
     position: relative;
     animation: waveflag 12s infinite;
     display: inline-block;
     height: 127px;
     width: 205px;
}

.logoEnte-asta {
     background: url("../images/flag_asta.png") no-repeat left top;
     height: 134px;
     width: 20px;
}

.logoEnte-flag:after {
     background: url("../images/flag_shadows.png") no-repeat left top;
     content: " ";
     width:100%;
     height: 100%;
     left: 9px;
     top: 9px;
     animation: waveflag-shadow 6s infinite;
}

.logoEnte-flag img {
  position: relative;
  height: 61%;
  left: 65px;
  top: 33px;
  width: 34%;
}

/* ===========================================*/
/* ======= CONTENT ==========================*/
/* =========================================*/

 #wrapper #contenuto {
     margin: 0 auto;
     position: relative;
     width: 950px;
}
/* Configurazione del programma*/
 .sessionMenu {
     float: right;
     display: inline;
     width: 380px;
}

.languageMenu {
     overflow: hidden;
     width: auto;
     max-height: 18px;
     background: transparent;
     border: 1px solid transparent;
     float: left;
     padding: 0px 5px;
     z-index: 1000;
     height: auto;
     position: absolute;
     border-radius: 2px;
     transition: all 1s ease-out 0.2s;
}

.languageMenu:hover {
     padding-bottom: 5px;
     max-height: 200px;
     background: #eeeeff;
     border: 1px solid #cde;
     box-shadow: -1px -1px 8px rgba(180, 150, 100, 0.6) inset, 1px 1px 3px rgba(50, 50, 50, 0.3);
}

.languageMenu .iceCmdLnk {
     display: block;
}

.languageMenu .iceCmdLnk img {
     float: right;
     padding: 2px 0;
     height: 14px;
}
/*============================================*/
/* Pagina di Login */
/*============================================*/
/* #formlogin input, #formlogin label {
}
 #formlogin .iceInpTxt, #formlogin .iceInpSecrt {
     height: auto;
}
 */
/** ========================================= */
/* ======================================== FINE Layout generale ======================================== */
/*=========================================== */
/* Parti dell'applicativo */
/*========================================= */
.menuRecenti {
     float: left;
     position: absolute;
     overflow: hidden;
     width: 50px;
     height: auto;
     max-height: 14px;
     transition-property: max-height, width;
     transition-duration: 1s;
     transition-timing-function: ease-out;
     transition-delay: 2.2s, 2s;
}

.iceMnuItm-dis {
     display: none;
}

.menuRecenti:hover {
     z-index: 1000;
     max-height: 500px;
     width: 200px;
     transition-duration: 1s, 0.6s;
     transition-timing-function: cubic-bezier(.09, .04, .44, 1.8);
     transition-delay: 0.2s, 0s;
}

td hr.separator {
     width: 60%;
     margin: 2 auto;
}

table td.alignTop {
     vertical-align: top;
}

table td.alignTopRight {
     vertical-align: top;
     text-align: right;
}

.listNumber {
     text-align: right;
}

.listCheckBox {
     text-align: center;
     vertical-align: middle;
}

.iceCmdLnk-dis, .iceOutLnk-dis {
	border: none;
	color: #777777;
	background-color: none;
}
.iceOutRsr {
	display: inline-block;
}

.iceCmdLnk.fa::before, .iceOutLnk.fa::before {
	margin-right: 0.3em;
}

.bottoni > .iceCmdLnk,
.bottoni > .iceOutRsr,
.bottoni > .iceCmdBtn {
    display: inline-block;
    cursor: pointer;
    padding: 0.25em 0.5em;
    font-weight: bold;
    background: #069;
    color: #ffe;
    border: 1px solid #3339;
    border-radius: 2px;
}

.bottoni > *:not(:first-child) {
	margin-left: 0.5em;
}

.bottoni > .iceCmdLnk:hover, .bottoni > .iceOutRsr:hover, .bottoni > .iceCmdBtn:hover {
	border-color: black;
	background: #569AB4;
	color: #eeeeff;
}

#area-messaggi {
	margin-right: 1em;
	margin-bottom: 1em;
	list-style: none;
	border: 2px solid #73BADD;
	background-color: #eeeeff;
	padding: 0.5em 0.2em;
	border-radius: 5px;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 30000;
	max-width: 45%;
	max-height: 15em;
	overflow-x: hidden;
	overflow-y: auto;
}
#area-messaggi > li {
	line-height: 1.75em;
	margin: 0.25em;
}

.iceMsgsInfo, .iceMsgsWarn, .iceMsgsError {
	padding: 0.25rem 0.75rem;
	border-width: 1px;
	border-style: solid;
	border-radius: 0.25rem;
	display: block;
}
.iceMsgsInfo {
	color: #0c5460;
	background-color: #d1ecf1;
	border-color: #bee5eb;
}
.iceMsgsWarn {
	color: #856404;
	background-color: #fff3cd;
	border-color: #ffeeba;
}
.iceMsgsError {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}


/** Tooltip a scomparsa, solo se l'elemento html possiede un attributo data-tooltip*/
 a[data-tooltip]:after, div[data-tooltip]:after, input[data-tooltip]:after, table[data-tooltip]:after {
    /** per i campi input generati */
     transition: all 1s ease;
     content: attr(data-tooltip);
     padding: 4px 8px;
     color: #333344;
     position: absolute;
     white-space: nowrap;
     z-index: 20px;
     opacity: 0;
     border-radius: 3px;
     box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
     background: #eeeeff;
     background-image: linear-gradient(top, #FEB, #FFF0CC);
}
 a[data-tooltip]:hover:after, div[data-tooltip]:hover:after, input[data-tooltip]:hover:after, table[data-tooltip]:hover:after {
     opacity: 1;
}

.dataTblContainer, .dataTblContainer .iceDataTbl {
     overflow: auto;
}

/* ==== SPINNER e PAGINATOR ============================ */
.paginatore {
    display: inline-block;
}
 
 .spnrInpt {
     width: 25px;
}

.iceBox.spinner {
     border: none;
     background: transparent;
}

.cisSpinner {
     margin: 0 10px;
     height: 20px;
}

.spinnerBtn, .paginatortop .arrow {
     font-size: 90%;
     background: #eeeeff;
     border: 1px solid #Cde;
     border-radius: 3px;
     display: inline-block;
     font-weight: bold;
     margin-left: 4px;
     padding: 0 4px;
     text-align: center;
     text-shadow: 1px 0px 1px rgba(10, 10, 10, 0.7);
     width: 19px;
     height: 19px;
}

.spinnerBtn:hover, .paginatortop .arrow:hover {
     color: #eeeeff;
     background: #73BADD;
     background: linear-gradient(center top, #73BADD, #9BC8DA);
     box-shadow: none;
}

.paginatortop .iceCmdLnk-dis .arrow, .paginatortop .iceCmdLnk-dis .arrow:hover {
     box-shadow: none;
     background: #eeeeff;
     color: #ddd;
}

.paginatordown {
     font-size: 88%;
     margin-left: 5px;
}
/* Numero della pagina */
 .iceDatPgrTbl {
     line-height: 150%;
     background: transparent !important;
}

.iceDatPgrScrCol a, .iceDatPgrCol a {
     color: #333344;
     padding: 0 1px;
}

.iceDatPgrScrCol a {
     font-weight: bold;
     text-decoration: underline;
}

.iceDatPgrCol a:hover {
     text-decoration: underline;
}

/** righe selezionate o righe in over */
 .iceRowSelSelected, .iceRowSelMouseOver, .iceRowSelSelectedMouseOver {
     background: #9BC8DA;
     text-shadow: 0px 0px 2px rgba(30, 10, 10, 0.3);
     border: 1px solid;
}
/** righe selezionate in over */
 .iceRowSelSelectedMouseOver {
     background: #73BADD;
}
/* ============================================ FINE TABELLE ============================================ */


/* ============================================ Tabs ============================================ */
 .icePnlTbOn, .icePnlTbOff, .icePnlTbOver {
     min-width: 125px;
     height: 30px;
     margin-left: 4px;
     border: 1px solid #cde;
     color: #eeeeff;
     border-radius: 5px 5px 0 0;
}

.icePnlTb a div {
     padding: 0 10px;
}

.icePnlTb a div td {
     color: #333344;
     font-weight: bold;
     height: 21px;
}

.icePnlTbOff a div td {
     text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.4);
}
/* spazio vuoto nella barra delle tabs */
 .icePnlTbSetSpcr {
     width: 100%;
     background-color: none;
     border: none;
}

.iceCmdSrtHdr, .iceCmdSrtHdr th {
     font-weight: bold;
     font-size: large;
     text-shadow: 0 2px 0 rgba(200, 200, 255, 0.7);
     color: #3A4E63;
}

.tabArea {
     width: 100%;
}

.tabAreaCnt {
     border: none;
     padding: 1px 2px 5px;
}
/* ============== FINE Tabs ============================================ */


/* ============= Popup Data (calendario) ============================================ */
.iceSelInpDate, .iceSelInpDateTime {
     border-radius: 6px;
     background: #9bc8da;
     box-shadow: -1px -1px 5px rgba(0, 0, 0, 0.2) inset, 0px 2px 10px rgba(0, 0, 0, 0.6);
}

.iceSelInpDateMovePrev {
	background: url("../images/arrow-previous.gif");
}
.iceSelInpDateMoveNext {
	background: url("../images/arrow-next.gif");
}

.iceSelInpDateMonthYear, .iceSelInpDateTime {
     background: #eeeeff;
     font-weight: bold;
     color: #333344;
}

.iceSelInpDateWeek  {
	text-align: center;
	border-left: 1px ridge #333344;
	border: 1px solid #333344;
}
.iceSelInpDateWeek:not(:last-child) {
	border-right: none;
}

/* giorni mese*/
.iceSelInpDateDay, .iceSelInpDateCur  {
	text-align: center;
	background: #eeeeff;
	border: 1px solid #9bc8da;
}
.iceSelInpDateDay .iceCmdLnk:hover, .iceSelInpDateCur .iceCmdLnk  {
	border-radius: 2px;
	color: #eeeeff;
	background: #9BC8DA;
	text-shadow: 0 0 3px #333;
}
/* ====================================== Dettaglio ========================= */
 .pnlDetail {
     border-radius: 2px;
     border: 1px solid #666;
     min-width: 300px;
}

.pnlDetail .pnlDetailContent {
     padding: 1%;
}

.pnlDetail .titoloDett {
     padding: 1%;
     border-bottom: 1px solid;
     color: #eeeeff;
     background: #73BADD;
}

.panFianc .campiDett {
     min-height: 350px;
}
/* ====================================== Filtro ========================= */
 .pnlFind {
     width: 99%;
     padding: 0.5%;
}
/*E' la colonna che contiene il bottone CERCA*/
 .pnlFindCol2 {
     vertical-align: bottom;
     padding-bottom: 5px;
}

.pnlFindHdr {
     text-align: left;
}

.errlError {
     background-color: #FFD1AB;
}
/* ============================================ FINE Filtro ========================= */
.iceOutConStat {
     position: relative;
     margin-left: 20px;
     width: 200px;
     height: 50px;
}

.iceOutConStatInactv, .iceOutConStatActv, .iceOutConStatCaution, .iceOutConStatDisconnect {
     width: 110px;
     height: 26px;
     position: absolute;
}

.iceOutConStatInactv {
     background: url('../images/connect_idle.gif' ) no-repeat center top;
}

.iceOutConStatActv {
     background: url('../images/connect_active.gif' ) no-repeat center top;
}

.iceOutConStatCaution {
     background: url('../images/connect_caution.gif' ) no-repeat center top;
}

.iceOutConStatDisconnect {
     background: url('../images/connect_disconnected.gif' ) no-repeat center top;
}
/* =====================================*/
/* ======= Progress Bar ================*/
/* =====================================*/
.uploadCol1 {
     width: 130px;
}

.uploadCol2 {
     width: 290px;
}

.iceOutProg {
     width: 100%;
}

.iceOutProgBg {
     background: #777;
     box-shadow: 2px 3px 7px -1px #333 inset;
     position: relative;
     height: auto;
     width: auto;
     padding: 3px;
}

.iceOutProgBg, .iceOutProgFill, .iceOutProgIndetActv {
     border-radius: 3px;
}

.iceOutProgFill, .iceOutProgIndetActv {
     box-shadow: 2px 1px 5px rgba(255, 255, 255, 0.5) inset, -2px -1px 4px rgba(50, 50, 50, 0.3) inset, 1px 1px 4px;
     display: inline-block;
     height: 20px;
     transition: width 0.4s ease-in-out 0s;
     position: relative !important;
     background: #9BC8DA;
     background: linear-gradient(to bottom, #9BC8DA, #569AB4);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9BC8DA', endColorstr='#569AB4');
}

.iceOutProgTxt {
     position: absolute !important;
     text-align: center;
     top: 3px;
}

@keyframes shine {
    0% {
         opacity: 0;
         width: 0;
    }
     90% {
         opacity : .9 ;
    }
     100% {
         opacity : 0 .4 ;
         width : 100%;
    }
}

.iceOutProgFill:before, .iceOutProgIndetActv:before {
     content: "";
     animation: 2s ease-out 0s normal none infinite shine;
     background: linear-gradient(to right, rgba(155, 200, 218, 0) 0%, rgba(155, 200, 218, 0.7) 95%, rgba(86, 154, 180, 0) 100%);
     border-radius: 3px 6px 6px 3px;
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     opacity: 0;
}
/* ======= FINE Progress Bar ================*/
 .pulse-button {
     background: #71b659 !important;
     border: none !important;
     border-radius: 50%;
     background-size:cover;
     background-repeat: no-repeat;
     cursor: pointer;
     animation: pulse2 1.25s 2 cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover {
    animation: none;
}
@keyframes pulse2 {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

.iceMnuBar {
    background: #73BADD;
    border-radius: 2px;
    min-height: 2em;
    border-bottom: 1px solid #999;
    color: #fff;
    text-shadow: 0.4px 0.8px 2px #000d;
    font-size: 1.1em;
    line-height: 0.8em;
    box-shadow: 0 -3px 0.6em -2px #3333 inset, 1px 3px 1em #3333;
    letter-spacing: 0.5px;
}

.iceMnuBarItem {
	border: 1px solid transparent;
	display: inline-block;
	padding: 0.5em;
}
.iceMnuItm {
	min-width: 10em;
	display: block !important;
	border: 1px solid transparent;
	border-radius: 2px;
	padding: 0.5em 0.3em;
	position: relative;
}
.iceMnuItmImage, .iceMnuBarSubMenuInd {
	display: none;
}
.iceMnuItm > .iceCmdLnk, .iceMnuItm > .iceLink {
	padding-left: 0.3em;
}
.iceMnuPopVrtTopSubMenu, .iceMnuPopVrtSubMenu, .iceMnuBarSubMenu  {
	background: #73BADD;
	box-shadow:0 5px 1em -5px #6666;
	border: 1px solid #dddddd;
	border-radius: 3px;
	padding: 2px;
	position: absolute;
	z-index: 1000;
}

iceMnuPopVrtTopSubMenu, .iceMnuBarSubMenu+.iceMnuBarSubMenu {
	border-radius: 3px;
}
.iceMnuBarItem:hover, .iceMnuItm:hover {
	background: #3EB8E9;
	border: 1px solid #dddddd;
}
.iceMnuBarItemLabel, .iceMnuItmLabel {
	font-weight: bold;
}
.iceMnuBarItem > :first-child {
	margin-left: 0.5em;
}

.iceMnuBarItem::before, .iceMnuItm.hasChildren::after {
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
}
.iceMnuBarItem:before {
	content: "\f107";
}
.iceMnuItm.hasChildren:after {
	content: "\f105";
	position: absolute;
	right: 0.3em;
	top: 0.3em;
}



.ui-col-1 {
	width: 8.3%;
}
.ui-col-2 {
	width: 16.6%;
}
.ui-col-3 {
	width: 25%;
}
.ui-col-4 {
	width: 33.3%;
}
.ui-col-5 {
	width: 41.6%;
}
.ui-col-6 {
	width: 50%;
}
.ui-col-7 {
	width: 58.3%;
}
.ui-col-8 {
	width: 66.6%;
}
.ui-col-9 {
	width: 75%;
}
.ui-col-12 {
	width: 100%;
}

/*==================================*/
/* COMPONENTI DI INPUT */
/*================================= */
/***** INPUT ******/
.iceInpTxt, .iceInpSecrt, .iceSelInpDateInput, .iceSelOneMnu, .iceSelOneLb, .iceSelMnyLb, .iceSelMnyMnu, .iceSelInpTxtTxt, .iceInpTxtArea {
	background: #fff;
	border: 1px solid #dddddd;
	border-radius: 3px;
	padding: 2px 0.5em;
}

.iceSelInpDateInput {
	width: 7em;
}

select {
	max-width: 20em;
}

/***** INPUT DISABILITATO******/
.iceInpTxt-dis, .iceInpSecrt-dis, .iceSelInpDateInput-dis, .iceSelOneMnu-dis, .iceSelOneLb-dis, .iceSelMnyLb-dis, .iceSelMnyMnu-dis, .iceSelInpTxtTxt-dis, .iceInpTxtArea-dis {
     color: #777;
     background: #eee;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
     border: 1px solid #dddddd;
     border-radius: 3px;
     font-size: 90%;
     padding: 1px 2px;
     margin: 0;
     max-width: 280px;
     vertical-align: top;
}

/*----radio---*/
.iceSelMnyCb input, .iceSelOneRb input, .iceSelBoolChkbx {
     margin: 2px;
     padding: 2px;
}
 
.iceSelOneRb table tr td {
     padding: 0;
}
 
.iceSelOneRb {
     border: none;
}
 
.iceSelInpTxtList {
     max-height: 400px;
     overflow: auto;
}

option {
     background: #eeeeff;
}

.iceSelMnyLb:hover, .iceSelMnyMnu:hover {
     min-height: 20px;
     height: auto;
     max-height: 250px;
     transistion: all 0.6s ease;
     position: absolute;
     float: right;
     margin-top: -10px;
}
 
option[selected], option:checked, option:hover {
     background-color: #9BC8DA !important;
     color: #eeeeff !important;
}

 iceSelInpDateInput {
     width: 6em;
}

.iceSelInpDateOpenPopup, .iceSelInpDateClosePopup {
	width: 1.3em;
	margin-bottom: -3px;
}

.iceSelInpDateOpenPopup {
     background: url("../images/cal_button.png");
}

.iceSelInpDateClosePopup {
     background: url("../images/cal_off.gif") 
}

.iceSelInpDateMonthYear, .iceSelInpDateTime {
     text-align: center;
     vertical-align: top;
     padding: 3px;
}
 
.iceSelInpDateMoYrDropdown, .iceSelInpDateTimeDropDown {
     background: #eeeeff;
     font-weight: bold;
     color: #333344;
}

.iceSelInpDateMonthYear img {
     border: none;
     margin-left: 3px;
     padding: 3px;
}
.iceSelInpDate .iceCmdLnk {
     padding: 2px;
}

.pnl-single-body table:not(.iceSelInpDate) > tbody > tr > td > span:not(:empty),
.pnl-single-body table:not(.iceSelInpDate) > tr > td > span:not(:empty) {
	background: #f7f7f7;
	border: 1px solid #3333;
	padding: 1px 0.5em;
	border-radius: 2px;
}

/*========================== */
/* PANEL BORDER */
/*========================== */
.icePnlTbSetCnt {
     border: 1px solid #bbb;
     padding: 1% 2%;
}

.icePnlBrdrEast {
     width: 10%;
     vertical-align: top;
}
 
.icePnlBrdrWest {
     vertical-align: top;
}

/* ----------- autoComplete classes ------*/
.iceSelInpTxtList {
     position: absolute;
     display: block;
     border: 1px solid #333344;
     z-index: 50000;
}
 
.iceSelInpTxtRow, .iceSelInpTxtSelRow {
     display: block;
     padding: 2px;
     padding-left: 10px;
     position: relative;
     cursor: default;
}

.iceSelInpTxtRow {
     background-color: #eeeeff;
     color: #333344;
}
 
.iceSelInpTxtSelRow {
     background-color: #73BADD;
     color: #eeeeff;
}
/* ============================================ TreeView ============================================ */
.iceTreeRow {
     white-space: nowrap;
     vertical-align: middle;
     padding: 0;
}
 
.iceTreeRow a {
     cursor: pointer;
     padding: 0;
     vertical-align: middle;
     color: inherit;
}

.iceTreeRow a:hover {
     text-decoration: underline;
}

.iceTreeRow img {
     border: 0;
     vertical-align: middle;
     background-repeat: repeat-y;
     padding: 0;
}

.iceTreeRow a img {
     vertical-align: top;
     background-repeat: repeat-y;
     border: 0;
     padding: 0;
}

.iceTreeRow * div {
     padding: 0;
     vertical-align: middle;
}
/* ============================================ fine TreeView ============================================ */
/* ============================================ PopUp, ToolTip ============================================ */
/* Se tendenzialmente si vuole mantenere il popUp al pari dei tooltip*/
.icePnlPop, .icePnlTlTip {
	background: #eeeeff;
	border: 1px solid;
	min-width: 40em;
}
/* nel tooltip do precedenza a quelli che hanno *ENTRAMBE* le classi */
 .icePnlTlTip.cisPanToolTip .cisPanToolTipHdr.icePnlTlTipHdr {
     display: block;
}

.icePnlPopHdr .iceCmdBtn {
     float: right;
     box-sizing: contnet-box;
}

.icePnlPopHdr .popupIcon, .icePnlPopHdr .iceGphImg {
     float: left;
}

.icePnlTlTip {
     padding: 2px 2px 5px;
     width: auto;
}
/* header: intestazione*/
 .icePnlPopHdr, .icePnlTlTipHdr {
	font-weight: bold;
	color: #eef;
	background: #38A;
}
/* PROBLEMA DEL HEADER DEL POPUP fra Mozilla e Chrome 1) L'header (non si sa per quale motivo) rederizza con un table + 2 TD (?) il secondo largo 1px (?) 
2) Peccato che lo styleClass lo beccano entrambi e quindi se nello styleClass c'e' width 98% entrambi sono 98% ! quindi neccessito distribuire la percentuale correttamente */
 td.icePnlPopHdr:nth-child(1) {
     width: 98%;
}
td.icePnlPopHdr:nth-child(2) {
	display: none;
}

.icePnlPopHdr .iceOutTxt {
     color: #eeeeff;
}

.icePnlPopHdr td.cisPopupHeader2 {
     text-align: right;
}
.icePnlPopBody, .icePnlTlTipBody {
	padding: 0.5em;
}

.icePnlPopBody > .pnl-single-body {
	max-height: 45em;
	overflow-y: auto;
}

.popupTopTextDrag, .popupTopTextModal {
     margin: 2px 0 0 4px;
     display: inline;
     float: left;
}

.popupTopClose, .popupTopCloseModal {
     vertical-align: middle;
     margin: 4px;
     display: inline;
     float: right;
}

.popupContentText {
     display: block;
}

.pnl_close {
	border: 1px solid;
	padding:2px;
}



.panel {
    box-shadow: 0 0 0.6em -6px;
}

.panel-header {
	color: #eeeeff;
	background: #38A;
	border-radius: 5px 5px 0 0;
	padding-left: 1em;
	margin-bottom: 0;
	border: 1px solid #3339;
	border-bottom-width: 0;
	font-size: 1.1em;
	font-weight: bold;
	font-style: italic;
	min-height: 1.3em;
	letter-spacing: 1.3px;
	text-shadow: 0.4px 0.8px 2px #000d;
}
.panel-body {
	border: 1px solid #666A;
	padding: 0.5em;
	background: #e4f3ff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.panel-body:not(:last-child) {
	border-bottom: none;
	border-radius: 0;
}

.table-con-bordi {
    background: #fff;
    margin: 1em 0 0;
}

table > tbody > tr > td {
	padding: 0.3em;
}

table.table-con-bordi > tbody > tr > td {
	border-left: 1px solid #777;
	border-bottom: 1px solid #777;
}
table.table-con-bordi > tbody > tr > td:last-child {
	border-right: 1px solid #666A;
}
table.table-con-bordi > tbody > tr > td:first-child {
	border-left-color: black;
}
table.table-con-bordi > tbody > tr:last-child > td {
	border-bottom-color: black;
}

table > thead > tr {
	font-weight: bold;
	text-align: left;
	border: 1px solid;
}
table > thead > tr > th {
	border: 1px solid #666A;
	border: 1px 0 1px 1px;
	background: #73BADD;
	text-align: center;
}
table > thead > tr > th:last-child {
	border-right: 1px solid #666A;
}

.iceDatTbl > tbody > tr > td:first-child,
.iceDatTbl > thead > tr > td:first-child {
	min-width: 2em;
}

.is-polisportiva, .is-generico {
	font-weight: bold;
	color: red;
}

.iceSelInpDatePopup {
	display: inline-block;
}


/* TIPIDI STATO RICHIESTA */

.stato_richiesta.tpstato_1, .stato_richiesta option[value="1"]{ background: #8EF; }
.stato_richiesta.tpstato_2, .stato_richiesta option[value="2"]{ background: #FB2; }
.stato_richiesta.tpstato_3, .stato_richiesta option[value="3"]{ background: #FE6; }
.stato_richiesta.tpstato_4, .stato_richiesta option[value="4"]{ background: #F86; }
.stato_richiesta.tpstato_5, .stato_richiesta option[value="5"]{ background: #8E8; }
.stato_richiesta.tpstato_6, .stato_richiesta option[value="6"]{ background: #E35; }

