@charset "utf-8";

/* Body and page wide styles*/

body  {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background:#ff9;
	margin: 0; /*zero margin and padding 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:#333333;
}

/* The Container holds the page content */

.skyetours #container { 
	width: 850px;  
	background:#ff9;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
} 

/* The header is set to hold the image but with top and bottom padding for layout */

.skyetours #header { 
	background:#FFFF99;
	height: 250px;
	padding-top: 20px;
} 

/* Sidebar holds the navigation menu */

.skyetours #sidebar1 {
	background: url(images/tournavbg.jpg) no-repeat;
	margin-top: 20px;
	float: left; /* since this element is floated, a width must be given */
	width: 160px;  /*the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 350px;
	padding: 20px;
	text-align: center;	
}

/* The main page content uses 3 images to produce the rounded box allowing it to expand/collapse dependant upon main content */

.skyetours #mainContent h1 {
	background: url(images/maintop.jpg) no-repeat left top;
	padding-top: 20px;
	margin-top: 0px;
}

.skyetours #mainContent { 
	margin: 20px 0 0 220px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	/*padding: 0 20px;  remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 630px;
	background: url(images/mainbgd.jpg) repeat-y;
	text-indent: 10px;
}

.skyetours #mainContent .last {
	background: url(images/mainbtm.jpg) no-repeat left bottom;
	padding-bottom: 20px;
	margin-bottom: 0px;
}

.skyetours #mainContent h1, .skyetours #mainContent p {
	padding-left: 20px;
	padding-right: 20px;
}

.skyetours #mainContent a:link, .skyetours #mainContent a:visited {
	color: #990000;
}

.skyetours #mainContent a:hover {
	color:#666666;
}

.skyetours #mainContent img {
	float: left;
	margin: 10px;
	padding: 1px;
}

.skyetours #mainContent table {
	text-align: center;
	margin: 0 auto;
}

#tour {
	font-size: 12px;
}

.skyetours #footer { 
	/*padding: 0 10px 0 20px;  this padding matches the left alignment of the elements in the divs that appear above it. */
	margin-top: 10px;

} 

.skyetours #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

.navtext {font-size: 16px;}