@charset "utf-8";

* html body {
	height: 100%;
	overflow: auto;
}
html {
	background-color: #ffffff;
}
body {
	margin: 0 0 0 0;
	padding: 0;
	font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
	font-size: 13px;
	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;
}

/* BEGIN TESTING ONLY */
div {
	border: 0px solid red;
}
/* END TESTING ONLY */

/* BEGIN GLOBAL STYLES */
img {
	border: 0;
	margin-bottom: 10px;
}
a {
	color: #91ADC6;	/* navlink */
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
}
a:hover {
	color: #fff200;	/* yellow */
	text-align: center;
	font-weight: bold
}
p {
	line-height: 1.5em;
}
ul {
	line-height: 1.5em;
}
h1 {
	font-size: 22px;
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 15px;
}
h4 {
	font-size: 13px;
}
/* END GLOBAL STYLES */

div#container {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	width: 800px;  /* this will create a container 800px width */
	background: #FFFFFF;
	min-height: 424px;
	height: auto;
	/* border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
div#flashContainer {
	background: #91ADC6;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
/* Div below wraps the left sash and main content divs. Background image in this div is used to create effect of floated left sash extending to the height of the main content div */
div#contentWrapper {
	margin: 0;
	padding: 0;
	/* background: #ffffff url(../images/leftSashFixer.png) repeat-y left top; */
	/* border: 1px solid #ffffff; */ /* Firefox fix for left sash margins */
}
div#header {
	padding: 0 10px;  /* 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. */
	/* background: #DDDDDD; */
	height: 96px;
	/* background: url(../images/header_bg.png) no-repeat 26em; */ /* Match mainContent margin-left */
	background: url(../images/header_bg.png) no-repeat;
	border: 0px solid #ff0000;
}
div#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 */
}
div#menuBar {
	height: 27px;
	background: #fff200 url(../images/menu_bar.png) no-repeat top right;
	/*
	background: #fff200;
	*/
}
div#bufferZone {
	margin: 0;
	padding: 0;
	height: 20px;
	border: 0px solid #FF0000;
}
/* Tips for leftSidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. If em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 "div#leftSidebar p" rule.
*/
div#leftSidebar {
	float: left;
	width: 199px ! important;  /* since this element is floated, a width must be given */
	margin: 0;
	padding: 0; /* padding: 76px 0 0 0; */ /* padding on top to push down text and image  */
}
div#sidebarTop {
	margin: 0;
	padding: 0;
	min-height: 52px;
	background: url(../images/sidebar_top.png) no-repeat top left;
}
div#sidebarBottom {
	margin: 0;
	padding: 0;
	min-height: 52px;
	background: url(../images/sidebar_bottom.png) no-repeat top left;
}
div#leftSidebarContent {
	margin: 0;
	padding: 10px 0 10px 0;
	min-height: 320px;
	background: #fff200;
}
div#leftSidebarContent h3, div#leftSidebarContent p {
	margin: 0 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
}
/* Tips for mainContent:
1. The space between the mainContent and leftSidebar is created with the left margin on the mainContent div.  No matter how much content the leftSidebar div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #leftSidebar space when the content in #leftSidebar 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.
*/
div#mainContent {
	/* Now a width is specified for the main content and right margin position only */
	margin: 0 5em 0 19.25em; /* Matches width of mainMenu and footerMenu left margins */
	padding: 46px 0 0 0;
	/* width: 50em; */
	/* border: 1px solid #ff0000; */
}
div#mainContent h2 {
	margin-top:0;
}
div#flashContent {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	width: 800px;
	height: 600px;
}
div#footerNav {
	padding: 0 10px 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 51px;
	color: #ffffff;
	background: #fff200 url(../images/footer_bg.png) no-repeat top right;
}
div#footerNav 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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
div#footerCopyright {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #ffffff;
}
div#footerCopyright 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;
}
div#footerCopyright a {
	color: #91ADC6;
	font-size: 8px;

}
div#footerCopyright a:hover {
	color: #fff200;
	font-size: 8px;
}
div#footerSash {
	height: 20px;
	width: 100%; /* Possibly not necessary */
}
/* BEGIN MENU STYLES */
ul#mainMenu {
	position: relative;
	margin: 0;
	padding: 4px 0 0 0;
	left: 19.25em; /* Matches width of mainContent and footerMenu left margins */
	width: 70%;
	height: 25px;
	border: 0px solid red;
}
ul#mainMenu li {
	float: left;
	margin: 0;
	padding:0px 18px 0px 0px;
	list-style: none;
	font-weight:bold;
	/* letter-spacing:0.1em; */
}
ul#mainMenu a {
	color: #636466;
}
ul#mainMenu a:hover {
	color: #91ADC6;
}
ul#footerMenu {
	position: relative;
	margin: 0;
	padding: 4px 0 0 0;
	left: 19.25em;  /* Matches width of mainContent and mainMenu left margins*/
	width: 70%;
	height: 25px;
	border: 0px solid red;
}
ul#footerMenu li {
	float: left;
	margin: 0;
	padding:0px 18px 0px 0px;
	list-style: none;
	font-weight:bold;
    /* letter-spacing:0.1em; */
}
ul#footerMenu a {
	color: #636466;
}
ul#footerMenu a:hover {
	color: #91ADC6;
}
/* END MENU STYLES */

/* Miscellaneous classes for reuse */
.floatRight { /* 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;
}
.floatLeft { /* 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;
}

.quote {
	font-size: 14px;
	font-style: italic;
	color: #000000;
	font-family: "Adobe Garamond Pro", "Adobe Garamond Pro Bold", "Adobe Garamond Pro Italic", Times New Roman, "Trebuchet MS", "Arial MT";
	padding: 20px;
	line-height: 1.5em;
	margin-right: 10px;
	margin-left: 10px;
}


.quoteName {
	font-size: 12px;
	font-style: italic;
	font-weight: bold;
	color: #000000;
	font-family: "Adobe Garamond Pro", "Adobe Garamond Pro Bold", "Adobe Garamond Pro Italic", Times New Roman, "Trebuchet MS", "Arial MT";
	padding: 0px 0px 0px 20px;
	line-height: 2em;
	}

.quote2 {
	font-size: 16px;
	font-style: italic;
	color: #000000;
	font-family: "Adobe Garamond Pro", "Adobe Garamond Pro Bold", "Adobe Garamond Pro Italic", Times New Roman, "Trebuchet MS", "Arial MT";
	line-height: 1.5em;
	padding: 20px;
	line-height: 1.5em;
	margin-right: 10px;
	margin-left: 10px;

}
	
.quote3 {
	font-size: 14px;
	font-style: italic;
	color: #000000;
	font-family: "Adobe Garamond Pro", "Adobe Garamond Pro Bold", "Adobe Garamond Pro Italic", Times New Roman, "Trebuchet MS", "Arial MT";
	line-height: 1.5em;
}


.serviceHead {
	margin: 0 0 0 0;
	padding: 0;
	font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
	font-size: 14px;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ab0000;
	font-weight: bold;
	text-transform: uppercase;
}

.smallHead {
	margin: 0 0 0 0;
	padding: 0;
	font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
	font-size: 10px;
	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: #ab0000;
	font-weight: bold;
	text-transform: uppercase;
}

.specialHead1 {
	margin: 0 0 0 0;
	padding: 0;
	font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
	font-size: 16px;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ab0000;
	font-weight: bold;
}


.specialHead2 {
	margin: 0 0 0 0;
	padding: 0;
	font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
	font-size: 16px;
	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: #ab0000;
	font-weight: bold;
}

.specialPrice {
	margin: 0 0 0 0;
	padding: 0;
	font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
	font-size: 24px;
	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: #ab0000;
	font-weight: bolder;
	line-height: 150%;
}

.coupon {
	margin: 0 0 0 0;
	padding: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	color: #ab0000;		
	font-weight: normal;
	line-height: 150%;	
	border-color: #FF0;

	}
	
	.copyright {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 8px;
	text-align: center;
	color: #000000;		
	font-weight: normal;
	line-height: 150%;	
	}
	

