/*
Theme Name: Straight Up
Author: Kirk Wight
Author URI: http://kwight.ca/
Description: Straight Up is a simple, clean blog-style theme with full-width header and footer. Based on _s by Automattic.
Version: 1.0.4
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: gray, blue, white, two-columns, fixed-width, right-sidebar, sticky-post, threaded-comments, translation-ready
Text Domain: straightup

Straight Up (c) 2012 Kirk Wight

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.


Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/


/* =Table of contents
-------------------------------------------------------------- */

/*
=Reset
=Colors
=Structure
=Global
=Header
=Menu
=Content
=Asides
=Media
=Navigation
=Comments
=Widgets
=Footer
=Plugins
=IE9 and Unsupported
*/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a {
	text-decoration: none;
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
	outline: 0;
}
a img {
	border: 0;
}


/* =Colors
----------------------------------------------- */

/*
Blue: #4383c1
Dark Grey: #555
Border Grey: #ddd
Light Grey: #efefef
White: #fff
*/


/* =Structure
Based on a 12-column, 960px grid, 10px margins
----------------------------------------------- */

/* Centered containers */
#masthead,
#main,
.site-info {
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 960px;
}
/* Site elements */
#masthead .container,
#masthead hgroup,
#searchform,
.main-navigation,
#primary,
#secondary {
	display: inline;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
}
/* 12 columns */
#masthead .container,
.main-navigation {
	width: 940px;
}
/* 9 columns */
#masthead hgroup {
	width: 700px;
}
/* 3 columns */
#searchform,
#secondary {
	width: 220px;
}
/* Nested margin adjustments */
#masthead hgroup {
	margin-left: 0;
}
#searchform {
	margin-right: 0;
}
/* clearfix */
.background:after,
#masthead:after,
#masthead .container:after,
#searchform:after,
.main-navigation:after,
#main:after,
#primary:after,
.sharing:after, /* Jetpack Sharing */
#secondary:after,
p:after,
#image-navigation:after,
.widget:after,
.site-info:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: '\0020';
	clear: both;
	height: 0;
}


/* =Global
----------------------------------------------- */

body {
	background-color: #efefef;
	margin: 0;
	min-width: 1024px; /* forces 100% elements to full width in iOS */
	padding: 0;
	width: 100%; /* forces 100% elements to full width in iOS */
}
body,
button,
input,
select,
textarea {
	color: #555;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.5;
}
/* Headings */
h1,h2,h3,h4,h5,h6 {
	clear: both;
	font-family: Corben, Georgia, serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 .5em;
}
h1 {
	font-size: 38px;
	font-size: 3.8rem;
}
h2 {
	font-size: 20px;
	font-size: 2rem;
}
h3 {
	font-size: 16px;
	font-size: 1.6rem;
}
h4, h5, h6 {
	font-family: inherit;
	font-size: 14px;
	font-size: 1.4rem;
	text-transform: uppercase;
}
hr {
	background-color: #ddd;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
/* Text elements */
p {
	margin: 0 0 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 1.3em;
	padding: 0;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
ol ol {
	list-style: lower-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	font-weight: 400;
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #f4f8fb;
	border: 1px solid #d7e4f2;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	padding: 1.5em;
	overflow: auto;
	max-width: 99.9%;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #555;
	cursor: help;
}
mark, ins {
	background: #f4f8fb;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
button,
input {
	line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
	*overflow: visible;  /* Corrects inner spacing displayed oddly in IE6/7 */
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-color: #ccc #ccc #bbb #ccc;
	border-radius: 3px;
	background: #fafafa; /* Old browsers */
	background: -moz-linear-gradient(top,  #fafafa 60%, #e6e6e6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#fafafa), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* IE10+ */
	background: linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
	box-shadow: inset 0 2px 1px #fff;
	color: rgba(0,0,0,.8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 14px;
	font-size: 1.4rem;
	padding: .3em .5em;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #f5f5f5; /* Old browsers */
	background: -moz-linear-gradient(top,  #f5f5f5 60%, #dcdcdc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#f5f5f5), color-stop(100%,#dcdcdc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* IE10+ */
	background: linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#dcdcdc',GradientType=0 ); /* IE6-9 */
	border-color: #bbb #bbb #aaa #bbb;
}
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb #bbb;
	box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
	box-shadow: inset 0 2px 2px rgba(0,0,0,.15);
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type=text],
textarea {
	border: 1px solid #aaa;
	border-radius: 3px;
	color: #555;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 5px;
	width: 96%;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	vertical-align: top; /* Improves readability and alignment in all browsers */
}
/* Links */
a,
a:visited {
	color: #4383c1;
	font-weight: 400;
}
a:hover,
a:focus,
a:active {
	text-decoration: underline;
}
/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}
/* Text meant only for screen readers */
.assistive-text {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}


/* =Header
----------------------------------------------- */

.background {
	background-color: #555;
	border-bottom: 1px solid #444;
	box-shadow: 0 3px 8px #555;
	position: relative;
	z-index: 1;
}
#masthead .container {
	border-bottom: 1px solid #444;
	padding: 1em 0;
}
.site-title a {
	color: #fff;
	text-shadow: 0px 2px 5px #333;
}
.site-title a:hover {
	text-decoration: none;
}
.site-description {
	color: #bbb;
	font-family: inherit;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
	margin-bottom: 0;
	text-transform: uppercase;
}
#searchform {
	position: relative;
}
#searchform input[type="text"] {
	background-color: #777;
	color: #fff;
	width: 208px;
}
::-webkit-input-placeholder {
   color: #fff;
}
:-moz-placeholder {  
   color: #fff;  
}


/* =Menu
----------------------------------------------- */

.main-navigation {
	border-top: 1px solid #666;
	padding: .5em 0;
	position: relative;
	z-index: 1;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	color: #fff;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
	padding: .5em .7em;
	text-decoration: none;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
	text-transform: uppercase;
	white-space: nowrap;
}
.main-navigation li:hover,
.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation a:active,
.main-navigation ul ul,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-item a,
.main-navigation li.current-page-ancestor a {
	background-color: #4383c1;
}
.main-navigation ul ul {
	border: solid #7da9d4;
	border-width: 1px 0 0 0;
	box-shadow: 0 8px 8px -5px rgba(0, 0, 0, .4);
	display: none;
	float: left;
	position: absolute;
		top: 1.8em;
		left: 0;
	z-index: 99999;
}
.main-navigation ul ul ul {
	border-width: 0 0 0 1px;
	left: 100%;
	top: 0;
}.main-navigation ul li:hover > ul {
	display: block;
}
.menu-item-parent > a:after {
    color: #bbb;
    content: '\a0 \a0 \a0 \25bc';
    font-size: 8px;
    vertical-align: 1px;
}
.sub-menu .menu-item-parent > a:after {
    content: '\a0 \a0 \a0 \a0 \25b6';
}
.menu-item-parent:hover > a:after,
.sub-menu .menu-item-parent > a:after {
	color: #7da9d4;
}


/* =Content
----------------------------------------------- */

#main {
	background: url( 'img/background.png' ) repeat-y 10px 0;
}
/* Primary */
#primary {
	padding: 20px;
	width: 660px;
}
.entry-title {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom: .3em;
}
.single .entry-title,
.page .entry-title,
.not-found .entry-title {
	font-size: 28px;
	font-size: 2.8rem;
	margin: .3em 0;
}
.page-title {
	color: #aaa;
	font-family: inherit;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: inherit;
	line-height: 1.2;
	margin-bottom: 1.3em;
	text-transform: uppercase;
}
.hentry {
	border-top: 1px solid #efefef;
	padding: 1.5em 0;
}
.sticky {
	background-color: #f4f8fb;
	border: 1px solid #d7e4f2;
	padding: 1.5em;
}
.single .hentry,
.page .hentry {
	border: none;
	padding-top: 0;
}
.entry-meta {
	clear: both;
	color: #aaa;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.2;
	text-transform: uppercase;
}
.byline {
	display: none;
}
.group-blog .byline {
	display: inline;
}
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.bypostauthor {
}


/* =Asides
----------------------------------------------- */

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}


/* =Media
----------------------------------------------- */

.site-header img,
.entry-content img,
#content .gallery a img,
.comment-content img,
.widget img {
	border: 1px solid #ddd;
	box-shadow: 0 8px 8px -5px rgba(0, 0, 0, .4);
	margin-bottom: 1em;
	max-width: 99.9%; /* Fluid images for posts, comments, and widgets */
}
.site-header img,
.entry-content img,
.widget img,
img[class*="align"],
img[class*="wp-image-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
	margin-top: .5em;
}
.site-header img,
.entry-content img,
img.size-full {
	max-width: 99.9%;
}
.entry-content img.wp-smiley,
.comment-content img.wp-smiley,
.widget img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	background-color: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 8px 8px -5px rgba(0, 0, 0, .4);
	margin-bottom: 1.5em;
	max-width: 99.9%;
}
.wp-caption img {
	border-width: 0 0 1px 0;
	box-shadow: none;
	display: block;
	margin: 0;
	max-width: 100%;
}
.wp-caption-text {
	color: #aaa;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.2;
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 1em;
}
#content .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
#content .gallery a img {
	height: auto;
	margin-bottom: .3em;
	max-width: 90%;
}
#content .gallery dd {
	margin: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* =Navigation
----------------------------------------------- */

#content .site-navigation {
	border-top: 1px solid #efefef;
	padding: 1em 0;
	overflow: hidden;
}
.comment-navigation {
	border-bottom: 1px solid #efefef;
}
#content .nav-previous,
#content .previous-image {
	float: left;
	width: 50%;
}
#content .nav-next,
#content .next-image {
	float: right;
	text-align: right;
	width: 50%;
}
#image-navigation {
	margin-top: 1.5em;
}


/* =Comments
----------------------------------------------- */

.comments-title,
#reply-title {
	padding-top: 1.5em;
}
.single .comments-title {
	border-top: 1px solid #efefef;
}
.commentlist {
	list-style: none;
	margin-left: 0;
}
.commentlist ul.children {
	list-style: none;
	margin-left: 80px;
}
.depth-1 {
	border-top: 1px solid #efefef;
	padding-top: 1.5em;
}
.commentlist .depth-1:first-child {
	border: none;
}
.comment .avatar {
	float: left;
}
.comment-meta,
.comment-content {
	margin-left: 80px;
}
.comment-meta {
	color: #aaa;
	font-size: 12px;
	font-size: 1.2rem;
	margin-bottom: 1.5em;
	position: relative;
	text-transform: uppercase;
}
.perma-reply-edit {
	float: right;
	margin: 0 0 .5em .5em;
}
.comment-meta h4 {
	clear: none;
	color: #555;
	font: 16px/1.2 Corben, Georgia, serif;
	font-size: 1.6rem;
	margin-bottom: .2em;
	text-transform: none;
}
.comment-awaiting,
.nocomments {
	font-weight: 400;
	text-align: center;
}
/* Reply form */
#respond {
	margin-bottom: 1em; /*Correction for Jetpack Comments iframe*/
}
#reply-title small a,
#cancel-comment-reply-link {
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	text-transform: uppercase;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
	display: inline;
	float: left;
	width: 31%;
}
.depth-4 .comment-form-author,
.depth-4 .comment-form-email,
.depth-4 .comment-form-url {
	width: 30%;
}
.comment-form-author,
.comment-form-email {
	margin-right: 1em;
}
#commentform div {
	margin-bottom: 1em;
}
#commentform label {
	display: none;
}
#commentform ::-webkit-input-placeholder {
   color: #aaa;
}
#commentform :-moz-placeholder {  
   color: #aaa;  
}
.form-allowed-tags {
	color: #aaa;
	font-size: 14px;
	font-size: 1.4rem;
}


/* =Widgets
----------------------------------------------- */

#secondary {
	font-size: 14px;
	font-size: 1.4rem;
}
.widget {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #fff;
	padding: 1.5em 0 0 0;
	word-wrap: break-word;
}
#secondary .widget:first-child {
	border-top: none;
}
#secondary .widget:last-child {
	border-bottom: none;
}
.widget-title {
	font-size: 16px;
	font-size: 1.6rem;
}
.widget > ul,
.widget_nav_menu ul.menu {
	list-style: none;
	margin-left: 0;
}
/* Add bottom padding or margin to those widgets that need it */
.widget_tag_cloud,
.widget_search {
	padding-bottom: 1.5em;
}
.widget_archive select,
.widget_categories select {
	margin-bottom: 1.5em;
}
/* Search widget */
.widget_search .widget-title {
	display: none;
}
.widget_search #searchform {
	margin: 0;
}
.widget_search #searchform input[type="text"] {
	background-color: #fff;
	color: #555;
}
.widget_search ::-webkit-input-placeholder {
   color: #aaa;
}
.widget_search :-moz-placeholder {  
   color: #aaa;  
}
#searchsubmit {
	display: none;
}
/* Calendar widget */
.widget_calendar caption {
	border-bottom: 1px solid #ddd;
	text-transform: uppercase;
	margin-bottom: .3em;
	padding-bottom: .3em;
}
.widget_calendar table {
	border-collapse: collapse;
}
.widget_calendar tfoot td {
	border-top: 1px solid #fff;
	padding-top: .3em;
}
#next {
	text-align: right;
}
/* Recent Comments / Recent Posts */
.widget.widget_recent_comments > ul,
.widget.widget_recent_entries > ul {
	list-style: inherit;
	margin-left: 1.3em;
}
/* RSS widget */
.widget_rss .widget-title img {
	box-shadow: none;
	margin-bottom: 0;
}
.widget_rss .rss-date,
.widget_rss cite {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	font-style: normal;
	line-height: 1;
	text-transform: uppercase;
	margin: .3em 0;
}
.widget_rss li {
	margin-bottom: 1em;
}
.widget_rss li a {
	line-height: 1;
}
/* Nav Menu widget */
.widget_nav_menu .menu-item-parent > a:after {
    content: '';
}
.widget_nav_menu .sub-menu .menu-item-parent > a:after {
    content: '';
}
/* Error 404 widgets */
.error404 .entry-content .widget {
	border: none;
	margin-bottom: 1.5em;
	padding: 0;
}
.error404 .entry-content .widget_archive select {
	margin-bottom: 0;
}


/* =Footer
----------------------------------------------- */

.footer-background {
	border-top: 1px solid #fff;
}
.site-info {
	color: #bbb;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 1.5em 0;
	text-align: right;
}
.site-info a {
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
}


/* =Plugins
----------------------------------------------- */

/* Jetpack */
.sharing {
	margin-bottom: 1em;
}
.sharing ul {
	list-style: none;
	margin: 0;
}
.sharing li {
	display: block;
	float: left;
	margin-right: .5em;
}
.sharing .sharing_label {
	font-weight: 400;
	margin-right: 1em;
}
.sharing li a,
.sharing-hidden li a {
	padding: 0 0 0 20px;
}


/* =IE9 and Unsupported
----------------------------------------------- */
     
/* Correct small gap above submenus */
#unsupported .menu > li > .sub-menu {
	top: 1.7em;
}
/* Show labels, as IE doesn't support placeholder text */
#unsupported #searchsubmit,
#ie9 #searchsubmit {
	background: none;
	border-color: #aaa;
	border-radius: 0;
	border-width: 0 0 0 1px;
	box-shadow: none;
	color: #fff;
	display: block;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	right: 6px;
	position: absolute;
	top: 2px;
}
#ie9 #secondary #searchsubmit,
#unsupported #secondary #searchsubmit {
color: #555;
}
#unsupported #searchform input[type="text"],
#ie9 #searchform input[type="text"] {
	padding-right: 60px;
	width: 148px;
}
#unsupported #commentform label,
#ie9 #commentform label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
/* Drop shadow on header */
#unsupported .background {
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#888888, Direction=180, Strength=8);
}
