.uploadify {
	clear: both;
	font-size: 12px;
}
    .uploadify span {
    height:90px !important;
    padding-left:0px!important;
    }
.uploadify .hidden {
	display: none;
}
.uploadify .fade {
	transition: opacity .5s;
}
.uploadify .blink {
	transition: opacity .1s;
}
.uploadify .fadeIn {
	opacity: 1;
}
.uploadify .fadeOut {
	opacity: 0;
}
.uploadify .fade80 {
	opacity: 0.8;
}
.uploadify .fade60 {
	opacity: 0.6;
}
.uploadify .fade50 {
	opacity: 0.5;
}
.uploadify .fade40 {
	opacity: 0.4;
}
.uploadify .fade20 {
	opacity: 0.2;
}
.uploadify-item,
.uploadify-choose-button,
.uploadify-upload-button,
.uploadify-error {
    display: block;
    position: relative;
    float: left;
    width: 120px !important;
    height: 90px !important;
    text-align: center;
    border: #e1e5e8 solid 1px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.uploadify-choose-button,
.uploadify-upload-button {
	line-height: 90px;
	cursor: pointer;
	text-decoration:none;
	color: #565151;

	transition: background-color .3s;
}


.uploadify-choose-button span,
.uploadify-upload-button span{
    line-height:90px!important;
}

.uploadify-choose-button:hover,
.uploadify-upload-button:hover {
	background-color: #d6dbde;
	text-decoration: none;
}

.uploadify-queue .uploadify-item {
	background-repeat : no-repeat;
	background-position : center;
	background-size : 120px 90px;
	position: relative;
}
.uploadify-queue .uploadify-item .uploadify-item-container {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;

	background-color: rgba(0,0,0,.3);
	transition: background-color .3s;
}
.uploadify-queue .uploadify-item.success .uploadify-item-container {
	background-color: transparent;
}
.uploadify-queue .uploadify-item.error .uploadify-item-container {
	background-color: rgba(242, 176, 176, .6);
}
.uploadify-queue .uploadify-item.dragable .uploadify-item-container {
	cursor: move;
}
.uploadify-queue .uploadify-item .uploadify-item-delete {
	position: absolute;
	top: 5px;
	right: 5px;
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	line-height: 16px;
	text-align: center;
	border: #0078CC solid 1px;
	color: #0078CC;
	text-decoration: none;

	transition: background-color .3s, color .3s;
}
.uploadify-queue .uploadify-item .uploadify-item-delete:hover {
	background-color: #0078CC;
	color: #fff;
}

.uploadify-progress-bar {
	position: absolute;
	top: 50%;
	left: 10%;
	width: 80%;
	height: 10px;
	margin-top: -5px;
	border-radius:5px;
	border:1px solid #0078CC;
	background-color: rgba(255, 255, 255, .6)
}
.uploadify-progress-bar-inner {
	float: left;
	height: 10px;
	border-radius: 5px;
	background-color: #0099FF;
}
.uploadify-progress-percent,
.uploadify-progress-size {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -.5em;
	text-align: center;
	color: #fff;
}

.uploadify-error {
	background-color: #ffeeee;
	border-color: #ff7b7b;
	color: #ff7b7b;
}
.uploadify-error-container {
	display: table;
	width: 100%;
	height: 100%;
}
.uploadify-error-msg {
	display: table-cell;
	vertical-align:middle;
  text-align:center;
}
