/*
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/
*/



/*
INDEX
1. Global Elements
2. Heading Styles
3. Core Layout Elements
4. Header Styles (note: this is different from 'headings' It's the top box area)
5. Sidebar Styles
6. Widget Styles
7. Footer Styles
8. Site Customization Styles
9. IE png fix


*/


/*---[ 1. Global Elements ]---*/

	body { background: #d8d6fe url(images/bg.gif) repeat-x; font-family: Helvetica, Arial, sans-serif; }
	
        .custom .page {margin-top: -30px; }

/*---[ 1.1 Checkbox Elements }---*/
        .custom .format_text input, #commentform input, #commentform textarea {
width:auto;
}


/*---[ 2. Heading Styles ]---*/

	.custom h1 { font-size: 27px; }

        .custom .menu .rss {padding-right:14px; padding-bottom: 0px; }
	
        .custom .top_contact {
        margin:0 auto;
        padding:2px;
        width:100.7em;
        height:20px;
        position:relative;
        }

        .custom .style1 {
        margin-top:.5em;
        position:absolute;
        right:0;
        top:0;
        }

        .custom #post-413 .headline_area, .custom #post-15 .headline_area,
        .custom #post-17 .headline_area { display: none; }

/*---[ 3. Core Layout Elements ]---*/

	.custom #container {
	border: 1px solid #000;
	margin: 3px auto;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	}
	
	.custom #content_box { background: #FFF url(images/sidebarbg.gif) 734px 0 repeat-y; }
	
	.custom #content { background: #FFF url(images/redGrad.gif) repeat-x; border: 0; margin-top: 1px; margin-bottom: -10px; }
	
	
/*---[ 4. Header Styles ]---*/

	.custom #header { background: #545454 url(images/header-bg.gif) no-repeat center top;border: 0; height: 200px; overflow: hidden; margin: 0; padding: 0; }
	
	.custom p#logo a {
		background: url(images/logo.png) no-repeat;
		display: block;
		float: left;
		height: 81px;
		margin: 60px 0px 0 30px;
		text-indent: -9999px;
		width: 464px;
	}
	
/*.custom #person-cutout {float: left; padding-left: 95px; padding-top: 4px; }*/

.custom #tagline { display: none; }

.custom #post_box {margin-top: -5px; padding-top: -5px; }
.custom #post {margin-top: -5px; padding-top: -5px; }
	
/*---[5. Sidebar Styles ]---*/

	.custom #sidebar_1 a { color: #EEE; }

	.custom #sidebar_1 { background: #454343 url(images/s_default.gif) repeat-x; }
	
	.custom #sidebar_1 { border: 1px solid #000; border-width: 0 1px 0 0; }

        .custom #wp-calendar { background: #161616; }

        .custom table#wp-calendar caption { background: #000; }

        .custom table#wp-calendar th { background: #262626; }

        .custom #multimedia_box {background:#161616; border-color:#FF9900; }
 
        .custom #image_box img { border: none; }

        .custom li.widget {margin-bottom:25px !important;}
	
		
	
/* [6. Widget Styles]	 */

	.custom .widget h3 { padding: 10px 10px 0 10px; text-align: left; }
	
	.textwidget { border: 1px solid #504f4f; color: #EEE; padding: 5px; margin: 5px; }

	.custom li.widget { margin-bottom: 0; padding-top: 5px; }

	
/*---[7. Footer Styles ]---*/

	.custom #footer { background: #312F2F; border-top: 1px solid #000; color: #EEE; }
	
	.custom #footer a { color: #EEE; }
	
	.custom #footer a:hover { border: 0; }


/*--[8. Site Customization Styles]----*/

    /* PINK BREAKOUT BOX WITH MARGIN*/
    .format_text .pink_box {
	background: #FBDDF0; 
	border: 10px solid #FBDDF0; 
    margin-top:-0.8em; 
    margin-bottom:0.4em; }
    
/*--[9. Site Customization Styles]----*/    
    
    img, div, .custom p#logo a { behavior: url ('http://www.dateology.ca/wp-content/themes/thesis_16/custom/iepngfix.htc') }

/* This formats the outside box */
.custom div.post_ad {
background-color: #deb859;
margin: 0;
padding: 6px;
border: 1px solid #787878;
}

/* This formats the headline */
.custom div.format_text.entry-content div.post_ad h3 {
margin-top: 0;
font-weight: bold;
font-size: 1.1em;
line-height: 1em;
border-bottom-style: dotted;
border-bottom-width: 1px;
padding-bottom: 5px;
margin-bottom: 6px;
}

/* This formats the text */
.custom div.format_text.entry-content div.post_ad p {
margin: 0 0 9px;
}

/* This formats the image */
.custom div.post_ad img {
float: left;
margin-bottom: 8px;
margin-left: 8px;
}

/* This code is not in my CSS but I decided to add it in.
This formats the color of a hyperlink */
.custom div.post_ad a {
color: #446677;
}

