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

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #105095; }
	
	.custom #container { margin-top: 6em; margin-bottom: 6em; padding: 0.3em; background: #003775; border: 0.4em solid #003675; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/



/* main site header colour */
#header #logo a {color: #003675; }

/* custom sidebar background colour */
/*.custom #sidebars { background-color:#eeeeef; } */
.custom #sidebars { background:#EEEEEE none repeat scroll 0 0; }



/* for post titles */
 .custom .entry-title a { color:#003675; }
 .custom .entry-title a:hover { color:#FF0000;}
/* .custom .entry-title a:visited { color:#666666; } */

/* custom headers in posts */
.custom h1 { color:#003675; }
.custom .format_text h3 { color:#24006B; }

.custom .format_text h4 {
	color:#24006B;
	font-size:1.1em;
	font-weight:normal;
	margin-top: 10px;
	margin-bottom: 8px;
}

/* justify the text in the teasers at the foot of the main page*/
.custom .teaser { text-align: justify; }

/* Amends to the Sidebar h3 Headers */
.custom .sidebar h3 {
font-size:1.2em;
line-height:1.385em;
margin-bottom:0.692em;
color:#003675;
font-variant:small-caps;
letter-spacing:2.4px;
}

/* Amends to the Subscription Widget text */
.custom li.widget p {
color:#2361A1;
line-height:1.45em;
margin-bottom:1.385em;
}

.custom .teaser .teaser_link {
color:#FF0055;
font-size:1.32em;
line-height:1.5em;
}

/* custom comments text */
.custom .format_text .to_comments span {
font-size:1.4em;
}









/* unused at this time */
/* .custom #content h1 a, .custom #content h2 a {font-color: #330099;} */
/* .custom .entry-title a:hover { color:#2361A1; text-decoration: underline;}  */

