/* File:			custom.css Description:	Custom styles for the Neoclassical 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! */ 







/* These codes changes the background color and borders around the main container */

body.custom { background: #44443f; }
.custom #container{ margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #fff; border: 1.5em solid #fff; 
 -moz-box-shadow: 1px 1px 10px #000;

 -webkit-box-shadow: 1px 1px 10px #000;

 box-shadow: 1px 1px 10px #000;

}
.custom #page { background: #fff; }

  /* This codes sets the clickable background image based on the site title's link */

.custom #logo a {
-moz-background-inline-policy:continuous;

background:url("images/gadgetmost.gif") no-repeat scroll 0 0 transparent;

float:left;

height:100px;



text-indent:-9999px;

width:350px;
}
.custom #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #masthead h1, #masthead #tagline { display: none; height: 0; }


/*This codes allows you to change the fonts for the No Sidebar Template*/
.custom #no_sidebar {font-family: Verdana, san serif; font-size: 10px;}

/****Sidebar Effect****/

.custom .sidebar .widget {

-moz-border-radius:5px;

-webkit-border-radius:5px;

-moz-box-shadow:5px 5px 7px #333333;

-webkit-box-shadow:5px 5px 7px #333; 

border:1px solid #DEDBD1;

margin:0 1em 0.75em 1.2em;

padding:0.41em;

font-size:12px;
}

/****Subscribe Box Effect****/



element.style  {

cursor:pointer;

margin:5px;

}



.custom #Subscribe_Box .submit {

background:none repeat scroll 0 0 #333333;

border-color:#333333;

border-style:solid;

color:#FFFFFF;

font-weight:bold;

letter-spacing:1px;

line-height:1em;

margin:10px 1em 0;

padding:4px;

text-transform:uppercase;

}



.custom #Subscribe_Box .submit {

background:none repeat scroll 0 0 #333333;

border-color:#333333;

border-style:solid;

color:#FFFFFF;

font-weight:bold;

letter-spacing:1px;

line-height:1em;

margin:10px 1em 0;

padding:4px;

text-transform:uppercase;

}



/****Sidebar Header Effect****/

.custom .sidebar h2 {

-moz-border-radius:5px;

-webkit-border-radius:5px;

background:url("images/side-head.png") no-repeat scroll left center transparent;

color:#FFFFFF;

font-size:15px;

font-weight:bold;

height:25px;

width:290px;

margin:0.25em 0 0 0;

padding-top:10px;

text-align:center;

text-shadow:-1px -1px #666666, 2px 2px #000000;

}