<style>

.div-table {
  display: table;  
  border-collapse: separate; 
  width: 50%

}

.div-tr {
	display: table-row; 
}

.div-td {
	display: table-cell; 
	text-align: center;
	width: 10%;
}
 
.navline-header
{
	display: table-caption; 
	color:#67717d; 
	font: bold 16px arial; 
	text-align:left; 
	margin: 0 10 15;
}

.navline-text
{
	font-size:14px;
	color:#67717d;
	height: 34px;
	display: flex;
	justify-content: center;	
	align-items: center;
}

.navline-cell
{
	border: 1px solid #DDD;
	background: #fafafa;
	padding: 10;
}

.navline-cell:hover
{
	background-color: #E2EEFF;
	text-decoration: none;
}

.navline-cell:first-child
{
	-webkit-border-radius: 10px 0 0 10px;
}

.navline-cell:last-child
{
	-webkit-border-radius: 0 10px 10px 0;
}

.navline-current-url, .navline-current-url:hover
{
	background-color: #d6e3f9;
}

.navline-cell img
{
	width: 50px;
	margin-bottom:10px;
}

</style>