@charset "utf-8";

/* Obtain baselines */


body {
	/* Default font family (Oldstyle) */
	font-family: 
		"Adobe Garamond Pro", 
		AdobeGaramondPro,
		"Garamond Premier Pro", 
		"Adobe Jenson Pro", 
		"Hoefler Text", 
		"Stempel Garamond", 
		"Adobe Garamond Pro", 
		"Adobe Garamond", 
		Garamond, Georgia, serif;
		
	/* Swiss */
	/*
	font-family: 
		"Helvetica Neue", 
		Helvetica, Arial, 
		sans-serif;
	*/
	
	/* Humanist Sans */
	/*
	font-family:
		"Gill Sans", 
		"Gill Sans MT", 
		"Gill Sans Std", 
		"Myriad Pro", 
		"Myriad Web", 
		"Myriad Std", 
		"Lucida Grande", 
		"Bitstream Vera Sans", 
		Verdana, 
		sans-serif;
	*/
	
	/* Geometric Sans */
	/*
	font-family:
		"Futura", 
		"Century Gothic, 
		"Gill Sans", 
		"Gill Sans MT", 
		"Gill Sans Std", 
		sans-serif;
	*/
	
	line-height: 20px;
	color: #322911;
}

/* THESE STYLES WILL SHOW UP IN THE CMS TEXT EDITOR */
	/* <textEditor> */		
		.fontGeorgia {font-family: georgia, serif;}
		.fontTimes {font-family: "times new roman", times, serif;}	
		.fontVerdana {font-family: verdana, sans-serif;}
		.fontArial {font-family: arial, sans-serif;}
		.fontTahoma {font-family: tahoma, sans-serif;}	
		
		.textBlack, .textBlack a {color: #111;}
		.textWhite, .textWhite a {color: #fff;}	
		.redText {color: #8b3335;}
		.allCaps {font-variant: small-caps;}
		.left {float: left; margin-right: 1em;}
		.right {float: right; margin-left: 1em;}
		.textSmall {font-size: 85%;}
		.textLarge {font-size: 125%;}
		.noborder {border: none !important;}
		span.imageBorder img {border: 1px solid #333;}
	/* </textEditor> */

/* GENERAL, SITEWIDE CONTENT CALLINGS */

/* links */
a {
	color: #5a5037;
	text-decoration: underline;
}
	a:hover {
		color: #79191b;
	}
	
/* lists with diamond bullets */
.content ul {
	list-style: none;
	margin-left: -20px;
}

.content li {
	list-style: none;
	background:url(images/bullet-red-diamond.png) no-repeat;
	padding: 0 0 20px 20px;
}

/* GENERAL SITE HEADINGS */	
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-variant:small-caps;
	margin: 10px 0;
	font-size: 1.5em;
	color: #000000;
}	

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-variant:small-caps;
	margin: 10px 0;
	font-size: 1.3em;
	color: #666d6f;
}	

h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-variant:small-caps;
	margin: 10px 0;
	font-size: 1.2em;
	color: #777;
}		

h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-variant:small-caps;
	margin: 10px 0;
	font-size: 1.1em;
	color: #777;
}	

h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-variant:small-caps;
	margin: 10px 0;
	font-size: 1em;
	color: #777;
}	

/* BLOG ITEM */	
	/* blog listing page */
	.blogList {
		padding: 0;		
	}
		.blogList ul {
			margin: 0 !important;
			padding: 0 !important;
			list-style: none;
		}
			.blogList ul li {
				list-style: none;
				background: none;
			}
			
			.blogList ul li h2.postTitle {
				font-weight: normal !important;
			}
			
			.blogList ul li  .postDate {
				margin: 0 0 10px 0;
				color: #79191b;
			}
				
				
			/* rss icon */
			.rss img {border: none}
				
				
	/* post detail page */
	#secPage .post h2 {
		margin: 0 0 10px 0;
	}
		#secPage .post .postDate {
			margin: 0 0 10px 0;
			color: #79191b;
		}
		#secPage .post .blogBack {
			margin: 10px 0;
			font-weight: bold;
		}
	
	
	/* blog comments */
	.comments {
		padding-top: 10px;
	}
		.comments dl {
			background: #fff !important;
		}	
			dt.comment {
				background: #fff !important;
				float: right;
				width: 155px;
				color: #666 !important;
				border-top: 1px solid #734526;
				clear: both;
			}			
			dd.comment {			
				border-top: 1px solid #734526;
				background: #fff !important;
				margin-right: 180px;
				padding-left: 0 !important;
				padding-right: 20px;
			}
			
				/* alternate colors, for the even posts */
				dt.comment.alternate {
					color: #930 !important;
				}
				dd.comment.alternate {
					color: #930 !important;
				}
			
			.commentDate {			
				color: #999 !important;
			}
		
		
	/* comments form */
	.commentsForm {
		clear: both;
		padding-top: 15px;
		width: 80%;
	}
		.commentsForm label {
			font-weight: bold;
		}
		
		.commentsForm input, .commentsForm textarea {
			padding: 2px 4px;
			font-family: arial;
			font-size: 1em;
		}
		
		.commentsForm img { /* this is for the captcha image */
			 margin: 5px 0;
			 border: 1px solid #999;
		}
		
		.commentsForm input.submitComment {
			 margin: 10px 0;
		}
		
		.commentsForm .note {
			font-size: .9em;
			color: #999;
		}
		
/* FORMS */
	.fieldSelected { /* background color of a selected field. */
		background: #dcdfe0 !important;
		border-color: #000000 !important;
	}


