@charset "utf-8";
/* 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: #666;
	background-image: url("2ColumnFixedRightSidebarHeaderandFooter_images/leather2.jpg");
	background-repeat: repeat;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	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. */
	margin-top: 70px;
}

.oneColFixCtrHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFCE;
}
.oneColFixCtrHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #FFF;
	color: #808040;
	font-family: Arial, Helvetica, sans-serif;
}
.oneColFixCtrHdr #header h1 {
	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 */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px;
	background-color: #FFFFCE;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #FFF;
	color: #808040;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
}
.oneColFixCtrHdr #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 */
	color: #FFE064;
}.oneColFixCtrHdr #footer a {
	color: #F90;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:hover {
	text-decoration: underline;

}
/* 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, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 12px;
	line-height: normal;
	color: #181818;
}
/* Commonly used to style page titles. */
h1 {
	color: #8D1F1E;
	font-size: 24px;
	font-weight: normal;
	line-height: 24px;
}
/* Commonly used to style section titles. */
h2 {
	color: #333;
	font-size: 13px;
	font-weight: bold;
	line-height: 13px;
}
#frontflash {
	background-image: url(images/mainfloor.jpg);
	background-repeat: no-repeat;
	height: 546px;
	width: 640px;
	margin-top: 10px;
	float: left;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #191919;
}
/* 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 {
	background-color: #fff;
	margin: 10px 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: 880px;
	border: 2px solid #DBD3D0;
}
#outerWrapper #header {
	background-color: #FEFEF2;
	font-size: 18px;
	font-weight: bold;
	height: 100px;
	line-height: 15px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(images/chellaheader.jpg);
}
#outerWrapper #topNavigation {
	height: 20px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #F7F3F2;
}
#outerWrapper #menu2 {
	height: 20px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #DED5CE;
}

#outerWrapper #contentWrapper {
	background-image: url(images/columns.jpg);
	background-repeat: no-repeat;
	overflow: hidden;
	background-position: right bottom;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 220px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer {
	background-color: #F7F3F2;
	border-top-width: 1px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 90%;
	height: 14px;
}
#images {
	height: 200px;
	background-image: url(images/slide880x200/chella-fruit.jpg);
	background-repeat: no-repeat;
	zoom: 1;
}
.inputValue {
	width: 300px;
}
.label {
	background-color: #F7F3F2;
}
#apDiv1 {
	position:absolute;
	width:210px;
	height:200px;
	z-index:1;
	left: 900px;
	top: 800px;
	visibility: hidden;
	background-color: #F7F3F2;
	margin-left: 10px;
	padding-left: 10px;
	padding-top: 10px;
}


div#menu{
	width:600px;
	text-align:left
}
dl{
	width: 100%;
	overflow: auto;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0px;
	background-image: url(images/dot.gif);
	background-repeat: repeat-x;
	background-position: 0 10px;
}
dt,dd.price{
	background: #FFF;
	font-size: 12px;
	font-weight: normal
}
dt{
	float: left;
	padding-right: 3px;
	color: #916A49
}
dd{margin:0}
dd.price{
	float: right;
	padding-left: 3px;
	color: #666
}
dd.ingredients{
	float: left;
	width: 95%;
	color: #555;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 9px;
	padding-left: 0px;
	font-size: 90%;
	font-style: normal;
}
dd.ingredients2 {
	float: left;
	width: 75%;
	color: #555;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 9px;
	padding-left: 0px;
	font-size: 90%;
	font-style: normal;
}
.right {
	text-align: right;
	float: right;
}
.left {
	float: left;
}
.eighty {
	font-size: 18px;
}
.eighty2 {
	font-size: 18px;
	color: #900;
}
.eighty2 a: {
	font-size: 18px;
	color: #900;
}
#functionflash {
	background-image: url(images/function1.jpg);
	background-repeat: no-repeat;
	height: 546px;
	width: 640px;
	margin-top: 10px;
	float: left;
}

