body {
	margin: 0;
	padding: 0;
	color: #000;
	background-attachment: scroll;
	background-image: url(images/backgroundtile.jpg);
	background-repeat: repeat;
	background-position: center center;
}
h2 {
	font: bold 21px Georgia, "Times New Roman", Times, serif;
	color: #930;
	border-bottom: 1px dotted #090;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top: 1px dotted #090;
	text-align: center;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}


h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 960px;
	background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.container .content {
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 17px;
	padding-bottom: 10px;
	padding-left: 17px;
}
.container .content h1{
	font: bold 24px Georgia, "Times New Roman", Times, serif;
	color: #FFF;
	background: #036;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-left: 0px;
}

.container .content h3 {
	font: bold 16px Verdana, Geneva, sans-serif;
	color: #333;
	text-align: center;
}


.container .content .bold{
	font-weight: bold;
}
.container .content .boldcentered {
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}
.container .content .redbold {
	font-weight: bold;
	color: #900;
}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.container .header{
	height: 160px;
	background-color: #fff;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
}
.container .content p {
	font: 12px/20px Verdana, Geneva, sans-serif;
	text-align: left;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
.container .content a:link , a:visited{
	color: #090;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font: bold 12px Verdana, Geneva, sans-serif;
}
.container .content a:hover,a:active,a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	font-weight: bold;
	color: #006;
}
.container .content .figurenote {
	font: italic 12px Verdana, Geneva, sans-serif;
	color: #666;
}
.container .content .border {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #CCC;
}
.container .content p a #noborder {
	padding-right: 8px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


.container .content img{
	float: left;
	border: 1px solid #999;
	padding: 0px;
}
.container .content #rightsidephoto {
	float: right;
	padding: 0px;
	border: 1px solid #CCC;
	margin: 8px;
}
.container .content #photo {
	height: 350px;
	width: 300px;
	float: left;
	margin-left: 0px;
	font-size: 10px;
	color: #666;
	margin-right: 12px;
}
.container .content #photoLevel3 {
	height: 240px;
	width: 280px;
	float: left;
	font-size: 10px;
	color: #666;
	margin: 0px 12px 0px 0px;
}
.container .content #photoLevel3wf {
	height: 100px;
	width: 240px;
	float: left;
	font-size: 10px;
	color: #666;
	margin-right: 12px;
	margin-bottom: 0px;
	margin-left: 40px;
	margin-top: 0px;
}




.container .content #photoLevel3 p {
	font: 10px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.container .content #photoLevel3 p a {
	font: normal 10px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #999;
}
.container .content #photo a {
	font: normal 10px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #999;
}

.container .content #photoLevel3rt p a {
	font: normal 10px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #999;
}



.container .content #photoLevel3rt {
	height: auto;
	width: 280px;
	float: right;
	margin-left: 12px;
	font-size: 10px;
	color: #666;
	margin-right: 0px;
}

.container .content #photoLevel3rt p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.container .content #photonote{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: italic;
	color: #333;
	padding-left: 20px;
	width: 275px;
}
.container .content table td {
	font: 12px/20px Verdana, Geneva, sans-serif;
}


.container .content blockquote {
	background: #DEF;
	padding: 10px;
	text-align: center;
}

.container .content blockquote .title {
	font: bold 18px Verdana, Geneva, sans-serif;
	color: #036;
}





.container .content #photo p {
	font: 10px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.container .content #leftsidephotos {
	float: left;
	width: 280px;
	height: 1650px;
}
.container .content #leftsidephotos2 {
	float: left;
	width: 280px;
	height: auto;
	margin-right: 12px;
	margin-bottom: 20px;
}

.container .content #rightsidephotos {
	float: left;
	width: 280px;
	height: 1650px;
}

.container .content .topNav .topNavLinks {
	list-style: none;
	width: 550px;
	float: right;
	margin-top: 8px;
	margin-right: 12px;
}
.container .content .topNav .topNavLinks ul{
	list-style: url(none);
	text-align: right;
}

.container .content .topNav .topNavLinks ul li  {
	display: inline;
}
.container .content .topNav .topNavLinks ul li a {
	color: #FFF;
	padding-right: 8px;
	padding-left: 8px;
	text-align: right;
	padding-bottom: 10px;
	font: bold 12px Verdana, Geneva, sans-serif;
}
.container .content .topNav .topNavLinks ul li a:hover {
	color: #6F6;
	padding-top: 4px;
	padding-bottom: 2px;
	text-decoration: none;
}

.container .content .sidebar {
	background: #F0FFF0;
	padding: 12px;
	margin-left: 12px;
	border: 1px solid #666;
	float: right;
	width: 200px;
}
.container .content .sidebar a #sidephoto {
	margin: 0px;
	padding: 0px;
}

.container .content   .sidebar h1{
	color: #FFF;
	background: #090;
	margin-right: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
}
.container .content table tr td {
	vertical-align: top;
}
.container .content .boldcentered #watts    {
	text-align: center;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-left: 10px;
}
.container .content h4 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
	color: #900;
	text-align: center;
}

/* ~~ The footer ~~ */
.container .content .footer{
	padding-bottom: 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	padding-top: 10px;
	background-color: #DDD;
	height: 40px;
	width: 960px;
}
.container .content p a #infophotos {
	padding: 8px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.container .content #koshin {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-left: 100px;
}


.container #footer  {
	background-color: #E0E0E0;
	height: 40px;
	width: 960px;
}



.container .footer #copyright {
	font: 10px Arial, Helvetica, sans-serif;
	color: #999;
	margin-left: 200px;
	padding-top: 10px;
}
.container .footer #copyright p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #999;
	font-size: 11px;
}

.container .footer #copyright p  a {
	text-decoration: none;
	color: #999;
	font-size: 10px;
	font-weight: normal;
}
.container .footer #copyright p a:hover {
	text-decoration: underline;
	font-weight: normal;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


.specialnote {
	font-style: italic;
	color: #630;
	font-size: 11px;
}
.container .content .bolditalic{
	font-style: italic;
	font-weight: bold;
}
.container .content #indentedtext {
	width: 450px;
	padding-left: 50px;
}
.container .content #indentedtext ul li {
	padding-bottom: 8px;
}
.container .content #indentedtext ol li {
	padding-bottom: 8px;
	list-style-position: outside;
	list-style-type: decimal;
}
.container .content .topNav {
	width: 920px;
	height: 40px;
}
