/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-button {
	/*-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	color: #E33724 !important;*/
    /* background: #cdcdcd; /* Old browsers */
    /* background: -moz-linear-gradient(top, #f9f9f9 0%, #dedede 100%); /* FF3.6+ */
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#dedede)); /* Chrome,Safari4+ */
    /* background: -webkit-linear-gradient(top, #f9f9f9 0%,#dedede 100%); /* Chrome10+,Safari5.1+ */
    /* background: -o-linear-gradient(top, #f9f9f9 0%,#dedede 100%); /* Opera 11.10+ */
    /* background: -ms-linear-gradient(top, #f9f9f9 0%,#dedede 100%); /* IE10+ */
    /* background: linear-gradient(to bottom, #f9f9f9 0%,#dedede 100%); /* W3C */
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#dedede',GradientType=0 ); /* IE6-9 */
    /*border: 1px #c6c6c6 solid;
    border-radius: 3px;
    color: #e33724 !important;*/
    text-align: center;
	width: 100%;
    cursor:pointer;
}
.uploadifive-button:hover {
	 /*background: #cdcdcd; /* Old browsers */
    /* background: -moz-linear-gradient(top, #dedede 0%, #cdcdcd 100%); /* FF3.6+ */
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(100%,#cdcdcd)); /* Chrome,Safari4+ */
    /* background: -webkit-linear-gradient(top, #dedede 0%,#cdcdcd 100%); /* Chrome10+,Safari5.1+ */
    /* background: -o-linear-gradient(top, #dedede 0%,#cdcdcd 100%); /* Opera 11.10+ */
    /* background: -ms-linear-gradient(top, #dedede 0%,#cdcdcd 100%); /* IE10+ */
    /* background: linear-gradient(to bottom, #dedede 0%,#cdcdcd 100%); /* W3C */
}

    .uploadifive-button input[type=file] {
        cursor:pointer;
    }

.uploadifive-queue-item {
	background-color: #F5F5F5;
	border-bottom: 1px dotted #D5D5D5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font: 12px Arial, Helvetica, Sans-serif;
	margin-top: 3px;
	padding: 15px;
}
.uploadifive-queue-item .close {
	background: url('uploadifive-cancel.png') 0 0 no-repeat;
	display: block;
	float: right;
	height: 16px;
	text-indent: -9999px;
	width: 16px;
}
.uploadifive-queue-item .progress {
	border: 1px solid #D0D0D0;
	height: 3px;
	margin-top: 5px;
	width: 100%;
}
.uploadifive-queue-item .progress-bar {
	background-color: #0072BC;
	height: 3px;
	width: 0;
}


.uploadifive-queue{
    position:absolute;
    top:40px;
    background-color:white;
    border: 1px solid #D0D0D0;
    width:300px;
    display:none;
}