CSS DIV Absolute Position
The below css code used to position your DIV in the absolute position mentioned via, top, left, margin and width measurements
#container {
width: 140px;
border: 1px solid #666666;
position: absolute;
top: 0px;
left: 50%;
margin-left: -70px; /* width/2 */
}