<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ################# Top Level Icon Menu CSS ############## */

ul.iconmenu{
font-size: 12px;
list-style: none;
position: fixed;
left: 0;
top: 340px; /* offset from top of page to display icon menu */
margin: 0;
    padding: 0px 10px 0px 5px;
    width: 2em;
    height: 75px;
background: #1379bf;
box-shadow: 3px 1px 3px rgba(0,0,0,0.4);
-webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
z-index: 11111;
}
ul.iconmenu li a{
display: block;
text-decoration: none;
color: #fff;
    padding: 10px 0px;
    font-size: 12px;
transform: rotate(90deg);
white-space: nowrap;
}

/*ul.iconmenu li a:hover, ul.iconmenu li a.selected{ /* style for selected icon */
  background: #ff5a00;
	background-image: url("images/img/tutorial-icon.png");
	background-repeat: no-repeat;
	background-position: center;
}*/
ul.iconmenu:hover{
	font-size: 3em;
}
</pre></body></html>