h6 {
    margin-bottom: 5px
}
.see-more{
    margin-left: 30px;
    font-style: italic;
    color: DarkGray;
    font-size: small;
}

.content{
    /*box-sizing: border-box*/
    border-radius: 5px;
    margin-left: 60px;
    padding-left: 10px;
	margin-right: 20px;
    background-color: #e6e0e9;
    color: black;
    font-style: bold;
    display: block;
}

.row > .content{
    max-height: 0;
    transition: max-height 2s ease-out;
    overflow: hidden;
}

.row:hover > .content{
    max-height: 500px;
    transition: max-height 1.5s ease-in;
}


canvas{
    padding-left: 0;
    padding-right: 0;
    display: block;
	float: left;
}
table {
color: #333; /* Lighten up font color */
font-family: Helvetica, Arial, sans-serif; /* Nicer font */
width: auto;
border-collapse:
collapse; border-spacing: 0;
margin-left: 10px;
margin-right: auto;
margin-top: 20px;
	float:left;
}
td, th { border: 1px solid #CCC; height: 30px; } /* Make cells a bit taller */

th {
background: #F3F3F3; /* Light grey background */
font-weight: bold; /* Make sure they're bold */
}

td {
background: #FAFAFA; /* Lighter grey background */
text-align: center; /* Center our text */
}

#clear-button {
	clear: both;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 10px;

    border:1px solid #0A0A0A;
    color: #000000;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    font-family: Verdana;
    font-size: 16px;
    padding: 5px 26px;
    background-image: linear-gradient(to top, #FCFCFC, #FCFCFC);
    background-color: #e6e0e9;
}


.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state + div > .read-more-trigger:before {
  content: '+';
}

.read-more-state:checked + div > .read-more-trigger:before {
  content: '-';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
}

.read-more-wrap{
	margin-bottom: 0px;	
}

read-more-target > p {
	margin: 0px;
}