	@import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700|Carme);
* {
	font-family: 'Droid Sans', arial, sans-serif;
	color: #3d3d3d;
	font-size: 16pt;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
h1 {
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0 0 5px #3D3D3D inset;
	margin: 5px 0 0;
	padding: 0 4px;
	position: absolute;
}
ul {
	padding: 0;
	margin: 0;
}
li {
	list-style-type: none;
}
#main {
	width: 100%;
	max-width: 400px;
	min-width: 200px;
	margin: 0 auto;
	position: relative;
}
div#menu {
	width: 100%;
	height: 50px;
	position: fixed;
	z-index: 100;
	background: #f9f9f9;
	left: 0;
	top: 0;
	padding-top: 10px;
	box-shadow: 0px 0px 20px #333;
}
ul#menu {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
ul#menu li {
	float: left;
	cursor: pointer;
	z-index: 2;
	position: relative;
	height: 45px;
	width: 32px;
	margin-left: 10%;
}
ul#menu #add {
	background: url(img/bar-edit.png) 0 0 no-repeat;
}
ul#menu #store {
	background: url(img/bar-store.png) 0 0 no-repeat;
}
ul#menu #remove {
	background: url(img/bar-remove.png) 0 0 no-repeat;
}
ul#menu #email {
	background: url(img/bar-email.png) 0 0 no-repeat;
}
ul#menu #help {
	background: url(img/bar-help.png) 0 0 no-repeat;
}
.breaker {
	display: block;
	clear: both;
	width: 100%;
}
#list {
	margin-top: 50px;
	padding-top: 10px;
}
#list ul {
	border-top: none;
	min-height: 20px;
	padding: 5px 0 10px 0;
	margin: 0;
}
#list ul:empty {
	padding: 0;
}
.item {
	text-transform: capitalize;
	user-select: none;
	background: #F5F5F5;
	border: 1px solid #c1c1c1;
	position: relative;
	border-radius: 10px;
	margin-top: -1px;
	box-shadow: 0 0 5px #c1c1c1 inset;
	cursor: pointer !important;
}
.checked {
	text-decoration: line-through;
	opacity: 0.3;
}
.item div.title {
	padding: 5px 8px;
	margin-right: 40px;
}
.remove-item, .move-item {
	height: 25px;
	width: 25px;
	position: absolute;
	right: 5px;
	top: 5px;
	cursor: pointer;
	display: none;
	background: transparent no-repeat 0 2px;
}
.remove-item {
	background-image: url("img/remove.png");
}
.move-item {
	background-image: url("img/move.png");
}
#list h2 {
	color: #356487;
	font-weight: bold;
	display: block;
	margin: 0;
	padding-right: 6px;
	text-transform: capitalize;
}
.remove-store-items {
	height: 25px;
	width: 25px;
	background: url("img/remove-store-items.png") transparent no-repeat 0 2px;
	cursor: pointer;
	display: none;
	float: right;
}
#list {
	margin-top: 75px;
}
.store {
	cursor: pointer;
}
.store ul {
	user-select: none;
}
.unselectable, .item {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.dragging {
	border: 5px solid lightSteelBlue;
}