/*css3*/

table.tabelle{
border-spacing:0px;
}

table.tabelle td{
	text-align:center;
}

table.tabelle ul{
list-style-type:none; margin:0;
}

table.tabelle li{
display:inline;
}

table.tabelle ul#img img{
background:white;
width:100px;
margin-top: 15px;
border:solid 1px black;
transition:border 1s;
-webkit-transition: border 1s; /*Safari*/
}

table.tabelle ul#img img:hover{
border:solid 1px yellow;
}


table.tabelle ul#symb img{
background:white;
transition:width 2s , border 1s;
-webkit-transition: width 1s, border 1s; /*Safari*/
margin-top: 15px;
border:solid 1px black;

}

table.tabelle ul#symb img:hover{
border:solid 1px yellow;
width:34px;
}

