$(document).ready(function(){

    $(".tooltip").qtip({
		
        position: {
            corner: {
                target: 'topMiddle',
                tooltip: 'bottomLeft'
            }
        },

        style: {
            width: 310,
            padding: 5,
            background: '#d9bd8d',
            color: 'black',
            textAlign: 'left',
            border: {
                width: 5,
                radius: 7,
                color: '#d9bd8d'
            },
            tip: 'bottomLeft',
            name: 'dark' //
        }
    });
});



