/*

File:			custom.css



Description:	Custom styles for the Thesis Theme that you define


Use:


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 overwrite *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!








*/








/*To make nav styles disappear and style the new nav*/








.custom #header_area{ display: none; }

















.custom #nav_area ul { border-bottom: none; border-left: none; }

















.custom #nav_area ul li { border-width: 0; margin-bottom: 0; padding-bottom: 0; background: none; }

















.custom #header { border-bottom: 5px; }

















.custom #header_area{ display: none; }

















.custom #nav_area { background: none; padding: 0.5em 0; border-bottom: none; }

















.custom #nav_area ul { border-bottom: none; border-left: none; }

















.custom #nav_area ul li { border-width: 0; margin-bottom: 0; padding-bottom: 0; background: none; }

















.custom #title_area { background: none; padding: 1em 0; border-bottom: none; }

















.custom #header { border-bottom: none; }

















/*Attaching an image/logo in the header*/








.custom #title_area { background: none; padding: 1em 0 0.5em; border-bottom: none; }

















.custom #header { border-bottom: none; height: 189px; padding-top: 0; padding-bottom: 0; background: url(http://justbmwparts.com/images/bmwlogo8.jpg) top right no-repeat; }

















.custom #header #logo { display: none; }








.custom #header #tagline { display: none; }

















html, .custom {








 height: 100%;








}








.custom .wrapper {








 min-height: 100%;








 height: auto !important;








 height: 100%;








 margin: 0 auto -100px; /* the bottom margin is the negative value of the footer's height */








}








.custom #footer_area, .custom .push {








 height: 100px; /* .push must be the same height as .footer */








}