/* This CSS originally started life as a demo on Blue Robot.com.  I've modified it
for my needs here, but I wanted to give credit to that site for the help.  Here is
a link:  http://www.bluerobot.com/web/layouts/.  Again thanks for the demo, without
it this site wouldn't work like it does. */

body {
	margin: 0px;
	padding: 0px;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size:12px;
	color: #666;
	background-color:white;
	}

h1 {
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:28px;
	line-height:28px;
	font-weight:900;
	color:#ccc;
	}

a {
	color:#09c;
	font-size:11px;
	text-decoration:none;
	font-weight:600;
	font-family:verdana, arial, helvetica, sans-serif;
	}

a:link {
	color:#09c;
	}

a:visited {
	color:#07a;
	}

a:hover {
	background-color:#eee;
	}

/* Navigation Bar Definitions */
/* Some more CSS code that I pilfered to achieve what I was after - a horizontal
link bar that acts like a table, but much better than one. */	
div#navbar {
   position: absolute;
   top: 190px;
   left: 0px;
	height: 30px;
	width: 100%;
	text-align: right;
	border-top: solid #000 1px;
	border-bottom: solid #000 1px;
	/*background-color: #ccffcc;*/
	background-color: #038181;
}

div#navbar ul {
	margin: 0px;
	padding: 0px;
	font-family: Sans-Serif;
	font-size: 11px;
	color: #fff;
	line-height: 30px;
	white-space: nowrap;
}

div#navbar li {
	list-style-type: none;
	display: inline;
}

div#navbar li a {
	font-family: Sans-Serif;
	font-size: 10px;
	text-decoration: none;
	padding: 7px 10px;
	color: #fff;
}

div#navbar li a:link {
	color: #fff;
}

div#navbar li a:visited {
	color: #fff;
}

div#navbar li a:hover {
	font-weight: bold;
	color: #FFF;
	background-color: #003300;
}
/* Done with the navbar */

/* KEVIN'S DIV DEFINITIONS */
/* These DIVs give me a bit of control over the look of certian text entities
that make up the "style" of the page/site. */
.boldtext {
	font: verdana, arial, helvetica, sans-serif;
	color: #009999;
	font-size: 12px;
	font-weight: 900;
	}

.clear {
	clear: all;
	}

.footertext {
	font-family:Arial,Helvetica,Verdana,Sanserif;
	color:#ffffff;
	font-size:11px
	}

.logo {
	font-family: Sans-Serif,Verdana;
	color: #ffffff;
	font-size: 28px;
	font-weight: 500;
	position: absolute;
	top: 75px;
	left: 225px;
	}

.name {
	font: verdana, arial, helvetica, sans-serif;
	color: #009999;
	font-size: 20px;
	font-weight: 500;
	}

.title {
	font-family: Arial,Verdana;
	color: #009999;
	font-size: 12px;
	font-variant: small-caps
	}
/* End of Kevin's DIVs */


#header {
   text-align: center;
	margin: 0px 0px 10px 0px;
	padding: 17px 0px 0px 10px;
	/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and
	 bottom border widths] */
	height: 169px; /* 150px + 17px + 2px = 169px */
	border-style:solid;
	border-color: black;
	border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px
	 */
	line-height:32px;
	/*background-color: #006666;*/
	background-color: #e6c1c9;

	/* 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;
	height: 169px; /* the correct height */
	}
	
	/* 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>#header {
	height:169px;
	}

#content {
	position: absolute;
	top: 235px;
	left: 0px;
	width: 500px;
	margin:0px 50px 50px 225px;
	padding:10px;
	}

#content>p {
	margin:0px;
	}

#content>p+p {
	text-indent:30px;
	}
	
/* I'm actually going to be using the "menu" area to display a column of pictures
-- I hope!  :) */
#menu {
	position:absolute;
	top: 235px;
	left: 10px;
	width: 178px;
	height: 1000px;
	padding: 0px;
	background-color: #eee;
	border: 1px dashed #999;
	line-height: 17px;
	/* trying to get a repeating background image running up the page*/
	background-image: url("images/border.png");
	background-repeat: repeat-y;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family: inherit;
	width: 178px;
	}
	
/* Again, "be nice to Opera 5". */
body>#menu {
	width: 178px;
	}
