/*
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/
*/

/*---:[Sociable Bar Styles]:---*/
div.sociable { margin: 16px 0; }

span.sociable_tagline { position: relative; }
span.sociable_tagline span { display: none; width: 14em; }
span.sociable_tagline:hover span {
	position: absolute;
	display: block;
	top: -5em;
	background: #ffe;
	border: 1px solid #ccc;
	color: black;
	line-height: 1.25em;
}
.sociable span {
	display: block;
}
.sociable ul {
	display: inline;
	margin: 0 !important;
	padding: 0 !important;
}
.sociable ul li {
	background: none;
	display: inline !important;
	list-style-type: none;
	margin: 0;
	padding: 1px;
}
.sociable ul li:before { content: ""; }
.sociable img {
	float: none;
	width: 16px;
	height: 16px;
	border: 0;
	margin: 0;
	padding: 0;
}

.sociable-hovers {
	opacity: .4;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}
.sociable-hovers:hover {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}


/*---:[Comments Diaplay]:---*/

.comments_closed {display: none;}



/*---:[Avatar Styles]:---*/
.custom .avatar {
   float: right;
   margin-right: 0.5em;
   margin-bottom: 0.5em;
}

/*---:[ Start landingpage ]:---*/
.landingpage ul.menu {display: none;}

.landingpage #comments {display: none;}

.landingpage #header { padding: 0; border-bottom: 0em; }

.landingpage #footer { padding-bottom: 0; border-top: 0em; }

.landingpage #footer { display: none; }

.landingpage #sidebars { display: none; border: none; }
.landingpage #tabs {display:none;}

.landingpage #content_box { background:none; }

.landingpage .comments_closed { display: none; }

.landingpage #header #logo { display: none; }

.landingpage #header #tagline { display: none; }

.landingpage #content { margin: 0 auto; float: none; }

.landingpage #content h2, .sale #content h1 { font-size:25pt; text-align:center; font-weight:bold; }

.landingpage a { color: #111; }

.landingpage a:hover { color: ; background: #f2e127; }

body.landingpage { background: #006699; }

.landingpage #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #000; border: 0.0em solid #3e3e3a; }

.landingpage #page { background: #fff; }

.landingpage h1 {
	font-variant: normal;
	text-align: center;
	font-weight: bold;
	font-size: 3.1em;
}

.landingpage h1 {
	text-align: center;
	font: normal bold 30px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.landingpage p.alert {
	text-align: center;
	font: bold 16px "Lucida Grande", Lucida, Verdana, sans-serif;
}

.landingpage #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a;
	width: 600px;
}
.landingpage #content_box { background:none;
	overflow: hidden;
}


/*---:[ End landingpage ]:---*/


