/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*-----------------------------------------------*/
/* My Table Style - Highlight when hover */
/*-----------------------------------------------*/
.myTable {
	border-collapse:separate;
	margin-bottom: 2px;
}
.myTable td, .myTable thead, .myTable th, .myTable th:first-child, .myTable td:first-child {
	border-left:none;
	border-right:none;
	border-top: 1px solid #ddd;
	border-bottom:none;
	padding: 8px;
	text-transform:none;
}
.myTable thead {
	font-weight:bold;
}
.myTable tr:nth-child(even) {
	background-color: #fff;
}
.myTable tr:nth-child(odd) {
	background-color:#f9f9f9;
}
.myTable tr:hover {
	cursor:default;
	background-color:#f9f9f9;
}
.table-vertical-alignment {
	vertical-align:top;
}
/*-----------------------------------------------*/
/* Newsletter */
/*-----------------------------------------------*/
#newsletter {
	background-color:#0D4279 !important;
	max-width:none !important;
}
#glist-newsletter tr td, #glist-newsletter tr th {
	padding:5px;
}