@charset "UTF-8";
body  {
	background: #002144;
	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: #FFFFFF;
	background-image: url(../images/bg_fade.jpg);
	background-repeat: repeat-x;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}


h1 {
	font-size: 24px;
	font-family: "Times New Roman", Times, serif;
	color: #1c3f95;
}

h2 {
	font-size: 14px;
	font-weight: bold;
	color: #d5f050;
	text-transform: uppercase;
}

h3 {
	font-size: 13px;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	font-style: italic;
}

h4 {
	font-size: 12px;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	color: #000000;
}

/********************* Link Styles *********************/

a {
	text-decoration: none;
	color: #FFFFFF;
}

a:link {
	text-decoration: none;
	color: #FFFFFF;
}

a:visited {
	text-decoration: none;
	color: #FFFFFF;
}

a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}


/********************* List Styles *********************/

ul {
	
	/*list-style: disc url(../images/bullet.gif) inside;*/
	
	/*text-indent: -1em;*/
}
	
ul li {
	
    background-position:0 5px;
}
	
ul ul{
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
	}
	
ul ul li{
	padding: 5px 2px 5px 12px;
	background:none;
}


/********************* Styles *********************/
.twoColFixLtHdr #container {
	width: 822px;
	/*width: 780px;   using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #1f4876;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-right: 1px solid #4ba4fb;
	border-left: 1px solid #4ba4fb;
	border-bottom: 1px solid #4ba4fb;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/content_bg.jpg);
	background-repeat: repeat-x;
} 
.twoColFixLtHdr #header {
	padding: 0px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background: #003665;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/************************** Navigation ******************************************/
.twoColFixLtHdr #mainNav {
	margin: 0px 0px 0px 0px;
	padding: 4px 10px 4px 10px;
	text-align: center;
}

.twoColFixLtHdr #mainNav a {
	text-decoration: none;
	color: #FFFFFF;
	padding: 0px 4px 0px 4px;
}

.twoColFixLtHdr #mainNav a:link {
	text-decoration: none;
	color: #FFFFFF;
	padding: 0px 4px 0px 4px;
}

.twoColFixLtHdr #mainNav a:visited {
	text-decoration: none;
	color: #FFFFFF;
	padding: 0px 4px 0px 4px;
}

.twoColFixLtHdr #mainNav a:hover {
	text-decoration: underline;
	color: #FFFFFF;
	padding: 0px 4px 0px 4px;
}


/********************* Sidebar Styles *********************/
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 185px; /* 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 */
	background: transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 5px;
}

.twoColFixLtHdr #sidebar1 a {
	text-decoration: none;
	color: #003665;
}

.twoColFixLtHdr #sidebar1 a:link {
	text-decoration: none;
	color: #003665;
}

.twoColFixLtHdr #sidebar1 a:visited {
	text-decoration: none;
	color: #003665;
}

.twoColFixLtHdr #sidebar1 a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

.twoColFixLtHdr #sidebar1 ul {
	margin: 10px 0px 10px 0px;
	/*list-style: disc url(../images/bullet.gif) inside;*/
	padding: 0px 0px 0px 10px;
	/*text-indent: -1em;*/
	list-style-type:none;
	}
	
.twoColFixLtHdr #sidebar1 ul li {
	padding: 5px 0px 5px 10px;
    background:transparent url(../images/arrow.gif) no-repeat;
    background-position:0 5px;
	border-bottom: 1px solid #4ba4fb;
	border-top: 1px solid #003665;
}
	
.twoColFixLtHdr #sidebar1 ul ul{
	list-style: none;
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
	}
	
.twoColFixLtHdr #sidebar1 ul ul li{
	padding: 5px 2px 5px 12px;
	background:none;
}

/************************** Flash ******************************************/
.twoColFixLtHdr #flashHolder {
	margin: 0px 12px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.twoColFixLtHdr #flash {
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 10px 10px;
	float: right;
}

/************************** Content ******************************************/
.twoColFixLtHdr #mainContent { 
	margin: 0px 0px 0px 235px; /* 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: 10px 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: 1px dotted #FFFFFF;
}

.twoColFixLtHdr #mainContentHome {
	margin: 0px 0px 0px 0px; /* 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: 10px 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	clear: both;
}

/************************** Boat Specs ******************************************/

.twoColFixLtHdr #boatSpec {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	
}


table.boats {
	width: 540px;
	/*background-color: #fafafa;*/
	border: 1px #032145 solid;
	border-collapse: collapse;
	border-spacing: 0px;
	padding-right: 1px;
	}
	
td.contact {
	width: 250px;
}


td.boatName {
	background-color: #032145;
	border-bottom: 1px #FFFFFF solid;
	font-family: Verdana;
	font-weight: bold;
	font-size: 12px;
	color: #03bcbc;
	padding-left: 2px;
	}
	
td.specs {
	color: #d5f050;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 2px;
	padding-right: 0px;
	border-bottom: 1px #FFFFFF solid;
}


td.item {
	border-bottom: 1px #03bcbc dotted;
	text-align: left;
	font-family: Verdana, sans-serif, Arial;
	font-weight: bold;
	font-size: 11px;
	color: #ffffff;
	/*	background-color: #fafafa;*/
	padding: 4px 2px 4px 8px;
	width: 110px;
	}
	
td.description {
	border-bottom: 1px #03bcbc dotted;
	text-align: left;
	font-family: Verdana, sans-serif, Arial;
	font-weight: normal;
	font-size: 11px;
	color: #ffffff;
/*	background-color: #fafafa;*/
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 1px;
	}


/************************** Footer ******************************************/
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#003665;
	background-image: url(../images/footer_rope.jpg);
	color: #8fcef8;
	font-size: 10px;
	text-align: center;
	background-repeat: no-repeat;
} 
.twoColFixLtHdr #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 */
}


/************************** Floats ******************************************/

.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: 15px 0px 5px 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 22px 4px 4px 4px;
}
.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;
}