@charset "UTF-8";
body  {
	background: #996633;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11pt;
	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: #330000;
}

.poet {
	font-size: 24pt;
	font-style: italic;
	color: #FF9933;
}

.place {
	font-size: 18pt;
	color: #FF9933;
}

.section {
	font-size: 12pt;
	font-weight: bold;
	font-style: italic;
	color: #CC6600;
}

.booking {
	font-size: 12pt;
	font-weight: bold;
	font-style: italic;
	color: #FF9933;
}


.heading {
	font-size: 12pt;
	color: #663300;
}

.poem {
	border: 1px solid #993300;
	background-color: #FFCC99;
	padding: 15px 15px 7px 20px;
	margin-top: 10px;
}

.small {
	font-size: 9pt;
}

a {
	color: #993300;
	text-decoration: none;
}
a:visited  {
	color: #CC6600
}
a:hover {
	color: #FF6600
}
a:active {
	color: #FFCC00
}

#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFCC99;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #996633; /* the background color will be displayed for the length of the content in the column, but no further */
	text-align: left;
}
#photo {
	float: left;
	width: 200px; /* since this element is floated, a width must be given */
	text-align: center;
}
#contact {
	background: #FFCC99;
	float: left;
	width: 190px; /* since this element is floated, a width must be given */
	font-size: 14px;
	border-top: 5px solid #996633;
	margin-bottom: 15px;
	padding: 10px 0 0 10px;
}
#bookings {
	background: #FFCC99;
	float: left;
	width: 185px; /* since this element is floated, a width must be given */
	border-right: 5px solid #996633;
	padding: 10px 5px 0 10px;
}
#main { 
	margin: 0 0 0 200px;
	border-left: 5px solid #996633;
}
#header { 
	background: #996633;
	text-align: center;
	padding-bottom: 10px;
}
#info {
	background: #FFCC99;
	width: 555px;
	padding: 10px 5px 15px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#poetry {
	background: #FFCC99;
	width: 555px;
	padding: 10px;
	border-top: 5px solid #996633;
}
#footer { 
	padding: 3px 0 3px 0;
	background: #CC9966;
	border-top: 5px solid #996633;
} 
#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 */
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}