/* Dock */

#dock {
/* Required css, you can adjust the values, but the properties must remain */
/* set "margin-left" to half the width of <div id="dock">, calculate the width of this <div> by adding up the widths of the <img>'s plus paddings and margins */
margin-left: -204px;
position: fixed;
z-index: 10;
bottom: -26px;
width: auto;
height: 40px;
/* Optional css */
left: 50%;
padding: 2px 4px;
border: 0px;
background-color: gray;
}

#dock img {
/* Required css, you can adjust the values, but the properties must remain */
float: left;
height: 32px;
width: 32px;
margin-top: 4px;
/* Optional css */
margin-left: 4px;
margin-right: 4px;
border: 0px;
}