/*
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: #E6F4FC url('http://tqsigns.ca/images/bg_largeTQS.png');}

.custom .full_width .page {margin:0px; padding: 0px;  text-align: left;}

.custom #container { margin-top: 2em; margin-bottom: 2em; }

.custom #page { background: #fff;}
	

.custom #header #logo {display:none;}
.custom #header #tagline {display:none;}
.custom #header {height: 100px; background: #E6F4FC url() no-repeat center; opacity: .9;}

.shadow  { position:relative; display:block; color:#000000; font-size: 72px; }
.shadow span { position:absolute; display:block; top:0px;  font-size: 72px;}
.shadow:before { display:block; padding:2px; content: attr(title); color:#CAD5DC; font-size: 72px; } 

.custom #content {background-color: #E6F4FC;}
.custom #content_box {background-color: #CAD5DC;}
.custom #container {background-color: #CAD5DC;}
.custom #page {background-color: #CAD5DC;}


.custom #tabs {background-color: #E6F4FC; border: none;}
.custom #tabs li{background-color: #E6F4FC; border: none; font-weight: bold;}



/**************** left sidebar styles ****************/

#sidebarMain
{
	position:absolute; 
	top:0; 
	left:0; 
	height:100%; 
	overflow:auto; 
	background:#e0e0e0 url(images/sidebarbg.gif) top right repeat-y; 
	text-align:center;
	opacity: .9;	
}

body > #sidebarMain
{position:fixed;}

#sidebarMain table{
	margin: 5px 0px 0px 3px;
}
#sidebarMain h2, #sidebarMain h3
{margin:0 20px 18px 5px; color:#808080; font-size:1.1em; font-weight:bold; letter-spacing:-1px; text-align:center;}

#sidebarMain h3
{margin:20px 18px 4px 5px; color:#606060;}


#sidebarMain a
{color:#808080;}

#sidebarMain a:hover
{color: #000000;}

#sidebarMain a.selected
{color:#000000;}

#leftMenu img{
	margin-bottom: -1px;
}
.sub{
	margin-left: 15px;
}


.style1 {font-size: x-small}
.style3 {font-size: x-small; color: #000000; }


