/*
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 {
	background-image: url('images/body-bg.jpg');
	background-repeat: repeat-x;
	background-color:#6a6c7d;
}


.full_width > .page {
	background: transparent none repeat scroll 0 0;

}

.custom #header #logo, .custom #header #tagline { 
	text-indent: -9999px; 
}

.menu li a {
	line-height: 43px;
	text-transform: none;
	letter-spacing: normal;
	padding:0em 0.857em;
}

.custom .menu {
	background:none;
}


.custom div#header_area .page { 
	padding-top: 0px; 
}

.custom div#header {
	background-image: url('images/header.jpg');
	background-repeat: no-repeat;
	height: 180px;
	padding-right: 0px;
	padding: 0px;
	margin: 0px;
	background-position: top left;
}

.custom #content_area  {
	background: #ffffff;
}

.headline_area {
	/*background-image: url('images/post-head-bg.png');
	background-repeat: repeat-x;
	background-position: bottom left;
	overflow:hidden;*/
}

.headline_area h1, .headline_area h1.entry_title {
	background-image: url('images/post-head-h1-bg.jpg');
	background-repeat: repeat-x;
	background-position: bottom left;
	overflow:hidden;

}

.custom #sidebar_1 .teaser {
	 width: 11em; 

}

.custom .teaser_date {
	font-size: .8em;
	line-height: 1em;
}

.custom .teasers_box {
	display:none;
}


#footer_area {
	background-color: #6a6c7d;
	background-image: url('images/footer-bg.jpg');
	background-repeat: repeat-x;
	border-top: 1px solid #666;
}

/*----------------new CSS content----------------*/

#head-feedburn {
	position: relative;
	top:88px;
	left: 355px;
}

.texta {
	background-color: #fbf7ed;
	height: 24px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.button {
	background-image: url('images/button-bg.png');
	background-repeat: repeat-x;
	border: 1px solid #e55118;
	color: #fcf8ee;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.15em;
	height:24px;
	position:absolute;
	top: 0px;
	left: 205px;
}

#man_optin .button2 {
	background-image: url('images/button-bg.png');
	background-repeat: repeat-x;
	border: 1px solid #e55118;
	color: #fcf8ee;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.15em;
	height:24px;
	position: relative;
	top: 5px;
	left: 100px;
	
}

li#text-3  {
	margin-bottom: 0;
}

div.mywidgetbox {
	border: 1px solid #e5decc;
	padding: 10px 0px 0px 10px;
	margin: auto;
	background-image:url('images/optin-bg.png');
	background-position: right top;
	background-repeat: no-repeat;
	background-color: #fbf7ed;
	
}
.mywidgetbox form {
	padding: 0px 5px 0px 5px;
	margin:auto;
}

/*.mywidgetbox img {
	padding:8px;
}*/

#mywidgetcontent1 h2 {
	color:#6a6c7d;
	font-family: "Times New Roman", Times, serif;
	font-size: 1.1em;
	font-weight: normal;
	text-align: left;
	padding-top: 5px;
	
}

#mywidgetcontent1 p {
	color: #666699;
	text-align: left;
	font-size: 1.15em;
	line-height: 1.15em;
	padding-top: .6em;
	font-family: "Times New Roman", Times, serif;
}
#mywidgetcontent1 {
	padding: 3px;
	text-align:right;
	
}

#mywidgetcontent1 img {
	padding: 20px 0px 0px 0px;
	float:right;
	
}


#man_optin {
	padding: 3px 0px 10px 0px;
}

.orange {
	color: #ea4f18;
}