/*
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/
*/
body.custom { background: url(images/bg.jpg) center top repeat-x fixed #79756C;
			font-family: "Lucida Grande", Arial, Helvetica, Sans-Serif;}

	.custom #container { margin-top: 2em; margin-bottom: 2em;
					width: 950px;}

		.custom #page { background:url(images/logo.png) top center no-repeat;
						padding-top: 195px;
						width: 950px;
						}
		
						
.custom #header {
	display:none;
}

.custom #tabs {
	background: #211919 url(images/bg-nav.png) center top no-repeat;
	margin-top: 0;
	height: 57px;
	padding-top: 20px;
	width: 950px;
	z-index:10;
	font-family:"Courier New", Courier, monospace;
	border:none;
	font-size: 14px;
	}
	.custom #tabs ul{
		float: left;
		list-style-type: none;
		padding: 8px 0 8px 10px;
		margin: 0 25px 0 25px;
		width: 900px;
		border-top: 1px solid #3C3934;
		border-bottom: 1px solid #3C3934;
		font-size: 16px;
		line-height: 18px;
		}
	.custom #tabs li{
			float: left;
			text-transform: uppercase;
			border: none;
			font-family:"Courier New", Courier, monospace;
			background:none; 
			}
			.custom ul#tabs li a {
				float: left;
				overflow: hidden;
				color: #ccc;
				margin: 0 15px 0 15px;
				padding: 13px 4px;
				text-decoration:none;
				}
			.custom ul#tabs li a:hover{
				padding: 8px 4px;
				color: #CC3;
				border-top: 5px solid #3C3934;
		        border-bottom: 5px solid #3C3934;
				text-decoration:none;
				}
				
.custom #content_box {
	background: #211919;
	color: #ffffff;
	padding-bottom:20px;
}

.custom #content_box .no_sidebars {
	background: #211919;
	color: #fff;
}

.custom #content {
	width: 630px;
	padding: 0 10px;
}

.custom .top {
	border: none;
}

.custom h2 a {
	color: #fff;
}

.custom h2 a:hover {
	color: #0052A4;
}

.custom .widget {
	background-color:#333;
	font-size:1em;
}
	.custom .sidebar h3 {
		font-family:"Courier New", Courier, monospace;
		font-size:26px;
		background: url(images/sidebar_title_bg.gif) center;
		color: #fff;
		padding: 3px 5px;
		margin-bottom:5px;
	}
	
	.custom li.widget ul {
		padding: 5px 10px;
	}
	
.custom #multimedia_box {
	display:none;
}

.custom #comments {
	display:none;
}

.custom #footer {
	color: #fff;
	border:none;
}
    .custom #footer a {
        color: #fff;
        text-decoration: underline;
        border: none;
   }
.custom .format_text h2, .format_text h3 {
	border-bottom: #474747 dashed 1px;
	padding-bottom: 3px;
}

.custom .wpcf7-list-item {
	clear: both;
}

.custom .format_text input[type='checkbox'] {
	width: 10%;
}

.custom .entry-content {
	padding-bottom:20px;
}

.custom .photo-gallery {
   margin: 10px 0;
   padding: 10px;
   background-color: #333;
}

    .custom .photo-gallery img {
         margin: 0 5px;
   }

.custom #twitter {
     background: url(/wp-content/uploads/2009/10/twitter-bg.jpg) top left no-repeat;
     padding: 20px 10px 10px 100px;
}
   .custom #twitter h2 {
        font-family:"Courier New", Courier, monospace;
        margin: 0 0 10px 0;
        font-size: 20px;
        font-variant: small-caps;
         }
     .custom #twitter a {
         font-weight: bold;
         color: #FFFF33;
         line-height: 180%;
         background-color: #000;
         padding: 3px;
          }
