/******************************************************************** GLOBAL CONFIGURATIONS ********************************************************************/
        /*
                                                                -------------------------
                                                                |                       |
                                                                |                       |
                                                                |                       |
                                                                |                       |
                                                                |     body settings     |
                                                                |                       |
                                                                |                       |
                                                                |                       |
                                                                |                       |
                                                                -------------------------


                                                                            |
                                                                            |
                                                                            |
                                                                            |
                                                                            V

                                                -------------
                                                |tab title  |
                                                ---------------------------------------------------------
                                                |body|                                                  |
                                                |-----                                                  |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                |                                                       |
                                                ---------------------------------------------------------
        */
        body
        {
                background-color        :       black;
                background-size         :       5000% 5000%;
                color                   :       white;
                /*text-shadow             :       0px 0px 10px red, 0px 0px 50px red, 0px 0px 100px red;*/
                word-wrap               :       normal;
                font-family             :       "courier";
                font-weight             :       400;	/*[light < 400] [normal = 400] [bold > 400]*/
                margin                  :       0px;
                padding                 :       0px;
                user-select             :       none;
                scrollbar-width         :       none;
                scrollbar-color         :       transparent transparent;
        }
















        /*
                       ------
                sample |text|
                       ------
        */
        /*
        ::selection
        {
                color                   :       inherit;
                background              :       inherit;
        }
        ::-moz-selection
        {
                color                   :       inherit;
                background              :       inherit;
        }
        */
















        /*
                                                        -------------------------------------------------
                                                        |                                               |
                                                        |                                               |
                                                        |                                               |
                                                        |                                             | |
                                                        |                                             | |
                                                        |                                             | |       <----   scrollbar
                                                        |                                             | |
                                                        |                                             | |
                                                        |                                               |
                                                        |                                               |
                                                        |                                               |
                                                        -------------------------------------------------
        */
        @-moz-document url-prefix()
        {
                html
                {
                        scrollbar-color         :       transparent transparent;
                        scrollbar-width         :       none;
                }
        }
        ::-webkit-scrollbar
        {
                display                 :       none;
                width                   :       10px;
                background              :       transparent;
        }

        ::-webkit-scrollbar-track
        {
                background              :       transparent;
        }


        ::-webkit-scrollbar-corner
        {
                background              :       transparent;
        }


        ::-webkit-scrollbar-thumb
        {
                background              :       transparent;
                border                  :       1px outset rgba(255, 255, 255, .2);
                border-radius           :       1px;

                border                  :       1px outset rgba(255, 0, 0, .5);
                
                background              :       linear-gradient(45deg, #ccf, white, #ccf);
        }
        ::-webkit-scrollbar-thumb
        {
                background              :       transparent;
                border                  :       1px outset rgba(255, 0, 0, .5);
                border-radius           :       1px;

        }
        ::-webkit-scrollbar-thumb
        {
                background              :       linear-gradient(45deg, #ff0, white, #ff0);
                border                  :       1px outset #cc0;
                border-radius           :       3px;
        }


        ::-webkit-scrollbar-thumb:hover
        {
                box-shadow              :       inset 0px 0px 10% red;
                border                  :       1px outset rgba(255, 255, 255, .5);
                border                  :       1px outset rgba(255, 100, 100, .9);
        }
















        /*
                -------------------------
                |input text             |
                -------------------------
        */
        input
        {
                outline                 :       none;
                border                  :       none;
        }
        input::-webkit-search-cancel-button,
        input::-webkit-search-results-button
        {
                display                 :       none;
        }
        /*
        input[type=file]
        {
                text-indent             :       -120px;
        }
        */
        input[type=file]::file-selector-button
        {
                display                 :       none;
        }
        input[type=file]::-webkit-file-upload-button
        {
                display                 :       block;
                width                   :       0;
                height                  :       0;
                margin-left             :       -100%;
        }
        input[type=file]::-ms-browse
        {
                display                 :       none;
        }
        textarea
        {
                border                  :       none;
                border-style            :       none;
                background-color        :       transparent;
                resize                  :       none;
                overflow                :       auto;
                outline                 :       none;
        }
















        /*
                sample paragraph
                ----------------
        */
        p
        {
                /*
                margin:0;
                position:absolute;
                top:50%;
                left:50%;
                transform:translate(-50%,50%);
                color:"green";
                */
        }
















        /*
                sample link
                -----------
        */
        a
        {
                text-decoration         :       none;
                color                   :       inherit;
        }
/***************************************************************************************************************************************************************/
