/*
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/
*/

/* remove divider line from content/sidebar */
.custom #content_box {background:none;}

/* remove h1 from custom pages */
.about div.headline_area h1 { display: none; }
.archives div.headline_area h1 { display: none; }
.contact div.headline_area h1 { display: none; }

/* remove top margin from h2 on custom pages */
.custom .format_text h2 { margin-top: 0px; }

/* change list style to circle */
.custom .format_text ul { list-style-type: circle; }

/* remove header border */
#header { border: none; }

/* custom header image */
.custom #header #logo a { display: block; height: 123px; width: 927px; background: url('/wp/wp-content/themes/thesis_16/custom/images/TheDailyMickey-Header.jpg') no-repeat center; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0; }
.custom #header { padding: 0; }

/* contact form */
div.wpcf7 textarea { width: 580px; height: 200px; }
div.wpcf7 p { font-variant: small-caps; letter-spacing: 2px; }
div.wpcf7 .submit { font-variant: small-caps; letter-spacing: 2px; }

/* Nav Search */
.custom ul.menu li.nav_right {
  float: right;
  height: 22px;
  font-size: 125%;
  font-weight: normal;
  overflow: hidden;
}

.custom ul.menu li.search {
  color: #444;
  background: #EEE;
  border: 1px solid #AAA;
  border-right-color: #DDD;
  border-bottom-color: #DDD;
  height: 25px;
  margin-bottom: 0;
}

.custom ul.menu li.search input {
  color: #444;
  background: #EEE;
  border: 1px solid #AAA;
  border-right-color: #DDD;
  border-bottom-color: #DDD;
  height: 25px;
  width: 195px;
  padding: 0px 0px 0px 5px;
}

.custom ul.menu li.search input:focus {
  background: #FFF;
  border: 1px solid #777;
  border-right-color: #CCC;
  border-bottom-color: #CCC;
}

/* date icon style */
.post-date {
  float: left;
  display: inline;
  height: 80px;
  width: 80px;
  margin: 0 10px 0 0;
}

