*{
	margin:0;
	padding:0;
}
body{
	background:#000 url(../images/1.jpg) repeat top left;
	font-family:"Myriad Pro", "Trebuchet MS", Arial;
	font-size:12px;
	color:#fff;
	
}

.mp_wrapper{
	width:1000px;
	height:626px;
	margin:50px auto 40px auto;
	position:relative;
	overflow:visible;
}
.mp_content_wrapper{
	position:absolute;
	top:0px;
	left:0px;
	width:580px;
	height:380px;
	background:transparent url(../images/bg.png) repeat top left;
	-moz-border-radius:10px 0px 0px 0px;
	-webkit-border-top-left-radius:10px;
	border-top-left-radius:10px;
}
.mp_player{
	position:absolute;
	top:0px;
	left:585px;
	width:215px;
	height:526px;
	background:transparent url(../images/bg.png) repeat top left;
	-moz-border-radius:0px 10px 10px 0px;
	-webkit-border-top-right-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
}
.mp_content img{
	width:203px;
	border:1px solid #000;
	-moz-box-shadow:1px 1px 4px #000;
	-webkit-box-shadow:1px 1px 4px #000;
	box-shadow:1px 1px 4px #000;
	margin:20px 20px 10px 20px;
}
.mp_description{
	width:540px;
	height:500px;
	margin:50 auto;
	overflow:show;
	text-overflow:ellipsis;
}
.mp_description h2{
	font-size:34px;
	margin-bottom:5px;
	color:#f0f0f0;
	background:transparent url(../images/bg.png) repeat top left;
	padding:3px 0px 4px 10px;
	-moz-box-shadow:0px 0px 4px #000 inset;
	-webkit-box-shadow:0px 0px 4px #000 inset;
	box-shadow:0px 0px 4px #000 inset;
}
.mp_description p{
	text-shadow:1px 1px 1px #000;
	text-transform:uppercase;
	padding:5px;
	line-height:17px;
}
.mp_songs{
	width:320px;
	height:203px;
	position:absolute;
	right:20px;
	top:20px;
}
a.mp_playall{
	background:#000 url(../images/play_big.png) no-repeat center center;
	width:50px;
	height:50px;
	position:absolute;
	top:98px;
	left:96px;
	text-indent:-9000px;
	outline:none;
	display:none;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	opacity:0.7;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
.mp_songs > div{
	background:transparent url(../images/bg.png) repeat top left;
	width:100%;
	margin-bottom:5px;
	height:30px;
}
.mp_songs div h3 {
	width:260px;
	line-height:10px;
	margin-left:10px;
	float:left;
}
.mp_options{
	width:48px;
	float:right;
}
.mp_options span{
	text-indent:-9000px;
	width:20px;
	height:26px;
	margin:2px 2px 0px 0px;
	float:left;
	cursor:pointer;
}
.mp_options span.mp_addpl{
	background:transparent url(../images/add.png) no-repeat center center;
}
.mp_options span.mp_play{
	background:transparent url(../images/play.png) no-repeat center center;
}
ul.mp_albums{
	
	width:110px;
	-moz-box-shadow:1px 1px 4px #000;
	-webkit-box-shadow:1px 1px 4px #000;
	box-shadow:1px 1px 4px #000;
	cursor:pointer;
	margin-top:50px;
	overflow:visible;

}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10vmin;
	overflow: hidden;
	transform: skew(5deg);
  }
  .container .card {
	flex: 1;
	transition: all 1s ease-in-out;
	height: 75vmin;
	position: relative;
  }
  .container .card .card__head {
	color: white;
	background: rgba(0, 0, 0, 0.75);
	padding: 0.5em;
	transform: rotate(-90deg);
	transform-origin: 0% 0%;
	transition: all 0.5s ease-in-out;
	min-width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1em;
	white-space: nowrap;
  }
  .container .card:hover {
	flex-grow: 10;
  }
  .container .card:hover img {
	filter: grayscale(0);
  }
  .container .card:hover .card__head {
	text-align: center;
	top: calc(100% - 2em);
	color: white;
	background: rgba(0, 0, 0, 0.5);
	font-size: 2em;
	transform: rotate(0deg) skew(-5deg);
  }
  .container .card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease-in-out;
	filter: grayscale(100%);
  }
  .container .card:not(:nth-child(5)) {
	margin-right: 1em;
  }