/* FancyElement */
/** SELECT **/
.fe-sel-container
	{
	margin:			0px auto 16px auto;
	width:			150px;
	position:		relative;
	}
.fe-sel-label
	{
	display:			block;
	cursor:				pointer;
	height:				18px;
	width:				130px;
	background:			#e0f3f5 url(../../img/icon/select_arrow_blue.png) 120px 0px no-repeat;
	color:				#1ea9b4;
	padding:			3px 0 2px 20px;
	letter-spacing:		.5px;
	font-weight:		bold;
	font-size:			13px;
	}
	.fe-sel-label-active
		{
		background:			#e0f3f5 url(../../img/icon/select_arrow_blue.png) 120px -23px no-repeat;
		text-decoration:	underline;
		}
.fe-select
	{
	list-style:			none;
	width:				100%;
	position:			absolute;
	}
	.fe-option
		{
		width:				145px;
		padding:			7px 0 7px 5px;
		cursor:				pointer;
		background:			#e0f3f5 none;
		color:				#1ea9b4;
		}
		.fe-option-hover
			{
			color:				#e0f3f5;
			background-color:	#1ea9b4;
			}
			
/** CHECKBOX **/
.fe-cb-unchecked
	{
	background:			transparent none;
	color:				#1ea9b4;
	cursor:				pointer;
	}
.fe-cb-checked
	{
	background:			transparent none;
	color:				red;
	}
	
/** RADIO **/
.fe-rd-unchecked
	{
	background:			transparent none;
	color:				#1ea9b4;
	cursor:				pointer;
	}
.fe-rd-checked
	{
	background:			transparent none;
	color:				red;
	}
	
/** SUBMIT / RESET / BUTTON **/
.fe-btn
	{
	background:			transparent none;
	color:				#1ea9b4;
	cursor:				pointer;
	}
.fe-btn-hover
	{
	background:			transparent none;
	color:				red;
	}
.fe-btn-clicked
	{
	padding:			2px 0 0 2px;
	background:			transparent none;
	color:				red;
	}