/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #9FAF66;
	color: #0D1750;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	background-repeat: no-repeat;
}
/* Commonly used to style page titles. */
h1 {
	color: #333333;
	font-size: 14px;
	font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
	color: #333333;
	font-size: 12px;
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #FE0E0E;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #FF0000;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000000;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 0px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 950px;
}
#introduction {
	width: 950px;
	padding: 5px 0px 5px 0px;
	font-size: 100%;
	margin: 0 auto 0 auto;
	color: #fff;
	text-align: center;
}

#introduction h1 {
	font-size: 9px;
	color: #fff;
	font-weight: bold;
	}

#headerBackground {
	width: 950px;
	float: left;
}
#headerBottom {
	width: 950px;
	clear: both;
	margin-bottom: 5px;
	margin-top: 5px;
}
#headerTop {
	padding: 0px;
	width: 950px;
	clear: both;
	position: relative;
}
#headerTopLeft {
	width: 780px;
	float: left;
}
#headerIntro{
	width: 780px;
	color: #FFF;
	font-size: 9px;
}
#headerNews{
	width: 760px;
	color: #FF0;
	padding: 10px;
}
#headerSocial{
	width: 170px;
	float: right;
}

#navigation {
	width: 920px;
	float: left;
	height: 30px;
	margin: 0px;
	padding: 0px 15px 0px 15px;
	background-image: url(../images/nav-background.png);
	background-repeat: no-repeat;
}
#contentTop {
	width: 950px;
	height: 15px;
	clear: both;
	padding-top: 5px;
}
#contentBottom {
	width: 950px;
	height: 15px;
	margin-bottom: 10px;
	clear: both;
}
#contentWrapper {
	padding: 0px 15px 0px 15px;
	background-color: #FFF;
	width: 920px;
	float: left;
}
#contentCol1 {
	width: 580px;
	float: left;
	margin-bottom: -500px;
	padding-bottom: 500px;
}
#contentCol2 {
	width: 316px;
	float: right;
	padding-left: 10px;
}
#leftColumn1 {
  float: left;
  padding: 14px 14px 14px 14px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 209px;
}
.panellogin {
	padding: 10px;
	width: 295px;
	height: 55px;
	background-image: url(../images/panellogin3.png);
	background-repeat: no-repeat;
	margin: 0px 0px 15px 0px;
}

.panelloginlinks {
	width: 300px;
}

.panellogintext {
	width: 300px;
	padding-top: 5px;
}

.login-orange {
	color: #000000;
	font-weight: normal;
	font-size: 12px;
}

.login-red {
	padding-top: 2px;
	color: #FF0000;
	font-weight: bold;
	font-size: 12px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#content {
	margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 920px;
	float: left;
}
#contentCol1 h1 {
	font-size: 24px;
	color: #767F88;
	padding: 0px 0px 5px 0px;
}
#contentCol1 h2 {
	font-size: 18px;
	padding: 0px 0px 5px 0px;
}
.panel1 {
	padding: 0px 0px 15px 0px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#clearFloat {
  clear: left;
  display: block;
}
#footerBackground {

}
#footerBackground #footerBottom {

}
#footerBackground #footerBottom #footerTop {
	color: #333333;
	font-size: 12px;
	font-weight: bold;
	line-height: 15px;
	padding: 24px 28px 24px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#footer_text_box {
	float: left;
	width: 269px;
	background-color: #000000;
	margin-left: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
	border: solid #FFFFFF 3px;
	}		
		
#footer_text_box_image {
	padding: 10px;
	float: left;
	}	
	
#footer_text_box_text {
	padding: 10px;
	float: left;
	color: #FFFFFF;
	width: 249px;
	}


#sub_footer {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 9px;
	text-align: center;
	color: #ffffff;
	width: 950px;
	padding-bottom: 10px;
	
	}
#sub_footer ul {
	margin: 0px;
	padding-top: 10px;
	}
#sub_footer li {
	list-style: none;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0;
	display: inline;
	}
#sub_footer li a {
	padding: 0px 2px 0px 2px;
	color: #ffffff;
	}
	
#sub_footer li a:hover {
	
	color: #ffffff;
	}

#sub_footer_links{
	margin-top: 15px;
	color: #999999;
	width: 950px;
}
#sub_footer_links a, #sub_footer_links a:hover,#sub_footer_links a:visited{
	color:#999999;
	font-size: 1em
}
#sub_footer_links  h2 {
	font-size: 100%;
	color: #CCCCCC;
	font-weight: bold;
}
.panel2 {
	padding: 10px 0px 0px 0px;
}

/* Ride Page Styles. */

#spotlight_title {
	font-size: 120%;
	font-weight: normal;
	color: #333333;
	float: left;
	width: 510px;
	padding: 10px 0px 5px 20px;
	height: 18px;
	background-image: url(../images/spotlight_box.jpg);
	}
	
#spotlight_image {
	clear:left;
	text-align:center;
	height: 270px;
	}	

#spotlight {
	background-image: url(../2010/assets/images/spotlight_box.jpg);
	background-repeat:no-repeat;
	width: 530px;
	float: left;
	position: relative;
	}
	
#ride_row1_header{
	background-image: url(../images/spotlight_box.jpg);
	padding: 7px 10px 31px;
	margin-top: -1px;
	text-align:center;
	width: 510px;
	height: 38px;
}	
#ridesCol1 {
	width: 530px;
	float: left;
	margin-bottom: -500px;
	padding-bottom: 500px;
	margin-right: 25px;
	margin-left: 25px;
	display: inline;
}

#ride_row1{
	text-align:center;
	background-color: #DDDEE0;
	height: 123px;
	padding-right: 17px;
	padding-left: 18px;
}
.small_ride_pics {
	padding: 10px 5px;
	float: left;
	height: 103px;
	width: 155px;
}

#ride_column1, #ride_column2{
	padding-left: 16px;
	width: 320px;
	float:left
}

#ride_column1_text, #ride_row3_text{
	padding:5px;
	font-size: 11px;
}

#ride_column1_title, #ride_row3_title{
	padding: 5px;
	font-size: 120%;
	font-weight:bold;
	color: #FF0000
}

#ride_row2{
	padding: 5px 0 10px;
	border-top: 0 solid #C6C6C6;
	border-bottom: 1 solid #C6C6C6;
	border-right: 0px solid #C6C6C6;
	border-left: 0px solid #C6C6C6;
	margin-bottom: 10px;
	height: 100%;
	background-color: #DDDEE0;
}

#ride_column2_text{
	padding:5px;
	color: #000
}
#ride_column2_title{
	padding: 5px;
	font-size: 120%;
	font-weight:bold;
	color: #6d0d11
}

#ride_row4{
	padding: 5px 0;
	background-color: #C6C6C6;
}

#ride_column4{
	padding-left: 10px;
	width: 159px;
	float:left
}
#ride_column4_text{
	padding:5px;
	font-size: 11px;
	font-style: italic;
}
#ride_column4_title{
	padding: 5px;
	font-size: 120%;
	font-weight:bold;
	color: #0099FF
}
#wide_column1 {
	padding-left: 16px;
	float:left;
	padding-right: 16px;
	width: 498px;
}

.food_panel_title {
	background-color: #990000;
	color: #FFFFFF;
	font-size: 130%;
	padding: 3px 0px 3px 10px;
	font-weight: bold;
	}
	
	.food_header {
	font-size: 140%;
	color: #333333;
	margin-bottom: 4px;
	}
#spotlight_video {
	clear:left;
	text-align:center;
	height: 298px;
}

.headings {
	color: #D20011;
	font-size: 120%;
	font-weight: bold;
	padding-bottom: 100px;
}.headings-blue {
	color: #0D1750;
	font-size: 120%;
	font-weight: bold;
	padding-bottom: 100px;
}

.news_row2
{
	padding: 5px 0 10px;
	border-top: 0 solid #C6C6C6;
	border-bottom: 1 solid #C6C6C6;
	border-right: 0px solid #C6C6C6;
	border-left: 0px solid #C6C6C6;
	margin-bottom: 10px;
	/*height: 100%;*/
	background-color: #DDDEE0;
	clear:both;
	float:left;
}

.news_column1
{
	padding-left: 16px;
	float:left;
	padding-right: 16px;
	width:498px;
}

.news_column1_title
{
	padding: 5px;
	font-size: 120%;
	font-weight:bold;
	color: #FF0000
}

.news_column1_text
{
	padding:5px;
	font-size: 11px;
	width:490px;
	float:left;
	clear:left;
}

.news_content
{
	float:right;
	clear:right;
	width:290px;
}

.news_image
{
	float:left;
	clear:left;
	width:157px;
}

#new_set {
	float: left;
	margin-top: 10px;
	}
.new_set {
	text-align:center;
	float: left;
	margin-top: 10px;
	padding: 5px 0 5px 5px;
	border: 1px solid #999;
	margin-right: 12px;
	width: 85px;
	height: 138px;
	}
	
#new_set_image {
	width: 80px;
	margin-right: 5px;
	}	
.new_set_image {
	width: 80px;
	margin-right: 5px;
	}	
	
#new_set_text {
	float: left;
	width: 80px;
	}			
.new_set_text {
	float: left;
	width: 80px;
	}
.new_set a, .new_set a:link{
	font-weight:normal
}	
.spotlight_content_style1_img {
	margin-right: 30px;
}

#spotlight_content
{
	border-top: 0;
	float: left;
	width: 520px;
	padding: 5px 0 10px;
	border-top: 0 solid #C6C6C6;
	border-bottom: 1 solid #C6C6C6;
	border-right: 0px solid #C6C6C6;
	border-left: 0px solid #C6C6C6;
	margin-bottom: 10px;
	height: 100%;
	background-color: #DDDEE0;
	padding-left:10px;
}

#spotlight_contact
{
	float:left;
}

.registration_row
{
	float:left;
	width:490px;
	padding-bottom:10px;
}

.registration_label
{
	clear:left;
	float:left;
	width:125px;
	text-align:right;
	vertical-align:middle;
	padding-top: 5px;
}

.registration_field
{
	clear:right;
	float:right;
	width:355px;
	text-align:left;
}
#gallery_images {
	text-align:center;
	background-color: #DDDEE0;
	height: 123px;
	padding-right: 17px;
	padding-left: 18px;
	float: left;
	width: 495px;
}
#base_navigation {
	float: left;
	height: 15px;
	width: 950px;
	text-align: center;
	color: #FFFFFF;
	padding-top: 5px;
}
.base_nav_theme {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_theme   a:link  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_theme   a:hover   {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FF0000;
}
.base_nav_theme a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_shop {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_shop a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_shop a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_shop a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000066;
}

.base_nav_bird {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_bird a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_bird a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}
.base_nav_bird a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #006600;
}
.ticker
{
	width: 760px;
	color: #FF0;
	padding: 10px;
}
.ticker a
{
	color:#FFFF00;
}

.ticker a:hover
{
	color:#FF0000;
}
