/*
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/
*/

body.custom {background: #99c3ed url(images/bgtop.png) repeat-x; font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;}

.custom h1, .custom h1 a, .custom h2 a, .custom h3 a, .custom h2, .custom h3 {color: #045db7;}
.custom .box { -moz-box-shadow: 0 0 4px #999; -webkit-box-shadow: 0 0 4px #999; -webkit-transition: all 0.1s ease-out; } 
.custom .box:hover { -moz-box-shadow: 0 0 8px #555; -webkit-box-shadow: 0 0 8px #555; }
.custom #container {margin: 0 auto 20px; width: 960px;}
.custom #page {padding: 0; background: none;}
.custom #header {padding: 0; height: 135px; border: none; position: relative;}
.custom #header-title {position: absolute; height: 100px; width: 317px;}
.custom #header-title a {background: url(images/title.png) no-repeat; height: 100px; width: 317px; display: block; text-indent: -9999px;}
.custom #headsense {position: absolute; height: 60px; width: 468px; top: 20px; left: 480px;}
.custom #navbar {height: 35px; position: absolute; top: 100px; width: 960px;}
.custom .menu {padding-top: 3px;}
.custom .menu, .menu a, .menu li ul {border: none;}
.custom .menu a {padding: 0.5em 2em 0.9em; font-size: 12px;}
.custom .menu a, .menu .current ul a, .menu .current-cat ul a {background: none; color: #FFFFFF;}
.custom .menu a:hover {background: #99c3ed; color: #FFFFFF;}
.custom #search {float: right; margin-right: 10px;}
.custom #s {width: 296px; height: 24px; background: #FFFFFF; font-size: 15px; padding: 3px 0 0 3px; color: #666666; font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif; letter-spacing: -0.5px;}

.custom #content_box {background: #ffffff url(images/bg_content.gif) repeat-x; margin-top: 20px;}
.custom .breadcrumb {margin: 5px 0 0 0;}
.custom #content {width: 760px;}
.custom .post_box {padding-top: 0; margin:3px 20px 20px 0;}
.index .post_box, .blog .post_box {padding-top: 18px;}

.custom #sidebars {width: 200px;}
.custom #sidesense {width: 160px; height: 600px; margin: 0 auto; margin-top: 28px;}
.custom #column_wrap {background: none;}

.custom #footer {padding: 0; border: none; height: 100px; background: #045db7;}
.custom #footer a {color: #ff0000; border-bottom: none;}
.custom #footer p.cright {text-align: center; color: #ffffff; padding-top: 5px;}
.custom #footer p.credit {text-align: center; color: #ffffff;}
.index .breadcrumb {display: none;}

.index #comments, .about #comments, .contact #comments {display: none;}

.custom .adbox {height: 250px; width: 300px; float: right;}
.contact #gforms_confirmation_message {width: 415px;}

.custom .bp {padding: 0 10px;}