	/*
	This file is part of YAPB Bulk Uploader.

    'YAPB Bulk Uploader' is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    'YAPB Bulk Uploader' is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with 'YAPB Bulk Uploader'.  If not, see <http://www.gnu.org/licenses/>.
	
	Note that this software makes use of other libraries that are published under their own
	license. This program in no way tends to violate the licenses under which these 
	libraries are published.
	
	*/
	
@CHARSET "ISO-8859-1";

	.ybu_progress_list
	{
		list-style: none;
		display: none;
		height: 100%;
	}
	
	.ybu_file
	{
		display: block;
		position: relative;
		border: 1px solid gray;
		overflow: hidden;
		width: 50em;
		margin: 0px 0px -1px 0px;
		
	}
	
	.ybu_file P
	{
		font-size: 80%;
		margin: 0px;
		padding: 1px 1px 1px 1em;
	}
	
	.ybu_file_progress 
	{
		position: absolute;
		top: 0px;
		left: 0px;
		height: 100%;
		width: 0px;
		background-color: silver;
		color: white;
	}
	
	.ybu_file_progress a 
	{
		color: white;
	}
	
	.ybu_error 	{
		position: absolute;
		top: 0px;
		left: 0px;
		height: 100%;
		width: 100%;
		padding-right: -10px;
		background-image: url('no.png');
		background-position: right;
		background-repeat: no-repeat;
		background-color: rgb(247, 153, 157);
	}
	
	.ybu_done {
		position: absolute;
		top: 0px;
		left: 0px;
		height: 100%;
		width: 100%;
		padding-right: -10px;
		background-image: url('yes.png');
		background-position: right;
		background-repeat: no-repeat;
		background-color: transparent;
	}
	
	
	#ybu_upload_form
	{
		position: relative;
	}
	
	
	
	
	