 
/* Table Style */
table.table1{
    font-family: "Trebuchet MS", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4em;
    font-style: normal;
    border-collapse:separate;
}



.table1 thead th{
    padding:35px;
	color:#044958;
    
    border:1px solid #fff;
    border-bottom:3px solid #fff;
    background-color:#9DD929;
    background:-webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.02, rgb(95,197,219)),
        color-stop(0.51, rgb(225,225,225)),
        color-stop(0.87, rgb(95,197,219))
        );
    background: -moz-linear-gradient(
        center bottom,
        rgb(123,192,67) 2%,
        rgb(139,198,66) 51%,
        rgb(158,217,41) 87%
        );
    -webkit-border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    -moz-border-radius:5px 5px 0px 0px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
}

.table1 thead th:empty{
    background:transparent;
    border:none;
	
}
.table1 tbody th{
    color:#044958;
    
    background-color:#9DD929;
    border:1px solid #fff;
    border-right:3px solid #fff;
    padding:0px 30px;
    background:-webkit-gradient(
        linear,
        left bottom,
        right top,
     color-stop(0.02, rgb(95,197,219)),
        color-stop(0.51, rgb(225,225,225)),
        color-stop(0.87, rgb(95,197,219))
        );
    background: -moz-linear-gradient(
        left bottom,
        rgb(158,217,41) 2%,
        rgb(139,198,66) 51%,
        rgb(123,192,67) 87%
        );
    -moz-border-radius:5px 0px 0px 5px;
    -webkit-border-top-left-radius:5px;
    -webkit-border-bottom-left-radius:5px;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
}
.table1 tfoot td{
    color: #9CD009;
    font-size:32px;
    text-align:center;
    padding:10px 0px;
    text-shadow:1px 1px 1px #444;
}
.table1 tfoot th{
    color:#666;
}
.table1 tbody td{
    padding:10px;
    text-align:center;
    background-color:#DEF3CA;
    border: 2px solid #fff;
    -moz-border-radius:2px;
    -webkit-border-radius:2px;
    border-radius:2px;
    color:#666;
    text-shadow:1px 1px 1px #fff;
}
.table1 tbody span.check::before{
    content : url(../img/check0.png)
	}
	
.table1 tbody span.wrong::before{
    content : url(../img/wrong.png)
	}
	
	
	
