/*
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/
*/

/* body { font-family: Georgia, "Times New Roman", Times, serif; font-size: normal; } */
/* get rid of double border after header */
.custom #header { border-style: none; }

.custom #feature_box { background: #eee; padding: 1em; margin-bottom: 0.5em; border-style: none; width: 104.9em;}

/* get rid of line down the middle of the content_box */
.custom #content_box { background: transparent; }

/* get rid of dotted lines above post. */
.custom .post_box {  border-style: none;  }

/* box that holds vslider */
/* .custom_box_2 { margin-left: 51.3em; border-color: #eee; border-style: solid; border-width: 1em; width: 469px; } */
.custom_box_2 { margin-left: 63.3em; border-color: #eee; border-style: solid; border-width: 1em; width: 41.6em; }
/* .custom_box_2 { float: right; border-color: #eee; border-style: solid; border-width: 1em; width: 469px;} */


.custom .menu { border-width: 0.1em 0 0.1em 0; border-style: solid;}
.menu, .menu a, .menu li ul { border-style: solid; 
                              border-width: 0 0.1em 0.1em 0;
                              }

/* menu colors */

.custom .menu, .menu a, .menu ul li { border: 0.1em; border-style: solid; border-left-style: none; border-color: #DDDDDD; }
.custom .menu { clear: left; }
.custom .menu .current a, .menu .current-cat a { border-bottom: 0.1em solid #DDDDDD; }
.custom .menu a, .menu .current ul a, .menu .current-cat ul a { color: #111111; background: white; }
.custom .menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover { color: #111111; background: #DDDDDD; }
.custom .menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover { color: steelblue; background: white; font-weight: bold; }
.custom .menu { border-style: none; }
.custom .menu .rss { border: solid #DDDDDD 1px; border-left: none;  float: left; }

#sidebars_homepage { margin-top: 3em; }
#sidebar_2 { }
#sidebar_3 { width: 21.6em; float: left; border-width: 0 0.1em 0 0; border-style: dotted; border-color: #ddd; }
#sidebar_4 { width: 21.6em; float: left; border-width: 0 0.1em 0 0; border-style: dotted; border-color: #ddd; }
#sidebar_5 { width: 21.6em; float: left; border-width: 0 0.1em 0 0; border-style: dotted; border-color: #ddd; }
#sidebar_6 { width: 21.6em; float: left; }

