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

/* [HEADER SETTINGS] */

.custom .rss {
	display: none;
	}
#header {
/* 	background: url('http://lifeplusweb.com/wp-content/themes/thesis/custom/images/lifeplusweb2_one.jpg') no-repeat left; */
/* 	padding-left: 150px; */
	}
/*
#header p#logo, #header h1#tagline {
	display: none;
	}
*/
.custom #header {
	padding-left: 0;
	padding-top: 10px;
	}
.custom #header a  {
	border: none;
	float: left;
	}
.custom #header a img {
	}
.custom #header p#logo {
	margin-top: 35px;
	float: left;
	margin-left: 10px;
	}

.custom .headline_meta { color: #333; }
.custom .alignright { float: right; }
.custom .alignleft { float: left; }
.custom .aligncenter { display: block; float: none; clear: both; }
.custom .alignnone { display: block; clear: both; } 

/* [FOR FEEDSNTHINGS SIDEBAR] */

.custom div#feedsnthings a#email {
	background: url('http://lifeplusweb.com/wp-content/plugins/feedsnthings/email.png') left no-repeat;
	padding: 20px 0px 20px 50px;
	display: block;
	}
.custom div#feedsnthings a#rss {
	background: url('http://lifeplusweb.com/wp-content/plugins/feedsnthings/rss.png') left no-repeat;
	padding: 20px 0px 20px 50px;
	display: block;
	}
.custom div#feedsnthings a#twitter {
	background: url('http://lifeplusweb.com/wp-content/plugins/feedsnthings/twitter.png') left no-repeat;
	padding: 20px 0px 20px 50px;
	display: block;
	}
.custom div#feedsnthings a#newsletter {
	background: url('http://lifeplusweb.com/wp-content/plugins/feedsnthings/newsletter.png') left no-repeat;
	padding: 20px 0px 20px 50px;
	display: block;
	}

.custom #relatedposts {
	border-bottom: 1px solid #DDD;
	}
.custom #relatedposts h3 {
	color: #555;
	}
/* [FOR THE CATEGORY THUBMNAILS] */
.custom .category_thumb {
	width: 120px;
	height: 150px;
	float: left;
	margin: 2px;
	font-size: 9pt;
	text-align: center;
	margin-top: 30px;
}
.custom .category_thumb .cat_image {
	display: block;
	height: 120px;
	width: 120px;
	padding: 0px;
	overflow: hidden;
	background: #eee;
	vertical-align: middle;
}
.custom .category_thumb .cat_title {
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
	}
.custom .category_thumb .cat_title:hover {
	text-decoration: underline;
	}

/* [FOR THE MP3 PLAYLIST] */
.custom ul.playlist {
	margin-bottom: 0px; 
	}

/* [FOR THE CONTACT FORM (CONTACT FORM 7 PLUGIN)]	 */
.custom .wpcf7 #required {
	font-weight: bold;
	color: red;
	}
.custom .wpcf7 input, .custom .wpcf7 select {
	width: 14em;
	margin: .5em; 
	height: 1.3em;
	padding: .2em;
	}
.custom .wpcf7 .holder {
	font-size: normal;
	}
.custom .wpcf7 .holder div {
	width: 15em;
	}
.custom .wpcf7 textarea {
	width: 100%;
	}
.custom .wpcf7 #captcha {
	width: 4em;
	}
.custom .wpcf7 .sendholder {
	text-align: center;
	}
.custom .wpcf7 .sendholder #send {
	width: 10em;
	height: 2.5em;
	border: 1px solid #ccc;
	}

/* [ASK EGG BIRD] */

.custom #askeggbird {
	background: url('images/askbird.png') bottom center no-repeat #F8B766;
	font-size: 40px;
	display: block;
	padding-top: .5em;
	padding-bottom: 3em;
	text-align: center;
	color: #444;
	border: 4px solid #333;
	}
.custom #askeggbird #littlespan {
	color: #000;
	font-size: 18px;
	}
.custom #askeggbird:hover #littlespan {
	color: #999;
	}
.custom #askeggbird:hover {
	background-color: #CCCCFF;
	color: #fff;
	}
/* [VIDEO ICON NEXT TO THICKBOX LINKS] */
.custom .thickbox {
	padding-left: 3.2em;
	background: url('images/video.png') left center no-repeat;
	}
