﻿* {
	margin: 0;
	padding: 0;
	outline: none;
}

html, body {
	width: 100%;
	height: 100%;
}

p {
	margin: 10px 0;
}
a img {
	border: none;
}

.debug {
	background: rgba(255, 0, 0, 0.25);
}

.block {
	display: block;
}
.inlineblock {
	display: inline-block;
}
.tablecell {
	display: table-cell;
}
.hide {
	display: none;
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.mcenter {
	margin-right: auto;
	margin-left: auto;
}
.p10 {
	padding: 10px;
}

.fl {
	float: left;
}
.fr {
	float: right;
}
.clear {
	clear: both;
}

.n {
	font-weight: normal;
}
.b {
	font-weight: bold;
}
.i {
	font-style: italic;
}

.hidetext {
	text-indent: -10000px;
}

.acenter {
	text-align: center;
}
.aleft {
	text-align: left;
}
.aright {
	text-align: right;
}
.ajustify {
	text-align: justify;
}
.vatop {
	vertical-align: top;
}
.vamiddle {
	vertical-align: middle;
}

.nowrap {
	white-space: nowrap;
}

.fwhite {
	color: #fff;
}
.fblack {
	color: #000;
}

.uppercase {
	text-transform: uppercase;
}

.underline {
	text-decoration: underline;
}
.linethrough {
	text-decoration: line-through;
}
.dashed {
	margin-bottom: -1px;
	border-style: dashed;
	border-width: 0 0 1px 0;
}
a.dashed:hover {
	border-width: 0;
}
a.dashed.hover {
	border-width: 0;
}
a.dashed.hover:hover {
	margin-bottom: -1px;
	border-style: dashed;
	border-width: 0 0 1px 0;
}

.pointer {
	cursor: pointer;
}