html, body {
	height: 100%;
}

#cartoons {
height: auto;
overflow: hidden;
margin: auto;
}
#cartoons img {
display: inline;
}

#bullets li {
	list-style-type:disc
}

.cartoonimage {
    width:150px;
    height:150px;
}

.nav-horiz {
	margin-top:50px
}

nav {
	box-shadow: none
}

@media (max-width: 800px) {
    .vertical-div {
        display: none
    }

    .nav-horiz {
        margin-top: 0px;
    }
}

@media (max-width: 667px) {
    span.brand-logo {
        display: none;
    }

    div.nav-horiz {
        text-align: center;
    }
}

.vertical-div {
	width:56px;
    height:100%;
    margin-left:50px;
    margin-top:-50px;
    z-index:-1;
    position:fixed;
    background-color: #e41a2d;
}

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
}

div.panel.show {
    opacity: 1;
    max-height: 3000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}