@charset "UTF-8";
html, body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #DEBE96;
	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: #666666;
}
.layout #container {
	width: 774px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color:#DEBE96;
}
.layout #header {
	padding: 15px 0 0 0;  /* 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. */
}
.layout #italic {
	font-style:italic;
}
.layout #underline {
	text-decoration:underline;
}
.layout #nav {
	font-size: 12px;
	color: #FFFFFF;
	background-color:#DEBE96;
	text-align:center;
}
.layout #nav img {
	padding:0;
	width:772px;
	height:45px;
	border:1px solid #666666;
}
.layout #nav .home {
	background-image: url(images/buttons/home.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .guild {
	background-image: url(images/buttons/guild.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .giving {
	background-image: url(images/buttons/giving.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .newsletter {
	background-image: url(images/buttons/newsletter.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .quiltshow {
	background-image:url(images/buttons/quiltshow.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .library {
	background-image:url(images/buttons/library.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .workshops {
	background-image: url(images/buttons/workshops.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
}
.layout #nav .bom {
	background-image: url(images/buttons/bom.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 90px;
	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 */
}
.layout #nav a:link, .layout #nav a:visited {
	color: #FFFFFF;
	text-decoration:none;
}
.layout #nav a:hover {
	color:#666666;
}
.layout #sidebar1 {
	float: left;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:15px;
	color:#666666;
	border:1px solid #666666;
	width:200px; /* since this element is floated, a width must be given */
	margin:0px;

}
.layout #sidebar1 .upcoming {
	font-size:65%;
	font-weight:600;
	letter-spacing:20px;
	text-align:center;
	color:#CC8C53;
}
.layout #sidebar1 ul {
	font-size:85%;
	list-style-image:url(images/bullet.gif);
	text-align:left;
	margin-left:-22px;
}
.layout #sidebar1 .contact {
	font-size:65%;
}
.layout #sidebar1 a:link, .layout #sidebar1 a:visited {
	color: #666666;
	text-decoration:none;
}
.layout #sidebar1 a:hover {
	color:#CC8C53;
	text-decoration:none;
}
.layout #mainContent {
	margin: 0 0 0 230px; /* 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: 15px 36px 12px 36px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#F2E6CD;
	border:1px solid #666666;
}

/* hollyhack hide from IE-mac \*/
* html .layout #mainContent {height: 1%;}
/* end hide */

.layout #mainContent .logo {
	width:446px;
	height:56px;
	margin-bottom:-8px;
	border-bottom:1px solid #666666;
}
.layout #mainContent a:link, .layout #mainContent a:visited {
	color: #666666;
	text-decoration:none;
}
.layout #mainContent a:hover {
	color:#CC6633;
}
.layout #mainContent h2 {
	text-align:center;
}
.layout #mainContent h3 {
	text-align:center;
}
.layout #mainContent caption {
	font-size: 115%;
	font-weight:bold;
	line-height:3;
}
.layout #newsletter {
	padding-left:40px;
}
.layout #newsletter th {
	text-align:right;
}
.layout #newsletter p.descr {
font-size:75%;
}
.layout #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DEBE96;
}
.layout #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:70%;
	color:#CC8C53;
	text-align:right;
}
.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;
}
/* hollyhack hide from IE-mac \*/
* html .clearfloat {height: 1%;}
/* end hide */

.spacergif {
	background-image:url(images/trans.gif);
}
.layout .bold {
	font-weight:bold;
}
.layout #italic td {
	font-style:italic;
}
.layout #backToTop {
	font-size:70%;
	text-align:right;
}
.layout #smaller p {
	font-size:85%;
}
.layout #smaller td {
	font-size:85%;
}
.layout #smaller ol {
	font-size:85%;
}
.layout #nest ol {
	font-size:14px;
}
.layout #center p {
	text-align:center;
}
.layout #centerBold p {
	text-align:center;
	font-weight:bold;
}
.layout #image {
	padding-left: 85px;
}
.layout #image2 {
	padding-left: 65px;
}
.layout #bottomBar {
	background-color: #F2E6CD;
	width: 774px;
	border:1px solid #666666;
}
.layout #bottomBar p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:90%;
	padding-left:10px;
}
.layout #bottomBar a:link, .layout #bottomBar a:visited {
	color: #666666;
	text-decoration:none;
}
.layout #bottomBar a:hover {
	color:#CC8C53;
}
