/*
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/
*/

body.custom { background: #63cdf5 url('http://fluffyphones.com/images/fluffy-background.jpg') 0% 0 no-repeat; background-attachment:fixed}

.custom .format_text p.alert {
background: #ffffa0 url('http://eliteeternity.com/images/star.png') center no-repeat;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}

.custom #page { background: #fff; }
	
.custom #container {
    margin-top: 1.5em;
    margin-bottom: 3em;
    padding: 0em;
    border: 3px solid #f4f4f4;
}

.custom #header {
padding-bottom: 10px;
padding-top: 10px;
}

.custom #header {border-bottom:0;}

h2 a:hover { color: #0589bc; }

/* Sidebar Widget LINK is GROSS GREEN and mousever is GROSS PURPLE with no underline */

.custom .sidebar a { color:#424242;}
.custom .sidebar a:hover { color: #0589bc; text-decoration: none;}

/* Sidebar Widget TITLE Color BLOOD RED */
.custom .sidebar h3 { color: #000000 ;}

.custom .format_text p { margin-bottom: .9em; }

/* Optional to remove space around header image so image sits on divider line */
.custom #header { padding: 0; }

.custom li.widget { margin-bottom: 3px }
.custom li.widget { margin-top: 6px }