/*
File:			custom.css
Description:	Custom styles for 21st AVENUE BICYCLES WORDPRESS SITE

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


/* ----- background image --------*/
body.custom { background: url('../../../../wp_21st/wp-content/uploads/2010/08/21st_background_rome.jpg') 50% 0 repeat-y;
	background-attachment:fixed;
}

/* ----- Styles background color in nav menu, extends to full width, vertical placement ----- */
.custom .menu {	
	background-color:#5176a3;
	width: 907px;
} 


/* ------ padd content area with white to overlap with sweet footer graphic, making it awesome ----- */
.custom #content_area .page {
	padding-bottom:50px;
}	
.custom #content_area a:link, a:visited {
	text-decoration:none
}	

.custom #content_area a:hover, a:active {
	text-decoration:underline;
}	

/*----- style header tags ---------*/

.custom #content h1 {
	font-family: Georgia, "Times New Roman", Times, serif;

}

.custom #content h2 {
	font-family: Georgia, "Times New Roman", Times, serif;

}

.custom #homepage_after_content h3 {
	background: url('../../../../wp_21st/wp-content/uploads/2010/08/h3_background.png') no-repeat;
	color:#FFFFFF;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight: bold;	
	margin: 0px 0px 10px 0px;
	padding: 3px 0px 3px 7px;
	
}	


/* ------- style home page after content ---------*/
.custom #homepage_after_content p {
	font-size:120%;
}	

.custom #homepage_aftercontent1 {
	float: left;
	width: 280px;
	padding-right:15px;
	margin-right:15px;
	text-align:left;
	
}	

.custom #homepage_aftercontent2 {
	float: right;
	width:260px;
	padding-left:1px;
	margin-left:1px;
	
}	

.custom #homepage_aftercontent3 {
	padding: 0 10px;
	margin-left:310px;
	
}	







/* ----- style footer and category list -----*/
.custom #footer_area {
	position: relative;
	top:0px;
	height:900px;
	background-image: url('../../../../wp_21st/wp-content/uploads/2010/08/21st_footer.png');  
	background-repeat: repeat-x;
	padding: 0;
	border-top:0;	
 	text-align: center;
		
}



.custom #footer_area .page {
	background:transparent;
	
}

.custom #footer_area .page p {
	color:#CCCCCC;
	font-size:12px;
	position:relative;
	top:200px;
	
}	
	
.custom #footer {
	text-align:center;
}





.custom #footer a {
	border-bottom: none;

}

.custom #footer p {
	color:#f82812;
}	

.custom #footer a:link, a:visited {
	text-decoration:none
}	
	
.custom #footer a:hover {
	text-decoration: underline;		
	
}