/* CSS Document */

body {
	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 */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	font-family:  "Times New Roman", Verdana, Arial, sans-serif;
	font-size: 16px; /* specifies default font size for all pages */
}

#mainContainer {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0px; /* Was 20 px; This spaces the "page" down a little from the top of the screen */
	border: 0px solid; /* note: color is set in appropriate graphics set css */
	color: black; /* set default font color -- mostly pertains to content area */
	background-color: #FFFFFF; /*set default background color -- mostly pertains to content area*/
}

/* Eliminate underlines for all links on website*/
a {
	text-decoration: none;
}

/* Species default color behavior for links -- mostly pertains to those in the content area */
a:link {
	color: blue;
}
a:visited{
	color:;
}
a:hover {
	color: red;
}
a:active {
	color: red;
}

/*  Specify the height of the header.  NOTE:  The image is set as a background in the respective CSS graphics sheet  */
#header {
	border: 0px solid black;
	height: 83px;/* Was 78px;  Was 65px */
	padding: 0;
}
/* Specify default appearance for all section headings throughout the website */
.sectionHeading {
	border: 0px solid black;
	text-align: left;
	font-size:20px;
	font-weight: bold;
	margin-left: px;
	margin-bottom: 10px;
}

/* Maintain consistent presentation across the nav links; Note: color is set in appropriate graphics css for all menu items 
#mainMenu, #pageMenu {
	padding-top: 2px;
	border: 0px solid black;
	font-family:  "Times New Roman", Verdana, Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
} */

/* Push the content in from the left and right edges of the mainContainer to provide appropriate visual white space */
#pageBanner, #content, #contentTravelDay {
	margin-left: 25px;
	margin-right: 25px;
}

/* Define the characteristics of the pageBanner content and define vertical spacing */ 
#pageBanner {
	margin-top: 30px;
	margin-bottom: 0px;
	font-size: 22px;
	font-weight: bold;
	font-variant: small-caps;
	border: 0px solid black;
	border-bottom: 2px solid black;
	background-color: ;
}

/* Spry Nav Bar: Hack required for IE in order to maintain correct height */
#navWrapper {
	border: 0px solid;
	margin-top: -2px;
	width: 100%;
}

/* Define the vertical spacing for content.  Note: Anything related to contentTravelDay's background can be found
   in the travel.css and repsective graphics.css -- it is a special case */
#content, #contentTravelDay {
	margin-top: 25px;
	margin-bottom: 15px;
	background-color: ;
	border: 1px solid transparent; /* Required hack to force IE to show background starting 25px below page border */
}

/* Specifies the behavior of content in table cells within the paperContent div -- this was the original setup
#content td{
	vertical-align: top;
	padding: 0px 10px 20px 10px;
}*/

/* Eliminates any space between cell borders */
.mainContentTable {
	border-collapse: collapse;	
}


/* Specifies the behavior of cells of a main table in the content div */
.mainContentTable td{
	vertical-align: top;
	padding: 10px 10px 10px 10px;
}

/* Defines the characteritics of the temporary page decription used on blank pages (i.e. generally referral and travel pages */
#temporaryPageDescription {
	border-style: double; 
	color: #ac1317; 
	text-align: left; 
	padding: 10px; /* Hack to address IE's weird spacing -- may be related to double border style */
	/*margin: 10px 0px 10px 0px; */
}

/* Define the general characteristics of the footer area.  Color or image specifications are handled in the
   respective graphics.css */
#footer {
	border: 0px solid red;
	/*height: 30px; */
	font-size: 14px;  
	font-weight: normal;
	font-style: normal;
	text-align: center;
	/*padding-top: 10px;
	padding-bottom: 10px; */
	/* height: 35px; */
}

#footer a {
	font-size: 12px;
	text-decoration: underline;
}


/* Define the general characteristics of the marguee if used */
#scrollingMarquee {
	border: 0px solid blue;
	margin: 5px;
}

.redHighlight {
	color: #7C0E11;
}

.footNote {
	font-size: 12px;
}

.quote {
	font-style: italic;
	font-size: 1.0em;
	font-weight: bold;
	padding: 8px;
	text-align: center;
}

/* define size of the FlowPlayer for all pages; this assumes controls will be present */
/* Note: player class is defined for use with multiple players on one page */
#player, .player {
	display:block;
	width:320px;  /* same width as video */
	height:263px;  /* height of video plus 23px to account for controls*/
}

/* Note:  Can delete this code if the code immediately above works */
/* define class player for multiple players on one page */
/* define size of the FlowPlayer for all pages; this assumes controls will be present */
/*
.player {
    display: block;
    width: 320px;
    height: 263px;
}
*/


/* horizontally center any "center" class block */
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}