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

.custom #header_area {
	height:auto!important;
	float:left;
}

.custom #header_area #header {
	float:left;
	height:120px;
	width:100%;
	clear:both;
}

.custom #header_area #header #logo {
	float:right;
	width:100%;
	display:block;
	margin:0;
	padding:0;
}

.custom #header_area #header #logo a {
	background: url(images/banner.png) no-repeat;
	text-indent: -9999px;
	display: block;
	width: 800px;
	height: 120px;
	float:right;
}	

.custom #header #tagline {display:none; height:0;}

.custom ul.menu li.nav_feed {
	text-indent:-9999px;
	height:20px;
	width:20px;
	display:block;	
}

.custom ul.menu li.nav_feed a{
	background:url(images/rss_32.png) no-repeat center center;
	height:20px;
	width:20px;
	display:block;
}

.custom ul.menu li.nav_feed a:hover, 
.custom ul.menu li.nav_feed a:focus {
	background:url(images/rss_32.png) no-repeat center center;
}

.custom #breadcrumb { color: #000; font-size: 1.1em; text-transform: capitalize; margin-bottom:5px; }
.custom #breadcrumb a { color: #000; }
.custom #breadcrumb a:hover { border: 0; }


/* Home Page Widgets */
.custom #home_widget_rows {
	clear:both;
	float:left;
	width:960px;
	margin:0;
	display:block;
	min-height:400px;
	padding:1.3em;
}

.custom #home_widget_rows a {
	text-decoration:underline;
}

.custom #home_widget_rows ul {
	list-style:none;
}

.custom #home_widget_rows li.widget {
	list-style:none;
	margin:0;
	width:auto;
	padding:1em;
}

.custom #home_widget_rows .widget_row {
	float:left;
	padding:0 1.1em;
	margin:15px 0 19px;
	display:block;
}

/* First Row */
.custom #home_widget_rows .homewidget_top	{}

/* Second Row */
.custom #home_widget_rows .homewidget_middle {}

.custom #home_widget_rows .homewidget_middle .middle_left {
	float:left;
	width:600px;
	display:block;
	clear:none;
	}
	
.custom #home_widget_rows .homewidget_middle .middle_right {
	float:left;
	width:300px;
	display:block;
	clear:none;
	}


/* Third Row */
.custom #home_widget_rows .homewidget_bottom {}

.custom #home_widget_rows .homewidget_bottom .bottom_left {
	float:left;
	width:300px;
	display:block;
	clear:none;
	}

.custom #home_widget_rows .homewidget_bottom .bottom_middle {
	float:left;
	width:300px;
	display:block;
	clear:none;
	}
	
.custom #home_widget_rows .homewidget_bottom .bottom_right {
	float:left;
	width:300px;
	display:block;
	clear:none;
	}


/* Sidebar */
.custom #sidebars .widget {
	padding-top:10px;
}

/* Video Blocks */

.custom .post .vidbox {
	width:640px;
	display:blockl
}

.custom #video_row {
	margin:10px 0;
	padding:0 105px;
	float:left;
	display:block;
}

.custom #video_row .single_video {
	float:left;
	margin:0 5px;
	width:182px;
}

.custom #video_row .single_video a.video_thumb {
	display:block;
}

.custom #video_row .single_video a.video_thumb img{
	border:1px solid #000;
}

.custom #video_row .single_video h3 {
	font-size:1.3em;
	text-align:center;
}

.custom #video_row .single_video h3 a{
	color:#000;
}

.custom #video_row .single_video h3 a:hover, 
.custom #video_row .single_video h3 a:focus{
	color:#0E7AAF;
}

.custom #video_row .vidpage_link {
	float:left;
	width:100%;
	display:block;
	margin-top:1em;
}

.custom #video_row .vidpage_link p {
	font-size:1.4em;
	text-align:right;
	padding-right:25px;
}

.custom #video_row .vidpage_link p a {
	color:#000;
}

.custom #video_row .vidpage_link p a:hover, 
.custom #video_row .vidpage_link p a:focus{
	color:#0E7AAF;
}

/* Footer */

.custom #footer p, 
.custom #footer p a {
	color:#fff;
}

.custom #footer p a {
	text-decoration:none;
	border-bottom:none;
}