/*
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/
*/


/****CLEARS****/


.clears {
	clear:both;
}


/****REMOVE BORDERS****/
.custom #header, .menu{
	border-bottom: 0px;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
}




/****GENERAL*****/
.custom .menu {
	background:#ccc;
	padding:0;
	font-weight:bold;
}
.custom .tab-home {
	padding-left:15px;
}
.custom #content {
	background:#000;
}
#content_box  {background: #000 url('http://onwp.net/images/gms-bg.jpg') 50% 50% repeat-y;}
.custom #container {
	margin: 10px auto;
	border: solid #999 1px;
}
.custom #feature_box {
	background:#000;
}
.custom #myGallery {
	margin:0 auto;
}
.custom #sidebars a {
	color:#ccc;
}
.custom table.openings {
	background:#333;
	width: 100%;
}
.custom .widget {
	border:1px solid #333;
	background:#444;
	padding:4px;
	margin:10px 0px 0px -5px;
}
.custom #search p {
	margin-bottom:0px;
}
/****FOOTER MENU*****/
.custom #footmenu ul {
	margin: 0 auto;
}
.custom #footmenu li {
	list-style:none;
	float:left;
	padding:5px 16px;
	font-size:13px;
}
.custom #footmenu a {
	color: #fff;
}


.custom .linkcat {
	list-style:none;
}


/****FEATURED INSTRUCTOR*****/
.custom #featured-instructor img {
	float:left;
	width:64px;
	margin:0 5px 5px 0;
}


/* DoubleMule Clickable Header v. 1.0 */


.custom #header
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
height:100px;
}


.custom #header #logo a
{
display:block;
width:730px;
height:100px;
background:url(http://gardenmusicschool.com.s53650.gridserver.com/images/header.jpg) center no-repeat;
outline:none;
color: #000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}


.custom #header #tagline
{
color:#000000;
text-indent: -9999px;
}



