/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/

.uploadify {
	position: relative;
	margin-bottom: 1em;
    display:inline-block;
    margin-left:20px;
}
.uploadify-button {
	/*background-color: #505050;
	background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -webkit-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -ms-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #505050),
		color-stop(1, #707070)
	);
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	border: 2px solid #808080;
	color: #FFF;
	font: bold 12px Arial, Helvetica, sans-serif;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	width: 100%;*/
    width:82px;
    height:25px;
    line-height:25px;
    color:#fff;
    cursor:pointer;
    background:#69C1F3;
    /*border:1px solid #099048;*/
    text-align:center;
    border-radius:5px;
    box-shadow:2px 2px 10px  #ccc;
    
}
.uploadify:hover .uploadify-button {
    text-decoration:underline;
}
.uploadify-button.disabled {
	background-color: #D0D0D0;
	color: #808080;
}
.uploadify-queue {
    position:fixed;
    z-index:10000;
    width:400px;
	margin-bottom: 1em;
    border:1px solid #dcdcdc;
    box-shadow:2px 2px 10px #ccc;
    min-height:170px;
    background:#fff;
    left:50%;
    top:50%;
    margin:-85px 0 0 -200px;
    display:none;
}
.uploadify-queue-item {
	background-color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font: 11px Verdana, Geneva, sans-serif;
 

}
.uploadify-error {
	background-color: #FDE5DD !important;
}
.uploadify-queue-item .cancel {
 width:100%;
 height:30px;
 line-height:30px;
 background:#69C1F3;
 font-size:15px;
}
    .uploadify-queue-item .cancel label {
     float:left;
     margin-left:20px;
     color:#fff;
      font-size:15px;
    }
.uploadify-queue-item .cancel a {
	float: right;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    margin-right:20px;
}
.uploadify-queue-item .fileName {
 display:block;
 width:90%;
 margin:10px auto;
 color:#555;
 overflow:hidden;
 text-overflow:ellipsis;
 white-space:nowrap;
   font-size:15px;
}
.uploadify-queue-item .data {
  text-align:center;
  width:90%;
  margin:0 auto;
  display:block;
  font-size:15px;
  color:#69C1F3;
}
.uploadify-queue-item.completed {
	background-color: #E5E5E5;
}
.uploadify-progress {
	background-color: #E5E5E5;
	width: 90%;
    margin:10px auto;
    height:10px;
    border-radius:3px;
}
.uploadify-progress-bar {
	background-color: #69C1F3;
	height:10px;
	width: 0px;
      border-radius:3px;
}
.uploadify-abtn {
    display:block;
    width:80px;
    margin:10px auto;
    background:#69C1F3;
    cursor:pointer;
    color:#fff;
    text-align:center;
    height:26px;
    line-height:26px;
    text-decoration:none;
}
.uploadify-queue-item .messNote {
  width:100%;
  margin:10px auto;
  border-top:1px solid #dcdcdc;
  color:#555;
}
    .uploadify-queue-item .messNote p {
     width:350px;
     margin:10px auto;
     text-align:center;
       font-size:15px;
    }