/*
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"&gt;. 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/
*/
/********************* HEADER GRAPHIC *********************************/
/* Constrain the height of the #header so we can relatively position the logo in the tagline div */
.custom #header {height: 284px;}

/* This line sets up our clickable background image based on the site title’s link */
/* Adjust the height & width below to reflect the actual size of your image */
/* Change the filename of your image to reflect the actual header’s file name */
    .custom #header #logo a { display: block; left:20px; top:15px; height: 280px; width: 190px; 
background:url(/images/rockworth-logo-tagline.png) no-repeat; outline: none; z-index:20;}


/* This line gets rid of the site title & tagline by casting them out to the far left */
    .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 */
    /* .custom #header #tagline {position:relative; left:330px; top:-164px; height: 154px; width: 404px; 
     background:url(/wp-content/uploads/2009/12/header-bg.jpg);z-index:10;} */

/* 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: 0px 0px 0px 0px; }

.custom #banner_area1 {float:right; width:630px; height: 264px;}
/***************HIDE COMMENTS CLOSED TEXT **************************/
.custom #container #comments .comments_closed {visibility: hidden;}

/********************* BULLET IMAGES ***********************************/
.custom #container .format_text ulx { list-style-type: none; padding-left: 0; margin-left: 0; }
.custom #container .format_text ul lix { background:url(/wp-content/uploads/2009/12/rockworth-logo-bullet.gif) left top no-repeat;padding-left: 25px; margin-bottom: 15px; border:1px red;}

.custom #container .sidebar_list ulx { list-style-type: none; padding-left: 0; margin-left: 0; }
.custom #container .sidebar_list #recent-posts-2 ul lix { background:url(/wp-content/uploads/2009/12/rockworth-logo-bullet.gif) left top no-repeat;padding-left: 25px; margin-bottom: 15px; border:1px red;}
.custom #container .sidebar_list #sub-page-menu ul lix { background:url(/wp-content/uploads/2009/12/rockworth-logo-bullet.gif) left top no-repeat;padding-left: 25px; margin-bottom: 15px; border:1px red;}

.custom h1 {font-variant:small-caps; size:1.25em; letter-spacing:2px;}
.custom h2 {font-variant:small-caps; size:1.05em; letter-spacing:2px; font-weight:normal;}


.custom #sidebars ul.sidebar_list {margin-top:10px;}
.custom #sidebars h3{ color:#03702F;}

/*.custom #sidebar_1 {background-color:#CFCFCF;}
.custom #content_box, #multimedia_box {background: #fff url(images/fade.gif) repeat-x;}
*/
.custom #content {background-color:#FFFFFF;}

/* body.custom {background: #fff url(images/fade.gif) repeat-x;} 

.custom #container {border-left:3px solid #03702F;border-right:3px solid #03702F;padding:0;}*/

.custom #archive_info p { visibility:hidden; }
.custom .linklove { visibility:hidden; }



/************************** SET MENU BACKGROUND GREY **************************/
.custom .menu {background-color: #EFEFEF;}


/************************** HIDE HOME THEADING TAG **************************/
.custom #post-2 .headline_area h2{visibility: hidden; line-height:0.8em;}

/************************** SET IMAGE BORDER AND CAPTIONS TO WHITE **************************/
.custom .wp-caption {background-color: #fff; border-style:none;}


/************************** SPECIAL TYPOGRAPHY STYLES **************************/
.custom #content .rw-double-quotes {background-color: #efefef; border-style:solid;}
.custom #content .rw-text-callout {background-color: #efefef; margin:10px; padding:10px;}

/************************** HIDE RSS Feed IMAGE IN SIDEBAR **************************/
.custom #sidebars li#rss-3.widget h3 a.rsswidget img {visibility: hidden; width:0px;}
.custom #sidebars li#rss-3.widget h3 a.rsswidget {margin-left:-3px; color:#555;}

.custom #content blockquote {
background-image: url(/wp-content/uploads/2010/02/open-quote.png);
background-repeat: no-repeat;
background-position: left 5px;
padding-left: 60px;
font-style: italic;
border-left:none;
color:#666666;
}

.custom #content blockquote span {
background-image: url(/wp-content/uploads/2010/02/close-quote.png);
background-repeat: no-repeat;
background-position: right bottom;
display: block;
padding-right: 60px;
}

.custom #content blockquote.rw-quote  {
background-image: url(/wp-content/uploads/2010/02/close-single-quote.png);
background-repeat: no-repeat;
background-position: left 5px;
padding-left: 30px;
font-style: italic;
border-left:none;
color:#666666;
}

.custom #content blockquote.rw-quote span {
background-image: url(/wp-content/uploads/2010/02/open-single-quote.png);
background-repeat: no-repeat;
background-position: right bottom;
display: block;
padding-right: 30px;
}

/************************** SPECIAL TABLE CLASS FOR VIDEO PAGE **************************/
.custom .format_text td.video-table{vertical-align:top;}
