* {
	font-family:Georgia, "Times New Roman", Times, serif;
}

body {
	background-image: -webkit-linear-gradient(bottom, rgb(4,105,212) 19%, rgb(122,177,214) 60%, rgb(95,164,217) 80%);
	/*background:#9CF;*/
}

#container {
	margin:2.5em auto;
	width:640px;
}

header {
	width:640px;
	height:50px;
	display:block;
	background:#FFFFFF;
	font-size:24px;
	line-height:50px;
	text-align:center;
}

#videoHolder {
	position:absolute;
	visibility:hidden;
}

#output{
	position:absolute;
	visibility:hidden;
	width: 160px;
	height: 104px;
}

#output2 {
	border:3px solid #333;
	margin:25px 0px 10px 0px;
	
	/*Flip the video*/
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

#saveBtn {
	position:absolute;
	margin: -140px 0px 0px 15px;
	cursor:pointer;
	border-radius:4px;
	box-shadow:3px 3px 5px rgba(0,0,0,0.3);
	width:100px;
	height:30px;
	background-image: linear-gradient(bottom, rgb(74,74,74) 19%, rgb(171,171,171) 60%, rgb(112,112,112) 80%);
	background-image: -o-linear-gradient(bottom, rgb(74,74,74) 19%, rgb(171,171,171) 60%, rgb(112,112,112) 80%);
	background-image: -moz-linear-gradient(bottom, rgb(74,74,74) 19%, rgb(171,171,171) 60%, rgb(112,112,112) 80%);
	background-image: -webkit-linear-gradient(bottom, rgb(74,74,74) 19%, rgb(171,171,171) 60%, rgb(112,112,112) 80%);
	background-image: -ms-linear-gradient(bottom, rgb(74,74,74) 19%, rgb(171,171,171) 60%, rgb(112,112,112) 80%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.19, rgb(74,74,74)),
		color-stop(0.6, rgb(171,171,171)),
		color-stop(0.8, rgb(112,112,112))
	);
}

#saveBtn p{
	width:100px;
	height:30px;
	margin-top:5px;
	text-align:center;
	font-size:14px;
	color:#FFFFFF;
}

#saveBtn:hover {
	background-image: linear-gradient(bottom, rgb(4,105,212) 19%, rgb(122,177,214) 60%, rgb(95,164,217) 80%);
	background-image: -o-linear-gradient(bottom, rgb(4,105,212) 19%, rgb(122,177,214) 60%, rgb(95,164,217) 80%);
	background-image: -moz-linear-gradient(bottom, rgb(4,105,212) 19%, rgb(122,177,214) 60%, rgb(95,164,217) 80%);
	background-image: -webkit-linear-gradient(bottom, rgb(4,105,212) 19%, rgb(122,177,214) 60%, rgb(95,164,217) 80%);
	background-image: -ms-linear-gradient(bottom, rgb(4,105,212) 19%, rgb(122,177,214) 60%, rgb(95,164,217) 80%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.19, rgb(4,105,212)),
		color-stop(0.6, rgb(122,177,214)),
		color-stop(0.8, rgb(95,164,217))
	);
}


.row{
	width:100%;
	height: 80px;
}

.row img{
	float:left;
	margin-right:15px;
}

.sepia {
	-webkit-filter: sepia(100%);
}

.grayscale {
	-webkit-filter: grayscale(100%);
}

.hueRotate {
	-webkit-filter: hue-rotate(270deg);
}

.blur {
	-webkit-filter: blur(2px); 
}

.invert {
	-webkit-filter: invert(100%);
}

.normal {
	-webkit-filter:;
}


