@charset "utf-8";
body  {
	background: #000000;
	background-image: url(../webimage/back.jpg);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	background-color: #CCCC99;
}
.twoColFixLtHdr #container {
	width: 905px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */

	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {

	padding: 5px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 560px;

	background-image:url(../webimage/hobby_border.gif); 
		background-repeat: no-repeat;
	background-position: 0px 140px; 
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 0px;
}
.twoColFixLtHdr #mainContent { 

	margin: 20px 0 0 160px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */

	color: #666666;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 50px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* ============================================================ 
My additions to the CSS code 
==============================================================*/

a:link {
	color: #0066CC;
	text-decoration: none;
}
a:visited {
	color: #0066CC;
	text-decoration: none;
}
a:hover {
	color: #6699CC;
}
a:active {
	color: #FF0000;
}

img {
	border:none;
}

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/ul-flyout.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


/* ----------------------------------------------------------------------------	*/
/* default styling */
.nav,
.nav ul{list-style-type:none; margin:0; padding:0;}
.nav a {text-decoration:none;}
.nav {font-family: arial, sans-serif; font-size:12px; margin:0 auto;}

/* style the links */
/* needs a background for IE6 - can be a color or a transparent gif */
.nav a {background:url(../../../hobby/trans.gif); filter: alpha(opacity=90); opacity:0.9;} 

/* style the <b> element so that is does not affect the size of the link */
.nav a b {
	background:#111;
	border:1px solid #000;
	border-color:#666 #333 #333 #666;
	color:#000000;
	font-weight:normal;
	display:block;
	padding:5px 10px;
	background-color: #CCCC99;
}
.nav a:hover b {
	background-color:#CCCC99;
	color:#0033FF;
	cursor:pointer;
}
.nav .fly .main b {
	background:#000 url(../../../hobby/webimage/arrow.gif) no-repeat 105px 9px;
	background-color: #CCCC99;
}
.nav .down b {
	background:#000 url(../../../hobby/webimage/arrow.gif) no-repeat 105px 9px;
	background-color: #CCCC99;
}

/* HEIGHT */
.nav ul {top:-24px;} /* position the top of the flyout sub menus */

/* WIDTH change this WITH CARE to suit your requirements */

/*set the link width here*/
.nav .drop,
.nav a {width:120px;}
.nav ul li {max-width:120px;} /* fix for IE8 */

/* set the left flyout position here */
.nav ul {left:110px;}

/* make this WIDTH - 1px */ /* or WIDTH - 0.063em if using em sizing */
.nav a {margin-right:-119px;}

/* ----------------------------------------------------------------------------	*/

/* DO NOT CHANGE ANYTHING BELOW */
.nav li {float:left; clear:left;} /* fixes several IE related bugs, and allows for clearing */
.nav ul {float:left; position:relative; z-index:20;} /* necessary for float drop and to stack the <ul>s */
.nav a {position:relative; display:block;} /* needs to have a position, to be above the rest */
.nav a.main {float:left; /* necessary for float drop */
    margin-top:10000px;} /* bring the top level links back into view */
.nav .drop,
.nav .fly {margin-top:-10000px;} /* hide the sub links and their containers, opera has low upper limits */
.nav ul {margin-bottom:-5000px;} /* avoid any interaction between the subs, can be any large size */

/* The bit that does ALL the work to bring the sub menus into view */
.nav a:hover,
.nav a:focus,
.nav a:active {margin-right:0; z-index:10; outline:0;}

.nav a:focus b,
.nav a:active b {
	background:#333;
	color:#99CCFF;
} /* for tabbing */

/* OPERA fix */
.nav ul:hover {clear:left;} /* to stop intermittent sub link :hover problems */

/* IE5-7 fixes */
.nav .fly {width:100%;}
a:active {}


/* ----------------------------------------------------------------------------	*/

/* ---- further customization to above CSS --- */
.nav .header {font-weight:bold;
text-align:center;
}


/* --------------- GALLERY SETTINGS -------------- */
/* Set up for 25 photos in a 5x5 block */

#gallery {
	position:relative;	/* position of main gallery box */
	left: 0px;
	width:690px;
	height: 482px;
	border:1px solid #666;
	padding:7px 0px 130px 0px;
	text-decoration:none;
}
#gallery b.default {
	position:absolute;		/* position of dulcimer and copyright statement */
	left:1px;
	top:523px;
	width:180px;
	height:36px;
	text-align:center;
	text-decoration:none;
	border:0px;
}
#gallery b.default img {
	display:block;
	margin:0 auto 10px auto;
	border:1px solid #eee;
	border-color:#000000;
	text-decoration:none;
}
#thumbs {width:200px; height:auto; float:left;}  /* width of thumbnail section */
#thumbs a {
	display:block;
	float:left;
	margin:0 0 3px 3px;
	width:40px;					/* size of empty space under thumb while hovering */
	height:40px;
	border:0px;
	text-decoration: none;
}
#thumbs a img {width:40px; height:40px; border:0px;}	/* size of actual thumbnail */
#thumbs a:hover {border-color:#fff;}
#thumbs a:hover img {position:absolute; width:auto; height:auto; left:182px; top:7px;  /*position of large image */
	border:1px solid #666666;}  /* this border is teh one around the larger photo */

/* --------------- CAPTION SETTINGS --------------- */
/* Header w/25 characters/line, Description w/42 characters/line, 4 lines max with 1 line header */

#thumbs a b {display:none; text-decoration: none;}
#thumbs a:hover b {
	display:block;
	position:absolute;
	width:388px;
	height:auto;
	border:1px solid #666666;
	top:515px;
	left:182px;
	color:#000;
	font-size:0.9em;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	padding:6px;
	background-color: #666666;
}
