﻿body {
}

.table-no-border {
    border: 0; /* Removes border */
    width: 100%; /* Sets table width to 100% */
}

.text-red {
    color: #ff0000; /* Red text color */
}
.text-left {
    text-align: left; /* Align text to the left */
}

.width-49 {
    width: 49px;
}

.width-10 {
    width: 10px;
}

.align-right-text-left {
    text-align: left; /* Align the content inside the element to the left */
}

.align-left {
    text-align: left; /* Aligns text content inside the table cell to the left */
}
.valign-top-text-left {
    vertical-align: top; /* Aligns the content to the top of the cell */
    text-align: left; /* Aligns the text to the left */
}
.no-border {
    border: 0; /* Removes the border */
}

.valign-top {
    vertical-align: top; /* Aligns the content to the top */
}
.width-125 {
    width: 125px; /* Sets the width to 125px */
}

.valign-top-width-125 {
    vertical-align: top; /* Aligns the content to the top of the cell */
    width: 125px; /* Sets the width to 125px */
}
.hidden {
    visibility: hidden; /* Hides the element but keeps its space in the layout */
}
.text-center {
    text-align: center; /* Centers the text content */
}
.auto-overflow-center {
    overflow: auto; /* Allows scrolling if the content overflows */
    text-align: center; /* Centers the content */
}
.width-49-text-right {
    width: 49px; /* Sets the width to 49px */
    text-align: right; /* Aligns the text to the right */
}
.height-19-width-10 {
    height: 19px; /* Sets the height to 19px */
    width: 10px; /* Sets the width to 10px */
}
.text-left-height-19 {
    text-align: left; /* Aligns the text to the left */
    height: 19px; /* Sets the height to 19px */
}
.height-19 {
    height: 19px; /* Sets the height to 19px */
}

.height-17 {
    height: 17px; /* Sets the height to 17px */
}

.align-right {
    text-align: right; /* Aligns text content inside the table cell to the left */
}

.width-3 {
    width: 3px; /* Sets the width to 3px */
}
.hidden-absolute {
    visibility: hidden; /* Hides the element while preserving its layout space */
    position: absolute; /* Positions the element absolutely */
}
