/*
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: #cae4ea;
	background: #A03E77;
}*/

.custom div#container {
	width: 1000px;
	padding: 0; margin: 0 auto;
}

.custom div#page {
	width: 1000px;
	padding: 0px;
}

.custom div#header {
	background: url(/wp-content/themes/providence/custom/images/header.jpg) no-repeat;
	width: 1000px;
	height: 300px;
	padding: 0; margin: 0;
	border: none;
}

.custom #header p, .custom #header h1 {
	text-indent: -100000px;
}

.custom ul#tabs {
	border: none;
	background: url(/wp-content/themes/providence/custom/images/menu.jpg) no-repeat;
	width: 940px;
	height: 40px;
	padding: 0 30px;
}

.custom ul#tabs li {
	border: none;
	background: none;
	font-size: 14px;
}

.custom ul#tabs li a:hover {
        color: #A03E77;
        text-decoration:none;
}

.custom ul#tabs li a, .custom ul#tabs li a:visited, .custom ul#tabs li a:active {
	color: #fff;
/*	color: #A03E77;*/
	border: none;
}

.custom ul#tabs li.current_page_item a, .custom #tabs li.current-cat a {
	color: #A03E77;
	/*color: #123456*/
}
/*.custom ul#tabs li.rss a {
	background: url(/wp-content/themes/providence/custom/images/icon-rss.gif) 100% 50% no-repeat;
}*/

.custom div#content_box_top {
	/*width:1000px;*/
	height: 151px;
	background: url(/wp-content/themes/providence/custom/images/content-top.jpg) no-repeat;
	padding: 0 10px;
}
.custom div#content_box {
	background: #F9EAD3 url(/wp-content/themes/providence/custom/images/content-background.jpg) no-repeat;
	/*padding: 0 10px;
	width: 940px;*/
}

.custom div#content {
	padding: 20px 0 0 30px;
	margin: 20px 0 0 20px;
	background: url(/wp-content/themes/providence/custom/images/content-middle.jpg) no-repeat;
	/*width: 940px;*/
}

.custom div#content_box_bottom {
	/*width:1000px;*/
	height: 154px;
	background: url(/wp-content/themes/providence/custom/images/content-bottom.jpg) no-repeat;
	padding: 0 10px;
}

.custom div.post_box {
	padding: 0;
}

/*.custom .headline_area h1, .custom .headline_area h2, .custom #archive_info h1 {
	color: #A03E77;
	background: url(/wp-content/themes/providence-thesis/custom/images/h2bg.png) no-repeat 0px 0px;
	line-height: 30px;
	width: 300px;
	padding: 13px 0 13px 49px;
	margin: 0 0 0 -49px;
}*/

.custom .menu {
	background: #041B45;
}

.custom #footer {
	background: #041B45;
}

.custom #footer a {
	text-decoration: none;
	color: #ffffff;
	border-bottom:none;
}

.custom #footer .left {
	width:50%;
	float:left;
	text-align:left;
}

.custom #footer .right {
	width:50%;
	float:right;
	text-align:right;
}

.custom .menu a {
	text-transform: none;
	}

.custom .wpcf7 input {
	width: auto;
	}

.custom .format_text input, #commentform input, #commentform textarea {
	width: auto;
	}

.custom .sidebar h3 {
	width : auto;
	border-left : 5px solid #041B45;
	background : #F8D76E;
	padding : 5px 0 5px 15px;
	}

/*.custom .sidebar .page_item {
	padding : 0 0 0 15px;
	}*/

.custom div#flash-hdr {
	margin: 0 0 0 250px;
	padding: 5px 0 0 0;
	}

.custom div#shield-hdr {
	padding: 15px 0 0 0;
	}

.custom div#shield-hdr img {
	float: left;
	}

.custom li.widget {
	line-height:1.0em;
}

.custom .sidebar a {
	padding: 0 0 0 15px;
}

.custom .comments_closed p {
	display: none;
}

.custom .widget_calendar_upcoming a {
	padding: 0 0 0 0;
}

.custom input, textarea {
	background:#ffffff none repeat scroll 0 0;
	border-color:#041B45 #DDDDDD #DDDDDD #041B45;
}


