/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;body&gt; 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/
*/

/* General Page Styling */
body.custom { background: #7D249A url('images/bg.png') repeat-x; }
.custom #content_area, .custom #content_area .page, .custom #content_area .page #content_box { background:none; }
.custom .post, .custom .post_box, .custom #comments, .custom .no_sidebars .post_box { background: #fff; padding: 20px; margin-top:25px; border: solid #000 2px; border-radius: 25px; -moz-border-radius:25px; }
.custom #content_area, .custom #content_area .page { margin-top:0px; padding-top:0px; }

.custom .prev_next a { color: #fff; }
.custom .prev_next a:hover { text-decoration: underline; }

/* Header Styling */
.custom #header_area { margin:0px; padding:0px; background: #AB31D3;}
.custom #header { margin:0px; padding:0px; width:925px; height:180px; background: #AB31D3 url('images/header.png') center top no-repeat; }
.custom #header a { margin: 60px 0px 0px 150px; }

.custom .menu { color: #ffcc33; background: #000066 !important; border-top: solid #ffcc33 2px; border-bottom: solid #ffcc33 2px; margin-top: 22px; margin-bottom: 15px; text-align:center !important; margin-left:12px; }
.custom .menu li.tab-home {  }
.custom ul.menu li a { color: #ffcc33 !important; background: #000066 !important; font-weight: bold; text-align:center; }
.custom ul.menu li a:hover { text-decoration: underline; }

.custom ul.submenu { border-left: solid #ffcc33 2px; border-right: solid #ffcc33 2px; }
.custom ul.submenu li.item { border-bottom: solid #ffcc33 2px; }

/* Sidebars Styling */
.custom #sidebars h3{ background: #000066; color: #ffcc33; font-weight: bold;  padding-top: 6px; padding-bottom: 6px; border-top: solid 2px; border-bottom: solid 2px; margin-bottom: 15px; text-align:center; width:266px; }
.custom #sidebars a { color: #fff; }
.custom #sidebars a:hover { text-decoration: underline; }

/* Footer */
.custom #footer_area .page { background:none; }
.custom #footer { margin:0 auto; width:870px; background: #000; -moz-border-radius-topright: 25px; -moz-border-radius-topleft: 25px; border-top-right-radius: 25px; border-top-left-radius: 25px; text-align: center; }

/* Home Page Featured Content Slider */
.hfeed #feature_box { padding: 15px 0px; background: #FFFFFF; }

/* author comments */
dl#comment_list .bypostauthor { background: #EFEEE4; }

/* No Sidebar Layout */
.custom .no_sidebars #content h2, .custom .no_sidebars #content h1 { width:600px; margin: 0px auto; text-align:center; }
.custom .no_sidebars #content p { margin: 10px 50px 15px 50px; }
.custom .no_sidebars #content table { margin:0px auto; width:600px; }
.custom #content table { margin:0px auto; margin-top:10px; margin-bottom:10px; }
