
body {
	margin: 0px;
    padding: 0px;
    background: #393939;
	font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Lucida Grande", "Arial", sans-serif;
	color: #fff;
}

#banner {
	width: 75px;
	height: 75px;
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 10000;
}

header {
	width: 100%;
	
	padding-top: 40px;
	padding-bottom: 40px;
	
	text-align: center;
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.75);
}

header h1 {
	font-weight: normal;
	margin: 0px;
}

header h4 {
	font-weight: normal;
	margin: 0px;
}

#container {
	max-width: 550px;
	height: 100%;
	margin: 0px auto 50px;
}

#container .app {
	display: block;
	position: relative;
	margin: 0px;
	
	width: 100%;
	height: 85px;
	
	background: none;
}

#container .app #icon {
	display: inline-block;
	float: left;
	
	width: 65px;
	height: 65px;
	
	margin: 10px;
	margin-left: 20px;
}

#container .app #name {
	display: block;
	
	height: 26px;
	padding-top: 22px;
	padding-bottom: 0px;
	margin-right: 125px;
	
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
	
	font-size: 20px;
}

#container .app #developer {
	display: block;
	
	height: 23px;
	padding-top: 0px;
	margin-right: 125px;
	
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
	
	font-size: 17px;
	color: #DEDEDE;
}

#container .app #buyButton {
	display: inline-block;
	float: right;
	clear: all;
	position: relative;
		
	width: 85px;
	height: 31px;
	margin-left: 40px;
	
	top: -40px;
	right: 20px;
	
	font-size: 15px;
	color: #fff;
	background: none;
	
	border: none;
	border-radius: 6px;
	box-shadow: inset 0 0 0 1px #fff;
}

#container .app #buyButton:active {
	background: #fff;
	color: #393939;
}

#container #footer {
	display: block;
	margin: 0px;
	
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	
	text-align: center;
	font-size: 12px;
	border-radius: 0px 0px 8px 8px;
	background: #393939;
}

#container #footer label {
	display: inline-block;
	width: 100%;
}

#container #footer a {
	color: #fff;
}

#container #footer a:visited {
	color: #fff;
}

#container #footer a:active {
	color: #939393;
}

.purchasedOverlay {
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1000000;
    background: rgba(0, 0, 0, 0.75);
}

.purchasedOverlay div {
	display: inline-block;
	height: 20px;
	width: 100%;
	margin-top: 32px;
	text-align: center;
}

.purchasedOverlay img {
	width: 20px;
	height: 20px;
}

.purchasedOverlay label {
	position: relative;
	top: -2px;
}

*:focus {
    outline: 0;
}