/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
*, html, body, div, span, h1, h2, img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #7A1600;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	font-size: 12px;
	line-height: 15px;
}

b .input {
height: 18px;
margin: 2px 0px 0px 0px;
border-top: 0px solid white;
}

ul {
margin-left: 30px;
padding-top: 10px;
line-height:20px;
list-style: square;
}

/* Commonly used to style page titles. */
h1 {
	color: #7A1600;
	font-family: Clarendon, "Times New Roman", TImes, serif;
	font-size: 29px;
	font-weight: bold;
	line-height: 28px;
	padding-bottom: 5px;
	text-transform: none;
}

/* Commonly used to style section titles. */
h2 {
	color: #7A1600;
	font-family: Clarendon, "Times New Roman", TImes, serif;
	font-size: 23px;
	font-weight: bold;
	line-height: 24px;
	padding-bottom: 5px;
	text-transform: none;
}

/* Commonly used to style sub-section titles. */
h3 {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	padding-bottom: 3px;
	text-transform: none;
}

/* Sets the style for visited links. */
a {
	color: #7A1600;
	text-decoration: underline;
}

/* Sets the style for links on mouseover. */

a:hover {
  color: #7A1600;
  text-decoration: none;
}

p {
line-height: 16px;
}
	
p b {
font-family: Arial, Helvetica, sans-serif;
color: #000;
font-weight: bold;
font-size: 14px;
}

p b b {
font-weight: normal;
font-size: 12px;
}

p b b b {
font-size: 12px;
color: #7A1600;
font-weight: bold;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 970px;
}
#outerWrapper #header {
	width: 970px;
	height: 110px;
	background: url(../images/HeaderBox.jpg) no-repeat;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
}

#outerWrapper #headerSub {
	width: 970px;
	height: 110px;
	background: url(../images/HeaderBox_Sub.jpg) no-repeat;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
}

#outerWrapper #contentWrapper {
background-color: #FFF;
margin: 0px;
padding: 0 20px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	background-color: #FFF;
	text-align: center;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 25px;
	padding-left: 0px;
	color: #000;
	margin: 0px;
	float: left;
	width: 970px;
	font-size: 11px;
}

.menucontainer {
float: right;
	width: 700px;
	position: relative;
	margin: 0px;
	padding: 22px 62px 0px 0px;
}
	
a.footer, a.footer:visited {
	color: #000;
	text-decoration: underline;
}

a.footer:hover {
	color: #000;
	text-decoration: none;
}

#subcontentcontainer2col {
	background-color: #E7D8AC;
	width: 930px;
	float: left;
	height: auto;
	padding-top: 30px;
	padding-bottom: 0px;
}

#subcontentcontainer2col #subrightcontainer {
	width: 930px;
}

#subcontentcontainer2col #subrightcontainer #subright {
	width: 434px;
	margin-left:0px;
	padding-right: 20px;
	padding-left: 10px;
}

#subcontentcontainer2col #subrightcontainer #subright #subrightshadowbox {
	background-color: #D8CCA2;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

#subcontentcontainer2col #subrightcontainer #subshadowbox {
	width: 850px;
	background-color: #D8CCA2;
	padding: 20px 20px 25px 20px;
	margin: -10px 20px 15px 21px;
}

#subcontentcontainer2col #subrightcontainer #fullcontent {
	padding: 20px 40px;
	}

#subcontentcontainer2col #subrightcontainer #subleft {
	width: 434px;
	margin-left:0px;
	padding-right: 10px;
	padding-left: 20px;
}

#subcontentcontainer2col #subrightcontainer #subfeature {
	width: 860px;
	margin-left:0px;
	padding-right: 30px;
	padding-left: 40px;
}


#subleft {
	float: left;
}

#subright {
	float: right;
}

#subfeature {
	float: left;
	}

#subright p {
	margin-bottom:0px;
}


#subright ol {
	margin-left:20px;
}

#subright ol li {
	margin-left:15px;
}

#subright ul {
	margin-top:10px;
	margin-bottom:10px;
	margin-left:20px;
}

#subright ul li {
	margin-left: 15px;
}

#subrightcontainer {
	width: 674px;
	float: left;
}

.announcementshdr {
	color: #7A1600;
	font-family: Clarendon, "Times New Roman", TImes, serif;
	font-size: 34px;
	font-weight: bold;
	line-height: 34px;
	}
	
.announcementshdr p {
	font-family: "Times New Roman", TImes, serif;
	color: #000;
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	line-height: 20px;
	padding: 12px 15px 0px 0px;
	}

.announcementshdr p b {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: normal;
color: #000;
font-weight: bold;
}
	
#subcontentcontainer {
	background-color: #E7D8AC;
	width: 930px;
	float: left;
	height: auto;
	padding-top: 30px;
	padding-bottom: 24px;
	background-repeat: no-repeat;
}


/* buy now DARK button style */

#buynowD {
width: 100px;
float:left;
position: relative;
left: -5px;
	margin:0;
}

#buynowD li {
	list-style-type:none; /* for Firefox */
}

#buynowD em {
  display: none;
}

#buynowD a, #buynowD a:visited {
	width:100px;
	background-image: url(../images/various/buynow_D.gif);
	display:block;
	text-decoration:none;
	height:31px;
}

#buynowD a:hover {
	background-position: 0 -31px;
}

#buynowD ul {
margin: 0; 
padding: 0; 
line-height:0; 
list-style: none; 
}

/* buy now LIGHT button style */

#buynowL {
width: 123px;
float:left;
position: relative;
left: -5px;
}

#buynowL li {
	list-style-type:none; /* for Firefox */
}

#buynowL em {
  display: none;
}

#buynowL a, #buynowL a:visited {
	width:123px;
	background-image: url(../images/various/buynow.gif);
	display:block;
	text-decoration:none;
	height:34px;
}

#buynowL a:hover {
	background-position: 0 -34px;
}

#buynowL ul {
margin: 0; 
padding: 0; 
line-height:0; 
list-style: none; 
}

/* buy now BIG button style */

#buynowB ul {
width: 160px;
float:right;
position: relative;
top:-15px;
margin: 0; 
padding: 0; 
line-height:0; 
list-style: none; 
}

#buynowB li {
	list-style-type:none; /* for Firefox */
}

#buynowB em {
  display: none;
}

#buynowB li a, #buynowB li a:visited {
	width:160px;
	background-image: url(../images/various/buynow_L.gif);
	display:block;
	text-decoration:none;
	height:44px;
}

#buynowB li a:hover {
	background-position: 0 -44px;
}

/* PLACE ORDER button style */

#placeorder {
width: 201px;
margin-left:100px;
list-style-type:none;
}

#placeorder li {
	list-style-type:none; /* for Firefox */
}

#placeorder em {
  display: none;
}

#placeorder a, #placeorder a:visited {
	width:201px;
	background-image: url(../images/various/placeorder2.gif);
	display:block;
	text-decoration:none;
	height:42px;
}

#placeorder a:hover {
	background-position: 0 -42px;
}

/* SEND US YOUR PICTURE button style */

#sendpic {
width: 252px;
list-style-type:none;
margin-left:-15px;
}

#sendpic li {
	list-style-type:none; /* for Firefox */
}

#sendpic em {
  display: none;
}

#sendpic a, #sendpic a:visited {
	width:252px;
	background-image: url(../images/pictureperfect/sendusyourpic.gif);
	display:block;
	text-decoration:none;
	height:34px;
}

#sendpic a:hover {
	background-position: 0 -33px;
}

#security {
background:url(../images/SecurityCode.gif) center center no-repeat;
width:462px;
height:211px;
}

#security p {
text-align: left;
width: 240px;
font-size: 12px;
line-height: 16px;
}

#security p b {
font-size: 12px;
font-weight: bold;
color: #7A1600;
}

#closewindow {
width:462px; 
text-align: right; 
line-height:26px;
}

.formX p b {
font-size:12px;
}

#fullcontent input, select {
padding-top: 2px;
}

#photo {
margin-top:15px;
}

#photo p {
margin-left: 20px;
}

#photo .box {
border: 10px solid white;
margin: 10px 0;
}

.head {
color: #7A1600;
font-family: Clarendon, "Times New Roman", TImes, serif;
font-size: 22px;
line-height: 28px;
}

/* RECIPE PAGE styles */

.recipeindex a, .recipeindex a:visited {
font-weight: bold;
padding-right: 10px;
font-size: 14px;
text-decoration: underline;
color: #000;
}

.recipeindex a:hover {
text-decoration: none;
}

.recipeindexletter {
font-family: Clarendon, "Times New Roman", TImes, serif;
font-size: 140px;
color: #7A1600;
border-top: 1px solid #FFF;
line-height:150px;
display: block;
padding: 0;
margin:0;
}

.recipeheader {
font-family: Clarendon, "Times New Roman", TImes, serif;
font-weight: bold;
font-size: 18px;
line-height: 26px;
color: #7A1600;
}

.recipebox {
border-top: 1px solid #FFF;
padding: 25px 0;
}

.recipebox p {
float: left;
padding-left: 20px;
}

/* SITEMAP styles */

.sitemap {
font-weight: bold;
padding-right: 10px;
font-size: 14px;
text-decoration: none;
color: #000;
}

.sitemapsub {
margin-top: -3px;
list-style: square;
font-size: 12px;
line-height: 20px;
}
