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

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #000000; color: #000000; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #333; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/

/*---:[ nav menu styles ]:---*/
.custom ul#tabs { list-style: none; border: 1px solid #666; border-width: 0 0 1px 1px; }
	ul#tabs li { margin-bottom: -0.1em; background: #bbb; border: 1px solid #666; border-left: 0; float: left; }
	ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
		ul#tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; }
		ul#tabs li a:hover { color: #111; text-decoration: underline; }
		ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }
		ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }
	ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }

.custom #header #tagline {
color:#030561;
font-weight:normal;
}

table#wp-calendar caption {
background:#aaa none repeat scroll 0 0;
font-weight:normal;
letter-spacing:2px;
text-transform:uppercase;
}

table#wp-calendar th {
background:#ccc none repeat scroll 0 0;
border-bottom:1px solid #000000;
text-align:center;
width:14%;
}

img.frame {
background:#aaa none repeat scroll 0 0;
border-color:#000000;
border-style:solid;
}

#header {
border-bottom:3px double #666;
clear:both;
}


#footer {
border-top:3px double #666;
clear:both;
color:#888888;
text-align:right;
}

#commentform {
border-top:1px dotted #666;
}

#respond_intro p {
color:#666;
}

table#wp-calendar td {
color:#000000;
text-align:center;
width:14%;
}

.sidebar h3 {
color:#000000;
font-variant:small-caps;
letter-spacing:2px;
}

.custom #image_box {
background:#aaa none repeat scroll 0 0;
border-bottom:1px solid #000000;
}

.custom #image_box img {
background:#FFFFFF none repeat scroll 0 0;
border-color:#000000;
border-style:solid;
display:block;
}

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

.custom input, textarea {
background:#D5D5D5 none repeat scroll 0 0;
border-color:#000000 #AAAAAA #AAAAAA #000000;
border-style:solid;
border-width:1px;
color:#444444;
font-size:1em;
}

.custom input.form_submit {
background:transparent url(../images/submit-bg.gif) repeat scroll 0 0;
border-color:#999999 #000000 #000000 #999999;
border-style:double;
border-width:3px;
color:#111111;
cursor:pointer;
font-weight:bold;
overflow:visible;
width:auto !important;
}

.custom .format_text a {
text-decoration: none;
}

.custom div.welcome_box {
background:#F8F8FB none repeat scroll 0 0;
border:1px solid #DDDDDD;
padding:1em;
margin-left:1em;
margin-right: 1em;
margin-top: 1em;
margin-bottom: 0.5em;
padding-bottom: 0em;
}

.custom #feature_box {
background:#EEEEEE none repeat scroll 0 0;
border-bottom: none;
}
