/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

body.custom {
    background: #000 url('http://www.tinynibbles.com/art/bg.gif') fixed repeat top left;
    color: #000;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    border: 3px dotted #333399;
    background: #686868;
	padding: 0px;
}

.custom #page {
    background: #e8eef3;
    padding-top:2em;
}

.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #fff; border-width: 1px; }

.custom ul#tabs li a:hover {
  background:#333399;
  color:#fff;
  text-decoration: none;
}

.custom a { color: #333399; text-decoration: none; }

.custom a:hover { 
    color: #686868;
	text-decoration: none;
}

.custom #comment_list .comment_num a {color:#333399; }

.custom .tagline { background:red; }

/*.custom #header {padding-top:0em;border-bottom: 1;}*/

.custom li.widget p a {
text-decoration:none;
}

.custom li.widget a:hover {
text-decoration:none;
}

ul#tabs li { margin-bottom: -0.1em; background: #efefef; border: 1px solid #ddd; border-left: 0; float: left; }


.custom .format_text p {
margin-bottom: 0.9em;
}


.custom .sidebar h3 { 
	color: #000;
	font-variant: normal;
	letter-spacing: normal; 
	font-weight: bold;
}

.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }

img#wpstats{display:none}


.custom #feature_box { background:#FFFFFF; text-align: center; padding-top: 10px; border-bottom: none; padding-left: 1em; padding-rigt: 1em; padding-bottom: 0px;}


.custom .comments_closed {
   display: none;
}


.custom #content_box {
border-color: #DDDDDD;
border-width: 0 1px;
border-style: solid;
}


.custom #footer {
border-top: 1px solid #DDDDDD;
clear:both;
color:#888888;
text-align:right;
}

.custom #footer a { color: #333399; 
	border-bottom: none;
	text-decoration: none;
}

.custom #footer a:hover { 
    color: #686868;
	text-decoration: none;
}


.custom .center {
	text-align:center;
}

.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/**
 * Custom header
 */

.custom #header
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
height:121px;
}

.custom #header #logo a
{
display:block;
width:960px;
height:121px;
background:url(http://www.tinynibbles.com/wp-content/themes/tinynibbles/custom/images/banner.jpg) center no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #tagline
{
color:#000000;
text-indent: -9999px;
}

/**
 * Twitter Widget
 */
.widget_twitter {
	clear:both;
	margin: 2px;
	border: #DDD solid 1px;
}
.widget_twitter li {
	font-size: smaller;
	clear:both;
}

.widget_twitter li h3 {
	float:left;
	display: inline;
}

.widget_twitter li twitter-avatar {
	float:right;
	margin-right:.5em;
	display: inline;
}
.widget_twitter li .clear {
	clear:both;
}

/*
 * Make sidebar align center
*/

#sidebar_2, .flickr {
	text-align:center;
}

#profilepic {
	float:left;padding-top:5px;padding-right:5px;
}
