@charset "UTF-8";
* {
	margin: 0px;
	padding: 0px;
}
body  {
	font: 80% Arial, Helvetica, Geneva, sans-serif;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
}
#container  {
	width: 976px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(wWTImages/background.gif) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#leftNavBar {
	float: left; /* since this element is floated, a width must be given */
	width: 172px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px 0px;
	text-align: center;
}
#featureCentered {
	float: right; /* since this element is floated, a width must be given */
	width: 193px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 25px 15px 15px 20px; /* padding keeps the content of the div away from the edges */
	text-align: center;
}
#featureLeft {
	float: right; /* since this element is floated, a width must be given */
	width: 193px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 15px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#featureLeft h1 .headingImage {
	font: normal 8%/8% Arial, Helvetica, Georgia, sans-serif;
	color: #ececec;
	margin-bottom:0;
	margin-top:0}

#mainContent {
	margin: 0 255px 0 206px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top: 0px;
	padding-bottom: 10px;
}

#mainContent h1 .headingImage {
	font: normal 8%/8% Arial, Helvetica, Georgia, sans-serif;
	color: #ececec;
	margin-bottom:0;
	margin-top:0}
	
#mainContentInsert {
	float:right;
	margin-left:20px;
	margin-top:0;
	width:200px;
	text-align:center;
}

#bottomNavBar {
	font: bold 11px/24px Arial, Helvetica, Georgia, sans-serif;
	color: #34620F;
	margin-top: 30px;
	margin-bottom: 20px;
	text-decoration: none;
	background: url(wWTImages/tanLine.jpg) no-repeat left top;
	list-style: url(wwt2.css) none;
	padding-top: 10px;
	text-align:center
}


h1 {
	font: bold 140%/20px Arial, Helvetica, Georgia, sans-serif;
	color: #34620F;
	margin-top: 20px;
	margin-bottom: 5px;
}
h2 {
	color: #34620F;
	font: bold 100% Arial, Helvetica, Georgia, sans-serif;
	margin-top: 0px;
	margin-bottom: 20px;
}
h3 {
	color: #34620F;
	font: bold 110% Arial, Helvetica, Georgia, sans-serif;
	margin-bottom: 5px;
	margin-top: 20px;
}
h4 {
	margin-top: 0px;
	margin-bottom: 10px;
	font: bold 110%/130% Arial, Helvetica, Georgia, sans-serif;
	color: #000000;
}
h5 {
	color: #810007;
	font: bold 110%/120% Arial, Helvetica, Georgia, sans-serif;
	height: 20px;
	margin-top: 0px;
	margin-bottom: 10px;
}


p {
	margin-top: 0px;
	margin-bottom: 10px;
	line-height: 16px;
}
.tableHeadings {
	font: bold 110%/170% Arial, Helvetica, Georgia, sans-serif;
	background: #D4CFBF;
	height: 10px;
	padding-left: 7px;
	padding-bottom: 15px;
	margin-bottom: 0px;
	margin-top: 10px;
}
.tableHeadingsGradation {
	background: url(wWTImages/tanGradient.jpg) repeat-y;
	height: 10px;
	padding-left: 7px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	margin-top: 20px;
	font-weight: bold;
	padding-top: 4px;
}
.thrColFix #mainContent td {
	height: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.quotes {
	margin-top: 0px;
	margin-bottom: 10px;
	font: bold 110%/130% Arial, Helvetica, Georgia, sans-serif;
	color: #000000;
}

.caption {
	font-size: 80%;
	font-style: italic;
	color: #000000;
	margin-bottom: 20px;
	font-weight: normal;
}
.boldText {
	font-weight: bold;
}



a:link {
	color: #34620F;
	text-decoration: underline;
}
a:visited {
	color: #34620F;
}
a:hover {
	color: #810007;
}

ul {
	list-style: disc url(wwt2.css) outside;
	display: inline;
	margin-top: 0px;
}
li {
	margin-left: 15px;
}



.marginLeft8 { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.marginLeft25 { /* this class can be used to float an element left in your page */
	margin-left: 25px;
}
.marginRight8 { /* 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;
	margin-left: 8px;
}
.marginTop10 {
	margin-top: 10px;
}

.marginBottom0 {
	margin-bottom: 0px;
}
.marginBottom10 {
	margin-bottom: 10px;
}

.marginBottom15 { /*this class can be used to add space under an element*/
	margin-bottom: 15px;
}

.marginLeft8Bottom10 {
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}
.marginTop25Bottom15 {
	margin-bottom: 15px;
	margin-top: 25px;
}
.marginTop20Bottom0 {
	margin-top: 20px;
}
.marginTop25 {
	margin-top: 25px;
}
.marginTop0 {
	margin-top: 0px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#containerSmoothBkgd {
	width: 976px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(wWTImages/backgroundGradient.gif) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#mainContentLarge {
	margin: 0 20px 0 206px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top: 0px;
	padding-bottom: 10px;
}

#mainContentLarge h1 .headingImage {
	font: normal 8%/8% Arial, Helvetica, Georgia, sans-serif;
	color: #FFFFFF;
	margin-bottom:0;
	margin-top:0}
	
#bottomNavBarWide {
	font: bold 11px/24px Arial, Helvetica, Georgia, sans-serif;
	color: #34620F;
	margin-top: 30px;
	margin-bottom: 20px;
	text-decoration: none;
	background: url(wWTImages/tanLineOnly.jpg) repeat-x left top;
	list-style: url(wwt2.css) none;
	padding-top: 10px;
	width: 749px;
}
.destinationRightMargin {
	margin-right: 40px;
}
