/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

body.custom {
    /*background: #44443f;*/
    background: #fcd4d1;
    background-image: url(http://www.meinehautaerztin.at/wp-content/themes/thesis_142/custom/images/hautarzt_background.png);
    background-repeat: repeat-x;
}



.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    /*    background: #33332f;*/
    background: #fcd4d1;
    border: 0.4em solid #ae253d;
/*    border: 0.4em solid #3e3e3a;*/
}

.custom .sidebar h3 {
font-size:1em;
font-variant:small-caps;
font-weight: bold;
letter-spacing:2px;
line-height:1.385em;
margin-bottom:0.615em;
}

.custom h2 {
font-size: 1.2em;
font-weight: bold;
}

/*
.custom #header {
    background-image: url(http://www.seopro.at/meinehautaerztin/wp-content/themes/thesis_133/custom/images/Hautaerztin_Wien_Brigitte_Klein.jpg);
}*/

.custom #page {
    background: #fff;
    position: relative;
    background-image: url(http://www.meinehautaerztin.at/wp-content/themes/thesis_142/custom/images/dr_klein_background.png);
}

.overlap1 {
	left: 915px;
	position: absolute;
	top: -20px;
}

.custom a {
        color: #AE253D;

}

.custom #header #logo {
         font-size:3.4em;

}

.custom .format_text p.alert {
background:#EFEFEF none repeat scroll 0 0;
border:1px solid #DDDDDD;
}

.custom div.alert {
	background:#EFEFEF none repeat scroll 0 0;
	border:1px solid #DDDDDD;
	margin:1em;
	padding:1em;
}

/* Anzeige der Sprachen und Flaggen im oberen rechten Bereich */

.flag{
	left: 604px;
	position: absolute;
	top: 150px;
	font-size: 1.2em;
}

.flag li{
	list-style:none;
	float: left;
	margin: 0 5px 0 5px;
}

/* div Box in der das Bild und die Beschreibung eines Teammitglieds eingeschlossen ist */
.teambox{
	clear:both;
}
/* Beschreibung eines Teammitglieds */
.teambeschreibung{
	float:right;
	width:240px;
}

