/*
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/
*/

/* style the header & tagline */ 
.custom #header {
	text-align: center;
	text-indent: -140px;
}

.custom #header #tagline {
	text-indent: 135px;
	text-transform: lowercase;
}

/* style the menu & make it display horizontally */ 

.menu a {
	padding: 0px;
	margin-bottom: 0.7em;
}

.menu li {
	width: 100%;
}

.menu li a:hover, .menu .rss a:hover {
	text-decoration: none;
}

.menu .children {
	float: right;
	text-align: right;
}

/* style sidebar */ 
.sidebar li.widget li {
	margin-left: 1em;
	margin-bottom: 0.7em;
}

.sidebar li.widget {
	margin-bottom: 0.7em;
}

.sidebar h3 {
	font-variant: normal;
	text-transform: uppercase;
	margin-bottom: 0.7em;
}

.sidebar li.widget ul {
	margin-bottom: 0.1em;
}

.sidebar li.widget {
	margin-bottom: 2em;
}

/* indent byline */ 
.headline_meta {
	text-indent: 25px;
}

/* indent teaser link */ 
.teaser .teaser_link {
	padding-left: 25px;
}

/* style comment form and submit button */ 
#commentform {
	border: none;
}

#commentform input.form_submit {
	color: #D54E21;
	display: block;
}

input.form_submit {
	background: #FFFFFF;
	border: none;
}

input, textarea {
	background: #FFFFFF;
}

h2 {
	font-weight: bold;
}

/* put previous and next post links on same line */ 
.prev_next {
	text-align: right;
}

.prev_next .previous {
	text-align: left;
	width:50%;
	float: left;
}

/* post box */
.post_box {
	padding-bottom: 4em;
}

/* social media page */
.social-media-icons img {
	padding-left: 3px;
}
