/*
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: #545454 url(images/bg.gif) repeat-x; font-family: Helvetica, Arial, sans-serif; }
	
	.custom a { color: #911F10; outline: 0; }

        .custom .format_text input, #commentform input, #commentform textarea {width:auto;}

/*---[ 2. Heading Styles ]---*/

	.custom h1 { font-size: 27px; }
	
        .custom .menu .rss a, .menu .rss a:hover {margin-right: 5px;}


/*---[ 3. Core Layout Elements ]---*/

	.custom #container {
		border: 1px solid #000;
	    margin: 20px 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; }
	
	
/*---[ 4. Header Styles ]---*/

	.custom #header { background: #545454 url(images/header-bg.gif) no-repeat center top;border: 0; height: 313px; overflow: hidden; margin: 0; padding: 0; }
	
	.custom p#logo a {
		background: url(images/logo.png) no-repeat;
		display: block;
		float: right;
		height: 212px;
		margin: 50px 27px 0 0;
		text-indent: -9999px;
		width: 503px;
	}
	
	.custom #tagline { display: none; }
	
        .custom #dateology-logo {float: left; padding-left: 90px; padding-top: 115px; }
	
/*---[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; }
			

/* [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; }

        /*WP Page Numbers position*/
        .custom #wp_page_numbers {margin-left: 22em; }


/*--[8. Site Customization Styles]----*/

        /*remove box from form button graphics*/
	input[type=image] {width:auto; border:none ;}

        /* PINK BREAKOUT BOX WITH MARGIN*/
        .format_text .pink_box {background: #FBDAE3; border: 10px solid #FBDAE3; 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') }

        .custom .format_text input, #commentform input, #commentform textarea {width:auto;}

