/* ------------------------------------------------------------

  * Colorado Cleantech
  * Coded by Taylor Smith of Imulus

  screen.css
  - Site wide style, layout, and function

	=Colors
	- blue background: 166187

------------------------------------------------------------ */


/* =Include External CSS Files 
------------------------------------------------------------ */



/* =Initial Page Structure 
------------------------------------------------------------ */

* { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	list-style: none;
}

html {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #555;
	background: #166187;
}

body { 
	position: relative;
	margin: 0 auto;
	background: #fff;
}

.container {
	position: relative;
	width: 960px;
	margin: 0 auto;
	clear: both;
}

#header { 
	position: relative;
	background: #ecf2f5 url('/images/layout/header/header-bg.gif') left bottom repeat-x;
	padding-top: 10px;
	z-index: 5000;
}

#header .container {
	height: 150px;
}

.sub #header { 
	position: relative;
}

#content { 
	position: relative;
	padding: 10px 0;
	background: url('/images/layout/content/content-bg.gif') left top repeat-x;
	z-index: 3000;
}

.home #content {
	padding: 0;
}

.sub #content { 
	position: relative;
}

#footer { 
	float: left;
	clear: both;
	position: relative;
	margin-top: -100px;
	background: #166187 url('/images/layout/footer/back-bg.png') 20% top repeat-x;
	width: 100%;
	padding-bottom: 30px;
}


/* =Basic Element Styles 
------------------------------------------------------------ */ 

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-bottom: 8px;
	color: #0e81b4;
}

h1 { 
	font-size: 18px;
	padding-bottom: 12px;
}

h2 { 
	font-size: 14px;
	color: #d78401;
	font-weight: normal;
	padding-bottom: 4px;
}

h3 { 
	font-size: 14px;
	color: #333;
}

h4 { 
	font-size: 12px;
}

h5 { 
	font-size: 12px;
}

h6 { 
	font-size: 12px;
}

p {
	padding-bottom: 18px;
}

.spacer { 
	padding-top: 18px;
}

input,
textarea { 
	padding: 5px;
	border: 1px solid #bed9e9;
	background: url('/images/layout/global/input-bg.gif') left top no-repeat;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;	
}

input[type="image"], 
input.submit { 
	border: 0 !important;
	padding: 0 0 3px 6px !important;
	background: transparent !important;
	width: auto !important;
	vertical-align: middle;
}

input[type="text"]:focus { 
	border: 1px solid #A7BFCE;
	box-shadow: 0 0 10px #A7BFCE;
	-moz-box-shadow: 0 0 10px #A7BFCE;
	-webkit-box-shadow: 0 0 10px #A7BFCE;

}

select { 
	padding: 0;
	border: 1px solid #999;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

img,
a img { 
	border: 0;
	vertical-align: middle;
} 

a { 
	color: #25aae1;
	text-decoration: none;
}

a:visited { 
	color: #25aae1;
}

a:hover { 
	color: #0774a3;
	text-decoration: none;
}

a.hover-box img.original {
	float: left;
	position: relative;
}

a.hover-box img.hover { 
	display: none;
}

a.hover-box { 
	position: relative;
	float: left;
	display: block;
}

a.hover-box:hover { 
	display: block; 
	font-size: 100%; 
	z-index: 1; 
}

a.hover-box:hover img.hover { 
	display: block;
	position: absolute;
	float: left;
	left: 0;
	top: 0;
	z-index: 1000;
}


/* =Utilities 
------------------------------------------------------------ */ 

.left { 
	float: left;
	position: relative;
	margin: 0 18px 9px -20px;
}

.left.tilt {
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
}

.right { 
	float: right;
	position: relative;
	margin: 0 -20px 9px 18px;
}

.right.tilt {
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
}

.clear {
	clear: both;
}

.clear-left { 
	clear: left;
}

.clear-right { 
	clear: right;
}

.clear-none { 
	clear: none;
}

.center { 
	text-align: center;
}

.autoclear:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
}

.autoclear { 
	display: inline-block;
}

.autoclear { 
	display: block;
}

	/* =Forms 
------------------------------------------------------------ */ 

.forms p { 
	position: relative;
	float: left;
	clear: left;
	padding: 0 0 15px 150px;
}
	
.forms p label.name { 
	position: relative;
	float: left;
	width: 140px;
	padding-right: 10px;
	margin-left: -150px;
	text-align: right;
}	

.forms span.error { 
	display: block;
	position: absolute;
	right: 5px;
	top: 4px;
	width: auto;
	color: #999;
	font-size: .9em;
	padding: 3px 5px 4px 5px;
	line-height: 1em;
}

.forms p input { 
	width: 300px;
}

.forms p input.small { 
	width: 70px;
}

.forms p input.medium { 
	width: 200px;
}

.forms p input.large { 
	width: 300px;
}

.forms p input.submit { 
	border: 1px solid #ccc;
	background: #eee;
	width: auto;
	height: auto;
	padding: 2px 5px;
}

.forms p textarea { 
	width: 300px;
}

.forms p textarea.short { 
	height: 70px;
}

.forms p textarea.tall { 
	height: 180px;
}

.forms p span.radcheck { 
	
}

.forms p span.radcheck input { 
	border: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
	margin-left: 10px;
	margin-right: 5px;
}

.forms p select { 
	border: 1px solid #ccc;
	width: 306px;
}

/* =Layout and Function 
------------------------------------------------------------ */ 

	/* =Header 
------------------------------------------------------------ */ 


#header strong a {
	display: block;
	width: 162px;
	height: 70px;
	margin-left: 20px;
	background: url('/images/layout/header/logo.gif') left top no-repeat;
	text-indent: -9999px;
}

#header em.tagline {
	display: block;
	position: absolute;
	left: 200px;
	top: 60px;
	width: 174px;
	height: 9px;
	background: url('/images/layout/header/tagline.gif') left top no-repeat;
	text-indent: -9999px;
}

#header #search {
	position: absolute;
	right: 20px;
	top: 55px;
}

#header ul#navigation {
	position: absolute;
	float: left;
	bottom: 0;
	z-index: 9000;
}

#header ul#navigation li {
	float: left;
	position: relative;
}

#header ul#navigation li a {
	float: left;
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
	background: #229acc url('/images/layout/header/navigation/navigation-bg.gif') left top repeat-x;
}

#header ul#navigation li.first a { background: url('/images/layout/header/navigation/navigation-bg-first.gif') left top no-repeat; }
#header ul#navigation li.last a { background: url('/images/layout/header/navigation/navigation-bg-last.gif') right top no-repeat; }


#header ul#navigation li a span {
	float: left;
	padding: 0 10px;
	background: transparent url('/images/layout/header/navigation/navigation-divider.gif') left top no-repeat;
}

#header ul#navigation li.item0 a span { width: 65px; background: none; }
#header ul#navigation li.item1 a span { width: 125px; }
#header ul#navigation li.item2 a span { width: 85px; }
#header ul#navigation li.item3 a span { width: 160px; }
#header ul#navigation li.item4 a span { width: 100px; }
#header ul#navigation li.item5 a span { width: 80px; }
#header ul#navigation li.item6 a span { width: 85px; }
#header ul#navigation li.item7 a span { width: 100px; }

#header ul#navigation li a:hover,
#header ul#navigation li:hover a,
#header ul#navigation li#active a {
	background-position: left -55px;
}

#header ul#navigation li.last a:hover,
#header ul#navigation li.last:hover a,
#header ul#navigation li#active.last a {
	background-position: right -55px;
}

#header ul#navigation li a span span {
	padding: 12px 0 22px 0 !important;
	background: none;
}


#header ul#navigation li#active a span span {
	background: url('/images/layout/header/navigation/active-nipple.gif') center bottom no-repeat;
}


#header ul#navigation li#active a:hover span span,
#header ul#navigation li#active:hover a span span {

}











#header ul#navigation li ul.children { 
	display: block;
	position: absolute;
	left: -9999px;
	padding: 0 10px 10px 10px;
	z-index: 7000;
	width: 190px;
}

#header ul#navigation li:hover ul.children,
#header ul#navigation li.over ul.children /* class over is used to target IE6 via /includes/js/dropdown.js */ { 
	top: 46px;
	left: -9px;
}

#header ul#navigation li ul.children li {
	height: auto;
} 

#header ul#navigation li:hover ul.children li a, 
#header ul#navigation li.over ul.children li a { 
	display: block;
	text-align: left;
	padding: 10px 15px;
	width: 160px;
	background: #349ecc;
	border-top: 1px solid #86c9e6;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
}

#header ul#navigation li:hover ul.children li a:hover, 
#header ul#navigation li.over ul.children li a:hover {
	background: #16536d;
	color: #fcb040;
}




	/* =Content 
------------------------------------------------------------ */ 

.home #content #intro {
	float: left;
	width: 300px;
	margin-right: 20px;
	padding-top: 20px;
}

.home #content #intro h1 {
	padding-bottom: 5px;
}

.home #content #flash {
	float: left;
	width: 620px;
	height: 340px;
	padding: 15px 10px;
	background: url('/images/layout/content/flash-bg.png') left top no-repeat;
}

.home #content #featured {
	float: left;
	width: 300px;
	margin: 10px 20px 0 0;
}

.home #content #featured h2 {
	background: url('/images/layout/content/headings/featured-project.gif') left bottom no-repeat;
	width: 164px;
	height: 40px;
	text-indent: -9999px;
	padding: 0;
	margin-bottom: 9px;
}

.home #content #news {
	float: left;
	width: 620px;
	padding: 0 10px;
	margin: 10px 0 0 0;
}

.home #content #news h2 {
	position: relative;
	background: url('/images/layout/content/headings/cleantech-news.gif') left bottom no-repeat;
	height: 40px;
	text-indent: -9999px;
	padding: 0;
	margin-bottom: 9px;
}

.home #content #news h2 a.rss {
	display: block;
}


.home #content #news h2 span {
	text-indent: 0;
	float: right;
	padding: 10px 10px 10px 0;
	font-size: 12px;
	background: url('/images/icons/tertiary-carrot.gif') right center no-repeat;
}

.home #content #news ul li a {
	display: block;
	padding: 8px 0 8px 10px;
	background: url('/images/icons/bullet.gif') left center no-repeat;
	border-bottom: 1px solid #c3d6e0;
	text-decoration: none;
	color: #222;
}

.home #content #news ul li a span {
	color: #aaa;
}

.home #content #news ul li a:hover {
	text-decoration: underline;
}

.home #content #news #sign-up {
	clear: both;
	float: left;
	width: 280px;
	margin: 20px 20px 0 0;
}

.home #content #news #sign-up h3 {
	background: url('/images/layout/content/headings/news-signup.gif') left bottom no-repeat;
	width: 217px;
	height: 40px;
	text-indent: -9999px;
	padding: 0;
	margin-bottom: 18px;
}

.home #content #news #sign-up input {
	width: 189px;
}

.home #content #news #twitter {
	float: left;
	width: 320px;
	margin: 20px 0 0 0;
}

.home #content #news #twitter h3 {
	background: url('/images/layout/content/headings/on-twitter.gif') left bottom no-repeat;
	width: 217px;
	height: 40px;
	text-indent: -9999px;
	padding: 0;
	margin-bottom: 18px;
}

.home #content #news #twitter p {
	padding-top: 3px;
}

.home #content #news #twitter p span {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #b2d0e0;
}

#content #main ul,
#content #main ol {
	padding-bottom: 18px;
}

#content #main ul li {
	margin-left: 1.5em;
	padding: 0 0 10px 1.25em;
	background: url('/images/icons/bullet.gif') left 7px no-repeat;
}

#content #main ol li {
	margin-left: 3em;
	list-style: decimal;
}

#content #main table {
	text-align: left;
	border-collapse: collapse;
	margin: 0 0 18px 0;
	border-right: 1px solid #c5c5c5;
	border-top: 1px solid #c5c5c5;
}


#content #main table th {
	background: #ffc;
	border: 1px solid #c5c5c5;
	padding: 5px 10px;
}

#content #main table td {
	background: #fff;
	border-bottom: 1px solid #c5c5c5;
	border-left: 1px solid #c5c5c5;
	padding: 5px 10px;
}

#content #main table tbody tr.alt td {
	background: #f7f7f7;
}




	/* =Subpage 
------------------------------------------------------------ */ 

.sub #content #main {
	position: relative;
	float: left;
	width: 600px;
	margin-right: 40px;
}

.sub #content #main .tertiary {
	float: right;
	padding: 27px 10px 10px 10px;
	margin: 0 0 5px 10px;
	width: 200px;
	background: url('/images/layout/content/tertiary-bg.gif') left top no-repeat;
}

.sub #content #main .tertiary h2 {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}


.sub #content #main .tertiary h3 {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid #60c0e9;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.sub #content #main .tertiary ul {
	margin: 0;
	padding: 0;
}

.sub #content #main .tertiary ul li {
	background: none;
	padding: 0;
	margin: 0;
}

.sub #content #main .tertiary ul li a {
	color: #c0ecff;
	display: block;
	background: url('/images/icons/tertiary-carrot.gif') right center no-repeat;
	padding: 2px 10px 2px 0;
}

.sub #content #main .tertiary ul li a:hover {
	color: #fff;
}

.sub #content #main img {
	background: #fff;
	padding: 2px;
	box-shadow: 0 0 5px #aaa;
	-moz-box-shadow: 0 0 5px #aaa;
	-webkit-box-shadow: 0 0 5px #aaa;
}

.sub #content #main img.plain {
	background: transparent;
	padding: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.sub #content #sidebar {
	float: left;
	width: 320px;
}

.sub #content #sidebar .image-banner {
	margin-bottom: 18px;
}

.sub #content #sidebar .map iframe {
	position: relative;
	padding: 5px;
	border: 1px solid #cad5dc;
	background: #fff;
}


.sub #content #sidebar .news {
	position: relative;
	padding: 10px 15px 15px 15px;
	border: 1px solid #cad5dc;
	background: #fff;
}

.sub #content #sidebar .news h2 {
	display: block;
	background: url('/images/layout/content/headings/cleantech-news.gif') left bottom no-repeat;
	width: 288px;
	height: 40px;
	text-indent: -9999px;
	padding: 0;
	margin-bottom: 10px;
}

.sub #content #sidebar .news.project {
	background: #DAEDF0;
	margin-bottom: 18px;
	border-color: #7CB3D7;
}

.sub #content #sidebar .news.project h2 {
	height: 25px;
	background: url('/images/layout/content/headings/more-projects.gif') left bottom no-repeat;
}

.sub #content #sidebar .news h2 a {
	display: block;
}


.sub #content #sidebar .news ul li a {
	display: block;
	padding: 8px 0 8px 10px;
	background: url('/images/icons/bullet.gif') left 15px no-repeat;
	border-top: 1px solid #c3d6e0;
	text-decoration: none;
	color: #222;
}

.sub #content #sidebar .news ul li a span {
	color: #aaa;
}
	

.sub #content #sidebar .news ul li a:hover {
	text-decoration: underline;
}

.sub #content #sidebar p.share {
	padding-top: 6px;
}

.sub #content #sidebar p.share span.print {
	border-left: 1px solid #999;
	padding: 2px 0;
	margin-left: 10px;
}

.sub #content #sidebar p.share span.print a {
	padding: 1px 5px 5px 37px;
	background: url('/images/icons/print.gif') 15px top no-repeat;
}




	/* =News Archive
------------------------------------------------------------ */ 

.sub #content #main ul.news-archive {
	border-bottom: 1px solid #ddd;
	padding-bottom: 0;
}

.sub #content #main ul.news-archive li {
	padding: 0;
	margin: 0;
	background: transparent;
}

.sub #content #main ul.news-archive li a {
	display: block;
	padding: 10px 0 10px 150px;
	margin: 0;
	border-top: 1px solid #ddd;
}

.sub #content #main ul.news-archive li a strong {
	display: block;
	float: left;
	margin-left: -150px;
	color: #666;
}

.sub #content #main ul.news-archive li a:hover strong {
	color: #333;
}


	/* =Search Results 
------------------------------------------------------------ */ 

.sub #content #main #paging {
	padding: 10px 0;
	color: #444;
}

.sub #content #main #paging p {
	padding-bottom: 0;
}

.sub #content #main #paging p a {
	background: transparent;
	border: none;
	color: #25aae1;
	padding: 3px 6px;
	margin-left: 2px;

}

.sub #content #main #paging p.right {
	float: right;
	margin: 0;
}

.sub #content #main #paging p a:hover {
	color: #0774a3;
}

.sub #content #main #paging p a.active {
	border: 1px solid #cad5dc;	
	color: #666;
	text-decoration: none;
}



.sub #content #main .search-item a {
	display: block;
	text-decoration: none;
	margin: 15px 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #cad5dc;
}

.sub #content #main .search-item a strong.title {
	display: block;
	font-size: 14px;
	padding-bottom: 4px;
	font-weight: bold;
}

.sub #content #main .search-item span,
.sub #content #main .search-item em {
	display: block;
	font-style: normal;
	color: #333;
}

.sub #content #main .search-item em {
	font-size: 11px;
	color: #777;
	padding-top: 4px;
}

.sub #content #main .search-item a:hover {
	color: #0774a3;
}

.sub #content #main .search-item a:hover em {
	color: #555;
}


	/* =Footer 
------------------------------------------------------------ */ 

#footer .outer-wrap {
	position: relative;
	background: transparent url('/images/layout/footer/mid-bg.png') 40% top repeat-x;
}

#footer .outer-wrap .inner-wrap {
	position: relative;
	background: transparent url('/images/layout/footer/front-bg-full.png') 120% top repeat-x;	
}

#footer .outer-wrap .inner-wrap .container {
	position: relative;
	padding: 200px 0 18px 0;
}

#footer .outer-wrap .inner-wrap .container #metro-logo {
	position: absolute;
	bottom: 0;
	width: 250px;
}

#footer .outer-wrap .inner-wrap .container #logos {
	width: 260px;
	color: #699abb;
	position: absolute;
	bottom: 0;
	left: 260px;
	width: 250px;
}

#footer .outer-wrap .inner-wrap .container #logos p {
	padding-bottom: 4px;
}

#footer .outer-wrap .inner-wrap .container #logos p strong {
	font-weight: normal;
	font-style: italic;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding: 0 10px;
}

#footer .outer-wrap .inner-wrap .container #contact {
	position: absolute;
	bottom: 0;
	left: 520px;
	width: 450px;
	color: #a5cde9;
}

#footer .outer-wrap .inner-wrap .container #contact p {
	padding: 5px 0 0 0;
}

#footer .outer-wrap .inner-wrap .container #contact p span {
	padding-left: 15px;
}

#footer .outer-wrap .inner-wrap .container #contact p strong {
	color: #40aaf5;
	font-weight: normal;
}

#footer .outer-wrap .inner-wrap .container #contact p a {
	color: #a5cde9;
	text-decoration: none;
}

#footer .outer-wrap .inner-wrap .container #contact p a:hover {
	text-decoration: underline;
}
	


