@charset "UTF-8";
/* CSS Sections/Flags (use the FIND function and substitute the equals symbol for the dash in the following):
-Banner
-Structure (containers, tables, and corresponding classes)
-Navigation  (all components)
-Search
-Headings (and section title classes)
-pairings
-Lists
-Forms
-Links
MISC
	-General (body, paragraph, etc.)
	-Images (containers and classes)
	-Classes (not div specific)
	*/


/* =Banner
----------------------------------------------- */
.oneColFixCtrHdr #WBCheader {
	width:600px;
	padding:0;  
	margin:0;
}

/* =Structure (containers, tables, and corresponding classes)
----------------------------------------------- */

body {
	background: #ffffff;
	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: #000000;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
}

.oneColFixCtrHdr #WBCcontainer {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: none;
}

.oneColFixCtrHdr #WBCmainContent {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin: 0;
/*	background-image:url(/images/body_background.gif);
	background-repeat: repeat-y;*/
}

.oneColFixCtrHdr #WBCmainContent table{
	color: #000000;
	font-size:12px;
	line-height: 16px;
	margin-top: 0;
	margin-bottom: 10pt;
	font-family: "Times New Roman", Times, serif;
}

.oneColFixCtrHdr #WBCfooter {
	padding: 0 40px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: none;
	background-repeat:no-repeat;
	margin:0;
	clear: right;
}

#ResourcesWBC {
	width: 300px;
	float: right;
	padding: 4px;
	background-color:#FFFFFF;
	clear: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
}

#Resources_content{
	border: #000000 1px solid;
	padding: 10px;
}

#winners_list {
	line-height: 16px;
}

/*  Style pages: I've put all beer style pages within their own div tag so that they can be specifically styled. */
#beer_style_pages table {
	width: 100%;
}

#beer_style_pages table tr td {
	width: 33%;
	vertical-align:top;
}

/* The following definitions are for the style description tables that contain measurements, ect. */
#beer_style_pages #style_data_table {
	width: 60%;
	padding: 0;
	border-left: 1px solid #CCC;
	border-top: 1px solid #CCC;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 18pt;
	margin-left: 16pt;
}

#beer_style_pages #style_data_table td{
	padding: 8px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	clear: both;
}

#beer_style_pages #style_menu_table {
	width: 100%;
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 18pt;
	margin-left: 16pt;
}

#beer_style_pages #style_menu_table td{
	clear: both;
}

#highlight_box {
	display: block;
	background-color: #FFF;
	padding: .6em;
	border: solid 1px #333333;
}

#endorser_table{
	width: 80%;
}	

#endorser_table tr td{
	padding: 10px;
	vertical-align:text-top;
	width: 50%;
}

/* =Navigation  (all components)
----------------------------------------------- */
#WBCutilities{	
	display:none;	
	}
#WBCnavigation{
	display:none;	
}	
#WBCmenubar {
	display:none;
}
	
/* =Headings (and section title classes)
----------------------------------------------- */
.oneColFixCtrHdr #WBCheader h1 {
	display: none;
}

.oneColFixCtrHdr #WBCmainContent h1{
	color: #000000;
	font-size: 16px;
	margin-bottom: 1.2em;
	margin-top: 0;
}

.oneColFixCtrHdr #WBCmainContent h2{
	color: #000000;
	font-size: 14px;
	margin-bottom: 1em;
}

.oneColFixCtrHdr #WBCmainContent h3{
	color: #000;
	font-size: 12px;
	margin-bottom: .8em;
}

.oneColFixCtrHdr #WBCmainContent h4{
	color: #666666;
	font-size: 12px;
	font-style:italic;
	margin-bottom: .5em;
	text-decoration: underline;
}

.oneColFixCtrHdr #WBCmainContent h5{
	color: #666666;
	font-size: 12px;
	font-weight:bold;
	margin-bottom: 0;
	margin-top: 14px;
}

#ResourcesWBC #Resources_content h1{
	font-size: 16pt;
	text-transform:uppercase;
	margin-top: 14pt;
}

#beer_style_pages #style_data_table .heading {
	font-size: 16pt;
	text-transform:lowercase;
	color: #000000;
	font-weight:bold;
	text-align:center;
	vertical-align:middle;
}

#style_data_table .heading2 {
	font-size: 10pt;
	text-transform: capitalize;
	color: #000000;
	font-weight:bold;
	padding: 6px;
}

#beer_style_pages #style_menu_table .heading {
	font-size: 12pt;
}

#style_menu_table .heading2 {
	font-size: 8pt;
	text-transform: capitalize;
	color: #000000;
	font-weight:bold; }

/* =Lists
----------------------------------------------- */
.oneColFixCtrHdr #WBCmainContent ul, .oneColFixCtrHdr #WBCmainContent ol{
	color: #000000;
	font-size:12px;
	margin-left: 16pt;
}

.oneColFixCtrHdr #WBCmainContent li {
	line-height: 14pt;
	margin: 6pt 0;
}

.oneColFixCtrHdr #WBCmainContent ul li {
	list-style:circle;
	}
	
/* =Links
----------------------------------------------- */
	
.oneColFixCtrHdr #WBCmainContent p a, .oneColFixCtrHdr #WBCmainContent table a{
	color: #999999;	
	text-decoration: underline;
	font-size:12px;
}

.oneColFixCtrHdr #WBCmainContent ul li a{
	color: #999999;	
	text-decoration: underline;
	font-size:12px;
	}	
	
.oneColFixCtrHdr #WBCfooter a{
	color: #999999;	
	text-decoration: underline;
	font-size:12px;
}

#winners_list a{
	text-decoration: underline;
	color: #999999;	
	}	
	
a {
	color: #999999;	
	text-decoration: underline;
}

#beer_style_pages a{
	text-decoration:none;
	color: #000000;	
}

#highlight_box a {
	color: #999999;	
	text-decoration:underline;
	}	

#endorser_table tr td a{
	text-decoration: underline;
	color: #999999;	
}
	
/* =MISC General (body, paragraph, etc.)
----------------------------------------------- */

.oneColFixCtrHdr #WBCmainContent p{
	color: #000000;
	font-size:12px;
	margin-top: 0;
	margin-bottom: 1.2em;
	font-family: "Times New Roman", Times, serif;
}	

.oneColFixCtrHdr #WBCfooter p {
	font-family:"Times New Roman", Times, serif;
	font-size: 10px;
	text-align:center;
	color:#000000;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 30px 0 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#highlight_box p {
	color: #000000;
	font-size:12px;
	font-family: "Times New Roman", Times, serif;
}
	
/* =MISC Images (containers and classes)
----------------------------------------------- */
.floatrt {
	display: none;
}
.floatlt {
	display: none;	
}
.imagesWBC {
	display:none;
}
.imagesWBClt {
	display: none;
}

/* =MISC Classes (not div specific)
----------------------------------------------- */
#WBCfooter .savor{
	display: none;
	}	
	
#WBCfooter .ba{
	display: none;
	}
	
/*  The following styles are for the WBC Winners List */

.beer_name {
	/*color: #948B01;	*/
	font-weight: bold;
	margin-top:4px;
}
	
.award_titles{
	text-decoration: none;
	font-style: italic;
	font-weight:bold;
	font-size: 12px;
	}	
	
.company_titles{
	text-decoration: none; 
	text-transform: none;
	}

.medals{
	font-weight:bold;
	width: 45px;
	text-transform: lowercase;
	font-size: 12px;
	vertical-align:top;
	color: #000;	 
}

.wrap-1 {
	display: none;
}
.wrap-2 {
	display: none;
}
 
#beer_style_pages #style_data_table .background{
	background-color: #fff;
}

#style_data_table .background{
	background-color: #fff;
}

.caption_style {
	font-family: "Times New Roman", Times, serif;
	font-size: 8pt;
	text-align:right;
	line-height:  normal;
}

 
#beer_style_pages #style_menu_table .background{
	background-color: #ffffff;
}

.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;
}

.hide{ /* This class was created so that it is possible to have a header graphic for printed media.  For the "screen" media the header graphic for print will not be displayed.  But, for "print" media the graphic will be set to diplay within the print style sheet.*/
	display: block;
}
