/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
/*border: 0; */
}
body, html {
color: #000; 
font-family: Verdana, Arial, Tahoma, sans-serif;
background-color: #eee; 
}
body {
font-size: 70%;
min-width: 760px;
}
p {padding: 7px 0 7px 0;}

a {
color: #000099;
}
a:hover{
color: #0000FF;
text-decoration: none;
}

h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
min-height: 300px;
background: #fff;
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
background: #BF2E1B;
background-image:url(images/bg_blue.jpg);
background-repeat:repeat-y;
padding: 0px;
height: 166px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
border-left: 30px solid #004882; /*** This is the width and the color for our left column ***/
border-right: 30px solid #BF2E1A; /*** This is the width and the color for our right column ***/
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 100%; 
}
* html .inner {
/*** No need for hacking IE on this layout ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/
.float-wrap {
float: left;
width: 100%;
margin-left: -165px; /*** Same length as .outer border-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
background: #fff;
margin-right: -165px;  /*** Same length as .outer border-left but with negative value ***/
width: 100%;
}
* html #content {
position: relative;
}
.contentWrap{
padding: 20px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 150px;
min-height: 250px;
padding: 5px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
height: 250px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 30px;
padding: 0px;
min-height: 250px;
margin-right: -10px; /** This negative margin-right value is the width of the right column + the padding, in this example 130px. ***/
}
* html #right {
height: 250px;
position: relative;  /*** IE needs this  ***/
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
text-align: right;
background-color: #BF2E1B;
background-image: url(images/bg_blue.jpg);
background-repeat:no-repeat;
padding-right: 10px;
color:#FFFFFF; padding-right: 30px
}

/***************************
TOP LINKS
***************************/
div.top_links {
	position:absolute;
	top: 146px;
	left: 224px;
	background-color: #BF2E1B;
}

/***************************
LEGAL
***************************/

p.legal	{
	font-size:
 	xx-small;
}
/***************************
LISTS STYLING
***************************/

ul.menu {
	white-space: nowrap;
	margin-left: 5px;
	padding-left: 5px;
	line-height: 1.25;
}

ul.featuredItems {
	white-space: nowrap;
	list-style:square;
	line-height: 2;
	color: #004882;
	margin-left: 5px;
	padding-left: 5px;
	margin-top: 0px;
	padding-top: 0px;

}
#menu li {
	list-style-type: none ;
}

#hnav ul {
	font-size:14px;
	font-weight:bold;
	margin: 0px;
   	white-space: nowrap;
}

#hnav li {
	list-style-type: none;
	display: inline;
	height:20px;
   	padding-left: 3px;	
}
ul.learnRoss {
	font-size: 16px; 
	font-weight: bold;
	font-weight: bold; 
	margin-left: 5px;	
	padding-left: 5px; 
	color: #004882; 
	list-style:square 
}
/***************************
LINKS
***************************/

a {
	font-family: Arial, Helvetica, sans-serif;
	color: #004882;
}
a:visited {
	color: #004882;
}
a:hover {
	color: #FFFFFF;
	background-color: #004882;
	text-decoration:none;
}
a:active {
	color: #004882;
}

.menu a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
}
.menu a:visited {
	color: #FFFFFF;
}
.menu a:hover {
	color: #004882;
	background-color: #FFFFFF;
	text-decoration:none;
}
.menu a:active {
	color: #FFFFFF;
}

.eventTools a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}
.eventTools a:visited {
	color: #FFFFFF;
}
.eventTools a:hover {
	color: #004882;
	background-color: #FFFFFF;
	text-decoration:none;
}
.eventTools a:active {
	color: #FFFFFF;
}

#hnav li a {
	background-color:#BF2E1B;
	text-decoration: none;
	/*padding: 2px 10px 4px 0px;
	margin:0px;*/
	color:#ffffff;
}
		
#hnav li a:link {
	background-color:#BF2E1B;
	color:#ffffff;
}
		
#hnav li a:visited {
	background-color:#BF2E1B;
	color:#ffffff;
}
		
#hnav li a:hover {
	background-color:#ffffff;
	color:#BF2E1B;
}


#footer a {
color:#FFFFFF;
}
/***************************
OTHER
***************************/

#hnav table {
	background-color:#000000;
	color:#FFFFFF;
}
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.fontRed {color: #BF2E1B}
.fontBlue {color: #004882}
.subHeading {font-size:24px; font-weight:bold; }
	 		p.legal
 		{
 			font-size:
 				xx-small;
 		}
.item {
font-weight:normal; font-style:normal; padding-left: 20px;
}
/***************************
SLIDESHOW
***************************/

div.slideshow_1 {
	position: absolute ;
	left: 309px ;
	top: 0px ;
	width: 277px ;
	height: 146px ;
	}
	
div.slideshow_2 {
	position: absolute ;
	left: 586px ;
	top: 0px ;
	width: 300px ;
	height: 146px ;
}

#kevin07Link {
	position:absolute;
	width:200px;
	height: 15px;
	text-align: right;
	left: 686px;
	top: 125px;
	}
	
#kevin07Link a:link, #kevin07Link a:visited {
	color: #FFFFFF
	}
#kevin07Link a:hover {
	color: #BF2E1B;
	background-color:#FFFFFF;
	text-decoration: none;
	}.eventLocation {
	font-size: 14px;
	font-weight: bold;
}
.eventCost {

font-size: 16px
}
.eventTools {
	font-size: 12px;
	color: #FFFFFF;
	background-color: #004882;
	margin: 2px;
	padding: 2px;
	height: auto;
	width: 350px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
}
.eventTitle {
	font-size: 20px;
	font-weight: bold;
}

/********************************************************************
 * openWYSIWYG stylesheet file Copyright (c) 2006 openWebWare.com
 * Contact us at devs@openwebware.com
 * This copyright notice MUST stay intact for use.
 *
 * $Id: wysiwyg.css,v 1.2 2007/01/29 19:19:49 xhaggi Exp $
 ********************************************************************/

/* Toolbar */
.toolbar1   { height: 26px; background-image: url(../images/background_silver.jpg); }
/*.toolbar1   { height: 26px; background-color: #F4F4F4; border-bottom:1px solid #C9C9C9; }*/

/* Command Buttons */
.buttonEditor     { width: 20px; height: 20px; border: 0px solid transparent; margin: 1px; padding: 0px; background: transparent; }
.buttonEditorOver { width: 20px; height: 20px; border: 1px solid #999999; margin: 0; padding: 0px; }

/* Table Textarea */
.tableTextareaEditor { border: 1px solid #888888; }
.iframeText { background-color: #FFFFFF; }

/* Status Bar */
.wysiwyg-statusbar {font-family: Arial; font-size: 9px; background-color: #EEEEEE;}
a.wysiwyg-statusbar {font-family: Arial; font-size: 9px; color: #000000; text-decoration:none;}
a.wysiwyg-statusbar:hover {font-family: Arial; font-size: 9px; color: #000000; text-decoration:underline;}

/* Font Type and Size Drop Down */
.dropdown          { background-color: #FFFFFF; border: 1px solid #333333; height: 140px; overflow: auto; padding: 1px;}
button.mouseOver   { background-color: #EEEEEE; border: 1px solid #CCCCCC; padding: 3px; cursor: default; text-align: left;}
button.mouseOut    { background-color: #FFFFFF; border: 1px solid #FFFFFF; padding: 3px; cursor: default; text-align: left;}

/* Context Menu */
.wysiwyg-context-menu-div { background-color:#F4F4F4; border: 1px solid #C9C9C9; width:170px; }
.wysiwyg-context-menu { font-family: Arial; font-size:11px; color:#000000; width:100%;}
.wysiwyg-context-menu .icon {background-color:#EEEEEE;}
.wysiwyg-context-menu .disabled { font-family: Arial; font-size:11px; color:#999999; text-decoration:none; padding-left: 3px; }
.wysiwyg-context-menu a { font-family: Arial; font-size:11px; color:#000000; text-decoration:none; padding-left: 3px;}
.wysiwyg-context-menu .mouseover {background-color: #EEEEEE;}


/* CREATE TABLE POPUP */

/* Select Border Width/Type */
.on   { background-color: #EEEEEE; border: 1px solid #CCCCCC; padding: 6px; width: 140px; cursor: default; height: 5px;}
.off  { background-color: #FFFFFF; border: 1px solid #FFFFFF; padding: 6px; width: 140px; cursor: default; height: 5px;}

/* Select Shading/Border Color */
.wysiwyg-color-picker-table  { border: 1px solid #7E7E81; background-color: #F7F7F7; padding: 1px; }
.wysiwyg-color-picker-div    { font-size: 1px; height:12px; width:12px; }
.selectColorBorder { border: 1px solid #F7F7F7; }
.selectColorOn     { border: 1px solid #999999; background-color: #CCCCCC; }
.selectColorOff    { border: 1px solid #F7F7F7; background-color: #F7F7F7; }


