﻿/*----------- iOS scroll jump fix ----------*/
@supports (-webkit-overflow-scrolling: touch) {
	/* CSS specific to iOS devices */
	html, body {
		height: 100%;
		overflow: auto;
		/*-webkit-overflow-scrolling: touch;
			commented out ios momentum scrolling because it lead to reports not being handled correctly
			double iframe
			ScreenId=GL632000
		*/
	}
}

/*--------------- Tag styles ---------------*/
html
{
	border: 0px;
}

body
{
	background-color: #FFFFFF; 
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: 0px;
	-webkit-tap-highlight-color: transparent;
	/*-ms-touch-action: none;*/
}
.GridMain, .GridMainT, .GridMainS 
{
	-ms-touch-action: pinch-zoom;
}
label, span.checkBox, .tree, .NewsListTable, .GridMain, .GridMainT, .GridMainS
{
	-moz-user-select: -moz-none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: -none;
	user-select: none;
}

input[type="checkbox"]
{
	margin-bottom: 0px;
	margin-left: 0px;
}
	form.rtl input[type="checkbox"]
	{
		margin-right: 0px;
		margin-left: 5px;
	}
.Button, .toolsBtn, .sprite-icon
{
	-webkit-tap-highlight-color: #AFBCCD;
}

div.wiki, .allowSelect
{
	-moz-user-select: text;
	-o-user-select: text;
	-khtml-user-select: text;
	-webkit-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

form
{
	padding: 0px;
	margin: 0px;
}

textarea
{
	box-shadow: none !important;
	outline: none;
}
select, input[type="text"], a.editor, div
{
 outline: none;
}

label, input, legend, select, textarea, *.label, *.labelH, *.labelB, *.labelTitle, *.dropDown, div.ddTable, div.informer,
*.selector, *.editor, div.req-l, div.caption, *.screenID, *.menuIsland, *.toolsList, .FormCaption, .FormContent,
.GridRow, GridHeader, .GridCaption, .GridEditorText, .GridRowForm, .GridCellButton, .GridPagerCell, .ddSearch,
.GridSearchText, .Button, .ButtonT, .ButtonF, .SmartPanel, .SmartPanelC, .SmartPanelF, .SearchBoxE, .SearchBoxB,
.moduleLink, .screenTitle, .linkTitle, .wikiEdit textarea, .ButtonE, .SearchBox input, .calendar, .selDropItem,
.toolLabel, .toolsBtn, .tree, .CalendarTimeColumnRow, .CalendarCurrentTime, .tabNormal, .tabContent, .selDropLink,
.WizardCaption, .WizardContent, .NavPanelBar, .NavPanelBarA, .NavPanelCaption, .StatusText, .LoginCaption,
.LoginLabel, .LoginLink, .DashCaption, .DashContent, .DashEnquiryButton, .DashCell, .DashHeaderCell, .DashButton,
.DashCalendarButton, .ScheduleContentBackground, .ScheduleContentBackgroundPersist, .ScheduleContentBackgroundOutOfWork,
.ScheduleContentBackgroundPersistOutOfWork, .NewsListRowsMain, .NewsToolBarButtonNormal, .NewsToolBarButtonHover,
.NewsToolBarButtonPushed, .TasksAndEventsLabel, .TasksAndEventsLabelHover, .ComparerContent, span.PopupImgCaption,
.ValidationBanner, .ValidationTable, .LicenseBanner, .login_link, .login_error, .extlogin_caption, #tooltip, 
.progressStrip, .dash-wrapper, .pivotTable
{
	font-size: 10pt;
	font-family:  Arial,sans-serif;
}

label 
{
	color: RGBA(0,0,0,0.64);
}



td.fill
{
	width: 100%;
	vertical-align: top;
}
div.outerFill
{
	position: relative;
}
div.innerFill
{
	overflow: hidden;
	position: absolute; 
	width: 100%
}
div.contentHolder
{
	overflow: auto;
	position: absolute; 
	height: 100%;
	width: 100%;
}

table.canOverflow
{
	width: 100%;
	table-layout: fixed;
}
table.canOverflow td
{
	overflow: hidden;
}
.inline-block
{
	display: inline-block;
}

#page-caption.fixed
{
	position: fixed;
	background-color: white;
	width: 100%;
	z-index: 9999;
}

#page-caption.fixed > div:last-child
{
	border-bottom: 1px solid #D2D4D7;
	margin-right: 5px;
}

/*------------------ Tooltip Css classes ------------------ */

#tooltip
{
	font-size: 10pt;
	border-radius: 5px;
	background: #007acc;
	border: 1px solid #007acc;
	color: RGBA(255,255,255,0.87);
	font-weight: 700;
	margin: 0px;
	padding: 5px;
	min-width: 80px;
	word-wrap: break-word;
}
#tooltip a
{
	color: RGBA(0,0,0,0.87);
	font-size: 8pt;
	float: right;
}

#tooltip .arrow 
{
	width: 50px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -35px;
	bottom: -16px;
}
#tooltip .arrow.top 
{
	top: -16px;
	bottom: auto;
}
#tooltip .arrow.left 
{
	left: 20%;
}

#tooltip .arrow:after 
{
	background: #007acc;
	border: 1px solid #007acc;
	content: "";
	position: absolute;
	left: 20px;
	top: -20px;
	width: 25px;
	height: 25px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	tranform: rotate(45deg);
}
#tooltip .arrow.top:after 
{
	bottom: -20px;
	top: auto;
}

#tooltip.error, #tooltip.error .arrow:after
{
	background-color: #e51c23;
	border-color: #e51c23;
}
#tooltip.warn, #tooltip.warn .arrow:after
{
	background-color: #ffeb3b;
	border-color: Brown;
	color: RGBA(0,0,0,0.87);
}

/*------------------ Progress bar Css classes ------------------ */

.progress
{
	position: absolute;
	width: 100%;
	left: 0px; top: 0px;
	opacity: 0.6;
	background-color: #E6E6E6;
	vertical-align: middle;
	text-align: center;
	z-index: 20000;
}

.progressStrip
{
	position: absolute;
	width: 300px; height: 24px;
	margin-left: -120px;
	left: 50%; top: 40%;
	z-index: 40000;
}

.progressStrip .border
{
	border: 2px solid #D2D4D7;
	border-radius: 5px;
	background-color: white;
	position: absolute;
	width: 100%; height: 100%;
}

.progressStrip .bar
{
	background-color: #50CA5E;
	position: relative;
	top: 2px; left: 2px;
	height: 24px; width: 0px;
	padding-left: 3px;
	padding-top: 4px;
	white-space: nowrap;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/*------------------ Login Css classes ------------------ */
div#login_bg 
{
	height: 100%; width: 100%;
	left: 0px; top: 0px;
	overflow: hidden;
	position: fixed; 
	z-index: 0;
	transition: opacity 1s ease 0s;
	background: none repeat scroll 0 0 white;
}
img#login_bg_image
{
	height: 100%; width: 100%;
	position: fixed;
}
.login_img
{
	width: 250px;
	border-width: 0px;
}

div#login_panel 
{
	background: none repeat scroll 0 0 #FFFFFF;
	position: absolute;
	right: 0px;
	z-index: 1;
	width: 500px;
	height: 100%;
	min-height: 700px;
	padding: 20px 40px;
	overflow-x: hidden;
	overflow-y: auto;
}

div#login_panel.mobile
{
	width: 100%; 
	left: 0px; right: auto;
	padding: 10px;
}
div#login_panel.mobile div#login_logo
{
	padding-bottom: 10px;
}
div#login_panel.mobile div#login_data
{
	min-height: 450px;
}

div#login_data
{
	height: 100%;
	min-height: 600px;
	overflow: hidden;
}
div#login_copyright
{
	position: absolute;
	bottom: 0px;
	padding-bottom: 20px;
	padding-right: 40px;
}

div#login_logo
{
	overflow: hidden;
	padding-bottom: 100px;
}
div#login_user
{
	overflow: hidden;
}

.login_lang, .login_user, .login_pass, .login_company, .login_button, .logincancel_button, .extlogin_button 
{
	font-family: Arial,sans-serif, Tahoma, Verdana;
	color: RGBA(0,0,0,0.64);
	font-size: 14pt;
	font-weight: 500;
}

.login_lang
{
	font-size: 10pt;
	float: right;
	width: 120px;
	margin-top: 7px;
	padding: 4px;
	border-radius: 3px;
	border: solid 1px RGBA(0,0,0,0.12);
}

.login_user, .login_pass
{
	width: 100%;
	margin-bottom: 10px;
	padding: 6px 8px;
	border: solid 1px RGBA(0,0,0,0.12);
	border-radius: 3px;
}
.login_pass.dummy
{
	background-color: RGBA(0,0,0,0.12);
}

.login_company
{
	width: 100%;
	font-size: 12pt;
	margin-bottom: 10px;
	padding: 8px 8px;
	border-radius: 3px;
	border: solid 1px RGBA(0,0,0,0.12);
}

.login_button
{
	float: right;
	color: white;
	padding: 5px;
	width: 120px;
	background-color: #43abf7;
	border: solid 1px #43abf7;
	border-radius: 5px;
}
.login_button:hover
{
	background-color: #3399cc;
}
.login_button:disabled
{
    background-color: #D3D3D2;
    border: solid 1px #D3D3D2;
}
.logincancel_button
{
	float: right;
	color: white;
	padding: 5px;
	width: 120px;
	margin-right:10px;
	background-color: #43abf7;
	border: solid 1px #43abf7;
	border-radius: 5px;
}
.logincancel_button:hover
{
	background-color: #3399cc;
}

.extlogin_caption
{
	padding: 5px 0px;
	font-size: 10pt;
}

.extlogin_button
{
	float: left;
	color: white;
	width: 50px;
	background-color: #43abf7;
	border: solid 1px #43abf7;
	border-radius: 5px;
	margin-right: 10px;
}
.extlogin_button:hover
{
	background-color: #3399cc;
}

#custErrorDetails
{
	overflow-x: auto;
}
#login_info
{
	padding: 10px 0px;
}

#login_errBox
{
	display: table-cell;
	height: 70px;
	vertical-align: middle;
}
.login_error
{
	display: inline-block;
	font-size: 10pt;
	font-weight: 600;
	color: red;
	margin-bottom: 10px;
}
#login_links
{
	padding: 5px 0px;
}
.login_link
{
	font-size: 10pt;
	margin-right: 10px;
}

/*------------------ Frameset Css classes ------------------ */
.logo
{
	float: left;
	display: inline-block;
	padding-right: 5px;
}
.logo:hover
{
}
.logoImg
{
	height: 37px;
	width: 150px;
	border-width: 0px;
	margin-left:10px;
}
.loginTitleBg
{
	background: url(Images/loginBg.gif);
	text-align: center;
}
img[id$="imgLogo"]
{
	float: left;
}

.projectLink
{
	position: relative;
	display: block;
	border-bottom: 1px solid #BBBBBB;
	padding: 9px 5px 11px 10px;
	font-size: 14pt;
	color: RGBA(0,0,0,0.87);
	background-color: #e0e4e8;
}
	.projectLink.transparent
	{
		background-color: transparent;
		border-bottom: none;
	}
.moduleLink
{
	display: inline-block;
	margin: 10px 5px 5px 10px;
	color: RGBA(0,0,0,0.87);
	text-decoration: none;
	font-size: 14pt;
}
	form.rtl .moduleLink
	{
		margin: 9px 10px 5px 5px;
	}
	.moduleLink:hover
	{
		text-decoration: underline;
	}

.leftFrame
{
	vertical-align: top;
	padding: 0px;
	background-color: #F5F7F8;
	border-right: 1px solid #D2D4D7;
}
.rightFrame
{
	vertical-align: top;
	padding: 0px;
}

.menuHidden .screenFrame
{
	border-left: 1px solid #D2D4D7;
	padding-left: 4px;
}
.menuTree > ul, .menuTree > div > ul
{
	padding-top: 8px !important;
}

.searchFrame
{
	padding: 10px 10px 15px 10px;
}


.menuFrameI
{
	background-color: White;
	overflow: hidden;
	position: relative;
}
.menuPanel
{
	overflow: auto;
	position: relative;
}
.menuTree
{
	border-width: 0px !important;
	height: 100%;
	width: 100%;
	overflow: auto;
	position: absolute !important;
}
.menuTreeHlp
{
	height: 100%;
	width: 100%;
	position: absolute;
	overflow: hidden;
}

.hideFrameBox
{
	position: absolute;
	top: 4px;
	left: -25px;
	padding: 10px 0px 0px 2px;
	z-index: 5000;
	background-color: #FFFFFF;		
	border: 1px solid #D2D4D7;
	border-right-width: 0px;
	width: 18px;
	height: 22px;
}
	.hideFrameBox:hover
	{
		background-color: #D2D4D7;
		cursor:pointer;
	}
	.menuHidden .hideFrameBox
	{
		left: -20px;
	}
	form.rtl .hideFrameBox
	{
		left: auto;	right: -20px;
		padding: 10px 2px 0px 0px;
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		tranform: rotate(180deg);
	}

.toolLabel.activeProject, .toolLabel.publishedProject
{
	font-weight: 700;
	font-size: 10pt;
}
.toolLabel.activeProject
{
	padding-right: 50px;
}
.toolLabel.publishedProject
{
	padding-right: 10px;
}
.custProjectTitle
{
	display: table-cell;
	height: 40px;
	vertical-align: middle;
	padding-left: 5px;
}
.custProjectTopBtn
{
	position: absolute;
	top: 5px; right: 0px;
	min-width: 40px !important;
	height: 30px !important;
}

/*--------------- Page Title Css classes ---------------*/
.pageTitle
{
	padding: 3px 4px 0px 6px;
	overflow: hidden;
}

.screenTitle
{
	font-size: 10pt; 
	font-weight: bold;
}
.screenID { }
.labelTitle { }

.siteMap
{
	white-space: nowrap;
	float: left
}
.favoriteButton
{
	width: 24px;
	height: 24px;
	opacity: 0.6; 
}
.noteButtonSel
{
}

.linkTitle
{
	font-size: 14pt;
	text-decoration: none;
	color: RGBA(0,0,0,0.87);
	cursor: pointer;
	padding-left: 2px;
	padding-right: 4px;
	display: inline-block;
	margin-top: 1px;
}
a.linkTitle:hover
{
	text-decoration: underline;
}

.labelVersion
{
	font-weight: bold;
	display: inline-block;
	width: 400px;
	text-overflow: ellipsis;
}

.toolBarPath .dropDown, .toolBarPath .dropDown.focus
{
	border-width: 0;
	box-shadow: none;
	font-size: 14pt;
	height: 26px;
	margin: 1px;
}
	.toolBarPath .dropDown:hover
	{
		background-color: #007acc;
		color: #FFFFFF;
	}
	.toolBarPath .dropDown:hover .buttonsCont
	{
		background-color: #007acc;
	}
	.toolBarPath .dropDown.Disabled
	{
		color: black;
	}

.toolBarPath
{
	color: RGBA(0,0,0,0.87);
}
	.toolBarPath .toolLabel
	{
		font-size: 14pt;
		font-weight: normal;
		padding: 5px 2px;
	}

div.ddTable[controlID$="cmdBranch"] .ddItem
{
	padding: 5px 20px;
	font-size: 11pt;
}

.panelTBL
{
	float: left;
}
.panelTBR
{
	float: right;
}

.panelTBRSP
{
	float: right;
	color: White;
}
.panelTBR .toolsBtn
{
	font-size: 9pt;
}

#panelT div[data-cmd="time"]
{
	color: #4E576A;
	font-weight: 700;
}

.phDS, .phL, .phF, .phG 
{ 
	margin: 0px 4px 0px 0px;  
}
form[PopupPanel] .phDS, form[PopupPanel] .phL, form[PopupPanel] .phF, form[PopupPanel] .phG
{
	margin: 0px 5px;
}
.phG .tabView, .splitContainer .tabView 
{ 
	background-color: #F5F7F8; 
}

.phF > .FormView, .phF + .phG > .tabView .tabCaption, 
.phF + .phG > .GridMain .GridToolsCell, .phF + .phG > .GridMain .GridCaption, 
.phF > .splitContainer, .phL > .splitContainer, .phG > .splitContainer
{
	border-left: 1px solid #D2D4D7;
	border-right: 1px solid #D2D4D7;
}

.phF > .splitContainer > tbody > tr > td.splitterLC, 
.phF > .splitContainer > tbody > tr > td.splitterRC, 
.phL > .splitContainer > tbody > tr > td.splitterLC, 
.phL > .splitContainer > tbody > tr > td.splitterRC,
.phG > .splitContainer > tbody > tr > td.splitterLC, 
.phG > .splitContainer > tbody > tr > td.splitterRC,
.phL > .splitContainer > tbody > tr > td.splitterTC, 
.phG > .splitContainer > tbody > tr > td.splitterTC
{
	border-top: 1px solid #D2D4D7;
}

.splitContainer.transparent .splitterLC, .splitContainer.transparent .splitterRC
{
	border-top-width: 0px !important;
}
.splitContainer .tabContent
{
	border-width: 0px;
}
.splitContainer.transparent .tabContent
{
	border-width: 1px;
}

/*--------------- Styles for render linked labels ---------------*/
div.fld-lc, span.fld-lc
{
}
.fld-l
{
	float: left;
	width: 120px;
}
	form.rtl .fld-l
	{
		float: right;
	}
.fld-c
{
	margin-left: 120px;
}
	form.rtl .fld-c
	{
		margin-left: 0px;
		margin-right: 120px;
	}

div.fld-lc .fld-l > label, div.stack-v input[type="checkbox"] + label, .ellipsisLabel
{
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
}
div.stack-v input[type="checkbox"] + label
{
	width: 95%;
}
div.fld-lc .fld-l > label, .cell-w > span.labelH
{
	margin-top: 4px;
}
div.cell-w > span.labelH
{
	height: 20px;
}

.fld-lxxs { width: 40px; }
.fld-cxxs {	margin-left: 40px; }
form.rtl .fld-cxxs {	 margin-left: 0px; margin-right: 40px; }

.fld-lxs { width: 70px; }
.fld-cxs { margin-left: 70px; }
form.rtl .fld-cxs {	 margin-left: 0px; margin-right: 70px; }

.fld-ls { width: 100px; }
.fld-cs { margin-left: 100px; }
form.rtl .fld-cs {	 margin-left: 0px; margin-right: 100px; }

.fld-lsm { width: 150px; }
.fld-csm { margin-left: 150px; }
form.rtl .fld-csm {	 margin-left: 0px; margin-right: 150px; }

.fld-lm { width: 200px; }
.fld-cm { margin-left: 200px; }
form.rtl .fld-cm {	 margin-left: 0px; margin-right: 200px; }

.fld-lxm { width: 250px; }
.fld-cxm { margin-left: 250px; }
form.rtl .fld-cxm {	 margin-left: 0px; margin-right: 250px; }

.fld-ll { width: 300px; }
.fld-cl { margin-left: 300px; }
form.rtl .fld-cl {	 margin-left: 0px; margin-right: 300px; }

.fld-lxl { width: 350px; }
.fld-cxl { margin-left: 350px; }
form.rtl .fld-cxl {	 margin-left: 0px; margin-right: 350px; }

.fld-lxxl { width: 400px; }
.fld-cxxl { margin-left: 400px; }
form.rtl .fld-cxxl {	 margin-left: 0px; margin-right: 400px; }

/*--------------- Styles for stack layout ---------------*/
div.col-xxs { width: 100px; }
div.col-xs { width: 150px; }
div.col-s  { width: 200px; }
div.col-m  { width: 250px; }
div.col-xm  { width: 300px; }
div.col-l  { width: 350px; }
div.col-xl  { width: 400px; }
div.col-xxl  { width: 450px; }

div.stack-phor
{
	margin: 0px 9px;
}
div.stack-pout-v
{
	margin: 9px;
}
div.stack-pout-h
{
	margin: 0px 9px 9px 9px;
}
div.stack-pout-h > *
{
	margin-top: 9px;
	padding-top: 0.1px;
}
div.stack-v > div > span, div.stack-h > div > span, div.cell-w > span,
div.stack-v > div > label, div.stack-h > div > label, div.cell-w > label,
div.stack-v .label, div.stack-h .label, div.stack-v .labelH, div.stack-h .labelH,
div.stack-v .checkBox, div.stack-h .checkBox
{
	display: block;
	height: 24px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

div.stack-v > .cell-pv, div.stack-v > .cell-pv1, 
div.stack-v > .cell-pv2
{
	/*padding-top: 0.1px;*/
}
div.stack-v > .cell-pn > *, div.stack-v > .cell-ph > *, 
div.stack-v > .cell-ph1 > *, div.stack-v > .cell-ph2 > *
{
	position: relative;
}

div.stack-v > .cell-pv > *
{
	margin-top: 3px;
}
div.stack-v > .cell-pv1 > *
{
	margin-top: 18px;
}
div.stack-v > .cell-pv2 > *
{
	margin-top: 36px;
}

div.stack-h > .cell-pn, div.stack-h > .cell-ph, div.stack-h > .cell-pha, 
div.stack-h > .cell-ph1, div.stack-h > .cell-pha1, div.stack-h > .cell-ph2, div.stack-h > .cell-pha2
{
	float: left;
}
div.stack-h.rtl > .cell-pn, div.stack-h.rtl > .cell-ph, div.stack-h.rtl > .cell-pha, 
div.stack-h.rtl > .cell-ph1, div.stack-h.rtl > .cell-pha1, 
div.stack-h.rtl > .cell-ph2, div.stack-h.rtl > .cell-pha2
{
	float: right;
}
div.stack-h > .cell-pb > *
{
	margin-bottom: 3px;
}

div.stack-h > .cell-pha > *, div.stack-h > .cell-ph
{
	margin-right: 6px;
}
div.stack-h > .cell-pha1 > *, div.stack-h > .cell-ph1
{
	margin-right: 18px;
}
div.stack-h > .cell-pha2 > *, div.stack-h > .cell-ph2
{
	margin-right: 36px;
}

div.stack-h .auto-size, div.stack-v .auto-size
{
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.border-box
{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.stack-hidden
{
	position: absolute;
	left: 0px; top: 0px;
}

/*--------------- Styles to show the control notes ---------------*/
.note-m
{
	margin-left: 10px;
}
.req-l
{
	float: left;
	padding-top: 6px;
}
	.req-l:before
	{
		content: "*";
		font-size: 11pt;
		opacity: 1;
	}
.req-lh
{
	color: #e51c23;
}

.err-l, .war-l, .inf-l
{
	float: left;
	padding-top: 8px;
	margin-left: -3px;
}
.err-l:before
{
	content: url(Images/error.gif);  
}
.war-l:before
{
	content: url(Images/warning.gif);
}
.inf-l:before
{
	content: url(Images/info.gif);
}

/*--------------- Styles for Panel and GroupBox ---------------*/
fieldset 
{                 
	padding: 0;
	border: 0;
	margin-left: 0;
	border-top: 1px solid #007acc;
}
	fieldset legend
	{
		color: #007acc;
		text-align: left;
		padding: 3px 6px 0px 0px;
		height: 24px;
		text-transform: uppercase;
	}
	form.rtl fieldset legend
	{
		padding: 3px 0px 0px 6px;
	}

.buttonPanel .stack-h
{
	margin-right: 0px;
}
.buttonPanel[style*="float:left"] .stack-h
{
	margin-left: 0px;
}
.buttonPanel div.stack-pout-h > *
{
	padding-top: 0px;
}

.groupBox
{
}
.groupBox div.tr
{
	display: table;
	border-collapse: collapse;
	font-size: 0pt;
	height: 5px;
	width: 100%;
}

.groupBox div.tr > div
{
	display: table-cell;
}
.groupBox .stub 
{ 
	font-size: 0pt;
	width: 5px; 
}

.groupBox .caption
{ 
	color: #007acc;
	padding: 0px 2px 0px 3px;
	white-space: nowrap;
	width: 5px;
}
.groupBox .content
{ 
	font-size: 8pt;
}

.groupBox div.tr > div.l-top 
{
	width: 5px;
	background-repeat: no-repeat;
	background-position: left 5px;
	background-image: url(Images/GroupBox/leftTop.gif); 
}
.groupBox div.tr > div.top 
{ 
	background-repeat: repeat-x;
	background-position: left 5px;
	background-image: url(Images/GroupBox/linePoint.gif); 
}
.groupBox div.tr > div.r-top 
{ 
	background-repeat: no-repeat;
	background-position: right 5px;
	background-image: url(Images/GroupBox/rightTop.gif);
	width: 5px;
}

.groupBox div.tr > div.left 
{ 
	background-repeat: repeat-y;
	background-position: left top;
	background-image: url(Images/GroupBox/linePoint.gif); 
	width: 5px;
}
.groupBox	div.tr > div.right 
{ 
	background-repeat: repeat-y;
	background-position: right top;
	background-image: url(Images/GroupBox/linePoint.gif); 
	width: 5px;
}

.groupBox div.tr > div.l-bottom 
{ 
	background-repeat: no-repeat;
	background-position: left bottom;
	background-image :url(Images/GroupBox/leftBottom.gif); 
	width: 5px;
}
.groupBox	div.tr > div.bottom 
{ 
	background-repeat: repeat-x;
	background-position: left bottom;
	background-image: url(Images/GroupBox/linePoint.gif);
}
.groupBox div.tr > div.r-bottom 
{ 
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(Images/GroupBox/rightBottom.gif); 
	width: 5px;
}

.groupBox .line
{
	height: 28px;
}
.groupBox .line-top
{ 
	background-repeat: repeat-x;
	background-position: left 6px;
	background-image: url(Images/GroupBox/linePoint.gif); 
	width: 100%;
}
.groupBox .line-caption
{ 
	color: #007acc;
	font-size: 8pt;
	padding-right: 3px;
	white-space: nowrap;
}

/*--------------- Styles for base controls ---------------*/
.label { }
.labelH
{
	overflow: hidden;
	color: RGBA(0,0,0,0.64);
}
.labelNoWrap 
{ 
	white-space: nowrap; 
}
.labelInfo 
{ 
	color: RGBA(0,0,0,0.64); 
	overflow: hidden; 
}
.labelB
{
    color: RGBA(0,0,0,0.87); 
}
.checkBox
{ 
	white-space: nowrap;
	padding-right: 5px;
}
[id$=pnlConfig] .panelContent .groupBox .checkBox
{
	display: inline-block;
	padding-top: 3px;
}
[id$=pnlConfig] .panelContent .groupBox  .checkBox label
{
	height: 16px;
	margin-bottom:-2px;
}
	form.rtl .checkBox
	{
		padding-right: 0px;
	}
	.checkBox label.left
	{
		float: left;
		padding-right: 2px;
		padding-top: 2px;
	}

.splitterVert
{
	border-left: 1px solid #D2D4D7; 
	border-right: 1px solid #D2D4D7;	
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.transparent .splitterVert, .transparent .splitterH, .transparent .splitterHor
{
	border-width: 0px;
	background-color: transparent;
}

.splitterH
{
	border-left: 1px solid #D2D4D7; 
	border-right: 1px solid #D2D4D7;	
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.splitterFrame
{
	background-color: #FFFFFF;
}

.splitterHF
{
	background-color: #FFFFFF;
}
.splitterA
{
	background-color: #D2D4D7;
}

.splitterHor
{
	border-top: 1px solid #D2D4D7;
	background-color: #F5F7F8;
	font-size: 0pt;
}
.splitterLC, .splitterTC, .splitterRC, .splitterBC
{
	padding: 0px;
	vertical-align: top;
}

.imageUploader
{
	display: table;
}
.imageUploader .linksDiv
{
	padding-bottom: 4px;
	text-align: left;
}
.imageUploader .textDiv
{
	padding-top: 4px;
	/*text-align: left;*/
	position: absolute;
	left: 70px;
	right: 70px;
	text-overflow: ellipsis;
	overflow: hidden;
}
.imageUploader .navLink
{
	float: right;
	margin-left: 7px;
}

.borderTop
{
	border-top: #D2D4D7 1px solid;
}
.borderBottom
{
	border-bottom: #D2D4D7 1px solid;
}
.borderLeft
{
	border-left: #D2D4D7 1px solid;
}
.borderRight
{
	border-right: #D2D4D7 1px solid;
}

.size-xxs { width: 40px; }
.size-xs { width: 70px; }
.size-s { width: 100px; }
.size-sm { width: 150px; }
.size-m { width: 200px; }
.size-xm { width: 250px; }
.size-l { width: 300px; }
.size-xl { width: 350px; }
.size-xxl { width: 400px; }

/*--------------- Styles for editor controls ---------------*/
.editor
{
	border: #D2D4D7 1px solid;
	padding: 3px 6px;
	margin-bottom: 0px;
	margin-top: 0px;
	box-sizing: border-box;
	height: 24px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a.editor
{
	display: inline-block;
	height: 24px;
}
textarea.editor.auto-size
{
	resize: none;
}

.complexEditor
{
	border: #D2D4D7 1px solid;
}
.radioButtonList
{
}
.textEditLabel, .textEditLabel.ReadOnly
{
	background-color: Transparent !important;
	border-width: 0px;	
}

.editor:focus, .dropDown.focus, .selector.focus .controlCont
{
	border: 1px solid #007acc;
	box-shadow: 0px 0px 2px 0px #007acc;
	-webkit-box-shadow: 0px 0px 2px 0px #007acc;
}
.ReadOnly.editor:focus, .ReadOnly.dropDown.focus, .ReadOnly.selector.focus .controlCont
{
	border-width: 1px;
	box-shadow: 0px 0px 0px 0px transparent;
	-webkit-box-shadow: 0px 0px 0px 0px transparent;
	border-bottom-color: #D2D4D7;
}
button:focus
{
	border: 1px solid #007acc;
}
input[type="checkbox"]:focus
{
	border: 1px solid #007acc;
	box-shadow: 0px 0px 4px 0px #007acc;
	-webkit-box-shadow: 0px 0px 4px 0px #007acc;
}

.selector
{
	height: 24px;
	background-color: transparent;
	position: relative;
}
.selector .controlCont 
{
	border: #D2D4D7 1px solid;
	height: 100%;
	position: relative;
	overflow: hidden;
	
	background-color: #FFFFFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.selector[edit] .controlCont
{
	margin-right: 0px;
}
.selector input, .selector a, .dropDown input
{
	width: 100%; height: 100% !important;
	padding: 0px 4px 0px 6px;	
	border-width: 0px !important;
	box-shadow: none !important;
}

.selector .editBtnCont
{
	position: absolute;
	top: 0px; right: -29px;
	padding-left: 5px;
}
	.selector .editBtnCont > div
	{
		border: 1px solid transparent;
		background-color: transparent;
		height: 22px;
		width: 24px;
		text-align: center;
	}
	.selector .editBtnCont > div:hover
	{
		border: 1px solid #007acc;
		background-color: #007acc;
		height: 22px;
		width: 24px;
		text-align: center;
		color: #FFFFFF;
	}

.selector.multi
{
	height: auto;
}
.selector.multi input
{
	float: left;
	height: 22px !important;
	width: 30px;
}
.selector.multi .editorWrap
{
	white-space: normal;
	overflow: hidden;
}
.selector.multi div[class*="ClearN"]:hover
{
	opacity: 1;
}

.selector.multi .selItem
{
	cursor: default;
	float: left;
	display: inline-block;
	height: 22px;
	white-space: nowrap;
	background-color: #F5F7F8;
	/*border: 1px solid #D9D9D9;*/
	margin-right: 3px;
}
.selector.multi .selItemText
{
	display: inline-block;
	float: left;
	padding: 3px 6px;
	height: 22px;
	max-width: 325px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.selDropTable 
{
	border: #D2D4D7 1px Solid;
	background-color: #FFFFFF;
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	-moz-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
}
.selDropItem
{
	padding: 6px 8px;
	vertical-align: middle;
	text-align: left;
	white-space: nowrap;
	cursor: default;
}
	.selDropItem.selected
	{
		color:white;
		background-color: #007ACC;
	}

	.selDropItem.selected .searchTextMark 
	{
 		color: #000000;
	}

.selDropLinks
{
	overflow: hidden;
	padding: 4px;
	border-top: #D2D4D7 1px Solid;
	background-color: #F5F7F8;
}
.selDropLink
{
	margin-left: 8px;
	float: right;
}
.selDropLink[enabled="false"]
{
	text-decoration: none;
	color: black;
	cursor: default;
}

input.Disabled, a.Disabled, div.Disabled, table.Disabled, .Disabled.selector .controlCont, .editor.Disabled,
input.Disabled:focus, a.Disabled:focus, div.Disabled:focus, .Disabled.selector.focus .controlCont, .editor.Disabled:focus
{
	background-color: transparent !important;
	box-shadow: none !important;
	border-color: transparent;
	border-bottom-color: #e0e4e8;
	border-bottom-style: dotted;
	border-width: 1px;
}

a.Disabled
{
	text-decoration: none;
}
.selector.Disabled, .selector.Disabled.focus
{
	border-width: 0px;
}
.ReadOnly, .ReadOnly .controlCont
{
	background-color: #F5F7F8 !important;
	border-top-color: transparent !important;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	border-width: 1px;
}
.selector.ReadOnly, .dropDown.ReadOnly
{
}
textarea.ReadOnly
{
	border-color: #D2D4D7 !important;
}

/*--------------- Styles for the drop-down controls ---------------*/
.dropDown
{
	background-color: #FFFFFF;
	height: 24px;
	position: relative;
	cursor: default;
	border: #D2D4D7 1px solid;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.dropDown .center:before, .selector .center:before
{
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.dropDown .text
{
	vertical-align: middle;
	padding: 0px 6px 0px 6px;
	display: none;
}
.dropDown input[invisible]
{
	position: absolute;
	top: -40px;
	background-color: transparent;
}
.dropDown input[invisible] + span + span.text
{
	display: inline;
}

.dropDown .editorCont, .selector .editorCont
{
	position: relative;
	overflow: hidden;
	margin-right: 18px;
	height: 100%;
}

.dropDown.ReadOnly .editorCont, .selector.ReadOnly .editorCont
{
	position: relative;
	overflow: hidden;
	height: 100%;
}
.selector.ReadOnly .editorCont
{
	margin-right: 0px;
}
.dropDown.ReadOnly .buttonsCont, .selector.ReadOnly .buttonsCont
{
	background-color: #F5F7F8;
}

.dropDown[buttons="0"] .editorCont
{
	margin-right: 0px;
}
.dropDown[buttons="2"] .editorCont
{
	margin-right: 32px;
}
.dropDown[buttons="3"] .editorCont
{
	margin-right: 48px;
}
.dropDown .editorWrap, .selector .editorWrap
{
	height: 100%;
	white-space: nowrap;
}
.dropDown .buttonsCont, .selector .buttonsCont
{
	position: absolute;
	top: 0px; right: 1px;
	height: 100%;
	background-color: white;
}

.ddTable 
{
	border: #D2D4D7 1px Solid;
	background-color: White;
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	-moz-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
}
.ddItem
{
	padding: 2px 4px;
	vertical-align: middle;
	text-align: left;
	white-space: nowrap;
	cursor: default;
}
.ddSelection
{
	background-color: #007acc;
	color: #FFFFFF;
}

.ddTable .searchCont
{
	position: relative;
	overflow: hidden;
	border: #D2D4D7 1px solid;
	margin: 2px;
	min-width: 150px;
}
.ddTable .searchWrap
{
	margin-right: 16px;
}
.ddTable .searchWrap input
{
	border-width: 0px;
	margin: 0px;
	padding: 2px;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.ddTable .searchIcon
{
	position: absolute;
	top: 0px; right: 0px;
}

/*--------------- CurrencyRate & WikiEdit control styles ---------------*/
.rateEditor
{
	position: relative;
	overflow: hidden;
	outline: none;
}
.rateEditor .selector
{
	width: 100%;
}

.rateEditor .selWrap
{
 margin-right: 185px;
}
.rateEditor .btnWrap
{
	position: absolute;
	right: 0px; top: 0px;
}
.rateEditor .btnWrap .Button
{
	position: relative;
	float: left;
	margin-left: 4px;
	padding: 1px 2px 3px 2px;
	text-transform: uppercase;
	background-color: transparent;
	border: 1px solid #D2D4D7;
}
.rateEditor .btnWrap .Button[id$="curyB"]
{
	width: 85px;
}
.rateEditor .btnWrap .Button[id$="rateB"]
{
	text-align: left;
	width: 92px;
}
.rateEditor .btnWrap .Button[id$="rateB"] div[id$="im"]
{
	position: absolute;
	right: 0px; top: 2px;
}

.wikiEdit
{
	outline-style: none;
}
.wikiEditC
{
	border: 1px solid RGBA(0,0,0,0.12);
	border-top-width: 0px;
}
.wikiEdit textarea
{
	border-width: 0;
	margin: 0;
	padding: 0;
}

/*--------------- PXButtonEdit control styles ---------------*/
.ButtonE
{ 
	border-left: #007acc 1px solid;
	font-size: 8pt;
	background-image: url(Images/tb_gradient.gif);
	background-repeat: repeat-x;
	background-position:left bottom;
	background-color: #9997B5;
	padding: 2px;
	cursor: default;
}

.ButtonEH
{ 
	background-color: #B5D7EF;
	background-image: none; 
}

.ButtonEP
{ 
	background-color:LightSalmon;
	background-image: none; 
}

.ButtonED
{ 
	color: RGBA(0,0,0,0.26);
}

/*--------------- PXSearchBox control styles ------------*/
.SearchBox
{
  border: #D2D4D7 solid 1px;
}

.SearchBox table
{
  height: 24px; 
}
.SearchBox input
{
	border-style: none;
	border-width: 0;
	color: RGBA(0,0,0,0.26);
	width: 100%;
}

.SearchBoxE, .SearchBoxE2
{
	padding-left: 6px;
	overflow: hidden;
	background-color: #FFFFFF;
}
.SearchBoxE input
{
	font-style: italic;
	font-weight:700;
}
.SearchBoxE2 input
{
	color: RGBA(0,0,0,0.87);
}

.SearchBoxB
{
	padding: 0px 4px;
	cursor: pointer;
	background-color: #e0e4e8;
	color: RGBA(0,0,0,0.87);
	vertical-align: middle;
	min-width: 40px;
	text-align: center;
}
	.SearchBoxB:hover
	{
		background-color: #007acc;
		color: RGBA(255,255,255,0.87);
	}
	form.rtl .SearchBoxB
	{
		border-left: none;
	}

.ddSearch
{
	border: #D2D4D7 1px Solid;
	background-color: White;
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	-moz-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	padding: 0px 2px;
}
	.ddSearch .caption
	{
		color: rgba(0, 0, 0, 0.64);
		font-size: 8pt;
		text-align: right;
		font-style: italic;
		padding-right: 2px;
	}
.ddSearchItem
{
	padding: 5px;
	vertical-align: middle;
	text-align: left;
	white-space: nowrap;
	cursor: default;
}
	.ddSearchItem[data-group]
	{
		border-top: #D2D4D7 1px Solid;
		padding-top: 4px;
	}
.ddSearchSelItem
{
	background-color: #007acc;
	color: #FFFFFF;
}
.ddSearchItem .note
{
	font-size: 8pt;
	padding-left: 24px;
	opacity:0.64;
}

/*--------------- PXButton control styles ---------------*/
.Button
{
	font-weight: 400;
	background-color: #D2D4D7;
	padding: 2px 6px 3px 6px;
	border: 1px solid #D2D4D7;
	height: 24px;
	min-width: 60px;
	vertical-align: middle;
	opacity: 0.87;
	white-space: nowrap;
	cursor: pointer;
	overflow: hidden;
	text-transform: uppercase;
}
.ButtonT
{ 
	font-weight: 700;
	background-color:  Transparent;
	height: 28px;
	min-width: 60px;
	vertical-align: middle;
	opacity: 0.87;
	white-space: nowrap;
	overflow: hidden;
}
.Button.image
{
	min-width: 36px;
}
.Button.toolBox
{
	width: 200px;
	height: 32px;
	border: none;
}
.Button.toolBox:hover
{
	background-color: #007acc;
	color: #FFFFFF;
}
.Button.toolBox td
{
	padding-left: 10px;
}
.Button.toolBox .sprite-icon
{
	margin-right: 10px;
}

.ButtonH
{
	opacity: 0.87;
	background-color: #007acc !important;
	border-color: #007acc !important;
	color: #FFFFFF !important;
}

.ButtonP
{
	opacity: 1;
	background-color: #007acc !important;
	border-color: #007acc !important;
	color: #FFFFFF !important;
}
.ButtonD
{ 
	color: #333333;
	opacity: 0.26;
}

.ButtonDD
{ 
	opacity: 1;
}
.ButtonDN
{ 
	padding-left: 2px;
	padding-right: 2px;
	opacity: 0.64;
}
.ButtonDH
{ 
	border-left: Solid 1px RGBA(0,0,0,0.12);
	padding-left: 1px;
	padding-right: 2px;
	opacity: 0.64;
}

.ButtonF
{ 
	font-weight: normal;
	background-color:  Transparent;
	vertical-align: middle;
	padding: 0px 2px;
	border-width: 0px;
	cursor: pointer;
	opacity: 0.64;
}
.ButtonHF
{ 
	opacity: 1;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.ButtonPF
{ 
	opacity: 1;
}

.ButtonLink
{
	background-color: Transparent;
	text-shadow: none !important;
	border: none;
	padding: 2px 2px 3px 2px;
	height: 20px;
	vertical-align: middle;
	opacity: 0.87;
	white-space: nowrap;
	cursor: pointer;
	color: #007acc;
	box-shadow: 0px 0px 0px #F5F7F8 !important;
	font-family: Arial,sans-serif,Tahoma,Verdana;
	font-size: 9pt;
}

.ButtonLink a
{
	background-color: Transparent;
	text-shadow: 0px !important;
	border: none;	
	padding: 2px 2px 3px 2px;
	height: 20px;
	vertical-align: middle;
	opacity: 0.87;
	white-space: nowrap;
	cursor:pointer;
	color: #007acc;	
	box-shadow: 0px 0px 0px #F5F7F8;
	font-family: Arial,sans-serif,Tahoma,Verdana;
	font-size: 9pt;
	text-decoration: underline !important;	         
}

.ButtonLinkHover
{
	background-color: Transparent;
	text-shadow: 0px !important;
	border: none;
	padding: 2px 2px 3px 2px;
	height: 20px;
	vertical-align: middle;
	opacity: 0.87;
	white-space: nowrap;
	cursor: pointer;
	color: #007acc;
	box-shadow: 0px 0px 0px #F5F7F8;
	font-family: Arial,sans-serif,Tahoma,Verdana;
	font-size: 9pt;
	text-decoration: underline !important;
}


/*--------------- Drop-down calendar styles ---------------*/
.calendar 
{
	background-color: #FFFFFF;
	border: 1px solid #D2D4D7;
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-moz-box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
}

.calendarMT
{
	font-size: 9pt;
	font-weight: bold;
	border-bottom: #D2D4D7 1px Solid;
	background-color: #D2D4D7;
	padding: 4px 6px;
}
.calendarMT select 
{
	margin: 0; padding: 0;
	width: auto;
}
.calendarMT select + select
{
	margin-left: 8px;
}

.calendarNP
{
	width:16px;
}


.calendarF
{
  background-color: #F5F7F8;
  padding: 5px 12px;
  
}

.calendarD
{
	text-align: Center;
	vertical-align: Middle; 
	padding: 8px 12px;
}
	.calendarD:hover
	{
		background-color: #007acc;
		color: #FFFFFF;
	}
	.calendar table[id$="customItems"] .calendarD
	{
		text-align: left;
		cursor: pointer;
		padding: 3px 10px;
	}

.calendarWE
{
	color: #007acc; 
}
.calendarTD 
{
   border: 1px solid #007acc;
   padding: 4px 7px;
}

.calendarOMD
{
	color: RGBA(0,0,0,0.26);
}	  
.calendarSD
{
    background-color: #D2D4D7;
}

.calendarDH
{
	text-align: Center;
	color: RGBA(0,0,0,0.64);
	background-color: #F5F7F8;
	padding: 6px 3px;
}
.calendarWN, .calendarWN:hover
{
	color: RGBA(0,0,0,0.64);
	background-color: #F5F7F8;
	font-size: 7pt;
	padding: 8px 10px;
}

/*--------------- Styles for PXToolBar control ---------------*/
.toolBar
{
	background-color: #F5F7F8;
}
.toolBarT
{
	background-color: transparent;
}
.toolBarBB
{
	border-bottom: #e0e4e8 1px solid;
}
.toolBarBT
{
	border-top: #e0e4e8 1px solid;
}
.toolBarS
{
	border: #e0e4e8 1px solid;
}

ul.toolsList
{
	list-style: none outside none;
	margin: 0px; padding: 0px;
	border-spacing: 0px
}
ul.toolsList > li
{
	display: inline-block;
	vertical-align: middle;
	margin: 0px;
}
ul.asTable
{
	display: table;
	white-space: nowrap;
}
ul.asTable > li
{
	display: table-cell;
}

.toolsBtn
{
	display: table;
}
div.toolsBtn:hover
{
	text-decoration: none;
}
.toolsBtn div[data-type]
{
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.toolBar .toolsBtn
{
	background-color: inherit;
	margin: 3px;
	color: #000000;
	font-weight: 400;
	white-space: nowrap;
	text-transform: uppercase;

	
}

/*

.GridToolsCell .toolBar .toolsBtn, .toolBarDS .toolsBtn  {
	box-shadow:	0 1px 2px 0 rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.08), 0 1px 1px -1px rgba(0,0,0,0.1);
	border: 1px solid #D2D4D7;
	border-radius: 2px;

}


.GridToolsCell .toolBar .toolsBtn:hover, .toolBarDS .toolsBtn:hover  {
	box-shadow:	0 1px 2px 0 rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.08), 0 1px 1px -1px rgba(0,0,0,0.1);
	border: 1px solid #007acc;
	border-radius: 2px;
	color: #FFFFFF;
	background-color: #007acc;

}

.GridToolsCell .toolBar .toolsBtn[enabled="false"], .toolBarDS .toolsBtn[enabled="false"] {
	box-shadow:	0 0 0 0;
	border: 1px solid #E6E8EA;
	border-radius: 2px;
}

*/

.toolBar .toolsBtn[pushed]
	{
	}
.toolBar .toolsBtn:hover
	{
		background-color: #D2D4D7;
		color: #FFFFFF;
	}
.toolBar .toolsBtn:hover[enabled="false"]
	{
		background-color: inherit;
		color: #000000;
	}

.toolLabel
{
	padding: 5px;
	white-space: nowrap;
	font-weight: 700;	
}
.toolBarSep
{
	/*background: url(Images/tb_separator.gif) no-repeat 3px top;*/
	width: 0px;
	height: 20px;
}
.toolBtnNormal, .toolBtnPushed, .toolBtnDropN, .toolBtnDropP
{
	padding: 5px 10px;
	height: 24px;
	line-height: 20px;
	text-transform: uppercase;
	cursor: default;
	text-align: center;
	cursor: pointer;
}
	.toolsBtn[data-drop] div[data-type="button"]
	{
		padding-right: 4px;
	}

.toolBtnDisabled
{
	padding: 5px 10px;
	height: 24px;
	line-height: 20px;
	text-transform: uppercase;
	cursor: default;
	opacity: 0.26;
	text-align: center;
	cursor: pointer;
}

.toolsBtn:hover .toolBtnNormal
{
	color: #FFFFFF;
	background-color: #007acc;
}
.toolBtnDisabled
{
	opacity: 0.26; 
	cursor: default;
}
.toolBtnPushed
{
	color: #FFFFFF;
	background-color: #D2D4D7;
}

.toolBtnDD
{
	color: #FFFFFF;
	background-color: #007acc;
	padding: 5px 10px;
	height: 24px;
	line-height: 20px;
}
.toolBtnDropN, .toolBtnDropP
{
	padding-right: 2px !important;
	padding-left: 2px !important;
}
.toolBtnDropP
{
	margin: 3px 0px;
	color: #FFFFFF;
	background-color: #007acc;
}
.toolsBtn:hover .toolBtnNormal + .toolBtnDropN
{
	background-color: #007acc;
	color: #FFFFFF;
}
.toolsBtn[enabled="false"] .toolBtnDropN
{
	opacity: 0.5;
}

.toolBar.narrow .toolBtnNormal, .toolBar.narrow .toolBtnDisabled, .toolBar.narrow .toolBtnPushed, 
.toolBar.narrow .toolBtnDD, .toolBar.narrow .toolBtnDropN, .toolBar.narrow .toolBtnDropP
{
	padding: 4px 9px; 
}

.ColorToolBarMenu
{
	border: #D2D4D7 1px solid;
	background-color: #F5F7F8;
}

/*--------------- Styles for the DataSource and Path ToolBar -------------------*/

.dataSource
{
	vertical-align: top;
}
.toolBarDS
{
	background-color: inherit;
	margin-right: 11px;
	padding-bottom: 5px;
}

.toolBarDS .toolsBtn
{
	font-size:11pt;	
}

.toolBarDS .toolBarSep
{
	height: 18px;
	background: none;
	width: 0px;
}

.toolBarPath
{
	background-color: transparent;
}
.toolBarPath .toolsBtn
{
	margin: 3px;
	font-size: 14pt;
	font-weight: normal;
}

.toolBarPath .toolBtnNormal, .toolBarPath .toolBtnDisabled, 
.toolBarPath .toolBtnPushed, .toolBarPath .toolBtnDD,
.toolBarPath .toolBtnDropN, .toolBarPath .toolBtnDropP
{
	padding: 2px 5px;
	line-height: 24px;
	text-transform: none;
}
	.toolBarPath .toolsBtn[data-cmd="favorites"] .toolBtnPushed
	{
		background-color: transparent;
	}

/*--------------- Styles for system ToolBar control ---------------*/

.toolSysTable
{
	background-color: #007acc;
	height: 37px;
}
.toolBarSys
{
	padding: 7px 7px 0px 7px;
}
.toolBarSys2
{
	padding: 7px 7px 0px 7px;
}

.toolSysNormal, .toolSysDisabled, .toolSysPushed
{
	cursor: default;
	height: 18px;
	padding: 6px 15px;
	color: RGBA(255,255,255,0.87);
	font-size: 11pt;
	text-transform: uppercase;
}

.toolsBtn:hover .toolSysNormal
{
	color: RGBA(0,0,0,0.87);
	background-color: #D2D4D7;
	cursor: pointer;
}
.toolSysDisabled
{
	color: RGBA(255,255,255,0.80);
}
.toolSysPushed
{
	color: RGBA(0,0,0,0.87);
	background-color: #F5F7F8;
	cursor: default;
}
.toolBarSys div.toolsBtn:hover[href]
{
	color: #DD0000;
	text-decoration: underline;
}
.toolBarSys div.toolsBtn:hover[href] > *
{
	cursor: pointer;
}

/*--------------- Styles for modules ToolBar control ---------------*/
.toolBarMod
{
	background: #F5F7F8;
	min-height: 10px;
	border-bottom:1px solid #D2D4D7;
}
.toolModNormal, .toolModDisabled, .toolModPushed
{
	cursor: default;
	padding: 7px 15px;
	color: RGBA(0,0,0,0.64);
	font-size: 10pt;
	height: 17px;
}
.toolBarMod .toolBarSep
{
	width: 0px;
}

.toolsBtn:hover .toolModNormal
{
	color: RGBA(0,0,0,0.87);
	background-color: #D2D4D7;
    cursor:pointer;
}
.toolModDisabled
{
	color: RGBA(0,0,0,0.26);
}
.toolModPushed
{
	color: RGBA(0,0,0,0.87);
	border-bottom: solid #007acc 2px;
	padding-bottom: 5px;
}

/*--------------- Styles for sub-modules ToolBar control ---------------*/
.toolBarSubMod
{
	background-color: #e0e4e8;
}
	.toolBarSubMod.hidden
	{
		border-top: 1px solid #D2D4D7;
	}
.toolBarSubMod .toolsList, .toolBarSubMod .toolsBtn
{
	width: 100%;
}
.toolSubModNormal, .toolSubModDisabled, .toolSubModPushed, .toolSubModDD
{
	padding: 9px;
	border-left: #D2D4D7 solid 1px;
	border-top: solid 1px #D2D4D7;
	border-bottom: #D2D4D7 solid 1px;
	cursor: default;
	text-align: center;
	opacity: 0.6;
}

.toolsBtn[startGroup="1"] .toolSubModNormal, .toolsBtn[startGroup="1"] .toolSubModPushed
{
	border-left-width: 0px;

}
	form.rtl .toolsBtn[startGroup="1"] .toolSubModNormal,
	form.rtl .toolsBtn[startGroup="1"] .toolSubModPushed
	{
		border-left-width: 1px;
        
	}
.toolsBtn[endGroup="1"] .toolSubModNormal, .toolsBtn[endGroup="1"] .toolSubModPushed
{
}
	form.rtl .toolsBtn[endGroup="1"] .toolSubModNormal,
	form.rtl .toolsBtn[endGroup="1"] .toolSubModPushed
	{
		border-left-width: 0px;
	}

.toolsBtn:hover .toolSubModNormal
{
	opacity: 0.87;
	background-color: #007acc;
	border-top: 1px solid #007acc;
	cursor: pointer;
}
.toolSubModDisabled
{
	color: RGBA(0,0,0,0.26);
}
.toolSubModPushed
{
	background-color: White;
	border-bottom-width: 0px;
	border-top: 2px solid #007acc;
	padding-bottom: 10px;
	opacity:1;
}

/*--------------- Styles for the tabed ToolBar control ---------------*/
.toolBarTab
{
	background-color: inherit;
}
.toolBarTab ul.toolsList > li
{
	vertical-align: bottom;
}
.toolBarTab .toolsBtn
{
	background: transparent;
	border-bottom: 1px solid #D2D4D7;
	cursor: default;
	margin: 0px;
	cursor: pointer;
}
	.toolBarTab .toolsBtn:hover
	{
		background: #e0e4e8;
		box-shadow: none;
		cursor: pointer;
	}
	.toolBarTab .toolsBtn[pushed], .toolBarTab .toolsBtn[pushed]:hover
	{
		
		color: #007acc;
		border-bottom: 3px solid #007acc;
		

	}
	.toolBarTab .toolsBtn[first-tab]
	{
		border-left-width	: 0px !important;
	}

.toolTabNormal, .toolTabDisabled, .toolTabPushed, .toolTabDD
{
	padding: 6px 16px;
	text-align: center;
	opacity: 0.5;
	line-height: 24px;
	height: 24px;
	text-transform: uppercase;
}
.toolsBtn:hover .toolTabNormal, .toolTabPushed
{
	opacity: 1;
}
.toolsBtn[pushed] .toolTabPushed
{
	padding-bottom: 4px;
	opacity: 1;
}
.toolTabDisabled
{
	color: RGBA(0,0,0,0.26);
}

.toolBarTab .toolLabel
{
	border-bottom: #D2D4D7 solid 1px;
}
.toolBar.tabsInside > div > ul.toolsList, .toolBar.tabsInside > ul.toolsList
{
	padding-bottom: 4px;
}
.toolBar.tabsInside > div > ul.toolsList > li, .toolBar.tabsInside > ul.toolsList > li
{
	border-bottom: #D2D4D7 solid 1px;
}

.toolBarTabWrap
{
	overflow: hidden;
}
.GridToolsCell .toolBarTab
{
	position: relative;
	top: 5px;
}
.GridToolsCell > .toolBarTab, .toolBarTabWrap > .toolBarTab
{
	margin-bottom: 5px;
	top: 0px;
}
.GridToolsCell[tabsInside], .toolBarTabWrap
{
	background-color: #F5F7F8;
}
#page-caption + div + .phG .GridToolsCell > .toolBarTab, 
#page-caption + div + .phL .GridToolsCell > .toolBarTab, .toolBarTabWrap  > .toolBarTab
{
	background-color: white;
}

/*--------------- Styles for PXMenu control ---------------*/

#pageInfoContextMenu
{
	position: absolute;
	width: 130px;
	height: 120px;
	left: 0px;
	top: 0px;
	visibility:hidden;
	z-index: 30000;
	
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-moz-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	border: 1px solid #BBBBBB;	
}

.menuIsland
{
	background-color: #FFFFFF;
	color: RGBA(0,0,0,0.87);
	border: #D2D4D7 1px solid;
	cursor: pointer;
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-moz-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	padding: 1px 2px;
}
.menuIslandT
{
	border-width: 0px;
	background-color: transparent;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	padding: 0px;
}
.menuIslandV
{
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.menuIsland .menuImage
{
	margin: 0px 2px 0px 0px;
	border: 0px;
}
.menuIsland img[submenu="1"]
{
	float: right !important;
	margin: 2px 2px 0px 0px;
}
.menuIsland div.sprite-icon[submenu="1"]
{
	float: right !important;
	margin: 3px 2px 0px 0px;
}
.menuIsland div.sprite-icon[check="1"]
{
	margin: 3px 0px 0px 2px;
}
ul.menu div.sprite-icon
{
	float: left;
}

ul.menu
{
	padding : 0px;
	margin: 0px;
	display: block;
	list-style: none outside none;
	overflow: hidden;
	vertical-align: middle;
}
ul.menu li
{
	float: left; 
	display: inline-block;
	white-space: nowrap;
	margin: 1px 0px;
}
ul.menu.auto-size li
{
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
ul.menu li.menuItem, ul.menu li.menuHover, ul.menu li.menuDisabled
{
	min-height: 16px;
}

.menuItem
{
	opacity:0.87;
	padding: 5px 1px 5px 5px;
	font-size: 10pt;
}
	.menuItem:hover, .menuItem.active
	{
		opacity: 1;
		background-color: #007acc;
		border: 1px solid #007acc;
		color: #FFFFFF;
		padding: 4px 0px 4px 4px;
	}

.menuChecked
{
	opacity: 1;
	background-color: #007acc !important;
	color: white !important;
}

.menuDisabled
{
	opacity: 0.26;
	padding: 5px 1px 5px 5px;
	cursor: auto;
	font-size: 10pt;
}

.menuTopSelected
{
	background-color: #bdbdbd;
	border: RGBA(0,0,0,0.12) 1px solid;
	padding: 4px 0px 4px 5px;
}
.menuSpacer 
{ 
	margin-right: 30px;
	margin-left: 25px;
	min-height: 16px;
}
.menuSpacerL
{ 
	margin-right: 30px;
	margin-left: 8px;
	min-height: 16px;
}

/*--------------- Styles for PXTreeView control ---------------*/

.tree
{
	font-size: 10pt;
	color: RGBA(0,0,0,0.87);
	background-color: White;
	overflow: auto;
	position: relative;
}
form.rtl .tree *
{
	background-position: right 0 !important;
}
.tree.autoScroll
{
	overflow: hidden;
}
.tree.autoScroll:hover
{
	overflow: auto;
}

.selectorTree
{
	border: #D2D4D7 1px solid;
	overflow: auto;
}
.treeCaption
{
	background-color: inherit;
	padding: 4px 6px;
	font-weight: bold;
    background-color: #F5F7F8;
}
.tree .hideBox
{
	float: right;
	width: 16px; height: 16px;
	text-align: center;
	padding-top: 2px;
	padding-right: 2px;
	background-color: #D2D4D7;		
	border: 1px solid #D2D4D7;
}
	.tree .hideBox:hover
	{
		background-color: #007acc;
		border: 1px solid #007acc;
		color: #FFFFFF;
	}

.tree .tnUL 
{
	margin: 0;
	padding: 0;
}
.tree .tnUL .tnLI .tnUL 
{
	padding-left: 20px;
}
	.tree.noShift .tnUL .tnLI .tnUL 
	{
		padding-left: 2px;
	}
	form.rtl .tree .tnUL .tnLI .tnUL
	{
		padding-right: 20px;
		padding-left: 0px;
	}
	form.rtl .tree.noShift .tnUL .tnLI .tnUL
	{
		padding-right: 2px;
		padding-left: 0px;
	}

.tree .tnLI 
{
	list-style: none outside none;
}
.tree.menuTree .tnLI.selected:before
{
	content: "";
	background-color: #007acc;
	position: absolute;
	margin-top: 5px;
	margin-left:10px;
	width: 4px;
	height: 18px;
}
	.tree.menuTree .tnLI.selected.folder:before
	{
		width: 0px; height: 0px;
	}

.tree .tnDiv
{
	padding-left: 18px;
	white-space: nowrap;
}
	form.rtl .tree .tnDiv
	{
		padding-right: 18px;
		padding-left: 0px;
	}

.tree.noShift .tnDiv
{
	padding-left: 24px;
	white-space: nowrap;
}
	form.rtl .tree.noShift .tnDiv
	{
		padding-right: 24px;
		padding-left: 0px;
	}


.tree div.sprite-icon[data-type="E"]
{
	margin-left: -18px;
}
	form.rtl .tree div.sprite-icon[date-type="E"]
	{
		margin-right: -18px;
		margin-left: 0px;
	}

.tree .tnLines .tnLI, .tree .tnLines .tnFirst .tnUL 
{
	background-image: url("Images/Tree/lineI.png");
	background-position: 0 0;
	background-repeat: repeat-y;
	margin: 0px;
}
.tree .tnLines .tnLast, .tree .tnLines .tnLast .tnUL 
{
	background-image: none;
}

.tree .tnLines .tnTop, .tree .tnLines .tnMid, .tree .tnLines .tnBot 
{
	background-position: 0 0;
	background-repeat: no-repeat;
	min-height: 24px;
}
.tree .tnLines .tnTop 
{
	background-image: url("Images/Tree/lineTT.png");
}
.tree .tnLines .tnLast .tnTop 
{
	background-image: url("Images/Tree/lineT.png");
	background-position: 0 center;
}
.tree .tnLines .tnMid 
{
	background-image: url("Images/Tree/lineM.png");
}
.tree .tnLines .tnBot 
{
	background-image: url("Images/Tree/lineB.png");
}

.treeNode 
{ 
	cursor: Default;
	display: inline-block;
	padding: 4px 2px 4px 1px;
}
.treeHover 
{ 
	color: #007acc;
	text-decoration: underline;
	cursor:pointer;
}
.treeSelected 
{ 
	font-weight: 700 !important;
}
.treeDisabled 
{ 
	color: RGBA(0,0,0,0.26);
}

.dragover .treeNode
{
	background-color: #4E576A;
	color: white !important;
}
.dragover.before .treeNode, .dragover.after .treeNode
{
	background-color: transparent;
	color: black !important;
}
.tnDiv.dragover.before
{
	border-top: dotted 1px #000000;
	margin-top: -1px;
}
.tnDiv.dragover.after
{
	border-bottom: dotted 1px #000000;
	margin-bottom: -1px;
}

.treeFolder0
{
	font-size: 11pt;
	text-transform: uppercase;
	color: RGBA(0,0,0,0.64) !important;
	cursor: pointer;
}
.treeImage  
{
	margin-right: 2px;
	margin-left: 2px; 
}

.reportViewer
{
	border: #D2D4D7 1px solid;
	border-bottom-width: 0px;
}
	.reportViewer .tabContent
	{
		border-width: 0px;
	}
	.reportViewer .buttonCont
	{
		padding: 5px;
		display: none;
	}
	.reportViewer .paramCont
	{
		background-color: #F5F7F8;
	}
	.reportViewer table[id$="gridV"]
	{
		border-width: 0px;
	}

/*--------------- Common grid styles ---------------*/
.GridMain
{ 
	top: 0px;	left: 0px;
	cursor: default;
}
.GridMainT
{ 
	background-color: inherit;
	cursor: default;
	top: 0px; left: 0px;
}
.GridMainA
{
	top: 0px;	left: 0px;
	cursor: default;
}
	.GridMainA .GridRowSelector, .GridMainA .GridHeaderCell td.GridHeader:first-child
	{
		border-left: 1px solid #D2D4D7;
	}
	.GridMainA .GridHeaderCell .GridHeader
	{
		border-top: 1px solid #D2D4D7;
	}
	.GridMainA .GridHeaderCell, .GridMainA .GridContentCell
	{
		border-width: 0px;
	}

.GridMain.Primary
{
	border-top: none;
}
.GridMain div[id$="scrollDiv"], .GridMainT div[id$="scrollDiv"], .GridMainS div[id$="scrollDiv"],
.GridMain div[id$="headerDiv"], .GridMainT div[id$="headerDiv"], .GridMainS div[id$="headerDiv"]
{
	background-color: #FFFFFF;
}
.GridMain.dragover div[id$="scrollDiv"]:after
{
	border: 1px solid #D2D4D7;
	background-color: #F5F7F8;
	content: "+";
	font-weight: bold;
	padding: 1px 6px;
	position: absolute;
	top: 45%; left: 45%;
	z-index: 1000;
}
.GridContentCell tr.dragover.before .GridRow
{
	border-top: solid 1px red;
	padding-top: 5px;
}
.GridContentCell tr.dragover.after .GridRow
{
	border-bottom: solid 1px red;
	padding-bottom: 5px;
}
.GridContentCell tr.awaitPaste .GridRow
{
	opacity: 0.4;
	background-color: #e0e4e8;
}
.GridContentCell tr.awaitPaste .GridRowSelector
{
	opacity: 1;
}

.GridHeaderCell
{
	border-top: 1px solid #D2D4D7;
}
.GridContentCell
{
	border-bottom: 1px solid #D2D4D7;
	position: relative;
}
tr[style*="display: none"] + tr > .GridContentCell, tr[style*="display:none"] + tr > .GridContentCell
{
	border-top: 1px solid #D2D4D7;
}

.phG > .GridMain .GridHeaderCell, .phG > .GridMain .GridContentCell, .phG > .GridMain .GridToolsBottom, 
.phL > .GridMain .GridHeaderCell, .phL > .GridMain .GridContentCell, .phL > .GridMain .GridToolsBottom, 
.phF > .GridMain .GridHeaderCell, .phF > .GridMain .GridContentCell, .phF > .GridMain .GridToolsBottom, 
.GridMainS .GridHeaderCell, .GridMainS .GridContentCell,
.SmartPanel .GridMain .GridHeaderCell, .SmartPanelT .GridMain  .GridHeaderCell,
.SmartPanel .GridMain .GridContentCell, .SmartPanelT .GridMain  .GridContentCell
{
	border-left: solid 1px #D2D4D7;
	border-right: solid 1px #D2D4D7;
}

.gridDataT tr:last-child > td, .gridDataT[data-newRow] tr:nth-last-child(2) > td, 
.RowNavigator[data-last] td
{
	border-bottom: 1px solid #D2D4D7;
}
.gridDataT[data-newRow] tr:last-child > td
{
	border-bottom: none;
}

.tabContent .GridMain
{
	border-top-width: 0px;
}
.dropDown[type="filterBar"]
{
	width: 200px;
	margin: 2px 2px 2px 10px;
	height: 26px;
}
.toolBarDS .dropDown[type="filterBar"]
{
	margin-top: 6px;
}

.dropDown[type="filter"]
{
	width: 200px;
	margin: 0px 2px 0px 2px;
	height: 26px;
}
.dropDown[type="filter"][data-active]
{
	background-color: #B5D7EF;
}
.dropDown[type="filter"][data-active] .buttonsCont
{
	background-color: transparent;
}

.GridMainS
{
	top: 0px;	left: 0px;
	cursor: default;
}
.GridMainS .GridToolsBottom .toolBar
{
	background-color: inherit;
}

.GridRowForm  
{ 
	background-color: #F5F7F8;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.GridCaption 
{ 
	font-weight: bold; 
	background-color: #F5F7F8;
	padding: 4px 6px;
}
.GridToolsCell 
{ 
 background-color: inherit;
 padding: 0px;
 overflow: hidden;
}
.GridToolsBottom
{ 
	background-color: inherit;
}
.GridMain.Primary .GridToolsCell .toolBar
{
	/*background-color: inherit;*/
}

.GridPagerCell 
{ 
	padding: 2px 3px;
}
.GridPagerLink
{
	display: inline-block;
	color: RGBA(0,0,0,0.87);
	text-decoration: none;
	font-size: 11pt;
	font-weight: bold;
	padding: 5px 10px;
	height: 18px;  
  border: solid 1px transparent;
}
span.GridPagerLink
{
	border: solid 1px #D2D4D7;
	background-color: #D2D4D7;
  color: RGBA(0,0,0,0.87);
}
a.GridPagerLink:hover
{
	background-color: #007acc;
	border: #007acc 1px solid;
	color: #FFFFFF;
}

.GridMainTransparent
{ 
	padding-top: 10px;
	top: 0px;	left: 0px;
	border-top: solid 1px RGBA(0,0,0,0.12);
	cursor: default !important;
	background-color: Transparent	
}

.GridDocs div[id$="scrollDiv"]
{
	overflow-x: hidden !important;
}
.GridDocs .GridRow
{
	border-right: 0px none;
}
.GridDocs .GridRow:hover
{
	cursor: pointer;
	background-color: #F5F7F8;
}

.GridDocs .GridRow .Field0
{
	color: blue;
	display: inline-block;
	padding-bottom: 2px;
	font-weight: 400;
	font-size: 13pt;
	text-decoration: underline
}
.GridDocs .GridRow .Field1
{
	font-weight: 400;
	padding: 3px 0px;
	line-height: 17px;
}
.GridDocs .GridRow span.Field1
{
	display: inline-block;
}
.GridDocs .GridRow div.Field1
{
	text-overflow: ellipsis;
	overflow: hidden;
}

/*--------------- Styles for the grid cells ---------------*/
.GridRow
{
	border-bottom: solid 1px #E8EBED;
	border-right: 1px solid transparent;
	overflow: hidden;
	background-color: White;
	padding: 6px 8px;
	min-height: 17px;
}
.GridRow div[icon="Error"]
{
	margin-top: 3px;
}
.nobr .GridRow 
{
	white-space: nowrap;
}
.GridRow.wrapText
{
	white-space: normal;
}
.GridRow.ellipsis
{
	text-overflow: ellipsis;
}

.GridAltRow
{
 border-bottom: #E8EBED 1px Solid;
 overflow: hidden;
 background-color: #F2F6FA; 
}

.GridTransparentRow
{ 	  
	background-color: Transparent;
	text-decoration: none !important;
	padding: 3px 6px; 
}

.GridTransparentRow a
{
	text-decoration: none !important;
}

.GridTransparentRow a:hover
{
	text-decoration: underline !important; 	
}

.GridHeader
{
	
	border-right: #e0e4e8 1px Solid;
	border-bottom: #e0e4e8 1px Solid;
	background-color: #F5F7F8;
	vertical-align: text-top;
	color: RGBA(0,0,0,0.54);
	padding: 6px 4px;
	white-space: normal !important;
	font-size: 9pt;
	font-weight: bold;
}
	.GridHeader[data-filter]
	{
		background-color: #e0e4e8;
	}
	.GridHeader:hover
	{
		background-color: #e0e4e8;
		color: RGBA(0,0,0,0.87);
        cursor:pointer;
	}

.GridReq
{
	padding-left: 7px;
}
.GridReq .GridHeaderText:before
{
	content: "*";
	color: Red;
	font-size: 10pt;
	position: absolute;
	margin-left: -7px;
}

.GridHeaderWrap
{
	position: relative;
	overflow: hidden;
	padding-right: 15px;
}
.GridHeaderWrap.right
{
	padding-right: 0px;
	padding-left: 15px;
}
.GridHeaderWrap *[data-type="sort"]
{
	position: absolute;
	top: 0px;
	right: 0px;
}
.GridHeaderWrap.right *[data-type="sort"]
{
	left: 0px;
	right: auto;
}
.GridHeaderText
{
	overflow: hidden;
}

.GridRowSelector 
{ 

	width: 16px;
	text-align: center; 
	vertical-align: middle;
}

.edit .GridReadOnly 
{ 
	color: RGBA(0,0,0,0.50);
}
.GridReadOnly div[class^="sprite-icon"]
{
	opacity: 0.64;
}
.GridError
{ 
	color: Red;
}
.GridWarn
{ 
	color: Brown;
}
.GridSelRow 
{ 
	background-color: #e0e4e8;
}
.GridActiveRow 
{ 
	background-color: #e0e4e8 !important;
}
.GridActiveCell 
{ 
	background-color: #B5D7EF !important;
}

.GridActiveCell .searchTextMark 
{
	background-color: #FFFFFF;
}

.GridCellButton 
{ 
	font-size: X-Small; 
}
.GridCellEditor 
{ 
	border: #D2D4D7 1px solid !important;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.GridCellEditor.focus, .GridCellEditor:focus
{
	border: 1px solid #007acc !important;
	box-shadow: 0px 0px 2px 0px #007acc !important;
	-webkit-box-shadow: 0px 0px 2px 0px #007acc !important;
}
	.GridCellEditor .controlCont, .GridCellEditor.selector.focus .controlCont
	{
		border-width: 0px;
	}
.GridEditorText 
{ 
	padding: 3px 6px;
}

.GridSearchEditor 
{ 
	border: Solid 1px #000000;
}
.GridSearchText
{ 
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 2px; 
}

.searchTextMark
{
	
	background-color:#B5D7EF;
}

/*---------------- Property grid styles -----------------*/

.GridMain.Props .GridRow
{
	border-color: #F5F7F8;
}
.GridMain.Props .GridHeader
{
	border-color: #D3D3D3;
	opacity: 1;
	font-size: 9pt;
}
.GridMain.Props .PropNameColumn
{
	background-color: #F5F7F8;
}
.GridMain.Props .PropHeader
{
	background-color: #F5F7F8;
	font-weight: bold;
}

.PropOffset1 { padding-left: 15px; }
.PropOffset2 { padding-left: 30px; }
.PropOffset3 { padding-left: 45px; }
.PropOffset4 { padding-left: 60px; }
.PropOffset5 { padding-left: 75px; }

.GridMain.Props .toolLabel
{
	font-size: 8pt;
	padding-top: 2px;
	height: 40px;
}
.GridMain.Props .toolLabel nobr
{
	white-space: normal !important;
}

/*--------------- Styles for PXTab control ---------------*/
.tabBase
{
	border-bottom: #D2D4D7 1px solid;
}
.tabNormal
{
	cursor: pointer;
	background-color: transparent;
	border-top: transparent 3px solid;
	border-bottom: 1px solid  #D2D4D7;
	padding: 6px 16px;
	color: RGBA(0,0,0,0.5);
	border-left-width: 0px !important;
	text-transform:uppercase;
}
.tabHover
{
	background-color: #e0e4e8;
	color: RGBA(0,0,0,0.87);
}
.tabSelected
{
	
	border-bottom: 3px solid #007acc;
	border-top-width: 0px;
	padding: 8px 16px 4px 16px;
	color: #007acc;
	
}
.tabDisabled
{
	color: RGBA(0,0,0,0.26);
}
.tabNormal div[error]
{
	margin-right: 2px;
	margin-bottom: 3px;
}

.tabCaption td.tabBase:first-child
{
}
.tabContent
{
	background-color: #F5F7F8;
	border-left: #D2D4D7 1px solid;
	border-right: #D2D4D7 1px solid;
}

.tabView.transparent
{
	background-color: transparent;
}
.tabView table[id$="tabT"]
{
	height: 40px;
}
.tabView div[id$="tabDiv"]
{
	overflow: hidden;
	position: relative;
	height: 40px;
	margin-right: 35px;
}
.tabView div[id$="tabDiv"][data-type="scroll"]
{
	margin-right: 70px;
}
.tabView div[id$="tabDiv"] > div
{
	overflow: hidden;
	position: absolute;
	width: 100%;
}

.tabView div[id$="butDiv"]
{
	position: absolute;
	bottom: 0px; right: 0px;
	width: 35px;
	padding-bottom: 2px;
}
.tabView div[id$="butDiv"][data-type="scroll"]
{
	width: 70px;
}
.tabView div[id$="butDiv"] button
{
	min-width: 28px;
	height: 24px;
	text-align: center;
	padding: 3px;
	margin-left: 5px;
}

.tabView .tabPanelS
{
	position: relative;
	min-height: 50px;
	padding: 9px 0px 0px 9px;
}
.tabView .tabPanel
{
	position: relative;
	width: 100%; height: 100%;
	overflow: auto;
}
.tabView .tabPanelSD
{
	position: relative;
	min-height: 50px;
}


/*--------------- Styles for PXFormView control ---------------*/
.FormView
{
}
.FormCaption 
{ 
	background-color: #F5F7F8;
	font-weight: bold;
	padding: 4px;
}
.FormContent
{
	border-top: 1px solid #D2D4D7;
	background-color: #F5F7F8;
	padding: 9px 9px 0px 9px;
}
.FormView div[data-type="collapse"]
{
	position: absolute;
	top: -4px; right: -3px;
	z-index: 4000;
}
.FormContent div[data-ims="1"] + div
{
	padding-right: 22px;
}

.FormRoundL 
{ 
	background-repeat:no-repeat;
	background-position:left top;
	background-image:url(Images/form_roundL.gif);
	width:5px;
}
.FormRoundR 
{ 
	background-repeat:no-repeat;
	background-position:right top;
	background-image:url(Images/form_roundR.gif); 
	width:5px;
}
.FormRoundM 
{ 
	background-repeat:repeat-x;
	background-image:url(Images/form_roundM.gif); 
}

.FormError, .selector.FormError .controlCont
{ 
	border: Solid 1px Red;
	box-shadow: 0 0 0 0 #FFFFFF;
}
.FormWarn, .selector.FormWarn .controlCont
{ 
	border: Solid 1px Brown;
	box-shadow: 0 0 0 0 #FFFFFF;
}
.FormInfo, .selector.FormInfo .controlCont
{ 
	border: Solid 1px Green;
	box-shadow: 0 0 0 0 #FFFFFF;
}
.selector.FormError, .selector.FormWarn, .selector.FormInfo
{
	border-width: 0px;
}

.checkBox.FormError
{
	border-width: 0px;
	border-bottom: Solid 1px Red;
}
.checkBox.FormWarn
{
	border-width: 0px;
	border-bottom: Solid 1px Brown;
}
.checkBox.FormInfo
{
	border-width: 0px;
	border-bottom: Solid 1px Green;
}

/*--------------- Styles for PXWizard control ---------------*/
.Wizard
{ 
}

.WizardCaption, .WizardCaptionF
{ 
	color: RGBA(0,0,0,0.64);
	font-size: 10pt;
	font-style: italic;
	font-weight: 700;
	background-color: #F5F7F8; 
	padding: 7px 3px;
}
.WizardCaption
{ 
	border: RGBA(0,0,0,0.12) 1px Solid;
	border-bottom-width: 0px;
}

.WizardContent 
{ 
	background-color: #F5F7F8; 
	padding: 5px;
	border: RGBA(0,0,0,0.12) 1px Solid;
	border-top-width: 0px;
}
.WizardContentF
{ 
	background-color: #F5F7F8; 
}

.WizardFooter
{ 
	background-color: #F5F7F8; 
	padding: 5px;
	border: RGBA(0,0,0,0.12) 1px Solid;
	border-top-width: 0px;
}
.WizardFooterT
{ 
	padding: 5px 0px;
}
.WizardFooterF
{ 
	padding: 5px 0px;
	background-color: #F5F7F8; 
}

.WizardFooter .Button, .WizardFooterT .Button, .WizardFooterF .Button
{
	margin-left: 5px;
}

/*--------------- Styles for PXNavPanel control ---------------*/
.NavPanel
{
	border-style:solid;
	border-width:1px; 
	border-color:Silver; 
}

.NavPanelBar
{
	background-image:url(Images/NavPanel/np_bar.gif);
	background-repeat:repeat-x;
	cursor:pointer;
	color:RGBA(0,0,0,0.87);
	vertical-align:middle;
	font-weight:bold;
	height:32px;
	padding: 0px 2px 0px 2px;
}

.NavPanelBarA
{
	background-image:url(Images/NavPanel/np_barA.gif);
	cursor:pointer;
	padding: 0px 2px 0px 2px;
	font-weight:bold;
	height:32px;
}

.NavPanelBarH
{
	cursor:pointer;
	background-color:Gainsboro;
	background-image:url(Images/NavPanel/np_barH.gif);
	color:Firebrick;
	padding: 0px 2px 0px 2px;
	height:32px;
}

.NavPanelSpt
{
	background-color:#D7D6E4;
	background-image:url(Images/NavPanel/np_splitter.gif);
	padding-top: 1px;
	padding-bottom: 3px;
}

.NavPanelFt
{
	background-image:url(Images/NavPanel/np_bar.gif);
	background-repeat:repeat-x;
	height:32px;
}

.NavPanelFt table table
{
	height: 28px;
	width: 24px;
	text-align: center;
 }

.NavPanelCaption 
{
	background-image: url(Images/NavPanel/np_caption.gif);
	background-repeat: repeat-x; 
	color: White;
	vertical-align: middle;
	font-weight: bold;
	font-size: 11pt;
	height: 25px;
	padding-left: 6px; 	
}
.NavPanelCaption a
{
	color: White;
	text-decoration: none;
}
.NavPanelCaption a:hover
{
	text-decoration: underline;
}

.NavPanelFrame 
{
	background-color:White;
}

/*--------------- Styles for PXSmartPanel control ---------------*/
.SmartPanel 
{ 
	box-shadow: 4px 4px 8px gray;
	-moz-box-shadow: 4px 4px 6px gray;
	-webkit-box-shadow: 4px 4px 6px gray;
}
.SmartPanelF
{ 
	width: 100%;
}
.SmartPanelT
{ 
	background-color: transparent;
}
div.SmartPanel, div.SmartPanelF, div.SmartPanelT
{
	overflow: auto;
	position: relative;
}

.SmartPanelC
{
	border-top: 1px solid #007acc;
	border-left: 1px solid #007acc;
	border-right: 1px solid #007acc;
	font-size: 10pt;
	font-weight: 700;
	background-color: #007acc;
	color: RGBA(255,255,255,0.87);
	padding: 3px 1px 3px 8px;
}
form.rtl .SmartPanelC
{
	padding: 3px 8px;
}
.SmartPanelCN
{ 
	background-color: #F5F7F8; 
	padding: 5px;
	border-bottom: 1px solid #D2D4D7;
	border-left: 1px solid #D2D4D7;
	border-right: 1px solid #D2D4D7;
}
.SmartPanel.SmartPanelCN
{
	border-top: 1px solid #D2D4D7;
}
.SmartPanelCNT
{ 
	background-color: transparent; 
	padding: 0px;
}
.panelContent
{
	overflow: auto;
	position: relative;
	width: 100%;
	height: 100%;
}

.MessageButton 
{ 
	width: 70px;
	margin: 2px 0px 2px 4px;
}

.activityPanel
{
	width: 700px;
}
.activityBox
{
	height: 415px;
	width: 100%;
	border: 1px solid RGBA(0,0,0,0.12);
	position: relative;
}
.activityBox .toolBar
{
	border-bottom: 1px solid RGBA(0,0,0,0.12);
}

.SmartPanel.columns button[id$="add"], .SmartPanel.columns button[id$="up"]
{
	margin-top: 120px;
}
.SmartPanel.columns div[id$="fb"]
{
	height: 24px;
}
.SmartPanel.columns button[id$="reset"], .SmartPanel.columns button[id$="allUser"]
{
	height: 24px;
	width: 100%;
}
.SmartPanel.columns div[id$="availC"], .SmartPanel.columns div[id$="selC"]
{
	height: 350px;
	width: 260px;
}

#paymentPanel.SmartPanel .SmartPanelCN
{
	position: relative;
	overflow: hidden;
}
	#paymentPanel.SmartPanel .SmartPanelCN iframe.panelContent
	{
		position: absolute;
		height: 1000px; top: 0px;
	}

/*--------------- Styles for rounded window ---------------*/

.WindowT 
{ 
	background-repeat:repeat-x;
	background-image:url(Images/form_roundM.gif); 
	height:3px;
}
.WindowTL 
{ 
	background-repeat:no-repeat;
	background-position:left top;
	background-image:url(Images/form_roundL.gif);
}
.WindowTR 
{ 
	background-repeat:no-repeat;
	background-position:right top;
	background-image:url(Images/form_roundR.gif); 
}

.WindowB
{ 
	background-repeat:repeat-x;
	background-image:url(Images/wnd_border.gif); 
	height:3px;
}
.WindowBL
{ 
	background-repeat:no-repeat;
	background-image:url(Images/wnd_border.gif); 
}
.WindowBR
{ 
	background-repeat:no-repeat;
	background-image:url(Images/wnd_border.gif); 
}

.WindowL
{ 
	background-repeat:repeat-y;
	background-image:url(Images/wnd_border.gif); 
}
.WindowR
{ 
	background-repeat:repeat-y;
	background-image:url(Images/wnd_border.gif); 
}


/*--------------- Styles for PageFooter control ---------------*/
.PageFooter
{
	border-top: RGBA(0,0,0,0.12) 1px solid; 
	padding: 3px;
	font-size: 0pt;
	text-align: right;
	background-color: white; 
	background-image: url(Images/pt_gradient.gif); 
	background-position: left top; 
	background-repeat: repeat-x; 
}

.StatusBar
{
	border-top: RGBA(0,0,0,0.12) 1px solid; 
	background-color: white; 
	background-image: url(Images/pt_gradient.gif); 
	background-position: left top; 
	background-repeat: repeat-x; 
}

.StatusText
{
	padding: 3px;
}

/*--------------- Styles for Login control ---------------*/
.Login
{
	border: solid 1px RGBA(0,0,0,0.12);
	width: 400px;
}

.LoginCaption
{
	font-size: 16pt; 
	color: White;
}

.LoginLabel
{
	font-size: 8pt; 
	font-weight: bold;
	color: RGBA(0,0,0,0.64);
}

.LoginLink
{
	font-size: 8pt; 
	font-weight: bold;
	color: 007acc;
}

.amChartsLegend[data-popup]
{
	padding-left: 10px;
	border: 1px solid #D2D4D7 !important;
}

/*--------------------- Styles for Dashboards --------------------*/
.Dashboards 
{
}

	.Dashboards .dash-wrapper
	{
		margin: 5px;
		border: solid 1px white;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
	.Dashboards.design .dash-wrapper
	{
		border-radius: 3px;
		border: solid 1px #D2D4D7;
	}
	.Dashboards.design .dash-wrapper.dummy
	{
		color: RGBA(0,0,0,0.64);
		font-size: 18pt;
		text-align: center;
		background-color: #f5f6f7;
		padding: 20px;
		border: 2px dashed #D2D4D7;
		overflow: hidden;
	}
	.Dashboards .add-widget-link
	{
		color: #3b73af;
	}

	.Dashboards .toolBar.caption
	{
		background-color: transparent;
	}
	.Dashboards .toolBar.caption .toolsBtn
	{
		margin: 1px;
	}
	.Dashboards .toolBar.caption .toolLabel, .Dashboards .toolBar.caption .toolsBtn
	{
		text-transform: uppercase;
		font-size: 12pt;
		font-weight: normal;
	}
	.Dashboards .toolBar.design
	{
		opacity: 0.9;
		width: 100%;
		display: none;
	}
	.Dashboards.design .toolBar.design
	{
		display: block;
	}

	.Dashboards .dash-wrapper.hover
	{
		opacity: 0.8;
	}
		.Dashboards .dash-wrapper.hover > *
		{
			visibility: hidden;
		}
		.Dashboards .dash-wrapper.hover:before
		{
			color: RGBA(0,0,0,0.64);
			font-size: 18pt;
			content: "Drag you widget here";
			margin-top: 15px;
			display: block;
			text-align: center;
		}

	.Dashboards .scorecard, .Dashboards .trendcard
	{
		color: white;
	}
	.Dashboards .trendcard .content
	{
		/*width:calc(100% - 10px);*/
		width:100%;
	}
	.Dashboards .trendcard .content td
	{
		width:1px;
		white-space:nowrap;
		padding: 0;
	}
	.Dashboards .trendcard .content td:first-child
	{
		padding-bottom: 3px;
		width :50%;
		/*vertical-align:top;
		font-size: 10em;*/
	}
	.Dashboards .trendcard .content td:last-child
	{
		width :50%;
	}
	.Dashboards .scorecard.warning, .Dashboards .trendcard.warning
	{
		color: black;
	}

	.Dashboards .scorecard .caption, .Dashboards .trendcard .caption
	{
		font-size: 13pt;
		text-transform: uppercase;
		padding: 10px 5px 5px 15px;
	}
	.Dashboards .scorecard > tbody > tr:not(:first-child) > td,
	.Dashboards .trendcard > tbody > tr:not(:first-child) > td
	{
		padding: 20px
	}
	.Dashboards .card-button
	{
		cursor: pointer;
		font-family: Arial,sans-serif;
		font-size: 4em;
		font-weight: 500;
		text-align: center;
		margin: auto;
		min-width: 50px;
	}

	.Dashboards .trendcard .trend
	{
		font-family: Arial,sans-serif;
		font-size: 1.2em;
		/*font-size: 33%;*/
		padding-bottom: 3px;
		white-space:nowrap;
	}
	.Dashboards .trendcard .card-button.overall
	{
		font-size: 1.2em;
		/*font-size: 33%;*/
		float: left;
		min-width: 0px;
	}
	.Dashboards .trendcard .arrow
	{
		/*font-size: 283%;*/
		font-size: 3.4em;
		/*padding-left: 10px;
		height: 60px;
		width: 60px;*/
	}

	.Dashboards .iframe
	{
		height: 99% !important;
	}

    .Dashboards .lockedIcon 
    {
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

.row.dash-layout
{
	height: 80px;
}
	.row.dash-layout > div
	{
		height: 100%;
		padding: 10px;
	}
	.row.dash-layout .layout-type
	{
		height: 100%;
		padding: 2px;
		border: solid 1px #D2D4D7;
		background-color: white;
	}
	.row.dash-layout .layout-type > div
	{
		height: 100%;
		padding: 2px;
	}
		.row.dash-layout .layout-type .layout-col
		{
			height: 100%;
			background-color: #D2D4D7;
			border: solid 1px #D2D4D7;
			box-sizing: border-box;
		}

	.row.dash-layout .layout-type:hover
	{
		border: solid 1px black;
	}
	.row.dash-layout .layout-type:hover .layout-col, 
	.row.dash-layout .layout-type[selected] .layout-col
	{
		background-color: white;
	}
	.row.dash-layout .layout-type[selected]
	{
		border: solid 1px black;
		background-color: #F5F7F8;
	}

.row
{
	overflow: hidden;
} 

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, 
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, 
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, 
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, 
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, 
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 
{
  min-height: 1px;
	box-sizing: border-box;
}

.col-xs-0, .col-sm-0, .col-md-0, .col-lg-0 
{ 
	width: 0%; display: none; 
}

@media (min-width: 768px) 
{
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, 
	.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 
	{
    float: left;
  }

  .col-sm-12 { width: 100%; }
  .col-sm-11 { width: 91.66666667%; }
  .col-sm-10 { width: 83.33333333%; }
  .col-sm-9  { width: 75%; }
  .col-sm-8  { width: 66.66666667%; }
  .col-sm-7  { width: 58.33333333%; }
  .col-sm-6  { width: 50%; }
  .col-sm-5  { width: 41.66666667%; }
  .col-sm-4  { width: 33.33333333%; }
  .col-sm-3  { width: 25%; }
  .col-sm-2  { width: 16.66666667%; }
  .col-sm-1  { width: 8.33333333%; }
  
  .col-sm-offset-12 { margin-left: 100%; }
  .col-sm-offset-11 { margin-left: 91.66666667%; }
  .col-sm-offset-10 { margin-left: 83.33333333%; }
  .col-sm-offset-9  { margin-left: 75%; }
  .col-sm-offset-8  { margin-left: 66.66666667%; }
  .col-sm-offset-7  { margin-left: 58.33333333%; }
  .col-sm-offset-6  { margin-left: 50%; }
  .col-sm-offset-5  { margin-left: 41.66666667%; }
  .col-sm-offset-4  { margin-left: 33.33333333%; }
  .col-sm-offset-3  { margin-left: 25%; }
  .col-sm-offset-2  { margin-left: 16.66666667%; }
  .col-sm-offset-1  { margin-left: 8.33333333%; }
  .col-sm-offset-0  { margin-left: 0; }
}

/*--------------- Styles for NewsList controls ---------------*/
.NewsListContent
{
	position: relative;
	overflow: auto;
	height: 100%;
	background-color: White;
	cursor: default;
}
.NewsListTable
{
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	cursor: default;
}
.NewsListTable tr[recid]
{
	border-bottom: 1px solid LightGrey;
}
.NewsListTable td
{
	padding: 5px 3px;
	cursor: default;
}

.NewsListImage
{
	width: 5%;
}
.NewsHotTime
{
	color: Red;
	width: 20%;
}
.NewsTime
{
	width: 20%;
}
.NewsHotDuration
{
	color: Red;
	width: 15%;
}
.NewsDuration
{
	width: 15%;
}
.NewsListTitle
{
	width: 60%;
}
.NewsListMain
{
	margin-top: 5px;
}

.NewsListBriefInfo
{
	font-style:italic;
	color: Gray;
	cursor: default;
}
.NewsListDescription
{
	font-style:italic;
	color: Gray;
	cursor: default;
}
.NewsToolBarButtonNormal
{
	padding: 3px;
}
.NewsToolBarButtonHover
{
	background-color: #B5D7EF;
	border: darkblue 1px solid;
	padding: 2px;
	cursor: default;
}
.NewsToolBarButtonPushed
{
	background-color: LightSalmon;
	border: black 1px solid;
	padding: 2px;
	cursor: default;
}

.TasksAndEventsMain
{
}
.TasksAndEventsLabel
{
	cursor: default;
}
.TasksAndEventsLabelHover
{
	color: DarkBlue;
	text-decoration: underline;
	cursor: default;
}

/*------------- Style for navigation buttons in wiki popup images -----------*/
span.PrevNextPopupImg
{
	border-bottom:1px dotted;
	cursor:pointer;
	text-decoration:none;
	color:#1A3DC1;
}

span.PrevNextPopupImg:hover
{
	color: #FF0000;
}

td.PopupImgCaption
{
	width: 100%;
	text-align: left;
	vertical-align: top;
	overflow: hidden;
}

span.PopupImgCaption
{
	font-weight: bold;
	font-size: 9pt;
	padding-left: 5px;
	background-color: #0071BC;
	color: White;
	padding-right: 5px;
	padding-bottom: 2px;
}

td.PopupImgClose
{
	text-align: right;
	padding-right: 5px;
	padding-top: 2px;
}

div.informer
{
	background-color: White;
}

.wikiFolderPublish, .wikiLeafPublish
{
	color: #A36030;
	font-weight: bold;
}
.wikiFolderUnPublish, .wikiLeafUnPublish
{
	color: Green;
	font-weight: bold;	
}
.wikiDeletedNodes
{
}
.wikiNewArticle
{
	font-weight: bold;
}

/*--------------- Styles for Validation banner ---------------*/
.ValidationBanner
{
	font-size: 10pt; 
	color:white;
	font-weight: bold;
   
	width:100%; 
	height:40px;
	/*padding: 10px;*/
    
	background-color:orange;
	cursor: pointer;
}
.ValidationMessage
{
	padding: 10px;
}

.ValidationBanner:hover
{
	text-decoration: underline;
}
.ValidationTable
{
	font-size: 12px; 	
	border: #000000 1px Solid;
	background-color: White;
	box-shadow: 3px 3px 4px RGBA(0,0,0,0.64);
	-moz-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	-webkit-box-shadow: 4px 4px 6px RGBA(0,0,0,0.64);
	margin-bottom: 20px;
	margin-right: 20px;
	width: 100%;
}

.LicenseBanner
{
   	width:100%; 
	height:20px;
	background-color: #007acc;

	text-align:center;
}
.LicenseMessage
{
	font-size: 10pt; 
	color: #FFFFFF;
	font-weight: 400;
}

.LicenseDisclamer
{
	border:solid;
	border-bottom-color:darkgray;
	border-bottom-style:solid;
	border-width:thin;
	background-color: #EAEEF3;
	width:510px;
	height:auto !important;
	padding:5px;
}

/*--------------- Styles for render pivot table ---------------*/
.phDS .pivotTable, .phF .pivotTable
{
	border: 1px solid #D2D4D7;
	border-bottom-width: 0px;
}
.pivotTable td
{
	white-space: nowrap;
	overflow: hidden;
}
.pivotTable .xDim
{
	border-top: 1px solid #D2D4D7;
}

.pivotTable .header, .pivotTable .caption
{
	background-color: #F5F7F8;
	padding: 0px 3px;
	border-bottom: 1px solid #D2D4D7;
	width: 100%;
}
.pivotTable .caption
{
	padding: 3px;
	font-weight: bold;
	text-align: center;
}
.pivotTable .inactiveCell
{
	padding-left: 30px;
}
.pivotTable .errorImage
{
	float: right;
	margin-right: 10px;
}
.pivotTable table.inactive + .errorImage
{
	margin-top: 3px;
}

.pivotTable .yDim td, .pivotTable .xDim td, .pivotTable .facts td, 
.pivotTable .yDimH, .pivotTable .xDimH, .pivotTable .inactH
{
	padding: 3px;
	border-bottom: 1px solid #D2D4D7;
	border-right: 1px solid #D2D4D7;
}
.pivotTable .yDim td, .pivotTable .xDim td
{
	position: relative;
	background-color: #F5F7F8;
}
.pivotTable .xDim td, .pivotTable .xDimCap td, .pivotTable .yDimCap td
{
	text-align: center;
}
.pivotTable .facts td
{
	text-align: right;
}
.pivotTable .facts td.total
{
	background-color: #e0e4e8;
}

.pivotTable table[id$="dt"] > tbody > tr > td:last-child
{
	border-left: 1px solid #D2D4D7;
}
.pivotTable .yDim td:last-child
{
	border-right-width: 0px;
}
.pivotTable .yDim td[data-hash]
{
	padding-left: 20px;
}

.pivotTable td.yDimH, .pivotTable td.xDimH, .pivotTable td.factH, .pivotTable td.inactH
{
	background-color: #D2D4D7;
	font-weight: bold;
}
.pivotTable .yDimH
{
	border-top: 1px solid #D2D4D7;
}
.pivotTable .xDimH 
{
	border-bottom-width: 0px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.pivotTable td.yDimH:hover, .pivotTable td.xDimH:hover, 
.pivotTable td.factH:hover, .pivotTable td.inactH:hover, .pivotTable td[data-index]:hover
{
	background-color: #e0e4e8 !important;
	cursor: pointer;
}
.pivotTable td.yDimH.filtered, .pivotTable td.xDimH.filtered, .pivotTable td.inactH.filtered
{
	background-color: #B5D7EF;
}

.pivotTable .headerWrap
{
	position: relative;
	overflow: hidden;
	padding: 0px 15px;
}
.pivotTable .headerWrap *[data-type="sort"]
{
	position: absolute;
	top: 2px;
	right: 0px;
}
.pivotTable .headerWrap *[data-type="filter"]
{
	position: absolute;
	top: 2px;
	left: 0px;
}
.pivotTable *[data-type="expand"]
{
	position: absolute;
	top: 2px;
	left: 0px;
	cursor: pointer;
}
.pivotTable .headerText
{
	overflow: hidden;
}

/*--------------- Styles for render icons using css sprites ---------------*/

.sprite-icon
{
	display: inline-block;
	position: relative;
	/*opacity: 0.8; */
	text-align: left;
	vertical-align: middle;
	overflow: hidden;
	direction: ltr;
}

.main-icon
{
	height: 18px; width: 18px;
}
.main-icon-img
{
	position: absolute;
}
.main-icon-img:before
{
	content: url(Images/sprite_main5.png);
}

.main-Refresh { left: -2px; top: -21px; }
.toolBtnNormal:hover .main-Refresh { left: -22px; top: -21px;}
.main-Save { left: -2px; top: -41px; }
.toolBtnNormal:hover .main-Save, .menuItem:hover .main-Save{ left: -22px; top: -41px; }
.main-AddNew { left: -2px; top: -62px; }
.toolBtnNormal:hover .main-AddNew { left: -22px; top: -62px; }
.main-Remove { left: -2px; top: -82px; }
.toolBtnNormal:hover .main-Remove { left: -22px; top: -82px; }
.main-Filter { left: -2px; top: -102px; }
.toolBtnNormal:hover .main-Filter { left: -22px; top: -102px; }
.main-FilterSet { left: -2px; top: -122px; }
.toolBtnNormal:hover .main-FilterSet { left: -22px; top: -122px; }
.main-Cancel { left: -2px; top: -142px; }
.toolBtnNormal:hover .main-Cancel{ left: -22px; top: -142px; }
.main-CancelClose { left: -2px; top: -162px; }
.toolBtnNormal:hover .main-CancelClose { left: -22px; top: -162px; }
.main-Search { left: -2px; top: -182px; }
.toolBtnNormal:hover .main-Search { left: -22px; top: -182px; }

.main-RecordAdd { left: -2px; top: -62px; }
.toolBtnNormal:hover .main-RecordAdd { left: -22px; top: -62px; }
.main-RecordDel {  left: -2px; top: -122px; }
.toolBtnNormal:hover .main-RecordDel { left: -22px; top: -122px; }
.main-RecordEdit { left: -2px; top: -202px; }
.toolBtnNormal:hover .main-RecordEdit { left: -22px; top: -202px; }
.main-RecordSave { left: -2px; top: -41px; }
.toolBtnNormal:hover .main-RecordSave { left: -22px; top: -41px; }

.main-PageFirst { left: -2px; top: -222px; }
.toolBtnNormal:hover .main-PageFirst { left: -22px; top: -222px; }
.main-PageLast { left: -2px; top: -242px; }
.toolBtnNormal:hover .main-PageLast { left: -22px; top: -242px; }
.main-PageNext { left: -2px; top: -262px; }
.toolBtnNormal:hover .main-PageNext { left: -22px; top: -262px; }
.main-PagePrev { left: -2px; top: -282px; }
.toolBtnNormal:hover .main-PagePrev { left: -22px; top: -282px; }

.main-Release { left: -2px; top: -302px; }
.toolBtnNormal:hover .main-Release { left: -22px; top: -302px; }
.main-Success { left: -2px; top: -322px; }
.main-Complete { left: -2px; top: -322px; }
.main-Fail { left: -2px; top: -342px; }
.main-Adjust { left: -2px; top: -362px; }
.toolBtnNormal:hover .main-Adjust { left: -22px; top: -362px; }

.main-Excel { left: -2px; top: -382px; }
.toolBtnNormal:hover .main-Excel { left: -22px; top: -382px; }

.main-Favorites { left: -2px; top: -402px; }
.main-FavoritesGray { left: -2px; top: -422px; }
.main-StarWhite { left: -2px; top: -442px; opacity:0.87;}
.main-StarGray { left: -2px; top: -442px; opacity:0.64; }
.toolModNormal:hover .main-StarGray { left: -2px; top: -442px; opacity:0.87; }
.main-icon[icon^="Favorites"] { width: 18px; height: 17px; }
.main-icon[icon^="Star"] { width: 18px; height: 17px; }

.main-Shedule { left: -2px; top: -502px; }
.toolsBtn:hover .main-Shedule, .toolBtnDD .main-Shedule { left: -22px; top: -502px; }
.main-Logout { left: -2px; top: -522px; }
.menuItem:hover .main-Logout { left: -22px; top: -522px; }

.main-DataEntry { left: -2px; top: -202px; }
.toolBtnNormal:hover .main-DataEntry, .ddSearchSelItem .main-DataEntry { left: -22px; top: -202px; }
.main-DataEntryF { left: -2px; top: -202px; }
.toolSubModNormal:hover .main-DataEntryF {left: -22px; top: -202px; }
.main-Process { left: -2px; top: -302px; }
.toolBtnNormal:hover  .main-Process { left: -22px; top: -302px; }
.main-ProcessF { left: -2px; top: -302px; }
.toolSubModNormal:hover  .main-ProcessF { left: -22px; top: -302px; }

.main-Report { left: -2px; top: -482px; }
.toolBtnNormal:hover .main-Report, .ddSearchSelItem .main-Report { left: -22px; top: -482px; }
.main-ReportF { left: -2px; top: -482px; }
.toolSubModNormal:hover .main-ReportF { left: -22px; top: -482px; }
.main-Settings { left: -2px; top: -462px; }
.toolBtnNormal:hover .main-Settings { left: -22px; top: -462px; }
.main-SettingsF { left: -2px; top: -462px; }
.toolSubModNormal:hover .main-SettingsF { left: -22px; top: -462px; }

.main-LevelUp { left: -2px; top: -542px; }
.toolBtnNormal:hover .main-LevelUp { left: -22px; top: -542px; }
.main-LevelDown { left: -2px; top: -562px; }
.toolBtnNormal:hover .main-LevelDown { left: -22px; top: -562px; }
.main-Html { left: -2px; top: -582px; }
.toolBtnNormal:hover .main-Html { left: -22px; top: -582px; }
.main-Pdf { left: -2px; top: -602px; }
.toolBtnNormal:hover .main-Pdf { left: -22px; top: -602px; }

.main-Copy { left: -2px; top: -622px; }
.toolsBtn:hover .main-Copy, .toolBtnDD .main-Copy, .menuItem:hover .main-Copy { left: -20px; top: -620px; }
.main-Cut { left: -2px; top: -642px; }
.toolBtnNormal:hover .main-Cut, .menuItem:hover .main-Cut { left: -22px; top: -642px; }
.main-Paste { left: -2px; top: -662px; }
.toolBtnNormal:hover .main-Paste, .menuItem:hover .main-Paste { left: -20px; top: -662px; }

.main-ArrowUp { left: -2px; top: -682px; }
.toolBtnNormal:hover .main-ArrowUp { left: -22px; top: -682px; }
.main-ArrowDown { left: -2px; top: -702px; }
.toolBtnNormal:hover .main-ArrowDown { left: -22px; top: -702px; }
.main-ArrowLeft { left: -2px; top: -722px; }
.toolBtnNormal:hover .main-ArrowLeft { left: -22px; top: -722px; }
.main-ArrowRight { left: -2px; top: -742px; }
.toolBtnNormal:hover .main-ArrowRight { left: -22px; top: -742px; }
.main-Reminder { left: -22px; top: -762px; }
.toolBtnNormal:hover .main-Reminder { left: -2px; top: -762px; }

.main-SyncTOC { left: -2px; top: -782px; }
.toolBtnNormal:hover .main-SyncTOC { left: -22px; top: -782px; }
.main-Upload { left: -2px; top: -802px; }
.toolBtnNormal:hover .main-Upload { left: -22px; top: -802px; }
.main-Search2 { left: -2px; top: -822px; opacity:0.64; }
.toolBtnNormal:hover .main-Search2 { left: -22px; top: -822px; }
.main-Redo { left: -2px; top: -842px; }
.toolBtnNormal:hover .main-Redo { left: -22px; top: -842px; }

.main-NoteEmpty { left: -2px; top: -862px; }
.toolBtnNormal:hover .main-NoteEmpty { left: -22px; top: -862px; }
.main-Note { left: -2px; top: -882px; }
.toolBtnNormal:hover .main-Note { left: -22px; top: -882px; }
.main-Files { left: -2px; top: -902px; }
.toolBtnNormal:hover .main-Files { left: -22px; top: -902px; }
.main-FilesEmpty { left: -2px; top: -922px; }
.toolBtnNormal:hover .main-FilesEmpty { left: -22px; top: -922px; }
.main-Activity { left: -2px; top: -942px; }
.toolBtnNormal:hover .main-Activity { left: -22px; top: -942px; }
.main-ActivityEmpty { left: -2px; top: -962px; }
.toolBtnNormal:hover .main-ActivityEmpty { left: -22px; top: -962px; }
.main-Task { left: -2px; top: -982px; }
.toolBtnNormal:hover .main-Task, .menuItem:hover .main-Task { left: -22px; top: -982px; }
.main-Event { left: -2px; top: -1002px; }
.toolBtnNormal:hover .main-Event, .menuItem:hover .main-Event { left: -22px; top: -1002px; }
.main-Phone { left: -2px; top: -1022px; }
.toolBtnNormal:hover .main-Phone { left: -22px; top: -1022px; }
.main-Chat  { left: -2px; top: -1042px; }
.toolBtnNormal:hover .main-Chat  { left: -22px; top: -1042px; }
.main-Meeting  { left: -2px; top: -1062px; }
.toolBtnNormal:hover .main-Meeting  { left: -22px; top: -1062px; }
.main-MailReceive  { left: -2px; top: -1082px; }
.toolBtnNormal:hover .main-MailReceive { left: -22px; top: -1082px; }
.main-MailSend  { left: -2px; top: -1102px; }
.toolBtnNormal:hover .main-MailSend  { left: -22px; top: -1102px; }
.main-Dashboard { left: -2px; top: -1122px; }
.main-GetFile { left: -2px; top: -1142px; }
.toolBtnNormal:hover .main-GetFile { left: -22px; top: -1142px; }
.main-LinkWB { left: -2px; top: -1162px; }
.toolBtnNormal:hover .main-LinkWB { left: -22px; top: -1162px; }
.main-Collapse { left: -2px; top: -1182px;}
.main-Expand { left: -2px; top: -1202px; }
.main-Roles { left: -2px; top: -1222px; }
.main-Folder { left: -2px; top: -1242px; }
.main-Preview { left: -2px; top: -1260px; }

.main-PageFirstR { left: -2px; top: -1279px; }
.toolBtnNormal:hover .main-PageFirstR { left: -22px; top: -1279px; }
.main-PageLastR { left: -2px; top: -1300px; }
.toolBtnNormal:hover .main-PageLastR { left: -22px; top: -1300px; }
.main-PageNextR { left: -2px; top: -1319px; }
.toolBtnNormal:hover .main-PageNextR { left: -22px; top: -1319px; }
.main-PagePrevR { left: -2px; top: -1337px; }
.toolBtnNormal:hover .main-PagePrevR { left: -22px; top: -1337px; }
.main-outlookLogOut { left: -2px; top: -1354px; }
.toolBtnNormal:hover .main-outlookLogOut { left: -22px; top: -1354px; }
.main-outlookHelp { left: -0px; top: -1372px; }
.toolBtnNormal:hover .main-outlookHelp { left: -22px; top: -1374px; }

/*------------------ Control icons CSS sprites ------------------*/
.control-icon
{
	height: 12px; width: 12px;
}
.control-icon-img
{
	position: absolute;
}
.control-icon-img:before
{
	content: url(Images/sprite_control5.png);
}

.control-Empty { left: -24px; top: -3px; }
.control-Error { left: -6px; top: -19px; }
.control-Warning { left: -24px; top: -19px; }
.control-Info { left: -6px; top: -36px; }
.control-Required { left: -24px; top: -36px; }
.control-MenuCheck { left: -6px; top: -52px; }
.control-MenuUncheck { left: -24px; top: -3px; }
.control-SubMenu { left: -24px; top: -52px; }
.control-ScrollUp { left: -6px; top: -66px; }
.control-ScrollDown { left: -24px; top: -66px; }
.control-icon[icon="Error"] { width: 10px; height: 10px; }
.control-icon[icon="Warning"] { width: 10px; height: 10px; }
.control-icon[icon="Info"] { width: 10px; height: 10px; }
.control-icon[icon="Required"] { width: 10px; height: 10px; }
.control-icon[icon="MenuCheck"] { width: 10px; height: 10px; }
.control-icon[icon="MenuUncheck"] { width: 10px; height: 10px; }
.control-icon[icon="SubMenu"] { width: 10px; height: 10px; }
.control-icon[icon="ScrollUp"] { width: 10px; height: 10px; }
.control-icon[icon="ScrollDown"] { width: 10px; height: 10px; }


.control-SelectorN { left: -2px; top: -103px; opacity:0.64; cursor:pointer; }
.control-SelectorH { left: -2px; top: -103px; opacity:0.87; cursor:pointer; }
.control-SelectorP { left: -2px; top: -127px; }
.control-SelectorD { left: -2px; top: -103px; opacity:0.26; cursor:pointer; }
.control-icon[icon^="Selector"] { width: 17px; height: 17px;}

.control-EditN { left: -2px; top: -151px; opacity:0.64; cursor:pointer;  }
.selector .editBtnCont > div:hover .control-EditN { left: -24px; top: -151px; cursor:pointer; }
.control-EditH { left: -24px; top: -151px; cursor:pointer; }
.dropDown .control-EditH { left: -2px; opacity: 1; }
.control-EditP { left: -2px; top: -151px;}
.control-EditD { left: -2px; top: -151px; opacity:0.26; cursor:pointer; }
.control-icon[icon^="Edit"] { width: 17px; height: 17px; margin-top:2px; }


.control-DropMenuN { left: -5px; top: -199px; opacity:0.64; cursor:pointer;  }
.control-DropMenuH { left: -25px; top: -199px; opacity:0.87; cursor:pointer; }
.control-DropMenuP { left: -5px; top: -223px; }
.control-DropMenuD { left: -25px; top: -223px; opacity:0.26; cursor:pointer;}
.control-icon[icon^="DropMenu"] { width: 10px; height: 17px; margin-top:2px;}

.control-DropDownN { left: -2px; top: -247px; opacity:0.64; cursor:pointer; }
.control-DropDownH { left: -2px; top: -247px; opacity:0.87; cursor:pointer; }
.control-DropDownP { left: -2px; top: -247px; }
.control-DropDownD { left: -2px; top: -247px; opacity:0.26; cursor:pointer;}
.control-icon[icon^="DropDown"] { width: 17px; height: 17px; }

.control-ClearN { left: -22px; top: -247px; opacity:0.64; cursor:pointer; }
.control-ClearH { left: -22px; top: -247px; opacity:0.87; cursor:pointer; }
.control-ClearP { left: -22px; top: -247px; }
.control-ClearD { left: -22px; top: -247px; opacity:0.26; cursor:pointer;}
.control-icon[icon^="Clear"] { width: 17px; height: 17px; margin-top: 2px;}

.control-Filter { left: -3px; top: -264px; }
.control-FilterSortDesc { left: -3px; top: -279px; }
.control-FilterSortAsc { left: -22px; top: -279px; }
.control-icon[icon="FilterSortDesc"] { width: 15px; height: 12px; }
.control-icon[icon="FilterSortAsc"] { width: 15px; height: 12px; }

.control-ArrowDown { left: -6px; top: -312px; }
.toolsBtn:hover .control-ArrowDown, .toolBtnDropP .control-ArrowDown { left: -24px; top: -312px; }
.control-icon[icon="ArrowDown"] { width: 10px; height: 10px;}
.control-HiddenItems { left: -6px; top: -326px; }
.ButtonH .control-HiddenItems, .toolTabNormal:hover .control-HiddenItems, .toolTabDD .control-HiddenItems{ left: -24px; top: -326px; }
.toolSysNormal .control-HiddenItems { left: -24px; top: -326px; }
.toolSysNormal:hover .control-HiddenItems, .toolModNormal:hover .control-HiddenItems { left: -6px; top: -326px; }
.control-icon[icon="HiddenItems"] { width: 10px; height: 12px;}
.toolSysNormal .control-icon[icon="HiddenItems"], .toolModNormal .control-icon[icon="HiddenItems"] { width: 10px; height: 12px; opacity: 0.64; }
.toolSysNormal:hover .control-icon[icon="HiddenItems"], .toolModNormal:hover .control-icon[icon="HiddenItems"] { opacity: 0.87; }

.control-LocalMenu { left: -24px; top: -393px; }
.control-CurrentRow { left: -3px; top: -417px; }
.control-EditRow { left: -23px; top: -417px; }
.control-NewRow { left: -3px; top: -437px; }
.control-Search { left: -23px; top: -437px; }
.control-icon[icon="EditRow"] { width: 12px; height: 12px; }
.control-icon[icon="LocalMenu"] { width: 12px; height: 15px; }
.control-icon[icon="Search"] { width: 14px; height: 14px; }

.control-GridUncheck { left: -4px; top: -458px; }
.control-GridCheck { left: -24px; top: -458px; }
.control-SortDesc { left: -4px; top: -474px; }
.control-SortAsc { left: -24px; top: -474px; }
.control-RedArrowUp { left: -4px; top: -490px; }
.control-RedArrowDown { left: -24px; top: -490px; }

.control-RowFile { left: -3px; top: -509px; }
.control-RowFileEmpty { left: -23px; top: -509px; }
.control-RowNote { left: -3px; top: -528px; }
.control-RowNoteEmpty { left: -23px; top: -528px; }
.control-RowInserted { left: -3px; top: -547px; }
.control-RowModified { left: -23px; top: -547px; }
.control-RowDeleted { left: -3px; top: -564px; }
.control-DataEntry { left: -24px; top: -564px; }

.control-Mail { left: -3px; top: -582px; }
.control-MailReply { left: -24px; top: -582px; }
.control-Event { left: -3px; top: -601px; }
.control-History { left: -23px; top: -601px; }
.control-Task { left: -3px; top: -620px; }
.control-Phone { left: -23px; top: -620px; }
.control-Complete { left: -3px; top: -639px; }
.control-Reminder { left: -23px; top: -639px; }
.control-PriorityLow { left: -3px; top: -657px; }
.control-PriorityHigh { left: -23px; top: -657px; }

.control-WebN { left: -2px; top: -673px; opacity:0.5; cursor:pointer; }
.control-WebH { left: -2px; top: -673px; opacity:0.8; cursor:pointer; }
.control-WebP { left: -2px; top: -673px; }
.control-WebD { left: -2px; top: -673px; opacity:0.2; cursor:pointer; }
.control-icon[icon^="Web"] { width: 17px; height: 17px; }

.control-MailSelectorN { left: -22px; top: -673px;  opacity:0.5; cursor:pointer; }
.control-MailSelectorH { left: -22px; top: -673px; opacity:0.8; cursor:pointer; }
.control-MailSelectorP { left: -22px; top: -673px; }
.control-MailSelectorD { left: -22px; top: -673px; opacity:0.2; cursor:pointer; }
.control-icon[icon^="MailSelector"] { width: 17px; height: 17px; }

.control-Close { left: -21px; top: -694px; }
.control-CloseB { left: -4px; top: -697px; }
.control-Maximize { left: -21px; top: -717px; }
.control-icon[icon="Close"] { width: 20px; height: 18px; }
.control-icon[icon="Maximize"] { width: 20px; height: 18px; }

.control-NextMonth { left: -2px; top: -760px; }
.control-PrevMonth { left: -22px; top: -760px; }
.control-NextYear { left: -2px; top: -778px; }
.control-PrevYear { left: -22px; top: -778px; }
.control-icon[icon="NextMonth"] { width: 16px; height: 16px; }
.control-icon[icon="PrevMonth"] { width: 16px; height: 16px; }
.control-icon[icon="NextYear"] { width: 16px; height: 16px; }
.control-icon[icon="PrevYear"] { width: 16px; height: 16px; }

.control-HideFrame { left: -2px; top: -797px; }
.control-ShowFrame { left: -24px; top: -797px; }
.control-PriorityHead { left: -3px; top: -814px; }
.control-CompleteHead { left: -23px; top: -814px; }
.control-ReminderHead { left: -3px; top: -831px; }

.text-OneSection { left: -1px; top: -445px; }
.text-TwoSections { left: -22px; top: -445px; }
.text-LeftSection { left: -23px; top: -461px; }
.text-RightSection { left: -1px; top: -461px; }
.text-ThreeSections { left: -1px; top: -477px; }
.text-CentralSection { left: -23px; top: -477px; }

.text-RowBefore { left: -22px; top: -404px; }
.text-RowAfter { left: -1px; top: -404px; }
.text-ColumnBefore { left: -22px; top: -382px; }
.text-ColumnAfter { left: -1px; top: -382px; }
.text-DelRow { left: -1px; top: -426px; }
.text-DelColumn { left: -22px; top: -426px; }

/*------------------ Tree control CSS sprites ------------------*/
.tree-icon
{
	height: 16px; width: 16px;
}
.tree-icon-img
{
	position: absolute;
}
.tree-icon-img:before
{
	content: url(Images/sprite_tree5.png);
}

.tree-NoExpand { left: -21px; top: 0px; }
.tree-Expand { left: -1px; top: -22px; }
.tree-Collapse { left: -21px; top: -22px; }
.tree-ExpandL { left: -1px; top: -43px; }
.tree-CollapseL { left: -21px; top: -43px; }

.tree-icon[icon="NoExpand"] { width: 18px; height: 18px; }
.tree-icon[icon="Expand"] { width: 18px; height: 18px; opacity:0.64;}
.tree-icon[icon="Collapse"] { width: 18px; height: 18px; opacity:0.64;}
.tree-icon[icon="ExpandL"] { width: 18px; height: 18px; }
.tree-icon[icon="CollapseL"] { width: 18px; height: 18px; }

.tree-DashI { left: -1px; top: -66px; }
.tree-DashR { left: -1px; top: -92px; }
.tree-Dash { left: -1px; top: -116px; }
.tree-DashL { left: -1px; top: -141px; }
.tree-DashT { left: -1px; top: -168px; }
.tree-icon[icon^="Dash"] { width: 18px; height: 18px; }

.tree-Root { left: -1px; top: -202px; }
.tree-RootS { left: -22px; top: -202px; }
.tree-Folder { left: -3px; top: -224px; }
.tree-FolderD { left: -23px; top: -224px; }
.tree-FolderS { left: -3px; top: -242px; }
.tree-Leaf { left: -23px; top: -242px; }
.tree-LeafD { left: -3px; top: -260px; }
.tree-LeafS { left: -23px; top: -260px; }
.tree-Editor { left: -23px; top: -67px; }
.tree-Component { left: -23px; top: -89px; }

.tree-FolderPublish { left: -2px; top: -278px; }
.tree-FolderUnPublish { left: -23px; top: -278px; }
.tree-LeafPublish { left: -2px; top: -296px; }
.tree-LeafUnPublish { left: -23px; top: -296px; }
.tree-Deleted { left: -2px; top: -315px; }
.tree-BoxSend { left: -22px; top: -315px; }
.tree-BoxMail { left: -2px; top: -337px; }
.tree-BoxIn { left: -22px; top: -337px; }
.tree-BoxOut { left: -2px; top: -358px; }
.tree-BoxRemove { left: -22px; top: -358px; }
.tree-Dac { left: -2px; top: -377px; }
.tree-Field { left: -22px; top: -377px; }
.tree-Screen { left: -2px; top: -394px; }

/*------------------ Text control CSS sprites ------------------*/
.text-icon
{
	height: 16px; width: 16px;
}
.text-icon-img
{
	position: absolute;
}
.text-icon-img:before
{
	content: url(Images/sprite_text5.gif);
}

.text-Bold { left: -2px; top: -15px; }
.text-Italic { left: -23px; top: -15px; }
.text-Underline { left: -2px; top: -31px; }
.text-Strike { left: -23px; top: -31px; }
.text-Sub { left: -2px; top: -48px; }
.text-Super { left: -23px; top: -48px; }
.text-Ordered { left: -2px; top: -68px; }
.text-UnOrdered { left: -23px; top: -68px; }
.text-IndentL { left: -2px; top: -89px; }
.text-IndentR { left: -23px; top: -89px; }

.text-Anchor { left: -2px; top: -109px; }
.text-Link { left: -23px; top: -109px; }
.text-Code { left: -2px; top: -129px; }
.text-CodeBox { left: -23px; top: -129px; }
.text-Box { left: -2px; top: -148px; }
.text-BoxCode { left: -23px; top: -148px; }
.text-BoxHint { left: -2px; top: -167px; }
.text-BoxWarn { left: -23px; top: -167px; }

.text-PageBreak { left: -2px; top: -189px; }
.text-HR { left: -23px; top: -189px; }
.text-BR { left: -2px; top: -209px; }
.text-TOC { left: -23px; top: -209px; }
.text-H1 { left: -2px; top: -225px; }
.text-H2 { left: -23px; top: -225px; }
.text-H3 { left: -2px; top: -241px; }
.text-H4 { left: -23px; top: -241px; }

.text-JustifyCenter { left: -2px; top: -259px; }
.text-JustifyFull { left: -23px; top: -259px; }
.text-JustifyLeft { left: -2px; top: -278px; }
.text-JustifyRight { left: -23px; top: -278px; }
.text-ColorText { left: -2px; top: -298px; }
.text-ColorBg { left: -23px; top: -298px; }
.text-Copy { left: -2px; top: -320px; }
.text-Cut { left: -23px; top: -320px; }
.text-Paste { left: -2px; top: -341px; }
.text-Params { left: -23px; top: -341px; }
.text-TextPaste { left: -2px; top: -360px; }


input[type=text]::-ms-clear 
{
	display: none;
	width : 0; height: 0;
}

.RichTextEditor iframe{
	width: 100%;
}
.RichTextWizard .SmartPanelCN
{
 vertical-align: top;
}
.RichTextWizard .GalleryPreview{
	width: 100px;
	height: 100px;
	margin: 13px 40px 0px 40px;
}
.RichTextWizard .GalleryPreview.selected-image{
	width: 100px;
	height: 100px;
	margin: 11px 39px 0px 39px;
	border: solid 1px !important;
}
.RichTextWizard .ImageGallery .image-frame{
	float:left;
}
.RichTextWizard .ImageGallery .image-caption{
	overflow: hidden;
	width: 160px;
	height: 18px;
	padding: 0px 10px;
	text-overflow: ellipsis;
	text-align: center;
}
.RichTextWizard .ImageGallery .image-caption-inner {
    -webkit-column-width: 160px;
    column-width: 160px;
    height: 100%;
}
.RichTextWizard .ImageGallery {
	overflow: auto;
}

.RichTextEditor {
	width: 100%;
}
.RichTextWizard .MainTable {
	width: 100%;
}

.RichTextWizard .splitterLC {
	height: 400px;
}
.RichTextWizard .splitterLC + td {
}

.RichTextWizard .splitterRC {
	height: 400px;
}
.RichTextWizard .ImageGallery[id$=gallery1] {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 65px;
	bottom: 0px;
	background-color: white;
}

.RichTextWizard  .SearchBox
{
	margin-bottom: 5px;
}
.RichTextWizard .menuIsland.menuIslandV {
	position: absolute;
	top: 0px;
	bottom: 0px;
}

.richTextBar {
/*	background: white;*/
	background: #F5F7F8;
	border-bottom: solid 1px #BBBBBB;
}
.richTabTail {
	/*height: 32px;
	border-bottom: solid 1px #BBBBBB;*/
	text-align: right;
    padding: 0px 15px;
}
.richTextBar .toolsBtn {
	background-color: inherit;
	margin: 3px;
	color: RGBA(0,0,0,0.87);
	white-space: nowrap;
}

.richTextBar .toolsBtn:not([enabled="false"]):hover {
	opacity: 1;
	background-color: #007acc;
	color: #FFFFFF;
}
.richBarNormal {
	color: RGBA(0,0,0,0.64);
	border-width: 0px 1px 1px 1px;
	cursor: default;
	height: 18px;
	padding: 7px 15px;
	margin: 3px;
}

.richBarPushed {
	color: #626262;
	border-style: none solid solid solid;
	border-width: 0px 1px 1px 1px;
	border-color: #DCDCDC #DCDCDC #F5F7F8 #DCDCDC;
	cursor: default;
	height: 17px;
	padding: 7px 14px 7px 14px;

	background: #F5F7F8;
	cursor: default;
}
li:first-child .richBarPushed {
	border-style: none solid solid none;
	border-width: 0px 1px 1px 0px;
	padding: 7px 14px 7px 15px;
}

.toolBar.richTextBar {
	background: white;
}
.toolBar.richTextBar .toolsBtn {
	border: none;
	background-color: #F5F7F8;
}

.richIcon {
	display: inline-block;
	background-image: url(Images/sprite_main5.png);
	background-repeat: no-repeat;
	width: 15px;
}
.richAttach {
	background-position: -2px -122px;
}
.richImg {
	background-position: -2px -1120px;
}
.richScreen {
	background-position: -24px -1032px;
}
.richArticle {
	background-position: -24px -1054px;
}

.RichImageProps input[type="checkbox"] + label {
	width: inherit
}

.OKCancelPanel .fld-l{
	width: 90px;
}
.OKCancelPanel .fld-c {
	margin-left: 90px;
}

.labelH.shiftDown, .RichTextWizard label:only-child {
	margin-top:5px;
}
.RichTextWizard .splitterRC > div > div > div:first-child {
	position:absolute;
	bottom: 48px;
	top: 0px;
	width: 100%;
}

.RichImageProps  .cell-ph2:first-child div:first-child > span, .RichImageProps  .cell-pn:first-child  div:first-child > span  {
	margin-top: 8px;
}
.RichImageProps   div+div > span {
	margin-top: 12px !important;
}
.RichImageProps  div:first-child > input[type=text] {
	margin-top: 1px;
}

.RichTextWizard .richBottom {
	position: absolute;
	bottom: 0px;
	right: 0px;
}
.richLookup {
	position: absolute;
}
.RichLinkProps button {
	margin: 5px;
}

.richTabTail > .langIndi {
     cursor:pointer;
     color:blue;
     text-decoration:underline;
	 line-height: 1.5em;
}


*:focus {
    outline: none;
}

.tlbr1, .tlbr2, .tlbr3, .tlbr4 {
	min-height: 34px;
}
.tlbr0 {
	display: none;
}


.GrayBox {
	border: solid 1px #CCCCCC;
	background-color: #F9F9F9;
	padding: 4px;
	margin: 4px 4px 0px 4px;
	width: 98%;
}
.RichImageProps .stack-h.stack-pout-h {
	margin-bottom: 0px;
}
.richBar2{
	font-size: 10pt;
	/*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);*/
	background: #F5F7F8;
	border: 1px solid #D2D4D7;
	/*margin: 5px 50px;
	padding: 5px;*/
	min-width: 80px;
	word-wrap: break-word;
	z-index: 4000;
	position: absolute;
}


.richBar2 .arrow.top{
top: -16px;
bottom: auto;
}

.richBar2 .arrow {
width: 50px;
height: 16px;
overflow: hidden;
position: absolute;
/*margin-left: -35px;*/
bottom: -16px;
}


.richBar2 .arrow.top:after{
bottom: -20px;
top: auto;
}

.richBar2 .arrow:after{
background: #F5F7F8;
border: 1px solid #D2D4D7;
content: "";
position: absolute;
left: 20px;
top: -20px;
width: 25px;
height: 25px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
tranform: rotate(45deg);
}

.inittable td {background-color: #FFFFFF;}
.inittable .selected {background-color: #007acc;}
.inittable td {min-width: 20px;}
.inittable  {border: solid 1px #D2D4D7; empty-cells: show;}

.RichTextEditor [data-cmd=Edit] > div {
	opacity: 1.0;
}

.RichTextEditor [data-cmd=undo] > div{
	padding: 5px 1px 5px 5px;
}
.RichTextEditor [data-cmd=redo] > div{
	padding: 5px 5px 5px 1px;
}

.InsertCode label {
	margin-top:5px;
}

.InsertCode .cell-pn .cell-ph:first-child .fld-lc .fld-l {
	padding-left:0px;
}
.InsertCode .cell-pn .cell-ph:first-child .fld-lc .fld-c {
	margin-left: 70px;
	margin-right: 50px;
}
.InsertCode .cell-pn .fld-lc .fld-l {
	width: 70px;
	padding-left:50px;
}
.InsertCode .cell-pn .fld-lc .fld-c {
	margin-left: 120px;
	margin-right: 0px;
}
.ImagePreview {
	margin: auto;
}

.iframeProps .cell-ph label {
	padding-top: 5px;
}
.tblSize .fld-lc + .fld-lc {
	margin-top: 10px;
}
.inittable + div div:first-child, .inittable + div + div div:first-child {
	margin-top:6px;
}

.inittable + .fld-lc,  .inittable + .fld-lc + .fld-lc {
	margin-top: 6px;
}

.inittable + div + div + button {
	margin-left: 182px;
	margin-top: 6px;
}

.ImageGallery{
	background-color: white;
	border: solid 1px #D2D4D7;
}
.rowBefore, .rowAfter, .colBefore, .colAfter, .delRow, .delCol {
	background-size: 20px 20px;
    background-repeat: no-repeat;
	background-position-y: 3px;
	background-position-x: 7px;
	/*opacity: 1;*/
	padding-left: 15px;
	padding-right: 15px;
}

.imageUploader .imgleft, .imageUploader .imgright {
	position:absolute; 
	bottom: 5px;
	text-decoration: none;
	border-bottom: 1px dotted;
	cursor: pointer;
	user-select: none;
	color: #1a3dc1;
}
.imageUploader .imgleft {
	left: 10px;
}
.imageUploader .imgright {
   right: 10px;
}
.imageUploader .mainDiv {
	border: #D2D4D7 solid 1px;
	position:relative;
	margin: 3px 0px 0px 0px;
	background-color: white;
}
.imageUploader .imgDiv {
	position:relative;
	display: inline-block;
	overflow: hidden;
	margin-top: 16px;
	margin-left: 24px;
	margin-right: 25px;
	margin-bottom: 42px;
}
.imageUploader .imgDiv img{
	position:absolute;
}

.imageUploader .noImg, .imageUploader .selImg {
	font-size: x-large;
	display: table-cell;
	vertical-align: middle;
}
/*.imageUploader table {
	margin: 0 auto;
}*/
.imageUploader .textDiv {
	margin: 0 auto;
	text-align: center;
	position:absolute;
	bottom: 0px;
}
.imageUploader {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.fileUploader .textCell {
    border-left:solid 1px #D2D4D7;
    border-top:solid 1px #D2D4D7;
    border-bottom:solid 1px #D2D4D7;
    min-width:100px;
    color: rgba(0,0,0, 0.5); 
    font-style: italic;
    background-color: white;
}
.fileUploader .browseCell {
    border-right:solid 1px #D2D4D7;
    border-top:solid 1px #D2D4D7;
    border-bottom:solid 1px #D2D4D7; 
    background-color:#D2D4D7;
}
.fileUploader .spacerCell {
    width:2px
}
.fileUploader .uploadCell {
    border:solid 1px #D2D4D7;
    background-color:#D2D4D7;
}
.fileUploader .uploadCell button{
    display:none;
}
.fileUploader .browseCell:hover, .fileUploader .uploadCell:hover, .fileUploader .browseCell.helicopter, .fileUploader .uploadCell.helicopter {
    background-color:#007acc;
    color: RGBA(255,255,255,0.87);
}
.fileUploader .browseCell, .fileUploader .uploadCell {
    text-align:center;
    cursor: pointer;
    padding: 0px 7px;
    width: 1px;
}
.fileUploader td {
    font-size: 10pt; 
    font-family: Arial,sans-serif;
    height: 24px;
}

.fileUploader .messageDiv.selected
{
	font-style: normal;
	color: black;
}
.fileUploader .uploadDiv {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	overflow:hidden;
}
.fileUploader input[type="file"] {
	z-index: 2000;
	opacity: 0;
	width: 100%;
}

.fileUploader [icon="ClearN"] {
	margin: auto;
    position: absolute;
	right: 0px;
	z-index: 2001;
}
.fileUploader .innerDiv, .fileUploader .textCell {
    position: relative;
}

table.rich > tbody > tr > td, table.rich > tr > td 
{
	overflow: hidden;
	padding: 0px;
	vertical-align: top;
	position: relative;
}
table.rich
{
	outline-style: none;
	background-color: white;
}
.rich div.htmlviewinner
{
	position: absolute;
	overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
	width: 100%;
	word-wrap: break-word;
}	
.rich div.htmlviewinner div.htmlviewinner
{ position: initial; overflow-x: initial; overflow-y: initial; padding: initial; width: initial; word-wrap: initial; }

.GridMain.Dash .GridHeader, .GridMain.Dash .GridRow, .GridMain.Dash .GridHeaderCell
{
	border-top:none;
	border-left:none;
	border-right:none;
	font-size: 10pt;
}
.Dashboards.design .GridMain.Dash  .GridHeaderCell td:hover/*, .GridMain.Dash  .GridContentCell tr:hover td*/
{
	background-color:#F5F7F8;
}
.GridMain.Dash .GridContentCell
{
	border-bottom:none;
}

.Dashboards:not(.design) .GridMain.Dash .GridHeader:hover
	{
		opacity: 1;
		background-color: rgb(255, 255, 255);

        cursor:default;
	}
.Dashboards.design .GridMain.Dash .GridHeader:hover
{
        cursor:pointer;
}
.GridMain.Dash .GridHeader
/*.Dash2GridHeadRow*/
{
color: RGBA(0,0,0,0.87);
    background-color: White;
    border-bottom: #e0e4e8 1px Solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(224, 224, 224);
    font-weight: 600;
    padding: 6px 3px;
	white-space:nowrap;
}
.GridMain.Dash .GridRow:not(.GridHeader)
/*.Dash2GridRow:not(.Dash2GridHeadRow)*/
{
	background-color: #FFFFFF;
    border-bottom: #e0e4e8 1px dotted;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: rgb(224, 224, 224);
    overflow: hidden;
    padding: 3px 6px;
    height: 17px;
    vertical-align: bottom;
    text-overflow: ellipsis;
	white-space:nowrap;
}
.GridMain .lang, .GridMainT .lang
{
	float:right; position:relative; padding:0px 5px; background-color:inherit;
}
.rtl .GridMain .lang, .rtl .GridMainT .lang
{
	float:left; position:relative; padding:0px 5px; background-color:inherit;
}

table[id$=L10nEditor] input[type=text]
{
	margin: 5px;
}

/*------------------ Spinner CSS ------------------*/
@keyframes spinner 
{
	to { transform: rotate(360deg); }
}
 
@-webkit-keyframes spinner 
{
	to { -webkit-transform: rotate(360deg); }
}
 
.spinner 
{
	min-width: 24px;
	min-height: 24px;
}

.spinner:before 
{
	content: 'Loading…';
	position: absolute;
	top: 50%; left: 50%;
	width: 24px; height: 24px;
	margin-top: -16px;
	margin-left: -16px;
}

.spinner:not(:required):before 
{
	content: '';
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, .3);
	border-top-color: rgba(0, 0, 0, .6);
	animation: spinner .6s linear infinite;
	-webkit-animation: spinner .6s linear infinite;
}
.GridEditorText.multiLang
{
	padding-right: 25px;
}

.GridEditorText.multiLangRTL
{
	padding-left: 25px;
}
.empty-frame{
	display:table;
	width:100%;
	height:100%;
}
.empty-inner{
	display:table-cell;
	text-align:center;
	vertical-align:middle;
}
.empty-plaque{
	background-color: white;
	display:inline-block;
    border: solid 1px #bdbdbd;
    border-radius: 3px;
	font-size: 10pt;
	font-family: Arial;
    background-repeat: no-repeat;
    background-position: right 8px top 50%;
    padding: 20px 70px 20px 30px;
	text-align:left;
}
.empty-plaque > span {
	display:block;
	margin: 10px 0px;
}
.empty-plaque .part1 {
	font-weight: bold;
	font-size: 11pt;
	color: rgba(0,0,0,0.54);
}
.empty .empty-plaque, .inq-filter-add .empty-plaque, .inq-add .empty-plaque{
    background-image: url(../../Icons/ListAddIcon.svg);
}
.inq-filter .empty-plaque, /*gray no more*/ .emp-selector .empty-plaque, .inq .empty-plaque, .incomplete .empty-plaque {
	background-image: url(../../Icons/ListEmptyIcon.svg);
}
/*.emp-selector .empty-plaque, .inq .empty-plaque, .incomplete .empty-plaque{
	padding: 2px 15px 0px 38px;
	background-position: 10px 50%;
	background-image: url(../../Icons/Info.svg);
}*/
.inq .empty-plaque, .incomplete .empty-plaque, .emp-selector .empty-plaque, .empty-plaque .part2 {
	color: rgba(0,0,0,0.54);
}
/*.inq .empty-plaque .part1, .incomplete .empty-plaque .part1, .emp-selector .empty-plaque .part1 {
	line-height: 25px;
	font-weight: normal;
}*/
/*.empty-frame.inq, .empty-frame.incomplete, .empty-frame.emp-selector{
    background-color: #e0e0e0;
}*/
.inq-filter-add.under420 .empty-plaque, .inq-filter.under380 .empty-plaque, .empty.under240 .empty-plaque, .inq-add.under400 .empty-plaque, .search .empty-plaque{
	padding: 55px 15px 0px 15px;
	background-position: 50% 7px;
	background-origin: border-box;
	text-align: center;
}
.search .empty-plaque{
	border:none;
	background-image: url('../../Icons/SearchIcon.svg');
}

.fold-arrow  > span
{
	background-image: url(Images/sprite_main5.png);
}
.too-many-images{
	clear: both;
    height: 50px;
    text-align: center;
    line-height: 40px;
}
