@font-face {
	font-family: 'SourceSansPro';
	src: url('font/SourceSansPro-Black.ttf') format('truetype');
	font-weight: bold;
}
@font-face {
	font-family: 'SourceSansPro';
	src: url('font/SourceSansPro-Regular.ttf') format('truetype');
	font-weight: normal;
}

body {
	margin: 0px;
	font-family: SourceSansPro !important;
	color: #202020;
}

.bg {
	height: 100%;
	position: relative;
}

.bg:before {
	content: "";
	background-image: url('image/bg1_2.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.overlay {
	display: flex;
	flex-direction: column;
	height: 100%;
	width:100%;
	left: 0px;
	top: 0px;
	margin: 0px;
	z-index: 1;
	position: fixed;
	background-color: none;
	background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.55) 100%);
	overflow: auto;
}

header {
	height: 70px;
	min-height: 70px;
	background-color: rgba(0,0,0,0.75);
}

div .animated {
	animation: fadeIn linear .8s;
}

div#animated {
	animation: fadeOut linear .8s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@keyframes fadeOut {
  0% {opacity:.9;}
  100% {opacity:.7;}
}

@-moz-keyframes fadeOut {
  0% {opacity:.9;}
  100% {opacity:.7;}
}

@-webkit-keyframes fadeOut {
  0% {opacity:.9;}
  100% {opacity:.7;}
}

@-o-keyframes fadeOut {
  0% {opacity:.9;}
  100% {opacity:.7;}
}

@-ms-keyframes fadeOut {
  0% {opacity:.9;}
  100% {opacity:.7;}
}

header .headerTitle {
	float: left;
	font-size: 25px;
	font-weight: bold;
	margin: 15px 0px 0px 25px;
	color: #dddddd;
	background-color: none;
}

header .headerMenu {
	float: right;
	background-color: none;
}

header .headerMenu ul {
	display: flex;
	align-items: center;
}

header .headerMenu ul li {
	list-style: none;
	margin-right: 60px;
	margin-top: 7px;
}

header .headerMenu ul li a {
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	color: #dddddd;
	transition: .4s ease-in-out;
}

header .headerMenu ul li a:hover {
	color: #ff7200;
}

header .headerMenu ul li a.selected {
	color: #ff7200;
}

content {
	display: flex;
	height: 100%;
	margin: 20px 0px 20px 0px;
	padding: 20px 15%;
	justify-content: center;
	overflow: auto;
	overflow-x: hidden;
	background-color: none;
}

footer {
	height: 100px;
	display: flex;
	justify-content: center;
	background-color: none;
}

footer .footer-content {
	padding: 10px;
	width: 90%;
	background-color: none;
	border-top-style: solid;
	border-width: 1px;
	border-color: #202020;
	background-color: none;
}

div .center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.headline span {
	 color: #ff7200;
}

.login {
	width: 400px;
	height: 400px;
	background: linear-gradient(to top, rgba(0,0,0,0.2)0%, rgba(0,0,0,0.8)100%);
	border: 1px solid #000;
	border-radius: 10px;
	padding: 5px 15px;
}

.login h1 {
	text-align: center;
	font-size: 30px;
	color: #e0e0e0;
}

.input_styled {
	width: 350px;
	height: 35px;
	margin-top: 10px;
	background: transparent;
	border-bottom: 1px solid #ff7200;
	border-top: none;
	border-right: none;
	border-left: none;
	font-size: 15px;
	letter-spacing: 1px;
	color: #e0e0e0;
}

input:focus {
	outline: none;
}

button {
	background: #ff7200;
	border: none;
	cursor: pointer;
	transition: .4s ease;
	text-decoration: none;
	color: #202020;
	font-weight: bold;
}

.button_login {
	width: 100%;
	height: 40px;
	margin-top: 15px;
	font-size: 18px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	box-shadow: 1px 1px 8px #111;
}

.button_default {
	width:100px;
	height:25px;
	margin-top: 5px;
	margin-left: 5px;
	border-bottom-right-radius: 7px;
	border-top-left-radius: 7px;
	box-shadow: 1px 1px 8px #111;
}

button:focus {
	outline: none;
}

button:hover {
	background-color: #fcb880;
}

.link {
	text-align: center;
	color: #e0e0e0;
}

.link a {
	font-weight: normal;
	text-decoration: none;
	color: #ff7200;
}

.error {
	color: red;
}

p {
	font-family: SourceSansPro;
	font-weight: bold;
}

content .member {
	margin: 0 auto;
	border-collapse: collapse;
}

content th, td {
	text-align: left;
	padding: 5px 20px;
	font-size: 15px;
}

content tr:nth-child(even) {
	background-color: rgba(221,221,221,0.8);
}

content tr:nth-child(2n+3) {
	background-color: rgba(205,205,205,0.8);
}

content th {
	background-color: rgba(255,114,0,1);
	height: 30px;
	color: #dddddd;
}

.icon, .icon_static {
	height: 13px;
	padding-left: 10px;
	opacity: .6;
	transform-origin: center;
	transition: transform 150ms ease-in-out;
}

.icon:hover {
	height: 13px;
	cursor: pointer;
	transform: scale(1.2);
}

.icon_medium {
	height: 20px;
	padding: 5px;
	margin-top: 10px;
	margin-right: 10px;
	background-color: #ff7200;
}

.icon_medium:hover {
	cursor: pointer;
}

select {
	padding:5px 5px;
	margin-top: 10px;
	background-color: rgba(255,114,0,1);
	border:none;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	box-shadow: 1px 1px 8px #111;
}

select:focus {
	outline: none;
}

table {
	box-shadow: 1px 1px 8px #111;
}