/*-------------------------
    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;
    color: #4f4f4f;
}

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:'Cardo', sans-serif;
    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:250px;
    padding:30px;
    border-radius:3px;

    margin:50px auto 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#drop{
    background-color: #2E3134;
    padding: 40px 50px;
    margin-bottom: 30px;
    border: 20px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    border-image: url('../img/border-image.png') 25 repeat;
    text-align: center;
    text-transform: uppercase;

    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

#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:0 -30px;
    border-top:1px solid #2b2e31;
    border-bottom:1px solid #3d4043;
}

#upload ul li{

    background-color:#333639;

    background-image:-webkit-linear-gradient(top, #333639, #303335);
    background-image:-moz-linear-gradient(top, #333639, #303335);
    background-image:linear-gradient(top, #333639, #303335);

    border-top:1px solid #3d4043;
    border-bottom:1px solid #2b2e31;
    padding:15px;
    height: 52px;

    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: 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;
}

.logo img {
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto
}
select {
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px #d5d5d5;
    outline: 0;
    font: 15px Verdana, Tahoma, sans-serif;
    background: #FFFFFF;
}

select:hover{ 
  border-color: #b1b1b1;
}

footer {font-size:13px; color:#000000; padding:2em 0 0; width: 960px; margin: auto; text-align:center;}
footer a, footer a:visited {color:#1F75CC;}

input{ 
    padding: 5px; 
    border: solid 1px #d5d5d5; 
    outline: 0; 
    font: 11px Verdana, Tahoma, sans-serif; 
    width: 100px; 
    background: #FFFFFF;  
      box-shadow: rgba(0,0,0, 0.1) 0px 0px 4px; 
    -moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 4px; 
    -webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 4px; 
    transition: all .2s;
    } 

input:hover{ 
    border-color: #b1b1b1;
    } 

input:focus{ 
  border-color: #b1b1b1;
  box-shadow: rgba(0,0,0, 0.20) 0px 0px 8px; 
    -moz-box-shadow: rgba(0,0,0, 0.20) 0px 0px 8px; 
    -webkit-box-shadow: rgba(0,0,0, 0.20) 0px 0px 8px; 
    transition: all .2s;
}
   
.form label{ 
    font: 10px Verdana, Tahoma, sans-serif; 
    color: #999999; 
    display:inline-block;
    width:99px;
    } 
   
.submit input{
    width: auto; 
    padding: 5px 10px; 
    background: #3FB8AF; 
    border: 0; 
    font-size: 12px; 
    color: #FFFFFF; 
    cursor:pointer;
    }

.submit input:hover{ 
    background: #FF3D7F; 
    border-bottom: 3px solid #FF9E9D; 
    transition: all .1s;
}

body:after{
  content: "beta";
  position: fixed;
  width: 80px;
  height: 25px;
  background: #EE8E4A;
  top: 7px;
  right: -20px;
  text-align: center;
  font-size: 13px;
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  line-height: 27px;
  -ms-transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
}