/*
	styles for controls
*/


/* make map fill vertical space */
html, body, .map_canvas {
	margin: 0;
	padding: 0;
	height: 100%;
}

.ctrl_title h3 {
	margin: 10px 0 0 10px;
	padding: 5px 10px;
	width: 180px;
/* 	border: 1px solid #000; */
	border-radius: 8px;
	cursor: pointer;
	background-color: #000;
	text-align: center;
	color: #fff;
}

#ncr_ctrl ul {
	list-style: none;
	margin:0;
	padding:0;
}


#ncr_ctrl .toggle {
	padding:5px;
	border: 1px solid #000;
	border-radius: 8px;
	cursor: pointer;
	background-color: #fff;
	text-align: center;
}

#ncr_ctrl .toggle .expand { display: none; }
#ncr_ctrl.narrow .toggle .expand { display: block; }
#ncr_ctrl .toggle .collapse { display: block; }
#ncr_ctrl.narrow .toggle .collapse { display: none; }

#ncr_ctrl li {
	list-style: none;
	margin:5px 0;
	padding:5px 10px 5px 28px;
	border: 1px solid #000;
	border-radius: 8px;
	background-repeat: no-repeat;
	background-position: 5px center;
	cursor: pointer;
	background-color:#fff;
}


#ncr_ctrl li.Standard,
#ncr_ctrl li.Fast,
#ncr_ctrl li.Rapid {
	min-height: 24px;
}

/*
#ncr_ctrl li.Standard {
	background-color:#eee;
}
#ncr_ctrl li.Fast {
	background-color:#ccc;
}
#ncr_ctrl li.Rapid {
	background-color:#aaa;
}
*/
#ncr_ctrl li.selected {
	background-color:#82b965;
}

#ncr_ctrl li span {
	display: block;
	padding-left: 10px;
}

#ncr_ctrl.narrow li span {
	display: none;
}

#ncr_ctrl li.std {
	background-image:url(tiny/std.png);
}
#ncr_ctrl li.type1 {
	background-image:url(tiny/yaz.png);
}
#ncr_ctrl li.type2 {
	background-image:url(tiny/mem.png);
}
#ncr_ctrl li.type3 {
	background-image:url(tiny/type3.png);
}
#ncr_ctrl li.commando {	/* comando */
	background-image:url(tiny/com.png);
}
#ncr_ctrl li.combo {
	background-position: 7px center;
	background-image:url(tiny/ccs.png);
}
#ncr_ctrl li.chademo {
	background-image:url(tiny/cha.png);
}

.nosel {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.cansel {
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}



/* END */