@charset "utf-8";
/*main.css
Cork And Bottle catering CSS file

Page width: 780px

OLD COLORS:
Pale Green: #cee7c6
Darker Green: #abd59d;
Main Brown: #522918;

NEW COLORS:
Very Pale Green (navigation) : E8F5E4
Pale Green (main body color): dbe7d7
Darker Green: bbd5b3
Text Brown: #522918
Desaturated brown: #533d30;
Beige Background image background: #EBFFCE
*/


body  {
	font-family: sylfaen, Georgia, "Times New Roman", Times, serif; 
	color:#522918;
	background-image:url('images/background.gif'); background-repeat:repeat;
	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 */

}

a img {
	border:none; /*no borders around linked images */
}

a {
	color: #833100;
}

hr {
	height:1px;
	border-width:0;
	color: #534035;
}

ul {
	list-style-type:square;

}

span.underline {
	text-decoration:underline;
}

#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px 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: #dbe7d7;
	padding:4px;
} 
#banner { 
	
	background-repeat:no-repeat;
	width: 100%;
	height: 100px;
	padding-bottom: 4px;  
}
 
#header { 
	background-color: #dbe7d7;

	width: 100%;
	height: 280px;
	padding-bottom: 10px;
} 

/*****************************************NAVIGATION******************************************************/
#navigation {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* 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-color:#E8F5E4;
	padding: 15px;
	overflow:hidden;
	border: double #533d30;
	font: bolder;
}

#navigation a {
	text-decoration:none;
	font: bolder;
}

#navigation a:hover {
	text-decoration:underline;
}


#navigation h2 {
	font-size:14px;
	padding-bottom:3px;
	margin-bottom:0px;
}

#navigation ul {
	padding-top:0px;
	padding-left:10px;
	margin-left:0px;
	margin-top:0px;
	list-style-type:none;
}

#navigation ul ul {
	list-style-type:square;
	list-style-position:inside;
}


/**************************************MAIN CONTENT*****************************************************/
#mainContent { 
	margin: 0 0 0 170px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#dbe7d7;
	color:#522918;
} 

#mainContent h1 {
	text-align:center; /*center the page title*/
}

p.big_first_letter:first-letter  {
	FONT-SIZE: 350%; FLOAT: left;
}

/* Contains a testamonial quote */
.testamonial {
	width: 120px;
	padding:10px;
	margin-left:20px;
	background-color:#E8F5E4;
	float:right;
	font-size:small;
}

.testamonial blockquote {
	margin:0;
}

.testamonial p.author {
	font-style:italic;
	text-align:center;
	margin:0;
}

.testamonial img {
	clear:both;
}
/***************************************Footer*********************************************************/
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */ 
} 
#footer p {
	text-align:center;
	font-size:small;
	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 */
}
.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;
}
