/* CSS Document */
@import "public.css";

body {
    padding: 20px;
}

.file {
    position: absolute;
    font-size: 30px;
    width: 100px;
    height: 28px;
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    opacity: 0.0;
    cursor: pointer;
    outline: none;
}

.flash {
    filter: alpha(opacity=1);
    -moz-opacity: 0.01;
    opacity: 0.01;
    /*filter: alpha(opacity=80);*/
    /*-moz-opacity: 0.8;*/
    /*opacity: 0.8;*/
    position: absolute;
}

.browse {
    margin-bottom: 20px;
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #B3B3B3;
    background-image: -moz-linear-gradient(bottom, #E4E4E4, #FAFAFA); /*firefox*/
    background-image: -webkit-linear-gradient(bottom, #E4E4E4, #FAFAFA); /*chrome*/
    background-image: -ms-linear-gradient(bottom, #E4E4E4, #FAFAFA); /*IE10+*/
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#FAFAFA", EndColorStr="#E4E4E4"); /*ie6-9*/
}

.browse:hover {
    background-image: -moz-linear-gradient(bottom, #FAFAFA, #E4E4E4); /*firefox*/
    background-image: -webkit-linear-gradient(bottom, #FAFAFA, #E4E4E4); /*chrome*/
    background-image: -ms-linear-gradient(bottom, #FAFAFA, #E4E4E4); /*IE10+*/
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#E4E4E4", EndColorStr="#FAFAFA"); /*ie6-9*/
}

.raw {
    width: 320px;
    height: 320px;
    margin-right: 30px;
    float: left;
    border: 1px solid #D3D3D3;
    background-image: url(../Images/headbackground.png);
}

.preview {
    width: 200px;
    height: 200px;
    border: 1px solid #D3D3D3;
    float: left;
    background: url(../Images/gifthead.png) no-repeat center white;
}

