.jbox-container {
	position: absolute;
	/*width: 200px;
	height: 200px;*/
	
	top: 30px;
	bottom: 60px;
	left: 50px;
	right: 60px;
	/*background-color: whiteSmoke;*/
	border-radius: 15px;

	border: 6px solid #666;
	padding: 6px;

	-webkit-box-shadow: 	2px 2px 25px 2px#888, 
							inset 0 2px 3px#888;
	background-color : #fff;
}

.jbox-inner {
	position: relative;
	height:100%;
	
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.jbox-inner ul {
	padding: 0;
	margin: 0;
}

.jbox-inner ul li {
	font-family: Helvetica, Arial, Sans Serif;
	font-weight: bold;
	
	background-color: white;
	text-indent:2px;
	color:#222;
	height: 35px;
	margin: 0;
	overflow: hidden;
	border-top: 1px solid #DDD;
	
	display:-webkit-box;
	-webkit-box-align:center;
	
	display:box;
	box-align:center;
}

.jbox-arrow {
	position:absolute;
	width:0;
	height:0;
	
	top: -19px;
	left:100px;
	margin:-1px;
	border-left: 18px solid transparent;
	border-right: 18px solid transparent;
	
	border-bottom: 18px solid #666;
}

.checked:after {
	/*Add another block-level blank space*/
	content:"\00a0";
	display:block;
	
	 
	/*Make it a small rectangle so the border will create an L-shape*/
	width: 3px;
	height: 6px;
	 
	/*Add a white border on the bottom and left, creating that 'L' */
	border: solid #000;
	border-width: 0 2px 2px 0;

	/*Position it on top of the circle*/
	position:absolute;
	right:3px;
	margin-top: -23px;
	 
	/*Rotate the L 45 degrees to turn it into a checkmark*/
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.checked {
	
}

.jbox-container a {
	text-decoration:none;
	
}

.jbox-container a:active li.checked:after {
	border-color: #FFF;
}

.jbox-container a:link { 
	-webkit-tap-highlight-color: #7abcff;
	-webkit-tap-highlight-color: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7abcff), color-stop(44%,#60abf8), color-stop(100%,#4096ee)); /* Chrome,Safari4+ */
	-webkit-touch-callout: none;
}

.jbox-container a:active li, .jbox-container a:hover li {
	background: #7abcff; /* Old browsers */
	background: -moz-linear-gradient(top, #7abcff 0%, #60abf8 44%, #4096ee 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7abcff), color-stop(44%,#60abf8), color-stop(100%,#4096ee)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* IE10+ */
	background: linear-gradient(to bottom, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
	-webkit-box-shadow: inset 0 0 3px#888;
	color : #FFF;
}

