﻿/* Terence Ordona, portal[AT]imaputz[DOT]com         */
/* http://creativecommons.org/licenses/by-sa/2.0/    */

/* begin some basic styling here                     
body {
	background: #FFF;
	color: #000;
	font: normal normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin: 10px;
	padding: 0
}

table, td, a {
	color: #000;
	font: normal normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif
}

h1 {
	font: normal normal 18px Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin: 0 0 5px 0
}

h2 {
	font: normal normal 16px Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin: 0 0 5px 0
}

h3 {
	font: normal normal 13px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #008000;
	margin: 0 0 15px 0
}
 end basic styling                                 */

/* define height and width of scrollable area. Add 16px to width for scrollbar */
div.tableContainer {
	clear: both;
	border: 1px solid gray;
	/*height: 800px;*/
	overflow: auto;
	/*width: 1140px;*/
}

/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.tableContainer {
	/*overflow: hidden;*/
	overflow: auto;
	/*width: 1140px;*/
}

/* define width of table. IE browsers only                 */
div.tableContainer table {
	float: left;
	/*width: 1130px;*/
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	/*width: 1140px;*/
}

/* set table header to a fixed position. WinIE 6.x only                                       */
/* In WinIE 6.x, any element with a position property set to relative and is a child of       */
/* an element that has an overflow property set, the relative value translates into fixed.    */
/* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */
thead.fixedHeader tr {
	position: relative
}

/* set THEAD element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
html>body thead.fixedHeader tr {
	display: block
}

/* make the TH elements pretty */
thead.fixedHeader th {
	background: #C9C9C9;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	border-top: 1px solid #999;
	font-weight: normal;
	padding: 2px 3px 3px 4px;
}

/* make the A elements pretty. makes for nice clickable headers                */
thead.fixedHeader a, thead.fixedHeader a:link, thead.fixedHeader a:visited {
	color: #FFF;
	display: block;
	text-decoration: none;
	width: 100%
}

/* make the A elements pretty. makes for nice clickable headers                */
/* WARNING: swapping the background on hover may cause problems in WinIE 6.x   */
thead.fixedHeader a:hover {
	color: #FFF;
	display: block;
	text-decoration: underline;
	width: 100%
}

/* define the table content to be scrollable                                              */
/* set TBODY element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
/* induced side effect is that child TDs no longer accept width: auto                     */
html>body tbody.scrollContent {
	display: block;
	/*height: 740px;*/
	height: calc(100vh - 200px);
	overflow: auto;
	width: 100%;
}

/* make TD elements pretty. Provide alternating classes for striping the table */
/* http://www.alistapart.com/articles/zebratables/                             */
tbody.scrollContent td, tbody.scrollContent tr.normalRow td {
	background: #EEE;
	/*border-bottom: none;
	border-left: none;
	border-right: 1px solid #CCC;
	border-top: 1px solid #DDD;*/
	border: 1px solid #CCC;
	padding: 2px 3px 3px 4px;
}

tbody.scrollContent tr.alternateRow td {
	background: #FFF;
/*	border-bottom: none;
	border-left: none;
	border-right: 1px solid #CCC;
	border-top: 1px solid #DDD;*/
	border: 1px solid #CCC;
	padding: 2px 3px 3px 4px;
}

/* define width of TH elements: 1st, 2nd, and 3rd respectively.          */
/* Add 16px to last TH for scrollbar padding. All other non-IE browsers. */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body thead.fixedHeader th {	/* ifpCat */
	width: 180px;
}

/* ifpName 
html>body thead.fixedHeader th + th {	
	width: 250px;
}
*/

html>body thead.fixedHeader th + th  {  /* fueltype */
	width: 220px;
}

html>body thead.fixedHeader th + th + th {	/* ffMatType or treeShrubPart */
	width: 200px;
}

html>body thead.fixedHeader th + th + th + th {	 /* n */
	width: 35px;
}	
html>body thead.fixedHeader th + th + th + th + th {	/* mean */
	width: 70px;
}
html>body thead.fixedHeader th + th + th + th + th + th {	/* units */
	width: 50px;
}
html>body thead.fixedHeader th + th + th + th + th + th + th { 	/* min */
	width: 70px;
}
html>body thead.fixedHeader th + th + th + th + th + th + th + th { 	/* max */
	width: 70px;
}


/* define width of TD elements: 1st, 2nd, and 3rd respectively.          */
/* All other non-IE browsers.                                            */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body tbody.scrollContent td {	/* ifpCat */
	width: 180px;
}

/* ifpname 
html>body tbody.scrollContent td + td {		
	width: 250px;
}
*/

html>body tbody.scrollContent td + td  {	/* fueltype */
	width: 220px;
}

html>body tbody.scrollContent td + td +td  {	/* ffMatType/treeShrubPart */
	width: 200px;
}

html>body tbody.scrollContent td + td + td + td {	/* n */
	width:35px;
}
html>body tbody.scrollContent td + td + td + td + td {	/* mean */
	width: 70px;
}
html>body tbody.scrollContent td + td + td + td + td + td {	/* units */
	width: 50px;
}
html>body tbody.scrollContent td + td + td + td + td + td + td {	/* min */
	width: 70px;
}
html>body tbody.scrollContent td + td + td + td + td + td + td + td {	/* max */
	width: 70px;
}
