/*
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{
	background:#6A6A6B;
	font-family:Arial, Sans-Serif;
}
.mauve{
	color:#662D91;
}
.pink {
color:#A45BA4;

}
.pink_links a {
color:#92278F;
font-size:1.1em;
}
.pink_links{
	width:220px;
	text-align:right;
	float:right;
	font-size:1.1em;
	margin:5px 20px 0 0;
}
.headline_area h2{
	color:#662D91;
	font-size:1.8em;
	font-weight:bold;
	text-transform:uppercase;
}
div.page{
	background:#FFF;
}

#header_area .page{
	background: #CAC7CF url(images/mystic-header-grad-bg.gif) 0 0 repeat-x;
	height:165px;
	padding-top:0;
}

#header_area .page ul.menu{
	background:#662d91;
	height:35px;
	margin:40px 0 0 0px;
	padding:0;
	width:810px;
	float:left;
}
#top-header{
	width:960px;
	float:left;
	height:25px;
	margin:10px 0 0 0;
	padding:5px 0 0 0;
}
#header_area .page ul.menu li.tab{
display:block;
float:left;
font-weight:bold;
padding:2px 23px 0 19px;
background:#662d91;
color:#C0C2C5;
height:28px;
border-style:solid solid none none;
border-width:1px 1px 0 0;
border-color:#7a36a7;
}
#header_area .page ul.menu li.tab a{
color:#C0C2C5;
text-decoration:none;
background:none;
border:none;
}
#header_area .page ul.menu li.tab a:hover{
color:#FFF;
text-decoration:underline;
background:none;
border:none;
}
#header{
	border:none;
	float:left;
	width:980px;
	padding:0;
	margin:0;
}

#header_area .page ul.menu li.tab ul.submenu {
	background: rgb(146, 39, 143);
}

a#logo{
	display:block;
	float:left;
	width:130px;
	height:80px;
	background: transparent url(images/mystic_logo.png);
	margin:0 30px 0 0;
}
#header p#logo{
	display:none;
}
h1#tagline, p#tagline{
	display:none;
	margin:0 0 20px 10px;
}
#breadcrumbs{
color:#A775CD;
font-size:1.1em;
float:left;
margin:5px 0 0 160px;
}
#breadcrumbs a{
color:#A775CD;
text-decoration:underline;
font-size:1.1em;
}
#sidebars a{
	color:#6A6A6B;
}

#sidebars h3, #latest-posts h3{
	color:#662D91;
	font-weight:bold;
	font-size:12px;
	margin-top:15px;
}
.search_form{
	float:right;
	margin:0 35px 0 0;
}
.search_form .input{
border-left:1px solid #D8D8D8;
border-top:1px solid #B1B1B1;
color:#662D91;
font-size:10px;
font-weight:bold;
margin:0 0 0 0;
padding:2px;
width:160px;
float:left;
}
li.widget .widget_box {
	background-color:#EFEFEF;
	border:1px solid #CCC;
}
li.rss a{
	background-image:none!important;
	color:#C0C2C5;
	text-decoration:none;
	background:none;
	border:none;
	padding:10px 30px 0 0;
}

/* remove the 'COMMENTS ON THIS ENTRY ARE CLOSED' crap */
.custom .comments_closed p {
  display: none;
}

.homepage_custom .headline_area {
   display: none;
}

.homepage_custom .post_box {
   padding: 0;
   margin: 0;
}

.homepage_custom .orb-image {
	margin-left: -22px;
}

/* homepage css stuff */
#left-feature {
	float: left;
	width: 400px;
	padding-left: 20px;
}

#right-feature {
	float: right;
	width: 480px;
	border-left: 1px solid #ccc;
	padding-left: 20px;
}

#latest-posts ul {
   list-style: none;
   margin: 0;
   padding: 0;
}

#latest-posts ul li:before {
	content: "\00BB \0020";
	}

#latest-posts a {
	color: rgb(146, 39, 143);
	text-decoration: none;
}

#right-feature a {
  	color: rgb(146, 39, 143);
}

#right-feature {
	color: rgb(106, 106, 107);
}

#content ul {
	list-style-type: none;
	margin: 0;
	margin-bottom: 1em;
}

/* Social Media Stuff */
/* http://www.mysticcoders.com/wp-content/uploads/2010/02/social_sprite.png */


.social_button {
	background: url('/wp-content/uploads/2010/02/social_sprite.png');
	float: left;
	margin: 2px;
}

.social_image {
	height: 49px;
	width: 49px;
}

.social_twitter {
	background-position: 0 -324px;
}
.social_facebook {
	background-position: 0 -162px;
}

.social_rss {
	background-position: 0 -270px;
}

.social_gbuzz {
	background-position: 0 -432px;
}

.social_linkedin {
	background: url('/wp-content/uploads/2010/02/linkedin_icon.jpg');
	float: left;
	height: 49px;
	margin-bottom: 5px;
} 
