/** ----------  MAIN MENU DESIGN  ---------- **/


/* NOTES
"menuwrap" holds the menu and position must be set to relative to position the dropdown.
"menuwrap_outer" gets set to fixed in js and then is romoved from the flow.
"memuwrap_fixed" holds the verticle positioning after "menuwrap_outer" is set to fixed.
 */

/* MENU SCROLL CLASS */

.menufixed {
 position: fixed;
 top:0;
}
.menustatic {
 position: static;
}
/* WINBAR OVERRIDES */
#topbar {
border-bottom: none;
}
#topbarwrap {
background:  none ;
}
#winbarwrap {
margin-bottom: 0px;
}
/* MAIN MENU */

#menuwrap_outer {
box-sizing: border-box;
height: 100px;
}
#menuwrap_outer {
/*background:  transparent  url("../../../images/menus/interface/barShadow.png") repeat-x  scroll  left 9px ; */
}

#menuwrap {
width:100%;
box-sizing: border-box;
height: 60px;
/*border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: red;*/
}

/*BAR - HEIGHT*/

.horz-dd-menu li .dropcontent,.horz-dd-menu li .fullwidth {
box-sizing: border-box;
top:58px;
}
/* POSITION MENU BAR */
#menuwrap {margin-top: 0px;}/* TOP POSITION */
/*.horz-dd-menu_container {width:980px; margin: 0 auto; }
.horz-dd-menu_container {width:100%; margin: 0 auto;}*/

/* BUTTON SHAPE */
.horz-dd-menu li a, .horz-dd-menu li:hover a, .horz-dd-menu li:hover {
}

/* SET BUTTONS */
.horz-dd-menu li a {
margin-top: 5px;
padding: 4px 8px 5px 8px;  /* BUTTON PADDING  */
border-radius: 5px;
}

/* drop down icon */
.horz-dd-menu li.dd a:after {
/* "\00a0" = non breaking space  */
content: "\f0d7";
font-family: icomoon;
font-style: normal;
font-weight: normal;
text-decoration: none;
/* Better Font Rendering */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/*--adjust as necessary--*/
color: #F2F9FF;
font-size: 15px;
padding-left: 3px;
}

.horz-dd-menu li .dropcontent a:after {
content: "";
}

/*HOME BUTTON */
.horz-dd-menu li#mainmenuhome a {
background-color: transparent;
padding: 0px 0px;
margin-top: 3px; margin-bottom:0;
width: 36px ; height: 30px ;
border-radius: 0px;
}
/*HOME BUTTON:LIVE */
/*.horz-dd-menu li#mainmenuhome a {
background-image: url("../../../images/menus/interface/home.png");
background-position: 0 0;
}*/
/*HOME BUTTON:HOVER */
/*.horz-dd-menu li#mainmenuhome:hover a {
background-image: url("../../../images/menus/interface/home.png");
background-position: 0 -50px;
}*/
/*HOME BUTTON:CURRENT */
/*.horz-dd-menu li#mainmenuhome a.current {
background-image: url("../../../images/menus/interface/home.png");
background-position: 0 -100px;
}*/

/*LEVEL 1 - BUTTONS: MENU ITEM OPEN */
.horz-dd-menu li.active a {
padding-bottom: 26px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
/*LEVEL 1 COLOUR - BUTTONS: BORDER */
.horz-dd-menu li a, .horz-dd-menu li:hover a {border: none;}

/* DROP DOWN CONTAINER */

#showlinks-style-menu.horz-dd-menu li .dropcontent {
padding-right: 20px;
padding-left: 30px;
padding-bottom: 10px;
border-top: none;
border-radius: 0px 0px 10px 10px;
}




