/*
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-color: #473119;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}

a {
	color: #014B88;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
	color: #D30A58;
}


div.clear {
	height: 0;
	clear: both;
}

#container {
	width: 949px;
	padding: 40px 0 20px 0;
}

#page {
	padding: 0;
	background-color: #fff;
}

#header {
	height: 171px;
	padding: 0;
	border-bottom: 3px solid #fff;
}

#header img {
	border: none;
}

#header #headerphoto {
	float: left;
	width: 198px;
}

#header #headertitle {
	float: left;
	width: 491px;
}

#header #headerbooks {
	float: left;
	width: 260px;
}


#content_box {
	background: none;
	padding-top: 25px;
	z-index: 1;
	font-size: 0.96em;
}



/* MAIN NAVIGATION */

.custom ul#tabs {
	border: none;
	background-color: #ccc;
	/*background: #ccc url("../custom/images/mainnav.gif") no-repeat top left;*/
	height: 27px;
}

.custom ul#tabs li, .custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {
	height: 27px;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	width: 125px;
	list-style: none;
	border-right: 2px solid #fff;
	position: static; /* IE7 fix */
}

.custom ul#tabs li a {
	text-indent: -9999em;
	padding: 0;
	height: 27px;
	width: 125px;
	cursor: pointer;
	outline: none;
	background-color: #473119;
	background-position: top left;
	background-repeat: no-repeat;
}

.custom ul#tabs li:hover a, .custom ul#tabs li.sfhover a, .custom ul#tabs li.current_page_item a {
	background-position: top right;
}

.custom ul#tabs li ul { /* second-level lists */
	position: absolute;
	width: 125px;
	left: -9999em;
	/*left: auto;*/
	z-index: 5;
	background-color: #66401c;
	border-top: 1px solid #fff;
}

.custom ul#tabs li:hover ul, .custom ul#tabs li.sfhover ul {
	left: auto;
	background-position: 0 0;
}

.custom ul#tabs li ul li, .custom ul#tabs li.current_page_item ul li, .custom ul#tabs li.current-cat ul li, .custom ul#tabs li ul li.current_page_item {
	z-index: 5;
	height: auto;
	border-right: none;
	position: static; /* IE7 fix */
}

.custom ul#tabs li ul li a, .custom ul#tabs li:hover ul li a, .custom ul#tabs li.sfhover ul li a, .custom ul#tabs li.current_page_item ul li a {
	z-index: 5;
	color: #fff;
	cursor: pointer;
	background-color: #66401c;
	background-repeat: no-repeat;
	background-position: top left;
	height: 22px;
}

.custom ul#tabs li ul li a:hover, .custom ul#tabs li ul li a:active {
	background-position: top right;
}


/* Blog menu */

.custom ul#tabs li a {
	background-image: url("../custom/images/mainnav-blog.gif");
}

/* Books submenu */

.custom ul#tabs li.page-item-3 a {
	background-image: url("../custom/images/mainnav-books.gif");
}

.custom ul#tabs li ul li.page-item-17 a {
	background-image: url("../custom/images/mainnav-books-goodmom.gif");
	height: 46px;
}

.custom ul#tabs li ul li.page-item-27 a {
	background-image: url("../custom/images/mainnav-books-secrets.gif");
	height: 46px;
}

.custom ul#tabs li ul li.page-item-30 a {
	background-image: url("../custom/images/mainnav-books-husband.gif");
	height: 46px;
}

/* Authors submenu */

.custom ul#tabs li.page-item-7 a {
	background-image: url("../custom/images/mainnav-authors.gif");
}

.custom ul#tabs li ul li.page-item-32 a {
	background-image: url("../custom/images/mainnav-authors-authorbios.gif");
}

.custom ul#tabs li ul li.page-item-34 a {
	background-image: url("../custom/images/mainnav-authors-interview.gif");
}

.custom ul#tabs li ul li.page-item-36 a {
	background-image: url("../custom/images/mainnav-authors-video.gif");
}

/* Press submenu */

.custom ul#tabs li.page-item-9 a {
	background-image: url("../custom/images/mainnav-press.gif");
}

.custom ul#tabs li ul li.page-item-207 a {
	background-image: url("../custom/images/mainnav-press-inthenews.gif");
}

.custom ul#tabs li ul li.page-item-43 a {
	background-image: url("../custom/images/mainnav-press-forthemedia.gif");
}

/* Mom's Group submenu */

.custom ul#tabs li.page-item-11 a {
	background-image: url("../custom/images/mainnav-moms.gif");
}

.custom ul#tabs li ul li.page-item-45 a {
	background-image: url("../custom/images/mainnav-moms-quiz.gif");
}

.custom ul#tabs li ul li.page-item-47 a {
	background-image: url("../custom/images/mainnav-moms-discussion.gif");
}

/* Contact menu */

.custom ul#tabs li.page-item-13 a {
	background-image: url("../custom/images/mainnav-contact.gif");
}



/* CONTENT */

#feature_box {
	border: none;
	background-color: transparent;
}

.format_text a {
	text-decoration: none;
	font-weight:bold;
	color: #014B88;
}

.format_text a:hover {
	color: #D30A58;
}

.format_text p.related {
	border-top: dotted;
	font-family:"Arial Black", Arial, Verdana, sans-serif;
	color: #666666;
	padding-top: 7px;
}

.format_text p.details {
	color: #676767;
	font-style:italic;
}


#content {
	width: 530px;
}

.headline_area {
	margin-bottom: 1em;
}

.format_text .to_comments a, .format_text .to_comments a:hover, .format_text .to_comments a:active {
	color: #014b88;
}

.format_text .to_comments span {
	font-size: 1em;
	color: #014b88;
}

a.more-link {
	display: block;
	text-align: right;
}

div#content div.top {
	padding-top: 0;
}

.comments_closed {
	margin: 0;
	display: none;
	visibility: hidden;
}

.post_box, .teasers_box, .full_width #content_box .page, #comments {
	margin: 0 4em 0 2em;
}

.comments_intro, #respond_intro {
	margin-left: 0;
}

dl#comment_list dt, dl#trackback_list dt {
	padding-left: 0;
	padding-right: 0;
}

dl#comment_list dd, dl#trackback_list dd {
	padding-left: 0;
}

#commentform {
	padding-left: 0;
	padding-right: 0;
}

.headline_area h1, .headline_area h2, .headline_area h1 a, .headline_area h2 a {
	color: #473119;
}

a img#quizsubmit {
	display: inline;
	margin: 0;
}

.quiz .format_text input, .moms-group .format_text input {
	width: auto;
	padding: 0;
	border: none;
	margin-right: 5px;
}

.in-the-news-new .format_text img, .in-the-news .format_text img {
	margin-bottom: 0;
	display: block;
	float: none;
}


/* Dirty Little Secrets page */
.dirty-little-secrets #comments .comment_author {
	display: none;
	visibility: hidden;
}

.dirty-little-secrets #commentform {
	border-top: none;
	padding-top: 0;
}

.dirty-little-secrets #commentform label, .dirty-little-secrets #commentform input#author, .dirty-little-secrets #commentform input#email, .dirty-little-secrets #commentform input#url {
	display: none;
	visibility: hidden;
}


.dirty-little-secrets #comments form#commentform input#submit {
	width: 125px !important;
	height: 21px;
	background: transparent url("../custom/images/confess-button-page.gif") no-repeat top left;
	padding: 0;
	border: none;
	display: block;
	/*border: 1px solid red;*/
	/*text-indent: -9999em;*/

	/* IE */
	overflow: hidden;
	padding-top: 50px;
}

.dirty-little-secrets #comments form#commentform input#submit:hover {
	background-position: top right;
}



/* SIDEBARS */

#sidebars {
	width: 400px;
	float: left;
}


/* MULTIMEDIA BOX */

#video-wrapper {
	margin-bottom: 1.5em;
}

#multimedia_box {
	margin-bottom: 0;
}

#image_box, #video_box, #custom_box {
	padding: 0;
	background-color: transparent;
	line-height: 1px;
	border: none;
}

#video-bottom {
	line-height: 1px;
}



/* SIDEBAR NEWSLETTER BOX */

div#newsletter-signup {
	background-color: #66401c;
	color: #fff;
	padding: 1em;
	margin-bottom: 1.5em;
	margin-top: 0;
	font-size: 1.2em;
	line-height: 1.4em;
}

div#newsletter-signup p {
	margin: 1em 0;
}

form#newslettersignup input#gyuuk-gyuuk { /* email address */
	width: 225px;
	padding: 3px;
	float: left;
}

form#newslettersignup input#newsletter-submit {
	float: left;
	border: none;
	margin-left: 5px;
	cursor: pointer;
}

div.clear {
	clear: both;
	height: 1px;
}





/* SIDEBAR1 */

#sidebar_1 {
	background-color: #e4dbd2;
	padding-top: 1em;
	width: 225px;
	border: none;
}

#sidebar_1 li.widget {
	margin-bottom: 1em;
}

#sidebar_1 h3 {
	font-family: "Arial Black", Arial, sans-serif;
	color: #2a1708;
	text-transform: uppercase;
	margin-bottom: 0;
}

/* Confess */
#sidebar_1 li#text-393816071 h3 {
	display: none;
	visibility: hidden;
}

#sidebar_1 li#text-393816071 p.dls_line1 {
	margin-bottom: 0;
	margin-top: 5px;
}


/* Archives */

#sidebar_1 #archives h3 {
	background: transparent url("../custom/images/archive-sidebar-title.gif") no-repeat top left;
	width: 67px;
	height: 11px;
	text-indent: -9999em;
	margin-bottom: 5px;
}



#sidebar_1 #text-393814191 h3 { /* Facebook */
	display: none;
	visibility: hidden;
}

#sidebar_1 li#text-393814191 {
	margin-bottom: 10px;
}

#sidebar_1 #text-393825601 h3 { /* RSS */
	display: none;
	visibility: hidden;
}

#commentform-sidebar input {
	padding: 0;
}

#commentform-sidebar input#submit {
	border: none;
}

#commentform-sidebar #comment {
	margin-bottom: 1em;
	width: 180px;
}




/* SIDEBAR1 */

#sidebar_2 {
	width: 150px;
	margin-left: 25px;
}


/* Google Ads */

li#text-393960601 h3 {
	display: none;
	visibility: hidden;
}

#sidebar_2 ul.sidebar_list {
	padding: 0;
}




/* END SIDEBARS */


#footer {
	border-top: none;
}










