

        #cr {
            position:relative;
            bottom: -70px;
            left: 0;
        }

        div.absolute {
  position: absolute;
  right:40%;
  top: 800px;
  width: 200px;
  height: 100px;
  border: 3px solid red;
}

        #rhs {
            position: fixed;
            right: 0;
            top: 95%;
        }

        div.sticky {
            position: sticky;
            top: 0;
            padding: 5px;
            background-color: #a90033;
            border: 2px solid #c80050;
        }
