/*
 ********************
 * Reset
 ********************
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 ********************
 * Sparkus
 ********************
*/

body, html { min-height: 100%;}

body {
	color:#222222;
	font-size:16px;
	font-family:sans-serif;
}

strong {
	font-weight:110%;
}

#container {
	margin:auto;
	width:820px;
	margin-bottom:40px;
}

#main {
	clear:both;
	background:white;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	width:820px;
	padding:20px;
}

.boxshadow {
    -webkit-box-shadow:1px 1px 5px rgba(0,0,0,.5);
    -moz-box-shadow:1px 1px 5px rgba(0,0,0,.5);
    box-shadow:1px 1px 5px rgba(0,0,0,.5);
}

h1 {
	font-size:100px;
	letter-spacing:13px;
	padding-top:27px;
	text-transform:uppercase;
	text-align:center;
	text-shadow:0px 1px 0px white,1px 1px 5px rgba(0,0,0,.5);
}

h2 {
	font-size:20px;
}

h3 {
	font-size:16px;
}

h2, h3 {
	margin-bottom:20px;
}

/*
 ********************
 * Header
 ********************
*/

#header {
	width:860px;
	height:160px;
	background-image:url('http://static.tumblr.com/wxatmo8/QrYlxi90a/shiner.png');
}

#header_image, .header_container {
    width:860px;
	height:140px;
	border-bottom-right-radius:3px;
	border-bottom-left-radius:3px;
    margin-bottom:20px
}

#header a {
	text-decoration:none;
}

/*
 ********************
 * Posts
 ********************
*/

#content {
	float:left;
	overflow:hidden;
	width:500px;
	margin-right:20px;
	margin-bottom:40px;
	font-size:14px;
}

.posts li {
	margin-bottom:20px;
}

.post ul {
	list-style-type:square;
	padding-left:20px;
}

blockquote {
	border-left-width:2px;
	border-left-style:solid;
	border-left-color:#cccccc;
	padding-left:10px;
	margin-left:8px;
}

/*
 ********************
 * Audio Post
 ********************
*/

.album_container {
	width:500px;
	height:500px;
	background:url('http://static.tumblr.com/wxatmo8/ZqRly450u/audio.jpg');
}

.album_art {
	margin-bottom:15px;
	z-index:1;
}

.audio {
	position:relative;
}

.audio .caption {
	clear:both;
}

.song_meta {
	color:#fff;
	font-size:12px;
	text-align:right;
}

.song_meta_box {
	position:absolute;
	z-index:2;
	background: rgba(0,0,0,.5);
	top:340px;
	padding:10px;
}

.artist {
	margin-top:0;
	font-size:14px;
	font-weight:bold;
}

/*
 ********************
 * Chat
 ********************
*/

.chat {
	margin-bottom:20px;
	font-size:14px;
}

.chat ul {
	list-style:none;
	padding-left:0;
}

.odd {
	background:#e4e4e4;
	padding: 5px;
	margin-bottom:0px;
}

.even {
	padding: 5px;
	margin-bottom:0px;
}

.label {
	font-weight:bold;
}

/*
 ********************
 * Quote
 ********************
*/

.quote {
	line-height:30px;
	font-style:italic;
}

.source {
	font-size:14px;
	color:#666666;
	margin-bottom:20px;
	margin-left:300px;
}

/*
 ********************
 * Link
 ********************
*/

.link h2 {
	text-decoration:underline;
}

/*
 ********************
 * Answer Post
 ********************
*/

.asker_portrait {
	padding:2px;
	border:1px solid #cccccc;
	margin-left:10px;
	margin-right:50px;
	margin-bottom:20px;
	float:right;
}

.asked_by {
	line-height:30px;
	text-align:right;
}

.answer {
	clear:both;
}

/*
 ********************
 * Notes
 ********************
*/

ol.notes {
    padding: 0px;
    margin: 0 0 30px 0;
    list-style-type: none;
    border-bottom: solid 1px #ccc;
    font-size:12px;
}

ol.notes li.note {
    border-top: solid 1px #ccc;
    padding: 10px;
}

ol.notes li.note img.avatar {
    vertical-align: -4px;
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

ol.notes li.note span.action {
    font-weight: bold;
}

ol.notes li.note .answer_content {
    font-weight: normal;
}

ol.notes li.note blockquote {
    border-color: #eee;
    padding: 4px 10px;
    margin: 10px 0px 0px 25px;
}

ol.notes li.note blockquote a {
    text-decoration: none;
}

/*
 ********************
 * Navigation
 ********************
*/

#end_nav {
	font-size:16px;
	text-transform:lowercase;
	font-style:italic;
	color:#cccccc;
	padding-top:10px;
}

#end_nav a {
	color:#666666;
	text-decoration:none;
}

#side_nav_container {
	margin-bottom:40px;
}

.side_nav {
	font-size:30px;
	text-transform:lowercase;
	margin:0 0 10px 0;
	padding:0;
}

.side_nav a {
	color:#666666;
	text-decoration:none;
}

/*
 ********************
 * Sidebar
 ********************
*/

#portrait {
	float:left;
	overflow:hidden;
	padding:3px;
	margin-right:10px;
	margin-bottom:5px;
	border-style:solid;
	border-color:#cccccc;
	border-width:1px;
}

#description {
	font-size:14px;
	line-height:20px;
	color:#666666;
	margin-bottom:27px;
}

#description p {
	margin-top:0px;
}

#sidebar {
	float:left;
	overflow:hidden;
	width:300px;
}

/*
 ********************
 * Meta
 ********************
*/

.post_meta {
	color:#666666;
	font-size:12px;
	text-transform:lowercase;
	margin:20px 0 40px 0;
}

.post_meta a {
	color:#666666;
	font-size:12px;
	text-transform:lowercase;
}

.post_meta ul, .post_meta p, .date a {
	margin:0;
	padding: 0 0 5px 0;
}

.post_meta li {
	display:inline;
	margin: 0 5px 5px 0;
}

/*
 ********************
 * Twitter
 ********************
*/

#bird {
	width:65px;
	height:80px;
	float:left;
	overflow:hidden;
	margin-right:10px;
	border-right:1px solid #cccccc;
}

#twitter {
	height:100px;
	width:271px;
	padding:10px;
	margin-bottom:30px;
	margin-left:3px;
	border:1px solid #cccccc;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-webkit-box-shadow:1px 1px 5px rgba(0,0,0,.5);
	-moz-box-shadow:1px 1px 5px rgba(0,0,0,.5);
	box-shadow:1px 1px 5px rgba(0,0,0,.5);
}

#twitter .content {
	float:left;
	overflow:hidden;
	width:190px;
	margin-bottom:10px;
	font-size:14px;
	color:#666666;
	line-height:16px;
}

#tweets a { display: none; }
#tweets a:first-child { display: block; }
#tweets a { color: #666666; text-decoration: none;}
#tweets a:hover { color: #cccccc; }

/*
 ********************
 * Flickr
 ********************
*/

/*
Images are wrapped in divs classed "flickr_badge_image" with ids "flickr_badge_imageX" where "X" is an integer specifying ordinal position. Below are some styles to get you started!
*/
#flickr_badge_uber_wrapper {text-align:center; width:300px; height:300px; margin-bottom:35px; clear:both;}
#flickr_badge_wrapper {padding:0;}
.flickr_badge_image { float:left; border: 1px solid #cccccc; padding:4px 4px 4px 4px; margin:0 10px 10px 0px;}
.flickr_badge_image:nth-child(3n + 4) { margin-right:0;}
.flickr_badge_image img {width:83px; height:83px; border: 0px solid black !important;}

#flickr_badge_uber_wrapper a:hover,
#flickr_badge_uber_wrapper a:link,
#flickr_badge_uber_wrapper a:active,
#flickr_badge_uber_wrapper a:visited {text-decoration:none !important; background:inherit !important;}

/*
 ********************
 * Following
 ********************
*/

#following {
	position:relative;
	z-index:1;
	width:290px;
	height:270px;
	overflow:hidden;
	margin:0 0 20px 0;
	padding:0;
}

.following_avatar {
	margin:0;
	padding:0;
}

.following_avatar img {
	float:left;
	margin:0 0 3px 5px;
	padding:0;
}

.following_title {
	position:absolute;
	z-index:2;
	width:154px;
	height:31px;
	background: rgba(0,0,0,.5);
	top:162px;
	left:121px;
	padding:10px;
	margin:0;
}

.following_title p {
	text-transform:lowercase;
	color:white;
	font-size:26px;
	margin:0;
	padding:0;
}

/*
 ********************
 * Search
 ********************
*/

#search {
	margin-bottom:30px;
}

#search input {
	vertical-align: middle;
	font-family:sans-serif;
	font-size:12px;
    margin: 0 !important;
    line-height: 1;
    outline:0 !important;
	color:white;
	border:none;
	background:#cccccc;
	height:24px;
	line-height:24px;
	width:230px;
}

#search .submit {
	width:60px;
	height:26px;
}

/*
 ********************
 * Likes
 ********************
*/

#likes_container {
	clear:both;
	width:820px;
	font-size:14px;
	padding: 20px 0;
	border-top:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
}

ul#likes {
	list-style-type: none;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
}

li.like_post {
    /* Should match the width specified in the Likes tag */
    width: 190px;
    padding: 0 20px 0 0;
    float: left;
    overflow:hidden;
}

li.like_post:nth-child(4) {
    padding: 0;
}

li.like_post img {
    max-width: 100%;
}

li.like_post blockquote {
    margin: 0;
    padding: 0 0 0 10px;
    border-left: 1px solid #eee;
}

li.like_post ol, li.like_post ul {
    margin: 0 0 0 15px;
    padding: 0;
}

li.like_post .like_link a {
    font-weight: bold;
}

li.like_post .like_title {
    font-weight: bold;
}

li.like_post .post_info_bottom {
    margin: 10px 0 0 0;
    display: block !important;
}

#more_likes_container {
	clear:both;
	padding-top:30px;
}

#more_likes, #more_likes a {
	text-align:right;
	font-size:12px;
	margin:0;
	padding:0;
	color:#666666;
}

/*
 ********************
 * Footer
 ********************
*/

#footer {
	clear:both;
	font-size:12px;
	line-height:14px;
	color:#666666;
	text-align:center;
	padding-top:20px;
}

#footer p {
	margin:0;
	padding:0;
}

#footer a {
	text-decoration:none;
	color:#666666;
}

/*
 ********************
 * Fixes
 ********************
*/

.hiddenOnStaticPages {
    display: none;
}

.clear {
	clear:both;
}
