/* Styles the div wrapper
the important part is the
width and the height */
#list{
    /*Influences layout of list*/
    /* Keeps list inside of wrapper*/
    position:relative;
    margin:0 auto;
    overflow:hidden;
}

/* Reset the list*/
#list ul,
#list li{
    list-style:none;
    margin:0;
    padding:0;
}

/* List requires an absolute position
so jQuery can move the items around
freely */
#list a{
    position:absolute;
    text-decoration: none;
}
#list a:hover{
    color:#006;
	padding:2px;
	border:1px #003 solid;
}