@charset "utf-8";

 *{
	margin:0; /* it's good practice to zero the margin and paddings to account for differing browser defaults */
	padding: 0;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CCC;
	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: #000000;
}

h1 {
	color: #5A0071;
	margin-top: 0.7em;
	margin-bottom: 0.8em;
}
p {
	margin-top: 1.0em;
}
h3 {
	margin-top: 1.4em;
	margin-bottom: 0.4em;
}
h4 {
	margin-top: 0.8em;
	margin-bottom: 0.1em;
}
hr {
	border:0;
	border-top: 2px dotted #950095;
	width: 75%;
	height: 1px;
	margin-top:1em;
	margin-bottom:0em;
	text-align: left;
}

 a:link {
	color: #039; 
	text-decoration: none;
}
 a:visited {
	color: #939; 
	text-decoration: none;
}
 a:hover, a:active, a:focus {
	color: #FF8040;
	text-decoration: underline;
}

/* -----All divs   */
#container {
	width: 955px;
	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: #FFC url(images/container_bg.gif) repeat-y;
} 

#header {
	background: #70B4FE;
	padding: 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. */
	height: 150px;
} 
#header img {
	border-style: none;
}

/* Define left sidebar */
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 15px 10px, 15px 10px; /* padding keeps the content of the div away from the edges */
	background: #FFC993;
	color: #000;
	position: relative;
	margin-top: 20px;
}

#sidebar1 ul {
	list-style: none;
	text-align: left;
	width: 190px;
	position: relative;
	float: left;
	white-space: nowrap;
/*	padding: 1px 1px 0 1px; */

}

#sidebar1 li {
	 /* display: inline-block; */
	 display: inline;
}

/* To make arrow.gif on flyout menu stay away from edge, make the width smaller than #sidebar1 width - <a> padding */
#sidebar1 a{
	display: block;
	line-height: 22px;
	width: 160px;
	padding: 5px 10px 5px 20px;
	/* text-indent: -15px; */
	background: #FFC993;
}
#sidebar1 ul ul a{
	width: 90px;
	padding-left: 20px;
	border-left: 1px dotted #FFF;
}

#sidebar1 ul a:hover, a:active, a:focus{
	background:#09c; 
	color:#ffc;
	text-decoration: underline;
	} 
	
/***** sub level menu. Set absolute position so they take up no space. Hide the submenu by making it off screen.*****/
#sidebar1 ul ul {
	position: absolute;
	left: -9999px;
	list-style: none;
	 /* visibility: hidden;      */
	}	
#sidebar1 ul#toplevel{
position: absolute;
	left: 0; top: 0;}
	
/** make the second level visible when hovering on the first level list **/
#sidebar1 ul li:hover>ul{
	left:100%; 
	margin-top: -32px;
	margin-left: 0px;
	/* visibility: visible;   */
	}
	
#sidebar1 ul a:hover ul{ left: 100%;} 
#sidebar1 li a.fly {
	background: url(images/arrow.gif) no-repeat right center;
	}
/** a.hover property cannot cascade to a.fly:hover, have to define the a.fly:hover. */
 #sidebar1 li a.fly:hover {
	background:#09c url(images/arrow.gif) no-repeat right center;
	} 
/********** Sidebar 2 on the right side ********/	
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FEE3BC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px; /* padding keeps the content of the div away from the edges */

}
#newscenter {
	border: 1px dotted #999;
	padding: 10px;
	margin: 0.8em 0px;
	font-size: 90%;
	text-align: left;
	color: #000;
}
#newscenter h3 {
	margin: 0 0 0.5em 0;
}
#sidebar2 #newscenter ul {
	list-style: none;
}

#sidebar2 #newscenter li {
	margin: 0.5em 0;
}
#sidebar2 #form #jumpMenu {
}
#anchor {
	font-size: 90%;
	padding: 10px;
	margin: 0.8em 0;
	border: 1px dotted #999;
}
#anchor h3 {
	margin: 0 0 0.5em 0;
}

#anchor ul {
	list-style-position: inside;
}

/**** Main Content ****/
#mainContent {
	margin: 0 230px 0 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px;
	text-align: left;
} 
#mainContent ol {
	margin-left: 1.7em;}
#recipemain .description .warning {
	font: 14px Verdana, Geneva, sans-serif;
}
/*#mainContent ol li {
	margin-left: 1em;}	*/

ul{
	list-style-position: inside;}
ul.ingredient li{
	padding-left: 15px;
	text-indent: -15px;
	margin-left: 0.7em;
	}
/******Footer ********/
#footer {
	background:#D88405;
	font-size: 80%;
	text-align: center;
} 
#footer .first {
	border: none;
}
#footer ul {
	padding: 10px;
}
 

#footer li {
	list-style: none;
	display: inline;
	padding: 0 0.6em;
	border-left: 1px solid #000;
}


#footer a:hover {
	color: #ffc;
	text-decoration: underline;
}
#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-bottom: 10px;/* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}


.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;
}
.warning {
	color: #E46D01;
}


.nodotlist {
	list-style: none;
}
.bottomgap {
	margin-bottom: 0.8em;
}
.recipetitle {
	color: #9D009D;
}

.description {
	color: #404000;
	font-weight: bold;
	font-size: 95%;
	font-family: "Comic Sans MS", cursive;
}

.noborder {
	border: none;
}
