/*
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: #D9BD8A url(images/bg1.png) repeat-x;
}

/* Header Area */

.custom #header_area .page {
	background: transparent;
}

/* Header */

.custom #header {
	padding: 0em;
	border: 0px;
	margin: 0em;

}

.custom #header #logo {
	width: 592px;
}

.custom #header #logo a {
	display:block;
	width: 592px;
	height:169px;
	background:url(images/logo1.png) no-repeat bottom center;
	color:#000000;
	text-indent: -9999px;
	margin: 0em;
	border: 0em;
	padding: 0em;
}

.custom #header #tagline {
	border-bottom: none;
	text-indent: -9999px;
	height: 0px;
}

.custom #header .details {
	float: right;
}

.custom #header .details h3 {
	font-size: 18px;
	margin-bottom: 1em;
}

.custom #header .details p {
	font-size: 14px;
}

.custom #header .details span {
	color: #39094e;
	font-weight: bold;
}

.custom #header .followus {
	font-size: 14px;
	margin-top: 1em;
}

.custom #header .followus img {
	padding-right: 10px;
}


/* Navigation Menu */

.custom .menu {
	background: url(images/menu.png) no-repeat;
	height: 46px;
	padding-left: 3em;
	margin-left: -2px;
	width: 100%;
}

.custom .menu a, .custom .menu .current ul a, .menu .current a:hover, .custom .current-cat ul a {
	background: transparent;
	font-size: 16px;
	text-transform: none;
}

.custom .menu a {
	border-left: 1px solid #333;
}

.custom .menu .current a {
	border-left:1px solid #333333;
}

.custom .menu .current-parent a:hover {
	background: transparent;
}

.custom .menu ul a, .custom .menu .current ul a, .custom .menu ul a:hover, .custom .menu .current ul a:hover, .custom .menu .current-parent ul a:hover {
	background: transparent url(images/menu.png) no-repeat center;
}



/* Content Area */

.custom #content_area .page {
	padding-left: 0;
	padding-right: 0;
/*	background: #FFFFFF url(images/wine-top.jpg) no-repeat scroll 0 0;
	margin-top: -5px; */
	background: transparent;
}

.custom #content_box {
	padding-top: 12em;
	background: #FFFFFF url(images/wine-top.jpg) no-repeat scroll 0 0;
	margin-top: -1em;
	border-left: 1px solid #481958;
	border-right: 1px solid #481958;
	width: 1128px;
}

.custom .post_box {
	padding: 2em;
}


/* Sidebar */

.custom #sidebars {
	width: 30em;
}

/* Join The Club Newsletter Signup Form */

.custom #text-3 {
	background: transparent url(images/newsletterbg.jpg) no-repeat;
	height: 169px;
	width: 262px;
	border: 1px solid #481958;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.custom #text-3 h3, .custom #text-4 h3 {
	color: #340747;
	font-size: 22px;
	text-align: center;
}

.custom #text-3 .textwidget {
	padding: 0 1em;
}

.custom #text-4 {
	background: #a97b40;
	height: 178px;
	width: 262px;
	border: 1px solid #481958;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.custom #text-4 .textwidget {
	padding: 0;
}

.custom #text-4 .wine_month {
	background: transparent url(images/winemonth.png) no-repeat;
	height: 140px;
	width: 262px;
}



/* Footer Area */

.custom #footer_area .page {
	background: transparent;
}

/* .custom #footer_area #footer { */
.custom #pseudo_footer {
	background: transparent url(images/wine-bottom.jpg) no-repeat center;
	padding: 0;
	border-left: 1px solid #481958;
	border-right: 1px solid #481958;
	border-bottom: 1px solid #481958;
	height: 85px;
	margin-bottom: 3em;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	-moz-border-radius-bottomleft: 12px;
	-moz-border-radius-bottomright: 12px;
	-webkit-border-bottom-left-radius: 12px;
	-webkit-border-bottom-right-radius: 12px;
	width: 1128px;
}