/*
File:			custom.css
Description:	Nounou3
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:#B2D45B;
color: #625c61
}

.custom #header
{
background: url(./images/header.png) repeat-x;
border-style: none;
margin-bottom: 0;
	height: 58px;
}
.custom #header #logo a{
font-weight: bold;
font-style: italic;
color: #A54A4D;
background: #B2D45B;
	padding-right: 20px;
	padding-left: 20px;
}
.custom #header #logo a:hover {
	color: #A54A4D;
}
.custom #header #tagline{
	
background:#B2D45B;
font-style: italic;
	padding: 10px 30px 6px 20px;
	color: #fff;
}

.custom #page { 
background: #fff; }

.custom #container { 
margin-top: 0; 
margin-bottom: 0; 
padding: 3px; 
background: #B2D45B;}

.custom #content_box {background:none;
border-style: none;
}

.custom #content {background-color: #fff;
background-image: none;
}

.custom #content a {color: #A54A4D;
text-decoration: none;
}
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #B2D45B none repeat scroll 0 0; padding-top:20px;}

.custom dl#comment_list dd p.reply { margin: 1em 0 1.5em 0; }

.custom dl#comment_list dd p.reply a {background: ##FAEE96; font-size: 11px;font-weight: normal;padding: 4px 6px;text-transform: uppercase;}

.custom dl#comment_list dd p.reply a:hover {background:#FAEE96; border: 0; color: #A54A4D;}

div.social_icons img {padding: 2px;}

.alert
{
	background:#FAEE96;
		font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
}

/*Stay-Connected and Share-This-Post Box*/
.box { margin: -1 0em 0em; padding: 0.6em; background: #FAEE96; border: 1px solid #B2D45B;}
.box h3 { margin-top: 0; color: #A54A4D; font-size: 16px;}
.box p { margin-bottom: 0; }
.box .stayintheloop {float:left; width:58%;}
.box .social_icons {float:right; width:40%; }
.box .social_icons a, .box .social_icons a:hover {border:none;}
.box .social_icons img {filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0;-khtml-opacity: 1.0; }
.box .social_icons img:hover {filter:alpha(opacity=50);-moz-opacity: 0.5; opacity: 0.5;-khtml-opacity: 0.5;}
.advert {background-color:#FFF; color:black; border: 1px solid #B2D45B; border-top: 0; padding: 0.3em; text-align: center; font-size:12px;}

/* Navigation */
.custom ul#tabs 
{background-color: #FAEE96;
border-style: none;
	margin-top: 0;
}
.custom ul#tabs li
{
border-style: none;
}
.custom ul#tabs li a {background-color: #FAEE96;}
.custom ul#tabs li a:hover {color: #fff; background-color: #A54A4D;
	text-decoration: none;
}

/* Sidebar */
.custom #sidebars {
border-color:#B2D45B;
border-style:solid;	}



.custom #sidebar_1 {
border-color:#B2D45B;
border-style:solid;
background:none;}	

.custom #sidebars h3{
font-size: 14px;
border-bottom: 4px solid #FAEE96;
color: #fff;
background-color: #EE7253;
padding-left: 5px;
margin-top: 5px;
margin-bottom: 0;
}


.custom #sidebars a{
color: #A54A4D
}

.custom #sidebar_1 a{
color: #A54A4D
}
/* intro posts */

.custom #flickr {
	font-style: italic;
	font-size: 0.8em;
}


.custom #note
{
background-color: #FAEE96;
font-style: italic;
padding: 5px;
}

/* sidebar widget colors */


#recent-posts li {
	background: #FFF;
	border: 1px #FAEE96;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
}
#recent-posts img { float: left; padding-right: 8px; }

#recent-posts div.right { color: #B2D45B; float: right; font-size: 11px; text-transform: uppercase; }