@charset "utf-8";
/* CSS Document */

body {
	margin:0 auto;
	background-color:rgba(47,187,13,1.00);
}

header {
    margin: 0;
    height: 150px;
    background-image: url("images/tomatoes-2927757_960_720.jpg");
    opacity: 0.7;
    border: 5px solid orange;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

header h1 {text-align:center;
			margin:10px 0 10px 0;
			padding:20px 0 0 0;
			color:yellow;
			font-size:80px;
			text-shadow:4px 2px 1px brown;
}

#container1 {width:400px;
				height:40px;
				margin:0 auto;
				padding:10px 0 10px 0;
}

#container2 {margin:10px 0 10px 0;}

#updateList {
	margin:5px;
	padding: 5px;
	width:200px;
	height:25px;
	line-height:25px;
	font-size:16px;
	font-weight:bold;
	color:black;
	border:5px solid orange;
	border-radius:5px;
	background-color:rgba(193,188,188,1.00);
}

#updateList:hover {
	height:27px;
	border:5px solid black;
}

#submit {
	margin:5px 0;
	padding: 5px;
	width:150px;
	height:39px;
	line-height:25px;
	font-size:16px;
	font-weight:bold;
	background-color:orange;
	border-radius:10px;
}

#submit:hover {
	font-size:18px;
	width:160px;
	border:5px solid black;
}

ul {
	list-style:none;
	border-top:5px solid orange;
}

li {
	padding-left:50px;
	margin:5px 30px 5px 0;
	text-align:left;
	height:40px;
	line-height:40px;
	font-size:20px;
	font-weight:bold;
	color:orange;
	background-color:rgba(128,128,128,0.6);
	border-radius:10px;
	position:relative;
}

li:hover {
	cursor:grab;
	background-color:rgba(128,128,128,0.9);
	border:2px solid black;
}

li span.delete {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    background-color: orange;
    padding: 0px 20px;
    font-size: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

li span.select {
	position:absolute;
	top: 0;
	left:0;
	width:30px;
	height:30px;
	padding:5px;
	 border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
	background-image:url("images/uncheck.png");
	background-position: center center;
	background-repeat:no-repeat;
	background-color:orange;
}

li span.selected {
	position:absolute;
	top: 0;
	left:0;
	width:30px;
	height:30px;
	background-image:url("images/checkbox.png");
	background-position: center center;
	background-repeat:no-repeat;
}

#wrapper {
	width:640px;
	margin: 0 auto;
	border:5px solid rgba(128,128,128,1);
	border-radius:10px;
	background-color:brown;
}