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

/*
GENERAL
*/

.boxHeading
{
	background: #ddd;
	padding: 5px;
	font-size: 1.4em;
	font-weight: bold;	
}

.boxBorder
{
	border: 4px solid black !important;
}


/*
HEADER
*/

.custom #header_area
{
	background: black;
}

.custom #header_area ul#tabs
{
	border: 0;
}

.custom #header_area ul#tabs li, .custom #header_area ul#tabs li a
{
	background: black;
	border: 0;
	margin: 0;
	padding-bottom: 5px;
	color: #ccc;
}

.custom #header_area .page
{
	width: 95%;
	padding: 0;
	margin-bottom: 20px;
}

/*
BLOG
*/

h1.blogTitle 
{
	font-size: 3em;
	font-weight: bold;
}

h1.blogSlogan 
{
	font-size: 2em;
	margin-bottom: 20px;
}

.custom .post_box
{
	padding: 0;
	margin: 0;
}

.custom .post_box .entry-content, .custom .post_box .entry-title, .custom .post_box .headline_meta
{
	padding: 0 15px;
}


.custom #content_box { background: none; }

.custom .post
{
	border: 4px solid black !important;
	margin-bottom: 10px;
}

.custom #latest_post_title
{
}

	.custom #sidebar_1 li.widget
{
	padding: 10px;
	border: 4px solid black;
}


/*
PROJECTS
*/

.custom #project_page #project_sidebar
{
	width: 25%;
	float: left;
	font-size: 1.4em;
	margin-right: 10px;
}

.custom #project_page #project_sidebar #project_links_inner
{
	padding: 10px;
}

.custom #project_page #project_sidebar #project_links li
{
	list-style: none;
}

.custom #project_page #content
{
	width: 70%;	
	float: right;
}

.custom #project_page #project_about h2
{
	font-size: 2.5em;
}

.custom #project_page #project_about_inner
{
	padding: 15px;
}

.custom #project_page #recent_posts, .custom #project_page #delicious_links
{
	margin-top: 20px;
}

.custom #project_page #recent_posts_inner
{
	padding: 15px;	
}

.custom #project_page #delicious_links_inner
{
	padding: 15px;
}

.custom #project_page #multimedia_box #image_box 
{
	background: none;
	padding: 0;
}

.custom #project_page #multimedia_box #image_box img
{
	width: 100%;
	height: auto;
}




/*
BASIC PAGE
*/

.custom #basic_page #content
{
	width: 100%;
	float: none;
}

/*
HOME PAGE
*/

#homeTitle
{
	margin: 20px;
	padding: 0;
	position: relative;
	border-bottom: 4px solid black;
}

#homeTitle h1 
{
	float: left;
	font-size: 130px;
	padding-right: 30px;
}

#homePhoto a, #homePhoto img
{
	display: block;
}

#homePhoto img
{
	height: 140px;
}

#homeTwitter
{
	position: absolute;
	right: 0;
	top: -40px;
	width: 313px;
	height: 175px;
	background: url(images/bubble.png) no-repeat;
}

#homeTwitter #twitter_div
{
	width: 200px;
	padding-left: 75px;
	padding-top: 40px;
}

#homeTwitter ul, #homeTwitter li
{
	margin: 0;
	padding: 0;
	list-style: none;
}

#homeWrap
{
	padding: 0 50px;
	clear: both;
}

#homeBox1 
{
	margin: 0;
	float: left;
}

#homeBox1 li
{
	margin-bottom: 5px;
}

#homeBox2
{
	margin: 0 auto;
}

#homeBox3
{
	margin: 0;
	float: right;
}

.homeBox
{
	width: 200px;
	min-height: 250px;
	margin: 0;
	padding: 15px;
	font-size: 1.2em;
}

.homeBox h2 
{
	font-size: 2em;
	font-weight: bold;
}

.homeBox li
{
	list-style: none;
	margin: 0;
	padding: 0;
}

.homeBox ul
{
	margin: 0;
	padding: 0;
}



/* MISC */

.sidebar ul.sidebar_list
{
	padding-top: 0;
}