@charset "UTF-8";

/*
	colors

	berg gray: 333
	berg orange: f79320
	gray text: 999
*/

body  {
	font: 90% Helvetica, Arial, sans-serif;
	background: #333;
	margin: 36px 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: #999;
}
.twoColFixLtHdr #container { 
	width: 810px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
} 
.twoColFixLtHdr #header { 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-bottom:2px solid #999;
} 
.twoColFixLtHdr #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: 6px 0 1px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

a img { border:0 }


/* Main Nav */
#mainNav {
	text-align:right;
	font-size:85%;
	text-transform:uppercase;
}

#mainNav ul {
	margin:0;
	margin-top:2px;
}

#mainNav li {
	margin:0;
	display:inline;
}

#mainNav a {
	color:#999;
	padding:2px 0;
	margin: 0 0 0 45px;
}
#mainNav a:hover, #mainNav a.active {
	border-top:4px solid #999;
	text-decoration:none;
/*	
	background:#fff;
	color:#333;
*/
}

.projectGroup {
	margin-bottom:1em;
}

.projectGroup a img {
	border:1px solid #333;
}

.projectGroup a:hover img, .projectGroup a img.highlight {
	border:1px solid #f79320;
}

.pseudoSidebar {
	/*
	position:absolute;
	left:-175px;
	width:175px;
	*/
	float:left;
	margin-right:15px;
	border-right:1px solid #444;
	width:160px;
	/**/
	font-size:85%;
	padding-right:15px;	
	position:relative;
}

.pseudoSidebar h2 {
	font-weight:bold;
	margin-top:0;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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 */
	padding: 0;
	font-size:85%;
	text-align:right;
	margin:30px 15px 0 0;
	padding-top:9em;
}


.twoColFixLtHdr #mainContent { 
	/* removed for left-nav length bug revamp 
	margin: 30px 0 0 175px; 
	padding-left:15px; 
	border-left:1px solid #444;
	*/
	margin-top:30px;
	/**/
	/*zoom:1;*/ /* this fixes alignment bug with text below, but introduces a bug with the sidenav, requiring the * html fix below */
	position:relative;
} 
.twoColFixLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top:2px solid #999;
	color:#999;
	font-size:85%;
	margin-top:2em;
	width:100%;
} 
.twoColFixLtHdr #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: 4px 0; /* 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: 6px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 6px;
}
.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:#999; }
a:hover { text-decoration:underline }

#footer a { color:#999; }
#sidebar1 ul, .pseudoSidebar ul { list-style:none; margin:0; padding:0; position:relative }
#sidebar1 li, .pseudoSidebar li { margin:0; padding:0; padding-bottom:6px; position:relative }
#sidebar1 a.active, .pseudoSidebar a.active { color:#f79320 }
#sidebar1 a, .pseudoSidebar a { display:block }
#sidebar1 a:hover, .pseudoSidebar a:hover, .pseudoSidebar .highlight { color:#f79320; text-decoration:none }
#projectNav .pseudoSidebar img { position:absolute; right:-18px; top:-1px; border:0; width:5px; height:16px; }

/* Main Content */

h1 { 
	font-size:1.2em;
}

h2 {
	font-size:1em;
	font-weight:normal;
	color:#999;
}

#slate { /*background:#bbb; padding:3px 5px; border:1px solid #eee;*/ font-size:85% }
#slate td { padding:0; width:50%; vertical-align:top; padding-right:2em; }

#photo {
	margin:1em 0;
}

#photoNav {
	width:34px;
	float:right;
}

#photoNav a img { border:1px solid #333; margin-bottom:3px; }
#photoNav a:hover img, #photoNav a.active img { border-color:#f79320 }

.twoColFixLtHdr #container #photoMain { height:380px; }

.imgCaption {
	background:#222; font-size:75%; padding:1px 3px; margin-left:190px; }
}

.info { width:575px; margin-left:190px; }

.info.mainInfo {
	margin-left:190px; 
	margin-right:60px;
}


/* non-project pages */

#pageContent {
	width:500px; 
	margin:54px auto;
}	



/* Project List page */

#projectIndex div {
	float:left;
	width:148px;
	text-align:center;
	margin:9px;
	display:inline;
}

#projectIndex a:hover {
	text-decoration:none;
	color:#f79320; 
}

.projectGroupImages {
	margin-left: 190px;
}

/* complete project list page */
#allProjects { border-collapse:collapse; }
#allProjects td { padding:2px 10px 2px 0; border-collapse:collapse; border-top:1px solid #383838 }
#allProjects .first td { border:0; }

