@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #F8F2E4;
	background-image:url(media/back_grad.gif);
	background-repeat:repeat-x;
	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;
}
.twoColHybLtHdr #container { 
	width: 720px;  /* this will create a container 80% of the browser width */
	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. */
	background-image:url(media/sideback.gif);
	background-repeat:repeat-y;
} 
.twoColHybLtHdr #header { 
	background:#811f1a; 
	padding:0;  /* 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. */
} 
.twoColHybLtHdr #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 */
}

.twoColHybLtHdr .headerleft {
	width: 206px;
	float:left;
}
.twoColHybLtHdr .headerright {
	float:right	;
	width: 514px;
}

.twoColHybLtHdr #topnav {
	font-size:90%;
	background-color:#000000;
	background-image:url(media/topnav_bkg.gif);
	background-repeat:repeat-x;
}
.twoColHybLtHdr #topnav ul{
	list-style:none;
	margin:0;
	padding:0;
	padding-top:1.75em;
	padding-bottom: 1em;
	padding-left: 1em;
}
.twoColHybLtHdr #topnav li{
	display:inline;
	padding: 1.2em 1.4em 1.2em 1.4em;
	font-family:"Lucida Sans", "Trebuchet MS", Helvetica, Arial;
	font-weight:normal;
	background-image: url(media/topnav_bkg2_divider.gif) right;
}
.twoColHybLtHdr #topnav a:link, #topnav a:visited {
	
	color:#fff;
	bacground-color:#000;
	text-decoration:none;
	
}
.twoColHybLtHdr #topnav a:hover {
	color:#FFFF66;
	
}


/* Tips for sidebar1:

3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left; 
	width: 206px; /* since this element is floated, a width must be given */
	/* background: #FFF;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
/*#sidebar1 h3 {
	color:#006600;
	font-size: 0.85em;
}*/
.box {
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	font-size: 85%;
	line-height:1.5em;
	color: #666666;
}
.box h3 {
	margin:0;
	padding: 12px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 145%;
	font-weight:normal;
	color:#060;
}
.box p, .box ul {
	margin:0;
	padding: 0 12px;
	list-style:none;
}
.box li {
	line-height: 2em;
	font-family:"Lucida Sans", Arial, sans-serif;
}
.box ul li a:link, .box ul li a:visited{
	margin: 0 0 0 12px;
	padding: 0 0 0 18px;
	background: url(media/bullet.gif) no-repeat 0 3px;
}
.box ul li a:hover{
	margin: 0 0 0 12px;
	padding: 0 0 0 18px;
	background: url(media/bullet2.gif) no-repeat 0 3px;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLtHdr #mainContent { 
	margin: 0 20px 0 220px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.twoColHybLtHdr #mainContent p{ 
	font-size: 100%;
	font-family:Helvetica, Arial, sans-serif;
	line-height: 150%;
	padding-left: 20px;
} 
.twoColHybLtHdr #mainContent ul{ 
	font-size: 100%;
	font-family:Helvetica, Arial, sans-serif;
	padding-left: 40px;
	line-height: 120%;
} 
.twoColHybLtHdr #mainContent h1{ 
	font-size: 165%;
	font-family:Georgia, "Times New Roman", Times, serif;
	line-height: 100%;
	color:#003300;
	padding-top: 15px;
}
.twoColHybLtHdr #mainContent h2{ 
	font-size: 120%;
	font-family:Georgia, "Times New Roman", Times, serif;
	line-height: 120%;
	color:#003300;
}
.twoColHybLtHdr #mainContent h3{ 
	font-size: 110%;
	font-family:Georgia, "Times New Roman", Times, serif;
	line-height: 120%;
	font-style:italic;
	color:#003300;
}
.twoColHybLtHdr #mainContent .newsbox {

	border:solid 1px #E0CFAB;
	padding: 0px;
	margin-top: 15px;
	width:475px;
}
.twoColHybLtHdr #mainContent .newsbox h3 {
	margin: 0; 
	color:#fff;
	padding:6px 8px 4px 10px;
	font-size: 110%;
	font-family:Arial, Helvetica, sans-serif;
	border-bottom:1px solid #E0CFAB;
	background-image:url(media/newsboxtop.jpg);
}
.newsbox p{ 
	font-size: 100%;
	font-family:Arial, Helvetica, sans-serif;
	line-height: 90%;
	color:#000;
}
.newsbox ul{
	margin: 0;
	padding: 14px 10px 14px 10px;
	list-style:outside;
}
.newsbox ul li{
	margin: 0 0 6px;
	padding:0;
	font-size: 95%;

}

.twoColHybLtHdr #footer { 
	padding: 0 0 0 215px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#003300 url(media/foot_top.gif) repeat-x top;
	color:#CCCCCC;
} 
.twoColHybLtHdr #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: 16px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family:Helvetica, Arial, sans-serif;
	font-size: 85%;
}



/* Miscellaneous classes for reuse */
.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;
}
.itemcopy {
	margin-left: 5%;
	margin-right: 5%;
	margin-top:2%;
	margin-bottom: 3%;
}
.schedule {
	font-family:"Courier New", Courier, monospace;
	font-size:90%;
}
.rasberrybox {
  background-color: #F9F;
  font-weight: bold;
  padding-top: 1em;
	padding-bottom: 1em
}
.yellowbox {
	background-color: #FFC;
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 1em;
}

/* Table formatting */
.twoColHybLtHdr #mainContent table{ 
	width:100%;
	border: 1px solid #000;
	background: #fff;
	font-size: 95%;
	font-family:Helvetica, Arial, sans-serif;
	line-height: 100%;
}
#mainContent table th, table td{ 
	margin: 0;
	padding: 8px 20px;
	text-align: center;
	border-bottom: 1px solid #b5b5b5;
}
#mainContent table th{ 
	color:#999;
}
#mainContent table .facility {
	text-align:left;
	font-weight:bold;
}
#mainContent table .roomnote {
	text-align:left;
	font-style:oblique;
	font-size:85%;
}
#mainContent table .room {
	text-align:left;
	font-weight:normal;
	border-bottom: 1px solid #b5b5b5;
}
#mainContent table a {
	display:block;
	color:#000;	
	text-decoration:none;
}
#mainContent table a:hover {
	display:block;
	color:#0000FF;	
	text-decoration:underline;
}
#mainContent table .alt {
	background-color:#DFDFDF;
}
.twoColHybLtHdr #mainContent .sectionlist {
	font-size:85%;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-align:center;
}
.twoColHybLtHdr #mainContent .sectionlist a:hover {
	text-decoration:underline;
}
.twoColHybLtHdr #mainContent .sectionlist a {
	text-decoration:none;
}
.twoColHybLtHdr #mainContent #timeline td {
	text-align:left;
	font-size:85%;
}

#timeline ul{
	list-style-type: square;	
}

.twoColHybLtHdr #mainContent p.facilitycontact{ 
	font-size: 90%;
	font-family:Helvetica, Arial, sans-serif; 
	margin: 0 0px 0 20px;
	line-height: 110%;
	padding: 15px 15px 15px 5px;
	display:block;
	background-color:#FEFDF2;
	text-align:right;
} 

/* Sitemap hierarchy styling */

* #sitemap ul li {
	font-size:110%;
	font-weight:bold;
	padding-top:3px;
}
* #sitemap ul li li{
	font-size:95%;
	font-weight:normal;
	font-style:oblique;
}
* #sitemap ul li li li{
	font-weight:normal;
	font-size:95%;
	font-style:normal;
}
* #sitemap ul li li li li{
	font-weight:normal;
	font-size:100%;
	font-style:normal;
}
* #sitemap ul li li li li li{
	font-weight:normal;
	font-size:95%;
	font-style:normal;
}
