/*

File:			custom.css

Description:	Custom styles for the Thesis Theme that you define



Use:



The <body> tag has been appended with the "custom" class, like so: <body class="custom">.

You can use the "custom" class to overwrite *any* CSS declarations contained in this

theme's 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!

*/

/* background customisation */

body { background: #FFE6B3; color: #111;}

/* Footer Customisation  */

.custom #footer { padding-top: 1.1em; color: #888; border-top: 3px double #ddd; text-align: center; }

/* Header Customisations */

.custom #header
{
padding: 0em;border: 0em; margin: 0em;
}
.custom #header #logo
{
display:block; width:950px; height:180px; background:url(http://www.guitarimpressions.com/wp-content/themes/thesis_151/custom/images/banner1.jpg) center no-repeat;
color:#990033; text-indent: -9999px; padding: 0em; border: 0em; margin: 0em;
}
.custom #header #tagline { font-weight: normal; color: #888; display:none; }

/* Multimedia box Customisation */
.custom #image_box { border-bottom: 1px solid #ddd; }
.custom #image_box img { display: block; background: #fff; border-style: solid; border-width: 0.4em; border-color: #990033; background-color: #990033;}

/* Tabs Menu Customisation - rss tab */
.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
.custom .menu .rss a, .menu .rss a:hover { color: #990033; font-weight: bold; font-size: 1.5em; padding-right: 16px; background: url('lib/images/icon-rss.gif') 100% 50% no-repeat; border: none; }
.custom.menu .rss a:hover { color: #990033; text-decoration: underline;}

/* Tabs Menu Customisation - other tabs */

.menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover {text-transform: lowercase; text-decoration: underline; font-weight: bold;}
.custom .menu a {font-weight: bold;}

/* Form background colour customisation */

.custom input,textarea {background: #fffde0;}