/*
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/
*/

/*CUSTOM HEADER */
.custom #header { border-bottom:none;
height:150px;
padding-top:0;
padding-bottom:0;
background:url(http://bjseminars.com.au/wp-content/themes/thesis_16/custom/images/BJWebHeader.png)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

/*My WIDGET FOR A CUSTOM WIDGET*/
.custom #widget_content {
background: #fffff;
color: #111;
padding-left: 1em;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
padding: 1em 0em 1em 1em;
border: 2px solid #777777;
}

.custom #widget_content .widget_icon {
float: right;
margin-right: 0.5em;}

.custom li.widget .my_widget_header {
background: #ffeeee;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
}

.custom li.widget .my_widget_header h3 {
color: #2e491f;
font-size: 1.5em;
text-align: center;
}

/*CUSTOMISING THE MAIN LAYOUT OF BACKGROUND ETC */
body.custom {
    background: #dddddd;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.05em;
    background: #999999;
    border: 0.05em solid #888888;
}

.custom #page {
    background: #fff;
}

/*REMOVING FOOTER CREDIT*/
#creditfooter
{
display: none;
}

/*CUSTOM INPUT BUTTON */
.custom input.button {
	font-weight:bold;
	margin-left: 20px;
	width: 90px;
	background-color:#ffeeff;
	border: 2px solid gray;
	}

/*CUSTOMISING THE PULLQUOTES*/	
.pullquote_left {
	width: 200px;
	margin: 5px 15px 5px 0;
	font-size: 1.4em;
	color: #666666;
	text-align: center; float: left; }

.pullquote_right { 
	width: 200px;
	margin: 5px 0 5px 15px;
	font-size: 1em;
	color: #666666;
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
	text-align: center; float: right; }

/*REMOVE 'COMMENTS CLOSED' FROM PAGES*/	
	
.custom .comments_closed p {display: none ;}

/*REMOVE ARCHIVE INFO */

#archive_info {display:none;}

/*FIX FOR REMOVING SECOND IMAGE FROM POST IF USING WYSIWYG EDITOR AND LINK FOR TEASER IMAGE */

.post_image { display:none !important; }

/* EXTEND TEASERS TO FULL WIDTH OF PAGE*/

.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;
}

/*CUSTOM SMOOTH SLIDER TEXT ALIGN */

.custom #smooth_sliderc{text-align:left;}

/*REMOVING SMOOTH SLIDER FOOTER CREDIT AND OTHER CUSTOM CODE*/
.custom .sldrlink {display: none !important;}
#smooth_sldr_body .sldr_title { font-variant: small-caps; letter-spacing: 2px; }

/* BoX FOR INSERTION INTO CONTENT AREA*/
#bjsi_box_container {
	/* width for the box */
	width: 430px;
	/* background if desired */
	background: url(http://bjseminars.com.au/wp-content/themes/thesis_16/custom/images/bjsi_box_background.gif) repeat-x;
	/* border if desired or for testing */
	border-style: ridge;
	border-color: #eeeeee;
	border-width: 5px;
	/* padding to keep the contents away from the border */
	padding:15px;
	/* margin outside box to separate if from other elements */
	margin: 0em 5em 2em 0em;
}

#bjsi_box {
	/* width for the box */
	width: 400px;
	/* background if desired */
	background: white;
	/* border if desired or for testing */
	border-style: none;
	border-color: #eeeeee;
	border-width: 0px;
	/* padding to keep the contents away from the border */
	padding: 5px 10px 5px 10px;
	/* margin outside box to separate if from other elements */
	margin: 0em 0.5em 0em 0.5em;
}



 /* CUSTOM CODE FOR NAVIGATION LINKS IN SIDEBAR ON SINGLE POST PAGES */
.custom table#sidebar_post_nav_table {width:195px }

.custom table#sidebar_post_nav_table td {vertical-align:top; }

.custom table#sidebar_post_nav_table td.lf {
padding-left:0;
padding-right:10px;
width:85px;
text-align:left;
}

.custom table#sidebar_post_nav_table td.rt {
border-left:1px solid #ddd;
padding-right:0;
padding-left:10px;
width:85px;
text-align:right;
}

/*REMOVING TESTIMONIAL MANGER CREDIT*/
.custom .copyyy {display: none !important;}
