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

* {
cursor:crosshair !important;
}
 body { background: #eeeddb; color: #111; font-size: 62.5%;font-family:"Trebuchet MS","Times New Roman",Times,serif; }
a:link, a:visited, a:active {
text-decoration:none;
}

a {
color:#8A5C08;
outline-style:none;
}
 #container { width: 1000px; margin: 18px auto 0;  border: solid 10px #fff;}
	#page { background: #fff; padding: 0px; }
	#header { height: 145px; background: #fff url(../images/header_bg.png) no-repeat; }

   #content_box{
    background: none;
   }

#sidebars form.search_form input.text_input {
background:#FFFFFF url(images/magnifier_icon.gif) no-repeat scroll 2px 50%;
color:#837D7D;
padding:3px 0 3px 17px;
width: 170px;
border:  2px inset;
}

div#sidebars ul li h3 {
color:#3D3832;
font-family:Georgia,"Times New Roman",Times,serif;
font-size:14px;
font-weight:normal;
letter-spacing:0.08em;
margin:0 0 4px;
text-transform:uppercase;
}


div#sidebars h2.feed a, div#sidebars h2.feed a:hover {
color:#AE6C1F;
margin-top:-15px;
}
div#sidebars h2.tweet a, div#sidebars h2.tweet a:hover {
color:#8A5C08;
padding-bottom:10px;
}
div#sidebars ul li h2 {
color:#3D3832;
font-family:Georgia,"Times New Roman",Times,serif;
font-size:16px;
font-weight:normal;
line-height: 12px;

margin:0 0 5px;

}


div#sidebars h2.feed a, div#sidebars h2.tweet a, div#sidebars h2.feed a:hover, div#sidebars h2.tweet a:hover {

display:inline-block;
font-family:Georgia,"Times New Roman",Times,serif;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:italic;
font-variant:normal;
font-weight:normal;

line-height:12px;
margin:0;
padding:0;
text-decoration:none;
text-transform:lowercase;
letter-spacing:0.08em;
}




div#sidebars a.feed_button img, div#sidebars a.tweet_button img {
border:medium none;
position:relative;
top:16px;
}

 li.widget, div#sidebars ul li.about{
 margin-bottom: 0px;
 border-bottom:1px solid #CCCCCC;
padding-bottom:10px;
}

li.widget ul li {
margin-bottom:5px;
}
li.widget p{
 margin: 0px;
 padding: 0px;
}
div#sidebars ul li img.photo {
border:4px solid #CCCCCC;
display:block;
float:left;
margin:5px 15px 5px 0;
}
div#sidebars ul li.about p{
 display: block;
 height: 170px;
 margin-top: 15px;
color:#837D7D;
font-size:11px;
line-height:1.4em;
padding:0;
}
a.thickbox{
 color:#8A5C08;
}
/* CALENDAR */
table#wp-calendar {
	padding: 15px 15px 15px 0;
	text-align: center;
	width: 100%;
    border-collapse: separate;
}
table#wp-calendar caption{
	color: #8a5c08;
	font-size: 15px;
	margin: 10px 0;
   background: none;
}
table#wp-calendar th {
	background: #8a5c08;
	color: #fff;
   font-size:12px;
}
table#wp-calendar a {
	color: #8a5c08;
	margin: 5px 0;
	text-align: left;
}
div#sidebars table#wp-calendar td {
padding:7px 14px 7px 0;
}