﻿/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */

html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, li, dl, dt, dd, td, form, fieldset, a 
{
     margin: 0;
     padding: 0;
     border: 0;
}
/* Body foreground and background colors, fonts, font size. Also centers the design. */
body 
{
	background: #FFF;
	color: #000099;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;	
	text-align: center;
}

/* This class applied to DIVs in each of the various content areas, like header, main-nav, and footer. */
/* The main-content and secondary-content DIVs are wrapped in a DIV with this class. */
.container 
{
	width: 745px;	
	margin: 0 auto;
	text-align: left;
}

.container2 
{
	width: 745px;	
	margin: 0 auto;
	text-align: center;
}

/* Headings and paragraphs */
/* Note: since we zeroed out all the default margins and padding, we need to explicitly set them as needed. */
h1 
{
	font-size: 1.75em;
	margin-bottom: 15px; /* add a little white space under the heading */
	color: #000099;
}

h2 
{
	font-size: 1.5em;
}

h3 
{
	font-size: 1em;
}

h1,
h2,
h3
{
	font-family: Georgia, serif; /* headings use Georgia (or a serif font if Georgia is not present) for headingss */
	text-align: center;
}

h2,
h3,
p
{
	margin-bottom: 10px; /* add a little white space under the headings and paragraphs */
}

p
{
	line-height: 1.5em; /* add a little space between lines in paragraphs */
	text-align: center;
}

/* Skip link */
/* absolutely positioned offscreen so it's not visible but screen readers will still read it aloud. */
#skipnav 
{
	position: absolute;
	top: 0;
	left: -5000px;
}

.dates {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 2em;
	color: #029604;
	text-align: center;
	font-weight: bold;
	text-decoration: underline;
}

.time {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1.25em;
	color: #E4641D;
	text-align: left;
	font-weight: bolder;
	text-decoration: none;
}

.schedule {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	color: #000099;
	text-align: left;
	font-weight: bold;
	text-decoration: none;
}

.scheduleunder {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	color: #000099;
	text-align: left;
	font-weight: bold;
	text-decoration: underline;
}


.schedulecenter {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	color: #f50466;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
}




.price {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: .75em;
	color: #000099;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	line-height: .95em;
}

.fineprint {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	color: #000000;
	text-align: justify;
	font-weight: normal;
	text-decoration: none;

}

/* Links */
/* This is for all links in the site but notice that links in the 
main-nav and footer sections have different rules defined that trump these. */
a,
a:link,
a:visited,
a:active
{
	color: #E4641D;
	text-decoration: none; /* no underline */
}

a:hover,
a:focus
{
	color: #FFFFCC;
	background: #E4641D;
}

/* Header section */
#printed-header
{
	display: none; /* the printed-header should only display when the page is printed (see print.css) */
}
	
#header 
{
	float: left; 
	width: 100%;
	background: #00157E;
	color: #FFFFCC;
}

#header #logo 
{
	float: left;
}

/* Main navigation bar */
#main-nav 
{
	clear: both; /* needed because the header is floated */
	margin-bottom: -5px; /* add a little whitespace under the nav bar */
	background: #029604; 
}

#main-nav ul 
{
	padding: 0.5em 0; /* adds space above and below the list items in the nav bar */
	list-style: none; /* no underline */
}

#main-nav li 
{
	display: inline; /* displays the list items horizontally */
	margin: 0 0.5em; /* adds space to the left and right of each list item */
}

/* Main nav links */
#main-nav a,
#main-nav a:link,
#main-nav a:visited,
#main-nav a:active

{
	color: #FFFFCC;
	text-decoration: none; /* no underline */
}

#main-nav a:hover,
#main-nav a:focus
{
	color: #00157E;
	background: #FFFFCC;
}

/* Main navigation bar second line */
#main-nav2 
{
	clear: both; /* needed because the header is floated */
	margin-bottom: 20px; /* add a little whitespace under the nav bar */
	background: #029604; 
}

#main-nav2 ul 
{
	padding: 0.5em 0; /* adds space above and below the list items in the nav bar */
	list-style: none; /* no underline */
}

#main-nav2 li 
{
	display: inline; /* displays the list items horizontally */
	margin: 0 0.5em; /* adds space to the left and right of each list item */
}

/* Main nav links */
#main-nav2 a,
#main-nav2 a:link,
#main-nav2 a:visited,
#main-nav2 a:active

{
	color: #FFFFCC;
	text-decoration: none; /* no underline */
}

#main-nav2 a:hover,
#main-nav2 a:focus
{
	color: #00157E;
	background: #FFFFCC;
}	






/* Secondary content */
/* This is floated left, has a border and background image.
The total width is 200px = 178 + (2x10) + (2x1) = width + padding + border */

#left-content

{
	border: 1px solid #f50466;
	float: left;
	width: 178px;
	padding: 0px;
	margin-bottom: 15px;

}

#secondary-content 
{
	width: 180px;
	padding-top: 10px;
	padding-left: 1px;
	padding-bottom: 5px;
	background: url(../Art/navbackground.jpg) repeat-y;
	text-align: center;
}

#secondary-content h2
{
	font-size: 1em;
}

#secondary-content ul 
{
	margin-left: 1em;	/* add space to the left of the list */
	padding-left: 1em;
}

#secondary-content li
{
	padding-bottom: 0.5em; /* add space below the list items */
}

#secondary-content-sponsor 
{
	border: none;
	float: left;
	width: 160px;
	padding: 10px;
	margin-bottom: 10px;
	background-color: #fff;
	text-align: center;
}

/* secondary content nav links */
#secondary-content-nav a,
#secondary-content-nav a:link,
#secondary-content-nav a:visited,
#secondary-content-nav a:active

{
	text-decoration: none; /* no underline */
}

#secondary-content-nav a:hover,
#secondary-content-nav a:focus
{
	background: none;
}

/* Main content */
/* This is floated left, too. 
The total width is 500px = 490 + 10 = width + padding */

#main-content 
{
	float: left;
	width: 490px;
	margin: 0 0 20px 20px;
	padding-right: 7px;
	text-align: left;
}

/* wrap images with captions in a div with this class */
#main-content .image-with-caption
{
	float: left;
	width: 250px;
	padding-right: 7px;
	padding-bottom: 0.5em; /* add a little space below the image */
	
}

#main-content .image-with-caption p
{
	font-style: italic; /* make the caption italic */
}

#main-forum-content 
{
	float: left;
	width: 750px;
	margin: ;
	padding-right: 7px;
}

#no-rollover a,
#no-rollover a:link,
#no-rollover a:visited,
#no-rollover a:active
{
	color: none;
	text-decoration: none; /* no underline */
}

#no-rollover a:hover,
a:focus
{
	color: none;
	background: none;
}


/* Footer */
#footer 
{
	clear: both; /* needed since the main content and secondary content are  floated */
	background: #00157E;
	color: #E4641D; 
	margin-top: 0.5em; /* add a little space above the footer */
	padding: 1em 0; /* adds space above and below the list items in the footer bar */
}

#footer #copyright
{
	float: left; /* floated left so that the footer links can be right-aligned on the same line */
}

#footer ul
{
	text-align: right; 
}

#footer li
{
	display: inline; /* displays the list items horizontally */
	padding-left: 1em; /* makes sure that there's space between the copyright and the links but that the links are flush to the right side of the container */
}

/* Footer links */
#footer a,
#footer a:link,
#footer a:visited,
#footer a:active
{
	color: #FFFFCC;
	text-decoration: none; /* no underline */
}

#footer a:hover,
#footer a:focus
{
	color: #00157E;
	background: #FFFFCC;
}

/* Feedback form on the form.htm page */
#feedback form
{
	width: 25em; /* need to set the width of the form so that the right aligned elements aren't too far to the right side of the container */
}

#feedback form div 
{
	margin: 0.5em 0; /* add a little space above and below the divs in the form so that the lines are too close together */
	text-align: right; 
}

#feedback fieldset
{
	padding: 1em; /* adds space around the fieldset, although this design doesn't show the fieldset, it's all ready for you to give it a border or background color or whatever */
	margin-bottom: 1em; /* add a little space below the fieldset so the footer isn't to close to it */
}

#feedback label 
{
	font-weight: bold; /* form labels are bolded */
}

#feedback input,
#feedback textarea
{
	width: 15em; /* the form inputs and textarea have the same width so that when right-aligned, everything lines up neatly */
	color: #FFFFCC;
	border: 1px solid #029604;
	font-size: 0.85em;
	font-family: Georgia, Arial, Helvetica, sans-serif;
	padding: 0 0.1em; /* adds a little space between the left/right edges of the input and textarea and the letters that are typed within those elements */
}

#feedback .sendbutton
{
	width: 3.5em; /* the send button gets its own class because it needs to be narrower than the other form elements */
	background: #00157E; /* background color of the send button */
}

/* 
Palette 
#00157E - deep blue: header bg color, main nav color (hover), footer text color, footer link color (hover)
#029604 - bright green: main nav bg, secondary content border, footer background color  
#FFFFCC - light yellow: main nav link color, footer link color, secondary content bg
#E4641D - orange: link color, bg of link on hover

*/
.red {
	color: #F50466;
	text-align: center;
}
