/*
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-color: #3B91C0;
	background-image: url(/wp-content/uploads/bgtile.jpg);
	background-repeat: repeat-x;
	background-position: 50% 0;
}

	.custom #container { margin-top: 0.10em; margin-bottom: 2em; }
.custom #container border {0.1em}
.custom #container border {#063769}


		.custom #page { background: #fff; }
		

/* Header - Image Banner */
.custom #header {
	border-bottom:3px double #3B92C0;
	padding:0;
	margin:0;
	height:225px;
	background-image: url(images/computer-repairs-online-banner.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}
.custom #header #logo {}
.custom #header #tagline {}

/* --==[ BEGIN Nav Menu styles ]==-- */

.custom ul#tabs {
	list-style: none;
	background: #063769;
	border: 0.1em solid #3b92c0;
} /* whole nav menu */
.custom ul#tabs li {
	background: #063769;
	float: left;
	border-top-width: 0;
	border-right-width: 0.1em;
	border-bottom-width: 0;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #3b92c0;
	border-right-color: #3b92c0;
	border-bottom-color: #3b92c0;
	border-left-color: #3b92c0;
} /* each item */
/*.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { padding-bottom: 0.1em; background: #AFA48E; border-bottom: 0; border-top: 0; } /* current page or category */
.custom ul#tabs li a {
	display: block;
	line-height: 1em;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
} /* each item link */
.custom ul#tabs li a:hover { color: #fff; background: #3b92c0; } /* each item hover link */
/*.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {cursor: default; color: #fff; } /* current page or category links */
/*.custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current-cat a:hover {
	text-decoration: none;
	color: #063769;
	background: #AFA48E;
} /* current page or category link hover */
.custom ul#tabs li.rss a {
	padding-right: 16px;
	background-image: url(images/icon-rss.gif);
	background-repeat: no-repeat;
	background-position: 100% 50%;
} /* rss image  */
.custom ul#tabs li.rss {
	padding-right: 0;
	float: right;
	border-left-width: 0.1em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #3b92c0;
	border-right-color: #3b92c0;
	border-bottom-color: #3b92c0;
	border-left-color: #3b92c0;
} /* rss subscribe link*/

.custom ul#tabs li.rss a:hover { text-decoration: underline; background-color: #3b92c0; } /* hover over subscribe */

/* --==[ END Nav Menu Styles ]==-- */

/* --==[ START Custom Footer Menu Styles ]==-- */
.custom #footer {
  text-align:center;
border-top:3px double #3B92C0;
}
.custom #footer ul,
 .custom #footer li {
  display:inline;
}
/* --==[ END Custom Footer Menu Styles ]==-- */

.custom h1, h2, h3, h6 {
color:#5BA246;
font-weight:normal;
}

.custom .sidebar h3 {
color:#5ba246;
font-variant:small-caps;
letter-spacing:2px;
}

.custom #sidebars {
border-color:#3B92C0;
border-style:solid;
}
