/*
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/

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
.custom ul#tabs li a {
  text-transform: none;
}
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 #sidebars {
Background-color:#FFFFFF;

}
.sidebar .text_input {
    margin-top: 2em;
}

.custom ul#tabs li a {
  text-transform: none;
}

.format-text h3, .format-text p {
padding-left: 0px;
padding-right: 40px;

.format_text .to_comments a {
    font-size: 4em;
}
.custom .headline_meta {
    font-size: 1em;
    line-height: .5em;
}
/* nav menu */
.custom #header .menu a {
      border-bottom: 1px solid #737373;
      border-top: 1px solid #737373; 
      font-family: 'Amatic SC', verdana, sans-serif; 
}

.custom .menu {border-bottom: 1px solid #737373; border-top: 1px solid #737373; font-family: 'Reenie Beanie', verdana, sans-serif; font-size: 24px;}
.custom .menu a {font-size: 24px;}
    .custom .menu tab .tab-home {color: #273244; }
    .custom .menu tab .tab-1 {color: #f26c25;}
    .custom .menu tab .tab-2 {color: #3ab2b1;}
    .custom .menu tab .tab-3 {color: #dd004d;}
    .custom .menu tab .tab-4 {color: #9bb538;}
    .custom .menu tab .tab-5 {color: #fbc614;
}
.custom .headline_area h1, .custom .headline_area h2, .custom .entry-title h2, .custom #archive_intro h1 {
    font-family: 'Reenie Beanie', Arial,sans-serif;
    font-size: 36px;
}



