﻿@import url(//fonts.googleapis.com/css?family=Asap:400,700);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap&text=↑→↓←');

/*Paragraf and List! */
p, li {
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 3px;
}
p:focus, ul:focus, li:focus
{
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
}
.HeaderText {
    padding: 0px 0px 0px 10px;
    line-height: 25px !important;
}
.SubHeaderText {
    padding-left: 8px;
}

/*Hyperlink!*/
a 
{
    font-size: 14px;
    font-family: 'Inter';
    text-decoration: underline;
    color: #0F464B;
}
a:focus 
{
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
}


/*Header and Subheader!*/
h1:focus, h2:focus {
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #C6EF75;
    color: #C6EF75;
}
/* Header! (H1) */
.Header{
    background-color: #0F464B;
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 0px 10px 0px 10px;
}
.PopUpHeader {
    background-color: #0F464B;
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 0px 15px 0px 18px;
}
.PopUpHeader:focus
{
    box-shadow: none !important;
    
}
/* SubHeader (H2)  */
.SubHeader {
    background-color: #0F464B;
    color: #FFF;
    height: 30px;
    line-height: 30px;
    margin: 20px 0px 10px 0px;
    padding-left: 10px;
    font-size: 15px;
}


/* Table settings */
table
{
    border-collapse: collapse;
    width: 100%;
}
table caption
{
    background-color: #5B9B98;
    border-bottom: solid 1px #FFF;
    color: #fff;
    font-size: 14px;
}
table thead tr
{
    background-color: #0F464B;
    color:            #fff;
    height:           30px;
}
table thead tr th
{
    font-size:   13px;
    font-weight: normal;
    font-family: 'Inter';
}
table caption, table td, table th
{
    padding: 3px 10px;
}
td
{
    vertical-align: top;
}
table.TwoColInfo td.Col1
{
    width: 31%;
}
table.TwoColInfo td.Col2
{
    width: 69%;
}
table.FourColInfo td.Col1
{
    width: 31%;
}
table.FourColInfo td.Col234
{
    width: 23%;
}


/* Input Field Settings */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
input[type=submit], input[type=button]
{
    color: #0F464B;
    font-family: 'Inter';
}
input[type=submit]:disabled, input[type=button]:disabled, button:disabled
{
    color: #808080;
    font-family: 'Inter';
}


/* ErrorBox*/
#ErrorBox p {
    padding-left: 10px;
    color: #B22222;
}
#ErrorBox p:focus{
    box-shadow: 0px 0px 3px 3px rgba(178,34,34,1) !important;
}
#ErrorBox ul{
    margin-top: -5px;
}
#ErrorBox ul:focus{
    box-shadow: 0px 0px 3px 3px rgba(178,34,34,1) !important;
}
#ErrorBox ul li{
    color: #B22222;
}

/* TextBox */
.TextBox:read-only {
        background-color: #E8E8E8;
        border-style: solid;
        border-color: darkgrey;
        border-width: 1px;
    }
.TextBox:disabled {
    background-color: #E8E8E8;
    border-style: solid;
    border-color: darkgrey;
    border-width: 1px;
}
.TextBox:focus {
    border-style: solid;
    border-color: darkgrey;
    border-width: 1px;
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
}


/* Datepicker */
.datepicker:focus 
{
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
}
.datepicker:disabled {
    background-color: #E8E8E8;
    border-style: solid;
    border-color: darkgrey;
    border-width: 1px;
}


/* Dropdown */
.DropDown:focus
{
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
}


/* Checkbox */
.CheckBox:focus
{
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
}
.CheckBox {
    vertical-align: -5px !important;
    width: 20px !important;
    height: 20px !important;
}


/* Some HTML stuff ?*/
html {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    max-width: 100%;
    overflow-x: hidden;
}
@media only screen and (max-width : 784px) {
    html::-webkit-scrollbar {
        display: none;
    }
}


/* Some general stuff? */
body, select, input, textarea, .ui-tooltip-content {
    color: #262626;
    font-family: 'Inter';
    font-size: 13px;
}

/* Loading animation*/
.Loading {
    background-image: url("../Content/images/loader.gif");
    background-repeat: no-repeat;
    background-position: center;
    cursor: progress;
}


/* Alert settings */
.Alert {
    color: #B22222;
}


/* Stuff used in _LayOut */
/* --------------------- */
.container-fluid {
    max-width: 992px;
}
.row {
    margin-bottom: 10px;
}


/* Page Header - Headerline*/
#HeadLine, #HeadLinev2
{
    position: absolute;
    padding-left: 0;
    z-index: -9999;
    color: #0F464B;
    font-weight: bold;
    text-decoration: none;
}
@media (max-width: 374px) {
    #HeadLine, #HeadLinev2 { display: none; }
}
@media (max-width: 399px) {
    #HeadLine, #HeadLinev2 { font-size: 110%; text-align: center; padding-top: 52px; padding-left: 20px; width: 90%; }
}
@media (min-width: 400px) {
    #HeadLine, #HeadLinev2 { font-size: 120%; text-align: center; padding-top: 52px; padding-left: 15px; width: 90%;  }
}
@media (min-width: 500px) {
    #HeadLine, #HeadLinev2 { font-size: 130%; text-align: center; padding-top: 51px; width: 90%;  }
}
@media (min-width: 600px) {
    #HeadLine, #HeadLinev2 { font-size: 140%; text-align: center; padding-top: 50px; width: 90%;  }
}
@media (min-width: 700px) {
    #HeadLine, #HeadLinev2 { font-size: 150%; text-align: center; padding-top: 49px; width: 90%;  }
}
@media (min-width: 800px) {
    #HeadLine   { font-size: 160%; text-align: center; padding-top: 48px; width: 90%; max-width: 900px;  }
    #HeadLinev2 { font-size: 300%; text-align: left; padding-top: 75px; padding-left: 0px; width: 90%; max-width: 900px; font-weight: normal; margin-left: -1px; line-height: 57px;  }
}


/* Page Header - Logo */
@media only screen and (min-width : 992px) {
    #ContentHeader {
        background-image: url("../Content/images/hofor_logo_positiv.svg");
        background-size: 104px 64px;
        background-position: left;
        background-repeat: no-repeat;
        height: 83px;
        margin-left: 45px !important;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    #ContentHeaderv2 {
        background-image: url("../Content/images/hofor_logo_positiv.svg");
        background-size: 104px 64px;
        background-position: left;
        background-repeat: no-repeat;
        height: 83px;
        margin-left: 25px !important;
        margin-bottom: 35px;
        margin-top: 10px;
    }
}
@media only screen and (max-width : 991px) {
    #ContentHeader {
        background-image: url("../Content/images/hofor_logo_positiv.svg");
        background-size: 104px 64px;
        background-position: left;
        background-repeat: no-repeat;
        height: 83px;
        margin-left: 15px;
    }
    #ContentHeaderv2 {
        background-image: url("../Content/images/hofor_logo_positiv.svg");
        background-size: 104px 64px;
        background-position: left;
        background-repeat: no-repeat;
        height: 83px;
        margin-left: 15px;
    }
}
@media only screen and (min-width : 451px) {
    #ContentHeader, #ContentHeaderv2 {
        margin-left: 30px;
    }
}

/* Page Header - Navigation (Home>TopMenu) */
#top {
    width: 650px;
    display: inline-block !important;
    margin-top: 5px;
    margin-bottom: 10px;
    float: right;
}
#top a {
    float: right;
    display: inline;
    font-size: 13px;
    text-decoration: none;
    display: inline;
}  
#TopHofor, #TopUsefulLinks {
    margin-right: 8%;
}

.ProfileContainer {
    display: flex;
    justify-content: space-between;
}

.EndContainer {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
    margin-bottom: 8px;
}

#EditButton.EditTop {
    margin: 0 10px 0 0 !important;
}

.EditTopBtn {
   margin-top: 0px !important;
   padding: 0px !important;
}

.Buttons.EditTopBtn {
    position: relative; /* Establish a positioning context */
    display: inline-block; /* Make sure the div behaves as an inline element */
}

#ProfileButtons {
    padding-left: 30px; /* Add enough padding to make room for the icon */
}

/* To modify the edit button on account detail */
@media (max-width : 724px) {
    .Buttons.EditTopBtn {
        margin-top: 8px !important;
        text-align: right;
    }

    .ProfileContainer {
        display: flex;
        flex-direction: column;
    }
}


.glyphicon-pencil-adjust {
    position: relative;
    display: inline-block;
}

.glyphicon-pencil-adjust:before {
    content: "\270f";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Destop Menu */
#DesktopMenu {
    background-color: #0F464B;
    padding: 0 !important;
    margin: 0 !important;
}
.Menu ul {
    margin: 0 !important;
}
.Menu li {
    vertical-align: middle;
    padding: 0px;
    cursor: pointer;
    border-bottom: 5px solid;
    border-bottom-color: #0F464B;
}
.Menu li a {
    margin: 0px;
    display: block;
    padding-top: 10px !important;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.Menu li.active {
    border-bottom-color: #C6EF75;
}
.Menu ul li a:hover, .Menu ul li a:focus {
    background-color: #C6EF75;
    color: #0F464B;
    font-weight: 500;
    font-size: 13px;
    box-shadow: none;
}
.Menu a {
    color: #fff;
    padding: 5px 8px 5px 8px !important;
    margin: 0 !important;
    vertical-align: middle;
}


/* Side Menu*/
.menu-icon {
    float: right;
    margin-right: 8%;
}
#Menu-Toggle {
    float: right;
    cursor: pointer;
    padding: 1em 2em 0 0;
}
#popout {
    position: absolute;
    width: 75%;
    left: -75%;
    top: 0px;
    background: #0F464B;
    z-index: 9999;
    max-width: 300px;
    display: block;
    text-align: left !important;
}
#popout ul {
    padding: 0 !important;
    margin: 0 !important;
}
#popout ul hr {
    padding: 0 !important;
    margin: 0 !important;
}
#popout li
{
    border-left:10px solid #0F464B;
;
}
#popout li.active
{
    border-left:10px solid #C6EF75;
}
#popout li a {
    padding: 11px 0 11px 5px !important;
    display: block !important;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none !important;
}

#popout ul li a:hover, #popout ul li a:focus
{
    background: #C6EF75 !important;
    color: #0F464B !important;
    list-style-type: none !important;
    text-decoration: none !important;
}


/* Main Content */
#LogOn.Content.col-sm-12 {
    padding: 10px;
    border: none;
    box-shadow: none;
}
.Content {
    border: 1px solid #E1E6EB;
    border-radius: 7px 7px 7px 7px;
    box-shadow: 3px 3px 7px #C4C4C4;
    padding: 10px;
}
@media only screen and (max-width : 991px) {
    .Content {
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}


/* Footer */
#Footer {
    /*border: 1px solid #E1E6EB;
    border-radius: 7px 7px 7px 7px;
    box-shadow: 3px 3px 7px #C4C4C4;*/
    padding: 10px;
    background-color: #CCD2D7;
    /*margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;*/
}
#Footer address {
    font-style: normal;
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}
#email {
    margin: 0 10px 0 5px;
}
@media only screen and (max-width : 991px) 
{
    #Footer {
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}
@media only screen and (max-width : 425px)
{
    #Footer {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* LogOff*/
#LogOff
{    
    text-align: center;
    border: 1px solid #E1E6EB;
    border-radius: 7px 7px 7px 7px;
    box-shadow: 3px 3px 7px #C4C4C4;
    padding: 15px;
}
#LogOff .border
{
    min-height: 120px;
    max-width: 992px;
    background-color: #e4e4e4;
    padding: 15px;
    overflow: auto;
    margin: auto;
}
#LogOff .border div
{
    max-width: 175px;
    margin: auto;
}
#LogOff #LogOffLink button a
{
    text-decoration: none;
    pointer-events: none;
}
#LogOff #LogOffPartnerNumber
{
    font-weight: bold;
    margin-bottom: 10px;
}
.LogOffPart{
    margin-bottom: 0px;
}
.my-btn-logud {
    border-radius:0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    width: 110px;
    margin-top: 15px;
    margin-bottom: 15px;
}
@media only screen and (min-width : 400px)
{
    #LogOff .border div
    {
        max-width: 486px;
    }
    
    .my-btn-logud 
    {
        border-radius:0 !important;
        font-size: 14px !important;
        width: 110px;
        margin-top: 27px;
    }
}
@media only screen and (max-width : 991px) {
    #LogOff {
        z-index: 100;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}


/* CPR/CVR pop-up in LogOff */
.PopUpCPRCVPPart {
    margin-right: 75px;
    margin-bottom: 10px;
    padding: 0px 10px 0px 4px;
    display: inline-table;
}
.PopUpCPRCVPPart label
{
    width: 200px;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 0px;
}
.PopUpCPRCVPPart input
{
    width: 200px;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 3px;
}
.PopUpCPRCVPPart.PopUpCPRCVPPartCPR
{
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 0px 4px;
}
.PopUpCPRCVPPartCPR label
{
    width: 200px;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 0px;
    margin-bottom: 5px;
}
.PopUpCPRCVPPartCPR input
{
    width: 200px;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 3px;
    margin-bottom: 5px;
}
.PopUpCPRCVPPart.EboksMailAssign
{
    display: inline-block;
}

#popUpCprBoks 
{
    width: 200px;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 3px;
}

#popUpCprBoks label.error
{
    width: 200px !important;
    margin: 0 !important;
    text-align: center !important;
}

#popUpCvrBoks 
{
    width: 200px;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 3px;
}
#popUpCvrBoks label.error
{
    width: 200px !important;
    margin: 0 !important;
    text-align: center !important;
}

/* // EboksMailAssign bruges også i CVR */
.EboksMailAssign label {
    width: auto;
    font-size: 14px;
    font-family: 'Inter';
    padding: 1px 0px 1px 0px;
    margin-bottom: 5px;
}

/* CVR Pop-up */

.PopUpCPRCVPPart.PopUpCPRCVPPartCPR.PopUpCPRCVPPartCVRName 
{
    margin-top: 5px;
}

.PopUpCPRCVPPart.PopUpCVRPartnerCVRNumber
{
    margin: 0px 0px 10px 0px;
    display: inline-block;
}

.PopUpCVRPartnerCVRNumber label 
{
    margin-bottom: 5px;
    width: auto;
}

.PopUpCPRCVPPart.EboksMailAssign.PopUpCVRPartnerCVRNumberEboks 
{

}
.EboksMailAssign label.PopUpCVRPartnerCVRNumberEboks label
{

}

/* Skip Link */
.skip-link {
    font-size: 15px;
    left: 50%;
    padding: 4px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}
.skip-link:focus {
    transform: translateY(0%);
}


/*Bootstrap stuff.*/
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover
{
    color: #fff;
    background-color: #0F464B !important;
}
.nav-pills > li + li
{
    margin-left: 0 !important;
}


/* Validate .js */
input.error 
{
    border: 1px solid #B22222 !important;
    padding: 2px !important;
}
label.error
{
    color: #B22222;
    margin-left: 10px !important;
    width: 50% !important;
}
span.error
{
    color: #B22222;
    margin-left: 10px !important;
    width: 50% !important;
}
textarea.error
{
    border: 1px solid #B22222 !important;
}
.validation-summary-errors
{
    color: #B22222;
}
div.validation-summary-errors ul
{
    margin: 0;
    padding-left: 18px;
}


/* Used in Appoffline/SiteAvailabillitytest*/
#Content
{
    display: inline-block;
    padding: 10px;
    width: 75%;
}


/* Buttons */
/* ------- */
.Buttons
{
    margin-top: 20px;
    padding: 0px 10px;
    text-align: right;
}
.btn {
    border-radius: 0 !important;
    border-color: darkgray;
    color: #0F464B;
}
.btn:focus {
    outline: transparent solid 3px;
    outline-offset: 0px;
    box-shadow: 0px 0px 3px 3px #0F464B;
    color: #0F464B;
}
.btn:hover {
    color: #0F464B;
}

/* Custom Grey */
.btn-custom-grey { 
  color: #FFFFFF !important; 
  background-color: #4F676B; 
  border-color: #4F676B; 
} 
.btn-custom-grey:hover, 
.btn-custom-grey:focus, 
.btn-custom-grey:active, 
.btn-custom-grey.active, 
.open .dropdown-toggle.btn-custom-grey { 
  color: #FFFFFF !important; 
  background-color: #658085; 
  border-color: #4F676B; 
} 
.btn-custom-grey:active, 
.btn-custom-grey.active, 
.open .dropdown-toggle.btn-custom-grey { 
  background-image: none; 
} 
.btn-custom-grey.disabled, 
.btn-custom-grey[disabled], 
fieldset[disabled] .btn-custom-grey, 
.btn-custom-grey.disabled:hover, 
.btn-custom-grey[disabled]:hover, 
fieldset[disabled] .btn-custom-grey:hover, 
.btn-custom-grey.disabled:focus, 
.btn-custom-grey[disabled]:focus, 
fieldset[disabled] .btn-custom-grey:focus, 
.btn-custom-grey.disabled:active, 
.btn-custom-grey[disabled]:active, 
fieldset[disabled] .btn-custom-grey:active, 
.btn-custom-grey.disabled.active, 
.btn-custom-grey[disabled].active, 
fieldset[disabled] .btn-custom-grey.active { 
  background-color: #4F676B; 
  border-color: #4F676B; 
} 
.btn-custom-grey .badge { 
  color: #4F676B; 
  background-color: #FFFFFF !important; 
}

/* Custom Green*/
.btn-custom-green { 
  color: #FFFFFF !important; 
  background-color: #A5CD39; 
  border-color: #A5CD39; 
} 
.btn-custom-green:hover, 
.btn-custom-green:focus, 
.btn-custom-green:active, 
.btn-custom-green.active, 
.open .dropdown-toggle.btn-custom-green { 
  color: #FFFFFF !important; 
  background-color: #96BA34; 
  border-color: #A5CD39; 
} 
.btn-custom-green:active, 
.btn-custom-green.active, 
.open .dropdown-toggle.btn-custom-green { 
  background-image: none; 
} 
.btn-custom-green.disabled, 
.btn-custom-green[disabled], 
fieldset[disabled] .btn-custom-green, 
.btn-custom-green.disabled:hover, 
.btn-custom-green[disabled]:hover, 
fieldset[disabled] .btn-custom-green:hover, 
.btn-custom-green.disabled:focus, 
.btn-custom-green[disabled]:focus, 
fieldset[disabled] .btn-custom-green:focus, 
.btn-custom-green.disabled:active, 
.btn-custom-green[disabled]:active, 
fieldset[disabled] .btn-custom-green:active, 
.btn-custom-green.disabled.active, 
.btn-custom-green[disabled].active, 
fieldset[disabled] .btn-custom-green.active { 
  background-color: #A5CD39; 
  border-color: #A5CD39; 
} 
.btn-custom-green .badge { 
  color: #A5CD39; 
  background-color: #FFFFFF !important; 
}


/* Custom Darkgreen */
.btn-custom-darkgreen { 
  color: #ffffff !important; 
  background-color: #336600; 
  border-color: #336600; 
} 
.btn-custom-darkgreen:hover, 
.btn-custom-darkgreen:focus, 
.btn-custom-darkgreen:active, 
.btn-custom-darkgreen.active, 
.open .dropdown-toggle.btn-custom-darkgreen { 
  color: #ffffff !important; 
  background-color: #004D09; 
  border-color: #336600; 
} 
.btn-custom-darkgreen:active, 
.btn-custom-darkgreen.active, 
.open .dropdown-toggle.btn-custom-darkgreen { 
  background-image: none; 
} 
.btn-custom-darkgreen.disabled, 
.btn-custom-darkgreen[disabled], 
fieldset[disabled] .btn-custom-darkgreen, 
.btn-custom-darkgreen.disabled:hover, 
.btn-custom-darkgreen[disabled]:hover, 
fieldset[disabled] .btn-custom-darkgreen:hover, 
.btn-custom-darkgreen.disabled:focus, 
.btn-custom-darkgreen[disabled]:focus, 
fieldset[disabled] .btn-custom-darkgreen:focus, 
.btn-custom-darkgreen.disabled:active, 
.btn-custom-darkgreen[disabled]:active, 
fieldset[disabled] .btn-custom-darkgreen:active, 
.btn-custom-darkgreen.disabled.active, 
.btn-custom-darkgreen[disabled].active, 
fieldset[disabled] .btn-custom-darkgreen.active { 
  background-color: #336600; 
  border-color: #336600; 
}  
.btn-custom-darkgreen .badge { 
  color: #336600; 
  background-color: #ffffff !important; 
}



/* To be removed! */
.Header input[type="image"].questionmark
{
    float: right;
    padding-top: 15px;
    width: 20px !important;
    height: 34px !important;
}
.Header input[type="image"].questionmark:focus
{
    outline: -webkit-focus-ring-color auto 0px;
}

.DocTypeStatus input[type="image"].questionmark,
.ColumnReadingValue input[type="image"].questionmark,
.ColumnConsumption input[type="image"].questionmark,
.ColumnReadingDate input[type="image"].questionmark
{
    float: right;
    width: 20px !important;
    height: 19px !important;
}

.DocTypeStatus input[type="image"].questionmark:focus,
.ColumnReadingValue input[type="image"].questionmark:focus,
.ColumnConsumption input[type="image"].questionmark:focus,
.ColumnReadingDate input[type="image"].questionmark
{
    outline: -webkit-focus-ring-color auto 0px;
}
/*...........................................*/




