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

/*outline entfernen */

#logo
{
	text-shadow:#fff 2px 2px 0;
}

a {
   outline: none;
}

a.more-link
{
	text-decoration:none;
}

a.more-link:hover
{
	text-decoration:none;
	border-bottom:#fff dashed 1px;
}


/*Schwarzer Balken im Header */
.custom
{
	border-top:#333 5px solid;
	background-image:url(images/bg.jpg)
}

#page
{
	background-color:transparent;
	text-shadow:#fff 1px 1px 0;
}


/*Suche im Header */
#s {
     float: right;
     background: url("images/suche.gif") 0 0 no-repeat;
     color: #333;
     padding: 6px 10px 6px 30px;
     width: 156px;
	 border:none;
}

/* Sidebar rechts ausgerichtet */

#multimedia_box, .sidebar_list
{
	padding-left:22px;
}

.sidebar ul.sidebar_list
{
	padding-left:22px;
}


/* Gepunktete Linie im Footer */

#footer
{
	border-top:dashed 1px #999;
}

#commentform {
border-top:1px dashed #999;
}


/* Keine Linie im Footer */
#multimedia_box
{
	border-bottom:none;
}

/* Keinen Rahmen */

.prev_next 
{
	border:none;
	padding-left:0;
}



.format_text img.frame, .format_text .wp-caption {
padding:0;
}

.format_text a
{
	text-decoration:none;
	border-bottom:#333 1px dashed;
}

.format_text a:hover
{
	background-color:#fff;
	border-bottom:#333 1px dashed;
}


#tagline
{
	padding-left:0;
}

/* Formatierung Beitragstitel */
.entry-title
{
	font-size:large;
	line-height:1.5em;
	text-shadow:#fff 2px 1px 0;
}

.entry-title a:hover
{
	color:#000;
}

.headline_meta span, .headline_meta abbr
{
	font-style:italic;
	text-transform:capitalize;
}

.post_box
{
margin-left:0;
}

.menu a
{
	padding-left:0;
	padding-right:20px;
}


#header
{
	margin-top:20px;
	margin-bottom:50px;
	border-bottom:dashed 1px #999;
	padding-left:0;
	background-image:url(bg_rotator/rotator.php);
	background-position:588px;
	background-repeat:no-repeat;
}

dl#comment_list dt, dl#trackback_list dt, dl#comment_list dd, dl#trackback_list dd, #commentform  
{
	padding-left:0;
}

.comments_intro, #respond_intro 
{
	margin-left:0;
}


#tagline
{
	width:530px;
	padding-top:20px;
}

.image_box
{
	background:none;
	width:410px;
}

#multimedia_box 
{
padding-top:75px;
}

#image_box img
{
	border:none;
}

.post_box
{
	padding-top:0;
	border-bottom:#999 dashed 1px;
	border-top:none;
	margin-bottom:32px;
}

.menu
{
	border:none;
	margin-top:20px;
}

.menu ul a
{
	font:Arial, Helvetica, sans-serif;
}

.current a
{
	border:none;
}

.menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover {
	background-color:transparent;
}

.menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
	background-color:transparent;
}

.menu a, .menu .current ul a, .menu .current-cat ul a
{
	background-color:transparent;
}

.menu, .menu a, .menu li ul 
{
	border:none;
	background-color:none;
}

h4
{
	font-weight:normal;
	color:#333;
	padding-bottom:4px;
}

.format_text .to_comments a:hover {
text-decoration:none;
}