@charset "utf-8";
/* CSS Document */
html, body {
    top: 0 !important;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.WaitModal {
    /*display:    none;*/
    /*	display: block;*/
    /*display: initial;*/
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*	background-color: #e0e9f5;
        opacity: 0.3;*/
    /*rgb(224,233,245)*/
    /*background: rgba(224, 233, 245, 0.3) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat;*/
    background: rgba(224, 233, 245, 0.3) url('https://partsfinder.onlinemicrofiche.com/_operational_files/images/spinning-2_Op_90.gif') 50% 50% no-repeat;
    /*background: rgba(174, 196, 255, 0.3)
    url('http://i.stack.imgur.com/FhHRx.gif')
    50% 50%
    no-repeat;*/
    /*	background-image:  url('http://i.stack.imgur.com/FhHRx.gif');
        background-repeat: no-repeat;*/

}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .WaitModal {
    overflow: hidden;
}

/*This is for the text boxes made into type = number gets rid ov the scroll*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: textfield;
}

/*This where data is held and called on if needed. Need to hide it*/
#hdnHLSM_Container {
    display: none;
}

/*This will report back the height the MsgBox should be set for based on the text in it*/
.msHLSM_Measure {
    /*Need to send to never never land*/
    position: absolute;
    top: -9000px;
    left: -9000px;
    /*display: none;*/ /*If you make it none, returns no width or height*/
    /*It will adjust between 200 and 300px*/
    min-width: 200px;
    max-width: 300px;
}

#TopHeader {
    /*position: absolute;*/
    position: relative;
    width: 100%;
}

/* These are the selection in the mnHLSM_MenuBar_Container */
#mnHLSM_MenuBar_Container {
    position: relative;
    width: 100%;
}

#mnHLSM_MenuBar_Items {
    font: bold 14px Arial, Helvetica, sans-serif;
    color: #020242;
}

#mnHLSM_MenuBar_Items_Menu_items {
    font: bold 12px Arial, Helvetica, sans-serif;
}

#mnHLSM_MenuBar_Items_Login {
    /*display: none;*/
}

/* Ends the selections in the mnMenuBar */
/*This is the tab sections*/
#tbHLSM_Tabs {
    position: relative;
    width: 100%;
}

#tbHLSM_Tabs_Items {
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #020242;
    margin-left: 5px;
}

/*This DIV would surround the tab text. jqWidiget adds div tags to the main li tag. This div is wrapped in that new div tag*/
.tbHLSM_Tabs_Item_Value {
    margin: 0;
    padding: 0;
    width: 100%;
}

/*End Tabs*/
/*=== Copyright HLSM ==*/
.parts_list_Copywrite_table {
    border-collapse: collapse;
    width: 100%;

}

.parts_list_Copywrite_td {
    vertical-align: top;
    font-size: 9px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #4c6b55;
    line-height: 11px;
    text-align: center;
}
@media screen and (max-width: 700px) {
    #mnHLSM_MenuBar_Items_ContactUs{
        display: none !important;
    }
}