/*
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 a:hover {text-decoration: underline;}

.custom #header { border-bottom:none; height:180px; padding-top:0; padding-bottom:0; 
background:url(/wp-content/themes/thesis/thesis_16/custom/images/header.jpg) center no-repeat; }

.custom .sidebar h3 {font-weight: bold; color: #FFFFFF; padding: 5px 5px; background: #E60000;}

.custom .menu { width: 918px; background: #DDDDDD; }



/******************************************************************/
/*  CSS STYLING - CUSTOM ARCHIVES PAGE    */
/******************************************************************/
#archives {background: #454343 url(images/black_grad.gif) repeat-x; font-size: 12px; border: 0px solid #0A0A0A; border-top: 0; margin-bottom: 1.5em; overflow: hidden; padding: 0.75em;}
#archives ul {float: left; list-style-position: inside; margin: 0; padding: 1em; width: 100%;}
#archives ul.col_small {float: left; list-style-position: inside; margin-left: 2em; padding: 1.5em; width: 20%;}
#archives ul.col_big {float: left; list-style-position: inside; margin: 0; padding: 1.5em; width: 40%;} 
#archives ul.recent_archive {padding: 1em; border: 1px solid #0A0A0A;} 
#archives ul.popular_archive {padding: 1em; border: 1px solid #0A0A0A;} 
#archives p {float: left; list-style-position: inside; margin: 0; padding: 1em; width: 100%;}
#archives li {padding-bottom: 0px;}
#archives li.title {font-size: 19px; list-style-type: none;}
#archives #inner {background: #FFF; border: 0px solid #FFF; overflow: hidden;}


#breadcrumbs {
	/* heignt and width of the container box */
	height: 15px;
	width: 910px;
        background: #DDDDDD;
        /*border for testing */
	/*border: 5px solid #A0C1E3;*/
	/*moving text within the container box */
	/*padding: 5px 0px 5px 0px;*/
        padding: 5px 0px 5px 10px;
        /*moving the container box around*/
	/*position: relative;*/
	/*top: 0px;*/
        /*left: 0px:*/
        /*to keep the breadcrumbs from showing under another object */
	/*z-index: 0;*/

	/* font properties */
	color: black;
	font-size: 1.2em;
	/*font-family: Verdana, Arial, sans-serif;*/
	/*font-weight: bold;*/
	/*text-decoration: underline;*/
	/*text-transform: uppercase;*/
	/*font-style: italic;*/
	/*font-variant: small-caps;*/
	text-align: left;
}

/* link and visited properties of fonts */
#breadcrumbs a:link, 
#breadcrumbs a:visited {
	color: black;
	font-size: 1em;
	/*font-family: Verdana, Arial, sans-serif;*/
	font-weight: bold;
	text-decoration: none;
	/*text-transform: uppercase;*/
	/*font-style: italic;*/
	/*font-variant: small-caps;*/
}

/* hover properties of fonts */
#breadcrumbs a:hover { 
	color: black;
	font-size: 1em;
	/*font-family: Verdana, Arial, sans-serif;*/
	font-weight: bold;
	text-decoration: underline;
	/*text-transform: uppercase;*/
	/*font-style: italic;*/
	/*font-variant: small-caps;*/
}


