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

/* 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; border-bottom:0; margin-bottom:-2px; }

/*---:[ nav menu styles ]:---*/
.custom ul#tabs { background: #404040; border: none; padding: 0; width: 1100px; text-indent:10px; margin-bottom: 25px;}
    .custom ul#tabs li { background: transparent; border: none; }
    .custom ul#tabs li a {color:#fff; background: transparent; border: none; }
    .custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { background: transparent; border: none; color: #fff;}
    .custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a { background: transparent; border: none; color: #fff;}

/* Single page title color */
.headline_area h1 {
   color:#7aa8b5;
}

/* Multiple post page title colors */

.custom h2 a {
   color: #7aa8b5;
   text-decoration: none;
}
.custom h2 a:visited {
   color: #7aa8b5;
   text-decoration: none;
}
.custom h2 a:hover {
   color: #404040;
   text-decoration: underline;
}
.custom h2 a:active {
   color: #7aa8b5;
   text-decoration: underline;
}
.addBorder {
  /* Thickness, Style, and Color */
  border: 1px solid #7aa8b5;
  margin: 5px;
}

/* widget headline title color */
.custom .sidebar h3 { background: #79a9b7; color: #fff; text-indent:5px; text-transform:uppercase; }

/* Custom Search Box */
input#s {width : 240px;margin : 0 2px 5px 0;font-size : 12px;}
.custom .sidebar h2 { color: #79a9b7; font-family:"Franklin Gothic Medium"; font-size : 20px; }

/* centering blog content */
#container {width:110em;}
#sidebars {float:right; display:inline; margin-right:50px;}
#content_box {margin:0 auto; width:auto; background: transparent url(../images/dot-ddd.png) repeat-y scroll 60% 0;}
#content {float:left; margin-left:15px; display:inline; width:60em;}

/* contact form 7 submit button */
.wpcf7-submit {
	background-color:#79a9b7;
	color:#fff;
	cursor:pointer;
	font-weight:bold;
	text-transform:uppercase;
	width:auto;
}