@charset "utf-8";
/* CSS Document */
body {
	background-color:#00ff00;
	margin-top:4px;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/*margin: 0;  it's good practice to zero the margin and padding of the body element 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 */
	color: #000000;
}
h1 {
	color:#0000ff;
	}
h3 {
	margin-top:4px;
	margin-bottom:4px;
	}
	
.twoColFixLtHdr #container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* 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. */
} 
.twoColFixLtHdr #header { 
	background: #2970ff; 
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	color:#ff2970;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #BD7AFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 6px 15px 6px;
	border-right-color:#000000;
	border-right-style:solid;
	border-right-width:1px;
	border-bottom-color:#000000;
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-left-color:#000000;
	border-left-style:solid;
	border-left-width:1px;
	margin-left:12px;
}
.twoColFixLtHdr #sidebar1 h3{
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#ffffff;
}
.twoColFixLtHdr #sidebar1 p{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
}

.twoColFixLtHdr #sidebar1 a  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#000000;
	text-decoration:underline;
	}
.twoColFixLtHdr #sidebar1 a:hover  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#0000ff;
	text-decoration:none;
	}
.twoColFixLtHdr #sidebar1 a:visited  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#000000;
	text-decoration:underline;
	}
.twoColFixLtHdr #sidebar1 a:visited:hover  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#0000ff;
	text-decoration:none;
	}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:12px;
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#0000cc; 
	border-top-color:#000000;
	border-top-style:solid;
	border-top-width:1px;
	margin-bottom:0px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.footerText {
	font-family:Arial, Helvetica, sans-serif;
	font-size:9px;
	color:#ffffff;
	}
.footerText p {
	margin-top:4px;
	margin-bottom:4px;
	}
#menu {
	height:20px;
	background-color:#0000cc;
	padding-left:4px;
	padding-right:4px;
	padding-top:4px;
	border-top-color:#000000;
	border-top-style:solid;
	border-top-width:1px;
	border-bottom-color:#000000;
	border-bottom-style:solid;
	border-bottom-width:1px;/**/
	}
.mainlinks {
	display:block;
}
a.mainlinks  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#ffffff;
	text-decoration:none;
	}
a:hover.mainlinks  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#ffff00;
	text-decoration:underline;
	}
a:visited.mainlinks  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#efefef;
	text-decoration:none;
	}
a:visited:hover.mainlinks  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#ffff00;
	text-decoration:underline;
	}
ul {
	margin-top:4px;
	}
.indent {
	margin-top:4px;
	padding-left:16px;
	}
.footerLinks {
	font-family:Arial, Helvetica, sans-serif;
	font-size:9px;
	}
a.footerLinks {
	color:#efefef;
	text-decoration:none;
	}
a:hover.footerLinks  {
	color:#ffff00;
	text-decoration:underline;
	}
a:visited.footerLinks  {
	color:#efefef;
	text-decoration:none;
	}
a:visited:hover.footerLinks  {
	color:#ffff00;
	text-decoration:underline;
	}
.topTagLine {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#0000ff;
	margin-top:4px;
	margin-bottom:-12px;
	}
.twoColFixLtHdr #openHouse {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	width:184px;
	height:128px;
	background-color:#FFFFFF;
	background-image:url(../images/openHouseBG.gif);
	background-repeat:no-repeat;
	}
.twoColFixLtHdr #openHouse .content {
	padding: 20px 12px 8px 12px;
	}
	
.twoColFixLtHdr #mainContent .orientation {
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	color:#ff0000;
	font-weight:bold;
	text-align:left;
	}
.twoColFixLtHdr #mainContent .orientation a:link{
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:none;
	}
.twoColFixLtHdr #mainContent .orientation a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:underline;
	}
.twoColFixLtHdr #mainContent .orientation a:visited{
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:none;
	}
.twoColFixLtHdr #mainContent .orientation a:visiter:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:underline;
	}
.orientation ul {
	margin-top:4px;
	margin-bottom:4px;
	}
.blue {
	color:#0000cc;
	background-color:#0000cc;
	height:1px;
	margin-bottom:4px;
	}
.blue2 {
	color:#0000cc;
	background-color:#0000cc;
	height:6px;
	margin-bottom:4px;
	}
.topLeftCorner {
	background-image:url(../images/top_lft_corner.gif);
	background-repeat:no-repeat;
	width:10px;
}
.bottomLeftCorner {
	background-image:url(../images/bot_lft_corner.gif);
	background-repeat:no-repeat;
	width:10px;
}
.topRightCorner {
	background-image:url(../images/top_rt_corner.gif);
	background-repeat:no-repeat;
	width:10px;
}
.bottomRightCorner {
	background-image:url(../images/bot__rt_corner.gif);
	background-repeat:no-repeat;
	width:10px;
}
.leftBorder {
	background-image:url(../images/l_border.gif);
	background-repeat:repeat-y;
	width:10px;
	}
.bottomBorder {
	background-image:url(../images/bot_border.gif);
	background-repeat:repeat-x;
	height:10px;
	}
.rightBorder {
	background-image:url(../images/r_border.gif);
	background-repeat:repeat-y;
	width:10px;
	}
.topBorder {
	background-image:url(../images/top_border.gif);
	background-repeat:repeat-x;
	height:10px;
	}
.quotes {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-style:italic;
	}
#randQuote {
	text-align:justify;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	font-style:italic;
	margin:4px;
	}
#quoteHeader {
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#0000ff;
	padding-bottom:6px;
	}
.jungleWeek {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#000000;
	font-weight:bold;
	}
.twoColFixLtHdr #sidebar1 .workshop {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#47008F;
	font-weight:bold;
	}
.twoColFixLtHdr #mainContent .orientation2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#ff0000;
	font-weight:bold;
	text-align:left;
	}
.twoColFixLtHdr #mainContent .orientation2 a:link{
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:none;
	}
.twoColFixLtHdr #mainContent .orientation2 a:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:underline;
	}
.twoColFixLtHdr #mainContent .orientation2 a:visited{
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:none;
	}
.twoColFixLtHdr #mainContent .orientation2 a:visiter:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#0000cc;
	font-weight:bold;
	text-decoration:underline;
	}
.allCaps {
	text-transform:uppercase;
	font-weight:bold;
	}
.twoColFixLtHdr #sidebar1 .workshopHmPg {
	font-size:20px;
	text-align:center;
	color:#222222;
}
.twoColFixLtHdr #sidebar1 .workshopHmPg a:link {
	font-size:20px;
	text-align:center;
	color:#000000;
	text-decoration:underline;
}
.twoColFixLtHdr #sidebar1 .workshopHmPg a:hover {
	font-size:20px;
	text-align:center;
	color:#0000cc;
	text-decoration:none;
	background-color:#ffffff;
}
.twoColFixLtHdr #sidebar1 .workshopHmPg a:visited {
	font-size:20px;
	text-align:center;
	color:#000000;
	text-decoration:underline;
}
.twoColFixLtHdr #sidebar1 .workshopHmPg a:visited:hover {
	font-size:20px;
	text-align:center;
	color:#0000cc;
	text-decoration:none;
	background-color:#ffffff;
}
