/*
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/
*/

.custom {
	background-color: #44125F;
	font-family:"helvetica neue",helvetica, arial, sans-serif;
}

.custom #container {
	width:1000px;
}

.custom #page {
	background:none;
}

.custom #content_box {
	background: #fff;
}

.custom #content {
	padding:20px 0 0 20px;
	width:60em;
}

.custom a {
	color:#934Fb6;
}

.custom a:hover {
	color:#099;
}

.custom .headline_area a {
	color:#934Fb6;
}

.custom .sidebar h3 {
	background:url("images/sidebar.gif") no-repeat scroll left top transparent;
	color:#44125F;
	font-family:sandraoh;
	font-size:16px;
	font-variant:normal;
	height:32px;
	letter-spacing:0;
	line-height:32px;
	margin-left:-20px;
	padding:0 20px;
	text-transform:capitalize;
}

.custom #archive_info h1 {
	font-size:30px;
	font-family:sandraoh;
	color:#5E098B
}

.custom .headline_area h1 {
	font-size:30px;
	font-family:sandraoh;
	color:#5E098B;
}

.custom h2.entry-title {
	font-size:30px;
	font-family:sandraoh;
}

.custom .teasers_box h2.entry-title {
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size:20px;
	text-transform:none;
}


.custom #header {
	background:url("http://freeanissa.com/wp-content/uploads/2010/07/header02.jpg") no-repeat scroll center center #FFFFFF;
	border:medium none;
	height:152px;
	padding:10px 0;
}

.custom p#logo {
	height:152px;
	width:1000px;
}

.custom p#logo a {
	text-indent:-9000px;
	height:152px;
	width:1000px;
	position:absolute;
}

.custom h1#logo {
	height:152px;
	width:1000px;
}

.custom h1#logo a {
	text-indent:-9000px;
	height:152px;
	width:1000px;
	position:absolute;
}

.custom .menu {
	background:#fff;
	height:35px;
	border:none;
	border-top:solid 2px #934Fb6;
	border-bottom:solid 2px #934Fb6;
}

.custom .teaser_author a {
	color:#C60;
}

.custom .teaser_date {
	clear:both;
}

.custom .menu li {
	border-right:none;;
	border-left:none;
	line-height:35px;
	font-size:12px;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
}
.custom .menu a {
	color:#5C255D;
	letter-spacing:0;
	background:none;
	border:none;
	padding: 0 15px;
	line-height:35px;
	text-transform:none;
	
}

.custom .menu li a:hover {
	color:#099;

}

.custom .menu .current a {
	color:#099;
}

.custom .menu .rss {
	border-right:none;
	margin-right:10px;
}

.custom .menu .rss a, .menu .rss a:hover {
	background:url("../lib/images/icon-rss.gif") no-repeat scroll 100% 50% transparent;
	padding-right:16px;
}

.custom #archive_info p {
	display:none;
	}
	
.custom #footer li {
	float:left;
	padding: 5px 10px;
	list-style:none;
}

.custom #footer li a {
	font-size:11px;
	text-decoration:none;
}

.custom #footer li a:hover {
	color:#fff;
}

.custom #footer p {
	clear:both;
}

.custom #sidebars  {
	border-color:#fff;
	background:url(images/butterfly.jpg) bottom right no-repeat;
}


/*avatar styles*/
.custom .avatar {
   float: left;
   margin-right: 0.5em;
   margin-bottom: 0.5em;
}

.custom .sidebar input[type="text"] {
	font-family:"helvetica neue",Helvetica,Arial, sans-serif;
	font-size:11px;
	width:150px;
	margin-top:-10px;
}

.custom .format_text .to_comments span.bracket {
	display:none;
}

.custom .format_text .to_comments {
	background:url(images/sidebar.gif) no-repeat;
	padding:6px 30px;
	font-size:12px;
	font-weight:bold;
}

.custom .format_text .to_comments span {
	font-size:inherit;
}

.custom .comments_intro p {
		background:url(images/sidebar.gif) no-repeat;
	padding:6px 10px;
	font-size:12px;
	font-weight:bold;
}

.custom .comments_intro span.bracket {
	display:none;
}

