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

body.custom {
    background: url('images/bg.png');
}


#nav
{
    margin: 0px 10px;
    background: #fff url('images/navbar.gif') no-repeat center top;
    height: 40px;
}


#header_area {
	background:url('images/top_bg.png') repeat-x;
	
}

.custom #container {
    margin-top: 0em;
    margin-bottom: 0em;
    width: 1080px;
}


.custom #page {
    background: #E9D6DC;
    margin-top: 0px;
    margin-left: 40px;
    padding: 0px;
}



#header_area .page {
    background: url('images/header_bg.jpg') no-repeat;
    height: 400px;
    
}

#content_area .page {
	background: #000 url('images/main_bg.png') repeat-y;
	width: 1080;
	text-align: justify;
	
}

#footer_area .page {
	background: url('images/footer_bg.png') no-repeat;
}




#nav ul
{
    list-style: none;
    font-size: 14px;
    line-height: 35px;
    color: #fff;
    padding-left: 30px;
    margin: 0px 20px;
}

#nav li
{
    float:left;
    margin:0px 0px 0px 0px;
    padding:0 0px 0 0px;
}

#nav a
{
    color: #fff;
    text-decoration: none;
    float:left;
    display:block;
    width: .1em;
    padding: 0px 50px 0px 50px;
    white-space:nowrap;
}
  #nav a  {float:none;}
  #nav > ul a {width:auto;}

#bestelbox
{
    float: left;
    width: 250px;
    margin: 40px 40px 40px 40px;
    min-height: 150px;
}

#bestelbox a
{
    float: right;
    border: 0px;

}

#bestelbox h1
{
    font-size: 17px;
    color: #4C4D50;
    margin-bottom: 10px;
}

#bestelbox p
{
    font-size: 12px;
    color: #4C4D50;
    text-align: justify;
    margin-bottom: 10px;
}

#bestelbox img
{
    float: left;
    border: 0px;
    
}

#leftColumn
{
    float: left;
    width: 350px;
    padding: 0px 0px;
    min-height: 100%;
    
    background: #fff url('images/bestelbox.gif') no-repeat top left;
}



#footer
{
    margin: 0px 0px;
    padding-top: -10px;
    margin-top: 0px;
    clear: both;
    background: url('images/footer_bg.png') no-repeat bottom;
    height: 80px;
    
    
}


#footer_bar
{
    margin: 0px 0px;
    clear: both;
    background: url('images/footer_bar.png') no-repeat bottom;
    height: 40px;
    padding-top: 20px;
    
}

#footer_bar p
{
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 11px;
    padding-top: 10px;
    	text-decoration: none;

}

#footer_bar a
{
	color: #fff;
	text-decoration: none;
}


#header_box
{
    float: left;
    width: 440px;
    height: 200px;
    margin-left: 70px;
    margin-top: 150px;
}

#header_box p
{
    font-size: 12px;
    color: #4C4D50;
    text-align: justify;
}

#header_box h1
{
    font-size: 21px;
    color: #4C4D50;
    padding-bottom: 10px;
    text-align: left;
}

#header_box img
{
    float: right;
    border: 0px;

}



td, th {
	font: 12px Helvetica, Verdana, Arial;
	line-height: 120%;
	color: #808080;
}

th
{
    font-weight: bold;
}

table
{
    width: 500px;
    border-collapse:collapse;
    margin-bottom: 1em;
}

div.table
{
    width: 501px;
    border-top: solid 4px #d1d1d1;
    margin-top: 0px;
}

table thead
{
}

table thead th
{
    background-color: #ececec;
    border-right: solid 1px #d1d1d1;
    /* border-top: solid 4px #d52076; */
    border-bottom: solid 1px #d1d1d1;
    text-align: left;
    padding: 5px 0px 5px 6px;
}

table tbody tr
{

}

table tbody td
{
    border-color: #d1d1d1;
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    text-align: left;
    padding: 0px 0px 0px 6px;
    vertical-align: middle;
}

table tbody td img
{
    padding-top: 0px;
    padding-bottom: 5px;
    vertical-align: top;
}

table tbody td.f, table thead th.f
{
    border-left: solid 1px #d1d1d1;
}

table tbody tr.l td, table.specs tbody tr.l th
{
    border-bottom: solid 1px #d1d1d1;
}



table.specs tbody td
{
    border-color: #d1d1d1;
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    text-align: left;
    padding: 0px 0px 5px 6px;
    vertical-align:middle;
    width:300px;
}

table.specs tbody th
{
    border-color: #d1d1d1;
    border-style: solid;
    border-width: 0px 0px 0px 1px;
    text-align: right;
    padding: 0px 0px 5px 6px;
    vertical-align:middle;
}

table.specs tbody th.tabelkop
{
    background-color: #ececec;
    border-right: solid 1px #d1d1d1;
    /* border-top: solid 4px #d52076; */
    border-bottom: solid 1px #d1d1d1;
    text-align: left;
    font-weight: bold;
}

#sidebar_1
{
	margin-left: 20px;
}

#sidebar_1 a
{
	margin-left: 40px;
	color: #8f857a;
}

.comments_closed p {
	color: #fff;
}

.custom .sidebar h3 {
	font-variant: normal;
	text-transform: capitalize;
	font-style: bold;
	margin-left: 30px;
}
