#menucontainer
{
	display: block;
	min-width: 60%;
	max-width: 90%;
	background-color: 'yellow';
	border: 2pt red solid;
	margin: 0px auto;
	padding: 10px 10px 0 10px;
}

.expandingmenu
{
	text-align: justify;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: -15px;
}

.expandingmenu > a
{
	display: inline-block;
	background-color: #1C90F3;
	color: white;
	border: 2pt #369 solid;
	padding: 5px;
	width: 120px;
	height: 80px;
	text-align: center;
	vertical-align: middle;
	line-height: 66px;
	text-decoration: none;
	margin: 5px auto;
	cursor: pointer;
	font-weight:600;
	font-size: 1.1rem;
	/*   	opacity: 0.7; */
}

a.activeexpanded
{
	background-color: lightsalmon;
	border: 4pt #800 solid;
	cursor: default;
}

.disablemenus { cursor: default !important; }

.expandingmenu:after
{
	content: ' ';
	display: inline-block;
	width: 100%;
	height: 0;
}

.expandingmenulink { transition: all .25s ease-out; }


