/*
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.custom {background:#8A3339;}
.custom a {outline:none;}

/*custom nav menu*/
.custom .page { padding-top: 2em; }

.custom menu a {border-style:none;}

.custom ul.menu {
	background: #8A3339;
	list-style: none;
	margin:0 auto;
        height:40px;
        width: 100%;
	padding-left: 0em;
	border-style:none;
	}

.custom .menu .rss {float:right;}

.custom .menu, .custom .menu a, .custom .menu li ul {border-style:none;}

.custom ul.menu li {margin-bottom:0;}
	
.custom ul.menu li a {
	background: #8A3339;
	display: block;
	line-height: 40px;       
        color: #FFFFFF;
	text-transform:	lowercase; 
	text-decoration: bold; 
	padding:0 3px;
	text-align:center;
	letter-spacing: 1.5px;
	font-size: 15px;
        width:160px;
	}
	
.custom ul.menu li a:hover {
	background: #9F99AA;
	color: #ffffff;
	font-style: bold;
	font-size: 20px;
	text-decoration:none;
	}

.custom ul.menu li.current_page_item a { background: #8A3339; color: fc5f0a; }

/*custom nav menu*/

/* Header */

.custom #header_area {margin-top:1em;}
.custom #header_area .page {padding-top:1.1em;}

.custom #header {
	height:200px;
	border-style:none;
	margin:0 auto;
	padding-bottom:10px;
	padding-top:0;
	padding-left:0;
	padding-right:0;
	}

.custom #header #logo a {
	text-align:center;
	display: block; 
	height: 200px;
	width:950px;
	background: url(http://nomadicfoodie.com/wp-content/themes/thesis_17/custom/images/NFHeader4.jpg) no-repeat; 
	outline: none;
	margin:0 auto;
}
.custom #header #logo, .custom #header #tagline { 
	text-indent: -9999px;
	margin:0 auto;
}

/* Social Media Links */
.socialmedia {
	background: url(/images/teaser_bg.png) repeat-x;
	border-top: 1px solid #e1e1e0;
	border-bottom: 1px solid #e1e1e0;
	overflow: hidden;
	padding: 1em;
	text-align: center;
}

.socialmedia p a:hover {
	text-decoration:none;
}

.socialmedia p {
	color: #0B0B0B;
	font-size: 1.3em;
}

span.sharethis {font-weight:bold; padding-right:5px;}
.socialmedia a{ padding-left:18px; line-height:18px;color:#000000;}

a.au_twitter {background:url(images/mini_twitter.png) no-repeat left;}
a.au_facebook {background:url(images/mini_facebook.png) no-repeat left;}
a.au_stumble {background:url(images/mini_stumble.png) no-repeat left;}
a.au_digg {background:url(images/mini_digg.png) no-repeat left;}
a.au_delicious {background:url(images/mini_delicious.png) no-repeat left;}

/* Comment Area */
.custom dl#comment_list dl {background:#99CCFF; padding:5px 0;}

.custom dl#comment_list dl dt, .custom dl#comment_list dl dd .format_text {border-style:none;}

.custom dl#comment_list dd p.reply a {color:#000000;}

.custom .cluv  {
	border:1px dotted #FFFFFF;
	display:block;
	font-size:100% !important;
	padding:5px;
	text-transform:none !important;
	margin-top:5px;
}

/* one column teaser code */

.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #FF0335;
   text-align: justify;
}

.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;
}


