/********************************************************************************
 *  PROJECT:        PellMill, LLC - Product Support Website                     *
 *  PRODUCT:        IPTV Devices                                                *
 *  PROGRAM:        PellMill, LLC Website Sitewide CSS                          *
 *  VERSION:        System - V00.00.01 Module - V00.00.01                       *
 *  CODE:           HTML5/CSS                                                   *
 *  MODULE:         Site.css                                                    *
 *  AUTHOR:         James Pellegrini                                            *
 *  DATE:           10/18/16 - 12/04/25                                         *
 ********************************************************************************
 *  DEVELOPER:      James Pellegrini                                            *
 *  COMPANY:        PellMill, LLC                                               *
 *                  P.O. Box XXXX                                               *
 *                  Millbury, MA. 01527                                         *
 *                  (508) xxx-xxxx                                              *
 *  COPYRIGHT:      (C) 2016-2025 By PellMill, LLC (James Pellegrini)           *
 *  LICENSE:        Complete Ownership of all Code and Intellectual Property.   *
 *                  LICENSE         SOURCE      OBJECT                          *
 *                  PROPERTY:        CODE        CODE                           *
 *                  Ownership       - Yes       - Yes                           *
 *                  Application     - Yes       - Yes                           *
 *                  Replication     - Yes       - Yes                           *
 *                  Modification    - Yes       - Yes                           *
 *                  Distribution    - Yes       - Yes                           *
 *                  Operation       - Yes       - Yes                           *
 *                  Sale            - Yes       - Yes                           *
 ********************************************************************************
 *  SYSTEMS:                                                                    *
 *  HOST:                                                                       *
 *      HARDWARE:   CPU/Speed                   AMD Phenom II X6 1045T/2700 MHz *
 *                  Memory/Drive                8.0 GB RAM / 1.0 TB DISC        *
 *      SOFTWARE:   OS                          Windows 10 Home Edition         *
 *                  Browser                     Internet Explorer               *
 *                                              Google Chrome                   *
 *                                              Mozilla Firefox                 *
 *                                              Apple Safari                    *
 *                                              Opera                           *
 *                                                                              *
 *  DEVELOPMENT:                                                                *
 *      HARDWARE:   Development System          Host PC                         *
 *                  Storage Medium              Host PC Hard Drive              *
 *                  Distribution Medium         Broadband Internet              *
 *                  Display Resolution          1920 x 1080                     *
 *      SOFTWARE:   Development Environment     Eclipse for PHP Developers      *
 *                  Language Tools              HTML/CSS/JavaScript/PHP/MySQL   *
 *                                                                              *
 *  TARGET:                                                                     *
 *      HARDWARE:   Traditional Platforms       All PCs, Desktops & Laptops     *
 *                  Mobile Platforms            All PCs, Tablets, & Phones      *
 *      SOFTWARE:   Operating Systems           All                             *
 *                  Browsers                    All                             *
 ********************************************************************************
 *  MODULE SUMMARY:                                                             *
 *  This module contains the main CSS code to style the display for the         *
 *  complete website. This code initializes the style for this dynamnic page.   *
 ********************************************************************************/

/********************************************************************************
 ********************************************************************************
 ** PELLMILL CSS3 CODE - START                                                 **
 ********************************************************************************
 ********************************************************************************/

/********************************************************************************
 * GLOBAL SELECTORS                                                             *
 ********************************************************************************/

   /****************************************
    * ID: Scrollbar - Colors               *
    ****************************************/
    body
    {
        scrollbar-face-color: #600000;                                     /*JIM 04/12/16 scrollbar base color (slider)*/
        scrollbar-shadow-color: black;                                     /*JIM 04/12/16 scrollbar shadow color (slider outline)*/
            
        scrollbar-track-color: #606060;                                    /*JIM 04/12/16 scrollbar track color (background)*/
        scrollbar-highlight-color: #606060;                                /*JIM 04/12/16 scrollbar highlight color (background)*/
        scrollbar-arrow-color: black;                                      /*JIM 04/12/16 scrollbar arrow color (top and bottom)*/
    }

   /****************************************
    * Anchor Pseudo-Class - Link Colors    *
    ****************************************/
    a:link
    {
        fo44nt-style: italic;
        font-weight: bold;
        font-family: "Times New Roman";
        color: white;
        te44xt-decoration: underline;
        te44xt-align: center;
    }
        
    a:visited
    {
        color: orange;
    }
        
    a:hover
    {
        color: green;
    }
        
    a:active
    {
        color: orange;
    }

/********************************************************************************
 * CUSTOM FONT STYLES & RULERS                                                  *
 ********************************************************************************/

   /****************************************
    * ID: Just Underline Text (span)       *
    ****************************************/
    #JUST_UL_IT
    {
        text-decoration: underline;
        co44lor: aqua;
    }

   /****************************************
    * ID: Underline Text (span)            *
    ****************************************/
    #UL_IT
    {
        text-decoration: underline;
        color: aqua;
    }
    
   /****************************************
    * ID: Underline Red Text (span)        *
    ****************************************/
    #UL_IT_RED
    {
        text-decoration: underline;
        color: red;
    }
    
   /****************************************
    * ID: Underline Green Text (span)      *
    ****************************************/
    #UL_IT_GREEN
    {
        text-decoration: underline;
        color: green;
    }
    
   /****************************************
    * ID: Aqua Text (span)                 *
    ****************************************/
    #AQUA_IT
    {
        color: aqua;
    }
    
   /****************************************
    * ID: Red Text (span)                  *
    ****************************************/
    #RED_IT
    {
        color: red;
    }
    
   /****************************************
    * ID: Gray Text (span)                 *
    ****************************************/
    #GRAY_IT
    {
        color: #808080;
    }
    
   /****************************************
    * ID: Green Text (span)                *
    ****************************************/
    #GREEN_IT
    {
        color: green;
    }
    
   /****************************************
    * ID: Dark Red Text (span)             *
    ****************************************/
    #DARK_RED_IT
    {
        color: darkRed;
    }
    
   /****************************************
    * ID: Line-Through Text (span)         *
    ****************************************/
    #LT_IT
    {
        text-decoration: line-through;
    }
    
   /****************************************
    * ID: Center Text (div)                *
    ****************************************/
    #CENTER_IT
    {
        text-align: center;
    }
    
   /****************************************
    * ID: Bold Text (span)                 *
    ****************************************/
    #BOLD_IT
    {
        font-weight: bold;
        color: white;
    }
    
   /****************************************
    * ID: Just Bold Text (span)            * JIM 12/28/24
    ****************************************/
    #JUST_BOLD_IT
    {
        font-weight: bold;
        co44lor: white;
    }
    
   /****************************************
    * ID: Just Bold Text (span)            * JIM 12/28/24
    ****************************************/
    #BACKGROUND_BLACK
    {
        background-color: black;
    }
    
   /****************************************
    * ID: Big Headers                      *
    ****************************************/
    #Big_Header1,
    #Big_Header2,
    #Big_Header3,
    #Big_Header4,
    #Big_Header5,
    #Big_Header6,
    #Big_Header7,
    #Big_Header8,
    #Big_Header9,
    #Big_Header10,
    #Big_Header11,
    #Big_Header12
    {
        font-weight: bold;
        color: red;
        text-decoration: underline;
        text-align: center;
    }
    
   /****************************************
    * ID: Item Headers                     *
    ****************************************/
    #Item_Header_0,
    #Item_Header_1,
    #Item_Header_2,
    #Item_Header_3,
    #Item_Header_4,
    #Item_Header_5,
    #Item_Header_6
    {
        font-weight: bold;
        color: green;
        te44xt-decoration: underline;
        text-align: left;
    }
        
   /****************************************
    * ID: Info Headers                     *
    ****************************************/
    #Header_0,
    #Header_1,
    #Header_2,
    #Header_3,
    #Header_4
    {
        fo44nt-size: 16px;
        font-style: italic;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        color: tan;
    }
    
   /****************************************
    * ID: Red Headers                      *
    ****************************************/
    #HeaderRed_0,
    #HeaderRed_1,
    #HeaderRed_2,
    #HeaderRed_3,
    #HeaderRed_4
    {
        fo44nt-size: 16px;
        font-style: italic;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        color: green;
    }
        
    #Header_0
    {
        text-align: center;
    }
        
    #Header_1
    {
        te44xt-decoration: underline;
    }
        
    #Header_3
    {
        color: tan; #C0C0C0;
    }

   /****************************************
    * ID: Liquid Gold Rule                 *
    ****************************************/
    #LiquidGoldRule
    {
        width: 80%;
        height: 4px;
        border-width: 0;
        color: orange;
        background-color: tan;
        align: center;
    }

/********************************************************************************
 ********************************************************************************
 ** MAJOR WEBSITE BOX ELEMENTS                                                 **
 ********************************************************************************
 ********************************************************************************/
 
/********************************************************************************
 * ID: "DeviceDisplay_Id" Elements                                              *
 ********************************************************************************/
    #DeviceDisplay_Id
    {
        display: none;
        position: relative;
        float: none;
        z-index: 0;
        align: center;

        padding: 0px;
        border-style: solid;
        border-color: black;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
            
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        color: white;
        background-color: #404040;
    }

/********************************************************************************
 * ID: THREE MAJOR ID BOX ELEMENTS                                              *
 ********************************************************************************/
    #TitleBox_Id                       /*JIM 12/04/25 changed overflow parameter*/
    {
        position: relative;
        z-index: 0;
        margin-left: auto;
        margin-right: auto;
        overflow: display;
    }
 
    #MainBox_Id,
    #CompareBox_Id
    {
        position: relative;
        z-index: 0;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

/********************************************************************************
 * ID: "CodeVersion_Id"                                                         *
 ********************************************************************************/
    #CodeVersion_Id
    {
        display: block;
        position: relative;
        float: none;
        z-index:0;
        top: -0.1%;
        
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        ve44rtical-align: middle;
        overflow: hidden;
 
        color: white;
        ba44ckground-color: #404040;
    }

/********************************************************************************
 ********************************************************************************
 ** ID: "TitleBox_Id" Elements                                                 **
 ******************************************************************************** 
 ********************************************************************************/
    
   /****************************************
    * ID: Title Text                       *
    ****************************************/
    #Title_Text
    {
        position: relative;
        float: none;
        z-index: 2;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }
    
   /****************************************
    * ID: Section Text                     *
    ****************************************/
    #Section_Text
    {
        di44splay: block;
        position: relative;
        float: none;
        z-index: 2;
        top: -8px;
        le44ft: 0px;

        padding: 0px;
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;

        fo44nt-size: 58px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        color: tan;
        background-color: black;
    }

   /****************************************
    * ID: PellMillLogo                     * JIM 10/18/16
    ****************************************/
    #PellMillLogo
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        
        border-width: 1px;
        border-style: solid;
        border-color: aqua;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        font-weight: bold;
        overflow: hidden;
        
        color: tan; /*white;*/
        background-color: #600000;
        cursor: pointer;
        opacity: 0.4;
    }

   /****************************************
    * ID: PellMill_Image                   * JIM 10/18/16
    ****************************************/
    #PellMill_Image
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

   /****************************************
    * ID: HomeButton                       * JIM 10/18/16
    * ID: BackButton                       *
    ****************************************/
    #HomeButton,
    #BackButton,
    #ArrowButton,
    #OfferButton                       /*JIM 12/04/25 added button*/
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        al44ign: "center";
        
        border-style: solid;
        border-color: green;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        font-weight: bold;
        overflow: hidden;
        
        color: tan; /*white;*/
        background-color: #404040;
        cursor: pointer;
    }

/********************************************************************************
 ********************************************************************************
 ** ID: "MainBox_Id" Elements                                                  **
 ********************************************************************************
 ********************************************************************************/
 
   /****************************************
    * ID: BackgroundBox                    *
    ****************************************/
    #BackgroundBox
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
 
   /****************************************
    * ID: TopMenu_Box                      *
    * ID: BottomMenu_Box                   *
    ****************************************/
    #TopMenu_Box,
    #BottomMenu_Box
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 2;
        top: 0px;
        le44ft: 0px;
        width: 100%;
        height: 10%;

        padding: 0px;
        border-width: 0px;
        border-style: solid;
        border-color: green;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;

        fo44nt-size: 58px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        color: white;
        co44lor: #7F462C;
        background-color: #202020;
    }
    
    #BottomMenu_Box
    {
        top: 91%;
    }

   /****************************************
    * Class: MenuButton_Class (BUTTONS)    *
    * Class: Product_Button_Class (BUTTONS)*
    ****************************************/
    .MenuButton_Class,
    .Product_Button_Class,
    .Ap44olloGroup_Class,
    .Ti44TanTV_Class,
    .Re44alDebrid_Class,
    .Th44underTV_Class
    {
        display: block;
        position: absolute;
        float: none;
        to44p: 0px;
        le44ft: 0px;
        wi44dth: 100%;
        he44ight: 100%;
        z-index: 4;

        border-style: solid;
        border-color: darkRed; /*#606060;*/
        margin-top: 0.5%;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        font-weight: bold;
        overflow: hidden;
        
        color: tan; /*white;*/
        background-color: #600000;
        cursor: pointer;
    }

   /****************************************
    * Class: Category_Class (BUTTONS)      *
    ****************************************/
    .Category_Class,
    .NABU_Class
    {
        display: none;
        position: absolute;
        float: none;
        z-index: 2;
        
        border-style: solid;
        border-color: darkRed;
        
        color: black;
        background-color: tan;
        cursor: pointer;
    }

/********************************************************************************
 * ID: Info Box                                                                 *
 ********************************************************************************/
    #InfoBox_Id
    {
        display: none;
        position: absolute;
        float: none;
        top: 9.42%;
        left: 0px;
        he44ight: 73.6%;
        width: 100%;
        z-index: 3;

        padding: 20px;
        border-width: 0px;
        border-style: solid;
        border-color: white;
        border-radius: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
            
        fo44nt-size: 18px;
        font-style: normal;
        font-weight: normal;
        font-family: "Times New Roman";
        te44xt-decoration: none;
        text-align: justify;
        overflow: auto;

        color: #808080;
        background-color: black;
    }

/********************************************************************************
 * FILE: "Details_1.js" & "Details_2.js" CSS DATA                               *
 ********************************************************************************/

   /****************************************
    * ID: InfoHeader_Box                   *
    ****************************************/
    #InfoHeader_Box
    {
        display: block;
        
        bo44rder-width: 4px;
        bo44rder-style: solid;
        bo44rder-color: white;
        font-weight: bold;
        text-align: center;
        overflow: hidden;              /*JIM 12/28/24*/originally "hidden" - changed to "display" - caused a home page format issue - changed back to hidden
            
        co44lor: #835C3B;
        background-color: #202020;
    }
        
   /****************************************
    * ID: Home Page Product Header         * JIM 10/28/18
    ****************************************/
    #HomePageProduct_Header
    {
        font-weight: bold;
        color: white;
        text-decoration: none;
        text-align: center;
    }
        
   /****************************************
    * ID: Text Headers                     *
    ****************************************/
    #Product_Header
    {
        font-weight: bold;
        color: white;
        text-decoration: none;
        text-align: center;
    }
        
    #OldPrice_Header,
    {
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: line-through;
        text-align: center;
        color: tan;
    }
        
    #NewPrice_Header
    {
        font-weight: bold;
        font-family: "Times New Roman";
        te44xt-decoration: none;
        text-align: center;
        overflow: hidden;
        color: red;
    }
    
    #Pr44iceCondition_Header
    {
        font-weight: bold;
        font-family: "Times New Roman";
        text-align: center;
        overflow: hidden;
        color: #808080;
    }
    
   /****************************************
    * ID: Hephaestus Image                 *
    ****************************************/
    #Hephaestus_Image
    {
        display: block;
        position: absolute;
        float: none;
        top: 1%;
        left: 0px;
        height: 82%;
        width: 100%;
        z-index: 2;
        margin-top: 8.6%
    }
    
   /****************************************
    * ID: BoxLED_Canvas                    *
    ****************************************/
    #BoxLED_Canvas
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        
        border-width: 0px;
        border-style: solid;
        border-color: white;
    }
    
   /****************************************
    * ID: Hephaestus Text                  *
    ****************************************/
    #Hephaestus_Text
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        top: 84%;
        left: 16.8%;

        padding: 0px;
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;

        font-size: 128%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        color: #835C3B;
        co44lor: #7F462C;
        ba44ckground-color: black;
    }

   /****************************************
    * ID: Product Image Box                *
    ****************************************/
    #ProductImage_Box,
    #AwardImage_Box
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;

        border-width: 0px;
        border-style: solid;
        border-color: white;
    }

   /****************************************
    * ID: Product Image Box                *
    ****************************************/
    #Product_Image,
    #Award_Image
    {
        display: block;
        position: absolute;
        float: none;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        z-index: 4;
    }
        
   /****************************************
    * ID: Quick Details Box                *
    ****************************************/
    #QuickDetails_Box
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        
        border-color: #202020;
        fo44nt-weight: bold;
        text-align: left;
        overflow: display;
        background-color: #202020;
    }
    
   /****************************************
    * ID: Bullet Text Box                  *
    ****************************************/
    #BulletText_Box
    {
        border-width: 0px;
        border-style: solid;
        border-color: white;
    }

   /****************************************
    * ID: SelectImageButtons_Box           *
    ****************************************/
    #SelectImageButtons_Box
    {
        display: block;
        position: absolute;
        float: none;
            
        ma44rgin-top: 20px;
        margin-left: 0px;
        text-align: justify;
            
        border-width: 0px;
        border-style: solid;
        border-color: white;
    }
        
   /****************************************
    * ID: Disclaimer Text Box              * JIM 10/28/18
    ****************************************/
    #DisclaimerText_Box
    {
        display: block;
        position: absolute;
        float: none;
            
        border-width: 0px;
        border-style: solid;
        border-color: white;
        ma44rgin-left: auto;
        ma44rgin-right: auto;
        ma44rgin-top: auto;
        ma44rgin-bottom: auto;
        
        font-size: 74%;
        text-align: justify;
        overflow: hidden;
        
        background-color: #000000;
    }
        
   /****************************************
    * ID: Service Text Box                 *
    ****************************************/
    #ServiceText_Box
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
            
        border-width: 0px;
        border-style: solid;
        border-color: white;
        
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        
        color: white;
        background-color: #202020;
    }
        
   /****************************************
    * ID: Features Text Box                *
    ****************************************/
    #FeaturesText_Box
    {
        display: block;
        position: absolute;
        float: none;
            
        border-width: 0px;
        border-style: solid;
        border-color: white;
        text-align: justify;
        overflow: hidden;
        
        background-color: #202020;
    }
    
    #CenterTheText
    {
        text-align: center;
    }
    
    #PMLP_Special_AddToCart_Button_Box
    {
        text-align: center;
    }
        
   /****************************************
    * ID: Includes Text Box                *
    ****************************************/
    #IncludesText_Box
    {
        display: block;
        po44sition: absolute;
        float: none;
            
        font-weight: bold;
        text-align: justify;
        overflow: hidden;
    }
        
   /****************************************
    * ID: SpecificationsText Box           *
    ****************************************/
    #SpecificationsText_Box
    {
        display: block;
        po44sition: absolute;
        float: none;
            
        font-weight: normal;
        text-align: left;
        overflow: auto;
    }

/********************************************************************************
 * FILE: "PM_Link+.js CSS DATA                                                  *
 ********************************************************************************/

   /****************************************
    * ID: Promo Box                        *
    ****************************************/
    #Promo_Box
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;

        border-width: 0px;
        border-style: solid;
        border-color: white;
        background-color: #202020;
    }
 
    .FAQQ_LinkPlus_Class,
    .FAQQ_LinkMobile_Class,            /*JIM 05/18/21*/
    .FAQQ_Help_Class                   /*JIM 07/02/21*/
    {
        display: block;
        cursor: pointer;
        background-color: #303030;
    }
 
    .FAQ_Text_Class
    {
        display: none;
        cursor: pointer;
        background-color: #303030;
    }
    
/********************************************************************************
 * FILE: "SHOP.js" CSS DATA                                                     *
 ********************************************************************************/

   /****************************************
    * ID: SHOP_Header_Box                  *
    ****************************************/
    #SHOP_Header_Box
    {
        display: block;
        position: relative;
        float: none;
        z-index: 2;
        width: auto;
        height: auto;

        padding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        font-weight: normal;
        text-align: center;
        te44xt-align: justify;
        overflow: hidden;
            
        co44lor: #835C3B;
        background-color: #101010;
    }
    
    #Promo_Reply_ID,                   /*JIM 03/08/18*/
    #PMLD_TitleBox_ID,
    #PMLD_Phone_ID,
    #PMLD_DownloadLinkButton_ID,
    #PMLD_InstallationProcedure_ID
    {
        display: block;
        position: relative;
        fl44oat: left;
        cl44ear: left;
        z-index: 2;
        
        padding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        margin-bottom: 10px;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #202020;
    }
    
    #PMLD_InstallationProcedure_ID
    {
        text-align: left;
    }
    
    #Promo_Box_ID,                     /*JIM 03/08/18*/
    #PMLD_AccessCodeBox_ID
    {
        display: block;
        position: relative;
        fl44oat: left;
        cl44ear: left;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        margin-bottom: 10px;
        text-align: center;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #202020;
    }
    
    label
    {
        margin-left: -20%;
    }
    
    #TOS_Box,                          /*JIM 03/08/18*/
    #PMLP_TOS_Box,                     /*JIM 12/28/24*/
    #PMLE_TOS_Box                      /*JIM 12/28/24*/
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        padding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: center;
        overflow: hidden;
        
        co44lor: green;
        background-color: #202020;
    }
    
    #EnterButton_ID,                    /*JIM 03/08/18*/
    #PMLD_AccessCodeButton_ID
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        text-align: center;
        overflow: hidden;
        
        margin-left: 60%;
        margin-top: -7.8%;
        
        border-style: solid;
        border-color: #808080;
        font-weight: bold;
        
        color: #A0A0A0;
        background-color: #600000;
        background-color: #404040;
        cursor: pointer;
    }

   /****************************************
    * ID: CLASS: PMLP_Box                  * JIM 05/28/20
    ****************************************/
    #PMLP_Box,
    #PMLC_Box,
    #PMLD_Box
    {
        display: block;
        position: relative;
        float: none;
        z-index: 2;
        
        margin-bottom: 20px;           /*JIM 11/18/20*/
        padding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #101010;
    }
    
   /*
    * CLASS: PMLP_Product_No_Box_Class JIM 05/28/20
    */
    .PM44LP_Product_No_Box_Class,        /*JIM 02/24/21 deleted*/
    .PMLP_Line_Button_Class,           /*JIM 02/24/21 added*/
    .PMLP_Month_Button_Class,          /*JIM 02/24/21 added*/
    .PMLC_Line_Button_Class,
    .PMLC_Month_Button_Class
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 2;
        cursor: pointer;
        
        pa44dding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #101010;
    }
    
   /*
    * ID: PMLP_Product_Box             JIM 05/28/20
    */
    #PMLP_Product_Box,
    #PMLC_Product_Box,
    #PMLD_Product_Box
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #202020;
    }
    
    #PMLP_Product_Label,
    #PMLC_Product_Label
    {
        font-weight: bold;
        color: green;
        te44xt-decoration: underline;
        text-align: left;
    }
   /*
    * ID: PMLP_Price_Box               JIM 05/28/20
    */
    #PMLP_Price_Box,
    #PMLC_Price_Box
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        font-weight: bold;
        text-align: justify;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
    #PMLP_Price_Calculation,
    #PMLC_Price_Calculation
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 0px;
        border-style: solid;
        border-color: white;
        font-weight: bold;
        te44xt-align: center;          /*JIM 05/18/21 deleted*/
        text-align: right;             /*JIM 05/18/21 added*/
        vertical-align: middle;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
   /****************************************
    * ID: PMLP_Image_Box                   * JIM 05/28/20
    ****************************************/
    #PMLP_Image_Box,
    #PMLC_Image_Box
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
    #PMLP_LineButtons_Box,             /*JIM 02/24/21 added*/
    #PMLC_LineButtons_Box
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        border-width: 0px;
        border-style: solid;
        border-color: #808080;
        text-align: left;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
    #PMLP_MonthButtons_Box,            /*JIM 02/24/21 added*/
    #PMLC_MonthButtons_Box
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        border-width: 0px;
        border-style: solid;
        border-color: #808080;
        text-align: left;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
   /****************************************
    * ID: PMLP_Image_Text                  * JIM 05/28/20
    ****************************************/
    #PMLP_Image_Text,
    #PMLC_Image_Text
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        top: 61.4%;
        left: 13.4%;

        padding: 0px;
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;

        font-size: 120%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        co44lor: #835C3B;
        color: white;
        co44lor: #7F462C;
        ba44ckground-color: black;
    }
    
   /****************************************
    * ID: PMLP_Includes_Box                *
    ****************************************/
    #PMLP_Includes_Box,
    #PMLC_Includes_Box
    {
        display: block;
        position: relative;
        float: left;
        clear: right;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        background-color: #202020;
    }
   /***********************************************************************************************************/
   /****************************************
    * ID: PMLP_Button_Box                  *
    ****************************************/
    #PMLP_Button_Box,
    #PMLC_Button_Box
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        background-color: #202020;
    }
    
    #PMLP_Button_Child_Box,
    #PMLC_Button_Child_Box
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 0px;
        border-style: solid;
        border-color: red;
        text-align: justify;
        overflow: hidden;
        background-color: #404040;
    }
    
    #PMLP_AddToCart_Button_Box,
    #PMLC_AddToCart_Button_Box
    {
        display: block;
        vi44sibility: hidden;
        position: relative;
        float: right;
        clear: right;
        z-index: 4;
        
        border-width: 0px;
        border-style: solid;
        border-color: green;
        text-align: justify;
        color: aqua;                   /*JIM 12/28/24*/
        overflow: hidden;
        background-color: #404040;
    }
    
    #PMLP_ViewCart_Button_Box,
    #PMLC_ViewCart_Button_Box
    {
        display: block;
        vi44sibility: hidden;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 0px;
        border-style: solid;
        border-color: blue;
        text-align: justify;
        overflow: hidden;
        background-color: #404040;
    }
    
        #PMLC_AppendToCart_Label_Box       /*JIM 12/28/24*/
    {
        display: block;
        position: relative;
        float: right;                  /*JIM 11/14/25*/
        clear: left;
        z-index: 2;
        cursor: pointer;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: left;
        overflow: hidden;
        
        color: green;
        ba44ckground-color: #202020;
        background-color: #101010;
        
        font-weight: bold;
        text-align: center;
        overflow: hidden;
    }
    
    #PMLC_App44endToCart_Button_Box      /*JIM 12/28/24*/
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: left;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
   /****************************************************************************************************************/
   /****************************************
    * CLASS: Item_Box_Class                *
    ****************************************/
    .Item_Box_Class
    {
        display: block;
        position: relative;
        float: none;
        z-index: 2;
        
        padding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #101010;
    }
    
    .Item_Header_Box_Class
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        co44lor: #835C3B;
        background-color: #202020;
    }
    
    .Item_Label_Box_Class
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        font-weight: bold;
        te44xt-align: justify;         /*JIM 12/28/24 - deleted*/
        text-align: left;              /*JIM 12/28/24 - added*/
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
    .Item_Price_Box_Class
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        pa44dding: 10px;
        border-width: 0px;
        border-style: solid;
        border-color: white;
        font-weight: bold;
        text-align: center;
        vertical-align: middle;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
   /****************************************
    * CLASS: Item_Image_Box_Class          *
    ****************************************/
    .Item_Image_Box_Class
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        color: green;
        background-color: #202020;
    }
    
   /****************************************
    * ID: Item_Image_Text                  *
    ****************************************/
    #Item_Image_Text
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;
        top: 58.8%;
        left: 13.4%;

        padding: 0px;
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;

        font-size: 120%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        co44lor: #835C3B;
        color: white;
        co44lor: #7F462C;
        ba44ckground-color: black;
    }
    
   /****************************************
    * CLASS: Item_Includes_Box_Class       *
    ****************************************/
    .Item_Includes_Box_Class
    {
        display: block;
        position: relative;
        float: left;
        clear: right;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        background-color: #202020;
    }
   /**************************************************************************************************/
   /****************************************
    * CLASS: Item_Button_Box_Class         *
    ****************************************/
    .Item_Button_Box_Class
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        text-align: justify;
        overflow: hidden;
        
        background-color: #202020;
    }
    
    .Item_Button_Child_Box_Class
    {
        display: block;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 0px;
        border-style: solid;
        border-color: red;
        text-align: justify;
        overflow: hidden;
        
        background-color: #404040;
    }
    
    .Item_AddToCart_Button_Box_Class
    {
        display: block;
        vi44sibility: hidden;
        position: relative;
        float: right;
        clear: right;
        z-index: 4;
        
        border-width: 0px;
        border-style: solid;
        border-color: green;
        text-align: justify;
        overflow: hidden;
        
        background-color: #404040;
    }
    
    .Item_ViewCart_Button_Box_Class
    {
        display: block;
        vi44sibility: hidden;
        position: relative;
        float: right;
        clear: right;
        z-index: 2;
        
        border-width: 0px;
        border-style: solid;
        border-color: blue;
        text-align: justify;
        overflow: hidden;
        
        background-color: #404040;
    }
    
   /****************************************
    * ID: SHOP_Footer_Box                  *
    ****************************************/
    #SHOP_Footer_Box
    {
        display: block;
        position: relative;
        float: none;
        cl44ear: both;
        z-index: 2;
        width: auto;
        height: auto;

        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        font-weight: normal;
        text-align: justify;
        overflow: hidden;
            
        background-color: #101010;
    }

   /****************************************
    * ID: BackgroundButton_Id              *
    ****************************************/
    #BackgroundButton_Id
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 2;
        top: 0px;
        left: 0px;
        wi44dth: 100%;
        he44ight: 10%;

        padding: 0px;
        border-width: 0px;
        border-style: solid;
        border-color: green;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;

        fo44nt-size: 58px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        cursor: pointer;
        
        color: white;
        background-color: #202020;
    }

/********************************************************************************
 * FILE: "News.js" CSS DATA                                                     * JIM 01/12/18
 ********************************************************************************/
     .Screenshot_Box_Class
    {
        display: block;
        position: relative;
        float: none;
        z-index: 2;
        
        padding: 10px;
        border-width: 0px;
        border-style: solid;
        border-color: white;
        text-align: justify;
        overflow: hidden;
        ov44erflow: auto;
        
        background-color: #202020;
    }

    #Text_Centered_Id
    {
        text-align: center;
    }

/********************************************************************************
 * FILE: "Links.js" CSS DATA                                                    * JIM 12/02/18
 ********************************************************************************/

   /****************************************
    * Class: ICFOM Box Link                *                                   /*JIM 12/02/18 ICFOM
    ****************************************/
        #ICFOM_BoxLink,
        #Meltdown_BoxLink,
        #TwitchTV_BoxLink,
        #NABU_BoxLink                                                          /* JIM 10/16/22 NABU*/
        {
            display: block;
            position: relative;
            float: none;
            width: 120px;
            height: 40px;
            To44p: 190px;
            Le44ft: 85px;
            cursor: pointer;
            
            padding: -10px;
            border-width: 5px;
            border-style: solid;
            border-color: blue;
            ma44rgin-left: 10px;
            ma44rgin-right: 10px;
            ma44rgin-top: 0px;
            
            font-size: 18px;
            font-style: normal;
            font-weight: bold;
            font-family: "Times New Roman";
            text-decoration: none;
            text-align: center;
            
            color: SkyBlue;
            background-color: purple;
            ba44ckground-image: url("../Content-Image/pattern_01.gif");          /*JIM 02/12/14 added quotes and backslash*/
        }

/********************************************************************************
 * FILE: "About.js" CSS DATA                                                    *
 ********************************************************************************/
 
    .HelpHeader_Class
    {
        display: block;
        cursor: pointer;
    }
 
    .HelpText_Class
    {
        display: none;
        cursor: pointer;
    }
 
 
   /****************************************
    * ID: MAS-I Image                      *
    ****************************************/
    #MAS-I_Image
    {
        float: none;
        margin-left: 24%;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
/********************************************************************************
 * FILE: "Contact.js" CSS DATA                                                  *
 ********************************************************************************/
    #PromoCodeButton_ID
    {
        display: block;
        position: relative;
        float: left;
        clear: left;
        z-index: 2;
        
        text-align: center;
        overflow: hidden;
        
        margin-left: 43.5%;
        ma44rgin-right: 100%;
        margin-top: 20px;
        
        border-style: solid;
        border-color: #808080;
        font-weight: bold;
        
        color: #A0A0A0;
        background-color: #600000;
        background-color: #404040;
        cursor: pointer;
    }

/********************************************************************************
 * FILE: "Codes.js" & CSS DATA                                                  *
 ********************************************************************************/

   /****************************************
    * ID: File Manager Headers             *
    ****************************************/
    #FileManager_Header
    {
        border-width: 1px;
        border-style: solid;
        border-color: #808080;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        
        color: white;
    }

   /****************************************
    * ID: Promo Code Boxes                 *
    ****************************************/
    #FileInput_Box,
    #TradeGroup1_Box,
    #TradeGroup2_Box,
    #ButtonCommands_Box
    {
        display: block;
        position: relative;
        fl44oat: left;
        cl44ear: left;
        wi44dth: 100%;
        height: 8.8%;
        z-index: 2;
        
        padding: 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #808080;

        margin-top: 20px;
        font-weight: bold;
        text-align: left;
        overflow: hidden;
            
        co44lor: #835C3B;
        background-color: #101010;
    }
    
    #ButtonCommands_Box
    {
        height: 10.5%;
    }
    
   /****************************************
    * ID: FileInput_Box                    *
    ****************************************/
    #FilePath_ID
    {
        display: block;
        position: relative;
        z-index: 2;
        
        margin-bottom: 10px;
        font-weight: bold;
        text-align: left;
        overflow: hidden;
    }
    
    #FilePath_ID
    {
        margin-bottom: 5px;
        float: right;
    }
    

    #FileName_ID
    {
        margin-bottom: 0px;
        float: right;
    }
    
   /****************************************
    * ID: TradeGroup1_Box                  *
    ****************************************/
    #GroupName_ID
    {
        margin-bottom: 5px;
        float: right;
    }
    
    #GroupNote_ID
    {
        margin-bottom: 0px;
        float: right;
    }
    
   /****************************************
    * ID: TradeGroup2_Box                   *
    ****************************************/
    #GroupCode_ID
    {
        position: absolute;
        to44p: -22px;
        left: 146px;
        z-index: 2;
        
        ma44rgin-bottom: 10px;
        fo44nt-weight: bold;
        te44xt-align: left;
        ov44erflow: hidden;
    }
    
    #GroupSize_ID
    {
        position: absolute;
        top: 36px;
        left: 146px;
        z-index: 2;
        
        ma44rgin-bottom: 5px;
        fo44nt-weight: bold;
        te44xt-align: left;
        ov44erflow: hidden;
    }
    
   /****************************************
    * Class: CommandButton_Class (BUTTONS) *
    ****************************************/
    .CommandButton_Class
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 4;

        border-style: solid;
        border-color: #808080;
        bo44rder-style: solid;
        bo44rder-color: darkRed; /*#606060;*/
        margin-top: 1.5%;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        
        font-weight: bold;
        text-align: center;
        overflow: hidden;

        color: #A0A0A0;
        background-color: #404040;
        cursor: pointer;
    }

/********************************************************************************
 * FILE: "Text.js" & CSS DATA                                                   *
 ********************************************************************************/
    #TextDisplay_ID
    {
        display: none;
        position: relative;
        float: right;
        clear: none;
        z-index: 0;
        align: left;
        
        top: -947px;

        padding: 0px;
        border-style: solid;
        border-color: black;
        ma44rgin-left: auto;
        margin-right: 40px;
        ma44rgin-top: auto;
        ma44rgin-bottom: auto;
            
        font-style: normal;
        font-weight: normal;
        font-family: "Consolas";
        text-decoration: none;
        text-align: left;
        overflow: hidden;
        
        color: white;
        background-color: #404040;
    }
    
/********************************************************************************
 * ID: DisplayArea_ID                                                           *
 ********************************************************************************/
    #DisplayArea_ID
    {
        position: relative;
        z-index: 0;
        padding: 0px;
        margin-left: 10px;
        ma44rgin-right: auto;
        margin-top: 10px;
        overflow: auto;
    }
    
    #TextArea_ID
    {
        margin-left: 10px;
        margin-top: 10px;
    }

/********************************************************************************
 ********************************************************************************
 ** ID: "CompareBox_Id" Elements                                               **
 ********************************************************************************
 ********************************************************************************/

   /****************************************
    * ID: BackgroundBox2                   *
    ****************************************/
    #BackgroundBox2
    {
        display: block;
        position: relative;
        float: none;
        z-index: 2;
        top: 6px;
        left: 700px;
        width: 3200px;
        height: 30px;
        
        border-width: 0px;
        border-style: solid;
        border-color: white;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        
        font-size: 20px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        ve44rtical-align: middle;
        overflow: hidden;
    }

/********************************************************************************
 * ID: "Debug" BOX ELEMENTS                                                     *
 ********************************************************************************/
    #DebugBox_Id
    {
        display: none;
        position: relative;
        float: right;
        z-index: 5;
        top: -600px;
        left: 0px;
        width: auto;
        height: auto;
        
        border-width: 4px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        
        font-size: 16px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        ve44rtical-align: middle;
        overflow: hidden;
        
        color: black;
        background-color: white;
    }

/********************************************************************************
 ********************************************************************************
 ** PELLMILL CSS3 CODE - END                                                   **
 ********************************************************************************
 ********************************************************************************/
 
/********************************************************************************
 ********************************************************************************
 ** CYBER STATS CODE                                                           **
 ********************************************************************************
 ********************************************************************************/
/*
   /****************************************
    * Class: Category_Class (BUTTONS)      *
    ****************************************/
    .Category_Class,
    .Sports_Class,
    .MotorSports_Class
    {
        display: none;
        position: absolute;
        float: none;
        z-index: 2;
        al44ign: "center";
        
        border-style: solid;
        border-color: darkRed;
        
        color: black;
        background-color: tan;
        cursor: pointer;
    }
*/
/*
   /****************************************
    * Class: OptionButton_Class (BUTTONS)  *
    * Class: ActionButton_Class (BUTTONS)  *
    ****************************************/
    .OptionButton_Class,
    .ActionButton_Class
    {
        display: block;
        position: absolute;
        float: none;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 4;

        border-style: solid;
        border-color: darkRed; /*#606060;*/
        margin-top: 0.5%;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        font-weight: bold;
        overflow: hidden;
        
        color: tan; /*white;*/
        background-color: #600000;
        cursor: pointer;
    }
*/
/*
/********************************************************************************
 * Class: MainBoxData_Class BOX ELEMENTS (DATA)                                 *
 * Class: CompareBoxData_Class BOX ELEMENTS (DATA)                              *
 ********************************************************************************/
    .MainBoxData_Class,
    .CompareBoxData_Class
    {
        display: none;
        position: absolute;
        float: none;
        z-index: 2;
        al44ign: "center";
        
        border-style: solid;
        border-color: black;
        overflow: hidden;
        
        color: black;
        background-color: #700000;
        cursor: pointer;
    }
*/
/*
   /****************************************
    * Class: PositiveLabelBox_Class (DATA) *
    ****************************************/
    .PositiveLabelBox_Class
    {
        display: block;
        position: relative;
        float: left;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 36%;
        height: 16.6%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 4%;
        margin-right: 0px;
        margin-top: 4%;    
        margin-bottom: 0px;        
        
        fo44nt-size: 100%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        overflow: hidden;
        
        color: black;
        ba44ckground-color: darkGreen;
    }
*/
/*
   /****************************************
    * Class: PositiveDataBox_Class (DATA)  *
    ****************************************/
    .PositiveDataBox_Class
    {
        display: block;
        position: relative;
        float: right;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 56%;
        height: 16.6%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 4%;
        margin-top: 4%;    
        margin-bottom: 0px;        
        
        fo44nt-size: 100%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: right;
        overflow: hidden;
        
        color: black;
        ba44ckground-color: green;
    }
*/
/*
   /****************************************
    * Class: NegativeLabelBox_Class (DATA) *
    ****************************************/
    .NegativeLabelBox_Class
    {
        display: block;
        position: relative;
        float: left;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 36%;
        height: 16.6%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 4%;
        margin-right: 0px;
        margin-top: 0px;    
        margin-bottom: 4%;        
        
        fo44nt-size: 100%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        overflow: hidden;
        
        color: black;
        ba44ckground-color: darkRed;
    }
*/
   /****************************************
    * Class: NegativeDataBox_Class (DATA)  *
    ****************************************/
    .NegativeDataBox_Class
    {
        display: block;
        position: relative;
        float: right;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 56%;
        height: 16.6%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 4%;
        margin-top: 0px;    
        margin-bottom: 4%;        
        
        fo44nt-size: 100%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: right;
        overflow: hidden;
        
        color: black;
        ba44ckground-color: #A02020;
    }
/*
   /****************************************
    * Class: TotalLabelBox_Class (DATA)    *
    ****************************************/
    .TotalLabelBox_Class
    {
        display: block;
        position: relative;
        float: left;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 36%;
        height: 18.6%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 4%;
        margin-right: 0px;
        margin-top: 0px;    
        margin-bottom: 4.6%;        
        
        fo44nt-size: 20px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        ve44rtical-align: middle;
        overflow: hidden;
        
        color: black;
    }
*/
/*
   /****************************************
    * Class: TotalDataBox_Class (DATA)     *
    ****************************************/
    .TotalDataBox_Class
    {
        display: block;
        position: relative;
        float: right;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 56%;
        height: 18.6%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 4%;
        margin-top: 0px;    
        margin-bottom: 4.6%;        
        
        fo44nt-size: 20px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: right;
        ve44rtical-align: middle;
        overflow: hidden;
        
        color: black;
    }
*/
/*
   /****************************************
    * Class: ItemLabelBox_Class (DATA)  *
    ****************************************/
    .ItemLabelBox_Class
    {
        display: block;
        position: relative;
        float: none;
        z-index: 2;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 40%;
        
        border-width: 0px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;    
        margin-bottom: 0px;        
        
        font-size: 100%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        color: white;
        background-color: #606060;
    }
*/
/********************************************************************************
 ********************************************************************************
 ** ID: "CompareBox_Id" Elements                                               **
 ********************************************************************************
 ********************************************************************************/
/*
   /****************************************
    * ID: Option Buttons Box               *
    ****************************************/
    #OptionButtonsBox
    {
        display: block;
        position: absolute;
        float: none;
        z-index: 6;
        
        bo44rder-width: 1px;
        bo44rder-style: solid;
        bo44rder-color: white;
        
        co44lor: PromoCode_State;
        ba44ckground-color: blue;
    }
*/
/*
   /****************************************
    * ID: SelectBox Cursor                 *
    ****************************************/
    #SelectBox
    {
        display: none;
        position: absolute;
        float: none;
        z-44index: 2;

        border-width: 0px;
        border-style: solid;
        border-color: white;
        bo44rder-radius: 0px; 
        
        fo44nt-size: 100%;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: center;
        overflow: hidden;
        
        color: black;
        background-color: #202020;
        cursor: pointer;
    }
*/
/*
   /****************************************
    * ID: MAS-I Image                      *
    ****************************************/
    #MAS-I_Image
    {
        float: none;
        margin-left: 24%;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
*/
/*
/********************************************************************************
 * ID: Process Box                                                              *
 ********************************************************************************/
    #ProcessBox_Id
    {
        display: none;
        position: relative;
        float: none;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        z-index: 6;

        padding: 20px;
        border-width: 0px;
        border-style: solid;
        border-color: white;
        border-radius: 0px;
        margin-top: 0px;
        ma44rgin-top: 8.84%;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
            
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        font-family: "Times New Roman";
        te44xt-decoration: none;
        te44xt-align: justify;
        overflow: visible;
            
        color: black;
        background-color: #808080;
    }
*/
/*
   /****************************************
    * ID: Data Subject Text                *
    ****************************************/
    #DataSubject_Text
    {
        position: relative;
        float: none;
        z-index: 3;
        ma44rgin-left: auto;
        ma44rgin-right: auto;
        font-weight: bold;
        overflow: hidden;
        
        background-color: #404040;
    }
*/
/*
   /****************************************
    * ID: Cost Menu, Period Menu           *
    ****************************************/
    #Cost_Menu,
    #Duration_Menu,
    #Strength_Calc,
    #Span_Calc
    {
        position: relative;
        float: left;
        clear: none;
        top: 18%;
        height: 60px;
        width: 132px;
        z-index: 3;
        
        font-size: 20px;
        font-weight: bold;
        overflow: hidden;
        
        background-color: #404040;
    }
    
    #Duration_Menu
    {
        position: relative;
        float: left;
        left: 5%;
    }
    
    #Strength_Calc
    {
        position: relative;
        float: left;
        left: 10%;
    }
    
    #Span_Calc
    {
        position: relative;
        float: right;
        le44ft: 15%;
    }
    
    #Strength_Calc_Box,
    #Span_Calc_Box
    {
        position: relative;
        float: none;
        top: 0px;
        left: 0px;
        height: 26px;
        width: 115px;
        z-index: 6;
    
        border-width: 2.4px;
        border-style: inset;
        border-color: white;
        border-radius: 0px;
        margin-left: 6px;
        margin-right: 4px;
        margin-top: 2px;
        margin-bottom: 4px;
        
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        font-family: Calibri;
        
        color: black;
        background-color: #606060;
    }
*/
/*
/********************************************************************************
 * ID: "Debug" BOX ELEMENTS                                                     *
 ********************************************************************************/
    #DebugBox_Id
    {
        display: none;
        position: relative;
        float: right;
        z-index: 5;
        top: -600px;
        left: 0px;
        width: auto;
        height: auto;
        
        border-width: 4px;
        border-style: solid;
        border-color: darkRed;
        border-radius: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;    
        margin-bottom: 0px;        
        
        font-size: 16px;
        font-style: normal;
        font-weight: bold;
        font-family: "Times New Roman";
        text-decoration: none;
        text-align: left;
        ve44rtical-align: middle;
        overflow: hidden;
        
        color: black;
        background-color: white;
    }
*/