/*
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/
*/

#header {
background:url('images/header.gif') top left no-repeat;
height:117px;
margin-bottom:-44px;
-moz-border-radius-topright: 5px;
-moz-border-radius-topleft: 5px;
-webkit-border-radius-topright: 5px;
-webkit-border-radius-topleft: 5px;
}

.entry-content {
text-shadow:0px 0px 2px #ffffff;	
}

.headline_area {	
text-shadow:0px 0px 2px #ffffff;
}

#container {
margin-top:20px;
margin-bottom:20px;
border:1px solid #ffffff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

ul.menu {
margin-top:0px;
text-shadow:1px 1px 1px #ffffff;
}

ul.menu li a{
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
-webkit-border-radius-bottomright: 5px;
-webkit-border-radius-bottomleft: 5px;
margin-right:5px;
}

.sidebar h3 {
text-transform:uppercase;
font-size:13px;
}

.field {
width:250px;
padding:5px;
border:0;
margin:0 0 5px 0;
background:#E6E6E6 url('images/magnifier.gif') center right no-repeat;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
font-size:11px;
}

.post_image {
margin-left:-10px;
}

#footer {
background:#e8e8e8;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

#footer div.col {
float:left;
margin:5px 8px 0 0;
padding-left:10px;
text-align:left;
width:280px;
}

#footer div.col h3 {
text-transform:uppercase;
margin-bottom:10px;
padding:5px;
}

#footer div.col ul li{
font-size:12px;
}

#footer div.col ul li a, #footer div.col ul li a:visited {
color:#095eae;
text-shadow:1px 1px 1px #ffffff;
display:block;
padding-bottom:6px;
padding-top:6px;
padding-left:25px;
text-decoration:none;
background:#f1f1f1 url('images/bullet.png') center left no-repeat;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border:0;
}

#footer div.col ul li a:hover {
color:#555555;
background:#f7f7f7 url('images/bullet.png') center left no-repeat;
}

.clear {
clear:both;
}

.custom .teaser 
{
width:100%;
clear:both;
}

.custom .teaser p {
font-size:13px;
line-height:22px;
}

.teasers_box h2 {
font-size:18px;
margin-top:15px;
}

#sidebars {
width:250px;
}

.sidebar {
background:#e8e8e8;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
margin-top:15px;
margin-bottom:15px;
}

.sidebar ul {
margin-left:10px;
margin-right:10px;
}

#content {
width:660px;
}

.teasers_box {
width:660px;
}

/* Style Comments Intro */
.custom .comments_intro p {
  font-size: 18px;
}

/* Style Bracket */
.comments_intro p span.bracket {
  color: #CCCCCC;
}

/* Style "Add One" link */
.custom .comments_intro a {
 color: #2361A1;
 text-decoration: none;
}

span.avatar {
float:left;
margin:0 10px 0 0;
padding-top:5px;
}

p.to_comments {
display:none;
}

.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}
.custom dl#comment_list dd p.reply { margin: 1em 0 1.5em 0; }
.custom dl#comment_list dd p.reply a {background: #e8e8e8; color: #111111;font-size: 11px;font-weight: normal;padding: 4px 6px;text-transform: uppercase;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.custom dl#comment_list dd p.reply a:hover {background:#ffffff; border: 0;}
