/* @group General */
*,
*:before,
*:after {
	box-sizing: border-box;
}
html {
	height: 100%;
    position: relative;
}
body {
    min-height: 100%;
	overflow-x: hidden;
    display: table;
    width: 100%;
    height: 100%;
	font-family: arial, sans-serif;
    font-size: 16px;
	font-weight: 400;
	line-height: 22px;
    text-align: justify;
    color: #000000;
    background-color: #404040;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;

}
body > .wrapper {
	display: table-cell;
    vertical-align: middle;
    min-height: 100%;
    width: 100%;
    padding: 30px;
}
body .flyer {
    display: block;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
}
body .flyer img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* @end */
