﻿/*********************************************************
// RUploadify
*********************************************************/
.RUploadify{
    padding:5px 0;
}
.RUploadifyLine{
    width:100%;
    height:30px;
    line-height:30px;
}
.RUploadifyLineName{
    float:left;
}
.RUploadifyLineDelete{
    width:15px;
    height:15px;
    margin-top:8px;
    margin-left:5px;
    background:url(DeleteBtn.png);
    float:left;
    cursor:pointer;
}
.RUploadifyThumbcon{
    width:100%;
    height:50px;
    margin-top:10px;
}
.RUploadifyThumb{
    width:auto;
    height:50px;
}


/*********************************************************
// Uploadify
*********************************************************/
.uploadify {
	position: relative;
}
.uploadify-button {
    background:#808080;
    border-radius:5px;
	color: #FFF;
	text-align: center !important;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	width: 100%;
}
.uploadify:hover .uploadify-button {
    background:#909090;
}
.uploadify-button.disabled {
	background-color: #D0D0D0;
	color: #808080;
}
.uploadify-queue {
	width:260px;
}
.uploadify-queue *{
	text-align:left;
}
.uploadify-queue-item {
    position:relative;
    height:40px;
    line-height:30px;
}
.uploadify-queue-item .fileName{
    position:absolute;
    top:0px;
    left:0px;
    width:160px;
    word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.uploadify-queue-item .data{
    position:absolute;
    top:0px;
    left:160px;
    width:75px;
    word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.uploadify-error {
    color:red;
}
.uploadify-queue-item .mycancel{
    width: 15px;
	height: 15px;
    position:absolute;
    top:8px;
    right:5px;
    background:url(DeleteBtn.png);
    cursor:pointer;
}
.uploadify-queue-item .cancel{
    display:none;
}
.uploadify-queue-item.completed {
	background-color: #E5E5E5;
}
.uploadify-progress {
	background-color: #E5E5E5;
    position:absolute;
    top:30px;
    left:0px;
    width:100%;
    height:10px;
}
.uploadify-progress-bar {
	background-color: #0099FF;
	height: 100%;
	width: 1px;
}