/*
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/
*/

/* header logo*/
/*
.custom #header #logo a {
display: block;
width:925px;
height: 125px;
background: url('images/header-logo-001.png')
center no-repeat;
outline: none;
}
*/

/* Custom Header */
.custom #header #logo a { 
display: block;
border-bottom:none;
width:1024px;
height:125px;
padding-top:0;
padding-bottom:0;
background: url('images/header-logo-001.png')
center left no-repeat; }

.custom #header #tagline { display:none; }
/* END Custom Header */

body.custom {
    background: #000;
	color:#CCC;
	color:#999;
	color:#666;
}

.custom #container {
    margin-top: 10em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #000;
}


/* SIDEBAR LINK COLORS */
.custom .widget a {
	color: #ff0000;
	color:#666;
	text-decoration:none;
}
.custom .widget a:visited {
	color: #ff0000;
	color:#666;
	text-decoration:none;
}
.custom .widget a:active {
	color: #ff0000;
	color:#666;
	color:#999;
	text-decoration:underline;
}
.custom .widget a:hover {
	color: #ff0000;
	color:#666;
	color:#999;
	text-decoration:none;
}

.custom h1 {
	color: #8bd0ba;
	font-size:18px;
}
.custom h2 {
	color: #8bd0ba;
	font-size:18px;
}
.custom h2 a {color: #8bd0ba; }
.custom h2 a:active {color: #8bd0ba; }
.custom h2 a:visited {color: #8bd0ba; }
.custom h2 a:hover {
	color:#FFF;
}
/* LINKS FO DAT AZZ */
.custom a {
	color: #8bd0ba;
	text-decoration:none;
}
.custom a:visited {
	color: #8bd0ba;
	text-decoration:none
}
.custom a:active {
	color: #8bd0ba;
	text-decoration:underline;
}
.custom a:hover {
	color:#8bd0ba;
	text-decoration:underline;
}

/* get rid of the vertical line between content and sidebars */
.custom #content_box { background: none; }

/* change the horizontal double line under the header */
.custom #header {
	border-bottom: 1px solid;
	border-bottom-color:#666;
}

/* change the horizontal double line over the footer */
.custom #footer { 
	color:#666;
	border-top: 0px solid;
	border-top-color:#666;
}

.custom #footer a:link { 
color: #999999;
border: none;
text-decoration: none;
}
.custom #footer a:visited { 
color: #999999;
border: none;
text-decoration: none;
}
.custom #footer a:hover { 
color: #FFFFFF;
border: none;
text-decoration: none;
}
.custom #footer a:active { 
color: #FFFFFF;
border: none;
text-decoration: none;
}
