.custom #header { padding-right: 1.1em; padding-left: 0em; padding-bottom: 2em; padding-top: 1em;}, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}


/*Remove Header Border*/
.custom #header {  border:none ; }

/*--Heading change Colour--*/

.custom h1.entry-title, .custom h2.entry-title, .custom h2.entry-title a {
color:#368AD8;
}

.custom .headline_area h1, .headline_area h2 {
color:#368AD8;
}


.custom #content_box, .custom #column_wrap {
        background: none;
}


/* Remove Uppercase Formatting on Menu Tabs Text */
.custom ul#tabs li a {
  text-transform: none;
  
  
}

/*Remove boarder from Nab Menu*/
.custom ul#tabs li {margin:0; border:0px none;}

/*Remove Underline on Link & Hover to Black*/
.custom ul#tabs li a:hover {color:black; text-decoration:none;}


/*--Change Front Colour of Nav Menu--*/

.custom ul#tabs li a { color: #295A8C; } 


/*--Remove white underline in Nav Menu--*/
.custom ul#tabs .current_page_item {padding:0;}

/*change the background color of everything on the nav bar except tabs*/
.custom ul#tabs { background: #C7D8E9; }

/*change the background color of unselected tabs*/
.custom ul#tabs li a { background: #C7D8E9; }

/*Adjust Padding in Sidebar*/

.custom ul.sidebar_list {
     padding-top: .5em;
}

.custom li.widget {margin-bottom: 0.5em;}

.custom .sidebar ul.sidebar_list {
      padding-right: 1.0em;
      padding-left: 0.5em;
}



/*--Sidebar Padding Top--*/
.custom .sidebar ul.sidebar_list {
      padding-top: 0em;
}


/*--Sidebar Widget Text Headers Modifications--*/
.custom .sidebar h3 {
	//defaults from style.css
	font-variant: small-caps;
	letter-spacing: 1px; 
	color: #061D56;
	 
	
	//defaults from layout.css
	font-size: 1em; 
	line-height: 1.385em; 
	margin-bottom: 0.692em;
	
	
	//these are some of the other properties you can change
	background: #000000; 
	font-weight: bold; 
	text-align: left;
	text-transform: uppercase; 
	font-variant: bold; 
	margin: 0 0 0 0em; 
	padding: 0em 0em 1em 0em; 
	 
}


div.sidebar-box {
background-image:url('http://www.otherdiscovery.com/wp-content/uploads/sidebargraphic.jpg');
background-repeat:repeat-x;
padding:20px
}

.custom #content {
background: url('http://www.otherdiscovery.com/wp-content/uploads/shadoweffect.jpg') repeat-y scroll right !important;
}

/*--Remove Line at bottom of content--*/
.custom .prev_next {
border-top: none;
}

/*--Content Box Padding Top--*/
.custom #content_box {margin-top:6em;}

/*Post Padding*/
.custom #content_box {padding-top:0em;padding-left:1.5em;}


/*Post Padding Top*/
.post_box {padding-top:0em;}


/*--Change Link Hover Colour--*/

.custom p.logo a:hover {color:#000000;}

.custom h2.entry-title a:hover {color:#000000;}








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