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



body.custom {
    background: #130900 url('http://alleyesonjenny.com/i09/bgnew2.jpg') repeat-x; background-attachment:fixed;
}

.custom #page {
   background: transparent;
}

.custom #content_box {
   background: transparent;
}


/*drop cap*/

.format_text .drop_cap { color: #BFBEA3; float: left; }


/* amperstand */
.amp {
font-family:Baskerville,"Goudy Old Style","Palatino","Book Antiqua",serif;
font-size:1.2em;
font-style:italic;
font-weight:normal;
}

/* to comment text*/
.format_text .to_comments a:hover {
color:#ffffff;
text-decoration:none;
}
.format_text .to_comments a {
color:#BFBEA3;
text-decoration:none;
}

.format_text .to_comments span {
color:#17BEA8;
line-height:1em;
}

/*sidebar titles */

.sidebar h3 {
font-size:1.1em;
}

.sidebar h3 {
text-transform:capitalize;
letter-spacing:2px;
}

/* getting weird of weird lines */

#header {
border-color:#DDDDDD;
border-style:none;
clear:both;
}

#header {
border-width:0 0 0 0em;
}

#feature_box, #archive_info, #comment_nav_2 {
border-width:0 0 0em;
}

#footer {
border-color:#DDDDDD;
border-style:none;
clear:both;
text-align:right;
}

/* link treatment */

.format_text a:hover {
text-decoration:none;
border-bottom:0px dotted #63D42A;
}

.format_text a {
text-decoration:none;
border-bottom:1px dotted #63D42A;
}

a, h2 a:hover, #logo a:hover {
color:#63D42A;
}

.sidebar a:hover {
text-decoration:none;
border-bottom:1px dotted #63D42A;
}


/* sidebar titles */
.sidebar h3 {
border-bottom:1px dotted #CCCCCC;
color:#17BEA8;
font-family:georgia,arial;
font-size:11px;
letter-spacing:0;
line-height:150%;
margin:0 0 3px;
padding:0 3px 3px;
text-transform:uppercase;

/*nav menu*/

.custom #nav_area {background:transparent  left 0.5em repeat-x;}
.custom #nav_area .page {width:90em; position:relative; padding-top:0.6em;}
	.custom ul.menu {border-width:0;}
		.custom ul.menu li {}
			.custom ul.menu li a {}
			.custom ul.menu li a:hover {text-decoration:none;}
			.custom ul.menu li a.current:hover {background:transparent;}
			
			.custom ul.menu ul, .custom ul.menu table {visibility:visible; position:relative;}
				.custom ul.menu ul li {border-left:1px solid #222;}
					.custom ul.menu ul li a, .custom .current-parent ul li a {background:transparent;}
					.custom ul.menu ul li a:hover, .custom .current-parent ul li a:hover {color:#999; background:transparent;}
		
		.custom #nav_area div.rss {position:absolute; right:2.2em; top:0.8em; z-index:100;}

		.custom #nav_area .search_box {position:absolute; right:9em; top:0.8em; z-index:100;}
		.custom #nav_area .search_box input {font-size:1.1em; padding:0.5em; width:11.2em;}
		{
		
/*img style */		
		
.custom element.style {
opacity:0.4;}

/* img full opacity */

.custom element.style2 {
opacity:0.0;
}