/**
 * General uploads CSS
 */

.upload-input /* input continaer */
{
	/* fix for firefox 2 and below; browsers which don't understand inline-block
	 won't hide overflow on a span, so make it a block element by default */
	display: block;	
	display: inline-block;
	
	overflow: hidden;
	position: relative;
}

.upload-input-ie
{
	width: 82px; /* hide strange right padding */
}
.upload-input-ie INPUT
{
	margin-left: -42px; /* hide input field */
}
.upload-input-gecko INPUT
{
	margin-left: -32px; /* hide input field */
}
.upload-input-gecko-mac INPUT
{
	margin-left: -27px; /* hide input field */
}
.upload-input-safari INPUT
{
	width: 89px; /* hide chosen file text */
	             /* hides extra text in Chrome, but cuts off some of the input button in Safari.
                    Chrome usage is higher than Safari, so this is preferable to making it
                    work in Safari, but not in Chrome */
}
.upload-input-safari-mac INPUT
{
	width: 79px; /* hide chosen file text */
}
.upload-input-chrome INPUT
{
	width: 92px; /* hide chosen file text */
}


.upload-movie
{
	position: absolute;
	z-index: 1; /* make sure this is above file input */
}

#divMultiSelectTip, #divMultiUploadTip
{
	padding-left: 5px;
	padding-right: 5px;
}

.iOS-upload-info
{
	-webkit-text-size-adjust:none;
	width:319px;
}


