﻿/* List Control */
.dmList {
	overflow: auto;
	padding:0;
	margin:0;
	font-family: verdana;
	font-size: medium;
	border: solid 1px #000000;
	width: 300px;
	height: 100px;
}
.dmList tr {
	background-color: #FAFAFA;
}
.dmList tr th {
	cursor: pointer;
	background-color: #EEEEEE;
	font-size: 12px;
	border-bottom: solid 1px #000000;
	border-right: solid 1px #999999;
	border-collapse:collapse;
}
.dmList tr.hover {
	background:#DDDDDD;
}
.dmList tr td {
	cursor: default;
	padding: 1px;
	border-collapse:collapse;
	border-right: solid 1px #888888;
	border-bottom: solid 1px #888888;
	overflow: hidden;
	color:#000000;
}
/* Window Control */
.dmWindow {
	position: absolute;
	overflow: hidden;
	padding:0;
	margin:0;
	font-family: Verdana;
	font-size: 12px;
	border: solid 1px #000000;
	background-color: #F0F0F0;
}
.dmWindow h1 {
	cursor: pointer;
	padding:0;
	margin:0;
	text-align: center;
	background-color: #BABABA;
	font-size: 14px;
	border-bottom: solid 1px #000000;
}
.dmWindow .content {
	margin:0;
    padding:5pt;
}
.dmWindow .close {
	position: absolute;
	font-size: 14px;
	top: 0;
	right: 0;
	padding-left: 6px;
	padding-right: 6px;
	cursor: pointer;
	background-color: #BABABA;
	border-left: solid 1px #000000;
}
