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

/* Edit 2.10.2009 */
/* Put a border around my #container div to make it look like a sheet of paper on a blue-ish background  */
.custom #container { 
	border: 2px solid #333333;
	margin-bottom:2em;
	 } 

/* Doesn't seem to work... */
.custom.ie #page {	
	background-color:#FFF;
		}

/* My header + tagline grafisch. */

.custom #header { 
	height:15.4em;
    background: url('images/header.jpg') no-repeat; text-indent: -9999px; /*ik wil de titel en tagline grafisch */
	margin-top:0em;
	margin-bottom:0em;
	border-bottom: none; 
	/* hiermit den header direkt unter der page-linie positionieren:
	position:relative;
	top:-22px; */
	}

/* Classes for aligning images */
.imgleft { float: left; margin-right:1.5em; margin-bottom:1.5em; }
.imgright { float: right; margin-left:1.5em; margin-bottom:1.5em;}

		
.custom h3 { 
color: #2f2f2f;
font-size: 1.1em;
font-weight: bold;

}


/* Link styling
.custom a:hover { color:#6A808D; text-decoration:underline; }


/* make the nav bar less wide so that the search box can get the focus...
See http://diythemes.com/forums/basic-support/12974-search-bar-navigation.html#post65796 */
.custom .menu { 
width:63%; 
}


/* I want the search bar to the right of the nav menu */
/* See http://diythemes.com/forums/customization/11587-search-button.html and
http://diythemes.com/forums/customization/9278-search-box-format-2.html */

.custom .search_form {
float:right;
margin-top:-2.5em; 
} 

.custom .widget_search {height: 1em; list-style:none;}  /* Widget Search */
.custom .widget_search .text_input { 
		color: #000; 
		background: url("images/lupe2.png") 0 0 no-repeat; 
		padding: 6px 10px 10px 40px; 
		width: 22.3em; height: 1.0em; margin-left: 2em;
		}  /* Widget Search */		


	
/* SIDEBAR: Move the sidebar higher up */
	.custom .sidebar ul.sidebar_list {
	    margin-top: -3em; 
	    padding-top: 0; 	    
	    }


/* Sidebar headers */
.custom .sidebar h3 {
    font-weight: normal; color: #990000; padding: 0px 5px; 
	font-family:Verdana,sans-serif; 
	/*font-family:"Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif; */
	font-variant:small-caps;
	letter-spacing:2px;
	font-size:0.9em;
	border-bottom:1px dotted #DDDDDD;
	border-top:1px solid #DDDDDD;
	line-height:1.45455em;
	margin-bottom:1em;
	padding:0.63636em 0.45455em 0.54545em;
	text-transform:uppercase;
	}

.custom .headline_area h1, .headline_area h2 {
	font-family:Tahoma,Geneva,Helvetica,sans-serif;
	}


.custom .wpa_container span.wpa_text {
	font-family:Tahoma,Geneva,Helvetica,sans-serif;
	font-size:1em;
	
	}
		
.custom .wpa_container a {
	text-decoration:none;
	color:#05396B;
	}	

.custom .format_text p.voteme {
/*background: #ffffa0 url('images/lupe2.png') center no-repeat; */
background: #ffffa0;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
/*padding: 5px 5px 5px 45px;} */
padding: 5px 5px 5px 5px;
}

