/*
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/
*/



/* =====================================================================


STEP 1 - BACKUP YOUR CUSTOM.CSS FILE BEFORE USING THIS CODE!


STEP 2 - Copy and paste the output below into your custom.css file.


STEP 3 - Refresh your site to behold the power of the Mule herd.


===================================================================== */


/* DoubleMule Thesis 1.6 Custom CSS Robot - version 1.0 */

body.custom
{
background: url('images/bg-ornate.gif') center top repeat scroll;
}

.custom #page {
-moz-border-radius: 20px; -webkit-border-radius: 20px;

}

.custom #content_box
{
background-color: #0026FF !important;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    border: 0.4em solid #FF0000;
-moz-border-radius: 20px; -webkit-border-radius: 20px;
border-radius: 5px ;
border-style:solid;
border-color:red;
}


.custom .menu, .custom .menu a, .custom .menu li ul 
{
text-transform: uppercase;
-moz-border-radius: 5px ;
-webkit-border-radius: 5px ;
border-radius: 5px ;
border-style:solid;
border-color:red;
}



.custom #sidebar_1
{
background: #3A5BFF;
-moz-border-radius: 20px; 
-webkit-border-radius: 20px; 
}

.custom #sidebar_2
{
background: #4F6FFF;
-moz-border-radius: 20px; 
-webkit-border-radius: 20px; 
}

/* WIDGET MODS BY MULES */

.custom .widget h3, .custom .widget h3 a
{
text-transform: capitalize;
font-variant: smallcaps;
letter-spacing: 1px;
-moz-border-radius: 20px; 
-webkit-border-radius: 20px;
padding-top:5px;
padding-bottom:5px;
padding-right:5px;
padding-left:5px;
}

.custom .widget
{
border-bottom:1px solid #f02a0f;
-moz-border-radius: 20px ;
-webkit-border-radius: 20px ;
}

.custom .sidebar h3{
background:url(images/sidebar-bg.gif) center repeat;
font-size:1em;
font-weight:bold;
line-height:1.2em;
color:#fff;
padding-top:10px;
padding-bottom:10px;
padding-right:10px;
padding-left:30px;

}

A:link {text-decoration: underline; color: yellow; font-weight: bold;}
A:visited {text-decoration: underline; color: #e8ed4a; bold;}
A:active {text-decoration: underline overline; color: yellow; font-weight: bold;}
A:hover {text-decoration: underline overline; color: white;}


/* COMMENT MODS BY MULES */

.custom dt.even,
.custom dd.even,
.custom dt.even span,
.custom dd.even span
{
color: #e8ed4a !important;
background: #0026FF !important;
font-weight:bold
}

.custom dt.even a,
.custom dt.even a:visited,
.custom dt.even a:active,
.custom dt.even span a,
.custom dt.even span a:active,
.custom dt.even span a:visited,
.custom dd.even a,
.custom dd.even a:visited,
.custom dd.even a:active,
.custom dd.even span a,
.custom dd.even span a:active,
.custom dd.even span a:visited
{
color: #e8ed4a !important;
background: #0026FF ;
font-weight:bold
}

.custom dt.even a:hover,
.custom dd.even a:hover,
.custom dt.even span a:hover,
.custom dd.even span a:hover
{
color: #caf1a7 !important;
}

.custom dt.odd,
.custom dd.odd,
.custom dt.odd span,
.custom dd.odd span
{
color: #c8c7e1 !important;
background: #392ecc !important;
}

.custom dt.odd a,
.custom dt.odd a:visited,
.custom dt.odd a:active,
.custom dt.odd span a,
.custom dt.odd span a:active,
.custom dt.odd span a:visited,
.custom dd.odd a,
.custom dd.odd a:visited,
.custom dd.odd a:active,
.custom dd.odd span a,
.custom dd.odd span a:active,
.custom dd.odd span a:visited
{
color: #c8c7e1 !important;
background: #392ecc ;
}

.custom dt.odd a:hover,
.custom dd.odd a:hover,
.custom dt.odd span a:hover,
.custom dd.odd span a:hover
{
color: #c7e1d1 !important;
}

.custom dt.comment-author-admin,
.custom dd.comment-author-admin,
.custom dt.comment-author-admin span,
.custom dd.comment-author-admin span
{
color: #a5d3f8 !important;
background: #6331d8 !important;
}

.custom dt.comment-author-admin a,
.custom dt.comment-author-admin a:active,
.custom dt.comment-author-admin a:visited,
.custom dd.comment-author-admin a,
.custom dd.comment-author-admin a:active,
.custom dd.comment-author-admin a:visited
{
color: #a5d3f8 !important;
background: #6331d8 !important;
}

.custom dt.comment-author-admin a:hover,
.custom dd.comment-author-admin a:hover
{
color: #8aea96 !important;
}


/* FOOTER MODS BY MULES */

.custom #footer
{
padding: 5em;
color: #f5faf5;
text-align: left;
background-color: #0026FF;
}

.custom #footer a,
.custom #footer a:link,
.custom #footer a:visited
{
color: #f5faf5;
text-decoration: underline;
border-bottom: none;

}

.custom #footer a:hover
{
color: #a1f7ab;
text-decoration: none;
border-bottom: none;
}
