/*this is the main stylesheet for the site.  it is a duplicate of one of the numbered styles.
if want to make changes or experiments then follow naming form of style1.css, style2.css, etc and copy
to thestyle.css */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #666666;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	text-align: center;
	line-height: 1.5em;
	list-style-type: none;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

#container {
	background-color: #777799;
	/*border: 1px solid #000000;*/
	margin: 0 auto;
	height: auto;
	margin-top: 0px;
	padding: 0px;
	min-width: 600px;
	width: 75%;
	text-align: left;
}

#mainheader {
	height: 80px;
	background-image:  url(images/almike_widecrop.jpg);
	margin: 0px;
	padding: 0em;
	color: #FFFFFF;
	/*border-bottom: 1px solid #000000;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;*/
}

#mainheader h1 {
	font-size: 16pt;
	margin: 0px;
	padding-top: 50px;
	text-align: center;
}

#nav {
	padding: 0px;
	/*border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #999999;*/
	background-color: #CCCCCC;
}

#nav ul {
	list-style-type: none;
	margin: 0px;
	padding: 3px;
	line-height: 2em;
	text-align: center;
}

/* to change color set for links, must change nav li a background, 
and hover background, and #home .home background as well */

#nav li {
	display: inline;
}

#nav li a {
	margin: 0px;
	padding: .5em 2.5em;
	color: #FFFFFF;
	background-color: #330000;
	text-decoration: none;
	border-bottom-width: 0px; /* this border is just to add subtle receding depth to buttons - a thin white bar */
	border-bottom-style: solid;
}

#nav li a:hover, #nav li a:focus {
	background-color: #660000;
}

/* add to this as pages are added.  must give each body an id, and any new links a class. */
#home .home, #sounds .sounds, #bio .bio, #contact .contact, #other .other {
	background-color: #663300;
}

#content {
	/*border: 1px solid #CCCCCC;*/
	padding: 2em 4em 1em 4em;
	margin: 1px;
	height: 350px;
	text-decoration: none;

}

/*this next is supposed to be ignored by ie6 and read by firefox et al thus allowing
the window to have a min height -- 
from http://www.webcredible.co.uk/user-friendly-resources/css/more-css-tricks.shtml */
html>body #content{
	min-height: 350px;
	height: auto;
}

h1 {
	font-size: 18px;
	font-weight: bold;
}

h2 {
	font-size: 16px;
	font-weight: bold;
}

h3 {
	font-size: 14px;
	font-weight: bold;
}

.imageright {
	float: right;
	margin: 1em;
}

.imagerighttight {
	float: right;
	margin: 0em 1em;
}

.imageleft {
	float: left;
	margin: 0em 1em;
	clear: right;
}

#footer {
	background-image:  url(images/almike_widecrop.jpg);
	color: #999999;
	/*
	border-bottom: 1px solid #FFFFFF;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;*/
}

