/* ----- TAGS ----- */
body {
	overflow-y: scroll;
	margin: 0;
	background-color: #eee;
	color: #25334f;
	font-family: Ubuntu, Verdana, sans;
	font-size: 1.3em;
}

footer {
	z-index: 10;
	position: fixed;
	bottom: 0;
	margin: 0;
	border: solid #777;
	border-width: 1px 0 0;
	width: 100%;
	background-color: #fff;
	padding: 0;
	font-size: 0.8em;
}
footer a {
	font-size: 1.5em;
}

main {
	margin: auto;
	margin-top: 130px;
	margin-bottom: 130px;
}

a {
	text-decoration: none;
	font-variant: small-caps;
	font-weight: bold;
	color: #303949;
}
a:hover, a:active {
	color: #515760;
}

table {
	margin: auto;
	border-collapse: collapse;
	border-style: hidden;
}
th {
	text-transform: uppercase;
	font-weight: bold;
}
th, td {
	border: 1px dotted #777;
	padding: 10px;
}

input {
	width: 100%;
}
input, select, button {
	font-size: 1em;
}
th input {
	text-align: center;
}



/* ----- IDS ----- */
#wrapper {
	margin: auto;
	width: 100%;
	text-align: center;
}

#successposition {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-bottom: 100px;
}
#success {
	z-index: 12;
	position: relative;
	left: -50%;
	opacity: 0;
	border-radius: 5px;
	background-color: rgba(38, 213, 26, 0.5);
	padding: 15px;
	color: #000;
	font-size: 0.8em;
}
#success.show {
	opacity: 1;
}


/* ----- CLASSES ----- */
.clip {
	margin: 0;
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
}
.clip img {
	margin: 0;
	height: 23px;
	width: 23px;
	padding: 5px 0 0;
}
.clip:hover {
	background: transparent;
}

.copy {
	position: absolute;
	left: -100%;
}

.tooltip {
	z-index: 15;
	position: absolute;
	display: inline-block;
	visibility: hidden;
	transition: opacity 0.3s;
	opacity: 0;
	margin: -60px 0 0 5px;
	border-radius: 5px;
	background-color: rgba(51, 51, 51, 0.4);
	padding: 5px;
	color: #eee;
	font-size: 0.8em;
}
button:hover .tooltip {
	visibility: visible;
	opacity: 1;
}
