/*
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/
*/

/* This stops H1 headers from showing on each page. (It\'s possible additional selector targeting may be required if it wiped another H1.) 
.custom h1 {display:none;}*/


/* NO PAGE TITLES ON SPECIFIC PAGES - specified in custom functions.php */
.custom #no_headline .headline_area { display: none; }

/* The BJA logo in sidebar 1 (right-hand side). */
#bja {
background-color:#FFFFFF;
border:1px solid #DDDDDD;
float:left;
margin:5px;
padding:10px;
}

img.pictures_left {
border:3px double #9AA6ED;
float:left;
margin:0 10px 0 0;
position:relative;
}

/* Get rid of padding in sidebar 1 */
.sidebar ul.sidebar_list {
padding: 0;
margin: 0;
}

/* Get rid of vertical line on content box, CSS: background: transparent url(images/dot-ddd.gif) repeat-y scroll 51.4em 0; */
#content_box {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background: none;
}
/* Got rid horizontal line under the header, CSS: border-bottom: 3px double #DDDDDD; */ 
#header {
border-bottom: none;
clear:both;
}



/* DoubleMule Clickable Header v. 1.0 */

.custom #header
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #logo a
{
display:block;
width:765px;
height:110px;
background:url(http://www.kafranwholesalejewellery.co.uk/wp-content/themes/thesis_151/custom/images/wholesale-jewellery.gif) center no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #tagline
{
color:#000000;
text-indent: -9999px;
} 



/* Custom styling - Grey border */

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
} 




/* Rid of RSS subscribe on nav bar 
#tabs .rss {
display: none;
}*/


/* Nav 

ul#tabs {width: 765px;margin:0 auto;padding:0;}
ul#tabs li {padding:0;list-style:none;margin:0 0 0 11.7em;}
ul#tabs li a {text-decoration:none;display:block;padding:0.3em 0.5em;border-top:0.4em solid silver;border-bottom:0.4em solid silver;color:#003;background:#fff;width:8em;text-align:center;}
ul#tabs li a:hover {border-top:0.4em solid #900;border-bottom:0.4em solid #900;color:#000;}*/

/*#tabs {
border: 1px solid red;
}*/

/*#tabs {
border: none;
}*/

.home h2 {
display: none;
}

.products h1 {
display: none;
}

.contact h1 {
display: none;
}

.about h1 {
display: none;
}