@charset "UTF-8";
body  {
	background: #fff;
	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 */

}
#container { 
	width: 795px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #fff; 
	padding: 0 10px 0 0px;  
	height: 200px;

	
} 

#logo {
	float:left;
	margin: 75px 0 0 0;
}
 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 125px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 475px;
	padding: 0px 0px 0px 0px;
	background-image:url(images/sidebar2.png);
	background-repeat:none;
}

ul.mainNav {
	margin: 40px 22px 0 0;
	padding: 0px;
	width: 75px;
	height: 300px;
	float:right;
}
	
	

#mainnav li {
	float: right; /* since this element is floated, a width must be given */
	font-family: "Lucida Sans";
	font-size: 10pt;
	line-height: 20pt;
	font-weight: 100;
	text-transform: lowercase;
	color: #fff;
	letter-spacing: 2pt;
	text-align: right;
	padding: 3px 0 0;
	list-style-type: none;
	display:block;
	width: 75px;
	height: 25px;
	margin-top:5px;
	border-bottom:#b1b3b5 solid 3px;
	
	
}
#mainnav li.current {
	border-bottom: #d9df23 solid 3px;
}

ul.mainNav li a {
	text-decoration: none;
	color: #fff;
	display:block;
	width:75px;
	
}

ul.mainNav li a:hover {
	width:75px;
	text-decoration: none;
	color: #fff;
	border-bottom: #fff solid 3px;

}

a:focus { outline:none;}


#mainContent { 
	margin: 1px 0 0 150px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border:1px solid #ccc;
	height: 469px;
} 

#mainContent img {
	margin: 30px 0 0 50px;
}

.

#mainContent2 { 
	margin: 0px 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border:1px solid #ccc;
	height: 469px;
}

#mainContent p.content {
	margin: 50px 50px 50px 50px;
	font-size: 14pt;
	color:#58595b;
	font-family:"Georgia";
	line-height: 17pt;
	
}

#mainContent p.index {
	margin: 10px 0px 0px 50px;
	font-size: 10pt;
	color:#58595b;
	font-family:"Georgia";
	line-height: 12pt;
	
}

#mainContent p.bio {
	margin: 40px 40px 50px 40px;
	font-size: 12pt;
	color:#58595b;
	font-family:"Georgia";
	line-height: 17pt;
	
}
span.cv {
	font-size: 16pt;
	color:#58595b;
	font-family:"Georgia";
	line-height: 17pt;
	float:right;
}

a {
	color:#d9df23;
	text-decoration:none;
}

a:hover {
	color:#d9df23;
}

#mainContent p.content a {
	color:#d9df23;
	text-decoration:none;
}

#mainContent p.content a:hover {
	color:#d9df23;
}

#myGallerySet {
	margin-top:30px;
}

#myGallery
{
width: 600px !important;
height: 405px !important;
margin: 25px 10px 0 0px;
}

#myGallery, .imageElement
{
	font-family:"Lucida Sans";
	font-weight:200;
	
}

#myGallery #myGallerySet .imageElement h3
{
	padding-top:5px;
	font-size: 10pt;
	
}

#myGallery .imageElement p
{
	padding-top:5px;
	font-size: 10pt;
	color:#ccc;
	
}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 










.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;
}