body {  box-sizing: border-box;  }


:root {
  --table-color: #007bff; 
  --success-color: #55a70c; 
  --warning-color: #ff5c26; 

--link-color: #000;

  --light-color: #ffffff; 
  --font-family:  Arial, sans-serif;
  --footer-text-color: #fff;
  --footer-background: #111111;
  --nav-background: #fff;
  --nav-text-color: #000;
  --nav-text-hover-background: #222222;
  --nav-text-hover-color: #fff;
  --expose-background: #1fab70;
  --expose-color: #ffffff;
  --expose-hover-background: #0b9f8d;
  --expose-hover-color: #eee;
  
  --dark-background: #111111;
  --dark-color: #ffffff;
  --dark-hover-background: #333333;
  --dark-hover-color: #eee;
  
  --outline-dark-color: #111111;
  --outline-light-color: #ffffff;
  
  --light-background: #fff;
  --light-color: #111111;
  --light-hover-background: #dddddd;
  --light-hover-color: #111111;
  
  
  --window-background: #fff;
  --window-contrasted: #111;
  --window-title-background: #fff;
  --window-title-color: #000;
  --window-border-color: #888888;
  --window-border-radius: 10px;
}



.btn-light { background: var(--light-background); color: var(--light-color);  }
.btn-dark:hover { background: var(--light-hover-background); color: var(--light-hover-color);   }


*, *::before, *::after {   box-sizing: border-box; }    body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {   margin: 0;   font-family: var(--font-family); }   ul[role='list'], ol[role='list'] {   list-style: none; }   html:focus-within {   scroll-behavior: smooth; }   body {   min-height: 100vh;   text-rendering: optimizeSpeed;   line-height: 1.5; }   a:not([class]) {   text-decoration-skip-ink: auto; }   img, picture {   max-width: 100%;   }  input, button, textarea, select {   font: inherit; }

.row {
    display: flex;
    flex-wrap: wrap;
  
}

[class*="col-"] {
    
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}


@media (max-width: 576px) {
	.col-xs-0 { flex: 0 0 0%; max-width:0%; display: none; }
    .col-xs-1 { flex: 0 0 12.33%; max-width: 12.33%; }
    .col-xs-2 { flex: 0 0 16.66%; max-width: 16.66%; }
    .col-xs-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xs-4 { flex: 0 0 33.33%; max-width: 33.33%; }
    .col-xs-5 { flex: 0 0 41.66%; max-width: 41.66%; }
    .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xs-7 { flex: 0 0 58.33%; max-width: 58.33%; }
    .col-xs-8 { flex: 0 0 66.66%; max-width: 66.66%; }
    .col-xs-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xs-10 { flex: 0 0 83.33%; max-width: 83.33%; }
    .col-xs-11 { flex: 0 0 91.66%; max-width: 91.66%; }
    .col-xs-12 { flex: 0 0 100%; max-width: 100%; }
	.boxed { width: 100%; padding-left: 10px;  padding-right: 10px;  }
	.block-mobile { display: block; text-align: center; border-radius: 0px !important; }
	.col-last  { padding-right: 0px !important;   }
	main .btn, footer .btn { display: block; width: 100%; margin-bottom: 4px; }
}


@media (min-width: 577px)  {
	.col-md-0 { flex: 0 0 0%; max-width:0%; display: none; }
    .col-md-1 { flex: 0 0 8.33%; max-width: 8.33%; }
    .col-md-2 { flex: 0 0 16.66%; max-width: 16.66%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.33%; max-width: 33.33%; }
    .col-md-5 { flex: 0 0 41.66%; max-width: 41.66%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.33%; max-width: 58.33%; }
    .col-md-8 { flex: 0 0 66.66%; max-width: 66.66%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.33%; max-width: 83.33%; }
    .col-md-11 { flex: 0 0 87.67%; max-width: 87.67%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
	.boxed { width: 100%; padding-left: 10px;  padding-right: 10px;  }	
	.boxed-mini { max-width: 1200px; padding-left: 10px;  padding-right: 10px;  margin: auto;  }
	ul.start a { display: inline-block; text-align: center; }
}


.ui-window { background-clip: border-box; border-radius: var(--window-border-radius); border: 1px solid var(--window-border-color);  padding: 1px;  background: var(--window-background); color: var(--window-contrasted);  }
.ui-title { padding: 4px 8px 4px 8px;   color: var(--window-title-color); margin-bottom: 1px; }

.ui-description a { color: var(--link-color); flex: 1; text-decoration: none; font-size: 50px; text-align: center; }
.ui-description p {  padding: 8px;  flex: 9;  }
.ui-description {  display: flex;
  align-items: center;  }


.border-radius-one { -webkit-border-bottom-left-radius: 20px;
-moz-border-radius-bottomleft: 20px;
border-bottom-left-radius: 20px; }


.mb-5 { margin-bottom: 25px; }

footer { padding: 60px 6px;  background: var(--footer-background); color: var(--footer-text-color);  }
footer a {  color: var(--footer-text-color); }
.copyright {   background: var(--footer-background); color: var(--footer-text-color);  font-size: 13px; text-align: center; padding-top: 20px;  padding-bottom: 8px; }



nav {
  background-color: var(--nav-background);
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul.start {
	
	 justify-content: flex-start;
	
}




nav ul.end {
	
	 justify-content: flex-end;
	
}

nav ul.between {
	
	 justify-content: space-between;
	
}
nav ul li {
  display: inline-block;
 
}

nav ul li a {
  text-decoration: none;
  color: var(--nav-text-color);
  padding: 8px 16px;
 
}
nav ul li a:hover {
  background-color: var(--nav-text-hover-background);
  color: var(--nav-text-hover-color);
}
nav ul.active li a:hover {
  background-color: var(--nav-text-hover-background);
  color: var(--nav-text-hover-color);
}

nav .toggle {
  display: none; 

  
}

.mt-2 { margin-top: 14px; }

.logo-mobile {
  display: none; 
}
nav {
 
  position: relative;
}

 .nav_click {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: pointer; 
}

.p-0  { padding: 0px; }

@media (max-width: 768px) {
	
ul.mobile a { font-size: 40px; }	
ul.mobile {  justify-content: flex-end; }	
ul.active li { border-bottom: 1px solid #ddd;  font-size: 25px; }


.toggle {
  position: absolute; right: 10px; top: 0px;
  display: block;
  order: 2;
  font-size: 40px;
  
}
	
nav.expanded {
	display: block;
width: 100% !important;
max-width: 100% !important;
}

 .logo-mobile {
    display: block;
    order: 1; 
	min-height: 40px;
  }
 .nav-toggle {
    order: 3; 
  }



  .togglenav ul.active {
    display: flex;
    flex-direction: column;
  }

.togglenav ul.active li i {
	float: right;
}

  .togglenav ul.active li {
    margin-right: 0;
   
  }
}

nav ul {
	
  transition: max-height 0.3s ease-in-out;
 
}
nav .nav-toggle {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.py-20 { padding-top: 20px; padding-bottom: 20px; }

@media (min-width: 900px) {
	nav ul li a { padding: 10px 20px; }
	nav { }
	.go-end-xl {  float: right;   }
}

@media (max-width: 768px) {
  nav ul li {
    display: block;
    margin-right: 0;
   
  }

  nav ul {
	   padding: 0px;
  margin: 0px;
  }	
	
  nav ul li a {
    display: block;
    width: 100%;
   
  }

  nav ul li a:hover {
     background-color: var(--nav-text-hover-background);
	 color: var(--nav-text-hover-color);
  }
}


.logo-mobile { max-width: 80%; padding: 8px !important;  }

nav ul.active li a { padding: 10px 20px; }


.btn { padding: 8px 20px; text-decoration: none; cursor: pointer;  border-radius: 4px;  }



.btn-expose { background: var(--expose-background); color: var(--expose-color);  }
.btn-expose:hover { background: var(--expose-hover-background); color: var(--expose-hover-color);   }

.btn-dark { background: var(--dark-background); color: var(--dark-color);  }
.btn-dark:hover { background: var(--dark-hover-background); color: var(--dark-hover-color);   }

.outline-dark { color: var(--dark-background); outline: 3px solid var(--outline-dark-color);  }
.outline-light { color: var(--light-color); outline: 3px solid var(--outline-light-color);  }
.outline-dark:hover { background: var(--dark-hover-background); color: var(--dark-hover-color);   }

.btn-light { background: var(--light-background); color: var(--light-color);  }
.btn-dark:hover { background: var(--light-hover-background); color: var(--light-hover-color);   }



h1 { font-size: 2.125rem; font-weight: bold;  }
h2 { font-size: 1.875rem; }


.me-3 { margin-right: 20px; }

table {
    border-collapse: collapse;
	 position: relative;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	width: 100%;
}
table thead tr {
    background-color: var(--table-color);
    color: #ffffff;
    text-align: left;
}
table th {
	 position: sticky;
	 background-color: var(--table-color);
  top: 0;
}
table th,
table td {
    padding: 12px 15px;
}
table tbody tr {
    border-bottom: 1px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
    background-color: #f8f8f8;
}
table tbody tr:last-of-type {
    border-bottom: 4px solid var(--table-color);
}
.enfasy { background: #fff; }
div {
  font-size: 1.25rem;
  font-weight: 300;
}
p {
  font-size: 1.05rem;
  font-weight: 300;
}
b{ font-weight: bold; }
.ms-2 { margin-left: 15px; }
.text-center { text-align: center; }


.logo img { max-width: 100%; padding: 8px; }


