/* CSS Document */

/* Reset */

/* Headings */
h1,
h2,
h3,
h4,
.content-head {
	font-weight: normal;
}

/*
 *#AF473C
 *#FBA100
 *#6BBAA7
 *#6C648B
 *#6EC48D
 *#945D60
 *
 *#005A31
 *#A8CD1B
 *#CBE32D
 *#F3FAB6
 *
 *#558C89
 *#74AFAD
 *#D9853B
 *#ECECEA
 *
 *#E44424
 *#67BCDB
 *#A2AB58
 *
 *#118C4E
 *#C1E1A6
 *#FF9009
 *
 *#DF3D82
 */

h0 {
	font-size: 150%;
	color: #000000;
	/*;#575DA9;*/
	padding-top: 0px;
	padding-bottom: 0px;
	/*margin-bottom:3%;*/
}

h1 {
	font-size: 110%;
	color: #000000;
	/*#AF473C;*/
	border-bottom: 1px #AF473C solid;
	font-weight: 600;
	/*https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight*/
}

h1 a:link,
a:visited {
	font-size: 110%;
	color: #00A;
	/* #000000;*/
	text-decoration: none;
}

h1 a:hover {
	font-size: 110%;
	color: #A00;
	text-decoration: none;
}


h2 {
	font-size: 110%;
	/*20px;*/
	color: #000000;
	/*#AF473C; #FBA100;*/
	border-bottom: 1px #AF473C dashed;
	/*margin-bottom:2px;*/
	font-weight: 600;
}

h2 a:link,
a:visited {
	text-decoration: none;
	color: #AF473C;
}

h2 a:hover {
	color: #00A;
	text-decoration: none;
}

h3 {
	font-size: 105%;
	/*18px;*/
	color: #AF473C;
	font-weight: bold;
	/*text-decoration: underline;
	border-bottom:1px #6EC48D dotted;*/
}

/*h4 { font-size:14px; }*/
h4 {
	font-size: 100%;
	/*font-weight: bold;
	font-style: italic;*/
	color: #118C4E;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
	/*text-decoration: underline;*/

}


h5 {
	font-size: 100%;
	/*14px;*/
	font-weight: bold;
	color: #558C89;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 8px 0 2px 0;
	border-bottom: 1px #AF473C dotted;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
	margin: 0;
}

/* Text Elements */
p {
	text-align: left;
}

/*p .left			{ margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p .right 		{ margin: 1.5em 0 1.5em 1.5em; padding: 0; }*/

a {}

a:link {
	color: #00A;
}

/*a:visited		{ color: #00A;  }*/
a:focus {
	color: #00A;
}

a:hover {
	color: #A00;
}

a:active {
	color: #A00;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}


ul {
	padding-left: 0;
	list-style-type: square;
	color: #AF473C;
}

ul li {
	margin-left: 1em;
}

ul li>span {
	color: black;
	/* text color */
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 0 none;
}

table td {
	border: 0 none;
	padding: 0px;
}


/* Global */

html {
	background-color: #FDFDFD;
}

body {
	background-color: #FDFDFD;
	font-family: Arial, Helvetica, sans-serif;
}

/*Images */

/*.image-frame         { padding:10px; border:1px #ccc solid ; margin:10px;}*/

/* Containers */
#outer {
	width: auto;
	margin: 0 auto;
	background-color: #FDFDFD;
	border: 0 none;
	padding: 0;
}

#wrapper {
	width: 80%;
	margin: 0 auto;
	background-color: #FDFDFD;
	border: 0 none;
	padding: 0;

	-webkit-text-shadow: 0 1px white;
	-moz-text-shadow: 0 1px white;
	-o-text-shadow: 0 1px white;
	text-shadow: 0 1px white;
}

@media only screen and (max-width: 1000px) {
	#wrapper {
		width: 100%;
	}
}

@media only screen and (max-device-width: 680px) {
	#wrapper {
		width: 100%;
	}
}

#logo {
	margin: 20px 0;
	float: left;
	width: 100%;
	margin: 0 auto;
}

#topnav {
	clear: both;
	font-size: 110%;
}

#topnav ul {
	border-top: 3px #AF473C double;
	border-bottom: 3px #AF473C double;
	text-align: center;
	padding: 2px;
	align-items: center;

	list-style: none;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	flex-flow: row wrap;

}


#topnav ul li {
	margin: 3px;
	/*http://stackoverflow.com/questions/20626685/better-way-to-set-distance-between-flexbox-items */
}

#topnav ul li a {
	padding: 2% 2% 2% 1%;
	color: #000000;
	/*#AF473C;*/
	text-decoration: none;
	font-weight: 600;
}


/*#topnav a:link			{color:#000;}
#topnav a:visited		{color:#000;}*/
#topnav a.active {
	color: #AF473C;
	text-decoration: underline;
	font-weight: 600;
}

/*FBA100*/
#topnav a:focus {
	color: #AF473C;
}

#topnav a:hover {
	color: #AF473C;
}


/***********Dropdown*************************************************************************************/
/*
 *https://www.w3schools.com/howto/howto_css_dropdown.asp
 */
/*.container {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
}

.container a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.container a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}*/

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	font-size: 16px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #FFF;
	/*min-width: 160px;*/
	max-width: 15%;
	/*160px;*/
	/*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
	z-index: 1;
	border-left: 1px #AF473C solid;


}

.dropdown-content a {
	float: none;
	color: black;
	padding: 6px 6px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	/*background-color: #ddd;*/
}

.dropdown:hover .dropdown-content {
	display: block;
}

/**************************************************************************************************************/

#content {
	width: 100%;
	/*min-width: 400px;*/
	float: left;
	text-align: left;

}

#content-center {
	width: 100%;
	float: left;
	text-align: left;
	min-height: 500px;
}

#content_wide {
	width: calc(95% - 160px);
	float: left;
	text-align: left;
}

.content-head {
	font-size: 120%;
	/*16px;*/
	color: #000;
	/*#AF473C;*/
	width: auto;
	border-bottom: 1px #AF473C solid;

}

#rightside {
	width: 25%;
	float: right;
}

#rightside-nav {
	width: 160px;
	/*10%;*/
	float: right;
	/*border-top:1px #AF473C solid;
	border-bottom:1px #AF473C solid;*/
	background-color: #FFF;

	/* css fix navigation
	position:fixed;
	right: calc(10% + 5px); 
    top: 15%; */
}


#rightside-nav button {
	outline: none;
	background: transparent;
	width: 100%;

	/*display: block;*/
	/*margin: auto;*/

	height: auto;
	border: 1px dotted rgba(175, 71, 60, 0.5);
	/*#AF473C*/
	font-size: 90%;
	text-align: left;
	padding: 4px 4px 4px 8px;
}

#rightside-nav button:hover {
	border: 1px solid #AF473C !important;
}

#rightside-nav button:active {
	font-weight: bold !important;
	color: black;
}

#footer {
	clear: both;
	padding-bottom: 20px;
	font-size: 80%;
	text-align: center;
}


/**********************Papers*********************/

#publication {
	clear: both;
}

#publication div {
	padding: 4px 0px 4px 0px;
	border-top: 0.5px #AF473C dashed;
}

#publication div:nth-child(even) {
	/*background-color:#FAFAFA;*/
}

#publication div table tbody tr td img {
	width: 70px;
	height: 100px;
}

/**********************Projects*********************/
#project {
	clear: both;
	/*text-align: left;*/
}

#project h1,
h2,
h3 {
	margin: 0;
}

#project table td {
	/*align-content:left;*/
	padding: 3px 0px;
	vertical-align: top;
}

#project div:nth-child(even) {
	/*background-color:#FAFAFA;*/
}

#project table:hover {
	/*background-color:#FAFAFA;*/
}

#project table span {
	align-content: center;
	text-align: center;
}

#project table td img {
	display: block;
	margin: 6px 0;
}

#project table td img:hover {
	/*-webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4);
    -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4);
    box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4);*/
	-webkit-box-shadow: 3px 3px 3px #888;
	-moz-box-shadow: 3px 3px 3px #888;
	-o-box-shadow: 3px 3px 3px #888;
	box-shadow: 3px 3px 3px #888;
	position: relative;
	top: -2px;
}

#project table td img:active {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	opacity: 0.8;

	position: relative;
	top: 2px;
}


#project ul {
	margin: 0;
	padding: 0 0 0 17px;
	text-align: left;
}

/**********************Projects*********************/
.group {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.namecard {
	width: 550px;
	/*400px*/
	height: 200px;
	padding: 4px;
	/*border: 1px #777777 solid;*/
}

.name {
	border-bottom: 1px solid #AF473C;
	font-weight: bold;
}

/***************************************************************************/
.vNav {
	position: fixed;
	top: 30%;
	right: 5%;
	width: 50px;
	z-index: 9999;
	list-style-type: none;
}

.vNav ul {
	position: relative;
	padding: 3px;
	padding-left: 35%;
}

.vNav ul li {
	position: relative;
	padding-bottom: 20px;
	padding-left: 35%;
	color: #AF473C;
}

.vNav a {
	display: block;
	width: 8px;
	height: 8px;
	text-indent: -9999px;
	border-radius: 50%;
	border: 1px solid;
	border-color: #AF473C;
	text-decoration: none;
}

.vNav a:hover {
	border-radius: 50%;
	background-color: #AF473C;
	text-decoration: none;
}

.vNav a.active {
	border-radius: 50%;
	background-color: #AF473C;
	text-decoration: none;
}

.label {
	position: relative;
	top: -60%;
	left: -200%;
	width: 100%;
	text-align: right;
	font-size: 1em;
	color: #AF473C;
	display: none;
}

.label span {
	background-color: #FDFDFD;
}

/***************************************************/

#FAQ {
	width: 650px;
	float: right;
	text-align: justify;
}

#FAQL {
	width: 250px;
	float: left;
	text-align: left;
}

.titl {
	font-size: 16px;
	color: #00F;
}

.infotext {
	text-align: justify;
	line-height: 125%;
}

.compact {}

.Edit {}

.EditWeb {
	font-size: 12px;
}

.tab {
	margin-left: 1em
}


.mixitup-control-active {
	/*color: #FBA100 !important;*/
	border: 1px solid #AF473C !important;
	font-weight: bold !important;

}

/*
.mixitup-control-active[data-filter]:after {
		background-color: yellow;
    color: blue;
}

.mixitup-control-active[data-toggle]:after {
		background-color: yellow;
    color: red;
}
*/