/*  -----------------------------------------------------
    
	INFO
	
	Project:				
	Version:				1.0
	Last change:			--/--/--
	Author:					Milan Zivkovic
	Author URL:				http://www.wm.rs

	- - - - - - - - - - - - - - - - - - - - - - - - - - -

	COLORS
	
	link:					#;
	text:					#;
	background:				#;

	- - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	TABLE OF CONTENTS
   
	=Reset CSS
	=Basic
	=Body
		=Container
			=Header
				=Navigation
			=Content
			=Footer
    
	----------------------------------------------------- */



/*  -----------------------------------------------------

	=Reset CSS
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */

	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;
	}
	
	* {font-size:100.01%}

	/* remember to define focus styles! */
	:focus {
		outline: 0;
	}
	body {
		font: 12px/16px Arial, Helvetica, sans-serif;

	}
	ol {
		list-style-position: inside;
	}
	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: "" "";
	}*/


/*  -----------------------------------------------------

	=Basic
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */

	a:link,
	a:visited {
		color: #690;
		text-decoration: none;
	}
	
	a:hover,
	a:active {
		text-decoration: underline;
	}
	
	h1 {
		background: url(../images/samsung-robot.gif) no-repeat right top;
		color: #b4690f;
		font-size: 36px;
		height: 148px;
		line-height: 36px;
		padding: 100px 200px 0 0;
		position: absolute;
		text-align: left;
		top: -100px;
	}
	
	h2 {
		font-size: 14px;
	}
	
	h3 {
		font-size: 14px;
	}
	
	h4 {
	}
	
	h5 {
	}
	
	h6 {
	}
	
	ul li {
		padding-left: 10px;
	}
	
	p,
	dt,
	dd,
	ul,
	ol,
	h1,
	h2,
	h3,
	hr,
	blockquote,
	table,
	.intro {
		margin-bottom: 1em;
	}
	
	em {
		font-style: italic;
	}
	
	strong,
	h2,
	th,
	dt {
		font-weight: bold;
	}
	
	hr {
		background-color: #ccc;
		border: 0;
		color: #ccc;
		height: 1px;
	}
	
	th,
	td {
		line-height: 30px;
	}
	
	small {
		font-size: 10px;
		font-style: italic;
	}
	
	blockquote {
		font-style: italic;
	}
	
	.col {
		float: left;
		margin: 10px 20px 0 0;
	}

	#content .last {
		margin-right: 0;
		display: inline;
	}
	
	.right {
		float: right;
	}
	
	.left {
		float: left;
	}
	
	
/*  -----------------------------------------------------

	=Body
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */

	body {
		background: #99cc01 url(../images/bg.jpg) repeat-x;
		color: #666;
		text-align: center;
	}


/*  -----------------------------------------------------

	=Container
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */

	#container {
		margin: 0 auto;
		text-align: left;
		width: 800px;
	}


/*  -----------------------------------------------------

	=Header
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */

	#header {
		margin: 20px 0;
		padding: 0 10px;
	}


/*  -----------------------------------------------------

	=Content
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */
	
	#content {
		background-color: #fff;
		overflow: hidden;
		padding: 10px;
	}
	
		.intro {
			background-color: #efefef;
			border: 1px solid #b7b7b7;
			padding: 10px;
		}
		
			.intro p {
				margin: 0;
			}
			
		.episodes {
			margin: 0;
			overflow: hidden;
		}
		
			.episodes li {
				float: left;
				margin: 0 10px 10px 0;
				padding: 0;
				position: relative;
			}
			
				.episodes li a span,
				.episodes li span {
					background: #000;
					color: #fff;
					left: 3px;
					padding: 1px 3px;
					position: absolute;
					top: 3px;
				}
			
				.episodes .active a span {
					background-color: #690;
				}
				
				.episodes li a:hover span {
					background-color: #000;
				}
				
				.episodes li span {
					background-color: #ccc;
				}

		
/*  -----------------------------------------------------

	=Footer
	
	- - - - - - - - - - - - - - - - - - - - - - - - - - - */

	#footer {
		clear: both;
		color: #000;
		overflow: hidden;
		padding: 10px;
	}
	
		#footer a {
			color: #000;
		}
	
