@charset "UTF-8";
/*
	Site Design Copyright 2009 Infusion Design Melbourne
	www.infusiondesign.com.au
	
	Table of Contents
	1.	Browser CSS Reset
	2.	Typographic Setup
	3.	Generic Page Layout
	
	Colour Swatches
	1. 	#2f3738		Background Dark Green
	2. 	#647678		Container Light Green
	3. 	#9fbcbf		Bright Highlight
	4. 	#3c4647		Dark Highlight
	5.	#353e3f		Darker Highlight
	6. 	#ff8300		Orange
	7.	#4b5759		Medium Highlight
*/

/*  -----  1. RESET  -----  */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
/*	outline: 0;*/
}
body {
	color: #eee;
	background: #2f3738;
	font: 14px/20px Tahoma, "Helvetica Neue", Helvetica, Geneva, Arial, sans-serif;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

a {
	color: #9fbcbf;
	text-decoration: none;
	border-bottom: 1px solid #3c4647;
}
	a:hover {
		color: #ff8300;
/*		background: #3c4647;*/
		border-bottom-color: #4b5759;
	}

p, h2, h3, h4 {
	margin: 0 0 10px 0;
}
h2 {
	color: #ff8300;
	font-size: 22px;
	line-height: 20px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
h3, h4 {
	font-weight: bold;
}

img {
	display: block;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#container {
	width: 960px;
	margin: 0 0 0 10px;
}

#header {
	height: 120px;
	padding-top: 30px;
	background: url('../images/site/content_top.png') no-repeat center bottom;
	position: relative;
}
	#header h1 {
		display: block;
		margin: 0 0 0 70px;
	}
		#header h1 a {
			display: block;
			width: 487px;
			height: 40px;
			padding: 10px;
			background: url('../images/site/logo.png') no-repeat 50% 50%;
			text-indent: -9999px;
			border: 0 none;
		}
			#header h1 a:hover {
/*				background-color: #3c4647;
				-moz-box-shadow: 0 0 20px rgba(0,0,0,0.3);
				-moz-border-radius-topleft: 20px;
				-moz-border-radius-topright: 20px;
				-moz-border-radius-bottomleft: 20px;
				-webkit-border-top-left-radius: 20px;
				-webkit-border-top-right-radius: 20px;
				-webkit-border-bottom-left-radius: 20px;
				border-top-left-radius: 20px;
				border-top-right-radius: 20px;
				border-bottom-left-radius: 20px;*/
			}

#navigation {
	width: 300px;
	height: 40px;
	display: block;
	position: absolute;
	bottom: 30px;
	right: 20px;
/*	background: url('../images/site/navigation.png') no-repeat 10px 0;*/
}
#navigation li {
	float: left;
	margin-left: 10px;
}
	#navigation li a {
		display: block;
		width: 90px;
		height: 40px;
		text-indent: -9999px;
		background: url('../images/site/navigation.png') no-repeat 0 0;
		border: 0 none;
	}
	#navigation .nav-about a { background-position: 0 0; }
	#navigation .nav-episodes a { background-position: -100px 0; }
	#navigation .nav-home a { background-position: -200px 0; }
	
	#navigation .nav-about a:hover { background-position: 0 -80px; }
	#navigation .nav-episodes a:hover { background-position: -100px -80px; }
	#navigation .nav-home a:hover { background-position: -200px -80px; }
	
	.about #navigation .nav-about a { background-position: 0px -40px; }
	.episodes #navigation .nav-episodes a { background-position: -100px -40px; }
	.home #navigation .nav-home a { background-position: -200px -40px; }
			
#content {
	background: url('../images/site/content_repeat.png') repeat-y 0 0;
	padding: 0 50px;
	width: 860px;
	float: left;
}

.feature {
	background: url('../images/site/feature.png') no-repeat 0 0;
	height: 40px;
	padding: 20px 30px;
	margin: 0 0 30px 0;
	font-size: 28px;
	line-height: 40px;
	color: #fff;
}

.primary {
	float: right;
	width: 460px;
	padding: 30px;
	background: #2f3738;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
}
#secondary-wrap {
	float: left;
	width: 310px;
}
.secondary {
	width: 250px;
	padding: 30px;
	margin-bottom: 30px;
	background: #2f3738;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
}

.subnav ul {
	margin: 20px 0 0 0;
}
.subnav li {
	display: block;
	margin: 10px 0;
}
	.subnav li a {
		display: block;
		padding: 10px 30px;
		text-decoration: none;
		-moz-border-radius-bottomleft: 20px;
		-moz-border-radius-topright: 20px;
		-webkit-border-bottom-left-radius: 20px;
		-webkit-border-top-right-radius: 20px;
		border-bottom-left-radius: 20px;
		border-top-right-radius: 20px;
		-webkit-transition: border 0.2s linear;
		-webkit-transition: color 0.2s linear;
	}
	
	.subnav li a:hover {
/*		background: #3c4647;*/
		color: #fff;
	}
	
	.subnav li.active a, .subnav li.active a:hover {
		background: #3c4647;
	}
	
#content-bottom {
	clear: both;
	background: url('../images/site/content_bottom.png') no-repeat 0 0;
	height: 60px;
	margin-bottom: 100px;
}
#footer {
	background: url('../images/site/footer_emrap.png') no-repeat 50px bottom;
	height: 110px;
	width: 860px;
	padding: 0 50px 20px 50px;
	position: fixed;
	z-index: -5;
	bottom: 0;
}
	#footer .byline {
		text-align: right;
		margin: 90px 0 0 0;
		font-size: 12px;
		color: #647678;
	}
	#footer .byline a {
		color: #647678;
		text-decoration: none;
	}
	#footer .byline a.infusion {
		color: #ff8300;
	}
	
	
/* HOME PAGE */
	.team-member {
		padding: 0 0 0 120px;
		margin: 30px 0;
	}
	.team-member:last-child {
		margin-bottom: 0;
	}
		.team-member .photo {
			margin: -10px 0 10px -130px;
			padding: 10px;
			float: left;
			border: 0 none;
			position: relative;
		}
		.team-member .photo .overlay {
			position: absolute;
			top: 10px;
			left: 10px;
			-webkit-box-shadow: 0 0 0;
			-moz-box-shadow: 0 0 0;
			-webkit-transition: opacity 0.2s ease-in-out;
		}
			.team-member .photo:hover .overlay {
				opacity: 0;
			}

		.team-member .read-more {
			text-align: right;
		}
		
		.team-member h3 a {
			color: #fff;
		}
			.team-member h3 a:hover {
				color: #ff8300;
			}
		.home .primary {
			width: 440px;
		}
		.home #secondary-wrap {
			width: 330px;
		}
		.home .secondary {
			width: 270px;
		}
		
/*  ABOUT  */

.about .primary {
	width: 500px;
}
.about #secondary-wrap {
	width: 270px;
}
.about .secondary {
	width: 210px;
}


.about .primary {
	padding-left: 150px; /* 30 + 120 margin for image */
	width: 380px; /* 500 as above - 120 */
}
	.about .primary img {
		float: left;
		margin-left: -120px;
	}

/*  EPISODES  */

.episodes .primary {
	width: 500px;
}
.episodes #secondary-wrap {
	width: 270px;
}
.episodes .secondary {
	width: 210px;
}

.episode {
	padding: 30px 30px 20px 30px;
	float: left;
	border-bottom: 1px solid #3c4647;
/*	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;*/
}
.episode:last-child {
	border-bottom: 0 none;
	padding-bottom: 0;
}
	.episode .options {
		width: 120px;
		margin: 0 30px 10px 0;
		float: left;
	}
		.episode .options h4 span {
			font-weight: normal;
		}
	.episode .summary {
		margin: 0 0 0 150px;
	}
	
.episode-feature {
	background: #353e3f;
}

.episode-page .primary {
	background: transparent;
	padding: 0;
	width: 560px;
}
.episode-page .episode-info, .episode-page .comments-wrap, .episode-page .comment-form {
	padding: 30px;
	float: left;
	width: 500px;
	background: #2f3738;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-bottom: 30px;
}
.episode-page .comment-form {
	margin-bottom: 0;
}

.episode-page .episode {
	padding-top: 0;
}
#audio_player {
	width: 440px;
	margin: 20px 0 20px 30px;
}
/*  COMMENTS  */

.comments {
	float: left;
}
.comments li {
	padding: 15px 30px 5px 30px;
	float: left;
	border-bottom: 1px solid #3c4647;
	width: 440px;
}
.comments li:last-child {
	border-bottom: 0 none;
	padding-bottom: 0;
}
	.comments li .info {
		width: 120px;
		margin: 0 30px 0 0;
		float: left;
	}
		.comments li .info h4 span {
			font-weight: normal;
		}
	.comments li .comment {
		margin: 0 0 0 150px;
	}
	
.comments .author-post {
	background: #3C4647;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-bottom-left-radius: 20px;
	-moz-border-radius-bottomright: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-color: #2f3738;
}
	.comments .author-post h4 {
		color: #FF8300;
	}
	.comments .author-post h4 span {
		color: #eee;
	}
	
/*  COMMENTS FORM  */
.comment-form {
/*	background: #3C4647;*/
}
.comment-form .required {
	color: #647678;
	padding: 0 5px;
}
.comment-form .hint {
	color: #647678;
	font-size: 11px;
}
.comment-form p {
	float: left;
	clear: both;
	margin-bottom: 5px;
}
.comment-form p:last-child {
	margin-bottom: 0;
}
.comment-form p label {
	width: 100px;
	height: 40px;
	float: left;
	margin: 5px 0 0 0px;
}
.comment-form input[type="text"], .comment-form textarea {
	width: 200px;
	padding: 5px;
	border: 0 none;
	font: 14px/20px Tahoma, "Helvetica Neue", Helvetica, Geneva, Arial, sans-serif;
	float: left;
	background: #647678;
	background: #ddd;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.5)));
	outline: none;
	color: #2F3738;
}

.comment-form input, .comment-form textarea {
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	-moz-border-radius-bottomleft: 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.comment-form input[type="text"]:focus, .comment-form textarea:focus {
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.7)));
}
.comment-form textarea {
	width: 390px;
	min-height: 60px;
	resize: vertical;
}

.comment-form input[type="submit"] {
	border: 0 none;
	padding: 5px 10px;
	font-size: 14px;
	background: #3C4647;
	color: #eee;
	cursor: pointer;
	margin: 10px 0 0 100px;
	border: 1px solid #4B5759;
	-webkit-transition: all 0.2s linear;
	-webkit-transition: color 0.2s linear;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.comment-form input[type="submit"]:hover {
	color: #FF8300;
	background: #4B5759;
}


#player_container {
	position: relative;
	background-color:#3C4647;
	height: 60px;
	margin: -20px 0 20px 0;
/*	-moz-border-radius-topleft: 20px;*/
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomleft: 20px;
/*	-webkit-border-top-left-radius: 20px;*/
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
}

#twitter ul {
	
}
#twitter li {
	margin-bottom: 20px;
}
#twitter .date {
	font-size: 12px;
	display: block;
	
	white-space: nowrap;
}