/*
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/
*/


.custom .format_text input {
border-width:0.067em;
padding:0.2em;
width: auto;
}
/* ---------- neues Header-Bild */

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 150px; width: 1079px; background: url('images/header.jpg') no-repeat; outline: none;}

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0 0 1em 0; border: none; margin-top: 0; }
.custom #page { padding-top: 1em; }


.custom .menu {
	background: #666666;
}

/* Tab: Login oben rechts */
.custom .tab-7 {
float: right;
border: none; 
}

.custom .tab-7 a {
background: #999;
border-top: 1px solid #999;
border-bottom: 0.5px solid white;
}

.custom .tab-7 a:hover {
background: #999900;
border-top: 1px solid #999900;
}

/* Nix Grossbuchstaben in Sidebar */
.custom ul.sidebar_list {
	text-transform: none;
}

/*--------- h1-h3-Titel in Text und in der Sidebar  */
	
.custom .sidebar h3 {
	border-bottom: 3px solid #666666;
	font-variant: normal;
	padding-left: 1px;
	margin-bottom: 20px;
}

.custom .sidebar #ww123-3 h3 {
	background: white;
	color: black;
	font-size: 1.3em;
	font-variant: normal; 
	font-weight: normal;
	border-bottom: 1px solid black;
}


.custom h1 {
	border-bottom: 1px solid #ffaa00;
}


.custom #header h1 {
	border:none;
}

.custom .entry-title {
	border: none;
}



.custom .format_text h3 { 
	color: #b6bc28;
	font-weight: bold; 
}


/*--------- Ende h1-h3-Titel in Text und in der Sidebar */




/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/
/*-----------BIS HIER ALLGEMEIN ANPASSUNGEN.---- AB JETZT NUR NOCH TITELSEITE ----------------*/
/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*/



/*---------Zeilenhöhe Titel auf der Titelseite auf 0 schalten und Titel ausblenden */
.home .headline_area { margin:0;padding:0;display:none; }
.home #post-842 { margin:0;padding:0; }

.ohne_titel .headline_area {display:none;}

/*---------Flugplatz ist die ganze Seite. Er definiert ein paar generelle Dinge und */ 
/*---------KÜMMERT SICH VOR ALLEM UM DIE LINIEN, DIE DIE BLÖCKE UNMSCHLIESSEN. */
.custom .flugplatz {
	font-size: 12pt !important;
	color: #696969;	
	border-top:1px solid #ECE5E2;
	padding: 20px 0 0 0;
	width: 100%;
}

/*--------- "Voll" ist der Titeltext auf der Homepage, der die volle Breite einnimmt. */
/*--------- H2 ist der orange Text, p der normale. */
.custom .voll h1 {
	font-size: 1.5em !important; 
	line-height: 1.5em;	
	color: black;
	border: none;
	margin-bottom: 20px;
}

.custom .voll h2, .voll ul {
	font-size: 1.125em !important;
	line-height: 1.5em;
	margin: 0 0 1em 0;	
}


/*--------- "Streifen" sind die vier Kolonnen unten */
.custom .streifen {
	font-size:0.88em;
	width:267px;
	float:left;		
}

.custom .streifen h3 {
	font-size: 1em !important;
	color: #fff;
	border: none;
	letter-spacing:2px;
	line-height: 2em;
	margin-top: 3px;
	margin-bottom:1em;
	text-transform:uppercase;	
	padding: 0 15px;
	background: #b6bc28;
}

.custom .streifen h3 a, .streifen h3 a:visited {
	color: #fff;
}

.custom .streifen h3 a:hover {
	text-decoration: underline;
}

.custom .streifen p {
	font-weight: normal;
	line-height: 1.5em;
	padding: 5px 15px;	
}

.custom .streifen li {
	list-style-type: none;	
	line-height: 1.5em;
	font-weight: normal;
	margin: 0 15px;
	padding: 5px 0px;
	border-bottom:1px dotted #E3E3E2;
}

.custom .streifen a, .voll a {
	font-weight: bold;	
	color: #b6bc28;
}

.custom .streifen a:hover, .voll a:hover {
	color: #fff;
	background: #b6bc28;
}



/*---------------Format Datum für die aktuellen Einträge */
.custom .streifen .datum {
	font-style: italic;
	color: #808080;	
}

/*--------- "jahallo" malt die blauen Kästen für besonderen Text */
.custom .jahallo {
	margin: 5px 15px 10px 10px !important;
	padding: 5px 10px !important;
	background: #fff5ab;
	border:none;	
	color: black;
}

.custom .jahallo a, .leiste a {
	color: blue;	
	font-weight: bold;
}

.custom .jahallo a:hover, .leiste a:hover {
	background: blue;
	color: #9cf;
}

.custom #creditfooter { display:none; }

.custom .date {
	font-style: italic;
	color: #808080;	
	padding:0 !important;	
}

.custom .headline {
	display: none;	
}

.custom .leiste table{
	background:#e6e6e6;
	margin:10px 0 30px 0;
	padding:5px 0;
	border:solid 1px silver;
}

.custom .leiste td {
	border-right: 1px solid silver;
	vertical-align: top;
}

.custom .leiste p {
	font-size:10pt;
	line-height: 1.2em;
	padding:5px;
}

/*--------- Links auf social medias */
.custom .socmed {
	margin: 20px 0;	
}

.custom .socmed p {
	margin: 0;
	padding: 0;
}
/*--------- Ende Links auf social medias */


/*--------- Fuss */
.custom #footer_1 {background: #EEE;text-align:left; color:#333;}
.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
/*--------- Ende Fuss */


/*--------- Social Media im Fuss */

/* Define the clear div to offset the link floats */
div.clear{
  clear: both;   
  height: 1px;
  width: 1px;
} 

/* This is the style for the container */  
div.socialmedia_sidebar
{
  background: #eee;
/* If you are using this below the media box, 
use a negative top margin to raise it up. If not, adjust accordingly */
  padding: 5px 5px;    
margin-bottom: 20px;
} 

div.socialmedia_sidebar ul li{
  float: left;         
  list-style: none;    
  text-align: center;
  width: 25%;
} 

div.socialmedia_sidebar span.name{
  font-size: 2em;
  display: block;
}

div.socialmedia_sidebar span.service{
  font-style: italic;
}  

div.socialmedia_sidebar ul li a{
   
  padding: 5px;    
  display: block;      
  border: 1px solid #fff;    
}

/* Non-hover profile links */       
#twitter{ background: #FEF9BF url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/twitter.png') 5px 5px no-repeat; height: 35px; padding-left: 35px;} 
#delicious{ background: #FEF9BF url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/delicious.png') 5px 5px no-repeat; height: 35px; padding-left: 35px;}
#xing{ background: #FEF9BF url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/xing.png') 5px 5px no-repeat; height: 35px; padding-left: 60px;} 
#webi{ background: #FEF9BF url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/check.png') 5px 5px no-repeat; height: 35px; padding-left: 50px;} 
  

/* Hover profile links */
#twitter:hover{ background: #999 url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/twitter.png') 5px 5px no-repeat} 
#delicious:hover{ background: #999 url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/delicious.png') 5px 5px no-repeat} 
#xing:hover{ background: #999 url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/xing.png') 5px 5px no-repeat} 
#webi:hover{ background: #999 url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/check.png') 5px 5px no-repeat}  

/*--------- Fertig Social Media im Fuss */
/*--------------------------------------*/ 
 

/*--------------------------*/ 
/*--------- Tabs im Feature */
/*--------------------------*/

.custom .hfeed .post_box {
 	padding: 15px 0 0 35px;
	margin-left: 0;
	margin-top: 20px;
	border: none;
}


.custom .hfeed .category-blatternet {
 		background: url('images/katgrblatternet.png') 0 0 no-repeat; 
}

.custom .hfeed .category-aufschieberitis {
 		background: url('images/katgrauf.png') 0 0 no-repeat; 
}

.custom .hfeed .category-energie {
 		background: url('images/katgrenergie.png') 0 0 no-repeat; 
}

.custom .hfeed .category-erfolg {
 		background: url('images/katgrerfolg.png') 0 0 no-repeat; 
}

.custom .hfeed .category-gedankenstrich {
 		background: url('images/katgrgd.png') 0 0 no-repeat; 
}

.custom .hfeed .category-arbeitsorganisation {
 		background: url('images/katgrorg.png') 0 0 no-repeat; 
}

.custom .hfeed .category-simplify {
 		background: url('images/katgrsimplify.png') 0 0 no-repeat; 
}

.custom .hfeed .category-zeitmanagement {
 		background: url('images/katgrzeit.png') 0 0 no-repeat; 
}
 
/*--------- fertig Tabs Feature */
/*------------------------------*/
 
 
/*-------------------------*/ 
/*--------- Tabs im Teaser */
/*-------------------------*/

.custom .teasers_box h2, .custom .teaser_date, .custom .format_teaser, .custom .teaser_link {
 	padding-left: 30px;
 }
 
.custom .teaser {
	padding-top: 10px;
}

.custom .teasers_box {
	margin-left: 0;
	border: none;
}


.custom .teasers_box .category-blatternet {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklblatternet.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-aufschieberitis {
 		background: url('images/katklauf.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-energie {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklenergie.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-erfolg {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklerfolg.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-gedankenstrich {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklgd.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-arbeitsorganisation {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklorg.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-simplify {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklsimplify.png') 0 0 no-repeat; 
}

.custom .teasers_box .category-zeitmanagement {
 		background: url('http://www.blatternet.ch/wp-content/themes/thesis_16/custom/images/katklzeit.png') 0 0 no-repeat; 
}

/*--------- fertig Tabs im Teaser */
/*--------------------------------*/

/*--------------------------------*/
/*--------- Link-Areas definieren */
/*--------------------------------*/
.custom .kateliteas { 
	position: absolute; 
	margin-top: -10px;
	padding:0 !important;
	width: 18px; 
	height: 123px; 
	background-color: transparent; 
}

.custom .katelifeat { 
	position: absolute; 
	margin: -15px 0 0 -35px;
	padding:0 !important;
	width: 19px; 
	height: 138px; 
	background-color: transparent;
}

.custom #goog-wm-sb, .custom #searchsubmit, .custom #newsli {
	background: #b6bc28;
	color: white;
	font-weight: bold;
	border: groove 3px #b6bc28 ;	
}


.custom #goog-wm-sb, .custom #searchsubmit {
	margin-left: 10px;
}

.custom #goog-wm-sb {
	width: 150px;	
}




.custom .stableListings {
	width: 305px;
}

.custom .shopping_cart {
	width: 606px;
	border: 1px solid rgb(204, 204, 204);
	margin-bottom: 50px;
}



.custom .aufschieben {
	width: 696px;
	height: 500px;
	background: url('images/blatt.jpg') no-repeat;
	padding-top: 30px;
}


.custom .aufschieben2 {
	width: 696px;
	height: 370px;
	background: url('images/blatt2.jpg') no-repeat;
	padding-top: 30px;
	margin-left: 10px;
	margin-bottom: 40px;
}
.custom #elcheffe {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #ffffcc;
	border-top: yellow solid 2px;
	border-bottom: yellow solid 2px;
	text-align: center;
	height: 226px;
}

.custom #elcheffe p {
	font-size: 16px;
	margin-top: 20px;
	padding-left: 30px;
	line-height: 1.4em;
}

.custom #elcheffe a {
	color: blue;
	text-decoration: underline;
}

.custom #elcheffe a:hover {
	color: blue;
	text-decoration: none;
	font-weight: bold;
}

.custom #elcheffe h1 {
	font-size: 24px;
	color: black;
	border: none;
	line-height: 1.3em;
	margin-bottom: 10px;
}

.custom #post-2038 .headline_area {
	display: none;
}

.custom .kasten, .kasten3 {
	float: left;
	width: 228px;
	background: #afeeee; /* a6efff */
	border: 2px #999999 solid;
	border-radius: 10px;
}

.custom .kasten {
	margin-left: 12px;
}


.custom .kasten h2, .kasten3 h2{
	padding: 5px;
	margin: 0;
	text-align: center;
}

.custom .kasten img, .kasten3 img{
	margin: -5px;
}

.custom .kasten p, .kasten3 p {
	padding: 5px;
}

.cat_aufschieberitis #archive_info {
	display: none;
}

.custom #commentform input.form_submit {background:ButtonFace; color:ButtonText; border:2px outset ButtonFace;}
.custom #commentform input.form_submit:active {border-style:inset; -webkit-appearance:push-button;}


.custom .post-2475 .tweetmeme_button, .post-2475 .shr-bookmarks {display:none;}

.sales h1 {
border: none;
font-size: 3.8em;
font-weight: bold;
color: red;
text-align: center;
margin-top: 20px;
margin-bottom: 30px;
border-bottom: 3px solid red;
border-top: 3px solid red;
padding: 20px 0;
background: #ffffe0;
}

.sales .headline_area {
margin-bottom: 0px; 
}

.sales h2 {
font-size: 1.6em;
font-weight: bold;
text-align: center;
margin: 20px 0;
line-height: 1.3em;
}

.sales h3 {
font-size: 1.4em;
}

.sales p, .sales .format_text li {
font-size: 1.1em;
line-height: 1.5em;	
}


.sales .blau li {
	margin-bottom: 15px;
}

.sales blockquote p {
	font-size: 0.9em;
}

.sales right {
	background: url('images/Zitat.jpg') no-repeat;
}

.sales .gelb {
background: #ff6;
}

.sales .blau {
	border: 1px orange solid;
	background: #AFEEEE;
	margin-bottom: 20px;
}

.sales .rot {
	color: red;
	font-weight: bold;
	font-style: italic;
}


#login-box {
	width:333px;
	height: 352px;
	padding: 58px 76px 0 76px;
	color: #ebebeb;
	font: 12px Arial, Helvetica, sans-serif;
	background: url(images/login-box-backg.png) no-repeat left top;
}

#login-box img {
	border:none;
}

#login-box h2 {
	padding:0;
	margin:0;
	color: #ebebeb;
	font: bold 44px "Calibri", Arial;
}


#login-box-name {
	float: left;
	display:inline;
	width:80px;
	text-align: right;
	padding: 6px 10px 0 0;
	margin:0 0 7px 0;
	clear: both;
}

#login-box-field {
	float: left;
	display:inline;
	width:230px;
	margin:0;
	margin:0 0 7px 0;
}


.form-login  {
	width: 205px;
	padding: 10px 4px 6px 3px;
	border: 1px solid #0d2c52;
	background-color:#6699cc;
	font-size: 16px;
	color: #666;
}


.login-box-options  {
	clear:both;
	padding-left:89px;
	font-size: 11px;
	padding-top: 5px;
}

.login-box-options a {
	color: #ebebeb;
	font-size: 11px;
}

.squeeze { margin: 1.5em auto; width: 900px; }
.aweber { float: right; width: 250px; }