@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2004.08.26
* -----------------------------------------------------------------------------
*  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
 */

table.red { 
  border: 2px solid darkred;
  color: red;
  font-weight: bold;
}

#fulltextleft
{
	color: #A9A9A9;
	border: 1px solid #A9A9A9;
	padding-left: 4px;
}

.clear
{
	clear: both;
}
.hide
{
	display: none;
}
.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;
	line-height: 130%;
}

.error {color: red;}

.printerfriendly {display:none;}

.vnav {display:none;}

.float-left {
  float: left;
  margin-right: 1em;
  clear: none;
}

.float-right {
  float: right;
  margin-left: 1em;
  clear: none;
}


img {border: none;}

ol.decimal {
  list-style-type : decimal;
} 

ol.upper-roman {
  list-style-type : upper-roman;
}

ol.lower-roman {
  list-style-type : lower-roman;
}

ol.upper-alpha {
  list-style-type : upper-alpha;
}

ol.lower-alpha {
  list-style-type : lower-alpha;
}

html[xmlns] .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick
	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector
	 * :root .mozclear for what's give here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}

/* 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-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
ul, ol
{
        padding-left: 28px;
}

/*h1
{
	font-size: 180%;
}*/
h2
{
	line-height: 120%;
}
/*
h3
{
	font-size: 140%;
}*/
h4
{
	line-height: 120%;
}
/*
h5
{
	font-size: 100%;
}
h6
{
	font-size: 80%;
}*/

/* alter some HTML elements' default style
 */

/*a, a:link, a:visited, a:active
{
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}*/
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* 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
{
	/*padding: 20px 0;*/
	padding: 1px 0;
	margin: 0;
        font-size: 60%;
}

#masthead
{
	border: solid 1px #FFF;
	border-width: 7px 0 0 0;
	padding: 1em;
}

#masthead h1
{
	padding: 0;
	margin: 0;
}

#footer
{
	border: solid 1px #FFF;
	border-width: 1px 0 7px 0;
	padding: 0.5em;
}
/* below is a series of selectors to get a consistent font size across
 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper
 * to set the base font-size for the layout.
 */

body
{
	font-size: 80.1%;
}
html>body
{
	/* Opera's default font size is typically 10% smaller than IE or Mozilla
	 * so we correct for this here, since we're using percentages 
	 * everywhere. And we do this because pixel-based fonts don't resize
	 * under IE/Win and percentages/ems are essentially the same, and I like
	 * percentages for fonts.
	 */
	font-size: 90%;
}
body:last-child, * html body
{
	/* of course the previous selector for Opera's fix is caught by more 
	 * than a few other browsers, so we reset that value here.
	 */
	font-size: 80.1%;
}

/* 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.	
 */

a
{
	color: #3259A9;
	text-decoration: none;
}
a:hover
{
	color: #3259A9;
	text-decoration: underline;
}
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	/*border-color: #DCDCDC;*/
	border-color: #FFF;

}
body
{
	background-color: #FFF;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*line-height: 100%;*/

}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #FFF;
	color: #FFF;
}
.hnav
{
	background-color: #FFF;
	color: #000;
}
#outerColumnContainer
{
	border-left-color: #FFF;	/* left column background color */
	border-right-color: #FFF;	/* right column background color */
}
.vnav ul li, .vnav ul li
{
	background-color: #FFF;
	color: #000;
}
.vanav a a:link a:visited a:hover
{
	background-color: #FFF;
	color: #3259A9;
	text-decoration: underline;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #FFF;
	color: #000;
}
.hnav ul li a:hover
{
	background-color: #FFF;
	color: #000;
}
#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%;
}
#footer
{
	background-color: #FFF;
	color: #8C8C8C;
	text-align: center;
	font-size: 10px;
	text-decoration: none;
}

#footer a
{
        color: #8C8C8C;
}

#footer .images_right
{
	border-style: none;
	float: right;
	padding: 0.25em 0.5em;
}

#footer .images_left
{
	border-style: none;
	float: left;
	padding: 0.25em 0.5em;
}

#rightColumn .inv h4
{
	margin-top: 0.5em;
	margin-bottom: 0em;
}
#rightColumn h2
{
	display: none;
}

#middleColumn ul
{
        padding-left: 1em;
}

/* --- silva table styles --- */

table.silvatable {
  empty-cells: show;
  border-collapse: collapse;
  margin-bottom: 1em;
}
table.silvatable tr {
  vertical-align: top;
} 
table.silvatable tr.rowheading {
  font-weight: bold;
} 
table.silvatable td {
  border-right: none ! important;
} 
table.silvatable th.align-left, table.silvatable td.align-left {
  text-align: left;
}
table.silvatable th.align-center, table.silvatable td.align-center {
  text-align: center;
}
table.silvatable th.align-right, table.silvatable td.align-right {
  text-align: right;
}

table.datagrid, table.plain, table.list, table.grid {
  width: 100%;
}

table.plain {
  border-style: none;
} 
table.plain td {
  border-right: none ! important;
}
 
table.list td {
  border-bottom: 1px solid #444444;
} 

table.list tr.rowheading td, table.list thead th {
  border-bottom: 2px solid #444444;
} 
  
table.grid td, table.grid thead th {
  border: 1px dotted #444444;
  border-right: 1px dotted #444444 ! important;
} 
  
table.datagrid td {
  border: 1px dotted #444444;
  border-right: 1px dotted #444444 ! important;
} 
table.datagrid tr.rowheading td {
  border-top-style: none;
  border-left-style: none;
  border-right-style: none ! important;  
} 

table.simple {
  border-style: none;
}

table.simple thead th {
  font-weight: normal;
}

td.even table td {
  border-right: none ! important;
}

tr.even
{
background-color: #FFFFFF;
}


/******************************************************************************/