/*
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.custom {
/*	background: url("images/bg.png") repeat scroll 0 0 transparent;*/
	border-top: 1em solid #434444;
	border-bottom: 1em solid #434444;
}

.custom .sidebar {
/*	background: url("images/bg.png") repeat scroll 0 0 transparent;*/
}
/*.custom .sidebar h3 {
	border-top-style: solid;
	border-top-width: 2px;
	border-color: #434444;
}*/
.custom #header {
	border-bottom: 0.5em solid #434444;
}
.custom #footer {
/*	background: url("images/bg.png") repeat scroll 0 0 transparent;*/
}

#topcarousel {
/*	background: url("images/bg.png") repeat scroll 0 0 transparent;
	border-left:0.5em solid #434444;
	border-right:0.5em solid #434444;
	border-bottom:0.5em solid #434444;
	background-color: #434444;*/
	background-color: #0C87C4;
	color: #FFFFFF;
}
#topcarousel a {
	color: #FFFFFF;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#topcarousel a:hover {
	color: #111;
}
.carouselu {
	width: 106px;
	padding: 4px;
	padding-top: 5px;
	float: left;
	text-align: center;
	color: #FFFFFF;
	font-size: 1.1em;
}
.carouselu a {
/*	border: 1px solid #ccc;*/
	display: block;
}

.custom .menu {
	padding: 0 11px;
	background-color: #0C87C4;
}
.custom .menu a {
	text-transform: none;
	letter-spacing: 0px;
	font-size: 12px;
}
.custom .menu-home {
	background-color: #0c87c4;
}
/*.custom .menu-item-6682 a {
	background-color: #ff0000;
}*/
/* Live message */
.custom #live-message {
	font-size: 1.5em;
	color: #fff;
	background-color: #ff0000;
	padding: 5px 5px 5px 5px;
}
.custom #live-message a {
	color: #fff;
	background-color: #ff0000;
}
/* End Live message */

.custom h2 {
		color: #0C87C4;
}
.custom h2 a {
	color: #0C87C4;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
}
.custom h2 a:hover {
	color: #000000;
	background: #f1f1f1;
}

.custom .headline_meta span, .headline_meta abbr, .headline_meta {
	font-style: normal;
	letter-spacing: 0px;
	text-transform: none;
}

.custom .published {
	letter-spacing: 0px;
}

.custom .format_text a {
	text-decoration: none;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
}
.custom .format_text a:hover {
	background: #e1e1e1;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
   border-bottom: 1px solid #e0e0e0;

}

.format_text p.note { background: #f5f5f5; border: 1px solid #ddd; }
.format_text p.alert { color: #fff; background: #0C87C4; border: 1px solid #0C87C4; }
.format_text .drop_cap { color: #0C87C4; }

/* Sidebar */
.custom .sidebar h3 {
	letter-spacing: normal;
	font-size: 1.1em;
	line-height: 1.385em;
	margin-bottom: 0.692em;
	background: #f7f7f7 none center top;
	font-variant: normal;
	text-align: left;
	padding: 2px 0 2px 5px;
}
.custom .sidebar a {
	text-decoration: none;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
}
.custom .sidebar a:hover {
/*	color: #000;*/
	background: #e1e1e1;
}

.custom input, textarea {
	font-size: 1em;
	color: #b0b0b0;
	background: #fefefe;
	border: 1px solid #f0f0f0;
	border-right-color: #f0f0f0;
	border-bottom-color: #f0f0f0;
}
.custom input:focus, textarea:focus {
	background: #fefefe;
	border-color: #777;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
}
.custom .sidebar .text_input {
	width: 96.7%;
}
.custom input.form_submit {
	font-weight: bold;
	color: #111;
	background: url('lib/images/submit-bg.gif');
	border: 3px double #999;
	border-top-color: #ccc;
	border-left-color: #ccc;
	cursor: pointer;
	width: auto !important;
	overflow: visible;
}

.custom .dsq-postid {
	font-size: 11px !important;
}
.custom .dsq-widget-thread {
	font-weight: normal;
}

/*
#respond_intro p {
	background-color: #0C87C4;
	color: white;
	padding-left: 0.5em;
	border-top: 0.3em solid #434444;
}
#commentform textarea {
	width: 552px;
}
#commentform input.form_submit {
	background-color: #0C87C4;
	background-image: none;
	color: #fff;
	width: 0;
	padding-right: 12px;
	padding-left: 10px;
	border-left-style: none;
	border-style: none;
	font-weight: normal;
	font-style: normal;
	border: 1px dotted #0c87c4;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	border-top: 0.3em solid #434444;
}
#commentform input.form_submit:hover{
	background-color: #fff;
	background-image: none;
	color: #0C87C4;
	width: 0;
	padding-right: 12px;
	padding-left: 10px;
	border-left-style: none;
	font-weight: normal;
	font-style: normal;
	border: 1px dotted #0c87c4;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	border-top: 0.3em solid #434444;
}
*/
/* Adtaily sidebar */

/* Tag cloud */
.custom .widget_tag_cloud a {
	color: #e0e0e0;
}
.custom .widget_tag_cloud a:hover {
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	color: #0C87C4;
	text-decoration: none;
}

.custom .to_comments span {
	font-size: 11px !important;
}
.custom .to_comments a {
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	text-decoration: none;
	border-style: none none none none;
}
.custom .to_comments a:hover {
	background: #e1e1e1;
	color: #0c87c4;
	text-decoration: none;
	border-style: none none none none;
}

.custom #AdTaily_Widget_Container div {
	background-color: transparent !important;
}
.custom #AdTaily_Widget_Container div {
	border:none !important;
}
.custom .AdTaily_Widget_Logo {
	display:none !important;
}
.custom .AdTaily_Widget_Title {
	display:none !important;
}

/*
.custom .format_text p a.fancybox {
	display: inline-block;
	border-width: 0px 0px 0px 0px;
	border-style: none none none none;
}

/*
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {
	background: #0C87C4;
}*/

/* Clean archives */

.custom .car-container {
	line-height: 26px;
}
.custom .car-yearmonth {
	background: #e1e1e1;
	font-size: 1.5em;
	color: #bf1238;
}