/*
  Specify structure and template (Globally with IDs for blocks)

	e.g.:

	MyLayoutTag {
    position:
    display:
    margin:
    padding:
  }
  
  #MyLayoutId {

  }

  .MyLayoutClass {

  }
*/


html, body {
  margin: 0; padding: 0;
}
html {
  height: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100%;
}
