/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

body.custom { background: #efefef; }

.custom #page {
	background:#FFFFFF none repeat scroll 0 0;
	outline-color:#DDDDDD;
	outline-style:solid;
        outline-width:1px; }
        
        .custom #container {
         margin:2.5em auto; }



.custom .flickrImage img {
	margin-top: 0px;
	margin-left: 0px;
	width: 50px;
	height: 50px;
	border: 1px solid #ccc; }
	
	
	.custom #header #logo { 
	font-family:Georgia,"Times New Roman",Times,serif;
	font-size:2.2em;
        line-height:1.2em; }


        
        .custom li.widget li {
         border-bottom:1px dotted #CCCCCC;
         }




.custom #footer {text-align:center;}
.custom #footer ul, .custom #footer li {display:inline;}
.custom #footer a { border-bottom:none; }


.custom .teaser .teaser_author {
margin-right:4px; }


.custom ul#tabs li a:hover {color: #000; text-decoration: underline; background-color: #ccc; }

.custom ul#tabs li.rss a:hover { background-color: #fff; color: #111; }


.custom .format_text p.alert {
background:#F7F3E2 none repeat scroll 0 0;
border:1px solid #DDCE93; }

.custom .format_text p.note {
background:#F0F0F0  none repeat scroll 0 0;
border:1px solid #DDCE93; }

.custom .sociable-hovers {
opacity:0.9; }



.custom li.widget ul li {
margin-bottom:0;
padding:0;
}

.custom li.widget ul li a {
display:block;
padding:4px;
margin-bottom:0;
}

.custom li.widget ul li a:hover {
color: #000;
background-color: #F8F8F8;
text-decoration:none;
}

