@charset "UTF-8";
body  {
	font-family:Georgia, serif;
	font-size: 12px;
	line-height: 1.4;
	color: #000000;
	background-color: #3C3B39;    /*#c4c3ba;*/
	/*
	background-color: #A1A1A1;
	background-image: url(../images/body_bg.png);
	background-attachment: fixed;
	background-repeat: repeat-x;
	*/
	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: 946px;  /* 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 {
	width: 882px;
	padding-top: 32px;
	padding-right: 32px;
	padding-bottom: 0;
	padding-left: 32px;
} 
#header h1 {
	margin: 0; /*zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:Georgia, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 200;
	line-height: 1;
	color: #b1b1af;
}

/*navigation*/

#nav {
	font-family:Aerial, sans-serif;
	font-size: 12px;
	list-style: none;
	margin: 0;
	padding-top: 30;
	padding-right: 30px;
	padding-bottom: 30;
	padding-left: 0px;
} 

#list {
	list-style: none;
	margin: 0;
	padding: 0;
	
}

#list li {
	display: inline;
	padding: 0;
	margin: 0;
}

#list li a {
	border: 0;
	/*padding-right: 20px;
	padding-left: 20;*/
	border-bottom: 1px solid #94D8C8;
}

#list li a:active {
	background-color: #CCCCCC;
	border-bottom: none;
	color: #FFFFFF;
}

#list li#active a {
	background-color: #CCCCCC;
	border-bottom: none;
	color: #FFFFFF;
}


#list li:before { 
	content: "| "; 
	/*font-size: 18px;*/
	color: #CCCCCC;
	padding-left: 14px;
	padding-right: 14px;
}
#list li:first-child:before { 
	content: ""; 
	padding-left: 0;
	padding-right: 0;
}

/*IE workaround*/
/*All IE browsers*/
* html #navlist li
{
border-left: 1px solid black;
padding: 0 0.4em 0 0.4em;
margin: 0 0.4em 0 -0.4em;
}

/*Win IE browsers - hide from Mac IE\*/
* html #navlist { height: 1%; }

* html #navlist li
{
display: block;
float: left;
}

/*End hide*/
/*Mac IE 5*/
* html #navlist li:first-child { border-left: 0; }

/* sidebar */
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 430px;
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 32px;
}
#sidebar1 a {
	text-decoration: none;
	color: #999;
}
#sidebar1 a:link {
	text-decoration: none;
	color: #999;
}
h2 {
	font-family:Georgia, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 200;
	line-height: 1.2;
	color: #999;
}

/* main content */
#mainContent {
	margin: 0 0 0 480px;  /*the right margin on this div element creates the column down the right 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. */
	width: 420px;
	padding-top: 10px;
	padding-right: 32px;
	padding-bottom: 10px;
	padding-left: 16px;
} 
#footer {
	padding-top: 0;
	padding-right: 32px;
	padding-bottom: 0;
	padding-left: 32px;	
} 
#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	color: #b1b1af;
}

#footer-small {
	padding-top: 0;
	padding-right: 32px;
	padding-bottom: 0;
	padding-left: 32px;	
}

#footer-small 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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	color: #b1b1af;
}


h1 {
	font-family:Georgia, sans-serif;
	font-size: 16px;
}

.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;
}

a {
   text-decoration: none;
	color: #000000;;
}

a:link {
	border-bottom: 1px solid #94D8C8;
}
a:visited {
	color: #000000;
	border-bottom: 1px solid #94D8C8;
}
a:hover {
	background-color: #94D8C8;
	border-bottom: none;
	color: #FFFFFF;
}
a:active {
	background-color: #94D8C8;
	border-bottom: none;
	color: #FFFFFF;
}

/*
Images
*/

img {
  border: none;
}

.picright {
	padding: 30px;
	float: right;
	clear:both;
}

.picleft {
	float: left;
	clear:both;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 0px;
	color:#999;
}

.picleftthin {
	float: left;
	clear:both;
	padding-top: 20px;
	padding-right: 170px;
	padding-bottom: 0px;
	padding-left: 0px;
	color:#999;
}

hr {
	color: #CCC;
	height: 1px;
}


#photocontainer {
	margin: 0px;
	width: 800px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
}
.photo {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999;
	padding-bottom: 15px;
}
