/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

/*	For Laminating.net.au	*/
body.custom { background:url(images/lam-bodybg.jpg) top left repeat-x; }
.custom #container { border:1px solid #EEE; background:#FFF; margin:5px auto; }
.custom #page { margin:0; padding:0; }
.custom ul#tabs { background:#688ac2; margin:0; padding:15px 30px 0 20px; }
.custom #header { background:url(images/lam-headbg.jpg) top left repeat-x; margin:0 0 0 1px; }
.custom #footer { background:#688ac2; color:#333; }


/*	For NickGatesFoundation.com.au	
body.custom { background:url(images/ngf-bodybg.jpg) top left repeat-x; }
.custom #container { border:1px solid #EEE; background:#FFF; margin:5px auto; }
.custom #page { margin:0; padding:0; }
.custom ul#tabs { background:#5ca5d7; margin:0; padding:15px 30px 0 20px; }
.custom #header { }
.custom #footer { background:#5ca5d7; color:#333; }
*/

/*	For ChelseaMclean.com.au	
body.custom { background:url(images/bodybg.jpg) top left repeat-x; }
.custom #container { border:1px solid #EEE; background:#FFF; margin:5px auto; }
.custom #page { margin:0; padding:0; }
.custom ul#tabs { background:#94d5e0; margin:0; padding:15px 30px 0 20px; }
.custom #header { }
.custom #footer { background:#94d5e0; color:#333; }
*/

/*
body.custom {	background:url(images/bodybg1.jpg) top left repeat-x; }
.custom #container { background:#FFF; border:1px solid #EEE; margin:5px auto; }
.custom #page { padding:15px 0; }
.custom #header { background:#efefef; }
.custom ul#tabs { margin:0 0 0 20px; }
.custom ul#tabs li { background:#FFF;	background:#900000; color:#FFF; }
.custom ul#tabs li a { color:#FFF; }
.custom ul#tabs li.rss { margin-right:30px; background:none; }
.custom ul#tabs li.rss a { color:#333; }
.custom ul#tabs li.current_page_item, 
.custom ul#tabs li.current-cat { background: #efefef; border-bottom-color: #ddd; }
.custom ul#tabs li.current_page_item a, 
.custom ul#tabs li.current-cat a { color:#333; }
*/