/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

.custom #content { border-right: none; }

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

.custom #container {
	position:relative;
	border:5px solid #3E3E3A;
	padding:3px;
	margin-top:4.6em;
}

.custom ul#tabs {
	background:#33332F;
	border-bottom:none;
	border-left:5px solid #3E3E3A;
	padding:8px 8px 0 3px;
	position:absolute;
	top:-29px;
	left:-5px;
	background:url('http://www.mensfamilylaw.com/wp-content/themes/thesis/custom/images/bg-tabs.gif') top right no-repeat;
}

.custom ul#tabs li.rss {
	position:absolute;
	right:-105px;
	float:none;
	top:0px;
}

.custom #header {
	padding:0;
	height:141px;
}
.custom #header h1 {
	float:left;
	width:165px;
}
.custom #header img#pisarra {
	position:relative;
	left:76px;
	float:left;
	top:8px;
}

.custom #header ul {
	float:right;
	width:200px;
	padding:2px 0 0 0;
	margin:0;
	list-style:none;
	text-align:right;
	font-size:12px;
}
.custom ul#tabs li a, .custom ul#tabs li a:visited {
	padding:5px 9px 6px 9px;
}
.custom #header ul li {
	padding:0;
	margin:0 0 3px 0;
}

.custom #header ul li img {
	float:right;
	margin-left:3px;
	position:relative;
	top:-4px;
}

.custom .mp3 p {
	margin-left:22px;
}

.custom .mp3 object, .custom .mp3 embed{
	float:left;
	position:relative;
	top:1px;
}

.custom ul#tabs li.rss a {
	padding-right:13px;
	position:relative;
	top:3px;
	font-size:11px;
}