@charset "utf-8";
body {
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
	background-color:#FFF;
	color:#111;
	min-width:330px;
}
:focus {
	outline:none;
}
.error_message {
	color:#F30;
}
header {
	width:100%;
	background-color:#F63;
	color:#FFF;
	box-shadow:#999 0 0 13px;
	position:fixed;
	height:70px;
}
	header h1 {
		margin:0 10px;
		font-weight:normal;
		padding:0;
		font-size:22px;
		line-height:70px;
	}
main {
	padding-top:70px;
}
	main .content {
		max-width:1004px;
		margin:0 auto;
		padding:0 10px;
	}
	main h1 {
		font-weight:normal;
		font-size:24px;
	}
	main h2 {
		font-size:18px;
		font-weight:bold;
	}
	main a.actionButton {
		display:block;
		color:#000;
		background-color:#CCC;
		text-decoration:none;
		line-height:50px;
		text-align:center;
		border-radius:4px;
	}
.newElementForm {
	display:block;
	max-width:512px;
}
	.newElementForm input, .newElementForm label, .newElementForm textarea, .newElementForm select {
		display:block;
		width:100%;
		float:none;
		margin-bottom:12px;
		font-family:inherit !important;
		font-size:inherit !important;
	}
	.newElementForm input, .newElementForm textarea {
		border:#999 0px solid;
		border-bottom-width:1px;
	}
	.newElementForm input[type="submit"] {
		padding:12px 22px;
		max-width:40%;
		border:none;
		background-color:rgba(0,102,255,1);
		color:#fff;
		font-size:28px;
		border-radius:4px;
		float:right;
	}
	.newElementForm select {
		float:left;
		width:65%;
	}
	.newElementForm input[type="checkbox"], .newElementForm input[type="radio"] {
		display:inline-block;
		width:10%;
		float:left;
	}
	.newElementForm label.keepLeft {
		width:85%;
		float:left;
	}
	.newElementForm label.leftSideLabel {
		float:left;
		width:20%;
	}
.colorBorderLeft {
	border-left:10px solid;
	padding-left:10px;
}
.listedElement .options {
	display:none;
	margin:4px;
	text-align:right;
}
.spacing {
	padding:5px 15px;
	margin:8px 0 12px;
}
.options {
	padding-top:15px;
}
	.options a, .cancelButton {
		display:inline-block;
		padding:8px 16px;
		background-color:#ccc;
		text-align:center;
		color:#000;
		text-decoration:none;	
		border-radius:4px;
	}
footer {
	padding-bottom:50px;
}
#pageCover {
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:rgba(255,255,255,0.8);
	display:none;
	z-index:500;
}
#optionsButton {
	position:fixed;
	bottom:10px;
	right:10px;
	display:block;
	width:60px;
	height:60px;
	background-color:rgba(0,102,255,1);
	text-align:center;
	font-size:28px;
	font-weight:bold;
	color:#FFF;
	line-height:58px;
	border-radius:30px;
	cursor:pointer;
	z-index:1000;
	box-shadow:#CCC 0 5px 5px;
}
#optionsMenu {
	position:fixed;
	bottom:80px;
	right:10px;
	display:none;
	z-index:1000;
}
	#optionsMenu ul, #quickOptionsMenu ul {
		list-style:none;
	}
		#optionsMenu ul li, #quickOptionsMenu ul li {
			text-align:right;
			float:right;
			clear:right;
			background-color:rgba(51,51,51,0.8);
			color:#fff;
			font-size:16px;
			border-radius:4px;
			padding:14px 18px;
			margin:8px 0;
			cursor:pointer;
			box-shadow:#CCC 0 5px 5px;
		}
#quickOptionsMenu {
	position:fixed;
	bottom:14px;
	right:140px;
	z-index:1000;
	display:none;/* debug */
}
	#quickOptionsMenu ul li {
		background-color:rgba(0,102,153,0.8);
	}