/*File:			custom.cssDescription:	Custom styles for ThesisBASIC 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: #FD5A1E; }	<--- This makes links green	.custom a:hover { color: #FD5A1E; }				<--- This makes links blue when you mouse over themWHY THIS WORKS:By using the "custom" class, you are creating more specific CSS declarations for HTMLelements. CSS styling is applied through rules of specificity, and because declarationsprepended 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 foundin the User's Guide:	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*/body.custom {color: #000000;background: #F2cB70 100% 0 repeat}.custom a, .custom a:visited { color: #0D2479; }	<--- This makes links green	.custom a:hover { color: #FFFFFF;}.custom #container {margin-top: 0em; margin-bottom: 0em; padding: 0.3em; background: #000000; border: 0.4em solid #000000; }custom .format_text .drop_cap {  font-family: Verdana;  font-weight: bold;  font-size: 1.8em;  color: #000000;}.custom .sidebar h3 { color:#000000; } .custom #page {    background: #EEE8D2;}/* This line sets up our clickable background image based on the site title's link *//* DIY: Adjust the height & width attributes to reflect the actual size of your image *//* DIY: Change the filename of your image to reflect the actual header's file name */.custom #header #logo a { display: block; height: 185px; width: 960px; background: url('http://cindyplatt.com/wp-content/themes/thesis/images/logo.jpg') no-repeat; outline: none; }/* This line gets rid of the site title & tagline by casting them out to far left field */.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image *//* This is a bit of a kludge, but it seems to work. */.custom #header #tagline { height: 0; }/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */.custom #header { padding: 0; border: none; }/*    Gravatar styling */.custom #comment_list dt .avatar { margin: 0 1.571em 1.571em 0; float: left; clear: left; }.custom blockquote.left {   width: 200px;   margin: 5px 15px 5px 0;   padding: 5px 0;   border: 3px double #aaa;   border-width: 3px 0;   font-size: 1.4em;   text-align: center;   float: left;}.custom blockquote.right {   width: 200px;   margin: 5px 0 5px 15px;   padding: 5px 0;   border: 3px double #aaa;   border-width: 3px 0;   font-size: 1.4em;   text-align: center;   float: right;}.custom #sidebars {background: #96c5D5;}/*---:[ nav menu styles ]:---*/ul#tabs {background: #96c5D5; list-style: none; border: 1px solid #6E8492; border-width: 0 0 1px 1px;}ul#tabs li { margin-bottom: -0.1em; background: #efefef; border: 1px solid #96c5D5; border-left: 0; float: left; }ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #96c5D5; border-bottom: 0; }ul#tabs li a, ul#tabs li a:visited { display: block; padding: 0.364em 0.636em 0.0 em 0.636em; color: #fff; background: #96c5D5 url('images/bg-tab.gif') 100% 100% no-repeat; text-transform: uppercase;}ul#tabs li a:hover { color: #fff; text-decoration: underline;}ul#tabs li.current_page_item a, ul#tabs li.current-cat a { background: #96c5D5 url('images/bg-tab.gif') 100% 100% no-repeat; color: #fff; text-decoration: none; }ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: underline; }ul#tabs li.rss { size: 16px; padding-right: 10px; background: none; border: none; float: right; }ul#tabs li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }ul#tabs li.rss a.hover {text-decoration:underline;}#content_box {background: none;}#sidebar_1 {border-style:none;}#footer {border:none;}ul#tabs {border:none;}.custom li.widget .callout { padding: 0.846em; line-height: 1.385em; background: #8bc72B; border: 0.077em solid #000000; }