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

.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;
}
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;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
p    
 { font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; margin: 0 7px 0 4px; padding-top: 5px; padding-bottom: 5px }
form { font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; margin: 4px 7px 0 4px; padding-top: 5px; padding-bottom: 5px }
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
 { font-family: Verdana, Arial, Helvetica, sans-serif }
td, th
 { font-family: Verdana, Arial, Helvetica, sans-serif; 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: 0 0;
	margin: 0;
}
#pageWrapper
{
	background-image: url("../images/Right_bkg.png");
	background-repeat: repeat-x;
	background-position: 100% 0;
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0;		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 40em;	/* IE doens't understand this property. I use ems rather
				   than pixels so that the layout shouldn't break even
				   when the browser's default size is set very large */
	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;
}

#innerColumnContainer
{
	background-color: #fff;
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 99.9%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, #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: 99.9%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14.5em;
	width: 14.5em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14.6em;
	margin: 0 -14.6em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

.vnav
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{

	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #EBEBEB;
}
.vnav ul li a
{
	display: block;
	text-decoration: none;
	padding: 2px 10px;
}
* html .vnav 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 */
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}

/* horizontal navigation stuff. mostly exactly as seen in the hnav.css styleheet
 * in the original skidoo layout.
 */

.hnav
 { font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; background: url(../images/Navi_bkg.png); white-space: nowrap; margin: 0; padding: 10px 0 2px }
.hnav1 { font-size: 0.8em; font-family: Verdana, Arial, Helvetica, sans-serif; background: url(../images/Navi_bkg.png); white-space: nowrap; margin: 0; padding: 10px 0 2px }
.hnav ul span.divider
{
	display: none;
}
.hnav1 ul span.divider { display: none }
* html .hnav/* Hide from IE5/Mac (& IE5.0/Win) */
{
	height: 1%;	/* holly hack to fix a render bug in IE6/Win */
}
* html .hnav1 { height: 1% }
* html .HNAV
{
	height: auto;	/* above IE6/Win holly hack breaks IE5/Win when page 
			   length get beyond the point that 1% height is taller 
			   than the text height. IE5/Win does not need this 
			   holly hack so we remove it here */
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector will remove that padding */
}
* html .HNAV1 { padding: 0; height: auto }
.hnav ul
{
	text-align: center;
	list-style-type: none;
	line-height: normal;
	margin: 0;
	padding: 0;
}
.hnav1 ul { line-height: normal; text-align: center; list-style-type: none; margin: 0; padding: 0 }
.hnav ul li
{
	display: inline;
	white-space: nowrap;
	margin: 0;
}
.hnav1 ul li { white-space: nowrap; display: inline; margin: 0 }
.hnav ul li a
{
	text-decoration: none;
	margin: 0 -1px 0 0;
	padding: 3px 10px 4px 10px;
	border-left: solid 1px #000;
	border-right: solid 1px #000;
}
.hnav1 ul li a { text-decoration: none; margin: 0 -1px 0 0; padding: 3px 10px 4px; border-right: 1px solid #fff; border-left: 1px solid #fff }
* html .HNAV ul li a
{
	/* \*/
		width: 1%;
	/* holly hack for IE5/Win inline padding. this hack fixes different 
	 * rendering bugs in 5.0 and 5.5. Width is used instead of height 
	 * because if the document is too long, these elements become very tall
	 * and disrupt the look of the document. too wide an element is better, 
	 * visually, than too tall. */
}
* html .HNAV1 ul li a { width: 1% }
.hnav ul li a:hover
{
	text-decoration: none;
}
.hnav1 ul li a:hover { text-decoration: none }
/* 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: 100.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: 110%;
}
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: 100.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.	
 */

#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .hnav, .hnav ul li a
{
	border-color: #fff; /* defines border line color for middle column.
						*/
}
body
{
	background-color: #fff;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #898;
	color: #fff;
}
.hnav
{
	color: #fff;
}
.hnav1 { color: #fff }
#outerColumnContainer
{
	border-left-width: 0;
	border-right-width: 0;	/* we remove the borders so we can apply
				   background images. */
	padding-left: 14.5em;	/* because padding is on the left-side,
				   the left-column"s background image is
				   going to be applied to this element. */
	margin-right: 14.5em;	/* the right-column"s space is reserved
				   with margin space rather than padding,
				   so we can apply a background image to
				   the parent element, #pageWrapper, and
				   it will peek through. */
	background-image: url(../images/Left_bkg.png);
	background-repeat: repeat-x;
	background-position: 0 0;
}
.vnav ul li a:link, .vnav ul li a:visited
{
	color: #000;
}
.vnav ul li a:hover
{
	background-color: #930;
	color: #fff;
}
.hnav ul li a:link, .hnav ul li a:visited
{ 
	color: #000; 
	background-color: #C3BEBD;
	text-decoration: none;
}
.hnav1 ul li a:link, .hnav1 ul li a:visited { color: #000; text-decoration: none; background-color: #c3bebd }
.hnav ul li a:hover
{
	background-color: #DEDADA;
	color: #fff;
}
.hnav1 ul li a:hover { color: #fff; background-color: #dedada }
#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-image: url(../images/Footer_bkg.png);
	color: #fff;
	text-align: center;
}

/******************************************************************************/
#header  {
	height: 98px;
	background: url(../images/Header_bkg.png);
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#logo {
	width: 496px;
	height: 98px;
	position: absolute;
}
#picture_right {
	position: relative;
	width: 273px;
	height: 98px;
	float: right;
}
#navi_horz {
	height: 34px;
	background: url(../images/Navi_bkg.png);
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	margin: 0px;
	padding: 0px;
}
#logo1 {
	position: absolute;
	top: 98px;
	left: 0px;
	width: 184px;
	height: 34px;
	padding: 0px;
	margin: 0px;
}
#photo_news         { padding-right: 10px; position: relative; width: 300px; float: left }
#photo_full         { padding-right: 10px; position: relative; width: 900px }
#photo_news_small  { padding-right: 10px; position: relative; width: 128px; float: left }t
.photo_people_left { padding-right: 10px; position: relative; width: 125px; float: left }
.photo_people_right { padding-left: 10px; position: relative; width: 125px; float: right }
#businessmonth_title  { 
	background-image: url(../images/Calendar_bkg.png); 
	position: relative; 
	height: 20px;
	margin-bottom: 10px;
}
.mainnews_box 
   { margin-top: 5px; margin-bottom: 5px; position: relative; width: 99%; float: right; border: solid 1px #930 }
.maintable_box 
   { margin-top: 5px; margin-bottom: 5px; margin-right: 2px; position: relative; width: 99%; float: right; border: solid 1px #930 }
#news_title  { background-image: url(../images/Calendar_bkg.png); margin-bottom: 10px; position: relative; height: 20px }
.block_right { font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; padding-top: 5px; padding-bottom: 5px; float: right }
.indent { margin: 0 7px 0 60px; padding-top: 5px; padding-bottom: 5px }
.info_title  { color: #993300; font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: normal; font-weight: bold; line-height: 1.2em; background-image: url(../images/Bullet.png); background-repeat: no-repeat; background-position: left 6px; margin: 0 5px; padding: 5px 0 5px 12px }
.info { font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; background-position: 0 0; margin: 0 7px 0 4px; padding-top: 5px; padding-bottom: 5px }
.info_title1  { color: #993300; font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: normal; font-weight: bold; line-height: 1.2em; background-position: 0 6px; margin: 0 7px 0 4px; padding-top: 5px; padding-bottom: 5px }
.info_title2   { color: #993300; font-size: 1.2em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: normal; font-weight: bold; line-height: 1.2em; font-stretch: expanded; margin-top: 0; margin-right: 7px; margin-left: 7px }
.info_title2_right { color: #993300; font-size: 1.2em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: normal; font-weight: bold; line-height: 1.2em; font-stretch: expanded; margin-top: 0; margin-right: 7px; margin-left: 7px; float: right }
.bullet_title    { color: #930; font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: normal; font-weight: bold; line-height: 1.3em; margin-top: 0; margin-right: 7px; margin-left: 0; padding-bottom: 5px; padding-left: 0 }
.bullet_info  { font-size: 1em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; line-height: 1.3em; list-style-type: none; margin-top: 0; margin-right: 7px; margin-left: 20px; padding-bottom: 5px; padding-left: 0 }
.bullet1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-style: normal;
	line-height: 1.2em;
	font-weight: normal;
	list-style-type: none;
	padding-left: 10px;
	padding-bottom: 5px;
	background-image: url(../images/Bullet1.png);
	background-position: left 5px;
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 0px;
	margin: 0px;
}
.bold {
	font-weight: bold;
	color: #993300;
}
.caption   { color: #000000; font-size: 0.9em; font-family: Verdana, Arial, Helvetica, sans-serif; font-style: italic; line-height: 1em; margin: 0 0 5px 0; padding-top: 3px; padding-bottom: 2px; padding-left: 5px; }

#events  { margin-bottom: 10px; padding-top: 5px; padding-bottom: 5px; position: relative; height: auto; border: solid 1px #993300; }
.leftbox { margin-bottom: 10px; padding-top: 5px; padding-bottom: 5px; position: relative; height: auto; border: solid 1px #993300; }
.leftad {
	margin-bottom: 10px;
	position: relative;
	padding: 0;
}
.leftad img { border: solid 1px #993300; }
#events_title {
	height: 20px;
	position: relative;
	background-image: url(../images/Calendar_bkg.png);
}
.leftbox_title { background-image: url(../images/Calendar_bkg.png); position: relative; height: 20px; }
#calendar {
	height: auto;
	width: 99%;
	border: 1px solid #993300;
	position: relative;
	float: left;
	padding-top: 5px;
	margin-bottom: 10px;
}
.rightbox { margin-bottom: 10px; padding-top: 5px; position: relative; width: 99%; height: auto; float: left; border: solid 1px #993300 }
#calendar_title {
	height: 20px;
	width: 100%;
	position: relative;
	background-image: url(../images/Calendar_bkg.png);
	float: left;
}
.rightbox_title { background-image: url(../images/Calendar_bkg.png); position: relative; width: 100%; height: 20px; float: left }
.rightad {
	margin-bottom: 10px;
	position: relative;
	padding: 0;
}
.rightad img { border: solid 1px #993300; }
.linea {
	width: 100%;
	height: 1px;
	border-bottom-color: #666666;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}
#ad_left {
	height: 156px;
	border: 1px solid #993300;
	position: relative;
}

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