﻿/* Foglio di stile CSS predefinito per un nuovo progetto di applicazione Web */
/* Classi personalizzate per RULE DESIGNER FUSION */
/* NOTA: questo file è distribuito assieme a RuleDesigner e non va modificato */ 
/* se si utilizza un CSS custom cambiare SOLO le classi modificate */

/* STILI DI BASE */
:root {
  --main-font-family: Verdana;
  --main-font-size: 10pt;
  --main-font-color: #666666;
  --main-background-color: white;

    /* WEBINPUT STYLES */
  --main-ctrl-font-size: 10pt;
  --main-ctrl-font-color: #666666;
  --main-ctrl-border-unfocus: #dddee8;
  --main-ctrl-border-focus: #2c7bc9;

  --main-label-font-size: 10pt;
  --main-label-color-normal: #808080;
  --main-label-color-required: #606080;
  --main-label-color-readonly: #acacac;

  --main-validation-message-color: red;

  /* TOOLBAR STYLES */
  --main-button-font-color:white;
  --main-button-font-size:10pt;
  --main-button-background-color: #2c7bc9; /* Dark Blue */
  --main-button-background-pressed: #77aee4; /* Lighted Blue */
  --main-button-background-hover: #2a67a4; /* Soft Blue */
  --main-imgbtn-background-pressed: #2a67a4;
  --main-imgbtn-background-hover: #4a87c4;
  --main-smartb-font-color:#336699;
  --main-smartb-background-color: #dff4ff;
  --main-smartb-background-pressed: #dff4ff;
  --main-smartb-background-hover: #4a87c4;
}


/* 
 ********************************************************************
 * GENERICI WEB-INPUT, WEB-FORM, WEB-SUMMAYGRID, WEB-MESSAGE ...    *
 ********************************************************************
 */

/* Tabella principale statica comune a tutti i controlli*/
.MAIN_TABLE 
{
	border:0;
	padding:0;
	margin:0;
	border-width:0;
	border-spacing:0;
	border-collapse:collapse;	
}

/* Aspetto del contenitore interno globale */
.MAIN_CONTAINER
{
	/* background-color:white; */
	border:0;
	padding:0;
	margin:0;
	border-width:0;
	border-spacing:0;
	border-collapse:collapse;	
}

/* Aspetto del font principale */
.RDFONT
{
	color:#666666;
	color:var(--main-font-color);
	font-family:Verdana;
	font-family:var(--main-font-family);
	font-size:10pt;
	font-size:var(--main-font-size);
	font-style:normal;
	font-weight:normal;
	font-variant:normal;
	line-height:2;
}

/* font per riga di header */
.RDFONT_HEADER
{
    color:#4a4a4a;
	font-size:12pt;
	line-height:2;
    text-align: left;
    margin-left: 3px;
}

/* font per riga di header scura */
.RDFONT_HEADER_DARK
{
    color:#FaFaFa;
    background-color: #2c7bc9;
	font-size:12pt;
	line-height:2;
    text-align: left;
    margin-left: 3px;
}

/* pannello crash/errori web */
.RDERROR 
{
    margin: 5px;
    padding: 5px;
    background-color: LightGray;
    color: DarkRed;
    width:100%;
}

/* 
 ********************************************
 * Celle di CONTORNO statiche ...           *
 ********************************************
 */
 
.RDWI_TOP_ROW
{
	/*display:none*/
}
.RDWI_TOP_LEFT
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:no-repeat;   
   background-position:bottom right;      
   vertical-align:bottom;
   height:0px;     
   width:0px;
}
.RDWI_TOP_CENTER
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:repeat-x;
   background-position:bottom center;   
   height:0px;     
   vertical-align:bottom;     
}
.RDWI_TOP_RIGHT
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:no-repeat;      
   vertical-align:bottom;   
   background-position:bottom left;      
   height:0px;     
   width:0px;   
}
.RDWI_MIDDLE_ROW
{
    height:100%;
}
.RDWI_MIDDLE_LEFT
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:repeat-y;   
   background-position:center right;         
   width:0px;   
}
.RDWI_MIDDLE_CENTER
{
   /*background-image:url(../images/ok.png);*/
   padding:0px;
}
.RDWI_MIDDLE_CENTER_TABLE
{
	width:100%;
	text-align:left;
}
.RDWI_MIDDLE_RIGHT
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:repeat-y;   
   background-position:center left;            
   width:0px;   
}
.RDWI_BOTTOM_ROW
{
	/*display:none*/
}
.RDWI_BOTTOM_LEFT
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:no-repeat;   
   background-position:top right;            
   height:0px; 
   width:0px;        
   vertical-align:top;      
}
.RDWI_BOTTOM_CENTER
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:repeat-x;
   background-position:top center;            
   height:0px;  
   vertical-align:top;    
}
.RDWI_BOTTOM_RIGHT
{
   /*background-image:url(../images/ok.png);*/
   background-repeat:no-repeat;   
   background-position:top left;                  
   height:0px;  
   width:0px;       
   vertical-align:top;      
}

/* 
 ********************************************
 * Pulsantiere di azione delle funzioni Web *
 ********************************************
 */

/* Aspetto dei pulsanti standard classici (OK, CANCEL, BACK, ...) */
.RDBUTTON
{
	background-color:#2c7bc9; /* Dark Blue */
	background-color:var(--main-button-background-color);
	border:none;
	color:white;
	color:var(--main-button-font-color);
	padding:10px 30px;
	text-align:center;
	text-decoration:none;
	display:inline-block;
	font-size:10pt;
	font-size:var(--main-button-font-size);
	border-radius:2px;
	margin:5px;
	box-shadow:1px 1px 4px 1px #cccccc;
    cursor:pointer; 
	/*border-style:window-inset;*/
}
.RDBUTTON_DISABLED
{
	border: none;
	color: white;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 10pt;
	border-radius: 2px;
	margin:5px;
	box-shadow: 1px 1px 4px 1px #cccccc;
    cursor: not-allowed;
	/*border-style:window-inset;*/
}
.RDBUTTON_PRESSED
{
	background-color:#77aee4; /* Lighted Blue */
    background-color:var(--main-button-background-pressed);
	border: none;
	color: white;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 10pt;
	border-radius: 2px;
	margin:5px;
	/* box-shadow: 1px 1px 4px 1px #cccccc; */
	/*border-style:window-inset;*/
}
.RDBUTTON:hover
{
	background-color:#2a67a4; /* Soft Blue */
    background-color:var(--main-button-background-hover);
}

/* Aspetto dei pulsanti immagine (OK.gif, CANCEL.gif, BACK.gif, ...) */
.RDBUTTON_IMAGE
{
    cursor: pointer;
}
.RDBUTTON_IMAGE:hover
{
	background-color:#4a87c4;
    background-color:var(--main-imgbtn-background-hover);
}
.RDBUTTON_IMAGE_DISABLED
{
    opacity:0.5;
}
.RDBUTTON_IMAGE_PRESSED
{
	background-color:#2a67a4;
    background-color:var(--main-imgbtn-background-pressed);
}

/* Aspetto dei pulsanti smart con icona e testo */
.RDBUTTON_SMART
{
	/*background-color:white;*/
	/*color: Transparent;*/
	font-size:9pt;
	/*border-style:window-inset;*/
    padding: 4px;
    cursor: pointer; 
}
.RDBUTTON_SMART_DISABLED
{
	font-size:9pt;
    padding: 4px;
    color: InactiveCaptionText;
    cursor: not-allowed;
}
.RDBUTTON_SMART_PRESSED
{
	background-color:#dff4ff;
    background-color:var(--main-smartb-background-pressed);
	color:#336699;
    color:var(--main-smartb-font-color);
    border:2px solid #c2e1ef;
	font-size:9pt;
    padding: 4px;
}
.RDBUTTON_SMART:hover
{
    background-color:#dff4ff;
    background-color:var(--main-smartb-background-color);
	color:#336699;
    color:var(--main-smartb-font-color);
    border:2px solid #c2e1ef;
}

/* Aspetto delle immagini nei pulsanti smart con icona e testo */
.RDBUTTON_IMAGE_SMART
{
    text-align: center;
    display: block;
    margin: auto;
    margin-bottom: 4px;
}

/* Aspetto dei pulsanti fab-button */
.RDBUTTON_FAB
{
  background-color:gray;
  width:60px;
  height:60px;
  border-radius:100%;
  background:gray;
  border:none;
  outline:none;
  color:#FFF;
  font-size:36px;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.RDBUTTON_FAB_DISABLED
{
  background-color:gray;
  width:60px;
  height:60px;
  border-radius:100%;
  background:gray;
  border:none;
  outline:none;
  color: InactiveCaptionText;
  font-size:36px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  cursor: not-allowed;
}
.RDBUTTON_FAB_PRESSED
{
  background-color:gray;
  width:60px;
  height:60px;
  border-radius:100%;
  background:gray;
  border:none;
  outline:none;
  color:#FFF;
  font-size:36px;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform:scale(0.9);
}
.RDBUTTON_FAB:focus 
{
  transform:scale(1.1);
}
.RDBUTTON_FAB:hover 
{
  transform:scale(1.1);
  background:#F44336;
}

/* Aspetto dei separatori fra i pulsanti*/
.RDBUTTON_SEPARATOR
{
    padding:4px;
    display:inline
}

/*
 * BUTTON AREA TOP
 */
.RDBUTTON_AREA_TOP_ROW
{
}
.RDBUTTON_AREA_TOP_LEFT
{
} 
.RDBUTTON_AREA_TOP
{
	text-align: left;
	border-spacing:0;
 	border-collapse: collapse;
    padding-bottom:10px;
	padding-left:10px;
}
.RDBUTTON_AREA_TOP_RIGHT
{
}

/*
 * BUTTON AREA LEFT
 */
.RDBUTTON_AREA_LEFT
{
	vertical-align: top;
	text-align: left;
	border-spacing:0;
 	border-collapse: collapse;
}

/*
 * BUTTON AREA RIGHT
 */
.RDBUTTON_AREA_RIGHT
{
	vertical-align: top;
	text-align: center;
	border-spacing:0;
 	border-collapse: collapse;
}

/*
 * BUTTON AREA BOTTOM (default button bar)
 */
.RDBUTTON_AREA_BOTTOM_ROW
{
}
.RDBUTTON_AREA_BOTTOM_LEFT
{
}
.RDBUTTON_AREA_BOTTOM
{
	text-align: right;
	border-spacing:0;
 	border-collapse: collapse;
	padding-top:10px;
	padding-right:10px;
}
.RDBUTTON_AREA_BOTTOM_RIGHT
{
}

/* 
 ****************************************************
 * PARTI STANDARD DI HEADER, TITLE, CONTENT, STATUS *
 ****************************************************
 */

/* Aspetto della riga contenente l'header dinamico */
.RDWI_HEADER_ROW
{
	text-align: left;
	background-color: White;
}
/* Aspetto della singola cella contenente l'header dinamico */
.RDWI_HEADER_CELL
{
	margin-bottom:10px;
}
/* Aspetto della label contenente l'header dinamico */
.RDWI_HEADER
{
	font-size: 10pt;
	color: #404048;
	background-color:transparent;
	margin-left:4px;
    margin-right:4px;	
}
/* Aspetto della riga contenente il titolo dinamico */
.RDWI_TITLE_ROW
{
	background-color: White;
}
/* Aspetto della singola cella contenente il titolo dinamico */
.RDWI_TITLE_CELL
{	
    margin-bottom:6px;	
}
/* Aspetto della label contenente il titolo dinamico */
.RDWI_TITLE
{
	font-size: 12pt;
	font-weight: bold;
	color: #404048;
	background-color:transparent;
	/* text-decoration: underline; */
	margin-left:6px;
	margin-right:6px;
}
/* Aspetto della riga contenente il contenuto dinamico */
.RDWI_CONTENT_ROW
{
}
/* Aspetto della singola cella contenente il contenuto dinamico */
.RDWI_CONTENT_CELL
{
	text-align:left;
	vertical-align: top;
    width: 100%;
}
/* Aspetto della singola cella contenente lo stato dinamico (solo webinput) */
.RDWI_STATUS_CELL
{
}
/* Aspetto della label contenente lo stato dinamico (solo webinput) */
.RDWI_STATUS
{
	color:red;;
	color:var(--main-validation-message-color);
	font-size:10pt;
    display:block;
    padding:8px;
}
.RDWI_STATUS_ROW
{
	background-color:transparent;
}
/* Aspetto a dialog della label contenente lo stato dinamico (solo webinput) */
.RDWI_STATUS_DIALOG {
    background-color: white;   
    color: #4A4E77;
    display: block;
    position: absolute;
    left: 50px;
    top: 50px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
}

/* 
 ********************************************
 * Frame centrale delle Web Input ...       *
 ********************************************
 */
.RDWI_CENTER
{
   width:100%;
   height:100%;
}

/* 
 ********************************************
 * CLASSI EXTRA PER LAYOUT FLOATING ...     *
 ********************************************
 */
.RDWI_DIV_FLOAT
{
    margin: 3px;
    float: left;
}
.RDWI_DIV_BREAK
{
    margin: 3px;
    clear: both;
    float: left;
}
.RDWI_DIV_WARNIMG
{
    float: left;
}
.RDWI_DIV_LABEL_REQ
{
	color:#606080;
	color:var(--main-label-color-required);
	font-size:10pt;
	font-size:var(--main-label-font-size);
	font-weight: bold;
	width: 200px;
	vertical-align: middle;
    margin: 3px;
}
.RDWI_DIV_CONTROL_REQ
{
}
.RDWI_DIV_CTRLIMG_REQ
{
}
.RDWI_DIV_LABEL
{
	color:#808080;
	color:var(--main-label-color-normal);
	font-size:10pt;
	font-size:var(--main-label-font-size);
	font-weight: normal;
	width: 200px;
	vertical-align: middle;
    margin: 3px;
}
.RDWI_DIV_CONTROL
{
}
.RDWI_DIV_CTRLIMG
{
}
.RDWI_DIV_LABEL_REQ_READONLY
{
	color:#acacac;
	color:var(--main-label-color-readonly);
	font-size:10pt;
	font-size:var(--main-label-font-size);
	width: 200px;
	font-weight: bold;
	vertical-align: middle;
}
.RDWI_DIV_CONTROL_REQ_READONLY
{
}
.RDWI_DIV_CTRLIMG_REQ_READONLY
{
}
.RDWI_DIV_LABEL_READONLY
{
	color:#acacac;
    color:var(--main-label-color-readonly);
	font-size:10pt;
	font-size:var(--main-label-font-size);
	border:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDWI_DIV_CONTROL_READONLY
{
	background-color:#FFFFFF;
	color:#666666;
	color:var(--main-ctrl-font-color);
	font-size:10pt;
	font-size:var(--main-ctrl-font-size);
	width:100%;
	border:0;
	padding:0;
	margin:0;
	border-width:0;
}
.RDWI_DIV_CTRLIMG_READONLY
{
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER WEB MESSAGE ...    *
 ********************************************
 */
.RDWI_WEBMESSAGE_TABLE
{
	width:100%;
	padding: 3px;
}
.RDWI_WEBMESSAGE_ROW
{
	vertical-align: top;
}
.RDWI_WEBMESSAGE_IMAGE
{
	width:20px;
	height:20px;
}
.RDWI_WEBMESSAGE_LABEL
{
	padding: 10px;
	vertical-align: middle;
}
.RDWI_LABEL
{
	color:#808080;
	color:var(--main-label-color-normal);
	font-size:10pt;
	font-size:var(--main-label-font-size);
	width: 100%;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER WEB INPUT ...      *
 ********************************************
 */

.RDWI_WEBINPUT_TABLE
{
	width:100%;
	padding: 6px;
}
.RDWI_WEBINPUT_ROW
{
	vertical-align: top;
}
.RDWI_WEBINPUT_CELL
{	
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER SUMMARY GRID ...   *
 ********************************************
 */

.RDWI_SUMMARYGRID_TABLE{
	box-shadow: 1px 1px 4px 1px #cccccc; 
	padding: 0px;
	border-radius: 2px;
	padding:6px;
	width:100%;
}
table.RDGRID thead 
{
    /* REMOVE COMMENTS TO ENABLE FIXED HEADER
    display: block;
    */
}
table.RDGRID tbody 
{
    /* REMOVE COMMENTS TO ENABLE FIXED HEADER
    display: block;
    overflow-y: auto;
    height: 300px;
    */
}
table.RDGRID tfoot 
{
    /* REMOVE COMMENTS TO ENABLE FIXED HEADER
    display: block;
    */
}
.RDGRID_HEADER
{
    background-color:#607f9c;
	height:100%;
	width:100%;
	color:white;
	font-size: 8pt;
	font-style:normal;
	font-weight:bold;
	font-variant:normal;
    height:42px;
}
.RDGRID_HEADER_CELL
{
    padding-left:6px;
}
.RDGRID_FOOTER
{
	background-color:#607f9c;
	height:100%;
	width:100%;
	color:white;
	font-size: 8pt;
	font-style:normal;
	font-weight:bold;
	font-variant:normal;
    height:42px;
}
.RDGRID_FOOTER_CELL
{
    padding-left:6px;
}
.RDGRID_ROW_TITLE
{
	Background-color:#FFFFFF;
    height:100%;
	width:100%;
	color:#484848;
	font-size: 10pt;
	font-style:normal;
	font-weight:bold;
	font-variant:normal;
	height:47px;
	text-align:left;
}
.RDGRID_ROW
{
	background-color:#FFFFFF;
    height:100%;
	width:100%;
	color:#595566;	
	font-size: 8pt;
	font-style:normal;
	font-weight:normal;
	font-variant:normal;
	height:42px;
}
.RDGRID_ROW_HOVER:hover
{
	background-color:#F0F0F0;   
}
.RDGRID_ROW_TITLE a:link
{
	 color:gray; 
	 text-decoration:underline;
}
.RDGRID_ROW_TITLE a:hover
{
	 color:Orange; 
	 text-decoration:underline;
}
.RDGRID_ROW_TITLE_CELL
{
	border-bottom:1px solid #e0e0e0;
	padding-left: 4px;
    padding-right: 4px;
	text-align:left;
}
.RDGRID
{
	background-color: white;
	height: 10%;
	width: 10%;
	border-bottom: 0 #FF0000 solid;
	padding: 0;
	margin: 0;
	border-width: 0;
	border-collapse: collapse;
}
.RDGRID_CELL
{
	border-bottom:1px solid #e0e0e0;
	/* background-color: white; */
	padding-left: 6px;
    padding-right: 6px;
}
.RDGRID_IMAGE
{
}
.RDGRID_ICON
{
    width:22px;
    text-align:center;
	border-bottom:1px solid #e0e0e0;
	background-color: white;
}
.RDGRID_DOWNLOAD
{
    width:1%;
}
.RDGRID_LINK
{
	background-color:#2c7bc9; /* Dark Blue */
    background-color:var(--main-button-background-color);
    border: none;
    color: white !important;
    padding: 5px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10px;
    border-radius: 2px;
    margin:4px;
    box-shadow: 1px 1px 4px 1px #cccccc; 
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER FIELDSET 		    *
 ********************************************
 */

.RDWI_FIELDSET fieldset
{ 
    /*border-color: lightgray;*/
    color: #2c7bc9;
	font-size: 8pt;
	font-weight: 600;
    border-radius: 2px;
	box-shadow: 1px 1px 4px 1px #cccccc; 
	padding: 4px;
}
fieldset {
    display: block;
    -webkit-margin-start: 2px;
    -webkit-margin-end: 2px;
    -webkit-padding-before: 0.35em;
    -webkit-padding-start: 0.75em;
    -webkit-padding-end: 0.75em;
    -webkit-padding-after: 0.625em;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-width: 0px;
    border-style: none;
    border-color: white;
}
legend {
	background-color:white;
}
.RDWI_FIELDSET
{ 
	width:100%;
	padding-top:10px;
	padding-bottom:10px;
}

A:link	{	
	text-decoration:	none;
	color:	#3333cc;
	}	
		
A:visited	{	
	text-decoration:	none;
	color:	#333399;
	}	
		
A:active	{	
	text-decoration:	none;
	color:	#333399;
	}	
		
A:hover	{	
	text-decoration:	none;
	color:	#3333cc;
	}

/* 
 ***********************************APPEDITOR2D ...   *
 ********************************************
 */

.RDWI_WEBAPP_TABLE {
    width: 100%;
    height: 100%;
    padding: 3px;
}

.RDWI_WEBAPP_ROW {
    vertical-align: top;
}

.RDWI_WEBAPP_CELL {
}

.RDWEBAPP {
    background-color: white;
    height: 100%;
    width: 100%;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER WEB EDITOR2D ...   *
 ********************************************
 */

.RDWI_WEBEDITOR2D_TABLE
{
	width:100%;
	height:100%;
	padding: 3px;
}
.RDWI_WEBEDITOR2D_ROW
{
	vertical-align: top;
}
.RDWI_WEBEDITOR2D_CELL
{	
}
.RDWEBEDITOR2D
{
	background-color: white;
	height: 100%;
	width: 100%;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER WEB EDITOR3D ...   *
 ********************************************
 */

.RDWI_WEBEDITOR3D_TABLE {
    width: 100%;
    height: 100%;
    padding: 3px;
}

.RDWI_WEBEDITOR3D_ROW {
    vertical-align: top;
}

.RDWI_WEBEDITOR3D_CELL {
}

.RDWEBEDITOR3D {
    background-color: white;
    height: 100%;
    width: 100%;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER WEB FORM     ...   *
 ********************************************
 */

.RDWI_WEBFORM_TABLE
{
	width:100%;
	height:100%;
	padding: 3px;
}
.RDWI_WEBFORM_ROW
{
	vertical-align: top;
}
.RDWI_WEBFORM_CELL
{	
}
.RDWEBFORM
{
	height:100%;
	width:100%;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER WEB REDIRECT ...   *
 ********************************************
 */

.RDWI_WEBREDIRECT_TABLE
{
	width:100%;
    height:100%;
	padding: 2px;
}
.RDWI_WEBREDIRECT_ROW
{
	vertical-align: top;
}
.RDWI_WEBREDIRECT_CELL
{	
}

/* 
 ********************************************
 * Aspetto dei controlli nelle WEBINPUT     *
 ********************************************
 */

/* Stile di base ereditato da ogni controllo */
.RDCONTROL
{
	background-color: #FFFFFF;
	color:#484848;
	font-size:10pt;
	width:100%;
	padding:0;
	margin:0;
	border-bottom:1px solid #dddee8;
	margin-bottom:1px;
	border-spacing:0;
	border-collapse:collapse;
	outline: none;
}

.RDCONTROL:focus
{
	border-bottom:2px solid #2c7bc9;
	margin-bottom:0px;
}

/* Controllo disabilitato */
.RDCONTROL_DISABLED
{
	background-color: #f0f0f0 !important;
	border: 0;
	border-width: 0;
}

/* Controllo a compilazione obbligatoria */
.RDCONTROL_REQUIRED
{
	background-color: #FFFFFF;
	color:#484848;
}

/* Classe delle label */
.RDCONTROL_LABEL
{
	font-size:10pt;
}

/* Classe delle UM */
.RDCONTROL_UM
{
    overflow: hidden;
    display: table-cell;
}

/* Controllo a scelta radio */
.RDCONTROL_RADIOBUTTONS
{
	background-color: white;
	color:#484848;
	border-bottom:0px solid #dddee8;
	border-collapse:collapse;
}
.RDCONTROL_RADIOBUTTONS_LABEL
{
    position: relative;
    top: -2px;
}
.RDCONTROL_RADIOBUTTONS_IMG
{
	border-collapse: collapse;
    cursor: pointer;
    border: 1px solid transparent;
}
.RDCONTROL_IMG_HOVER
{
    filter: brightness(120%);
    -webkit-filter: brightness(120%);
    -moz-filter: brightness(120%);
    -ms-filter: brightness(120%);
    -webkit-transition: all 0.50s;
     transition: all 0.50s;
}
.RDCONTROL_IMG_DISABLED
{
    opacity:0.5;
    -webkit-filter: sepia(80%);
    filter: sepia(80%);
    cursor: no-drop;
    background-color: lightgray;
}
.RDCONTROL_IMG_PRESSED
{
    border: 1px solid #2a67a4;
    background-color: #2a67a4;
    filter: drop-shadow(4px 4px 6px #2a67a4);
}
.RDCONTROL_RADIOBUTTONS_RADIO
{
	border-collapse: collapse;
}
.RDCONTROL_RADIOBUTTONS_IMG_ROW
{
	border-collapse: collapse;
}

/* Controllo a scelta multipla */
.RDCONTROL_MULTISELECT
{
	border-bottom:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
}

/* Controllo a scelta multipla checklist*/
.RDCONTROL_MULTISELECT_CHECKLIST
{
	border-bottom:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
}
.RDCONTROL_MULTISELECT_CHECKLIST_LABEL
{
    position: relative;
    top: -2px;
}

/* Controllo booleano */
.RDCONTROL_BOOLEAN
{
    padding-bottom: 4px;
    padding-top: 4px;
}
.RDCONTROL_BOOLEAN_LABEL
{
    position:relative;
    vertical-align:bottom;
    top: -3px;
}

/* Controllo con checkbox */
.RDCONTROL_CHECKBOX {
    border-bottom: 0px solid #dddee8;
    padding-bottom: 4px;
    padding-top: 4px;
}
.RDCONTROL_CHECKBOX_LABEL
{
    position:relative;
    vertical-align:bottom;
    top: -3px;
}

/* Controllo con checkbox (MATERIALUI) */
.RDCONTROL_CHECKBOX_MATERIAL
{
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 4px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.RDCONTROL_CHECKBOX_MATERIAL input { 
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.RDCONTROL_CHECKBOX_MATERIAL span {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
.RDCONTROL_CHECKBOX_MATERIAL:hover input ~ span {
  background-color: #ccc;
  display: block;
}
/* When the checkbox is checked, add a blue background */
.RDCONTROL_CHECKBOX_MATERIAL input:checked ~ span {
  background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.RDCONTROL_CHECKBOX_MATERIAL span:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.RDCONTROL_CHECKBOX_MATERIAL input:checked ~ span:after {
  display: block;
}
/* Style the checkmark/indicator */
.RDCONTROL_CHECKBOX_MATERIAL span:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Controllo con checkbox - Immagine */
.RDCONTROL_CHECKBOX_IMG_ROW
{
	border-bottom:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
	padding-left: 4px;
}
.RDCONTROL_CHECKBOX_IMG
{
	border-bottom:0px solid #dddee8;
	margin-bottom: 4px;
    margin-top: 4px;
}
.RDCONTROL_CHECKBOX_IMG_CELL
{
}
/* Controllo con checkbox - Radio */
.RDCONTROL_CHECKBOX_RADIO_ROW
{
}
.RDCONTROL_CHECKBOX_RADIO
{
}
.RDCONTROL_CHECKBOX_RADIO_CELL
{
}
/* Controllo con checkbox - Testo */
.RDCONTROL_CHECKBOX_BUFFER_ROW
{
}
.RDCONTROL_CHECKBOX_BUFFER
{
}
.RDCONTROL_CHECKBOX_BUFFER_CELL
{
}
/* Controllo scelta file */
.RDCONTROL_BROWSEFILE
{
    padding-bottom: 4px;
    padding-top: 4px;
    float: left;
}
.RDBUTTON_BROWSEFILE
{
    width: 76px;
    font-size: 14px;
    padding-bottom: 4px;
    padding-top: 4px;
}
/* Controllo upload file */
.RDCONTROL_FILEUPLOAD
{
	border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
}
.RDCONTROL_FILEUPLOAD_BUTTON
{
   /* border: 1px solid #dddee8;
    background-color: #eeeeef;
    padding: 1px;
    white-space: nowrap;*/
	background-color: #2c7bc9; /* Blue */
	border: none;
	color: white;
	padding: 3px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 9pt;
	border-radius: 2px;
	text-transform: uppercase;
}
.qq-upload-drop-area
{
    width:100%;
    height:100%;
}
.qq-upload-button-hover
{
    background-color: #2a67a4;
}
/* Controllo scelta cartella */
.RDCONTROL_BROWSEFOLDER
{
}
/* Controllo scelta data */
.RDCONTROL_DATE
{
}
/* Controllo pannello html */
.RDCONTROL_HTMLPANEL
{
}
/* Controllo simple image */
.RDCONTROL_SIMPLEIMAGE
{
}
/* Controllo simple label */
.RDCONTROL_SIMPLELABEL
{
}
/* Controllo zoom popup */
.RDCONTROL_EXTERNALZOOM
{
    border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;    
}
/* Controllo combo scrivibile */
.RDCONTROL_WRITECOMBO
{
	background-color: palegoldenrod;
	padding-bottom: 4px;
    padding-top: 4px;
}
.RDCONTROL_COMBOBOX 
{
    border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
}
/* Controllo di testo */
.RDCONTROL_TEXT 
{
    border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
    padding-left: 2px;
    padding-right: 2px;
}
.RDCONTROL_TEXTAREA
{
    border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
}
.RDCONTROL_PASSWORD
{
    border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;	
}
/* Controllo data calendario */
.RDCONTROL_DATE
{
    border-bottom:1px solid #dddee8;
	border-top:0px solid #dddee8;
	border-left:0px solid #dddee8;
	border-right:0px solid #dddee8;
	padding-bottom: 4px;
    padding-top: 4px;
}
/* Autocomplete TextBox*/
.autocomplete-list {
	padding-bottom: 3px;
	border-bottom: 1px solid #dddee8;
	list-style: none;
	display: none;
	z-index: 100;
}
.autocomplete-list-visible {
	display:block;
}
.autocomplete-item {
	padding:2px;
	display:none;
}
.autocomplete-item-visible {
	display:block;
}
.autocomplete-item-selected {
	background-color:#ffffe6;
	border-bottom: solid 1px #dddee8;
}
/* Controllo editbox con dropdown */
.rdComboDropDownBox {
    width: 100%;
	margin-right: -100%;
	background-color: none;
}
.rdComboTextBox {
    width: calc(100% - 22px);
	margin-left: 2px;
	margin-top: -20px;
    border: none;
	background: none;
}

/* Controllo con focus */
.RDCONTROL_FOCUSED 
{
	/* border-bottom:2px solid #2c7bc9; */
}

/* 
 *********************************************
 * LAYOUT PER CONTROLLI WEBINPUT             *
 *********************************************
 */

.RDTABLE_CONTROL
{
	vertical-align: bottom;
	width: 100%;
	background-color: white;
	border-bottom:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDTABLE_MAIN
{
	background-color: white;
	vertical-align:bottom;
	border-collapse: collapse;
  	height:100%;
	width:100%;
	border-bottom:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDTABLE_WARNING
{
	background-color: white;
	height:100%;
	width:100%;
	border:0;
	padding:0;
	margin:0;
	border-width:0;
	border-collapse: collapse;	
}
.RDCONTROL_CELL
{
	background-color: white;
	border:0;
	padding:0;
	margin:0;
	border-width:0;
	width: 100%;
}
.RD_REMPTY
{
	background-color: #FFFFFF;
	border:0;
	padding:0;
	margin:0;
	border-width:0;
	padding-top:0;
	padding-bottom:0;	
}
.RD_RLABELIMG
{
	background-color: white;
	border:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDLABEL_ROW
{
	background-color: white;
	border:0;
	padding:0;
	margin: 0;
	border-width:0;	
	width:100%;
	padding-left:4px;
}
.RDWARNING_CELL
{
	background-color:transparent;
	vertical-align:bottom;
	border:0;
	padding:0;
	margin:0;
	border-width:0;	
	width:100%;
}
.RDIMAGE
{
	border-width:0px;
	border-color:#717494;
	border-style:solid;
	height:auto;
}
.RDCELL
{
}
.RDIMAGE_CELL
{
	background-color:transparent;
	border:0;
	padding:0;
	margin:0;
	border-width:0;
	/*height:60px;*/
	/* width:1px; */
	vertical-align:bottom;
}
.RDIMAGE_WARNING_CELL
{
	background-color:transparent;
	vertical-align:bottom;
	width:0;
	border:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDPROMPT
{
	background-color:transparent;
}
.RDREQUIRED
{
	color:#484848;
	font-weight:bold;
}

/*
 * In questa sezione è possibile modificare l'aspetto dei prompt sidelabels (required e non)
 */
.RDWI_SIDELABEL_WARNIMAGE
{
	background-color:transparent;
	vertical-align:bottom;
	width:0;
	border:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDWI_SIDELABEL_WARNIMAGE_REQ
{
	background-color:#FFFFFF;
	vertical-align:bottom;
	width:0;
	border:0;
	padding:0;
	margin:0;
	border-width:0;	
}
.RDWI_SIDELABEL_PROMPT
{
	color:#808080;
	color:var(--main-label-color-normal);
	font-size:10pt;
	font-size:var(--main-label-font-size);
	width:30%;
	border:0;
	padding:0;
	margin:0;
	border-width:0;		
}
.RDWI_SIDELABEL_PROMPT_REQ
{
	color:#606080;
	color:var(--main-label-color-required);
	background-color:#FFFFFF;
	font-size:10pt;
	font-size:var(--main-label-font-size);
	font-style:normal;
	font-weight:bold;
	font-variant:normal;	
	width:30%;
	border:0;
	padding:0;
	margin:0;
	border-width:0;		
}
.RDWI_SIDELABEL_INPUT
{
	/* background: #FFF5E0; */
}
.RDWI_SIDELABEL_INPUT_REQ
{
	background:#FFFFFF;
}
.RDWI_UPLOAD_ICON
{
    display: inline;
    vertical-align: bottom;
    margin-left:2px;
    margin-right:2Px;
}

/* Classe per gli stili del controllo calendario */
.calendar 
{
	background-color:white;
    font-size: 14px;
}
.calendar img
{
	position:relative;
    top: 4px;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE PER RD TREE, presente nella cella con id="LEFT_BUTTON_AREA" e class="RDBUTTON_AREA_LEFT" id="LEFT_BUTTON_AREA"
 * presente in RemoteGetInput, RemoteSummaryGrid, RemoteWebMessage e RemoteWebForm
 ********************************************
 */

.RDWI_CONTENT_TREE_CELL {
    text-align:left;
   	vertical-align: top;
   	width:250px;
}
.RD_TREE_CONTAINER {
    /* margin-top:15px; */
	margin:0px;
	padding:0px;
}
.RD_TREE_ROOT{
    margin-left:0px;
    padding-left:0px;
}
.RD_TREE_ROOT ul {
	margin-left:20px;	/* Left spacing */
	padding-left:0px;
	/*display:none;	/* Initially hide sub nodes */
}
.RD_TREE_ROOT li {
	list-style-type:none;
	margin-top: 3px;
}
.RD_TREE_ROOT li div {
    border:1px transparent #000;
	padding-left:2px;
	padding-right:2px;
	display: inline;
}
.RD_TREE_ITEM {
	overflow:hidden;
	width:100%;
	font-size:8pt;
	z-index:9999;
	color:#484848;
}
.RD_TREE_ITEM_OVER{
	border:1px solid #000;
	background-color:#FFEEC2;
	background-image:none;
}
.RD_TREE_ITEM_SELECTED {
    font-weight: bold;
}
.RD_TREE_ITEM_DISABLED {
    color: lightgray;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE rdFilterFlyout
 ********************************************
 */
#rdFilterFlyout {
    position: absolute;
    width:200px;
    border: #000 1px solid; 
    padding: 10px; 
    background-color: #fff; 
    border-radius: 10px; 
    margin-left: auto;
    margin-left: auto;
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE rdImgFlyout
 ********************************************
 */
#rdImgFlyout {
    position: absolute;
    border: #000 1px solid; 
    padding: 20px; 
    background-color: #fff; 
    border-radius: 10px; 
    margin-left: auto;
    margin-left: auto;
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE rdFieldTooltip
 ********************************************
 */
#rdFieldTooltip {
    position: absolute;
    border: #000 1px solid; 
    background-color: #fff; 
    border-radius: 10px; 
    margin-left: auto;
    margin-left: auto;
    overflow:hidden;
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE rdLabelTooltip
 ********************************************
 */
#rdLabelTooltip {
    position: absolute;
    border: #000 1px solid; 
    background-color: #fff; 
    border-radius: 10px; 
    margin-left: auto;
    margin-left: auto;
    padding: 10px;
    overflow:hidden;
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
}

/* 
 ********************************************
 * CLASSI SPECIFICHE per DIALOGHI POPUP
 ********************************************
 */
#simplemodal-overlay 
{
}
#simplemodal-container
{
  /* color: #eee; */
  background-color: #fff;
  border: 0px;
  padding: 10px 5px 5px 5px;
  height: 400px;
  width: 600px;
  box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}
#simplemodal-container a.modalCloseImg {
	background:url(../Images/Icon/Cancel.png) no-repeat; /* adjust url as required */
	width:24px;
	height:24px;
	display:inline;
	z-index:9999;
	position:absolute;
	top:-13px;
	right:-13px;
	cursor:pointer;
}

/* 
 ********************************************
 * CLASSI STYLES GENERICI INTERFACCIA
 ********************************************
 */
.fixedIE 
{
    Width: 100%;
    left: 0px;
    position: absolute;
    top:expression(body.scrollTop + "px");
}
.fixed {
    Width: 100%;
    left: 0px;
    position: fixed;
    top:0px;
}
.toolbargap {
    margin-top: 50px;
}

A:link	{	
	text-decoration:none;
	color:	#3333cc;
	}		
A:visited	{	
	text-decoration:none;
	color:	#333399;
	}		
A:active	{	
	text-decoration:none;
	color:	#333399;
	}		
A:hover	{	
	text-decoration:underline;
	color:	#3333cc;
	}
	
#divLock {
	cursor : wait;
    position : fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index : 1000000;
	background-color : lightgray;
	opacity: 0.10;
	filter:alpha(opacity=10);
}
#divZoom {
	cursor : default;
    position : absolute;
    z-index : 1000010;
	background-color : white;
}
#iZoom {
	border : none;
}

/* 
 ********************************************************************
 * Foglio di stile CSS predefinito per i template dei processi RuleDesigner Configurator
 ********************************************************************
 */

body{
    margin:0px;
    padding:0px;
    border: 0;
    overflow:auto;
    height:100%;
}

#mainContainer {
    width: 100%;
    height: 100%;
    position:relative;
    background-color:#FFFFFF;
    margin: 0 auto;
    display:table;
}

/* Intestazione pagina con logo e banda blu*/

#rdHeader {
    background-color: #2c7bc9;
    height: 44px;
    text-align: left;
    vertical-align: top;
    display:table-row;
}

#rdHeaderLogo {
    text-align: left;
    vertical-align: top;
    display:inline-block;
}

#rdHeaderNav {
    text-align: right;
    vertical-align: middle;
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 22px;
    font-family: sans-serif;
    font-style: italic;
    padding-right: 8px;
    float: right;
    line-height: 44px;
}

#rdContent {
    /* border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0; */
    display:table-row;
    height: 100%;
}

#rdFooter {
    height: 0;
    display:table-row;
}

#FMain {
    width: 100%;
    height: 100%;
    border: 0;
}

/* stili font*/
a {
    text-decoration:none; 
    color:#484848; 
}

#poweredby {
    border-width: 0px;
}

h1
{
    font-size:20px;
}

h2{
    font-size:16px;
}

/* Righe tabella con bordo grigio in basso*/

.raw-border{
    border-bottom: 1px solid rgb(97, 97, 97);
}

/* colore bottone blu piatto*/

.blue-button {
    background-color: #2c7bc9; /* Blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 2px;
    margin:5px;
    box-shadow: 1px 1px 4px 1px #cccccc; 
}

/* Gradienti millimetrati */
.grid100 {
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 99px, #CCC 99px, #CCC 100px),
        repeating-linear-gradient(-90deg, transparent, transparent 99px, #CCC 99px, #CCC 100px);
    background-size: 100px 100px;
}

/* 
 **********************************************
 * CSS per DropDown con immagini (WITHIMAGES) *
 **********************************************
 */
.borderRadius{-moz-border-radius:5px; border-radius:5px; }
.borderRadiusTp{-moz-border-radius:5px 5px 0 0; border-radius:5px 5px 0 0;}
.borderRadiusBtm{-moz-border-radius:0 0 5px 5px ; border-radius:0 0 5px 5px;}

.ddcommon {position:relative;display:-moz-inline-stack; zoom:1; display:inline-block; *display:inline; cursor:default;}
.ddcommon ul{padding:0;margin:0;}
.ddcommon ul li{list-style-type:none;}
.borderRadiusTp ul li:last-child{-moz-border-radius:0 0 5px 5px ; border-radius:0 0 5px 5px;border-bottom:0 none #c3c3c3; }
.borderRadiusBtm ul li:first-child{-moz-border-radius:5px 5px 0 0; border-radius:5px 5px 0 0 ;border-bottom:1 solid #c3c3c3; }

.ddcommon .disabled img, .ddcommon .disabled span, .ddcommon.disabledAll{
opacity: .5; /* standard: ff gt 1.5, opera, safari */
-ms-filter:"alpha(opacity=50)"; /* ie 8 */
filter:alpha(opacity=50); /* ie lt 7 */
-khtml-opacity:.5; /* safari 1.x */
-moz-opacity:.5; /* ff lt 1.5, netscape */
color:#999999;
}
.ddcommon .clear{clear:both}
.ddcommon .shadow{-moz-box-shadow:5px 5px 5px -5px #888888;-webkit-box-shadow:5px 5px 5px -5px #888888;box-shadow: 5px 5px 5px -5px #888888;}
.ddcommon input.text{color:#7e7e7e;padding:0 0 0 0; position:absolute; background:#fff; display:block; width:98%; height:98%; left:2px; top:0; border:none;}
.ddOutOfVision{position:relative; display:-moz-inline-stack; display:inline-block; zoom:1; *display:inline;}
.borderRadius .shadow{-moz-box-shadow:5px 5px 5px -5px #888888;-webkit-box-shadow:5px 5px 5px -5px #888888;box-shadow: 5px 5px 5px -5px #888888;}
.borderRadiusBtm .shadow{-moz-box-shadow:-5px -5px 5px -5px #888888;-webkit-box-shadow:-5px -5px 5px -5px #888888;box-shadow: -5px -5px 5px -5px #888888}
.borderRadiusTp .border, .borderRadius .border{-moz-border-radius:0 0 5px 5px ; border-radius:0 0 5px 5px;}
.borderRadiusBtm .border{-moz-border-radius:5px 5px 0 0; border-radius:5px 5px 0 0;}
img.fnone{float:none !important}
.ddcommon .divider{width:0; height:100%; position:absolute;}
.ddcommon .ddArrow{display:inline-block; position:absolute; top:50%; right:4px;}
.ddcommon .ddArrow:hover{background-position:0 100%;}
.ddcommon .ddTitle{padding:0; position:relative; display:inline-block; width:100%}
.ddcommon .ddTitle .ddTitleText{display:block;}
.ddcommon .ddTitle .ddTitleText .ddTitleText{padding:0;}
.ddcommon .ddTitle .description{display:block;}
.ddcommon .ddTitle .ddTitleText img{position:relative; vertical-align:middle; float:left}
.ddcommon .ddChild{position:absolute;display:none;width:100%;overflow-y:auto; overflow-x:hidden; zoom:1; z-index:9999}
.ddcommon .ddChild li{clear:both;}
.ddcommon .ddChild li .description{display:block;}
.ddcommon .ddChild li img{border:0 none; position:relative;vertical-align:middle;float:left}
.ddcommon .ddChild li.optgroup{padding:0;}
.ddcommon .ddChild li.optgroup .optgroupTitle{padding:0 5px; font-weight:bold; font-style:italic}
.ddcommon .ddChild li.optgroup ul li{padding:5px 5px 5px 15px}
.ddcommon .noBorderTop{border-top:none 0  !important; padding:0; margin:0;}

/*************** default theme **********************/
.dd{border:1px solid #c3c3c3; /* width:100% !important; */ }
.dd .divider{border-left:1px solid #c3c3c3; border-right:1px solid #fff;; right:24px;}
.dd .ddArrow{width:16px;height:16px; margin-top:-8px; background:url(../images/dd_arrow.gif) no-repeat;}
.dd .ddArrow:hover{background-position:0 100%;}
.dd .ddTitle{ /* color:#000;background:#e2e2e4 url(../images/title-bg.gif) repeat-x left top; */}
.dd .ddTitle .ddTitleText{padding:5px 20px 5px 5px; min-height: 16px; }
.dd .ddTitle .ddTitleText .ddTitleText{padding:0;}
.dd .ddTitle .description{font-size:12px; color:#666}
.dd .ddTitle .ddTitleText img{padding-right:5px;}
.dd .ddChild{border:1px solid #c3c3c3; background-color:#fff; left:-1px;}
.dd .ddChild li{padding:5px; background-color:#fff; border-bottom:1px solid #c3c3c3;}
.dd .ddChild li .description{color:#666;}
.dd .ddChild li .ddlabel{color:#333;}
.dd .ddChild li.hover{background-color:#f2f2f2}
.dd .ddChild li img{padding:0 6px 0 0;}
.dd .ddChild li.optgroup{padding:0;}
.dd .ddChild li.optgroup .optgroupTitle{padding:0 5px; font-weight:bold; font-style:italic}
.dd .ddChild li.optgroup ul li{padding:5px 5px 5px 15px}
.dd .ddChild li.selected{background-color:#d5d5d5; color:#000;}

/* ======================================== Fine classi RULE DESIGNER ========================================*/
