/*
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 #page { background: #fff; }

.custom #header {
	height: 45px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.custom #header_left {
	float: left;
}
.custom #header_right {
	text-align: right;
	float: right;
}

.custom #header_right a {
	text-decoration: none;
	font-size: 2em;
}

.custom #image_box h2 { font-size: 1em; line-height: 1.385em; margin-bottom: 0.615em; letter-spacing: 2px; color: #555; font-size: 1.3em; }

.custom .sidebar { font-size: .85em;}
.custom .sidebar li {line-height: .90em }

/* DOMtabs skin by Michael Martin - http://www.problogdesign.com */
/* DOMtabs script - http://www.onlinetools.org/tools/domtabdata/ */
/* Install guide: http://www.problogdesign.com/general-tips/how-to-install-domtabs-on-wordpress/ */

.domtab {
	padding: 1em;
}

ul.domtabs li.active {background:#FFF;}		/* Active tab background color */
ul.domtabs li:active a {color:#111;}		/* Active tab font color */
ul.domtabs li {background:#efefef;}			/* Inactive tabs background color */
ul.domtabs li a {color:#111; font-size: 1.5em;}				/* Inactive tabs font color */
ul.domtabs li {border-color:#ddd;}			/* Tabs border color */
.domtab div {border:1px solid #ddd;}					/* Box border color - Should be the same as the Active tab background color */
.domtab div {background:#ffffff;}						/* Box background color */

ul.domtabs li {margin-right: 0px;}			/* Space between each tab. Set to 0 for no space. */

div.domtab div {
	display:none;
	}

ul.domtabs {
	list-style:none;
	padding:0;
	margin:0;
	}

ul.domtabs li {
	float:left;
	padding:0 0.5em;
	text-align:center;
	border-style:solid;
	border-width:1px 1px 0 1px;
	}


ul.domtabs li a {
	text-decoration:none;
	}

.domtab div {
	/* border-width:0 1px 1px 1x; */
	padding:0.5em;
	clear:both;
	}

.custom .search_form .text_input {
	width: 175px;
}

/* Post link color */

.custom h2 a,
.custom h2 a:visited,
.custom .content_inner h1,
.custom .entry-title,
.custom .post_box h1 {
	/* color: #e0a70f; Doreo gold */
	color: #257F50;
}

.custom #subalert { background: #ffffa0; border: 1px solid #e5e597; padding: .5em; margin-top: 2em; font-size: .95em;}
.custom #subalert form { margin-left: 20%}
.custom #subalert fieldset {border: none; }
.custom #postrss { border-top: dotted #ddd 1px; margin-top: 2em; padding-top: .5em;}
.custom #postrss a { margin-left: .5em;}

#breadcrumbs  { padding-top: .5em; }

.custom .archive h3 {margin-top: 0;}
.custom .archive ul {font-size: .85em; }
.custom .archivel { float: left; width: 40%;}
.custom .archiver { float: right; width: 60%;}

#s {padding: 2px; margin-top: 2px;}
