@CHARSET "UTF-8";
* {
	box-sizing: border-box;
}
body {
	padding: 0;
	margin: 0;
}
input {
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    background-color: transparent;	
}
input::-webkit-input-placeholder {
	color: #aaa;
}
input[type=text] {
	font-size: 13px;
	color: #000;
	width: 100px;
	padding: 6px 6px;
	border: solid 1px #eee;
	border-radius: 0px;
}
input[type=text]:focus {
 	box-shadow: 0 0 3px 0 rgba(0,0,0,0.1); 
	border-color: #bbb;
}
select {
    border: 0;
    outline: 0;
    background-color: transparent;	
	width: 80px;
	padding: 5px 6px;
	font-size: 13px;
	border: solid 1px #ddd;
}
a {
	color: #4e71a4;
}
button {
    -webkit-appearance: none;	
    border: 0;
    outline: 0;	
	background-color: #07c060;
	color: #fff;	
	border: solid 1px #07c060;	
	font-size: 13px;
	padding: 4px 8px;
	border-radius: 3px;
}

table {
	width: 100%;
	font-size: 12px;
}
th, td {
	padding: 5px 5px;
}
thead {
	background-color: #eee;
}
tbody tr:nth-child(even) {
	background-color: #f6f6f6;
}
tbody tr:last-child td {
	border-bottom: solid 1px #eee;
}

.ui-widget {
	font-size: 13px;
}


#header {
	padding: 15px 0;
	border-bottom: solid 1px #466797;
	display: flex;
	align-items: center;
	position: fixed;
	left: 15px;
	top: 0;
	width: calc(100% - 30px);
	background-color: rgba(255,255,255,0.98);
}
#header .title {
	font-size: 24px;
	margin-right: 30px;
	font-weight: bold;
}
#header .options {
	flex: 1;
}
#header .options:after {
	display: block;
	width: 0;
	height: 0;
	clear: both;
	content: ' ';
}
#header .options a {
	display: block;
	float: left;
	font-size: 14px;
	margin-right: 10px;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 3px;
	background-color: #fff;
	color: #333;
	border: solid 1px #eee;
}
#header .options a.checked {
	background-color: #07c060;
	color: #fff;	
	border: solid 1px #07c060;
}
#header .face {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	border: solid 1px #eee;
	padding: 1px;
}
#header .face i {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#search_form {
	padding: 12px 15px 12px 15px;
	font-size: 13px;
	color: #333;
	display: flex;
	align-items: center;
	margin-top: 80px;
}
#search_form .conditions {
	flex: 1;
}
#search_form label {
	margin-right: 15px;
	margin-bottom: 3px;
	margin-top: 3px;
	display: inline-block;
}

#result_container {
	padding: 0 15px;
}
