/* @override http://addicted2salsa.com/videos/css/style.css */

/*
Author Name : Anthony G. Persaud
Author Site : http://anthonypersaud.com
Style Name : MonteCarlo 1 Column
Style URI : http://www.salsa2.org
Version : 1
Comments : Based on a 1 column design from MonteCarlo (Addicted2Salsa V2)
*/

@font-face {
  font-family: FlintsHand;
  src: url(http://addicted2salsa.com/videos/css/fonts/FlintsHand.ttf) format("truetype");
}
/* Animates the preview images to make the visible that they are clickable */
.easeOut, a img {
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
/* This property tells the browser that when a value changes (all values) 
to make that change over a 0.15 second window, and to ease-out the change */
}

span.previewbox a:hover img {
	-webkit-transform: scale(1.05) rotate(1deg);
	-moz-transform: scale(1.05) rotate(1deg);
/* This property applies two transformation to the element on 
hover: scale 1.05x and rotate 1 degree left */
}

/* Animates the skill level menu to grow the buttons on hover */

a:hover img.filterButton {
	 -webkit-transform: scale(1.1);
	 -moz-transform: scale(1.1);
}

a img:hover {
	 -webkit-transform: scale(.90);
	 -moz-transform: scale(.90);
}


/*
-- Buttons That Really Click -- 
    http://www.zurb.com/article/286/css-deconstruction-atebits
	This one's subtle, but incredibly easy. Buttons on the atebits homepage 
	have an active (`mousedown`) effect where the button actually seems to 
	click down when you press it. The code is amazingly simple:

	#slogan {
	color: #111;
	text-shadow: #444 0px 1px 1px;
	}
	
	#home #products a.more:active {
	height: 31px;
	padding-bottom: 1px;
	padding-top: 2px;
	}

	Atebits is simply manipulating the top and bottom padding so the text 
	moves down a pixel when the user clicks. It's a nice effect, but it 
	breaks the notion of a button — you don't click a button label, you 
	click the entire button. An incredibly easy effect that we frequently 
	use for buttons is this:

	a.button:active {
	position: relative;
	top: 1px;
	}

*/



div.download_instructions {
	vertical-align: baseline;
	padding-right: 100px;
	padding-left: 100px;
	padding-top: 30px;
}


/* @group Template */ 

body {
	background: #7c090a url(../images/background.png) repeat-x 0 top;
	margin: 0;
	padding: 0;
	font: 62.5% 'Lucida Grande', Verdana, Arial, Sans-Serif;
}

/* he inset feel of this HR adds some refined depth to the page. */
hr {
	margin: 17px 0 18px;
	height: 0;
	clear: both;
	border-width: 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #fff;
}

code
{
 font-family: Monaco, Verdana, Sans-serif;
 font-size: 10px;
 text-align: justify;
 background-color: #f9f9f9;
 border: 1px solid #D0D0D0;
 display: block;
 margin: 04px 0 14px 0;
 padding: 12px 10px 12px 10px;

}

.important {
 background: #FBE6F2;
 border: 1px solid #D893A1;
 color: #333;
 margin: 10px 0 5px 0;
 padding: 10px;
}

img {
	border: 0px;
}

div#feeds {
	margin-right: 35px;
	margin-left: 35px;
}

div#header {
	background-image: url(../images/header.png);
	width: 850px;
	height: 189px;
	padding: 0;
	margin: 0;
}

div#body, div#footer {
	width: 850px;
	background: #fff url(../images/body_min.png) repeat-y;
	margin: 0;
	padding: 0;
	height: 100%;
}

#body #container {
	/* Will allow the sides to fade */
		background: url(../images/body.png) no-repeat 0 top;
	width: 850px;
	height: 100%;
	min-height: 1028px;
	
}

a {
	color: #730809;
	text-decoration: none;
	font-weight: bold;
}

div#content {
	margin-right: 30px;
	margin-left: 30px;
}

/* @group Site Menu */

ul.menu {
	width: 100%;
	top: 158px;
	height: 15px;
	position: relative;
}


ul.menu li {
	display: inline;
	margin: 0;
	}

ul.menu {
	position: absolute;
	bottom: 0;
	margin: 0 20px;
	}

ul.menu,
ul.menu li {
	float: left;
	list-style: none;
	}

ul.menu li {
	margin-right: 4px;
	}

ul.menu li a {
	display: block;
	padding: 5px 15px;
	font-size: 1em;
	color: white;

	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	}

ul.menu li a:hover {
	background: #333;
	color: #eee;
	text-decoration: none;
	}

ul.menu li.current_page_item a,
ul.menu li.current_page_item a:hover {
	color: #333 !important;
	background: white;
	text-decoration: none;
	}

/* @end */

/* @end */

/* @group Adsense Banners */

div.adsense_halfbanner, div.adsense_linkunit_block {
	float:right;
}

div.adsense_leaderboard, div.adsense_linkunit_wide, div.adsense_banner {
	
}

/* @end */


/* @group Podcast List */

span.social-link {
	font-size: 14px;
}

div.pagination {
	font-size: 20px;
	margin-top: 5px;
}

div.episode {
	height: 100%;
	padding: 15px 5px;
	margin: 10px 5px;
}

div.episode .title {
	text-align: left;
	font-size: 20px;
}

div.single_episode h1.title {
	font-size: 25px;
}
div.episode .title, div.single_episode .title {
	font-family: FlintsHand, 'Lucida Grande', Verdana, Arial, Sans-Serif;
	text-decoration: none;
	color: #ccc;
    text-shadow: #999999 0px 1px 3px;
	/* text-shadow takes 4 values: color, 
	x-displacement, y-displacement and blur size. */
}

div.episode .body > div, div.episode div.body div.comp {
	display: inline-block;
	text-align: left;
}

div.episode div.metadata {
	width: 325px;
	text-align: left;
	vertical-align: top;
	padding-left: 5px;
}

div.episode div.download_button {
	width: 100%;
	text-align: right;
	vertical-align: bottom;
	margin-top: 6px;
}

div.episode div.description {
	text-align: left;
	margin-top: 7px;
	color: #515151;
}

span.video-att-title {
	font-weight: bold;
}

div.episode .videobox {

	width: 350px;
	height: 225px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 5px;
	vertical-align: top;
}

div.episode span.previewbox img {
	max-width: 350px;
	max-height: 225px;
	-webkit-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: #999999 2px 2px 5px;
	padding: 5px;
}



/* @end */


	
/* @group Single Episode View */




div.single_episode div.metadata {

	text-align: left;
	padding: 10px 35px;
}

div.single_episode div.description {
	text-align: left;
	margin-top: 7px;
	color: #515151;
}

div.single_episode div.download_button {
	width: 100%;
	text-align: right;
	vertical-align: bottom;
	margin-top: 6px;
}


/* @end */

/* @group License */

div#cc_license  {
	 clear: both; 
	 border-top: 1px solid #ddd; 
	 text-align: left; 
	 width: 500px;
	 color: #676767;
	margin: 0 auto;
}

div#cc_license p {
	line-height:1.5em;
	text-align: left;
	margin: 0;
	padding: 0 0 10px;
}
div#cc_license img {
	float: left; 
	margin-right: 10px;
	padding-top: 12px;
}

/* @end */

