/*
	Web designer: Omar Ricardo Chuman Zuñe
	Contact: omar.chuman[at] powermas.com.pe
	Last update: 2019/04/01
	Description: Style sheet that allows you to restore HTML defaults
*/

@font-face {
    font-family: 'PowerMas';
    font-style: normal;
    font-weight: 400;
    src: url('../Fonts/ubuntu-regular-webfont.woff2') format('woff2'),
         url('../Fonts/ubuntu-regular-webfont.woff') format('woff'),
         url('../Fonts/ubuntu-regular-webfont.ttf') format('truetype');
}

html 
{
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: PowerMas, sans-serif;
	font-size: 16px;
	-ms-text-size-ajust: 100%;
	-moz-text-size-ajust: 100%;
	-webkit-text-size-ajust: 100%;
	text-size-ajust: 100%;
	background-color: #FFF;
	color: #000;
}

body 
{ 
	overflow-x: hidden; 
}

*, *::after, *::before 
{
	-ms-box-sizing: inherit;
	-moz-box-sizing: inherit;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

a 
{ 
	color: #EECF27; 
}

a:hover 
{ 
	color: #CCC; 
}

h1 
{ 
	font-size: 32px;
	font-size: 2rem;
}

h2 
{ 
	font-size: 28px;
	font-size: 1.75rem;
}

h3 
{ 
	font-size: 24px;
	font-size: 1.5rem;
}

h4 
{ 
	font-size: 20px;
	font-size: 1.25rem;
}

h5, a, abbr, b, code, dfn, em, i, li, mark, p, pre, strong 
{ 
	font-size: 16px;
	font-size: 1rem;
}

h6, small 
{ 
	font-size: 12px;
	font-size: .75rem;
}

li 
{
	/*margin-left: 16px;
	margin-left: 1rem;*/
	list-style-type: inherit;
	list-style-position: inside;
}

abbr, dfn, em, i 
{ 
	font-style: italic; 
}

b, strong 
{  
	font-weight: bold; 
}

code, pre 
{ 
	font-family: monospace; 
}

mark 
{ 
	background-color: yellow; 
}

hr 
{ 
	margin: 16px auto;
	margin: 1rem auto;
	width: 100%;
	border: thin solid #000;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary 
{ 
	display: block; 
}

table 
{ 
	border-collapse: collapse; 
}

audio, canvas, img, iframe, picture, progress, svg, video 
{
	display: inline-block;
	vertical-align: baseline;
	width: 100%;
	max-width: 100%;
	height: auto;
}

button, input, optgroup, option, select, textarea 
{
	padding: 4px;
	padding: .25rem;
	font-family: inherit;
	font-size: 16px;
	font-size: 1rem;
	border: thin solid #000;
}

button, input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"], label, select 
{ 
	cursor: pointer; 
}

*[disabled] 
{
	cursor: default;
	color: #999;
	background-color: #DDD;
}

textarea 
{ 
	resize:none; 
}

::-moz-selection 
{
	color: #FFF;
	background-color: #CCC;
}

::selection 
{
	color: #FFF;
	background-color: #CCC;
}