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

body{
    background: #CC99CC;
}


.custom #header { border-bottom: none; height: 141px; padding-top: 0; padding-bottom: 0; background: url(images/header1.jpg) top left no-repeat; }

.custom #container {width: 1000px;}

.custom #outer_container{
    width: 1261px;
    margin: auto;
    background: #CC99CC url(images/site-bg-1.jpg) no-repeat top left;
}

.custom #image_box {
    background: #fff;
    border-bottom: 0;
}
.custom #page{
    background: #fff;
    /*padding-left: 0;
    padding-right: 0;*/
    padding: 0;
}

.custom #content{
    background: #fff;
    width: 55em;
}

.custom #footer{
    line-height: normal;
}


.custom #content_box{
    width: 998px;
    background: url('images/dot-ddd.gif') 55em 0 repeat-y;
}

.rss{
    margin-right: 6px;
}

.sep-line{
    width: 375px;
    height: 25px;
    margin: auto;
    background: transparent url('sep-line.png') no-repeat top left;
}

.custom .widget h3{
      display: block;
      background: transparent url(images/widg-head-bg.png) repeat-x;
      height: 25px;
      line-height: 25px;
      text-align: center;
      color: #fff;

}

.textwidget {padding:6px;} .textwidget a {font-weight:bold;}

.custom li.widget{
    background: #FFE1FF;
    border: 1px solid #CC0099;
    border-top: none;
    color: #000;
}

.custom .widget a{
    color: #906;
}


.custom .widget ul{
    padding-left: 5px;

}

.custom .lower_side_bar{
    width: 420;
    margin: auto;
    float: right;
    padding-right: 1.4em;
    margin-top:10px;
    text-align: center;
}

.lower_side_bar img{
    margin-top: 10px;
    border: 5px solid #D1C478;
}

.testimonial {background:#fff url(images/quote.gif) top left no-repeat;padding:20px 0 0 20px;}

.custom {
    background: #FFE1FF;
    border: 1px solid #CC0099;
    padding: 4px;
}

.custom .standout{
    font-style: italic;
    font-weight: bold;
    /*width: 450px;
    margin: auto;*/
    padding: 6px;

}

.custom #post-12 h2 {display:none;}
img.happycoupleimg {float:left;margin:26px 12px 12px 0;}