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

/*---:[ Hintergrund ]:---*/
body.custom { background: url('images/bg-line1.gif') repeat; } 


/*---:[ headlines and bylines ]:---*/
h1, h2, h3, h6 { text-transform: uppercase; letter-spacing: 1px; 2px;}
h4, h5 { font-weight: bold; }
h5, h6 { text-transform: uppercase; letter-spacing: 1px; }
.format_text h2 { font-weight: bold;}
.format_text h2.top, .format_text h3.top { margin-top: 0 !important; }
.sidebar h3 { font-variant: small-caps; letter-spacing: 2px; background: #AD094E; }
.sidebar ul li li {
	background: #FFFFFF url(images/pfeil.gif) no-repeat top left;
	padding: 1px 1px 1px 15px;
	margin: 1px;
	}
.custom #container { border-left:#D2D2D2 solid 1px; border-right:#D2D2D2 solid 1px; }



/************************************************
*	Hintergrund "Wo bestellen"									*
************************************************/

.landingsites {
         background: #ffffff url(images/bg-line1.gif);
         width:181px;height:200px;
         border: 1px #FBE1E7 solid;
         padding: 5px;
         margin-bottom: 1px;
         }

/************************************************
*	Designerübersicht									*
************************************************/
.buchstabe                             {font-size:22px; color:#FFFFFFF;}


/************************************************
*	Produkteinbindung									*
************************************************/
#productlistTable{ background:#FEF5FB; font-family: Georgia, "Times New Roman", Times, serif;;}
#productlistTable tr:hover{ background:#fff;}
#productlistTable a{color:#fff;}
#productlistTable img{ padding:5px 5px 2px 5px;}
#productlistTable H1, #productlistTable H1 a{ font-weight:bold; font-size:14px; margin:0 0 5px 0; padding:0; color:#0044CC;}
#productlistTable .productlistText{font-size:12px; color:#000;}
#productlistTable .productlistPrice{font-size:10px; font-weight:bold; color:#000; text-align:center;}
#productlistTable .productlistPorto{font-size:10px; color:#000; text-align:center;}

