/*File:			custom.cssDescription:	Custom styles for ThesisBASIC 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 themWHY THIS WORKS:By using the "custom" class, you are creating more specific CSS declarations for HTMLelements. CSS styling is applied through rules of specificity, and because declarationsprepended 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 foundin the User's Guide:	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*/.custom .menu a {letter-spacing: 0px; padding: 0.6em 0.8em;}.custom .menu {background: #005187 url('http://www.bloodyedge.com/bluestar/wp-content/uploads/2010/02/bstar_phone1.png') no-repeat right; font-weight:600;}.custom #header {border-style: none; background:#D9E5ED url(http://www.bloodyedge.com/bluestar/wp-content/uploads/2010/01/bstar_background_10-4.png) no-repeat;padding-top: 1.8em;padding-bottom: 1em;
height: 93px;}.custom #sidebars {}.custom .sidebar {border: 1px solid black;}.custom #footer {border-width:0.7em 0 0 0; border-color: #005187; border-style: solid;text-align:left;padding:0;}.custom #footer a {border-bottom: none;}.custom .footerimg {float:right;padding-right:0.8em;}.custom .footertext {padding:0.8em;list-style:none;font-size: 1.2em;}.custom .headerboundbox {float: right;width: 400px;background: #E9EDF2;list-style:none;}.custom .headerboundbox h2 {display:none;}.custom .headerboundbox blockquote {border-left: none;overflow: hidden;}.custom .headerboundbox li ul {height: 65px;overflow: hidden;}.custom .headerboundbox .alignright {text-align: right;}.custom .headerboundbox li li a {font-size: 1.3em;}.custom .headerboundbox li li small {font-size: 0.6em;}.custom .sidebar h3 {margin-bottom: 0;border-bottom: 2px solid #6B9C37;padding: 0 4px;color: #005187;font-weight:bold;letter-spacing:0;font-variant:normal;font-size: 1.2em;}.custom .widget ul {padding: 8px 8px 2px 8px;}.custom li.widget {margin-bottom: 1em;line-height: 1.3em;}.custom li.widget ul li {margin-bottom: 0.6em;}.custom .sidebar ul {margin: 1em;background:url(http://www.bloodyedge.com/bluestar/wp-content/uploads/2010/01/sidebar-background-single.png) no-repeat;}.custom .sidebar ul ul {border: none;background: none;margin: 0;}.custom .sidebar_list {padding-top: 1.1em;}.custom #content_box {border-bottom:0.3em #6B9C37 solid;padding-bottom:2em;}.custom #content h1, .custom #content h2 {border-bottom:0.1em #DDDDDD solid;}.custom #content p {margin-bottom: 1em;}.custom #feature_box {padding-left:0em;padding-right:0em;}.custom #posthighlights_container h2 {border-bottom: none;padding-top:0.2em;}.custom .ph_content {}.custom #posthighlights_container {padding-top:0;}.custom #content .wp-caption-text {margin-bottom: .2em;}