@charset "utf-8";

@import  'reset.css'; 


/* CSS Document */

/*  Tribe2           Client Name  Project Name  |  LayOut 
	 Author           Bryan Helfrich     bryan@tribe2studios.com |   Patrick Hildreth    patrick@tribe2studios.com 
	 Version         1.0 |  03/17/2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

body  {
	background-color: #000;
	margin: 0; 
	padding: 0;
	text-align: center; 
	border: 1px solid #000000;
}


#container { 
	width: 960px; 
	background: #230B0F;
	margin: 0 auto; 
	border: 1px solid #000000;
	text-align: left;
} 


#branding { 
	background: #000; 
	height:120px;
	padding:0px; 
}
#address {
	
	padding-left:150px;
	height: 76px;
	width:500px;
	
}

#logo {
	background-image:url(../images/arch/CafeAlDente.png);
	background-repeat:none;
	height:80px;
	width:300px;
	margin-left:300px;
	padding-top:10px;
}
#branding 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;

}


#topNav {
	height:20px;
	text-align:center;
	padding:5px;
	background-color:#000;
	border-bottom:1px solid;
	border-color:#fff; 
		
	}

#topNav li {
		display:inline;
		padding:40px;
	}
	
	
#sidebar {
	float: left;
	width: 310px; 
	padding: 40px 40px 20px 20px;
}


#mainContent { 
	margin: 0 0 0 20px; /* 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: 40px 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#sideBarFocus{
	background-color:#D7C8AA;
	padding:10px;
	border: #fff solid 1px;
}

#HomeContent { 
	margin: 0 0 0 0px; /* 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: 0px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}


#footer { 
	padding: 20px 20px 20px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	border-top:1px solid;
	border-color:#fff; 
} 


.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;
	padding:10px;
}


.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	padding:10px;
}


.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;
}

