/* General styles */

	
	body {
		margin:0;
		padding:0;
		border:0;			/* This removes the border around the viewport in old versions of IE */
		width:100%;
		font-size:100%;
		min-width:500px;		/* Minimum width of layout - remove line if not required */
						/* min-width property does not work in old versions of IE */
	}

	.para {
	font-family: Helvetica,Arial,sans-serif;
	color:white;
	font-size:0.75em;
	}


	a.para:link {color:khaki;text-decoration:underline;}
	a.para:hover {color:palegoldenrod;text-decoration:underline;}

	H1 {
	font-family:Helvetica,Arial,sans-serif;
	color:white;
	font-size:1.75em;
	margin:20 auto;
	}
	
	img {
		margin:0 0 0 0;
		padding:0 0 0 0;
	}
	/* Header styles */
	#header {
		clear:both;
		float:left;
		width:100%;
		padding:0 0 0 0;
		margin:0 0 0 0;
	}

	#navbar {
	positon:relative;
	margin:0 0 0 0;
	background:black;
	}

	.navbar {
	font-family:Helvetica,Arial,sans-serif;
	color: gold;
	font-size:1.0em;
	text-align:center;
	}

	a.navbar:link {color:khaki;text-decoration:none;}
	a.navbar:visited {color:orange;text-decoration:none;}
	a.navbar:hover {color:palegoldenrod;text-decoration:underline;}



	#beertext {
	position:relative;
	width:75%;
	margin-bottom:0px;
	text-align:left;
	margin:0 auto;
	}

 	.beers {
	font-family: Helvetica,Arial,sans-serif;
	color:white;
	font-size:1.0em;
	text-align:left;
	}

	/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		background:black;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;			/* width of page */
		position:relative;
	}
	.col1,
	.col3 {
		float:left;
		position:relative;
		padding:2em 0 1.5em 0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, (top,right,bottom,left) */
		overflow:hidden;
	}

	.col2 {
		float:left;
		position:relative;
		padding:0 0 0 0;	/* no padding on left columns */
		overflow:hidden;
	}
	/* 3 Column settings */
	.threecol {
		/*background:black;		 right column background colour - uncomment to debug layout */
	}
	.threecol .colmid {
		right:0%;			/* width of the right column */
		/*background:white;		 center column background colour - uncomment to debug layout */
	}
	.threecol .colleft {
		right:75%;			/* width of the middle column */
	/*	background:red;	 left column background colour - uncomment to debug layout */
	}
	.threecol .col1 {
		width:71%;			/* width of center column content (column width minus padding on either side) */
		left:102%;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:25%;			/* Width of left column content (column width minus padding on either side) */
		left:4%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:0%;			/* Width of right column content (column width minus padding on either side) */
		left:79%;			/* make note of the brackets here:
						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
	}

	/* Footer styles */

	#credits {
	clear:both;
	float:left;		
	width:100%;
	background:black;
	font-family: Helvetica,Arial,sans-serif;
	color:white;
	font-size:0.75em;
	text-align:left;
	margin-left:5%;
	display:none;
	}

	#footer {
		clear:both;
		float:left;
		width:100%;
		background:black;
	}

	#footer p {
		text-align:center;
		padding:10px;
		margin:0;
	}
	
	/* --> */

