/*
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/
*/


/* Remove upper case from Menu: text-transform: uppercase */
.custom .menu a  {text-transform: capitalize;font-weight: bold; letter-spacing: 1px; }



/* Make the entire menu the same blue color */
.custom .menu {
background-color: #1C85BF;
} 


.custom h1 {
font-size: 2.5em;
}

.custom h2 {
color: #1B86BE;
}

.custom h2 a:link {
color: #1B86BE;
text-decoration: none;
}
.custom h2 a:hover {
color: #1B86BE;
text-decoration: underline;
}

.custom #content {
background-image:url('http://www.netklik.com/wp-content/themes/thesis_18/custom/images/footer-top-background.jpg');
background-repeat:no-repeat;
background-position:right bottom; 
}

.custom #sidebars {

}

.custom #content_box {background: #fff url('http://www.netklik.com/wp-content/themes/thesis_18/custom/images/content-box-background.jpg') 0 0 repeat-y; }

.custom .testimonials {
background-color: #DFF1FB;
width: 650px;
padding: 10px;
padding-bottom:1px;
}

.custom #footer {
background-image:url('http://www.netklik.com/wp-content/themes/thesis_18/custom/images/footer-bottom-background.jpg');
background-repeat:no-repeat;
background-position:right top; 
background-color: #7FBADA;
}

.custom #footer a { border-bottom-width:0px;
}

/* To Bold on Pages Text */
.custom .highlight {
	font-weight: bold;
}


/* RSS Icon on Nav Menu */
.custom .menu .rss a {padding-right:30px;background-position: 87% 50%;}

/* Main Menu Padding */
.custom .menu .tab a {padding-left: 10px;padding-right:10px;}


/* Footer Widget */
.custom #widgetized_wrapper { padding: 15px 0; margin-bottom: 25px; overflow: hidden; }
.custom #widgetized_wrapper .widget { text-align: left; width: 200px; padding-right: 10px; color: #066196; display: inline-block; float: left; height: 100%; }
.custom #widgetized_wrapper .widget h3 { font-size: 1.3em; font-weight: bold; letter-spacing: 0px; padding-bottom: 3px; margin-bottom: 5px; color: #032B66; }
.custom #widgetized_wrapper .widget ul { margin: 0px; padding: 0px; }
.custom #widgetized_wrapper .widget ul li { list-style: none; font-size: 1.4em; padding-bottom: 5px;}
.custom #widgetized_wrapper .widget ul li a { color:#434F51; text-decoration:none;}

