body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. 
	The text is then set to the left aligned default in the #container selector */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #000000;	  /* black */
	background-color: #CCCCCC;	  /* light grey */
}
.thrColAbs #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerBlue {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerGreen {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerOrange {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerPink {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerPurple {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerRed {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.thrColAbs #containerYellow {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

/* Tips for absolutely positioned sidebars:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
*/
.thrColAbs #sidebar1 {  /* banner */
	position: absolute;
	top: 0px;
	left: 0px;
	width: 195px; /* padding keeps the content of the div away from the edges */
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(images/swingStationBanner.jpg);
	margin-right: 25px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 600px;
}
.thrColAbs #sidebar2 {  /* sub navigation */
	position: absolute;
	top: 610px;
	left: 0px;
	width: 201px; /* padding keeps the content of the div away from the edges */
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(images/swingStationBanner.jpg);
	margin-right: 25px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 290px;
}
.thrColAbs #sidebar3 {  /* varies per page */
	position: absolute;
	top: 750px;
	left: 0px;
	width: 195px; /* padding keeps the content of the div away from the edges */
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(images/swingStationBanner.jpg);
	margin-right: 25px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 50px;
}
.thrColAbs #sidebarRight {   /* not currently used */
	position: absolute;
	top: 0;
	right: 0;
	width: 205px;
	background-color: #FFFFFF;
	padding-top: 100px;
	padding-right: 10px;
}
.thrColAbs #globalNav {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 0;
	padding-left: 20px;
}
.thrColAbs #bottomNav {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 0;
	padding-left: 0;
}
.thrColAbs #mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 0;
	padding-left: 20px;
}

/*******************basic styles****************************/ 

.bodyText {	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	line-height: 12pt;	
	color: #000000;  /*black*/ 
	font-style: normal;
	font-weight: normal;
}
.bodyTextBold {
	font-size: 9pt;
	color: #000000;  /*black*/ 
	font-style: normal;		
	font-weight: bold;
}
.bodyTextSmall {	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: normal;	
	color: #000000;	  /*black*/ 
	font-style: normal;
	font-weight: normal;
}
.bodyTextSmallBold {
	font-size: 11px;
	color: #000000;	  /*black*/ 	
	font-style: normal;	
	font-weight: bold;
}
.bodyTextSmallItalic {
	font-size: 11px; 	
	color: #000000;	  /*black*/ 		
	font-style: italic; 
	font-weight: normal; 
}
.nonLink {
	font-size: 9pt;
	color: #666666;    /*grey*/ 
	font-weight: bold;
}
.nonLinkSmall {
	font-size: 11px;
	color: #666666;    /*grey*/ 
	font-weight: bold;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #666666;  /*grey*/ 
	font-weight: normal;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #666666;  /*grey*/ 
	font-weight: bold;
}
table {
	border: 2px;
	border-color: #FFFFFF;
	padding: 0;
	margin: 0;
	width: 100%;
	border-spacing: 0;
}
table td {
    padding: 2px;
	vertical-align:top    
}
.toprow {
	font-weight: bold;
	text-align: center;
}
.leftcol {
    font-weight: bold;
	text-align: left;
	vertical-align: text-top;
}   
.datacenter {
	text-align: center;
	vertical-align: text-top;	
}
.dataleft {
	text-align: left;
	vertical-align: text-top;	
}
.datajustify {
	text-align: justify;
	vertical-align: text-top;	
}
a:link, a:visited, a:active, a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*font-size: 9pt;
	line-height: 11pt;	*/
	color: #666666;  /*default grey*/ 
	font-weight: bold;
	text-decoration:underline;
}
.copyright {font-size: 7pt}

/*******************sizing overrides****************************/ 

#globalNav a {font-size: 9pt;}
#sidebar2 a {font-size: 11px;}

/*******************colour overrides****************************/ 


/* blue */

#containerBlue h1 {color: #0066CC;}
#containerBlue h2 {color: #0066CC;}
#containerBlue a:active {color: #0066CC;}
#containerBlue a:hover {color: #0066CC;}

/* green */

#containerGreen h1 {	color: #006363;}
#containerGreen h2 {	color: #006363;}
#containerGreen a:active {	color: #006363;}
#containerGreen a:hover {	color: #006363;}

/* orange */

#containerOrange h1 {	color: #FF9900;}
#containerOrange h2 {	color: #FF9900;}
#containerOrange a:active {	color: #FF9900;}
#containerOrange a:hover {	color: #FF9900;}

/* pink */

#containerPink h1 {color: #CC0066;}
#containerPink h2 {color: #CC0066;}
#containerPink a:active {color: #CC0066;}
#containerPink a:hover {color: #CC0066;}

/* purple */

#containerPurple h1 {	color: #660066;}
#containerPurple h2 {	color: #660066;}
#containerPurple a:active {	color: #660066;}
#containerPurple a:hover {	color: #660066;}

/* red */

#containerRed h1 {	color: #FF0000;}
#containerRed h2 {	color: #FF0000;}
#containerRed a:active {	color: #CC3333;}
#containerRed a:hover {	color: #CC3333;}

/* yellow */

#containerYellow h1 {	color: #FFCC00;}
#containerYellow h2 {	color: #FFCC00; font-size: 16px; font-weight: normal;}
#containerYellow a:active {	color: #FFCC00;}
#containerYellow a:hover {	color: #FFCC00;}

