/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}


/*-------------------------
    General Styles
--------------------------*/


html{

    /*background-color:#ebebec;*/
/*
    background-image:-webkit-radial-gradient(center, #ebebec, #b4b4b4);
    background-image:-moz-radial-gradient(center, #ebebec, #b4b4b4);
    background-image:radial-gradient(center, #ebebec, #b4b4b4);

    /*min-height:900px;*/
}

body{
    font:15px/1.3 Arial, sans-serif;
}

a, a:visited {
    outline:none;
    color:#999999;
}

a:hover{
    text-decoration:none;
}

section, footer, header, aside{
    display: block;
}


/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	/*
    background-color:#373a3d;

    background-image:-webkit-linear-gradient(top, #373a3d, #313437);
    background-image:-moz-linear-gradient(top, #373a3d, #313437);
    background-image:linear-gradient(top, #373a3d, #313437);

    width:120px;
    padding:3px;
    border-radius:3px;
	/*
    margin:200px auto 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	*/
	width:105px;
	heigth:100px;
}

#drop{
    /*background-color: #2E3134;*/
    /*margin-bottom: 3px;
    border: 2px solid rgba(0, 0, 0, 0);
    /*border-image: url('../img/border-image.png') 25 repeat;*/
    /*text-align: center;*/
    /*text-transform: uppercase;*/

    font-size:14px;
    font-weight:normal;
    color:#FFFFFF;
	width:100px;
}

#drop a{
    background-color:#F0F1FF;
    padding:7px 7px;
    color:#333;
    font-size:13px;
    cursor:pointer;
    display:inline-block;
    line-height:1;
	width:106px;
	height:96px;
	position:absolute;
	text-align:center;

 padding:3px;
 border:1px solid #aaaaaa;
 /*
 border-radius:5px;
 /*width:200px;*/
 /*box-shadow:1px 1px 2px #C0C0C0 inset;*/
}

#drop a:hover{
    background-color:#70C467;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
}

#upload ul li{
    /*background-color:#333333;*/
    padding:15px;
    height: 82px;
    position:relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    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: 15px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 30px;
    right: 20px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}



