/* CSS Document */




/* General  ------*/

	*{margin: 0;padding: 0;}

   
	
	
    .noselect {
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently
                                      supported by Chrome and Opera */
    }
	
	

    

    

    /* inline buttons */
    .inline_button{
        display: inline-block;
        background: white;
        border: 1px solid gray;
        box-shadow: 0 0 5px -1px #555 inset;

        border-radius: 4px;
        padding:1px 5px;
        text-decoration: none !important;
        margin: 2px;
        color: rgb(30, 80, 139)  !important;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .inline_button:hover {
        background: rgba(30, 80, 139,0.9);
        text-decoration: none !important;
        color: white !important;
        border: 1px solid rgba(30, 80, 139,0.9);
    }


   

    /* Tooltips */

    .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        font-size: 0.7em;
        text-align: center;
        border-radius: 6px;
        border: 1px solid white;
        padding: 5px 5px;
        position: absolute;
        z-index: 1;
        top: 150%;
        left: 50%;
        margin-left: -60px;

        opacity: 0;
        transition: opacity 1s;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -10px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent white transparent;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 0.7;
    }
	
	
/* General ------*/


	




	