button {
    border: none;
    background: #eee;
    font-size: 16px;
    height:50px;
    width:30%;
}
	
burgerButton {
    border: none;
    background: aqua;
    font-size: 16px;
    height:30px;
    width:30px;
	content: "\u2630";  
}
	
button, input:hover, li:hover {
    border: none; 
    background: #bbb;
}

li:active {
    border: none; 
    background: aqua;
}

burgerButton:hover {
    border: none; 
    background: #bbb;
}

li, ul{
    height:30px;
	font-size: 18px;
    background: black;
    color:yellow;
	line-height:30px;
	/*line-height centrage vertical text-align: center;*/
}

.posMargin {
    margin-top: 100px;
}

.posSticky {
	position: sticky;
    top: 0;
}

.posFixed {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.posDown {
	position: fixed;
    top: 200;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.backColor {
  background-color: skyblue;
}

	
label {
	display:block;
    color:black;
	font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

input {
    height:20px;
	font-size: 15px;
    letter-spacing: 1px;
}

textarea {
    display: block;
    color:yellow;
	font-size: 15px;
    letter-spacing: 1px;
    background: black;
    line-height: 1.5;
    width:95%;
	height: 75%;
	padding: 10px;
    /*border-radius: 5px;*/
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px #999;
}

h1, h2, h3, h4, h5, h6 { background: cyan;
}

h1, h2, h3, h4, h5, h6:hover {
    border: none;
    background:chartreuse; /*  #0F0; */
}

br {
    text-indent: 50px
}
	
.topRigth {
    position: absolute; 
	right:0;
	top:0;
}
.topLeft {
    position: absolute; 
	left:0;
	top:0;
}
.bottomRigth {
    position: absolute; 
	right:0;
	bottom:0;
}
.bottomLeft {
    position: absolute; 
	left:0;
	bottom:0;
}

#myProgress {
    width: 100%;
    background-color: grey;
}

#myBar {
    width: 1%;
    height: 30px;
    background-color: yellow;
}

#div3 {
    color: green;
	background-color: coral;
}
