/*
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 .clear {
    clear:both;
    height:0px;
    width:0px;
    padding:0;
    margin:0;
}

.custom #header {
    padding-left:0px;
    padding-bottom:.8em;
    border-bottom:1px solid #111;
}


.custom #logo a {
    text-transform: lowercase;
    font-weight: normal;
    font-family: "Arial Narrow",Arial,"Helvetica Neue",Helvetica,sans-serif;
    letter-spacing:15px;
    font-size:45px;
}

.custom .menu {
    margin-bottom:4.4em;
}

.custom .menu a:hover {
    border-top:3px solid #6A160D;
}

.custom .menu a {
    text-transform: lowercase;
    font-size:20px;
    font-family:"Arial Narrow",Arial,"Helvetica Neue",Helvetica,sans-serif;
    padding:0.236em 0em .136em 0em;
    margin-right:2em;
    border-top:3px solid transparent;
    _border-top:3px solid #EBE8D8;
}

.custom .menu .current a {
    border-top:3px solid transparent;
}

.custom .menu li ul {
    border:1px solid #808000;
}

.custom .menu ul, .custom .menu ul li {
    width: auto !important;
    background-color: #F2F0E4;
}

.custom .menu ul li a, .custom .menu ul li a:hover {
    padding:.636em 10px;
    background-color: #F2F0E4;
    margin-right:0px;
}

.custom .menu ul li a:hover {
    border-top:3px solid transparent;
    text-decoration:underline;
}

.custom .menu ul li.current a:hover {
    text-decoration: none;
} 

.custom .headline_area h1, .custom .headline_area h2 {
    font-size:28px;
    text-transform: lowercase;
    font-weight: normal;
    font-family: "Arial Narrow",Arial,"Helvetica Neue",Helvetica,sans-serif;
    letter-spacing:10px;
    line-height:1em;
} 

.custom #multimedia_box {
    margin:0px 0px 5em 0px;
    padding:0px;
}

.custom #multimedia_box img {
    border:3px solid #808000;
    padding:1px;
}

.custom .post_box {
    padding-top:0px;
}

.custom #sidebars {
    border-right:1px dotted #808000;
    width:26.5em;
    margin-top:8px;
    font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
}

.custom .sidebar h3, 
.custom .sidebar h4 {
    text-transform: lowercase;
    font-variant: normal;
    letter-spacing:4px;
    font-size:20px;
    color:#808000;
    font-family: "Arial Narrow",Arial,"Helvetica Neue",Helvetica,sans-serif;
    margin-bottom:.2em;
}

.custom .sidebar h4 {
    font-size:18px;
}

.custom .sidebar ul.sidebar_list {
    padding:0em 0px 0px 0px;
}

.custom .with_frm_style .submit input[type="submit"], .custom .frm_form_submit_style {
    background-color:#6A160D;
    color:#ffffff;
    padding:5px 5px 8px;
    font-weight:bold;
}

.custom .sidebar-books {
    border-top:1px dotted #808000;
    padding-top:10px;
    position:relative;
    vertical-align: top;
    margin-right:25px;
    width:240px;
    height:118px;
}

.custom .sidebar-books img {
    margin:0px 10px 10px 0px;
}

.custom .sidebar-books span {
    position:absolute;
    left:80px;
    bottom:3px;
    *bottom:0px;
    font-size:11px;
}

.custom .format_text h2, .custom .format_text h3, .custom .format_text h4, .custom .format_text h5 {
    color:#808000;
    text-transform: lowercase;
    font-family:"Arial Narrow",Arial,"Helvetica Neue",Helvetica,sans-serif;
    letter-spacing:2px;
    font-weight:normal;
}

.custom .format_text h2 {
    font-size:24px;
    margin-top:1em;
}

.custom .format_text h6 {
    color: #000000;
    text-transform: none;
    font-size: 12px;
}

.custom .format_text a {
    text-decoration: none;
}

.custom .format_text a:hover {
    text-decoration: underline;
}

.custom .with_frm_style .form-field input[type="text"], 
.custom .with_frm_style .form-field input[type="file"], .custom .with_frm_style .form-field select, 
.custom .with_frm_style .form-field textarea, 
.custom .frm_form_fields_style, 
.custom .frm_form_fields_active_style, 
.custom .frm_form_fields_error_s {
    background-color:#FFFFEF;
}