/*
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: #5fc7db url('http://gourmetrabbit.com/images/grass_only.png') 
repeat-x center bottom; }

.custom #page { 
background: transparent;
margin-bottom:20px;


}

.custom #content {
background: #b2fa1d; padding: -10px; /* padding-top: 10px; */
}


.custom .post_box { background: #ffffff; padding: 10px; 
border-style: solid; border-color: #b2fa1d; border-width: 10px; margin-left: 0px; margin-right: 0px;}
.custom .teaser, teaser_right { width: 267px; background: #ffffff; padding: 10px; 
border-style: solid; border-color: #b2fa1d; border-width: 10px; margin-top: -20px; margin-bottom: -30px; 
margin-left: 0px; margin-right: 0px;}
.custom .teasers_box {
margin: 0px; width: 614px;	
}

.custom #sidebars, #sidebar_1 {
	margin-top:-22px;
}

.custom #header {
	margin-top:-22px;
margin-bottom:-24px;
&nbsp;}

.custom #sidebar_1 img {
	margin:-3px; margin-right:-3px;
}

.custom #sidebar_1 {
	margin-top:-19px;
}
/* display image on top of category pages, make fonts 1px as they are in the way and make them the colour of the background to remove the dots */

.custom.cat_about #archive_info {background-image: url(http://gourmetrabbit.com/images/shop_about_cropped.jpg); 
height:97px;
font-size: 1px;
color: #a8846e;
}
.custom.cat_about #archive_info h1 {
	color: #a8846e;
}   


.custom.cat_exploring #archive_info {background-image: url(http://gourmetrabbit.com/images/exploring_614x97px.jpg); 
height:97px;
font-size: 1px;
color: #f9c0cf;
}
.custom.cat_exploring #archive_info h1 {
	color: #f9c0cf;
}

.custom.cat_creating #archive_info {background-image: url(http://gourmetrabbit.com/images/creating_614x97px.jpg); 
height:97px;
font-size: 1px;
color: #9fa3a6;
}
.custom.cat_creating #archive_info h1 {
	color: #9fa3a6;
}

.custom.cat_foraging #archive_info {background-image: url(http://gourmetrabbit.com/images/foraging_614x97px.jpg); 
height:97px;
font-size: 1px;
color: #297b3d;
}
.custom.cat_foraging #archive_info h1 {
	color: #297b3d;
} 

.custom.cat_sipping #archive_info {background-image: url(http://gourmetrabbit.com/images/sipping_614x97px.jpg); 
height:97px;
font-size: 1px;
color: #89181a;
}
.custom.cat_sipping #archive_info h1 {
	color: #89181a;
}

.custom.cat_discovering #archive_info {background-image: url(http://gourmetrabbit.com/images/discovering_614x97px.jpg); 
height:97px;
font-size: 1px;
color: #fcb118;
}
.custom.cat_discovering #archive_info h1 {
	color: #fcb118;
}   

.custom.cat_munching #archive_info {background-image: url(http://gourmetrabbit.com/images/munching_614x97px.jpg); 
height:97px;
font-size: 1px;
color: #69acc1;
}
.custom.cat_munching #archive_info h1 {
	color: #69acc1;
}   

/* to reduce the shopping cart graphics to normal size */
.custom .format_text input, #commentform input, #commentform textarea { width:auto; }

.headline_area h2 {display: none; }
