/*
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/
*/

#footer{
 background: #F0F0F0;
}
.custom #footer {
 height: 100%;
 width: 100%;
 border-top:2em solid #EF9D6E;
 background: #F0F0F0;
padding:0em;
}
.custom #footer a{
 border-bottom: 1px none #cccccc;
}
.custom #footer {
 text-align:center;
}
/* footer widget area setup */
#footer_setup {
 /* widgetized footer background (not footer background) */
 background: #F0F0F0;
 /* widget padding */
 padding:1.5em;
 /* margin at bottom of widgets */
 margin-bottom: 25px;
 /* do not change this! */
 overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
 /* contents alignment */
 text-align: left;
 /* widget width */
 width: 33.3%;
 /* space between widgets */
 padding-right: 0px;
 /* text color */
 color: #111111;
 /* do not change these! */
 display: inline-block;
 float: left;
 height: 100%;
}

/* widget item headers http://adwordsshop.com/wp-admin/admin.php?page=thesis-file-editor*/
#footer_setup .footer_items h3 {
 /* font size */
 font-size: 1.5em;
 /* bold or not */
 font-weight: bold;
 /* uppercase or not */
 text-transform: uppercase;
 /* space out the letters*/
 letter-spacing: 0px;
 /* font color*/
 color: #E06C28;
 /* padding under header text */
 padding-bottom: 3px;
 /* border under header text */
 border-bottom: 3px none #ffdf00;
 /* distance between border and widget text */
 margin-bottom: 5px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style:none;
 font-size:1.4em;
 line-height:1.5em;
}
#footer_setup .footer_items ul { margin: 1em; padding: 0px; }

/**** for facebook and twitter buttons***/
.custom .post_box { position:relative; }
.custom .social-post { left:-8.6em; position:absolute; top:3.0em; }
	.custom .counter-twitter { margin-bottom:1.4em; margin-left:0em; }
	.custom .counter-fb-like { margin-bottom:1.6em; margin-left:0.5em; }
	.custom .counter-google-one { margin-bottom:1.4em; margin-left:0.2em; }
         .custom .pinterest-posts { padding-top:2.5em; margin-left:0.6em; }

/** for flickr box**/

.custom .flickrfeed {
	padding-left:1.1em;
	padding-right:1.1em;
	font-size:1.3em;
	line-height:1.385em;
	margin-bottom:2.769em;
}
.custom .flickrfeed h3 {
	font-size:1em;
	line-height:1.385em;
	margin-bottom:0.692em;
	color:#555555;
	font-variant:small-caps;
	letter-spacing:2px;
}
.custom .flickrfeed img {
	padding:1px;
	border:3px solid #DDDDDD;
	margin-right:5px;
	width:80px;
}


.custom #respond form#commentform input, .custom #respond form#commentform textarea { background:#fff; border:1px solid #000; }
.custom #respond form#commentform .format_text input, .custom #respond form#commentform input, .custom #respond form#commentform textarea { margin-left:1em; }

.custom .sidebar h3{background-color: #FFFFFF;

-moz-border-radius: 4px;&nbsp;padding: 0.3em 0.3em 0.3em 0.8em; font-weight:bold; font-size:1.1em; color:#000000;}