/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body&gt; 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/
*/

/* gradient background */
body {
background:#f2f2f2 url('images/bg-body.jpg') repeat-x;
}

/* custom font choice */
body {
font-family: Helvetica Neue, Arial, Verdana, sans-serif;
}

/* making sidebars fit */
#sidebars {
	width:314px;
}

/* changing sidebar headers */
#sidebars h3 {
	font-variant:normal;
	letter-spacing:normal;
	font-size:16px;
	color:black;
}

/* insert Bloomfire header menu */
body {
margin: 0;
min-width: 970px;
}

#page {
width:970px;
margin:0 auto;
}

#header {
width: 100%;
position: relative;
height: 119px;
padding:8px 0 0;
border: 0;
}

.logo{
	background:url('images/logo.png') no-repeat;
	width: 225px;
	height: 80px;
	text-indent:-9999px;
	margin:0 0 0 9px;
}
.logo a{
	display:block;
	height:100%;
	text-indent:-9999px;
}
.slogan{
	font-size:11px;
	display:block;
	margin:6px 0 0 112px;
}
.slogan a{
color:#000;
}
#nav{
	list-style:none;
	padding:0;
	margin:0;
	position:absolute;
	right:0;
	top:0;
	background:url('images/bg-nav.png') no-repeat;
}
#nav li{
	float:left;
	border-left:1px solid #d1d1d1;
}
#nav li:first-child{border-left:none;}
#nav a{
	float:left;
	padding:11px 21px;
	color:#393833;
	text-decoration:none;
	line-height:14px;
	font-size:12px;
}
#nav span{cursor:pointer;}
#nav a:hover {
	color:#00abcf;
}
#nav .active a, #nav .active a:hover{
text-decoration:none; 
color:#00abcf;
}
#nav .link-unique{
	background:url('images/bg-nav-active.gif') repeat-x;
	color:#f2f2f2;
}

#nav .link-unique:hover span{
	color:#f2f2f2;
	text-decoration:underline;
}
#nav .link-twitter,
#nav .link-facebook{
	background:url('images/link-twitter.png') no-repeat;
	width: 39px;
	height: 36px;
	text-indent:-9999px;
	padding:0;
}
#nav .link-facebook{
	background:url('images/link-facebook.png') no-repeat;
	height: 37px;
}
#nav .link-facebook:hover{background-position:0 -37px;}
#nav .link-twitter:hover{background-position:0 -36px;}

/* color the sidebar */
#content_box {
background-color:#E6E6E6;
}
#content {
background-color:#FFF;
}

/* remove white edge padding around #page */
#page {
padding:0;
}

/* change color of the footer */
#footer {
border: 0;
background-color:#f2f2f2;
}

/* light gray #page borders */
#content_box {
border-style:solid;
border-width:1px;
border-color:#ccc;
}
#content {
border-right-style:solid;
border-width:1px;
border-color:#ccc;
}

/* restyling the MailChimp plugin */

.mc_error_msg { color: red; }
.mc_success_msg { color: green; }
.mc_merge_var{ padding:0; margin:0; }
.mc_input { width:266px; }
#mc_signup_form { width:99%;padding:0; }
.mc_custom_border_hdr {
}
#mc_signup_form { float:left; }
#mc_signup_form .mc_var_label, #mc_signup_form .mc_input { float:left; clear:both; }
#mc_signup_form legend { padding:.5em;margin:0; }
#mc-indicates-required { float:left; clear:both; }
#mc_interests_header { font-weight:bold; clear:both; padding-top:.2em; margin-left: .5em;}
div.mc_interest{ clear:both; margin-left: .5em;}
input.mc_interest { float:left; margin-left: .5em; margin-top: .2em; clear:left; }
label.mc_interest_label {float:left; clear:right; margin-left: .3em; margin-top: .2em;}
.mc_signup_submit { width:100%; text-align:center; float:right; clear:both; padding:.4em;}
#mailchimp-widget{
	padding:0;
margin:0;
}

/* placing the MailChimp subscriber count */

#subscribers {
	float:right;
margin:0px;
padding:0px;
position:absolute;
right:80px;
top:70px;
}
