@import url("layout.css");
/*The following two entries are taken from <http://csscreator.com/node/21223> and should preceed all stylesheets.  I've only
  made one change (removing the paragraph "p" tag from tge first entry's declaration.  Without these entries, I spent forever
  trying to get rid of unwanted extra spaces between divs.  -- Paul Hubbird*/
html,body,p,div,img,h1,h2,h3,h4,li,ul,ol,dl,dd,dt,form,table,td,tr {
	margin:0px;
	padding:0px;
	border:0px;
	border-collapse:separate;
	border-spacing:0px;
}
input,select {
	margin:0;
	padding:0;
}
/*The rest of the CSS in this stylesheet is my own.*/
p {
	padding:10px;
}
body {
	font-family: Garamond, sans-serif;
	word-spacing: normal;
	line-height: normal;
	font-size: x-large;
	color: #000;
	background-color: #ebc872;
}
#container {
	width: 740px;
	margin: auto;
}
#container hr {
	color: #80461b;
	background-color: #80461b;
	border: 0px;
	height: 2px;
}
#masthead {
	overflow: auto;
	padding-top: 20px;
	text-align: center;
}
#sidebar {
	float: left;
	width: 150px;
	position: relative;
	clear: both;
	display: inline;
}
#sidebar img {
	vertical-align: bottom;
}
#content {
	float: right;
	text-align: center;
	width: 550px;
	margin: none;
	padding: none;
	position: relative;
}
#content img {
	display: inline;
	width: 400px;
}
#content img.artist {
  margin: 3px;
  border: 0px;
  height: 100px;
  width: 100px;
  display: inline;
}
#content p {
	font-style: italic;
}
#footer {
	width: 550px;
	clear: both;
	float: right;
	padding: 0;
	overflow: auto;
	margin-top: 0px;
}
#masthead p {
	text-align: right;
	margin: 0;
	margin-top: 5px;
	margin-right: 10px;
	padding: 0;
}
/* Styles for Navigation */
#sidebar ul {
	list-style-type: none;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}
#sidebar li {
	display: block;
}
#sidebar a {
	font-weight: normal;
	text-decoration: none;
	color: #000;
	display: block;
	padding: 2px;
}
#sidebar a:hover {
	color: #69c;
	text-decoration: none;
}
#sidebar a.contact {
	color: #80461b;
}
#sidebar a.contact:hover {
	color: #69c;
}
#sidebar a.logo {
	display:inline;
}
/* Styles for Footer */
#footer p {
	display: block;
	font-size: smaller;
	text-align: center;
	margin: 0px;
	padding: 2px;
}
#footer a {
	color: #000;
	text-decoration: none;
}
#footer a:hover {
	color: #69c;
	text-decoration: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #69c;
	text-decoration: none;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}