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

/*---:[ start background ]:---*/
body.custom { background: #69c; }
		.custom .page { background: #fff; }
/*---:[ end background ]:---*/

/*--- start footer ---*/
.custom #footer_area {border-top:1px solid #69c;}
	.custom #footer {border-top:0;}
.custom #footer_1 {text-align:left; color:#333;}
	.custom #footer_1 ul.sidebar_list li.widget {width:30%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#222;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}
/*--- end footer ---*/

/*---:[ start sidebar ]:---*/
.custom .sidebar h3 {
background-color:#dddddd;
color:#369;
font-weight:bold;
padding:4px;}
/*---:[ end sidebar ]:---*/

/*--- [ start headline ] ---*/
.custom h2 a {color:#336699;}
.custom h2 a:hover { color: #2361a1;text-decoration: underline; }
/*--- [ end headline ] ---*/

/*--- GOOGLE CSE Search Box start ---*/
.custom form.cse-search-box {
	float:right; /*Moves search box to the right*/
	margin-top:2.5em; 
	font-size:1.3em;
	padding:0.5em;
}
/*--- GOOGLE CSE Search Box end ---*/

/*--- Sidebar LI items ---*/
ul li.widget ul li { 
	padding: 1px 0 1px 0;
	border-bottom: 1px solid #dddddd; 
	}
ul li.widget ul li ul li { border-bottom: none; }
ul li.widget ul li a {
  display: block;
	padding: 0 0 0 14px;
	background: url(/rfpwordpress/wp-content/themes/thesis_151/custom/images/custom_images/list-item.gif) no-repeat 0 .45em;
	}
ul li.widget ul li a:hover { background: url(/rfpwordpress/wp-content/themes/thesis_151/custom/images/custom_images/list-item-hover2.gif) no-repeat 0 .45em; }
/*--- Sidebar LI items ---*/

/*--- Author Comment BG ---*/
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}
/*--- Author Comment BG ---*/

/* My own home page 
.custom .sitemap h3 {margin-top: 0;}
.custom .sitemap ul {font-size: .90em; }
.custom .sitemapl { float: left; width: 40%;}
.custom .sitemapr { float: right; width: 60%;} */

/*--- Buttons ---*/
.button {
    border: none;
    background: url('/rfpwordpress/wp-content/themes/thesis_151/custom/images/up.png') no-repeat top left;
    padding: 2px 8px;
    text-align:left;
}
.button:hover {
    border: none;
    background: url('/rfpwordpress/wp-content/themes/thesis_151/custom/images/down.png') no-repeat top left;
    padding: 2px 8px;
}
/*--- Buttons ---*/
/*--- Top Nav Menu ---*/
.custom ul#tabs {border-bottom:-0.1em; border-left:none;background:#dae7ee;}
	.custom ul#tabs li {margin-bottom:0; border:none; background:none;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:#2361a1;}
/*--- Top Nav Menu ---*/