.no_link {
    cursor: default !important;
}

ul.FM2_MainMenu, ul.FM_CSS_reset, ul.FM2_MainMenu div, ul.FM2_MainMenu span, ul.FM2_MainMenu ul, ul.FM2_MainMenu li, ul.FM2_MainMenu table, ul.FM2_MainMenu tr, ul.FM2_MainMenu th, ul.FM2_MainMenu td, ul.FM2_MainMenu a {
    background: none repeat top left scroll;
    border: 0 none #000000;
    color: Black;
    font-size: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.relativeDiv {
    position: relative;
}

/*************************************************************************************************/
/* I.A. Global resets */
/*************************************************************************************************/
/* I.A.1. Remove list style */
ul.FM2_MainMenu, ul.FM2_MainMenu ul {
    list-style: none outside none;
}

/* I.A.2. Remove anchor outlines when clicked */
ul.FM2_MainMenu a:active, ul.FM2_MainMenu a:focus {
    outline-style: none;
}

/* I.A.3. Force block display on lists and list items */
ul.FM2_MainMenu, ul.FM2_MainMenu ul {
    display: block;
}

ul.FM2_MainMenu li {
    display: block;
}

/* I.A.4. Hide span overflow */
ul.FM2_MainMenu span, ul.FM2_MainMenu font {
    /*overflow: hidden;*/
}

/* I.A.5. Display and positioning for containers */
ul.FM2_MainMenu {
    display: inline-block;
    position: relative;
    width: auto;
}

div.FM2_MainMenu_container {
    background-image: none;
    text-align: right;
    z-index: 9999;
}

* + html ul.FM2_MainMenu {
    display: inline;
}

ul.FM2_MainMenu ul {
    border-radius: 1px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 9999;
}

/* I.A.6. Reset margin to 0 for all menu containers */
ul.FM2_MainMenu, ul.FM2_MainMenu ul {
    margin: 0 0 0 0;
}

/* I.A.7. Reset padding to 0 for all menu containers */
ul.FM2_MainMenu, ul.FM2_MainMenu ul {
    padding: 0 0 0 0;
}

/* I.A.8. Display block for all anchors in list items */
ul.FM2_MainMenu a {
    display: block;
}

/* I.A.9. Display block for all spans in list items, also height 100% */
ul.FM2_MainMenu span, ul.FM2_MainMenu font {
    display: block;
}

/*************************************************************************************************/
/* I.B. Sub-menu visibility */
/*************************************************************************************************/
/* I.B.1. Hide by default all menus of level greater than one */
ul.FM2_MainMenu ul {
    /*display: none;*/
}

/* I.B.2. Establish containing blocks (position: relative) from menu items on hover to be able to position sub-menus */
ul.FM2_MainMenu li {
    position: relative;
}

ul.FM2_MainMenu ul li {
    position: relative;
}

ul.FM2_MainMenu ul ul li {
    position: relative;
}

/* I.B.3. Show submenu when hovering over menu item */
ul.FM2_MainMenu li > ul {
    display: none;
}

/*       * *      * *      * *    ||           ||
	    * * *    * * *    * * *   ||  LEVEL 1  ||
	     * *      * *      * *    ||           ||
*/
/*************************************************************************************************/
/* II.A. Positioning */
/*************************************************************************************************/
/* II.A.1 Left float for horizontal menus (more rows will be generated if available width is overpassed) */
ul.FM2_MainMenu li {
    float: left;
}

/* II.A.2. Offsets for submenus: left, top */
ul.FM2_MainMenu {
    left: auto;
    top: auto;
}

/*************************************************************************************************/
/* II.B. Container design */
/*************************************************************************************************/
/* II.B.1. Background (color, image, image repeat, image position) */
/* II.B.2. Border */
/* II.B.3. Explicit container width/height (optional) */
div.FM2_MainMenu_container {
    background: none repeat left top scroll;
    border: 0 none #000000;
    float: left;
    height: 18px;
    width: 100%;
}

/* II.B.4. Container padding */
div.FM2_MainMenu_container {
    padding: 0;
}

/*************************************************************************************************/
/* II.C. Menu item design (default state) */
/*************************************************************************************************/
/* II.C.1. Padding */
/* II.C.2. Border */
/* II.C.3. Background (color, image, image repeat, image position) */
/* II.C.4. Text color */
/* II.C.5. Font size */
/* II.C.6. Font properties (family, weight, style, decoration) */
/* II.C.7. Text align */
/* II.C.8. Cursor */
/* II.C.9. Explicit item width/height, optional */
ul.FM2_MainMenu li a {
    border: 0;
    line-height: 1.0em;
    padding: 42px 0 40px 25px;
    width: auto;
}

ul.FM2_MainMenu li a.sticky {
    padding: 20px 0 24px 25px;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu li a {
        padding: 32px 0 32px 25px;
    }
}

ul.FM2_MainMenu li a, ul.FM2_MainMenu li a span, ul.FM2_MainMenu li a font {
    color: #ffffff;
    cursor: pointer;
    font: normal normal 400 18px/100% 'Exo', sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu li a, ul.FM2_MainMenu li a span, ul.FM2_MainMenu li a font {
        font: normal normal 300 16px/100% 'Exo', sans-serif;
    }
}

/* II.C.10. Menu item spacing */
ul.FM2_MainMenu li {
    padding: 0;
}

/*************************************************************************************************/
/* II.D. Menu item design (hover state) */
/*************************************************************************************************/
/* II.D.*. Any of II.C. may be changed but colors should be the most common */
ul.FM2_MainMenu li.hovered > a {
    border: 0;
}

ul.FM2_MainMenu li:hover > a, ul.FM2_MainMenu li.hover > a {
    border: 0;
    padding: 42px 0 40px 25px;
}

ul.FM2_MainMenu li:hover > a.sticky, ul.FM2_MainMenu li.hover > a.sticky {
    padding: 20px 0 24px 25px;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu li:hover > a, ul.FM2_MainMenu li.hover > a {
        padding: 32px 0 32px 25px;
    }
}

ul.FM2_MainMenu li.hovered > a, ul.FM2_MainMenu li.hovered > a span, ul.FM2_MainMenu li.hovered > a font {
    color: #ffffff;
    cursor: pointer;
    font: normal normal bold 13px/100% Tahoma, Geneva, sans-serif;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

ul.FM2_MainMenu li:hover > a, ul.FM2_MainMenu li.hover > a, ul.FM2_MainMenu li:hover > a span, ul.FM2_MainMenu li.hover > a span, ul.FM2_MainMenu li:hover > a font, ul.FM2_MainMenu li.hover > a font {
    color: #d8cb6f;
    cursor: pointer;
    font: normal normal 400 18px/100% 'Exo', sans-serif;
    text-align: left;
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu li:hover > a, ul.FM2_MainMenu li.hover > a, ul.FM2_MainMenu li:hover > a span, ul.FM2_MainMenu li.hover > a span, ul.FM2_MainMenu li:hover > a font, ul.FM2_MainMenu li.hover > a font {
        font: normal normal 300 16px/100% 'Exo', sans-serif;
    }
}

/*************************************************************************************************/
/* II.E. Has children icon (default state) */
/*************************************************************************************************/
ul.FM2_MainMenu li a span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu li a span, ul.FM2_MainMenu li a font {
    padding: 0;
}

/*************************************************************************************************/
/* II.F. Has children icon (hover state) */
/*************************************************************************************************/
ul.FM2_MainMenu li.hovered > a span {
    background: none no-repeat right center;
    padding: 0;
}

ul.FM2_MainMenu li:hover > a span, ul.FM2_MainMenu li.hover > a span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu li:hover > a span, ul.FM2_MainMenu li.hover > a span, ul.FM2_MainMenu li:hover > a font, ul.FM2_MainMenu li.hover > a font {
    padding: 0;
}

ul.FM2_MainMenu li a.sel span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu li a.sel span, ul.FM2_MainMenu li a.sel font {
    padding: 0;
}

/*************************************************************************************************/
/* III.B. Item customization */
/*************************************************************************************************/
/* III.B.1. Custom default item style */
ul.FM2_MainMenu li a.sel {
    border: 0;
    padding: 42px 0 40px 25px;
}

ul.FM2_MainMenu li a.sel.sticky {
    padding: 20px 0 24px 25px;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu li a.sel {
        padding: 32px 0 32px 25px;
    }
}

ul.FM2_MainMenu li a.sel, ul.FM2_MainMenu li a.sel span, ul.FM2_MainMenu li a.sel font {
    color: #d8cb6f;
    cursor: pointer;
    font: normal normal 400 18px/100% 'Exo', sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu li a.sel, ul.FM2_MainMenu li a.sel span, ul.FM2_MainMenu li a.sel font {
        font: normal normal 300 16px/100% 'Exo', sans-serif;
    }
}

/*       * *      * *      * *    ||           ||
	    * * *    * * *    * * *   ||  LEVEL 2  ||
	     * *      * *      * *    ||           ||
*/
/*************************************************************************************************/
/* II.A. Positioning */
/*************************************************************************************************/
/* II.A.1 Left float for horizontal menus (more rows will be generated if available width is overpassed) */
ul.FM2_MainMenu ul li {
    float: none;
}

/* II.A.2. Offsets for submenus: left, top */
ul.FM2_MainMenu li > .ui-effects-wrapper {
    left: 0;
    top: 40px;
}

ul.FM2_MainMenu li ul {
    left: 0;
    top: 69px;
}

/*************************************************************************************************/
/* II.B. Container design */
/*************************************************************************************************/
/* II.B.1. Background (color, image, image repeat, image position) */
/* II.B.2. Border */
/* II.B.3. Explicit container width/height (optional) */
ul.FM2_MainMenu ul {
    background-color: #000000;
    border: 0 solid #000000;
    height: auto;
    width: 250px;
}

/* II.B.4. Container padding */
ul.FM2_MainMenu ul {
    padding: 0;
}

/*************************************************************************************************/
/* II.C. Menu item design (default state) */
/*************************************************************************************************/
/* II.C.1. Padding */
/* II.C.2. Border */
/* II.C.3. Background (color, image, image repeat, image position) */
/* II.C.4. Text color */
/* II.C.5. Font size */
/* II.C.6. Font properties (family, weight, style, decoration) */
/* II.C.7. Text align */
/* II.C.8. Cursor */
/* II.C.9. Explicit item width/height, optional */
ul.FM2_MainMenu ul li a {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    border-bottom: 1px solid #303030;
    box-shadow: none;
    -webkit-box-shadow: none;
    height: auto;
    padding: 10px 10px 10px 10px;
    text-shadow: 1px 1px 0 #000000;
    width: 230px;
}

ul.FM2_MainMenu ul li a, ul.FM2_MainMenu ul li a span, ul.FM2_MainMenu ul li a font {
    color: #ffffff;
    cursor: pointer;
    font: normal normal 400 16px/100% 'Oswald', sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu ul li a, ul.FM2_MainMenu ul li a span, ul.FM2_MainMenu ul li a font {
        font: normal normal 400 15px/100% 'Oswald', sans-serif;
    }
}

/* II.C.10. Menu item spacing */
ul.FM2_MainMenu ul li {
    padding: 0;
}

/*************************************************************************************************/
/* II.D. Menu item design (hover state) */
/*************************************************************************************************/
/* II.D.*. Any of II.C. may be changed but colors should be the most common */
ul.FM2_MainMenu ul li.hovered > a {
    border: 0 none #000000;
}

ul.FM2_MainMenu ul li:hover > a, ul.FM2_MainMenu ul li.hover > a {
    background: #000000 none;
    border: 0 none #000000;
    border-bottom: 1px solid #303030;
    height: auto;
    margin-left: 0;
    padding: 10px 10px 10px 10px;
    text-shadow: 1px 1px 0 #000000;
    width: 230px;
}

ul.FM2_MainMenu ul li.hovered > a, ul.FM2_MainMenu ul li.hovered > a span, ul.FM2_MainMenu ul li.hovered > a font {
    color: #000000;
    cursor: pointer;
    font: normal normal normal 12px/100% Arial, Helvetica, sans-serif;
    text-align: left;
    text-decoration: none;
}

ul.FM2_MainMenu ul li:hover > a, ul.FM2_MainMenu ul li.hover > a, ul.FM2_MainMenu ul li:hover > a span, ul.FM2_MainMenu ul li.hover > a span, ul.FM2_MainMenu ul li:hover > a font, ul.FM2_MainMenu ul li.hover > a font {
    color: #6db756;
    cursor: pointer;
    font: normal normal 400 16px/100% 'Oswald', sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu ul li:hover > a, ul.FM2_MainMenu ul li.hover > a, ul.FM2_MainMenu ul li:hover > a span, ul.FM2_MainMenu ul li.hover > a span, ul.FM2_MainMenu ul li:hover > a font, ul.FM2_MainMenu ul li.hover > a font {
        font: normal normal 400 15px/100% 'Oswald', sans-serif;
    }
}

/*************************************************************************************************/
/* II.E. Has children icon (default state) */
/*************************************************************************************************/
ul.FM2_MainMenu ul li a span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu ul li a span, ul.FM2_MainMenu ul li a font {
    padding: 0;
}

/*************************************************************************************************/
/* II.F. Has children icon (hover state) */
/*************************************************************************************************/
ul.FM2_MainMenu ul li.hovered > a span {
    background: none no-repeat right center;
    padding: 0;
}

ul.FM2_MainMenu ul li:hover > a span, ul.FM2_MainMenu ul li.hover > a span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu ul li:hover > a span, ul.FM2_MainMenu ul li.hover > a span, ul.FM2_MainMenu ul li:hover > a font, ul.FM2_MainMenu ul li.hover > a font {
    padding: 0;
}

ul.FM2_MainMenu ul li a.sel span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu ul li a.sel span, ul.FM2_MainMenu ul li a.sel font {
    padding: 0;
}

/*************************************************************************************************/
/* III.B. Item customization */
/*************************************************************************************************/
/* III.B.1. Custom default item style */
ul.FM2_MainMenu ul li a.sel {
    background: #000000 none;
    border: 0 none #000000;
    border-bottom: 1px solid #303030;
    height: auto;
    padding: 10px 10px 10px 10px;
    text-shadow: 1px 1px 0 #000000;
    width: 230px;
}

ul.FM2_MainMenu ul li a.sel, ul.FM2_MainMenu ul li a.sel span, ul.FM2_MainMenu ul li a.sel font {
    color: #6db756;
    cursor: pointer;
    font: normal normal 400 16px/100% 'Oswald', sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    ul.FM2_MainMenu ul li a.sel, ul.FM2_MainMenu ul li a.sel span, ul.FM2_MainMenu ul li a.sel font {
        font: normal normal 400 15px/100% 'Oswald', sans-serif;
    }
}

/*       * *      * *      * *    ||           ||
	    * * *    * * *    * * *   ||  LEVEL 3  ||
	     * *      * *      * *    ||           ||
*/
/*************************************************************************************************/
/* II.A. Positioning */
/*************************************************************************************************/
/* II.A.1 Left float for horizontal menus (more rows will be generated if available width is overpassed) */
ul.FM2_MainMenu ul ul li {
    float: none;
}

/* II.A.2. Offsets for submenus: left, top */
ul.FM2_MainMenu ul .ui-effects-wrapper {
    left: 120px;
    top: 0;
}

ul.FM2_MainMenu ul ul {
    background-image: none;
    border-radius: 1px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    left: 120px;
    top: 0;
}

/*************************************************************************************************/
/* II.B. Container design */
/*************************************************************************************************/
/* II.B.1. Background (color, image, image repeat, image position) */
/* II.B.2. Border */
/* II.B.3. Explicit container width/height (optional) */
ul.FM2_MainMenu ul ul {
    background-color: #fafafa;
    border: 1px solid #000000;
    height: auto;
    width: 130px;
}

/* II.B.4. Container padding */
ul.FM2_MainMenu ul ul {
    padding: 0;
    top: 0;
    z-index: 9999;
}

/*************************************************************************************************/
/* II.C. Menu item design (default state) */
/*************************************************************************************************/
/* II.C.1. Padding */
/* II.C.2. Border */
/* II.C.3. Background (color, image, image repeat, image position) */
/* II.C.4. Text color */
/* II.C.5. Font size */
/* II.C.6. Font properties (family, weight, style, decoration) */
/* II.C.7. Text align */
/* II.C.8. Cursor */
/* II.C.9. Explicit item width/height, optional */
ul.FM2_MainMenu ul ul li a {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    border-bottom: 1px dotted #aaaaaa;
    height: auto;
    margin-left: 0;
    padding: 10px 10px 10px 10px;
    width: 110px;
}

ul.FM2_MainMenu ul ul li a, ul.FM2_MainMenu ul ul li a span, ul.FM2_MainMenu ul ul li a font {
    color: #333333;
    cursor: pointer;
    font: normal normal normal 12px/120% 'Roboto', sans-serif;
    text-align: left;
    text-decoration: none;
}

/* II.C.10. Menu item spacing */
ul.FM2_MainMenu ul ul li {
    padding: 0;
}

/*************************************************************************************************/
/* II.D. Menu item design (hover state) */
/*************************************************************************************************/
/* II.D.*. Any of II.C. may be changed but colors should be the most common */
ul.FM2_MainMenu ul ul li.hovered > a {
    background: #3399ff none no-repeat left center scroll;
    border: 0 none #000000;
}

ul.FM2_MainMenu ul ul li:hover > a, ul.FM2_MainMenu ul ul li.hover > a {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    border-bottom: 1px dotted #aaaaaa;
    margin-left: 0;
    padding: 10px 7px 10px 14px;
}

ul.FM2_MainMenu ul ul li.hovered > a, ul.FM2_MainMenu ul ul li.hovered > a span, ul.FM2_MainMenu ul ul li.hovered > a font {
    color: #000000;
    cursor: pointer;
    font: normal normal normal 12px/100% Arial, Helvetica, sans-serif;
    text-align: left;
    text-decoration: none;
}

ul.FM2_MainMenu ul ul li:hover > a, ul.FM2_MainMenu ul ul li.hover > a, ul.FM2_MainMenu ul ul li:hover > a span, ul.FM2_MainMenu ul ul li.hover > a span, ul.FM2_MainMenu ul ul li:hover > a font, ul.FM2_MainMenu ul ul li.hover > a font {
    color: #298a06;
    cursor: pointer;
    font: normal normal normal 12px/120% 'Roboto', sans-serif;
    text-align: left;
    text-decoration: none;
}

/*************************************************************************************************/
/* II.E. Has children icon (default state) */
/*************************************************************************************************/
ul.FM2_MainMenu ul ul li a span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu ul ul li a span, ul.FM2_MainMenu ul ul li a font {
    padding: 0;
}

/*************************************************************************************************/
/* II.F. Has children icon (hover state) */
/*************************************************************************************************/
ul.FM2_MainMenu ul ul li.hovered > a span {
    background: none no-repeat right center;
    padding: 0;
}

ul.FM2_MainMenu ul ul li:hover > a span, ul.FM2_MainMenu ul ul li.hover > a span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu ul ul li:hover > a span, ul.FM2_MainMenu ul ul li.hover > a span, ul.FM2_MainMenu ul ul li:hover > a font, ul.FM2_MainMenu ul ul li.hover > a font {
    padding: 0;
}

ul.FM2_MainMenu ul ul li a.sel span {
    background: none no-repeat right center;
}

ul.FM2_MainMenu ul ul li a.sel span, ul.FM2_MainMenu ul ul li a.sel font {
    padding: 0;
}

/*************************************************************************************************/
/* III.B. Item customization */
/*************************************************************************************************/
/* III.B.1. Custom default item style */
ul.FM2_MainMenu ul ul li a.sel {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    border-bottom: 1px dotted #aaaaaa;
    padding: 10px 10px 10px 10px;
}

ul.FM2_MainMenu ul ul li a.sel, ul.FM2_MainMenu ul ul li a.sel span, ul.FM2_MainMenu ul ul li a.sel font {
    color: #298a06;
    cursor: pointer;
    font: normal normal normal 12px/120% 'Roboto', sans-serif;
    text-align: left;
    text-decoration: none;
}

/*************************************************************************************************/
/* IV.A Mobile menu customization */
/*************************************************************************************************/
/*presetstart*/
@media screen and (max-width: 1079px) {
    .FM2_MainMenu_container {
        display: none;
    }

    a#FM2_MainMenu_mobile_button {
        display: block;
    }
}

@media screen and (min-width: 1080px) {
    .FM2_MainMenu_container {
        display: block;
    }

    a#FM2_MainMenu_mobile_button {
        display: none;
    }
}

.FM2_MainMenu_mobile-overlay {
    background: rgba(0, 0, 0, 0.70) none repeat top left scroll;
    display: inline;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    width: 100%;
    z-index: 10050;
}

.FM2_MainMenu_mobile-overlay-hide {
    background: rgba(0, 0, 0, 0) none repeat top left scroll;
    display: none;
}

/************************* mobile button ************************/
a#FM2_MainMenu_mobile_button {
    background-color: #414141;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
    min-width: 50px;
    overflow: hidden;
    padding: 20px 0 0 0;
    position: relative;
    text-align: right;
    text-decoration: none;
    text-overflow: ellipsis;
    width: auto;
}

a#FM2_MainMenu_mobile_button.sticky {
    padding: 12px 0 0 0;
}

@media screen and (max-width: 560px) {
    a#FM2_MainMenu_mobile_button {
        padding: 12px 0 0 0;
    }
}

a#FM2_MainMenu_mobile_button span {
    color: #FFFFFF;
}

a#FM2_MainMenu_mobile_button span.caption {
    text-transform: none;
}

a#FM2_MainMenu_mobile_button span.down-arrow {
    display: none;
}

a#FM2_MainMenu_mobile_button span.caption {
    color: #d8cb70;
    font-family: 'Exo', sans-serif;
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

a#FM2_MainMenu_mobile_button span.caption .fa {
    font-size: 35px;
}

a#FM2_MainMenu_mobile_button span.caption:hover {
    color: #f39b20;
}

/************************* mobile menu ************************/
div#FM2_MainMenu_jq_menu_back div.main-menu-header {
    background: url("close_icon.png") no-repeat center center scroll;
    border: 0 none #000000;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 14px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 13px;
    min-width: 14px;
    overflow: hidden;
    padding: 14px 14px 14px 14px;
    position: fixed;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    top: 5px;
    width: 14px;
}

div#FM2_MainMenu_jq_menu_back div.main-menu-header p span.caption:before {
    background: url("mini_menu.png") no-repeat -2px scroll;
    content: ' ';
    display: inline-block;
    height: 20px;
    margin-right: 9px;
    vertical-align: text-bottom;
    width: 18px;
}

div#FM2_MainMenu_jq_menu_back {
    background-color: rgba(0, 0, 0, 0) !important;
    display: none;
    font-size: 0.9em;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

div#FM2_MainMenu_jq_menu_back ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

div#FM2_MainMenu_jq_menu_back div.menu-header {
    background: #000 none repeat top left scroll;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    text-align: center;
    width: auto;
}

div#FM2_MainMenu_jq_menu_back a {
    background-color: #f39b20;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    overflow: hidden;
    padding: 1em 0 1em 0;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > a {
    background: none repeat left top scroll;
    /*margin: 5px 5px 5px 5px;*/
    display: inline-block;
    float: left;
    height: 50px;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    width: 50px;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > a:hover, div#FM2_MainMenu_jq_menu_back div.menu-header > a.hover {
    background-color: lime;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p {
    color: #FFF;
    margin: 0 0 0 0;
    text-indent: -40px; /*line-height: 50px;*/
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p:hover, div#FM2_MainMenu_jq_menu_back div.menu-header > p.hover {
    color: #CCF;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    background: none repeat left top scroll;
    display: block;
    text-decoration: none;
    width: auto;
}

div#FM2_MainMenu_jq_menu_back div.menu-container {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

div#FM2_MainMenu_jq_menu_back div.menu-container > .menu {
    float: left;
    position: fixed;
    top: 60px;
    width: 100%;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li {
    background: none repeat left top scroll;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li p {
    margin: 0 0 0 0;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li a {
    background: none repeat left top scroll;
    border: 0 none #000000;
    font-style: normal;
    font-weight: bold;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-decoration: none;
}

div#FM2_MainMenu_jq_menu_back div.menu-container .branch, div#FM2_MainMenu_jq_menu_back div.menu-container .leaf {
    margin: 0 5px 0 5px;
}

div#FM2_MainMenu_jq_menu_back div.menu-container .branch:before {
    content: "+ ";
}

div#FM2_MainMenu_jq_menu_back div.menu-container .leaf:before {
    content: "- ";
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li.ellipsis:last-child {
    border-bottom: 1px solid #2D2D2D;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    border-bottom: 1px solid #2D2D2D;
}

div#FM2_MainMenu_jq_menu_back ul {
    list-style-type: none;
    margin: 0 10px 10px 10px;
}

div#FM2_MainMenu_jq_menu_back div.menu-container div.main-menu ul li.clicked, div#FM2_MainMenu_jq_menu_back div.menu-container div.submenu ul li.clicked {
    background-color: #f39b20;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li.ellipsis a {
    border-bottom: 1px solid #2D2D2D;
    float: left;
    font-size: 15px;
    width: 100%;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li a {
    padding: 0;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li a, div#FM2_MainMenu_jq_menu_back div.menu-container ul li a span {
    color: white;
}

div#FM2_MainMenu_jq_menu_back div.menu-container .leaf:before, div#FM2_MainMenu_jq_menu_back div.menu-container .branch:before {
    width: 10px;
}

div#FM2_MainMenu_jq_menu_back div.menu-container .leaf:before {
    opacity: 0.5;
}

div#FM2_MainMenu_jq_menu_back div.menu-container .branch:before {

}

div#FM2_MainMenu_jq_menu_back div.menu-container .branch:before, div#FM2_MainMenu_jq_menu_back div.menu-container .leaf:before, a#FM2_MainMenu_mobile_button span.caption:before {
    background-position: -2px 1px;
    content: ' ';
    display: inline-block;
    height: 20px;
    margin-right: 9px;
    vertical-align: text-bottom;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li.ellipsis, div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    background-color: #414141;
}

div#FM2_MainMenu_jq_menu_back div.menu-header, div#FM2_MainMenu_jq_menu_back div.menu-header > a {
    background-color: #f39b20;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    color: #FFFFFF;
    text-align: center;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > a {
    background: url('mini_arrow_large.png') no-repeat 17px 15px scroll;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > a:hover, div#FM2_MainMenu_jq_menu_back div.menu-header > a.hover {
    background-color: transparent;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li {
    height: 43px;
    line-height: 0;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li.ellipsis a {
    margin-top: 14px;
}

div#FM2_MainMenu_jq_menu_back div.menu-container > .main-menu:before {
    background: #f39b20 none repeat top left scroll;
    content: ' ';
    display: block;
    height: 2px;
    margin: 0 10px 0 10px;
    width: auto;
}

/*presetend*/
/*************************************************************************************************/
/* IV.A Mobile menu skin customization */
/*************************************************************************************************/
div#FM2_MainMenu_jq_menu_back a span, div#FM2_MainMenu_jq_menu_back div.menu-container ul li a, div#FM2_MainMenu_jq_menu_back div.menu-container ul li a span, div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    color: #FFFFFF;
    font-family: 'Exo', sans-serif;
    font-size: 1.1em;
    font-weight: normal;
    padding: 0 0 10px 0;
    text-transform: uppercase;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    font-size: 1.8em;
    padding: 10px 0 0 0;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li.ellipsis:last-child, div#FM2_MainMenu_jq_menu_back div.menu-header p > a {
    border-bottom: 1px solid #2D2D2D;
}

div#FM2_MainMenu_jq_menu_back div.menu-header, div#FM2_MainMenu_jq_menu_back div.menu-header > a, div#FM2_MainMenu_jq_menu_back div.menu-container > .main-menu:before, div#FM2_MainMenu_jq_menu_back div.menu-container div.main-menu ul li.clicked, div#FM2_MainMenu_jq_menu_back div.menu-container div.submenu ul li.clicked {
    background-color: #f39b20;
    border-bottom: 1px solid #2D2D2D;
}

div#FM2_MainMenu_jq_menu_back div.menu-container ul li.ellipsis, div#FM2_MainMenu_jq_menu_back div.menu-header > p a, div#FM2_MainMenu_jq_menu_back div.main-menu-header, div#FM2_MainMenu_jq_menu_back {
    background-color: #414141;
}

div#FM2_MainMenu_jq_menu_back div.menu-header > p a {
    height: 40px;
}

a#FM2_MainMenu_mobile_button {
    background-color: transparent;
    border-color: #000;
}

a#FM2_MainMenu_mobile_button span {
    color: #FFFFFF;
}

a#FM2_MainMenu_mobile_button span.caption:before, div#FM2_MainMenu_jq_menu_back div.main-menu-header p span.caption:before {
    background-image: url("mini_menu.png");
}

div#FM2_MainMenu_jq_menu_back div.menu-container .branch:before {
    background: url("mini_arrow.png") no-repeat top left scroll;
}

ul.FM2_MainMenu ul li ul {
    left: 134px;
    top: -1px;
}

/*************************************************************************************************/
/* II.C. Menu item design (default state) */
/*************************************************************************************************/
/* II.C.1. Padding */
/* II.C.2. Border */
/* II.C.3. Background (color, image, image repeat, image position) */
/* II.C.4. Text color */
/* II.C.5. Font size */
/* II.C.6. Font properties (family, weight, style, decoration) */
/* II.C.7. Text align */
/* II.C.8. Cursor */
/* II.C.9. Explicit item width/height, optional */
ul.FM2_MainMenu li a.lastsm {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    border-bottom-color: #aaaaaa;
    box-shadow: none;
    -webkit-box-shadow: none;
    height: auto;
    padding: 10px 10px 10px 10px;
    width: 110px;
}

ul.FM2_MainMenu li a.lastsm, ul.FM2_MainMenu li a.lastsm span, ul.FM2_MainMenu li a.lastsm font {
    color: #333333;
    cursor: pointer;
    font: normal normal normal 12px/120% 'Roboto', sans-serif;
    text-align: left;
    text-decoration: none;
}

/* II.C.10. Menu item spacing */
ul.FM2_MainMenu li.lastsm {
    padding: 0;
}

ul.FM2_MainMenu li:hover > a.lastsm, ul.FM2_MainMenu li.hover > a.lastsm {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    height: auto;
    margin-left: 0;
    padding: 10px 7px 10px 14px;
    width: 110px;
}

ul.FM2_MainMenu li:hover > a.lastsm, ul.FM2_MainMenu li.hover > a.lastsm, ul.FM2_MainMenu li:hover > a.lastsm span, ul.FM2_MainMenu li.hover > a.lastsm span, ul.FM2_MainMenu li:hover > a.lastsm font, ul.FM2_MainMenu li.hover > a.lastsm font {
    color: #298a06;
    cursor: pointer;
    font: normal normal 400 12px/120% 'Roboto', sans-serif;
    text-align: left;
    text-decoration: none;
}

/*************************************************************************************************/
/* II.E. Has children icon (default state) */
/*************************************************************************************************/
ul.FM2_MainMenu li a.lastsm span {
    background: none no-repeat right center;
}

/*************************************************************************************************/
/* III.B. Item customization */
/*************************************************************************************************/
/* III.B.1. Custom default item style */
ul.FM2_MainMenu li a.sel_lastsm, ul.FM2_MainMenu li.hover > a.sel_lastsm {
    background: none no-repeat left center scroll;
    border: 0 none #000000;
    height: auto;
    padding: 10px 10px 10px 10px;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    width: 110px;
}

ul.FM2_MainMenu li a.sel_lastsm, ul.FM2_MainMenu li a.sel_lastsm span, ul.FM2_MainMenu li a.sel_lastsm font, ul.FM2_MainMenu li.hover > a.sel_lastsm, ul.FM2_MainMenu li.hover > a.sel_lastsm span, ul.FM2_MainMenu li.hover > a.sel_lastsm font {
    color: #298a06;
    cursor: pointer;
    font: normal normal 400 12px/120% 'Roboto', sans-serif;
    text-align: left;
    text-decoration: none;
}
