/*------------------------------------*\
    BORDERS
\*------------------------------------*/

/* Create a series of empty pseudo-elements... */
html:before,html:after,body:before,body:after{
    content:"";
    background: #0088ff;
    position:fixed;
    display:block;
    z-index:5;
}

/* ...and position them! */
html:before{
    height:4px;
    left:0;
    right:0;
    top:0;
}
html:after{
    width:4px;
    top:0;
    right:0;
    bottom:0;
}
body:before{
    height:4px;
    right:0;
    bottom:0;
    left:0;
}
body:after{
    width:4px;
    top:0;
    bottom:0;
    left:0;
}
