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

body {
  background: #D3E4EA url("images/bg_tile.gif") left top repeat-x;
  border-top: 0.5em solid #01142B;
}

.custom #header {
  position: relative;
}

.custom #header {
  background: #fff url("images/header_background.jpg") left top no-repeat;
  height: 94px;
  margin: 0;
  padding-top: 0;
  border-bottom: none;
}

.top-nav {
  position: absolute;
  top:0;
  right:0;
  background-color: transparent;
  text-align: right;
  font:bold 13px arial,sans-serif;
  color:#000;
  padding:3px 6px 3px 4px;
}

.top-nav a {
  font:bold 11px arial,sans-serif;
  text-decoration:none;
  color:#666;
}

.top-nav a:hover {
  color: #003399;
  text-decoration: none;
}

.custom #container{
  margin-top: .75em;
  border: 10px #8092A6 solid; 
}

.custom .menu {
  border-bottom: 1px solid #00010C;
  background: #fff url("images/menu_background.jpg") left top repeat-x;
}

.custom .menu li a {
  border-top: 1px solid #023A65;
  border-bottom: none;
}

.custom .custom_box { border: 1px dashed #ccc; }
.custom #sidebars { border: 0; }
.custom #sidebars h3, .custom #sidebars h3 a { font-variant: normal; letter-spacing: 0; color: #053E73; padding: 0.5em 0; text-decoration: none; border-bottom: 1px solid #ddd;}
.custom #sidebars h3 a { border: 0; padding: 0; }
.custom #sidebar_about h3 { font-size: 1.6em; margin: 0 0 0.75em 0; line-height: 1.5; }
.custom #sidebar_about img { float: left; margin: 0 1em 0 0; }
.custom #sidebar_about p { font-size: 1.2em; line-height: 1.385em;}

.custom ul.sidebar_list {
  padding: 0;
}

.custom .menu .rss {
  padding-right: 7px;
  margin-right: 1em;
  background-color: #fff;
}
.custom .menu li.rss a {
  border-top: none;
  border-bottom: none;
}

.custom ul.findme { margin: 0 0 0 1em; }
.custom ul.findme li a { line-height: 24px; margin: 0 0 0.5em; font-size: 1.1em; }
.custom ul.findme li a span { background: url("images/socialmedia.png") 0 0 no-repeat; width: 24px; height: 24px; display: block; float: left; margin: 0 10px 0 0; }
.custom ul.findme li.facebook a span { background-position: -48px -24px; }
.custom ul.findme li.facebook a:hover span { background-position: -48px 0; }
.custom ul.findme li.twitter a span { background-position: 0 -24px; }
.custom ul.findme li.twitter a:hover span { background-position: 0 0; }
.custom ul.findme li.linkedin a span { background-position: -24px -24px; }
.custom ul.findme li.linkedin a:hover span { background-position: -24px 0; }
.custom ul.subscriptions li { float: left; width: 40%; }
.custom #sidebars li.rss { background: url("images/feed.png") 0 0 no-repeat; padding: 0 0 0 24px; }
.custom li.email { background: url("images/email.png") 0 0 no-repeat; padding: 0 0 0 24px; }
.custom a.links { background: url("images/chain.png") 0 0 no-repeat; padding: 0 0 0 24px; }

.custom #page{
  padding: 1px;
  background-color: #023A65;
  border: none; 
}

.custom #sidebars {
  padding-top: .2em;
  padding-right: 1.3em;
}

.custom .post {
  padding-top: .5em;
}

.custom #content_box {
  background-color: #fff;
  padding-top: 1.2em;
}

p.to_comments {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1.25em;
  margin-bottom: .5em;
}