@charset "UTF-8";
/* CSS Document */

body {
	min-width: 1000px; 		/* 2x LC width + RC width */
	background-color: #000;
	margin-top: 0px;
}

#wrapper
{
	width: 100%;
	height: 100%;
	margin-top: 0px;
}

#topline {
	font-family: 'Abel', sans-serif;
	font-size: 20px;
	color: #EEE;
}

#topline p
{
	text-align: right;
}

#titleField
{
	font-family: 'Abel', sans-serif;
	border: none;
	background-color: #000;
	font-size: 30px;
	color: #09C;
}

.column
{
	float: left;
}

#container
{
	font-size: 14px;
	width: 250px;
}

table
{
	border-collapse: collapse;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

table, th, td
{
	border: none;
}

.group
{
	width: 250px;
	border-radius: 5px;
	margin-bottom: 5px;
}

.category, .item
{
	font-size: 16px;
}

.category
{
	width: 90px;
	color: #09C;
	font-family: 'Abel', sans-serif;
	text-transform: uppercase;
}

.item
{
	font-family: 'Abel', sans-serif;
	text-transform: uppercase;
	width: 160px;
	color: #FFF;
	background-color: #000;
	-webkit-user-select: none; 
	-khtml-user-select: none; 
	-moz-user-select: none; 
	-o-user-select: none; 
	user-select: none;
}

.switch
{
	width: 225px;
	position: relative;
}

.switch input
{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	opacity: 0;
}

label
{
	padding: 1px;
	background-color: #090;
}

input[type=checkbox]:checked
{
	background: red;
}

	