* {
	box-sizing: border-box;
} 

html {
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	color: #000;
	margin: 0;
	background : #fff;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 12pt;
	font-style: normal;
}

img {
  max-width: 100%;
  width: auto;
  border: none;
}

hr {
 	border: 0;
    height: 0;
    border-bottom: 1px solid #dddddd;	
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}

#wrapper {
	display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas: "header"
        "main";
    grid-template-rows: 200px 1fr;
   -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#header {
	grid-area: header;
    background: black;
    text-align: center;
}

main, #pagecontent {
	grid-area: main;
    background: #fff;
}

#content {
	max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.centerText {
	max-width: 700px;
}

.errmsg {
	background-color: #eaba6a;
	border: 1px solid #995315;
	padding: 10px;
	color: #582f0c;
}

.errtitle {
    font-weight: bold;
    margin-bottom: 5px;
}

.notice {
	background-color: #f4f2d1	;
	border: 1px solid rgba(150,173,107,0.5959975);
	padding: 10px;
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
}

.small {
	font-size: small;
}

.gray {
	color: #aaa;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

.downloadButn {
	padding: 7px 15px;
	margin-right: 2px;
	margin-left: 2px;
	background: black;
	color:white;
	font-size: 12pt;
	
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
	border-style: none;
	text-decoration: none;
	white-space: nowrap;
    border: 1px solid black;
}

.downloadButn:hover{
	background: #dddddd;
	color: black;
    border: 1px solid black;
}

.inline-icon {
    vertical-align: bottom;
    font-size: 18px !important;
 }

 #dlcount {
    font-size: 20pt;
    font-style: bold;
 }

@media screen and (max-width: 700px) {

    #wrapper {
        display: grid;
        width: 100%;
        height: 100%;
        grid-template-areas: "header"
            "main";
        grid-template-rows: auto 1fr;
    }

	body  {
		font-size: 16pt;
	}

	.notice {
		font-size: 12pt;
	}

	.desktop {
		display: none;
	}
	.mobile {
		display: block;
	}
	#content {
		font-size: 16pt;
        padding: 20px;
	}
}

/* eol */
