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

/* Font import */

/* @import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz); */
/* @import url(http://fonts.googleapis.com/css?family=Josefin+Sans+Std+Light); */

h1, h2, h3, h4, h5, h6 {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: bold;
}

body.custom {
	background: #333;
}

.custom .page {
	-moz-box-shadow: 0 10px 20px #222;
	-webkit-box-shadow: 0 10px 20px #222;
	box-shadow: 0 10px 20px #222;
}

.custom #content_area {
	background: #cc0000;
}

/* Top Nav bar */

.custom #top_nav_area, .custom #top_nav_area .page {
	background: #cc0000;
	height: 2em;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
/*	font-family: 'Josefin Sans Std Light',arial,serif; */
}

.custom #top_nav_area .page {
	width: 103em;
}

.custom ul#topnav {
	border-style: none;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
/*	background:#E4E4E4 none repeat scroll 0 0; */
	width: 100%;
	float: left;
}

.custom ul#topnav li { float: left; padding: 3px 4.35em; }
.custom ul#topnav li a { font-size: 1em; color: #000; }
.custom ul#topnav li a:hover { text-decoration: underline; }

/* Header */

.custom #header_area {
	background: #fff;
}

.custom #header_area .page {
/*	background: #707070; */
	background: transparent;
}

.custom #header {
	border: 0;
	height: 65px;
	padding-top: 0;
	padding-bottom: 1.1em;
}

.custom #header #logo {
	float: left;
}

.custom #header #logo a {
	display:block;
	height: 64px;
/*	height:66px; */
	background: url(images/have-pack-will-travel-lg.png) no-repeat;
/*	background:url('images/have-pack-will-travel3.png') center no-repeat; */
	text-indent: -9999px;
	padding: 0em;
	border: 0em;
	margin: 0em;
	width: 431px;
}

.custom #header #tagline {
	color: #111111;
	padding-top: 1em;
/*	text-align: center; */
	float: right;
	font-size: 15px;
	font-style: italic;
	width: 510px;
}

.custom #header_right {
	float: right;
	width: 425px;
}

/* Tweet Blend Box */

.custom div.tb_header {
	height: 0px;
}

.custom img.tb_twitterlogo {
	display: none;
}

.custom #tweetblender1 span {
	color:#34CCFF;
	font-size:18px;
	font-weight:bold;
}

.custom div.tb_tweet {
	border-top: none;
}

.custom div.tb_tweetlist {
	border-bottom: none;
}

.custom a.tb_infolink {
	display: none !important;
}
/* Navigation Menu */

.custom #full_width_nav, .custom #full_width_nav .page {
	background: #333333;
}

/* .custom #full_width_nav .page {
	width: 103em;
} */

.custom .menu, .custom .menu a, .custom .menu .current ul a, .custom .menu .current-cat ul a {
	background: transparent;
	border: 0;
	color: #fff;
}

.custom .menu a {
/*	padding: 0.5em 1.2em; */
	padding: 0.5em 1em;
/*	font-family: 'Josefin Sans Std Light',arial,serif; */
}

.custom .menu a:hover {
	background: transparent;
	border: 0;
	color: #cc0000;
}

.custom .menu .rss {
	float: left;
}

.custom .menu .rss a {
	padding: 0.5em 1em;
}

.custom .menu .rss a:hover {
	text-decoration: none;
}

.custom #nav_menu_ads {
	background: #707070;
}

.custom #nav_menu_ads .page {
	background: transparent;
	padding-top: 3px;
	text-align: center;
}

/* Sidebar */

.custom #multimedia_box {
	background: transparent;
	border: 0;
	margin-top: 1.1em;
	text-align: center;
}

.custom .sidebar h3 {
	font-weight: bold;
}

.custom li.widget ul {
	border-bottom: 1px dashed #999999;
}

.custom li.widget ul li {
	border-bottom: 1px dashed #999999;
	margin: 0;
	padding: 0.692em 0;
}

/* Posts */

.custom .headline_area h1, .custom .headline_area h2, .custom .headline_meta, .custom .teaser h2, .custom .sidebar h3, .custom h3 {
/*	text-shadow: 0px 1px 0px #bbb; */
/*	font-family: 'Yanone Kaffeesatz', arial, serif; */
/*	font-family: 'Josefin Sans Std Light', arial, serif; */
}

.custom .headline_area .post_image { 
	-moz-box-shadow: 3px 3px 5px #333333;
	-webkit-box-shadow: 3px 3px 5px #333333;
	box-shadow: 3px 3px 5px #333333;
}

.noshadow .headline_area .post_image {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom .teaser .post_image_link .thumb { 
	-moz-box-shadow: 3px 3px 5px #333333;
	-webkit-box-shadow: 3px 3px 5px #333333;
	box-shadow: 3px 3px 5px #333333;
} 


.custom .format_text .drop_cap {
	padding: 0.04em 0 0 0;
}

.custom .format_text blockquote {
	background:url("images/quote.png") no-repeat scroll 10px top #F0F0E5;
	border:1px solid #C0C09B;
	font-style:italic;
	margin:20px 0;
	padding:20px 20px 20px 65px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	width: 16em;
}

.custom .format_text blockquote p {
	margin-bottom: 0.571em;
}

.custom .format_text img.frame, .custom .format_text .wp-caption {
	background: transparent;
	border-width:0;
	padding:0;
	text-align:right;
}

.custom .format_text img {
	-moz-box-shadow: 3px 3px 5px #333333;
	-webkit-box-shadow: 3px 3px 5px #333333;
	box-shadow: 3px 3px 5px #333333;
}

.custom div.sociable {
	clear:left;
}

.custom .sociable img {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Comments Section */

.custom #commentform input.form_submit:hover {
	color: #cc0000;
}

.custom .avatar img {
	-moz-box-shadow:2px 2px 5px #777777;
	-webkit-box-shadow:2px 2px 5px #777777;
	box-shadow:2px 2px 5px #777777;
	border:1px solid #CCCCCC;
	float: left;
/*	margin-bottom:13em; */
	margin-right:1.833em;
}

.custom dl#comment_list dd {
	border-bottom: none;
}

.custom dl#comment_list dl dt.bypostauthor {
	border: none;
}

.custom dl#comment_list dl dd.bypostauthor > .format_text {
	/* border: 1px solid #BDE0E6; */
	-moz-box-shadow: 5px 5px 10px #BDE0E6;
	-webkit-box-shadow: 5px 5px 10px #BDE0E6;
	box-shadow: 5px 5px 10px #BDE0E6;
	margin-left: 12em;
	border: 1px solid #DDDDDD;
}

.custom dl#comment_list dd .format_text, .custom #dl#comment_list dd #respond {
	-moz-border-radius:1em 1em 1em 1em;
	-webkit-border-radius:1em 1em 1em 1em;
	border-radius:1em 1em 1em 1em;
	-moz-box-shadow:5px 5px 10px #999999;
	-webkit-box-shadow:5px 5px 10px #999999;
	box-shadow:5px 5px 10px #999999;
	background:none repeat scroll 0 0 #EFEFEF;
	border:1px solid #DDDDDD;
	margin-bottom:2em;
	margin-left:9em;
	padding:1.1em;
}

/* AdSense Bottom Right */

.custom .adsense-leadout {
	float: right;
	margin: 5em 1em 0 10em !important;
}

/* Categories */

.custom #archive_info {
	padding: 3em 0 0.7em 1.5em;
}

.custom #archive_info p {
	display: none;
}

.custom #archive_info h1 {
	font-size: 2.8em;
}

/* Footer */

.custom #footer_area .page {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom #footer_area, .custom #footer_area .page {
	background: #333333;
}

.custom #footer_area {
/*	border-top: 15px solid #cc0000; */
}

.custom #footer {
	border: 0;
}

.custom #footer a {
	color: #cc0000;
	border: 0;
}