﻿.ui-actionsheet-wallpaper { 
	display: none;
	background-color: black; 
	opacity: .3;
	position: absolute;
	top:0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 19; /* above content underneath sheet */
}
.ui-actionsheet-content {
	/*-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;*/
	background-color: silver;
	border-style: solid;
	border-width: 1px;
	border-color:#001220;
	display: none;
	height: auto;
	position: absolute;
	width: 230px;
	z-index: 20;
	-moz-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
	-webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
	box-shadow: 0px 0px 12px rgba(0,0,0,.6); 
}
.ui-actionsheet-commandbtn {}
.ui-actionsheet-closebtn {
	color: #000;
	background: 			#f0f0f0 /*{c-body-background-color}*/;
	background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{c-body-background-start}*/), to( #ddd /*{c-body-background-end}*/)); /* Saf4+, Chrome */
	background-image: -webkit-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
	background-image:    -moz-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* FF3.6 */
	background-image:     -ms-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* IE10 */
	background-image:      -o-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Opera 11.10+ */
	background-image:         linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/);
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    text-shadow:none;
}
@-webkit-keyframes actionsheet-open-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes actionsheet-close-fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes actionsheet-open-slideup {
  0% {
    -webkit-transform: translateY(1100px);
  }
  70% {
    -webkit-transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-webkit-keyframes actionsheet-close-slideup {
  0% {
    -webkit-transform: translateY(0);
  }
  30% {
  	-webkit-transform: translateY(-30px);
  }
  100% {
  	opacity: 0;
    -webkit-transform: translateY(300px);
  }
}

.ui-actionsheet-animateIn {
	/*-webkit-animation-name: actionsheet-open-slideup;*/
	-webkit-animation-name: actionsheet-open-fade;
	-webkit-animation-delay: 0;
	-webkit-animation-duration: 500ms;
}
.ui-actionsheet-animateOut {
	/*-webkit-animation-name: actionsheet-close-slideup;*/
	-webkit-animation-name: actionsheet-close-fade;
	-webkit-animation-delay: 0;
	-webkit-animation-duration: 500ms;
}
