/*
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 {
	background: #fff url('images/bg_page2.png') -50px 0 no-repeat;
}

.custom #container {
	margin: 0 auto 0 auto;
}

.custom #header {
	border: none;
	padding-left: 0;
}

.custom #page {
	background: none;
	padding-bottom: 0;
}

.custom #header #logo {
	display: none;
}

.custom #header #tagline,
.custom #header #logo_img {
	text-align: right;
}

.custom #header #tagline {
	color: #13afe1;
}

.custom .menu {
	float: right;
	border: none;
	border-bottom: 10px solid #eb008c;
	padding-left: 10em;
	margin-right: 1.1em;
/*	margin-bottom: 1.1em; */
}

.custom .menu li,
.custom .menu li a {
	width: auto;
	background: none;
	border: none;
}

.custom .menu li {
	margin-bottom: 0;
	background-color: #fff;
	font-size: 1.3em;
}

.custom .menu li a {
	width: auto;
	border: none;
	border-top: 1px solid #fff;
	padding: 0.5em 0.8em;
	text-transform: none;
	letter-spacing: 1.2px;
}

.custom .menu li.current,
.custom .menu li a:hover {
	color: #13afe1;
	background-color: #fff;
}

.custom .menu li.current a {
	color: #13afe1;
	border-top: 1px solid #eb008c;
}

.custom .menu li a:hover {
	border-top: 1px solid #eb008c;
}

.custom #content {
	background-color: #fff;
}

.custom #content_box {
	clear: both;
	border-top: 1.1em solid #fff;
}

.custom .post_box,
.custom .teasers_box {
	border-bottom: 1px solid #eb008c;
}

.custom h1.entry-title,
.custom .headline_area h1,
.custom .headline_area h1 a,
.custom .headline_area h2,
.custom .headline_area h2 a,
.custom .headline_area h3,
.custom .headline_area h3 a,
.custom .teasers_box h2,
.custom .teasers_box h2 a,
.custom .teasers_box h3,
.custom .teasers_box h3 a {
	color: #13afe1;
}

.custom .format_text iframe {
	float: right;
	margin: 0 0 10px 10px;
}

.custom .format_text .fblike_button iframe {
	float: none;
	margin: 0;
}

.custom .format_text h3 {
	color: #41a62a;
}

.custom .format_text p small,
.custom .format_text h5,
.custom .format_text h6 {
	color: #999;
	font-size: 0.8em;
	text-transform: none;
	margin-bottom: 20px;
}

.custom .bracket {
	display: none;
	visibility: hidden;
	width: 0;
	height: 0;
	overflow: hidden;
}

.custom .prev_next {
	border-top: 1px dotted #bbb;
	margin-left: 1.1em;
	padding-left: 0;
	margin-right: 2.2em;
	padding-right: 0;
}

.custom .comment_author,
.custom .comment_author a {
	color: #13afe1;
}

.custom #respond_intro p {
	color: #eb008c;
}

.custom #commentform input.form_submit {
	border: 1px solid #13afe1;
	color: #13afe1;
}

.custom #commentform input,
.custom #commentform textarea {
	border: 1px solid #13afe1;
	background-color: #fafafa;
}

.custom #commentform input.form_submit:hover {
	color: #41a62a;
}

.custom #sidebar_1 ul li h3 {
	border-top: 1px solid #eb008c;
	border-bottom: 1px solid #eb008c;
	padding: 5px;
}

.custom #sidebar_2 ul li h3 {
	border-top: 1px solid #13afe1;
	border-bottom: 1px solid #13afe1;
	padding: 5px;
}

.custom #footer {
	background: url('images/bg_footer.png') bottom right no-repeat;
	height: 160px;
	border: none;
}

.contactform form label { clear: left; float: left; width: 180px; margin: 2px 0; }
.contactform form input { 
	margin: 2px 0; 
	border: 1px solid #13afe1;
	background-color: #fafafa;
}
.contactform form textarea {
	border: 1px solid #13afe1;
	background-color: #fafafa;
}
.contactform form #contactsubmit { 
	margin: 10px 0; 
	border: 1px solid #13afe1;
	color: #13afe1;
}
.contactform form #contactsubmit:hover { 
	color: #41a62a;
}
.contactform_error { color: #ff0000; }

.custom .flickr-gallery { margin-bottom: 20px; }

.custom .flickr-gallery-next { display: none; }