/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}


/*-------------------------
    General Styles
--------------------------*/

a, a:visited {
    outline:none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	 -moz-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-tap-highlight-color: transparent;
	 -o-tap-highlight-color: rgba(0, 0, 0, 0);
	-o-tap-highlight-color: transparent;
	 -ms-tap-highlight-color: rgba(0, 0, 0, 0);
	-ms-tap-highlight-color: transparent;
	 tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: transparent;
}

a:hover{
    text-decoration:none;
}

section, aside{
    display: block;
}


/*----------------------------
    The file upload form
-----------------------------*/


#upload{

}

#drop{
  font-weight: bold;
  color: #7f858a;
  position: relative
}

#drop a{
    background-color:#007a96;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}

#drop a:hover{
    background-color:#0986a3;
}

#drop input{
    display:none;
}

#upload ul{
 list-style: none;
  margin-left: 30px;
  position: relative;
  float: left;
  margin-top: -10px;
  width: 100%;
}

#upload ul li{
	padding: 0;
    height: 20px;
    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font: 600 14px "Open Sans", sans-serif;
  color: #2a2a2a;
    position: absolute;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:none;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
	display: none;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../images/icons.png') no-repeat 0px -13px;
    position: absolute;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}
