@charset "utf-8";
/* CSS Document */

.desc{
	margin-left: 20px;
	margin-top: 10px;
	color: antiquewhite;
	font-size: 18px;
	font-family: Courier New;
}
.desc p{
	margin-top: 15px;
	margin-bottom: 10px;
	width: auto;
	margin-right: 10px;
}

/*--table--*/
		style.table table, td, th{
			padding: 10px;
			width: auto;
			color: white;
			border: 1px solid #080808;
			border-collapse: collapse;
			font-size: 15px;
			font-family: Courier New;
			background: linear-gradient(top, #3c3c3c 0%, #222222 100%);
			background: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
			
			
		}
td:hover{
			background: #7A4D03;
		}





/*--gallery--*/

.gallery{
	margin: 10px 50px;
}
.gallery img{
	width: 230px;
	padding: 5px;
	filter: grayscale(100%);
	transition: 1s;
}
.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.1);
}
.table .gallery img{
	width: 50px;
	height: 50px;
}
/*--End gallery--*/
