BODY {
	padding: 0;
	background-color: Black;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	background-repeat: no-repeat;
	background-position: top center;
}

TEXTAREA {
	
	
}

a:link {  font-family: Verdana; font-size: 12px; color: #996633; text-decoration: none}
a:visited {  font-family: Verdana; font-size: 12px; color: #996633; text-decoration: none}
a:hover {  font-family: Verdana; font-size: 12px; color: #996633; text-decoration: underline}



.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

input[type=text] {
    /* width: 600; */
    /* border-radius: 4px; */
	border: 0px;
    outline: none;
    box-shadow: none;
    font-size: 16px;
	/* background-image: url('http://www.rpgmaker.pl/lay/r-middler.png'); */
    /* background-image: url('searchicon.png'); */
    /* background-position: 10px 10px; */
    background-repeat: repeat;
	margin: 12px 0;
}

/* Poprawny input 
input[type=text] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('searchicon.png');
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
} */