/*
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 a:link {
	text-decoration: none;
  cursor:pointer;
  padding: 1px 4px 2px 1px;  
  transition: background-color .25s linear;
  -webkit-transition: background-color .25s linear;
  -moz-transition: background-color .25s linear;
	}
.custom a:visited {
	text-decoration: none;
 	padding: 1px 4px 2px 1px;
  transition: background-color .25s linear;
  -webkit-transition: background-color .25s linear;
  -moz-transition: background-color .25s linear;

	}
.custom a:hover {
	color: black;
	text-decoration: none;
	background-color: yellow;
	border-style: none none none none;
	border-color: #cccc00;
	}

.custom a[rel~="attachment"] img:hover, .gallery a img:hover, .wp-caption:hover {
  background-color: yellow;
  border-color: none;
}


.custom a img:hover {
	transform-origin:50% 50%;
	transform:scale(1.05,1.05);
	box-shadow:0px 5px 10px #333;
	-moz-transform-origin:50% 50%;
	-moz-transform:scale(1.05,1.05);
	-moz-box-shadow:0px 5px 10px #333;
	-webkit-transform-origin:50% 50%;
	-webkit-transform:scale(1.05,1.05);
	-webkit-box-shadow:0px 5px 10px #333;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
}

.custom #header { background: url('images/metal-banner.png') no-repeat; height: 120px; width: 950px; }



/* dont't display blog title and tagline */
.custom #header #logo, .custom #header #tagline { display: none; } 

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; } 

/* Description:	CSS template for customizing your Thesis background

NOTE: If you want to prevent your background from scrolling with the rest of the page, simply 
add "background-attachment: fixed;" to your body.custom declaration. For example, if you would 
like to use the example cloud background but keep it fixed, your body.custom declaration 
should look like this:

body.custom { background: #394f5c url('images/bg-clouds.jpg') 50% 0 no-repeat; background-attachment: fixed; }
*/

body.custom { background: #44443f; }
	
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; 
/*	 box-shadow:0px 0px 20px #000;
	-moz-box-shadow:0px 0px 20px #000;
	-webkit-box-shadow:0px 0px 20px #000;
	border-radius: 5px;
  -moz-border-radius: 5px;
	-webkit-border-radius: 5px; */
	}

.custom #page { background: #fff; }

/* 
.custom b, strong { 
   font-family: "Droid Sans Bold", "Lucida Grande", "Segoe UI", sans-serif; 
   font-weight: normal;
 }
*/

.custom em { 
   font-family: Georgia, serif; 
   font-style: italic;
 }
 
.amazonimg {
  border: solid 1px lightgray;
}
.bingo ol {
 -webkit-padding-start: 0px;
 display: block;
 list-style-type: decimal;
 margin-left: 1.5em;
}