/* John Wiegert */

/* reset css */
html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, pre, code, address, variable, form, fieldset, blockquote {
 padding: 0;
 margin: 0;
 font-size: 100%;
 font-weight: normal;
}
table { border-collapse: collapse; border-spacing: 0; }
td, th, caption { font-weight: normal; text-align: left; }
img, fieldset { border: 0; }
ol { padding-left: 1.4em; list-style: decimal; }
ul { padding-left: 2.5em; }
q:before, q:after { content:''; }
/* end reset */

/* Creating all default styles and backgrounds for everything in the whole hotel website */

body {
/* Creating the whole default body styling */
	margin:10px 5px 5px 10px;
	font-family:Verdana, Helvetica, Arial, sans-serif;
	background-image: url(images/background.jpg);
    background-position: top left;
    background-attachment: fixed;
	}
	
p {
/* default paragraph styling */
	text-indent: 30pt;
	font-size:1.0em;
	padding:10px;
	color: black;
	}
	
h1 {

	font-size: 1.8em;
	padding: 10px 10px 10px 10px;
	text-align: center;
	margin-top: -25px;
	color: #603311;
	text-decoration: none;
	font-style: italic
	}
	
h2 {
/* Changing the heading styling */
	font-size: 1.6em;
	padding: 10px 0 10px 10px;
	font-style:italic;
	color: red;
	text-align: center;
	}

/* Creating ids to be called to affect certain parts of the page */

#border {
/* Creating the box model css for all pages */
	padding:15px;
	border:5px solid white;
	background-color: #D19275;
	margin-left:155px;
	}
	

#wrap {
/* Wrapping all content in a div */
	width: 900px; 
	margin: 0 auto; 
	}

/* Creating the navigation menu */
#left #mainNav {
	margin-top:40px;
	position: fixed;
	padding: 5px 0 0 0;
	list-style: none;
	width: 152px;
	border-bottom: 1px solid #999;
}

#left #mainNav ul{
	list-style-type:none;
	padding:0;
	margin:0;
}

#left #mainNav a {
	color: black;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #999;
	border-bottom: none; 
	padding: 10px 5px 7px 30px;
	display: block;
	background-color: #733D1A; 
	background-image: url(images/fish.gif); 
    background-repeat: no-repeat; 
	background-position: 3px 50%;
}

#left #mainNav a:hover {
  font-weight: bold;
  background-color: #A65402;
  background-position: 3px 50%;
}

#left #current a {
/* These are to make the current link we are on stand out and pic change */
	background-color: yellow; 
	background-image: url(images/fishhook.gif); 
    background-repeat: no-repeat; 
    background-position: 3px 50%;
	}
	
#left #current a:hover {
	background-color: #CDAD00; 
	}
	
/* End navigation menu css */

#left {
/* making my left div fixed and float left */
	float: left;
	position: fixed;
	}

#left img{
	position:relative;
	z-index:2;
}

#left #clock{
/* Formatting for the clock itself */
	margin-top:-60px;
	padding-left:5px;
	position: relative;
	font-size:20px;
	font-family:"Comic Sans", "Comic Sans MS", cursive;
	z-index:2;
	color: #FBEC5D;
	margin-left:15px;
}

#right {
/* In case I need anything floating right */
	float:right;
	}

#behind {
/* To make sure the clock picture goes behind the actual clock */
	z-index:0;
	border:1px solid white;
	}

#banner {
/* Formatting for the banner at the top of every page */
	border: 1px solid black;
	margin-left:155px;
	display: block;
	}


#copyright {
/* Formatting for the copyright at the bottom of each page */
	margin-top: 10px;
	margin-left: 250px;
	font-size: 10px;
	padding-left: 6px;
	}
	
#center {
/* id to center things automatically */
	width:500px;
	margin: 0 auto; 
	}
	
#phone {
/* To make the phone styling different in the contact pagee */
	color:#6B4226;
	font-weight:bold;
	}
	
#bear, #deer, #squir {
/* Just doing a quick separation line between content on the rooms page */
	border-bottom:1px solid #855E42;
	}
	
/* Creating classes to be called multiple times to affect parts of the document */

.indent {
/* For indenting paragraphs that need it */
	text-indent:1.5em;
	}
#form p.room{
/* Some form styling */
	padding-top: 20px;
}

.lessLeft {
/* Take away part of the margin on one spot */
	margin-left: -30px;
	}
	
.note{
/* Make the note at the bottom smaller on the rooms page */
	font-size:10pt;
	}
	
.pullquote {
/* Styling for the pullquote to make it stand out */
	float: right;
	clear: right;
	display: block;
	width: 200px;
	border: 1px solid #000;
	padding: 10px;
	font-size: 20px;
	background-color:#603311;
	margin: 10px 0 10px 10px;
	font-style: italic;
	color: #F8F8FF;
	}

#border .mainimg{
/* image on the front page */
	border:1px solid #000;
	width:500px;
	margin: 0 auto; 
	}
	