/* quick reset */
body, h1, h2, p, ul, li {
	margin:0;
	padding:0;
}
ul {list-style-type:none;}

/* General Elements */
body {
	background: #eee;
	font: 16px/1.4em Helvetica, Arial, sans-serif;
	color:#333;
}

img {
	max-width:100%;
}
	
#container {
	width:100%;
	margin:0 auto 40px;	
	max-width:600px;
	background:#fff;
	border-radius:0 0 3px 3px;
	border:1px solid #d0d0d0;
	border-top:0;
	box-shadow:0 1px 0px #fff;
}

/* Headers */
header {
	text-align:center;
	padding:30px 20px;
}
header h1 {
	margin-bottom:20px;
}
header p {
	color:#413c38;
	font-size:1.2em;
	line-height:1.4em;
}

/* List Items */
.icon,
.info {
	box-sizing:border-box;
}
.icon {
	float:left;
	width:15%;
	text-align:right;
	padding-left:3%;
}
.info {
	width: 85%;
	float:left;
	padding:0 5%;
}

.list li {
	padding: 20px 0;
	border-top:1px solid #eee;
	clear:both;
	overflow:auto;
}
.list li:hover {
	background:#f7f7f7;
}
.info h2 {
	margin-bottom:10px;
	font-size:1.75em;
	line-height:1em;
	display:inline-block;
}

.info p {
	font-size:14px;
	color:#777;
}


/* Button Styles */
a {
	text-decoration:none;
	color:#fff;
}
.join {
	background: #57a9eb; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(87,169,235,1) 0%, rgba(53,156,234,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(87,169,235,1)), color-stop(100%,rgba(53,156,234,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(87,169,235,1) 0%,rgba(53,156,234,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(87,169,235,1) 0%,rgba(53,156,234,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(87,169,235,1) 0%,rgba(53,156,234,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(87,169,235,1) 0%,rgba(53,156,234,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57a9eb', endColorstr='#359cea',GradientType=0 ); /* IE6-9 */
	border:1px solid #326fa9;
	border-top-color:#3e80b1;
	border-bottom-color:#1e549d;
	color:#fff;
	font-weight:bold;
	text-transform:uppercase;
	text-shadow:0 -1px 0 #1e3c5e;
	font-size:11px;
	border-radius:5px;
	box-shadow:0 1px 0 #bbb, 0 1px 0 #9cccf3 inset;
	white-space:nowrap;
	-webkit-transition:all .25s ease;
	-moz-transition:all .25s ease; 
	transition:all .25s ease;  	
	float:right;
	display:inline-block;
	padding:1px 1em 0; /* make appear center from 1px highlight */
	line-height:2.25em;	
}

.join.clicked {
	background: #24a501; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(30,183,0,1) 0%, rgba(36,165,1,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,183,0,1)), color-stop(100%,rgba(36,165,1,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(30,183,0,1) 0%,rgba(36,165,1,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(30,183,0,1) 0%,rgba(36,165,1,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(30,183,0,1) 0%,rgba(36,165,1,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(30,183,0,1) 0%,rgba(36,165,1,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1eb700', endColorstr='#24a501',GradientType=0 ); /* IE6-9 */
	border:1px solid #1e8701;
	border-bottom-color:#176701;
	border-top-color:#24a501;
	box-shadow:0 1px 0 #bbb, 0 1px 0 #acc63d inset;
	padding:1px 2em 0;
	cursor:pointer;
}

.join.clicked::before {
	content:'Join Now ';
}

.join.clicked:active {
	box-shadow:0 0 8px #777 inset;
}

@media screen and (max-width:450px) {
	
	.info h2 {
		display:block;
	}
	
	.join {
		float:none;
		margin-bottom:20px;
	}
}