/*
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/
*/

.custom {
    background-image:url(http://www.girardwinery.com/static/images/bg_girard_3.gif); 
    background-repeat:repeat-y;
	margin-left: 0px;
	float:left;
}

#page { position:absolute; left 1px; border:0px dashed red; width:900px;}
#container { margin:0; }
#content_box {background: none; }
#logo { font-size:12px; font-variant:small-caps;}
#header { font-size:1em; font-variant:small-caps;padding:0 0 20px 300px; border-bottom:0px none #FFF; }
#sidebars, #sidebar_1 { border:0px none #FFF; width:210px; text-align:right; }
#tabs { border:0px none; width:918px; margin:0 -15px 0 0; }

.sidebar h3 { font-weight:bold; }

#nav_container {
	width: 955px;
	height: 20px;
	border: 0px dashed red;
    padding-left: 0px;
    margin-top: 74px;
	margin-left: 280px;
}

#nav_container div.nav_item {
	float: left;
	border: 0px dashed red;
	margin-left: 15px;

}

#nav_container div.nav_item a:link {

	float: left;
	border: 0px dashed red;
	margin-left: 10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color: #333333;
	font-variant:small-caps;
        font-weight: bold;

}

#nav_container div.nav_item a:active {
	float: left;
	border: 0px dashed red;
	margin-left: 10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color: #333333;
	font-variant:small-caps;
        font-weight: bold;
}

#nav_container div.nav_item a:visited {
	float: left;
	border: 0px dashed red;
	margin-left: 10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color: #333333;
	font-variant:small-caps;
        font-weight: bold;
}

#nav_container div.nav_item a:hover {
	float: left;
	border: 0px dashed red;
	margin-left: 10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color: #ca8232;
	font-variant:small-caps;
        text-decoration: underline;
        font-weight: bold;
}

#footer { border:0px none; }