@charset "utf-8";

body {
background: #E7CB8A;
margin: 0;
text-align: center;
font-family: Calibri, Arial, sans-serif;
font-size: 100%;
color: #554B29;
}

a {
color: #554B29;
}

h1, h2, h3, h4, h5, h6 {
font-weight: normal;

}

#container {
width: 960px;
margin: 0 auto;
text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
padding: 0;  /* 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: url(images/room.jpg) no-repeat 0px 174px;
height: 505px;
}

#sidebar1 {
color: #24400e;
float: left; /* since this element is floated, a width must be given */
width: 180px;
padding: 5px 10px 15px;
}

#sidebar2 {
float: right; /* since this element is floated, a width must be given */
width: 200px;
padding: 5px 10px 15px;
}

#mainContent {
margin: 0 240px 0 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#footer {
border-top: 1px solid #554B29;
color: #24400E;
}

#book {
background: url(images/bamboo2.gif) no-repeat;
height: 150px;
width: 400px;
padding-left: 125px;
float: right;
margin-top: 20px;
margin-bottom: 20px;
color: #000;
}
#book h1 {
margin: 10px 0px 0px;
padding: 0px;
}


#book a {
color: #24400E;
}

#book p {
font-size: 1.2em;
}

#location {
background: url(images/bamboo.gif) no-repeat left bottom;
height: 200px;
width: 260px;
padding-left: 135px;
float: left;
margin-top: 20px;
color: #315C01;
font-size: 1.2em;
}

.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;
}
