@charset "UTF-8";
html {
	background-image: url('../../css/tausta.jpg');
	-webkit-background-size: cover; 
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-position: center center;
	height: 100%;
}

body {
	background: rgba(0,0,0,.4);
	min-height: 100%;
	text-align: center;
	padding-bottom: 30px;
}

h1 {
	font-size: 4em;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
	color: rgba(255,255,255,.8);
}

.nav-tabs {
	border-bottom: none;
}

.nav li {
	margin-bottom: 0px;
}

.nav li a {
	background-color: grey;
	color: white;
}

.nav li.active a {
	font-weight: bold;
}

.nav li a:hover {
	color: black;
}

.nav li a:focus {
	background-color: grey;
}

.tinyeditor {
	border: 2px solid white;
	border-radius: 4px;
	border-top-left-radius: 0px;
	padding: 0px;
}

.tinyeditor_placeholder {
	min-width: 100%;
	min-height: 300px;
	background: rgba(255,255,255,.5);
	text-align: center;
	vertical-align: middle;
	font-size: 30px;
	line-height: 300px;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

#tinyeditor {
	display: none;
}

#editor_form button {
	float: center; width: 100%; font-weight: bold;
}

#fileupload {
	padding: 2px;
	border: 2px solid white;
	border-radius: 4px;
	background-color: rgba(255,255,255,.5);
}

#preview {
	width: 100%;
}

#credits {
	position: fixed;
	text-align: center;
	bottom: 0;
	left: 0;
	height: 30px;
	width: 100%;
	border-top: 1px solid rgba(255,255,255,.2);
	background-color: rgba(0,0,0,.6);
	font-size: 10px;
	color: rgba(255,255,255,.6);
}

#credits a {
	text-decoration: underline;
	color: rgba(255,255,255,.4);
}

#credits a:hover {
	color: rgba(255,255,255,.8);
}

#credits p {
	font-size: 15px;
}