/*
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/
*/

/* @group Links */

.custom a:link, .custom a:visited, .custom a:active {
	color: #8d2f25;
}
.custom a:hover {
	color: black;
}

/* @end */

/* @group Header */

.custom #header #logo a { 
	display: block; 
	height: 120px; 
	width: 310px; 
	outline: none; 
}
.custom #header_area {
	background: #d5d5cb;
	background-image: url(images/header.gif);
	background-repeat: repeat-x;
}
.custom #header_area .page {
	padding-top: 0;
}
.custom #header_area #tabs {
	border: 0;
	height: 27px;
}
.custom #header_area #tabs li, .custom #header_area #tabs li:hover{
	background-color: transparent;
	border: 0;
	line-height: 22px;
	-webkit-border-bottom-left-radius: 5px 5px;
	-webkit-border-bottom-right-radius: 5px 5px;
	margin-right: 3px;
}
.custom #header_area #tabs .current_page_item {
	height: 22px;
}
.custom #header_area #tabs .current_page_item, .custom #header_area #tabs li:hover {
	background-color: #8d2f25;
}
.custom #header_area #tabs li a {
	color: #fff;
}
.custom #header_area #header{
	background-image: url(images/logo.jpg);
	background-repeat: no-repeat;
	height: 132px;
	padding-top: 0;
	padding-bottom: 0;
	border: 0;
}
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #logo {float: left;}
.custom #twitterheader { width: 350px; height: 50px;float: right; font-size: 1.3em; background-image: url(images/twitter.png); background-repeat: no-repeat; padding-left: 85px; padding-top: 20px;}

/* @end */

/* @group Content */

.custom div.alert, .custom span.alert {
background: #ffffa0; border: 1px solid #e5e597; padding: 5px; margin-bottom: 10px;
}
.custom ul.feedburner { 
list-style-type:square;
list-style-image: url('images/feedburner.png');
margin: 0px;
margin-left: 25px;
}
.custom #content_area, .custom #footer_area {
 	background-color: #fff;
}
.custom #content_area .page, .custom #footer_area .page {
	background-color: #fff;
}

.custom .trigami {width: 62em; margin-top: 2em; padding: 1em; border-width: 0.1em; background: #eee; border-style: solid; border-color: #ddd;}
.custom .trigami img {float: left; margin-right: 1em; margin-bottom: 1em;}
.custom .trigami abbr, .custom .trigami .edit_post {display: none;}

/* @end */

/* @group Category Nav */

/* Category Nav */
.custom #header_area #categoryNav {
	width: 100%;
	height: 59px;
}

.custom #header_area #categoryNav li a span {
	font-size: 11px;
	color: #9D9D9D;
	font-weight: normal;
}
.custom #header_area #categoryNav #secnav, .custom #header_area #categoryNav #secnav ul {
	padding: 0;
	margin: 0;
	list-style: none; 
	line-height: 1;
}

.custom #header_area #categoryNav #secnav a {
	display: block;
	line-height: 58px;
	padding: 0 20px 0 20px;
	line-height: 16px;
	padding: 14px 20px 11px;
	color: #545454;
}

.custom #header_area #categoryNav #secnav li:hover, .custom #header_area #categoryNav #secnav li.sfhover1 {
	background: url(images/bg_cat_navi_hover.gif) repeat-x;
	cursor: pointer;
}

.custom #header_area #categoryNav #secnav li:hover span, .custom #header_area #categoryNav #secnav li.sfhover1 span {
	color: #fff;
}

.custom #header_area #categoryNav #secnav li {
	float: left;
	font-size: 16px;
	font-weight: bold;
}

/* Style drop down list */

.custom #header_area #categoryNav #secnav li ul {
	position: absolute;
	width: 1em;
	width: 188px;
	left: -999em;
	z-index: 10;
	border: 1px solid #e6e6e6;
	border-width:0px 1px 1px;
}

.custom #header_area #categoryNav #secnav li li {
	font-weight: normal;
}

.custom #header_area #categoryNav #secnav li:hover ul, .custom #header_area #categoryNav #secnav li.sfhover1 ul {
	left: auto;
}

.custom #header_area #categoryNav #secnav li ul li a {
	background: url(images/bg_cat_navi_item.png) repeat-x scroll left bottom;
	line-height: 34px;
	color: #565656;
	font-size: 12px;
	width: 148px;
	padding: 0 20px;
}

.custom #header_area #categoryNav #secnav li ul li a {
}

.custom #header_area #categoryNav #secnav li ul li a:hover {
	background: #D4D4D3;
}

.custom #header_area #categoryNav #secnav li ul ul {
	margin: -35px 0 0 188px;
	border-width:1px;
}

.custom #header_area #categoryNav #secnav li:hover ul ul, .custom #header_area #categoryNav #secnav li.sfhover1 ul ul {
	left: -999em;
}

.custom #header_area #categoryNav #secnav li:hover ul, .custom #header_area #categoryNav #secnav li li:hover ul, .custom #header_area #categoryNav #secnav li.sfhover1 ul, .custom #header_area #categoryNav #secnav li li.sfhover1 ul {
	left: auto;
}

/* IE7 Fix */

.custom #header_area #categoryNav #secnav  li:hover, .custom #header_area #categoryNav #secnav  li.hover {  
	position: static;
}

/* @end */

/* @group Footer Cols */

.custom  #footercols {	width: 100%; margin-top:  5em; display: block; overflow: hidden;}
.custom  #footercols h3 {color: rgb(85, 85, 85); font-size: 1.2em;}
.custom  #footercols .col {width: 310px; padding: 0px 5px;}
.custom  #footercols li.widget .widget_box {	background-color: transparent;	border: 0;}
.custom  #footercols .Footer1, .custom  #footercols .Footer2 {float: left;}
.custom  #footercols .Footer3 {float: left;}

/* @end */

/* @group Plugin:Movie Ratings */
#wp_movie_ratings {border: 0; margin-top: 0px; padding-top: 0px;}
#wp_movie_ratings #reviews {margin: 6px 0px;}
/* @end */

/* @group Plugin:Movie Ratings */
#flickrrss a {margin-right:5px;}
#flickrrss img {
	width: 65px; 
	height: 65px;
	background: #E8E5DC;
	padding: 2px;
	border: 1px solid #E8E5DC;
}
#flickrrss a:hover img {border: 1px solid #922f2a}
/* @end */

/* @group Plugin:iLastFM */
ul#ilastfm li, ul#ilastfm_display li {
	list-style-type: none;
	list-style-image: none;
	display: inline;
}

ul#ilastfm, ul#ilastfm_display {
	margin: 5px 0 0 0px;
	padding: 0;
}

#ilastfm a img, #ilastfm_display a img {
	background: #E8E5DC;
	padding: 2px;
	border: 1px solid #E8E5DC;
	width: 65px;
	height: 65px;
}

#ilastfm a:hover img, #ilastfm_display a:hover img {
	border: 1px solid #922f2a;
}
/* @end */

/* @group PageBar */
.pagebar {
	padding: 0.2em 0.5em;
	border: 0px solid #FEF7F0;
	background: #fff;
	text-decoration: none;
	font-size: 1.3em;
	margin-bottom: 1em;
	margin-top: 2em;
}

.pagebar a, .pageList .this-page {
	border: 0;
	text-decoration: none;
	padding: 0.2em 0.5em;
	-webkit-border-bottom-left-radius: 5px 5px;
	-webkit-border-bottom-right-radius: 5px 5px;
	-webkit-border-top-left-radius: 5px 5px;
	-webkit-border-top-right-radius: 5px 5px;
	background-color: #eee;
}

.pagebar a:visited {
	border: 0;
	text-decoration: none;
	padding: 0.2em 0.5em;
}

.pagebar .break {
	padding: 2px 6px;
	border: none;
	background: #fff;
	text-decoration: none;
}

.pagebar .this-page {
border: 0;
	padding: 0.2em 0.5em;
	font-weight: bold;
	background: #746659;
	color: #fff;
	-webkit-border-bottom-left-radius: 5px 5px;
	-webkit-border-bottom-right-radius: 5px 5px;
	-webkit-border-top-left-radius: 5px 5px;
	-webkit-border-top-right-radius: 5px 5px;
}

.pagebar a:hover {
	background-color: #cccccc;
}

.flickrrssinline {
border-width: 0.071em;
padding: 0.514em;
background-color: rgb(238, 238, 238);
border-color: rgb(221, 221, 221);
border-style: solid;
margin-right: 0.5em;
}

/* @end */