/*
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/
*/




/*---:[ header and nav menu ]:---*/
.custom #header { position:relative; }
.custom #header {padding: 0em;}
.custom #header {border-bottom:none;}
#header_area { border-top: 3px solid #28bdb5; }

.custom #nav_area {background:#CFEBE2; border-bottom:0px solid #CFEBE2; padding-top:0px;}
.custom #nav_area .page {background:transparent;}
.custom ul#tabs {border-bottom:0; border-color:#CFEBE2;}
.custom ul#tabs li {border-color:#CFEBE2; background-color:#E6DEC0;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#fff;}




/*---:[ logo and header ad ]:---*/
.custom #header_area { background: none; padding-top: 5px; }
.custom #header { background: #ffffff; padding-top: 3px; height: 115px; }
.custom #header #logo a { float:left; display:block; height:70px; color:#000000; text-indent: -9999px; }
.custom #header_ad { float:right; padding-top: 10px; padding-right: 0px; margin-bottom: -120px; }



/*---:[ headlines ]:---*/
.custom .headline_area h1 { font-size: 3.25em; letter-spacing: -1px; line-height: 1em; }
.custom .headline_area { background: url(images/post_line.png) no-repeat bottom; text-align: center; padding-bottom: 1em; margin-bottom: 1em; }
.custom .headline_meta {color: #9b9b99;}
#text-10 a:hover { text-decoration: none; text-shadow: 1px 1px 1px #28bdb5; }


/*After click - headline*/
.custom h1 { color: #504d48; }





/*---:[ Content area ]:---*/
.custom h2 a { color: #28bdb5;  }
.custom h2 a:hover { text-decoration: none; text-shadow: 1px 1px 1px #504d48; }
.custom h2.entry-title { font-size: 3.25em; letter-spacing: -1px; line-height: 1em; }

	



/*---:[ comment styles ]:---*/
.custom .comment_author a.url:hover { color: #28bdb5; }		
.custom .avatar img { border:1px solid #28bdb5;	padding:1em; }	
.custom #commentform input.form_submit:hover { color: #28bdb5; }
.custom dl#comment_list dt span { font-size:1.2em; text-transform: uppercase; letter-spacing: 1px; }




/* HIGHLIGHT AUTHOR COMMENTS */
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}





/*---:[ Footer ]:---*/
.custom #footer_area {background:#FFFFFF; padding:0.5em 0; border-top:2px solid #28bdb5;}
.custom #footer_area .page {background:transparent;}
.custom #footer {border-top:0;}

#footer_1 {text-align:left; color:#333;}
.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
.custom #footer_1 ul.sidebar_list li.widget h3 {color:#222;}
.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}





/*---:[ Sidebar ]:---*/
.custom li.widget ul li {border-bottom:1px solid #DDDDDD;margin-bottom:0px;margin-top:1px;}
.custom li.widget ul li:hover {background:#CFEBE2;}
.custom .sidebar h3 { border-top: #7FA862 dotted .5px; border-bottom: #7FA862 dotted .5px; padding-left: 5px; font-size: 14px; letter-spacing: 1; }





/* LEFT SIDE SOCIAL ICONS */

.custom #feedback { background: transparent; width: 5em; position: fixed; top: 40%; left: 0.25%; }

.custom #feedback a { display: block; text-indent: -9999px; height: 50px;}

.custom #feedback #rss { background: url('http://kirantarun.com/wp-content/themes/thesis_17/custom/images/rss.png') no-repeat 0 0px; }
.custom #feedback #rss:hover { background-position: 0 1px; }

.custom #feedback #twitter { background: url('http://kirantarun.com/wp-content/themes/thesis_17/custom/images/twitter.png') no-repeat 0 0; }
.custom #feedback #twitter:hover { background-position: 0 1px; }

.custom #feedback #facebook { background: url('http://kirantarun.com/wp-content/themes/thesis_17/custom/images/facebook.png') no-repeat 0 0; }
.custom #feedback #facebook:hover { background-position: 0 1px; }

.custom #feedback #email { background: url('http://kirantarun.com/wp-content/themes/thesis_17/custom/images/email.png') no-repeat 0 0; }
.custom #feedback #email:hover { background-position: 0 1px; }





/*---:[ This creates border around image ]:---*/
.custom .format_text img.center, .custom .format_text img.aligncenter, .custom .wp-caption.aligncenter {
	padding: 1em;
	background: #fff;
	border: 1px solid #28bdb5;
	}

.custom .title-avatar {float:left; width:5em; margin-right:1em;}





/*---:[ Recent comments widget ]:---*/
#recent-comments a { font-size: 1.1em; }
#recent-comments a:hover { text-decoration: none; text-shadow: 1px 1px 1px #28bdb5; }
#recent-comments img { border: 0.2em solid #E7F8FB; float: right; margin-left: 0.6em; }
#recent-comments li { padding-bottom: 0.6em; }




