html{
  scroll-behavior: smooth;
}

/******************************************************************************************/
/*           BODY LAYOUT          */
/*****************************************************************************************/

body {
  background-color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 80%;
  margin: auto;
  background-color: white;
  text-align: left;
}


/******************************************************************************************/
/*           FONTS AND HEADINGS           */
/*****************************************************************************************/

h2 {
  font-size: 1.4em;
}

h3{
  font-size: 1.2em;
}

h4, label{
  font-size: 1.1em;
}
p {
  font-size: 1em;
}
ul, ol, dl {
  font-size: 1em;
}

h5{
    font-size: 0.9em;
    font-weight: 400;
    margin-top: -1rem;
    color: rgb(34, 45, 71);
}

/******************** SPACING ********************/

/** compensate for floating menu for named anchors. ***/

.vspacediv
{
 position:relative;
 top:-50px;
}


/******************************************************************************************/
/*           FOOTER             */
/*****************************************************************************************/


.footer
{
  display: grid;
  grid-gap: 10px;
  background-color: #414f73ff;
  color: white;
  padding: 2%;
  font-size: 1.1em;
  margin-top: 4%;
}

.nav-footer{
  grid-column-start: 1;
  grid-column-end: 2;
  
}
.nav-footer a, .sns-footer a{
  color:white;
  text-decoration:none;
  padding-right: 3%;
}

.sns-footer{
  grid-column-start: 3;
  align-items: center;
}
.sns-footer a{
  float:right;
}

.sns-icon{
  height:20px;
  vertical-align:middle;
}


.copyrights{
  margin-top:4%;
  grid-row-start: 2;
  grid-column-start: 2;
  grid-column-end: 2;
  text-align: center;
}

.clearfooter
{
	clear:both;
}


/******************************************************************************************/
/*           MENUS             */
/*****************************************************************************************/

/*navigation*/
.nav-main-symposium ul, .nav-main ul{
  list-style-type:none;
  margin:0;
  padding:0;
  position: absolute;
  background-color: #414f73ff;
  width: 100%;

}
/*Horizontal list with spacing*/
.nav-main-symposium li, .nav-main li {
  display:inline-block;
  float: left;
  width: auto;
  
}


/*Style for menu links*/
.nav-main li a {
  display:block;
  height: 6vh;
  font-size: 1.1rem;
  line-height: 6vh;
  color: #fff;
  background: #414f73ff;
  text-decoration: none;
  padding: 0 0.9em 0 0.9em;
}


/*Style for symposium menu links*/
.nav-main-symposium li a {
  display:block;
  height: 6vh;
  font-size: 1.1rem;
  line-height: 6vh;
  color: #fff;
  background: #414f73ff;
  text-decoration: none;
  padding: 0 0.9em 0 0.9em;
}

/*Hover state for top level links*/
.nav-main-symposium li:hover, .nav-main li:hover, .nav-main li:hover a, .nav-main-symposium li:hover a{
  background: #6a6d85;
}

/*Style for dropdown links*/
.nav-main-symposium li:hover ul a, .nav-main li:hover ul a {
  background: #202739;
  color: #ffffff;
  height: 36px;
  line-height: 36px;
}

/*Hover state for dropdown links*/
.nav-main-symposium li:hover ul a:hover, .nav-main li:hover ul a:hover {
  background: #6a6d85;
}

/*Hide dropdown links until they are needed*/
.nav-main-symposium li ul, .nav-main li ul {
  display: none;
}

/*Make dropdown links vertical*/
.nav-main-symposium li ul li, .nav-main li ul li {
  display: block;
  float: none;
}

/*Prevent text wrapping*/
.nav-main-symposium li ul li a, .nav-main li ul li a {
  width: auto;
  min-width: 180px;
  padding: 0 6px;
}

/*Display the dropdown on hover*/
.nav-main-symposium ul li a:hover + .hidden, .nav-main ul li a:hover + .hidden, .hidden:hover {
  display: block;
  width: auto;
  min-width: 180px;
}

/*Responsive Navigation*/
@media screen and (max-width : 760px) and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (width : 375px) 
and (height : 559px) 
and (orientation : portrait) 
and (color : 8)
and (device-aspect-ratio : 375/667)
and (aspect-ratio : 375/559)
and (device-pixel-ratio : 2)
and (-webkit-min-device-pixel-ratio : 2){

  /*Make dropdown links appear inline*/
  .nav-main-symposium ul, .nav-main ul {
      position: static;
      display: none;
  }


  /*Create vertical spacing*/
  .nav-main-symposium li, .nav-main li {
    padding-bottom:1%;
    padding-top: 1%;
    
  }

  /*Make all menu links full width*/
  .nav-main ul li, .nav-main li a, .nav-main-symposium ul li, .nav-main-symposium li a {
      width: 100%!important;
     padding:none!important;
  }

}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
  text-decoration: none;
  color: #fff;
  background: #414f73ff;
  display: none;
  border-bottom: 0.5px solid #b3b8c7;
}


/*Hide checkbox*/
input[type=checkbox]{
  display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
  display: block;
}



/*Artificial navigation between popets and pets.*/
.nav a{
  width:20%;
  display: inline-block;
  text-align: center;
  padding-top: 1%;
  padding-bottom: 1%;
  font-size: 1.1rem;
}

.nav-inactive   {
  background-color: #2774B8 ;
  color: #ffffff;
  text-decoration: none;
}

a:hover.nav-pets-active{
background-color:#6a6d85;
}

.nav-pets-active {
  background-color: #414f73;
  color: #ffffff;
  text-decoration: none;
}

/*Responsive navigation links*/
@media screen and (max-width : 1000px){

  /*Make dropdown links appear inline*/
  .nav-main ul, .nav-main-symposium ul {
      position: static;
      display: none;
  }

  /*Make all menu links full width*/
  ul li, li a{
      width: 100%;
  }

  /*Display 'show menu' link*/
  .show-menu {
      display:block;
	  padding: 10px 10px;
  }

  .nav-main li a, .nav-main-symposium a{
    border-bottom: 0.5px solid #b3b8c7;
	padding:10px 10px;
  
  }
  .nav-main li, .nav-main-symposium li{
    display: block;
    float: none;
    width: inherit;
    padding:0px;
  }
  .nav a{
    padding: 10px 0;
  }

}

/*Sticky navigation menu*/
.nav-main-symposium, .nav-main{
  margin-top: 0.5%;
  margin-bottom:4%;
  font-size: 1em;
  position: sticky;
  top: 0pt;
  z-index: 500;
    
}

/*active page highlight navigation item*/
.nav-main li a.active, .nav-main-symposium li a.active{
  background-color: #2774B8 ;
}




/******************************************************************************************/
/*           HOME PAGES GRID           */
/*****************************************************************************************/

.grid{
  display: grid;
  grid-gap: 10px;
  grid-auto-flow: column;
}

.col-1-row-1{
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row: 1;
}
.col-1{
  grid-column: 1 / 3;
  grid-row: 2;
    clear:both;
}

.col-2{
  background-color: #fcfdff;
  grid-column-start: 3;
  grid-row:2;
 padding: 6%;
}

.content {
  padding: 0 4% 5% 4%;
  margin-top:8%;
}

/******************************************************************************************/
/*           IMAGES ETC.       */
/*****************************************************************************************/


/*Popets image cover*/

.popets_cover{
  margin-right: 2em;
  float:left;
  max-height: 250px;
  border-left:20px solid #2774b8;
}


  /*Banner*/

.banner{
    height: auto;
    margin-bottom: 2%;
    margin-top: 1%;
    width: 100%;
}

  
  /*Symposium sponsors and organizers*/

.symposium-banner{
  width:98%;
}

.symposium-banner img{
  margin-top:-2%;
  width: 99%;
  border-left: solid #2774B8 14px;
}
.symposium-banner span{
  font-size: 0.8em;
  float: right;
}

.symposium-banner {
  margin-bottom: 4%;
}

.img-responsive{
  width: 100%;
}

.awardimg {
        float: right;
        width: 33%;
        max-width: 200px;
        padding-left: 1em;
}

#organizers {   
  width: 100%;
  margin-top:20px;
  margin-right: auto;

   text-align: justify;
  -ms-text-justify: distribute-all-lines;
  text-justify: distribute-all-lines;
}
#sponsors{
  width: 50%;
  margin-top:20px;
  margin-right: auto;

   text-align: justify;
  -ms-text-justify: distribute-all-lines;
  text-justify: distribute-all-lines;
}

#organizers a, #sponsors a {
  vertical-align: top;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-top:40px;
}
.stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0
}


/******************************************************************************************/
/*           TYPOGRAPHY and LISTS       */
/*****************************************************************************************/

.text-headings {
  color:#414f73ff!important;
  line-height: 1.5;

}

.sub-heading{
  margin-top: 5%;
}

u {
  text-decoration: none;
  border-bottom: 4px solid #414f73ff;
  padding: 1px 1px 0 0;
}

.deadlines{
  padding-left:2%;
  padding-right:1%;
}

.side-headings{
  color:#414f73!important;
  font-size: 1.2em;
}

p.side-headings {
  font-weight: bold;
}

/* Headers for cfps*/

.heading_lists{
  color:#003366;
  font-weight: 600;
}

.cfp-place p{
  font-weight: 600;
  font-size:1.2em;
  margin-bottom: -1em;
}

.sidebar{
  margin-top: 10%;
}

/*list style for FAQ*/
.faq-list li {
  margin-bottom: 1.4em;
  font-weight: 600;
}

.faq-list dd{
  margin-top: 0.5em;
  font-weight: normal;
}

/*symposium styles for headers and lists*/
.symposium h2{
  margin-top: 4%;
}

.symposium dt{
  padding-bottom: 0.5em;
}

.accepted-list ul {
  padding: 0.5em;
  width: 90%;
}

.accepted-list li {
  padding: 0.5em;
  width: 90%;
  margin-top: 2px;
}

/*Contact page spacing*/

.contact p{
  margin-top: -0.8rem;
}


.contact{
  padding-top: 0.8rem;
}


  /*Links*/

  a {
    color: #2E5090 ;
     }
   
     a:hover.highlight{
    color: #519bda ;
     }

/*Blockquote from awards page*/

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #2774B8;
  margin: 4% 4% 4% 4%;
  padding: 2% 2% 2% 2%;
  quotes: "\201C""\201D""\2018""\2019";
  font-style: italic;
  font-size: 2.2vh;
}

blockquote:before {
  color: #2774B8;
  content: open-quote;
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}

/*MISC*/

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: justify;
}

/******************************************************************************************/
/*           LARGE BUTTONS           */
/*****************************************************************************************/


a.button2{
  display: inline-block;
  padding: 1%;
  border:0.16em solid 
  #2E5090;
  margin:3em 0.3em 0.3em 0;
  box-sizing: border-box;
  text-decoration:none;
  font-weight:400;
  background-color: 	
  #f8f7f5;
  color:#2E5090;
  text-align:center;
  transition: all 0.15s;
  width: 48%;
  font-size: 1.1em;
  }

  a.button2:hover{
    background-color:#2E5090
    ;
    border:0.16em solid #2E5090
    ;
    color:white;
  }


/******************************************************************************************/
/*           RESPONSIVE STYLES       */
/*****************************************************************************************/


  /*Media queries for responsive site*/

  @media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio : 2)  {
    .grid, .sponsors, .organizers {
      display: block;
    grid-template-columns: 1fr;
    }
    
 a.button2{
   min-width: 100%;
   margin: 0 0 2px 0;
 }
 .cfp-buttons{
   margin-top: 2em;
 }
 .footer{
  display: block;
  grid-template-columns: 1fr;
}
  .nav-footer a{
    display: block;
  }
}

@media only screen and (max-width: 260px)  
  and (-webkit-min-device-pixel-ratio : 2) {
    .header_home{
    display:block;
    }
  
  }

@media screen and (max-width:1066px){
    .nav a{
      width:100%;
      display: block;
     
    }
  }
  
@media screen and (max-width: 700px){
  .container{
    width: 100%;
  }

  .content{
    padding: none;
    margin:none;
  }
 .pets-home{
   display: block;
   float: left;
 }
 .col-2{
  padding: 0;
}
.symposium-banner span{
  font-size: 0.5em!important;
}
}

  

/******************************************************************************************/
/*           PROGRAM       */
/*****************************************************************************************/


/*Tabs symposium program*/

@media screen and (max-width: 500px) {
.tabs label {
    width: 100%!important;
  }
}

.tabs {
  max-width: 100%;
  margin-top: 20px;
}
.tabs input {
  display: none;
}
.tabs label {
  display: inline-block;
  padding: 6px 0 6px 0;
  width: 19%; /* =100/tabs number */
 border: 1px solid #2E5090;
  text-align: center;
}
.tabs label:hover {
  cursor: pointer;
}
.tabs input:checked + label {
  background-color: #2E5090;
  border: 1px solid #2E5090;
  color: white;
  
}
.tabs #tab1:checked ~ .program-content #program-content1,
.tabs #tab2:checked ~ .program-content #program-content2,
.tabs #tab3:checked ~ .program-content #program-content3,
.tabs #tab4:checked ~ .program-content #program-content4,
.tabs #tab5:checked ~ .program-content #program-content5  {
  display: block;
}
.tabs .program-content > div {
  display: none;
  padding-top: 20px;
  text-align: left;
  overflow: auto;
}


/*Grid for each day in program*/

/*************************
 * GRID SCHEDULE LAYOUT
 *************************/
 @media screen and (min-width:700px) {
	.schedule {
    display: grid;
		grid-gap: 1em;
		grid-template-rows:
			[tracks] auto
			[time-0800] auto
			[time-0830] auto
			[time-0900] auto
			[time-0930] auto
			[time-1000] auto
			[time-1030] auto
			[time-1100] auto
			[time-1130] auto
      [time-1200] auto
      [time-1230] auto
      [time-1300] auto
      [time-1330] auto
      [time-1400] auto
      [time-1430] auto
      [time-1500] auto
      [time-1530] auto
      [time-1600] auto
      [time-1630] auto
      [time-1700] auto
      [time-1730] auto;
	
		
		grid-template-columns:
			[times] 3em
			[track-1-start] 1fr
			[track-1-end track-2-start] 1fr
      [track-2-end track-3-start] 1fr /*If all days have two rooms remove and instead keep: [track-2]; no track-3-end */
      [track-3-end];
  } 
 
}


.track-room{
  visibility: hidden;
}

@media screen and (max-width:700px) {
.track-room{
  visibility: visible;
  color: white;
}
}

.time-slot {
  grid-column: times;
 
}

.track-slot {
	display: none; /* hidden on small screens and browsers without grid support */
}

@supports( display:grid ) {
	@media screen and (min-width:700px) {
		.track-slot {
			display: block;
			padding: 10px 5px 5px;
			position: sticky;
			top: 0;
			z-index: 1000;
			background-color: rgba(255,255,255,.9);
		}
	}
}


/* Small-screen */
.session {
  margin-bottom:  1em;
}

@supports( display:grid ) {
	@media screen and (min-width: 700px) {
		.session {
			margin: 0;
    }	
	}
}

/*************************
 * VISUAL STYLES FOR PROGRAM

 *************************/

.session {
	padding: .5em;
	border-radius: 2px;
	font-size: 1em;
}

.track-room
.session-title,
.session-time,
.authors,
.paper-title {
  display: block;
}
.paper-title{
  margin-top: 0.4em;
  font-weight: 500;
}
.paper-title a{
  color: white;
  font-size: 0.95em;
}
.authors{
  font-style: italic;
  font-size: 0.9em;
}
.session-title,
.time-slot
 {
	margin: 0;
	font-size: 1em;
}

.session-title a {
	color: #fff;
	text-decoration-style: dotted;
}
	
.session-title a:hover {
        font-style: italic;
}
	
.session-title a:focus {
        outline: 2px dotted rgba(255,255,255,.8);
}

.track-slot,
.time-slot {
	font-weight: bold;
  font-size:1em;
}

.track-1 {
	background-color: #02632c;
	color: #fff;
}

.track-2 {
	background-color: #2031b0;
	color: #fff;
}

.track-3{
  background-color: #ff8000;
	color: #fff;
}

.track-both{
  background-color: #a31a42;
	color: #fff;
}

.track-all {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fcf4c7;
	color: #000;
	box-shadow: none;
}

.text {
	max-width: 750px;
	font-size: 18px;
	margin: 0 auto 50px;
}

.meta {
	color: #555;
	font-style: italic;
}

.meta a {
	color: #555;
}


/*********************TABLES *************************************/

table {
  border-spacing: 0;
  
}

td,
th {
  padding: 0.5em;
  border: solid 1px #f2f2f2;
}

th {
  font-weight: bold;
  text-align: left;
}

thead th, .table-heading {
  background-color: #f2f2f2;
  color: black;
}

.table-heading{
	font-weight: 550;
}

td > div {
  float: right!important;
}

@media only screen and (max-width: 40em) {
  .gen-acceptance thead th:not(:first-child) {
    display: none;
  }
  table.gen-acceptance{
	  width: 80%;
  }
  .gen-acceptance td, .gen-acceptance th {
    display: block;
    clear: both;
	border: none!important;
  }
  .gen-acceptance td[data-th]:before {
    content: attr(data-th);
    float: left;
  }
  .table-heading{
	  margin-top: 2%;
  }
}

.bdown-table{
 overflow-x:auto!important;
}

