@charset "UTF-8";
/* CSS Document */
/*Re-set browser styles*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	
}

body {
	line-height: 1;
	color: black;
	background: white;
	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 */
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	
}
caption, th, td {
	text-align: left;
	
}

/*Page layout*/
.twoColFixLtHdr #container {
	width: 770px;  /* using 30px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(/images/sidebar_backer.gif) repeat-y left top;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #1B8BDF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 165px; /* 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: #1B8BDF; /* the background color will be displayed for the length of the content in the column, but no further */
	
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 166px; /* 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 */
} 

#icpsignup {
width:158px;
padding-left:3px;
}

#form {
color:#FFFFFF;
font-size:11px;
font-family:Arial, Helvetica, sans-serif;
font-weight:bold;
}

#footer ul{
margin: 5px auto;
}

#footer li { 
	list-style:none;
	display:inline;
	padding: 5px;		
}

/*Typography*/ 
h1,h2  {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:"Trebuchet MS", Arial;
	font-size:16px;
	color:#000000;
}

h3  {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:"Trebuchet MS", Arial;
	font-size:14px;
	color:#000000;
}

p {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:1.3;
color:#333333;
margin-bottom:7px;
}

#pricechart {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333333;
}

#pricechart td {
padding: 4px 2px 4px 2px;
}

.headrow {
background-color: #E568A8;
}

.tableback {
background-color:#DADADA;
}

#ratelist {
list-style-type:square;
padding-left:10px;
}

#ratelist li {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333333;
line-height:1.4;

}

#sitemap {
list-style-type:square;
}

#sitemap li {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333333;
line-height:1.4;
}

#bookingrequest {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333333;
}

#sidebar1 h2{
	font-family:"Trebuchet MS", Arial;
	font-size:12px;
	color:#FFFFFF;
	font-weight:#FFFFFF;
	margin-top:25px;
	border-top:1px solid #FFFFFF;
	line-height:1.4;
	padding: 4px;
}

.comments {
font-style:italic;
}

hr {
color:#1B8BDF;
}

#credit {
width:770px;
margin: 5px auto;
text-align:right;
}

/*Links*/

a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #1B8BDF;
	text-decoration: none;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #1B8BDF;
	text-decoration: none;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #E468A7;
	text-decoration: underline;
}
a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FCEA25;
	text-decoration: underline;
}
a.sidelink:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: underline;	
}
a.sidelink:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000000;
	text-decoration: underline;	
}

/*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-left: 8px;
	margin-top:8px;
	margin-bottom:8px;
	border: 1px solid #000000;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-top:8px;
	margin-bottom:8px;
	border: 1px solid #000000;
}
.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;
}


