@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	color: #990000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
	line-height: 1.4;
	background-color: #F60;
	background-image: url(../images/images-bg/bg-orange.jpg);
	background-repeat: repeat;
}
/* ~~ These selectors style the curved content areas~~ */
.curvedcontainer {
	background-image: url(../images/images-bg/main-middle.png);
	background-repeat: repeat-y;
}
.curvedheader {
	background-image: url(../images/images-bg/main-topcurve.png);
	background-repeat: no-repeat;
	background-color: #F60;
	height: 57px;
	background-position: left top;
}
.curvedheader img {
	margin-right: auto;
	margin-left: auto;
	display: block;
}
.curvedcontent {
	overflow: hidden;
}
.curvedfooter {
	background-image: url(../images/images-bg/main-bottom.png);
	background-repeat: no-repeat;
	height: 38px;
	margin: 0px;
	padding: 0px;
	background-position: left bottom;
	clear: both;
}
/* ~~ 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. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */


a:link {
	color: #003399;
	text-decoration: underline;
}
a:visited {
	color: #0066CC;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #FF6600;
}
/* ~~ this fixed width container surrounds all other divs ~~ */
.container {
	width: 980px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
}
/* ~~ These are the columns for the layout. ~~ */
.sidebar1 {
	float: left;
	width: 160px;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 820px;
	float: left;
}
.content img {
	margin-right: auto;
	margin-left: auto;
	display: block;
}
/* ~~ The navigation list styles ~~ */


ul.nav {
	margin-top: 30px;
}
ul.nav li {
	list-style-type: none;
	margin-top: 5px;
}
/* ~~ These selectors style the nested div content on the home pages ~~ */
.homeblurb {
	width: 370px;
	background-image: url(../images/images-bg/home-middle.png);
	background-repeat: repeat-y;
	margin-left: 20px;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	overflow: hidden;
}
.homeblurbhead {
	background-image: url(../images/images-bg/home-top.png);
	background-repeat: no-repeat;
	height: 39px;
}
.homeblurbcenter {
	height: 175px;
	overflow: hidden;
}
.homeblurbfoot {
	background-image: url(../images/images-bg/home-bottom.png);
	background-repeat: no-repeat;
	height: 19px;
	clear: both;
	background-position: left bottom;
}
.homeblurb p {
	text-align: center;
}
.homeblurbhead img {
	margin-right: auto;
	margin-left: auto;
	display: block;
}
/* ~~ These styles create the photo gallery ~~ */

.photowrapper {
	width: 600px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}
.photoThumb {
	width: 130px;
	float: left;
	text-align: center;
	margin-left: 50px;
	margin-bottom: 10px;
}
/* ~~ this style sets the bio images to float left ~~ */

.bioimage {
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 0px;
	padding-bottom: 10px;
}
/* ~~ table formatting for calendar pages ~~ */
table.calendar {
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: dashed;
	border-right-style: dashed;
	border-left-style: dashed;
	border-top-color: #990000;
	border-right-color: #990000;
	border-left-color: #990000;
	margin-top: 20px;
}
table.calendar td {
	text-align: left;
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #C00;
}
.orangeth {
	background-color: #FF9900;
}
.orangeth h4 {
	background-color: #FF9900;
	margin-top: 5px;
	margin-bottom: 5px;
}
/* ~~ These styles are used to center images and paragraph ~~ */
.img_center {
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-bottom: 10px;
}
.align-center {
	text-align: center;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 20px;
}
.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 overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
