/* 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:#1b74ac;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 0; 
  padding: 0; 
  text-align: center; 
}

h1 {
  color: #71BC00;
  font-size: 18px;
  font-weight: bold;
  line-height: 14px;
  padding: 10px 0;
  text-align: center;

}

h2 {
  color: #1b74ac;
  font-size: 16px;
  font-weight: bold;
  line-height: 14px;
  padding: 8px 0 4px 0;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #1f499c;
  font-weight: bold;
  text-decoration: none;
 
}
/* Sets the style for visited links. */
a:visited {
  color: #1f499c;
  font-weight: bold;
  text-decoration: none;
  
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #f7a310;
  text-decoration: underline;
}

.clear {
	clear: both;
}
#fullWidthHeader {
	background-image: url("../images/headerBg.gif");
	background-repeat: repeat-x;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 8px;
	text-align: center;
	color: #FFF;
}

#fullWidthHeader p {
	margin: 0px;
	padding: 0px;
}

#fullWidthOuterWrapper {
  background-color: #fff;
  width: 100%;
}

/* 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 {
  background-color: #fff;
  margin: 0 auto 0 auto; 
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 1000px;
}
#outerWrapper #topNavigation {
	padding: 10px; 
}
#outerWrapper #topNavigation img {
	display: block;
	border: none;
	margin-left: auto;
	margin-right: auto;
}
#topNavLinks {
	list-style-type: none;
	padding: 0px;
	text-align: center;
	margin: 15px 0 3px 0;
	
}
#topNavLinks li {
	display: inline;
	padding-left: 16px;
	background-image: url(../images/navLinksBg.gif);
	background-repeat: no-repeat;
	background-position: 4px;
}

#topNavLinks li.listFirst {
	padding-left: 0;
	background-image: none;
}

#outerWrapper #contentWrapper {
  /* background image created for full length columns...(not needed so far) 
  
  background-image: url("../images/contentWrapper_bg.png");
  background-repeat: repeat-y;
  overflow: hidden; */
}
#outerWrapper #contentWrapper #leftColumn1 {
  float: left;
  padding: 10px; 
  width: 235px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  float: right;
  padding: 10px; 
  width: 235px;
}
#rightColumn1 ul {
	list-style:none;
	margin: 0;
	padding: 0;
	}
#rightColumn1 li {
	padding-bottom: 15px;
	}	
/* 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. */

/* This content div is only on the index page which uses a 3 column layout  The subpages content div is styled below. It is named subContent and the subpages use a 1 column layout */
#content {
	background-image: url(../images/mainContentBG.gif);/* Orange background for the form */
	background-repeat: no-repeat; 
	background-position: center top;
	min-height: 400px;
	margin: 0 255px 0 255px;
	padding: 10px 10px 10px 25px;
	
}



#outerWrapper #sponsors img{
	border: none;
	border-right: 1px solid #000; 
}

#outerWrapper #sponsors img.noBorder{
	border: none; 
}

ul#sponsorImages {
	list-style: none;
	margin: 5px 0 0 0;
	margin-left: 20px;
	padding: 0;	
}

#sponsorImages li {
	display: inline;
	padding-left: 7px;	
}
#sponsorImages li.first {
	background-image: none;	
}

/* full width blue footer with bottom navigation */
#fullWidthFooter {
	background-image: url("../images/headerBg.gif");
	
		
	background-repeat: repeat-x;
	padding: 8px;
	
	
	text-align: center;
	color: #FFF;
	font-size: 10px;
}
#bottomNavLinks {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#bottomNavLinks li {
	display: inline;
}

#fullWidthFooter #bottomNavLinks li a {
	color: #FFF;
	text-decoration: underline;
}
#fullWidthFooter #bottomNavLinks li a:visited {
	color: #FFF;
	text-decoration: underline;
}
#fullWidthFooter #bottomNavLinks li a:hover {
	color: #f7a310;
}


/* SubPage Styles Start Here */

#outerWrapper #contentWrapper #subContent {
	margin: 0;
	padding: 10px;
	
}
#contain {
	margin: 0 85px;
	clear:both;
	width:790px;
	}
.contentLeft {
	float: left;
	width: 550px;
	padding: 5px 5px 5px 55px;
}
.contentRight {
	float:right;
	width:170px;
	padding: 5px;
}

ul.links{
	margin-top: 5px;
	
	list-style: none;
}

ul.links li{
	line-height: 19px;
}


table#contactForm {
	background-image: url(../images/mainContentBGLong.gif);/* Orange background for the form */
	background-repeat: no-repeat; 
	background-position: center top;
	margin: 5px auto; /* Centers the form on the within the div */
	padding: 5px 8px 5px 3px;
}

table#contactForm td.formText{
	font-weight: bold;
	text-align: right;
}
	
table#searchContainer  {
	background-image: url(../images/mainContentBG.gif);/* Orange background for the form */
	background-repeat: no-repeat; 
	background-position: center top;
	width: 441px;
	color: #fff;
	font-weight: bold;
	margin: 30px auto 100px auto; /* Centers the form on the within the div */
	text-align:left;
	
	
}

table#searchContainer.long  {
	background-image: url(../images/mainContentBGLong.gif);/* Orange background for the form */
	margin-bottom: 30px;
	color: #000;
}



table#searchContainer td {
	padding: 8px 5px;
}


table#searchContainer  a:link, table#searchContainer  a:visited{
	color: #fff;
	font-weight: bold;
	line-height: 17px;	
}


.search { 
font-size: 18px;
font-style:italic;
padding-right:5px;
}
.fontLarge {
	font-size: 16px;
}


/* Styles for Search Results Pages */

table#listResults {
	color: #000;
	
}

table#listSearchResults {
	width: 100%;
}

table#listSearchResults td#searchAgain{
	text-align: center;
}

table#listResults {
	width: 100%;
}


table#listResults td{
	padding: 2px;
	vertical-align: top;
}

tr#listHeader {
	background-color: #039;
	
	color: #fff;
	font-weight:bold;
	text-align: center;
	
}

p#noMatch {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

/* Styles for btDetail Page */

table#detail {
	
}

td.tourDetails {
	background-color: #039;
	color: #fff;
	font-weight: bold;
	width: 200px;
}


/* Styles for newsletter Page */

td#topCell{
	width: 150px;
}

td.newsletterFormText {
	color: #000;
	text-align: right;
}

/* Styles for home page form */

table#homeForm {
	font-weight: bold;
	
}

table#homeForm td {
	padding: 3px;
	
}

table#homeForm td.homeFormText {
	font-size: 12px;
	text-align:right;
}

/* Specific style for form heading */
td#searchHeading {
	color: #fff;
	font-size: 16px;
	font-weight:bold;
	padding-left: 15px;
}
/* Specific style for form footer */
td#homeFormFooter {
	color: #fff;
	font-size: 12px;
	font-weight:bold;
	text-align: left;
}

/* Specific style for logIn Form */


div#logInFormContainer {
	margin: 5px auto;
	width: 425px;
	padding: 8px;
	background-image: url(../images/mainContentBGLong.gif);/* Orange background for the form */
	background-repeat: no-repeat; 
	background-position: center top;
	
	
	
}

table#logInForm td {
	padding: 3px;
}

td.logInFormText {
	
	text-align: right;
	font-weight:bold;
	font-size: 14px;
}

p.logInForm {
	font-weight: bold;
	padding: 12px 0 0 0;
	margin-bottom: 0;
	
}

p#loginHeading {
	color:#fff;
	padding-top: 1px;
	
}
ul.topMargin {
	margin-top: 5px;
	}
a.directory:link {
	font-size: 10px;
	color:#0099FF;
	text-decoration: underline;
	padding: 0px 3px;
	}
a.normal:link {
	font-weight:normal;
	text-decoration:underline;
	}	
