/*
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/
*/

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #9BBF9D; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #eee; border: 0.4em solid #eee; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/

/*---:[ Set 2: change link colors ]:---*/

.custom a, .custom a:visited { color: #3A7F2C; }
.custom a:hover { color: #862593; text-decoration: underline; }

.custom #content a{color:#3A7F2C !important; text-decoration: none}
.custom #content a:hover{color:#862593 !important; text-decoration: underline }


/*---:[ end Set 2 ]:---*/

/*---:[ Set 3: new header image ]:---*/

.custom #header { border-bottom:none;
height:110px;
width:810px;
padding-top:0;
padding-bottom:5px;
margin:0px; }

/*---:[ end Set 3 ]:---*/

/*---:[ Set 4: navigation bar ]:---*/

.custom .menu { width: auto; border: none; height: 32px; background: #7da46d url('http://blog.careerchangepathways.com/wp-content/themes/thesis_16/custom/images/nav-background.jpg') no-repeat; }

/*---:[ end Set 4 ]:---*/

/*---:[ Set 5: navigation tabs ]:---*/

.custom .menu a {
border:none;
background-color: transparent;
text-decoration: none;
color:#ffffff;
line-height: 1.5em;
}

.custom .menu a:hover {
background-color: #ffffff;
text-decoration: none;
color:#689171;
}

.custom .menu .current {
font-weight: bold;
color: #689171;
}

.custom.menu .current-cat {
font-weight: bold;
color: #689171;
}

/*---:[ end Set 5 ]:---*/

/*---:[ Set 6: sidebars and text boxes ]:---*/

.custom #sidebars {
border-style: solid;
border-color: #bfbfbf;
}

.custom #sidebar_1 {
border-style: solid;
border-color: #bfbfbf;
}

.custom #sidebar_2.sidebar {
margin-left: 2px;
}

.custom .sidebar .text_input {
width: 100%;
}

.custom #element.style {
background-color: #E6F2D1 !important;
}

.custom .sidebar input[type="submit"] {
background-color: #E6F2D1 !important;
color: #343434;
border-top: none;
border-left: none;
border-right: solid #7F7F7F 2px;
border-bottom: solid #7F7F7F 2px;
width:92%;
}

.custom .sidebar input[type="text"] {
background-color: #E6F2D1 !important;
color: #343434;
border-top: solid #7F7F7F 1px;
border-left: solid #7F7F7F 1px;
border-right: none;
border-bottom: none;
width:92%;
}

.custom #mc_signup_container {
padding-top: 25px;
padding-bottom: 30px;
padding-left: 0px;
line-height: 1.5em;
}

/*---:[ end Set 6 ]:---*/

/*---:[ Set 7: headers ]:---*/

.custom .headline_area h1 {
color: #1D5316;
line-height: 1em;
}

.custom .sidebar h3 {
color: #343434;
letter-spacing: 1px;
}

.custom .sidebar h4 {
font-weight: normal;
color: #343434;
font-size: 112%;
padding-bottom: 3px;
}

.custom .format_text h2 {
margin: 0;
font-size: 17px;
font-weight: bold;
padding-bottom: 9px;
letter-spacing: .2px;
color: #1D5316;
}

.custom .format_text h3 {
font-weight: bold;
padding-bottom: 9px;
}

/*---:[ end Set 7 ]:---*/

/*---:[ Set 8: text color ]:---*/

.custom #content {
color: #343434;
}

/*---:[ end Set 8 ]:---*/


/*---:[ Set 9: archives plugin ]:---*/

.custom .car-monthlisting {
	padding-bottom: 10px;
}

.custom .car-yearmonth span {
	display: none;
}

.custom .car-monthlisting li span {
display: none;
}

/*---:[ end Set 9 ]:---*/

/*---:[ Set 10: search box in navigation ]:---*/

.custom ul.menu li.nav_right {
float:right;
font-size:11.5px;
height: 20px;
overflow:hidden;
}

.custom ul.menu li.search {
background-color: #689171;
border-bottom:none;
height:30px;
margin-bottom:0;
}

.custom ul.menu li.search input {
background-color: #FFF;
border-left:1px solid #565656;
border-top:1px solid #565656;
color:#565656;
font-size:11px;
height:15px;
padding:2px;
margin-top:4.5px;
margin-right:5px;
width:205px;
}

/*---:[ end Set 10 ]:---*/
