/* Colors used:
	"Cupboard Green": rgb(53, 94, 0)
	Very light green outside page content: rgb(232,242,220)
	Light green for menu box, etc.: rgb(185,212,150)
*/

/*
Here's how the three columns are constructed:

outer:
    <------------------------------------>

middle:
    <------------------------------------>
    <--pad-->                    <--pad-->

left:
    <------->

right:
                                 <------->

The widths of these elements are specified in a separate CSS file, e.g.,
columnwidthswideright.css and columnwidthsdefault.css.

*/


/* Styles to get floating centered 3-column layout */

body {
	margin: 0px;
	padding: 0px;
    background-color: rgb(232,242,220);
}
div#outer {
/*    width: 1023px;*/
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    background-color: white;
}
div#header {
	clear: both;
	height: 170px;
	padding: 0px !important;
	margin: 0px !important;
}
div#left {
	float: left;
	color: black !important;
	/* width set in columnwidth*.css */
}
div#right {
	float: right;
	/* width and margin-right set in columnwidth*.css */
}
div#middle {
	margin: 0px;
	/* padding set in columnwidth*.css */
}
div#footer {
	clear: both;
	color: rgb(53, 94, 0);
	background-color: white;
}

/* Styles to get the content to extend to the bottom of the window. */

html {
	height: 100%; /* gives layout 100% height */
	overflow:inherit; /* triggers 100% height in Opera 9.5 */
}
body {
	height: 100%; /* gives layout 100% height */
}
#outer {
	min-height: 100%; /* gives layout 100% height */
}
* html #outer {
	height: 100%; /* IE6 treats height as min-height */
}

/* Global styles for text */
p {
	margin: 0px 0px 8px 0px !important;
}


/* Styles to choose from in HTML editor for use in news items, calendar events, etc.  */

.ImageOnRight {
	float: right;
	margin: 5px 10px 2px 10px;
}

.ImageOnLeft {
	float: left;
	margin: 5px 10px 2px 0px;
}




/* Styles for left-side menu */




.LeftMenu
{
	width: 160px;
	margin: 0px 0px 0px 15px;
	padding: 0px;
	display: block;
	list-style: none;
}

.LeftMenuItem, .LeftMenuLastItem, .LeftMenuItemHover, .LeftMenuLastItemHover {
    height: 22px;
	font-family: Georgia, serif;
	padding: 4px 0px 3px 10px;
	list-style: none;
	font-size: 13pt;
	white-space: nowrap;
 	cursor: pointer;
 }

.LeftMenuLastItem {
}

.LeftMenuItem, .LeftMenuLastItem
{
	background-color: rgb(185,212,150); /* a.k.a. #B9D496 */
	color: black;
}

.LeftMenuItem, .LeftMenuItemHover {
	border-bottom: solid rgb(53, 94, 0) 1px;
}

.LeftMenuItemHover, .LeftMenuLastItemHover
{
    background-color: rgb(53, 94, 0);
	color: white;
}


.LeftMenuFooter {
	margin: 20px 0px 0px 10px;
	text-align: center;
	font-size: 11pt;
}


/* Apply default font throughout page */
body, td, th, input, textarea, select, .Normal {
    font-family: Georgia, serif;
    font-size: 12pt;
}

/* Font for headings */
.heading, H2, H3 {
	font-family: Georgia, serif;
	font-weight: bold;
    text-align: center;
}

H2 {
	font-size: 18pt;
	margin: 5px 0px 5px 0px;
}

H3 {
	font-size: 14pt;
	margin: 20px 0px 5px 0px;
}

A:link {

    color: rgb(53, 94, 0);
	font-style: italic;
	font-weight: bold;
    text-decoration: none;
}
A:visited {

    color: #669966;
	font-style: italic;
	font-weight: bold;
    text-decoration: none;
}

A:active {
    color: #308030;
	font-weight: bold;
    text-decoration: underline;
}

A:hover {
    color: #cc0000;
	font-weight: bold;
    text-decoration: underline;
}


/* For marking things To-Be-Done */
.TBD {
	font-style: italic;
	color: red;
	margin: 20px;
}

/* Styles for cooking class pages */

.ClassTable {
	border: none;
}

.ClassListTitle {
	border: none; 
	font-weight: bold; 
	font-size: 14px;
	padding: 5px 15px 0px 0px;
}

.ClassSoldOut {
    color: red;
	font-weight: normal; 
	font-size: 12px;
}
.ClassListDate {
	color: black;
	padding: 0px;
	font-size: 12px;
	width: 25%;
	text-align: right;
}
.ClassListInstructor {
	padding: 0px 0px 0px 30px;
	font-size: 12px;
}


.InvisibleTable, .InvisibleTable TR, .InvisibleTable TD, .InvisibleTable TH {
    padding: 0;
    border-collapse: collapse;
    border: none !important;
}

.TopOfPageImgLeft, .TopOfPageImgRight, .TopOfPageImgMiddle {
	width: 340px;  /* May want to change to 317px */
	height: 120px;  /* May want to change to 84px */
	margin: 1px 0px 1px 0px;
}
.TopOfPageImgMiddle {
	margin: 1px 1px 1px 1px;
}

.RightSideImg {
	width: 100%;
}

.WideRightSideImg {
	width: 100%;
	height: 304px;
}


.PageTitle {
    font-size: 18pt;
	margin: 0;
	padding: 2px 0px 2px 10px;
	color: white;
	background-color: rgb(53, 94, 0);
	display: block;
	text-align: center;
	font-style: italic;
}

.ExtraSpace {
	margin: 5px 0px 0px 0px;
}

.HomePageText {
}

.FooterRule {
	background-color: rgb(53, 94, 0);
	height: 2px;
	width: 100%;
}

.ClassTitle, .ClassTitlePast {
	font-weight: bold;
	font-size: 14pt;
    text-align: center;
    color: #206020;
	margin: 15px 30px 5px 40px;
}

.ClassMonth, .ClassNextMonth, .ClassPreviousMonth {
	vertical-align: bottom;
    color: #206020;
	width: 25%;
}

.ClassMonth {
	font-weight: bold;
	font-size: 16pt;
    text-align: center;
    color: #206020;
}

.ClassNextMonth {
    text-align: right;
}

.ClassPreviousMonth {
    text-align: left;

}

.ClassDate, .ClassDatePast {
	font-size: 12pt;
    text-align: center;
	margin: 0px 0px 5px 0px;
}

.ClassFull, .ClassFullPast {
	font-size: 12pt;
    text-align: center;
    color: red;
	margin: 0px 0px 5px 0px;
}

.ClassDescription, .ClassDescriptionPast {
	text-align: justify;
	margin: 0px 0px 5px 0px;
}

.ClassInfo, .ClassInfoPast {
	text-align: left;
	margin: 0px 0px 5px 0px;
}

.ClassNotes, .ClassNotesPast {
	font-weight: bold;
	font-size: 10pt;
	text-align: left;
	margin: 0px 0px 5px 0px;
}

.ClassTitlePast, .ClassDatePast, .ClassFullPast, .ClassDescriptionPast, .ClassInfoPast, .ClassNotesPast {
}

.ClassLinkPast {

}

.MonthButtonLink, .MonthButtonLink:hover {
	padding: 2px 6px;
	font-size: 11pt;
	font-weight: bold !important;
	font-style: normal;
	text-decoration: none;
	font-style: normal !important;
	background-color: rgb(185,212,150);
}

.MonthButtonLink {
	color: black !important;
}

.MonthButtonLink:hover {
	color: white !important;
}



/* Styles for printed cooking class flyer */
.FlyerBody {
	width: 600;
 }

.FlyerHeading {
	font-family: Times New Roman, New Roman, serif;
	margin: 30px 0px 10px 0px;
	font-size: 16pt;
	font-weight: bold;
}

.FlyerClassDate, .FlyerClassDatePast {
	font-family: Times New Roman, New Roman, serif;
	width: 140px;
	font-size: 11pt;
    text-align: center;
	vertical-align: top;
}


.FlyerClassDescription, .FlyerClassDescriptionPast {
	font-family: Times New Roman, New Roman, serif;
	margin: 0px 0px 5px 0px;
}

.FlyerInstructor, .FlyerInstructorPast {
	font-family: Times New Roman, New Roman, serif;
	margin: 0px 0px 10px 0px;
}

.FlyerClassDescriptionTd {
	font-family: Times New Roman, New Roman, serif;
	font-size: 11pt;
	text-align: left;
	padding: 5px 0px 40px 0px;
}

.FlyerProse {
	font-family: Times New Roman, New Roman, serif;
	font-size: 11pt;
	text-align: left;
}

.FlyerClassTitle {
	font-family: Times New Roman, New Roman, serif;
	font-weight: bold;
	font-size: 13pt;
    text-align: center;
	vertical-align: bottom;
	height: 25px;
}

.FlyerPageHeading {
	font-family: Times New Roman, New Roman, serif;
	font-size: 24pt;
    text-align: center;
	padding-left: 0px;
}

.FlyerLogo {
	font-family: Times New Roman, New Roman, serif;
	width: 430px;
	margin: 15px 0px 20px 90px;
}

/* Styles for the gift registry page */

.WeddingDate {
	text-align: center;
	font-weight: bold;
	margin: 10px 0px 0px 0px;
}
.BrideAndGroom {
	text-align: center;
}

.RegistryHeading {
	color: rgb(53, 94, 0);
	font-size: 16pt;
    font-weight: bold;
	display: block;
	text-align: center;
	margin: 0px 0px 10px 0px;
}

.RegistryLink {
	font-size: 9pt;
}


.PastWeddings {
	margin: 20px 0px 0px 0px;
	padding: 10px 3px;
	background-color: rgb(53, 94, 0);
	color: white;
	text-align: center;
	width: 80%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;

}

.PastWeddings A:link, .PastWeddings A:visited, .PastWeddings A:active, .PastWeddings A:hover {
	color: white;
	font-size: 12pt;
	font-style: normal;
	font-weight: bold;
    text-decoration: none;
}

.PastWeddings A:hover {
    text-decoration: underline;
}


/* Styles for administrative pages */
.databaseListTable {
}

.databaseListTable td {
	border-bottom: dashed gray  1px;
	padding: 0px 5px;
}

.adminAddEntry {
	text-align: right;
	width: 80%;
	margin-bottom: 10px;
}


#admin_left_nav
{
/*	position: absolute;*/
	background-color: white;
/*	left: 0px;
	top: 50px;*/
	width: 140px;
	text-align: left;
	margin: 0;
	padding: 10px 0px 9px 0px;
	display: block;
	font-size: 10pt;
}

#admin_left_nav ul
{
	width: 150px;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}

#admin_left_nav li
{
    height: 20px;
	margin: 5px;
    padding: 2px 0px 0px 3px;
	list-style: none;
}

#admin_left_nav li {
	background-color: rgb(53, 94, 0);
}

#admin_left_nav li a {
	color: white;
	font-weight: normal;
	font-style: normal;
}

#admin_left_nav li a:hover, #admin_left_nav li a.selected
{
	color: rgb(185,212,150);
	text-decoration: none;
}

#AdminForm input {
	margin-right: 10px;
}

.GrayButtonLink, .GrayButtonLink:hover {
	padding: 0px 2px;
	font-size: 10pt;
	font-weight: normal !important;
	font-style: normal;
	margin: 0px 2px;
	border: solid black 1px;
	text-decoration: none;
	font-style: normal !important;
}

.GrayButtonLink {
	background-color: gray;
	color: white !important;
}

.GrayButtonLink:hover {
	background-color: white;
	color: gray !important;
}



/* Styles for the news and events page */
.Event {
}


.Newsletter {
}

.Newsletter ul {
	padding-left: 25px;
}
.Newsletter a:link, .Newsletter a:visited {
	font-weight: normal;
    text-decoration: underline;
}

.NewsletterEvent {
	margin: 0px 0px 0px 5px;
}

.NewsletterHeading {
	margin: 20px 20px 5px 5px;

}

.NewsletterLinks {
	margin: 30px 0px 30px 150px;
}

.EventBanner, .NewsletterEventBanner {
	color: #236B22;
	font-weight: bold;
    font-size: 16pt;
	margin: 20px 0px 0px 30px;
	text-align: center;
}

/* ### */
.HomeEventBox {
	padding: 3px;
	margin-top: 20px;
	color: white;
	background-color: rgb(53, 94, 0);
}

.HomeEventHeading {
	font-weight: bold;
	font-size: 12pt;
	text-align: center;
}

.HomeEventTopText {
	margin-top: 5px;
	font-size: 12pt;
	text-align: center;
}

.HomeEventFooter {
	margin: 8px 0px 3px 0px;
	text-align: center;
}

.HomeEventBanner {
	color: #236B22;
    font-size: 12pt;
	margin: 10px 0px 0px 10px;
	text-align: center;
}

.HomeEventDate {
	color: #236B22;
	display: block;
	font-weight: bold;
	margin: 3px 0px 0px 3px;
}

.HomeEventTitle {
	display: block;
	margin: 0px 0px 2px 20px;
	padding-left: 0px;
}

.HomeEventTitle A:link, .HomeEventTitle A:visited, .HomeEventTitle A:active, .HomeEventTitle A:hover {
	font-style: normal !important;
	font-weight: normal !important;
}

.HomeEventBox A:link, .HomeEventBox A:visited, .HomeEventBox A:active, .HomeEventBox A:hover {
	font-style: italic;
	font-weight: bold;
    text-decoration: none;
}

.HomeEventBox A:link, .HomeEventBox A:visited, .HomeEventBox A:active {
	color: white;
}

.HomeEventBox A:hover {
    text-decoration: underline;
}

.NewsletterSignup {
	margin: 20px 0px 0px 0px;
	padding: 10px 3px;
	background-color: rgb(185,212,150);
	text-align: center;
	width: 80%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}

.NewsletterSignup A:link, .NewsletterSignup A:visited, .NewsletterSignup A:active, .NewsletterSignup A:hover {
	color: black;
	font-size: 12pt;
	font-style: normal;
	font-weight: bold;
    text-decoration: none;
}

.NewsletterSignup A:hover {
	color: white;
}
/* ### */


.EventDate, .NewsletterEventDate {
	color: rgb(53, 94, 0); /*#236B22;*/
	display: block;
	font-weight: bold;
	font-size: 13pt;
	margin: 10px 0px 0px 0px;
}

.EventDate:hover {
	text-decoration: none;
	color: rgb(53, 94, 0);
}

.EventBannerDate, .NewsletterEventBannerDate {
	color: #236B22;
	font-size: 14pt;
	font-weight: normal;
	margin: 2px 0px 5px 0px;
}

.EventTime, .NewsletterEventTime {
	color: black;
	font-weight: normal;
}

.EventTitle, .NewsletterEventTitle {
	color: rgb(53, 94, 0);
	font-size: 12pt;
    font-weight: bold;
	display: block;
	padding-left: 0px;
	margin: 8px 0px 0px 30px;
}

.NewsletterEventTitle {
	margin-left: 30px;
}

.EventDescription, .NewsletterEventDescription {
	margin: 0px 0px 0px 30px;
	display: block;
}


.EventBannerDescription, .NewsletterEventBannerDescription {
	margin: 0px 0px 20px 30px;
	display: block;
	text-align: center;
	font-size: 12pt;
}

.NewsItem, .NewsletterNewsItem, .HomeNewsItem {
	margin-top: 10px;
}

.NewsTitle, .NewsletterNewsTitle, .HomeNewsTitle  {
	font-size: 12pt;
}

.HomeNewsTitle, .NewsletterNewsTitle  {
	font-size: 12pt;
}

.NewsTitleBanner, .HomeNewsTitleBanner, .NewsletterNewsTitleBanner {
	text-align: center;
}

.NewsTitle, .HomeNewsTitle, .NewsletterNewsTitle, .NewsTitleBanner, .HomeNewsTitleBanner, .NewsletterNewsTitleBanner {
	color: rgb(53, 94, 0);
    font-weight: bold;
}

.NewsTitle, .NewsletterNewsTitle{
	margin: 10px 0px 5px 0px;
}

.HomeNewsTitle {
	margin: 5px 0px 5px 0px;
}



.NewsTitleBanner, .NewsletterNewsTitleBanner, .NewsTitleBanner, .NewsletterNewsTitleBanner {
	font-size: 14pt;
	text-align: center;
}

.NewsText, .HomeNewsText {
	margin: 0px 0px 0px 30px;
	display: block;
}

.NewsletterNewsText {
	margin: 0px 0px 0px 5px;
	display: block;
}


.HighlightTarget {
	color: red;
}


.StaffPhotoLeftPortrait, .StaffPhotoRightPortrait {
   width: 100px;
 }
.StaffPhotoLeftLandscape, .StaffPhotoRightLandscape {
   width: 130px;
}

.StaffPhotoLeftLandscape, .StaffPhotoLeftPortrait {
   float: left;
   margin-right: 10px;
}

.StaffPhotoRightLandscape, .StaffPhotoRightPortrait {
   float: right;
   margin-left: 10px;
}

.StaffBio {
   display:table;
    margin: 5px 0px;
}

.fckeditor div, .fckeditor p {
	margin: 0px 0px 8px 0px !important;
}

.fckeditor ul {
	margin-top: 0px;
}

/* Styles for use within fckeditor */

.SectionHead {
	font-size: 12pt;
	color: rgb(53, 94, 0);
	font-weight: bold;
	font-family: Georgia, serif;
	margin: 3px 0px 8px 0px;
}

.SectionSubhead {
	font-size: 12pt;
	color: black;
	font-weight: bold;
	font-family: Georgia, serif;
	margin: 3px 0px 5px 0px;;
}


@media print {
    .noprint {
	 display:none;
    }
}
