﻿table#t01 {
	display: table;
    width:100%;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;
	font-size: 24px;
}

table#t01 thead, table#t01 tbody {
        float: left;
        width: 100%;
    }
table#t01 tbody {
        overflow: auto;
        height: 1000px;
    }
table#t01 tr {
        width: 100%;
        display: table;
		text-align: left;
    }
table#t01 th, table#t01 td {
        width: 25%;
    }
	
	
table#t01 tr:nth-child(even) {
    background-color: #eee;
}
table#t01 tr:nth-child(odd) {
   background-color:#fff;
}
table#t01 th	{
    background-color: lightblue;
}

caption { 
    color: red;
	font-size: 34px;
}
thead {
    color:green;
}
tbody {
    color:blue;
}
tfoot {
    color:red;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;		
}
.hovereffect {
        background: #98bf21;
        color: #ffffff;
        display: block;
        margin: 10px;
        padding: 10px;
        text-align: center;		
        width: 150px;
 
        /*Transition*/
        -webkit-transition: -webkit-box-shadow 0.5s ease-out;;
        -moz-transition: -moz-box-shadow 0.5s ease-out;
        -o-transition: box-shadow 0.5s ease-out;
}
.hovereffect:link, .hovereffect:visited {    
    font-weight: bold;    
    text-decoration: none;    
}
.hovereffect:hover {
        -moz-box-shadow: 0px 0px 15px #0099ff;
        -webkit-box-shadow: 0px 0px 15px #0099ff;
        box-shadow: 0px 0px 15px #0099ff;
}
 