/*
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 Default Padding---*/
.custom #page{padding: 0;}
.custom #header{padding: 0;}
.custom #column_wrap .sidebar ul.sidebar_list {padding: 0;}
.custom ul.sidebar_list{padding: 0;}
.custom .sidebar{padding: 0;}
.custom #footer{padding: 0;}
/*----------------------------*/


/*---Define Widths---*/
.custom #sidebar_1{width: 232px;}
.custom #content{width: 411px; margin-right:10px; float: right;}
.custom #column_wrap{width: 643px;}
/*sidebar_1 + content = column_wrap*/

.custom #sidebar_2{width: 257px;}
.custom #sidebars{width: 257px;}
/*sidebar_2 = sidebars*/

.custom #container{width: 900px;}
/*column_wrap + sidebars = container*/
/*-----------------*/


body{
	background-repeat: repeat-x;
	background-image: url('images/BG_Lines_Repeat2.jpg'); 
	background-color: #734b85;
	font-family: Arial, Helvetica, sans-serif;
}

.custom #tabs{display: none;}


.custom #container{
	margin-top: 10px;
}


.custom #page{
	background-color:#ffffff;
}

/*---Header---*/
.custom #header{
	border: none;
	float:right;
	clear: both;
	width: 100%;
	height: 100%;
}

#topBar{
	z-index: 100;
}

/*---Content_box---*/
.custom #content_box{
	background-image: url('images/repeater.jpg');
	background-repeat: repeat-y;
	background-position: right;
	width: 901px;
}

.custom #column_wrap{
	background-image: url('images/hc_sidebar_repeater2.jpg');
	background-repeat: repeat-y;
	background-position: 0 0;
}



/*---Sidebar 1---*/

#sidebar_1{
/* 	background-color: #2e2039; */
	background-image: url('images/hc_sidebar_repeater2.jpg');
	background-repeat: repeat-y;
	position: absolute;
	top: 10px;
}

#sidebar_1 li.widget{
	margin-bottom: 0;
}

#execphp-6{
	width: 234px;
	height: 176px;
}


/*Navigation-Default Pages Widget*/
.custom #pages-3 h3{display: none;}
.custom #pages-3 ul li{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;	
	text-transform: uppercase;
	display: block;
	border: solid 1px #ffffff;
	text-indent: 30px;
	line-height: 30px;
	margin: 10px 30px 10px 10px;
}

.custom #pages-3 a{
	color: #c8b8dd;
	display: block;
}

.custom #pages-3 a:hover{
	background-color: #3f314a;
	text-decoration: none;
}

/*Navigation-Flexi Pages Widget*/
.custom #flexipages-2 h3{display: none;}
.custom #flexipages-2 ul li{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;	
	text-transform: uppercase;
	display: block;
	border: solid 1px #ffffff;
	text-indent: 30px;
	line-height: 30px;
	margin: 10px 30px 10px 10px;
}

.custom #flexipages-2 a{
	color: #c8b8dd;
	display: block;
}

.custom #flexipages-2 a:hover{
	background-color: #3f314a;
	text-decoration: none;
}


/*---Content---*/

.custom #content{
	min-height: 620px; /*same as centerPanel_secondary.jpg*/
	background: none;
	background-image: url('images/centerPanel_secondary.jpg');
	background-repeat: no-repeat;
	background-position: top right;
}


.custom .format_text{
	line-height: normal;
}


/*---Sidebar 2---*/

.custom #sidebar_2{
	min-height: 580px; /*same as centerPanel_secondary.jpg*/
	background-image: url('images/rightPanel.jpg');
	background-repeat: no-repeat;
	height: 100%;
	margin-left: -25px;
	padding-left: 25px;
	padding-top: 10px;

}

.custom #sidebar_2 ul{
	margin: 0px 10px;

}
.custom #sidebar_2 h3{
	color: #1D0F24;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 0;
}

.custom #sidebar_2 a{
	color: #ffffff;
	font-weight: bold;
}
.custom #sidebar_2 li.widget{
	margin-bottom: 20px;
}

.custom #sidebar_2 li.widget ul li{
	margin-bottom: 0px;
}





/*---Footer---*/
.custom #footer{
	border:none;
	text-align: center;
	background-image: url('images/hc_footer_repeater2.jpg');
	background-repeat: repeat;
	background-color: #25162b;
	color: #ffffff;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	width: 901px;
}

.custom .customFooterColumn{
	width: 33%;
	float: left;
}

.custom #footer a{
	text-decoration: none;
	border-bottom: none;
	color: #888888;
}

.custom #footer a:hover{
	color: #888888;
}

/*-- Post-673 (RAC Resources Links) --*/
.MsoNormal a{
	color:#000;
}

/*------------*/
