.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    border-top: none !important;
}

a:focus, a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.form-control {
	background: #fafafa;
	border: 1px solid #e3e3e3;
	color: #666;
}
.form-control:focus {
	border: 1px solid #ccc;
}

/* http://stackoverflow.com/questions/19562903/remove-padding-from-columns-in-bootstrap-3 */
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

/* http://stackoverflow.com/questions/20547819/vertical-align-with-bootstrap-3 */
.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.thumbnail {
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #28446b;
}

.btn-primary {
    color: #fff;
    background: url('../img/button.jpg') no-repeat center center;
	background-size: cover;
	border: 0px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-moz-border-radius: 0px;
	border-radius: 0px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
	background: url('../img/button-hover.jpg') no-repeat center center;
	background-size: cover;
    color: #fff !important;
    background-color: #28446b !important;
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
}