/* CUSTOM STYLES FOR JQUERY QTIP TOOLTIP PLUGIN */

	$.fn.qtip.styles.teal = { // Last part is the name of the style
		width: 250,
		background: '#fff',
		color: 'black',
		textAlign: 'left',
		border: {
			width: 5,
			radius: 5,
			color: '#70cbd2'
		},
		target: 'topMiddle',
        tooltip: 'bottomMiddle',
		name: 'dark' // Inherit the rest of the attributes from the preset dark style
	}
	
	$.fn.qtip.styles.eh_winter = { // Last part is the name of the style
		width: 250,
		background: '#fff',
		color: 'black',
		textAlign: 'left',
		border: {
			width: 5,
			radius: 5,
			color: '#7aa6a4'
		},
		target: 'topMiddle',
        tooltip: 'bottomMiddle',
		name: 'dark' // Inherit the rest of the attributes from the preset dark style
	}
