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

/*
Background Design - image background and see through content area page
*/

body.custom { background: #FFF url('images/bg-ocean.jpg') top center no-repeat; }


.custom #container { 
margin-top: 17.5em; 
margin-bottom: 0em; 
background: none;
}

	
.custom #page { 
background: none; 
}

/*
This changes the colour of the nav menu and hover
*/

.custom ul#tabs li a:hover {color: #3399cc; text-decoration: underline; background-color: #fff; }

/*
Nav menu stylin, dashed edges & gaps between tabs
*/

.custom ul.menu li {
border-style:dashed dashed dashed none;
border-width: 1px 1px 0 0;
border-color:#3399cc;
margin-left: 0.5em;
}


.custom ul.menu {
border-style:none;
}

/*
RSS menu stylin, dashed edges etc
*/

.custom ul.menu li.rss {
background:transparent none repeat scroll 0 0;
border:medium dashed transparent;
border-color:#3399cc;
border-width: 1px 0px 0px 1px;
float:right;
padding-right:0;
}

.custom ul.menu li a:hover {color: #3399cc; text-decoration: underline; background-color: transparent; }

/*
hides comments are closed statement
*/

.custom .comments_closed p {display: none ;}

.custom.to_comments {
display: none ;
}

/*
This hides sidebar borders dashed
*/

.custom li.widget .widget_box {
background:#FFF none repeat scroll 0 0;
border-color:#3399cc;
border-style:none;
border-width: 0px 0px 0px 0px;
width: 200px;
}

/*
This customises footer bottom border
*/

.custom  #footer {
border-style:dashed;
border-color:#3399cc;
border-width: 1px 1px 1px 1px;
border-bottom:none;
clear:both;
}

/*
This customises header borders
*/

.custom  #header {
border-style:dashed;
border-color:#3399cc;
border-width: 0px 0px 0 0;
border-bottom:none;
border-top:none;
clear:both;
padding-bottom:1em;
padding-top:0.1em;
}

/*
This customises content borders
*/

.custom  #content {
border-style:dashed;
border-color:#3399cc;
border-width: 1px 1px 0px 0px;
}

/*
This Removes dotted sidebar divider
*/

.custom #sidebar_1 {
border-style:dashed;
background:transparent none repeat scroll 0 0;
border-color:#3399cc;
border-style:dashed;
border-width: 1px 0px 0px 0px;
margin-left:0.350em;
}

/*
This customises post bottom border
*/

.custom  #post {
border-style:dashed;
border-color:#3399cc;
border-width: 0px 0px 0px 0px;
border-bottom:none;
border-top:dashed;
clear:both;
}

/*
Fixes post title alignment
*/

.custom.ftp-widget .txt-left, .top {
text-align:left;
}

/*
Changes Bingo background
*/

body.bingo-page { background: #FFF url('images/bg-ocean2.jpg') 50% 0 no-repeat;}

/*
Changes Sport background
*/

body.sport-page { background: #FFF url('images/bg-ocean4.jpg') 50% 0 no-repeat;}
