/*
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: &lt;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; }	&lt;;--- 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/
*/

/* Add header image. */
.custom #header {
 border: none;
 background-image: url(http://www.flavor-junkie.com/wp-content/themes/thesis_17/custom/images/FJHeader.jpg);

 background-repeat: no-repeat;
 height: 140px;
 padding: 2px;
 
position: relative;
}

.custom #header #logo a {
 
text-indent: -9999px;
 width: 959px;
 height: 140px;
 display: 
block;
 float: left;
}

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

/* Original Code to Add background to sidebar title */
/*.custom .sidebar h3 { font-weight: bold; padding: 0px 5px; background: #14cc14; }*/

/*Add border to sidebar title*/
.custom .sidebar h3 {
	 font-weight: bold; text-align: center; border:1px solid #14cc14; background: #efefef;
}


/*Remove sidebar 1 left padding*/
.custom #sidebar_1 ul.sidebar_list {
	padding-left: 0em; }

/*Remove sidebar 2 right padding*/
.custom #sidebar_2 ul.sidebar_list {
	padding-right: 0em; }

/*Reduce padding/margin between sidebar 1 widgets*/
.custom #sidebar_1 li.widget {
	margin-bottom: 1.75em }

/*Right justify post date*/
.custom .headline_meta {
text-align: right; }

/*Add padding to top of post date*/
.custom .headline_meta {
	padding-top: 0.5em; }


/*Remove brackets from comments.*/
.custom .comments_intro p span.bracket {
display:none;
}

/*Change comments intro font size*/
.custom .format_text .to_comments span { font-size:1.2em; }

/*Right justify comments, Capitalize, Change font size*/
.custom .format_text .to_comments { text-align: right; text-transform: uppercase;  font-size: .78em; }

/*Add dotted line above comments on home page*/
.custom .to_comments { border-top: 1px dotted #666666; }

/*Remove comment borders
.custom #comments dd.comment { border-bottom: none; }*/

/*Remove Leave a Comment border*/
.custom div#respond form#commentform { border: none; }

/*Add headline border*/
.custom h2.entry-title { border-bottom: 1px solid #c012c0; }

/*Add headline border to full page post*/
.custom .headline_area h1 { border-bottom: 1px solid #c012c0; }

/*Remove dotted border at end of post*/
.custom .post_box  { border-style: none; }

/*Remove underline for links*/
.custom .format_text a {
	text-decoration: none;}

/*Add padding to end of posts*/
.custom .post_box {
	padding-bottom: 2em}

/*Change Tag format to match Categories*/
.custom .format_text .post_tags {
	font-size: 1em; color: #111111; }

/* Re-style comments */
.custom dl#comment_list .comment-author-admin { background: #d5abff; }

.custom dl#comment_list dt .comment_author {
	font-size: 1.2em; color: #4d4d4d; }

.custom dl#comment_list .comment_num a {
	color: #888888; }

.custom dl#comment_list dd {
	padding-top: 0.3em; }

.custom dl#comment_list dt {
	padding-top: 0.5em; }


/* NUMBERED PAGE NAV */
.page-nav { font-size: 1.2em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 1.8em; background: #efefef; border: .1em solid #14cc14; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #14cc14; }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #efefef; border: .1em solid #14cc14; }
.elipses { float: left; padding: .3em .2em; }

/*Re-size slickr flickr plugin*/
.custom .slickr-flickr-slideshow.landscape.small div img { width: 100% }
.custom .slickr-flickr-slideshow.landscape.small { height: 175px; }

/*Remove hyperlink underline in sidebar*/
.custom li.widget p a { text-decoration: none; }


