		* {
			box-sizing: border-box;
		}
		
		/* Create two equal columns that floats next to each other */
		.column {
			float: left;
			padding: 10px;
			/*height: 300px;  Should be removed. Only for demonstration */
		}
		.left {
			width: 10%;
		}

		.right {
			width: 90%;
		}
		
		/* Clear floats after the columns */
		.row:after {
			content: "";
			display: table;
			clear: both;
		}
		h2{
			cursor: pointer;
			border: 1px solid red;
			text-align: center;
		}
		h3{
			cursor: pointer;
			border: 1px solid red;
			margin-left: 5%;
			text-align: center;
		}
		li {
			list-style-type: none; /* Remove bullets */
			padding: 1px; /* Remove padding */
			margin: 0; /* Remove margins */
			border: 1px solid orange;
			cursor: pointer;
			text-align: center;
		}
		
	#content{
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        border: none; /* No border */
        overflow: hidden; /* Hide overflowing content */
    }