div.container {
    width: 100%;
    border: 1px solid gray;
	background-color: #ffffe5;
}

article{
    margin-left: 15%;
    border-left: 4px solid pink;
    padding: 1em;
    overflow: hidden;
	background-color: #ccffcc;
	font-size:18px;
	line-height:2;
}

article p {color: #426924;}

div.boardbox {
	width:110;
    height: 180px;
    text-align: center;
    align-items: center;
	font-size:16px;
	margin: 15px;
}

table {
	border: double pink;
	border-width: 5px;
    

}
tr:nth-child(odd){background-color: #ccffcc;}
tr:nth-child(even){background-color: #f2f2f2;}
td {
	padding: 0.5em;
}

img {border-radius: 8px;}
.sidebar {
	width:95%;
	float:left;
	margin:10px;	
	padding: 10px 5px;
	border:double pink;
	border-radius:10px;
	line-height:1.5;
}

img {border-radius: 8px;}
.SpeakerSidebar {
	width:95%;
	float:left;
	margin:10px;	
	padding: 10px 5px;
	border:2px dotted pink;
	border-radius:10px;
	line-height:1.5;
}

/* Style the tab */
div.tab {
    overflow: hidden;
    border: 2px dotted pink;
    background-color: #ccffcc;
}

/* Style the buttons inside the tab */
div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}