@charset "utf-8";
/* CSS Document created by Brandi Jones (bjones@4site.tv) 6/15/10 www.4site.tv */

body {
	background-image:url(../images/bkgr-cardboard.jpg);
	background-position:center top;
	background-color:#999;
	background-attachment:fixed;
	padding:0px;
	padding:50px 0px 50px 0px;
	margin:0px;
	font-family:Arial, Helvetica, sans-serif;
	color:#2a2a2a;
}

#victory {
	position:absolute;
	top:-50px;
	left:-53px;
	z-index:400;
}

#wrapper {
	position: relative;
	width:1000px;
	margin:0px auto 0px auto;
	padding:20px;
	background-color:transparent;
	background-image:url(../images/bkgr-trans.png);
}


#wrapperInner {
	background-color:white;
	width:1000px;
	z-index:300;
}

/*------------------------------typography, misc. elements-----------------------------*/

.clear {
	clear:both;
	font-size:0px;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top:0px;
}

.noBotMarg {
	margin-bottom:2px;
}

p {
	font-size:12px;
	line-height:18px;
	margin-bottom:16px;
}

span.attention {
	text-transform:uppercase;
	font-weight:bold;
}

.updated {
	color:#F00;
}

h1 {
	font-size:14px;
	line-height:14px;
	color:#000000;
	font-weight:bold;
	margin-bottom:12px;
	border:1px solid #aaaaaa;
	background-color:#eeeeee;
	padding:12px;
	/* allow for IE rendering of inline-block */
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;
}


h2 {
	font-size:24px;
	line-height:28px;
	text-transform:uppercase;
	margin-bottom:16px;
	color:#999;
	font-weight:normal;
}

a:link, a:visited {
	text-decoration:underline;
	color:#0060a9;
}

a:hover {
}

a.setback {
	color:#666;
	text-transform:uppercase;
	font-weight:bold;
}

ul {
	margin:0px 0px 16px 20px;
	padding:0px 0px 0px 0px;
}

li {
	font-size:12px;
	padding-bottom:8px;
	margin-bottom:0px;
	line-height:16px;
}

.left {
	float:left;
	margin:0px 20px 5px 0px;
}

.right {
	float:right;
	margin:0px 0px 5px 20px;
}

.rule {
	border-bottom:1px solid #a6a6a6;
	height:1px;
	margin:0px 0px 30px 0px;
}	

table {
	font-size:12px;
	line-height:18px;
}

td {
	padding:5px;
}

form input {
	width:220px;
}


/*--------------------------------------page layout--------------------------------------*/

#header {
	position:relative;
	width:870px;
	height:120px;
	margin:0px auto 40px auto;
	border-bottom:1px solid #a6a6a6;
}

img.logo {
	position:absolute;
	left:0px;
	top:54px;
}

#twitterLink {
	position:absolute;
	right:0px;
	top:15px;
}

#fbLink {
	position:absolute;
	right:64px;
	top:15px;
	font-size:12px;
}

/* NAV (horizontal HTML text) */

#nav {
	position:absolute;
	bottom:12px;
	left:250px;
	margin:0px;
	padding:0px;
	z-index:40;
}

/* IE6 specific--fixes text-indent bug from above (anything in a wrapper
with "hasLayout" and neg. text-indent inside disappears in IE6, here the main nav!) */
* html #nav {
	background-image:url(http://go.greenpeaceusa.org/traitor-joe/images/bkgr-nav.jpg);
}

#nav li {
	display:inline;	
	list-style-type:none;
	position:relative;
	float:left;
	padding:0px;
	margin:0px;
}

#nav li a:link, #nav li a:visited {
	margin:0px;
	display:block;
	text-decoration:none;
	padding:0px 10px 0px 7px;
	color:#6699cc;
	font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
	background-image:url(../images/bkgr-nav.jpg);
	background-position:right 1px;
	background-repeat:no-repeat;
}

#nav li.last a:link, #nav li.last a:visited {
	padding-right:0px;
	background-image:none;
}

#nav li a:hover {
	color:#336699;	
}


/* IE6 specific (sets block links without taking up entire width of parent or needing to set explicit widths, 
other browsers don't seem to have this issue) */
* html #nav li a:link, * html #nav li a:visited {
	display:inline-block;
}

/*####### IF DROPDOWNS #######*/

/*--IE sticky menu fix--*/
#nav ul li:hover {
	background-position: 0 0;
}

/*--1st level drop downs--*/
#nav ul {
	position: absolute;
	left: -999em;
	width:12em;	
	margin:0px;
	padding:0px;
	list-style-type:none;
	border-top:5px solid white;
	z-index:40;
}

/*--1st level dropdown list items--*/
#nav li li {
	margin:0px 0px 0px 0px;
	padding:0px;
	float:none;
	/*--fixes z-index stacking order in second/third level fly out menus--*/
	position:static;
}

/*--1st level dropdown nested links--*/
#nav li li a:link, #nav li li a:visited {
	display:block;
	margin:0px;
	padding:7px 0px 7px 25px;
	width:12em;
	text-align:left;
	text-transform:none;
	font-family:Arial, Helvetica, sans-serif;
	color:#124F92;
	font-size:11px;
	font-weight:normal;
	border:1px solid #124F92;
	border-top:none;
	background-color:white;
	background-image:none;
	height:auto;
}

#nav li li a:hover {
	background-color:white;
	color:#849dcb;
	background-image:none;
}

/*--1st level dropdown flyout--*/
#nav li:hover ul, #nav li.sfhover ul {
	left:0px;
	z-index:2000;
	/* (prevents sticking menu in IE7) */
	min-height:0;
}

/* IE6 specific (set absolute top margin to work with li a "display:inline-block" fix above) */
* html #nav li.sfhover ul {
	top:32px;
}

/*####### END DROPDOWNS #######*/

#content {
	width:870px;
	margin:0px auto 0px auto;
}

#contentTop {
	margin:35px auto 35px auto;
	border-bottom:1px solid #a6a6a6;
	background-image:url(../images/bkgr-boxes.jpg);
	background-position:right 20px;
	background-repeat:no-repeat;
	padding-bottom:20px;
	position:relative;
	z-index:20;
}

#contentTop p {
	margin-right:230px;	
}

body#home #contentTop p {
	margin-right:0px;	
}

#contentBot {
	position:relative;
	/* bug in IE7 below */
	*position:static;
}

#intro {
	background-color:#0060a9;
	padding:15px;
	position:relative;
	z-index:30;
}

#intro p {
	color:#FFF;
	padding-left:15px;
	background-image:url(../images/icon-arrow.gif);
	background-position:left 6px;
	background-repeat:no-repeat;
	margin-bottom:0px;
}

body#home #intro p {
	padding-right:120px;
}

img.workerSitting {
	position:absolute;
	bottom:-107px;
	left:690px;
}

#video {
	margin:0px 40px 10px 0px;	
	float:left;
	width:640px;
}

#right {
	padding:90px 0px 0px 0px;	
	float:left;
	width:180px;
}

#embeds {
	width:640px;	
	z-index:10px;
	float:left;
}

#embedTwitter, #embedFB {
	width:316px;
	height:128px;
	position:relative;
	float:left;
}

#embedTwitter textarea, #embedFB textarea {
	width:200px;
	height:60px;
	background-color:#FFF;
	border:1px solid #dbdbdb;
	padding:15px;
	z-index:20;
	position:absolute;
	left:0px;
	top:16px;
	color:#666;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	line-height:18px;
}

#embedTwitter img, #embedFB img {
	z-index:10;
	position:absolute;
	right:0px;
	top:0px;
}

img.workerEdge {
	position:absolute;
	left:-205px;
	top:-130px;
	/* hide in IE7 below */
	*display:none;
}

/* subpage styles */

img.workerHands {
	position:absolute;
	right:0px;
	bottom:-1px;
}


/* Footer */

#footer {
	clear:both;
	padding:0px 0px 40px 0px;
}

#footer p {
	color:#666666;
	text-decoration:none;
	margin:0px;
	padding:0px;
	text-align:center;
	font-size:10px;
	line-height:14px;
}

#footer p a:link, #footer p a:visited {
	color:#6699cc;
	text-decoration:underline;
}

/* Popup for employees */

body#popupPage {
	padding:0px;
}

#popup {
	width:500px;
	height:350px;
	background-image:url(../images/bkgr-employee.jpg);
	background-position:left top;
	background-repeat:no-repeat;
	position:relative;
}

#popupInner {
	position:absolute;
	width:200px;
	height:230px;
	left:267px;
	top:91px;
}

#popup p {
	line-height:24px;
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome) 
Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; }
}


/*--------------------------------------print styles--------------------------------------*/

@media print {
	body#home #header, #header, #right {display:none;}
	#wrapper, #left, #right, #content, #contentSub {width:auto !important; height:auto !important; min-height:0; position:static; margin:0px; padding:0px; border:none; float:none !important;}
	#intro {border:1px dashed gray; background-color:white;}
	h1 {text-indent:0px;}
	body, p {color:black; background-image:none; background-color:white;}
	a, a:visited {text-decoration:underline;}
	#footer {background-image:none; text-align:left; margin:0px; padding:0px; padding-top:15px; margin-top:50px; border-top:1px solid #d4d4d4; height:auto;}
	#footer p {padding:0px;}
}

