@charset "utf-8";

#appsselect_container {
   background-image: url(/services_and_apps/common/bg_appsselect.gif); 
   /* background-size: 196px 385px; */
   width:200px;
   height:125px;
   background-repeat: no-repeat;
   padding-top: 15px;
   left:-10px;
}

#appsselect_item, .appsselect_item {
	float: left;
	width: 80px;
	text-align: center;
	margin-bottom: 8px;
	margin-left: 8px;
	margin-right: 8px;
}

#appsselect_item:hover, .appsselect_item:hover {
	cursor: pointer;
	color: #FF0000;
}

#appsselect_name, .appsselect_name {
	text-align: center;
	height: 1.2em;
}

#appsselect_reflection, .appsselect_reflection {
	height: 10px;
	overflow: hidden;
	position: relative;
}
#appsselect_reflection img, .appsselect_reflection img {
	-webkit-transform:  rotate(-180deg) scaleX(-1); 
	-moz-transform: scaleY(-1);   
	-ms-transform: scaleY(-1);           
	-o-transform: scaleY(-1);              
	transform: scaleY(-1);   
	left: 10px;
	opacity: 0.2;
	filter: flipv alpha(opacity='20');
	position: absolute;
	top: 0;
}
.appsselect_overlay {
	/*background-image: -moz-linear-gradient(center bottom , #f0f0f0 60%, rgba(250, 250, 250, 0) 100%);*/
	background-image: -moz-linear-gradient( center bottom, #f0f0f0 60%, rgba(255,255,255,0) 100%);    
	background-image: -ms-linear-gradient( center bottom, #f0f0f0 60%, rgba(255,255,255,0) 100%);        
	background-image: -o-linear-gradient( #f0f0f0 25%, rgb(255,255,255) 40%);      
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.60, rgb(255,255,255)), color-stop(0.75, rgba(255,255,255,0)));
	filter: progid:DXImageTransform.Microsoft.Gradient( gradientType=0, startColor=0, EndColorStr=#ffffff);  
	width: 80px;
	height: 30px;
	left: 0px;
	position: absolute;
	top: 0px;
}

#appsselect_container #arrow_container, #appsselect_container .arrow_container {
	margin-left:-20px;
	
}

/***********************
Main page App Select
***********************/
#appsselect_item_main, .appsselect_item_main {
	float: left;
	width: 89px;
	height: 86px;
	text-align: center;
	margin-bottom: 25px;
	margin-left: 8px;
	margin-right: 8px;
    cursor: pointer;
	-webkit-transition: all 0.3s 0.1s ease-in-out;
	transition: all 0.3s 0.1s ease-in-out;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.appsselect_item_main_on {
	-webkit-transform: scale(1);
	transform: scale(1);
}

#appsselect_item_main:hover {
	cursor: pointer;
	color: #FF0000;
}

