/* CSS Document */
/*	cruisin.css

	Notes:
	All positioning is done using floats (no absolute positioning).

	We encounter the IE div spacing bug frequently, and use the "* html" hack to
	get around it. Layout is nearly identical in IE & FF.
	
	Anytime you make positioning changes, look for a corresponding "* html" rule for WinIE specific layout.
*/
/* debugging:
div { border: solid 1px red; }
*/


/*Zero the defaults
*/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, a { 
	margin: 0; 
	padding: 0; 
	border: 0; 
}


/* global stuff */
.image { border: 0px; }
.clear { clear: both; }

a { text-decoration: underline; }
a:link { color: #022e69; }
a:visited { color: #022e69; }
a:hover { color: #66098d; }
h1 { font-weight: normal; color: #022e69; margin: 10px 0 5px 0; font-size:16px; text-decoration:underline; }
h2 {  color: #022e69; font-weight: bold; font-size:12px; }
h3 { font-weight: bold; color: #022e69; margin: 10px 0 5px 0; font-size:110%; text-align: center; }
h4 { font-weight: bold; color: #022e69; margin: 10px 0 5px 0;  text-align: center; }
.bold {font-weight: bold; }
.firstletter { font-size: 150%; color:#022e69; }
.italic { font-style:italic; }
div.pictureleft {float: left; margin: 0px 10px 0px 0px; }
div.pictureright {float: right; margin: 0px 0px 0px 10px; }
.imagecenter { text-align: center;  border: 0;}
.center { text-align: center; }
.smallfont { font-size: 10px; line-height: 10px; }
div.spacer { height: 20px; }
div.alignright { text-align: right; }
li { margin-left: 50px; }
.fontlarge { font-size: 28px; }
.headline { font-weight: bold; color: #022e69; margin: 10px 0 5px 0; font-size:24px; text-align: center; }
.headlineleft { font-weight: bold; color: #022e69; margin: 10px 0 5px 0; font-size:24px; text-align: left; }
.headline_smaller { font-weight: bold; color: #022e69; margin: 10px 0 5px 0; font-size:24px; text-align: center; }


div#nav {  width: 750px; margin-right: auto; margin-left: auto; text-align: center; border:0px; }
div#nav a { margin-left: 20px; margin-right: 20px;  border:0px; }

html { font-size: 100.01%; }

body { background-color:#4f7fbf;  color: #000; font-family: Arial, Sans-Serif; font-size:16px; }
/* the fullpage div has a specified width to keep the main information from collapsing when a window is shrunk
*/
div#fullpage { background-color:#aac7ef; margin-top: 75px; margin-bottom: 75px; width: 800px; margin-left: auto; margin-right: auto; padding: 20px; }

/*header is where the logo (Kristi's name) and all the twinkling stars live*/

div#logo { height: 300px; width: 533px; background-image:url(images/logo.jpg);  margin-left: auto; margin-right: auto; }


/* section and subsection info*/


div#main { width: 750px; line-height: 24px; text-align: left; float:left; margin-top: 30px; margin-left: 20px;   }


div#centeredtitle { text-align: center; margin-bottom: 15px; font-weight: bold; color: #022e69; font-size: 140%; font-family: Verdana, Arial, Helvetica, sans-serif; }
div#title { text-align: left; margin-bottom: 5px;  color: #022e69; font-size: 120%; font-style: italic; font-weight: bold; }

div#contact { font-size: 18px; font-weight:bold; text-align: center; }

div#copyright { font-size: 80%; text-align: center; clear: both; padding-top: 20px; margin-bottom: 10px;  }
div#trina { font-size: 80%; text-align: center; }

.tripadvisor { text-align: center; width: 180px; border: 0; margin-left: 290px; }

/* this CSS comes from tripflavor.com, from this file: https://www.tripflavor.com/assets/bookit.css
   which is normally injected into the page via JavaScript (see comments in HTML.
   We wanted different styling, so we copied the CSS here, and modified it.
 */

.tripflavor-bookit {cursor:pointer;
/* float: left; /* took this out */
display:block;width:156px;height:25px;
margin-left: auto; margin-right: auto; /* added this */
background:url(https://s3.amazonaws.com/tripflavor-widgets/images/bookit-small.png) no-repeat 0 -25px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px}

.tripflavor-bookit:hover {background-position:0 0}

.tripflavor-bookit span {display:none}

