.aa-timepicker-cont{
	position: absolute;
	opacity: 0;
	visibility: hidden;
	left: 0;
	right: 0;
	z-index: 10;
	margin: auto;
	margin-top: -3px;
	width: 150px;
	padding: 5px;
	background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    
    -webkit-transition: all 150ms ease-in-out 0s;
	-moz-transition: all 150ms ease-in-out 0s;
	-ms-transition: all 150ms ease-in-out 0s;
	-o-transition: all 150ms ease-in-out 0s;
	transition: all 150ms ease-in-out 0s;
}
.aa-timepicker-cont.visible{
	visibility: visible;
	opacity: 1;
}
.aa-timepicker-cont:before{
    display: block;
    position: absolute;
    content: " ";
    top: -5px;
    margin: auto;
    right: 0;
    left: 0;
    border-bottom: 5px solid <?=$css_pagebrandcolor;?>;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    width: 0px;
}
.aa-timepicker-cont > div{
	float: left;
	width: 33.3333%;
}
.aa-tp-prev, .aa-tp-next{
	background-color: <?=$css_pagebrandcolor;?>;
	display: block;
	width: 35px;
	height: 30px;
	color: #fff;
	margin: auto;
	position: relative;
	
	text-align: center;
	font: normal normal normal 16px/28px FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.aa-tp-next:before{content: "\f0d8";}
.aa-tp-prev:before{content: "\f0d7";}
.aa-tp-prev:after, .aa-tp-next:after{
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0.3);
	content: " ";
	
	-webkit-transition: all 150ms ease-in-out 0s;
	-moz-transition: all 150ms ease-in-out 0s;
	-ms-transition: all 150ms ease-in-out 0s;
	-o-transition: all 150ms ease-in-out 0s;
	transition: all 150ms ease-in-out 0s;
}
.aa-tp-prev:hover:after, .aa-tp-next:hover:after{
	visibility: visible;
	opacity: 1;
}
.aa-timepicker-cont .aa-tp-value{
	background-color: transparent;
	border: 0;
	border-radius: 0;
	outline: 0;
	width: 100%;
	padding: 10px 5px;
	font-weight: 500;
	color: #000;
	text-align: center;
	width: 100%;
	margin: 0;
	font-size: 19px;
}
.aa-timepicker-cont .aa-tp-med{font-weight: 600;}
