/* ToDo list */

#blackout {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ddd;
    z-index:2;
    -moz-opacity: 0.8;
    opacity:.80;
}

#todo {
    position: absolute;
    top: 25%;
	left: 25%;
    width: 50%;
	background: #ddd;
	z-index: 3;
	border: 1px solid #222;
}

#todo pre {
	font: 1.2em "Lucida Grande", Lucida, Verdana, sans-serif;	
	margin-top: 45px ;
	margin-bottom: -15px;
	color: #5f5f5f;
}

#todo form.todoform input.textfield_e{
	width: 265px;
}

#todo p.task {
	margin-left: 30px;
	margin-top: -22px;
	text-align: left;
}

.green {
	color: #068d3a;
}

.righteado {
	font-size: 1.3em;
	font-weight: bold;
	margin-top: 20px;
	margin-right: 18px;
	text-align: right;
	color: #808080;
}

#todo .taskcheck {
	margin-right: 15px;
	float: ;
}

#todo .task_ok {
	width: 85px;
	color: #fff;
	padding: 5px 10px 6px 10px;
	margin: 0px 5px 5px 5px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 5px;
	background-color: #068d3a;
	border: 1px solid #068d3a;
}

#todo .task_ok:hover {
	background-color: #0bc451;
	border: 1px solid #0bc451;
	color: #fff;
}

#todo .task_ok:active {
	background-color: #212342;
	border: 1px solid #222;
	color: #fff;
}

/* @end */