/* CSS Document */
body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #666666;
	text-align: center;
	background-image: url(../images/body_bg.gif);


}
h1 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #9A1920;

}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #0E1282;

}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #999999;
	text-transform: uppercase;

}


td{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #04404A;

}
p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #04404A;

	

}


#pic{
float: left;
}

#pic2{
float: right;
}
@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
 */
.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, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family:Verdana, Arial, Sans-Serif; 
}
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
{
/*	margin: 25px 4%;	 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. */
	/*margin: 20px 0 20px 0;				 
	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;
background-color: #fff;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#header
{
	
	padding: 0;
	margin: 0;
	width: 800px;
}

#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
	 * bobmutch: change the #rightColumn and #leftColumn Margins is you change 
	 * the border-left or border-right and the background color is at
	 * #outerColumnContainer
	 */ 
	border-left: solid 210px #fff;
	border-right: solid 0px #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, * 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;
	text-align:left;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -195px;
	width: 190px;
	z-index: 4;
}

#rightColumn
{
	float: right;
	width: 175px;
	margin: 0 -175px 0 1px;
	z-index: 2;
}
#footer
{
width: 740px;
}


#pageWrapper, #masthead, #innerColumnContainer, 
{
	border-color: #ccc;
}
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: #eee;
	color: #000;
	font-family:Verdana, Arial, Sans-Serif; 
}


#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

#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
{
	color: #000;
	text-align: left;
}
.footer

{
font-size:11px;
}
/******************************************************************************/

/*******************************************************************************
*  fixedWidth.css : 2004-07-19 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  Provide a fixed width to the layout
*******************************************************************************/

* html body
{
	text-align: center;	/* hack to center this under IE5 */
}
* html #pageWrapper
{
	text-align: left;	/* keep the content left-aligned */
}

#pageWrapper
{
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top:0px;
	margin-bottom:0px;
}

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

/* end tool tip newset*/

/* General CSS */
a img {border-width: 0;}

		
.componentheading

{
	font-size: 18px;
	font-weight: bold;

}

a.mainlevel
 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #A2A2A2;
	letter-spacing: -1px;
	text-decoration: none;
	padding: 2px 5px 2px 20px;
	font-weight: bold;
	display: block;
	background-image: url(../images/red-arrow.gif);
	background-repeat: no-repeat;
	background-position: left;
	
}
a.mainlevel:link,
a.mainlevel:active,
a.mainlevel:visited,
 {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #A2A2A2;
	letter-spacing: -1px;
	text-decoration: none;
	font-weight: bold;
		display: block;
}

a.mainlevel#active_menu{
	color: #9A1920;
}
a.mainlevel:hover,
#leftcol a.mainlevel:hover {
	text-decoration: underline;
	background-image: url(../images/red-arrow2.gif);
		background-repeat: no-repeat;
	background-position: left;


}
a.sublevel:link,
a.sublevel:active,
a.sublevel:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px 5px 2px 15px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	color: #515151;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cccccc;
	display: block;
	background-image: url(../images/indent1.png);
		background-repeat: no-repeat;
	background-position: left;

	}
	


a.sublevel:hover {

	color: #9A1920;
	text-decoration: underline;
}
#active_menu{
	color: #9A1920;
}
/** generic menu item link on mouseover **/
.contentheading {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-weight: bold;
	color: #515151;
	letter-spacing: -1px;
	}
.moduletable-nav{
	background-color: #9A1920;
	width: 800px;
	padding: 5px 0px 5px 230px;
		text-align: right;
}
a.mainlevel-nav {
	background-color: #9A1920;
	text-align: right;
	height: 14px;
	margin: 0px 5px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 2px 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	height: 14px;
	}
	
a.mainlevel-nav:link,
a.mainlevel-nav:active,
a.mainlevel-nav:visited,
 {
	background-color: #9A1920;
	text-align: right;
	height: 14px;
	margin: 0px 5px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 2px 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	height: 14px;
}
a.mainlevel-nav:hover
 {
	background-color: #FFFFFF;
	text-align: right;
	height: 14px;
	margin: 0px 5px;
	font-weight: bold;
	color: #9A1920;
	padding: 2px 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	height: 14px;
}

			#rightColumn { display: none; }
			#SOWrap { margin: 0; }
			#innerColumnContainer, #outerColumnContainer { border-right-width: 0; }
