﻿* {
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
}

/*----------Misc-------------*/
.scratch {
    position:absolute;
    top:-10000px;
    left:0px;
}

.hidden {
    display:none;
}


.emph {
    font-weight:bold;
}

/*----------Slides------------*/

.splitctnt {
    position:relative;
    width:100%;
    height:100%;
}

.splitctnt_text {
    position:absolute;
    display:block;
    width:34%;
    height:100%;
    top:0px;
    left:0px;
    overflow:auto;
}

.splitctnt_text.alt {
    left: auto;
    right: 0;
}

.splitctnt_img {
    position:absolute;
    height:100%;
    width:66%;
    top:0px;
    right:0px;
}

.splitctnt_img.alt {
    right: auto;
    left: 0;
}

.fs_splitscreen_help_text {
    position:absolute;
    top:45%;
    left:3%;
    padding:40px 0 0 0;
    max-width:30%;

    background-image:url(../images/bold_fs/interface/arrow_help_nw_2x.png);
    background-position:center top;
}

.interface-light .splitctnt {
    background: #fff;
}
.interface-light .splitctnt_text {
    background: #dcdce1;
    border-right:solid 1px #bebecd;
}

.interface-dark .splitctnt {
    background: #051423;
}
.interface-dark .splitctnt_text {
    background: #051423;
    border-right:solid 1px #373758;
}

@media (orientation:portrait) {
    .splitctnt_img {
        width:100%;
        height:60%;
        top:0px;
        left:0px;
    }

    .splitctnt_text {
        width:100%;
        height:40%;
        top:60%;
        left:0%;
        border-left:none;
    }

    .interface-light .splitctnt_text {
        border-top:solid 1px #bebecd;
    }

    .interface-dark .splitctnt_text {
        border-top:solid 1px #373758;
    }

    .splitctnt_mid .splitctnt_img {
        height:50%;
    }

    .splitctnt_mid .splitctnt_text {
        height:50%;
        top:50%;
    }

    .splitctnt_smalltext .splitctnt_img {
        height:75%;
    }

    .splitctnt_smalltext .splitctnt_text {
        height:25%;
        top:75%;
    }
    
    .fs_splitscreen_help_text {
        top:auto;
        left:auto;
        bottom:5%;
        right:5%;
        padding:0 0 40px 0;
        max-width:50%;

        background-image:url(../images/bold_fs/interface/arrow_help_sw_2x.png);
        background-position:left bottom;
    }
}


/*---------Text----------*/
.txtctnt, .instructions {
    padding:3% 1.6% 3% 1.6%;
    width:100%;
    cursor:pointer;
}

.content_title {
    width:100%;
    padding:0;
    margin:0 0 5px 0;
    
    font-size:17pt;
    font-weight:bold;
}

.content_text {
    width:100%;
}

/*   .interface-light .instructions .content_title, .interface-light .instructions .content_text {
        color:#fff;
    }*/
.interface-light .txtctnt, .interface-light .instructions {
    border-top:solid 1px #fff;
    border-bottom:solid 1px #bebecd;
    background-color: #f0f1f5;
}

.interface-light .txtctnt.active, .interface-light .txtctnt.static {
    background-color:#fff;
}

/*
   .interface-dark .instructions .content_title, .interface-dark .instructions .content_text {
        color:#fff;
    }*/

.interface-dark .txtctnt, .interface-dark .instructions {
    border-top:solid 1px #051423;
    border-bottom:solid 1px #373758;
    background-color: #051423;
}

.interface-dark .txtctnt.active, .interface-dark .txtctnt.static {
    background-color: #11202e;
}

.content_title {
    color:#2f93f7;
}

@media (orientation:landscape) and (max-height:800px), (orientation:portrait) and (max-height:1000px) {
    .content_title {
        font-size:15pt;
    }
}

@media (orientation:landscape) and (max-height:600px), (orientation:portrait) and (max-height:800px) {
    .content_title {
        font-size:13pt;
    }

    .content_text {
        font-size:10pt;
    }
}

@media (orientation:landscape) and (max-height:400px), (orientation:portrait) and (max-height:600px) {
    .content_title {
        font-size:12pt;
        margin:0 0 2px 0;
    }
}

/*-------Primary Controls--------*/
.selectwheel_horiz {
    height:30px;
}

.keypad-ninekey {
    position:relative;
    height:100%;
    max-width:400px;
    color:#000;
    font-weight:bold;
    font-size:13pt;
    overflow:hidden;
}

.keypad-text {
    height:30px;
    width:100%;
    padding:5px 5px 0 0;
    font-size:16pt;
    text-align:right;
    color: #000;
    font-weight: bold;

    border:1px solid #969696;
    border-bottom:none;

    background-image: -ms-linear-gradient(top, #d9d9d9 0%, #fff 65%);
    background-image: -webkit-linear-gradient(top, #d9d9d9 0%, #fff 65%);
    background-image: -moz-linear-gradient(top, #d9d9d9 0%, #fff 65%);
    background-image: linear-gradient(top, #d9d9d9 0%, #fff 65%);
}

.keypad-keys {
    position:absolute;
    top: 30px;
    bottom:0px;
    width: 100%;
}

.keypad-standard {
    display:table;
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
}

.keypad-addl {
    display:none;
}

.keypad-row {
    display:table-row;
    width: 100%;
    height:25%;
}

.keypad-key, .keypad-extra-key {
    color:  #000;
    font-weight: bold;
    border-top:1px solid #969696;
    border-right:1px solid #969696;

    background-image: -webkit-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image: -moz-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image: -ms-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image: linear-gradient(top, #fff 0%, #f0f1f5 100%);
}

.keypad-key {
    display:table-cell;
    width: 33.33%;
    vertical-align: middle;
    text-align:center;
}

    .keypad-key:first-child {
        border-left:1px solid #969696;
    }

.keypad-extra-row {
    display:table;
    width: 100%;
    height: 25%;
}

.keypad-extra-key {
    display:table-cell;
    vertical-align: middle;
    text-align:center;
    width:100%;
}

.keypad-key.highlight, .keypad-extra-key.highlight {
    background-image: -webkit-linear-gradient(top, #ff6419 0%, #e74b00 100%);
    background-image: -moz-linear-gradient(top, #ff6419 0%, #e74b00 100%);
    background-image: -ms-linear-gradient(top, #ff6419 0%, #e74b00 100%);
    background-image: linear-gradient(top, #ff6419 0%, #e74b00 100%);
}

.keypad-key.touch, .keypad-extra-key.touch {

    background-image: -ms-linear-gradient(top, #dcdce1 0%, #cdcdd2 100%);
    background-image: -webkit-linear-gradient(top, #dcdce1 0%, #cdcdd2 100%);
    background-image: -moz-linear-gradient(top, #dcdce1 0%, #cdcdd2 100%);
    background-image: linear-gradient(top, #dcdce1 0%, #cdcdd2 100%);
}



.keypad-extra .keypad-standard {
    width: 75%;
}
.keypad-extra .keypad-addl {
    display:block;
    position:absolute;
    top: 0;
    left:75%;
    width: 25%;
    height: 100%;
}

.keypad-extra2 .keypad-standard {
    width: 60%;
}

.keypad-extra2 .keypad-addl {
    display:block;
    position:absolute;
    top: 0;
    left:60%;
    width: 40%;
    height: 100%;
}

.keypad-extra2 .keypad-extra-key {
    width: 50%;
}

/*---------Score Controls------------*/
    .canvastext span {
        display:none;
    }

    .canvastext canvas {
        float: right;
    }


/*--------Utilities------------*/

.drawstack {
    position:absolute;
    top:-10000px;
    left:-10000px;
}

/*--------------------- BUTTONS -------------------------------------------------------*/
.button_base, .button_base:visited
{
    display: block;
    padding:15px 25px 15px 25px;
    
    color: #fff;
    font-size: 12pt;
    font-weight:bold;
    text-align: center;
    text-decoration:none;
    
    background-color:#2f93f7;
    background-image:-webkit-linear-gradient(top, #61c5ff 0%, #2f93f7 100%);
    background-image:-moz-linear-gradient(top, #61c5ff 0%, #2f93f7 100%);
    background-image:-o-linear-gradient(top, #61c5ff 0%, #2f93f7 100%);
    background-image:-ms-linear-gradient(top, #61c5ff 0%, #2f93f7 100%);
    background-image:linear-gradient(top, #61c5ff 0%, #2f93f7 100%);
    cursor:pointer;
}

    .button_base * {
        cursor: pointer;
    }

.button_base:hover
{
}

/*-----------Home Menu---------*/
.fs_homemenu {
    position:relative;

    color:#fff;
}

.fs_homemenu_background {
    height:100%;
    width:100%;
}

.fs_homemenu_menuitems {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:70%;
    padding:0;

    z-index:1;
}

.fs_homemenu_title {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    font-size: 22pt;
}

.fs_homemenu_menuitemscontainer {
    position:absolute;
    top:60px;
    left:0px;
    bottom:0;
    width:100%;

    overflow:auto;
}

.fs_homemenuitem {
    position:relative;
    display:inline-block;
    width:15%;
    margin:2% 0 5% 4%;

    vertical-align:top;
    text-align:center;
}


@media (orientation:landscape) and (max-width:1000px) {
    .fs_homemenuitem {
        width:20%;
        margin:3% 0 5% 4%;
    }
}

@media (orientation:landscape) and (max-width:650px) {
    .fs_homemenuitem {
        width:27%;
        margin:2% 0 5% 5%;
    }
}

@media (orientation:landscape) and (max-width:475px) {
    .fs_homemenuitem {
        width:40%;
        margin:2% 0 5% 7%;
    }
}


@media (orientation:portrait) and (max-width:600px) {
    .fs_homemenuitem {
        width:20%;
        margin:3% 0 5% 4%;
    }
}

@media (orientation:portrait) and (max-width:475px) {
    .fs_homemenuitem {
        width:27%;
        margin:3% 0 5% 5%;
    }
}

@media (orientation:portrait) and (max-width:350px) {
    .fs_homemenuitem {
        width:40%;
        margin:3% 0 5% 7%;
    }
}



    .fs_homemenuitem > h1 {
        margin:0;
        padding:0;
        font-size:11pt;
        font-weight:bold;
        text-align:center;
    }

.fs_homemenuitem_icon {
    width:100%;
    padding-bottom:100%;
    
    background-repeat:no-repeat;
    background-size:100% auto;
}

.fs_homemenuitem_condition {
    position:absolute;
    top:-7.5%;
    right:-7.5%;
    width:20%;
    padding-top:20%;
    
    background-size:100% auto;
    background-repeat:no-repeat;

    overflow:visible;
    
    z-index:1;
}

.passed .fs_homemenuitem_condition {
    display:block;
    background-image:url(../images/bold_fs/interface/menu_complete.png);

}

.fs_homemenu_badges {
    position:absolute;
    top:0;
    right:0;
    width:30%;
    height:100%;
    margin:0;
    padding:10px 0 0 0;

    border-left:solid 1px #232328;
    background-color:rgba(50,50,55,.6);
    list-style-type:none;
    
    z-index:1;
    overflow:auto;
}

    .fs_homemenu_badges > h1 {
        font-size:22pt;
        text-align:center;
        margin:0 0 10px 0;
        padding:0;
    }

.fs_homemenu_badgescontainer {
    width:80%;
    list-style-type:none;
    margin:0 auto;
    padding:0;
}

.fs_homemenu_badges .badgeitem {
        width:100%;
        margin: 0 0 25px 0;
}

    .fs_homemenu_badges .badge {
        position:relative;
        width:100%;
        margin:0 0 10px 0;
    }

        .fs_homemenu_badges .badgeitem h1 {
            padding:0;
            margin:0;
            font-size:14pt;
            font-weight:normal;
            text-align:center;
        }
    
    .fs_homemenu_badges .badge h2
    {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        padding-left:0;
        padding-right:0;
        padding-bottom:0;
        margin:0;
    
        color:#fff;
        font-size:20pt;
        font-weight:bold;
        text-align:center;
    }


.fs_homemenu_help_mnuitm {
    position:absolute;
    top:35%;
    left:20%;
    max-width:35%;
    padding:40px 0 0 0;

    background-image:url(../images/bold_fs/interface/arrow_help_nw_2x.png);
    background-position:center top;
}

.fs_homemenu_help_badges {
    position:absolute;
    top:45%;
    right:5%;
    max-width:35%;
    padding:38px 0 0 0;

    background-image:url(../images/bold_fs/interface/arrow_help_ne_2x.png);
    background-position:center top;
}

@media (orientation:portrait) {
    .fs_homemenu_menuitems {
        width:100%;
        height:75%;
    }

    .fs_homemenu_badges {
        width:100%;
        top:75%;
        bottom:0;
        padding:0 3% 0 3%;
    }

    .fs_homemenu_badgescontainer {
        width: 100%;
        margin: 0 0 20px 0;
        white-space:nowrap;
        overflow-x:auto;
        overflow-y:hidden;
    }

    .fs_homemenu_badges .badgeitem {
        width: 33%;
        margin: 0 20px 0 0;
        display:inline-block;
    }

    .fs_homemenu_help_mnuitm {
        position:absolute;
        top:40%;
        left:50%;
        max-width:35%;
        padding:40px 0 0 0;

        background-image:url(../images/bold_fs/interface/arrow_help_nw_2x.png);
        background-position:center top;

        text-align:center;
    }

    .fs_homemenu_help_badges {
        position:absolute;
        top:auto;
        bottom:10%;
        left:5%;
        max-width:35%;
        padding:0 0 38px 0;

        background-image:url(../images/bold_fs/interface/arrow_help_se_2x.png);
        background-position:center bottom;
    }
}

@media (orientation:landscape) and (max-width:800px) {
    .fs_homemenu_title {
        height: 30px;
        line-height: 30px;
        font-size: 17pt;
    }

    .fs_homemenu_badges > h1 {
        font-size:17pt;
        margin:0 0 10px 0;
    }
}

@media (orientation:portrait) and (max-width:600px) {
    .fs_homemenu_title {
        height: 30px;
        line-height: 30px;
        font-size: 17pt;
    }

    .fs_homemenu_badges > h1 {
        font-size:17pt;
        margin:0 0 7px 0;
    }

    .fs_homemenu_badges .badgeitem h1 {
        font-size:11pt;
    }

    .fs_homemenu_badges .badgeitem {
        margin-bottom:0;
    }

    .fs_homemenu_badges .badge {
        margin-bottom:5px;
    }
}

@media (orientation:landscape) and (max-width:1300px) {
    .fs_homemenu_badges .badge h2 {
        font-size:17pt;
    }
}
@media (orientation:landscape) and (max-width:1050px), (orientation:portrait) and (max-width:950px) {
    .fs_homemenu_badges .badge h2 {
        font-size:14pt;
    }
}
@media (orientation:landscape) and (max-width:900px), (orientation:portrait) and (max-width:700px) {

    .fs_homemenu_badges .badge_pct {
        display: none;
    }

    .badge h2 {
        padding-left:0;
    }
}
@media (orientation:landscape) and (max-width:650px), (orientation:portrait) and (max-width:520px) {
    .fs_homemenu_badges .badge h2 {
        font-size:9pt;
    }
}
/*----------Nav Menu-------*/
.fs_navmenu {
    position:absolute;
    top:0;
    right:0;
    height:100%;
    width:50%;
    max-width:500px;

    color:#fff;
    background:#323237;
    border-right:solid 1px #000;

    -webkit-transform: translate3d(110%,0,0);
    -moz-transform: translate3d(110%,0,0);
    -o-transform: translate3d(110%,0,0);
    transform: translate3d(110%,0,0);
    
    z-index:1000;

    -webkit-transition:-webkit-transform 400ms ease-in-out;
    -moz-transition:-moz-transform 400ms ease-in-out;
    -o-transition:-o-transform 400ms ease-in-out;
    transition:transform 400ms ease-in-out;
}

    .fs_navmenu.display {
        -webkit-transform: translate3d(0%,0,0);
        -moz-transform: translate3d(0%,0,0);
        -o-transform: translate3d(0%,0,0);
        transform: translate3d(0%,0,0);
    }

.fs_navmenu_close {
    position:absolute;
    top:5px;
    right:4px;
    height:32px;
    padding:0 10px 0 10px;
    
    color:#282c37;
    font-size:10pt;
    line-height:32px;
    
    background-color: #f0f1f5;
    background-image: -ms-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image: -moz-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image: -webkit-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image: linear-gradient(top, #fff 0%, #f0f1f5 100%);
    
    border-radius: 2px;

    cursor:pointer;
}

.fs_navmenu_close.press {
    background-image: -ms-linear-gradient(top, #ebebeb 0%, #dcdde1 100%);
    background-image: -moz-linear-gradient(top, #ebebeb 0%, #dcdde1 100%);
    background-image: -webkit-linear-gradient(top, #ebebeb 0%, #dcdde1 100%);
    background-image: linear-gradient(top, #ebebeb 0%, #dcdde1 100%);
}

.fs_navmenu_items {
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    width:100%;

    overflow-y: auto;
    background-color: #323237;
    border-top:solid 1px #838383;
}

.fs_navmenu ol, .fs_navmenu ul {
    width:100%;
    margin:0px;
    padding:0px;
}

.fs_navmenu_exit, .fs_navmenu_home, .fs_navmenu_help, .fs_navmenu_boldmethod, .fs_navmenu_cache-status, .fs_navmenu_downloads {
    background-repeat:no-repeat;
    background-size:auto 60%;
    background-position:10px center;
}
.fs_navmenu_exit {
    background-image: url(../images/bold_fs/interface/menu_flyout_exit.png);
}
.fs_navmenu_home {
    background-image: url(../images/bold_fs/interface/menu_flyout_home.png);
}
.fs_navmenu_help {
    background-image: url(../images/bold_fs/interface/menu_flyout_help.png);
}
.fs_navmenu_boldmethod {
    background-image: url(../images/bold_fs/interface/menu_flyout_boldmethod.png);
}
.fs_navmenu_cache-status, .fs_navmenu_downloads {
    background-image: url(../images/bold_fs/interface/menu_flyout_cache-status.png);
}
.fs_navmenu_title {
    font-weight:bold;
}

.fs_navmenu li {
    width:100%;
    margin:0px;
    padding:10px 10px 10px 45px;

    font-size:12pt;
    
    border-bottom:solid 1px #000;
    border-top:solid 1px #5c5c5f;

    cursor:pointer;
}

li.fs_navmenu_header {
    padding: 7px 10px 7px 10px;
    
    color: #fff;
    font-size: 16pt;
    text-align: center;
    vertical-align: middle;

    background-color: #505052;
    border-bottom:solid 1px #000;
    background-image: -ms-linear-gradient(top, #969696 0%, #505052 100%);
    background-image: -moz-linear-gradient(top, #969696 0%, #505052 100%);
    background-image: -webkit-linear-gradient(top, #969696 0%, #505052 100%);
    background-image: linear-gradient(top, #969696 0%, #505052 100%);
}

li.fs_navmenu_header h1 {
    font-size: 16pt;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

.fs_navmenu li.active {
    background-color: #19191b;
}

    .fs_navmenu li .elipsis {
        display:none;
    }

    .fs_navmenu li.module .elipsis {
        display:inline;
    }

@media (max-width:800px) {
    .fs_navmenu {
        width: 75%;
    }
}

@media (max-width:500px) {
    .fs_navmenu {
        width: 100%;
    }
}

/*-------------Help-------*/
.fs_help {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;

    color:#fff;
    font-size:18pt;

    z-index:9999;
}

    .fs_help * {
        background-size:50px auto;
        background-repeat:no-repeat;
    }

.fs_help_close {
    position:absolute;
    top:2%;
    right:2%;
    cursor:pointer;
}

.fs_help_navmenu {
    position:absolute;
    top:23px;
    left:35px;
    padding:40px 0 0 40px;

    background-image:url(../images/bold_fs/interface/arrow_help_nw_2x.png);
    background-position:left top;
}

.fs_help_nextback {
    position:absolute;
    bottom:15px;
    right:45px;
    text-align:right;
    padding:0 40px 40px 0;

    background-image:url(../images/bold_fs/interface/arrow_help_se_2x.png);
    background-position:right bottom;
}

@media (max-width:400px), (max-height:600px) {
    .fs_help {
        font-size: 13pt;
    }
    .fs_help * {
        background-size:40px auto;
    }
}

@media (orientation:landscape) and (max-height:400px), (orientation:portrait) and (max-height:600px) {

    .fs_help_close {
        top:auto;
        bottom:2%;
        right:2%;
    }

    .fs_help_navmenu {
        top:15px;
        left:10px;
        padding:28px 0 0 0;
        background-position:center top;
    }

    .fs_help_nextback {
        bottom:auto;
        top:15px;
        right:45px;
        padding:28px 0 0 0;

        background-image:url(../images/bold_fs/interface/arrow_help_ne_2x.png);
        background-position:right top;
    }
}

/*-------------Dialogs-----------------*/
.fs_trans_screen {
    position:absolute;
    top:0px;
    left:0px;
    bottom:0px;
    width:100%;

    background:rgba(0,0,0,.7);

    z-index:9900;
}

@media (orientation:portrait) and (max-height:600px) {
    .iphone_hidebar .fs_trans_screen {
        bottom:-60px;
    }
}

.fs_dialog {
    display:block;
    margin:0px auto;
    margin-top:40px;
    padding:20px;
    max-width:600px;
    max-height:78%;

    color:#323237;
    font-size:13pt;
    
    border:solid 1px #323237;
    border-radius:2px;

    background-color:#fff;
    background-image:-webkit-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image:-moz-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image:-o-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image:-ms-linear-gradient(top, #fff 0%, #f0f1f5 100%);
    background-image:linear-gradient(top, #fff 0%, #f0f1f5 100%);

    overflow:auto;
}

    .fs_dialog h1 {
        font-size:20pt;
        font-weight:bold;
        text-align:center;
        margin:0 0 10px 0;
    }

    .fs_dialog p {
        margin-bottom:10px;
    }

.fs_dialog_button {
    display:inline-block;
    width:30%;
    padding:10px;

    color:#fff;
    font-size:12pt;
    font-weight:bold;
    text-align:center;

    border:solid 1px #777;
    border-radius:2px;
    
    background-color:#bbbbc0;
    background-image:-webkit-linear-gradient(top, #bbbbc0 0%, #aaaab0 100%);
    background-image:-moz-linear-gradient(top, #bbbbc0 0%, #aaaab0 100%);
    background-image:-o-linear-gradient(top, #bbbbc0 0%, #aaaab0 100%);
    background-image:-ms-linear-gradient(top, #bbbbc0 0%, #aaaab0 100%);
    background-image:linear-gradient(top, #bbbbc0 0%, #aaaab0 100%);

    cursor:pointer;
}

    .fs_dialog_button.affirm {
        background-color: #ff6419;
        background-image: -webkit-linear-gradient(top, #ff6419 0%, #e74b00 100%);
        background-image: -moz-linear-gradient(top, #ff6419 0%, #e74b00 100%);
        background-image: -o-linear-gradient(top, #ff6419 0%, #e74b00 100%);
        background-image: -ms-linear-gradient(top, #ff6419 0%, #e74b00 100%);
        background-image: linear-gradient(top, #ff6419 0%, #e74b00 100%);
    }

@media (max-width:610px) {
    .fs_dialog {
        max-width:90%;
    }
}

@media (orientation:landscape) and (max-height:400px), (orientation:portrait) and (max-height:600px) {

    .fs_dialog {
        font-size:9pt;
    }

    .fs_dialog_button {
        font-size: 10pt;
    }

    .fs_dialog h1 {
        font-size: 14pt;
    }

    .fs_dialog_button {
        padding: 4px;
    }
}

.fs_screen_icon {
    display:block;
    width:60%;
    max-width:400px;
    height:auto;
    margin:0 auto;
    margin-bottom:20px;
    padding:0;
}

/*-------------------SIGNIN--------------*/
.fs_screen_title {
    margin: 0 0 5px 0;
    padding: 0;
}

.fs_screen_subtitle {
    font-size: 12pt;
    margin:0;
    padding: 0;
}

/*--------------------------Walkthrough------------------------*/
.fs_screen, .fs-info {
    color:#fff;
    background-color:#52b5fc;
    background-image:-webkit-linear-gradient(top, #52b5fc 0%, #2f93f7 100%);
    background-image:-moz-linear-gradient(top, #52b5fc 0%, #2f93f7 100%);
    background-image:-ms-linear-gradient(top, #52b5fc 0%, #2f93f7 100%);
    background-image:-o-linear-gradient(top, #52b5fc 0%, #2f93f7 100%);
    background-image:linear-gradient(top, #52b5fc 0%, #2f93f7 100%);
}

.fs_screen_alt {
    color: #46464b;
    background-color: #fff;
    background-image:-webkit-linear-gradient(top, #fff 0%, #e6e6e6 100%);
    background-image:-moz-linear-gradient(top, #fff 0%, #e6e6e6 100%);
    background-image:-ms-linear-gradient(top, #fff 0%, #e6e6e6 100%);
    background-image:-o-linear-gradient(top, #fff 0%, #e6e6e6 100%);
    background-image:linear-gradient(top, #fff 0%, #e6e6e6 100%);
}

.fs_screen, .fs_screen_alt {
    position:absolute;
    top:0px;
    bottom:0px;
    width:100%;

    z-index:9000;
}

.ios-7p .fs_screen, .ios-7p .fs_screen_alt {
    top: 20px;
}

.fs-info {
    text-align:center;
}

.fs-info-title {
    font-size: 25pt;
}

@media (orientation:portrait) and (max-height:600px) {
    .iphone_hidebar .fs_screen, .iphone_hidebar .fs_screen_alt {
        bottom:-60px;
    }
}


.fs_walkthrough {
    text-align:center;
    font-size:30pt;
    font-weight:normal;
    font-weight:200;

    overflow:hidden;
}

@media (orientation:portrait) {
    .iphone_hidebar .fs_walkthrough {
        bottom: -60px;
    }
}

    .fs_walkthrough p {
        width:80%;
        max-width:550px;
        margin:0px auto;
        padding:0;
    }

.fs_walkthrough_container {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:80%;
}

.fs_walkthrough_screen {
    width:100%;
    height:100%;
    padding:20px 0 0 0;
}

.fs_walkthrough_controls {
    position:absolute;
    top:80%;
    left:0;
    width:100%;
}

.fs_walkthrough_navigator {
    margin:0px auto;
    padding:0;
    width: 70%;
    height:100%;
    max-width:250px;

    list-style-type:none;
}

.fs_walkthrough_buttons {
    width:100%;
    margin:10px 0 0 0;
    padding:0;

    list-style-type:none;
}

.fs_walkthrough li {
    display:inline-block;
}

.fs_walkthrough_navigator li {
    width:15%;
    padding:15% 0 0 0;
    margin:0;
    background-image:url(../images/bold_fs/walkthrough/dot_off.png);
    background-size:100% 100%;
    background-repeat:no-repeat;

    cursor:pointer;
}

    .fs_walkthrough_navigator li.active {
    background-image:url(../images/bold_fs/walkthrough/dot_on.png);
    }

    .fs_walkthrough_navigator li:last-child {
        margin:0;
    }

.fs_walkthrough_buttons li {
    width:30%;
    max-width:150px;
    margin:0 10px 0 0;
    padding:6px 0 6px 0;
    
    font-size:16pt;
    color:#52b5fc;
    background-color:#fff;

    cursor:pointer;
}

.fs_walkthrough_wing {
    height:50%;
    width:100%;
    margin-top:30px;
    margin-bottom:40px;
   
    background-image:url(../images/bold_fs/walkthrough/boldmethod_wing.png);
    background-size:auto 100%;
    background-position:top center;
    background-repeat:no-repeat;

}

.fs_walkthrough_image {
    height:70%;
    margin-top:30px;


    background-repeat:no-repeat;
    background-size:auto 100%;
    background-position:top center;
}

.fs_walkthrough_frame {
    width: 100%;
    height:100%;
}

.fs-walk-image {
    width: 70%;
    height:auto;
    margin-top: 20px;
    max-width:350px;
}

.fs_walkthrough_screen .bookmarkimg_general, 
.fs_walkthrough_screen .bookmarkimg_ios,
.fs_walkthrough_screen .bookmarkimg_ios_7
 {
    height:50%;
    width:100%;
    margin-top:20px;

    background-position:top center;
    background-size:auto 70%;
    background-repeat:no-repeat;
}
.fs_walkthrough_screen .bookmarkimg_general {
    background-image:url(../images/bold_fs/walkthrough/icon_bookmark.png);
}
.fs_walkthrough_screen .bookmarkimg_ios {
    background-image:url(../images/bold_fs/walkthrough/icon_share.png);
}
.fs_walkthrough_screen .bookmarkimg_ios_7 {
    background-image:url(../images/bold_fs/walkthrough/icon_share_7.png);
}

.fs_walkthrough_imagelink {
    display: block;
    margin-top: 30px;
}

.fs_walkthrough_itunes {
    display:block;
    margin: 0 auto;
    width: 70%;
    max-width: 400px;
    height: auto;
}

@media  (orientation:landscape) and (max-width:800px), (orientation:landscape) and (max-height:800px),
        (orientation:portrait) and (max-width:550px), (orientation:portrait) and (max-height:725px)
 {
    .fs_walkthrough {
        font-size: 20pt;
    }

    .fs_walkthrough_navigator {
        max-width:175px;
    }

    .fs_walkthrough_buttons li {
        font-size:12pt;
    }

    .fs_walkthrough_image {
        margin-top:15px;
    }
}

@media  (orientation:landscape) and (max-width:525px), (orientation:landscape) and (max-height:400px),
        (orientation:portrait) and (max-width:400px), (orientation:portrait) and (max-height:550px)
 {
    .fs_walkthrough {
        font-size: 14pt;
    }

    .fs_walkthrough_wing {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .fs_walkthrough_navigator {
        max-width:100px;
    }

    .fs_walkthrough_buttons {
        margin: 0;
    }

    .fs_walkthrough_buttons li {
        font-size:9pt;
        max-width:120px;
        padding:3px 0 3px 0;
    }

    .fs_walkthrough_image {
        margin-top:10px;
    }
}


/*-----------RATE----------*/

.appstore-review-stars {
    display:block;
    width: 70%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
}
/*---------EVAL------------*/
.splitctnt .eval-input {
    position:relative;
    width: 90%;
    height: 50%;
    margin: 0px auto;
}

.splitctnt_text .eval-content {
    position:relative;
    height: 48%;
    width: 90%;
    margin: 0px auto;
}

.splitctnt_text .eval-content-full {
    position:relative;
    width: 90%;
    margin: 0px auto;
}

@media (orientation: portrait) {
    .splitctnt .eval-input {
        height: 100%;
        width: 95%;
        max-width: 600px;
        margin: 2% 0 0 2.5%;
    }

    .splitctnt_text .eval-content {
        display:none;
    }
}

@media (orientation: portrait) and (max-height: 720px) {
    .splitctnt_img.alt {
        height: 60%;
    }
    .splitctnt_text.alt {
        top: 60%;
        height: 40%;
    }

    .splitctnt .eval-input {
        height: 100%;
        margin: 0 0 0 2.5%;
    }
}


.secondary_box.vert {
    background-color:#333;
    background-image:-webkit-linear-gradient(top, #606060 0%, #333 50%);
    background-image:-moz-linear-gradient(top, #606060 0%, #333 50%);
    background-image:-ms-linear-gradient(top, #606060 0%, #333 50%);
    background-image:linear-gradient(top, #606060 0%, #333 50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

ol.fs-menu-imdt-items {
    height: 100%;
    width: 100%;
    padding:0;
    margin:0;
    overflow:auto;
    
    background-color:#277ed6;
    background-image:-webkit-linear-gradient(top, #2f93f7 0%, #277ed6 100%);
    background-image:-moz-linear-gradient(top, #2f93f7 0%, #277ed6 100%);
    background-image:-ms-linear-gradient(top, #2f93f7 0%, #277ed6 100%);
    background-image:-o-linear-gradient(top, #2f93f7 0%, #277ed6 100%);
    background-image:linear-gradient(top, #2f93f7 0%, #277ed6 100%);
}

li.fs-menu-imdt-item {
    display:table;
    width: 100%;
    padding:0;
    margin:0;
    border-top: solid 1px #7db0f0;
    border-bottom: solid 1px #1270ce;
    cursor:pointer;
}

    li.fs-menu-imdt-item:hover {
        background-color: #1eaaff;
    }

.fs-menu-imdt-item-condition {
    display:none;
}

.fs-menu-imdt-item-icon, .fs-menu-imdt-item-title {
    display:table-cell;
    padding: 10px 0 10px 0;
}
.fs-menu-imdt-item-icon {
    width: 10%;
    max-width: 50px;
    padding-left: 2%;
    vertical-align:top;
}

    .fs-menu-imdt-item-icon img {
        width: 100%;
        height: auto;
    }

.fs-menu-imdt-item-title {
    padding-left: 2%;
    vertical-align:middle;

    color:#fff;
}

/*------------------------------DOWNLOADS------------------------------*/
h1.fs-downloads-header {
    margin: 0;
    padding: 7px 10px 7px 10px;
    
    color: #fff;
    font-size: 16pt;
    text-align: center;
    vertical-align: middle;

    background-color: #505052;
    border-bottom:solid 1px #000;
    background-image: -ms-linear-gradient(top, #969696 0%, #505052 100%);
    background-image: -moz-linear-gradient(top, #969696 0%, #505052 100%);
    background-image: -webkit-linear-gradient(top, #969696 0%, #505052 100%);
    background-image: linear-gradient(top, #969696 0%, #505052 100%);
}

.fs-downloads-page {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;

    overflow-y: auto;
}

ol.fs-downloads {
    width: 100%;
    padding:0;
    margin:0;

    overflow:auto;
}

li.fs-downloads-item, li.fs-downloads-setting {
    display:table;
    width: 100%;
    padding:0 2% 0 2%;
    margin:0;
    font-size: 16px;
    border-bottom: solid 1px #444444;
}

li.fs-downloads-setting {
    padding-right: 0;
}

.fs-downloads-item-main, .fs-downloads-item-button-positive, .fs-downloads-item-button-negative, .fs-downloads-item-status, 
.fs-downloads-item-pct, .fs-downloads-setting-name, .fs-downloads-setting-on, .fs-downloads-setting-off
 {
    display: table-cell;
    padding: 10px 0 10px 0;
}

.fs-downloads-item-main, .fs-downloads-setting-name {
    width: auto;
}

.fs-downloads-item-name {
    font-size: 16px;
    font-weight: bold;
}
.fs-downloads-item-size {
    font-size: 14px;
}

.fs-downloads-item-pct {
    width: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.fs-downloads-item-status {
    width: 1px;
    text-align: center;
}

.fs-downloads-setting-off, .fs-downloads-setting-on {
    width: 1px;
    padding-right: 25px;
    padding-left: 25px;
}

.fs-downloads-setting-on {
    background-color: #2f93f7;
    color: #ffffff;
}
.fs-downloads-setting-off {
    color: #46464b;
}

.fs-downloads-item-button-positive, .fs-downloads-item-button-negative {
    width: 70px;
    text-align: center;
}

.fs-downloads-item-button-positive {
    display: none;
    color: #ffffff;
    background-color: #2f93f7;
}

.fs-downloads-item-button-negative {
    display: none;
    color: #ffffff;
    background-color: #ff0000;
}

.fs-downloads-item-icon {
    height: 18px;
    width: auto;
}

li.fs-downloads-confirm {
    padding-right: 0;
}

.fs-downloads-confirm .fs-downloads-item-button-negative {
    display: table-cell;
}

.fs-downloads-confirm .fs-downloads-item-icon, .fs-downloads-confirm .fs-downloads-item-pct {
    display: none;
}

.fs-downloads-item-hidden {
    display: none;
}