/*
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 #header #tagline { font-size: 2.4em;  line-height: 1.8em; }
.custom #header {background-image: url(http://www.mybloggingjourney.com/wp-admin/images/mybloggingjourney.jpg); height:140px; background-repeat:no-repeat;}
.custom a.more-link { font-weight: bold; }

.custom #footer_1 {text-align:left; color:#333;}
	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#222;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}

/* SAVE THIS IN CUSTOM.CSS FILE */
.custom .teaser {width: 100%; margin-top: 0.25em; padding-top: 0.25em; text-align: justify; border-top:  1px solid #CCCCCC; }
.custom .teasers_box {padding-top: 0; padding-bottom:0; border-top: 0;}
.custom #teaserlinkscontainer {margin-top:0px;}
.custom #teasermenu {height: 30px;}
.custom #teasermenu , .teasermenu ul {padding: 0; margin: 0; list-style: none; line-height: 1; border-width: 0.5em 0.5em 0.5em 0.5em;}
.custom #teasermenu ul {float: left; list-style: none; margin: 0px 0px 0px 0px; padding: 0px;}
.custom #teasermenu li {float: left; list-style: none; margin: 0px; padding: 0px;}
.custom #teasermenu ul li {list-style: none; margin: 0px; padding: 0px;}
.custom #teasermenu a, .custom #teasermenu li ul {border-color: #111;}
.custom #teasermenu li a, .custom #teasermenu  li a:link {color: #111; background:none; display: block; font-weight: bold; margin:9px 15px 16px;   padding: 2px; text-decoration: none;  font-size: 12px; font-family: Georgia,"Times New Roman",Times,serif; }
.custom #teasermenu li a:hover, {color: #111; background: #7BAAD9; display: block; margin: 14px 8px 14px 14px; padding: 2px; text-decoration: none; }
.custom #teaserempty {width: 100%; margin-top: 0.5em; margin-bottom: 0.5em;}
.custom #teasermenu li p,{color: #000000; background: #D0D0D0; display: block; width: 100%}


/* sidebar */

.custom li .widget { margin-bottom: 1.0em; }

.custom  .menu{
border-style: none;
margin-bottom: 4px;
}
.custom #header_area .page {
padding-bottom:1.1em;
padding-top:1.1em;
}

/* topmenu nav*/

.custom #topnav a{

 background-color: #685EF7; 	/* #FFFFFF link background color*/
 color: #FFFFFF;		/* #FFFFFF link text color */
 border-color: #FFFFFF;
}

.custom #topnav a:hover{

background-color: #28248C;	/* hover background color*/
 color: #FFFFFF;		/*#FFFFFF link text hover color*/	

}
 

.custom li.widget{
margin-bottom: 1px;
}

.custom .action_button{
    display: block;
    float: left;
    margin-top: -6px;
    text-align: center;
    text-decoration: none;
}

.custom .buy_it {
    clear: both;
    margin: 20px 0;
}
.custom .action_button {
    background: url("http://www.mybloggingjourney.com/wp-content/uploads/2011/05/b_buynow.gif") no-repeat scroll left top transparent;
}
.custom .action_button a {
    background: url("http://www.mybloggingjourney.com/wp-content/uploads/2011/05/b_buynow_r.gif") no-repeat scroll right top transparent;
    color: #692608 !important;
}
.custom .action_button a {
    display: block;
    font: bold 14px Helvetica,Arial,sans-serif;
    padding: 12px 18px;
    text-decoration: none !important;
}
.custom .action_button a:hover{
background-position: right -40px;
color: #000000 !important;
}