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

/* my picture in the "multimedia box" */
.custom img.multimediabox
{
	border: solid 1px #888888;
	margin-right: 1em;
	margin-bottom: 1em;
	float: left;
}
.custom p.multimediabox
{
	font-size: 10pt;
}
.custom p.multimediabox.title
{
	font-size: 15pt;
	margin-bottom: .25em;
}


/* background */
body.custom { background: #33383a url('images/bg-rock.jpg') 50% 0 no-repeat; }
.custom #container { margin-top: 2em; margin-bottom: 2em; }
.custom #page { background: #fff; }


/* frame around pictures */
.custom .format_text img { background: #eee; border: 0.071em solid #ddd; }
.custom .format_text img.noframe { border: none; }


/* drop caps */
.custom .format_text .drop_cap { color: #888; float: left; font-family: lucida bright; }


/* bulletted sidebar */
.custom li.widget ul { list-style: circle inside; }


/*    Gravatar styling */
.custom #comment_list dt .avatar { margin: 0 1.571em 1.571em 0; float: left; clear: left; }


/* adjust spacing around rss icon */
.custom ul#tabs li.rss a { padding-right: 16px }


/* list of posts in Archives page */
.custom ul.archivelist { margin-top: 2em; margin-left: 5em; list-style: circle inside; }
.custom ul.archivelist .entry-title { font-size: 14pt; }

