/*
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/
*/


/* TYPOGRAPHY */
body.custom {
    font-family:        MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
    }


/* NAVIGATION */
.custom .menu{
    margin-bottom:      12px;
    margin-left:        12px;
    }
.custom .menu a{
    margin-right:       4px;
    padding:            7px 12px 4px;
    -moz-border-radius:   6px;
    -webkit-border-radius:6px;
    border-radius:        6px;
    }


/* SINGLE CLOUMN TEASERS */
.custom .teaser {
    width:              100%;
    margin-top:         2.4em;
    padding-bottom:     2em;
    border-bottom:      1px solid #E9E9E9;
    text-align:         justify;
    }
.custom .teasers_box {
    padding-top:        0;
    padding-bottom:     0;
    border-top:         0;
    }
.custom .teaser h2{
    margin-bottom:      8px;
    }
.custom .teaser .post_image_link{
    display:            block;
    float:              left;
    position:           relative;
    margin:             -5px 10px 10px -10px;
    width:              170px;
    height:             170px;
    background:         #FFF url(http://roachpost.com/wp-content/uploads/2010/02/thumbnail-shadow.png) 0 0 no-repeat;
    }
.custom .teaser .post_image_link img.frame{
    margin:             10px 0 0 10px;
    padding:            0;
    border:             none;
    }
.custom .format_teaser{
    margin-top:         12px;
    }
.custom .teaser .teaser_link,
.custom .teaser .custom_sharing_toolbar{
    clear:              left;
    display:            block;
    }

.custom .headline_meta{
    text-transform:     capitalize;
    font-style:         normal;
    font-size:          13px;
    }

.custom .post_box .headline_meta{
    float:              left;
    }

.custom .headline_meta span,
.custom .headline_meta abbr{
    text-transform:     none;
    letter-spacing:     0;
    }

.custom .headline_meta .author{
    color:              #000;
    }

.custom .headline_area .custom_sharing_toolbar{
    overflow:           hidden;
    }

.custom_sharing_toolbar{
    float:              right;
    }
.custom_sharing_toolbar a img{
    margin-right:       8px;
    }

.custom .format_text{
    padding-top:        14px;
    }


/* POST STYLING */
.custom .post_box img.frame{
    margin:             0 0 18px 18px;
    padding:            0;
    border:             none;
    background:         transparent;
    -moz-box-shadow:    2px 2px 8px rgba(0, 0, 0, .6);
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, .6);
    box-shadow:         2px 2px 8px rgba(0, 0, 0, .6);
    }

.custom #trackback_list{
    display:            none;
    }

.custom .headline_area h1{
    margin-bottom:      6px;
    }

/* SIDEBAR */
.custom .sidebar h3{
    margin-bottom:      4px;
    text-transform:     uppercase;
    font-variant:       normal;
    }

.custom .sidebar img{
    margin-right:       6px;
    vertical-align:     middle;
    }