/*****************************************************************************************/
/*  Buttons                                                                                                                                                                */
/*****************************************************************************************/

.button {
    margin: 2px;
    display: inline-block;
    overflow: hidden;
    padding: 4px;
    width: 160px;
    min-height: 20px;
    text-align: center;
    background-color: #2b4b91;
    color: white;
    font-weight: bold;
    font-family: fira_sansregular, verdana;
    font-size: 14px;
    border: 1px solid #024475;
    border-radius: 3px;
    cursor: pointer;
    user-select: none;
}

    .button.hover {
        color: #024475;
        background-color: rgb(201,215,230);
    }

    .button.disabled {
        background-color: #4988BC;
        cursor: not-allowed;
        color: #ABC5F5;
        opacity: .9;
    }

        .button.disabled.working {
            background-color: #4988BC;
            cursor: progress;
        }

        .button.disabled img {
            height: 14px;
            position: absolute;
        }


/*Dupe because buttons and divs behave different*/
button.button {
    width: 170px;
}

    button.button:hover {
        color: #024475;
        background-color: rgb(201,215,230);
    }

    button.button:disabled {
        background-color: #4988BC;
        cursor: not-allowed;
        color: #ABC5F5;
        opacity: .9;
    }

    button.button.working:disabled {
        background-color: #4988BC;
        cursor: progress;
    }

    .button:disabled img {
        height: 14px;
        position: absolute;
    }

/*These are for some of the button at the bottom when there is more than 4 of them.*/
.footerButtons {
    margin: 2px;
    display: inline-block;
    overflow: hidden;
    padding: 4px;
    width: 160px;
    text-align: center;
    background-color: #2b4b91);
    color: #FFFFFF;
    font-family: fira_sansregular, verdana;
    font-size: 16px;
    border: 1px solid #024475;
    border-radius: 3px;
    cursor: pointer;
}

.imagelessButton_net {
    overflow: hidden;
    text-align: center;
    list-style-position: outside;
    margin: 0px 2px 0px 4px;
    font-style: normal;
    list-style: none;
    margin: 2px 8px 2px 8px;
    list-style-type: none;
    cursor: pointer;
    border: 1px solid rgb( 2,68,117);
    display: inline-block;
    background-color: #2b4b91;
    text-decoration: none;
    color: rgb(255, 255, 255 );
    font-weight: bold;
    font-family: fira_sansregular, verdana;
    font-size: 14px;
    padding: 4px;
    width: 130px;
}

    .imagelessButton_net:hover {
        border: 1px solid rgb( 2,68,117);
        display: inline-block;
        padding: 4px;
        color: rgb(2,68,117);
        background-color: rgb(235,243,251);
    }
/*****************************************************************************************/
/*  dx:ASPxButton                                                                                                                                                      */
/*****************************************************************************************/



.imagelessASPXButton_net {
    background: transparent;
    overflow: hidden;
    width: 145px; /* 6 pixels less than the width of the container to account for borders */
    text-align: center;
    list-style-position: outside;
    margin: 0px 2px 0px 4px;
    font-style: normal;
    list-style: none;
    width: 130px;
    margin: 2px 8px 2px 8px;
    list-style-type: none;
    cursor: pointer;
    border: 1px solid rgb( 2,68,117);
    display: inline-block;
    background-color: #2b4b91;
    text-decoration: none;
    color: rgb(255, 255, 255 );
    font-weight: bold;
    font-family: fira_sansregular, verdana;
    font-size: 15px;
    padding: 4px;
    width: 130px;
    border-radius: 3px; /*added border radius directly to dx:ASPxButton*/
}

.imagelessASPXButton_net:hover:not([class*="dxbDisabled"]) {
	border: 1px solid rgb( 2,68,117);
	display: inline-table; /*switched to inline-table seems to fix dx:ASPxButton from shifting text*/
	padding: 4px;
	color: rgb(2,68,117);
	background-color: rgb(235,243,251);
}

.imagelessASPXButton_net.dxbDisabled {
	border: 1px solid rgb( 2,68,117);
	display:inline-table;  /*switched to inline-table seems to fix dx:ASPxButton from shifting text*/
	padding: 4px;
	background-color: rgb(195, 195, 195);
	cursor: not-allowed;
	color: rgb(255, 255, 255 );
	opacity: .9;
}

.imagelessASPXButton_net.dxbDisabled_Office2003Blue {
	border: 1px solid rgb( 2,68,117);
	display:inline-table;  /*switched to inline-table seems to fix dx:ASPxButton from shifting text*/
	padding: 4px;
	background-color: rgb(195, 195, 195);
	cursor: not-allowed;
	color: rgb(255, 255, 255 );
	opacity: .9;
}


/*****************************************************************************************/
/*  Floating Menu                                                                                                                                                      */
/*****************************************************************************************/

.floating_menu_container {
    width: auto;
    display: block;
    overflow: hidden;
    position: fixed;
    z-index: 100;
    bottom: 0px;
    left: 101px;
    right: 101px;
    background-color: rgb(99,127,175);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .floating_menu_container .line_divide {
        background-image: url('../Images/linedivide_repeat_whitebg.png');
        height: 14px;
        width: 100%;
        background-repeat: repeat;
    }


.Gridbox{

}

.FloatingNavBar {
    width: 95%;
    max-width: 1442px;
    min-height: 90px;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    bottom: 1em;
    background-color: white;
    z-index: 100;
    border-top: 1px solid #2b4b91;
    border-radius: 0px 0px 10px 10px;
}

.FloatingNavBarTop {
    width: 95%;
    max-width: 1442px;
    min-height: 90px;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 3em;
    background-color: rgb(99,127,175);
    z-index: 100;
    border-bottom: 4px solid rgb(0,51,153);
    border-radius: 10px 10px 0px 0px;
}



.HideBelowFloatingNavBar {
    height: 40px;
    position: fixed;
    bottom: 0px;
    background-color: white;
    max-width: 1442px;
    width: 95%; 
    margin-left: auto;
    margin-right: auto;
    z-index: 99; 
}

.HideBelowFloatingNavBarTop {
    height: 60px;
    position: fixed;
    top: 0px;
    background-color: rgb(99,127,175);
    max-width: 1442px;
    width: 95%; 
    margin-left: auto;
    margin-right: auto;
    z-index: 99; 
}


/*****************************************************************************************/
/*  Button Layouts                                                                                                                                                   */
/*****************************************************************************************/

.threeButtons {
    width: 32%;
    display: inline-block;
    vertical-align: middle;
    /*margin-left:2%;*/
}

.fourButtons {

    display: inline-block;
    vertical-align: middle;
    margin-left:50px;
	margin-right:50px;
}

@media only screen and (max-width:1368px) {
    .FloatingNavBar:not(.excludeMedia), .FloatingNavBarTop:not(.excludeMedia) {
        max-width: 955px;
    }

    .HideBelowFloatingNavBar:not(.excludeMedia), .HideBelowFloatingNavBarTop:not(.excludeMedia) {
        max-width: 955px;
    }
}

@media only screen and (max-width: 1024px) {

    .FloatingNavBar, .FloatingNavBarTop {
        max-width: 100%;
    }
    .HideBelowFloatingNavBar, .HideBelowFloatingNavBarTop {
        max-width: 100%;
    }
}


@media print {
    .FloatingNavBar, .FloatingNavBarTop {
        display: none;
    }
}

/*****************************************************************************************/
/* Toggle Slider                                                                                                                                                   */
/*****************************************************************************************/

.sliderBox {
	position: relative;
	display: inline-block;
	width: 3em;
	height: 1.5em;
}

.sliderBox input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #2196f3;
	-webkit-transition: .1s;
	transition: .1s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 1.1em;
	width: 1.1em;
	left: .225em;
	bottom: .22em;
	background-color: white;
	-webkit-transition: .1s;
	transition: .1s;
}

input:checked + .slider:before {
	-webkit-transform: translateX(1.5em);
	-ms-transform: translateX(1.5em);
	transform: translateX(1.5em);
}

.slider.round {
	border-radius: 1.7em;
}

.slider.round:before {
	border-radius: 50%;
}
