/** Add css rules here for your application. */

div {
	/** Wy��czenie zaznaczania we wszystkich div'ach **/
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.bodyElement {
	background-color: black;
	background-image: url('img/tabs_emptybck.png');
	background-repeat: repeat-y;
	background-position: 5px 10px;

	text-align:center;
	margin: 0px;
	padding: 0px;
	border: 0px;
}

.pseudoTabLabel {
	padding-top: 8px;
	cursor: pointer;
	font-size: 25px;
	text-align: center;
}
.activePseudoTab:first-letter {
	font-size:30px;
	color:red;
}
.activePseudoTab {
	color:blue;
	text-decoration: underline;
}
/** Example rules used by the template application (remove for your app) */

.tabButton {
	/**t�o przycisk�w na sta�e*/
	/**background-image: url('img/tab_background.png');**/
	background-color: #383838;
	border-right: 5px solid #57c7f0;
	background-repeat: no-repeat;
	height: 95px;
	width: 95px;
	cursor: pointer;
	color: #8b8b8b;
}

.tabButton img, .tabButtonSelected img {
	padding-top: 12px;
    width: 48px;
    height: 48px;
}

.tabButton:HOVER {
	/**background-image: url('img/tab_background_hover.png');**/
	background-color: #414141;
	border-right: 5px solid #fbb622;
	background-repeat: no-repeat;
	height: 95px;
	width: 95px;
	color: #FFFFFF;
	-webkit-transition: all 110ms ease-out;
	-moz-transition: all 110ms ease-out;
	-ms-transition: all 110ms ease-out;
	-o-transition: all 110ms ease-out;
	transition: all 110ms ease-out;
	
}

.tabButtonSelected {
	/**background-image: url('img/tab_background_selected.png');**/
	/**t�o przycisku zaznaczonego**/
	border-right: 5px solid #57c7f0;
	background-color: #57c7f0;
	//**border-right: 5px solid #f08221;**/
	background-repeat: no-repeat;
	height: 95px;
	width: 95px;
	cursor: default;
	color: #FFFFFF;
	
}

.tabHolder {
	height:100%;
	width:95px;
	background-color: #383838;
	border-right: 5px solid #57c7f0;
	/**background-image: url('img/tabs_emptybck.png');**/
	background-repeat: repeat-y;
}

.subTabHolder {
	/**height:100%;**/
	width:95px;
	background-color: #383838;
	border-right: 5px solid #57c7f0;
	/**background-image: url('img/tabs_emptybck.png');**/
	background-repeat: repeat-y;
	margin-top: 21px;
}

.functionsButton {
/**przyciski list nie wybrane**/
	position:relative;
	background-color: #e5e5e5;
	border-top: 1px solid #BDBDBD;
	border-bottom: 1px solid #BDBDBD;    
	margin: 0px 0px -1px;
	height: 48px;
	/**width: 251px;**/
	cursor: pointer;
	color: #6b6b6b;	
}

.functionsButton:HOVER {
/**przyciski list najechane**/
	background-color: #57c7f0;
	color: #FFFFFF;
	/**border: 3px solid #17b5e2;**/
	/*box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;*/
	
	-webkit-transition: all 110ms ease-out;
	-moz-transition: all 110ms ease-out;
	-ms-transition: all 110ms ease-out;
	-o-transition: all 110ms ease-out;
	transition: all 110ms ease-out;
}

.functionsButtonSelected {
/**przyciski list wybrane**/
	position:relative;
	background-color: #57c7f0;
	color: #FFFFFF;
	height: 48px;
	width: 253px;
	cursor: default;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	z-index: 1;
    border-top: 1px solid #9D9D9D;
    border-bottom: 1px solid #9D9D9D;
    margin-bottom: -1px;
    margin-left: -1px;
}

.functionsButtonSelected:after {
	content: close-quote;
	width: 5px;
	height: 100%;
	background-color: orange;
	position: absolute;	
	right:-5px;
	box-shadow: rgba(0, 0, 0, 0.2) 2px 0px 6px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 0px 6px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 2px 0px 6px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	border: 1px solid #ef9e0a;
    border-left-width: 0px;
    margin-top: -1px;
}

.functionsButton img , .functionsButtonSelected img {
	position: absolute;
	top:8px;
	left:7px;
	width:32px;
	height:32px	
}

.functionsButtonSelected img {
	left:8px;
}


.functionsButton .gwt-Label , .functionsButtonSelected .gwt-Label {
	position: absolute;
	top:16px;
	left:50px;
	text-align: left;	
}

.functionsButtonSelected .gwt-Label {
	left:51px;
}

.functionsButtonHolder {
	width: 251px;
	background-color: #e5e5e5;
	border-right: 1px solid #ADADAD;
	/**border: 2px solid;
	border-radius: 25px;**/
	/**box-shadow: 10px 10px 5px #888888;**/
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	border-left: 1px solid #9D9D9D;
}

.functionsButtonSubHolder {
	width: 251px;
	background-color: #e5e5e5;
	margin-top: 21px;
	/**border: 2px solid;
	border-radius: 25px;**/
	/**box-shadow: 10px 10px 5px #888888;**/
	/*box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;*/
}

.itemPanelToolbar {
	width: 140px;
	height: 70px;
	color: #1E90FF;
	display: inline-block;
	background-image: url('img/dialog-ok-apply-2.png');
	background-repeat: no-repeat;
	background-position: center 10px;
	background-color: black;
	text-align: center;
	cursor: pointer;
	padding-top:  3px;
}

.itemPanelToolbar:HOVER {
	color: orange;
	
}
	


.itemPanelButtonHolder {
	/**position:relative;**/
	margin: 0px;
	padding: 0px;
	height: 70px;
	background-color: #383838;
	text-align: left;
	display: inline-block;
	overflow: hidden;
}

.itemPanelButtonSubHolder {
	position:relative;
	margin: 0px;	
	padding: 0px;
	height: 70px;
	right: 0px;
	left: 0px;
	background-color: #333333;
	text-align: left;
	display: inline-block;
/* 	overflow: hidden; */
}

.itemPanelButton {
	width: 120px;
	height: 70px;
	background-color: #383838;
	display: inline-block;
	color: white;	
	text-align: center;
	cursor: pointer;
	text-shadow: 0px 0px 3px #000000;
}

.itemPanelButton img, .itemPanelButtonSelected img, itemToolbarButton img {
	margin-top: 7px;
	height: 36px;
}


.itemPanelButton:HOVER {
	background-color: orange;
	-webkit-transition: all 110ms ease-out;
	-moz-transition: all 110ms ease-out;
	-ms-transition: all 110ms ease-out;
	-o-transition: all 110ms ease-out;
	transition: all 110ms ease-out;
}

.itemPanelButtonSelected {
	width: 120px;
	height: 70px;
	background-color: #1E90FF;
	display: inline-block;
	text-align: center;
	cursor: default;
	color: white;
	text-shadow: 0px 0px 7px #000000;	
}

.itemPanelButtonSelected .gwt-Label, .itemPanelButton .gwt-Label {
    height: 15px;
    overflow-y: hidden;
}

.itemPanelTabArea {
	position:relative;
	top: 1px;
	bottom: 1px;
	left:1px;
	right:1px;
	background-color: #FFFFFF;
}



.temporaryArea {
	position: absolute;
	top:-1000px;
	left:-1000px;
	width:999px;
	height: 999px;
	overflow: hidden;
	visibility: hidden;
}


.tactinDatePicker {
	margin-top:15px;
	margin-left:auto;
	margin-right:auto;
	border: 1px solid #EDEDED;
	cursor: default;
	width:90%;
}

.tabLabel {
	text-align:center;
	font-family: Tahoma, Verdana , Arial;
}



.appArea {
	position:absolute;
	top: 2px;
	bottom: 2px;
	left:2px;
	right:2px;
	background-color: #FFFFFF;
}

.tactinMainButton {
	position: relative;
	width: 100px;
	height: 100px;
	background-image: url('img/mainButton.png');
	cursor:pointer;
	border:10px;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
}

.mainMenu {
	position: absolute;
	overflow: visible;
	color: #222222;
	z-index: 9999;
	-webkit-transition: all 110ms ease-out;
	-moz-transition: all 110ms ease-out;
	-ms-transition: all 110ms ease-out;
	-o-transition: all 110ms ease-out;
	transition: all 110ms ease-out;
}

.mainMenuButtonImage {
	position:relative;
	background-image: url('img/menu_button.png');
	background-repeat: no-repeat;	
	top: 2px;
	left: 2px;
	width: 93px;
	height: 110px;
	z-index: 9999;
}


.mainMenuFunctionsArea {
	position: relative;
	margin-top: -120px;
	left: 78px;
	background-repeat: repeat-y;
}


.mainMenuPosition {
	position: relative;
	width: 100%;
	height: 50px;
	cursor: pointer;
	z-index: 9998;
}


.mainMenuPosition:HOVER {
	background-color: orange;
}

.mainMenuPosition img {
	position: absolute;
	top: 9px;
	left: 15px;	
	width: 32px;
	height: 32px;
}

.mainMenuPosition div {
	position: absolute;
	top:17px;
	left:65px;
}

.mainMenuSeparator {
	position: absolute;
	background-image: url('img/menu_separator_smaller.png');
	background-repeat: no-repeat;
	margin-top: -43px;
	width: 272px;
	height: 43px;
	margin-bottom: 0px;
	z-index: 9997;
	
}


.functionsContentArea {
	position: relative;
	background-image: url('img/wide_menu_background.png');
	background-repeat: repeat-y;
	min-height: 90px;
	padding-left: 16px;
	padding-right: 20px;
}

.popupContent {
	width: 100%;
	height: 100%;
}


.comboBoxListArea {
	border: 1px solid #CCC;
	border-right-width: 0px; 
	background-color: #FFF;
}

.treeList {
	margin-right: 150px;
	text-align: left;
}

.functionsAreaTopBackground {
	position: relative;
	background-image: url('img/wide_menu_background_top.png');
	background-repeat: no-repeat;
	background-position: 17px 0px;
	width: 304px;
	height: 33px;
}


.functionsAreaBottomBackground {
	position: relative;
	background-image: url('img/wide_menu_background_bottom.png');
	background-repeat: no-repeat;
	width: 304px;
	height: 25px;
}



.tactinMainButton:HOVER {
	background-image: url('img/mainButtonHover.png');
}

.functionTabArea {
	position:relative;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
	background-color: #FFFFFF;
	border: 1px solid #BDBDBD;
    border-left-width: 0px;
    background-image: url("img/stripebackgroundlight.png");
}

.viewerListArea {
	position:relative;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;		
	border-style: none;
	outline: 0;
}

.viewerListArea td div {
	border-style: none;
	height: 17px;
	overflow: hidden;
}

.listViewerStatusBar {
	background-color: #DDDDFF;
	width: 100%;
	align:center;
}


.appAreaLoading {
	position:absolute;
	
	top: 2px;
	bottom: 2px;
	left:2px;
	right:2px;
	background-color: #FFFFFF;
	
	background-image: url('img/tab_background_selected.png');
	background-repeat:no-repeat;
	background-position: center;
}

#outerArea {
	position:absolute;
	width:100%;
	height:100%;
	background-color: #DDDDDD;
}

#outerArea:before {
    content: close-quote;
    /* width: 100%; */
    /* height: 100%; */
    background-color: #DDDDDD;
    display: inline-block;
    position: absolute;
    top: 2px;
    /* border: 2px solid #DDDDDD; */
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-image: url("img/outerareastripeslight.png");
}



.functionsPanel {
	text-align:center;
	//border-right: 1px solid #DDDDFF;
	width: 250px;
}

.horizontalSeparator {
	position: relative;
	
	right:10px;
	left:10px;
	
	height: 1px;
	margin-top:15px;
	margin-bottom: 15px;
	margin-left:auto;
	margin-right:auto;
	background-color: #DDDDFF;
}

div.verticalSeparator div {
	Position:absolute;
	top: 20px;
	bottom: 20px;
	
	width: 1px;
	
	margin-left: 5px; 
	margin-right: 5px;

	/*background-color: #DDDDFF;*/
}

.verticalSeparator {
	Position: relative;
	width: 21px;
	/*height: 100%;*/	
}


.emptySeparator {
	Position:relative;
	width:0px;
	height:0px;
}

.itemEditPanel {
	position:absolute;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
	background-color: rgba(0,0,0,0.6);
	color: white;
	z-index: 2;
}

.itemEditArea {
	background-color: white;
	color: black;
	position:relative;
	top: 0px;
	bottom: 0px;
	left:102px;
	right:0px;
	background-image: url("img/stripebackgroundlight.png");
}

.loginScreenPanel {
	position:relative;
	top: 30px;
	margin-left: auto;
	margin-right: auto;
/* 	padding-left:150px; */
	background-image:  url('img/user_login_grey.png');
	background-repeat: no-repeat;
	background-position: 53px 104px;
	width: 90%;
	height: 90%;
	background-color: white;
	max-width: 427px;
	max-height: 150px;
	border: 1px solid #7D7D7D;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
/*     -webkit-border-radius: 5px; */
/* 	-moz-border-radius: 5px; */
/* 	border-radius: 5px; */
}

table.loginScreenPanel  tr table {
	padding-left:150px; 
}

table.loginScreenPanel tr:FIRST-CHILD table {
	padding-left: 2px;	 
}

table.loginScreenPanel tr:FIRST-CHILD table tr {
	height: 94px;
	vertical-align: top;
	line-height: 24px;	
	padding-left:0px;	 
}

table.loginScreenPanel tr:FIRST-CHILD table tr td {
	text-align: center; 
	text-shadow: 1px 1px 3px #87CBFF;
	font-size: small;
}

table.loginScreenPanel tr:FIRST-CHILD table div {
	background-image: url("img/lock_icon.png");
	background-repeat: no-repeat;
	background-position: 5px 6px;
	font-size: medium;
    padding-top: 4px;
}


table.loginScreenPanel tr:LAST-CHILD table  {
	height: 50px;
	vertical-align: top;
	line-height: 22px;	
	background-color: #EDEDED;
	border-top: 1px solid #BDBDBD;
	margin-top: 20px;
	padding-top: 10px;
	padding-left: 20px;
}

table.loginScreenPanel tr:LAST-CHILD table td:LAST-CHILD {
	width: 90px;
    padding-right: 21px;	
}

table.loginScreenPanel tr:LAST-CHILD table td:FIRST-CHILD {
    padding-top: 3px;	
}

table.loginScreenPanel tr:LAST-CHILD table td:LAST-CHILD button {
	border-radius: 0px;
	border: 1px solid #bbb;
	height: 27px;
	padding-top: 1px;
	width: 70px;
	background: #F9F9F9;
}

table.loginScreenPanel tr:LAST-CHILD table td:LAST-CHILD button:HOVER {
	border-color: #7D7D7D;
}
	
.loginInfoButton {
	background-color: #EDEDED;
	background-image: url("img/down_info.png");
	border-width: 0px;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: top;
	outline-style: none;
}

.loginInfoButton[disabled], .loginInfoButton[disabled]:hover {
	background-image: url("img/down_info_disabled.png");
}


.loginInfoButton:HOVER {
	background-image: url("img/down_info_hover.png");
}

table.loginScreenPanel tr:FIRST-CHILD table:BEFORE {
	background-image: url("img/tactinSplashBar.png");
	content:close-quote;
	background-repeat: no-repeat;
	position:absolute;
	right:0px;
	height: 86px;
	width:425px;
	margin-top:11px;
}

/* tr:FIRST-CHILD table:BEFORE {
	content: url("img/login_logo.png");
	position:absolute;
	right:0px;
	height: 50px;
	line-height:15px;
	left: 0px;
	margin-top:27px;
	padding-top:0px;
	padding-left:10px;
	border-color: #10CAFF;
	border-style:solid;
	border-width: 1px 0px;	
	background: #15466d;
	background: -moz-linear-gradient(left,  #15466d 0%, #3497e2 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#15466d), color-stop(100%,#3497e2)); 
	background: -webkit-linear-gradient(left,  #15466d 0%,#3497e2 100%);
	background: -o-linear-gradient(left,  #15466d 0%,#3497e2 100%);
	background: -ms-linear-gradient(left,  #15466d 0%,#3497e2 100%);
	background: linear-gradient(to right,  #15466d 0%,#3497e2 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#15466d', endColorstr='#3497e2',GradientType=1 );
	
} */



/*
.loginScreenPanel::before {
	content: url("img/mainButton.png");
	position: absolute;
	width: 110px;
	height: 160px;
	background-image: url("img/outerareastripeslight.png");
 	border: 1px solid #7D7D7D; 
	left:25px;
	top:35px;
 	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.4); 
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.4);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.4);
	margin-top: -10px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
}

.loginScreenPanel::after {
	content: url('img/lock7.png');
	position: absolute;
	top:130px;
	left: 65px;
	
	-webkit-filter: drop-shadow(0px 0px 5px rgba(255,255,255,0.9));
    filter: url(#drop-shadow);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#444')";
    filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#444')";
	
	
}
*/

.loginScreenRow {
	width: 100%;
	min-height: 35px;
/* 	height: 25%; */
/* 	margin: 15px; */
}

.loginScreenEditBox {
	width: 176px;
	height: 24px;
	padding-left: 3px;
}

.loginScreenLabel {
	width: 70px;
	line-height: 35px;
}

.loginScreenErrorLabel {
	color: red;
	display: inline-block;
    margin-left: 10px;
}

.customScrollBarContainer {
	border: 1px solid #BDBDBD;
	border-top-width:0px;
	border-right-width:0px;
	background-color: #EEE;
	height: 100%;
	width: 30px;
	position:relative;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
}

.viewerListContainer {
	position:absolute;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
	color: black;
}

.customScrollBarTopButton,.customScrollBarBottomButton {
	width:30px;
	height: 30px;
	background: #DDD;
	position:absolute;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
	background-repeat: no-repeat;
	background-position: 3px 3px;
}

.customScrollBarTopButton {
	background-image: url("img/arrowup.png");
}

.customScrollBarBottomButton {
	background-image: url("img/arrowdown.png");
}

.customScrollBarButtonArea {
	width: 100%;
	height: 100%;
	position:absolute;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
}
.customScrollBarSlider {
	width: 100%;
	height: 1px;
	position:absolute;
	background-color: #CCC;
	cursor: pointer;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
}
.datagridScrollPanel {
	overflow:hidden;
}

.innerFlowPanel > div , .desctiptionFieldFlowPanel > div {
	margin-top: 5px;
	margin-left: 5px;
	padding-top: 5px;
	/*clear: both;*/
}

.desctiptionFieldFlowPanel .innerTextBox {
	width:97%;
	height: 300px;
	padding: 5px 4px;
	border: 1px solid #ccc;

	font-size: small;
	font-family: Arial Unicode MS, Arial, sans-serif;
}

.desctiptionFieldFlowPanel .outerLabel {
	width:97%;
	text-align: center;
	border-top: 1px solid #999;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background-color: #EEE;
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: bold;
	height: 26px;
	line-height: 26px;
	vertical-align: middle;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}

.outerLabel {
	margin-top: 6px;
	margin-bottom: 6px;
	width: 20%;
	display: inline-block;
	vertical-align: top;
}

.innerLabel {
	margin-top: 6px;
	margin-bottom: 6px;
}

.innerTextBox {
	width: 75%;
	min-height: 27px;
	display: inline-block;
	position: relative;
}

input, select, textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

textarea {
	resize: none;
}


input.innerTextBox, select.innerTextBox {
	padding: 5px 4px;
	border: 1px solid #ccc;
	border-top: 1px solid #999;
	font-size: small;
	font-family: Arial Unicode MS, Arial, sans-serif;
}

.itemComboBoxTextArea {
	width: 100%;
	padding: 5px 4px;
	border: 1px solid #ccc;
	border-top: 1px solid #999;
	border-right-width: 0;
	font-size: small;
	font-family: Arial Unicode MS, Arial, sans-serif;
}

.innerTextBox .gwt-Button {
	border-radius: 0px;
}
 

.filterInnerTextBox {
	width: 55%;
	margin-left: 5px;
	margin-right: 5px;
	display: inline-block;
	height: 21px;
}

table.filterInnerTextBox {
	height: 20px;
}

.filterHeader {
	width: 100%;
	background-color: #383838;
	color: #8b8b8b;
	font-weight: bold;
	height: 26px;
	line-height: 26px;
	vertical-align: middle;
	font-size: 17px;
	text-align: center;
}

.filterOuterLabel {
	width: 35%;
	display: inline-block;
	vertical-align: middle;
}

.filterControl {
	text-align: right;
	margin: 5px;
}

.itemInfoTabHeader {
	/*height: 75px;*/
	background-color: #EEE;
	border-bottom: 1px solid #9D9D9D;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
}

.configInfoPanelHeader {
	background-color: #EEE;
	border-bottom: 1px solid #9D9D9D;
}


.configInfoPanelHeader img {
	float: left;
	margin: 10px;
	margin-left: 12px;
	margin-right: 12px;
	width: 32px;
	height: 32px;
}

.configInfoPanelHeader .gwt-Label {
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
}


.itemInfoTabHeader img {
	float: left;
	margin: 10px;
	margin-left: 40px;
	margin-right: 40px;
}

.itemDataVieverHeaderContent , .configPanelHeaderContent{
	height: 100%;
	width: 100%;
	display: inline-block;
	position: relative;
    /*float: left;*/
    /* display: inline-block; */
    /* position: relative; */
    overflow: hidden;
}


.itemInfoTabHeader .gwt-Label {
	margin-top: 10px;
	margin-left: 40px;
	margin-right: 60px;
	text-align: left;
}

.comboBoxPanel {
	/*position: absolute;*/
	overflow: visible;
	color: #222222;
	z-index: 9999;
}

.flowPanelWithSaveCloseAndDeleteButtons {
	float: left;
	display: inline;
	padding-right:21px;
	background-color: #000000;
}

.itemToolbarButton {
	width: 120px;
	height: 60px;
	color: #1E90FF;
	display: inline-block;
/*	background-image: url('img/dialog-ok-apply-2.png');
	background-repeat: no-repeat;
	background-position: center 10px;*/
	background-color: black;
	text-align: center;
	cursor: pointer;
	padding-top: 10px;
}

.itemToolbarButton:HOVER {
	color: orange;
	background-color: #333333;
	-webkit-transition: all 110ms ease-out;
	-moz-transition: all 110ms ease-out;
	-ms-transition: all 110ms ease-out;
	-o-transition: all 110ms ease-out;
	transition: all 110ms ease-out;
}

.saveButton {
	width: 140px;
	height: 70px;
	color: #1E90FF;
	display: inline-block;
	background-image: url('img/dialog-ok-apply-2.png');
	background-repeat: no-repeat;
	background-position: center 10px;
	background-color: black;
	text-align: center;
	cursor: pointer;
	padding-top: 3px;
}

.saveButton:HOVER {
	color: orange;
}

.closeButton {
	width: 140px;
	height: 70px;
	color: #1E90FF;
	display: inline-block;
/*	background-image: url('img/delete.png');
	background-repeat: no-repeat;
	background-position: center 10px;*/
	background-color: black;
	text-align: center;
	cursor: pointer;
	padding-top: 3px;
}

.closeButton:HOVER {
	color: orange;
}

.deleteButton {
	width: 140px;
	height: 70px;
	color: #1E90FF;
	display: inline-block;
	background-image: url('img/delete.png');
	background-repeat: no-repeat;
	background-position: center 10px;
	background-color: black;
	text-align: center;
	cursor: pointer;
	padding-top: 3px;
}

.deleteButton:HOVER {
	color: orange;
}
.configButton {
	margin: 10px;
}

.configButton img {
	margin: 0px;
	padding: 0px;
}

.configPanelLabel {
	width: 100%;
	height: 40px;
	vertical-align: middle;
	line-height: 40px;
	text-align: center;
	background-color: #eee;
}

.configButonBar {
	text-align: right;
	border-top: 1px solid #ccc;
	padding-left:10px;
	padding-right: 10px;
}

.configField {
	border: 1px solid #ccc;
}

.specialRow2 {
	color: #FF0000 !important;
}

.specialRow {
	color: #00FF00 !important;
}


/** ScrollButtons on tab menu **/

.functionsScrollPrev {
	position:relative;
	background-color: #e5e5e5;
	top: 0px;
	margin: -21px 0px 1px;
	height: 20px;
	cursor: pointer;
	color: #8b8b8b;		
	background-repeat: no-repeat;
	background-image:  url('img/orangeArrowUp.png');
	background-position: 50% 10px;
}

.functionsScrollPrevDisabled {
	position:relative;
	/*background-color: #a5a5a5;*/
	top: 0px;
	margin: -11px 0px 1px;
	height: 10px;
	/*cursor: pointer;*/
}

.functionsScrollPrev:HOVER {
	background-color: #D9D9D9;
}

.functionsScrollNext {
	position:relative;
	background-color: #e5e5e5;		
	bottom: 100%;
	margin: 2px 0px 0px;
	height: 20px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-image:  url('img/orangeArrowDown.png');
	background-position: 50% 0%;
}

.functionsScrollNextDisabled {
	position:relative;
	background-color: #e5e5e5;
	bottom: 100%;
	margin: 2px 0px 0px;
	height: 10px;
}

.functionsScrollNext:HOVER {
	background-color: #D9D9D9;
	color: #FFFFFF;
}

.tabScrollNext {
	background-color: #383838;
	border-right: 5px solid #57c7f0;	
	background-repeat: no-repeat;
	height: 20px;
	width: 95px;
	cursor: pointer;
	background-image:  url('img/orangeArrowDown.png');
	background-position: 50% 2px;
	margin-top:2px;
}

.tabScrollNext:before, .tabScrollNextDisabled:before{
    content: close-quote;
    display: inline-block;    
    width: 45px;
    height: 100%;
    border-top: 1px solid #585858;    
}

.tabScrollNextDisabled {
	background-color: #383838;
	border-right: 5px solid #57c7f0;
	background-repeat: no-repeat;
	height: 20px;
	width: 95px;
	cursor: pointer;
	margin-top:2px;
}

.tabScrollNext:HOVER {
	background-color: #484848;
	/*border-right: 5px solid #fbb622;*/
	/*background-repeat: no-repeat;
	height: 10px;
	width: 95px;*/
}

.tabScrollPrev {
	background-color: #383838;
	border-right: 5px solid #57c7f0;	
	background-repeat: no-repeat;
	height: 20px;
	width: 95px;
	cursor: pointer;
	background-image:  url('img/orangeArrowUp.png');
	background-position: 50% 8px;
	margin: -22px 0px 2px;
	position: relative;
	
}

.tabScrollPrev:after, .tabScrollPrevDisabled:after {
    content: close-quote;
    display: inline-block;    
    width: 45px;
    height: 100%;
    border-bottom: 1px solid #585858;
    margin-top: -1px;
}

.tabScrollPrevDisabled {
	background-color: #383838;
	border-right: 5px solid #57c7f0;	
	background-repeat: no-repeat;
	height: 20px;
	width: 95px;	
	margin: -22px 0px 2px;
}

.tabScrollPrev:HOVER {
	background-color: #484848;
	/*border-right: 5px solid #fbb622;*/
/*	background-repeat: no-repeat;
	height: 10px;
	width: 95px;
	color: #FFFFFF;*/
}

.itemPanelScrollPrev {
	position: absolute;
	top:0px;
	width: 20px;
	height: 70px;
	margin-left:-22px;
	left: 0px;
 	background-color: #383838; 
	
	cursor: pointer;
	
	background-image: url("img/orangeArrowLeft.png");
	background-position: 8px 25px;
	background-repeat: no-repeat;
}

.itemPanelScrollPrevDisabled {
	position: absolute;
	top: 0px;
	width: 20px;
	height: 70px;
	margin-left: -22px;
	background-color: #383838;	
	
}

.itemPanelScrollPrev::before, .itemPanelScrollPrevDisabled::before {
	content: close-quote;
	position: absolute;
	top: 15px;
	left: 19px;
	width: 1px;
	height: 40px;
	background-color: #585858;
}

.itemPanelScrollPrev::after, .itemPanelScrollPrevDisabled::after {
	content: close-quote;
	position: absolute;
	top: 0px;
	left: 20px;
	width: 2px;
	height: 70px;
	background-color: #383838;
}

.itemPanelScrollPrev:HOVER {
	background-color: #484848;
}

.itemPanelScrollList {
	height: 70px;
	display: inline-block;
}

.itemPanelScrollNext {
	position: absolute;
	top: 0px;
	width: 20px;
	height: 70px;
	right: -22px;
	background-color: #383838;	
	cursor: pointer;
	background-image: url("img/orangeArrowRight.png");
	background-position: 2px 25px;
	background-repeat: no-repeat;
}

.itemPanelScrollNext::before, .itemPanelScrollNextDisabled::before {
	content: close-quote;
	position: absolute;
	top: 15px;
	width: 1px;
	height: 40px;
	background-color: #585858;
}

.itemPanelScrollNextDisabled {
	position: absolute;
	top:0px;
	width: 20px;
	height: 70px;
	right: -22px;
	background-color: #383838;		
}
 


.itemPanelScrollNext:HOVER {
	background-color: #484848;
}

.filterPanel {
	overflow: auto;
	max-height: 60vh; /*browser viewport height*/
}
.reportViewArea .reportViewArea{
	width: 100%;
	height: 100%;
	position:relative;
	top: 0px;
	bottom: 0px;
	left:0px;
	right:0px;
	background-image: url("img/loading_circle.gif");
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.i2miAddButton, .i2miRemoveButton {
	width: 23px;
    margin: 1px;
	border-radius: 0px;
}

.i2miToolbar {
	text-align: right;
	margin: 1px;
}

.i2miControl {
	width: 55%;
	display: inline-block;
	margin-left: 5px;
    margin-right: 5px;
    background-color: white;    
    border-top: 1px solid #A9A9A9;
    border-bottom: 1px solid #A9A9A9;      
}

.i2miTable {
	width: 100%;
	text-align: left;
	margin-top: -22px;	
}

.i2miPopup {
	overflow: visible;
	color: #222222;
	z-index: 9999;
}

.i2miPopupInner {
	width: 300px;
	height: 400px;
	border: 1px solid #CCC;
	border-right-width: 0px; 
	background-color: white;
}

.richText {
	border-width: 1px;
	width: 100%;
	display: inline;
	height: 240px;
}

.richTextToolbar {
	padding: 0px !important;
}

.infoMessageBoxContent {
	min-width: 320px;
	padding-left: 60px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-repeat: no-repeat;
	background-image: url("img/dialog-information-4.png");
	min-height: 50px;    
    background-position: 10px 11px;
    line-height: 24px;
}
	
.dateBoxPopup {
	z-index: 10;
}

	
.infoPopupWindow {
	z-index: 10;
	background-color: white;
	border: 1px solid #606060;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
}

.popupCloseInfoLabel{
	font-style: italic;
	font-size: smaller;	
}

.dropFilesLabel {
	border: 1px solid #BEBEBE;
    /* margin-right: 15px; */
    right: 15px;
    position: absolute;
    left: 0px;
    bottom: 15px;
    top: 15px;
	background-color: rgba(255, 255, 255, 0.6);
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
}

.standardElementListEditor {	
	width: 540px;
	height: 480px;	
	z-index: 2;
    position: relative;
    background: #fff;
    border: 1px solid #9D9D9D;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
}

.elementEditorDialogButton {
	margin-left: 5px;		
    border-radius: 0px;
    border: 1px solid #bbb;
    height: 27px;
    width: 70px;
    background: rgba(249,249,249,0.5); /*#F9F9F9;*/    
}

.elementEditorDialogButton:HOVER {
	border-color: #7D7D7D;
	background: rgba(249,249,249,0.75); 
	cursor: pointer;
}

.dialogButtonArea {	
    background-color: #EDEDED;
    border-top: 1px solid #BDBDBD;
    text-align: right;
    padding-right: 13px;
    padding-top: 10px;
}

.elementListButtonBar, .listButtonBar {
	text-align: left;
	height: 29px;
	padding-top: 2px;
	border-bottom: 1px solid #9D9D9D;
	background: rgba(245,245,245,1);
	background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(224,224,224,1) 50%, rgba(194,194,194,1) 51%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245,245,245,1)), color-stop(50%, rgba(224,224,224,1)), color-stop(51%, rgba(194,194,194,1)), color-stop(100%, rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(224,224,224,1) 50%, rgba(194,194,194,1) 51%, rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(224,224,224,1) 50%, rgba(194,194,194,1) 51%, rgba(237,237,237,1) 100%);
	background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(224,224,224,1) 50%, rgba(194,194,194,1) 51%, rgba(237,237,237,1) 100%);
	background: linear-gradient(to bottom, rgba(245,245,245,1) 0%, rgba(224,224,224,1) 50%, rgba(194,194,194,1) 51%, rgba(237,237,237,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#ededed', GradientType=0 );
	
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
    /* -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px; */
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px, inset rgba(255, 255, 255, 0.05) 5px 5px 5px;
    z-index: 1;
}

.importerButtonText {
	font-size: 14px; 
	color: #BB4B44;
}

.toolbarButton {
	margin-left: 5px;
	border-radius: 0px 0px 0px 0px;
	border: 1px solid rgb(187, 187, 187);
	height: 25px;
	width: 180px;
	background: none repeat scroll 0% 0% rgba(249, 249, 249, 0.5);
	position: relative;
	display: inline-block;
}


.toolbarButton img {
	position: absolute;
	top:4px;
	left:7px;	
	width: 16px;
	height:16px;
}


.toolbarButton .gwt-Label {
	position: absolute;
	top:3px;
	left:30px;
	text-align: left;	
}

.toolbarButton:HOVER {
	border-color: #7D7D7D;
	background: rgba(249,249,249,0.75); 
	cursor: pointer;
}

.questionDialogPanel {
	z-index: 10;
	position:relative;		
	background-color: white;	
	width: 400px;
	height: 170px;
	max-width: 427px;
	max-height: 250px;	
}

.questionDialogButtonsPanel  {
	height: 50px;
	text-align:right;
	vertical-align: top;
	line-height: 22px;	
	background-color: #EDEDED;
	border-top: 1px solid #BDBDBD;	
	padding-top: 10px;
	padding-left: 20px;
}

.questionDialogButton {
	border-radius: 0px;
	border: 1px solid #bbb;
	text-align: center;
	height: 27px;
	min-width: 70px;
	background: #F9F9F9;
	display: inline-block;
	margin-right: 10px;
	line-height: 27px;	
}

.questionDialogButton .gwt-Label {
	padding: 0px 10px;
}


.questionDialogButton:HOVER {
	border-color: #7D7D7D;
}

.questionDialogMessagePanel img {
	position: absolute;
	top:35px;
	left:28px;	
}

.questionDialogMessagePanel .gwt-Label {
	position: absolute;
	top:35px;
	left:98px;
	text-align: left;	
}
.questionDialogGlassArea {
	background-color: rgb(0, 0, 0);
	opacity: 0.3;
	z-index: 9;
}

.elementToolbarMenuoptions {
	position: absolute;
	display: inline-block;
	height: 27px;	
}

.listToolbar {
	text-align: left;
	height: 29px;	
	/*padding-top: 2px;*/
	border-bottom: 1px solid #9D9D9D;
	/*border-top: 1px solid #9D9D9D;*/
	/*background: rgba(255, 255, 255, 0.6);*/
	z-index: 1;
	/*border-left: 1px solid #EFEFEF;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4), 5px 5px 5px rgba(255, 255, 255, 0.05) inset;*/
	display: inline-block;
}

.listStatusbar {
	text-align: left;
	height: 48px;
	padding-top: 2px;
	background: rgba(255, 255, 255, 0.2) none repeat scroll 0% 0%;
	z-index: 1;
	padding-left: 5px;
	border: 1px solid rgb(239, 239, 239);
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4), 5px 5px 5px rgba(255, 255, 255, 0.05) inset;
	border-top: 1px solid #9D9D9D;
}

.itemComboBoxExpandButton {
	width: 30px;
	height: 30px;
}

.itemComboBoxActionButton {
	width: 30px;
	height: 30px;
}

.listButtonBar button {
	height: 27px;
	margin-left: 5px;
	vertical-align: top;
	box-shadow: none;
	border-radius: 0;
	border: 1px solid rgb(187, 187, 187);
	background-color: rgba(249, 249, 249, 0.5);	
	background-image: url('img/excel-file.png');
	background-repeat: no-repeat;
	padding-left: 26px;
	background-size: 16px;
	background-position: 7px 5px;
	text-align: left;
}

.listButtonBar button:hover {		
	border-color: #7D7D7D;
	background-color: rgba(249,249,249,0.75); 
	cursor: pointer;
}

.buttonWaiting:HOVER {
	cursor: wait;	
}

.calendarMonthGrid {
	width: 100%;
	height:100%;	
	padding:1px;	
}

.calendarMonthGrid td {
	padding: 1px;
}
	

.calendarDayPanelWeekend, .calendarDayPanel {	
	/*padding:2px;	
	top: 2px;
	bottom: 2px;
	left: 2px;
	right: 2px;
	width: auto;
	height: auto;
	border: 1px solid grey;*/
	display: inline-table;
	position: relative;
	width:100%;
	height:100%;
	background-color: #efefef;
}

.calendarDayPanel.calendarOuterMonth {
	background-color: #FAFAFA;	
}


.calendarDayPanelWeekend.calendarOuterMonth {
	background-color: #F4F4F4;	
}

.calendarDayPanelWeekend {
	background-color: #e5e5e5;
}

.calendarDayPanelWeekend.calendarOuterMonth .calendarDayLabel,  
.calendarDayPanel.calendarOuterMonth .calendarDayLabel {
	color: #BBB;
}

.weekNumberColumn {
	width:40px;
}

.calendarDayLabel {
	text-align: left;
	font-weight: bold;
	font-size: larger;
	color: #888;
	margin-left: 2px;
}

.calendarWeekNumberPanel {
	display: inline-table;
	position: relative;
	width:100%;
	height:100%;
	background-color: #F5F5F5;	
	text-align: center;
	font-weight: bold;
	font-size: larger;
	color: #888;
	margin-left: 2px;	
}

.calendarToolbar {
	background-color: #F5F5F5;
	margin-left: 4px;
	margin-right: 2px;
	margin-top: 2px;
	text-align: left;
}

.calendarInfo {	
	text-align: left;
	font-weight: bold;
	font-size: 17px;
	color: #6b6b6b;		
	position: absolute;	
	display: inline-block;
	right: 5px;
	top: 5px;
	left: 84px;
	padding-left: 12px;
	height: 30px;
	line-height:30px;
	cursor: pointer;	
	transition: all 110ms ease-out 0s;
}

.calendarInfo:HOVER
{
	background-color: #EEE;
}

.calendarBackButton, .calendarForwardButton{
	background-image: url('img/orangeArrowLeft.png');
	background-repeat: no-repeat;
	background-position: 10px 5px;
	width:30px;
	height:30px;
	position:relative;
	top: 5px;
	left:20px;
	display: inline-block;	
	transition: all 110ms ease-out 0s;
	cursor: pointer;
}

.calendarBackButton:HOVER, .calendarForwardButton:HOVER{
	background-color: #D9D9D9;
	transition: all 110ms ease-out 0s;
}

.calendarForwardButton {
	background-image: url('img/orangeArrowRight.png');	
}

.updatePickList {	
	margin:10px;
	background-color: #EEE;
	border: 1px solid #9D9D9D;
}

.updateOutputPanel {
	margin:10px;
	margin-left:20px;
	margin-top:2px;	
	border-bottom: 1px solid #9D9D9D;
	text-align: left;
}

.updateInfoPanel {
	margin:10px;
	margin-left:20px;
	margin-bottom:0px;
	text-align: left;
}

.outputPanelLabel {
	margin:10px;
	margin-left:20px;
	margin-top:0px;
	border-top: 1px solid #9D9D9D;
	text-align: left;
}

.updateLoginWindowContent {
	position: relative;
	width: 200px;
	height: 140px;	
}

.updateWaitPopup {
	position: relative;
	width: 200px;
	height: 140px;	
	background-image: url("img/loading_circle.gif");
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.itemCardWrapper {
	background-color: white;
	color: black;
	background-image: url("img/stripebackgroundlight.png");
}

.itemCardTitleBar {
	position: absolute;
	height: 24px;
	top: 0px;
	left: 0px;
	right: 0px;
	background-color: #333;
	color: white;
	line-height: 24px;
	text-align: left;
	padding-left: 12px;
}

.itemVisiblePanel {
	position: absolute;
	/* Height defined in .itemCardTitleBar */
	top: 24px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	
}

.aggregationRow {
	border-bottom: 1px solid rgb(189, 189, 189);
	width: 100%;	
	height: 21px;
	table-layout: fixed;	
}

.StatusTextStyle {
	padding: 0px 18px;
	text-align: left;
	font-weight: bold;
}

.fileUploadDeleteButton, .fileUploadCancelButton {
	margin-left: 5px;
	position: absolute;
	right: 0px;
	width: 80px;
	top: 0px;
}

.fileUploadLinkAnchor {
	position: absolute;
	left: 0px;
	right: 80px;
	height: 17px;
	top: 0px;
	text-align: left;
}

.fileUploaderControl {
	position: absolute;
	left: 0px;
	/*right: 80px;
	height: 100%;*/
	height: 25px;
	width: 100px;
	text-align: left;
}

.fileUploaderButton {
	position: relative;
	display: inline-block;
	height: 15px;
	width: 90px;
	border: 1px solid black;
	background-color: white;
	text-align: center;
	padding: 4px;
}

.dropFileUploader {
	position: absolute;
	display: inline-block;
	top: 0px;
	left: 110px;
	right: 0px;
	height: 15px;
	border: 1px dashed black;
	text-align: center;
	padding: 4px;
}

.dropFileUploadHover {
	background-color: yellow;
}

.comboBoxDeletedItem {
	text-decoration: line-through;
}

.questionDialogAdditionalInfo {
	font-style: italic;
	padding-top: 5px;
}

.toolbarLabel {
	margin-left: 5px;
	height: 25px;
	width: 180px;
	position: relative;
	display: inline-block;
}

.toolbarLabel .gwt-Label {
	position: absolute;
	top: 3px;
	text-align: left;
}

.toolbarFilter {
	margin-left: 5px;
	height: 25px;
	width: 180px;
	position: relative;
	display: inline-block;
}

.toolbarFilter .gwt-Label {
	position: absolute;
	top: 3px;
	text-align: left;
}

.toolbarFilterContainer {
	position: absolute;
}

.imagePopupPanel {
	width: 300px;
	height: 200px;
	padding: 10px;
}

.imagePopupRadioButton, .imagePopupLinkText, .imagePopupFileUpload,
    .imagePopupButtonPanel {
	width: 100%;
}

.imagePopupOkButton, .imagePopupCancelButton {
	width: 50px;
}

.imagePopupCancelButton {
	float: left;
}
.imagePopupOkButton {
	float: right;
}
div.richTextEditorBody {
	overflow: scroll;
}

.richTextEditToggle {
	position: absolute;
	top: -23px;
	right: 10px;
	width: 20px;
	height: 20px;
	background-size: 100%;
}
.richEditToggelInEdit {
	background-image: url("img/documents11.png");
}
.richEditToggelInView {
	background-image: url("img/contract.png");
}

.templatePopupList {
	width: 100%;
}

.propertyControlStrech {
	height: 100%;
}