﻿/*
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.custom {
	background: #ffffff url('images/Orange-Small-85.png');
}

.custom #header {
	height: 125px;
	margin-top: 10px;
	padding: 0;
}

.custom #header img {
	margin-left: 240px;
	margin-top: 5px;
}

.custom #page {
	background: transparent url('http://www.rodskog.com/wp-content/themes/thesis_16/custom/images/tree-background.gif') no-repeat;
}

.custom #container {
	background: #FFFFFF url('http://www.rodskog.com/wp-content/themes/thesis_16/custom/images/redbar-background.gif') repeat-y;
}

.custom #content {
	border-right:thin #CCCCCC solid;
}


/*---customize footer---*/
.custom #footer {
	height: 100px;
	padding: 0;
	margin: 0;
}

.custom .footer_contact img{
	float: left;
	margin-left: 60px;
}

.custom .below_footer {
	background: #ffffff url('images/Orange-Small-85.png');
	color: #000000;
	text-align:center;
	padding-top: 20px;
	height: 100px;
}

/*---Customize Nav Bar below footer---*/
.custom .below_footer .menu {
	width: 600px;
	margin: 0 auto;
	border:none;
}

.custom .below_footer .menu a {
	text-transform:lowercase;
	font-size: 10px;
	color: #000000;
}

.custom .below_footer .menu li {
	float:left;
}

.custom .below_footer .menu, .menu a, .menu li ul {
border-style:none;
}

.custom .below_footer .menu a, .menu .current ul a, .menu .current-cat ul a {
background:none;
}


/*---Customize titles from pages---*/
.custom #post-10 .headline_area h1, 
.custom #post-86 .headline_area h1, 
.custom #post-89 .headline_area h1, 
.custom #post-91 .headline_area h1,
.custom #post-93 .headline_area h1, 
.custom #post-87 .headline_area h1,  
.custom #post-95 .headline_area h1, 
.custom #post-6 .headline_area h1,
.custom #post-55 .headline_area h1, 
.custom #post-50 .headline_area h1,
.custom #post-13 .headline_area h1,
.custom #post-12 .headline_area h1,
.custom #post-165 .headline_area h1,
.custom #post-169 .headline_area h1,
.custom #post-167 .headline_area h1,
.custom #post-163 .headline_area h1,
.custom #post-8 .headline_area h1,
.custom #post-18 .headline_area h1 { 
	color: #A80000;
	text-transform:lowercase; 
}

.custom #post-5 .headline_area { 
	display:none;
}


/*---Custom sidebars---*/
.custom #sidebars {
	float:left;
}

.custom #sidebar_1 {
	margin: 125px 0 0 0;
	width: 200px;
	color: #333333;
}

.custom #sidebar_2 {
	float:right;
}

/*---Customize Nav Bar in sidebar---*/
.custom #sidebar_1 ul.sidebar_list {
	padding-left: 55px;
}

.custom .sidebar a:hover {
	text-decoration: none;
}
.custom .menu {
	border:none;
}

.custom .menu a {
	text-transform:lowercase;
	letter-spacing: -1px;
	font-size: 16px;
}

.custom .menu li {
	float:none;
	border-right:thin white double;
}

.custom .menu, .menu a, .menu li ul {
border-style:none;
}

.custom .menu a, .menu .current ul a, .menu .current-cat ul a {
background:none;
}

.custom .menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
background:none;
border:none;
}



/*---Headings customization---*/
.custom h2 {
	color:#FCA429;
	font-family:verdana,geneva;
}

.custom h3 {
	color:#FCA429;
	font-family:verdana,geneva;
}

/*---Specific settings for ABOUT page---*/
.custom #content_wide {
	float:right;
	width: 70em;
}

.custom #content_wide .headline_area h1{
	color: #FCA429;
	text-transform:lowercase;
}

/*---Subpage links---*/
.subpage_link {
	font-size: 16px;
	font-weight:bold;
	margin: 0px;
}