/*
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: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;

}


div.col.Footer1 ul.sidebar_list { width:100%; }

div.col.Footer1 ul.sidebar_list li.widget_box { width:30%; padding:0; margin:0 1%; float:left; }
div.col.Footer3 ul.sidebar_list li.widget_box { width:30%; padding:0; margin:0 1%; float:right; }

#footer div.col {

float: left;

margin: 5px 3px 0 0;

padding-left: 10px;

text-align: left;

width: 29em;

}
div.cb {clear:both; height:1px; line-height:1px; font-size:1px;”}


/* custom menu and banner from jdskelly.com */
***********************************************************************************************
/* Banner */
/* ****************************************************************************************** */

.custom #mycustom-banner         
		{   
            display: block;
            padding: 0px;    
    	    margin: 0px;   
    	    height: 110px; 
    	    width: 1100px;  
    	    float: left;    
    	}                  
.custom #header
{
    border-style: none;
    border-width: 0px;
    font-size: 0em;
    padding: 0px;
    margin: 0px;
}



/***********************************************************************************************
/* Menu */
/* ****************************************************************************************** */



.custom ul.menu
{
    border-width: 0px 0 0px 0px;
    background-color: #FF2626; /* #f80606; */

   
}


.custom .menu ul li
{
    border-width: 0 0 0 1px;
   
}

.custom .menu a
{
    border-width: 0 0 0 1px;
    padding-left:13px;
    padding-right:13px;
}

.custom .menu li
{
    margin-bottom: 0px;
}


/* CUSTOM.CSS */

.custom #footer {
border-top:2em solid #9c9c9c;
background:url("http://www.debtsecrets.co.uk/wp-content/themes/thesis_16/lib/images/footer-bg.jpg") repeat-x scroll; 
/*background:  #191A1F; */ /*#444343;*/ /* #eeeeee;*/ 
padding:0em;
text-align:center;
color: #ffffff;

}
.custom #footer a{
border-bottom: 1px none #cccccc;
color: #ffffff;
/*background: #191A1F; */
left top #000000;
clear:both;
margin:20px 0 10px;
padding-top:0;


}


/* footer widget area setup */
#footer_setup {
/*background: #191A1F; */ /* #444343;*/
padding:1.5em;
margin-bottom: 25px;
overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
text-align: left;
width: 33.3%;
padding-right: 0px;
color: #2361A1;
display: inline-block;
float: left;
height: 100%;
}

/* widget item headers */
#footer_setup .footer_items h3 {
font-size: 1.5em;
font-weight:normal; /* font-weight: bold; */
text-transform: uppercase;
letter-spacing: 0px;
color:#F3CC19; /*color: #ffffff;*/
padding-bottom: 3px;
border-bottom: 3px none #ffdf00;
margin-bottom: 5px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style:none;
font-size:10px; /*font-size:1.4em; */
line-height:1.5em;
}
#footer_setup .footer_items ul { margin: 1em; padding: 0px; }

p.footerlinks,
p.copyrights {margin:0 20px 0 140px; padding:0; font-size:11px}
p.footerlinks {margin-top:13px;}
p.footerlinks a,
p.copyrights a {color:#5b5b5b;}
p.footerlinks a:hover {color:#ccc}
p.copyrights {color:#5b5b5b}
p.copyrights a {text-decoration:none}
p.copyrights a:hover {text-decoration:underline}