@charset "UTF-8";
body  {
	position: relative;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}



/* site-wide link code */ 
a {
 	text-decoration: none;
}

/* site-wide text formatting */
p {
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 5px;
}
.footnote {
	font-weight: normal;
	font-style: italic;
	font-size: 9px;
	margin-top: -7px;
}

h1 {
	font-size: 24px;
	margin: 0;
	padding: 0;
}


/*main box */
#container1 { 
	width: 800px;  
	height: 625px;
	top: 10px;
	left: auto;
	background-image: url(http://bettenoir.com/img/TanSq70.png);
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border-style: solid;
	border-color: #000000;
	border-width: 7px 7px 7px 7px;
	z-index: 0;
	padding: 0;
	position: relative;
	}
	


/* content */
#mainContent {
	position: absolute;
	width: 590px;
	height: 534px;
	padding: 10px;
	top: 66px;
	left: 0px;
	background: #FFDB8A;
	overflow-y: scroll;
	overflow-x: hidden;
	border-style: solid;
	border-color: #000000;
	border-width: 7px 0px 0px 0px;
	z-index: 3;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 16px;
} 
#mainContent a {
	color: #990000;
}
#mainContent a:visited {
	color: #990000;
}
#mainContent a:hover {
	color:#660000;
}
#mainContent a:active {
	color:#CC0000;
}


#msub {
	position: relative;
	top: 0px;
	width: 570px;
	margin: 0px;
	padding: 0px;
	height: 115%;
}

#mleft {
	position: relative;
	float: left;
	width: 280px;
	margin: 0px;
	padding: 0px;
	z-index:3;
}

#mright{
	position: relative;
	float: right; /* this element is floated, a width must be given */
	width: 280px; /* the actual width of this div, in standards-compliant browsers, or standards mode in IE will include padding and border in addition to the width */
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 5px 0px 3px;
	margin: 0px -10px 10px 0px;
	border-left: solid 2px #000000;
	z-index:3;
}

.topdent{
	position: relative;
	top: -30px;
}
	

/* the media page nav at the top */	
	
#medianav {
	position: fixed;
	top: 110px;
	height: 30px;
	margin: 0px 0px 0px -10px;
	width: 585px;
	background-color:#FFDB8A;
	text-align: left;
	padding: 0px 0px 10px 10px;
	z-index: 4;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}

	
	

	
/* picbox code  */
/* the gallery area */

#picbox {
	position: relative;
	top: 0px;
	left: 0px;
	padding: 0px 0px 10px 0px;

}

/* takes away the dotted "active" border on thumbnails */

#picbox a, #picbox a:visited {
	display: inline;
	text-decoration: none;
	font-size: 7px;
	border: none;
}

a.pix:active, a.pix:active em, a.pix:focus, a.pix:focus em {
	height: 0px;
	width: 0px;
	border: 0px;
}

/* hides the big images until selected */
.pix em {
	display: none;
}

/* brings up the big picture */
a.pix:active em, a.pix:focus em {
	display: block;
	position: absolute;
	left: 0px;
	top: 20px;
	width: 100%;
	z-index: 500;
	border: none;
}

/* styles the big image once it's up */
a.pix:focus em img, a.pix:active em img {
	border: none;
	width: 100%;
}


/* keeps the thumbnail imgs small */
.thumbs {
	width: 90px;
	margin: 5px;
	border: none;
  }
/* end pix code */	
	
	
.bio {
	font-size: 14px;
	font-weight: normal;
	}


/*  extras */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

