/*
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/
*/

/* venturastamales.com  */

/* menu nav reset */
/* I moved these to the top to reset the nav menu items before anything else */
.custom .menu {
	border-bottom:none; 
	border-left:none;
}
.custom .menu li {
	margin-bottom:0; 
	border:none; 
	background:none;
}
.custom .menu li.current_page_item, .custom .menu li.current-cat {
	padding-bottom:0; 
	background:none;
}
.custom .menu li.rss {}

.custom .menu li a {}

.custom .menu li a:hover {
	text-decoration:none;
}
.custom .menu li.current_page_item a, .custom .menu li.current-cat a {}

/*  end of nav reset */

body.custom {
	background-color: #000000;
	margin: 1em auto;
}

.custom h1,
.custom h1 a {
	color: #3333cc; /* blue */
}

.custom h2,
.custom h2 a {
	color: #009933; /* green */
}

.custom h3,
.custom h3 a {
	color: #de0000; /* red */
}

.custom h4,
.custom h4 a {
	color: #f3cb31; /* yellow */
}


.custom #header_area .page {
	margin: 0 auto;
	padding: 0;
	height: 111px;
}

.custom #header {
	border: none;
	border-bottom: 0;
	height: 111px;
	margin: 0;
	padding: 0;
}

.custom .headR_img {
	text-align: center;
	margin: 0 auto;
}

.custom #content_area .page {
	background-color: #ffffff;
}

.custom .menu {
	border: none;
	background-color: #f3cb31;
	color: #000000;
	font-family:"Comic Sans MS",Georgia,"Times New Roman",Times,serif;
	font-weight: bold;	
	/* margin-top: -10px; */
}

.custom .menu li {
	font-family:"Comic Sans MS",Georgia,"Times New Roman",Times,serif;	
}

.custom .menu a {
	color: #000000;
	border: none;
	background-color: transparent;	
}

.custom .menu a:hover {
	color: #de0000; /* red */
}

.custom .menu .current a,
.custom .menu .current-cat a {
	background-color: transparent;
	border: none;
	color: #009933;
}

.custom .menu .current a:hover,
.custom .menu .current-cat a:hover {
	background-color: transparent;
	color: #009933;
}

.custom .menu li.current_page_item a,
.custom .menu li.current-cat a {
	color: #009933; /* green */
}

.custom .menu li.current_page_item a:hover,
.custom .menu li.current-cat a:hover {
	color: #009933; /* green */
}

.custom #content_box {
	background: url('images/tagline.png') no-repeat top right;
	border-top: 5px solid #000000;
	border-bottom: 5px solid #000000;
}

.custom .sidebar h3 {
	font-size: 1em;
	line-height: 1.2em;
	margin-bottom: 0.4em;
	color: #de0000; /* red */
	font-variant: normal;
	letter-spacing: 1px;
}

.custom #wp-calendar {
	border: 1px solid #cccccc;
	border-collapse: none;
}

.custom li.widget abbr {
	font-size: 1em;
}

.custom li.widget abbr img {
	margin-bottom: -2px;
}

.custom li.widget ul li {
	margin-bottom: .2em;
}

.custom li.widget ul li a {
	color: #000000;
	text-decoration: none;
}

.custom li.widget ul li a:hover {
	color: #3333cc; /* blue */
	text-decoration: none;
}

.custom #comments {
	display: none;
}

.custom .to_comments {
	display: none;
}

.custom #footer_area .page {
	background-color: #ffffff;
}

.custom #footer {
	text-align: left;
	border: none;
	background-color: #f3cb31;
	color: #000000;
}

.custom #footer p {
	font-size: 1.0em;
}

.custom #footer a {
	border-bottom:1px solid #ffffff;
	color: #ffffff;
}

.custom #footer a:hover {
	border-bottom:1px solid #000000;
	color: #000000;
}

