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

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




/* trennlinien ausblenden*/
.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
/*sidebar trennlinien ausblenden */
/*
.custom #content_box, .custom #column_wrap {
        background: none;
}
*/

/*abstand contentbox nach oben korrigieren */

.custom #content_box {
        margin-top: 0px;
}




div#seitentitel {
	background-color: transparent;
        text-shadow: black 1px 1px 10px;
        font-size: 40px;
	color: #ffffff;
	display: inline;
	font: century gothic;
	font-weight: bold;
	
	line-height: 0.0em;
	a:visited: {color: #white; }
	a:link: {color: #white; }

}







.custom #header {
   color: #111111;
   font-weight: normal;
   height: 200px;
   padding-left: 0px;
   padding-right: 0px;
   margin-left: 0px;
     padding-bottom: 0px;
   margin-bottom: 0px;
     padding-top: 0px;
   margin-top: 0px;
}


.custom #footer {
   padding: 0px;
}




/*FOOTER*/
	
.custom #footer a {
border-bottom:none;
}	

.custom #footer a:hover {
border-bottom: 0px solid;
}
	
	
/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
.custom #footer_setup {
	/* widgetized footer background (not footer background) */
	background: #E4481F;
	/* widget padding */
	padding: 0px;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}


/* widget item setup */
#footer_setup .footer_items {
	/* font size */
	font-size: 1.2em;
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 180px;
	/* space between widgets */
	padding-right: 5px;
	padding-left: 35px;
	/* text color */
	color: #ddd;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1.2em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #fff;
	padding-top: 15px;
        /* padding under header text */
	padding-bottom: 7px;
	/* border under header text */
	border-bottom: 0px solid #999;
	/* distance between border and widget text */
	margin-bottom: 3px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

