@charset "utf-8";
/* CSS Document */

body, html{
	margin:0px;
	padding:0px;
	border:0px;
	background-color:#FFFFFF;
	font-family:Muli,sans-serif;
}
button{
	border:0px;
	margin:0px;
	padding:0px;
	border-radius:5px;
	cursor:pointer;
}
button:focus {
  outline: none;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

.widget_button{
	border:0px;
	margin:0px;
	padding:0px;
	border-radius:5px;
	cursor:pointer;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
}
.widget_button_save{
	width:120px;
	height:35px;
	background-color:#0066FF;
	color:#FFFFFF;
	font-weight:bold;
}
.widget_separator_horizontal{
	margin:20px 0px;
	height:1px;
	background-color:#CCCCCC;
}
.widget_label{
	height:30px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}
.widget_entry{
	height:30px;
	border:1px solid #999999;
	border-radius:3px;
	text-align:center;
}
.widget_entry input{
	margin:0px;
	padding:0px;
	border:0px;
	width:99%;
	height:100%;
	border-radius:5px;
	margin:auto;
	text-align:left;
}
.widget_entry input:focus{
	outline:none;
}
.widget_textview{
	min-height:100px;
	border:1px solid #999999;
	border-radius:3px;
	text-align:center;
}
.widget_textview textarea{
	margin:0px;
	padding:0px;
	border:0px;
	width:99%;
	height:100%;
	border-radius:5px;
	margin:auto;
	text-align:left;
}
.widget_textview textarea:focus{
	outline:none;
}
.widget_combobox{
	height:30px;
	border:1px solid #999999;
	border-radius:3px;
	text-align:center;
	background-color:#E7E7E7;
}
.widget_combobox select{
	margin:0px;
	padding:0px;
	border:0px;
	width:99%;
	height:100%;
	border-radius:5px;
	margin:auto;
	text-align:left;
	background-color:rgba(255,255,255,0);
}
.widget_combobox select:focus{
	outline:none;
}
.widget_radiobutton{
	height:30px;
	text-align:left;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}
.widget_radiobutton input{
	margin:0px;
	padding:0px;
	border:0px;
	margin-right:10px;
	width:20px;
	height:20px;
}
.widget_checkbutton{
	height:30px;
	text-align:left;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}
.widget_checkbutton input{
	margin:0px;
	padding:0px;
	border:0px;
	margin-right:10px;
	width:20px;
	height:20px;
}