/* 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: -42px;
position:relative;
height:175px;
z-index: 5;
bottom: -10px;
width: 150px;
height: 30px;
/* Optional css */
left: 50%;
padding: 2px 2px;
border: 0px;
background-color: black;
}

#dock img {
/* Required css, you can adjust the values, but the properties must remain */
float: top;
height: 32px;
width: 32px;
margin-top: 1px;
/* Optional css */
margin-left: 2px;
margin-right: 2px;
border: 0px;
}