jQuery(function() {
	$('#id_item_district .district').qtip({
		style: { 
			border: {
				width: 5,
				radius: 5,
				color: 'Black'
			},
			width: {
				max: 250
			},
			tip: true
		},
		position: {
			adjust: {
				x: -5,
				y: -5
			},
			corner: {
				target: 'bottomRight'
			}
		}
	})
});

