/*CSS style sheet for SGE 2023 proceedings*/
/* (simplifed from SGE 2014 proceedings)  */
/* author: Pierre Haessig */

/******** Global appearance settings ***********/

body {
  font-family: sans-serif;
  margin:0px;
  background-color:#EEE;
}

ul > li {
  list-style-type: circle;
}

div#page {
    margin: 20px auto;
    padding: 0 40px;
    max-width: 980px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    background-color: white;
}

a {
  color: #1f59d3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


h1, h2, h3, h4, h5, h6 {
  color: #12398a;
}

/*for small screens*/
@media screen and (max-width: 1060px) {

  div#page {
  margin: 0;
  padding: 0 4%;
  }

}


/*** Header and footer ***/

#header, #footer {
  position: relative;
  overflow: hidden;
  border-width: 1px;
  border-color: #CCC;
}

#header {
  padding-top: 10px;
  border-bottom-style: solid;
}

#header h1.event-name {
  margin-top:1.5em;
  font-size: 1.5em;
}

#header h1.event-name a {
  color: inherit;
  text-decoration: none;
}

#header h1.event-name a:hover {
  color: #1f59d3;
}



#header h2.event-description {
  font-size: 1em;
  font-weight: normal;
  font-style: italic;
}

#header img.logo {
  max-width: 100%;
  }

/* header navigation bar */
#header nav {
  clear: both; /*clear the logo*/
  padding-top: 5px;
  text-align: left;
  position: relative;
}

#header nav a {
  display: inline-block;
  padding: 5px 1.5em;
  text-decoration: none;
  color: #666;
}
#header nav a:hover {
  color: #000;
  background-color:#F5F5F5;
}
#header nav a.active {
  font-weight: bold;
}

img.logo {
  float:right;
}

#footer {
  font-size: 0.9em;
  text-align: center;
  padding: 5px;
  border-top-style: solid;
}

#footer .credits {
  color: #777;
}
section.content {
  overflow: hidden;
  padding: 0.5em 0;
}


/******* Special pages *********/

/*** Index page ***/


/*** List of all articles ***/

.article_list {
  padding-left: 0;
}

.article_list li {
  margin-bottom: 1em;
  list-style-type: none;
  border-left: solid 1px #CCC;
  padding-left: 7px;
  padding-right: 60px;
  margin-left: 60px;
  position:relative;
}

.article_list .article-title {
  color: black;
}

.article-authors {
  color: #1f59d3;
}

.article_list a.pdf {
  display:block;
  position:absolute;
  top: 0px;
  left: -60px;
  width: 58px;
  height: 100%;
  border-left: solid 1px #CCC;
  color: #C00;
  text-align:center;
  text-decoration: none;
}

.article_list a.pdf:hover {
  background-color: #F5F5F5;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .article_list li {
  padding-right: inherit;
  margin-left: inherit;
  }
  .article_list a.pdf {
    position: relative;
    width: inherit;
    left: inherit;
    /*display:inline; */
    border: dotted 1px #CCC;

  }
}

/*** Article detail page ***/

.download-pdf {
  display: block;
  width: 128px;
  float: right;
  text-align:center;
  border: dotted 1px #CCC;
}
.download-pdf.available:hover {
  background-color: #F5F5F5;
  text-decoration: none;
}

.download-pdf img {
  width: 100%;
}
.download-pdf.not-available img {
  opacity: 0.3;
}


.download-pdf p {
  margin-top: 0;
  margin-bottom: 5px;
  color: #C00;
}

@media screen and (max-width: 730px) {
  .download-pdf {
    float: none;
    width: inherit;
  }
  .download-pdf img {
    max-width: 17%;
  }
  .download-pdf p {
    display: inline;
    bottom: 5px;
    position:relative;
  }
}

section.article-info {
  max-width: 650px;
  margin: 0 auto;
}

.article-info h1{
  font-size: 1.1em;
}

div.abstract {
  background-color: #EEEEEE;
  padding: 1px 15px;
  margin: 1em 0;
}

.abstract h3 {
  color: #777;
  margin-top: 10px;
}

.abstract p {
  font-style: italic;
  margin-bottom: 10px;
}

/*** List of authors, with their articles ***/

/* author index */
nav.author-index {
  text-align: center;
  font-size: 1.2em;
  display: block;
  margin: 1em 40px;
  border-style: solid none;
  border-width: 1px;
  border-color: #CCC;
  overflow: hidden;
}
nav.author-index a{
  color: #666;
  display: inline-block;
  padding:5px 15px;
}
nav.author-index a:hover{
  color: #000;
  background-color: #eee;
  text-decoration: none;
}

/* List of authors, with their articles */
ul.author_list {
  padding-left: 0;
}
ul.author_list > li {
  margin-bottom: 1em;
  list-style-type: none;
}


/* sublist of articles by the author or from lab*/
ul.title-list {
  padding-left: 10px;
}

ul.title-list > li {
  list-style-type: none;
}
ul.title-list > li:before{
  content: "— ";
  color: #CCC;
}

ul.title-list em.article-title {
  font-size: 0.8em;
}

/*** List of all sessions***/
/*ul.session-list {

}*/