@charset "UTF-8";

/* 
 *Assignment 3: Water Footprint Website
 *style.css
 * Author: Elise Murphy
 */

*{
	margin: 							0;
	padding:							0;
}

article, aside, 
footer, header,
hgroup, menu, 
nav, section {
	display: 							block; 
}
	
ul {
	list-style: 						none;
}

a, a:link, a:visited, a:active  {
	text-decoration:					none;
	color:								#444;
}


a img[src$=png], a:active img[src$=png] {
	text-decoration:					none;
	border:								0 none;
}

a:hover img[src$=png] {
	text-decoration:					none;
}

@font-face {
    font-family: 'clementepdaelight';
    src: url('../font/clemente-light-webfont.eot');
    src: url('../font/clemente-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/clemente-light-webfont.woff') format('woff'),
         url('../font/clemente-light-webfont.ttf') format('truetype'),
         url('../font/clemente-light-webfont.svg#clementepdaelight') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*	::::::::::::::::
	Body
	:::::::::::::::: */
	

body {	
	margin:								0 auto;
    background:                         url('../images/background-100x400.jpg') repeat-x #FFF2EA;
	color:								#444;
	width:								1024px;
	font: 								1.0em/1.4em "Lucida Grande", Arial, sans-serif;


}	

#container {
	background:   						#fff;
}


/*	::::::::::::::::
	header - home page
	:::::::::::::::: */
	
header {
	position:							relative;
	top:								0;
	margin:								10px 30px 0;
	padding-top:						30px;
	z-index:							7;
}	

#twc-logo {
	width:								365px;
	height:								52px;
}
			
       
/*	::::::::::::::::
	 main nav 
	:::::::::::::::: */	
		
#mainNav {
	position:							relative;
	margin:								20px auto 0 auto;
	padding:                            10px 0;
	height:								22px;
    background-color:                   #1C98CF;
    box-shadow:                         0 3px 5px #B4E3F6;
	z-index:							99;
}

#mainNav > ul {
    margin:                             0 30px;
}

#mainNav li {
	float:								left;
	width:								160px;
}

#mainNav li ul{
	display:							none;
}

#mainNav li:hover ul {
	display:							block;
    background-color:                   #1C98CF;
	position:							absolute;
}

#mainNav li:hover ul li {
    clear: 								left; 
    border-bottom:						1px dotted #ccc;
    padding:                            5px 10px 10px 5px;
    width:                              180px;
 }

#mainNav li:hover ul li:last-child {
    border-bottom:                      none;
}
#mainNav li a {
    display:                             block;
    color:                               #fff;
}

#mainNav li a:hover {
	color:								#B4E3F6;
}

#mainNav ul ul a {
    margin-left:                        10px;
}
 
li a#activePage,
li a#activePage:hover {
	color:								#B4E3F6;
}


/*	::::::::::::::::
	home page content 
	:::::::::::::::: */	
	
#photoSlide {
	position:							relative;
	top:								0;
	height:								370px;
	z-index:							1;
	width:								1024px;
}	
	
#lowerWave {
	position:							absolute;
	top:								398px;
	background:							url('../images/wave-1024x143px.png') no-repeat;
	width:								1024px;
	height:								143px;
	z-index:							10;
}	

#mainContent {
	position:							relative;
	top:								-25px;
	z-index:							20;
	padding:							10px 0 25px;
	margin-left:						30px;
}

.col {			
    float:								left;
    width:								482px;
    padding:							0;
}

.col h3 {
	color:								#116589;
    font-weight:                        normal;
}

.col p {
	margin-bottom:						12px;
	padding-right:						40px;
}

.col a:hover {
	color:								#B4E3F6;
}

h2 {
	font:								1.5em/1.6em clementepdaelight, sans-serif;
}
h3 {
    font:								1.4em/1.2em;
    padding-bottom:                     .3em;
}
article.content {
    margin-left:                          1em;
}
article.content li {
    list-style:                             disc;
    margin-left:                            1em;
    padding-bottom:                         1em;
}

h2#slogan {
	position:							absolute;
	top:								200px;
	color:								#fff;
	z-index:							5;
	margin-left:						30px;
}

.opaque {
	background-color:					rgba(155, 215, 255, 0.4);
}

h4 {
	font-weight:						bold;
	padding-top:						3px;
}

.button,
.buttonFootprint {
	-moz-border-radius: 				20px 20px 20px 20px;
	border-radius: 						20px 20px 20px 20px;	
}

p.button {
	padding:							8px;
    width:                              35%;
    background-color:					#cac5ad;
    text-align:                         center;
}

.buttonFootprint {
	padding:							5px;		
	background:							url('../images/white-footprint_33x87px.png') top right #cac5ad no-repeat;
	background-origin:					content-box;
	height:								87px;	
	width:								80px; 
}

.blue, .green, .grey {
    float:                              left;
    margin-right:                      1em;
}

.buttonFootprint.blue {
    background-color:                   #1C98CF;
}

.buttonFootprint.green {
    background-color:                   #36BDA1;
}

.buttonFootprint.grey {
    background-color:                   #A3A3A2;
}

dd {
      padding-bottom:                      1.5em;
      height:                              87px;
}

p.button a:hover,
p.buttonFootprint a:hover {
	color:								#ACA57E;
}

.bulletPara {
	display:							list-item;
	list-style:							disc;
	list-style-position:				inside;
}

.small {
	font-size:						    .8em;
}

/*	::::::::::::::::
	footer 
	:::::::::::::::: */		


footer {
	clear:								both;
	position:							relative;
	top:								0;
	background-color:					#B4E3F6;
	height:								220px;
	padding:							10px 30px 30px;
}

footer a:hover{
	color:								#fff;
}

section#stayConnected {
	float:								left;
	width:								482px;
}

#stayConnected h3,
#newsletterWindow {
	color:								#CA662B;
}	

#socialMedia li {
	float:								left;
	padding:							5px;
}

#socialMedia li#mobileApp {
	padding-left:						60px;
}	

section#newsletter-blog {
	clear:								both;
	position:							relative;
	padding:							0;
	height:								22px;
}

#newsletter {
	float:								left;
	background-color:					#fff;
	border:								1px dotted #ccc;
	padding:							3px;
}

#blogRSS {
	float:								left;
	padding-left:						15px;
}

#newsletter a:hover {
	color:								#ccc;
}

#nav-copyright-search {
	float:								right;
	width:								482px;
	font-size:							.9em;
}

#footerNav {
	position:							relative;
	top:								0;
}

#copyright-search {
	clear:								right;
	position:							relative;
	top:								10px;
	padding:							0;
	height:								22px;
}

#copyright {
	float:								left;
}

#search {
	float:								right;	
}

input.magnify {
	background:							#fff url('../images/searchGlass-21x21px.png') no-repeat right top;	
	z-index:							30;
}
	
.columnList {
	 float:								left;
	 width:								160px;
	 color:								#fff;
}


/*	::::::::::::::::
	FORM
	:::::::::::::::: */	

.txt {
	display: 							inline-block;
	width: 								200px;
	border: 							1px dotted #ccc;
	padding: 							5px 9px;
}

.txt:focus {
	border-style: 						solid;
	border-color: 						#bababa;
}

.send {
	color: 								#dee5f0;
	padding: 							5px 11px;
	border: 							solid 1px #224983;
	border-radius: 						5px;
	background: 						#CA662B;
}

.send:hover {
	background: 						#116589;
}

.send:active {
	color: 								#8c9dc0;
}

.close {
	float:								right;
	font-size:							.7em;
}

.login-popup{
	display:							none;
	background: 						#b4e3f6;
	padding: 							10px; 	
	border: 							2px solid #ddd;
	float: 								left;
	font-size: 							1.1em;
	position: 							fixed;
	top: 								50%; left: 50%;
	z-index: 							99999;
	box-shadow: 						0px 0px 20px #999; /* CSS3 */
    -moz-box-shadow: 					0px 0px 20px #999; /* Firefox */
    -webkit-box-shadow:					0px 0px 20px #999; /* Safari, Chrome */
	border-radius:						3px 3px 3px 3px;
    -moz-border-radius: 				3px; /* Firefox */
    -webkit-border-radius: 			3px; /* Safari, Chrome */
}

form {
	clear:								both;
	padding:							15px 5px 10px;
}


/*	::::::::::::::::
	lower-level pages
	:::::::::::::::: */

#ll-feature-photo {
    z-index: 0;
}

#ll-feature-photo h2 {
    text-shadow: 1px 1px 3px #000;
}

#ll-lowerWave{
    position:							absolute;
    top:								280px;
    background:							url('../images/wave-1024x143px.png') no-repeat;
    width:								1024px;
    height:								143px;
    z-index:							10;
}

#mainContent h1 {
    margin-bottom: 10px;
}
img.wrap_text {
    float: left;
    padding-right: 10px;
    padding-top: 10px;
}

.col article {
    padding-bottom: 5px;
}
