@charset "utf-8";
/* CSS Document */
body {
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
	background-position: top;
	background-color: #eb3d00;
	margin: 0px;
	padding: 0px;
}
div#wrapper {
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #fff883;
}
/* Starts Menu */
div#menu {
	background-image: url(../images/menu_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 50px;
	width: 900px;
	text-align: center;
}
ul.MenuBarHorizontal
{
	list-style-type: none;
	font-size: 14px;
	cursor: default;
	width: 900px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 4px;
	margin: 0px;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	padding-top: 0px;
	padding-right: 7px;
	padding-bottom: 0px;
	padding-left: 0px;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
	padding: 0px;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
ul.MenuBarHorizontal a {
	text-align: center;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 8.2em;
}
ul.MenuBarHorizontal ul li a {
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF6600;
	font-size: 12px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	background-color: #FFFF00;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #FF6600;
	border-right-color: #FF6600;
	border-left-color: #FF6600;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 0.5em;
	color: #333;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #FF0000;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(../images/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(../images/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(../images/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(../images/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
	

}

/* Ends Menu */

/* Starts Header */
div#banner {
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 200px;
	width: 900px;	
}
/* Ends Header */

/* Starts Content */
div#content {
	background-color: #fff883;
	width: 876px;
	padding-top: 0px;
	padding-right: 12px;
	padding-left: 12px;
	background-image: url(../images/content_bg.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-bottom: 7px;
	margin: 0px;
}
div#content img.post-img-left {
	margin-right: 13px;
	float: left;
}

div#content img.main-pic {
	margin-bottom: 7px;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #53C038;
}

div#content h1, div#content h2, div#content h3 {
	font-family: "Trebuchet MS";
	font-weight: bolder;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 13px;
	margin-left: 0px;
}
div#content h1 {
	font-size: 24px;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #FF0000;
	padding-bottom: 7px;
	color: #006600;
	font-weight: bolder;
}
div#content h2 {
	font-size: 16px;
	color: #006600;
	text-indent: 20px;
	margin-top: 30px;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #FF9900;
}

div#content h3 {
	font-size: 14px;
	color: #006600;
	text-indent: 13px;
	margin-top: 30px;
}


div#content table#souvenirs {
	width: 585px;	
}
div#content table#souvenirs td {
	text-align: center;
	font-family: "Trebuchet MS";
	font-size: 12px;
	text-transform: capitalize;
	color: #000000;
	vertical-align: top;
}
div#content table#souvenirs span.price {
	font-weight: bold;
	color: #FF0000;	
}
div#content span.sponsor {
	font-family: "Trebuchet MS";
	font-weight: bolder;
	font-size: 18px;
	color: #FFFFFF;
	margin-bottom: 7px;
	padding: 5px;
	float: left;
	width: 866px;
	text-align: center;
	background-image: url(../images/sponsors-bg.png);
	background-repeat: repeat-x;
	background-position: bottom;
}
div#content ul.sponsors-list1 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	text-align: center;
}
div#content ul.sponsors-list1 li {
	text-align: center;
	margin-bottom: 7px;
	clear: left;
	list-style-type: none;
	display: inline-table;
	width: 250px;
}
div#content ul.sponsors-list2 {
	clear: both;
	float: left;
	width: 876px;
	text-align: center;
	margin-top: 13px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #FF6600;
	padding-top: 13px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div#content ul.sponsors-list2 li {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
div#content ul.sponsors-list2 li img {
	width: 142px;
	text-align: left;
}
div#content ul.sponsors-list {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	text-align: center;
}
div#content ul.sponsors-list li {
	text-align: center;
	margin-bottom: 7px;
	clear: left;
	list-style-type: none;
	font-weight: bold;
}
div#content span#platinum{
	background-color: #000066;
}
div#content span#diamond-plus {
	background-color: #666666;
}
div#content span#diamond {
	background-color: #999999;
}
div#content span#gold-plus {
	background-color: #FFCC66;
	color: #000000;
}
div#content span#gold {
	background-color: #FFCC00;
	color: #000000;
}
div#content span#stage {
	background-color: #990000;
}	
div#content span#cottonwood {
	background-color: #FF9900;	
	color: #000000;
}		
div#content span#children {
	background-color: #33CC66;	
	color: #000000;
}	
div#content span#silver-plus {
	background-color: #666666;	
}	
div#content span#silver {
	background-color: #999999;
}	
div#content span#bronze-plus {
	background-color: #CC9900;
}	
div#content span#bronze {
	background-color: #CC9933;
}	
div#content span#mascot {
	background-color: #9999FF;
	color: #000000;
}	
div#content span#friend {
	background-color: #339966;
}
div#content p, div#content li  {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	text-align: justify;
	list-style-position: inside;
}
div#content a:link, div#content a:visited, div#content a:focus {
	color: #FF0000;
}
div#content a:hover {
	color: #006600;
}
div#content table.schedule {
	font-family: "Trebuchet MS";
	font-size: 14px;
	width: 100%;
	margin-bottom: 50px;
}
div#content table.schedule td {
	padding-bottom: 4px;	
}
div#content table.schedule td.h2 {
	font-family: "Trebuchet MS";
	font-size: 18px;
	font-weight: bold;
	color: #003300;
	padding-bottom: 7px;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #FF6600;
	padding-left: 50px;
}
div#content table.schedule td.morning {
	background-color: #FFCC00;
	background-image: url(../images/schedule_morning_icon.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 50px;
}
div#content table.schedule td.noon {
	background-color: #00CCFF;
	background-image: url(../images/schedule_noon_icon.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 50px;
}
div#content table.schedule td.afternoon {
	background-color: #0000FF;
	background-image: url(../images/schedule_afternoon_icon.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 50px;
}
div#content ul#performers li {
	list-style-type: none;
	margin-bottom: 13px;
	padding-bottom: 13px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FF6600;
	clear: left;
}
div#content ul#performers h3 {
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #99FF00;
	text-indent: 13px;
}
div#content ul#performers li img {
	float: left;
	padding-right: 7px;
}
div#content div#schedule_key {
	margin-left: 20px;
	font-family: "Trebuchet MS";
	float: right;
}
span.main-stage, span.kids-events, span.cottonwood-stage, span.christian-events {
	font-size: 13px;
	font-weight: bold;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 7px;
	height: 8px;
}

span.main-stage {
	color: #990000;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #FF0000;
}

span.kids-events {
	color: #0000CC;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #0066FF;
}

span.cottonwood-stage {
	color: #006600;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #009900;
}

span.christian-events {
	color: #9900CC;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #9933FF;
}
div#photos {
	float: left;
	width: 550px;
	text-align: center;
}
div#photos img {
	margin-right: 11px;
	margin-bottom: 7px;
	margin-left: 11px;	
}
img.homecoming {
	float: left;
	margin-top: 100px;
}
/* Ends Content */

/* Starts Sidebar */
div#sidebar {
	float: right;
	width: 277px;
	margin-left: 7px;
	margin-right: 0px;
	margin-top: 7px;
	margin-bottom: 13px;
}
/* Ends Sidebar */

/* Starts Footer */
div#footer {
	height: 25px;
	width: 900px;
	padding-top: 7px;
	background-color: #eb3d00;
}
div#footer p {
	font-family: "Trebuchet MS";
	color: #FFFFFF;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
/* Ends Footer */