.rwd-table-form table {
    min-width: 300px;
}
.rwd-table-form table th {
    /*  for accessibility */ 
    display: none;
}
.rwd-table-form table td {
    display: block; 
    padding-left:8em;
    clear:left;
}
.rwd-table-form table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    display: inline-block; 
    float:left;
    margin-left:-8em;
}
.rwd-table-form table td:first-child {
    padding-top: .5em; 
}
.rwd-table-form table td:last-child {
    padding-bottom: .5em; 
}
.rwd-table-form table th, .rwd-table-form table td {
    text-align: left; 
}
@media (max-width: 480px) {
	.rwd-table-form table tr:nth-child(even) {
	    background-color:#e0e0e0;
	}			
	.rwd-table-form table tr:nth-child(odd) {
	    background-color:transparent;
	}			
}
@media (min-width: 480px) {
    .rwd-table-form table td:before {
        display: none; 
    } 
    .rwd-table-form table th, .rwd-table-form table td {
        display: table-cell;
        padding: .25em .5em;
    }
    .rwd-table-form table th:first-child, .rwd-table-form table td:first-child {
        padding-left: 0; 
    }
    .rwd-table-form table th:last-child, .rwd-table-form table td:last-child {
        padding-right: 0; 
    } 
}
