I recently discovered a ridiculously miraculous shortcut for horizontally centering an absoluted element that is
.element
{
position:absolute;
margin:0px auto;
left:0px;
right:0px;
}
mostly people use the calculated method of % for centering absolute elements where you have to change calculation depending on the size(width) of the element but this one works generally on all elements of any width ...