
﻿html{
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    height: 100%;    
    margin: 0;
}
.SiteParent {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 0;
}
.Site {
  display: flex;
  flex-direction: column;
  height: 100%; 
}

.Site-header,
.Site-footer {
  flex: none; 
  flex-shrink: 0;
}

.Site-content {
  flex: 1 0 auto; 
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
/*.Site-content::after {
  content: '\00a0'; 
  display: block;
  margin-top: 0;
  height: 0px;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .Site-content {
    padding-top: 0;
  }
  .Site-content::after {
    margin-top: 0;
  }
}

.Site-content--full {
  padding: 0;
}
.Site-content--full::after {
  content: none;
}*/