/*
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/
*/

/* BACKGROUND */
body.custom {background: # url('#') 0 0 repeat;}

/* HEADER ZONE */

.custom #header_area {background: #fff url('http://www.lovinlifeonless.com/wp-content/themes/thesis_16/custom/images/LLoLheaderbkgd.jpg') 0 0 repeat;}
   
.custom #header_area .page { 
background: transparent; 
}

.custom #header { 
   border-bottom:none;
   height:200px;
   width:1000px;
   padding-top:0;
   padding-bottom:0;
   margin-left: 0px;
   margin-top: -0px;
   align: center;
   background: transparent url('http://www.lovinlifeonless.com/wp-content/themes/thesis_16/custom/images/LLoLheader.png')
 no-repeat; 
   z-index: 1001;
   position: relative;
}

/* NAVBAR ZONE */

.custom #nav_area { background: #0aaab5;}
.custom #nav_area .page { background: #0aaab5; }
.custom .menu { background: #0aaab5; border: 0; }
.custom .menu li.tab a, li.tab { border: 0; }


/* SIDEBAR STUFF */
li.widget {
	width:200px;
        float:left;
}

ul.sidebar_list {
margin: 0 0 21px 0;
li.widget
float: left;
font-size: 11px;
margin: 0 10px 0 0;
text-align: left;	
}

#sidebar_1 h3 {
background: url('http://www.lovinlifeonless.com/wp-content/themes/thesis_16/custom/images/LLoLsidebarheart.png') no-repeat center left;
height: 24px;
border-bottom: dashed 1px #ff7847;
padding-left:30px;
font-variant:normal;
font-weight:normal;
font-color: #29180d;
font-size:13px;
font-style:italic;
}

#sidebar_2 h3 {
background: url('http://www.lovinlifeonless.com/wp-content/themes/thesis_16/custom/images/LLoLsidebarheart.png') no-repeat center left;
height: 24px;
border-bottom: dashed 1px #ff7847;
padding-left:30px;
font-variant:normal;
text-transform:lowercase;
font-weight:normal;
font-color: #29180d;
font-size:13px;
font-style:italic;
}


/* FOOTER ZONE */
.custom #footer {border:0;} /* removes double-bar footer line */

.custom #footer_area { 
       background: #fff url('http://www.lovinlifeonless.com/wp-content/themes/thesis_16/custom/images/LLoLheaderbkgd.jpg') 0 0 repeat;
       border-top: 15px; 
       border-top-color: #0aaab5;
       border-top-style: solid;
}

.custom #footer_area .page { background: transparent; 
}
.custom #footer_area a { 
border: 0;
color: #0aaab5; 
}

#footerContainer{
width: 695px;
margin: 0 auto; 
}

#footer_1 ul {
margin: 0 0 21px 0;
li.widget
float: left;
font-size: 14px;
margin: 0 10px 0 0;
text-align: left;
list-style-type: none; 
}

#footer_1 h3 {
font-size: 18px;
color: #fc9670; 
border-bottom-color: #fc9670;
border-bottom-style: dashed;
width: 205px;
}

#footer_1 li.widget {
width:225px;
float:left;
}


/* AD ARRAY */
.custom #welcome h3 {color:#D93B7F;font-family:"Century Gothic","Apple Gothic",Verdana,sans-serif;font-size:2.0em;text-align:center;}
.custom #sidebarads {margin: 10px 0 20px 20px;}
.custom #sidebarads ul {display:inline; list-style:none;} 
.custom #sidebarads ul li {height:125px; width:125px; padding:3px; float:left;} 
.custom #sidebarads img {border:1px solid #555;}

/*----- Content Float Fix -----*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */


