#mynetwork {
    width: 100%;
    height: 100%;
    background-color: #222222;
    /* border: 1px solid lightgray; */
    /* position: relative; */
    position: absolute;
    float: left;
    top: 0px;
    left: 0px;
}


#loadingBar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /* background-color: rgba(200, 200, 200, 0.8); */
    background-color: #222222;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}

#bar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    margin: auto auto auto auto;
    border-radius: 11px;
    border: 2px solid rgba(30, 30, 30, 0.05);
    /* background: rgb(0, 173, 246); */
    background: #F5C900;
    /* Old browsers */
    box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.4);
}

#border {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 500px;
    height: 23px;
    margin: auto auto auto auto;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

#text {
    position: absolute;
    top: 8px;
    left: 530px;
    width: 30px;
    height: 50px;
    margin: auto auto auto auto;
    font-size: 22px;
    color: #000000;
}

div.outerBorder {
    position: relative;
    top: 400px;
    width: 600px;
    height: 44px;
    margin: auto auto auto auto;
    border: 8px solid rgba(0, 0, 0, 0.1);
    background: rgb(252, 252, 252);
    /* Old browsers */
    background: -moz-linear-gradient(top, #268A00 0%, #268A00 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #268A00), color-stop(100%, #268A00));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #278a00 0%, #268A00 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #268A00 0%, #268A00 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #268A00 0%, #268A00 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #268A00 0%, #268A00 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#ededed', GradientType=0);
    /* IE6-9 */
    border-radius: 72px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}