
<!-- 



body  {
	font:80% 'helvetica neue',sans-serif;
	color:#000000;
	background: #ffffff;
	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;
}


h3 {margin: 0;
padding: 0;
list-style-type: none;
font-family: 'Helvetica Neue', Arial;
font-size: 12px;
letter-spacing: 2px;
line-height: 22px;
}


 #container { 
	
	width: 1150px;  /* 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 */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
 #header { 

	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: right	; /* this overrides the text-align: center on the body element. */
	margin-right: 150px;
	
} 
 
#header a {padding-right:10px; color:#999999; text-transform:capitalize; font: 'Times New Roman', Times, serif;}

#headerText { 	
				
				word-spacing: 5px;
				color:#000000;
				font: 'Times New Roman', Times, serif;
				text-transform: capitalize;
				
				
				}

#headerText a:hover{ 	
				text-transform: capitalize; text-decoration:underline; color:#666666;}


 #sidebar1 {
 color:#000000;
 background:#CCFF66;
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 20px;
	
	
}
#sidebar1 img {border:none;}


#photoStory {  color: #777777; font-size: 10px; margin-top: 320px; }
  
  


.photoStory { text-transform:capitalize; text-decoration:underline;}


#mainContent { 
	margin: 0 0 0 250px; /* 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
background:#FFFFFF;
height: 535px;


}

a:link {color:#666666;} /* unvisited link */
a:visited {color:#666666;} /* visited link */
a:hover {color:#999999;} /* mouse over link */
a:active {color:#999999; text-decoration:underline;} /* selected link */


#navcontainer { margin-top: 0px; }

#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-family: 'Helvetica Neue', Arial;
font-size: 12px;
letter-spacing: 2px;
line-height: 20px;
}

#navcontainer li { margin: 0 0 1px 0;  }

#navcontainer a
{


color: #666666;
text-decoration: none;
}

#navcontainer a:hover
{
color: #999999;
text-decoration: none;
}

#navcontainer ul ul li { margin: 0 0 1px 0;  }



#navcontainer ul ul a:hover
{
color: #999999;

text-decoration:none;
}

#navcontainer ul ul li a:active
{
color: #999999;

text-decoration:line-through;

}

#navcontainer ul ul li .active { color:#999999;  display: block;}  /* Active Link */


ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none; 
}

ul.nav{
	width: 100px;
/*Optional, to make the navigation bar positions on the left of the content*/
	float: left;
	margin-right: 1em;
	
	
	
}

ul.nav>li{
	margin: 200px;
	padding: 0px 0px; 
	
	
	
}

ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: relative;
	width: 200px;
	left: 10px;
	margin-top: 0;}
	
	
	ul.nav .category{
/*Make the sub list items invisible*/
	display: block;
	position: relative;
	width: 200px;
	left: 10px;
	margin-top: 0;

	
	
}

ul.nav li:hover>ul{
/*When hovered, make them appear*/
	display : block;
	float: left;
	font-size: 6px;
	
}

	


.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 0px 0px;
	font-size: 10px;
	letter-spacing: 0px;
	
}








#biography { font:Arial, Helvetica, sans-serif;
font-size: 11px;
text-transform: none
text-decoration: none; width: 700px; margin-left: 0px;
padding: 60px 0 15px 0;}
	
	#biography img { float: right; padding: -20px 0 0 0px; margin-left: 20px; border:none;}

#biography a {border:none; text-decoration:none;}

#biography a:hover {border:none; text-decoration:none;}
 
 #footer { 
	padding: 0 10px 0 250px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	float: none;
	font-size: 9px;
	color:#999999;
} 

.footer {padding: 0 10px 0 250px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
	font-size: 9px;
	color:#999999;
	float: none;
	}
	
 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
--> 



<!--[if IE 5]>
 
/* place css box model fixes for IE 5* in this conditional comment */
 #sidebar1 { width: 200px; }

<![endif]--><!--[if IE]>


/* place css fixes for all versions of IE in this conditional comment */
#sidebar1 { padding-top: 30px; }
#mainContent { zoom: 1; }

/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

<![endif]-->







/* BEGIN GALLERIA STYLE */
	*{margin:0;padding:0}
	
	h1,h2{font:bold 80% 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase;}
	
	a{color:#348;text-decoration:none;outline:none;}
	
	a:hover{color:#67a;}
	
	.caption{font: 'Helvetica Neue', Arial, Helvetica, sans-serif;color:#666;
	visibility;}
	
	
	#main_image{margin:0;height:438px;width:800px;background:none;}
	
	#main_image img{margin-bottom:10px;border: none; }
	
	
	#ImageNav { padding-right: 70px; clear:both;font:14px; 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase; text-align:right;}
	
	#main_image img{margin-bottom:10px; width:auto; height:auto;}

.galleria{list-style:none;width:200px}
.galleria li{display:block;width:80px;height:80px;overflow:hidden;float:left;margin:0 10px 10px 0}
.galleria li a{display:none}
.galleria li div{position:absolute;display:none;top:0;left:180px}
.galleria li div img{cursor:pointer}
.galleria li.active div img,.galleria li.active div{display:block}
.galleria li img.thumb{cursor:pointer;top:auto;left:auto;display:block;width:auto;height:auto}
.galleria li .caption{display:block;padding-top:.5em}
* html .galleria li div span{width:800px} /* MSIE bug */
	
	#splash {
	 width: 700px ;
  margin-left: auto ;
  margin-right: auto ; 
 margin-top: 60px; }
 
 #splash img {border:none; text-decoration:none;}

img a:hover {border:none; text-decoration:none;}


