/* root vars */
:root {
	--mfw-theme-bg:#4f5155;
	--mfw-theme-bg-lighter:#74777d;
	--mfw-theme-app-bg:#fffff0;
	--mfw-theme-app-bg-darker:#F2F2E0;
	--mfw-theme-border:#D0D0D0;
	--mfw-theme-font:#444444;
	--mfw-red:#cd3942;
	--mfw-green:#ADCD39;
	--mfw-yellow:#f2bd55;
	--mfw-orange:#db6b29;
	--mfw-blue:#006fb0;
	--mfw-blue-dark:#1e3566;
}

*:not(text) {
  margin:0;
  padding:0;
  border:none;
  font-size:inherit;
  font-family:inherit;
  line-height: inherit;
  vertical-align:baseline;
  box-sizing: border-box;
}

/* HTML 5 FALLBACK */
article, aside, figure, footer, header, hgroup, menu, nav, section, address, meter, main { display: block; }

html {
  height: 100%;
  width: 100%;
  overflow: visible;
  font-size: 62.5%;
  line-height: 1.5;
  font-family: Verdana, Arial, sans-serif;
  /* IE fastclick */
  -ms-touch-action: manipulation;
	touch-action: manipulation;
}
@media (max-width: 800px) { 
	html {	width:100vw; }
}

body {
  height:100%;
  width:100%;
  min-width: 100%;
  max-width:100%;
  position: relative;
  float: left;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
}


hr {
  border:none;
  border-top:1px #ebebeb solid;
  margin:5px 0px 15px;
  position: relative;
  float: left;
  clear: both;
  width: 100%;
}

b, strong { font-weight:bold; }
i, em { font-style:italic;  }

sup { vertical-align: super; }
sub { vertical-align: sub; }
sup,sub {
  line-height: 0;
  font-size: 50% !important;
  padding-left: 1px;
}
.rtl sup, .rtl sub {
  padding-left: 0px; 
  padding-right:1px;
}

h1, h2, h3, h4 { line-height: 1.2; }

h1, h2, h3, h4, h5, h6,
td h1, td h2, td h3, td h4, td h5 { margin-bottom:11px; }

h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
	font-size: inherit;
	color: inherit;
}

* { outline:none; }

a {
  text-decoration:none !important;
  font:inherit;
  outline:none;
}
a * {
  cursor: pointer;
}

figure { line-height: 0; }

img {
  outline:none;
  color: #777;
  /*border:1px solid rgba(0,0,0,0);*/
}

br { clear: both; }

a:focus,
object,
embed {
  outline:none;
} 
object,
embed,
iframe {
	vertical-align: middle;
}

/* table */
table {
  border-spacing:0px;
}

table, tr, td, th, tf {
  border-collapse : collapse;
}
table, tr, td, th, tf, span {
  font-size:inherit;
  font:inherit;
  font-style:inherit;
  color:inherit;
  font-weight:inherit;
  line-height:inherit;
  text-transform:inherit;
}

td, th, tf  {
  text-align:left;
  vertical-align:top;
  padding:0px 3px 3px 0px;
  min-height:11px;
}

/* ul, ol */
li, ul, ol {
  height:auto;
}

/* misc */
.clear { clear:both; }
.hide { display:none; }
.hideVis,
.invisible { visibility: hidden; }

.clearfix:after {
   content: " ";
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
}

.noTransition {
	-moz-transition:none !important;
	-webkit-transition:none !important;
	-o-transition:none !important;
	-ms-transition:none !important;
	transition:none !important;
}

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea {
  overflow:auto;
}

p, h1, h2, h3, h4, h5, table, ul, ol {
  position:relative;
  width:100%;
  float:left;
  clear:both;
}