/*common*/
body {
  font-weight: var(--vel-typography-text-50-font_weight);
  font-size: var(--vel-typography-text-50-font_size);
  line-height: var(--vel-typography-text-50-line_height);
  font-family: var(--vel-typography-text-50-font_family);
  letter-spacing: var(--vel-typography-text-200-letter_spacing);
  color: var(--vel-color-text-default);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--vel-color-neutral-white);
  margin:0;
}

*
{
  box-sizing:border-box;
}
/*anchor*/
a, a:visited, a:active, a:link
{
    box-sizing: border-box;
    border-radius: var(--vel-shape200-border_radius);
    font-style: inherit;
    font-variant: inherit;
    font-stretch: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-optical-sizing: inherit;
    font-kerning: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-weight: bold;
    position: relative;
    display: inline;
    background: transparent;
    text-decoration: underline;
    text-align: left;
    color: var(--vel-color-primary-400);
    margin: 0px;
    padding: 0px;
    border: none;
    appearance: none;
    outline: none;
    transition: color 0.1s ease-out 0s, background 0.1s ease-out 0s;
}
a:not([disabled]), a:link:not([disabled])
{
    cursor: pointer;
}
a:hover, a:link:hover
{
    color: var(--vel-color-primary-500);
    background: var(--vel-color-primary-50);
    text-decoration: underline;
    font-weight: bold;
}
/*basic table*/
table
{
  width:100%;
  /* table-layout: fixed; */
}
.th, th, td
{
    border:none;
    vertical-align:middle;
    padding-block:var(--vel-layout-spacing-01);
    padding-inline:var(--vel-layout-spacing-01);
}
th{
    font-weight:bold;
}
th:hover
{
    color: var(--vel-color-neutral-700)!important;
    background: var(--vel-color-neutral-100) !important;
}
table>thead>tr>th{
    /*text-align:center;*/
    border-bottom: var(--vel-table-columns-row-border);
    background-color: var(--vel-color-neutral-white) !important;
    color: var(--vel-color-text-default) !important;
    font-weight: bold !important;
}

/*Navigation menu*/
.MasterPageMenuItem, .MasterPageMenuCell 
{
    font-size: var(--vel-typography-text-100-font_size);
    font-family: var(--vel-typography-text-100-font_family);
    font-weight: var(--vel-typography-text-100-font_weight);
    vertical-align: middle;
    padding: 8px 8px;
    /* padding: 8px; */
    position:relative;
    color: var(--vel-color-neutral-500);
    display: flex;
    align-items: center;
}
.MasterPageMenuItem.Selected a, .MasterPageMenuItem a:visited, .MasterPageMenuItem a:link, .MasterPageMenuItem a:active {
    /* font-weight: var(--vel-typography-text-50-font_weight); */
    /* color: var(--vel-color-neutral-500); */
    text-decoration: none;
    font-family: 'Chillax';
}
.MasterPageMenuItem.Selected a
{
  
}
.MasterPageMenuItem a:hover
{
  background-color:unset;
}
.MasterPageMenuCell.placeholder
{
  flex:1 1 auto;  
}
.MasterPageMenuItem::before
{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0px;  
    height: 4px;
    background: var(--vel-color-primary-500);
    transform: translateX(-50%);
    transition: width 0.2s ease-out 0s;
}
.MasterPageMenuItem.Selected::before,.MasterPageMenuItem:hover::before
{
      width: calc(100% - 32px);
}


#tblMainMenuRow1Cell1
{
  flex:0 0 auto;
  width: 0px;
  padding: 0;
}
.MasterPageMenuCenterCell
{
  display:flex;
  flex-direction:row;
}


/*buttons*/
input[type=submit], input[type=button],input[type=image], input[type=reset], button, .button
{
  font-weight: var(--vel-typography-text-alt-50-bold-font_weight, var(--vel-typography-text-alt-100-font_weight));  
}
input[type=submit], input[type=button],input[type=reset], input[type=image], button, .button
{
    border: 1px solid transparent;
    position: relative;
    display: inline-block;
    transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s, color 0.1s ease-out 0s;
    text-align: center;
    text-decoration: none;
    font-size: var(--vel-typography-text-alt-50-bold-font_size, var(--vel-typography-text-alt-100-font_size));
    line-height: var(--vel-typography-text-alt-50-bold-line_height, var(--vel-typography-text-alt-100-line_height));
    font-family: var(--vel-typography-text-alt-50-font_family);
    letter-spacing: var(--vel-typography-text-alt-50-bold-letter_spacing, var(--vel-typography-text-alt-100-letter_spacing));
    border-radius: var(--vel-shape400-border_radius);
    padding-block: calc((40px -(var(--vel-typography-text-alt-100-bold-font_size, var(--vel-typography-text-alt-100-font_size))* var(--vel-typography-text-alt-100-bold-line_height, var(--vel-typography-text-alt-100-line_height)))) / 2 - 1px);
    padding-inline: calc(var(--vel-fixed-spacing-04) - 1px);
    color: var(--vel-color-text-on_primary);
    background: var(--vel-color-secondary-400);
    cursor:pointer;
    min-height:30px;
}

input[type=submit][disabled],
input[type=button][disabled],
input[type=reset][disabled],
button[disabled], .button[disabled], a[role=button][disabled],
button.outline[disabled], .button.outline[disabled], a[role=button].outline[disabled],
button.secondary[disabled], .button.secondary[disabled], a[role=button].secondary[disabled] {
  color: var(--vel-color-form-text-disabled);
  border-color: transparent;
  background-color: var(--vel-color-form-bg-disabled);
  cursor: default;
}

input[type=submit].secondary ,input[type=button].secondary , button.secondary, .button.secondary
{
    /* min-height: 30px; */
    color: var(--vel-color-text-on_primary);
    background: var(--vel-color-primary-400);
    /* width: auto; */
}
input[type=submit].muted, input[type=image].muted, button.muted, .button.muted
{
    /* min-height: 30px; */
    color: var(--vel-color-form-text-default);
    background-color: transparent;
    border:none;
    /* font-weight: inherit; */
}
input[type=submit].muted:hover, input[type=image].muted:hover, button.muted:hover, .button.muted:hover,
input[type=submit].muted:focus, input[type=image].muted:focus, button.muted:focus, .button.muted:focus
{
    color: var(--vel-color-neutral-700);
    border-color: transparent;
    background: var(--vel-color-neutral-100);
}
input[type=submit].outline, button.outline, .button.outline, a[role=button].outline {
  /* min-height: 30px; */
  color: var(--vel-color-form-text-default);
  background-color: transparent;
  border: 1px solid var(--vel-color-secondary-400);
  /* font-weight: inherit; */
}

input[type=submit].outline:not([disabled]):hover, button.outline:not([disabled]):hover, .button.outline:not([disabled]):hover, a[role=button].outline:not([disabled]):hover,
input[type=submit].outline:focus, button.outline:focus, .button.outline:focus, a[role=button].outline:focus {
  color: var(--vel-color-secondary-400);
  border-color: var(--vel-color-secondary-300);
  background-color: var(--vel-color-secondary-50);
  box-shadow: 0 0 0 1px var(--vel-color-secondary-300) inset, var(--vel-elevation200-box_shadow);
}

input[type=submit]:hover, input[type=reset]:hover, button:hover,.button:hover,
input[type=submit]:focus, input[type=reset]:focus, button:focus,.button:focus
{
    color: var(--vel-color-text-on_secondary);
    border-color: transparent;
    background: var(--vel-color-secondary-300);
    box-shadow: var(--vel-elevation200-box_shadow);
}


input[type=submit].secondary:hover, input[type=button].secondary:hover, input[type=button].secondary:focus, input[type=submit].secondary:focus, .button.secondary:hover, .button.secondary:focus
{
    color: var(--vel-color-text-on_primary);
    border-color: transparent;
    background: var(--vel-color-primary-500);
    box-shadow: var(--vel-elevation200-box_shadow);
}
input[type=submit].secondary, input[type=button].secondary
{
    color: var(--vel-color-text-on_primary);
    background: var(--vel-color-primary-400);
}
input[type=submit].tertiary:hover, input[type=reset]:hover,
input[type=submit].tertiary:focus, input[type=reset]:focus
{
    color: var(--vel-color-text-on_brand_support1);
    border-color: transparent;
    background: var(--vel-color-brand-support1-500);
    box-shadow: var(--vel-elevation200-box_shadow);
}
input[type=submit].tertiary, input[type=reset]
{
    color: var(--vel-color-text-on_brand_support1);
    background: var(--vel-color-brand-support1-400);
}
input[type=submit].large
{
    min-height: 40px !important;
    font-size: 16px;
    border-radius: 20px;
    padding-inline: 1rem !important;
}

/*other inputs*/
input,select, textarea
{
  border: 1px solid var(--vel-color-form-border-default);
  padding: calc(var(--vel-fixed-spacing-01) + 2px) var(--vel-fixed-spacing-02);
  box-sizing: border-box;
  font: inherit;
  color: currentColor;
  height: auto;
  background: transparent;
  margin: 0;
  outline:none;
  border-radius:var(--vel-shape300-border_radius);
  background-color: var(--vel-color-neutral-white);
}
input:focus,select:focus, textarea:focus
{
  border:1px solid var(--vel-color-misc-focused);
    box-shadow: 0px 0px 0px 4px var(--vel-color-misc-pressed);
}

/*Checkbox/radio*/
input[type=radio]:not([disabled]), 
input[type=checkbox]:not([disabled]) 
{
  cursor: pointer;
}
input[type=radio],    
input[type=checkbox]
{
  display:inline;
  vertical-align:middle;
  margin-left:4px;
}
label[for]
{
    cursor:pointer;
}

label>input[type=radio] + span,
input[type=radio] + label,
input[type=checkbox] + label
{
  margin-left:var(--vel-fixed-spacing-02);
}

/*textboxes*/
select, input[type=text], input[type=password], input[type=file], textarea, input[type=number], input[type=email], input[type=date], input[type=tel]
{
  width:100%;
  box-sizing:border-box;
}
input[size]
{
   width:auto;
}
/*Pagination*/

.pagination_container
{
    display:flex;
    flex-direction:row;
    /* margin: auto; */
    width: fit-content;
    margin: auto;
    gap:.5rem;
}
.pagination_container img
{
  height: 2em;
  flex:1 1 auto;
}
.pagination_container .pagination_first,
.pagination_container .pagination_prev,
.pagination_container .pagination_current,
.pagination_container .pagination_next,
.pagination_container .pagination_last
{
  flex:1 1 auto;
  text-align:center;
  height:30px;
  line-height:30px;
  border-radius:var(--vel-shape300-border_radius);
  flex-grow:0;
  display: flex;
  flex-direction: row;
  font-weight: var(--vel-typography-text-50-font_weight);
}
.pagination_container .pagination_first
{
    
}

.pagination_container .pagination_current
{
  font-weight: var(--vel-typography-text-50-bold-font_weight);
  cursor:default;
}
.pagination_container .pagination_prev,
.pagination_container .pagination_next
{
  display:inline-flex;
  align-items: center;
}

.pagination_container .pagination_last
{
    
}
button>svg,
.button>svg
{
  display: block;
  height: 1.5em;
}
.groupedinput
{
  display:flex;
  flex-direction:row;
  gap:2px;
  border: 1px solid var(--vel-color-form-border-default);
  border-radius: var(--vel-shape300-border_radius);
  padding: 0 2px;
  /* height: 24px; */
  width:fit-content;
}
.groupedinput>span
{
  padding: calc(var(--vel-fixed-spacing-01) + 2px) var(--vel-fixed-spacing-02);
  min-width: 2rem;
  min-height: 1rem;
}
.groupedinput:focus-within
{
    /* outline-color: aliceblue; */
    /* outline-width: 4px; */
    /* outline-style: solid; */
    border:1px solid var(--vel-color-misc-focused);
    box-shadow: 0px 0px 0px 4px var(--vel-color-misc-pressed);
}



.groupedinput >*
{
  display:inline-block;
  border:none;
  align-self: center;
  outline:none;
}
.groupedinput *:focus
{
  border:none;
  box-shadow: none;  
}

.groupedinput .button
{
  padding-inline: calc(var(--vel-fixed-spacing-02) - 1px);
  border-radius:var(--vel-shape300-border_radius);
  min-height: 20px;
}

.groupedinput.error
{
    border-width: 2px;
    border-style: solid;
    border-color: red;
}

/* layoutcontainer*/
@media only screen and (min-width: 740px) {
    .layoutPanel {
        padding-inline: 32px;
    }
}
@media only screen and (min-width: 480px) {
    .layoutPanel {
        padding-inline: 24px;
    }
}

@media only screen and (min-width: 0px) {
    .layoutPanel {
        padding-inline: 16px;
    }
}
.layoutPanel {
    box-sizing: content-box;
    margin-inline: auto;
}
/*footer*/
footer
{
    position:relative;
    background: var(--vel-color-secondary-400);
    color: var(--vel-color-text-on_secondary);
}
footer .legalLinksSection
{
    
}

footer .legalLinksSection .legalLinkContainer
{
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-flow: wrap;
    -webkit-box-align: center;
    align-items: center;
}
footer .legalLinksSection .legalLinkContainer .legalLinkItem
{
    display: flex;
    flex-flow: row;
    -webkit-box-align: center;
    align-items: center;
}
footer .legalLinksSection .legalLinkContainer .legalLinkItem .accordion .accordion-title,
footer .legalLinksSection .legalLinkContainer .legalLinkItem>a
{
    font-weight: var(--vel-typography-text-alt-100-loose-font_weight, var(--vel-typography-text-alt-100-bold-font_weight, var(--vel-typography-text-alt-100-font_weight)));
    font-size: var(--vel-typography-text-alt-100-loose-font_size, var(--vel-typography-text-alt-100-bold-font_size, var(--vel-typography-text-alt-100-font_size)));
    line-height: var(--vel-typography-text-alt-100-loose-line_height, var(--vel-typography-text-alt-100-bold-line_height, var(--vel-typography-text-alt-100-line_height)));
    font-family: var(--vel-typography-text-alt-100-loose-font_family, var(--vel-typography-text-alt-100-bold-font_family, var(--vel-typography-text-alt-100-font_family)));
    letter-spacing: var(--vel-typography-text-alt-100-loose-letter_spacing, var(--vel-typography-text-alt-100-bold-letter_spacing, var(--vel-typography-text-alt-100-letter_spacing)));
    color: var(--vel-color-primary-50);
    text-decoration: none;
}
footer .legalLinksSection .legalLinkContainer .legalLinkItem>a:hover{
    background-color:transparent;
}
footer .legalLinksSection .legalLinkContainer .legalLinkItem:not(:last-child)::after {
    content: "";
    width: 1px;
    align-self: stretch;
    margin: 0 var(--vel-fixed-spacing-04);
    background: var(--vel-color-secondary-300);
}

footer .copyright
{
    margin: 0px;
    font-weight: var(--vel-typography-text-100-loose-font_weight, var(--vel-typography-text-100-font_weight));
    font-size: var(--vel-typography-text-100-loose-font_size, var(--vel-typography-text-100-font_size));
    line-height: var(--vel-typography-text-100-loose-line_height, var(--vel-typography-text-100-line_height));
    font-family: var(--vel-typography-text-100-loose-font_family, var(--vel-typography-text-100-font_family));
    letter-spacing: var(--vel-typography-text-100-loose-letter_spacing, var(--vel-typography-text-100-letter_spacing));
}
@media only screen and (min-width: 740px) {
    footer {
        --vel-footer-padding-top: 64px;
        padding-block: var(--vel-footer-padding-top) var(--vel-fixed-spacing-07);
    }
    footer .legalLinksSection{
        margin-bottom: var(--vel-fixed-spacing-04);
    }
    footer .legalLinksSection .legalLinkContainer {
        row-gap: calc(var(--vel-fixed-spacing-04) / 2);
    }
}

/*accordion*/
.accordion
{

}
.accordion .accordion-title
{

}
.accordion .accordion-title:after{

}
.accordion .accordion-content
{
    display:none;
}

.accordion .accordion-expanded
{
    width:0px;
    height: 0px;
    visibility: hidden;
}
.accordion input.accordion-expanded:checked + .accordion-content
{
    display:block;
}

/*typo*/
h4
{
    font-size: var(--vel-typography-headline-300-font_size);
    font-family: var(--vel-typography-headline-300-font_family);
    font-weight: var(--vel-typography-headline-300-font_weight);
    line-height: var(--vel-typography-headline-300-line_height);
    letter-spacing: var(--vel-typography-headline-300-letter_spacing);    
    margin:0;
}
h6
{
    font-size: var(--vel-typography-headline-100-font_size);
    font-family: var(--vel-typography-headline-100-font_family);
    font-weight: var(--vel-typography-headline-100-font_weight);
    line-height: var(--vel-typography-headline-100-line_height);
    letter-spacing: var(--vel-typography-headline-100-letter_spacing);    
    margin:0;
}
p{
    font-size: var(--vel-typography-text-300-font_size);
    font-family: var(--vel-typography-text-300-font_family);
    font-weight: var(--vel-typography-text-300-font_weight);
    line-height: var(--vel-typography-text-300-line_height);
    letter-spacing: var(--vel-typography-text-300-letter_spacing);
    margin:0;
}

