body {
	font-size: 0.75em;
	line-height: 200%;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1pt;
	color: #454243;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
.container {
	width: 920px;
	padding: 20px;
}
.sidebar {
	position: fixed;
	width: 425px;
	height: 675px;
	background-image: url('img/img.jpg');
	background-repeat: no-repeat;
}
.main {
	position: relative;
	left: 425px;
	width: 425px;
	margin-left: 30px;
}
.menu {
	height: 50px;
	font-size: 2.5em;
	line-height: 100%;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align-last: justify;
	text-justify: inter-word;
}
.menu a {
	color: pink;
}

.menu a:hover {
	color: #bbd9f3;
}
.content {
	text-align: justify;
}

a {
	text-decoration: none;
	transition: all 0.3s ease;
}

.content a {
	font-weight: bold;
	color: #454243;
	box-shadow: inset 0 -7px #ffebbc;
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	transition: all .2s ease;
}

.content a:hover {
	box-shadow: inset 0 -18px #ffebbc;
}

h1 {
	text-indent: 0px;
	margin-top: 10px;

	font-weight: 800;
	font-size: 19px;
	text-transform: uppercase;
	color: #c3a9cb;

	background: repeating-linear-gradient(
		135deg,
		#fff,
		#c3a9cb 1px,
		#fff 1px,
		#fff 5px
	);
	background-size: 4px 4px;

}

.highlight {
	padding: 1px 10px 1px 0;
	background: #fff;
}

#header a {
	box-shadow: inset 0 -10px #fff6d6; /* fff3c9; */
}

div.stats {
	text-indent: 0;
	margin: 30px auto;
	border: 1px solid;

}
div.stats ul {
	list-style-type: none;
}
}

b {
	text-transform: uppercase;
	color: pink;
}


.list-member > span:first-child { width: 100px; }
.list-member > span:first-child:before {
		border-radius: 100%;
		width: 14px;
		height: 14px;
		background-color: #97bec2;
		top: .15em;
		margin-right: -.5em;
}
.list-member:nth-child(2n) > span:first-child:before { background-color: #d2b3a9; }


/* JOIN FORM */
#form-container {
		background-color: #fff;
		padding: 20px;
}
input,
select,
textarea {
		width: 100%;
		box-sizing: border-box;
		resize: vertical;

		padding: 10px;

		font-family: 'Raleway', serif;
		font-size: 0.75em;
		letter-spacing: 2px;
		color: #000;

		background-color: transparent;
		border: 2px solid #e4dbdb;
		border-radius: 0;

		-moz-appearance: none;
		-webkit-appearance: none;
		appearance: none;

		transition: border 0.2s linear, background 0.2s linear;
}
select {
		padding-left: 7px;
		color: #d9acb4;
		font-weight: normal;
	background-image: url('img/arrow.svg');
		background-repeat: no-repeat;
		background-position: right 10px center;
		background-size: .65em auto;
}
select option[selected="selected"] {
	color: orange;
}
.password1 {
		float: left;
		width: 50%;
		max-width: 50%;
		border-right: 10px solid transparent;
}
.password2 {
		float: left;
		width: 50%;
		max-width: 50%;
}
input[type=button],
input[type=submit],
input[type=reset] {
		color: #fff;
		background-color: #efe4e5;
		border: 0;
		cursor: pointer;
}
input[type='submit']:hover,
input[type='reset']:hover {
		background-color: #d9acb4;
}


.floating-label-wrap {
	margin-bottom: 20px;
}

/* Making the label break the flow */

.floating-label
{
		position: absolute;
		top: 0;
		left: 0;
		user-select: none;
		z-index: 1500;
}

/* Hide the browser-specific focus styles */

.floating-label-field
{
		color: #000;
		border-width: 0;
		z-index: 2000;
}
.floating-label-field:focus
{
		outline: 0;
		box-shadow: 0;
}
.floating-label-field::placeholder
{
		color: orange;
}

/* Make the label and field look identical on every browser */

.floating-label,
.floating-label-field
{
		font: inherit;
		line-height: 1;

		display: block;

		width: 100%;
}

.floating-label-field,
.floating-label-wrap
{
		position: relative;
}

/* Input Style */

.floating-label-field--s3
{
		border: 2px solid #e4dbdb; /* must match general input style */
}
.floating-label-field--s3 + .floating-label
{
		position: absolute;
		top: .2em;
		left: .2em;

		display: inline-block;

		width: auto;
		margin: 0;
		padding: .75em;

		transition: transform .25s, opacity .25s, padding .25s ease-in-out;
		transform-origin: 0 0;

		color: #d9acb4; /* color of placeholder */
		font-weight: normal;
}
.floating-label-field--s3:focus,
.floating-label-field--s3:not(:placeholder-shown)
{
		border-color: #f5dedc;
}
.floating-label-field--s3:focus + .floating-label,
.floating-label-field--s3:not(:placeholder-shown) + .floating-label
{
		z-index: 2500;

		padding: .5em;
		font-weight: 400;

		transform: translate(-.5em, -1em) scale(.8);

		color: #000; /* color of floating label */
		background-color: #fff;
		border-radius: 0;
}

/* Common Styles */
/* Identical inputs on all browsers */

.floating-label-field--s1:not(textarea),
.floating-label-field--s2:not(textarea),
.floating-label-field--s3:not(textarea)
{
		max-height: 4em;
}

.floating-label-field--s1,
.floating-label-field--s1 + .floating-label,
.floating-label-field--s2,
.floating-label-field--s2 + .floating-label
{
		padding: 1.5em;
}

.floating-label-field--s1 + .floating-label,
.floating-label-field--s2 + .floating-label
{
		z-index: 1500;
}

.floating-label-field--s1::placeholder,
.floating-label-field--s3::placeholder
{
		color: transparent;
}

/* Member List */

.fan {
	border-collapse: collapse;
	width: 100%;
}
.fan tr {
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.fan td {
	padding: 10px;
}
.fan tr:first-child td:first-child {
	width: 40%;
}
.fan tr:first-child td:nth-child(2) {
	width: 50%;
}
.show_members_no_website {
	opacity: 0.5;
}