.splitmenubutton, .downtoggler{ /* .downtoggler element is dynamically added by script */
color: #333;
font: bold;
text-decoration: none;
background: transparent; /* default color of menu button */
display: inline-block;
}

.splitmenubutton{ 
-webkit-border-radius: 2px 0px 0px 2px;
-moz-border-radius: 2px 0px 0px 2px;
border-radius: 2px 0px 0px 2px;
background-image:url(icone_engrenagem.png);
background-repeat:no-repeat;
background-position:2px 2px;
color:transparent;
padding:2px;
}

.splitmenubutton:hover{ 
cursor: default;
}

.downtoggler { 
-webkit-border-radius: 0px 2px 2px 0px;
-moz-border-radius: 0px 2px 2px 0px;
border-radius: 0px 2px 2px 0px;
}

.dedicatedtoggler{ /* CSS to apply to toggler when it's a seperate element (instead of being the main menu button itself) */
-webkit-border-radius: 0px 2px 2px 0px;
-moz-border-radius: 0px 2px 2px 0px;
border-radius: 0px 2px 2px 0px;
border-left: 0px solid #f5f5f5;

}

.splitmenubutton span.innerspan, .downtoggler span.innerspan{ /* span.innerspan element dynamically added by script inside menu button */
display: block;
padding: 2px 3px;
line-height: 1em;
color:#666;
position:relative;
top:-3px;
font-family: Arial, Helvetica, sans-serif !important;
text-shadow:0px 0px 0px #ffffff;
font-size:1.25em;
}

a.downtoggler.selected{ /* CSS to add to toggler element when it's selected */
background:transparent; /* default hover background color of menu */
}

.downarrow, rightarrow {
cursor: pointer;
}

span.innerspan.downarrow { /* Down arrow (hex value) */
width:10px !important;
text-align:left;
}

span.innerspan.downarrow::after{ /* Down arrow (hex value) */
content: '\25be';
}

.splitmenubutton span.innerspan.downarrow:after{ /* Down arrow with space before the arrow */
content: '\00a0\25be';
}


.rightarrow:after{ /* CSS for right arrow inside splitdropdown */
content: '\25b8'; /* Add HTML entity based right arrow */
position: absolute;
right: 5px;
font-size: 18px;
height: 100%;
}

/* ##### CSS for UL Drop Down Menus of script ###### */


ul.splitdropdown, ul.splitdropdown ul{ /*topmost and sub ULs, respectively*/
font: normal;
margin: 0;
padding: 0;
position: absolute;
display: none;
left: 200px;
top: 0;
list-style: none;
background: white; /* background color of drop down */
border: 1px solid lightgray;
border-bottom-width: 0;
box-shadow: 0 0 8px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 0 0 8px #818181;
-moz-box-shadow: 0 0 8px #818181;
}


ul.splitdropdown li{
position: relative;
}

ul.splitdropdown li a,
ul.splitdropdown li span {
display: block;
width: 160px; /*width of menu (not including side paddings)*/
color: black;
background: white;
text-decoration: none;
padding: 6px;
font-size:0.9em;
border-bottom:1px solid #ccc;
}


* html ul.splitdropdown li{ /*IE6 CSS hack*/
display: inline-block;
width: 170px; /*width of menu (include side paddings of LI A*/
}

ul.splitdropdown li a:hover, 
ul.splitdropdown li span:hover,
.splitdropdown li.selected a {
background: #eee;
}

ul.splitdropdown li.separator{
border-bottom: 1px solid #dedddd;
}