/*
Master style sheet for all pages. 
tested: firefox 1, safari 1.2, ie 6, ie mac 5, opera 7.52, netscape 7.2
*/

body {
	color:#000;
	background: #fff url("../images/backgroundLook.jpg") no-repeat left top;
	margin:20px;
	padding:0px;
	font:12px verdana, arial, helvetica, sans-serif;
	}
body.fixed {
	background: #fff url("../images/backgroundLook.jpg") no-repeat center top;
	background-attachment: fixed;
	}
h1 {
	margin:0px 20px 10px 100px;
	padding:0px;
	font-size:20px;
	font-weight:900;
	color:#CC3333;
	}

h2 {
	font:bold 16px/18px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 5px 0px;
	padding:0px;	
	color:#000;

	}

h3 {
	font:bold 14px/16px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 5px 0px;
	padding:0px;	
	color:#000;

	}

p {
	font:12px/20px verdana, arial, helvetica, sans-serif;
	line-height:18px;
	margin:0px 110px 10px 100px;
	padding:0px 16px 0px 0px;
	}
.Content>p {margin:0px;}
.Content>p+p {text-indent:30px;}

ul {
	
	margin:0px 0px 10px 110px;}

li {
	font:12px/20px verdana, arial, helvetica, sans-serif;
	line-height:14px;
	margin:0px 0px 2px 0px;
	padding:0px 0px 0px 0px;
	}

a {
	color:#0043BF;
	font-size:11px;
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:600;
	text-decoration:underline;
	}
a:link {color:#0043BF;	}
a:visited {color:#0043BF;	}
a:hover {
	color:#09c;
	background-color:none;
	}



/* All the content boxes belong to the content class. */
.content {
	position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	top:100px;
	width:560px;
	min-width:120px;
	margin:0px 0px 20px 60px;
	border:0px solid black;	
	padding:2px 6px 0px 6px;
	z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
	}

.intro {
	position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width:360px;
	min-width:120px;
	margin:0px 500px 10px 160px;
	border:0px solid black;	
	padding:0px;	
	}

.secondP {	
	font:12px/20px verdana, arial, helvetica, sans-serif;
	font-weight:bold;
	line-height:18px;
	margin:120px 160px 0px 120px;
	padding:0px 16px 0px 0px;
	}

.thirdP {	
	font:12px/20px verdana, arial, helvetica, sans-serif;
	font-weight:bold;
	line-height:18px;
	margin:20px 0px 0px 80px;
	padding:0px 16px 0px 0px;
	}

.sm {
	font-size:9px;
	font-variant:small-caps;	
	}
.button {
	 vertical-align:bottom;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	}
	
#navAlpha {
	position:absolute;
	margin:0px 0px 0px 20px;
	width:160px;
	top:80px;
	left:-20px;	
	border:0px;	
	padding:0px;	
	z-index:1;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:128px;
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#navAlpha {width:163px;}

/*** formatting of the navigation ***/
#Nav ul {
	    list-style: none;			
		margin: 0;
		padding: 0;	
		border: none;
		}
#Nav li a {
	    display:block;
	    text-decoration: none;
		}

#Nav li a:hover {
	    display:block;
	    text-decoration: none;
		background:none;
		}
	



