/******************************************
 CUSTOM STYLESHEET
*******************************************/

/*
* You can place your custom CSS statements in this file, after this message.
* It is better to write everything custom here
* because this file won't be replaced during updates.
*
* Simply copy an existing style from style.css to this file,
* and modify it to your liking.
*/

/*.site-header {
    position: fixed;
    height: 77px;
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 300;
}

body {
    padding: 77px 0 0;
}*/
#table-of-contents {
  background: #f9f8ee;
  padding: 15px 20px;
  margin-bottom: 20px;
  position: relative;
}

#table-of-contents h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

#table-of-contents ul {
  padding: 0;
  margin: 0;
  max-height: 200px;   /* limit height */
  overflow: hidden;    /* hide extra */
  transition: max-height 0.3s ease;
}

#table-of-contents ul.expanded {
  max-height: 1000px; /* expand */
}

#table-of-contents li {
  margin: 5px 0;
}

#table-of-contents a {
  text-decoration: none;
  color: #000;	
}
#table-of-contents a:hover{
	color: #ea6c35;
    text-decoration: none;
}
#table-of-contents a strong{
font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: normal;	
}
#toc-toggle {
  display: block;
  margin-top: 10px;
  background: none;
  border: none;
  color: #ea6c35;
  font-weight: normal;
  cursor: pointer;
	font-size:14px;
}
