.sectionLeft {
				float: left;
				width: 80%;
			}
			.sectionRight {
				float: right;
				width: 20%;
			}
			.scoreContainer {
				background-color: rgb(238, 238, 238, 0.6);
				width: 50%;
				padding: 10px;
				border-radius: 200px;
				font-size: 24px;
				font-weight: bold;
			}
			.clickerContainer img {
				position: relative;
				transition: all .2s ease-in-out;
			}
			.clickerContainer img:hover { transform: scale(1.10); }
			.clickerContainer IMG:active { transform: scale(1.12); }
			
			.shopButton {
				background-color: b5b5b5;
				transition: all .2 ease-in-out
				border-radius: 200px;
				width: 100%;
				margin: 10px 0px 10px 0px;
			}
			.shopButton:hover {
				background-color: c7c7c7;
				transition: all .2s ease-in-out;
			}
			.shopButton #image {
				width: 25%;
			}
			.shopButton img{
				height: 64px;
				width: 64px
			}
			.shopButton #nameAndCost p {
				margin: 0px;
				width: 60%;
			}
			
			.shopButton #nameAndCost p:first-of-type {
				font-size: 24px;
			}
			.shopButton #amount {
				font-size: 48px;
				color: 595959;
				font-family: roboto;
				width:15%
			}
			
			.RstBttn {
				background-color: 770c0c;
				transition: all .2 ease-in-out
				border-radius: 200px;
				width: 100%;
				margin: 50px 0px 50px 0px;
			}
			.RstBttn:hover {
				background-color: 560a0a;
				transition: all .2s ease-in-out;
			}
			.RstBttn #image {
				width: 25%;
			}
			.RstBttn img{
				height: 64px;
				width: 64px
			}
			.RstBttn #nameAndCost p {
				margin: 0px;
				width: 60%;
			}
			
			.RstBttn #nameAndCost p:first-of-type {
				font-size: 10px;
			}
			.RstBttn #amount {
				font-size: 48px;
				color: 000000;
				font-family: roboto;
				width:15%
			}
			
			.unselectable {
				-webkit-user-select: none;
				-moz-user-select: none;
				-ms-user-select: none;
				user-select: none;
			}