﻿/* DEFAULTS
----------------------------------------------------------*/

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Img/green_background.jpg') center center / cover no-repeat;
/*    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Img/green_background.jpg') center center / cover no-repeat;*/
    /*    filter: grayscale(100%);*/
    z-index: -1;
    pointer-events: none;
}

body {
    font-size: .80em;
    font-family: Arial, "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #696969;
}

a:link, a:visited
{
    color: #008500;
}

a:hover
{
    color: #1d60ff;
    text-decoration: none;
}

a:active
{
    color: #034af3;
}

p
{
    margin-bottom: 5px;
    line-height: 1.6em;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    /*font-variant: small-caps;*/
    text-transform: none;
    font-weight: bold;
    margin-bottom: 0;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0;
    margin-bottom: 0;
}

h2
{
    font-size: 1.5em;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
    margin-top: 0;
}


/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 90%;
    margin: 0 auto;
    background: #fff;
}

#header {
    height: 80px;
    padding: 20px;
}

    #header h1
    {
        margin: 0;
        font-size: 2em;
    }

    #header table
    {
        margin: 0;
        width: 100%;
        vertical-align: middle;
    }


#navigation {
    float: left;
    width: 100%;
    background: #008500 url('Img/green-abstract-background.jpg'); 
    /*    background: linear-gradient(to right, #666, #444, #666);
    color: white;
    background-blend-mode: multiply;
    background-size: cover;*/
}

    #navigation ul
    {
        margin: 0;
        padding: 0;
        width: 100%;
    }

        #navigation ul li
        {
            list-style-type: none;
            display: inline;
            width: auto;
        }

    #navigation li a:hover {
        background: #383;
/*        background: #666;*/
    }

.mainLinks
{
    width: 520px;
    background-color: #ffffff;
}

#navigation li a {
    display: block;
    font-family: Arial;
    float: left;
    padding: 10px 10px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #336600;
/*    background-color: #444;*/
    border-right: 1px dashed #fff;
    font-size: 11pt;
}

#navigation li.wreckers a {
    display: block;
    font-family: Arial;
    float: left;
    padding: 5px 10px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    text-decoration: none;
    /*background-color: #336600;*/
    background-color: #444;
    border-right: 1px dashed #fff;
    font-size: 11pt;
}

    #navigation li.wreckers a:hover {
        /*background: #383;*/
        background-color: #666;
    }

.navFiller
{
    margin-left: -200px;
}

#content {
    clear: left;
    padding: 10px;
    flex: 1; /* This fills remaining space and pushes footer down */
}

    #content h2
    {
        color: #000;
        font-size: 160%;
        margin: 0 0 .5em;
    }

#footer {
    background: #ccc;
    text-align: right;
    padding: 20px;
    margin-top: auto;
}

/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink
{
    background-color: #3a4f63;
    width: 100%;
}

div.menu
{
    padding: 4px 0 4px 8px;
}

    div.menu ul
    {
        list-style: none;
        margin: 0;
        padding: 0;
        width: auto;
    }

        div.menu ul li a, div.menu ul li a:visited
        {
            background-color: #465c71;
            border: 1px #4e667d solid;
            color: #dde4ec;
            display: block;
            line-height: 1.35em;
            padding: 4px 20px;
            text-decoration: none;
            white-space: nowrap;
        }

            div.menu ul li a:hover
            {
                background-color: #bfcbd6;
                color: #465c71;
                text-decoration: none;
            }

            div.menu ul li a:active
            {
                background-color: #465c71;
                color: #cfdbe6;
                text-decoration: none;
            }

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset
{
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #ccc;
}

    fieldset p
    {
        margin: 2px 12px 10px 10px;
    }

    fieldset.login label, fieldset.register label, fieldset.changePassword label
    {
        display: block;
    }

    fieldset label.inline
    {
        display: inline;
    }

legend
{
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry
{
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry
{
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo
{
    width: 42%;
}

/* MISC  
----------------------------------------------------------*/

.clear
{
    clear: both;
}

.title
{
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

.loginDisplay
{
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px;
    color: White;
}

    .loginDisplay a:link
    {
        color: white;
    }

    .loginDisplay a:visited
    {
        color: white;
    }

    .loginDisplay a:hover
    {
        color: white;
    }

.failureNotification
{
    font-size: 1.2em;
    color: Red;
}

.bold
{
    font-weight: bold;
}

.centre
{
    text-align: center;
}

.right
{
    text-align: right;
}

.left
{
    text-align: left;
}

.top
{
    vertical-align: top;
}

.extraSmall
{
    font-size: 8pt;
    font-family: Calibri;
}

.small
{
    font-size: 9pt;
    font-family: Calibri;
}

.smallCentred
{
    font-size: 9pt;
    font-family: Calibri;
    vertical-align: middle;
}

.large
{
    font-size: 30px;
    font-family: Calibri;
}

.medium
{
    font-size: 18px;
    font-family: Calibri;
}

.submitButton
{
    text-align: right;
    padding-right: 10px;
}

.displayProducts
{
    font-size: 10pt;
}

.topalign
{
    vertical-align: top;
}

.SearchSpecCountLines
{
    margin-left: 25px;
    color: #003300; /*#4682B4;*/
    font-size: 11pt;
}

.DisplaySpecCountLines
{
    color: #003300; /*#4682B4;*/
}

.StatusFeedback
{
    color: #4682B4;
}

/* Form display */
input
{
    /* background-color: #EEE; */
    padding: 3px;
    border: 1px solid #CCC;
}

select
{
    /* background-color: #EEE; */
    padding: 3px;
    border: 1px solid #CCC;
}

.displayDisclaimer
{
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 5px;
    padding-bottom: 5px; /* border: 1px solid #ccc;  */
    font-size: 10px;
    text-align: justify;
}

.centrePage
{
    margin-left: 10%;
    margin-right: 10%;
}

.statusTerms 
{
    margin-left: 10%;
    margin-right: 10%
}

.displayTable
{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fefefe;
    border: 1px solid #CCC;
    color: #333;
    box-shadow: 0 0 8px #cccccc;
    -moz-box-shadow: 0 0 8px #cccccc;
    -webkit-box-shadow: 0 0 8px #cccccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 5px 10px;
}

    .displayTable td
    {
        vertical-align: top;
    }

    .displayTable .divider
    {
        height: 5px;
        border-bottom: 1px solid #CCC;
        color: #333;
        box-shadow: 0 0 8px #cccccc;
        -moz-box-shadow: 0 0 8px #cccccc;
        -webkit-box-shadow: 0 0 8px #cccccc;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

.displayDealer
{
    width: 500px;
    margin-left: 25%;
}

.message
{
    text-align: center;
    padding-left: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
    padding-top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #006600;
}

.message_small
{
    text-align: left;
    padding: 5px;
    font-size: 14px;
    font-weight: bold; /*text-shadow: -1px -1px 1px #cccccc;     filter: dropshadow(color=#ffffff, offx=1, offy=1);*/
}

.message_left
{
    text-align: left;
    padding: 10px;
    font-size: 16px;
    font-weight: bold; /*text-shadow: -1px -1px 1px #cccccc;     filter: dropshadow(color=#ffffff, offx=1, offy=1);*/
    color: #006600;
}

.tagline
{
    text-align: center;
    padding-top: -10px;
    padding-bottom: 5px;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    text-shadow: -1px -1px 1px #cccccc; /*filter: dropshadow(color=#ffffff, offx=1, offy=1);*/
}

.tagline
{
    text-align: center;
    padding-top: -10px;
    padding-bottom: 5px;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    text-shadow: -1px -1px 1px #cccccc; /*filter: dropshadow(color=#ffffff, offx=1, offy=1);*/
}

.labelTitle
{
    font-weight: bold;
}

.labelTitle
{
    font-weight: bold;
}

.tabButton {
    background: linear-gradient(to bottom, #f0f0f0, #c0c0c0);
    border-radius: 8px 8px 0 0;
    top-left, top-right, bottom-right, bottom-left box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid #999;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    width: 150px;
    height: 35px;
}

    .tabButton:hover {
        font-weight: bold;
        font-style: italic;
        color: Black;
        width: 150px;
        height: 35px;
    }



.tabButtonParts {
    background: linear-gradient(to bottom, #fffbe5, #ffe066); /* soft light yellow to gentle golden yellow */
    border-radius: 8px 8px 0 0;
    border: 1px solid #7a5a1e;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.15);
    padding: 4px 10px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    color: black;
    font-size: 14px;
    font-weight: bold;
    width: 150px;
    height: 35px;
}

    .tabButtonParts:hover
    {
        font-weight: bold;
        font-style: italic;
        width: 150px;
        height: 35px;
    }

.tabButtonDisabled 
{
    background: linear-gradient(to bottom, #f0f0f0, #c0c0c0);
    border-radius: 8px 8px 0 0;
    top-left, top-right, bottom-right, bottom-left box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid #999;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    width: 150px;
    height: 35px;
}

    .tabButtonDisabled:hover
    {
        font-weight: normal;
        font-style: normal;
    }

.selectedTabButton 
{
    background: linear-gradient(to bottom, #e0f0e0, #6ac46a); /* light green to mid green */
    border-radius: 8px 8px 0 0;
    border: 1px solid #4a944a;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.1);
    padding: 4px 10px;
    font-size: 14px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    width: 150px;
    height: 35px;
    font-weight: bold;
}

/* for data display */
.displayData
{
    font: 10pt Arial;
    padding: 5px;
    width: 50%;
}

.displayDataSearch
{
    font: 10pt Arial;
    padding: 5px;
    width: 900px;
}

.displayData ol
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.displayData li
{
    padding: 4px; /*#f5f5f5;*/
    margin-bottom: 1px;
    background-color: #EDFAED;
}

    .displayData li.list_alt
    {
        padding: 4px; /*#f5f5f5;*/
        margin-bottom: 1px;
        background-color: #FFFFFF;
    }

    .displayData li#send
    {
        background: none;
        margin-top: 6px;
    }

.displayData .nameLabel
{
    float: left;
    width: 115px;
    text-align: right;
    margin-right: 7px; /*font-weight: bold;*/
    color: #8b8989;
    line-height: 20px; /* This will make the labels vertically centered with the inputs */
}

.displayData .dataLabel
{
    padding: 1px;
    font: 12pt Arial;
    width: 70%; /* border: 1px solid #999999; */
}

    .displayData .dataLabel:focus
    {
        border: 1px solid #666;
        background: #e3f1f1;
    }

.dataTagline
{
    font-size: 12pt;
    color: #003300;
    font-style: italic;
    font-weight: bold;
}


.displayPicture
{
    background-color: #EDFAED;
    border: 1px solid #666666;
    color: #666666;
    float: right;
    font-size: 88%;
    margin: 0 0 10px 10px;
    padding: 5px;
    width: 45%;
}

.alphaButton
{
    padding: 10px;
    font-size: 14pt;
}


.tabContent
{
    font: 10pt Arial;
    padding: 5px;
    width: 950px;
    border: solid 2px silver;
}

.displayDataSearch ol
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.displayDataSearch li
{
    padding: 4px;
    background: #ffffff; /*#e1e1e1;*/
    margin-bottom: 1px;
}

    .displayDataSearch li#send
    {
        background: none;
        margin-top: 6px;
    }

.displayDataSearch .nameLabel
{
    float: left;
    width: 120px;
    text-align: right;
    margin-right: 7px; /*font-weight: bold;*/
    color: #8b8989;
    line-height: 20px; /* This will make the labels vertically centered with the inputs */
    font-size: 12px;
}

.displayDataSearch .nameLabel_col2
{
    text-align: right;
    margin-left: 5px;
    width: 120px;
    margin-right: 7px; /*font-weight: bold;*/
    color: #8b8989;
    line-height: 20px; /* This will make the labels vertically centered with the inputs */
    font-size: 12px;
}

.displayDataSearch .nameLabelPart
{
    float: left;
    text-align: right;
    padding-right: 5px;
    color: #8b8989;
    line-height: 20px; /* This will make the labels vertically centered with the inputs */
    font-size: 12px;
}

.displayDataSearch .nameLabelPart_col2
{
    text-align: right;
    padding-right: 5px;
    color: #8b8989;
    line-height: 20px; /* This will make the labels vertically centered with the inputs */
    font-size: 12px;
}

.displayDataSearch .dataLabel
{
    padding: 1px;
    font: 12pt Arial; /* border: 1px solid #999999; */
    width: 300px;
}

    .displayDataSearch .dataLabel:focus
    {
        border: 1px solid #666;
        background: #e3f1f1;
    }

.dealerHeader
{
    background-color: #B8F8A3;
    padding: 5px;
}

.dealerDetails
{
    background-color: #EDFAED;
    color: Black;
}

.dealerDetails_alt
{
    background-color: #FFF;
    color: Black;
}

.dealerDetailsTable
{
    width: 85%;
}

    .dealerDetailsTable td
    {
        border: 1px solid #eee;
    }

.gridHeader
{
    background-color: #B8F8A3;
    color: #000;
    font-weight: normal;
}

.gridFooter
{
    background-color: #B8F8A3;
}

.gridDetails
{
    background-color: #EDFAED;
    border: 1px solid #666666;
}


.gridDetails_alt
{
    background-color: #FFF;
    border: 1px solid #666666;
}

.gridFocused a:link
{
    color: #008500;
}

/************************************************************************************************
**************************************   Display Product   **************************************
************************************************************************************************/

#displayProduct
{
    margin: 10px;
    width: 850px;
    background-color: #FFF;
    border: 3px solid #333;
    color: #000;
    height: auto;
}



td.productLabel
{
    text-align: right;
    padding-right: 7px;
    width: 20%;
    color: #999999;
    vertical-align: top;
}

#displayProduct .productLabel_alt
{
    text-align: right;
    padding-right: 7px;
    color: #8b8989;
    vertical-align: top;
    background-color: #EDFAED;
}

#displayProduct .productDetail
{
    padding-left: 10px;
    font: 12pt Calibri;
    width: 30%;
}


#displayProduct .sectionHeading
{
    font-size: 10pt;
    color: #003300;
}

#displayProduct .sectionHeading_SpecLine
{
    font-size: 10pt;
    color: #003300;
    font-weight: bold;
    font-style: italic;
}

#displayProduct .sectionHeading_CountLine
{
    font-size: 10pt;
    color: #003300;
}

#productHeading
{
    margin-top: 10px;
    margin-bottom: 25px;
    background-color: #EDFAED;
    border: 1px solid #333;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.productHeadingDetails
{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.productMainHeading
{
    margin: 0;
    margin-bottom: 5px;
    color: #003300;
}

.productMainHeadingSub
{
    margin: 0;
    margin-bottom: 5px;
    font-size: 12pt;
    color: #003300;
}

#productHeading h1
{
    margin: 0;
    padding: .5em;
    font-size: 12pt;
}

#pictures
{
    float: right;
    width: 400px;
    margin-right: 20px;
    padding-top: 5px;
}

    #pictures p
    {
        margin-top: 0;
    }

#productContent
{
    padding-top: 1em;
    margin: 0 410px 0 10px;
}

    #productContent h2
    {
        margin-top: 0;
    }

.blueText
{
    color: SteelBlue;
}

/* Product Prinatable user control */
.showPrintProduct
{
    width: 100%;
}


.ppd_PrintableArea
{
    border: 2px solid black;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.ppd_ProductHeading
{
    text-align: center;
    color: #006400;
    margin-bottom: 10px;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
}

.ppd_ProductDescription
{
    color: #006400;
    text-align: center;
    font-weight: bold;
}

.ppd_Picture
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
    padding-bottom: 20px;
}

.thumbnail
{
    width: 85px;
    height: 70px;
}

.ppd_Price
{
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.ppd_Price_MyStock
{
    font-size: 20px;
    font-weight: bold;
}

.ppd_Price_More
{
    font-size: 14px;
    font-weight: normal;
}

.ppd_Price table
{
    margin: auto;
    width: 100%;
}

.ppd_Price td
{
    width: 25%;
}

.ppd_DisplayDetails
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
}

    .ppd_DisplayDetails table
    {
        margin: auto;
        width: 75%;
    }

.ppd_ProductDescription td
{
    text-align: right;
    width: 20%;
    color: #999999;
    vertical-align: top;
    padding-right: 7px;
    margin: 0;
}

.ppd_DisplayDetails td
{
    vertical-align: top;
}

.ppd_DisplayDetails th
{
    color: #336600;
    font-size: 14px;
    text-align: left;
    padding: 10px 5px 10px 25px;
}

.ppd_labelHeading
{
    font-size: 12px;
    color: #336600;
    background-color: #dddddd; /*#999999;*/
    text-align: right;
    padding: 5px;
    width: 15%;
    font-weight: bold; /*text-align: right;     padding-right: 7px;     color: #CCCCCC; */
}

.ppd_labelData
{
    font-size: 12px;
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    width: 35%;
    padding: 5px;
    text-align: left;
}

.ppd_NoData
{
    font-size: 12px;
    color: #000000;
    background-color: #eeeeee; /*#cccccc; */
    padding: 5px;
}

ul.productList
{
    list-style: none;
}

li.productList
{
    list-style: none;
}


/**************************************************************************/

.ep_labelHeading
{
    font-size: 11px;
    color: #336600;
    background-color: #dddddd; /*#999999;*/
    text-align: right;
    padding: 5px;
    width: 80px;
    font-weight: bold; /*text-align: right;     padding-right: 7px;     color: #CCCCCC; */
}

.ep_labelData
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    width: 160px;
    padding: 5px;
    text-align: left;
}

.ep_labelText_small
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 0;
    text-align: left;
    font-size: 10px;
}

.ep_labelText
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 5px;
    text-align: left;
}

.ep_labelText_centre
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 5px;
    text-align: center;
}

.ep_NoData
{
    font-size: 12px;
    color: #000000;
    background-color: #eeeeee; /*#cccccc; */
    padding: 5px;
}

.ep_labelText ul.productList
{
    list-style: none;
    vertical-align: middle;
}

.ep_labelText li.productList
{
    list-style: none;
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 5px;
}



/**************************************************************************/

.dd_columnHeading
{
    font-size: 12px;
    color: #336600;
    background-color: #ffffff;
    padding: 5px;
    font-weight: bold;
}

.dd_labelHeading
{
    font-size: 12px;
    color: #336600;
    /*background-color: #dddddd; #999999;*/
    text-align: right;
    width: 150px;
    padding: 5px;
    font-weight: bold; /*text-align: right;     padding-right: 7px;     color: #CCCCCC; */
}

.dd_labelData
{
    color: #000000;
    background-color: #ffffff; /*#eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 5px;
    text-align: left;
}

.dd_labelText_small
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 0;
    text-align: left;
    font-size: 10px;
}

.dd_labelText
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 5px;
    text-align: left;
}

.dd_labelText_centre
{
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    padding: 5px;
    text-align: center;
}

.dd_NoData
{
    font-size: 12px;
    color: #000000;
    background-color: #eeeeee; /*#cccccc; */
    padding: 5px;
}

.dd_labelText ul.productList
{
    list-style: none;
    vertical-align: middle;
}

.dd_labelText li.productList
{
    list-style: none;
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 5px;
}


/* Dealer Logo */

.dealerLogoImage
{
    width: 850px;
    margin: auto;
    padding: 2.5%;
}

#dealerLogo table
{
    margin: auto;
    width: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.button {
    background-color: #2e7d32; /*#007BFF;*/
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .button:hover {
        background-color: #1b5e20; /*#339CFF;*/
    }


/* Dealer Display PDF */

.showPDFPrintProduct
{
    clear: both;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    border: solid 2px #000;
}

.PDF_MainHeading
{
    color: #006400;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.PDF_SubHeading
{
    font-size: 16px;
    text-align: center;
    color: #000000;
}

.PDF_Price
{
    font-size: 20px;
    color: #999999;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
}

.PDF_Picture
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-bottom: 20px;
}

.PDF_labelHeading
{
    font-size: 12px;
    font-family: calibri;
    background-color: #dddddd; /*#999999;*/
    text-align: right;
    padding: 5px;
    width: 15%;
    font-weight: bold; /*text-align: right;     padding-right: 7px;     color: #CCCCCC; */
}

.PDF_labelData
{
    font-size: 12px;
    color: #000000;
    background-color: #eeeeee; /*#EDFAED; /*#cccccc; */
    width: 35%;
    padding: 5px;
    text-align: left;
}

.PDF_NoData
{
    font-size: 12px;
    color: #000000;
    background-color: #eeeeee; /*#cccccc; */
    padding: 5px;
}

.PDF_DisplayDetails
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
}

    .PDF_DisplayDetails table
    {
        margin: auto;
        width: 95%;
    }

.PDF_Website
{
    font-weight: bold;
    font-size: 24px;
    color: #000000;
}

/* Stock Management Tabs  */

.branch_labelHeading
{
    font-size: 14px;
    color: #336600;
    background-color: #dddddd;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

.branch_labelData
{
    color: #000000;
    background-color: #eeeeee;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

#admin-stock-wrapper
{
    display: table;
    border-collapse: collapse;
    margin: 10px;
}

#admin-stock-body
{
    display: table-row;
}

#adminPageOptions, #dealerDetails, #filler
{
    display: table-cell;
}

#adminPageOptions
{
    width: 70%;
    padding: 20px;
}

#dealerDetails
{
    width: 30%;
    padding: 20px;
}

.admin-stock-border
{
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 15px;
    -moz-border-radius: 15px; /* for firefox */
    -webkit-border-radius: 20px; /* for chrome */
    box-shadow: 10px 10px 5px #888888;
    background-color: #EBF4FA; /*#F0FFFF;*/
}

#my-stock-wrapper
{
    display: table;
    border-collapse: collapse;
    margin: 10px;
}

#my-stock-body
{
    display: table-row;
}

#pageOptions, #myDetails, #filler
{
    display: table-cell;
}

#pageOptions
{
    width: 70%;
    padding: 20px;
}

#myDetails
{
    width: 30%;
    padding: 20px;
}

.my-stock-border
{
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 15px;
    -moz-border-radius: 15px; /* for firefox */
    -webkit-border-radius: 20px; /* for chrome */
    box-shadow: 10px 10px 5px #888888;
    background-color: #EBF4FA; /*#F0FFFF;*/
}


/* Parts */

.partsSearch
{
    margin: 10px;
}

.myParts
{
    padding-left: 0;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
}

.myPartMessage
{
    margin-left: 25%;
}

/* Image mouse over */

.imgbox
{
    vertical-align: middle;
    position: absolute;
    border: 1px solid #999;
    background: #FFFFFF;
    filter: Alpha(Opacity=100);
    visibility: hidden;
    z-index: 50;
    overflow: hidden;
    text-align: center;
    top: 10%;
    left: 1%;
    margin: 0 0 0 -300px;
}

.imgbox_offset
{
    vertical-align: middle;
    position: absolute;
    border: 1px solid #999;
    background: #FFFFFF;
    filter: Alpha(Opacity=100);
    visibility: hidden;
    z-index: 50;
    overflow: hidden;
    text-align: center;
    top: 10%;
    left: 1%;
    margin: 0 0 0 -300px;
}
