/*
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 { background: #405452; color: #111; font-size: 62.5%; }


#page {
padding:1.7em;
}

.custom #container {

border:0.4em solid #C2D6B4;
margin-bottom:1em;
margin-top:1em;
padding:0.3em;
}

/*line colors*/
.custom #header #logo a{display:none;}
#header {
border-bottom: 3px double #DDDDDD;
clear:both;
}

#footer {
border-top:3px double #DDDDDD;
clear:both;
color:#888888;
text-align:right;
}

#sidebar_2 {
margin:3px 0 6px;
width:19.5em;
}

.sidebar input[type="text"], .sidebar input[type="submit"] {
width:14em;
}

#custom_box {
background:#FFFFFF none repeat scroll 0 0;
border-bottom:1px solid #DDDDDD;
padding:1.1em;
}

.sidebar h3 {
/* background: transparent url(http://www.usedultrasound.com/wp-content/uploads/2009/03/guarantee-icon.png) no-repeat scroll 0 20%; */
border-bottom:1px solid #DDDDDD;
color:#003362;
letter-spacing:2px;
margin:0 0 15px;
padding:0 0 20px 30px;
text-transform:uppercase;
}

#image-wrapper {
margin:5px;
padding:5px;
}

#content_box {
width:100%;
}

#image_box {
background:#91AA9D none repeat scroll 0 0;
border-bottom:1px solid #FCFFF5;
padding:1.1em;
}



#column_wrap {
/* background:transparent url(images/dot-ddd.gif) repeat-x scroll 21.7em 0; */
float:left;
width:74.2em;
}

.format_text h2 {
background:#DDDDDD none repeat scroll 0 0;
color:#000000;
font-size:1.3em;
margin:0 0 10px;
padding:2px;
}

/*h3 heading and background color bar*/
.format_text h3 {
background:#183341 none repeat scroll 0 0;
color:#FFFFFF;
font-size:1.286em;
line-height:1.222em;
margin:1.833em 0 0.611em; 
padding:2px 2px 2px 10px;
}

/*bullets underneath h3 tags -spacing*/
.format_text li {
margin: 10px;
}

/*spacing on right side widgets*/
.custom li.widget {
font-size:1.3em;
line-height:1.385em;
margin-bottom: auto;
}


/*inside box*/	
#container {
background-color:#FFFFFF;
}

ul#tabs {
border-color:#FCFFF5;
border-style:solid;
border-width:0 0 1px 1px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}

.custom li.widget .widget_box {
background:#FCFFF5 none repeat scroll 0 0;
border-color:#DDDDDD;
border-style:solid;
}

/*removes category info stuff at the top of each category page*/
#archive_info {display:none;}




.format_text .alignleft { margin: 0 1.571em 1.571em 0; float: left; clear: left; }
.format_text .alignright { display: block; margin: -1em 0 1.571em 1.571em; float: right; clear: right; }
.format_text .aligncenter { display: block; margin: 0 auto 1.571em auto; float: none; clear: both; }
.format_text .alignnone { display: block; margin: 0 auto 1.571em 0; clear: both; }
.format_text .wp-caption { background-color: #FCFFF5; border: 0.071em solid #ccc; text-align: center; padding: 0.3em; }
.format_text .wp-caption p { display: none; clear: both; float: right;} 


.format_text input, #commentform input, #commentform textarea {
border-width:0.083em;
padding:0.25em;
width:400px;
}
