<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  color: #333;
  display: flex;
  height: 100vh;
}

/* Left sidebar 
header {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  width: 300px;
  padding: 2em 1em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
*/
/* Position content at the top */
.intro-content {
  width: 100%;
}

.img {
  width: 350px;
}

.img-research {
	width: 80%;
	padding-top: 50px;
}

/* Profile image styling */
.photo-research {
  width: 30%;
  height: 30%;
  padding: 20px;
  vertical-align: top;
/*  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white; */
}

.intro {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  width: 100%;
  padding: 2em 1em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
/*  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px; */
  transition: width 0.4s ease;
  overflow: hidden;
}

/* Expanded on hover */
.intro:hover {
  width: 100%;
}

.intro:hover .more-info {
  display: inline-block;
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

/* Profile image styling */
.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 1em;
}

/* Info text */
.info {
	display: inline-block;
  text-align: left;
}

.info-content {
	display: inline-block;
	padding-left: 30px;
	text-align: left;
}

.infotabs {
	position: absolute;
	top: 0;
	display: inline-block;
	text-align: center;
}

.footercustom {
	position: absolute;
	bottom: 0;
	text-align: left;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.4s ease, max-height 0.4s ease;
	margin-top: 1em;
	font-size: 0.5em;
	color: #fff;
}

.footercustom_intro {
	position: absolute;
	bottom: 0;
	text-align: left;
	font-size: 0.5em;
}


.cv-link {
  display: inline-block;
 /*  margin-top: 1em; */
 padding: 0.5em 1em;
 /*  background-color: #ffffff; 
  color: #4e54c8; */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cv-link:hover {
  background-color: #e0e0ff;
}

.home-link {
/*  display: inline-block;
  margin-top: 1em;*/
  padding: 0.5em 1em;
 /* background-color: #ffffff; 
  color: #4e54c8; */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.home-link:hover {
  background-color: #e0e0ff;
}

.csce {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

.cp {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

.csce:hover {
  color: white;
  background-color: #e0e0ff;
  text-decoration: underline;
}

.cp:hover {
  color: white;
  background-color: #e0e0ff;
  text-decoration: underline;
}


.teaching {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  width: 1%;
  padding: 2em 1em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
/*  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;  */
  transition: width 0.4s ease;
  overflow: hidden;
}

.teaching:hover {
  width: 100%;
}

.research {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  width: 1%;
  padding: 2em 1em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
/*  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;  */
  transition: width 0.4s ease;
  overflow: hidden;
}

.research:hover {
  width: 100%;
}

.students {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  width: 1%;
  padding: 2em 1em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
/*  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;  */
  transition: width 0.4s ease;
  overflow: hidden;
}

.students:hover {
  width: 100%;
}

.more-info {
	display: inline-block;
	padding-left: 50px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.4s ease, max-height 0.4s ease;
	margin-top: 1em;
	font-size: 0.95em;
	color: #fff;
}

/* Reveal more info on sidebar hover */
.teaching:hover .more-info {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

.teaching:hover .footercustom {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

/* Reveal more info on sidebar hover */
.research:hover .more-info {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

.research:hover .footercustom {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

/* Reveal more info on sidebar hover */
.students:hover .more-info {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

.students:hover .footercustom {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}

.intro:hover .more-info {
  opacity: 1;
  max-height: 100%; /* Adjust based on your content */
}


/* Header and Navigation styling */
header {
	position: absolute;
	top: 0;
    background: linear-gradient(315deg, #4e54c8, #8f94fb); /* #4e54c8, #8f94fb  */
    color: #fff;
    padding: 10px 0;
	height: 50px;
	width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;
  
	text-align: left;
    padding: 0px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);;
	font-size: 0.5em;
	color: #fff;
	vertical-align: bottom;  /* */
}

.publication_body {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);;
	font-size: 0.95em;
	color: #fff;
 /*   padding: 10px; */
/*   border-radius: 5px;
    border-left: 2px solid #333;*/
	width: 100%;
}

.publication {
 /*   background: linear-gradient(135deg, #4e54c8, #8f94fb);; */
	font-size: 0.95em;
	color: #fff;
 /*   padding: 10px; */
     margin: 100px 0;
/*   border-radius: 5px;
    border-left: 2px solid #333;*/
	width: 100%;
}

.publication-title {
 /*   background-color: #fff;
    border-radius: 5px;
    border-left: 2px solid #333;*/
	padding-left: 50px;
	width: 100%;
}

.publication-content-inline {
 /*   background-color: #fff;
    border-radius: 5px;
    border-left: 2px solid #333;*/
	width: 40%;
	vertical-align: top;
	display: inline-block;
	padding-left: 50px;
/*	width: 100%;*/
}

.publication-content {
 /*   background-color: #fff;
    border-radius: 5px;
    border-left: 2px solid #333;*/
	vertical-align: top;
	display: block;
	padding-left: 50px;
/*	width: 100%;*/
}</pre></body></html>