/*
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/
*/

/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#CC2229 none repeat scroll 0 0;
width: 100%;
float: right;
}
.custom ul#topnav li { float: right; padding: 3px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 2em; color: #ffffff; font-weight: normal; font-type: verdana; }
.custom ul#topnav li a:hover { text-decoration:underline; } 

.custom .li#cat1_topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#FFDB63 none repeat scroll 0 0;
width: 20%;
float: left;
}


/* Customize the appearance of the navbar */
.custom .menu {
background:#000000 none repeat scroll 0 0;
width: 99%;
float: left;
font-weight: bold;
padding: 0 1.1em 0 0;
}

/* Nav Search */
.custom ul.menu li.nav_right {
  float:right;
  font-size:10px;
  height: 22px;
  overflow:hidden;
}

.custom ul.menu li.search {
  background-color: #F2F2F2;
  border-bottom:none;
  height:25px;
  margin-bottom:0;
}

.custom ul.menu li.search input {
  background-color: #F2F2F2;
  color:#333;
  font-size:10px;
  height:22px;
  letter-spacing:1px;
  padding:4px 10px 0 22px;
  width:250px;
}

/* Change the color of the sidebars */
.custom #content_box {background-color: #FFFFCC; }
.custom #content {background-color: #fff;}

/* Remove the outline around links */
.custom a {outline: none;}

/* Justify text in teasers */
.custom .teaser { text-align: justify; }

/* Change the formatting of teaser titles */
.custom .teasers_box h2 a { color: #890304; font-weight: bold; }
.custom .teasers_box h2 a:hover {
  color: #890304;
}

/* Featured Post Formatting */

.custom #feature_box {  padding:1em; }

.custom #my-feature-box1 { width:90%; padding-left:1em; }
.custom #my-feature-box,#my-feature-box1  {float:left;  font-family: Helvetica,Arial,sans-serif; color: #ffffff; background: #111; padding: 22px 15px 22px 15px; }
.custom #my-feature-box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #my-feature-box h2 a,#my-feature-box a  { color: #fff; text-decoration: none; }
.custom #my-feature-box h2 a:hover { color: #fb0; }
.custom #my-feature-box p {color:#fb0;  font-size: 1.5em; line-height:1.5em; text-align: justify;}
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; }