/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, figure, footer, header, 
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin: 1em 0px; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% sans-serif; }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color:#444; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; }

small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 


/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999em; overflow:hidden; background-repeat: no-repeat; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }





 /* Primary Styles
    Author: 
 */
 
 /* COLORS:
 
 	red: #C30000;
 	yellow: FFD90D;
 	
 */

.fl{ float: left; }
.clear{ clear: both; }
.w100{ width:100%; }

a { cursor: pointer; color: #D92032; }
strong { font-weight: bold;}
em { font-style: italic; }
p { padding: 5px 0; font-size: 12px;}
ol, ul { list-style: none; }
img { border: 0 none; outline: none;}

input { border: 1px solid #CCC; }
a.button {
	background:url("../../i/button_bg.png") no-repeat scroll left top transparent;
	color:#FFFFFF;
	display:inline-block;
	font-family:"Helvetica Nue",Arial,sans-serif;
	font-size:14px;
	padding:9px 0;
	text-align:center;
	text-decoration: none;
	text-transform:uppercase;
	width:160px;
	font-weight:bold;
}

body {
	background: url(../../i/body_bg.jpg) top center repeat-y #D92032;
	width: 100%;
	text-align: center;	
	font-family: "Helvetica Nue", Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	color: #000;
}

	.wrapper {
		width: 984px;
		margin: 0 auto;
		text-align: left;
	}
	
	header {
		background: url(../../i/header_bg.jpg) bottom left repeat-x #FFD90D;
		margin: 0;
		float:left;
		width: 100%;
	}
		
		header .logo {
			float: left;
			margin: 10px 10px 25px;
		}
		
		header .links {
			float: left;
			width: 700px;
			color: #C30000;
		}
		
			header .links p {
				color: #C30000;
				font-size: 14px;
				font-weight: normal;
				font-family: Georgia, serif;
				float: left;
				margin: 5px 10px;
			}
			
			header .links .social {
				margin-left: 45px;
				float:right;
			}
				header .links .social a {
					float: left;
					margin: 0 5px;
				}
		
		header nav {
			background:url("../../i/nav_bg.jpg") repeat-x scroll left top transparent;
			float:left;
			margin-left:-10px;
			width:740px;
		}
			header nav ul {
				margin: 0px;
			}
			
			header li {
				float:left;
				margin:19px 20px;
			}
			
			
			
				header li a {
					color: #FFF;
					display: block;
					text-decoration: none;
					font-weight:bold;
					text-transform:uppercase; 
				}	
				
				header li a:hover {
					color: #FFF;
				}
				header li:hover a {
					border-bottom: 6px solid #C30000;
				}	

	
	#rotator {
		float: left;
		clear: both;
		width: 100%;
		background: #FFD90D;
		position: relative;
	}
	
		#rotator article {
			float: left;
			width: 100%;
			height: 311px;
			display: none;
		}
		
			#rotator article.active {
				display: block;
			}
			
		#rotator #jobs, #rotator #accountability, #rotator #healthcare, #rotator #immigration, #rotator #marriage, #rotator #life, #rotator #second  {
			background: url(../../i/jobs_rotator.jpg) top left no-repeat;
		}
		
		

		#rotator article h1 {
			font-family:Helvetica,Arial,sans-serif;
			font-size:40px;
			margin-left:15px;
			margin-top:50px;
			
		}


		#rotator article h2 {
			color:#C30000;
			font-size:16px;
			font-weight:bold;
			margin:0 15px;
			font-family:Georgia;
		}	
		
		#rotator article .next {
			color:#000000;
			float:right;
			margin-right:300px;
			margin-top:-15px;
			position:relative;
			text-decoration:underline;
			z-index:100;
		}
		
		#rotator article p {
			margin: 5px 15px;
			width: 500px;
		}
		

		#rotator nav, .subnav {
			float: left;
			clear: both;
			width: 100%;
			background: #C30000;
			border-top: 1px solid #FFF;
			border-bottom: 1px solid #FFF;
			height:41px;
		}
		
			#rotator nav ul, .subnav ul {
				padding: 0;
				float: left;
				margin: 0;
			}
		
	
			#rotator nav ul li, .subnav ul li {
				float: left;
				background: none transparent !important;
				padding: 12px 28px;
				border-left: 1px solid #9E0000;
				border-right: 1px solid #ED0000;
				color: #FFF;
				cursor:pointer;
			}
				.subnav ul li { margin-top: 0 !important;}
				.subnav ul li a { color: #FFF; text-decoration: none;}
			
			#rotator nav ul li.active, .subnav ul li.active {
				background: #494949 !important;
			}
			
			#rotator nav ul li:last-child, .subnav ul li:last-child { border-right: 0 none; }
		
			
			#rotator nav ul li:hover span {
				border-bottom:16px solid #C30000;
				border-left:12px solid transparent;
				border-right:12px solid transparent;
				font-size:0;
				height:0;
				line-height:0;
				margin:-28px auto 0;
				position:absolute;
				width:0;
				z-index:100;
			}		
			
			#rotator nav ul li.active span, #rotator nav ul li.active:hover span {
				border-bottom:16px solid #494949;
				border-left:12px solid transparent;
				border-right:12px solid transparent;
				font-size:0;
				height:0;
				line-height:0;
				margin:-28px auto 0;
				position:absolute;
				width:0;
				z-index:100;
			}
		#rotator .lollar {
			position: absolute;
			right: 0;
			top: -45px;
			z-index:10;
		}
	
	#page_header {
		float: left;
		clear: both;
		width: 100%;
		background: #FFD90D;
		background: -webkit-gradient(linear, left top, left bottom, from(#FFD90D), to(#FEB60B));
		background: -moz-linear-gradient(top,  #FFD90D,  #FEB60B);	
		position: relative;
	}
		#page_header .lollar {
			position: absolute;
			right: 0;
			top: -42px;
			z-index:10;
		}
		
		#page_header h1 {
			float: left;
			margin: 65px 25px;
			font-size: 36px;
			font-weight: bold;
			font-family: Arial, sans-serif;
			color: #000;
		}
	
		
	#content {
		float: left;
		clear: both;
		width: 100%;
		margin-bottom: 50px;
	}
	
	#main {
		float: left;
		width: 691px;
		padding-bottom: 15px;
		margin: 0 0 0 10px;
	}
	
	#main p {
	
		line-height:1.7em;
		
	}
	
		#main #twitter {
			margin: 15px;
			background: #E8E8E8;
			border-radius: 8px;
			-moz-border-radius: 8px;
			-webkit-border-radius: 8px;
		}
		
			#main #twitter h1 {
				font-size:24px;
				padding: 15px;
			}
			
				#main #twitter h1 a{
					
					color:#000;
					text-decoration:none;
					
				}
			
				#main #twitter h1 img {
					float:left;
					margin-right:10px;
				}
			
			#main #twitter p {
				font-size: 14px;
				color: #000;
				padding: 0 15px 10px;
			}
			
			#main #twitter .twitter {
				background: url(../../i/twitter_btn.png) top left no-repeat;
			}
			
		#main article {
			margin-top: 15px;
		}
			
			#main article blockquote {
				margin: 10px 5px;
				background: #F4F1F8;
				background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F4F1F8));
				background: -moz-linear-gradient(top,  #FFFFFF,  #F4F1F8);	
				border: 1px solid #F7C83C;
				-moz-border-radius: 8px;
				padding:15px 50px 35px 50px;
				font-weight:bold;
			    quotes: "\201C" "\201D";
			    position: relative;

			}
			#main article blockquote:before { content: open-quote; font-weight: bold; color: #D5312C; font-size: 32px; position: absolute; margin-left: -15px; margin-top: -5px;}
			#main article blockquote:after { content: close-quote; font-weight: bold; color: #D5312C; font-size: 32px; position: absolute; margin-top: -5px;}
			
			
				#main article blockquote cite {
					bottom:5px;
					clear:both;
					font-size:14px;
					font-style:italic;
					font-weight:normal;
					position:absolute;
					right:15px;
				}
			
			#main article h2 {	
				font-size: 22px;
				border-bottom: 1px solid #ffdc16;
				margin: 0 5px;
				padding-bottom:5px;
			}
			
			#main article p {
				margin: 5px 5px;
			}
			
			
			#main article #get-to-know {
				
				border-bottom: 4px double #C30000;
				padding-bottom:10px;
				
			}
		
		#main li {
			background: url(../../i/li_dot.png) left center no-repeat;
			padding-left: 16px;
			font-size: 12px;
			margin-top:13px;
			font-weight:bold;
		}
		
		#main #news_events {
			float: left;
			clear: both;
			margin-top: 15px;
		}
		#main #news_events .col {
			float: left;
			width: 345px;
		}
		
		#landing .myth { border-top: 0 none !important;}

			#main #news_events .col p {
				margin: 5px 5px;
				float: left;
			}
			
			#main #news_events .col a {
				float: left;
				font-size: 14px;
			}
			
				#main #news_events .col a:hover {
					
					color:#000;
					
				}
			#main #news_events .col span {
				float: left;
				clear: both;
				font-size: 12px;
				color: #494949;
				font-weight: bold;
			}
		
		#main #thanks {
			background:url("../../i/thanks.png") no-repeat scroll left top transparent;
			clear:both;
			float:left;
			height:239px;
			width:100%;
			border-bottom: 1px solid #C30000;
		}
		
			#main #thanks p {
				margin: 150px 25px;
			}
	#sidebar {
		border-left:1px solid #EAEAEA;
		float:left;
		margin-left:5px;
		padding-left:10px;
		width:255px;
	}
	
		#sidebar h1 {
			text-align: center;
			background: url(../../i/sidebar_h1_bg.png) center left no-repeat;
			padding: 8px;
			color: #FFF;
			padding: 12px 0;
			margin: 15px 0;
			clear:both;
		}
		
		#sidebar a {
			float: left;
			text-decoration: none;
			clear: both;
		}
		#sidebar a span {
			float: left; 
			clear: both;
		}
		
		#sidebar a span.date {
			font-size: 12px;
			color: #494949;
			padding-bottom: 10px;
		}
		#sidebar ul {
			padding: 0;
			margin: 0;
		}
		#sidebar ul li {
			border-bottom: 1px solid #EBCB14;
		}		
		#sidebar ul li a {
			color:#494949;
			font-size:16px;
			font-weight:bold;
			text-decoration:none;
			display: block;
			padding: 5px 15px;
			float: none;
			clear: none;
		}
		
			#sidebar ul li a:hover {
				background: #FFEFEF;
			}
		
		#sidebar label {
			float: left;
			clear: both;
		}
		#sidebar input {
			border: 1px solid #CCC;
			float: left;
			clear: both;
			width: 245px;
			padding: 3px;
			margin: 5px 0 10px;
		}
		#sidebar button {
			background: none;
			border: 0 none;
			margin: 0;
			padding: 0;
		}
	
	footer {
		float: left;
		clear: both;
		width: 100%;
		background: url(../../i/footer_bg.jpg) -1px 0 no-repeat;
	}
		footer p { clear: both; }
		footer .logo {
			float: left;
			margin: 15px;
		}
		
		footer .links {
			float: right;
			text-align: right;
			margin: 15px;
		}
		
			footer .links .social {
				float: right;
			}
			
			.footer .links .social p { clear: both; }
			footer .links .social a {
				float: left;
				margin: 0 5px;
			}
		
	fieldset {
		float: left;
		margin-top: 25px;
	}
	
		label {
			float: left;
			clear: left;
			width: 150px;
			margin: 5px 0 5px 5px;
		}
		
		input {
			float: left;
			margin: 5px;
		}
		
		select {
			float: left;
			margin: 5px;
		}
		
		textarea {
			float: left;
			clear: both;
		}
		
		button {
			background:url("../../i/button_bg.png") no-repeat scroll left top transparent;
			color:#FFFFFF;
			display:inline-block;
			font-family:"Helvetica Nue",Arial,sans-serif;
			font-size:14px;
			padding:9px 0;
			text-align:center;
			text-decoration: none;
			text-transform:uppercase;
			float: left;
			clear: both;
			border: 0 none;
			margin: 15px 5px;
			min-width: 160px;
		}
		
	a.video {
		position: relative;
	}
	
		a.video img { border: 4px solid #CCC; }
	
		a.video img.btn {
			border: 0 none;
			position: absolute;
			margin-top: 25px;
		}
		
	.news h3 {
		font-size:12px;
		font-style:italic;
		font-weight:normal;
		margin:10px 5px 0;
	}
	
	.podcast {
		float:left;
		clear: both;
		width: 100;
		margin-top: 15px;
		border-bottom: 1px solid #EBCB14
	}
	
	#endorsements {
		float: left;
		width: 100%;
		margin-top: 15px;
	}
	
		#endorsements ul {
			float: left;
			width: 310px;
		}
	
	label.error { display: none !important; }
	input.error { border: 1px solid #990000; }
	input.valid { border: 1px solid #00FF00; }