/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}


/*-------------------------
    General Styles
--------------------------*/




body{
    font:15px/1.3 Arial, sans-serif;
    color: #4f4f4f;
/*
	background-image:url(../../../../images/40percentBlack.png);
*/
}

a, a:visited {
    outline:none;
    color:#389dc1;
}

a:hover{
    text-decoration:none;
}

section, footer, header, aside{
    display: block;
}


/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    font-family:arial, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"sans-serif;
   /* background-color:#d3d3d3; */
    width:100%;
    padding:5px;
    border-radius:3px;

    margin:0px;
   /* box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.4);*/
}

#drop{
    background-color: #d3d3d3;
    padding: 10px;
    margin-bottom: 0px;
   
    border: 1px dashed rgba(150, 150, 255, 1);
    border-radius: 3px;
 	
	text-align: center;
   /* text-transform: uppercase;
*/
    font-size:0.9em;
    font-weight:normal;
    color:#7f858a;
}

#drop a{
    background-color:#ffae00;
    padding:20px 35px;
    color:#fff;
    font-size:14px;
    border: 1px solid #a77600;
	border-radius:5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
	
	cursor:pointer;
    display:inline-block;
    margin-top:35px;
    line-height:1;
}

#drop a:hover{
    background-color:#ff5a00;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0 0px;
  /*
    border-top:1px solid #3d3d3d;
    border-bottom:1px solid #000000;
  */
}

#upload ul li{

    background-color:#fff;



    /*
	border-top:1px solid #3d3d3d;
    border-bottom:1px solid #3d3d3d;
    */
	padding:15px;
    height: 70px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    /* width: 144px; */
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}



