/*Style sheet for AM Supper Club website*/

body
{
	font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
	color: #000;
	background-color: #FFF;
	border: 0;
	padding: 0;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	min-width: 600px; }
			
h1	{ font-size: 1.2em;
	font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
	background-color: #FFF;
	color: #000;
	border: 3px #FFF solid;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	min-width: 800px;
	max-width: 800px;
	line-height: 1.4em;
	text-indent: 30px; }
			
h1.small	{ font-size: 1em;
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			background-color: #FFF;
			color: #000;
			border: 0px; }
			
h2		{ font-size: 1.1em;
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			font-style: italic;
			color: #000;
			margin-top: 20px;
			margin-right: 0px;
			margin-bottom: 10px;
			margin-left: 0px;
			line-height: .9em;
			text-indent: 30px; }


h4, h5, h6	{ font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace; }

p		{ font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			color: #000;
			font-size: .8em;
			margin-top: 20px;
			margin-right: 30px;
			margin-bottom: 30px;
			margin-left: 30px;
			line-height: 1.4em; 
			text-align: justified; }
			
em		{ font-family: inherit;
			color: #000;
			font-style: italic; 
			font-size: inherit; }
			
ul		{	font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			color: #000;
			font-size: .8em;
			margin: 0px; 
			line-height: 1.4em; }
			
li		{ list-style-type: none;
			list-style-position: outer;
			text-indent: -10px; }

em		{ font-weight: bold; }

em.big	{ font-size: 1.4em;
			font-weight: bold;
			font-style: normal;
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			background-color: #FFF;
			color: #000; }

.center	{ text-align: center; 
			margin-left: 30px;
			margin-bottom: 20px;
			margin-right: 30px;
			margin-top: 20px;}
			
a:link	{ color: #666; 
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			text-decoration: none;
			font-size: inherit;
			line-height: 1.7em; }
			
a:visited { color: #666;
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			text-decoration: none; 
			font-size: inhherit;
			line-height: 1.7em; }
			
a:hover	{ background: url('images/box_long.gif');
			background-repeat: no-repeat;
			background-position: center;
			width: 100%;
			color: #F93;
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			font-weight: bold;
			font-size: inherit; 
			line-height: 1.7em; }
			 
a:active { color: #666;
			font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			text-decoration: none; 
			font-size: inhherit;
			line-height: 1.7em; }
				
#header p	{ font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
			color: #000;
			font-size: .8em;
			margin-top: 15%;
			margin-right: 10%;
			margin-bottom: 0%;
			margin-left: 30%;
			line-height: 1.4em; 
			text-align: justified;
			clear: both; 
			width: 100%; }
			
#footer	p 	{ font-family: "American Typewriter", "Courier New", Courier, "Andale Mono", monospace;
				color: #000;
				font-size: .6em;
				text-align: center; 
				margin-top: 20px;
				margin-bottom: 10px;
				margin-right: 0px;
				margin-left: 0px; }
			
/* The following hack-free, cross-browser compatible 3-column layout help thanks to http://matthewjamestaylor.com. */
			
			/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		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,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, make it whatever value you need */
		overflow:hidden;
	}
	/* 3 Column settings */
	.threecol {
		background:#FFF;		/* right column background colour */
	}
	.threecol .colmid {
		right:33%;			/* width of the right column */
		background:#FFF;		/* center column background colour */
	}
	.threecol .colleft {
		right:34%;			/* width of the middle column */
		background:#FFF;	/* left column background colour */
	}
	.threecol .col1 {
		width:30%;			/* width of center column content (column width minus padding on either side) */
		left:102%;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:21%;			/* Width of left column content (column width minus padding on either side) */
		left:47%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:21%;			/* Width of right column content (column width minus padding on either side) */
		left:85%;			/* Please 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) */
	}