/**************************
BASE
**************************/


* {
	margin: 0;
	padding: 0;
	outline: none;
	font-size: 1.0em;
	font-family: helvetica, sans-serif;
	font-weight: normal;
}

html,
body {
	height: 100%;
}

body {
	background: #CCC;
}

#wrapper {
	height: 100%;
	position: relative;
	margin: 0 auto;
	width: 768px;
	padding-bottom: 20px;
}

a {
  color: #0066CC;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	color: #FF0099;
}

strong {
	font-weight: bold;
}

.clear 		{ clear: both; }

.left			{ float: left; 	}

.right		{ float: right; }



/**************************
HEADER
**************************/

h1 {
  font-size: 3.0em;
  font-weight: bold;
  margin: 18px 0 24px 0;
  padding-bottom: 8px;
  color: #444;
  text-align: center;
	border-bottom: 1px solid #777;
}



/**************************
CONTENT
**************************/


#list {
  width: 400px;
  margin: 0 auto;
}

.item {
  padding: 8px 12px 8px 8px;
  margin: 24px 0;
  border: 1px solid #222;
  border-bottom: 2px solid #000;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  font-size: 0.9em;
  list-style: none;
  display: block;
  color: #BBB;
  background: #151515 url('../images/item_bg.png') top center repeat-x;
  width: 376px;
}

.handle {
  display: block;
  width: 18px;
  height: 18px;
  background: transparent url('../images/handle.png') top center no-repeat;
  margin-right: 8px;
  float: left;
  cursor: move;
}

.remove {
  display: block;
  width: 18px;
  height: 18px;
  background: transparent url('../images/cross.png') top center no-repeat;
  float: right;
}

.ui-sortable-placeholder {
  margin: 24px;
  height: 35px;
}

#add {
  width: 400px;
  margin: 0 auto;
}

#new_item {
  width: 390px;
}



/**************************
FOOTER
**************************/


#footer {
  display: block;
	color: #666;
	font-size: 0.6em;
	text-align: center;
	margin: 64px 0 32px 0;
}

