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


/* Change footer colour */

.custom #footer {

Background-color:#04B4AE;

}

/* Change header colour */

.custom #header {

Background-color:#04B4AE;

}

/* NUMBERED PAGE NAV */

.page-nav { font-size: 1.35em; font-weight: margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #efefef; border: .1em solid #ccc; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #efefef; border: .1em solid #ccc; }
.elipses { float: left; padding: .3em .2em; }

/* Define background image */

body {
 background: #fff url(images/grassbg.png);
}

/* Define header image */

.custom #logo a {
	background-image: url(images/logo.png);	/*replace logo.png with the name of your image*/
	width: 256px; /*change this to the width of your image*/
	height: 91px; /*change this to the height of your image*/
	background-repeat: no-repeat;
	display: block;
	text-indent: -9999px;
}

/* Move search bar to right of navigation menu */

.custom div.nav_container form.search_form {
	float:right; /*Moves search box to the right*/
	margin-bottom: -2.5em; /*If you want search box to sit on the same gray line the nav sits on, replace this property with margin-top: -2.5em;*/
}
.custom div.nav_container #s {
	font-size:1.3em;
	padding:0.308em;
	width:15.385em;
}

/* Remove "comments are closed" from pages */

.custom .comments_closed p {display: none ;}

/* Add the ability to highlight text in a post via <span class=”my-highlight”></span */

.custom .my-highlight {background: #fefdaa ;}

/* Highlight author comments */

.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/* Style custom contact form */

#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 150px;
}
#wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 350px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	margin-left: 250px;
	width: 100px;
}

/* Justify teaser text */

.custom .teaser { text-align: justify; }


/* Set h1 (level 1 heading) text to one step darker than
   normal but less than a standard bold. */
h1 {font-weight: 500}

/* Pretty up pullquotes */

/* CommentLuv styling */
.custom cluv {margin-top:10px; font-style:italic;}

/* Style alert boxes */
.alert {
	background: #fff6bf url(images/exclamation.png) center no-repeat;
	background-position: 15px 50%; /* x-pos y-pos */
	text-align: left;
	padding: 5px 20px 5px 45px;
	border-top: 2px solid #ffd324;
	border-bottom: 2px solid #ffd324;
	}

/* Style guest post boxes */
.guest {
	background: #95E0EF url(images/pencil.png) center no-repeat;
	background-position: 15px 50%; /* x-pos y-pos */
	text-align: left;
	padding: 5px 20px 5px 45px;
	border-top: 2px solid #77B3BF;
	border-bottom: 2px solid #77B3BF;
	}

/* Related Posts */
ul.related-posts {
	float: left;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.related-posts li {
	list-style-type: none;
	float: left;
	width: 100px;
	padding-right: 8px;
	padding-left: 8px;
	font-size: 12px;
	line-height: 18px;
}
.related-posts img{
	width: 100px;
	padding: 1px;
	border: 1px solid #CCC;
}
