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

body.custom {
  background: #CCD3E3 url('images/slash.png');
}


.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #D7D7D7; border: 0.25em solid #D7D7D7; }

.custom #page { padding: 2em 1.9em; background: #fff; border: 0.1em solid #fff; border-top: 0; }



/* LINK COLOURS */
.custom a, .custom a:visited { color: #639fc3; text-decoration: none;}
.custom a:hover { color: #C9758D; text-decoration:none;}

/*ENTRY*/
.custom h2.entry-title{color: #5AA8D6; font-size:2.2em;/*text-shadow:#eee 2px 2px 2px*/}
.custom h1.entry-title{color: #5AA8D6; text-shadow:#ddd 1px 1px 1px; }
.custom h2 a,.custom h2 a:visited{display:block}
.custom .format_text{word-wrap:break-word}
.custom .format_text h3,.custom .format_text h4{font-weight:bold}
.custom .format_text .drop_cap{background:#194FDB url(images/entry-title.png) repeat-x center top;color:#fff;font-family:"Old London","Cloister Black",Georgia,serif;font-size:3em;margin-right:.1em;padding:.1em .2em;text-shadow:#111 0 -1px 0;-moz-border-radius:.1em;-webkit-border-radius:.1em}
.custom .format_text p,.custom .format_teaser p,.custom .format_text li{font-family:;text-align:justify}
.custom .format_text em,.custom .widget_sideblog em{font-family:Garamond,"Goudy Old Style","Hoefler Text","Palatino,Palatino Linotype","Times New Roman",Times,serif;font-size:110%}
.custom .entry-content img{background:#fff;border-color:#ddd;border-style:solid;border-width:1px 1px 2px;max-width:100%;padding:.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;-webkit-transform:scale(1);-webkit-transform:rotate(0deg);-webkit-transition-duration:1s}
.custom .entry-content img:hover{-webkit-transform:scale(1.5);/*-webkit-transform:rotate(-5deg);*/-webkit-transition-duration:1s}
.custom .format_text ul{list-style-image:url(images/vinger.gif);padding-left:.5em}
.custom abbr[title],.custom acronym[title]{border-bottom:1px dotted ddd;cursor:help;font-size:1em}


/* SIDEBAR HEADINGS & WIDGETS */
.custom .sidebar h3 { border-bottom:2px dotted #ddd; color: #595e61; border-top: 1px solid #E5E0D5; border-bottom: 1px dotted #E5E0D5; font-size:0.845em; font-weight:bold; line-height: 1.45455em; padding: 0.63636em 0.45455em 0.54545em 0.45455em; text-transform:uppercase;}



.custom li.widget .callout { padding: 0.846em; line-height: 1.385em; background: #f7d3df; border: 0.077em solid #d59aae; }

/* NAV BAR COLOURS & BORDERS */
.custom ul#tabs { border-bottom: 0; }
	.custom ul#tabs li { background: #D7D7D7; margin-bottom: 0; border-bottom: 0; }
	.custom ul#tabs li.rss { float: left; border-style: solid; border-color: #ddd; border-width: 1px 1px 0 0; }
	.custom ul#tabs li.rss a { background-position: 95% 50%; padding-right: 24px; }
	.custom ul#tabs li.current_page_item { background: #fff; padding-bottom: 0; }


/*change font height and line spacing*/
/*.custom .format_text { font-size: 1.5em; line-height: 1.5em;}

/*space between paragraphs*/
.custom .format_text p { margin-bottom: 1.2em; }

/**ÐÞ¸Äsearch box**/
/* search box in navigation*/
.custom .search{
width:0em;
margin-left:77.8em;
margin-top:-2.5em;

border:0px solid #ddd;

border-bottom: 0.0em solid #D7D7D7;
background-color: #5FA7D4;}

.custom #nav .nav_container {
width:70.8em;
}
.custom div.nav_container #s {
font-size:1.3em;
padding:0.2em;
width:15.385em;
}

