/* Color scheme from http://colorblender.com: variation from #336600)
	dark green	light green	dark brown	light brown	dark gray	light gray	pale gray
	#336600		#59B300		#52370A		#9E6B13		#666666		#999999		#CCCCCC			<-- colors used
	#3D520A		#749E13		#665500		#B39500		#525252		#ADADAD						<-- some altenatives
*/

html {
	margin: 0px;
	padding: 0px;
}
body {
	background: #334422 url(../images/layout/bamboogrove.jpg) repeat-x fixed top center;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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: #52370A; /* dark brown */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	min-width: 720px;
}

a {
	color: #336600;
} /* dark green */
a:hover {
	color: #59B300;
} /* light green */

a:link img, a:visited img, a:hover img, a:active img { 
	border: thin solid #336600;
}
a:hover img { 
	border: thin solid #59B300;
}

em {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
}

/* Outer Container */

#wrapper {
	width: 75%;
	margin: 0px auto 60px auto;
	padding: 0px;
	text-align: left;
}

/* Header  Layout & Styles */

#header {
	padding: 0px;
	margin: 0px;
	height: 155px;
	width: 100%;
	text-align: left;
	background: url(../images/layout/headergrad.jpg) repeat-x center top;
	border: 0px;
}
#header h1 {
	background: transparent url(../images/layout/header.png) no-repeat top left;
	height: 95px;
	width: 520px;
	padding: 0px;
	margin: 50px 0px 5px -45px;
	border: 0px;
	display: block;
	float: left;
}
#header h1 span {
	display:none
}

/* Navigation Layout & Styles */

#nav {
	text-align: left;
	padding: 0px 5px 0px 5px;
	margin: 0px;
	/* background: #52370A; or #454545*/
	background-image: url(../images/layout/gravel.png);
	border-top: 3px solid #33240D; /* darkest brown */
	border-right: 0px;
	border-bottom: 3px solid #33240D; /* darkest brown */
	border-left: 0px;
	
}
#navtable {
	text-align: left;
	border-collapse: collapse;
	margin: 0px auto 0px auto;
}
#navtable td {
	text-align:left;
	padding: 2px 8px 2px 8px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .78em;
}
#navtable a {
	/* color: #CCCCCC; */	/* pale gray */
	color: #9E6B13;
	text-decoration: none;
	font-style: normal;
}
#navtable a:hover {
	color: #59B300;	/* light green */
}

/* Main Content Layout & Styles */

#main {
	margin: 0px;
	padding: 15px;
	background-image: url(../images/layout/gravel.png);
	font-size: 0.82em;
	line-height: 1.3;
}
#main h1 {
	color: #52370A; /* dark brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 2.0em;
	line-height: 1.0;
}
#main h2 {
	color: #52370A; /* dark brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.7em;
	line-height: 1.2em;
	margin-top: 0px;
}
#main h3 {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.4em;
	line-height: 1.2;
}
#main h4 {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:1.1em;
	line-height: 1.2;
}
#main h5 {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.0em;
	line-height: 1.2;
}
#main h6 {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.9em;
	line-height: 1.2;
}

/* Footer Layout & Styles */

#footer {
	padding: 0px;
	margin: 0px;
	border:0px;
	width: 100%;
	background-image: url(../images/layout/gravel.png);
}
#footer h1 {
	background: transparent url(../images/layout/footerflute.png) no-repeat bottom right;
	margin: 5px 15px auto auto;
	width: 190px;
	height:75px;
	border: 0px;
	display: block;
	float: right;
}
#footer h1 span {
	display:none
}
#footer p {
	margin: 0px auto 0px auto;
	padding: 0px 0px 5px 0px;
	border: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: .74em;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-align:center;
	clear: both;
}

/* Other Special Elements */

#infobox {
	clear: right;
	border: thin dotted #666666; /* dark gray */
	margin: 20px 15px 0px 15px;
	padding: 0px 10px 10px 0px;
}
#infobox h3 {
	padding: 0 0 0 0;
	font-style: italic;
	color: #800; /* dark red */
}
#infobox ul {
 overflow:auto; /* This is to have bullet lists look OK when an iamge is floated to the left of it */
 padding-left: 1.5em;
 padding-top: 0;
 padding-bottom: 0;
 padding-right: 0;
 margin: 0 1.5em 0 1.5em;
 list-style-image:url(../images/layout/iconarrow.png);
}
#infobox li {
 padding-top: 0;
 padding-bottom: .5em;
}

/* Miscellaneous classes for reuse */

.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: 10px;
	border: 0px;
	text-align: right;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
	border: 0px;
	text-align: left;
}
.imagecenter { text-align: center; margin: 10px 0 10px 0; padding: 0; float: none; clear: both; overflow: auto }

.hrcoloredshort {
	width: 75%;
	margin: auto; /* needed for IE */
	text-align:center; /* needed for IE */
	border-top-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #52370A; /* dark brown */
	clear: both;
}

.Japanese {
	font-family: Osaka, Meiryo, MS-Gothic, Verdana, Arial, Helvetica, sans-serif;
}

.sml {
	font-size: 0.82em;
}

.big {
	font-size: 1.14em;
}
.accentcolor {
	color: #900;
}

.caption300 {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 0.86em;
	margin:0px;
	padding: 0px;
	overflow: auto;
	width: 300px;
}

.captionpublicity {
	margin: 10px 0 0 0;
	padding: 0 0 0 0;
	overflow: auto;
	width: auto;
}
.captionpublicity p {
	font-weight: bold;
	margin:0 0 0 180px;
	padding: 0 0 0 0 0;
	vertical-align:top;
}
.captionpublicity img {
	vertical-align:top;
	float: left;
	margin: 0 10px 0 0;
	padding: 0 0 0 0;

}

.caption425 {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 0.86em;
	margin:0px;
	padding: 0px;
	overflow: auto;
	width: 425px;
}

.sidediv {
	margin: 20px 15px 20px 15px;
	padding: 0px 0px 0px 10px;
	border-left: thin dotted #666666; /* dark gray */
}

.innerdiv {
	margin: 20px 15px 25px 15px;
	padding: 0px 10px 10px 10px;
	border: thin dotted #666666; /* dark gray */
}

#disctable {
	text-align:center;
	padding: 0px;
	margin: 0px;
}

#disctable table {
	border-collapse: collapse;
	width: 100%;
	margin: 0px auto 0px auto;
}

#disctable td {
	font-size: 0.82em;
	text-align:center;
	padding: 0px 2px 4px 2px;
	vertical-align: top;
}

.paypal {
	margin: 0px;
	padding: 0px;
	border: none;
	text-align: right;
}

.paypal legend {
	color: #9E6B13; /* light brown */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:1.1em;
	line-height: 1.2;
	text-align: left;
	}
.paypal fieldset {
	padding: 4px;
	margin: 8px 4px 2px 4px;
	border: thin dotted #666666; /* dark gray */
	text-align: right;
	}

/* Begin fixes for clearing floats from www.positioniseverything.com */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	font-size:0;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */

/* End fixes from www.positioniseverything.com */
