body {
    font-family: Arial, Helvetica, sans-serif;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 10px;
    border-color: transparent;
}

table.memberstable tr td {
    border-radius: 5px;
    border-color: transparent;
}

th, td {
    text-align: left;
    padding: 8px;
}

table.clantable {
    border-collapse: separate;
    border-spacing: 0px;
    width: 100%;
}

table.clantable tr td {
    background-color: #aaa;
}

table.clantable tr:first-child td:nth-child(3n+1) {
    padding: 10px 20px;
    vertical-align: top;
}

table.clantable tr:first-child td:first-child {
    text-align: center;
}

/*table.clantable tr:first-child td:last-child {
      width: 20em;
    }*/

tr:hover {
    background-color: #f5f5f5;
}

.clan-tag {
    color: #e3cfb5;
}

table.clantable tr:first-child td:nth-child(2) {
    color: #e3cfb5;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, -1px -1px 0px #000;
    padding-top: 5px;
    white-space: nowrap;
    text-align: left;
    padding-right: 50px;
    vertical-align: bottom;
}

table.clantable tr:first-child td:nth-child(3) {
    color: #4c4c4c;
    font-size: 1em;
    font-weight: bold;
    padding-top: 5px;
    white-space: nowrap;
    text-align: right;
    padding-left: 50px;
    vertical-align: bottom;
}

table.clantable tr:nth-child(1n+2) td {
    border-bottom: solid #000 1px;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000;
    padding-top: 5px;
    white-space: nowrap;
}

table.clantable tr:nth-child(1n+2) td:first-child {
    text-align: left;
    padding-right: 50px;
}

table.clantable tr:nth-child(1n+2) td:last-child {
    text-align: right;
    padding-left: 50px;
}

table.clantable tr:first-child>td:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

table.clantable tr:first-child>td:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

table.clantable .clanlevel {
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    background-color: #000;
    padding: 3px;
}

tr:nth-child(even) {
    background-color: #f2f2f2
}

div.buttonbar{
    text-align: center;
    padding-bottom: 5px;
}

.glass{
	/* background styles */
	position: relative;
	display: inline-block;
	padding: 15px 25px;
	background-color: navy; /*for compatibility with older browsers*/
	background-image: linear-gradient(navy,lightblue);

	/* text styles */
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-family: sans-serif;
	font-weight: 100;
}

.glass:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}

.glass:hover{
	background: linear-gradient(rgb(125, 32, 138),rgb(250, 176, 250));
}

