
html{
	margin: 0;
	padding: 0;
	cursor: default;
}
body{
	margin: 0;
	padding: 0;
	font: 9pt Arial, Helvetica, sans-serif; 
	background-color: white;
}

.dialog{
	background-color: #F5F5F5;
	padding:5px;
}

.button {
	border: 1px solid transparent;
	border-radius: 3px;
	cursor: pointer;
	color:black;
	text-decoration: none;
}
.button:focus {
	border: 1px dotted;
	border-color: silver;
	outline: 0;
}
.button:hover {
	border: 1px solid;
	border-color: silver;
	box-shadow: 0px 0px 2px silver;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 1%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
}
.button:active {
	box-shadow: inset 0px 0px 2px silver;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}

.button.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.flex {
	-webkit-flex: 1;
	flex: 1;
}

 .vbox > *, .hbox > * {
	display: block;
}

.vbox{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.hbox{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
}

.align-center {
	-webkit-box-align: center;
	align-items: center;
}

.pack-center {
	-webkit-box-pack: center;
	justify-content: center;
}
