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

/* add custom header */

.custom #header {background: url(images/headerTagline.jpg) no-repeat; height: 156px; width: auto; padding: 0, margin 0; border: none;}

/* wallpaper and page background */
body.custom {background: url(images/violetFunkyFloralBg.jpg) repeat; }
#content_box {
	margin-top: 1.5em;
	background-image: none;
}


#mainwrapper {
	width: 992px;
	margin: 0 auto;
	background: transparent url(images/dropshadow.png) repeat-y top left;
}

* html #mainwrapper { /* IE6 */
	background-image: none;
}

#container {
	width: 972px;
	margin: 0 auto;
}



#column_wrap {
	width: 750px;
}


#sidebars {
	width: 220px;
}

#content {
	width: 530px;
	margin-top: 0;
}


.home .post_box {
	padding-top: 0;
}

/*---:[ #header styles ]:---*/
#header #logo { display: none; }
	#header #logo a { display: none; }
	#header #logo a:hover { display: none; }
#header #tagline { display: none; }
#header {
	clear: both;
	margin: 0px;
	padding: 0px;
	border-bottom: none;
}

#headerimage a {
	display: block;
	width: 949px;
	height: 230px;
}

#page {
	padding: 0;
	background-color: #fff;
}

/* SUBNAV */

ul#tabs { list-style: none; border: none; background-color: #CEC3CA; font-weight: normal; }

ul#tabs li {
	margin-bottom: 0;
	background-color: #901F0F;
	font-size: 11px;
	color: #fff;
	text-align: center;
	color: #FFFFFF;
}

ul#tabs li.current_page_item, ul#tabs li.current-cat {
	background: #FFFFFF;
	border-bottom: 1px solid #fff;
	padding-bottom: 0;
}

ul#tabs li a, ul#tabs li a:link { color: #fff; font-weight: normal; }

ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; color: #111; border-bottom: none; }

ul#tabs li.current_page_item li a, ul#tabs li.current-cat li a { cursor:pointer; }
		
ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }

ul#tabs li.rss {
	margin-right: 1em;
}


/* custom multimedia box */
.custom .mymmbox {
	width: 200px;
	height: 301px;
	margin: 0 auto 2em auto;
	background-image: url(images/julianne200.gif);
}

/* sidebars */
#sidebar_1 ul, #sidebar_2 ul {
background-color: #eeefe7;
}

#sidebar_1 ul.sidebar_list {
	padding-left: 0;
	padding-right: 0;
	margin-left: 1em;
}

#sidebar_1 ul.sidebar_list li {
	padding-left: 1em;
	padding-right: 1em;
	width: auto;
}

#sidebar_1 h3, #sidebar_2 h3 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	color: #403020;
	font-style: normal;
	font-variant:normal;
	letter-spacing: normal;
}

#sidebar_2 ul.sidebar_list {
	margin-right: 1em;
}

#sidebar_2 ul.sidebar_list li#gigpress {
	margin-bottom: 0;
}


/* footer */
#footer {
	border-top: none;
	background-color: #937460;
	color: #fff;
	padding-top: 5px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	text-align:right; 
}

#footer a {
color: #FFF;
text-decoration:underline;
border-bottom: none;
}

/* headline and link styles */

h1 { font-family:Georgia, "Times New Roman", Times, serif; 
font-weight: normal;
font-size: 33px;
line-height:normal; 
color: #604830;
}

h2 {
font-family:Georgia, "Times New Roman", Times, serif; 
font-weight: normal;
font-size: 18px;
line-height: normal;
color: #604830;
}

h3.home {
	border-top: 2px dotted #956385;
	border-right: none;
	border-bottom: none;
	border-left: none;
	padding-top: 10px;
	color: #604830;
}


a:link, a:visited {
font-weight: bold;
text-decoration:none; 
color: #8C5B7B;
}

a:hover {
text-decoration: underline; 
color: #604830;
}

#gigpress abbr {
	cursor: text;
}

div.comments_closed {
	display: none;
	visibility: hidden;
}

/* Hide headline on homepage */

.home div.headline_area {
	display: none;
	visibility: hidden;
}

.home #content .format_text h2 {
	font-size:2.8em;
	line-height:1.286em;
	margin-top: 0;
	padding-top:0;
}
