/* GENERAL */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	/*height: 100%;
	width: 100%;*/
	min-height: 100%;
	min-width: 100%;
}

body {
	font-weight: normal;
}


/* CLEAR */

.clear {
	clear: both;
}
.clear0 {
	clear: both;
	height: 0px;
}

/* TEXT */
.tcenter {
	text-align: center;
}

/* MARGIN/PADDING */

.nomargin {
	margin: 0px !important;
}

.nopadding {
	padding: 0px !important;
}


/* LINES */

hr {
	margin: 15px 0px;
	border:none;
	border-top: 1px solid #ddd;
	color: #FFFFFF;
	background-color: #FFFFFF;
	height: 1px;
	clear: both;
	opacity: 1 !important;
}


/* TEXT */

.taright {
	text-align: right;
}
.taleft {
	text-align: left;
}
.breakwords {
	word-break: break-all;
}


/* OUTLINE */

*:focus, a img {
	border: none;
	outline:none;
}
:focus {
	outline: none !important;
}

/* FLOATS */

.floatright {
	float: right;
}
.floatleft {
	float: left;
}


/* LISTS */

ol li {
	margin-left: 11px;
}
ul li {
	margin-left: 11px;
}

p, ul, ol {
	padding-bottom: 1em;
}


/* LINKS */

a, a:link, a:visited, a:active {
	text-decoration:none;
}


/* TABLES */

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 0.85em;
}
table td {
	vertical-align: top;
}

/* FORMS */

textarea {
	resize: none;
}

