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



/* === FONTS === */

.custom h3 {
font-size:18px;
}
.custom h4 {
color:#95A361;
font-size:18px;
line-height:3em;
}
.custom .sidebar h3 {
color:#456195;
font-size:14px;
font-style: normal;
}

/* === DROPCAP === */

.format_text .drop_cap {
font-family: Optima;
color: #456195;
}


/* === POSTBOX GELIJK LIJNENED AAN FOOTER LINKS === */


.custom .post_box {
padding-left: 25px;
padding-right: 25px;
}


.custom .sidebar ul.sidebar_list {
padding-right: 25px;
}


/* === GETS RID OF COMMENTS REMARK ON PAGE === */
.custom .comments_closed p {display: none ;}

.custom .format_text .to_comments {display: none;}



/* === DELETE NEXT POST | PREVIOUS POST MESSAGE === */

.custom .post_nav .previous {
display: none;
}


.custom .prev_next {
display: none;
}

.custom .prev_next p {
display: none;
}


.custom .headline_meta {
display: none;
}


.custom .headline_area {
display: none;
}


/* === GETTING RID OF LINES === */

.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
border-bottom: 0px;
border-top: 0px;
border-right: 0px;
border-left: 0px;}

.custom #content_box, .custom #column_wrap {
background: none;
}



/* === FEATURE BOX === */


.custom #feature_box {
border-bottom: 1px dotted #bbbbbb;
}

.custom #feature_box {
background: transparent;
font-size:14px;
line-height:2em;
margin:15px;
padding:7px;
}



/* === HEADER === */

.custom #header_area {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#FFFFFF none repeat scroll 0 0;
border-bottom:2px solid #95A361;
padding-top:5px;
margin-bottom: 3em;
}

.custom #header {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/headerlogo.png) no-repeat scroll left center;
height:60px;
padding-top:3px;
}

.custom #header #logo a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
color:#000000;
display:block;
height:70px;
text-indent:-9999px;
}

.custom #header #tagline {
color:#000000;
text-indent:-9999px;
}


/* === NAV BAR === */


.custom .menu {
display:block;
padding-bottom:0;
padding-left:633px;
padding-top:20px;
position:absolute;
z-index:1;
}
.custom .menu .tab {
margin-right:0.5em;
}

.menu a, .menu .current ul a, .menu .current-cat ul a {
font-family: Optima;
font-color: #456195;
}


/* === FOOTER === */


/* footer widget area setup */
#footer_setup {
border-bottom:1px solid #456195;
border-top:1px solid #456195;
color:#000000;
margin-bottom:0;
overflow:hidden;
padding:1em;
text-align:center;
margin-top: 4em;
}


/* widget item setup */
#footer_setup .footer_items {
display:inline-block;
float:left;
font-size:110%;
height:110%;
padding-left: 15px;
padding-right: 15px;
line-height:200%;
text-align:left;
width:160px;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
border-bottom:1px dotted #456195;
color:#456195;
font-size:130%;
font-style: normal;
font-family: Optima, Lucida Grande;
text-transform: uppercase;
letter-spacing:0;
margin-bottom:5px;
padding-bottom:3px;
}


.custom #footer_setup .footer_items ul {
margin:0;
padding:0;
}
.custom #footer_setup .footer_items ul li {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}
.custom #footer_setup .footer_items a:hover {
color:#456195;
text-decoration:none;
}
.custom #footer_setup .footer_items a, a:visited {
color:#000000;
text-decoration:none;
}





