.textholder {
	width: 600px;
	padding-left: 180px;
	margin: 0px;
	clear: both;
	font-size: 12px;
	line-height: 16px;
	font-weight: normal;
}


/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td {
	text-align: left;
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
}
/* Redefines the p tag */
p {
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	font-weight: normal;
}
h1 {
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: url(images/restaurant.jpg) no-repeat center -160px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}

div#header2 {
	background: url(images/food2.jpg) no-repeat center -150px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}

div#header3 {
	background: url(images/restaurant.jpg) no-repeat center -750px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}
div#header5 {
	background: url(images/food.jpg) no-repeat center -80px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}
div#header4 {
	background: url(images/restaurant.jpg) no-repeat center -400px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}
div#header6{
	background: url(images/restaurant.jpg) no-repeat center -250px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}

div#header7{
	background: url(images/wine.jpg) repeat-x center -250px;
	height: 130px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 20px none #622610;
}

.logo {
	position: absolute;
	left: 10px;
	top: -35px;
	z-index: 3;
	font: small-caps 16px "Times New Roman", Times, serif;
	color: #000000;
	visibility: visible;
}


/* Styles the table that serves as the container for the content and navigation.*/
table#container {
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}
/* Creates the div container for the footer. */
div#footer {
	height: 44px;
	width: 800px;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	font: 10px Arial, Helvetica, sans-serif;
	color: #E7C544;
	text-align: center;
	letter-spacing: 1pt;
}
div#footera {
	height: 44px;
	width: 618px;
	position: absolute;
	margin-right: auto;
	margin-left: auto;
	font: small-caps 10px Arial, Helvetica, sans-serif;
	color: #E7C544;
	text-align: center;
	left: 160px;
	top: 50px;
	z-index: 2;
}



div#footer p {
}
div#footer a:link {
	color: #E3BC43;
	text-decoration: none;
	letter-spacing: normal;
}
div#footer a:visited {
}
div#footer a:hover {
	text-decoration: underline;
	letter-spacing: 1pt;
}
div#footer a:active {
}



div#footer2 a:link {
	color: #E3BC43;
	text-decoration: none;
	letter-spacing: normal;
}
div#footer2 a:visited {
}
div#footer a:hover {
	text-d2ecoration: underline;
	letter-spacing: 1pt;
}
div#footer2 a:active {
}







/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
}
img.right {
	float: right;
}
clear {
	clear: both;
}
/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navContainer {
	width: 165px;
	float: right;
	position: absolute;
	left: 0px;
	top: 0px;
	margin: auto;
	z-index: 5;
	height: 370px;
	background: url(images/layoutbk.gif) -20px bottom;
}
.pagename {
	position: absolute;
	left: 240px;
	top: 67px;
	z-index: 3;
}

/* Removes any default margins or padding applied to lists. Floats the list to the left, which incorporates the child elements (i.e. the links) and provides a full-length background color that extends past the links.*/

ul#mainnav {
	float: none;
	width: 100%;
	margin: 0px 0px 3px;
	padding: 0px;
	list-style-type: none;
	}

/* Lists, by default, are block level elements, so the applying the inline style removes the line breaks of a block level element and causes the links to line up next to one another. We float the items left as some browsers have difficulty displaying the inline property correctly in this fashion. We remove all margins and padding and the bullet by setting the list style type to none.*/

ul#mainnav li {
	display: inline;
	float: left;
	margin: 0px;
	padding: 0px;
	border: 1px none #095939;
	color: #DDAD6C;
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	text-decoration: none;
	text-align: center;
	display: block;
	padding: 5px 8px;
	margin: 0px;
	border-right: 1px solid #CD8F2F;
	color: #FFFFFF;
	font: bold small-caps 11px Verdana, Arial, Helvetica, sans-serif;
	width: auto;
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	background: #9D4F29;
	color: #EFD368;
}
.gift_cards {
	position: absolute;
	left: 647px;
	top: 66px;
	z-index: 1;
}
.copyright {
	font: 10px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	margin-top: 12px;
}
.phone {
	font: bold 13px Arial, Helvetica, sans-serif;
	position: absolute;
	left: 624px;
	top: 87px;
	width: 161px;
}
/* ----------------- MAIN NAVIGATION2 ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav2 {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

/* Removes the default bullets. */
ul#mainnav2 li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav2 li a:link, ul#mainnav2 li a:active, ul#mainnav2 li a:visited  {
	font-size: 11px;
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 5px 0px 5px 12px;
	background: url(images/button2.png) no-repeat;
	margin-top: 2px;
	margin-bottom: 2px;
	border-top: 1px none #FFFFFF;
	border-right: 1px none #000000;
	border-bottom: 1px none #FFFFFF;
	border-left: 1px none #FFFFFF;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav2 li a:hover, ul#mainnav2 li a.current:link, ul#mainnav2 a.current:visited  {
	background: url(images/button.png) no-repeat;
	color: #000000;
	border-top: 1px none #FFFFFF;
	border-right: 1px none #000000;
	border-bottom: 1px none #FFFFFF;
	border-left: 1px none #FFFFFF;
}

#mainnav2 li a.current:link, #mainnav2 li a.current:hover, ul#mainnav2 a.current:visited  {
	color: #000000;
	background: url(images/button_on.png) no-repeat;
	border-right: 1px none #000000;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#top {
	background: #622610 url(images/barback.jpg) no-repeat;
	height: 15px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 1px solid #964C29;
	margin-top: 10px;
	position: relative;
}
.close {
	float: right;
	margin: 0px;
	padding-bottom: 30px;
}
