.js-t{
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	position: absolute;
	z-index: 9999;
	top: 200px;
	left: 500px;
	overflow: hidden;
	width: 240px;
	padding: 2px;
	opacity: 0;
	border: 1px solid #ccc;
	border-bottom-color: #bbb;
	-webkit-transition: opacity 300ms ease-out;
	-moz-transition: opacity 300ms ease-out;
	-ms-transition: opacity 300ms ease-out;
	transition: opacity 300ms ease-out;
	background: #DDEEFF;/*fff*/
	box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
	
	margin-left:0px;
}

.js-t.visible{
	overflow: visible;
	opacity: 1;
}

.js-t:after{
	clear: both;
}

.js-t .js-t-hour-container,
.js-t .js-t-minute-container{
	position: relative;
	float: left;
	width: 150px;
	height: 100%;
	background: #fff;/*ADDED*/
}

.js-t .js-t-minute-container{
	width: 75px;
	margin-left: 10px;
	background: #fff;/*ADDED*/
}

.js-t .js-t-hour,
.js-t .js-t-minute{
	font-size: 12px;
	line-height: 14px;
	float: left;
	width: 18px;
	height: 14px;
	padding: 3px;
	cursor: pointer;
	text-align: center;
}

.js-t .js-t-hour.active,
.js-t .js-t-minute.active,
.js-t .js-t-hour:hover,
.js-t .js-t-minute:hover {
	/*color: #fff;*/
	border-radius: 3px;
	background: #FFB3BE;/*ff8000*/
	padding: 2px;
	border: 1px solid red;
}


.clock{
	background: #ffffff url('img/t_clock.png') 100% 50% no-repeat;
	/*padding-right: 20px;*/
	cursor: pointer;
	/*width:40px;*/
}
.clock:focus{
	background: #ffffff url('img/t_clock_no_cal.png') 100% 50% no-repeat;
}