/*

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/

*/

/*customizing list style*/
.custom li {
margin-bottom:1px;

}


/*Customizing the header*/
.custom #header {
border:solid 0px #333640;
padding:0em 0em 0em 0em;
margin:0em 0em 0em 0em;
}

/*Styling the "Unterkunft vorschlagen" Button*/
.custom .menu .tab-2 a {font-size:0.7em;}
.custom .menu .tab-2 a:hover {font-size:0.7em;}
.custom .menu .tab.tab-2.current a {font-size:0.7em;}

/*Remove the "from the category archives" text and the archives title on category pages*/
//#archive_info {display:none;}

/*Remove the Comments are closed display on single posts and pages*/
.custom .comments_closed p {
  display: none;
}

/* Set menu background color */
.custom ul.menu { background:#F1D08B; }

/*Remove top border from nav menu buttons*/
.custom .menu li > a {border-top:0px;}

/*Styling the Meta Nav Menu*/

.custom .menu-meta-menu-container {width:100%; height:24px; float:right; background:#036;}

#menu-meta-menu .a, #menu-meta-menu .menu-item a {
    background:#036; font-size:1em; color:#ddd; border:0px; 
}

#menu-meta-menu a:hover, #menu-meta-menu .menu-item a:hover {
    background:#E0EBFF; font-size:1em; color:black; border:0px;
}

#menu-meta-menu .menu-item-5782 a, #menu-meta-menu .menu-item-5782 a:hover{
    background:#036; font-size:1em; color:#ddd; text-decoration:underline; border:0px;
}

.custom ul#menu-meta-menu {border:0px;}

#menu-meta-menu .menu-item {
float:right;}

#menu-meta-menu .menu-item-5805 {
float:left;}

#menu-meta-menu {float:right; width:100%; background:#003366;}


/*Style headlines on archive pages such as on category pages*/
.custom #archive_intro h1 {
    color:black;
margin:20px 0px 10px 0px;
padding:10px;
background-color:#F1D08B;
text-align:center;
}