@charset "UTF-8";

/* -----    Resets 
Use a variation (if not exact) of Eric Meyer’s CSS Reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0px 0px 0px 0px;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: middle;
	background: transparent;
	behavior: url(../iepngfix.htc); /* IE .png hack */
}
body {
	line-height: 1;
	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 */
	font-family:Arial, Helvetica, sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END GLOBAL RESET */



/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

.twoColElsLtHdr h1 {
	color: #333366;
	line-height: 1.3;
}
.twoColElsLtHdr p {
	color: #666633;
	font-size: 80%;
	line-height: 1.1;
}
.twoColElsLtHdr ul {
	color: #333366
}
.twoColElsLtHdr li {
	color: #666633;
}



.twoColElsLtHdr #container {
	width: 45em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 35px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
} 
.twoColElsLtHdr #header {
} 
.twoColElsLtHdr #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 */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/


.twoColElsLtHdr #sidebar1 {
	float: left; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /*see above ...best not to use padding on this one*/
	color: #333366;
	width: 145px;
}

#navbar {
	padding: 0px 0px 0px 0px;
	margin: 25px 0px;
}

#navbar li {
	float: right;
	clear: both;
}
#navbar a {
	text-decoration: none;
	display: block;
	height: 40px;
	width: 145px;
	text-indent: -5000px;
	background-position: 0px 0px;
}
#navbar a:hover {
	background-position:-145px 0px;
}

#navbar a:active {
	background-position:-435px 0px;
}


#navbar #nav-philosophy {
	background-image:url(../images/nav/philosophy.jpg);
}
#navbar #nav-project-list {
	background-image:url(../images/nav/project-list.jpg);
}
#navbar #nav-project-list {
	background-image:url(../images/nav/project_list.jpg);
}
#navbar #nav-links {
	background-image:url(../images/nav/links.jpg);
}
#navbar #nav-contact {
	background-image:url(../images/nav/contact.jpg);
}


.twoColElsLtHdr #sidebar2 {
	float: left;
	background-color:#00CCCC;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent a {
	color: #333366;
} 
.twoColElsLtHdr #footer {
	margin: 2em 1.5em 3.4em 11.4em;
}
.twoColElsLtHdr #footer a {
	color: #666633;
	text-decoration: none;
}
.twoColElsLtHdr #footer a:hover {
	color:#CC0000;
} 
.twoColElsLtHdr #footer p {
	font-size: 0.8em;
	color: #666633;
	text-align: center;
	padding: 1em;
	line-height: 1.7;
	clear: right;
}

/* Miscellaneous classes for reuse */
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clear {
	clear:both;
}
.alignRt {
	text-align:right;
}
.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;
}
.httpText {
	color: #333366;
}

/*   Page specific styles
	 code above this line is essentially
	 for the template and will affect site-wide.   */

/* --- HOME --- */

#navbar #nav-home {
	background-image:url(../images/nav/home.jpg);
}
#home #navbar #nav-home { /* used for selected item of nav bar. make sure body of each page has sepcific ID */
	background-position:-580px 0px;
}

#home #mainContent {
	margin: 16px 75px 30px 375px;
	padding: 75px 0px;
	/*	margin: 1em 5.3em 5.3em 23.44em;
	padding: 4.69em 0em 0em 0em;*/
	text-align: right;
}


/* --- SERVICES ---*/

#navbar #nav-services {
	background-image:url(../images/nav/services.jpg);
}
#services #navbar #nav-services { /* used for selected item. make sure body of each page has sepcific ID */
	background-position:-580px 0px;
}
#services #mainContent {
	margin: 15px 15px 15px 250px;
}

.twoColElsLtHdr ul li {
	color: #666633;
	font-size: 80%;
	text-indent: 2em;
}
.twoColElsLtHdr ul li ul {
	color: #666633;
	text-indent: 2em;
}
.twoColElsLtHdr ul li ul li {
	color: #666633;
}

/*#services #container #mainContent ul li ul {
	color: #666633;
	text-indent: 2em;
}
#services #container #mainContent ul li {
	color: #333366;
}
#services #container #mainContent ul li ul li {
	color: #666633;
}*/


/* --- PHILOSOPHY ---*/

#navbar #nav-philosophy {
	background-image:url(../images/nav/philosophy.jpg);
}
#philosophy #navbar #nav-philosophy {
	background-position:-580px 0px;
}
#philosophy #container #mainContent {
/*	margin: 15px 15px 15px 182px;
*/	margin: 1em 1em 1em 182px;
}
#philosophy #container #mainContent div {
	float: right;
	/*	margin: 5px 0px 5px 10px;
*/	border: 1px solid #333333;
	/*	padding: 5px 2px 2px 5px;
*/	margin: .3em 0em .3em .6em;
	padding: .3em 2px .125em .3em;
	text-align: center;
}
#philosophy #container #mainContent li {
	margin: 0em 0em 1.4em 1.8em;
}
#philosophy #container #mainContent blockquote {
	/*	margin: 10px 55px 10px 85px;
*/	margin: .6em 4.5em .6em 5.31em;
	font-size: 0.9em;
	color: #333366;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#philosophy #container #mainContent q {
	margin-left: 18em;
	margin-bottom: 0px;
	color: #666633;
}

#philosophy #container #mainContent p {
	text-indent: 1.2em;
}

/* --- TEAM ---*/

#navbar #nav-team {
	background-image:url(../images/nav/team.jpg);
}
#team #navbar #nav-team {
	background-position:-580px 0px;
}
#team #mainContent {
	margin: 15px 15px 15px 182px;
}
#team #container #mainContent #katherine {
	float: left;
	margin: 5px 10px 5px 0px;
	border: 1px solid #333333;
}
#team #container #mainContent #dubbe {
	float: right;
	margin: 5px 0px 5px 10px;
	border: 1px solid #333333;
}
#team #container #mainContent p {
}


/* --- PROJECT LIST ---*/

#navbar #nav-project-list {
	background-image:url(../images/nav/project_list.jpg);
}
#project-list #navbar #nav-project-list {
	background-position:-580px 0px;
}
#project-list #mainContent {
	margin: 15px 15px 15px 182px;
}

/* --- LINKS ---*/

#navbar #nav-links {
	background-image:url(../images/nav/links.jpg);
}
#links #navbar #nav-links {
	background-position:-580px 0px;
}
#links #mainContent {
	margin: 15px 15px 15px 182px;
}
#links #container #mainContent p {
	margin-top: 0.5em;
}
#links #container #mainContent a {
	font-size: 80%;
}
#links #container #mainContent h1 {
	margin-top: 0.5em;
	margin-bottom: -0.3em;
}

/* --- CONTACT ---*/
#navbar #nav-contact {
	background-image:url(../images/nav/contact.jpg);
}
#contact #navbar #nav-contact {
	background-position:-580px 0px;
}
#contact #mainContent {
	margin: 15px 100px 100px 250px;
	text-align: center;
	padding: 35px 0px 0px 0px;
}


/* --- ---*/
