/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;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; }	&lt;--- 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/
*/

body.custom {
    background: #fff;
}

.custom a, .custom a:visited { color: #149bca; }

.custom #sidebars h3{
    color: #f47b20;
}

.custom #archive_info h1{
    color: #f47b20;
}

.custom #content h2{
    color: #f47b20;
}

.custom #content h3{
    color: #f47b20;
    font-size: 11pt;
}

.custom .headline_area h1 {
	color: #f47b20;
}

/* START: Custom H1 styling for posts */
.custom .entry-title {
    background: #f9f9f9;
    border-bottom: solid 3px #efefef;
    border-right: solid 1px #efefef;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #f47b20;
}
/* END: Custom H1 styling for posts */


/* Remove comments are closed from */
.custom .comments_closed p {display: none ;}

/* Remove published by... and date of post */
/*.custom .headline_meta { display: none; } */


/* START: Custom header that includes search box and imagery */
/* Hex color of the blue background: #5373a4 */

#myHeader {
    top: 0px; 
    padding: 0px 4px 4px 0px; 
    height: 190px; 
    width: 954px;
    color: #fff;
    font-size: .95em;
    font-weight: bold;
    line-height: 20px;
} 

#myHeader .text_input {
    width: 70px; 
    padding: 4px; 
    text-align: left;
    font-size: 1.35em;
    font-weight: bold;
}

#myHeader .control_box {
    padding: 4px; 
    text-align: left;
    font-size: 1.35em;	
    font-weight: bold;
}

#myHeader .input_button {
    border-color: #00a0d7;
}

#myHeader #left  {
	background: url(http://www.rightfitdegrees.com/wp-content/themes/thesis_16/custom/images/header-l.png) no-repeat 0% 0%; border: 0;
	width: 230px;
   	height: 190px; 
	float: left;
}

#myHeader #center  {
        background: url(http://www.rightfitdegrees.com/wp-content/themes/thesis_16/custom/images/header-c.png) repeat-x;
        float: left;
	height: 188px; 
	width: 350px;
}


#myHeader #right  {
	background: #fff;
	height: 190px; 
        float: right;
	width: 374px;
}

/* END: Custom header that includes search box and imagery */


/* START: LEFT NAV BAR */
#vertmenu {
    background: #f6f6f6;
    font-family: Verdana;
    font-size: 11pt;
    width: 140px;
    padding: 0px;
    margin: 0px;
}

#vertmenu h5 {
    background: url(http://www.rightfitdegrees.com/wp-content/themes/thesis_16/custom/images/nav-degrees.png) no-repeat;
    width: 140px;
    height: 38px;
}

#vertmenu h6 {
    background: url(http://www.rightfitdegrees.com/wp-content/themes/thesis_16/custom/images/nav-programs.png) no-repeat;
    width: 140px;
    height: 38px;
}


#vertmenu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    border: none;
}

#vertmenu ul li {
    margin: 0px;
    padding: 0px;
}

#vertmenu ul li a {
    font-size: 80%;
    display: block;
    border-bottom: 2px solid #fff;
    padding: 5px 0px 5px 4px;
    padding-left:4px;
    text-decoration: none;
    color: #666666;
    width: 140px;
}

#vertmenu ul li a:hover, #vertmenu ul li a:focus {
    color: #000;
    background-color: #eee;
    border-bottom: 2px solid #f47b20;
    width: 136px;
}
/* END: LEFT NAV BAR */



/* START: Top of page links */
#toplnks {
    float: right;
    text-align: right;
    margin-top: 40px;
    padding-right: 18px;
    font-weight: bold;
    font-size: 1.2em;
}

#toplnks a {
    color: #f47b20;	
}

#toplnks a:hover {
   text-decoration: underline;
}
/* END: Top of page links */

/* LOGO */
#logo {
    float: left;
    padding-left: 10px;
    padding-top: 12px;
}

#myFooter {
    font-size: .85em;	
}


