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

.custom .headline_area h1, .custom .headline_area h2 {
color: #FF9900;
font-size:2.8em;
}
.custom #header_area .page {
padding-top: 0;
}
.custom #header #logo a {
  background: url('images/logo.png') no-repeat;
  display: block;
  text-indent: -9999px;
  height: 145px;
  outline: none;
  width: 325px;
}

.custom #header {
	border: none;
}
.custom #tabs {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#0E87C0 url(images/mainnav.png) repeat-x scroll center bottom;
border: none;
clear:both;
}
.custom #tabs li {
background: transparent;
border: none;
padding:.1em;
}

.custom #tabs a {
border-width:0 0 0 0;
font-size:1.1em;
line-height:1.273em;
}

.custom #tabs, .custom #tabs a, .custom #tabs li ul {
border:0 none;
color:#FFFFFF;
}
.custom #tabs a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent none repeat scroll 0 0;
letter-spacing:normal;
padding:1.4em;
}
.custom #tabs a:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/navhover.png) repeat-x scroll center bottom;
}
.custom #tabs li.current_page_item a {
border-bottom-color:#FFFFFF;
}
.custom #tabs .current_page_item a, .custom #tabs .current-cat > a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/navcurrent.png) repeat-x scroll center bottom;
cursor:pointer;
}
.custom #tabs .current-cat > a:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/navcurrent.png) repeat-x scroll center bottom;
}

.custom div.service-box {
background: #FFF4CC;
margin: 10px 0;
padding:10px 0 10px 15px;
}

.custom ol.service-list {
padding-left: 25px;
margin-top: 10px;
margin-bottom: 0px;
}

.custom p.call-now {
	background:#FF9900;
	color:#FFFFFF;
	font-size:1.2em;
	font-weight:bold;
	padding:10px;
}
/*.home  #banner {
background:#F4F5F7 url(http://www.gorocketpc.com/wp-content/uploads/2009/06/livemore.jpg) repeat scroll 0 0;
font-weight:400;
height:250px;
width:900px;
}
*/
.custom textarea {
margin-top: 15px;
padding:0.308em;
width: 271px;
}
.custom #sidebar_1 {
border-style:none;
}
.custom div.mmf input[type="submit"] {
	margin-top:15px;
}