

table.gridtable {
    font-family: verdana,arial,sans-serif;
    font-size:11px;
	color:#333333;
	border-collapse: separate;
  	border-spacing: 0;
    min-width:300px;
    max-width:500px;
    margin: auto;
}

/* top-left border-radius */
table.gridtable tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

/* top-right border-radius */
table.gridtable tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

/* bottom-left border-radius */
table.gridtable tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

/* bottom-right border-radius */
table.gridtable tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

table.gridtable th {
    border-width: 1px;
padding: 8px;
    border-style: solid;
    border-color: #ddd;
    background-color: #dedede;
    text-align: center;
}
table.gridtable td {
    border-width: 1px;
	padding: 8px;
    border-style: solid;
    border-color: #ddd;
    background-color: #ffffff;
    text-align: center;
}
table.features td {
    vertical-align: top;
}


table.gridtable a:link, table.gridtable a:visited, table.gridtable a:hover {
    color: blue;
    border-bottom: 0px;
}

@media screen and (max-width : 760px){
    table.gridtable {
        font-size:9px;
        display: block;
        min-width:300px;
        margin: auto;
    }

}
