﻿
#container {
    display: block;
    position: absolute;
    height: 200px;
    width: 200px;
/*    background-color: #a37a00;*/
    border-radius: 10px;
    z-index: 10;
}

.slide {
    display: block;
    position: relative;
    height: 200px;
    width: 200px;
    background-color: #c80000;
    border-radius: 10px;
}

.green {
    background: green;
}

.bottomRight {
    display: block;
    position: absolute;
    height: 4px;
    width: 4px;
    background: gray;
    right: 0;
    bottom: 0;
}

.bottomLeft {
    display: block;
    position: absolute;
    height: 15px;
    width: 15px;
    background: gray;
    left: 0;
    bottom: 0;
}

.topLeft {
    display: block;
    position: absolute;
    height: 15px;
    width: 15px;
    background: gray;
    left: 0;
    top: 0;
}

.topRight {
    display: block;
    position: absolute;
    height: 15px;
    width: 15px;
    background: gray;
    right: 0;
    top: 0;
}

.top {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
}

.left {
    display: block;
    position: absolute;
    height: 100%;
    width: 3px;
    background: white;
    left: 0;
}

.right {
    display: block;
    position: absolute;
    height: 100%;
    width: 3px;
    background: white;
    right: 0;
}

.bottom {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    bottom: 0;
}
