/*
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 {
	float: left;
}
#header #logo, #header #tagline {
	padding-left:110px;
	margin-top: #40px;
}
#header #logo {
	margin-top: 40px;
}
.menu {
	padding-right:15px;
}
#content_box {
	background: #DDEDF2 !important;
}
#content {
	background: #FFF !important;
}
#vslider {
	margin: 10px 0 0 0;
	padding: 0px;
	height:  245px;
}
#feature_box {
	padding-left: 0px !important;
}
#feature_box h3 {
	font-family: Rockwell,"Arial Black","Arial Bold",Arial,sans-serif;
	font-size: 20px;
	padding: 20px 0 0 12px;
	color: #00718F;
}
#front_widgets {
	padding-top: 5px;
	height: 190px;
	margin: 0px auto;
}
.front_services2 {
	width: 340px;
	height: 170px;
	background: #6f1e1e;
	-moz-border-radius: .5em;
	-webkit-border-radius: 0.5em;
	float: left;
	height:190px;
	margin:9px;
}
.front_services {
	width: 340px;
	height: 170px;
	background: #6f1e1e;
	-moz-border-radius: .5em;
	-webkit-border-radius: 0.5em;
	float: left;
	padding: 0px;
	margin: 12px;
}
.front_services ul, .front_services2 ul {
	list-style: none;
	font-size: 14px;
	padding: 10px 0 0 20px;
}
.front_services li, .front_services2 li {
	padding: 3px 0px;
}
.front_services a, .front_services2 a {
	color: #fff;
	text-decoration: none;
}
.front_services a:hover, .front_services2 a:hover {
	border-bottom: 1px #fff dotted;
}
#sidebar_1 {
	background: #ddedf2;
}
#sidebar_1 .sidebar_list a {
	color: #222 !important;
}
#sidebar_1 .sidebar_list a:hover {
	text-decoration: none;
	border-bottom: 1px #222 dotted;
}
.sidebar h3 {
	font-size: 1.5em !important;
}
#header {
	border: none !important;
	background: #faf2d9 url(images/rl-associates-banner.png) top left no-repeat;
	height: 100px;
}
.menu {
	background: #7bb8cd;
}
.menu a, .sidebar h3 {
	letter-spacing: 0px;
}
#sidebar_2 li a.twitter {
	background: url(images/twitter_16.png) top left no-repeat;
	padding-left: 30px;
}
#sidebar_2 li a.facebook {
	background: url(images/facebook_16.png) top left no-repeat;
	padding-left: 30px;
}
#sidebar_2 li a.flickr {
	background: url(images/flickr_16.png) top left no-repeat;
	padding-left: 30px;
}
#sidebar_2 li a.youtube {
	background: url(images/youtube_16.png) top left no-repeat;
	padding-left: 30px;
}
#sidebar_2 li a.stumbleupon {
	background: url(images/stumbleupon_16.png) top left no-repeat;
	padding-left: 30px;
}
.custom #footer_1 {
	text-align:left; color:#fff;
}
.custom #footer_1 ul.sidebar_list li.widget {
	width:31%; margin-right:2%; float:left;
}
.custom #footer_1 ul.sidebar_list li.widget h3 {
	color:#fff;
	font-size: 18px;
}
.custom #footer_1 ul.sidebar_list li.widget a {
	color:#7BB8CD; border-bottom:0;
}
.custom #footer_1 ul.sidebar_list li.widget a:hover {
	border-bottom: 1px #fff dotted;
	color: #fff;
}	
#footer {
	border: none;
	color: #7BB8CD;
	background: #00718F;
}
#footer p {
	font-size:1.1em !important;
}
#footer a {
	color: #fff;
	text-decoration: none;
	border: none !important;
}
#footer a:hover {
	color: #fff;
	border-bottom: 1px dotted #7BB8CD !important;
}