@charset "utf-8";

/******************************** Common Items ***************************/
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-image: url(assets/common/body_bg.png);
	background-repeat: repeat-x;
	background-size: contain;
	background-color: #CCC;
}

/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	position: relative;
	background-image: url(assets/common/body_bg.png);
	background-size:contain;
	color: #666;
}

/* ~~ These are the columns for the content layout. ~~ */

.sidebar1 {
	float: left;
	width: 180px;
	background: #000;
	padding-bottom: 10px;
	background-image: url(assets/tie-1.jpg);
	height: auto;
}

.content {
	width: 960px;
	float: right;
}

.content_scrolling { /* use with scrolling content */
	height: 515px;
	overflow-y:scroll;
	overflow-x:hidden;
	padding: 15px;
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 20px;
	border: thin solid #FFDD00;
}

.content_noscrolling { 
	padding: 10px;
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 20px;
	border: thin solid #FFDD00;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	color: #CCC;
}

/* ~~ Element/tag selectors ~~ *//* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
ul, ol, dl {
	padding: 0;
	margin: 0;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #CCC;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #CCC;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #FFDD00;
}

hr {
	border: thin dotted #FFDD00;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
}

.img_left_float {
	float: left;
	border: thin solid #666;
	margin-right: 10px;
}

.img_right_float {
	float: right;
	border: thin solid #666;
	margin-left: 10px;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/********************************* Header Elements *******************************************/
header {
	background: #000;
	width: 960px;
	height: 150px;
}

.header_links ul li {
	font-family: "Minion Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #CCC;
	display: inline;
	width:140px;
	padding:25px;
	text-decoration:none;
}

.header_links a:link, a:visited {
	text-decoration:none;
	color:#CCC;
}

.header_links a:hover {
	text-decoration:none;
	color:#FFDD00;
}

#header_links {
	position: absolute;
	width:795px;
	height:39px;
	z-index:1;
	left: 0px;
	top: 85px;
	color: #CCC;
	text-decoration: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
}

#header_text {
	position:absolute;
	left:30px;
	top:15px;
	width:600px;
	height:72px;
	z-index:3;
	font-family: "Minion Pro", "Lucida Console", Helvetica;
	font-size: 36px;
	font-style: italic;
	font-weight: bold;
	color: #CCC;
}

#yellow_bar_795 {
	position:absolute;
	left:0px;
	top:132px;
	width:795px;
	height:18px;
	z-index:1;
	background-image: url(assets/common/bar1.jpg);
	background-repeat: repeat-x;
}

/********************************* Footer ****************************************************/
footer {
	padding: 10px 0;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	border-top-width: thin;
	border-top-style: dotted;
	border-top-color: #FFDD00;
}

/********************************* Page Specific Elements ************************************/
/********************************* index.html ***********************************************/

.rrmvh1 {
	color: #CCC;
	font-size: 36px;
	font-style: italic;
	font-weight: bold;
	font-family: "Minion Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: center;
	width:960px;
	vertical-align: text-bottom;
	text-shadow: 3px 3px #000;
}

.sscontainer {
	height:320px;
	width:auto;
	position: relative;
}

#yellow_bar_ss {
	position:absolute;
	left:0px;
	top:283px;
	width:960px;
	height:17px;
	z-index:1;
	background-image: url(assets/common/yellowbar-795px.png);
}

.mission_container {
	float: left;
	width: 490px;
	padding:5px;
	border: thin solid #FFDD00;
	text-align: center;
	color: #CCC;
	background-color: #222;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	height: 430px;
}

#fourboxcontainer {
	padding: 5px;
	float: right;
	width: 380px;
	text-align: center;
	background-color: #222;
	margin-right: 20px;
	margin-bottom: 20px;
	border: thin solid #FFDD00;
	height: 430px;
}

.small_box {
	height: 90px;
	width: 300px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

/***************************************Engine No.1134 **********************************************/

.section {
	width:auto;
	height:auto;
	clear: both;
	border-bottom-width: thin;
	border-bottom-style: dashed;
	border-bottom-color: #FFDD00;
	padding: 5px;
}

/*********************************** Board *******************************************/
#board_ap_container {
	position: relative;
	min-height:420px;
	overflow: visible;
}

#left_div {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 250px;
	height: 400px;
	z-index: 1;
	border: thin solid #FFF;
	padding: 2px;
	text-align: center;
	color: #FFF;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	background-color: #000;
}

#center_top {
	position: absolute;
	left: 280px;
	top: 10px;
	width: 300px;
	height: 180px;
	background-color: #000000;
	z-index: 1;
	border: thin solid #FFF;
	text-align: left;
	color: #FFF;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-image: url(assets/board/ribbon_cutting.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

#right_div {
	position: absolute;
	width: 250px;
	height: 400px;
	background-color: #000000;
	border: thin solid #FFF;
	z-index: 1;
	left: 600px;
	top: 10px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	text-align: center;
}

#center_bottom {
	position: absolute;
	left: 280px;
	top: 210px;
	width: 300px;
	height: 180px;
	z-index: 1;
	border: thin solid #FFF;
	text-align: left;
	color: #FFF;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #000;
	background-image: url(assets/board/center-bottom.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.visit_bodycopy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: left;
}

#board {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	vertical-align: middle;
	height: auto;
	width: auto;
	margin: auto;
}

#honorary {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	text-align: center;
	color: #FFF;
	margin: auto;
}

.smallertype {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #FFF;
	text-align: left;
}

.visit_header {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 18px;
	color: #FFF;
	text-align: left;
	letter-spacing: normal;
}

#ex-officio {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	height: auto;
	width: auto;
	color: #FFF;
	font-size: medium;
	margin: auto;
}
/*************************** visit **********************/
.don_ap_container {
	position: relative;
	height: 525px;
}

#blue_div {
	position:absolute;
	left:10px;
	top:10px;
	width:250px;
	height:380px;
	z-index:1;
	background-image: url(assets/visit/train_wheels.jpg);
	border: thin solid #FFF;
	padding: 2px;
	text-align: left;
	color: #FFF;
	border-top-left-radius:20px;
	border-bottom-left-radius:20px;
}

#red_div {
	position:absolute;
	left:280px;
	top:10px;
	width:300px;
	height:180px;
	background-color:#000000;
	z-index:1;
	border: thin solid #FFF;
	padding: 2px;
	text-align: left;
	color: #FFF;
	border-top-left-radius:20px;
	border-bottom-right-radius:20px;
}

.visit_bodycopy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: left;
}

.smallertype {
	font-family: Verdana, Geneva, sans-serif;
	font-size: xx-small;
	color: #FFF;
	text-align: left;
}

#green_div {
	position:absolute;
	left:280px;
	top:210px;
	width:300px;
	height:180px;
	z-index:1;
	background-image: url(assets/visit/ticketimage1.jpg);
	border: thin solid #FFF;
	padding: 2px;
	text-align: left;
	color: #FFF;
	border-top-left-radius:20px;
	border-bottom-right-radius:20px;
}

.visit_header {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 18px;
	color: #FFF;
	text-align: left;
	letter-spacing: normal;
}

#yellow_div {
	position:absolute;
	width:250px;
	height:380px;
	background-color:#000000;
	border:thin solid #FFF;
	z-index:1;
	left: 600px;
	top: 10px;
	background-image: url(assets/visit/Directionsbox.jpg);
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
}

/************************************************************************  photo gallery ************************************************************/
.photo_content {
	width: 475px;
	height: 450px;
	overflow-y: scroll;
	overflow-x: hidden;
	color: #FFFFFF;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 15px;
}

.thumbnails_content_containers {
	float: left;
	margin-right: 1px;
	margin-left: 15px;
	overflow: hidden;
	margin-top: 15px;
}

.content_photo-gallery {
	height: 515px;
	margin: 5px;
	border: thin solid #FFDD00;
}

/******************************* events **************************/
#events_div {
	text-align: center;
	margin-top: 5px;
}

/****************************** kids page ************************/
#directions {
	position: absolute;
	left: 30px;
	top: 200px;
	width: 180px;
	height: 389px;
	z-index: 1;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

/********************************* directions ********************/
.iframe_scrolling {
	width:425px;
	height:350px;
	border:none;
	overflow:hidden;
	float:left;
	margin-right:10px;
}
/************************************ past-pres-fut ***************************/
.past_section {
	border-bottom-width: thin;
	border-bottom-style: dashed;
	border-bottom-color: #FFDD00;
}
