/*
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: #E2DFDF url('http://www.usedcarmart.co.uk/img/bggreydg.gif');
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0em;
    background: #1F4773;
    border: 1px solid #ccc;
}

//Nav bar colour
.custom .menu {background:#B7C8DF;}

.custom #page {
    background: #fff;
}
/*this removes page lines*/	
.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}
/* Color Sidebar tab Title */

.custom .sidebar h3 {font-weight: bold; color: #FFFFFF; padding: 5px; background: #1F4773;} 

/****************** Varick Design change **************/

/*	.custom  a, .custom a:visited { color: #1F4773; }	
	.custom  a:hover { color: #090; } */

	.custom .sidebar a, .custom .sidebar a:visited { color: #1F4773; }	
	.custom .sidebar a:hover { color: #090; }	
	
/* Adds Logo to page */
.custom #header #logo a { display: block; height: 120px; width: 250px;
background: url(http://www.usedcarmart.co.uk/img/logo.png) no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border:0.2em solid #fff;
height:125px;
padding:5px;
}

/*.custom .headline_area {
	position:absolute;
	top:-1500px;
	left:-1500px;
}
*/


/********************* Varick Design ***********************/

/* ********************* Get rid of comments closed saying ********* */

.custom .comments_closed p {display: none ;}

/* ***************** Menu Backgound ********************/
/* image is in custom image file ****************/
.custom .menu {

	height: 60px; width: 100%; background:transparent url('images/menubg.gif') repeat-x;
	font:bold 12px trebuchet ms,arial,helvetica,sans-serif;
	border: 0px;
}

/* handles all of the tab and borders in the menu */

.custom .menu li{
margin-top: -5px;
padding-right: 5px;
}

.custom .menu li a{
border: 1px solid #000;
border-bottom: none;

}


/* Footer */

#footerbar{
	background-color: #B7C8DF;
	height: 30px; 
	color: #6A727E;
	font:bold 14px trebuchet ms, arial, helvetica, sans-serif;
	border-top: 1px solid #000;
	padding:15px;
	border-bottom: 1px solid #000;
	text-align: center;
	text-transform: uppercase;
}

#tabfoot {
	font:bold 14px trebuchet ms, arial, helvetica, sans-serif;
	text-decoration:none;
	vertical-align:top;
}
 
a.tabfoot {
	background-color: #B7C8DF;
	padding: 5px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	font-family: Trebuchet MS, Helvetica, Arial, Geneva, sans-serif;
	TEXT-TRANSFORM: uppercase;
	color: #666666;
	border-right: 1px dashed !important;
	border-color: #000000;
	border-bottom-width: 0px;
}
 
a.tabfoot, a.tabfoot:visited {
  color: #808080;
}

a.tabfoot:hover {
	background-color: #F8F7CC;
	color: #666666;
	border-bottom: 1px dotted #666666 !important;
}

#termsofuse {
	margin: 0px auto 0px auto; padding: 0px;
	height: 96px; width: 100%;
	background: #4D515D;
    font-family: trebuchet ms, arial, helvetica, sans-serif;
	font-size: 14px;
	color: #CCCCCC !important;
    text-align: center;
	letter-spacing:1px
}

.custom .tabtermsofuse {
	padding: 4px;
	font-family: trebuchet ms, arial, helvetica, sans-serif;
	font-size: 14px;
	color: #CCCCCC !important;
    text-align: center;
	letter-spacing:1px;
	text-decoration: underline;
}

#footer {
	background: #4D515D;
	}
.breadcrumbs { padding: 1em; border-bottom: 1px solid #ddd; font-size: 1.2em; text-transform: uppercase; }

/* Single column teasers*/
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;}

.custom .teasers_box h2 a {
  color: #286080;
}
.custom .teasers_box h2 a:hover {
  color: #C91E24;
}
	.custom a, .custom a:visited { color: #286080; }	
	.custom a:hover { color: #C91E24; }	
	
	/* Post Image Frame Color */
img.wp-post-image { padding:6px;
}
