/* @override http://www.innatthemarket.com/blog/wp-content/themes/thesis_IATM/custom/custom.css?110209-194613 */

/* @override 	http://localhost:8888/wordpress09/wp-content/themes/thesis_16b/style.css?092209-152136	http://tatudigital.com/testblog/wp-content/themes/thesis_16b/custom/custom.css?101209-211449*//*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/*/body { 	background: url(images/bg.jpg) repeat-x;}* { padding: 0; margin: 0; }
#container { width: 950px;
	margin-top: 0;
	margin-bottom: 0;
}			#sidebars { width: 22.2em; border: 0; float: right;	background: #6D8A80 ;}/*---:[ nav styles ]:---*/ #navigation {	list-style: none;	margin: 0;	padding: 0;background: #6D8A80 bottom;}#navigation li {	display: block;	float:left;	background: #6D8A80 bottom;	width: 96px;	text-align: center;	color: #FFFFFF;	padding: 0px;	font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 10px;	vertical-align: bottom;	height: 82px;	border: thin solid #CCCCCC;	text-decoration: none;	margin: 0px;	text-transform: capitalize;}#navigation li a {	display: block;	background: #6D8A80 bottom;	width: 96px;	text-align: center;	color: #FFFFFF;	padding: 0px;	vertical-align: bottom;	height: 82px;	border: thin solid #CCCCCC;	text-decoration: none;	text-transform: capitalize;}#navigation li a:hover {	display: block;	background: #546D5F;	width: 96px;	text-align: center;	color: #FFFFFF;	padding: 0px;	vertical-align: bottom;	height: 82px;	border: thin solid #CCCCCC;	text-decoration: none;}.head-nav {	height: 85px;	width: 953px;
	background: #6D8A80 bottom;}.nav-head {	height: 87px;	width: 953px;background: #6D8A80 bottom;}
.sidebar h3 { font-variant: small-caps; letter-spacing: 2px;
	color: #000;
}

