/*
CSS Style Sheet
*/

body {
	margin: 0;
	padding: 0;
	font-family: helvetica, arial, sans;
}

#container
{
	margin: 0;
	background: #fff;
}

#header
{
	background: #963;
	color: #fff;
	padding: 5px;
}

#header h1 { font-size: 150%; }

#navigation
{
	float: left;
	width: 100%;
	background: #666;
}

#navigation ul
{
	margin: 0;
	padding: 0;
}

#navigation ul li
{
	list-style-type: none;
	display: inline;
}

#navigation li a
{
	display: block;
	float: left;
	padding: 5px 10px;
	color: #FFF;
	text-decoration: none;
	border-right: 1px solid #fff;
	font-weight: bold;
	font-size: smaller;
}

#content
{
	clear: left;
	padding: 20px;
	line-height: 1.3em;
	width: 600px;
}

#i-content
{
	clear: left;
	padding-left: 20px;
	padding-right: 20px;
}

#content h2
{
	color: #000;
	font-size:125%;
	margin: 0 0 .5em;
}

#content h4
{
	margin-bottom:5px;
}

#content h5
{
	margin-top:5px;
	margin-bottom:0;
}

#content p
{
	margin: 0 0 1em;
}

#content blockquote
{
	margin: 0 30px 1em;
}

#footer
{
	background: #C96;
	text-align: right;
}

.screenshot {
	position: relative;
	width: 100%;
	overflow: auto;

	line-height: 20px;
	text-align: center;

	background: #fff;
}
	.screenshot ul {
		list-style: none;
		width: 300%;
	}
	.screenshot ul li {
		display: block;
		float: left;
		width: 33%;
		min-height: 350px;

		-o-background-size: 100% 100%;
		-ms-background-size: 100% 100%;
		-moz-background-size: 100% 100%;
		-webkit-background-size: 100% 100%;
		background-size: 100% 100%;
	}

	.screenshot p {
		text-align: left;
		width: 350px;
	}
	.screenshot .btn {
		display: inline-block;
		margin: 25px 0 0;
		padding: 9px 22px 7px;
		clear: both;

		color: #333;
		font-size: 12px;
		font-weight: bold;
		text-transform: uppercase;
		text-decoration: none;

		border: 2px solid rgba(255,255,255,.4);
		border-radius: 5px;
	}
		.screenshot .btn:hover {
			background: rgba(255,255,255,.05);
		}
		.screenshot .btn:active {
			-webkit-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
			-moz-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
			-ms-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
			-o-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
			filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
		}

	.screenshot .btn, .screenshot .dot {
		-webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
		-moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
		-ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
		-o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
		filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	}

	.screenshot .dots {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
	}
		.screenshot .dots li {
			display: inline-block;
			width: 6px;
			height: 6px;
			margin: 0 4px;

			text-indent: -999em;

			border: 2px solid #888;
			border-radius: 6px;

			cursor: pointer;
			opacity: .4;

			-webkit-transition: background .5s, opacity .5s;
			-moz-transition: background .5s, opacity .5s;
			transition: background .5s, opacity .5s;
		}
			.screenshot .dots li.active {
				background: #888;
				opacity: 1;
			}

	.screenshot .arrows {
		position: absolute;
		bottom: 20px;
		right: 20px;
		color: #000;
	}
		.screenshot .arrow {
			display: inline;
			padding-left: 10px;
			cursor: pointer;
		}
