/*vigomu.net*/
.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;
}

.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: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #c09074;
}

.btn-primary {
    color: #fff;
    background: #b4a814;
	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: 5px;
	border-radius: 5px;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
	text-decoration: none !important;
	font-size: 11px;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
	background: #c1b51c !important;
    color: #fff !important;
}

/* TABLES */
.table-bordered {
	border: 1px solid #c09074 !important;
	background: rgba(255, 255, 255, 0.3) !important;
}
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #c09074 !important;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.5) !important;
}
.table-hover>tbody>tr:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* LINKS */
a {
	text-decoration: none !important;
}