﻿/* CSS for checklists */
.checklist_wrapper
{
  float:left;
  padding: 5px;
	border-top: 1px solid #aaa;
	border-right: 2px solid #aaa;
	border-bottom: 2px solid #aaa;
	border-left: 1px solid #aaa;
	height: 150px;
  max-height: 150px;
	overflow: scroll;
	background-color: #ddd;	
	width: 300px;
}

.checklist 
{
	padding: 2px;
	background-color: #ddd;
}
.checklist, .checklist input { margin: 0; padding: 0; }
.checklist label { display:inline; width: 100%; height: 1%; padding: 0 0 0 2px; text-indent: 2px; }
.checklist label:hover, .checklist label.hover { background: #777; color: #fff; }	
