body {
	background: #333333;
	margin: 0;
	font-family: proxima-nova, proximanova, "Proxima Nova", Helvetica, sans-serif;
	font-weight: 300;
}

* { /* sanity */
	box-sizing: border-box;
}

h1, h2, h3, h4, h5 { /* reset */
	margin: 0;
}

a {
	color: #198CFF;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

header {
	position: relative;
	background: white;	
	height: 80px;
	width: 100%;
	padding: 0 20px;
}

header h1 {
	text-indent: -5000em;
	position: absolute;
	top: 50%;
	margin-top: -24px;
	width: 182px;
	height: 48px;
	background-image: url(logo@2x.png);
	background-size: 182px 48px;
}

header h2 {
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -24px 0 0 0;
	
	height: 48px;
	line-height: 48px;
	font-size: 26px;
	font-weight: 300;
}

header h2 a.button {
	margin-left: 10px;
}

header button, a.button {
	border: 0;
	border-radius: 3px;
	background: #198CFF;
	line-height: 17px;
	margin: 0;
	padding: 6px 10px;

	color: #FFFFFF;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
	vertical-align: middle;
}

footer {
	margin-top: 3em;
	padding: 20px;
	clear: both; 
	color: white;
	font-size: 14px;
}


@media (max-width: 700px) {
	header h2 {
		display: none;
	}
}

@media (max-width: 680px) {
}




.popdialog {
	position: fixed;
	z-index: 10001;
	top: 50%;
	margin-top: -50px;
	left: 50%;
	width: 350px;
	margin-left: -220px;
	
	padding: 1em;
	
	color: #474747;
	font-size: 19px;
	background-color: #F3F3F3;
	-webkit-border-radius: 6px;
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.4);
	-moz-border-radius: 6px;
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.4);
	border: 1px solid rgba(0,0,0,0.6);
	-webkit-background-clip: padding-box;
}

.popdialog.withicon {
	background: #F3F3F3 url('share_img/dialogicon.png') no-repeat 10px 20px;
	width: 350px;
	padding-left: 65px;
}

.popdialog .buttons, .popdialog form {
	margin-top: 0.4em;
}

.popdialog .button {
	float: right;
	display: block;
	
	font-size: 13px;
	color: #474747;
	
	height: 1.3em;
	padding: 0.4em 1em 0.4em 1em;
	margin-top: 0.6em;
	margin-left: .8em;
	cursor: pointer;
	background: #E5E5E5;
	border: 1px solid #ACACAC;
	-webkit-border-radius: 4px;
	-webkit-box-shadow: none;
	-webkit-background-clip: padding-box;

	-moz-border-radius: 4px;
	-moz-box-shadow: none;
	
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.1, rgb(213,213,213)),
		color-stop(1, rgb(242,242,242))
	);
	
	background: -moz-linear-gradient(
		center bottom,
		rgb(213,213,213),
		rgb(242,242,242)
	);
}

.popdialog .button:hover {
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.1, rgb(242,242,242)),
		color-stop(1, rgb(213,213,213))
	);
	
	background: -moz-linear-gradient(
		center bottom,
		rgb(242,242,242),
		rgb(213,213,213)
	);	
}
.popdialog .button:active {
	-webkit-box-shadow: inset 0px 1px 3px rgba(0,0,0,.7);
	-moz-box-shadow: inset 0px 1px 3px rgba(0,0,0,.7);
}


.popdialog input.button, .popdialog .button.default {
	-webkit-appearance: none;
	-webkit-box-align: stretch;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-background-clip: padding-box;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	margin-top: 0.6em;
	border: 1px solid #8d8d8d;
	-webkit-box-shadow: 0px 0px 4px rgba(0,0,0,.4);
}
.popdialog input.button:active, .popdialog .button.default:active {
	-webkit-box-shadow: inset 0px 1px 3px rgba(0,0,0,.7), 0px 0px 4px rgba(0,0,0,.4);
	-moz-box-shadow: inset 0px 1px 3px rgba(0,0,0,.7), 0px 0px 4px rgba(0,0,0,.4);
}

.popdialog label {
	font-size: 13px;
	margin-left: 5px;
}

