html, body {
  height: 100%; 
  margin: 0px; 
  padding: 0px;
}

body {
  background: #8B8B8B url(../img/skyline.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  background-attachment: fixed;
}

div#main-wrapper {
  width: 84%;
  max-width: 1024px;
  min-height: 100%;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.line {
  width: 100%;
  height: 1em;
  background-color: #D10000;
}

div#logo {
  padding-right: 3em;
}

div#stamp {
  text-align: right;
  margin-bottom: 2em;
  max-width: 20%;
  position: absolute;
  bottom: 0;
  right: 1em;
}

div#stamp img.stamp {
  padding-right: 2em;
  width: 236px;
  max-width: 100%;
  height: auto;
}

div#line-header {
  text-align: right;
  z-index: 999;
}

div#line-header span.language-choser {
  position: absolute;
  padding-right: 1em;
  right: 0;
}

div#line-bottom {
  position: absolute;
  bottom: 0;
}

div#content {
  padding-bottom: 300px;
}

div.wrapper-two-coumn {
  margin-left: 2em;
  margin-right: 2em;
  display: flex;
  flex-wrap: wrap;
}

div.column-left {
  flex: 1 300px;
  min-width: 0;
  padding-left: 1em;
  padding-right: 1em;
}

div.column-right {
  flex: 1 300px;
  min-width: 0;
  padding-left: 1em;
  padding-right: 1em;
}

div.greeting {
  background-color: #fff; 
  padding: 0.5em 0.5em;
  margin-top: -1em;
  /* border: 2px solid #999; */
}

div.greeting p {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0.5em;
}

img.big-image {
  display: block;
  margin: auto;
  width: 100%;
  /*box-shadow: 4px 4px 8px #888;*/
}

img.big-inline-image {
  margin-left: 32px;
  margin-right: 32px;
  width: 960px;
  max-width: 80%;
  height: auto;
}

img.inline-image-right {
  width: 960px;
  max-width: 80%;
  height: auto;
  margin-left: 32px;
}

img.inline-image-right-quarter {
  width: 480px;
  max-width: 40%;
  height: auto;
  margin-left: 32px;
  float: right;
}

img.inline-image-left {
  width: 960px;
  max-width: 80%;
  height: auto;
  margin-right: 32px;
}

@media (min-width: 600px) {
    img.inline-image-right {
  	  float: right;
  	  width: 480px;
  	  max-width: 50%;
    }

    img.inline-image-right-quarter {
  	  float: right;
  	  width: 240px;
  	  max-width: 30%;
	  margin-right: 2em;
    }
  
  img.inline-image-left {
    float: left;
    width: 480px;
    max-width: 50%;
  }
}

div.logo {
  position: absolute;
  width: 270px;
  height: 70px;
  max-width: 25%;
  padding: 10px;
  top: 30px;
}

div.logo a:hover {
  background-color: inherit;
}

div.logo img {
  max-width: 100%;
  height: auto;
}

div.logo-hidden {
  display: none;
}

div.logo-left {
  left: 20px;
}

div.logo-right {
  right: 20px;
}

div.logo-center {
  margin: auto;
  left: 0;
  right: 0;
}

div.header {
  background-color: #fff;
  min-height: 140px;
}

div.header img {
  max-width: 100%;
  height: auto;
}

img.full-size {
  max-width: 100%;
  height: auto;
}

div.three-column {
	margin: 1em;
}

div.three-column {
    display: flex;
	flex-direction: column;
    justify-content: space-between;
}

div.three-column div {
	margin-bottom: 1em;
}



@media (min-width: 600px) {
	div.three-column {
	    /**
	     * Lay out the children of this container with
	     * flexbox, which is horizontal by default.
	     */
	    display: flex;
		flex-direction: row;

	    /**
	     * Make the container put as much space as possible
	     * between its children, with the children at either
	     * end laying flush against the container's edges.
	     */
	    justify-content: space-between;
	}
	
	div.three-column div {
		width: 30%;
	}	
}