/*
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/
*/

/* Changing the background color and using a image */

body.custom {
  background-color: #FFFFFF;
  background-image: url(http://alignwithyourdesign.com/wp-content/themes/thesis_16/custom/images/background-02-1000.png);
  background-repeat: repeat;
  }

/* removing the all-caps from the nav menu */

.custom ul.menu li a {
  text-transform: none;
  }

/*Adding an image for the header Site Options Display Options header & tag need to be checked */
.custom #logo a {
background:url('images/banner-004.jpg') no-repeat scroll 0 0;
display:block;
height:175px;
width:870px;
padding: 0 1em .3em 0;
margin: 0 0 0 -2em;
}

/* moving the actual text past the margin to the left */

.custom #header #logo, .custom #header {
text-indent:-9999px;
}


/* Show the tagline but keeping the site name hidden size & font needed to be adjusted in the Design Options*/

.custom #tagline {
  color: #263749;
  text-indent: 40em;
  font-weight: bold;
  font-variant: small-caps;
}


.custom #footer p { display: inline; padding-right: 5em; }

.custom #footer {
	text-align: center;
}

/* changing the default font in the media box for the quotes */

  p.media_quote {
	color: #254142;
    font-family: 'Times New Roman', Times, serif;
    font-size: small;
    font-style: italic
    }

/*Images button to correct size*/

.custom input[type=image] {width:auto;}


