@charset "utf-8";

#header  {
	width: 800px;
	height: 212px;
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	background-color: #2E5E62;
} 

#leftColumnTop {
	float: left; /* since this element is floated, a width must be given */
	width: 400px;
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 10px;
}
.leftColumnTopPortraitText  {
	display: block;
	font-size: 13px;
	padding-bottom: 0px;
	padding-left: 150px;
	margin: 0px;
	padding-top: 130px;
}
.leftColumnBottomPortraitText {
	display: block;
	color: #FFFF99;
	font-style: italic;
	padding-top: 0px;
	padding-left: 150px;
	font-size: 12px;
	margin: 0;
}

#leftColumnTop  img {
	float: left;

}
#leftColumnBottom {
	float: left; /* since this element is floated, a width must be given */
	width: 380px;
	display: block;
	padding-bottom: 10px;
	margin: auto;
}
#leftColumnBottom  ul {
	margin: 0;

}
#leftColumnBottom ul li {
	padding-top: 15px;
	list-style-type: disc;
	padding-left: 20px;
}


#rightColumnTop {
	width: 380px;
	float: right;
	margin-top: 0px;
	padding-bottom: 10px;
	padding-top: 10px;
} 

#rightColumnTop p {
	display: block;
	font-size: 14px;
	text-align: right;
	padding-right: 20px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#rightColumnTop a {
	color: #FFFF99;
}
#musicLink {
	font-size: 12px;
}


#rightColumnBottom {
	width: 360px;
	float: right;
	display: block;
	padding-right: 20px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.rightColumnTextBottom {
	display: block;
	font-size: 16px;
	color: #FFFF99;
	font-weight: bold;
	padding-top: 10px;
	padding-left: 25px;
	padding-right: 30px;
	font-family: "Comic Sans MS", Arial, sans-serif;
}

hr {
	text-align: center;
	width: 95%;
}

#image {
	display: block;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 0px;
	float: right;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#bottom {
	display: block;
}
#bottom p {
	display: block;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	font-style: italic;
	padding-left: 20px;
	text-align: center;
}
#bottom a {
	font-size: 10px;
	color: #FFFF99;
	font-weight: bold;
	text-align: right;
	padding-right: 20px;
}


#footer {
	background-color: #2E5E62;
} 
#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 */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */

}
.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;
}
