﻿<!--
/* 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. */
div#store {
	background-color: #FFFFFF;
	margin-top: 12px;
}
.imgcenter {
	text-align: center;
}
li {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
ul {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
img {
	border:none
}
h6 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
h5 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
h4 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
h3 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
h2 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
h1 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0;
	padding: 0 0 6px 0;
	outline: 0;
	font-size: 100%;
}
iframe {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
object {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
applet {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
span {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
div {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 4 0 0px 0;
	padding: 0 0 1px 0;
	outline: 0;
	font-size: 100%;
}
body {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}
html {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0px 0;
	padding: 0 0 0 0;
	outline: 0;
	font-size: 100%;
}

/* all images have 0 border */
/* 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. */
body {
	background-position: 50% top;
	background: #000000 url('../images/TileBack_Original.jpg') repeat-x fixed 50%
top;
	line-height: 14px;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */	padding: 0 0 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
}
/* Commonly used to style page titles. */
h1 {
	line-height: 14px;
	color: #FFCC01;
	font-size: 16px;
	font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
	line-height: 14px;
	color: #6d9863;
	font-size: 12px;
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a:link {
	color: #ffcc01;
	font-weight: bold;
	text-decoration: none;
}
a {
	color: #ffcc01;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #ffcc01;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #ffcc01;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #ffcc01;
	text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #ffffff;
}
/* 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: #000000;
	width: 800px;
/* Sets the border properties for an element using shorthand notation */	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #header {
	background-color: #000000;
	background-repeat: no-repeat;
	background-image: url('images/headerbackhalloween.jpg');
	background-position: 50% top;
	height: 116px;
	line-height: 15px;
	font-size: 11px;
	color: #ffffff;
	padding: 10px 10px 10px 10px;
	background-color: #000000;
	background-repeat: no-repeat;
	background-image: url('../images/header.jpg');
}
#outerWrapper #topNavigation {
	width: 100%;
	margin: 0;
	height: 34px;
	text-align: center;
	background-image: url('../images/nav_up.gif');
	color: #FFFFFF;
}
#outerWrapper #topNavigation special {
	width: 100%;
	margin: 0;
	height: 71px;
	text-align: center;
	background-image: url('../images/nav_down.gif');
	color: #FFFFFF;
	background-color: #990000;
}
#outerWrapper #topNavigation ul {
	list-style-type: none;
	height: 35px;
}
#outerWrapper #topNavigation li {
	padding: 0px;
	margin: 0px;
	float: left;
	display: inline;
	height: 36px;
}
#outerWrapper #topNavigation a {
	margin: 0px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding: 11px 26px 8px 25px;
	font-size: 11px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #003300;
	float: right;
	line-height: 12pt;
	font-size: 12px;
	border-left: solid thin #000000;
/* Sets the left border properties for an element using shorthand notation */	width: 146px;
	color: #ffffff;
	text-align: center;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	height: 100%;
	font-weight: 700;
}
#outerWrapper #contentWrapper #rightColumn1 h2 {
	color: #ffcc01;
	font-weight: bold;
}
#outerWrapper #contentWrapper #rightColumn1 h1 {
	color: #ffff00;
}
#outerWrapper #contentWrapper #rightColumn1 ul {
	list-style-type: none;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #8b5f01;
	float: left;
	font-size: 12px;
	border-right: solid thin #000000;
/* Sets the right border properties for an element using shorthand notation */	width: 146px;
	color: #ffffff;
	line-height: 14pt;
	padding: 10px 5px 10px 5px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	font-weight: bold;
	text-align: center;
	background-color: #660000;
}
#outerWrapper #contentWrapper #leftColumn1 p {
	margin: 5px 0px 5px 0px;
}
#outerWrapper #contentWrapper #leftColumn1 a:link {
	font-weight: bold;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	color: #ffcc01;
	font-weight: bold;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	background-color: #000000;
	line-height: 15pt;
	font-size: 14px;
	color: #c0c0c0;
	background-repeat: repeat-y;
	background-position: center;
	margin: 0 159px 0 160px;
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px 1px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 473px;
}
#outerWrapper #contentWrapper #content h1 {
	color: #ffcc01;
	padding-bottom: 10px;
	padding-top: 10px;
}
#outerWrapper #contentWrapper #content h2 {
	color: #b3e862;
	font-size: 14px;
	font-weight: bold;
}
#outerWrapper #contentWrapper #content a:link {
	font-weight: normal;
}
#outerWrapper #contentWrapper #content a {
	font-weight: normal;
}
/* 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 {
	display: block;
	clear: both;
}
#outerWrapper #footer {
	padding: 10px 10px 10px 10px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	background-color: #000000;
	border-top-style: none;
	color: #ffffff;
	text-align: center;
}
#outerWrapper #footer a:active {
	color: #ffff80;
}
#outerWrapper #footer a:focus {
	color: #ffffff;
}
#outerWrapper #footer a:hover {
	color: #ffffff;
	text-decoration: underline;
}
#outerWrapper #footer a:visited {
	color: #ffffff;
	text-decoration: none;
}
#outerWrapper #footer a:link {
	color: #ffffff;
	font-size: x-small;
	text-decoration: none;
}
#outerWrapper #footer a {
	color: #ffffff;
	font-size: x-small;
	text-decoration: none;
}
.maindivpadding {
	margin-top: 10px;
	margin-bottom: 10px;
}
.specials_div {
	border-bottom: 1px solid #000000;
	padding-top: 10px;
	padding-bottom: 16px;
	border-left-color: #000000;
	border-right-color: #000000;
	border-top-color: #000000;
	border-width: 2px;
}
table        {
	width: 100%;
}
.specialsright_div {
	border-bottom: 1px solid #000000;
	padding-top: 3px;
	padding-bottom: 3px;
	border-left-color: #000000;
	border-right-color: #000000;
	border-top-color: #000000;
	border-width: 2px;
}
.headerright {
	float: right;
}
.pictureright {
	float: right;
	margin-left: 17px;
	margin-bottom: 13px;
}
.pictureleft {
	float: left;
	margin-right: 16px;
	margin-bottom: 15px;
}
.beerfooter {
	background-image: url('../images/footer_december.gif');
	background-repeat: repeat-x;
	width: 100%;
}


div#toplinks ul {
	list-style-type: none;
}
div#toplinks li {
	margin: 0px;
	padding: 0px;
	display: inline;
	float: right;
}
div#content2 {
	padding: 12px;
	color: #FFFFFF;
}

#outerWrapper #topNavigation a:hover {
	margin: 0px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding: 11px 26px 8px 25px;
	font-size: 11px;
	background-image: url('../images/nav_down.gif');
}

div#toplinks a {
	margin: 0px;
	padding: 0px 6px 0px 6px;
	display: block;
}

