/*
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: #000000;
    
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #ffffff;
    border: 0.2em solid #0099FF;
}

.custom #page {
    background: #ffffff;
}


.custom .menu { 
    background: #0099FF; 
}
/*

.custom .menu li a{
  background:transparent;
  color: #ffffff;
  border-style:none;
}

*/

.custom blockquote.right {
   width: 35%;
   margin: 5px 0 5px 15px;
   padding: 5px 0;
   border: 3px double #aaa;
   border-width: 3px 0;
   font-size: .9em;
 }

.custom .widget li { border-bottom: 1px dotted #ddd; }

.custom #footer { 
    background: #0099FF; 
    color: #ffffff;
}

.custom #footer a { 
    color: #cccccc;
}

.custom #comments {display:none;}

/* Featured Post Formatting */
.custom #feature_box { font-family: Helvetica,Arial,sans-serif; background: #ffffa0; padding: 10px 15px 10px 15px; }
.custom #feature_box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #feature_box h2 a { color: #000000; text-decoration: none; }
.custom #feature_box h2 a:hover { color: #dddddd; }
.custom #feature_box p { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #feature_box .featurereadmore { padding: 10px 0 0 0; }
.custom #feature_box .featurereadmore a { font-size: 14px; text-decoration: none; }



/*Alert box style */
.custom .format_text p.alert {
background: #ffffa0 url('http://www.productionassistant.com.au/wp-content/themes/thesis/custom/images/star-48.png') center no-repeat;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}


.custom table.sp1
{text-align: center;
font-weight: normal;
color: #fff;
width: 600px;
background-color: #666;
border: 0px;
border-collapse: collapse;
border-spacing: 0px;}

.custom table.sp1 td
{background-color: #CCC;
color: #000;
padding: 4px;
text-align: left;
border: 1px #fff solid;}

.custom table.sp1 td.hdr
{background-color: #666;
color: #fff;
padding: 4px;
text-align: left;
border-bottom: 2px #fff solid;
font-weight: bold;} 