@charset "UTF-8";
body  {
		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;
	background-color: #fbcc39;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container { 
	width: 1200px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #fbcc39;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
} 

#header { 
	padding: 0 0 0 0;
	background-color: #126565;
	width: 100%;
	height: 150px	;
	background-image: url(heleneright.jpg);
	background-repeat: no-repeat;
	background-position: right;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

#header img {
	border-style: none;
}

#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: 0px 0;
	font-family: Georgia, "Times New Roman", Times, serif;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
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 ".twoColElsLtHdr #sidebar1 p" rule.
*/

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. 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.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/ 
#footer { 
	padding: 0 10px;
} 
#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: 10px 0;
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	text-align: center;
}

#footer a {
		color: #009999;
	
}

/* 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;
}

/* @group mainContent */

#mainContent h3 {
	text-align: left;
	font: bold 18px Georgia, "Times New Roman", Times, serif;
	line-height:21px;
	color: maroon;
	margin-bottom: 0;
}

td, th, tr {
	vertical-align: top;
	text-align: left;
}

#mainContent {
	margin-bottom: 0;
	margin-left: 15em;
}

#mainContent h1 {
	font: bold 30px Georgia, "Times New Roman", Times, serif;
	color: maroon;
}

#mainContent p {
	font: 13px/16px Verdana, Arial, Helvetica, sans-serif;
	margin-top: 1px;
}

#mainContent a {
	color: #009999;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	font: 13px/16px Verdana, Arial, Helvetica, sans-serif;
}

#mainContent a.image-link {
	border:none;
	}

#mainContent a:visited {
	color: #96660d;
	font: 13px/16px Verdana, Arial, Helvetica, sans-serif;
}

#mainContent a:hover {
	color: #711515;
	font: 13px/16px Verdana, Arial, Helvetica, sans-serif;
}

#mainContent li a {
	color: #009999;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	font: bold 13px/2px Verdana, Arial, Helvetica, sans-serif;
	list-style-type: none;
}

#mainContent ul a {
	color: #009999;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	font: bold 13px/24px Verdana, Arial, Helvetica, sans-serif;
	list-style-type: none;
}

#mainContent ul {
	color: #009999;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	font: bold 13px/24px Verdana, Arial, Helvetica, sans-serif;
	list-style-type: none;
	border-style: none;
}

#mainContent li a:visited {
	color: #96660d;
	font: bold 13px/16px Verdana, Arial, Helvetica, sans-serif;
}

#mainContent li a:hover {
	color: #711515;
	font: bold 13px/16px Verdana, Arial, Helvetica, sans-serif;
}

#mainContent img {
		margin: 0 10px 4px 0;

}

#mainContent img.icon {
	margin:0;
	vertical-align: text-bottom;
	}


#mainContent h4 {
	font: bold 20px Verdana, Arial, Helvetica, sans-serif;
	color: maroon;
	margin: 0;
}
/*RIGHT SIDEBAR*/

#sidebar {
	width:250px;
	float:right;
	background-color:#FDEBB0;
	padding:20px;
	}
	
#sidebar img {
	margin-top: 20px;
	}
	
/*MIDDLE CONTENT STYLES ON HOME PAGE*/
	
#middleContent {
	width: 648px;
	float:left;
	}
		
	.homeInfo {
	width:304px;
	height: 172px;
	margin:0 20px 20px 0px;
	float:left;
	}
		
	.homeInfo img {
		width:110px;
		float:left;
		margin: 0 10px 10px 0;
		}
		
	.homeInfo a img {
		border: none;
		}
		
	#mainContent .homeInfo p {
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
	padding-top:6px;
	font-weight: bold;
	}
	
	#mainContent .homeInfo a {
		color: #009999;
		text-decoration: none;
		font: 14px/20px Verdana, Arial, Helvetica, sans-serif;
		font-weight: bold;
		border-bottom-style:none;
		border-bottom-width:0px;
		}
		
		#mainContent .homeInfo a:hover {
			text-decoration:underline;
		}
		
/*MIDDLE CONTENT STYLES FOR EVENTS PAGES*/

#event {
	margin-top:20px;
	}
	
	#event h3 {
		margin-bottom:8px;
		}
		
	#event h2 {
	font-style:italic;
	font-weight:bolder;
	font-size:30px;
	color:#0E331C;
	margin-top:0px;
		}
		
	#event ul {
		color: #000;
		text-decoration: none;
		list-style-type:disc;
		border-style: none;
		}
		
	#event p.italic {
		font: normal 14px Georgia, "Times New Roman", Times, serif;
		font-style:italic;
		margin-bottom:0px
	}
	
	.right-img {
		float:right;
		margin:0 0 20px 20px;
		}
/* @end */

div#solocatalogue {
	float:left
	
}

#solocatalogue img {
	float:left;
	margin: 0 10px 4px 0;
	
}

.clearthefloats {
	clear:both;
}

/* @group Calendar */

.calendar td {
	border-top: 2px dotted #fbcc39;
	padding-top: 10px;
	padding-right:10px;
	vertical-align: top;
}

#mainContent div.calendar h1 {
	text-align: left;
	font: bold 18px/22px Georgia, "Times New Roman", Times, serif;
	color: #fdffff;
	background-color: maroon;
	padding: 6px;
	margin: 0;
	letter-spacing: 1px;
}

.calendar table {
	background-color: #fdfe9b;
	border: 2px solid #800000;
	padding: 10px;
}

div .calendar {
	
}

.calendar h2 {
	color: #711515;
	font: bold 14px/16px Verdana, Arial, Helvetica, sans-serif;
	margin-top: 1px;
}

/* @end */

/* @group breadcrumbs */

div#breadcrumbs {
	margin-top: -5px;
}

#breadcrumbs p {
	font: 10px/16px Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}

#breadcrumbs a {
	color: #009999;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	font: 10px/16px Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}

#breadcrumbs a:visited {
	color: #96660d;
	font: 10px/16px Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}

#breadcrumbs a:hover {
	color: #711515;
	font: 10px/16px Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}



/* @end */

/* @group MainNav */

#main_nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	letter-spacing: 1px;
}

#main_nav li{
border-bottom: 1px solid #ED9F9F;
	font-size: 14px;
	letter-spacing: 1px;
}

#main_nav li a:link, #main_nav li a:visited {
	display: block;
	border-left: 12px solid #660000;
	border-right: 1px solid #660000;
	background-color: #990000;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 8px 5px 8px 0.5em;
}

#main_nav li a:hover {
	background-color: #660000;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 1px;
}

#main_nav ul ul {
	font-size: 14px;
	letter-spacing: 1px;
}
#main_nav ul ul li{
	border-bottom: 1px solid #711515;
	margin: 0;
	font-size: 14px;
	letter-spacing: 1px;
}

#main_nav ul ul a:link, #main_nav ul ul a:visited{
	background-color: #900;
	color:  #660000;
	font-size: 14px;
	letter-spacing: 1px;
}

#main_nav ul ul a:hover{
	background-color: #660000;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 1px;
}

#main_nav {
	float: left; 
	width: 218px;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	text-decoration: none;
}



/* @end */

/* @group emailform */

#emailform {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	border: 2px dotted white;
	padding-top: 10px;
	padding-right: 5px;
	padding-left: 5px;
	margin-left: 5px;
	margin-right: 5px;
}



/* @end */

/*TOUR PAGES MAIN INFORMATION SECTIONS*/

#tourInfo {
	width:527px;
	float:left;
	}
	
#mainContent p.caption {
	font-style:italic;
	font-weight:bold;
	}

/* @group toursidebar */

#toursidebar p {
	font: 11px/16px Verdana, Arial, Helvetica, sans-serif;
	padding: 15px;
}

#toursidebar h1 {
	color: #6ccbcb;
	font: 16px/30px Georgia, "Times New Roman", Times, serif;
	letter-spacing: 3px;
	text-align: center;
	margin: 0;
}

div#toursidebar {
	background-color: #fefecd;
	margin-left: 10px;
	float: right;
	color: black;
	width: 380px;
}

#toursidebar h2 a {
	color: #9efefe;
		text-align: center;
font: 28px/30px Georgia, "Times New Roman", Times, serif;
	letter-spacing: 1px;
	background-color: #126565;
	padding: 2px 8px;
}

#toursidebar h2 a:hover {
	color: #9efefe;
	font: 28px/30px Georgia, "Times New Roman", Times, serif;
			text-align: center;

	letter-spacing: 1px;
	margin: 0;
	background-color: #711515;
		padding: 2px 8px;
}



/* @end */
