/*
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/
*/
    .custom #header { border-bottom:none;
    height:220px;
    padding-top:0;
    padding-bottom:0;
    background:url(http://www.janemorrison.com/wp-content/themes/thesis_151/custom/images/header2-7.jpg)
    center left no-repeat; }

    .custom #header #logo { display:none; }

    .custom #header #tagline { display:none; }

body.custom { background: #526470; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #042D43; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #fff; }

/* The following lines change the nav bar tabs to orange and changes the borders. */
	#tabs li { margin-bottom: -0.1em; background: #F89552; border: 1px solid #ddd; border-left: 0; float: left; }

/* Change the color of the pic captions */
.wp-caption { border-style: solid; border-color: #ddd; background-color: #eee; text-align: center; font-style: italic; font-weight: bold; color: #006999; }

/* page web capture form background 400 pixels middle td */

.capturebg {
	background-image: url(http://www.janemorrison.com/images/5simple-02.jpg);
	background-repeat: repeat-y;
	background-position:center;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-top: 0px;
}
/* small print for privacy policy under name captures etc. */

.privacy {font-size:x-small; color:#666;}

/*---:[layout form inputs ]:---*/
input, textarea { font-family: Georgia, "Times New Roman", Times, serif; }
.format_text input, #commentform input, #commentform textarea { width: 45%; padding: 0.214em; border-width: 0.071em 0.071em 0.071em 0.071em; }
#commentform textarea { width: 96%; }
.format_text input.form_submit, #commentform .form_submit { font-size: 1.143em; padding: 0.313em 0.25em; }
.sidebar .text_input, .sidebar .form_submit { padding: 0.308em; font-family: Georgia, "Times New Roman", Times, serif; }
.sidebar input[type="text"], .sidebar input[type="submit"] { padding: 0.308em; font-family: Georgia, "Times New Roman", Times, serif; }

/*---:[styles form inputs ]:---*/
input, textarea { font-size: 1em; color: #444; background: #eee; border: 1px solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; }
input:focus, textarea:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
	.sidebar .text_input { width: 95%; }
	input.form_submit { font-weight: bold; color: #111; background: url('images/submit-bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; width: auto !important; overflow: visible; }
	#commentform input.form_submit { border-width: 3px; }
	input.form_submit:hover { color: #090; }
	button {
	cursor: pointer;
}
input button {
	cursor: pointer;
}
.mainbox {
	background-image: url(http://www.janemorrison.com/images/main-box1-01.jpg);
	background-color: transparent;
	background-position: top;
	background-repeat: no-repeat;
	padding-left: 25px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-top: 7px;
}

