/* ------------------------------------------------------------

  * Colorado Loves CA
  * Coded by Taylor Smith of Imulus

  screen.css
  - Site wide style, layout, and function

------------------------------------------------------------ */


/* =Initial Page Structure 
------------------------------------------------------------ */

* { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	list-style: none;
}

html {
	font: 11px/15px "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #231f20;
}

body { 
	position: relative;
	margin: 0 auto;
	background: #fff;
}

body.home {
  background: url('images/bg-body.gif') left top repeat;
  margin: 30px auto;
}

.container {
  width: 700px;
  margin: 0 auto;
  padding: 10px 25px 7px 25px;
}

  .content { 
  	position: relative;
  	float: left;
  	width: 426px;
  	padding: 0 12px;
    margin-right: 25px;
  }

  .sidebar {
    position: relative;
    float: right;
    width: 215px;
    padding: 0 25px;
  }

  .sidebar img {
	padding-bottom: 10px;
	}





.main {
  background: #fff;
  width: 715px;
  padding: 0 10px 7px 25px;
}

  .main .content { 

  }

  .main .sidebar {
    padding: 0 25px 180px 0;
    background: url('images/bg-sidebar_baby.jpg') left bottom no-repeat;
  }

  .main .sidebar .content {
    width: 195px;
    padding: 0 15px;
    background: #d8e5ed;
		margin: 0;
  }
 
 
 
 
 


.subcontent {
	padding-top: 17px;
  background: url('images/bg-subcontent.gif') left bottom no-repeat;
  color: #fff;
}

.subcontent .content {
}

.subcontent .sidebar {
  padding: 0;
} 

.subcontent .sidebar ul li {
  list-style: none;
  margin: 0;
}

.subcontent .sidebar ul li a {
  display: block;
  padding: 5px 0 5px 80px;
  border: none;
}

.subcontent .sidebar ul li.rss a {
  background: url('images/bg-li_rss.gif') 3px center no-repeat;
}

.subcontent .sidebar ul li.twitter a {
  background: url('images/bg-li_twitter.gif') 3px center no-repeat;
}

.subcontent .sidebar ul li.facebook a {
  background: url('images/bg-li_facebook.gif') left center no-repeat;
}

.subcontent .sidebar ul li.video a {
  background: url('images/bg-li_youtube.gif') 14px center no-repeat;
}

.subcontent .sidebar ul li.flickr a {
  background: url('images/bg-li_flickr.gif') 3px center no-repeat;
}

.subcontent a {
  color: #fff;
  border-color: #fff;
}

.subcontent a:hover {
  color: #ddd;
  border-color: #fff;
}

#intro {
  position: relative;
  margin: 0 auto;
  width: 850px;
  height: 500px;
}

#intro p {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}

#header { 
	position: relative;
	width: 750px;
	height: 194px;
  	margin: 0 auto;  
  	background: url('images/bg-header_sand.gif') left top no-repeat;
}

#footer {
	clear: both;
	position: relative;
  width: 750px;
  margin: 10px auto 0 auto;
  padding-top: 9px;
  background: url('images/bg-footer.gif') left top no-repeat;
  font-size: 11px;
}

#footer .holder {
  position: relative;
  float: left;
  width: 750px;
  padding-bottom: 5px;
  background: url('images/bg-footer_container.gif') left bottom no-repeat;
}


#footer .content {
	float: right;
}

#footer .sidebar {
	float: left;
  background: #fff;

  padding: 0 0 0 0;
}


/* =Basic Element Styles 
------------------------------------------------------------ */ 

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-bottom: 8px;
}

h1 { 
	font-size: 18px;
	padding-bottom: 12px;
}

h2 { 
	font-size: 16px;
}

h3 { 
	font-size: 14px;
}

h4 { 
	font-size: 12px;
}

h5 { 
	font-size: 12px;
}

h6 { 
	font-size: 12px;
}

p {
	padding-bottom: 11px;
}

ul {
  margin-bottom: 1.5em;
}

ul li {
  list-style: square;
  margin-left: 14px;
}

.spacer { 
	padding-top: 18px;
}

input,
textarea { 
	border: 1px solid #ddd;
	padding: 2px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

input[type="image"], 
input.submit { 
	border: 0 !important;
	padding: 0 0 0 3px !important;
	background: transparent !important;
	width: auto !important;
}

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: #0074b7;
	text-decoration: none;
}

a:hover { 
	color: #d2232a;
  border-color: #999;
}

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 
------------------------------------------------------------ */ 

.bottom {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.left { 
	float: left;
	position: relative;
	margin: 0 10px 5px 0;
}

.right { 
	float: right;
	position: relative;
	margin: 0 0 5px 10px;
}

.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 100px;
}

.forms p label.name { 
	position: relative;
	float: left;
	width: 100px;
	padding-right: 10px;
	margin-left: -110px;
	text-align: right;
	vertical-align: middle;
}	

.forms span.error { 
	display: block;
	position: absolute;
	right: 0;
	width: 240px;
	color: #999;
	font-size: .9em;
	background: #eee;
	padding: 3px 5px 4px 5px;
	border: 1px solid #ccc;
	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 h1 {
  text-indent: -9999px;
}

	/* =Content 
------------------------------------------------------------ */ 

h2.more-people {
  width: 225px;
  height: 50px;
  background: url('images/h2-sidebar.gif') left top no-repeat;
  text-indent: -9999px;
  padding: 0;
  margin: 0 -15px 15px -15px;
}

h2.signs-of-love {
  width: 225px;
  height: 50px;
  background: url('images/h2-signs_of_love.gif') left top no-repeat;
  text-indent: -9999px;
  padding: 0;
  margin: 0 -15px 7px -15px;
}

h2.feel-the-love {
  width: 450px;
  height: 32px;
  background: url('images/h2-feel_the_love.gif') left top no-repeat;
  text-indent: -9999px;
  margin: 10px -12px 0 -12px;
}

h2.still-the-one {
  width: 450px;
  height: 32px;
  background: url('images/h2-still_the_one.gif') left top no-repeat;
  text-indent: -9999px;
  margin: 0 -12px;
}

h2.business-plan {
  width: 450px;
  height: 32px;
  background: url('images/h2-business_plan.gif') left top no-repeat;
  text-indent: -9999px;
  margin: 15px -12px 0 -12px;
}

h2.its-a-bird {
  width: 450px;
  height: 32px;
  background: url('images/h2-its_a_bird.gif') left top no-repeat;
  text-indent: -9999px;
  margin: 15px -12px 0 -12px;
}

h2.never-ends {
  width: 144px;
  height: 13px;
  background: url('images/h2-never_ends.gif') left top no-repeat;
  text-indent: -9999px;
}

h2.more-info {
	margin-bottom: 11px;
}

#newsletter * { 
	vertical-align: middle;
}

input#q {
  height: 14px;
  padding: 5px 2px;
}

a#signup {
	display: block;
	width: 161px;
	height: 24px;
	background: url('images/more_info.gif') left top no-repeat;
	text-indent: -9999px;
}

	/* =Footer 
------------------------------------------------------------ */ 

#footer ul.contact {
  float: right;
  width: 450px;
  margin-bottom: 5px;
}
#footer ul.contact li {
	float: right;
  list-style: none;
}

#footer a.metro-denver {
  display: block;
  background: url('images/bg-metro_denver.gif') left top no-repeat;
  width: 200px;
  height: 60px;
  text-indent: -9999px;
  border: none;
}