



/* START Documentation
	Layout Items Style Sheet
	
	Dynamically served by iolfwgetstyle.csp
	
	The highlighting custom colors will be expressed as:
	
	#f26522 	#FF872A
	#ffa137		#FFA137
	#D3690E		#D3690E
	
	#a2d01c 	#FF872A
	#799c13	#FFA137
	#5c7a06	#D3690E
	
/// <br> 29/05/2014 - VMGS - ALL - Added User Info css
/// <br> 18/08/2014 - VMGS - ALL - Removing include of fonts.css to add it in main.csp
/// <br> 25/08/2014 - VMGS - ALL - BT Items - white-space: nowrap;
/// <br> 30/09/2014 - VMGS - ALL - Layout Type SBT Status Button added
/// <br> 08/10/2014 - VMGS - ALL - Layout Type CO added outline 0 to avoid outline when clicking
/// <br> 20/10/2014 - VMGS - ALL - Layout Type LT removed nowrap by default
/// <br> 26/10/2014 - VMGS - ALL - ui-widget font forced to be as body
/// <br> 26/10/2014 - VMGS - ALL - ListItem-LT headers made non bold
/// <br> 29/10/2014 - VMGS - ALL - Adding ui-widget internal input items style to override jquery UI styles
/// <br> 04/11/2014 - VMGS - ALL - FixBug: When the content of a TextEditor was higher than the LayoutItem, it expanded. Adding scrolls for LayoutItem-TE jqte 
/// <br> 06/11/2014 - VMGS - ALL - Changing margin of LayoutItem-LT table caption to allow showing of powered by logo
/// <br> 06/11/2014 - VMGS - ALL - Implementing Secondary Colors
/// <br> 06/11/2014 - VMGS - ALL - Customizing DateTimePicker colors
/// <br> 13/11/2014 - VMGS - ALL - Implementing LayoutItem-TS 
/// <br> 14/11/2014 - VMGS - ALL - Implementing LayoutItem-PNL-NonDraggable
	
 END Documentation*/

.ui-widget {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
}

/* USER INFO DIV */
#UserInfoDiv {
	position: absolute;
	top: 0px; left: 0px;
	width: 100%;
	z-index: 2;
}
#UserInfoDiv #UserInfoDivInfo {
	float: right;
	color: #666;
	 /* font-family: 'Open Sans', sans-serif; */
	font-size: .7em;
	padding-right: 10px;
}
#UserInfoDiv #UserInfoDivInfo span.title {
	color: #f26522;
	font-weight: bold;
	padding-left: 5px;
	padding-left: 3px;
}

/* NAVIGATION BAR */

.NavigationBar {
	padding: 7px;
	margin: 5px;
	font-size: 0.7 em;	
	color: #ccc;
}
.NavigationBar span.step {
	cursor: pointer;
	color: #666;
	background-color:#ddd;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #666;
	padding: 5px;
	padding-left: 10px; padding-right: 10px;
	display: inline-block;
	margin-top: 5px;
}
.NavigationBar span.active {
	color: #fff;
	font-weight: 600;
	background-color:#ffa137;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #D3690E;
	padding: 5px;
	padding-left: 10px; padding-right: 10px;
}

.NavigationBar .arrow {
	margin-left: 7px;
	margin-right: 7px;
}
 

/* Button Styles */

.LayoutItem-BT button {
	/* font-family: 'Open Sans', sans-serif; */
	font-weight: 600;
	font-size: 0.8em;
	/* text-transform: uppercase; */
	padding: .9em 1em 1em .9em;
	
	/* behavior: url(border-radius.htc); */
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    outline:none;
    white-space: nowrap;

    color: #666;
	border: 1px solid #d9d9d9;
	background-color: #f1f1f1;	
}
.LayoutItem-BT button:active {
	position:relative;
	top:1px;
	background-color: #f1f1f1;	
}
.LayoutItem-BT button.highlight {
	color: #fff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffa137), color-stop(1, #f26522) );
	background:-moz-linear-gradient( center top, #ffa137 5%, #f26522 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa137', endColorstr='#f26522');
	border: 1px solid #D3690E;
	background-color: #f26522;
}


/* Text Box Styles */

.LayoutItem-TE input , .LayoutItem-TE textarea , .LayoutItem-TE select ,
.LayoutItem-DT input , .LayoutItem-DT textarea , .LayoutItem-DT select ,
.LayoutItem-TM input , .LayoutItem-TM textarea , .LayoutItem-TM select ,
.LayoutItem-PS input , .LayoutItem-PS textarea , .LayoutItem-PS select ,
.LayoutItem-NU input , .LayoutItem-NU textarea , .LayoutItem-NU select ,
.LayoutItem-TS input , .LayoutItem-TS textarea , .LayoutItem-TS select ,
.LayoutItem-FILE input[type='text']
{
	/* font-family: 'Open Sans', sans-serif; */
	font-weight: 400;
	font-size: 1em;
	color: #333;
	border: 1px solid #ddd;
	background-color: #fff;
	
	/* behavior: url(border-radius.htc); */
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    padding: 5px;
}
.LayoutItem-TE .DataRequired  , .LayoutItem-DT .DataRequired , .LayoutItem-TM .DataRequired  , .LayoutItem-TS .DataRequired  , 
.LayoutItem-PS .DataRequired  , .LayoutItem-NU .DataRequired , .LayoutItem-FILE .DataRequired  
{
	background-color:#FFFFDD;
}
.LayoutItem-TE .RequiredMissing  , .LayoutItem-DT .RequiredMissing  , .LayoutItem-TM .RequiredMissing  , .LayoutItem-TS .RequiredMissing  , 
.LayoutItem-PS .RequiredMissing  , .LayoutItem-NU .RequiredMissing  , .LayoutItem-FILE .RequiredMissing
{
	border: 1px solid #f00;
}
.LayoutItem-LU input , .LayoutItem-LU textarea , .LayoutItem-LU select 
{
	/* font-family: 'Open Sans', sans-serif; */
	font-weight: 400;
	font-size: 1em;
	color: #333;
	border: 1px solid #ddd;
	
	/* behavior: url(border-radius.htc); */
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    padding: 5px;
}

.LayoutItem-FILE {
	display: flex;
	cursor: pointer;
}
.LayoutItem-FILE .ui-progressbar-value {
	border: 1px solid #D3690E;
	background: #f26522 ;
}
.LayoutItem-FILE .pbar {
	position: absolute;
	left: 1px; top: 1px; width: 100%; height: 20px;
	z-index:15000;
}
.LayoutItem-FILE input[type='file']::-webkit-file-upload-button {
  visibility: hidden;
  outline:none;
}
.LayoutItem-FILE input[type='file']::before {
  content: attr(title) ;
  display: inline-block;
 
    /* font-family: 'Open Sans', sans-serif; */
	font-weight: 600;
	font-size: 0.8em;
	padding: .9em 1em 1em .9em;
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    outline:none;
    color: #666;
	border: 1px solid #d9d9d9;
	background-color: #f1f1f1;
  
  /* white-space: nowrap;*/
  -webkit-user-select: none;
}
.LayoutItem-FILE input[type='file']:hover::before {
  border-color: black;
  outline:none;
}
.LayoutItem-FILE input[type='file']::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
  outline:none;
}

#ui-datepicker-div { z-index: 15000 !important; }

.LayoutItem-TE .jqte {
	overflow-y: scroll;
}
.LayoutItem-TE .jqte .jqte_editor {
	overflow-y: hidden;
}
/* LayoutItem DT Dates */

.xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover {
	color: #fff !important;
	background: #a2d01c !important;
	box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current {
	background: #f26522;
	box-shadow: #178FE5 0px 1px 3px 0px inset;
	color: #fff;
	font-weight: 700;
}

/* CheckBox Booleans */

.LayoutItem-CH select 
{
	/* font-family: 'Open Sans', sans-serif; */
	border: 1px solid #ddd;
	/* behavior: url(border-radius.htc); */
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    padding: 5px;
}

/* HEADER */

.LayoutItem-HD 
{
	/* font-family: 'Open Sans', sans-serif; */
	font-weight: 700;
	font-size: 1.2em;
	color: #494949;
}

/* LABEL */

.LayoutItem-LB 
{
	/* font-family: 'Open Sans', sans-serif;*/
	/* font-weight: 700; */
	font-size: 1em;
	/* text-transform: uppercase; */
	color: #000;
	padding: 5px;
	/* color: #292929; */
}

/* LIST */

.LayoutItem-LT table tr td {
	margin:0;
	border: 0;
	border-top: 1px solid #DDDDDD;	
	border-right: 1px solid #FFF;
	padding: 5px;
	vertical-align:top;
	/* white-space: nowrap; */
} 
.LayoutItem-LT table tr th {
	margin:0;
	border: 0;	
	border-right: 1px solid #FFF;
	padding: 15px;
	/* font-weight: 600; */
	background-color: #666;
	color: #fff;
	vertical-align:top;
	/* white-space: nowrap; */
}
.LayoutItem-LT table tr th span {
	font-size: 1em;
	cursor: pointer;
}
.LayoutItem-LT table tr th span.first:hover ,
.LayoutItem-LT table tr th span.normal:hover  {
	color: #f26522;
}
.LayoutItem-LT table tr th span.first {
	/* padding-left: 10px; */
}
.LayoutItem-LT table tr th span.active {
	color: #f26522;
}
.LayoutItem-LT table tr th span.normal {
	color: #fff;
}
.LayoutItem-LT table tr td.tdPage {
	border: 0;
	padding: 10px;
}
.LayoutItem-LT table tr td.tdPage span.page {
	margin-left: 5px; margin-right: 5px;
	padding: 3px;
	border:1px solid #ccc;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	background-color: #eee;
	cursor: pointer;
}
.LayoutItem-LT table tr td.tdPage span.page:hover {
	background-color: #ccc;
}
.LayoutItem-LT table tr td.tdPage span.active {
	border:1px solid #D3690E;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	background-color: #f26522;
	cursor: pointer;
}

.LayoutItem-LT table {
	border-spacing: 0;
	/* font-family: 'Open Sans', sans-serif; */
	font-weight: 400;
	font-size: 1em;
	border: 1px solid #DDDDDD;
}
.LayoutItem-LT .roweven { background-color:#FFFFFF; cursor: pointer; }
.LayoutItem-LT .rowodd  { background-color:#FBFBFB; cursor: pointer; }
.LayoutItem-LT .rowhigh { background-color:#b9dfff; cursor: pointer; }

.LayoutItem-LT .LTStatusBox {
	background-color:#FA8537;
	-moz-border-radius: 3px; -webkit-border-radius: 3px;border-radius: 3px;
	display:none;
}
.LayoutItem-LT table caption {
	margin-bottom: 75px;
}

/* BOX */

.LayoutItem-BOX 
{
	background-color: #eee;
	min-height: 32px;
	min-width: 32px;
	
	/* behavior: url(border-radius.htc); */
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

/* PANEL */

.LayoutItem-PNL .ui-resizable-handle {
	padding-bottom: 3px;
	padding-top: 3px;
	/* PMM :) background-color: #f26522; */
	background-color: #d9d9d9;
	background-repeat: no-repeat;
	background-position: center 25%;
	background-image: url('data:image/png;base64,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');
}
.LayoutItem-PNL .ui-resizable-s { cursor:s-resize;height:7px;width:100%;bottom:-12px;left:0}
.LayoutItem-PNL .ui-resizable-s-nodrag { cursor:s-resize;height:0;padding:0;width:100%;bottom:-12px;left:0}


/* TABS */

.LayoutItem-TABS .LayoutItem-TAB {
	padding: 0;
}

/* BANNER */

.banner {
	font-size:1.2em;
	baackground-color: #eee;
	font-weight: 600;
	padding: 10px;
	/*font-weight:bold;*/
	border:1px solid #bbbbbb;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
}

/* Layout Type SBT Status Button */

.LayoutItem-SBT .onoffswitch {
    position: relative; width: 42px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.LayoutItem-SBT .onoffswitch-checkbox {
    display: none;
}
.LayoutItem-SBT .onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 1px solid #999999; border-radius: 6px;
}
.LayoutItem-SBT .onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
}
.LayoutItem-SBT .onoffswitch-inner:before, .LayoutItem-SBT .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 16px; padding: 0; line-height: 16px;
    font-size: 8px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
.LayoutItem-SBT .onoffswitch-inner:before {
    content: "ON";
    padding-left: 5px;
    background-color: #0086CB; color: #FFFFFF;
}
.LayoutItem-SBT .onoffswitch-inner:after {
    content: "OFF";
    padding-right: 5px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.LayoutItem-SBT .onoffswitch-switch {
    display: block; width: 8px; margin: 4px;
    background: #FFFFFF;
    border: 1px solid #999999; border-radius: 6px;
    position: absolute; top: 0; bottom: 0; right: 22px;
    -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}

/* Layout Item Component */

.LayoutItem-CO {
	outline: 0;
}

