/*
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: #fedfe5 url(images/bg.gif) repeat-x; font-family: Helvetica, Arial, sans-serif; }
	
        .custom .page {margin-top: -30px; }


/*---[ 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 .menu .tab { margin-right: 10px; }
.custom .menu { padding: 0 1.0em;}

.custom #feature_box { padding: 0; border: none; }
	.custom #feature_box img { display: block; }



/*---[ 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; }
	
	
/*---[ 4. Header Styles ]---*/

	.custom #header { background: #FFFFFF; height: 95px; } /*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(http://www.happysexyyou.com/wp-content/themes/thesis_16/custom/images/HSY_website_logo.png) no-repeat;
		display: block;
		float: right;
		height: 99px;
		margin: 0px 570px 0 0;
		text-indent: -9999px;
		width: 363px;
	}
	
.custom #person-cutout {float: left; padding-left: 95px; padding-top: 4px; }

.custom #tagline { display: none; }
	
	
/*---[5. Sidebar Styles ]---*/

	.custom #sidebar_1 a { color: #44305D; }

	.custom #sidebar_1 { background: #fdc4ce 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: #44305D; padding: 5px; margin: 5px; }

	.custom li.widget { margin-bottom: 0; padding-top: 5px; }

	
/*---[7. Footer Styles ]---*/

	.custom #footer { background: #fdc4ce; border-top: 1px solid #000; }
	
	.custom #footer a { color: #44305D; }
	
	.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') }




