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




/* ----------------------------------- BACKGROUND IMAGE --------------------------------------- */

body.custom { background: #000000 url('http://www.ihatebikes.net/images/2010_background.png') 50% 0 no-repeat; background-attachment:fixed;
 color:#666666 }


	/*background-image: url('http://www.ihatebikes.net/images/2010_background.png') 50% 0 no-repeat; 
	background-attachment:fixed;
 	background-color: #000000;*/
	/*color:#0caaeb* note to self: www.w3schools.com/css/css_background.asp/ */



/* -------------------------------------CUSTOM HEAD PLACEMENT header ---------------------------------*/
.custom #header {
	position:relative;
	top: -70px;
	margin-left: -30px;
}	

/* ------------------------------------ HEADER AREA BOTTOM PADDING/MARGIN ------------------------*/
.custom #header_area {
	margin-bottom:-70px;
}
	

/* ------------------------------------ NAV MENU, STYLES BACKGROUND COLOR IN MENU, EXTENTS TO FULL WIDTH, VERTICAL PLACEMENT  --------------------------*/
.custom .menu {	
	background-color:#373737;
	margin-left: -10px;
	position:absolute;
	top: 180px;
	width: 971px;
} 


/* ------------------------------------- CUSTOM 2nd additional NAV BAR FOR TOP OF PAGE (& PAGES) -----------------------------*/
/* Top Nav bar */
.custom ul#topnav {
	position: relative;
	top: -8px;
	z-index: 100;
	margin-left: -20px;
	border-style: none;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	background:#000000 none repeat scroll 0 0;
	/*width: 990px;*/
	float: right;
}
.custom ul#topnav li { float: right; padding: 8px 20px 8px 0px; }
.custom ul#topnav li a { font-size: 1.1em; color: #ffffff; }
.custom ul#topnav li a:hover { text-decoration: underline; } 

/* ------------------------------------ CONTENT AREA PLACEMENT -----------------------------------*/
.custom #content_area {	
	margin-top: 0px;
}


/* -------------------------------------FEATURE BOX AND DYNAMIC CONTENT GALLERY STYLING ---------------------------------*/
.custom #feature_box {
	background:none; 
	padding-top:0px;
	margin-left: -12px;
	margin-top: 20px;
}

/* ------------------------------------ TEASERS, STYLE AND PLACE ON ONE LINE ---------------------------------------------------- */
.custom .teaser {
   width: 100%;
   margin-top: 10px;
   /*padding-top: 1em;*/
   border-top: 0;
   border-bottom: 1px dotted #644e63;
   text-align: justify;
}

.custom .teasers_box h2 a {
  color: #094864;
}
.custom .teasers_box h2 a:hover {
  color: #31b2e6;
}


/* ------------------------------------ SIDE BAR style side bar widgets h3 heading -----*/

.custom ul.sidebar_list h3 {
	background-color:#373737;
	padding:0.5em;
}

/* -----------------------------------SIDE BAR PLACEMENT,  move side bar placement up (entire div)  ------------------------*/
.custom #sidebars {
	margin-top: 0px;
}