/*
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/
*/


.custom #tabs { border-left: none; border-bottom: none; }
.custom #tabs li { background: none; border-right: none; }
.custom #tabs a {color: #FFF; font-weight: bold;}

.custom .sidebar { background: #1a9620; }
	
/* .custom li.widget { background: #1a9620; } */

ul#hrnewsbullets {list-style-type: disc; list-style-position: inside;}

#hrnewsbullets li {margin-bottom: 0; color:white; padding-left: 15px; margin-right; 15px; }

#hrnewsbullets li a { color: #F79462; }

.custom .headerpic {margin-top: 0px; }
.custom .snugfit { margin-top: -3px; }
.custom .layertop { float: left; position: absolute; left: 2px; top: 11px; z-index:99}

.custom #header {
border-bottom: thin none;
border-collapse: collapse;
padding-top: 0em;
padding-bottom: 0em;
padding-left: 0em;
padding-right: 0em;
position: relative;
}

.custom #footer {
color: white
}

.custom #page {
padding-top: 0em;
}

.custom #sidebar_1 {
background-image: url("http://hrsolutionssite.com/images/sidebar_bg.gif");
background-repeat: repeat-y;
}

.custom #content_box {
margin-top: -5px;
background: white;
}

.custom .sidebar {
background: #f0ffff none repeat scroll 0 0;
}

.custom .sidebar ul.sidebar_list {
padding-left:2em;
}

.custom #tabs a {
line-height:1.5em;
}

.custom #tabs li {
width:100%;
}

.custom #tabs a:hover { color: #F79462;  text-decoration: none; }

.custom #tabs .current_page_item a, .custom #tabs .current-cat a {
color: #F79462;
}

/* purple menu CSS */
#pmenu {
position:relative;
width: 100%;
z-index: 1000;
margin-top: -55px;
margin-bottom: 38px;
font-family: Arial;
}

#pmenu ul {
list-style-type:none;
}

#pmenu li {
text-transform:uppercase;
float:right;
}

#pmenu li a {
color:White;
display:block;
font-size:1.5em;
padding-right:0.2em;
text-align:center;
width:8.1em;
}

#pmenu ul li a:hover {
color: #F79462;
}

/* sidebar styling */
.sidebarhdr {
margin: 0;
margin-bottom: .5em;
font-family: Verdana;
font-variant: small-caps;
text-align: center;
color: #F79462;
}

.custom #text-3 {
margin-bottom: 0;
}

.menulink {
font-size: 1.2em;
color: White;
}

.custom li.widget p a:hover {
color: #F79462;
}

.custom li.widget p a {
font-variant: small-caps;
text-decoration: none;
}

/*********************************
*           comments styles
**********************************/
#comments .comments_closed p {display: none;}

.custom #post-2 .headline_area {display:none; }
.custom #post-14 .headline_area {display:none; }
.custom #post-121 .headline_area {display:none; }
.custom #post-127 .headline_area {display:none; }

.custom #content_box { overflow: hidden; }
.custom #content_box div { margin-bottom: -2000px; padding-bottom: 2000px; }

/***********************************
* Form controls
************************************/
span.wpcf7-form-control-wrap.city input { width: 10em; }
span.wpcf7-form-control-wrap.state input { width: 3em; }
span.wpcf7-form-control-wrap.zip input { width: 6em; }

span.wpcf7-list-item input { width: 3em; }
span.wpcf7-list-item { display: block; }

.custom form label {
	display:block;
	float:left;
	text-align:right;
	width:70px;
	padding-right:0.5em;
}