/*
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 a {
	color: #C22027;
}

body.custom  {
	background: #000000;
	color: #E8E8E8;
}

.custom #page {
	padding: 0 2.2em;
	position: relative;
}

.custom #content_box, .custom #feature_box, .custom #sidebars, .custom li.widget .widget_box, .custom #sidebar_1, .custom #sidebar_2, .custom .sidebar {
	background: #000000 url(none);
	border: none;
}

.custom #column_wrap {
	background: url(none);
}

.custom #addresses{
	margin-top: 20px;
	text-align: right;
	margin-right: 10px;
}

.custom #addresses p{
	line-height: 1.8em;
}

#addresses h4 {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: normal;
}

.address_1 {
	float: left;
	width: 194px;
}

.custom #header {
	border-bottom: none;
}

.custom #header #logo a {
	display: block;
	height: 68px;
	width: 237px;
	background: url('images/logo.gif') no-repeat;
	outline: none;
	margin-top: 40px;
	margin-bottom: 40px;
	float: left;
	margin-right: 300px;
}

.custom #header #logo, .custom #header #tagline {
	text-indent: -9999px;
}

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

.custom #header {
	padding: 0;
}

.custom #feature_box { padding: 0; }
.custom #feature_box li.widget { margin: 0; }

.custom ul.menu {
	list-style: none;
	border: none;
}

.custom .format_text ul { font-size: 12px; }

.custom ul.menu li {
	margin-bottom: -0.1em;
	border: none;
	border-left: 0;
	float: none;
	color: #FFF;
	background: #000000;
}

.custom ul.menu li.current_page_item, .custom ul.menu li.current-cat {
	padding-bottom: 0.1em;
	color:#FFF;
}

.custom ul.menu li a { display: block; letter-spacing: 1px; text-transform: capitalize; padding-bottom: 5px; padding-top: 0px; padding-left: 0px; font-size: 12px; }

.custom ul.menu li a:hover {
	color: #FFF;
	text-decoration: underline;
}

.custom ul.menu li.current_page_item a, .custom ul.menu li.current-cat a {
	cursor: default;
	color:#FFF;
}

.custom ul.menu li.current_page_item a:hover, .custom ul.menu li.current-cat a:hover {
	text-decoration: none;
}

.custom ul.menu li.rss {
	padding-right: 0;
	background: none;
	border: none;
	color: #000000;
	text-indent: -9999px;
	display: none;
}

.custom ul.menu li.rss a {
	background: url('images/icon-rss.gif') 100% 50% no-repeat;
	color: #000000;
	height: 1px;
}

.custom .headline_area h1, .custom .headline_area h2 {
	font-size: 1em;
	background: #666;
	padding: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.custom .format_text h2 {
	font-size: 12px;
	text-transform: uppercase;
}

.custom .format_text {
}

.custom .format_text p {
	font-size: 12px;
}

.custom .comments_closed {
	text-indent: -9999px;
}

.custom #comments {
	margin-left: 0;
}

.custom #sidebar1, .custom @sidebar1.sidebar, .custom ul.menu {
	border: none;
}
.custom #sidebar_1 h1, .custom #sidebar_1 h2, .custom #sidebar_1 h3, .custom #sidebar_1 h4, .custom #sidebar_1 h5, .custom #sidebar_1 h6, .custom #sidebar_1 p, .custom #sidebar_1 form{
	padding: 0px;
}

.custom .sidebar ul.sidebar_list {
	padding-right: 0;
	padding-left: 0;
}

.custom .sidebar h3 {
	text-transform: uppercase;
	color: #666;
	font-size: 10px;
}

.custom #sidebar_1 form {
	margin-top: 0px;
	margin-bottom: 20px;
}

.first {
	font-style: italic;
	font-weight: bold;
}

.custom form label {
	display: block;
	padding-top: 0px;
        padding-bottom; 0px;
	font-size: 12px;
}

.custom form #submit {
        height: 2em;
        margin-top: 10px;
}

.custom form label, .custom form textarea {
	width: 152px;
}

.custom form input {
	padding: 0;
	height: .9em;
        margin-bottom: 10px;
}

.custom p.to_comments {
	text-indent: -9999px;
	font-size: 1;
	padding: 0;
	margin: 0;
}

.custom #recent-posts ul li {
	font-style: italic;
	margin-right: 30px;
}

.custom .col_1 {
	float: left;
	width: 49%;
}

.custom .col_2 {
	float: right;
	width: 49%;
}

.marginTopNone {
	margin-top: 0px;
}

.custom .breadcrumb {
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: right;
        padding: 10px 20px 0 0;
}

.custom #content.hfeed .breadcrumb {
       visibility: hidden;
       font-size: 1px;
       padding: 0;
}

.custom #footer {
	border-top: 1px solid #666;
        margin-top:40px;
}

.custom #footer p {
	line-height: 15px;
	padding: 5px 0 5px 0;
	font-size: 10px;
}

h2.entry-title a {
	color: #FFF;
}

.custom .published {
	text-align: right;
}

.custom .post_box, .custom #archive_info {
        border: none;
}

.custom .gels {
	width: 400px;
}

.custom .gels-button {
	background: #AD0D01;
	width: 6em;
	border: 1px solid #930A00;
}

.custom .mapp-div {
	margin-bottom: 30px;
}

.custom form input {
	height: 1.571em;
}

.custom .widget .contactform label { color: #FFF; }
