/*
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: #8BB1E0 url(images/bodyBg.png) repeat-x top;
}
.custom #page {
	background:none;}
.custom #content_box {
	background:#FFFFFF;}
.custom #rheumtabscontainer {
	background: none;
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 28px;
}

.custom ul#rheumtabs {
	list-style: none;
	overflow: hidden;
	display: block;
	height: auto;
	float: right;
	background: url(none);
}
.custom ul#rheumtabs li {
	display: inline;
	overflow: hidden;
	background: url(images/rheum-tabs-li-bg.png) no-repeat left bottom;
	padding-left: 7px;
	margin-left: 5px;
	float: left;
}
.custom ul#rheumtabs li:hover {
	background: url(images/rheum-tabs-li-bg-hover.png) no-repeat left bottom;
}
.custom ul#rheumtabs li a {
	background: url(images/rheum-tabs-a-bg.png) no-repeat right bottom;
	padding: 3px 8px 4px 1px;
	overflow: hidden;
	float: left;
	border-right: none;
	border-bottom: none;
	border-left: none;
	border-top-style: none;
	color: #FFFFFF;
	margin: 0px;
	font: small-caps normal 12px Verdana, Arial, Helvetica, sans-serif;
	text-transform: capitalize;
	letter-spacing: 0.1em;
}
.custom ul#rheumtabs li a:hover {
	color: #FFCC66;
	background: url(images/rheum-tabs-a-bg-hover.png) right bottom;
}
.custom #header {
	margin: 0px;
	padding: 5px;
	height: 93px;
	overflow: hidden;
}
.custom #logo {
	width:600px;
	margin: 0px;
	padding: 0px;
	float: left;
	}
.custom #header #hopkinsmedicine {
	margin: 15px;
	padding: 5px;
	float: right;
	width: 250px;
}
.custom ul.menu {
	background: #2C4678 center top;
	padding: 1px 0px 0px 1px;
	font-variant: normal;
	text-transform: capitalize;
} 
.custom ul.menu li a {
	background: url(images/menu-bg.png) center top;
	background-color:#CFD6F5;
	font-weight: bold;
	font-variant: normal;
	text-transform: capitalize;
	color: #FFFFFF;
	width: 140px;
	margin-right: 1px;
	text-align: center;
}
.custom ul.menu li.tab-home a {
	background: url(images/menu-bg.png) center top;
	background-color:#CFD6F5;
	font-weight: bold;
	font-variant: normal;
	text-transform: capitalize;
	color: #FFFFFF;
	width: 141px;
	margin-right: 1px;
	text-align: center;
}
.custom ul.menu ul.submenu {
	border-top: 1px solid #2C4678;}
.custom ul.menu ul.submenu li a {
	padding-left: 25px;
	color: #FFFFFF;
	border-bottom: 1px solid #2C4678;
	background: #6B8CC9 url(images/navigation-dot-hover.gif) no-repeat left center;
	text-align: left;
	font-weight: normal;
}
.custom ul.menu ul.submenu li a:hover{
	background: #A2B7DD url(images/navigation-dot.gif) no-repeat left center;
}
.custom #breadcrumbs {
	font-size: 10px;
	color: #234C9C;
	padding: 5px;
	margin: 0px;
	background: #DBE3F2;
}
.custom #breadcrumbs a:hover {
	color: #718FCA;
	text-decoration: none;
}
.custom #breadcrumbs a {
	font-weight: bold;
	text-decoration: underline;
}
.custom #content {
	background: #FFFFFF;
	padding-top: 5px;
}
.custom .post_box, .custom .top {
	margin: 0px;
	padding: 5px;
}
.custom .headline_area {
	margin: 0px;
	padding: 0px 0px 10px;
}
.custom .headline_area h1, .custom .headline_area h2 {
	margin: 0px;
	padding: 0px;
	color: #224B9B;
	border-bottom: 1px solid #F1C102;
	font-size: 18px;
	text-transform: uppercase;
}
.custom #content .format_text p {
	padding: 5px;
	margin-bottom: 2px;
}
.custom #content .format_text h2 {
	font-size: 16px;
	color: #4167AE;
	border-bottom: 1px solid #CCCCCC;
	margin: 0px;
	padding: 5px;
	font-weight: bold;
}	
.custom #content .format_text h2 a {
	color: #4167AE;
	text-decoration: none;
}

.custom #content .format_text h3, .custom #content .format_text h4, .custom #content .format_text h5, .custom #content .format_text h6 {
	font-size: 15px;
	color: #487BD9;
	margin: 0px;
	padding: 5px;
	font-weight: normal;
	}
.custom .format_text ul, .custom .format_text ol, {
	margin: 0px 0px 0px 5px;
	padding: 5px;
	list-style: inside;
}
.custom .format_text .thirds {
	margin: 5px;
	padding: 5px;
	float: left;
	width: 200px;
}
.custom #sidebar_1 ul.sidebar_list{
	padding-top: 0px;
	margin: 0px 0px 0px 10px;
}
 .custom #sidebar_1 ul.sidebar_list li ul, .custom #sidebar_1 ul.sidebar_list li ul li.page_item {
	margin: 0px;
	padding: 0px;
}
.custom #sidebar_1 ul.sidebar_list li,  .custom #sidebar_1 ul.sidebar_list li ul li.page_item {
	list-style: none;
}
.custom #sidebar_1 ul.sidebar_list li a, .custom #sidebar_1 ul.sidebar_list li ul li.page_item a {
	padding: 10px;
	float:left;
	font-size: 11px;
	font-weight: normal;
	color: #344354;
	background: #FFFFFF url(images/sidebar-menu-bg.png) repeat-x left bottom;
	width: 175px;
}
.custom #search {
	background: url(images/sidebar-menu-bg.png) repeat-x left top;
	padding: 5px;
	width: 185px;
	border-bottom: 4px groove #FFCC00;
	margin: 10px 0px 0px;
	height: 55px;
	float: left;
}
.custom #search h3 {
	margin: 0px 0px 10px;
	padding: 0px;
	color: #FFFFFF;
	border-bottom: 1px solid #F1C102;
	font-size: 15px;
	text-transform: uppercase;
	text-align: center;
	}
.custom #search input.text_input {
	font-size: 10px;
}
.custom ul#sidebarbuttons {
	list-style: none inside;
	width: 200px;
	padding-left: 17px;
}
.custom ul#sidebarbuttons li a img {
	float: right;
	padding-top: 3px;`
}
.custom #footer {
	background: url(images/footer-menu-bg.png) no-repeat center bottom;
	padding: 5px 10px 10px;
	width: 936px;
	color: #214A99;
	text-align: center;
}
.custom #copyright {
	color: #344354;
	text-align: center;
	padding: 5px;
}

.custom #copyright a {
	font-weight: bold;
	color: #344354;
	text-decoration: underline;
}
.custom .comments_closed p {display: none ;}
.custom .format_text img {
    background: #B8C1D7;
	padding: 5px;
	border: 1px solid #0A2972;
	margin: 10px;
	display: block;
}