/* all of the defines and classes for our
 * fan club areas
 */

/* main page view */
.clublist_photo
{
    display: inline;
    float:   left;
    width:   80px;
}
.clublist_info
{
    display: inline;
    float:   right;
    padding: 5px;
    width:   450px;
}

/* profile view */
#member_photo
{
    display: inline;
    float:   left;
    width:   200px;
    text-align: center;
}
#member_info
{
    display: inline;
    float:   left;
    width:   320px;
    line-height: 1.25em;
}
#member_uploads
{
    display: block;
    padding: 5px;
    width:   100%;
    text-align: center;
}

/* photo upload view */
#upload_form
{
    position: relative;
}
#upload_queue
{
    position: relative;
}
#uploader { visibility: hidden; }

.upload_label
{
    display: inline;
    float:   left;
    padding-bottom: 2px;
}
.upload_progress_bar
{
    float:   left;
    width:   100%;
    height:  4px;
    background-color: #C0C0C0;
}
.upload_percent_complete
{
    float:   left;
    width:   0px;
    height:  4px;
    background-color: #FF3300;
}
