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

.custom { background: #000 url('images/vie_emily_peeking.jpg') left fixed no-repeat; }

.custom #wrap { width: 100%; background: url('images/vie_menubar.jpg') top center repeat-x; }
.custom #container { width: 100%; background: url('images/vie_footer.jpg') bottom center repeat-x; }
.custom #page { width: 760px; margin: auto; background: none; position: relative; }
.custom #content { width: 520px; margin-top: 50px; }
.custom .post_box { padding: 0 0 30px 0; margin: 0; }
.custom #sidebars { width: 210px; margin-top: 118px; }
.custom .sidebar ul.sidebar_list { padding: 0; }

.custom .entry-content a, .custom #sidebars a { font-weight: bold; }

.custom #vie_logo { position: absolute; left: 0; top: 2px; }
.custom #vie_about { position: absolute; left: 355px; top: 19px; }
.custom #vie_contact { position: absolute; left: 442px; top: 30px; }
.custom #vie_archives { position: absolute; left: 580px; top: 24px; }
.custom #vie_search input { position: absolute; left: 520px; top: 5px; width: 240px; height: 20px; background: #fff; border: none; font-size: 11px; color: #bbb; }

.custom .format_text p, .custom li.widget p { margin-bottom: 10px; line-height: 18px; }

.custom .entry-content img { background: #202020; padding: 9px; border: 1px solid #404040; margin-bottom: 10px; }

.custom #text-5 { width: 190px; background: #202020; color: #bbb; padding: 9px; border: 1px solid #404040; }

.custom li.widget ul li { margin: 0; padding: 2px 2px 2px 10px; border-bottom: 1px dotted #404040; }
.custom li.widget ul li a { display: block; }

.headline_meta span, .headline_meta abbr {
font-style:normal;
letter-spacing:normal;
font-size: 14px;
color: #404040;
}

.headline_meta span a { border: none; }

.custom #footer { height: 135px; color: #fff; padding: 20px 0 0 0; border: none; }
.custom #footer a { border: none; }


/*
 * WP-Paginate - WordPress Pagination Function
 * Revision: $Id: wp-paginate.css 153537 2009-09-10 13:26:24Z emartin24 $
 * Copyright (c) 2009 Eric Martin http://www.ericmmartin.com/projects/wp-paginate/
 */
.custom .wp-paginate {padding: 0 0 20px 0; margin:0;}
.custom .wp-paginate li {display:inline; list-style:none;}
.custom .wp-paginate a {background:#202020; border:1px solid #404040; color:#B80000; margin-right:4px; padding:3px 6px; text-align:center; text-decoration:none;}
.custom .wp-paginate a:hover, .wp-paginate a:active {background:#B80000; color:#fff;}
.custom .wp-paginate .title {color:#555; margin-right:4px;}
.custom .wp-paginate .gap {color:#999; margin-right:4px;}
.custom .wp-paginate .current {color:#fff; background:#B80000 ; border:1px solid #fff; margin-right:4px; padding:3px 6px;}
.custom .wp-paginate .page {}
.custom .wp-paginate .prev, .wp-paginate .next {}