

/* links */

a {
	text-decoration: initial;
	color: inherit;
	cursor:pointer;
}
a:hover {
	text-decoration: underline;
}
a.anchor {
    display: block;
    position: absolute;
	visibility: hidden;
}


/* content by user */

.user-content a {
	text-decoration:underline;
}
.user-content ul {
	padding-left: 20px;
}
.user-content ul li {
	display: list-item;
	list-style: initial;
}


/* generic elements */

.wrapper {
	position:relative;
    margin: 0 auto;
    display: block;
}
.item {
	display: inline-block;
}

/* positioning */

.v-top {
	vertical-align: top;
}
.v-middle {
	vertical-align: middle;
}
.v-bottom {
	vertical-align: bottom;
}

.vcenter > * {
	position: relative;
	transform: translateY(-50%);
	top: 50%;
	display: block;
}

.align-left {
	text-align:left;
}
.align-center {
	text-align:center;
}
.align-right {
	text-align:right;
}
.fullback {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}


/* sizing */

.w-100 {
	width: 100%;
}
.w-50 {
	width: 50%;
}
.w-33 {
	width: 33.33%;
}
.w-25 {
	width: 25%;
}
.w-20 {
	width: 20%;
}


/* font formating */
.uppercase,
.h-uppercase:hover {
	text-transform: uppercase;
}
.underline,
.h-underline:hover {
	text-decoration: underline;
}
.italic,
.h-italic:hover {
	font-style:italic;
}
.bold,
.h-bold:hover {
	font-weight:bold;
}


/* special formating */

.no-select {
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */      
}

.break-word {
	word-break: break-word;
	display: inline-block;
}

.comma-before > *:before {
	content: ', ';
}
.comma-before > *:first-child:before {
	content: '';
}

.devider-before > *:before {
    content: " |\00a0";
}
.devider-before > *:first-child:before {
    content: "";
}

.comma-after > *:after {
	content: ', ';
}
.comma-after > *:last-child:after {
	content: '';
}

.devider-after > *:after {
    content: " |\00a0";
}
.devider-after > *:last-child:after {
    content: "";
}


/* elements behavior */

.flt > * {
	float:left;
}
.flt.right > * ,
.flt > .right {
	float:right;
}
.flt.left > * ,
.flt > .left {
	float:left;
}
.clear,
.flt:after {
	content:"";
	clear: both;
	float:none;
    display: block;
}

.table {
	display:table;
}
.table-row {
	display:table-row;
}
.table-cell {
	display:table-cell;
}

.table.inherit > *:not(.inherit-end):not(style):not(script) {
	display:table-row;
}
.table.inherit > *:not(.inherit-end):not(style):not(script) > *:not(.inherit-end):not(style):not(script) {
	display:table-cell;
}
