/*
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 wold 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/
*/

body {
	background: #ffffff;
	padding: 20px 0 30px 0;
	
}

a {
	color: #626262;
}

p {
	font-size: 1.1em;
	line-height: 1.4em;
	color: #4D4D4D;
}

h1 {
	font-weight: normal;
	color: #000000;
}

h3 {
	font-weight: normal;
	font-variant: normal;
	letter-spacing: 0;
	color: #000000;
	font-size: 1.4em;
}

.format_text ul { 
	color: #4D4D4D;
	font-size: 1.1em;
	}
	
.format_text li {
	padding-bottom: 5px;
}

.format_text ul ul { 
	font-size: 1.0em;
	}
	
	.post_box {
		padding: 0 0 20px 0;
	}
	
.post_box h1 {
	font-size: 2.6em;
}
.post {
	margin-bottom: 0px;
	border-top: none;
	padding: 0;
}

.post a, .post_box a {
	text-decoration: none;
}

.post a:hover, .post_box a:hover {
	text-decoration: underline;
}

.post h2 {
	font-size: 2.3em;
	line-height: 1.2em;
	color: #000000;
	border-top: 2px solid #E6E6E6;
	padding: 0px 0 0 0;
}

.top h2 {
	border-top: none !important;
}

.post h2 a {
	color: #000000;
	cursor: default;
}

.post h2 a:hover {
	text-decoration: underline;
	color: #000000;
	cursor: default;
}

label {
	float: left;
	width: 100px;
	padding: 0 0 6px 0;
}

.inputfield {
	float: left;
	padding: 3px;
	border: 1px solid #dfdfdf;
	width: 200px;
	clear: right;
	margin: 0px 0 14px 0;
	background: #ffffff;
}

.submitbutton {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	background: #1A4E85;
	padding: 7px 25px 7px 25px;
	margin: 0 0 30px 105px;
	border: none;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 0.8em;
	cursor: pointer;
}

.submitbutton:hover {
	background: #888888;
}

#content {
	padding: 10px 0 0 0;
}

.sidebar {
	padding-left: 0px;
	width: 220px;
}

#container {
	position: relative;
	background: #ffffff;
	padding: 20px;
	border: 1px solid #e6e6e6;
}

#header {
	border: none;
	padding: 0;
	margin: 0;
}

#logo {
	position: relative;
	text-indent: -9999px;
	margin:0px 0 10px 0px;
	padding:0px 0 0px 0px;
	height: 80px;
	width: 621px;
	background: url(images/logo.gif) no-repeat top left;
	}
#logo a {
	position: absolute;
	padding:0px 0 10px 0px;
	top: 0px;
	left: 0px;
	width: 621px;
	height: 80px;
	}

#logo a:link, #logo a:visited, #logo a:active, #logo a:link:hover, #logo a:visited:hover {
	background-color: transparent;
	}

#logo a span, #logo span { display: none; }

.custom .format_text p.note2 { padding: 0.57143em 0.78571em; width: 430px; background: #fffcd0; border: 1px solid #cfc9b1; font-size: 1.1em; }
.custom .format_text p.note3 { padding: 0.57143em 0.78571em; width: 430px; background: #d2ecff; border: 1px solid #7e97ae; font-size: 1.1em; }
.custom .format_text p.note4 { padding: 0.57143em 0.78571em; width: 430px; background: #fff1dc; border: 1px solid #e1c7a2; font-size: 1.1em; }

/*---:[ nav menu styles ]:---*/

ul#tabs { 
	margin: 0px 0 0px 0;
	padding: 0px 0 0px 0;
	list-style: none; 
	border-top: 0px;
	border-bottom: 0px solid #E6E6E6;
	border-left: none;
	clear: both;
}

ul#tabs li { 
	background: #fff;
	float: left; 
	border-bottom: 0px solid #E6E6E6;
	border-left: none;
	border-right: none;
	border-top: none;
}

ul#tabs li.current_page_item, ul#tabs li.current-cat { 
	padding-bottom: 0.1em; 
	background: #E6E6E6; 
	border-bottom: 0; 
}

ul#tabs li a { 
	font-size: 1.1em;
	font-weight: normal;
	display: block; 
	line-height: 1em; 
	color: #808080; 
	text-transform: uppercase; 
	letter-spacing: 0px; 
	padding: 9px 0 9px 0;
	margin: 0 17px 0 17px;
}

ul#tabs li a:hover { 
	color: #000000;
	text-decoration: bold;
}

ul#tabs li.current_page_item a, ul#tabs li.current-cat a { 
	cursor: default; 
	color: #AFAFAF;
	font-weight: normal;
}

ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { 
	text-decoration: none; 
}

ul#tabs li.rss { 
	padding-right: 0; 
	background: none; 
	border: none; 
	float: right; 
}

ul#tabs li.rss a { 
	padding-right: 16px; 
	background: url('images/icon-rss.gif') 100% 50% no-repeat; 
}

#feature_box {
	border-top: 0px solid #ffffff;
	border-bottom: 10px solid #ffffff;
	padding: 0px 0 0px 0;
	margin: 0px 0 0 0;
	width: 622px;
    float: left;	
clear: both;

}

#feature_box img {
	padding: 0;
	margin: 0;
	display: block;
}

#image_box { 
}

#image_box img { 
	border: none; 
	padding: 0;
}

.widget h3 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	letter-spacing: 0;
	color: #666666;
	font-size: 1.2em;
	font-weight: normal;
}

.widget h3 a {
	color: #666666;
}

.widget p {
	color: #666666;
	font-size: 1.0em;
	line-height: 1.4em;
}

.widget li {
	color: #4D4D4D;
	padding-bottom: 0px;
	font-size: 1.1em;
	line-height: 1.0em;
}

.widget li a, .widget li a:visited {
	text-decoration: underline;
}

.widget li a:hover, .widget li a:visited:hover {
	color: #666666;
}

.rsswidget {
	padding-right: 5px;
}
