@charset "UTF-8";
/*
2008                 - Catenation - http://catenation.com/
                       info  --a-t--  catenation.com
flickr               - http://www.flickr.com/photos/catenation/
twitter              - http://twitter.com/catenation/
read more            - Chris Cavallucci's Blog at http://www.chriscavallucci.com
code and inspiration - Kudos to Eric Meyer, Jeff Zeldman and many others in the web standards community
learning?            - see comments
 */

<!--
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, img{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  color: #2a2d2e;
/*  font-family: Arial, Helvetica, sans-serif; */
  font-family:Georgia, "Times New Roman", Times, serif;
  font-size: .8em;
  line-height: 1.5em;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
h1 {
  color:#003300;
  font: 2em Georgia, Times, serif; margin-bottom: 0.5em;
  
/*  font-size: 1.5em;
  color: #000;
  font-weight: bold;
  line-height: 1.2em;
  text-align:left;  */
}
h2 {
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1em;
  margin:0 0 -.75em 0;
}

h3 {
  color: #333;
  font-size: 1em;
  font-weight: bold;
  line-height: 1em;
}

h4 {
margin-bottom: -1em;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color:#4880E6;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #3b6e72;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
  background-color: #456428;
  color: #FFF;
}

#logo a:hover {
background-color:#FFF;
}

/* Sets the style for a link that has focus. */
a:focus {
  color:#A8A8A8;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color:#804000;
}
/* This is the section that appears at the top of every page - includes a link for customer login, search box eventually */
#persistentnav {
	position:absolute;
	top:67px;
	right:5%;
	display:block;
	width: 10em;
	z-index:100;
	text-align:right;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
/*  width: 780px; */
  width:90%;
}
#globalnav {
z-index: 5;
position: relative;
top: 0;
left: 0;
display:block;
clear:both;
width:100%;
height:4em;
/*background-image:url(../i/greyLine_innerShadow.gif);
background-position:center;
background-repeat:repeat-x; */
}

#persistentnav, #globalnav, #footer {
/*font-family:Verdana, Arial, Helvetica, sans-serif; */
font-family:Geneva, Arial, Helvetica, sans-serif;
letter-spacing:1px;
}

#logo {
position:relative;
top:0;
left:-0.7em;
}
#outerWrapper #header {
  background-image:url(../i/Bamboo_banner2.jpg);
  background-position:right;
  background-repeat:no-repeat;
  background-color: #fff;
  border-bottom: solid 1px #456428; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
/*  border-right: solid 1px #7cbaaa;  Sets the right border properties for an element using shorthand notation */
  float: left;
  margin: 0;
  padding: 10px 10px 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 350px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 0 0 400px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 5px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}

#outerWrapper #footer {
  background-color:#FDFDFD;
  font-family: Arial, Helvetica, sans-serif;
  font-size: smaller;
  color:#B6B6B6;
  text-align:center;
  vertical-align: top;
  border-top: solid 1px #456428; /* Sets the top border properties for an element using shorthand notation */
  padding: 1em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* IN DEVELOPMENT BELOW THIS LINE -------------------------------------------------------------*/
/* List of projects 
Alliance Consulting - Thomson Scientific, Acsis
American Society for Quality (ASQ) Philadelphia Section 505
Angelic Instruments
Blue Banyan Yoga
Diamond Fitness & Wellness
DJT Photo
Drexel University
Federal Reserve Bank of Philadelphia
Heath Allen
Kaizen Martial Arts
Ken Ulansey Ensembles
Litts Quality Technologies
Northwestern University
Partnership for Community Supports
Pripstein + Davies Architects
SEI Investments
*/

/* The hidden element that will be visible when hovering over a project id name */
#outerWrapper .project-detail {
display:none;
}

/* Project names - give each a class*/
#outerWrapper .project-name {}


/* The visible element which shows the big picture for the project and other details
such as project name, scope, status, etc. */
#outerWrapper .project-name a:hover {
display:block;
width:300px;
background:#6699CC;
}
/* IN DEVELOPMENT ABOVE THIS LINE -------------------------------------------------------------*/

#footer a {
color:#8EAFFD;
}


/* It is common to set printer friendly styles such as a white background with black text. */
body {
  background-color: #fff;
  background-image: none;
  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
  color: #000;
}


<!--[if IE 5]>
<style type="text/css"> 
/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
#outerWrapper #contentWrapper #leftColumn1 {
  width: 350px;
}

<![endif]-->
<!--[if IE]>
<style type="text/css"> 
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper #content {
  zoom: 1;
}

<![endif]-->