/* CSS Document */

ul{
margin-left: 6px;
padding: 0;
}

ul#navlist{
margin: 0;
padding:0;	
margin-top: 0px;
}

li#menu{
display: block;
list-type: none;
margin-top: 1px;
background-image: url(http://192.168.0.31/images/menudot.jpg);
background-repeat: no-repeat;
background-position: 0 .7em;
}

a.glidebutton{
display: inline-block;
position: relative;
color: #fff; /* default color */
background: #4862B1; /* default bg color */
text-decoration: none;
font: bold 11px tahoma; /* font settings */
letter-spacing: 0px; /* font settings */
overflow: hidden;
height: 25px; /* height of each button */
width: 235px;
text-align: left;
border: solid 0px #036;
border-radius: 3px; /* border radius */
-moz-transition: all 0.3s ease-in-out; /* Enable CSS transition between property changes */
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

a.glidebutton > span:first-child{ /* first span inside button */
position: relative;
display: block;
height: 25px;
padding: 6px; /* padding of button */
-moz-box-sizing: border-box;
box-sizing: border-box;
-moz-transition: all 0.3s ease-in-out; /* Enable CSS transition between property changes */
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

a.glidebutton > span:first-child:after{ /* CSS generated content */
content: attr(data-text); /* Duplicate text of span markup */
display: block;
width: 100%;
height: 25px;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: inherit;
position: absolute;
top:100%;
left:0;
}

a.glidebutton:hover{
color: #900; /* color of button on hover */
background: #ececec; /* bg color of button on hover */
box-shadow: 0 0 10px #7198D9 inset;
font: bold 11px Verdana; /* font settings */
cursor: pointer;
}

a.glidebutton:hover > span:first-child{
-moz-transform: translateY(-100%);
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
