/*  import external css  */
@import url('fonts.css');
@import url('fontawesome/css/all.min.css');

@import url('partials/header.css');
@import url('partials/aside.css');
@import url('partials/footer.css');

@import url('animations.css');
@import url('form.css');
@import url('table.css');


/*  attributes for all  */
body, h1, h2, h3, h4, h5, h6, p, div, img, a, address, b, i, u, sup, div, span, ul, li
{
	margin: 0;
	padding: 0;
	border: 0;
}

/*  tags  */
html
{
	height: 100%;
}

body
{
	font-family: OpenSans, Verdana, Arial, Helvetica, sans-serif;
	background-size: 70% auto;
	background: #F0F0F0 url('../img/bg.png') no-repeat fixed bottom 1rem right 1rem;
	color: var(--color-text, #333333);
	font-size: 16px;
	text-align: center;
	-webkit-text-size-adjust: 100%;
}

a
{
	font-weight: normal;
	color: var(--color-link, #669900);
	text-decoration: underline;
	transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease;
}
a:hover
{
	color: var(--color-link-hover, #336600);
	text-decoration: none;
}

p
{
	margin: 0 auto;
	line-height: 1.45em;
}
p:not(:last-child)
{
	margin-bottom: 1em;
}

ol, ul
{
	margin: 0 0 0.9em 1.7em;
}

h1, h2, h3, h4, h5, h6
{
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
}

h1
{
	color: var(--color-primary, #669900);
	font-size: 2.0em;
	font-weight: 300;
	padding-bottom: 0.5em;
}

h2
{
	color: #000000;
	font-size: 1.8em;
	font-weight: 300;
	padding-bottom: 0.75em;
	padding-top: 0.75em;
}

h3
{
	color: #000000;
	font-size: 1.25em;
	font-weight: 500;
	padding-bottom: 0.25em;
	padding-top: 0.75em;
}

hr
{
	margin: 0 0 1rem 0;
	padding: 0 0 1rem 0;
	border: 0;
	border-bottom: 1px solid #DDDDDD;
}


/*  ids  */


/*  classes  */
.hidden
{
	display: none;
}

p.small-width
{
	max-width: 25rem;
}
p.success
{
	color: var(--color-success, #669900);
	font-weight: bold;
}
p.warning
{
	color: var(--color-warning, #FFAE3F);
	font-weight: bold;
}
p.error
{
	color: var(--color-error, #B4132D);
	font-weight: bold;
}

.no-animation
{
	transition: none !important;
}

.select-all
{
	-webkit-user-select: all;
	-moz-user-select: all;
	-ms-user-select: all;
	user-select: all;
}

.blur
{
	filter: blur(.3rem);
	transition: filter .125s ease;
}
.blur:focus,
.blur:active,
.blur:hover
{
	filter: blur(0);
}