/*
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; }	&lt;--- 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/
*/
/* navigation css */
#mylogo-banner{
padding: 0px;
margin: 0px;
height: 90px;
width: 220px;
float: left;
}
.custom .menu {
float: right;
width: 506px;
margin-top: 50px;
}
.custom .menu a:hover, .custom .menu li a.current:hover,  .custom .menu li a.current:hover {
color: #f6a836;
padding-top: 5px;
text-decoration: underline;
}
.custom #header {
padding-bottom:0em;
padding-top: 0em;
}
 /* feature box customization*/
.custom #feature_box {background:none; border:none; padding:0;}

/* remove "Comments Closed" on posts and pages */
.custom .comments_closed p { display: none; }

/* remove thesis title main page */
.local-search-engine-marketing .headline_area {display:none;}
.local-search-engine-marketing .post_box { padding-top: 0em;}

/* This line adds your custom background graphic */
body.custom {
    background: #fff url('http://viaburst.com/imagex/vbbg1.jpg') repeat-x;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #FFFFFF;
	/* widget padding */
	padding: 5px;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 32%;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #555555;
        background-color: #FFFFFF;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}
/*footer widget title style*/
.footer_items h3 {
font-size: 1.25em;
line-height: 1.385em;
margin-bottem: 0.602em;
font-variant: small-caps;
letter-spacing: 2px;
}
/* twitter widget */
.custom #twitter_div { background: none;}
.custom #twitter_div a { font-size: 12px;  }
     .custom #twitter_div a:hover { text-decoration: none; color: #ffffff;  }
.custom #twitter_div img { float: left; margin-top: 0px; margin-right: 35px; }
.custom #twitter_div li { border-bottom: 1px solid #FFFFFF; padding: 10px 0 10px 0; font-size: 12px; }

/* remove a sidebar from page */
.landing ul.sidebar_list li#text-23 { display: none; }
