/*	Source Code Pro
	================================================

	100	Thin
	200	Extra Light (Ultra Light)
	300	Light
	400	Normal
	500	Medium
	600	Semi Bold (Demi Bold)
	700	Bold
	800	Extra Bold (Ultra Bold)
	900	Black (Heavy)

	http://www.w3.org/TR/css-fonts-3/#font-weight-prop

	200	SourceCodePro-ExtraLight.woff
	300	SourceCodePro-Light.woff
	400	SourceCodePro-Regular.woff
	500	SourceCodePro-Medium.woff
	600	SourceCodePro-Semibold.woff
	700	SourceCodePro-Bold.woff
	900	SourceCodePro-Black.woff

	================================================ */

	/*	Extra Light = 200
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-ExtraLight.woff') format('woff');
			font-style:   normal;
			font-weight:  200;
		}

	/*	Light = 300
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-Light.woff') format('woff');
			font-style:   normal;
			font-weight:  300;
		}

	/*	Regular = 400
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-Regular.woff') format('woff');
			font-style:   normal;
			font-weight:  400;
		}

	/*	Medium = 500
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-Medium.woff') format('woff');
			font-style:   normal;
			font-weight:  500;
		}

	/*	Semi Bold = 600
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-Semibold.woff') format('woff');
			font-style:   normal;
			font-weight:  600;
		}

	/*	Bold = 700
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-Bold.woff') format('woff');
			font-style:   normal;
			font-weight:  700;
		}

	/*	Black = 900
		============================================ */
		@font-face {
			font-family: 'Source Code Pro';
			src:	url('SourceCodePro-Black.woff') format('woff');
			font-style:   normal;
			font-weight:  900;
		}
