/* Printing optimized CSS File for WillOrch.com
 * Copyright (c) 2009 Williamson Orchards Inc.
 */
 
/* COLORS

 #f2e5a2  cream
 #630a02  deep red
 
*/

/* GENERIC */

/*resset all margins and padding for every element*/
*{
	margin: 0;
	padding: 0;
}

/* Must set the basics */
body, html {
	color: #000; /* override this below; should be black but we need to not match */
	background-color: #fff;
	font-family: Tahoma, Geneva, Helvetica, Arial, sans-serif;
	font-size: 90%;
}

/* fix spacing for all paragraphs */
p {
	padding: 0.5em;
}

/* 
force a break between floating things 
font-size and ling-height is for IE, it doesn't render anything in a div smaller than a character, so you must set character size to 0
*/
div.break {
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
}

/* simulate a newline */
div.newline {
	height: 1em;
  clear: both;
}

/* hack for IE,  margin: auto;  works for others */
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}

/* STRUCTURES AND LAYOUT */

/*the main column. width can be fixed of fluid*/
div#main {
	position: relative;
	width: 100%;
	margin: 0;
}

/* header image */
h1#title {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}



/* main content area */

/*wrapper for the content*/
div#container{
	background-color: #fff;
}

div#content {
	position: relative; /*for some reason, image h2 does not show up in IE6 if this is not set to relative. Go figure*/
	color: #000;
	padding: 0.6em;
}

/*basic style for h2*/
div#content h2 {
	font-family: Corsiva, "Lucida Handwriting", cursive;
	font-size: 120%;
	font-style: italic;
	text-align: center;
	margin: 0.4em 0 0.7em 0;
}

/*basic style for h3*/
div#content h3 {
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}

p.large-spacer {
	width: 200px;
	height: 400px;
}

img.left {
	float: left;
	border: none;
	margin: 5px 10px 5px 5px;
	opacity: 0.3;
	filter: alpha(opacity=30); /* IE-specific */
}
img.right {
	float: right;
	border: none;
	margin: 5px 5px 5px 10px;
	opacity: 0.3;
	filter: alpha(opacity=30); /* IE-specific */
}

/* menu sidebar */
div#menubar {
	display: none;
	float: right;
	margin: 10px -220px 60px 0;
}


/* footer */
div#footer{
	padding: 0.6em 0;
	width: 100%;
	text-align: center;
	color: #ccc;
}

div#footer a{
	display: none;
	color: #ccc;
}

div#footer li {
	display: inline;
}


/* misc */

table.wineclub-layout {
	clear: both;
	border-collapse: separate;
	table-layout: fixed;
}
table.wineclub-layout tr td {
	vertical-align: top;
	text-align: center;
}
.wineclub-small {
	font-size: 85%;
}
td.wineclub-small {
	width: 33%;
}
ul.dash {
	margin: 0.1em 0.1em 0.1em 1.5em;
	list-style-type: disc;
}


table.winelist-data {
	border-collapse: collapse;
/*	table-layout: fixed; */
	margin: 0.5em auto;
}
table.winelist-data th {
	border-bottom: 1px dotted #000;
	border-right: 1px dotted #000;
	text-align: right;
	padding: 0 3px 0 0;
/*	width: 45%; */
}
table.winelist-data td {
	border-bottom: 1px dotted #000;
	padding: 0 0 0 3px;
}

.divider {
  border-bottom: 1px dotted #000;
  margin-bottom: 1em;
}

table.fruit-data {
	border-collapse: collapse;
/*	table-layout: fixed; */
	margin: 0.5em auto;
}
table.fruit-data th {
	border-bottom: 1px dotted #000;
	text-align: right;
	padding: 0 3px 0 0;
/*	width: 45%; */
}
table.fruit-data td {
	border-bottom: 1px dotted #000;
	border-left: 1px dotted #000;
	padding: 0 0 0 3px;
}
