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


/* DoubleMule Clickable Header v. 1.0 */

.custom #header
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #logo a
{
display:block;
width:917px;
height:200px;
background:url(http://todayiappreciate.com/wp-content/themes/thesis_151/custom/images/header917.gif) center no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #tagline
{
color:#000000;
text-indent: -9999px;
}

/* Nav Bar changes */
.custom #tabs
{
	padding-top: 2.1em;
	border:none; }

.custom #tabs li a {
	background:#80E00C url(images/menu.jpg) repeat-x scroll 0 0;
}


.custom #tabs a {
	font-weight: bold;
}

.custom #tabs a:hover {
	text-decoration: none;
	background:#D4F319 url(images/menu_hover.jpg) repeat-x scroll 0 0; 
}

/* Feature HOMEPAGE Box*/
.custom #feature_box {
	background: #fff770 url('http://todayiappreciate.com/wp-content/themes/thesis_151/custom/images/featureback.jpg');
	padding: 10px;
	border-bottom: none;
	margin-top: 1.1em;
}
.custom #feature_box table {
	font-size: 14px;
	color: #003300;
		text-align: center;
}


/* Multimedia Box margin from top*/
.custom #multimedia_box {margin-top:2.1em;}

/*MM Box background color*/
.custom #image_box, .custom #video_box, .custom #custom_box {background:#fff;}

/*Multimedia Box design padding*/
.custom #custom_box { padding: 0 0 1.1em }

/*Multimedia Box font stlying Head*/
.custom .shmmb {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
}

/*Multimedia Box font stlying Feedburner*/
.custom .shmmb2 {
	font-family:"Trebuchet MS";
	font-size: 1.2em;
	font-style: italic;
}

/* Background and Page */

body.custom {
    background: #fff770 url('http://todayiappreciate.com/wp-content/themes/thesis_151/custom/images/oygrbg.jpg') repeat-x;
 
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}


.custom dl#comment_list .even {
    background: #ffffff;
}

.custom dl#comment_list .odd {
    background: #ffffff;
}

.custom dl#comment_list .comment-author-admin {
     background: #ffffff;
}

/*UL DOT*/
.custom .format_text ul {
	list-style: url(images/uldot.png);
}

.custom .format_text ul ul {
	list-style: url(images/ululdot.png);
}

/* Comment Box BOTTOM - Remove border - Round bottom corners */
.custom dl#comment_list dd {
	border-bottom: none;
	-webkit-border-bottom-left-radius: 10px;
	-khtml-border-radius-bottomleft: 10px;	
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-khtml-border-radius-bottomright: 10px;	
	-moz-border-radius-bottomright: 10px;
	border-bottom-right-radius: 10px;
}

/* Comment Box TOP - Remove border */
.custom dl#comment_list {
	border-top: none;
}	

/* Comment Box TOP - Round Top Corners */
.custom dl#comment_list dt {
	-webkit-border-top-right-radius: 10px;
	-khtml-border-radius-topright: 10px;	
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-khtml-border-radius-topleft: 10px;	
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;

}

/* Post box - rounded corners */
.custom .post_box  {
      background: #ffffff;
      padding-left:1.2em;
      padding-right:1.2em;
      margin:2.2em 2.3em 0 0;
      border-top: none;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;	
	-moz-border-radius: 10px;
	border-radius: 10px;
	}

.custom dd.comment {
      margin-bottom:2.2em;
}

/* Move tags and comments info down*/
.custom .post_tags { margin-top: 1.833em; }
.custom .to_comments { margin-top: 1.833em; }

/* H2 Color and Comment intro */

.custom h2 a { color: #2361a1;  font-weight: bold;   }
.custom h2 a:hover { color: #111111; }

.custom .format_text .to_comments a { color: #2361a1; text-decoration: none;  font-weight: bold;  }
.custom .format_text .to_comments a:hover { color: #111; text-decoration: underline; }

/* Remove Comments Closed caption */

.custom .comments_closed p {
  display: none;
}

/* Remove line between content and sidebar */

.custom #content_box {
	background: none
}

/* WIDGETS */
.custom .widget h3 {
   color: #397101; font-weight: bold; text-align:center; }
.custom .widget {
	background: white; padding: 8px; 
}

/* Footer */
.custom #footer_area { background: #e7b0ff url(http://todayiappreciate.com/wp-content/themes/thesis_151/custom/images/footer.png); border: none;}
.custom #footer { 
   border-top:0; color: #397101; text-align: center;
   margin-top: 1.2em;
}
.custom #footer a {
	color: #397101; text-decoration: none;
}
.custom #footer a:hover {
	color: #ffb427; text-decoration: none;
}

/*Below Footer*/
.custom .footerleft {
	color: #397101; float: left;
}
.custom .footerleft a {
	color: #397101; text-decoration: none;
}
.custom .footerleft a:hover {
	color: #ffb427; text-decoration: underline;
}
.custom .footerright {
	color: #397101; float: right;
}
.custom .footerright a {
	color: #397101; text-decoration: none;
}
.custom .footerright a:hover {
	color: #ffb427; text-decoration:underline;
}



