/*
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 h1#tagline {
    margin-left: .3em;
    color: #787878;
    font-weight: bold;
}

.custom h2.entry-title {
    background-color: #EDEDED;
}

.custom .sidebar h3 {
    background-color: #626945;
    color: #FFFFFF;
    padding: .3em .5em;
    font-weight: bold;
}

.custom div#page {
    background-color: #ACB58C;
    padding-top: .15em;
}

.custom div#header {
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 138px;
    background-color: #FFFFFF;
    background: url('/images/header.png') no-repeat top center;
}

.custom div#container {
    border-color: #555946;
}

.custom div#content_box {
    background-color: #FFFFFF;
}

.custom ul.menu {
    background-color: #7c0e01;
    padding: .25em;
    border: none;
}

.custom li.rss a, .custom li.rss a:visited {
    color: #FFFFFF;
}
.custom li.rss a:hover {
    color: #FFFFFF;
}

.custom div#footer {
    background-color: #626945;
    padding: .75em;
    color: #FFFFFF;
}

.custom div#footer a, .custom div#footer a:visited {
    color: #FFFFFF;
}
.custom div#footer a:hover {
    color: #FFFFFF;
}

.custom li.widget_tag_cloud {
    line-height: 180%;
    text-align: justify;
}



/* --------------------------------------- */
/* Main Navigation Menu - Horizontal Bar   */
/* --------------------------------------- */
#mainnavmenu {
    width: 934px;
    height: 28px;
    margin: 0px auto;
    padding: 0px;
    font-size: 15px;
    background-color: #7C0E01;
}

#mainnavmenu ul
{
    padding-left: 0;
    margin: 0px 0px 0px 8px;
    color: #FFFFFF;
    float: left;
    font-family: Verdana, Helvetica, sans-serif;
    font-weight: bold;
}

#mainnavmenu ul li {
    display: inline;
    padding: 0;
    margin: 0;
}

#mainnavmenu ul li a
{
    padding: 0.3em 0.9em;
    background-color: #7C0E01;
    color: #FFFFFF;
    text-decoration: none;
    float: left;
    border-right: 1px solid #fff;
}

#mainnavmenu ul li a:hover
{
    background-color: #FFCF00;
    color: #000000;
}

#mainnavmenu ul li#activetab a
{
    background-color: #FFFFFF;
    color: #000000;
}

/* --------------------------------------- */

/* --------------------------------------- */
/* Close Navigation Menu - Horizontal Bar  */
/* --------------------------------------- */
#closenavmenu {
    width: 928px;
    height: 42px;
    margin: 0px auto;
    padding: 4px 0px 0px 0px;
    background-color: #FFFFFF;
    text-align: center;
    border-top: 1px #D3D3A9 solid;
}

#closenavmenu ul
{
    padding-left: 0;
    margin: 0px auto;
    color: #004000;
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 12px;
}

#closenavmenu ul li {
    display: inline;
    padding: 0;
    margin: 0;
}

#closenavmenu ul li a
{
    padding: 0.3em 1em;
    text-decoration: none;
}

#closenavmenu ul li a:hover
{
    background-color: #D2D2A6;
    color: #000000;
}

#navbardivider
{
    width: 680px;
    height: 1px;
    padding: 0;
    margin: 4px auto;
    border-top: 1px #D3D3A9 solid;
}


#promobox-medrect {
    width: 310px;
    /*height: 260px;*/
    margin: 4px auto;
    padding: 5px;
    border: 1px #DEE0C1 solid;
    background-color: #F1F2E6;
}
/* --------------------------------------- */
