@charset "UTF-8";
/* 
---------------------------------------------

Title :		1000voicesstrong.org shell css
Author : 	Jodi Wing
URL : 		http://www.1000voicesstrong.org

Created : 	18 Aug 2012
Modified : 	
Version : 	0.01

---------------------------------------------
*/


/* GLOBAL STYLES 
/**************************************************************************/
h1 {
	font-family: "ff-din-web-1","ff-din-web-2", Arial, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: bold;
	padding-bottom: 25px;
}
h1.intro {
	font-size: 1.4em;
	text-transform: capitalize;
	line-height: 1.2em;
}
p {
	line-height: 1.5em;
	color: #333;
	padding-bottom: 10px;
}
p.footnote {
	font-size: .7em;
}

strong.intro {
	font-weight: bold;
}
img.button {
	width: 362px;
}
a {
	color: #ED2C23;
}
.footnote {
	vertical-align: super; 
	font-size: .5em;
}
td {
	padding: 5px;
	vertical-align: middle;
}
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
/* HEADER-NAVIGATION
/**************************************************************************/
body {
	margin: 0;
	padding: 0;
	font-family: Arial, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background: url("../images/bkg-speech.gif") repeat scroll 0 0;
}
div#header-container {
	position: fixed;
	width: 100%;
	background: #000;
}
div#header {
	position: relative;
	width: 920px;
	height: 20px; /*added this to deal with both floats */
	margin: 0 auto;
	padding: 30px;
}

/*I changed this from an id to a class. Generally, it's better practice to stick with classes for styles because
ids are so often used by javascript.*/
a.logo { 
	float:left;
}

a.logo img {
}

ul#nav {
	float: right;
	padding: 0;
	list-style: none;
	text-align: right;
}
ul#nav li {
	display: inline-block;
	margin: 0;
	padding-left: 30px;
	
}
/*Moved the icons into the a tag so they'd be clickable. This required removing the center-aligned text because it got weird.*/
ul#nav li a {
	display: block;
	background: url("../images/speech-icon.gif") no-repeat scroll 0 2px;
	font-family: "ff-din-web-1","ff-din-web-2", Arial, Arial, Helvetica, sans-serif;
	padding-left: 30px;
	text-decoration: none;
	color: #CCC;
	font-size: 1.2em;
	text-transform: uppercase;
}
/* MAIN CONTENT AREA
/**************************************************************************/
div#container {
	width: 960px;
	margin: 0 auto;
	padding-top: 90px;
}
/*Moved the top padding into the main container div so the background would show up - also it made it a little cleaner. 
All divs have a bottom margin of 30px. With that, the only thing special about the video div is no padding. Otherwise
all divs are the same. this way, I can make this code a lot smaller.*/

#container div {
	margin-bottom: 30px;
	padding: 30px;
	background: #FFF;
	overflow: auto;
}

#container div#video {
	padding: 0;
	overflow: hidden;
	z-index: 1000;
}
img.left {
	float: left;
	padding-right: 30px;
}
#container div.col1 {
	padding: 0;
	margin: 0;
	width: 500px;
	float: left;	
}
#container div.sidebar {
	width: 370px;
	float: right;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
.sidebar p {
	margin-top: 20px;
}


/* FOOTER
/**************************************************************************/
div#footer-wrap {
	position: relative;
	margin-top: 30px;
	bottom: 0;
	width: 100%;
	background: #000;
}
div#footer-container {
	position: relative;
	width: 920px;
	height: 100px;
	margin: 0 auto;
	padding: 30px;
}
div#footer-about {
	float: left;
	width: 440px;
}
div#footer-info {
	display: inline-block;
	width: 450px;
	padding-left: 30px;
}
.footer-text {
	font-size: .7em;
	color: #CCC;
	width: 430px;
}
#footer-logo {
	float: right;
	margin-top: -110px;
}
/* JQUERY POPIN
/**************************************************************************/
/* the overlayed element */

#popinbg {
	background: #000;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9001;
	display: none;
	opacity: .5;
}

.simple_overlay {
 
    /* must be initially hidden */
    display:none;
 
    /* place overlay on top of other elements */
    z-index:10000;
 
    /* styling */
    background-color:#FFF;
 
    width:645px;
    min-height:200px;
	padding: 30px;
    border:1px solid #666;
 
    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}
 
/* close button positioned on upper right corner */
.simple_overlay .close {
    background:url("../images/close.png") no-repeat scroll;
    position:absolute;
    right:5px;
    top:20px;
    cursor:pointer;
    height:35px;
    width:35px;
}
/* styling for elements inside overlay */
.details {
width:350px;
float:right;
}

.shareLinks {
width:150px;
float:left;
}

.details h3 {
color:#aba;
font-size:15px;
}
.element_to_pop_up { 
	display:none; 
}