/**
 * It may be useful to copy the below styles and use on your page
 */
.dataTable {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.3em;
  font-size: 13px;
}

.dataTable table {
  border-collapse: separate;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  border-spacing: 0;
  table-layout:fixed;
}

.dataTable th,
.dataTable td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  min-width: 50px;
  max-width: 300px;  
  height: 22px;
  line-height: 16px;
  padding: 0 4px 0 4px; /* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
  overflow:hidden;
}


.dataTable div.minWidthFix {
  width: 50px;
}

.dataTable tr:first-child th.htNoFrame,
.dataTable th:first-child.htNoFrame,
.dataTable th.htNoFrame {
  border-left-width: 0;
  background-color: white;
  border-color: #FFF;
}

.dataTable th:first-child,
.dataTable td:first-child,
.dataTable .htNoFrame + th,
.dataTable .htNoFrame + td {
  border-left: 1px solid #CCC;
}

.dataTable tr:first-child th,
.dataTable tr:first-child td {
  border-top: 1px solid #CCC;
}

.dataTable thead tr:last-child th {
  border-bottom-width: 0;
}

.dataTable thead tr.lastChild th {
  border-bottom-width: 0;
}

.dataTable th:nth-child(3){ width: 300px !important; height: 23px !important  }
.dataTable td:nth-child(3){ display:block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 300px !important; height: 23px !important  }

.dataTable th {
  background-color: #C1DCFF;
  color: #000000;
  text-align: center;
  font-family: tahoma;
  height: 25px;
  font-weight: normal;
  FONT-SIZE: 11px;
  white-space: nowrap;
}

.dataTable tr {  
  text-align: center;
  color: #000000;    
  white-space: nowrap;
}


.dataTable th .small {
  background-color: #C1DCFF;
  color: #000000;
  text-align: center;
  font-family: tahoma;
  height: 25px;
  font-weight: normal;
  FONT-SIZE: 11px;
  white-space: nowrap;
}

.dataTable thead th {
  padding: 2px 4px;
}

.dataTable th.active {
  background-color: #CCC;
}

/* border background */
.dataTable .htBorderBg {
  position: absolute;
  font-size: 0;
}

.dataTable .htBorderBg.selection {
  background-color: #EEF4FF;
}

/* border line */
.dataTable .htBorder {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #000;
  font-size: 0;
}

.dataTable .htBorder.current {
  background: #5292F7;
  width: 2px;
  height: 2px;
}

.dataTable .htBorder.selection {
  background: #89AFF9;
  width: 1px;
  height: 1px;
}

/* fill handle */
.dataTable .htFillHandle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #5292F7;
  border: 1px solid #fff;
  font-size: 0;
  cursor: crosshair;
}

.dataTable .htBorder.htFillBorder {
  background: red;
  width: 1px;
  height: 1px;
}
/*WFX :Edited for editedable cells CSS*/
/* textarea border color */
.editInput
{
  border : 1px solid #5292F7;
  outline-width: 0;
  margin: 0;
  padding: 1px 1px 0 1px;
  font-family: tahoma; /*repeat from .dataTable (inherit doesn't work with IE<8) */  
  font-size: 11px;  
  resize: none;
  width:56px;  
  text-align:center;
}
textarea.handsontableInput {
  border: 2px solid #5292F7;
  outline-width: 0;
  margin: 0;
  padding: 1px 4px 0 2px;
  font-family: Arial, Helvetica, sans-serif; /*repeat from .dataTable (inherit doesn't work with IE<8) */
  line-height: 1.3em;
  font-size: 11px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
  resize: none;
  width:10px;
  text-align:center;
}

.handsontableInputHolder.htHidden textarea.handsontableInput {
  border-color: #5292F7;
  background: #5292F7;
  color: #5292F7;
}

.handsontableInputHolder {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;  
}

/* typeahead rules. Needed only if you are using the autocomplete feature */
.typeahead {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  float: left;
  display: none;
  min-width: 160px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background-color: white;
  border-color: #CCC;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;

}

.typeahead li {
  line-height: 18px;
  display: list-item;
}

.typeahead a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #333;
  white-space: nowrap;
}

.typeahead li > a:hover, .typeahead .active > a, .typeahead .active > a:hover {
  color: white;
  text-decoration: none;
  background-color: #08C;
}

.typeahead a {
  color: #08C;
  text-decoration: none;
}

.clsEvenRow {
	FONT-SIZE: 11px; MARGIN: 2px 2px 0px; COLOR: #000000; FONT-FAMILY: tahoma; BACKGROUND-COLOR: #e4f1fb
}

.clsOddRow {
	FONT-SIZE: 11px; MARGIN: 2px 2px 0px; COLOR: #000000; FONT-FAMILY: tahoma; BACKGROUND-COLOR: #ffffff
}

.clsHandsOnHeader
{
  background-color: #dbebf8;
  color: #000000;
  text-align: center;
  font-family: tahoma;
  height: 25px;
  font-weight: normal;
  FONT-SIZE: 11px;
  white-space: nowrap;
}
.clsPOMCaption
{
	width: 300px !important ;
	table-layout:fixed;
	overflow:hidden;	
}
.clsRefCol
{
	 background: #ffffcc;
     font-weight: bold;
     
}
.clsStdCol
{
	background: honeydew;
    font-weight: bold; 
    
}
.clsGradCol
{
	background: azure; 
    font-weight: bold;
   
}
.clsRestCols
{
	table-layout:fixed;
	
}


