/* 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: 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. dk grey font color: #2a2d2e; */
body {
	background-color: #aec7f0;
	border-top-style: none;
	color: #18408b;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 10pt;
	line-height: 16px;
	margin: 5px 5px 5px 5px; /* 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) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}

img { border: none; } /*turns off borders around linked pictures*/

.strong {
	color:#009900;
}
/* Commonly used to style page titles. */

.footnote {
	font-family:Tahoma,Helvetica,sans-serif;
	font-size:8pt;
	color:#009900;
}
blockquote
{
	font-family:Tahoma,Helvetica,sans-serif;
	font-size:10pt;
	color:#009900;
	
}
h1, h2, h3, h4, h5, h6 {
	text-align: center;
	}


h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16pt;
	font-weight: bold;
	line-height: normal;
}
/* Commonly used to style section titles. */
h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14pt;
	font-weight: bolder;
	line-height: 18pt;
	margin: 10px auto;
}
h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11pt;
	font-weight: bolder;
	line-height: 14pt;
	margin: 10px;
}
/* Sets the style for unvisited links. */
a 	{
	color: #18408b; 
	text-decoration: underline;
}
a:visited	{
	color: #5283D4;
	font-weight: bold;
	text-decoration: underline;
}
a:hover {
  	background-color: #fbdb6d;  
  	color: #2564d9;
  	font-weight: bold;
  	text-decoration: none;
  	padding: 2px 5px ;
}

/* 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: #F6DDBD;
	margin: 5px auto 0 auto; 
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
	border: solid #148698 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
/*	border: solid #D8B825 3px;	*/
		}

		/*HEADER*/
#OuterWrapper #head {
	background-color: #19408B;
	text-align:center;
	height: 230px;
	width: 100%; 
	border-bottom: solid #148698 2px;
	margin-bottom: 10px;
	}
#OuterWrapper #head img {
	display:block;
}	

#OuterWrapper #head .tagline
		{ 
		background-image: url(./images/zanzibar_lower_logo_v1.png);
		font: italic bold 15pt/1.3em Georgia, Sans-Serif; 
		color: #18408b;
		height: 30px;
		text-align: center;

		margin: 0px auto;
		padding: 0px 0px 0px 0px;
}

		/*MENU BAR*/
		
#OuterWrapper  #menu {
	background-color: #F6DDBD;
	/*border-right: solid 1px #AAA; */ 
	/* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 10px 10px 5px;
	width: 12em;
	margin-top: 15px; 
	margin-left: 5px;
	border: solid #2865d7 1px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	}
#OuterWrapper #menu ul {
list-style-type: none;
list-style-position: inside;
margin: 0px;
padding: 0px 0px 0px 15px;
}

#OuterWrapper #menu ul li{
	margin-bottom: 5px;
}


#OuterWrapper #menu a:link {
 		/*font-weight: bold;*/
}
/* Sets the style for visited links. */
#OuterWrapper #menu a:visited {

	color: #5283D4;
	font-weight: bold;
	text-decoration: underline;
}
/* Sets the style for links on mouseover. */
#OuterWrapper #menu a:hover {
  background-color: #fbdb6d;  
  color: #2564d9;
  	font-weight: bold;
  	text-decoration: none;
  	padding: 5px 5px 5px 20px;
}
/* Sets the style for a link that has focus. */
#OuterWrapper #menu a:focus {
  color: #ca0009;
}
/* Sets the style for a link that is being activated/clicked. */
#OuterWrapper #menu a:active {
  color: #E9D2B3
}



#OuterWrapper #menu img.food_cert	{
	display:block;
	float: left;
	padding: 10px 10px 10px 5px;
	margin-top: 15px; 
	margin-left: 5px;

}

	
		/*CONTENT AREA*/	
#OuterWrapper #ContentWrapper {
	margin: 25px 60px 20px 16em; 
	padding: 5px 10px 0px 10px;
	border: solid 1px  #2865d7;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;

	}
#OuterWrapper #ContentWrapper p {
	text-align: justify;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px;
} 	

#OuterWrapper #ContentWrapper .news_item {
	margin: 10px;
	border-bottom: solid 1px #148698;
}
#OuterWrapper #ContentWrapper .menu td {
width: 40%;
padding: 0 5%;
vertical-align: top;
}
#OuterWrapper #ContentWrapper .menu td h1
{
	font-size: 13pt;
	font-weight: bold;
	margin-bottom: 1em;
}
#OuterWrapper #ContentWrapper .meal_deal
{ 
	margin: 0px auto;
	padding-bottom: 1em;
	width: 100%;
	text-align: center;
 }

#OuterWrapper #ContentWrapper .meal_deal h1
{
	font-size: 15pt;
	font-weight: bold;
	margin-bottom: 1em;
	text-align: center;
}	
#OuterWrapper #ContentWrapper .meal_deal h3
{
	font-size: 13pt;
	font-weight: bold;
	margin: 0.5em auto;
	text-align: center;
	}
#OuterWrapper #ContentWrapper .meal_deal h2
{
	font-size: 14pt;
	font-weight: bold;
	text-align: center;
}

#OuterWrapper #ContentWrapper .meal_deal p
{
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
}
#OuterWrapper #ContentWrapper .takeoutdeals p	
{
		font-size: 13pt;
		font-weight: bold;
		text-align:center;

}

/* 		GALLERY				 */

#OuterWrapper #ContentWrapper #gallery	{
		margin: 20px 0px;
} 

#OuterWrapper #ContentWrapper #gallery .pic 	{
    float:left;
    display: inline;
    margin: 0 10px 10px;
	border: 1px solid #8E9FD0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	}
#OuterWrapper #ContentWrapper #gallery .pic img 	{
	display: block;
	margin: 5px auto;
	padding: 5px 0;

}

#OuterWrapper #ContentWrapper #gallery .pic a	{
	text-decoration:none;
}
#OuterWrapper #ContentWrapper #gallery .pic a:visited	{
	text-decoration:none;
	font-style: normal;
	padding:0;
}
#OuterWrapper #ContentWrapper #gallery .pic a:hover	{
	text-decoration:none;
	font-style: normal;
	padding: 0;
}
#OuterWrapper #ContentWrapper #gallery .pic p	{
	width:106px;
	padding: 0 2px;
	line-height: 1.2em;
	text-align:center;
	height: 3.6em;
	overflow: hidden;
}


#OuterWrapper #ContentWrapper #gallery .placethis	{
	margin: 0px -75px 0px 0px;
	width: 75px;
	position:relative;
	top: 15px;
	right: 75px;
}

/* 		END	GALLERY				 */


/* 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;
  font-size: 1px;
  line-height: 1em;
	}

#OuterWrapper #ContentWrapper #map_page {
	margin: 10px auto;
}	

/*		PRODUCE		*/	

#OuterWrapper #ContentWrapper #Produce 	{
	margin: 0;
}

#OuterWrapper #ContentWrapper #Produce h2 	{
	margin: 10px 0 20px 0;
}

#OuterWrapper #ContentWrapper #Produce div.Art_Image  	{
	float: left;
	margin: 0 -300px 10px 10px;
	width: 300px;
	vertical-align: middle;	
	border-right: 300px solid transparent;
	}
	
#OuterWrapper #ContentWrapper #Produce .Art_Image img  	{
	margin: 0 auto;
	vertical-align: middle;
	width:300px;
	}
	

#OuterWrapper #ContentWrapper #Produce div.Art_Item 	{
	float: left;
	width: 300px;
	margin:0 0 10px 25px;
	padding:0;
	min-height:180px;
	}	

#OuterWrapper #ContentWrapper #Produce .Art_Item > p 	{
	text-align: justify;
	padding:0 25px;
	margin: 0;
	}
	
#OuterWrapper #ContentWrapper #Produce p.Price	{
	text-align:right;
	font-weight:  bold;
	padding-right: 50px;
		
}

.clearfloat 	{

	clear: both;
	height: 1px;
	border-bottom: 1px solid #69A5DB;
	margin: 0px 50px 10px 30px;
}

/* 		STYLES FOR IMPORTED NEWS	 */

#homepage_news  	{
	margin:20px 0px 0px;
	padding: 0 20px;

}

#homepage_news	h3 {
	margin:10px 40px 0px;
	padding-top:5px;
	border-top: 1px solid #2865D7;
	font-family: Georgia, serif;
	font-style: italic;
	font-size:12pt;
}

#OuterWrapper #ContentWrapper #homepage_news p.date	
 {
	margin:0px auto;
	font-weight: bold;
}

	
/* 			BREAKFAST MENU	 */	
#OuterWrapper #ContentWrapper #Breakfast 	{
	margin: 20px 50px;
}	
#OuterWrapper #ContentWrapper #Breakfast h2
	{
		text-align:left;
		margin-bottom:5px;
	}
#OuterWrapper #ContentWrapper #Breakfast p	{
	margin:0;
	padding:0;
}
#OuterWrapper #ContentWrapper #Breakfast p.item	{
	margin: 0 0 5px 0;
	font-size: 15pt;
	font-weight: bold;
	text-align: left;
}
#OuterWrapper #ContentWrapper #Breakfast p.price	{
	font-size: 14pt;
	font-weight: bold;
	text-align: right;	
}
#OuterWrapper #ContentWrapper #Breakfast p.comment	{
		font-size: 12pt;
		font-weight: bold;
		font-style:  italic;
		text-align: left;
		

}
#OuterWrapper #ContentWrapper #Breakfast p.description	{
		font-size: 10pt;
		font-weight: normal;
		text-align: justify;
		padding: 0 120px 0 20px;
}
#OuterWrapper #ContentWrapper #Breakfast .rule	{
	height: 1px;
	width: 100%;
	display:block;
	border-bottom: 1px solid #69A5DB;
	margin: 10px auto;
}





/* 		END	BREAKFAST MENU	 */	

/* FOOTER */

#OuterWrapper #footer {
	background : #F5E6B0 url('./images/fairtrade_50x60.png') no-repeat 30px center;
	border-top: solid 1px #8e9fd0; /* Sets the top border properties for an element using shorthand notation */
	padding: 5px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#footer p {
text-align: center;
font-weight: bold;
margin: 0px;
padding: 5px 0px 0px 117px;
}

#footer p.footContentBy {
padding-top: 5px;
	}
#footer p.footDesignBy {

	font-size: 8pt;
	color: #D8B825;
	}
		
		
#footer img.wifi		{
	 float:right; 
	padding: 10px 15px 0px 0px;
}




