/*
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/
*/

/* Eliminates Borders - Except These
.custom .post, .custom .teasers_box, 
.custom #sidebar_1, .custom #sidebar_2,
*/

.custom #header, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}


/* Adds Space Between Tabs in Nav Menu */

.custom .menu .tab {
    margin-right: 1em;
 }


/* NAV BAR */
/* This changes the color to the right of the nav bar. */

.custom .menu a {
	font-weight: bold;
	border:none;
	letter-spacing: normal;
	}
.custom .menu a:hover {
	font-weight: bold;
	}
.custom .menu .current {
	font-weight: bold;
	}
/* ERROR: Moved the .current indicator in the new nav menu to the containing <li> element (instead of the <a> inside the <li>). */

/* Nav Links */

.custom ul.menu li.nav_text {
background-color:transparent;
padding-top: 0.7em;
padding-bottom: 0em;
margin-top: 0em;
border-top:none;
border-bottom:none;
  float:right;
  font-size:11px;
  height: 18px;
  letter-spacing:1px;
  overflow:hidden;
  text-transform: uppercase;
}

.custom ul.menu li.nav_right {
background-color:transparent;
padding-top: 0em;
padding-bottom: 1.5em;
margin-top: 0px;
border-top:none;
border-bottom:none;
  float:right;
  font-size:11px;
  height: 18px;
  letter-spacing:1px;
  overflow:hidden;
  text-transform: uppercase;
}

/* Position the Header Image Link */
div#imglinks {
font-size:10px;
position:relative;
background-color:white;
float:right;
margin-top:40em;
margin-right:1em;
color:#000000;
}

body.custom {
    background: #032584;
    /* background: #44443f; original value */
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

/* This line sets up our clickable background image based on the site title's link */

/* DIY: Adjust the height & width attributes to reflect the actual size of your image */

/* DIY: Change the url of your image to reflect the actual header's location and file name */
.custom #header #logo, .custom #header #tagline a { display: block; height: 415px; width: 960px; background: url('http://www.rockcheetah.com/blog/wp-content/gallery/masthead/rotate.php') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
/* .custom #header #logo, .custom #header #tagline { text-indent: -9999px; } RKC - Commented out this line to keep Title & Tagline */

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. 
.custom #header #tagline { height: 0; } */

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/* This puts the tagline below the header and makes it bold */
.custom #header #tagline {height: 30; text-indent: 0px; font-weight: bold; color: #000000; padding: 5px;}

/* Position the Search Box
.custom #s {font-size:12px; position:relative; float:right; margin-top:17em; background:#EEEEEE; color:#000000; padding:0.2em; width:200px;}
.custom widget thesis_widget_search {background:#fff;}  */


/* 404 Error Formatting */

.custom div#errorpage h2 {
margin-top:0px;
 
}
.custom div#errorpage {
	border:1px dashed #bbbbbb;
	padding:10px;
	float:left;
}
.custom div#errorpage img {
	float:left;
	width:100px;
	padding:10px;
}
.custom div#errorpage p {
	padding:15px 0px;
	margin:0px;
}
.custom div#errorpage #error-inside{
margin-left:130px;
}


/* Formatting for Enhanced Contact Form */

#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 150px;
}
#wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 350px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	margin-left: 250px;
	width: 100px;
}