body {
    margin: 0;
}
#left {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
}
#right {
    position: absolute;
    top: 0;
    right: 0;
    left: 220px;
    height: 100%;
    border-left: 1px solid #a58d8d;
}
iframe {
    border: none;
    height: 100%;
    width: 100%;
}

    /* Scroll Bar */
    /* width */
::-webkit-scrollbar {
	width: 0px;
}
    /* Track */
::-webkit-scrollbar-track {
	background: #DCA1A1;
}
    /* Handle */
::-webkit-scrollbar-thumb {
	background: #543c3c;
}
    /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #898383;
}