@charset "utf-8";
body {
	font: 76% Verdana, Helvetica, "helvetica neue", Arial, sans-serif;
	background: #001a49;
	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 */
	color: #fff6eb;
}
p {
	font-size: 1.1em;
	text-align:left;
}
.italic {
	font-style:italic;
}
.bold {
	font-weight:bold;
}
.bolditalic {
	font-style:italic;
	font-weight:bold;
}
img {
	/*border: 1px solid #666666;*/
	border: none;
}
#header img {
	border: none;
}
.noborder {
	border: none;
}
a {
	color:#fff6eb;
	/*text-decoration:none;*/

}
a:link {
	color:#fff6eb;
}
a:visited {
	color:#fff6eb;
}
a:hover {
	text-decoration:underline;
}
h1, h2, h3, h4 {
	color: #dd941a;
	font-family: georgia, Times, "Times New Roman", serif;
	font-style: normal;
	font-variant:normal;
	font-weight: bold;
	margin-top: 1.5em;
	margin-bottom: 1em;
}
/*#contentholder h1,h2,h3,h4 {
	color: #ffcc00;

}*/
h1, h2, h3, h4 a:link {
	color: #dd941a;
}
h1 {
	font-size: 1.6em;
}
h2 {
	font-size: 1.4em;
}
h3 {
	font-size: 1.3em;
}
h4 {
	font-size: 1.2em;
}
.indent {
	padding-left: 30px;
}
td {
	vertical-align:top;
	/*border: solid 1px #666666;*/
	padding: 2px;
}
.headfoot {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-style: normal;
	font-weight: normal;
	color: #000000;
}
#maincontainer {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background: #FFFFFF;*/
	background-image:url(../images2010/bg-main-blue-bee.jpg);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 2px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background: #FFFFFF;
	background-image:url(../images2010/bg-main-bee.jpg);
	background-repeat:no-repeat;*/
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 2px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	/*background: #DDDDDD;*/ 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header 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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	margin-right: 20px;
	width: 180px; /* 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: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	border: 1px solid #666666;
}
#mainContent {
	margin: 0 220px 0 0; /* the right margin on this div element creates the column down the right 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 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContentwide {
	margin: 0px; /* the right margin on this div element creates the column down the right 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 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#footer {
	padding: 25px 25px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/*background:#DDDDDD;*/
	background-image:url(../images2010/footer-1b-blue.jpg);
	background-repeat:no-repeat;
	height: 75px;
	text-align: right;
	font-size: 0.9em;
}
#footer p {
	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 */
	text-align: right;
	font-size: 0.8em;
}
.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;
}
/* navigation */
#navbar {
	height: 30px;
}
/* begin css tabs */

ul#tabnav { /* general settings */
	text-align: left; /* set to left, right or center */
	margin: 0px 15px 0px 15px; /* set margins as desired */
	font: bold 1.1em tahoma, verdana, arial, sans-serif; /* set font as desired */
	border: 1px 0px 1px 0px solid #910845; /*set border COLOR as desired */
	list-style-type: none;
	padding: 3px 10px 3px 35px; /* THIRD number must change with respect to padding-top (X) below */
	background-color:#990000;
}
ul#tabnav li { /* do not change */
	display: inline;
}
body#tab1 li.tab1, body#tab2 li.tab2, body#tab3 li.tab3, body#tab4 li.tab4, body#tab5 li.tab5, body#tab6 li.tab6, body#tab7 li.tab7, body#tab8 li.tab8 { /* settings for selected tab */
	/*border: 1px solid #0000ff;  set border color to page background color */
	background-color: #990000; /* set background color to match above border color */
	text-transform:uppercase;
	color: #fff6eb;
}
body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a, body#tab5 li.tab5 a, body#tab6 li.tab6 a, body#tab7 li.tab7 a, body#tab8 li.tab8 a, body#tab9 li.tab9 a { /* settings for selected tab link */
	background-color: #990000; /* set selected tab background color as desired */
	color: #fff6eb; /* set selected tab link color as desired */
	position: relative;
	top: 0px;
	padding-top: 3px; /* must change with respect to padding (X) above and below */
}
ul#tabnav li a { /* settings for all tab links */
	padding: 3px 8px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
	/*border: 1px solid #666;  set border COLOR as desired; usually matches border color specified in #tabnav */
	background-color: #990000; /* set unselected tab background color as desired */
	color: #dd941a; /* set unselected tab link color as desired */
	margin-right: 2px; /* set additional spacing between tabs as desired */
	text-decoration: none;
	border-bottom: none;
}
ul#tabnav a:hover { /* settings for hover effect */
	background: #990000; /* set desired hover color */
	color: #fff6eb;
}
/* end css tabs */
/* spry stuff */
.beerdata {
	text-transform:uppercase;
	padding: 2px;
}
.beerdatastaff {
	font-size: 1em;
	vertical-align:top;
	padding: 2px;
}
.beerdatadb {
	text-transform:uppercase;
	font-size: 0.8em;
	text-indent: 0;
}
.beerdatadbbig {
	list-style:none;
	font-size: 1.1em;
	text-indent: -35px;
	line-height: 30px;
}
.beerdatadbregular {
	font-size: 0.9em;
}
.beerdatalist {
	text-align:left;
	font-size: 0.8em;
}
.beerdataname {
	font-size: 1.1em;
	font-weight:600;
	display: block;
	background-color: #036103;
	color: #FFFF33;
	padding: 2px;
}
.beerdatabrewery {
	font-size: 1.1em;
	font-weight:600;
	padding: 2px;
}
.beerdataimage {
	width: 113px;
}
.beerdatabreed {
	width: 180px;
}
.myHoverClass {
	color: #ffff33;/*background-color: #ffff33;*/
}
.mySelectClass {
	color: #ffff33;	/*background-color: #036103;*/
}
.product {
	cursor:pointer;
	list-style:none;
	line-height: 2em;
	text-indent: -15px;
	display:inline;
} 
/* end spry stuff*/
