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

*/

/* messed with the ratios 
.custom #content_box { width: 100%; background: url('../images/dot-ddd.gif') 56em 0 repeat-y; }

.custom #content { width: 56em; float: left; }

.custom #sidebars { width: 40em; float: right; }
*/
/* make the background of the page a blue fade */
body.custom {
    background: #ffffff url('images/bkg.jpg') top left repeat-x;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}


/* show the logo instead of the title */
.custom #header #logo { 
	height: 102px;
	text-indent: -9000px;
	background: url('images/logo_on_white.jpg') no-repeat;
	}


/* style for the email box */
.custom .email-pitch { padding: 1em; }
.custom .email-image {  
	width: 136px; 
	height: 136px; 
	float: left; 
	background: url('images/email.jpg') no-repeat; 
	padding-right: 4em;
	}
.custom .email-list { 
	}
	
.custom .email-list form { 
	font-size: 1.3em;
	background:white;
	}

.custom .email-list ul { 
	font-size: 1.3em;
	list-style-type: none;
	list-style-position:outside;
	}

.custom .email-list ul li:before {
	content: "\00BB \0020";
	}

.custom .email-list ul li {
	padding-bottom: .75em;
	}
	
/* full width styles for pages */
.custom #content_box.full_width { background: none; }
.custom .full_width #content { width: 96em; }	
	
/* image alignment */	
.im_l {
	float:left;
	padding:0px 15px 5px 5px;
	/*t, r, b, l */
}

.im_r {
	float:right;
	padding:0px 4px 5px 10px;
}


.subheading1
{
	font-size:16pt;
	padding:16px 0px;
	color:black;
}

.subheading2
{
	font-size:12pt;
	padding:16px 0px;
	color:black;
}

.headline
{
	line-height:1.5em;
	font-size:16pt;
	text-align:center;
	padding:16px 0px;
	color:black;
}

.pres_wrapper
{
}

.pres_area
{
	width:90%;
	margin-left:5%;
}

.pres_image
{
	float:left;
	padding:10px;
	padding-top:25px;
	padding-right:25px;
}

.pres_text_wrapper
{
	padding:10px 20px 0px 10px;
	/*t, r, b, l */
}

.pres_title
{
	font-size:16pt;
	color:#00aeef;
	font-weight: bold;
	padding:10px;
}

.pres_date
{
	color:blue;
	font-weight: bold;
	font-size:10pt;
}

.pres_desc
{
	padding:5px;
	font:1em;
	line-height:auto;
}