﻿/* 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 */
}

h5 {
	font-size: 1.5em;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #009;
	text-align: center;
	margin-bottom: 5px;

}

p
{
	line-height: 1.5em; /* add a little space between lines in paragraphs */
	text-align: center;
}

.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: center;
	font-weight: bold;
	text-decoration: none;
}

.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: 1.25em;
	color: #000099;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	line-height: .95em;
}

.leftbox {
	float: left;
	margin: 5px 5px 5px 0;
	width: 123px;
	border: 1px solid #000;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	color: #f50466;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	
}


/* 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;
}

/* 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 */


#secondary-content 
{
	border: 1px solid #f50466;
	float: left;
	width: 178px;
	padding: 10px;
	margin-bottom: 20px;
	background: url(../Art/navbackground.jpg) repeat-y;
}
#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: center;
}

/* 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;
}

/*begin coding for TOY REVIEW page*/
#floatcontainer {
	width: 750px;/*set a width*/
	height: 320px;/*set a height for the container*/
	padding-top: 10px;/*sets the distance from the element above -- remember to add this value to the height of the boxes to get the full height of this float container*/
}


/*set up the three floated boxes - these are held within the above selector*/
.floatboxes {
   width: 220px;/*set a width for IE pc*/
	w\idth: 220px;/*set the width for good browsers*/
	height: 300px;/*set a height for the four boxes so they remain consistent*/
	margin:  0 16px;/*set the margins for IE5.5*/
	ma\rgin: 0 14px;/*set the margins for IE 6 and other browsers allows for a float bug in IE 6*/
	border: 1px solid #009;/*set a border around the boxes*/
	float: left;/*float them to the left*/
	background-color: #fff;/*set a background colour for the boxes*/
	overflow: auto;/*set overflow to auto - if the content excedds the boxes height scroll bars are provided*/
}

html>body .floatboxes {
   margin: 0 12px;/*correctly align the margin for good browsers after the hack in the rule above*/
}

/* This selector fixes the horizontal scroll in IE Mac and would be seen by IE 5.01 PC except for the escape characters */
*>html .floatboxes {
	padd\ing-right: 10px; /*sets some padding to the right to avoid the horizontal scroll bars that IE insists are needed*/
	w\idth: 137px; /*Feeds in a corrected width for IE due to the padding above */
}
.floatboxes h3 {
   text-align: center;/*set the h3 titles for eac of the boxes*/
	font-size: 105%;/*scale the font size off the body selector*/
	font-family: Georgia, "Times New Roman", Times, serif;/*set the font family*/
	padding: 0 0 3px 0;/*set padding against the bottom, zero all other sides*/
	margin: 0;/*zero the margins*/
	color: #fff;/*set the text colour*/
	font-weight: 500;/*sets the font weight a little less than bold, if not supported in a given browser defaults to a normal weight. If you want bold for your h1 delete this property and value pair - or simply comment them out*/
	background-color: #029604;/*set the background color*/
}

/*This selector is only seen by IE Mac due to the escape characters that also block IE 5 PC -- this reverses the heading colors */
*>html .floatboxes h3 {
	bac\kground-color: #029604;/*provides a background colour to match the box background for IE Mac only*/
	c\olor: #029604;/*provides the contrasting text colour*/
	/* a negative margin-left, equivalent to 1px LESS than the padding added on the "html>body .floatbox" selector, can be used here instead of reversing the heading colors... however, you will have a 1px space on the far right of the heading which is not appealing with some color schemes. You will also have a horizontal scroll bar on any boxes that have a vertical scroll. This may be acceptable in some cases however. */
	}
/*style the text in the boxes*/
.floatboxes p {
	font-size: 80%;/*scale the font size off the body selector*/
	margin: 3px;/*set a margin to all four sides of 5 pixels*/
	padding-bottom: 4px;/*adds padding to the bottom of the p element*/
	text-align: left;
}

/*set the links in the boxes*/
.floatboxes p a, #content a {
	color: #009; /*set the text colour*/
	text-decoration: underline;
}

.floatboxes p a:hover, .floatboxes a:focus, #content a:hover, #content a:focus {
	color: #009;/*set the text colour on hover and focus*/
	background-color: #FFD8B0;/*set the background colour*/
	text-decoration: underline;/*remove the underline*/
}


/*set the links in the boxes*/
.floatboxes a, #content a {
	color: #fff; /*set the text colour*/
}

.floatboxes a:hover, .floatboxes a:focus, #content a:hover, #content a:focus {
	color: #e4641d;/*set the text colour on hover and focus*/
	background-color: #029604;/*set the background colour*/
	text-decoration: none;/*remove the underline*/
	font-weight: bold;
}


.reviewphoto {
	float: left;
	margin: 5px 3px 3px 3px;
	border: 1px solid #fe075f;
	
}



/*end coding for TOY REVIEW page*/





/* 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

*/
