@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
 
 html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eeeeee;
	color: #000;
	font-family: Trebuchet MS, sans-serif;
}
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

ol
{
	font-size: 90%;
	margin-top: 1px;
	margin-bottom: -1px;
	padding-top: 0;
	padding-bottom: 0;
}

h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
	color: #006699;
}
h4
{
	font-size: 130%;
	color: #006699;
}
h5
{
	font-size: 110%;
	color: #006699;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a:link, a:visited, a:active
{
	text-decoration: none;
}

a
{
	text-decoration: none;
	color: #0033FF;
}

a:hover
{
	text-decoration: underline;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 95%;
	border-top-width: 2px;
	border-top-style: solid;
	border-color: #CCE1E1;
	padding-left: 2px;
	padding-top: 2px;
	padding-bottom: 2px;
}


td
{
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-color: #CCE1E1;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-right: 4px;
}

th
{
	text-align: left;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-color: #CCE1E1;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 1px;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}


#pageWrapper_encepp
{
	font-size: 80%;
}

#pageWrapper_encepp
{
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	border-style: solid;	/* explicitly defined within eact selector in 
				   case you want change border styles (to mix 
				   it up) between elements */
	border-width: 0 0px;	/* puts a border on the left and right sides of
				   the page. #masthead and #footer will handle 
				   the top and bottom borders */
	border: #7598A6;
	border-left:1px;
}





#pageWrapper
{
	border-width:1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}

#webLogo
{
    padding: 0;
	margin: 0;
}


#printLogo
{
	display: none;
}

* html #pageWrapper_encepp
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: solid 1px #fff;
	border-width: 1px;
	padding: 0;
	width:898px;
	overflow:hidden;
	height: 90px;
}

#masthead h1
{
	padding: 0;
	margin: 0;
}

#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: 15em solid #fff;
}
#innerColumnContainer
{
	/*border: solid 1px #fff;*/
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, #HomeRightColumn  * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 0px 0 0;
	width: 95%;
	z-index: 3;
}

#middleColumn2
{
	float: right;
	width: 100%;
	z-index: 5;
	padding-top: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -1px;
}

#middleColumn
{
	float: right;
	width: 100%;
	z-index: 5;
	padding-top: 4em;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -1px;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -15em;
	width: 15em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 16em;
	margin: 4em -16em 0 1px;
	z-index: -1;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #889988;
}
#footer
{
	border: solid 1px #7598A6;
	border-width: 1px 1px;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em -1em 1em 0em;
	height:800px;
}

.vnav2
{
	margin: 1em -1em 1em 0em;
	height:500px;
}

.vnav_menu
{
	font-weight: bold;
	background-color: #006699;
}

.vnav2_menu
{
	font-weight: bold;
	background-color: #006699;
}


.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}

.vnav2 ul, .vnav2 ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}

.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}

.vnav2 ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}

.vnav ul li
{
	border-bottom: solid 1px #fff;
}

.vnav2 ul li
{
	border-bottom: solid 1px #fff;
}

.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}

.vnav2 ul li, .vnav2 ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}

.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}

.vnav2 ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}

.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}

.vnav2 ul li a, .vnav2 ul li a:link, .vnav2 ul li a:visited, .vnav2 ul li a:active, .vnav2 ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}

.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}

.vnav2 h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}

* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}

* html .vnav2 ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}

* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

* html .vnav2 ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: left;
	padding-left: 15em;
}

.hnav_menu
{
	font-weight: bold;
}

.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0;
	margin-left:-10px;
	padding-left: 10px;
	padding-right: 15px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	white-space: nowrap;
}

.hnav ul li a.enddivide
{
	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-right: solid 1px #fff;

}
.hnav ul li a.firstOne
{
	margin-left:0;
	}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
/*#pageWrapper, */#innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-top-color: #fff;
	/*border-right-color: #7598A6;*/
	border-bottom-color: #fff;
	border-left-color: #fff;
	
}



#pageWrapper
{
	font-size: 75%;	/* set your default font size here. */
	margin-left:-1px;
}
#masthead
{
	background-color: #FFCC66;
	color: #fff;
	/*border-top-color: #fff;*/
	border-right-color: #7598A6;
	border-bottom-color: #fff;
	border-left:none;
	border-top:1px solid #006699;
}


	
.hnav
{
	background-color: #006699;
	color: #fff;
}
#outerColumnContainer
{
	border-left-color: #C7E7E9;	/*left column background color */
	border-right: #7598A6 1px solid;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
					   
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #006699;
	color: #FFFFFF;
}

.vnav2 ul li a:link, .vnav2 ul li a:visited, .vnav2 ul li a:active
{
	text-decoration: none;
	background-color: #006699;
	color: #FFFFFF;
}

#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #FFFFFF;
	color: #006699;
}

.vnav2 ul li a:hover, #rightColumn .vnav2 ul li a:hover
{
	text-decoration: none;
	background-color: #FFFFFF;
	color: #006699;
}

.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #006699;
	color: #FFFFFF;
}
.hnav ul li a:hover
{
	background-color: #FFFFFF;
	color: #006699;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}

#footer
{
	border-top-color: #006699;
	border-right-color: #7598A6;
	border-bottom-color: #7598A6;
	border-left-color: #7598A6;
	border-top-width: 2px;
	border-left:none;
}

#footer
{
	background-color: #C7E7E9;
	text-align: center;
}

#footer
{
	padding-bottom: 10px;
}


.insidecentre {

	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em 0 2em;
}

.insidecentre2 {

	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em 0 0.2em;
}
/*	FIREFOX BORDER HACKS */

/*To add the border for firefox, remove pagewrapper_encepp 
border intructions, so that future versions will be protected 
from a double border in firefox.  Then add a border to the left 
and right of the elements that make up the rest of the page */ 

/*Browser Hack IE doesn't interpret intructions for 
elements selected in this way, the empty comment is 
important because IE7 will interpret these instructions 
otherwise */


body /* */> /* */ #pageWrapper_encepp{
	border:none;
	}

body /* */> #pageWrapper_encepp > /* */#masthead{
	border-left:1px solid #006699;
}
body /* */> #pageWrapper_encepp > /* */	#left_border{
	border-left:1px solid #006699;
}	

body /* */> #pageWrapper_encepp > /* */#footer{
	border-left:1px solid #006699;
	border-right:1px solid #006699;
}

/* a dvision added because OuterColoumnLeft already 
has a border on the left side in IE this division
has no styles attached
*/

body /* */> #pageWrapper_encepp > /* */	#left_border{
	border-left:1px solid #006699;
}


/*     Styles for utilties   */


#TopTools{
	width:auto;
	height:23px;
	color:#333;
	overflow:hidden;
	font-family: Verdana, Arial, sans-serif;
	font-size:75%;
	vertical-align:middle;
	background-color:#EBEBEB;
}

#TopTools2{
	width:auto;
	height:23px;
	color:#333;
	font-family: Verdana, Arial, sans-serif;
	font-size:85%;
	vertical-align:middle;
	background-color:#EBEBEB;
}

span.jsCommands{
	text-align:right;
	position:relative;
	color:#333;
	overflow:hidden;
	font-family: Verdana, Arial, sans-serif;
	font-size:70%;
	display:block;
	height:20px;
	width:auto;
	padding-top:5px;
	}
	
.testdiv{
	position:relative;
	
	}	

#TopTools a, #TopTools a:visited, #TopTools a:link{
	color:#333;
	}
#TopTools span.breadCrumbs{
	margin-left:10px;
	float:left;
	margin-top:5px;
}


.breadCrumbs2{
	margin-left:10px;
	margin-top:5px;
}

.mini_header{
	font-weight: bold;
	font-family: Verdana, Arial, sans-serif;
	margin-top: 5px;
}

.prtButton{
	margin:2px 10px 0px 3px;
	height:12px;
	}
.fs1{margin:0px 0px 0px 3px;}
.fs2{margin-left:1px;}
.fs3{margin-left:1px;}

#top_breaker{
	margin-left:auto;
	margin-right:auto;
	width:900px;
	}
	
#footer_image{
	width:308px;
	height:40px;
	margin-left:auto;
	margin-right:auto;
	background:url(/images/encepp/Encepp_EMEAEUlogo_72.gif) no-repeat;
	}


/*     miscellaneous temporary styles   */

#announce {
	border: 2px;
	border-color: #FF9933;
	padding: 10px;
	border-style: solid;
}


.printers { border-bottom: 1px; solid: #ccc;  margin-bottom: 1px; font-family: Arial; font-size: 9pt; font-style: normal; width: 95%;}

.colprntLined { width: 220px; max-width: 220px; display: inline-block; text-align: left; height:100%;
               padding-bottom: 3px; border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;}
.col300Lined { width: 300px; max-width: 300px; display: inline-block; text-align: left;  margin-right: 1px; padding-left:2px; padding-bottom: 3px;
               border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px;
                height:100%; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;}

.colprntLinedBot { width: 220px; max-width: 220px; display: inline-block; text-align: left; height:100%;
                  padding-bottom: 3px; border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
                  border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;}
.col300LinedBot  { width: 300px; max-width: 300px; display: inline-block; text-align: left;  margin-right: 1px; padding-left:2px; padding-bottom: 3px;
                  border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
                  border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;
                 }

.colprnt { width: 220px; max-width: 220px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.colerror { width: 220px; max-width: 220px; display: inline-block; text-align: left; margin-left: 1px; vertical-align:top; wrap:true; word-wrap:break-word}

.col220 { width: 220px; max-width: 220px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col200 { width: 200px; max-width: 200px; display: inline-block; text-align: left;  margin-right: 1px; padding-bottom: 3px;}
.col200Cell {width: 200px; max-width: 200px; display: inline-block; text-align: left;  margin-right: 1px; padding-bottom: 3px;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}
.col240 { width: 240px; max-width: 240px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col240Cell { width: 240px; max-width: 240px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; 
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;}
.col260 { width: 260px; max-width: 260px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col270 { width: 270px; max-width: 270px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col280 { width: 280px; max-width: 280px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col290 { width: 290px; max-width: 290px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col285 { width: 285px; max-width: 285px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col500 { width: 500px; max-width: 500px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col550 { width: 550px; max-width: 550px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col580 { width: 580px; max-width: 580px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col590 { width: 590px; max-width: 590px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col600 { width: 600px; max-width: 600px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.colprntadd { width: 300px; max-width: 300px; display: inline-block; text-align: left;  margin-right: 1px; padding-bottom: 3px;}

.col40 { width: 40px; max-width: 40px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col45 { width: 45px; max-width: 45px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col50 { width: 50px; max-width: 50px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col55 { width: 55px; max-width: 55px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col60 { width: 60px; max-width: 60px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }


.col80 { width: 80px; max-width: 80px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col90 { width: 90px; max-width: 90px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col100 { width: 100px; max-width: 100px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col100Cell { width: 100px; max-width: 100px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}

.col100vTop { width: 100px; max-width: 100px; display: inline-block; text-align: left; margin-right: 1px; vertical-align:top; padding-bottom: 3px; }


.col110 { width: 110px; max-width: 110px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col120 { width: 120px; max-width: 120px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col120Cell { width: 120px; max-width: 120px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}		
.col130 { width: 130px; max-width: 130px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col130Cell { width: 130px; max-width: 130px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}
.col150 { width: 150px; max-width: 150px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; vertical-align: top;}
.col150Cell { width: 150px; max-width: 150px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}
.col160 { width: 160px; max-width: 160px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col170 { width: 170px; max-width: 170px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col180 { width: 180px; max-width: 180px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col190 { width: 190px; max-width: 190px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col210 { width: 210px; max-width: 210px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col220 { width: 220px; max-width: 220px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col230 { width: 230px; max-width: 230px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col240 { width: 240px; max-width: 240px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }
.col250 { width: 250px; max-width: 250px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }

.col300balls { max-width: 300px; display: inline-block; margin-right: 1px; padding-bottom: 3px; text-align: left; vertical-align: top;}
.col300 { width: 300px; max-width: 300px; display: inline-block; margin-right: 1px; padding-bottom: 3px; text-align: left; vertical-align: top;}
.col300Cell { width: 300px; max-width: 300px; display: inline-block; margin-right: 1px; padding-bottom: 3px; text-align: left; vertical-align: top;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}

.col310 { width: 310px; max-width: 310px; display: inline-block; margin-right: 1px; padding-bottom: 3px; text-align: left; vertical-align: top;}
.col320 { width: 320px; max-width: 320px; display: inline-block; margin-right: 1px; padding-bottom: 3px; text-align: left; vertical-align: top;}
.col330 { width: 330px; max-width: 330px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col340 { width: 340px; max-width: 340px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col350 { width: 350px; max-width: 350px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col355 { width: 355px; max-width: 355px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col358 { width: 358px; max-width: 358px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col359 { width: 359px; max-width: 358px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col359Cell { width: 359px; max-width: 358px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}
.col360 { width: 360px; max-width: 360px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col380 { width: 380px; max-width: 380px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col370 { width: 370px; max-width: 370px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col400 { width: 400px; max-width: 400px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}
.col400Cell { width: 400px; max-width: 400px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;
			border-left-style: solid; border-left-width: 1px; border-left-color: #E6E6E6; border-right-style: solid; border-right-width: 1px; border-right-color: #E6E6E6; border-top-style: solid; border-top-width: 1px; border-top-color: #E6E6E6;
            border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E6E6E6;  height:100%;	}

.col408 { width: 408px; max-width: 408px; display: inline-block; margin-right: 1px; padding-bottom: 3px; vertical-align: top;}

.col300spe { width: 300px; max-width: 300px; font-size:14pt; display: inline-block; margin-right: 1px; padding-bottom: 3px; text-align: center; vertical-align: top;}

.subheading{
  font-weight: bold;
  font-size: 16;
  width: 500px;
  max-width: 50px;
  display: inline-block;
  text-align: left;  
}

#myGroup {display:none}

#myGroupSec8 {display:none} 

#myGroupSec81 {display:none}

#myGroup12 {display:none}

#myGroupSec13 {display:none}

#myGroupSec130 {display:none}

#myGroupSec131 {display:none}

#myGroupSec132 {display:none}

#myGroupSec133 {display:none}

#myGroupSec134 {display:none}

#myGroupSec135 {display:none}

#myGroupSec160 {display:none}

#myGroupSec161 {display:none}

#myGroupSec162 {display:none}

#myGroupSec163 {display:none}

.makecheckscrollable {
    border: 1px solid #ccc;
    list-style: none;
    height: 20em;
    overflow: auto;
    width: 20em;
}

.makecheckscrollable, .makecheckscrollable li { margin: 0; padding: 0; }

.makecheckscrollable label {
    display: block;
    padding-left: 25px;
    text-indent: -25px;
}

.makecheckscrollable label:hover { background: #006699; color: #fff; }

.mytable
{
	font-size: 95%;
	border-top-width: 0px;
	border-top-style: solid;
	border-color: #CCE1E1;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}


.mytd
{
	vertical-align: top;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-color: #CCE1E1;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 0px;
}


.printersTop { width:95%; border: 1px solid #E6E6E6; overflow:auto;}

.printersNoBorder { width:95%; overflow:auto;}

.printersOth { width:95%; border-right: 1px solid #E6E6E6;
                          border-left: 1px solid #E6E6E6;
                          border-bottom: 1px solid #E6E6E6; overflow:auto;}

.col70 { width: 70px; max-width: 70px; display: inline-block; text-align: left; margin-right: 1px;  padding-bottom: 3px; }


.hnav ul.hnav_menu{position:relative;}
ul.hnav_menu ul  { width: 160px; position: absolute;left:0; top:100%; z-index:999;margin:0;padding:0;margin-top:4px;}
.hnav ul.hnav_menu li ul li {float:none; width:160px;}
.hnav ul.hnav_menu li ul li a {display:block; border-bottom:1px solid #fff;}
.hnav ul.hnav_menu li ul li.hover, .hnav ul.hnav_menu li.hover {position:relative;}
