/* ################# Top Level Icon Menu CSS ############## */
ul.iconmenu{
font-size: 1em;
list-style: none;
position: fixed;
left: 0;
top: 150px; /* offset from top of page to display icon menu */
margin: 0px 0 0 0;
padding: 0;
width: 90px;
/*background: #f4f4f4;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
box-shadow: 3px 1px 3px rgba(0,0,0,0.4);*/
z-index: 99;
}

ul.iconmenu li{
text-align: center;
cursor: pointer;
background: #fff;
border: 1px solid #c0c0c0;
margin-top: 3px;
height: 40px;
}

ul.iconmenu li a{
display: block;
text-decoration: none;
color: black;
padding: 8px 4px;
border-bottom: 1px solid white;
}

ul.iconmenu li a:last-of-type{
border-bottom-width: 0;
padding-bottom: 7px;
margin-bottom: 3px;
}

ul.iconmenu li a:hover, ul.iconmenu li a.selected{ /* style for selected icon */

}

/* ################# Shared icon submenu DIV CSS ############## */


div.iconsubmenu{
  z-index: 99999;
/*width:300px !important; /*default width of each icon sub menu*/
width: auto !important;
position:absolute;
visibility:hidden;
min-width: 200px;
/*padding:16px 0 16px 0;*/
background: #fff;
margin-left: -2px;
margin-top: 0px;
display: block; 
border: 1px solid #DBDBDB;
border-radius: 10px;
}

div.iconsubmenu a{
 
text-decoration:none;
position: relative;
color: #333;
font-size: 16px;
font-weight: normal;
}

div.iconsubmenu a:hover {
opacity: .7;
}

div.iconsubmenu .arrow{ /* default look for arrow of sub menu */
content: '';
display: block;
position:absolute;
border: 0.4em solid transparent;
border-right-color: #2874B2;
top: 10px;
z-index:1000;
}

/* ################# Mixed Content specific CSS ############## */

div.mixedcontent{
 z-index: 9999999 !important;
/*padding: 10px;*/
 
}

div.mixedcontent h4 {
font-size: 18px;
margin-top: 5px;
margin-bottom: 10px;
}

div.mixedcontent a {
font-weight: bold !important;
text-decoration: underline !important;
}

div.mixedcontent a:hover {
text-decoration: none !important;
}



div.mixedcontent a[rel]{ /* links inside mixedcontent that contains a drop down */

}

div.mixedcontent .column{ /*each link column within a mixed content menu*/
float:left;
width:50%;
padding:5px; /*add padding inside p and .column elements within mixed content menu*/
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}


div.mixedcontent .column ul{
margin:0;
margin-left:5px;
padding:0;
list-style:none;
}

div.mixedcontent .column ul li{
margin-bottom:3px;
}


/* ################# Vertical List Menu Specific CSS ############## */

div.dropdownmenu{
width:200px;
border: 10px solid red;
}

div.dropdownmenu ul{ /*style any UL within vertical menu with class="ulmenu"*/
margin:0;
padding:0;
border:1px solid gray;
border-bottom-width:0;
list-style:none;
}

div.dropdownmenu ul a{
display:block;
border-bottom:1px solid gray;
padding:5px;
}

div.dropdownmenu ul a:hover, div.dropdownmenu ul a.selected{ /* style for selected menu item */
background:lightyellow;
}

div.dropdownmenu a[rel]:after{ /* style anchor links inside dropdownmenu that contain a drop down */
content: '>';
font-size: 16px;
height: 100%;
position: absolute;
top: 2px;
right: 5px;
}

/* ################# Tooltip Specific CSS ############## */

div.icontooltip{
background: black;
color: white;
width:auto;
padding: 5px;
border-radius: 5px;
padding: 5px 8px;
}

div.icontooltip .arrow{
border-right-color: black;
}

