/*
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: #54a0d4 url('http://www.emilytarver.com/wp-content/uploads/2009/07/bg_starburst.jpg') no-repeat; 
}
<div id="container">
<div id="page">
body.custom {
background: #54a0d4; font-size: 62.5%;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #54a0d4;
    border: 1em solid #54a0d4;
    -moz-border-radius: 2em;
}

.custom #page {
    background: #fff;
    padding-bottom:0em;
    padding-top:0em; 
    padding-left:0em; 
    padding-right:0em;
}

.custom #header { 
margin-top: 0em;
border-bottom: 3.5em solid #6ed0ce; 
clear: both; 
padding-top:0em;
padding-right:0em;
padding-bottom:0em;
padding-left:0em;
background:#dff4f2;
}

/* Left Nav bar */
.custom ul#leftnav {
font-family: Arial,Helvetica,sans-serif,Verdana,Arial,Sans-Serif;
text-transform:uppercase;
margin-top:3.5em;
border-style: none;
background:none;
width: 100%;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
float: left;
}

.custom ul#leftnav li { float: left; padding: 3px 10px 3px 0px; }
.custom ul#leftnav li a { font-size: 1.1em; color: #000000; }
.custom ul#leftnav li a:hover { text-decoration: none; }

/* Right Nav bar */
.custom ul#rightnav {
margin-left:-4em;
margin-top:-6em;
border-style: none;
background:none;
width: 100%;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
float: left;
}

.custom ul#rightnav li { float: right; padding: 3px 10px 3px 0px; }
.custom ul#rightnav li a { font-size: 1em; color: #FFFFFF; }
.custom ul#rightnav li a:hover { text-decoration: none; }

	/* BEGIN ul#tabs DIV */
.custom ul#tabs {
    float: right;
    clear:both;
    border-style:none;
    font-family: Arial,Helvetica,sans-serif,Verdana,Arial,Sans-Serif;
    font-size: 1em;
    padding-top: 0em;
    font-variant:small-caps;
    margin-top:-3em;
    margin-right:5.75em;

}
.custom ul#tabs li a {
    color:#FFFFFF;
    letter-spacing:0.01em;
    padding:0.545em .3em;
    text-transform:smallcaps;
    text-decoration:none;
}
.custom ul#tabs li{
    background:none;
    border-style:none solid none none;
    padding-bottom:0;
    padding-left: 0;
    margin-bottom: .6em;
}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat {
    background:none;
}
.custom ul#tabs li a:hover {
    color:#0099D8; 
    text-style:none;
}
.custom ul#tabs li {
border-style:none none none none;
}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {color:#0099D8}
.custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current-cat a:hover {color:#0099D8}
/* END ul#tabs DIV */

.custom #content{ 
border-right: none; margin-top:0em;
}

.custom #content_box { 
background:none;
width:100%;
padding-left:0em; 
border-top: 2em solid #56c4c2; 
}

.custom .entry-title a{font-weight: bold; color: #000000;}

.custom a { color: #555555; text-decoration: none; }

.custom h1, h2, h3, h6 { color: #000000; font-weight: normal; }

.custom #footer {border-top:none;}


.custom .sidebar ul.sidebar_list {
padding-left:1em;
padding-right:0em;
}

.custom #headline_area {
font-color:#fff;
}

.custom #sidebar_1 {
border-style:none;
}

.custom #feature_box {
padding-left:1.1em;
padding-right:1.1em;
background:none;
border-bottom:none;
}