.HL {
    background: #FFFF66;
    color: #000000;
}

.custom .widget h3 {
	background: #FFFF66; 
	margin-bottom: 0px; 
	border: 0.1em solid #addde6; 
	padding: 2px;
    text-align: center;
	font-weight: bold;
}

/* Custom 2: Header, Logo, Ad next to Logo, Tagline #4E9258; 
padding-bottom: 1px;
padding-top:0px;
*/
.custom #header {
border-bottom: 0;
padding: 0 0 0 0;
background: #fff;	
}

.custom .headline_area {
margin-bottom:1em;
}

.custom #container { margin-top: 1em; margin-bottom: 2em; : 0.3em; background: #33ffff;  }

/* Custom x: Menu Bar Customization 

#4E9258
#736AFF
#2B3856 (kk)
#a90000
#e41b17

.menu li ul {background:transparent;}
.menu li { margin-bottom: 0em; background: #403f3f; border: 0px solid #403f3f; border-left: 0; float: left; }
.menu ul {background: #403f3f;}
*/
.menu { list-style: none; border: 0px solid #ddd; border-width: 0 0 0px 0px; background: #403f3f; }

.menu a:hover { color: #fff; background: #a90000; text-decoration: none;}
.menu a { display: block; line-height: 1em; color: #fff; text-transform: none; letter-spacing: 2px; font-weight: none;}
.menu .current a, .menu .tab.current a { cursor: text; background:#403f3f;}
.menu .current a:hover, .menu .tab.current a:hover { text-decoration: none; }


body.custom { background: 	#535353;  }
.custom #page { background: #fff;  }

div.fancy-widget {
padding: 5px; background:#E3F0F2 none repeat scroll 0 0; border-color:#ADDDE6; border-style:solid;
}


.custom div#subscribebox {padding:12px; line-height:18px; background:#f9f7e4; border-color:#ADDDE6; border-width: 0; border-style:solid; overflow: auto; width:auto;}
.custom div#subscribebox #leftbox {margin-left: 8px; margin-top: 8px; margin-bottom: 8px; width:55%; float: left;}
.custom div#subscribebox form { margin-top: 8px;}
.custom input.form_submit { padding:1px 5px;}
.custom div#subscribebox ul#utilitylinks {width:35%; font: normal 12px arial; border-left: 1px solid #dddddd; float:right; list-style-type: none;}
.custom div#subscribebox ul#utilitylinks li {margin-left: 10px; padding:8px;}
.custom div#subscribebox ul#utilitylinks li#rss {padding-left:22px; background:url(http://www.thegeekstuff.com/images/feed14.png) no-repeat left center;}
.custom div#subscribebox ul#utilitylinks li#addthis {padding-left:0px; }
.custom div#subscribebox ul#utilitylinks li#lastupdated {padding-left:22px; background:url(http://www.thegeekstuff.com/images/icon-date.gif) no-repeat left center;}



.custom ul#infolinks {width:100%; list-style-type: none;}
.custom ul#infolinks li {margin-left: 1px; padding:4px;}

.custom ul#infolinks li#rating {padding-left:22px; background:url(http://www.top5freewares.com/images/rating-icon.gif) no-repeat left center;}
.custom ul#infolinks li#homepage {padding-left:22px; background:url(http://www.top5freewares.com/images/homepage-icon.png) no-repeat left center;}
.custom ul#infolinks li#downloadpage {padding-left:22px; background:url(http://www.top5freewares.com/images/downloadpage-icon.png) no-repeat left center;}

.custom ul#infolinks li#requirements {padding-left:22px; background:url(http://www.top5freewares.com/images/requirements-icon.png) no-repeat left center;}

.custom ul#infolinks li#license {padding-left:22px; background:url(http://www.top5freewares.com/images/license-icon.png) no-repeat left center;}

.custom ul#infolinks li#pros {padding-left:22px; background:url(http://www.top5freewares.com/images/pros-icon.png) no-repeat left center;}

.custom ul#infolinks li#cons {padding-left:22px; background:url(http://www.top5freewares.com/images/cons-icon.png) no-repeat left center;}


.custom ul#infolinks li#info {padding-left:22px; background:url(http://www.top5freewares.com/images/info-icon.png) no-repeat left center;}

#box-table-b
{
	margin: 1px;
        width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #9baff1;
	border-bottom: 1px solid #9baff1;
}
#box-table-b th
{
	font-weight: normal;
	padding: 0px;
	background: #e8edff;
	border-right: 0px solid #9baff1;
	border-left: 0px solid #9baff1;
	color: #039;
}
#box-table-b td
{
	padding: 0px;
	background: #e8edff; 
	border-right: 0px solid #aabcfe;
	border-left: 0px solid #aabcfe;
	color: #669;
        vertical-align: top;
}

a.homepage 
{ 

background: url("http://www.thegeekstuff.com/images/feed14.png") no-repeat padding-right: 5px;
}

/*
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/
*/