body{
	margin: 0;
	padding: 0;
	font-size: 80%;
	color: #000;
	background-color: #DDDCC5;
	line-height: 180%;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#header{
	margin: 0 auto;
	width: 760px;
	height: 190px;
	background-image: url(img01.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #FFFFFF;
	color: #000;
	border-left: 2px dotted #424D39;
	border-right: 2px dotted #424D39;
}

#menu{
	margin: 0 auto;
	width: 760px;
	background: #424D39;
	text-align: center;
	color: #FFFFFF;
	font: normal 130% Georgia, "Times New Roman", Times, serif;
	padding-top: 10px;
	padding-bottom: 10px;
	border-left: 2px solid #424D39;
	border-right: 2px solid #424D39;
}
#menu a:link, #menu a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
#menu a:hover {
	text-decoration: none;
	color: #424D39;
	background-color: #FFFFFF;
}

#content{
	margin: 0 auto;
	width: 740px;
	padding: 1.25em 0.8em;
	background: #fff;
	color: #000;
	border-left: 2px dotted #424D39;
	border-right: 2px dotted #424D39;
}
#content p {
	font-size: 100%;
	line-height: 1.8em;
	padding-left: 1em;
	padding-right: 1em;
}
#content h1 {
	padding-bottom: 0.3em;
	padding-top: 0.3em;
	font: normal 180% Georgia, "Times New Roman", Times, serif;
	color: #424D39;
	background-color: #FFFFFF;
}
#content h2{
	background: #fff;
	color: #424D39;
	padding-bottom: 0.3em;
	font: normal 150% Georgia, "Times New Roman", Times, serif;
	border-bottom: 1px dotted #424D39;
}
#content a:link, #content a:visited {
	color: #424D39;
	background-color: #FFFFFF;
	text-decoration: underline;
}
#content a:hover {
	color: #FFFFFF;
	background-color: #424D39;
	text-decoration: none;
}
#footer{
	margin: 0 auto;
	width: 740px;
	background: #424D39;
	text-align: center;
	color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding: 0.8em 0.8em;
	border-left: 2px solid #424D39;
	border-right: 2px solid #424D39;
}
#footer a:link, #footer a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
#footer a:hover {
	text-decoration: none;
	color: #424D39;
	background-color: #FFFFFF;
}

.photo {
margin-left:10px;
margin-right:10px;
margin-bottom:10px;
border:2px solid #424D39;
}

/* FORM */
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
margin: 0;
padding: 0;
min-width: 350px;
max-width: 400px;
}

form fieldset {
/ * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
border-color:#424D39;
border-width: 1px;
border-style: solid;
padding: 10px;        /* padding in fieldset support spotty in IE */
margin: 0;
}

form label { 
display: block;  /* block float the labels to left column, set a width */
float: left; 
width: 100px; 
padding: 0; 
margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
text-align: right; 
}

form fieldset label:first-letter {  /* use first-letter pseudo-class to underline accesskey, note that */
text-decoration:underline;  /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                            /* pseudo-class on legend elements, but do support it on label elements */
                            /* you could instead underline first letter on each element and accesskey */
                            /* each input but doing only legends lessens cognitive load */
	    					/* changed to label first letter, opera broke after first letter legend */
}

form fieldset legend {
font-size:1.1em;		/* bump up legend font size, not too large or it'll overwrite border on left */
color:#424D39;			/* be careful with padding, it'll shift the nice offset on top of border  */
}

form input, form textarea {		/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
width:auto;      			/* set width of form elements to auto-size, otherwise watch for wrap on resize */
margin:5px 0 0 5px; 		/* set margin on left of form elements rather than right of label aligns textarea better in IE */
}

form input#reset {
margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
display: block;
margin: 0 0 5px 105px; /* instructions/comments left margin set to align w/ right column inputs */
padding: 1px 3px;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}