
/*reset code -- clears all browser assumed variables*/
/*@import url("http://yui.yahooapis.com/2.6.0/build/reset-fonts-grids/reset-fonts-grids.css");*/
/*specific clearing code to validate css*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, img{
margin : 0;
padding : 0;
}

li {
	list-style : none;
}

/*end css clearing*/

/*link information and decorations */
a:link, a:visited, a:active {text-decoration: none; color: #fff;}
a:hover {text-decoration: underline;}

/*information about subdued links*/
a.subduedlink:link, a.subduedlink:visited, a.subduedlink:active{text-decoration: none; color: #ddd;}
a.subduedlink:hover {text-decoration: underline; color: #fff;}

body {
	margin:0 auto;
	background: #569b2c; /*000 instead of 'black' b/c rounded corners has troubles with black*/
	font-size: 1em;
	color: #ddd; /*not quite white*/
	text-align: center; /*center page in IE -- use text-align: left; in divs to put back to normal*/
	line-height: 1.3em;
	font-family: "lucida sans", arial, sans-serif;
}

/*
*headers
*
*h1 will be used for the main page header only
*h2 will be for paragraph headers, should they exist
*/
h1 { 
	font-size: 1.2em;
	letter-spacing: +0.1em;
	font-weight: bold;
	font-family: "lucida sans", arial, sans-serif;
	margin-top: .8em;
	margin-bottom: 1em;
}
h2{
	font-size: .9em;
	letter-spacing: +0.1em;
	/*font-weight: bold;*/
	font-family: "lucida sans", arial, sans-serif;
	margin-top: 1em;
	margin-bottom: .3em;
}

/*
* Div IDs -- used once per page
*/
#container {
	background-color: #017211;
	/*position:relative;
	clear:both;*/
	margin:0 auto;
	/*width:727px;*/
	width: 850px;
	/*width: 1000px;*/
	margin-top: 10px;
	/*text-align:left;*/
}

/*
* Div Classes
*/

.header{
	position: relative;
	border: 5px solid #ddd;
	padding: 0px;
	margin: 0px;
}

.audioplayer{
	position: absolute;
	right: 2px;
	bottom: 2px;
	
}

.navbar{
	position: relative;
	height: 35px;
	border-left: 5px solid #ddd;
	border-right: 5px solid #ddd;
}
.content{
	position: relative;
	border: 5px solid #ddd;
	padding: 7px 10px;
	text-align: left;
	background-image: url(graphics/clover_bg_green.png);
	background-repeat: no-repeat;
	background-position: top right;
}
.news{
	float:left;
	/*width: 600px;*/
}
.news img{
	border: 3px solid #ddd;
	margin: 5px 0px 5px 10px; /*top, right, bottom, left*/
}
.pictures{
	float: right;
	text-align: center;
}
.picture{
	margin-top: 15px;
	text-align: center;
}
.footer{
	background-color: #569b2c;
	padding-top: 5px;
	padding-right: 5px;
	text-align: right;
}

/*
*
* Formatting Classes
*
*/

.subdued{
	font-size: .8em;
	color: #ddd;
}

/* text align */
.left {
	text-align: left;
	}
.right {
	text-align: right;
	}
.center {
	text-align: center;
	}
.justify{
	text-align: justify;
	}
	
/* text decoration/font style/font weight */
.underline{
	text-decoration: underline;
	}
.italics{
	font-style: italic;
	}
.italic{
	font-style: italic;
	}
.bold{
	font-weight: bold;
}


/* font family classes*/

.tt{
	font: 1.1em/1em consolas, "lucida console", monospace;
	}

/*
* End Formatting Classes
*/