@charset "utf-8";
/* CSS Document */
/*---------------------------------------------------------*/
/* main layout */
body {
	 margin: 0;
	 font-family:Arial, Helvetica, sans-serif;
	/* background-image: url(/images/metal_tile.gif);*/
	background-color:#D3D3D3;
}
.container{ /*use this whenever you want something to stay within 1000px wide*/
	width: 100%; /*width: 1000px;*/
	max-width: 1000px;
	margin: auto;	
}
/*---------------------------------------------------------*/
/* additional layout */
.content_column {
	width:100%;   
}
/*---------------------------------------------------------*/
/* menu */
#menu {
	width:100%;
	z-index:1000;
}
#menu_bar {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:50px;
	z-index:999;
	display:none;
	/*background-image: url(/images/metal_tile.gif);*/
	background-color:#D3D3D3;
	-moz-box-shadow: inset 0 -3px 3px #9A9C9B;
    -webkit-box-shadow: inset 0 -3px 3px #9A9C9B;
    box-shadow: inset 0 -3px 3px #9A9C9B;
} 
#menu_button {
	display:none;
	width:60px;
	height:50px;
	float:right;
	margin-right:30px;
	padding-left:20px;
	font-size:2.7em;
	line-height:50px;
	cursor:pointer;
	color:#000000;
}
#menu_button:hover {
	cursor:pointer;
	color:#FFFFFF;
}
#desktop_menu_container {
	border-bottom-color:#000000;
	border-bottom-style:solid;
	border-bottom-width:1px;
}
#desktop_menu_content {
	margin-top:0px;
	width:100%;
	height:50px;
	position:relative;
}
#desktop_logo_wrapper {
	width: auto;
    overflow: hidden;
}
#desktop_logo {
	width: 100%;
	max-width:300px;
	height:50px;
	text-align:left;
}
#desktop_nav_row {
	width:550px;
	height:32px;
	padding-left:5px;
    float:right;
	margin-top:10px;
	text-align:right;
}
.desktop_nav_button {
	position:relative;
	display:inline-block;
	padding-right:10px;
	margin-right:10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
	line-height:32px;
	border-right-style:dotted;
	border-right-color:#000000;
	border-right-width:1px;
}
.desktop_nav_button a:link {
	color: #000000;
	text-decoration: none;
}
.desktop_nav_button a:visited {
	color: #000000;
	text-decoration: none;
}
.desktop_nav_button a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
#mobile_logo_wrapper {
	width: auto;
    overflow: hidden;
}
#mobile_logo {
	display:none;
}
/*---------------------------------------------------------*/
/* home page */

/*---------------------------------------------------------*/
/* footer */
#footer {
	width:100%;
	position:relative;
	padding-top:30px;
	padding-bottom:30px;
	margin-bottom:50px;
	border-top-color:#000000;
	border-top-width:1px;
	border-top-style:solid;
	border-bottom-color:#000000;
	border-bottom-width:1px;
	border-bottom-style:solid;
}
#footer a:link {
	color: #000000;
	text-decoration: none;
}
#footer a:visited {
	color: #000000;
	text-decoration: none;
}
#footer a:hover {
	color: #FFFFFF;
	text-decoration: none; /*leave this to none, it was adding underline to social links*/
}
#footer_menu {
	width:100%;
	margin-top:15px;
	text-align:center;
	font-size:1.2em;
}
#copyright {
	font-size:1.2em;
	width:100%;
	text-align:center;
	margin-top:25px;
	color:#444444;
}
#footer_social {
	text-align:center;
	margin-top:15px;
}
.footer_social_icon {
	vertical-align:middle;
	margin:0 10px 0 0;
}
#share_url {
	display:none;
}
#share_copy_button {
	width:100px;
	display:inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
	text-decoration:none;
	padding:5px 8px 5px 8px;
	text-align:center;
	background-color:#0D85D8;
	font-weight: bold;
	-moz-border-radius:5px;
	border-radius:5px;
	border:none;
	-webkit-appearance: none; /*this removes iphone default apperance*/
}
#share_copy_button:hover {
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
	cursor:pointer;
}
#share_message {
	font-size:1.1em;
	padding-left:10px;
	padding-top:3px;
	color:#555555;
}
/*---------------------------------------------------------*/
/*---------------------------------------------------------*/
/* must apply to large screen at a minumum width */
@media screen and (min-width : 801px) { 
#page_wrapper {
	position:relative;
}
#page {
	z-index:100;
	position:relative;
}
#menu_bar, #menu_button {/*this has to be here if screen resize up from mobile after open menu, could not chain together with below*/
	display:none;
}
#mobile_menu_container, #mobile_menu_content {/*this has to be here if screen resize up from mobile after open menu*/
	display:none;
}
}
/*---------------------------------------------------------*/
/* medium------------------------------------------------- */
@media screen and (max-width : 800px) {	
/*---------------------------------------------------------*/
/*---------------------------------------------------------*/
/* menu */
#menu_bar {
	display:block;  
}	
#menu_button {
	display:block;
	margin-right:0px;
}
#desktop_menu_container {
	display:none;
}
#mobile_menu_container {
	margin-top:50px;
	display:none;
}
#mobile_logo {
	max-width:200px;
	margin-left:1.5%;
	display:block;
	float:left;
}
.mobile_nav_button {
	padding:12px 25px 12px 15px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	font-weight:bold;
	cursor:pointer;
	background-color:#000000;
	border-bottom-style:solid;
	border-bottom-color:#666666;
	border-bottom-width:1px;
}
.mobile_nav_button_active {
	background-color:#666666;
}
#mobile_nav_close {
	text-align:right;
	cursor:pointer;
	color:#FFFFFF;
}
#mobile_menu_content a:link {
	color: #FFFFFF;
	text-decoration: none;
}
#mobile_menu_content a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
#mobile_menu_content a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
/*---------------------------------------------------------*/
/* above_page */
#page_spacer { /*this adds space for mobile menu bar*/
	margin-top:50px;
}
/*---------------------------------------------------------*/
/* page */
#page {
	z-index:100;
	position:relative;
}
/*---------------------------------------------------------*/
/* footer */
#footer_race_page {
	padding-left:0px;
}
#footer_menu {
	width:100%;
	margin-top:15px;	
}
#copyright {
	font-size:1em;
}
/*---------------------------------------------------------*/
} /*end @media screen and (max-width : 800px)*/
/*---------------------------------------------------------*/
/* medium/small ------------------------------------------ */
@media screen and (max-width : 699px) {	
/*---------------------------------------------------------*/
/*---------------------------------------------------------*/
#footer {
	width:98%;
	margin:auto;
}
#footer_menu {
	line-height:2em;
	font-size:1.5em;
}
/*---------------------------------------------------------*/
} /*end @media screen and (max-width : 699px)*/
/*---------------------------------------------------------*/
/* Small ------------------------------------------------- */
@media screen and (max-width : 649px) {	
/*---------------------------------------------------------*/
/* additional layout */
.content_column {
	width:94%;
	margin:0 3% 0 3%;
}
#mobile_logo {
	margin-left:1%;
}
/*---------------------------------------------------------*/
/* home page */
/*---------------------------------------------------------*/
/*---------------------------------------------------------*/
} /*end @media screen and (max-width : 649px)*/
/*---------------------------------------------------------*/
/*standard stuff down here - not width dependant*/
.align_text_center {
	text-align: center;
}
.align_text_right {
	text-align: right;
}
a:link {
	color: #0033CC;
	text-decoration: none;
}
a:visited {
	color: #0033CC;
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}
.dark_blue_link:link {
	color: #003366;
	text-decoration: none;
}
.dark_blue_link:visited {
	color: #003366;
	text-decoration: none;
}
.dark_blue_link:hover {
	color: #0033CC;
	text-decoration: underline;
}
.background_white {
	background-color: #FFFFFF;
}
.bold {
	font-weight:bold;	
}
.block {
	display:block;
}
h1 {
	margin:0;
}
h2 {
	margin:0;
}
h3 {
	margin:0;
}
h4 {
	margin:0;
}
.link_fake {
	color: #0033CC;
	text-decoration: none;
}
.link_fake:hover {
	color: #000000;
	text-decoration: underline;
	cursor:pointer;
}
.color_red {
	color:#F00;
}
.color_green {
	color:#008000;
}
.color_1 {
	color:#111111;
}
.color_2 {
	color:#222222;
}
.color_3 {
	color:#333333;
}
.color_4 {
	color:#444444;
}
.color_5 {
	color:#555555;
}
.color_6 {
	color:#666666;
}
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.hidden {
	display:none;
}
#loading_box {
	display:none;    
}
p {
	margin:0;
}
.strike {
	text-decoration:line-through;
}
/*got this code from here  http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/*/
.vertical_center img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}