@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
 */
.required {
	color:#FF0000;
}
.clear {
	clear: both;
	padding-bottom: 1px; /* for Gecko-based browsers */
	margin-bottom: -1px; /* for Gecko-based browsers */
}

.hide {
	display: none !important;
}
#dale {

background-image:url(../images/Dale.jpg);
background-position:bottom;
background-repeat:no-repeat;
}
.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,ol,dl,p,h1,h2,h3,h4,h5,h6 {
	margin:4px 0;
	padding:4px 0;
}
li{
	margin:0;
	padding:0;
	margin-left:14px;
	
}
h1 {
	font-size: 220%;
}

h2 {
	font-size: 190%;
}

h3 {
	font-size: 160%;
}

h4 {
	font-size: 110%;
}

h5 {
	font-size: 100%;
}

h6 {
	font-size: 70%;
}

/* alter some HTML elements' default style
 */


label {
	cursor: pointer;
}


td, th
{
	vertical-align:top;
	color:#000000;
}

/* 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: 0; /* 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 {
	border: solid 1px #fff;
	border-width: 0 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;
}

* html #pageWrapper { /* \*/
	word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

#masthead {
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

#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
	 */
	padding-left: 1em;
	padding-right: 1em;
}

#innerColumnContainer {
	border: solid 1px #fff;
	border-width: 0;
	margin: 0 -1px; /* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}

#leftColumn,#middleColumn,#rightColumn,* html #SOWrap {
	overflow: visible; /* fix for IE italics bug */
	position: relative; /* fix some rendering issues */
}

#SOWrap {
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}

#middleColumn {
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	font-size:90%;
}

#middleColumn .inside {
	margin: 0;
	padding: 0;
}

#leftColumn {
	float: left;
	margin: 0 1px 0 -1em;
	width: 1em;
	z-index: 4;
}

#rightColumn {
	float: right;
	width: 1em;
	margin: 0 -1em 0 1px;
	z-index: 2;
}

#footer {
	border: solid 1px silver;
	border-width:0;
	border-top-width:1px;
}

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.
 */
.menu_vertical {
	margin: 1em 0;
	color:#000000;
}

.menu_vertical ul, .menu_vertical ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}

.menu_vertical ul {
	border: solid 1px #fff;
	border-bottom-width: 0;
}

.menu_vertical ul li {
	border-bottom: solid 1px #fff;
}

.menu_vertical ul li,.menu_vertical ul li a {
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}

.menu_vertical ul li a {
	display: block;
	padding: 2px 5px 3px 5px;
}

.menu_vertical ul li a,.menu_vertical ul li a:link,.menu_vertical ul li a:visited,.menu_vertical ul li a:active,.menu_vertical ul li a:hover
	{
	text-decoration: none;
	cursor: pointer;
}

.menu_vertical h3 {
	margin-bottom: 0;
	padding:5px;
	padding-bottom: 0;
	font-size: 110%;
}

* html .menu_vertical ul li a /* hide from IE5.0/Win & IE5/Mac */ {
	height: 0.01%;
}

* html .menu_vertical 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.
 */
.menu_horizontal {
	border-bottom: solid 1px #fff;
	text-align: center;
}

.menu_horizontal,.menu_horizontal ul li a {
	/* need to middor veritcal padding on .menu_horizontal and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .menu_horizontal to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .menu_horizontal _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}

.menu_horizontal ul,.menu_horizontal ul li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu_horizontal ul li a {
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px; /* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}

.menu_horizontal ul li a:link,.menu_horizontal ul li a:visited,.menu_horizontal ul li a:active,.menu_horizontal ul li a:hover
	{
	text-decoration: none;
}

.menu_horizontal ul li span.divider {
	display: none;
}

* html .menu_horizontal ul li,* html .menu_horizontal ul li a {
	width: 1%; /* IE/Mac needs this */
	display: inline-block; /* IE/Mac needs this */ /* \*/
	width: auto;
	display: inline;
	/* reset above hack */
}

* html .menu_horizontal,* html .menu_horizontal ul a { /* \*/
	height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}



.recordbrowser, .objecteditor{
    position:relative;
    width:90%;
    margin:auto;
    border:1px solid #FFFFFF;
}


.columnheader_horizontal {
	border:0;
	text-align: left;
}

.columnheader_horizontal,.columnheader_horizontal ul li a {
	/* need to middor veritcal padding on .columnheader_horizontal and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .columnheader_horizontal to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .columnheader_horizontal _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 1px;
	padding-bottom: 1px;
}

.columnheader_horizontal ul,.columnheader_horizontal ul li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.columnheader_horizontal ul li a {
	margin: 0 -1px 0 0;
	padding-left: 1px;
	padding-right: 1px; /* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}

.columnheader_horizontal ul li a:link,.columnheader_horizontal ul li a:visited,.columnheader_horizontal ul li a:active,.columnheader_horizontal ul li a:hover
	{
	text-decoration: none;
}

.columnheader_horizontal ul li span.divider {
	display: none;
}

* html .columnheader_horizontal ul li,* html .columnheader_horizontal ul li a {
	width: 1%; /* IE/Mac needs this */
	display: inline-block; /* IE/Mac needs this */ /* \*/
	width: auto;
	display: inline;
	/* reset above hack */
}

* html .columnheader_horizontal,* html .columnheader_horizontal ul a { /* \*/
	height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
.buttongroup_horizontal{
	/* need to middor veritcal padding on .buttongroup_horizontal and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .buttongroup_horizontal to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .buttongroup_horizontal _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 4px;
	padding-bottom: 4px;
}

.buttongroup_horizontal ul,.buttongroup_horizontal ul li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.buttongroup_horizontal ul li a {
	white-space: nowrap;
}

.buttongroup_horizontal ul li a:link,.buttongroup_horizontal ul li a:visited,.buttongroup_horizontal ul li a:active,.buttongroup_horizontal ul li a:hover
	{
	text-decoration: none;
}

.buttongroup_horizontal ul li span.divider {
	display: none; 
}

* html .buttongroup_horizontal ul li,* html .buttongroup_horizontal ul li a {
	width: 1%; /* IE/Mac needs this */
	display: inline-block; /* IE/Mac needs this */ /* \*/
	width: auto;
	display: inline;
	/* reset above hack */
}

* html .buttongroup_horizontal,* html .buttongroup_horizontal ul a { /* \*/
	height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
A.BLUE, A.BLUE:active, A.BLUE:visited, A.BLUE:hover, A.BLUE:hover,
BUTTON.BLUE, BUTTON.BLUE:active, BUTTON.BLUE:visited, BUTTON.BLUE:hover, BUTTON.BLUE:hover,
A.GREEN, A.GREEN:active, A.GREEN:visited, A.GREEN:hover, A.GREEN:hover,
BUTTON.GREEN, BUTTON.GREEN:active, BUTTON.GREEN:visited, BUTTON.GREEN:hover, BUTTON.GREEN:hover,
A.RED, A.RED:active, A.RED:visited, A.RED:hover, A.RED:hover,
BUTTON.RED, BUTTON.RED:active, BUTTON.RED:visited, BUTTON.RED:hover, BUTTON.RED:hover,
button
{
	position:relative;
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	color:#FFFFFF;
	text-decoration:none;
	padding:1px 3px;
	display:block;
	margin:0;
	margin-right:6px;
}

button span, a span{
	position:relative;
	vertical-align:middle;
	padding:2px;
}
.columnheader_horizontal {
	border:0;
	text-align: left;
}


.logo{
	border:1px solid silver;
}
.listbox{
	position:relative;
	border:1px solid black;
	font-size:90%;
}
.listbox .listboxheader{
	background-color:black;
	color:#FFE80F;
	margin:0;
	padding:4px;
}
listboxheader h4{
	padding:0;
	margin:0;
}
.listbox .listboxfooter{
	background-color:#FFE80F;
	color:black;
	margin:0;
	padding:8px;
}
.listbox .listq{
	padding-left:18px;
}
.listbox ul {
position:relative;
background-color:white;

padding-top:5px;
padding-bottom:5px;
}

.listbox ul li {
	padding-top:10px;
}

#Main_Table { width:98%;}

.comparisonCheckList_td1 {border:1px solid silver; background-color:#FFFFFF; border-width:2px 1px 0 1px;} /*2101*/
.comparisonCheckList_td2 {border:1px solid silver; background-color:#EFEFEF; border-width:0 1px;} /*01 Gray*/
.comparisonCheckList_td3 {border:1px solid silver; background-color:#FFFFFF; border-width:0 1px;} /*01 White*/
