/*
	Theme Name: Evangelicals for Mitt
	Theme URI: 
	Description: A merger created by Aaron T. Grogg (<a href="http://aarontgrogg.com/">http://aarontgrogg.com/</a>) of the HTML5 Boilerplate (<a href="http://html5boilerplate.com/">http://html5boilerplate.com/</a>) and the Starkers theme (<a href="http://starkerstheme.com/">http://starkerstheme.com/</a>), Boilerplate: Starkers provides developers with an ideal, bleeding-edge, clean-start theme.  Mark-up is minimal (thanks Elliott) and the most edge-case web technology is baked right in (thanks Paul, Divya and a large cast of supporting characters)!  Boilerplate themes are designed to serve as a Parent theme to whatever Child (<a href="http://codex.wordpress.org/Child_Themes">http://codex.wordpress.org/Child_Themes</a>) you care to add, but you could just as easily use this as a starting point and alter the PHP as your design needs.  More about this theme can be found at <a href="http://aarontgrogg.com/boilerplate/">http://aarontgrogg.com/boilerplate/</a>.
	Author: John Athayde, Lynn Wallenstein - Original HTML5Theme by Aaron T. Grogg, based on the work of Paul Irish, Divya Manian, and Elliot Jay Stocks
	Version: 1.0
	Tags: custom-menu, editor-style, theme-options, threaded-comments, sticky-post, microformats, rtl-language-support, translation-ready

	License: GNU General Public License v2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	
	This CSS file is a concatenation of style.css from HTML5 Boilerplate and style.css from Starkers.
	Comment blocks indicate where each begins and ends, like this, for example...
*/
/*
	HTML5 ✰ Boilerplate 

	style.css contains a reset, font normalization and some base styles.

	credit is left where credit is due.
	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, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, 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; 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 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { 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 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

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 */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* 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; }
.ie7 input[type="checkbox"] { 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; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #86d2f4; color:#fff; text-shadow: none; }
::selection { background:#86d2f4; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* 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; text-align: left; direction: ltr; }

/* 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/  &  j.mp/visuallyhidden  */
.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: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: 
 */
 



.font_pictos {
    font-family: "Pictos";
} 

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, serif;
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { 
  font-weight: bold; 
}

p {
  line-height: 18px;
}


/**
 * Primary styles
 *
 * Author: 
 */

body {
  background: #f7f7f5 url("images/bkgnd_noise.jpg") top left repeat-x;
}

blockquote {
  margin-left: 20px;
  font-style:italic;
}

.nest {
  margin: 0 auto;
  overflow: hidden;
  padding: 0 15px 15px 15px;
  width: 960px;
}

.nest.page {
  background-color: #fff;
  -moz-box-shadow: 0px 0px 10px #999; /* FF3.5+ */
  -webkit-box-shadow: 0px 0px 10px #999; /* Saf3.0+, Chrome */
  box-shadow: 0px 0px 10px #999; /* Opera 10.5, IE9, Chrome 10+ */
}


a,
a:link {
  color: #1269a1;
}

a:hover,
a:active {
  color: #415d6d;
}

a:visited {
  
}

header#masthead {
  background-color: #4477c3;
  height: 70px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

body.home header#masthead {
  background: #4477c3 url("images/header_feature_placeholder.jpg") top left no-repeat;
  height: 425px;
}

header#masthead h1#logo {
  background-image: url("images/logo.png");
  height: 63px;
  position: absolute;
    bottom: -2px;
    left: -2px;
  width: 569px;
}

body.home header#masthead h1#logo {
  right: 0;
  left: auto;
}

header#masthead .searchbox {
  float: right;
  margin: 10px 10px 0 0;
}

header#masthead p#search_txt {
  background-image: url("images/txt_search.png");
  display: inline-block;
  height: 11px;
  vertical-align: middle;
  width: 72px;
}

header#masthead input[type="search"] {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 20px;
  width: 180px;
}

body header#masthead #callout {
  display: none;
}

body.home header#masthead #callout {
  display: block;
  position: absolute;
    top: 60px;
    right: 15px;
}

nav#primary {
  background: #203c6b url("images/nav_background-gradient.png") top left repeat-x;
  margin-bottom: 18px;
}

nav#primary img#navbadge {
  float: right;
  margin: 7px;
}

nav#primary ul {
  height: 45px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav#primary ul li {
  border-right: 1px solid #4779ab;
  float: left;
}

nav#primary ul li a,
nav#primary ul li a:link                { height: 20px; padding: 12px; background-position: 12px 12px; -webkit-transition: color .2s linear; }
nav#primary ul li a#home                { width: 37px;  background-image: url("images/nav_home.png"); }
nav#primary ul li a#about          { width: 40px;  background-image: url("images/nav_about.png"); }
nav#primary ul li a#why_we_support_mitt { width: 142px; background-image: url("images/nav_why-we-support-mitt.png"); }
nav#primary ul li a#on_the_issues       { width: 91px;  background-image: url("images/nav_on-the-issues.png");  }
nav#primary ul li a#what_you_can_do     { width: 110px; background-image: url("images/nav_what-you-can-do.png"); }
nav#primary ul li a#archive    { width: 54px; background-image: url("images/nav_archive.png"); }
nav#primary ul li a#featured_posts    { width: 104px; background-image: url("images/nav_featured-posts.png"); }

nav#primary ul li a:hover               {  background-color: rgba(255,255,255,0.2)}

section#main {
  float: left;
  width: 600px;
}

nav#tangential {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  overflow: hidden;
  padding: 5px 0;
}

nav#tangential p.next_label,
nav#tangential p.previous_label {
  color: #666;
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 3px;
  text-transform: uppercase;
}

nav#tangential ul li {
  height: 60px;
  width: 285px;
}

nav#tangential ul li.previous {
  border-right: 1px solid #ccc;
  float: left;
  padding-right: 10px;
}

nav#tangential ul li.next {
  float: right;
  text-align: right;
}

#main > header h1 {
  font-size: 40px; 
  font-weight: normal;
  margin: 6px 0 30px 0;
  padding: 0;
  text-align: center;
}

article {
  clear: both;
}

article.full {
  margin-bottom: 12px;
}

article.sticky {
  background: #d0e7f4;
}
.archive article, .search article {
  clear: both;
  border-bottom: 1px solid #ebecee;
  margin-bottom: 20px;
}
.archive.category article img, .archive.tag article img, .archive.date article img {
  padding-bottom: 50px;
}
  .archive article h1, .search article h1 {
    font-size: 30px; 
  }
article h1 {
  font-size: 40px; 
  font-weight: normal;
  margin: 6px 0 6px 0;
  padding: 0;
  text-transform: capitalize; /* force text to proper case */
}

article .entry-content img {
  max-width: 550px;
  margin: 10px;
}
article .entry-content ul, article .entry-content ol {
  margin-bottom: 20px;
}
article .entry-content p br {
  display: block;
  margin-bottom: 20px;
}

article h1 a,
article h1 a:link,
article h1 a:visited {
  text-decoration: none;
}

article p.byline {
  color: #666;
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

article p.byline time {
  font-weight: normal;
}

article figure.feature {
  text-align: center;
}
article .small_image {
  float: left;
  padding: 0 10px 10px 0;
}

article figure figcaption {
  color: #666;
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
}

article section p:first-of-type:first-line {
  font-size: 18px;
  font-style: italic;
}

article p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 1em;
}

article .article-footer {
  clear: both;
}

article li {
  font-size: 14px;
  margin-bottom: 2px;
}
article section {
  margin-bottom: 25px;
}
article h2, article h3, article h4, article h5, article h6 {
  margin-bottom: 1em;
}

article footer.article-footer p.tags,
article footer.article-footer p.tags:first-of-type:first-line {
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

article a.continue,
nav#recent_stories a.read-more {
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  margin-left: 1em;
  text-decoration: underline;
  text-transform: uppercase;
}

nav#recent_stories ul {
  margin-top: 15px;
}

nav#recent_stories a.read-more {
  font-size: 12px;
  margin:0;
}

nav#recent_stories .story-title {
  font-size: 16px;
  margin-bottom: 6px;
}

nav#recent_stories .story-title a:link {
  color: #444;
  text-decoration: none;
}

nav#recent_stories time {
  color: #666;
  display: block;
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}
#sidebar #recent_stories {
  clear: both;
}

.addthis_toolbox {float: right;}

.article-header {
  overflow: hidden;
  margin-bottom: 12px;
}
/* Single Post Styles */
.single article section.byline {
  float: left;
  height: 50px;
  width: 250px;
}
.single .addthis_toolbox {
  margin-top: 15px;
}
#entry-author-info {
  clear: both;
  background: #ebecee;
  margin: 20px 0;
  padding: 15px;
}
  #entry-author-info .avatar {
    display: none;
  }
  #bio_link_app_posts {
    padding-top: 20px;
  }

.article-header .avatar {
  float: left;
  margin-right: 12px;
  vertical-align: middle;
  width: 50px;
}
.article-header time {
  display: block;
}

section#other_content {
  clear: both;
  padding-top: 20px;
  overflow: hidden;
}

section#other_content nav#featured {
  float: left;
  margin-right: 10px;
  width: 290px;
}

section#other_content nav#featured ol,
section#other_content nav#recent_stories ul
section#sidebar nav#recent_stories ul {
  margin-top: 12px;
}

section#other_content nav#featured ol li {
  list-style: decimal;
  margin-bottom: 12px;
}


section#other_content nav#recent_stories ul li {
  margin-bottom: 30px;
  overflow: hidden;
}

section#sidebar nav#recent_stories ul li {
  margin-bottom: 10px;
  overflow: hidden;
}

section#other_content nav#recent_stories ul li img,
section#sidebar nav#recent_stories ul li img {
  float: left;
  height: 80px;
  margin-right: 10px;
  width: 110px;
}
section#other_content nav#recent_stories ul li img {
  padding-bottom: 20px;
}

section#sidebar {
  float: right;
  width: 340px;
}

section#sidebar .splitcol {
  margin: 10px 0;
  overflow: hidden;
}

section#sidebar .splitcol .left,
section#sidebar .splitcol .right {
  float: left;
  width: 160px;
}

section#sidebar .splitcol .left {
  margin-right: 10px;
}

/* The Writers Sidebar */
  section#sidebar .the-writers .multiwidget_author_avatars h2 {
    display: none;
  }
  
  section#sidebar .the-writers ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  section#sidebar .the-writers ul li {
    list-style-type: none;
    clear: both;
  }
  .author-list .user {
    margin: 0 0 10px 0;
    overflow: hidden;
    padding: 0;
    width: 160px;
    float: left;
display: inline-block;
  }
  .author-list .user span.avatar {
    float: left !important;
    margin-right: 10px;
  }
  .author-list .user img {
  }
  .author-list .user .name {
    font-size: 14px;
    margin: 10px 0 0 0;
    text-align: left;
  }
  
/* Archive */

.archive header {
}
  .archive article {
    border: none;
  }
    .archive article h1 {
      font-size: 20px;
    }
    .archive article img {
      float: left;
      margin-right: 10px;
    }  
    
.archive.author #tangential, .search #tangential {
  display: none;
}

#nav-below {
  clear: both;
}
  #older_link {
    float: left;
  }
  #newer_link {
    float: right;
  }

.archive.author #the_author_info {
  background: #ebecee;
  padding: 15px;
  margin: 20px 0;
}
.archive.author #the_author_info p {
  margin-bottom: 10px;
}
.archive.author #the_author_info img {
  float: left;
  padding: 0 10px 10px 0;
}
.archive.author #the_author_info h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.archive_page h2 {
  font-size: 22px;
}
/* Mailing List */

section#sidebar .mailing-list {
  margin: 10px 0;
}
  section#sidebar .mailing-list li {
    list-style: none;
  }
  section#sidebar .mailing-list p {
    margin: 10px 0;
  }
section#sidebar .mailing-list form label {
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;  
}  
section#sidebar .mailing-list form input {
  margin-bottom: 10px;  
}  
section#sidebar .mailing-list .button {
  float: right;
  font-size: 14px;
  margin-top: 15px;
  width: 100px;
} 

#service_links {
  margin-bottom: 10px;
}

/* Flickr */

section#sidebar .flickr-badge li {
  list-style: none;
}
.flickr {
  text-align: center;
}  
.flickr img {
  float: left;
  padding: 2px;
  
}
  
/* Facebook */
.sidebar_facebook {
  margin-bottom: 20px;
} 

/* Comments */  

section#comments header {
  margin-bottom: 20px;
}

section#sidebar .flickr-badge p,
section#sidebar .mailing-list p {
  color: #666;
  font-size: 12px;
  font-style: italic;
}

section#comments form p {
  font-family: "proxima-nova-1","proxima-nova-2", verdana, arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  margin: 5px 0;
  text-transform: uppercase;  
}

section#sidebar .mailing-list form label,
section#comments form label {
  font-weight: bold;
}

section#sidebar .mailing-list form input[type=text] {
  border: 1px solid #aaa;
  padding: 3px;
  width: 95%;
}

section#comments form textarea,
section#comments form input[type=text] {
  border: 1px solid #aaa;
  padding: 3px;
  width: 100%;
}

section#comments p {font-style:italic;}

.button_right {float: right;}

footer#page_footer {
  background-color: #222e34;
  margin: -3px 0 0 0;
  overflow: hidden;
}

footer#page_footer .nest {
  width: 990px;
  padding: 20px 0;
}

footer#page_footer img#badge_large {float: left;}

footer#page_footer nav#footer_nav {
  color: #6d93a6;
  margin-left: 170px;
}

footer#page_footer nav#footer_nav p.copyright {font-size: 10px;}

footer#page_footer nav#footer_nav ul {
  margin-bottom: 24px;
}

footer#page_footer nav#footer_nav ul li {
  margin-bottom: 6px;
}

footer#page_footer nav#footer_nav ul li a {
  color: #6d93a6;
}

footer#page_footer nav#social {
  float: right;
  width: 170px;
}

footer#page_footer nav#social ul {
  margin-bottom: 85px;
}

footer#page_footer nav#social ul li {
  float: left;
  margin-right: 35px;
}

footer#page_footer nav#social ul li:last-child {
  margin-right: 0;
}

/* =Comments
-------------------------------------------------------------- */
#comments {
	clear: both;
}
#comments .navigation {
	padding: 0 0 18px 0;
}
h3#comments-title,
h3#reply-title {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0;
}
h3#comments-title {
	padding: 24px 0;
}
.commentlist {
	list-style: none;
	margin: 0;
}
.commentlist li.comment {
	border-bottom: 1px solid #e7e7e7;
	line-height: 24px;
	margin: 0 0 24px 0;
	padding: 0 15px 0 56px;
	position: relative;
}
.commentlist li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
#comments .comment-body ul,
#comments .comment-body ol {
	margin-bottom: 18px;
}
#comments .comment-body p:last-child {
	margin-bottom: 6px;
}
#comments .comment-body blockquote p:last-child {
	margin-bottom: 24px;
}
.commentlist {
	list-style: decimal;
	padding: 10px;
}
.commentlist li {
  border: 1px solid #ebecee;
  list-style: none;
}
.commentlist .alt {
  background: #f7f7f5;
}
.commentlist .bypostauthor {
  background: #dbeaf1;
}
.commentlist .avatar {
	position: absolute;
	top: 4px;
	left: 0;
}
.comment-author {
}
.comment-author cite {
	color: #000;
	font-style: normal;
	font-weight: bold;
}
.comment-author .says {
	font-style: italic;
}
.comment-meta {
	font-size: 12px;
	margin: 0 0 18px 0;
}
.comment-meta a:link,
.comment-meta a:visited {
	color: #888;
	text-decoration: none;
}
.comment-meta a:active,
.comment-meta a:hover {
	color: #ff4b33;
}
.commentlist .even {
}
.commentlist .bypostauthor {
}
.reply {
	font-size: 12px;
	padding: 0 0 24px 0;
}
.reply a,
a.comment-edit-link {
	color: #888;
}
.reply a:hover,
a.comment-edit-link:hover {
	color: #ff4b33;
}
.commentlist .children {
	list-style: none;
	margin: 0;
}
.commentlist .children li {
	border: none;
	margin: 0;
}
.nopassword,
.nocomments {
	display: none;
}
#comments .pingback {
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: 18px;
	padding-bottom: 18px;
}
.commentlist li.comment+li.pingback {
	margin-top: -6px;
}
#comments .pingback p {
	color: #888;
	display: block;
	font-size: 12px;
	line-height: 18px;
	margin: 0;
}
#comments .pingback .url {
	font-size: 13px;
	font-style: italic;
}

/* Comments form */
input[type=submit] {
	color: #333;
}
#respond {
	border-top: 1px solid #e7e7e7;
	margin: 24px 0;
	overflow: hidden;
	position: relative;
}
#respond form {
  width: 550px;
}
#respond p {
	margin: 0;
}
#respond .comment-notes {
	margin-bottom: 1em;
}
.form-allowed-tags {
	line-height: 1em;
}
.children #respond {
	margin: 0 48px 0 0;
}
h3#reply-title {
	margin: 18px 0;
}
#comments-list #respond {
	margin: 0 0 18px 0;
}
#comments-list ul #respond {
	margin: 0;
}
#cancel-comment-reply-link {
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
}
#respond .required {
	color: #ff4b33;
	font-weight: bold;
}
#respond label {
	color: #888;
	font-size: 12px;
}
#respond input {
	margin: 0 0 9px;
	width: 98%;
}
#respond textarea {
	width: 98%;
}
#respond .form-allowed-tags {
	color: #888;
	font-size: 12px;
	line-height: 18px;
}
#respond .form-allowed-tags code {
	font-size: 11px;
}
#respond .form-submit {
	margin: 12px 0;
}
#respond .form-submit input {
	font-size: 14px;
	width: auto;
}


  .page_break { 
    border: 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #fff;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    filter: alpha(opacity = 30);
    clear: both;
    height: 0;
    margin: 15px 0;
  }








/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* 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) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/** END HTML5 Boilerplate CSS **/


/** START Starkers CSS **/

/* LAYOUT */
/* ----------------------------------------- */

/* These rather presentational classes are generated by WordPress, so it's useful to have some styles for them. Edit as you see fit. More info: http://codex.wordpress.org/CSS */
.aligncenter { display:block; margin:0 auto }
.alignleft { 
  float:left;
  margin: 10px 10px 10px 0;
}
.alignright { 
  float:right;
  margin: 10px 0 10px 10px;
}
.wp-caption { border:1px solid #666; text-align:center; background:#ccc; padding:10px; margin:10px }

/* You might find the following useful */
/* div, ul, li { position:relative } This will save you having to declare each div / ul / li's position as 'relative' and allows you to absolutely position elements inside them */
br.clear { clear:both; display:block; height:1px; margin:-1px 0 0 0 } /* Use this br class to clear your floated columns */
li#theme-switcher { background:#fff; border:10px solid red; padding:20px; position:fixed; top:0; right:0 } /* Use this if you have the Theme Switcher Reloaded plugin (http://themebot.com/webmaster-tools/1-wordpress-theme-switcher-reloaded) installed and want to make it nice and obvious */

/* TYPOGRAPHY */
/* ----------------------------------------- */

h1, h2, h3, h4, h5, h6 { font-weight:bold } /* This helps to identify headings at the initial build stage, so I thought it'd be useful to have it */
.alert { background:red; color:white } /* 'alert' has a basic style, since it's useful to have it standing out for testing purposes.


/** START WordPress-Defined CSS Classes **/
.wp-caption-text{}
.gallery-caption{}
.bypostauthor{}
.sticky{}
/** END WordPress-Defined CSS Classes **/





/* clean gray
*******************************************************************************/
button, .button {
  background: #eee;
  background: -moz-linear-gradient(top, #f3e32d 0%, #b68f08 100%);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f3e32d), to(#b68f08));
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #333;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  width: 150px;
}

button:hover, .button:hover {
  background: #ddd;
  background: -moz-linear-gradient(top, #b68f08 0%, #f3e32d 100%);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b68f08), to(#f3e32d));
  border: 1px solid #bbb;
  border-bottom: 1px solid #999;
  cursor: pointer;
  text-shadow: 0 1px 0 #ddd;
}

button:active, .button:active {
  border: 1px solid #aaa;
  border-bottom: 1px solid #888;
  -moz-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
  -webkit-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
  box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
}