
@font-face {
	font-family: 'Helvetica-Light';
	src: url('../font/LTe50046.ttf');
}
@font-face {
	font-family: 'Helvetica-Normal';
	src: url('../font/LTe51250.ttf');
}
* {
	margin: 0;
	padding: 0;
}
a {color: #26BAD8;}
a,
a:link,
a:visited,
a:hover,
a:focus {
	text-decoration: none
}
a:hover {color: #222;}
ul,ol {
	list-style: none;
	margin:0;
}
input:focus, select:focus, textarea:focus { outline: 0 }
button::-moz-focus-inner { border: 0 }


h1, h2, h3 {
	font-family: 'Helvetica-Light';
}
p {
    margin: 0px;
}

/* Header */

header {
	position: relative;
	background-color: #222;
	padding-top: 20px;
	border-bottom: 4px solid #26BAD8;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
	font-family: 'Helvetica-Light';
	margin-bottom: 20px;
}
.top-header {
	margin-bottom: 15px;
	text-align: left;
}
.user-menu {
	text-align: right;
}
.user-menu > a {
	background-color: #26BAD8;
	display: inline-block;
	height:25px;
	padding: 0 15px;
	color:#fff;
	margin-left: 10px;
	line-height: 25px;
	font-size: 13px;
	border-radius: 15px;
}
.user-menu > a:hover {
    background: #fff;
    color: #222;
}
.user-menu > p {
	color:#fff;
	margin-top: 15px;
}
#ham {display: none;}
nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 5px;
}
nav ul li {
	-webkit-box-flex:auto;
    -moz-box-flex:auto;
    -webkit-flex:auto;
    -ms-flex:auto;
    flex:auto;
    flex: -webkit:auto;
    justify-content: space-around;
    text-align: center;
}
nav ul li a {
	color:#fff;
	display: block;
   padding: 10px 5px 7px;
}
nav ul li a:hover,
nav ul li.active a {
	background-color: #26BAD8;
	color:#fff;
}

/* top form */

.top-form {
    padding: 5px 0 20px;
    background: #f2f2f2;
    margin: 20px 0;
}
.top-form label {
	width: 100%;
	line-height: 20px;
	height:20px;
	margin-bottom: 5px;
	color:#999;
	font-family: 'Helvetica-Light';
	font-weight: normal;
	margin-top: 10px;
}
.top-form input,
.top-form select,
.top-form textarea {
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	box-shadow: none;
	height:30px;
	line-height: 30px;
	border: 1px solid #ddd;
	padding:0 7px;
	width: 100%;
	background-color: #fff;
	font-size: 13px;
	border-radius: 3px;
}
.top-form select {
	background-image: url('../images/select.png');
	background-repeat: no-repeat;
	background-position: right center;
}
.top-form input[type=submit] {
	margin-top: 35px;
	background-color: #222;
	color:#fff;
	border:0;
	border-radius: 15px;
	width: 150px;
	font-family: 'Helvetica-Light';
	font-size: 14px;
}
.top-form input[type=submit]:hover {
	background-color: #26BAD8;
}

/* table */

.table-box .tr {
	padding: 5px;
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   color:#666;
   border-bottom: 1px solid #efefef;
}
.table-box .tr .td {
   border: 0;
   -webkit-box-flex:1;
   -moz-box-flex:1;
   -webkit-flex:1;
   -ms-flex:1;
   flex:1;
   flex: -webkit:1;
   padding: 10px 5px;
	font-family: 'Helvetica', arial, sans-serif;
	font-size: 13.5px;
	text-rendering: optimizeLegibility;
}
.table-box .tr.full-tr {
	width: 100%;
}
.table-box .tr.full-tr h2 {
	font-size: 24px;
}

.table-box .tr .td .img-btn {
	display: inline-block;
}
.table-box .tr .td .img-btn img {
	vertical-align: baseline;
}
.table-box .tr .td .td-btn {
	background-color: #222;
	display: block;
	width: 70px;
	text-align: center;
	margin-bottom: 5px;
	height:18px;
	padding:0 5px;
	line-height: 19px;
	color:#fff;
	font-size: 11px;
	border-radius: 9px;
}

.table-box .tr .td .td-btn:hover {
	background-color: #26BAD8;
}

.table-box .tr .td.flex2 {
	-webkit-box-flex:2;
   -moz-box-flex:2;
   -webkit-flex:2;
   -ms-flex:2;
   flex:2;
   flex: -webkit:2;
}
.table-box .tr .td.flex05 {
	-webkit-box-flex:0.5;
   -moz-box-flex:0.5;
   -webkit-flex:0.5;
   -ms-flex:0.5;
   flex:0.5;
   flex: -webkit:0.5;
}
.table-box .tr.thead {
	padding: 0;
}
.table-box .tr.thead .td {
	font-weight: bold;
	color:#444;
	font-family: 'Helvetica', arial, sans-serif;
	font-size: 14px;
}
.table-box .tr .td .cl-name {
	color:#444;
}

footer {
	background-color: #222;
	border-top: 4px solid #26BAD8;
	padding:20px 0;
	text-align: center;
	color:#fff;
	margin-top: 100px;
	font-family: 'Helvetica-Light';
}

@media (min-width: 1500px) {
	.container {
		width:1400px;
	}
}

@media (max-width: 799px) {
	#ham {
		display: block;
		margin:15px 0;
	}
	nav {display: none;}
	nav ul {display: block;}
	nav ul li {display: block;}
	nav ul li a {
    	padding: 7px 5px 10px;
 	}
	.user-menu > p {display: none;}
	.table-box .tr {
		display: block;
		padding:5px 15px;
		border:0;
	}
	.table-box .tr .td {
		display: block;
		font-size: 14px;
    	padding: 5px;
	}
	.table-box .tr.thead {
		display: none;
	}
}
