/*
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/
    background: #C00000;
*/

/*-- Main background of site --*/
body.custom {
    background-image: url(http://www.babeelove.com/images/dotback.gif);
    background-repeat: repeat;
    background-attachment: fixed;
}

/*-- Main border of site --*/
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #000000;
    border: 0.4em solid #b6d1d1;
}

/*-- Main color of content area --*/
.custom #page {
    background: #fff;
}

/*-- Logo of Babeelove --*/
.custom #header { border-bottom:none;
height:275px;
width: 948px;
padding-top: 0;
padding-bottom:0;
border-left: 2px dashed #b6d1d1;
border-bottom: 2px dashed #b6d1d1;
border-right: 2px dashed #b6d1d1;
background:url(http://www.babeelove.com/images/mainbanner.png)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }


/*-- Tabs also known as links at top above header --*/
.custom ul#tabs {border-bottom:none; border-left: 0px; background:#none;}
.custom ul#tabs li {margin-bottom:0; border-bottom: 2px; border-right: 0px; border-left: 2px; border-top: 2px; border-style: dashed; border-color: #b6d1d1; background: #FFFFFF; display:block; }
.custom ul#tabs li a {font-family:Georgia,"Times New Roman",Times,serif; padding-left: 20px; padding-right: 20px; padding-top: 6px; padding-bottom: 4px; color: #555555; font-size: 12px; font-variant: small-caps; letter-spacing: 2px; font-weight: bold}
.custom ul#tabs li.cat-item-93 {border-right: 2px; border-style: dashed; border-color: #b6d1d1}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:#c00000; color# b6d1d1; border-bottom: 2px solid #c00000; border-left: 2px dashed #b6d1d1; border-top: 2px dashed #b6d1d1;}
.custom ul#tabs li a:hover {text-decoration:none; background:#c00000; color: #b5d1d1}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {color: #b6d1d1;}
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; background:#FFFFFF;}, .custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#FFFFFF}

/*-- CSS for table that contains ads located on sidebar --*/
table.ads {
	border-width: 0px;
	border-spacing: ;
	border-style: none;
	border-color: #b6d1d1;
	border-collapse: separate;
	background-color: white;
}
table.ads td {
	border-width: 0px;
	padding: 1px;
	border-style: none;
	border-color: gray;
	background-color: white;
}