/*
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/
*/

.custom a {color: #004CA5}

.custom h1, .custom h2, .custom h3, .custom h4, .custom h5, .custom h6, .custom h7 
{
font-family: cambria,georgia,times,serif;
line-height: 1.2em;
letter-spacing: -1px;
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 0pt;
margin-left: 0pt;
padding-top: 0pt;
padding-right: 0pt;
padding-bottom: 0pt;
padding-left: 0pt;
text-align: left;
font-weight: normal;
color: #333333;
}
body.custom {
background-image: url(images/body-background.jpg);
background-color: #FFF;
background-repeat: repeat-x;
margin-top: 0px;
}

.custom #page {
	margin-top:40px;
	background-color: #FFF;
}
.custom #page #content_box {
	background-color: #FFF;}
	
.custom .rss-image { float: right; }

.logo-banner {margin-left: -15px; background-repeat: no-repeat; background-image: url(images/pbc-logo-banner.jpg); width: 556px; height: 154px;}

.top-nav { position: relative; list-style: none; z-index: 50; }
.top-nav a { color: white; }
.top-nav a:hover { color: #cbcbcb; }
.top-nav li { position: relative; float: left; }
.top-nav li {margin-right: 20px; padding-right:10px;float: left; border-right: solid white 1px;}
.top-nav li.last {border-right: none; padding-right:0px;}
.top-nav li.tab-shop a {color: yellow;}
.top-nav li.tab-shop a:hover {color: #cbcbcb;}
.custom .top-nav-container { color: white; font-size: 12px; font-family: Arial, sans-serif; margin-top: -35px;}

.top-social {position: relative; list-style: none; z-index: 50; float: right;}
.top-social li {position: relative; float: right; margin-top: -5px; padding-left: 5px;}
.top-social img {border: 1px solid white;}

.custom #content_box {background-color: white; -moz-border-radius: 15px; -webkit-border-radius: 15px;}
.custom #header #tagline { display:none; }


/* Sidebar formatting */
.custom .sidebar h3, .custom .headline_area h2 { font-family: Arial, sans-serif; font-variant: normal; font-size: 16px; 
border-bottom-width: 1px;
border-bottom-style: dotted;
border-bottom-color: #cccccc;
font-size: 14pt;
padding-top: 2pt;
padding-right: 0pt;
padding-bottom: 5px;
padding-left: 25px;
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 10px;
margin-left: 0pt;
background-color: transparent;
background-image: url(images/title-highlight.jpg);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 0pt 4px;
line-height: 1.2em;
}


/* Input Fields */
.custom .sidebar .rss-input { float: left; width:140px; margin-right: 5px; }
.custom .sidebar .rss-submit {height: 25px; font-variant: small-caps; }

.top-banner-ad {
 	display: inline;
    width: 450px; height:170px; float: right; padding-top:10px; position:relative;}
