/*

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/

*/



/*insert banner in header*/

.custom #header { 

background:url('http://schoolsims.co.nz/wp-content/uploads/schoolsims_3.gif') center left no-repeat;

text-indent:-9999px; 

border-bottom:0px; 

height:60px; 

padding-top:0; 

padding-bottom:0; 

}



/*widget search style*/

.custom div.search_container #s {

background:#EFEFF1 none repeat scroll 0 0;

border-color:#F4C498;

border-style:solid;

border-width:0.083em;

width:20em;

height:1.55em;

margin-top:-0.1em;

margin-left:678px;

padding-top:0.2em;

font-size:1.3em;

font-family:Verdana;

text-align:center;

}


.custom div.search_container #s:hover {

background:#ffffff !important;

}



/*search submit button style*/

.custom div.search_submit input {

float:right;

margin-left:0.6em;

border:0;

}


/*set blog tab (tab-5) as current (#f36523) when viewing post in category called 'post' - works only for sites where comments are allowed on posts only (not on pages)*/

.post .tab-5 a {color:#13761F; background:#F36523;}



/*hide blog category title in Blog page*/

.cat_blog #archive_info { display: none; }



/* horizontal rule style*/

div.hr {

  height:0.05em;

  width:100%;

  background:#F4C498 url('http://schoolsims.com/wp-content/uploads/hr1x1-f4c498.gif') repeat scroll center;

}

div.hr hr {

  display: none;

}



/* apply different background color to mm box*/

.custom #multimedia_box {

  background:#39B54A;

  padding:0.4em;

  margin-top:1em;

}



/* sidebar 2 and 3 title bar style*/

.custom li#text-3.widget h3, .custom li#text-4.widget h3 {

  font-family:Georgia;

  font-size:1.2em;

  color:#111111;

  padding:0.3em 0;

  border-bottom:0.1em solid #056839;

}



/* sidebar 2 style*/

.custom li#text-3.widget {

  font-family:Verdana;

  font-size:1.3em;

  background:#E3F6C3;

  line-height:1.385em;

  padding:1.2em 0.55em;

  margin-left:-0.7em;

  border-color:#F4C498;

  border-style:solid;

  border-width:0.083em;

  height:35em;

}



/* sidebar 3 style*/

.custom li#text-4.widget {

  font-family:Verdana;

  font-size:1.3em;

  background:#E3F6C3;

  line-height:1.385em;

  padding:1.2em 0.55em;

  margin-left:-0.5em;

  border-color:#F4C498;

  border-style:solid;

  border-width:0.083em;

  height:35em;
}

.custom .imagelineup {list-style: none; float: left; padding-left: 10%; }





