/* -------------------- layout -------------------- */
html {
	/* positioning */
	overflow: hidden;
	/* styling */
    color: #ffffff;
}

body {
	/* positioning */
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	/* styling */
	background: black;
    color: white;
	font: 10pt, "Bitstream Vera Sans", "DejaVu Sans", "Lucida Sans", sans-serif;
}

#header {
	/* positioning */
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 85px;
	overflow: auto;
	/* styling */
	text-align: left;
	color: white;
	font: 13pt, "Monotype Corsiva", "URW Chancery L", "Comic Sans MS", cursive;
}

#box-left {
	/* positioning */
	padding: 0;
	margin: 0;
	position: absolute;
	top: 86px;		/* account for header.top + header.height */
	left: 0px;
	width: 0px;
	bottom: 0px;
	overflow: auto;
	/* styling */
	text-align: center;
	background: black url(i/background.png) scroll;
	margin-top: 1em;
}

#box-main {
	/* positioning */
	padding: 0;
	margin: 0;
	position: absolute;
	top: 86px;		/* account for header.top + header.height */
	left: 0px;	/* account for box-left.left + box-left.width */
	right: 0px;
	bottom: 0px;
	overflow: auto;
	/* styling */
	background: black url(i/background.png) scroll;
	text-align: left;
	margin-top: 1em;
}


/* -------------------- individual styles -------------------- */
.boxed
{	border: solid 1px;
}

.myInfoBox {
	margin: 10px;	/* this must be at least = radius used when creating myInfoBox curvycorner */
	padding: 5px;
    text-align: left;
/*	background-color: red;*/
/*	background: black url(i/background.png) scroll;*/
    border: 1px solid red;
    /*color: #ffffff;*/
}

.dropcap {
	float: left;
	width: 1em;
	font-size: 3em;
	line-height: 80%;
}
.dropcapNarrow {
	float: left;
	width: 0.75em;
	font-size: 3em;
	line-height: 80%;
}

.para {
	width: 50ex;
    text-align: left;
/*	border: dashed 1px green; /* debugging */
}

.paraWithImage {
	width: 400px;
    text-align: left;
/*	border: dashed 1px green; /* debugging */
}

.paraBesideImage {
	width: 600px;
	clear: left;
	text-align: left;
/*	border: dashed 1px red; /* debugging */
}
.paraBesideImage h2 {
	text-align: center;
}
.paraBesideImage img {
	float: left;
	clear: left;
	margin: 5px;
}

.oneLiner {
    text-align: center;
	font: 12pt, "Monotype Corsiva", "URW Chancery L", "Comic Sans MS", cursive;
	color: #ffc967;
}

.footnote {
	font-size: small;
	color: #ffc967;
}

h1 {
	font-weight: normal; /* was bold, again, boo to Neena, she has no style! */
	color: red;
	text-transform: capitalize;
	text-align: right;
	line-height: 1.5;
	margin: 0;
	padding: 0 0 6px 0;
/*	background-image: url(i/underline.gif); boo to Neena! */
	background-repeat: repeat-x;
	background-position: 100% 100%;
}

h2 {
	text-transform: capitalize;
	font: 14pt, "Monotype Corsiva", "URW Chancery L", "Comic Sans MS", cursive;
	color: red;
	margin: 0;
	padding: 0 0 8px 0;
	background-image: url(i/underline.gif);
	background-repeat: repeat-x;
	background-position: 100% 100%;
}


a:link {
	color: #ffc967;
}
a:visited {
	color: #ffc967;
}
a:hover {
	color: yellow;
}
a:active {
	color: green;
}
a img {
	border: none;
}


/* -------------------- debugging -------------------- */
.debugNO {
	border: dashed 1px green;
}


/* -------------------- #header tabbed menu -------------------- */
/* active tab = red
 * inactive tabs = gold #ffc967
*/
#header {
	padding: 2px;
	border-bottom: 1px solid red;
	margin-bottom: 25px;
	color: red;
}

#header img {
	float: left;
}

#tabs {
	position: absolute;
	bottom: 3px;
	left: 280px;
}

#tabs ul {
	margin-left: 0;
	padding-left: 0;
	display: inline;
} 

#tabs ul li {
	margin-left: 0;
	margin-bottom: 0;
	padding: 2px 15px 2px;
	border-top: 1px solid #ffc967;
	border-left: 1px solid #ffc967;
	border-right: 1px solid #ffc967;
	list-style: none;
	display: inline;
}

#tabs ul li.here {
	border-top: 1px solid red;
	border-left: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 1px solid black;
	list-style: none;
	display: inline;
	font-weight: bolder;
}

#tabs a:link {
	color: #ffc967;
	text-decoration: none;
}

#tabs a:visited {
	color: #ffc967;
	text-decoration: none;
}

#tabs a:hover {
	color: yellow;
	text-decoration: underline;
}

#tabs a:active {
	color: green;
	text-decoration: underLine;
}

