
/**
* 
* ddControl
*
*/

.ddControl
{
	width: 100px;
}

.ddControl table
{
	position: relative;
	z-index: 3;
	
	margin: 0;
	padding: 0;
	
	text-align: left;
	width: 100%;

	border-collapse: collapse;
}

.ddControl table td
{
	padding: 0 !important;
	margin: 0 !important;
	
	background-color: #fff;
}

.ddControl a
{
	display: block;
	padding: 0 10px;
}

.ddControl .sub
{
	z-index: -1;
	position: relative;
	width: 100%;
	height: 0;
}

.ddControl td ul
{
	display: none;

	top: 0px;
	left: 0px;
	margin: 0;
	padding: 3px 0;
	position: absolute;
	text-align: left;
	white-space: normal;
	
	width: 100%;	

	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
}

.ddControl td.hover ul
{
	display: block;
}

.ddControl td li
{
	display: block;
	height: auto;
	margin: 0;
	padding: 3px 3px;
	
	float: left;
	clear: both;
}

.ddControl .sub a
{
	white-space: nowrap;
	
	padding: 0;
	margin: 0;
}

.fldSelect .sub a, .fldSelect .sub a:visited
{
}


.ddLabel
{
	position: relative;
	
	float: left;
	
	width: 100%;
	line-height: 17px;
	height: 17px;
	overflow: hidden;
	
	margin: 0;
	padding: 0;
}

.ddTrigger
{
	position: relative;

	float: left;

	width: 18px;
	height: 17px;
	line-height: 17px;
	overflow: hidden;

	margin-top: 0px;
	margin-left: -20px;
	
	cursor: pointer;
}

.ddControl.disabled .ddTrigger
{
	background-image: none;
}
.ddControl.disabled .ddLabel
{
	font-style: oblique;
	font-weight: normal;
	background-color: #eee;
}


/**
*
* checkControl
*
*/

.checkControl
{
	width: 15px;
	height: 15px;
	
	background: url(../http://vugone.info/img/check_off.png) no-repeat;
	
	cursor: pointer;
}

.checkControl.checked
{
	background: url(../http://vugone.info/img/check_on.png) no-repeat;
}

.checkControl input
{
	z-index: -1;
	position: absolute;
	width: 0;
	height: 0;
	left: -999px;	
}


/**
*
* File control
*
*/
.fileControl
{
	position: relative;
	
	height: 22px;
}
.fileControl .file
{
	position: absolute;
	right: 0;
	-moz-opacity: 0;
	filter:alpha(opacity: 0);
	opacity: 0;
	z-index: 2;
	height: 22px;
}
.fileControl .button
{
	position: absolute;
	right: 0;
	z-index: 1;
}
.fileControl .text
{
	position: absolute;
	left: 0;
	z-index: 3;
}
