/* Global Styles aka Tag Selectors 
•	p, h1, table, img, etc.
•	Appear as <h2> in html
*/
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	background-color: #FFCC66;
	background-attachment: fixed;
	background-image: url(images/goldenBack.jpg);
	background-repeat: repeat;
	background-position: center top;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
}
/*HEADING 1 - is centered and is used at the top title of main content*/
h1 {
	color: #663333;
	text-align: center;
	font-family: "Trebuchet MS", Arial, Helvetica;
	font-weight: bold;
	font-size: 24px;
	font-style: normal;
	margin-top: 8px;
}

/*HEADING 2 - is used in main content as left aligned heading for each item*/
h2 {
	font-family: "Trebuchet MS", Arial, Helvetica;
	font-size: 18px;
	font-weight: normal;
	color: #663333;
	text-align: left;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}

h3 {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #663333;
	line-height: normal;
	margin-bottom: 0px;
	margin-top: 7px;
}
h4 {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #663333;
	line-height: normal;
	margin-bottom: 0px;
	margin-top: 2px;	
}
h5 {
	font-family: "Trebuchet MS", Arial, Helvetica;
	font-size: 18px;
	font-weight: normal;
	color: #CC3333;
	text-align: left;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}

p, ol {
	margin: 0px;
	padding: 0px;
}

/*HORIZONTAL RULE TAG - unfortunately firefox doesn't seem to recognize it, so I'm using a jpeg of a golden line for separator*/
hr {
	height:1px;
	color: #CC9933;
	border: none;
	text-align: center;
	padding: 5px;
}

/* DEFAULT LINK STYLES (used in main content)*/	
a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #993333;
	text-decoration: none;
}
	
a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFC;
}

	
/* ID Styles
•	Use ID selectors to identify sections that occur only once per page as in layouts; for example - a banner, sidebar or main content area
•	Web browsers give ID selectors priority over class selectors 
•	ID selectors are used to identify a unique part of a page .
•	Use class selectors to use a style several times on a page.

Creating an ID Selector
	#banner {
	background:  #CC0000;
	height:  300px;
	width:  720px;
	}

Applying IDs in html 
	<div id=”copyright”>

Note: As with class styles, you use the # symbol only when naming the style in the style sheet. You leave off the # when using the ID’s name as part of an HTML tag.
 */

 
 /*CONTAINER - this is what holds together all the floated sections in the layout */
#container {
	width: 880px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #996600;
	background-attachment: scroll; /*the content scrolls, but the background wallpager image, which is in the body tag, stays stable - this worked better than "fixed" which ended up moving the wallpaper as well*/
	background-repeat: no-repeat;
	background-position: center top;
} 

#header {
	background-attachment: scroll;
	background-image: url(images/header.png); /*the header image has a transparent back to keep the wallpaper consistent*/
	background-repeat: no-repeat;
	background-position: center top;
	height: 190px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #996600;
	padding: 0;
	
} 
/*HEADER HEADER TAG - this is for a written header, but it doesn't really get used because we've got an image for a header, but it's there if you need it*/

#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 */
}

/* SIDEBAR 1 - this is the left sidebar with the site navigation*/ 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px;
	border-right-width: 0px;
	border-right-style: none;
	padding-top: 20px;
	padding-bottom: 15px;
	padding-left: 5px;
	padding-right: 5px;
}

/* SIDEBAR 1 LIST - this list keeps the navigation links aligned and spaced*/
#sidebar1 ul {
	margin: 0px;
	padding: 0px;
	text-align: left;
	vertical-align: top;
	line-height: 180%;
	list-style-type: none;
}

/*SIDEBAR LINKS STYLE*/
#sidebar1 a {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: bold;
	color: #993333;
	letter-spacing: 0.1em;
}
	
#sidebar1 a:hover {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFC;
	letter-spacing: 0.1em;
}

/*RIGHT SIDEBAR - is used for individual page navigation*/
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px;
	text-align: center;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-bottom-color: #CC6666;
	border-left-color: #CC6666;
	margin-bottom: 10px;
	margin-left: 15px;
}

/*LINKS STYLES*/
#sidebar2 a {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #CC3333;
}
	
#sidebar2 a:hover {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFCC;
}

/*IMAGE TAG - puts a thin border and a margin, so there's space around it */
#sidebar2 img {
	border: thin none #FFFFCC;
	padding: 0px;
	margin: 5px;
}

#sidebar2 hr {
	height:0.5px;
	color: #CC9900;
	border: none;
	text-align: center;
	padding-top: 5px;
	padding-right: 40px;
	padding-bottom: 5px;
	padding-left: 40px;
}

/*SIDEBAR 2 KEEPS THE TOP HEADING CENTERED IN MAIN CONTENT, SO IF YOU DON'T WANT TO DISPLAY SIDEBAR 2 USE THIS STYLE */
#sidebar2Invisible{
	float: right; /* since this element is floated, a width must be given */
	width: 160px;
	margin-bottom: 10px;
	margin-left: 15px;
}

/*MAIN CONTENT*/
#mainContent {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #996600;
	text-align: left;
	margin-top: 0;
	margin-bottom: 0px;
	margin-left: 200px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#main ul {
	line-height: 200%;
	list-style-type: disc;
	padding-right: 10px;
	padding-left: 10px;
	list-style-position: inside;
} 

#footer {
	padding: 0 10px 0 20px;
} 

#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/*INDEX PAGE STYLES - used mostly for previous index page with the pink circle graphics*/
#indexContainer {
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	height: 800px;
	width: 800px;
}

#indexHeader {
	height: 10px;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 0;
} 

#indexSidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* padding keeps the content of the div away from the edges */
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#indexSidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#indexContent {
	background-image: url(images/camel.gif);
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
	background-repeat: no-repeat;
	background-position: center top;
} 

/*TABLE ON SCHEDULE PAGE*/
#schedule {
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	width: 640px;
}
#schedule td  	{
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: normal;
	text-align:left;
	vertical-align: middle;
	padding: 2px;
	border: thin dotted #CC9933;
	font-style: italic;
		}

/*
CLASS SELECTORS
Are used with a tag selector, or if there isn't an appropriate tag, you can use <span> or <div> tags. If you don't want every instance of a <p> tag to get the same styling, Css lets you create a class selector with a name of your own choosing, and then selectively apply it to certain bits of HTML on your page. For example, you can create a class style named .copyright and then apply it only to a paragraph containing copyright information, without affecting any other paragraphs.

Creating a class selector in CSS:
	.special {
	color:#FF0000;
	font-family:"Verdana";
	}

Using a Class Selector in HTML page:
<p class="special">blah blah</p>

If there isn't an appropriate Tag Selector, use <div> and <span> tags.
<span class="special>blah blah</span>
 */


.bold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bolder;
	color: #333333;
	}
	
.noBorder {
	border: none
	}
	
.subHeader {
	color: #006666;
	line-height:normal;
	letter-spacing:0.1em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-transform: none;
	padding-bottom: 2px;
	}
	
.smallText {
	color: #333333;
	line-height: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	}

.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;
}
.emphasis {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	color: #663333;
	letter-spacing: 0.1em;
	font-weight: bold;
}
.spaced {
	line-height: 160%;
	letter-spacing: 0.05em;
}
.highlight {
	background-color: #FFE28C;
	background-position: left;
	margin-right: 170px;
}

.cream {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFC;
}
.h7 {
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #F0F;
}
