/* CSS menu by Joel Gaeddert, 2007 */
/* Based on a great article by Patrick Griffiths and Dan Webb from A List Apart --http://alistapart.com/articles/dropdowns/ */


/* General site styles */
body {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	background-color: White;
}

p {
line-height:22px;
}

#p_brewing {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 16px;
	margin: 2px;
}

#navigation {
	width: 750px;
	/*padding: 1em 0;*/
	/*border: 6px solid #003366;*/
	margin: auto;
}

#content {
	clear: both;
	width: 750px;
	/*padding: 1em 0;*/
	/*border: 6px solid #003366;*/
	margin: auto;
}

h2 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: Black;
}

h3 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 20px;
	/*text-indent: 20px;*/
	color: Gray;
	margin-bottom: 2px;
}

a {
	text-decoration: none;
}

/* Need to change the colors for the links...
a:link {
	color: #080;
}

a:visited {
	color: #790;
}

a:active {
	color: red;
}

a:hover {
	text-decoration: underline;
}
*/

/*  This is the css that constructs the menu */
ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

#nav_no_link {
	font-weight: bold;
	color: #999999;
}

#nav a {
	font-weight: bold;
	color: #999999;
}

#nav li li a {/* Second level list */
	display: block;
	font-weight: normal;
	color: #999999;
	padding: .5em;
}

#nav li li a:hover {/* Hover effects for second level lists */
	/*padding: 5px;*/
	border: 5px solid #999999;
	border-width: 0 5px;
	color: #003366;
	
	/*background-color:#99CCCC;*/
}

#nav li a:hover {/* Hover for main nav list */
	color: #003366;
}

li {/* The first level of the list--horizontal, relative so that the second level will be relatively positioned below*/
	float: left;
	position: relative;
	width: 123px;
	background-color: White;
	border-top: solid 1px #999999;
	border-bottom: solid 1px #999999;
	text-align: center;
}

li ul {/* The second level lists--positioned absolutely to get them out above the html */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	border-right: solid 1px #999999;
	border-left: solid 1px #999999;
	border-bottom: solid 1px #999999;
}

li > ul { /* Leave for IE */
	top: auto;
	left: auto;
}

li li {
	/* Second level lists */
	display: block;
	float: left;
	background-color: White;
	border: 0;
	text-align: center;
}

li:hover ul, li.over ul {/* Show child list when mouse hovers over parent--leave for IE */
	display: block;
	clear: left;
}


li#first { /* Add a border for the left most parent */
	border-left: solid 5px #999999;
}

li#last { /* Add a border for the right most parent */
	border-right: solid 5px #999999;
}


/* For dynamically placed images */
img.floatLeft { 
    border: 1px solid rgb(153, 153, 153);
    margin: 10px 10px 5px;
    padding: 5px;
    float: left;
}

img.floatRight { 
    border: 1px solid rgb(153, 153, 153);
    margin: 10px 10px 5px;
    padding: 5px;
    float: right;
}

#footer { 
    text-align: center;
	 font-size: 10px;
}.caption {
	font-size: 10px;
}
