/* Komejo.com stylesheet. Feel free to take a little! */

/* Note: For clarity, I try to stick with two types of CSS layout:

1. Selector(s) and the opening curly brace are on line one. 
   Declarations are one Property: Value; pair to a line, indented. 
   The closing curly brace is aligned to the first line.

2. The exception to the above is repeting progressive selectors with 
   near-identical Property: Value; pairs. These may be single-line/single-space.

In addition, I try to generally group similar types of Style rules, 
and then list them in the order they apprear on a page. 

Also, comments are good. An extra linespace before a comment is nice */

/* Start CSS RESET */
/* This originally came from http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */

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, dl, dt, dd, ol, ul, li, fieldset, label, legend {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

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

body {
	line-height: 1;
	color: black;
	background: white;
}

blockquote:before, blockquote:after, q:before, q:after { 
	content: ""; 
}

blockquote, q {
	quotes: "" "";
}

/* End reset*/

/* Main CSS Document */

/* Generally defined styles - how the XHTML tags should behave/display */

body { 
	background: #ffffff url(/images/bg_top.png) repeat-x;
	margin-left: 45px;
}

p { 
	font: 12px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 6px 1px 0px 1px;
	line-height: 1.8em;
}

a:link, a:visited {
	color: #696969;
	text-decoration: none;
}	
a:active, a:hover {
	color: #696969;
	text-decoration: underline;
}	

h3 {
	display: inline;
	font: normal 16px Arial, Helvetica, sans-serif;
	color: #7FBA00;
	line-height: 1.4em;
	margin: 10px 15px 0 0;
	padding: 3px 0 3px 0;
	}


/* Classes - if there's more than one of something, it's here. */

.content_short {
	border: 1px solid #E1E1E1;
	width: 791px;
	height: 366px;
	margin: 12px 0 5px 2px;
	padding: 10px 0 0 0;
	position: relative;
	overflow: auto;
	overflow-x: hidden;
}

.content_long {
	border: 1px solid #E1E1E1;
	width: 791px;
	height: 524px;
	margin: 12px 0 34px 2px;
	padding: 10px 0 0 0;
	overflow: auto;
	overflow-x: hidden;
}

.content_projects {
	border: 1px solid #E1E1E1;
	width: 791px;
	height: 376px;
	margin: 12px 0 5px 2px;
}

.content_blog {
	margin: 0 20px 25px 0px;	
}

.content_blog h3 {
	display: inline;
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #7FBA00;
	line-height: 1.2em;
	margin: 10px 15px 0 0;
	padding: 3px 0 3px 0;
	background: #FFFFFF;
	}

.splash {
	float: left;
}

.founders { 
	float: left;
	width: 200px;
}

.founders img { 
	margin: 0 0 5px 0;
}

.founders_text1 { 
	float: left;
	height: 457px;
	width: 192px;
	overflow: auto;
	overflow-x: hidden;
	margin: 10px 0 0 18px;
	padding: 14px 5px 10px 10px; 
	background: url(/images/bio_fade.png) repeat-x;
}

.founders_text1 h3 { 
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 3px 0 0 0; 
	margin: 0;
	background: none;
	}
	
.founders_text1 p {
	font: 12px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 10px 15px 10px 0px; 
	margin: 10px 0 0 5px;
	line-height: 1.8em;
}

.founders_text2 { 
	float: left;
	height: 457px;
	width: 305px;
	overflow: auto;
	position: relative;
	overflow-x: hidden;
	margin: 10px 0 0 18px;
	padding: 14px 15px 10px 10px; 
	background: #EAEAEA;
}

.founders_text2 h3 {
	display: block;
	font: normal 14px Arial, Helvetica, sans-serif;
	color: #7FBA00;
	line-height: 1.2em;
	padding: 3px 0 0 0; 
	margin: 0;
	background: #EAEAEA;
	}

.founders_text2 p, .founders_text2 li { 
	font: 11px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 0; 
	margin: 12px 0 0 0;
	line-height: 1.8em;
	background: #EAEAEA;
}

.founders_text2 p strong { 
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 0px 1px 10px 1px;
	line-height: 1.3em;
	background: #EAEAEA;
}

.achievements li {
	margin: 2px 0 5px 15px;
	padding: 0;
	line-height: 1.2em;
}

.blog_text { 
	float: left;
	height: 457px;
	width: 530px;
	overflow: auto;
	position: relative;
	overflow-x: hidden;
	margin: 10px 0 0 18px;
	padding: 14px 15px 10px 10px; 
	background: #EAEAEA;
	border: 1px solid #E0E0E0;
}

.blog_text h3 {
	font: normal 14px Arial, Helvetica, sans-serif;
	color: #7FBA00;
	line-height: 1.2em;
	padding: 3px 0 0 0; 
	margin: 0;
	background: #EAEAEA;
	}

.blog_text p { 
	font: 11px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 0; 
	margin: 12px 0 0 0;
	line-height: 1.8em;
	background: #EAEAEA;
}

.time {
	padding: 5px 10px 0 0; 
	text-transform: capitalize; 
	float: right;
	font: 11px Arial, Helvetica, sans-serif;
	color: #696969;
}

.blog_text p strong { 
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 0px 1px 10px 1px;
	line-height: 1.3em;
	background: #EAEAEA;
}


.project_text {
	float: right;
	height: 297px;
	width: 379px;
	overflow: auto;
	overflow-x: hidden;
	padding: 0 15px 0 0; 
	margin: 10px 0 0 0;
	text-align: justify;
	position: relative;
}

.project_text p {
	width: 359px;
	margin: 8px 0 0 0;
}


.header_text {
	float: right;
	height: 297px;
	width: 379px;
	overflow: auto;
	overflow-x:hidden;
	padding: 0 15px 0 0; 
	margin: 10px 0 0 0;
}

.header_text h3 {
	display: inline;
	font: normal 16px Arial, Helvetica, sans-serif;
	color: #7FBA00;
	line-height: 1.2em;
	margin: 10px 15px 0 0;
	padding: 3px 0 3px 0;
	background: #FFFFFF;
	}

.header_text p { 
	font: 12px Arial, Helvetica, sans-serif;
	color: #696969;
	padding: 0px 1px 10px 1px;
	line-height: 1.3em;
}

.message {
	clear: both;
	padding: 2px 0 0 15px;
}


/* IDs. All the specific, one-time only stuff (in theory). */
#header {
	height: 88px;
}
	
#tagline {
	margin-bottom: 11px;
}

#navbar {
	margin: 2px 0 0 0px;
	height: 30px;
}

#subnav_header { 
	padding: 0;
	margin: 22px 8px 0 0;
}

#subnav_header li { 
	padding: 0 5px 0 5px;
	margin: 0;
	display: inline; 
	font: 12px Arial, Helvetica, sans-serif;
	color: #696969;
}

#subnav { 
	margin: 22px 0 0 2px;
	height: 99px;
}

#subnav li {
	display: inline;
	margin-right: 13px;
	height: 99px;
	text-indent: -5000px;
	overflow: hidden;
	float: left;
}

#splash_telecom {
	margin-left: -6px;
	margin-top: -9px;
}

#healthcare a {
	display: block;
	width: 126px;
	height: 99px;
	background: url(/images/subnav_healthcare.png) bottom no-repeat ;
}

#healthcare a:hover, #healthcare a:focus, #healthcare a.active {
	background: url(/images/subnav_healthcare.png) top no-repeat ;
}

#alt_energy a {
	display: block;
	width: 126px;
	height: 99px;
	background: url(/images/subnav_alt_energy.png) bottom no-repeat ;
}

#alt_energy a:hover, #alt_energy a:focus, #alt_energy a.active  {
	background: url(/images/subnav_alt_energy.png) top no-repeat ;
}

#transportation a {
	display: block;
	width: 180px;
	height: 99px;
	background: url(/images/subnav_transportation.png) bottom no-repeat ;
}

#transportation a:hover, #transportation a:focus, #transportation a.active  {
	background: url(/images/subnav_transportation.png) top no-repeat ;
}

#trad_energy a {
	display: block;
	width: 126px;
	height: 99px;
	background: url(/images/subnav_trad_energy.png) bottom no-repeat ;
}

#trad_energy a:hover, #trad_energy a:focus, #trad_energy a.active  {
	background: url(/images/subnav_trad_energy.png) top no-repeat ;
}

#telecom a {
	display: block;
	width: 181px;
	height: 99px;
	background: url(/images/subnav_telecom.png) bottom no-repeat ;
}

#telecom a:hover, #telecom a:focus, #telecom a.active  {
	background: url(/images/subnav_telecom.png) top no-repeat ;
}

#footer { 
	margin: 18px 0 0 3px;
	height: 11px;
}

#footer li { 
	display: inline;
	margin: 0 21px 0 0;
	font: 11px Arial, Helvetica, sans-serif;
	color: #696969;
	vertical-align: text-top;
}

#footer li.active a {
	color: #000000;
}

#copyright {
	margin: 8px 0 0 3px;
	font: 9px Arial, Helvetica, sans-serif;
	vertical-align: text-top;
}

#bill, #miles {
	margin: 10px 0 20px 0;
}

#blogpic { 
	float: left;
	width: 211px;
	padding: 0 10px 5px 0;
}

#green {
	color: #7FBA00;
}

