@charset "utf-8";
/*
------------------------------------------------

* Description: Transparent Gradient
* Author: Eric Knauer
* CSS Used On: nav-example.html
* Last Edit Date: 04.20.2012
------------------------------------------------ 
*/

.container, nav, #gradient, article {
	width: 960px;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
}

nav {
	height: 114px;
	position: fixed;
	top: 0px;
	z-index: 100;
	background: transparent url(img/nav.jpg) no-repeat left top;
}

#gradient {
	height: 50px;
	position: absolute;
	bottom: 0px;
	
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

article {
	border: solid 1px #a1d9f0;
	height: 400px;
	background: #ecf7fb;
}

article p {
	padding: 25px;
	line-height: 18px;
	font-size: 12px;
}



