﻿/* -------------------------------------- Start AmcGlobal -------------------------------------*/

P
{
  font-family: Arial, Helvetica, sans-serif;
}

DIV
{
  font-family: Arial, Helvetica, sans-serif;
}

SPAN
{
  font-family: Arial, Helvetica, sans-serif;
}

TD
{
  font-family: Arial, Helvetica, sans-serif;
}

TH
{
  font-family: Arial, Helvetica, sans-serif;
}

FONT
{
  font-family: Arial, Helvetica, sans-serif;
}

TEXTAREA
{
  font-family: Arial, Helvetica, sans-serif;
}

INPUT
{
  font-family: Arial, Helvetica, sans-serif;
}

INPUT[type=button]
{
  -webkit-appearance: none;
  appearance: none;
  border-color:rgb(190, 190, 190);
  background-color:white;
  border-style:solid;
  border-width:1px;
  border-radius:2px;

}

  INPUT[type=button]:disabled {
    background-color: rgb(220, 220, 220);
    color: rgb(180, 180, 180);
  }

INPUT[type=submit]
{
  -webkit-appearance: none;
  appearance: none;
  border-color:rgb(190, 190, 190);
  background-color:white;
  border-style:solid;
  border-width:1px;
  border-radius:2px;

}

  INPUT[type=submit]:disabled {
    background-color: rgb(220, 220, 220);
    color: rgb(180, 180, 180);
  }

input[type=text]
{
  border: 1px solid rgb(190, 190, 190);
  border-radius:2px;
  padding-left:2px;
  padding-right:2px;
}

input[type=password]
{
  border: 1px solid rgb(190, 190, 190);
  border-radius:2px;
}

input:hover
{
   box-shadow:0 0 0 2px rgba(173,216,230, 0.5);
}


/*input[type=checkbox] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] {
  font-family: FontAwesome;
  display: inline-block;
}

input[type=checkbox] { content: "\f096"; } /* unchecked icon */
input[type=checkbox] { letter-spacing: 10px; } /* space between checkbox and label */
input[type=checkbox]:checked { content: "\f046"; } /* checked icon */
input[type=checkbox]:checked { letter-spacing: 5px; } /* allow space for check mark */

SELECT
{
  font-family: Arial, Helvetica, sans-serif;
  background-color: White;

  -webkit-appearance: none; 
   -moz-appearance: none;
   appearance: none;       /* remove default arrow */
   
    border: 1px solid rgb(190, 190, 190);
    padding:1px;
    padding-left:2px;

    font: message-box;
    font-size: 12px !important;
    border-radius:2px;
}

select::-ms-expand { 
    display: none; /* hide the default arrow in ie10 and ie11 */
}


SELECT:hover
{
   box-shadow:0 0 0 2px rgba(173,216,230, 0.5);
}

textarea
{
  border: 1px solid rgb(190, 190, 190);
}

textarea:hover
{
   box-shadow:0 0 0 2px rgba(173,216,230, 0.5);
}

PRE
{
  font-family: Arial, Helvetica, sans-serif;
}

FIELDSET
{
  padding:2px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(190, 190, 190);
}

legend {
  font-variant: small-caps;
  font-size: 10pt;
  color: rgb(0,0,110);
}

H1
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
  font-weight: bold;
}

H2
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14pt;
  font-weight: normal;
}

H3
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
  font-weight: bold;
}

H4
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  font-weight: bold;
}

UL
{
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 18px;
}

OL LI
{
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}

A
{
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

A:hover
{
  color: tomato;
  text-decoration: none;
}

A.clsRed
{
  color: red
}
A.clsRed:hover
{
  color: red;
  text-decoration: underline
}
A.clsOrange
{
  color: #ff8000
}
A.clsOrange:hover
{
  color: #ff8000;
  text-decoration: underline
}
A.clsGreen
{
  color: green
}
A.clsBlue
{
  color: blue
}
A.clsGreen:hover
{
  color: green;
  text-decoration: underline
}
A.clsBlack
{
  color: black
}
A.clsBlack:hover
{
  color: black;
  text-decoration: underline
}
BODY
{
  background-color: White;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

FORM
{
  margin: 0px;
  border: 0px;
  padding: 0px;
}

.borderboxsize
{
}

TABLE[rules="all"][border="0"] TD,
TABLE[rules="all"][border="0"] TR
{
  border-width:0px; /*fix asp.datagrid omitted GridLines=0, because not needed for msie... */
}

table td
{
  border-width:0px;
}

/* fix too dark 3d borders*/
iframe
{ border-color:white; }

hr
{
  border:0px;
  border-top: 1px solid rgb(190, 190, 190);
  color: rgb(190, 190, 190);
  background-color: ;
  height: 0px;
  display:block;
}

.border3d
{
  border-style:solid !important;
  border-left-color: #ccc !important;
  border-top-color: #ccc !important;
  border-width:1px !important;
  border-bottom:0px !important;
  border-right:0px !important;
}

.bordertop3d
{
  border-top-style:solid !important;
  border-top-color: #cccccc !important;
  border-width:1px !important;
}

.toolBarSeparator /*solid*/
{
  border-right: 1px solid #cccccc !important;
}

/* -------------------------------------- End AmcGlobal -------------------------------------*/

/* -------------------------------------- Start AmcAppl -------------------------------------*/

BODY.clsAmcAppl
{
  border: 0px;
  background: url( "../images/amcnetback.gif" );
}


/* -------------------------------------- End AmcAppl -------------------------------------*/

/* -------------------------------------- Start AmcLogin -------------------------------------*/

BODY.clsAmcLogin
{
  margin: 4px;
  border: 0px;
  background-color:white;
  xbackground: url( "../images/amcnetback.gif" );
}

DIV.clsAmcLoginDiv
{
  padding:8px 10px 8px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(190, 190, 190);
  background-color: rgb(241, 241, 241);
}

TABLE.clsAmcLoginTbl
{
  margin: 1px;
}

TD.clsAmcLoginLbl
{
  font-size: 9pt
}

INPUT.clsAmcLoginTbx
{
  width: 100%;
  padding: 1px;
  border-width: 1px;
}

INPUT.clsAmcLoginBtn
{
  
  color: windowtext;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 5px;
  padding-right: 5px;
  width:100%;
  height:30px;
}

/* -------------------------------------- End AmcLogin -------------------------------------*/

/* -------------------------------------- Start AmcStatus -------------------------------------*/

BODY.clsAmcTop
{
  background-color: rgb(241, 241, 241);
}

/* -------------------------------------- Start AmcStatus -------------------------------------*/

BODY.clsAmcStatus
{
  margin: 0px;  
  background-color: rgb(241, 241, 241);
}

/* -------------------------------------- End AmcStatus -------------------------------------*/

/* -------------------------------------- Start AmcForm -------------------------------------*/

.clsAmcRedraw
{
  position:absolute;
  left:-50px;
  right:-50px;
  width:5px !important;
  height:5px !important;
}

BODY.clsAmcForm
{
  margin: 0px;
  border: 0px;
  background-color: rgb(241, 241, 241);
}
BODY.clsAmcForm FORM
{
  margin: 0px;
  border: 0px;
  padding: 0px;
}

TABLE.clsAmcForm
{
  border-spacing:2px;
  border-collapse:separate;
}

TABLE.clsAmcForm TD
{
	font:			message-box;
	font-size:12px !important;
}

.clsAmcLayoutContainer
{
  padding:0px;
  margin:0px;
  border:0px;
  display:inline-block;
}

.clsAmcFormFrameIframeContainer {
  border-left: 1px solid #cccccc !important;
  border-top: 1px solid #cccccc !important;
  margin-bottom:-2px;
  margin-right:-2px;
}

.clsAmcFormFrameIframe {
  border-width:0px;
  width: 100%;
}

DIV.clsAmcFormHeader
{
  width: 100%;
  border: 0px solid;
}
DIV.clsAmcFormMain
{
  width: 100%;
  border: 0px solid;
}

DIV.clsAmcFormFooter
{
  width: 100%;
  border: 0px solid;
}

DIV.clsAmcFormButtonsArea
{
  text-align: right;
}

TABLE.clsAmcFormTabs
{
  padding-top: 1px;
  width: 100%;
  background-color:rgb(241,241,241);
}

DIV.clsAmcFormTab
{
  background-color:white;
}

DIV.clsAmcFormTabHeader
{
  width: 100%;
}

DIV.clsAmcFormTabMain
{
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
}

DIV.clsAmcFormTabFooter
{
  width: 100%;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitch
{
	font:			menu;
  font-size: 9pt !important;
	border:			1px solid;
	border-color:	rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190);
	cursor: pointer;
	cursor: hand;
	padding:		5px;
  margin-top:2px;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitch:hover
{
  background-color:lightblue !important;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchDisabled
{
	font:			menu;
  font-size: 9pt !important;
	border:			1px solid;
	border-color:	rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190);
	cursor: pointer;
	cursor: hand;
	padding:		5px;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchDisabled SPAN
{
	color:				GrayText; 
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchDisabled SPAN IMG
{
	filter:				gray();
}
	
TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchSelected
{
	font:			menu;
  font-size: 9pt !important;
	border:			1px solid;
	border-color:	rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190);
	border-bottom:	0px;
	padding:		5px;
  padding-top:4px;
  padding-bottom:6px;
	background-color: white;
  margin-top:0px;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchSelectedLeft
{
	font:			menu;
  font-size: 9pt !important;
	border:			1px solid;
	border-color:	rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190);
	border-right:	0px;
	cursor: pointer;
	cursor: hand;
	padding:		5px;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchSelectedLeft:hover
{
  background-color:lightblue !important;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchSelectedRight
{
	font:			menu;
  font-size: 9pt !important;
	border:			1px solid;
	border-color:	rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190);
	border-left:	0px;
	cursor: pointer;
	cursor: hand;
	padding:		5px;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchSelectedRight:hover
{
  background-color:lightblue !important;
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabSwitchRightEnd
{
	border-bottom: 1px solid rgb(190, 190, 190);
}

TABLE.clsAmcFormTabs TD.clsAmcFormTabsMain
{
	clear:			both;
	border:			1px solid;
	border-color:	rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190) rgb(190, 190, 190);
	border-top:	0px;
	width: 100%;
	overflow:auto;
}

TABLE.clsAmcFormRowsContainer TD
{
}

TABLE.clsAmcFormRowsContainer TR.clsAmcFormRow
{
}

TABLE.clsAmcFormRowsContainer TD.clsAmcFormRowCell
{
}

TABLE.clsAmcFormRowsContainer TD.clsAmcFormRowCellLeft
{
  white-space: nowrap;
  padding-right: 3px;
}

TABLE.clsAmcFormRowsContainer TD.clsAmcFormRowCellLeftWrap
{
  white-space: normal;
  padding-right: 3px;
}

TABLE.clsAmcFormRowsContainer TD.clsAmcFormRowCellLeft .mandatory
{
  color: Red;
}

TABLE.clsAmcFormRowsContainer TD.clsAmcFormRowCellLeft .mandatory::after {
  content: "*";
}

TABLE.clsAmcFormRowsContainer TD.clsAmcFormRowCellRight
{
  padding-right: 5px;
  width: 100%;
  height:18px;
  /*padding-top:2px;
  padding-bottom:2px;*/
}

INPUT.clsAmcFormTbx, TEXTAREA.clsAmcFormTbx
{
	font:message-box;
	font-size:12px !important;
	border-width: 1px;
}

INPUT.clsAmcFormTbx::-ms-clear {
    display: none;
}

SELECT.clsAmcFormSel
{
	font:message-box;
	font-size:12px !important;
	border-width: 1px;
}

INPUT.clsAmcFormChbx
{
  width:20px;
  height: 15px;
  margin: 0px;
  padding:0px;
}

SPAN.clsAmcFormChbx INPUT
{
  height: 15px;
}

SPAN.clsAmcFormChbx LABEL
{
}

INPUT.clsAmcFormBtn
{
  margin: 5px;
  height: 23px;
  width: 70px;
  font-size: 8pt;
}

INPUT.clsAmcFormBtnSubmit,INPUT.clsAmcFormBtnRefresh
{
  margin: 5px;
  height: 23px;
  width: 70px;
  font-size: 8pt;
}

INPUT.clsAmcFormBtnAdd
{
  font-size: 6pt;
  font-family:Arial;
  height: 17px;
  margin-left: 3px;
  border-width:1px;
  padding:0px;
  margin:0px;
  width:18px;
  padding-top:1px;
  padding-left:1px;
  border-color:rgb(190, 190, 190);
  background-color:white;
  border-style:solid;
}

DIV.clsAmcFormBlockingWindow
{
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  background: white;
  border:1px solid #cccccc;
  z-index:31000;
  opacity:0.35;
  filter: Alpha(opacity=35);
}

.clsAmcModalPopup
{
  position:absolute !important;
  display:none;
  z-index:32000 !important;
  background-color: rgb(241, 241, 241);
  width: 400px;
  border:1px solid #cccccc;
  font:			message-box;
	font-size:12px !important;
}

.clsAmcModalPopupHeader
{
  background-color: capt;
  color:CaptionText;
  padding:5px;
}

.clsAmcModalPopupBody
{
  margin:5px;
  background-color: White;
  color:WindowText;
}

.clsAmcModalPopupBody fieldset
{
  margin:0px;
}

.clsAmcModalPopupContent
{
  height:200px;
}

.clsAmcModalPopupFooter
{
  padding:5px;
}

DIV.clsAmcFormWaitingMessage
{
  visibility: hidden;
  position: absolute;
  z-index:31000;
}

DIV.clsAmcFormWaitingMessage TD
{
  font-size: 8pt;
  color:Red;
}

DIV.clsAmcFormWaitingMessage i {
  font-size:32px;
}  
  
  DIV .clsAmcLayoutSeparator {
    margin-right: 5px !important;
  }

DIV .clsAmcFormLayoutCell
{
  overflow:visible;
}

/* -------------------------------------- End AmcForm ---------------------------------------*/
/* -------------------------------------- Start AmcGrid -------------------------------------*/

BODY.clsAmcGrid
{
  background-color:White;
  margin: 0px;
  border: 0px;
}
BODY.clsAmcGrid FORM
{
  margin: 0px;
  border: 0px;
  padding: 0px;
}

DIV.clsAmcGridTreeContainer
{
  padding-left:4px;
}

DIV.clsAmcGridTreeContainer a.clsBusinessObjectTreeLink
{
  color: Black !important;
}

DIV.clsAmcGridTreeContainer a.clsBusinessObjectTreeLink:hover
{
  text-decoration:none;
  color:tomato !important;
}


DIV.clsAmcGridTreeContainer a.clsPropertyTreeLink
{
  color: Black !important;
}

DIV.clsAmcGridTreeContainer a.clsPropertyTreeLink:hover
{
  text-decoration:none;
  color:tomato !important;
}

DIV.clsAmcGridTreeTemplate
{
  display:inline-block;
  overflow:auto;
  vertical-align:top;
  border-right:1px solid #cccccc;
  min-width:175px;
}

DIV.clsAmcGridDataTemplate
{
  display:inline-block;
  vertical-align:top;
}

DIV.clsAmcGridHeaderTopTemplate
{
  border-style:solid !important;
  border-color: #cccccc  !important;
  border-width:1px !important;
  border-top:0px !important;
  border-left:0px !important;
  padding:2px;
  background: rgb(241, 241, 241);
}

DIV.clsAmcGridHeaderTopTemplate DIV
{
  font-size: 8pt;
  width: 100%;
  margin-left:0px;
  margin-top:0px;
  border:0px;
}

DIV.clsAmcGridHeaderBottomTemplate
{
  border-style:solid !important;
  border-color: #cccccc  !important;
  border-width:1px !important;
  border-top:0px !important;
  border-left:0px !important;
  padding:2px;
  background: rgb(241, 241, 241);
}

DIV.clsAmcGridHeaderBottomTemplate DIV
{
  font-size: 8pt;
  width: 100%;
  margin-left:0px;
  margin-top:0px;
  border:0px;
}

DIV.clsAmcGridFooterTemplate
{
  border-style:solid !important;
  border-color: #cccccc  !important;
  border-width:1px !important;
  border-bottom:0px !important;
  border-left:0px !important;
  padding:2px;
  background: rgb(241, 241, 241);
}

DIV.clsAmcGridFooterTemplate DIV
{
  font-size: 8pt;
  width: 100%;
  margin-left:0px;
  margin-top:0px;
  border:0px;
}

DIV.clsAmcGridFixedDiv
{
  width: 100%;
  background: rgb(241, 241, 241);
  margin-left:0px;
  margin-top:0px;
  border:0px;
}

DIV.clsAmcGridFixedDiv TABLE
{
  padding:2px;
}

DIV.clsAmcGridFixedDiv .clsAmcFixedTable
{
  border:1px;
  border-top:0px;
  border-left:0px;
  border-right:0px;
  border-style:solid;
  border-color: #cccccc;
}

DIV.clsAmcGridFixedDiv .clsPageIndex
{
  margin:0px;
  min-height:14px;
}

DIV.clsAmcGridTitle
{
  font-size: 10pt;
}

TABLE.clsAmcGridPager TD
{
  font-size: 8pt;
}

TABLE.clsAmcGridPager IMG
{
  display:block;
}

TABLE.clsAmcGridPager INPUT
{
  font-size: 8pt;
  text-align: center;
  width: 40px;
  border: 1px solid rgb(190, 190, 190);
}

DIV.clsAmcGridScrollDiv
{
  width: 100%;
  overflow: auto;
  position:relative;
}

TABLE.clsAmcGridScrollTable
{
  /*border-top: 1px solid #cccccc;*/
  border:0px;
 margin-top:0px;
}

TABLE.clsAmcGridScrollTable TD
{
  padding:0px;
}

div.clsAmcGridTableStickyFill {
  position: absolute;
  z-index: 1;
  background-color: white;
  height: 0px;
  width: 100%;
  top: 0px;
}

TABLE.clsAmcGridTable
{
  border-collapse: separate!important;
  border:0px;
  border-spacing: 0px;
  position:relative;
}

#GridTable2D {
  border-left: 1px solid #cccccc !important;
  border-top: 1px solid #cccccc !important;
}

TABLE.clsAmcGridTable TR.clsHeader TD {
  padding-top: 4px;
  padding-bottom: 0px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 8pt;
  white-space: nowrap;
  vertical-align: top;
  font-weight: bold;
  color: #333333;
  z-index: 2;
}

TABLE.clsAmcGridTable TR.clsHeader TD.clsOff {
  background-color: rgb(241, 241, 241);    
  border-right: 1px solid rgb(202, 202, 202);
  border-bottom: 1px solid rgb(202, 202, 202);
}

TABLE.clsAmcGridTable TR.clsHeader TD.clsOn
{
  background-color: #b6bdd2 !important;
  cursor:hand;
  cursor:pointer;
}

TABLE.clsAmcGridTable TR.clsHeader TD.clsOff TABLE TR TD
{
  background-color:rgb(241, 241, 241); 
  border: 0px;
}

TABLE.clsAmcGridTable TR.clsHeader TD.clsOn TABLE TR TD
{
  background-color: #b6bdd2 !important; 
  border: 0px;
}

TABLE.clsAmcGridTable TR.clsHeader TD A
{
  color: #f0ffff
}

TABLE.clsAmcGridTable TR.clsHeader TD A:hover
{
  color: #add8e6
}

TABLE.clsAmcGridTable TR.clsFilter
{
}

TABLE.clsAmcGridTable TR.clsFilter TD {
  background: rgb(241, 241, 241);
  border-top: 1px solid rgb(202, 202, 202);
  border-right: 1px solid rgb(202, 202, 202);
  border-bottom: 1px solid rgb(202, 202, 202);
  padding: 0px;
  vertical-align: top;
  z-index: 2;
}

TABLE.clsAmcGridTable TR.clsFilter INPUT
{
  border-width: 0px;
  height:18px;
  padding:0px;
  margin:0px;
}

TABLE.clsAmcGridTable TR.clsFilter SELECT
{
  border-width: 0px;
  height:18px;
  margin:0px;
}

TABLE.clsAmcGridTable TR.clsFilter TABLE TR TD
{
  border: 0px;
}

TABLE.clsAmcGridTable TR.clsFooter
{
}

TABLE.clsAmcGridTable TR.clsFooter TD
{
  background: rgb(241, 241, 241);
  border-top: 1px solid rgb(202, 202, 202);
  border-left: 1px solid rgb(202, 202, 202);
  border-right: 1px solid rgb(202, 202, 202);
  border-bottom: 1px solid rgb(202, 202, 202);
  padding: 1px;
  font-size: 8pt;
  vertical-align: top;
}

TABLE.clsAmcGridTable TR.cls2DGroup
{
}

TABLE.clsAmcGridTable TD.cls2DGroupItem
{
  background: rgb(241, 241, 241);
  border-top: 1px solid rgb(202, 202, 202);
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 8pt;
  vertical-align: top;
  font-weight:bold;
}

TABLE.clsAmcGridTable TR.cls2DGroup TD
{
  background: rgb(241, 241, 241);
  border-top: 1px solid rgb(202, 202, 202);
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc; 
  padding-top: 2px;
  padding-bottom: 0px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 8pt;
  vertical-align: top;
  font-weight:bold;  
}

TABLE.clsAmcGridTable TR.clsItem
{
  vertical-align: top;
}

TABLE.clsAmcGridTable TR.clsItem TD
{
  padding-top: 2px;
  padding-bottom: 1px;
  z-index:1;
}

TABLE.clsAmcGridTable TR.clsItemTemplate
{
  display:none;
}

TABLE.clsAmcGridTable TR.clsAlternatingItem
{
  vertical-align: top;
  background-color: #f9f9f9;
}

  TABLE.clsAmcGridTable TR.clsAlternatingItem TD {
    padding-top: 2px;
    padding-bottom: 1px;
  }

TD.clsStickyAlternatingItem {
  background-color: #f9f9f9;
}

TABLE.clsAmcGridTable TR.clsSelectedItem
{
  vertical-align: top;
  background-color: highlight;
}

TABLE.clsAmcGridTable TR.clsSelectedItem TD {
  padding-top: 2px;
  padding-bottom: 1px;
  background-color: rgb(0,120,215) !important;
  color: rgb(255,255,255) !important;
}

TABLE.clsAmcGridTable TR.clsSelectedItem TD A {
  background-color: rgb(0,120,215) !important;
  color: rgb(255,255,255) !important;
}

TABLE.clsAmcGridTable TR.clsHighLiteItem
{
  vertical-align: top;
  background-color: lightblue;

}

TABLE.clsAmcGridTable TD {
  font-size: 11px;
  padding-top: 0px;
  padding-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  min-height: 14px;
}


TABLE .clsAmcGridTable TD.clsItemSelector
{
  vertical-align: middle;
  text-align: center;
  padding: 0px;
  padding-left: 3px;
  padding-right: 3px;
  background-color: rgb(241, 241, 241) !important;
  border-right: 1px solid rgb(202, 202, 202);
  border-bottom: 1px solid rgb(202, 202, 202);
  cursor:default;
}

TABLE.clsAmcGridTable TR.clsSelectedItem TD.clsItemSelector {
  background-color: rgb(241, 241, 241) !important;
}

TABLE.clsAmcGridTable TR:hover TD.clsItemSelector {
  background-color: rgb(241, 241, 241) !important;
}

TABLE.clsItemHoverEnabled TR.clsItem:hover td.clsItemSelector {
  background-color: rgb(241, 241, 241) !important;
}

TABLE.clsItemHoverEnabled TR.clsAlternatingItem:hover td.clsItemSelector {
  background-color: rgb(241, 241, 241) !important;
}

TABLE.clsAmcGridTable TD.clsItemSelector INPUT
{
  /*margin: 0px;
  border-width: 0px;
  height: 13px;
  width: 13px;
  display:block;
  padding:0px;*/
}

TABLE.clsAmcGridTable TD A
{
  color: black;
  text-decoration: none
}

TABLE.clsAmcGridTable TD A:hover
{
  color: tomato;
  text-decoration: none;
}

TABLE.clsAmcGridTable SELECT
{
  font:message-box;
  font-size: 8pt !important;
}

TABLE.clsAmcGridTable INPUT
{
  border: 1px solid gray;
  font-size: 8pt
}

TABLE.clsAmcGridTable .filterEnumMultiTextOuter
{
  *margin-top:1px;
  width: 100%;
  min-height: 18px;
  border-top:0px;
  border-bottom:0px;
  color: black;
  background-color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  cursor: hand;
}

TABLE.clsAmcGridTable .filterEnumMultiText
{
  padding:2px;
}

TABLE.clsAmcGridTable .filterEnumMultiImg
{
  margin-top: 1px;
  cursor: pointer;
  cursor: hand;
}

TABLE.clsAmcGridTable .filterEnumMultiDiv
{
  border: 1px solid rgb(190, 190, 190) !important;
  display:block;
  margin-left:1px;
  margin-top:1px;
  width:16px;
  font-size:10px;
  font-family:Arial;
  text-align:center;
  overflow:hidden;
  cursor:default;
  height:16px!important;
}

TABLE.clsAmcGridTable .filterEnumMultiDiv2
{
  border: 1px outset !important;
  border-color:rgb(241, 241, 241) !important;
  display:block;
  margin-left:1px;
  margin-top:1px;
  width:16px;
  font-size:6px;
  font-family:Arial;
  text-align:center;
  overflow:hidden;
  border-left-color:White !important;
  border-top-color:White !important;
  cursor:default;
  height:16px!important;
}

TABLE.clsAmcGridTable .filterEnumMultiList
{ 
  cursor:default;
  display: none;
  position: absolute;
  z-index: 65535;
  left: 0px;
  top: 0px;
  border: 1px solid ThreeDShadow;
  background-color: #f9f9f9;
  white-space: nowrap;
  overflow: auto;
  overflow-x: hidden;
  padding-top: 2px;
  padding-bottom: 2px;
  min-width:50px;
}

TABLE.clsAmcGridTable .filterEnumMultiList HR
{
  height: 1px;
  color: red;
  background-color: #cccccc;
  border:0px;
}

TABLE.clsAmcGridTable .filterEnumMultiList INPUT
{
  border-width: 0px;
  height: 13px !important;
  width: 13px !important;
  margin: 0px;
  vertical-align:middle;
  padding:0px;
}

TABLE.clsAmcGridTable .filterEnumMultiListRow
{
  padding-left: 2px;
  padding-right: 2px;
  padding-top:1px;
  padding-bottom:1px;
  display:block;
  *display:inline-block;
}

TABLE.clsAmcGridTable .filterEnumMultiListRowSelected
{
  padding-left: 2px;
  padding-right: 2px;
  padding-top:1px;
  padding-bottom:1px;
  background-color: rgb(181, 213, 255);
  display:block;
  *display:inline-block;
}

TABLE.clsAmcGridTable .filterEnumFromGridList
{
  background-color: transparent;
  white-space: nowrap;
}

DIV.clsGridDataControlActive
{
  border:1px solid green !important;
  background-color:transparent !important;
}

DIV.clsGridDataControlChanged
{
 
}

DIV.clsGridDataControl
{
  margin:0px;
  padding-top:1px;
  padding-left:2px;
  padding-right:2px;
  padding-bottom:0px;
  border:1px solid transparent;
  white-space:nowrap;
}

SPAN.clsGridDataControlUnit
{
  display:inline;
}

SPAN.clsGridDataControlValue
{
  display:inline;
}

DIV.clsGridDataControl INPUT
{
  height:9pt;
  display:inline-block;
  margin:0px;
  padding:0px;
  border:0px;
}

DIV.clsGridDataControl INPUT:focus
{
  outline: 0;
}

DIV.clsGridDataControlDateTime
{
  text-align:right; 
}

DIV.clsGridDataControlDateTime INPUT
{
  text-align:right; 
}

DIV.clsGridDataControlBool
{
  text-align:center; 
}

DIV.clsGridDataControlBool INPUT
{
  text-align:center; 
}

DIV.clsGridDataControlText
{
}

DIV.clsGridDataControlDateTime
{
}

DIV.clsGridDataControlNumber
{
}

DIV.GridDataControlBool
{
}

DIV.clsGridDataControlTextMultiValue
{
  display:none;
}

DIV.clsGridDataControlTextMultiHeader
{
  display:inline-block;
  cursor:pointer;
}

DIV.clsGridDataControlTextMultiText
{
  display:inline-block;
  cursor:pointer;
}

DIV.clsGridDataControlTextMultiAddNewItem
{
  cursor:pointer;
  text-align:right;
  font-size:8px;
}

TD.clsAmcGridCellSelected
{
  background-color:lightblue !important;
}

INPUT.clsAmcEditGridInput::-ms-clear {
    display: none;
}

/* -------------------------------------- End AmcGrid ---------------------------------------*/
/* ------------------------------------ Start AmcPrintReport --------------------------------*/

BODY.clsAmcPrintReport
{
  margin: 0px
}

TABLE.clsAmcPrintReport
{
    border-bottom: #000000 1px solid;
    border-left: #000000 2px solid;
    border-right: #000000 1px solid;
    border-top: #000000 2px solid
}
TABLE.clsAmcPrintReport TH
{
    background-color: #e0e0e0;
    border-bottom: #000000 2px solid;
    border-right: #000000 1px solid;
    font-size: 10pt;
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px
}
TABLE.clsAmcPrintReport TR
{
    page-break-inside: avoid
}
TABLE.clsAmcPrintReport TD
{
    border-bottom: #000000 1px solid;
    border-right: #000000 1px solid;
    font-size: 8pt;
    font-weight: normal;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: top;
}

/* -------------------------------------- End AmcPrintReport -------------------------------------*/
/* -------------------------------------- Start AmcDashboard -------------------------------------*/

BODY.clsAmcDashboard
{
  background-color:White;
}
TABLE.clsAmcDashboard
{
    background-color: rgb(255, 255, 220);
    border-bottom: #000000 0px solid;
    border-left: #000000 0px solid;
    border-right: #000000 0px solid;
    border-top: #000000 0px solid;
}
TABLE.clsAmcDashboardBody
{
    border-left: 1px solid rgb(241, 241, 241);
    border-right: 1px solid rgb(241, 241, 241);
    border-bottom: 1px solid rgb(241, 241, 241);
    text-align:left;
}
TABLE.clsAmcDashboard TABLE.clsAmcDashboardBody TD
{
    border:0px;
    font-size: 8pt;
    font-weight: normal;
    padding-left: 5px;
    padding-right: 5px;
    white-space: normal;
}
TABLE.clsAmcDashboard TABLE.clsAmcDashboardBody TD.clsAmcDashboardBodyNazev
{
    font-size: 8pt;
    font-weight: normal;
    padding-left: 5px;
    padding-right: 5px
}
TABLE.clsAmcDashboard TABLE.clsAmcDashboardHF TH
{
    background-color: rgb(241, 241, 241);
    border-bottom: #000000 0px solid;
    color: #000000;
    font-size: 10pt;
    font-weight: bold;
    padding-left: 0px;
    padding-right: 0px
}
TABLE.clsAmcDashboard TABLE.clsAmcDashboardHF TD
{
    padding-left: 0px;
    padding-right: 0px
}
TABLE.clsAmcDashboard A:hover
{
    color: dodgerblue;
    text-decoration: underline
}

TABLE.clsAmcDashboard A.clsAmcDashboardARed
{
    color: red
}
TABLE.clsAmcDashboard A.clsAmcDashboardARed:hover
{
    color: red;
    text-decoration: underline
}
TABLE.clsAmcDashboard A.clsAmcDashboardAOrange
{
    color: #ff8000
}
TABLE.clsAmcDashboard A.clsAmcDashboardAOrange:hover
{
    color: #ff8000;
    text-decoration: underline
}
TABLE.clsAmcDashboard A.clsAmcDashboardAGreen
{
    color: green
}
TABLE.clsAmcDashboard A.clsAmcDashboardAGreen:hover
{
    color: green;
    text-decoration: underline
}
TABLE.clsAmcDashboard A.clsAmcDashboardAOK
{
    color: black
}
TABLE.clsAmcDashboard A.clsAmcDashboardAOK:hover
{
    font-weight: bold
}
TABLE.clsAmcDashboard A.clsAmcDashboardAOKNot
{
    color: red
}
TABLE.clsAmcDashboard A.clsAmcDashboardAOKNot:hover
{
    font-weight: bold
}
TABLE.clsAmcDashboard .clsAmcDashboardRowRed
{
    color: red
}
TABLE.clsAmcDashboard .clsAmcDashboardRowRed A
{
    color: red
}
TABLE.clsAmcDashboard .clsAmcDashboardRowOrange
{
    color: #ff8000
}
TABLE.clsAmcDashboard .clsAmcDashboardRowOrange A
{
    color: #ff8000
}
TABLE.clsAmcDashboard .clsAmcDashboardRowGreen
{
    color: green
}
TABLE.clsAmcDashboard .clsAmcDashboardRowGreen A
{
    color: green
}
TABLE.clsAmcDashboard HR
{
    color: #000000;
    height: 1px
}
TABLE.clsAmcDashboard SELECT
{
    font-size: 8pt
}
TABLE.clsAmcDashboard INPUT
{
    font-size: 8pt
}
TABLE.clsAmcDashboard INPUT.clsAmcDashboardChbx
{
    font-size: 8pt
}

/* -------------------------------------- End AmcDashboard -------------------------------------*/
/* -------------------------------------- Start AmcTree -------------------------------------*/

DIV.clsAmcTree TABLE TD
{
    font-size: 8pt;
}
DIV.clsAmcTree TABLE A
{
    color: black;
}
DIV.clsAmcTree TABLE A:hover
{
    color: red;
    text-decoration: underline;
}
DIV.clsAmcTree TABLE A:active
{
    text-decoration: underline;
}
DIV.clsAmcTree TABLE A.clsHead
{
    font-weight: bold;
    font-style: italic;
}
DIV.clsAmcTree TABLE TABLE A
{
    color: #cc6600;
}
DIV.clsAmcTree TABLE TABLE TABLE A
{
    color: green;
}
DIV.clsAmcTree TABLE TABLE TABLE TABLE A
{
    color: purple;
}
DIV.clsAmcTree TABLE TABLE TABLE TABLE TABLE A
{
    color: black;
}
DIV.clsAmcTree IMG
{
    display: inline-block;
}
DIV.clsAmcTree A
{
    display: inline-block;
}
DIV.clsAmcTree SPAN
{
    display: inline-block;
}
/* -------------------------------------- End AmcTree -------------------------------------*/
/* ------------------------------------- Start Editor ---------------------------------------*/

DIV.clsEditorBar
{
  margin-top:8px;
  border: 0px;/* 1px solid #cccccc !important;*/
}

DIV.clsEditorBar TABLE
{
  /*border: 1px solid #cccccc;
  border-collapse:collapse;
  /*border-color: #cccccc !important;
  border-width:1px;*/
  border:0px;
}

DIV.clsEditorBar > TABLE > TBODY > TR > TD
{
  border: 1px solid #cccccc;
}

DIV.clsEditorBar TABLE TABLE
{
  border:0px;
  border-left:0px !important;
  border-right:0px !important;
}

IFRAME.clsEditorIframe {
  background-color: White;
  border-color: rgb(190, 190, 190);
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
}

IFRAME.clsEditorIframe:hover {
  box-shadow: 0 0 0 2px rgba(173,216,230, 0.5);
}

TD .clsEditorBtnOff
{
  padding:3px;
  font-size: 8pt;
  cursor: pointer;
  cursor: hand;
  tab-index: 0;
}

TD.clsEditorSeparator
{
  border: 0px;
}
 
/* -------------------------------------- End Editor ----------------------------------------*/


DIV.clsContextMenu
{
  border-top: rgb(102,102,102) 1px outset;
  border-right: rgb(102,102,102) 1px outset;
  border-left: rgb(204,200,193) 2px outset;
  border-bottom: rgb(102,102,102) 1px outset;
  position: absolute;
  background-color: rgb(249,248,247);
  visibility: hidden;
  z-index: 100000;
  padding: 1px;
  padding-left: 0px;
}

DIV.clsContextMenu TABLE
{
  background-color: rgb(249,248,247);
  width: 180px;
  height: 22px;
  cursor: default;
  font-size: 8pt;
  color: black;
}

DIV.clsContextMenu TABLE.clsItemTableSep
{
  height: auto;
}

DIV.clsContextMenu TABLE.clsItemTableOver
{
  border: 1px solid rgb(10,36,106);
  background-color: rgb(182,189,210);
}

DIV.clsContextMenu TABLE.clsItemTable TD.clsItemText
{
  padding-left: 7px;
}

DIV.clsContextMenu TABLE.clsItemTableOver TD.clsItemText
{
  padding-left: 6px;
}

DIV.clsContextMenu TABLE.clsItemTable TD.clsItemImage
{
  padding-top: 1px;
  width: 24px;
  text-align: center;
  background-color: #cccccc;
  filter: Alpha(opacity=75);
}

DIV.clsContextMenu TABLE.clsItemTableOver TD.clsItemImage
{
  padding-top: 1px;
  width: 24px;
  text-align: center;
  position: relative;
  left: -1px;
  top: -1px;
  filter: Shadow(color=black, Direction=135, Strength=1);
}

DIV.clsContextMenu TABLE.clsItemTable TD.clsItemSep1
{
  width: 24px;
  background-color: #cccccc; 
  filter: Alpha(opacity=75);
}

DIV.clsContextMenu TABLE.clsItemTable TD.clsItemSep2
{
  padding-left: 7px;
}

DIV.clsContextMenu TABLE.clsItemTable TD.clsItemSep2 HR
{
  height: 1px;
}

.ui-tooltip
{
  padding:0px !important;
  border:0px !important;
  margin:0px !important;
}

.ui-tooltip-content
{
  padding:5px;
  border:	1px solid #cccccc !important;
  margin:0px;
  background-color: white;
  font:			message-box;
	font-size:12px !important;
}

INPUT.clsAmcGridBtnListItem
{
  height:16px !important;
  font-size:6pt !important;
  cursor:pointer;
  cursor:hand;
  padding-left:1px !important;
  padding-right:1px !important;
}

A.clsAmcGridRelDate
{
  display:block;
  height:14px !important;
  font-size:6pt !important;
  cursor:pointer;
  cursor:hand;
  padding-left:1px !important;
  padding-right:1px !important;
  padding-top:4px;
}

A.clsAmcGridRelDate:hover
{
  text-decoration:none !important;
  color:Black !important;
}

INPUT.clsAmcGridItemFromModuleInput
{
  font:message-box;
  height:16px !important;
  font-size:8pt !important;
  border:0px !important;
}

INPUT.clsAmcGridItemFromModuleInput::-ms-clear {
    display: none;
}

DIV.clsAmcCalculator
{
  border: 1px solid;
  border-color: #ccc;
  padding:2px;
  background-color:white;
  box-shadow:0 0 0 2px rgba(0, 0, 0, 0.07);
}

DIV.clsAmcCalculator DIV.clsAmcCalculatorMatrix
{
  padding-bottom:2px;
}

DIV.clsAmcCalculator DIV.clsAmcCalculatorMatrix DIV.clsAmcCalculatorRow
{
  margin-left:2px;
  margin-top:2px;
}

DIV.clsAmcCalculator DIV.clsAmcCalculatorMatrix DIV.clsAmcCalculatorRow DIV.clsAmcCalculatorButton
{
  display:inline-block;
  background-color:rgb(241, 241, 241);
  border:1px solid rgb(241, 241, 241);
  text-align:center;
  margin-right:2px;
  width:32px;
  height:16px;
  padding-top:8px;
  font-size:10px !important;

  cursor:default;
}

DIV.clsAmcCalculator DIV.clsAmcCalculatorMatrix DIV.clsAmcCalculatorRow DIV.clsAmcCalculatorButton:hover
{
  background-color:lightblue !important;
}

TABLE.clsAmcGridTable TR.clsFilter INPUT[type=button]
{
  background-color:rgb(241, 241, 241);
}

i {
  xcolor: rgb(0, 153, 153) !important;
}

.fa-sigma:before {
   content: '\03A3';
   font-weight: 700;
}

.amc-red {
  color:rgb(230, 0, 0) !important;
}

.amc-yellow {
  color:rgb(230, 184, 0) !important;
}

.amc-stick {
  color:forestgreen !important;
}

.amc-orange {
  color:orange !important;
}

.amc-green {
  color:forestgreen !important;
}

.amc-purple
{
  color:purple !important;
}

.amc-blue{
  color:rgb(46, 46, 184) !important;
}

.fa {
color:  rgb(68, 68, 68);
}

.amc-disabled {
  color:lightgray !important;
}

/*#ApplMenu { background-color:white; }*/

/*#AmcGrid_fixedDiv { background-color:white !important; }

body.clsAmcForm { background-color:white !important; }*/

#ApplMenu span.Alstanet-Amc-ApplMenuItem { border-color:rgb(241, 241, 241); }

span.cb, span.cbd
{
  font: 				menu;
	font-size: 9pt !important;
	font-weight: 		normal;
	padding:			3px 5px 3px 5px;
	white-space:		nowrap;
	vertical-align:		middle;
  white-space: nowrap; 
  margin:1px;
  cursor:default;
}

span.cb:hover
{
  background-color:lightblue;
}



/*#ApplMenu { background-color:rgb(68, 68, 68); color:white; }
#ApplMenu span { border-color:rgb(68, 68, 68) !important; }*/



SPAN.clsAmcFormDataControlTristateContainer
{
  color: rgb(90, 90, 90);
}

SPAN.clsAmcFormDataControlTristateVal
{
  width: 16px;
  height: 16px;
  line-height: normal;
}

SPAN.clsAmcFormDataControlTristateVal:hover
{
  box-shadow:0 0 0 2px rgba(173,216,230, 0.5);
}

SPAN.clsAmcFormDataControlTristateValTrue
{
  display:none;
}

SPAN.clsAmcFormDataControlTristateContainerTrue SPAN.clsAmcFormDataControlTristateValTrue
{
  display:inline-block;
}

SPAN.clsAmcFormDataControlTristateValNull
{
  display:none;
}

SPAN.clsAmcFormDataControlTristateContainerNull SPAN.clsAmcFormDataControlTristateValNull
{
  display:inline-block;
}

SPAN.clsAmcFormDataControlTristateValFalse
{
  display:none;     
}

SPAN.clsAmcFormDataControlTristateContainerFalse SPAN.clsAmcFormDataControlTristateValFalse
{
  display:inline-block;
}

i.clsAmcApplIcon {
  padding:1px;
}

div.clsAmcFormTimeStamp table td { font-size:11px !important; }


input.clsAmcFormChbx
{
  display: none;
}

input.clsAmcFormChbx + label:before {
  font-family: FontAwesome;
  display: inline-block;
  font-size: 14px;
  text-align:left;
  font-weight:normal;
}

input.clsAmcFormChbx + label:before { width: 14px; }

  input.clsAmcFormChbx + label {
    position: relative;
    top:0px;
    left:0px;
    color: rgb(90, 90, 90);
  }

input.clsAmcFormChbx + label:hover
{
   box-shadow:0 0 0 2px rgba(173,216,230, 0.5);
}

input.clsAmcFormChbx + label:before { content: "\f096"; }
input.clsAmcFormChbx:checked + label:before { content: "\f046"; }

div.clsAmcFormToolbar
{
  font-size:0px;
  line-height:0px;
  text-align:left;
  padding-left:5px;
  border-bottom:1px solid #ccc;
}

div.clsAmcFormToolbarItem
{
  display:inline-block;
  cursor: 			Default;
	font: 				menu;
	font-size: 9pt !important;
	font-weight: 		normal;
	padding:			3px 5px 3px 5px;
	border:				1px solid rgb(241, 241, 241);
	white-space:		nowrap;
	vertical-align:		middle;
	xbackground-color:	#d8d8d1;
  white-space: nowrap; 
  margin:1px;

}

div.clsAmcFormToolbarItem:hover {
	background:		lightblue;
	border-width:	1px;
	border-style:	solid;
	border-color:	lightblue;
}

SPAN.clsFormDataControlNumberNE
{
  display:inline-block;
  padding-top:2px;
  padding-bottom:2px;
}

SPAN.clsFormDataControTextNE
{
  display:inline-block;
  padding-top:2px;
  padding-bottom:2px;
}

SPAN.clsFormDataControBoolNE
{
  display:inline-block;
  padding-top:2px;
  padding-bottom:2px;
}

SPAN.clsFormDataControDateTimeNE
{
  display:inline-block;
  padding-top:2px;
  padding-bottom:2px;
}

SPAN.clsFormDataControItemFromModuleNE
{
  display:inline-block;
  padding-top:2px;
  padding-bottom:2px;
}

SPAN.clsFormDataControlSelectNE
{
  display:inline-block;
  padding-top:2px;
  padding-bottom:2px;
}

SPAN.clsFormDataControlNumberValNE
{
  display:inline-block;
  width:86px;
  text-align:right;
  padding-right:0px;
 xmargin-right:29px;
}

span.clsAmcFormBtnListItem
{
  font-size: 8px !important;
}
span.clsAmcFormBtnRemoveItem { font-size: 8px !important; }

span.amc-fdc-cell-fix
{
  display:table-cell;
  vertical-align:middle;
  border-spacing:0px;
}

span.amc-fdc-cell-stretch
{
  display:table-cell;
  width:100%;
  vertical-align:middle;
  border-spacing:0px;
  font-size:0px;
  line-height:0px;
}

span.amc-ifm-select {
  border: 1px solid rgb(190, 190, 190);
  display:inline-block;
  width:100%;
  height:14px;
  overflow:hidden;
  text-overflow: ellipsis;
  padding: 1px;
  padding-left:2px;
  font-size:12px;
  line-height:normal;
  border-radius:2px;
  background-color:white;
}

span.amc-ifm-placeholder {
  color:rgb(117,117,134);
}

span.amc-ifm-select-link-contrainer {
  display: inline-block;
  width: 28px;
  text-align:right;
}

span.amc-ifm-container:hover span.amc-ifm-select {
  box-shadow: 0 0 0 2px rgba(173,216,230, 0.5);
}

span.amc-ifm-select:hover span {

}

a.amc-ifm-select-link
{
  display:inline-block;
}

a.amc-ifm-select-link-disabled i {
  opacity: 0.5;
  filter: Alpha(opacity=50);
  
}

span .amc-ifm-val {
  font-size: 12px;
  display:inline-block;
}

span.amc-ifm-container
{
  display:block;
  width:100%;
  min-width:100px;
}

span.amc-ifm-select-ne {
  display:block;
  font-size:12px;
  line-height:normal;
}

div.clsEditorBarv2
{
}

div.clsEditorBarRowv2
{
  padding-bottom:2px;
}

span.clsEditorBtnOffv2 {
  display: inline-block;
  padding-top: 2px;
  padding-right: 4px;
  padding-bottom:2px;
  cursor: pointer;
  font-size: 16px;
}

span.clsEditorSeparatorv2 {
  display: inline-block;
  border-right: 1px solid rgb(190, 190, 190);
  height:12px;
}

div.clsEditorInfoTextv2
{
  display:none;
}

div.clsEditorv2 {
  height: 100%;
}

div.clsEditorBarv2 {
  height:50px;
}


div.clsEditorFramev2 {
  height: -moz-calc(100% - 50px); /* Firefox */
  height: -webkit-calc(100% - 50px); /* Chrome, Safari */
  height: calc(100% - 50px); /* IE9+ and future browsers */
  padding-left: 4px;
  padding-right: 4px;
}


.cm-s-neat.CodeMirror:hover {
  box-shadow: 0 0 0 2px rgba(173,216,230, 0.5);
}

div.clsAmcStatusMessagesPopupContainer {
  position: absolute;
  z-index: 30000;
  top: 8px;
  right: 8px;
  text-align: right;
}

  div.clsAmcStatusMessagesPopupContainer div {
    background-color: white;
    width: 250px;
    display: block;
    margin-bottom: 10px;
    padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    border: 1px solid rgb(190, 190, 190);
    font-size: 12px;
  }

table.clsTabHeaderText {
  border-spacing: 0px;
  border-collapse: collapse;
}

table.clsTabHeaderText td {
  padding: 0px;
  white-space: nowrap;
}

/* -------------------------------------- Start Expression builder --------------------------*/

.clsEBContainer {
  background-color: white;
  padding-right: 6px;
  margin-bottom: 6px;
}


  .clsEBContainer div .clsEBLine {
    border-color:rgb(190, 190, 190);
  }

  .clsEBTitle {
  font-weight: bold;
  display: inline-block;
  padding: 2px;
  text-align: center;
  border-radius:2px;
}

.clsEBFirstNode {
}

.clsEBLastNode {
}

.clsEBLastNode input {
  height:auto!important;
  margin:2px;
  margin-right:6px;
}

.clsEBAndNode {
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  padding-top: 6px;
}

  .clsEBAndNode > .clsEBChild > .clsEBFirstNode {
  }

  .clsEBAndNode > .clsEBChild {
    margin-left: 30px;
    border-width: 0px;
    border-style: solid;
    border-color: #8ac7db;
    border-left-width: 2px;
    border-right-width: 0px;
  }

  .clsEBAndNode > div > div > .clsEBLine {
    border-color: #8ac7db;
  }

  .clsEBAndNode > div > div > div > .clsEBLine {
    border-color: #8ac7db;
  }
  

  .clsEBAndNode > .clsEBChild > .clsEBLastNode {
  }

.clsEBAndNode > .clsEBTitle {
  background-color: #8ac7db;
}

.clsEBOrNode {
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  padding-top: 6px;
}

  .clsEBOrNode > .clsEBChild > .clsEBFirstNode {
  }

.clsEBOrNode > .clsEBTitle {
  background-color: #79d279;
}

  .clsEBOrNode > .clsEBChild {
    margin-left: 24px;
    border-width: 0px;
    border-style: solid;
    border-color: #79d279;
    border-left-width: 2px;
    border-right-width: 0px;
  }

  .clsEBOrNode > div > div > .clsEBLine {
    border-color: #79d279;
  }

  .clsEBOrNode > div > div > div > .clsEBLine {
    border-color: #79d279;
  }

  .clsEBOrNode > .clsEBChild > .clsEBLastNode {
  }

.clsEBConditionNode {
  padding:6px;
}

.clsEBConditionNode select
{
  vertical-align:top;
}

.clsEBNode {
  padding-right: 0px;
  font-size: 12px;
  white-space:nowrap;
}

.clsEBAction {
  position:relative;
  z-index:100;
  float: right;
}

.clsEBIcon {
  color: lightgray !important;
}

.clsEBIcon:hover {
  color: green !important;
}

.clsEBAction i {
  color: lightgray !important;
}

.clsEBAction i:hover {
  color: red !important;
}

.clsEBNode select {
  font-size: 12px;
  line-height: 10pt;
  font-family: Arial, Helvetica, sans-serif;
  margin-left:5px!important;
  margin-right:5px!important;
  max-width:100px;
}

.clsEBNode input {
  font-size: 12px;
  line-height: 10pt;
  padding-top: 1px;
  padding-bottom: 1px;
  font-family: Arial, Helvetica, sans-serif;
}

.clsEBProperty {
  display: inline-block;
  margin-left:10px;
  vertical-align:top;
}

.clsEBNode .amc-ifm-container {
  display: inline-block;
  vertical-align: bottom;
}

.clsEBLine {
  display:inline-block;
  border-bottom:2px solid black;
  width: 16px;
  height: 8px;
  vertical-align: top;
}

.clsEBLastChild {
  border-left:0px!important;
}

.clsEBLastNode  {
  padding-top:0px;
}

.clsEBLastChild > div > .clsEBLine {
  border-left: 2px solid black;
  margin-top: -6px !important;
  height:14px!important;
}

.clsEBLastChild > div > div > .clsEBLine {
  border-left: 2px solid black;
}

.clsEBAndNode > .clsEBChild > div {
  padding-left: 0px;
}

.clsEBOrNode > .clsEBChild > div 
{
  padding-left:0px;
}

.clsExpressionData {
  display:inline-block;
  margin-left:10px;
  
}

.clsEBHeader {
  text-align:right;
  padding-right:5px;
}

.clsEBHeader input {
  margin-left:5px;
  font-size:12px;
}

.clsEBPropertyName {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
  display: inline-block;
  white-space: nowrap;
  padding: 0px;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: bottom;
}

.clsEBCOPName {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  font-weight: bold;
  padding-top: 2px;
  font-size:smaller;
  color: purple;
}

.clsEBCVTName {
  display: inline-block;
  vertical-align: bottom;
}

.clsEBCValExpression {
  margin-bottom:-16px!important;
}

.clsEBCVal {
  vertical-align:bottom;
  display:inline-block;
}

.clsEBCVal > .clsFormDataControBoolNE {
  padding: 0px;
  
}

.clsEBCVal > .clsFormDataControTextNE {
  padding: 0px;
  
}

.clsEBCVal > .clsFormDataControlNumberNE {
  padding: 0px;   
}

.clsEBCVal > .clsFormDataControDateTimeNE {
  padding: 0px;
}

.clsEBOperatorNodeText {
  padding: 1px;
  padding-left: 4px;
  padding-right: 4px;
  background-color: white;
  font-weight: normal;
}

.clsEBTitle select {
  margin:0px!important;
}

.clsEBMatchCaseName {
  display: inline-block;
  vertical-align: top;
  font-size:smaller;
  padding-top:2px;
  margin-right: 5px;
  font-weight: bold;
  color: blue;
}

.clsEBValueSearchBy {
  display: inline-block;
  vertical-align: top;
  margin-left:2px;
}

/* -------------------------------------- End Expression builder ----------------------------*/

.clsColConfigOption:hover {
  background-color: lightblue;
}

.clsColConfigOptionTypeIcon::before {
  font-family: FontAwesome;
  color: inherit;
  content: attr(data-unicodeicon);
}

.clsColConfigOptionTypeIcon-amc-red::before {
  color: rgb(230, 0, 0) !important;
}

.clsColConfigOptionTypeIcon-amc-yellow::before {
  color: rgb(230, 184, 0) !important;
}

.clsColConfigOptionTypeIcon-amc-orange::before {
  color: orange !important;
}

.clsColConfigOptionTypeIcon-amc-green::before {
  color: forestgreen !important;
}

.clsColConfigOptionTypeIcon-amc-purple::before {
  color: purple !important;
}

.clsColConfigOptionTypeIcon-amc-blue::before {
  color: rgb(46, 46, 184)
}

.clsOptionUserColumnIcon::after {
  font-family: FontAwesome;
  color: rgb(230, 0, 0);
  content: '\f1ec';
  float: right;
}

.clsOptionJoinedColumnIcon::after {
  font-family: FontAwesome;
  color: rgb(46, 46, 184);
  content: '\f0c1';
  float: right;
}

.clsOptionGridColumnIcon::after {
  font-family: FontAwesome;
  content: '\f0f6';
  float: right;
}

.clsOptionGridColumnLinkActive::after {
  color: tomato !important;
}


div.clsAmcGridToolbar {
  font-size: 0px;
  line-height: 0px;
  text-align: left;
  border-bottom: 1px solid #ccc;
  background-color: rgb(241, 241, 241);
}

div.clsAmcGridToolbarItem {
  display: inline-block;
  cursor: Default;
  font: menu;
  font-size: 9pt !important;
  font-weight: normal;
  padding: 3px 5px 3px 5px;
  border: 1px solid rgb(241, 241, 241);
  white-space: nowrap;
  vertical-align: middle;
  xbackground-color: #d8d8d1;
  white-space: nowrap;
  margin: 1px;
}

div.clsAmcGridToolbarItem:hover {
  background: lightblue;
  border-width: 1px;
  border-style: solid;
  border-color: lightblue;
}


