/*navbar*/
	ul {
		font-family: 'Microsoft Sans Serif';
		list-style-type: none;
		margin: auto;padding: 0;
		display:  inline-table;
	}
	li{
		float: left;
	}
	li a{
		display: block;
		color: white;
		text-align: center;
		padding: 8px 38px;
	}
	li a:hover{
		background-color: steelblue;
	}

	.round{
		border-radius: 15px;
	}