.custom-select {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	margin-left: 10px;
	margin-right: 30px;
}
	.custom-select>a {
		border:1px solid #dfdfdf !important;
		border-radius: 3px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		display:block !important;
		height:30px !important;
		line-height:30px;
		/*padding:0 10px;*/
		cursor:pointer;
		color: #a4a4a4;
		font-size: 12px;
	}
	.custom-select>a:hover {
		border:1px solid #005da5 !important;
	}
		.custom-select>a>span {
			display:block;
			float:left;
			padding:0 10px;
		}
			.custom-select>a>span:first-child {
				padding-right:10px;
			}
			
			.custom-select>a>span.icon-arrow-down {
				line-height:35px;
				float:right;
				clear:right;
				color: #000000;
			}
			.custom-select>a:hover>span.icon-arrow-down {
				color: #005da5;
			}
	
	.custom-select ul {
		position:absolute;
		display:none;
		padding:0;
		margin:0;
		width:100%;
		max-height:400px;
		overflow-y:auto;
		overflow-x:hidden;
		list-style:none;
		z-index:1000;
		border-right:1px solid #dbdbdb;
		background:#FFF;
	}
		.custom-select ul li {
		}
			.custom-select ul li a{
				background:#FFF;
				display:block;
				padding:10px;
				
				border-bottom:1px solid #dbdbdb;
				border-left:1px solid #dbdbdb;
				text-decoration: none;
				color: #a4a4a4;
			}
			.custom-select ul li a:hover {
				color:#005da5;
				/*border-right:1px solid #005da5;
				border-left:1px solid #005da5;*/
			}