.custom {background: url(images/lightgraybackground.png)}
.custom .page {background: #fff;}
.custom #header_area .page {background: url(images/pbcblogfooter.jpg)}
.custom #header_area .page {margin-top:2em;}
.custom #footer_area .page {margin-bottom:2em;}
.custom #footer_area .page {background: url(images/pbcblogfooter.jpg)}


/* Top Nav bar */
.custom ul#topnav {
font-family:Geneva,Arial,Helvetica,sans-serif,Verdana,Arial,Sans-Serif;
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background-color:#E4E4E4;
background-image: url(/images/dgrey060.jpg); 

width: 100%;
float: left;

}

 
.custom ul#topnav li { margin-left: 10%; margin-right: 0%;}

.custom ul#topnav li { float: left; padding-left: 40px; padding-top: 3px;}

.custom ul#topnav li a { font-size: 1.2em; color: #000000; font-weight: 500}
.custom ul#topnav li a:hover { color: #850400;}

.custom ul#topnav ol { margin-left: 5px}
.custom ul#topnav ol { float: left; padding-left: 3px; padding-top: 3px;}


/* Navigation */
	
	/* Convert Sidebar Widget Titles to Neoclassical */
		
		.custom li.widget h3 {
			color: #111111;
			border-bottom:1px solid #DDDDDD;
			border-top:0 none;
			font-size: 14px;
			letter-spacing:2px;
			line-height:2.1em;
			font-weight: normal;
			margin:0 0 0.9em;
			margin-bottom: 1em;
			padding:0;
			text-transform:uppercase;
			font-variant: normal;
		}
			
		/* Custom Styling for Vertical Nav Menu in Sidebar */
	
		.custom ul#tabs li {
			font-family: Verdana,serif;
			display: block;
			float: none;
			border: none;
			background: none;
			padding: none;
font-size: 12px;
			
		}
		
		.custom ul#tabs, ul#tabs li a, ul#tabs li a:visited {
			font-family: Verdana,serif;
			font-size:  12px;
			padding: 0;
			letter-spacing: 0;
			font-style: normal;
			font-variant:  normal;
			font-weight: bold;
			line-height: 1.5em;
			font-size-adjust: none; 
			color: #850400; 
			text-decoration: none; 
			border: none; 
			text-transform: none;
		
		}
.custom ul#tabs li a:hover { text-decoration: underline; color: #666666; }
		
		/* Hide Surplus Subscription Link */
		ul#tabs li.rss {
		display: none;
}

/*


.custom .headline_area {
margin-bottom: 0em;
}

.custom #header { padding-top: 0em; padding-bottom: 0em; }

/* BEGIN custom welcome_box code for home page */

.custom div.welcome_box {

border: 4px solid #A52A2A;

background-color: #F8F8F8 ;
background-image: url(/images/groupcomputerpbc3.jpg);
background-repeat:no-repeat;
background-position: 100% 0%;  

color: #000;

padding: 1em;

margin-left: 2em;

margin-right: 2em;

margin-top: 2em;

margin-bottom: 0.5em;

padding-bottom: 0em;

}

/* END custom welcome_box code for home page */

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/
*/