Highcharts.setOptions({
colors: ["#07316d","#9399a7","#de0000"],
	chart: {
		backgroundColor: '#edf0f5',
		borderColor: '#07316d',
		borderWidth: 0,
		borderRadius: 0,
		plotBackgroundColor: null,
		plotShadow: false,
		plotBorderWidth: 0,
		style: {
			zIndex: 1
		}
	},
	title: {
		style: { 
			color: '#000',
			font: '14px Arial, Helvetica, sans-serif',
			textShadow: 'none'
		}
	},
	subtitle: {
		style: { 
			color: '#666',
			font: '12px Arial, Helvetica, sans-serif',
			textShadow: 'none'
		}
	},
	xAxis: {
		gridLineWidth: 0,
		lineWidth:0,
		lineColor: '#999',
		tickColor: '#CCC',
		labels: {
			style: {
				color: '#999',
				fontWeight: 'bold'
			}
		},
		title: {
			style: {
				color: '#AAA',
				font: 'bold 12px Arial, Helvetica, sans-serif'
			}				
		}
	},
	yAxis: {
      plotLines: [{
         value: 0,
         width: 0,
         color: '#CCCCC'
      }],
		title: {
			style: {
				color: '#AAA',
				font: 'bold 12px Arial, Helvetica, sans-serif'
			}				
		}
	},
	legend: {
		style: {
			left: 'auto',
         	bottom: 'auto',
         	right: '10px',
         	top: '13px'
		},
		borderWidth: 0,
		backgroundColor: '#FFF',
		shadow: false,
		itemStyle: {
			color: '#666'
		},
		itemHiddenStyle: {
			color: '#333'
		}
	},
	credits: {
		enabled: false
	},
	labels: {
		style: {
			color: '#CCC'
		}
	},
	tooltip: {
		backgroundColor: {
			linearGradient: [0, 0, 0, 50],
			stops: [
				[0, '#FFF'],
				[1, '#edf0f5']
			]
		},
		borderWidth: 1,
		style: {
			color: '#07316d'
		}
	},
	
	plotOptions: {
		line: {
			dataLabels: {
				color: '#CCC'
			},
			marker: {
				lineColor: '#333'
			}
		},
		spline: {
			marker: {
				lineColor: '#333',
				lineWidth: 1,
				radius: 4
			}
		},
		scatter: {
			marker: {
				lineColor: '#333'
			}
		}
	},
	
	toolbar: {
		itemStyle: {
			color: '#CCC'
		}
	}
});
