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

	12 COLUMN GRID
	- 980px grid
	- 56px columns (5.71428572%)
	- 14px margins (1.42857143%) = 28px gutter (2.85714286%)
	- first col has no left gutter, last col has no right gutter
	- .no-margin class switches gutter from margin to padding
	- .wrapper.gutter adds padding on left/right when content is within a colored container (WiiU/3DS pages)
	- width: ( 100 - ( NUM_GUTTERS * GUTTER_WIDTH ) ) / NUM_COLUMNS;

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

/*	-----------------------------------
	Common
	----------------------------------- */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    	box-sizing: border-box;
}

img {
	height: auto;
	max-width: 100%;
	min-width: 0;
	outline: none;
	width: auto;
}

/* responsive video */
.video-player {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.video-player iframe,
.video-player object,
.video-player embed,
.video-player > div,
.video-player video {
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}


/*	-----------------------------------
	Grid Layout
	----------------------------------- */
.wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
	min-width: 960px;
	width: 980px;
}
.wrapper.gutter {
	padding-left: 20px;
	padding-right: 20px;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
			box-sizing: content-box;
}

.row {
	display: block;
	list-style: none outside none;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
.row:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
}


.row .column,
.row > li {
	float: left;
	margin-left: 1.42857143%;
	margin-right: 1.42857143%;
	position: relative;
	width: 5.71428572%;
}
.no-margin .column,
.no-margin > li {
	margin-left: 0;
	margin-right: 0;
	padding-left: 1.42857143%;
	padding-right: 1.42857143%;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
			box-sizing: content-box;
}


/* Remove margins by default on every 12th column */
.row > li:nth-child(12n+12),
.row > .column:nth-child(12n+12) { margin-right: 0; }
.row > li:nth-child(12n+1),
.row > .column:nth-child(12n+1) { margin-left: 0; }

.no-margin > li:nth-child(12n+12),
.no-margin > .column:nth-child(12n+12) { padding-right: 0; }
.no-margin > li:nth-child(12n+1),
.no-margin > .column:nth-child(12n+1) { padding-left: 0; }

/* Set uniform column widths */
.row-11cols > li,
.row-11cols > .column { width:6.4935065%; }

.row-10cols > li,
.row-10cols > .column { width:7.4285714%; }

.row-9cols > li,
.row-9cols > .column { width:8.57142857%; }

.row-8cols > li,
.row-8cols > .column { width:9.99999999%; }

.row-7cols > li,
.row-7cols > .column { width:11.8367346%; }

.row-6cols > li,
.row-6cols > .column { width:14.2857143%; }

.row-5cols > li,
.row-5cols > .column { width:17.714285712%; }

.row-4cols > li,
.row-4cols > .column { width:22.85714286%; }

.row-3cols > li,
.row-3cols > .column { width:31.42857143%; }

.row-2cols > li,
.row-2cols > .column { width:48.57142857%; }

.row-1cols > li,
.row-1cols > .column {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

/* Remove Margin/Padding on First/Last columns */
.row .column:first-child,
.row li:first-child { margin-left: 0; }

.row .column:last-child,
.row li:last-child { margin-right: 0; }

.row.no-margin .column:first-child,
.row.no-margin li:first-child { padding-left: 0; }

.row.no-margin .column:last-child,
.row.no-margin li:last-child { padding-right: 0; }

/* Custom column widths */
.row .col11 { width: 91.42857143%; }
.row .col10 { width: 82.85714286%; }
.row .col9 { width: 74.28571429%; }
.row .col8 { width: 65.71428571%; }
.row .col7 { width: 57.14285714%; }
.row .col6 { width: 48.57142857%; }
.row .col5 { width: 40%; }
.row .col4 { width: 31.42857143%; }
.row .col3 { width: 22.85714286%; }
.row .col2 { width: 14.2857143%; }
/*.col1 {	width: 5.71428572%; }*/

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

	RESPONSIVE BASE

	================================================ */
@media screen and (max-width: 980px) {
	.wrapper {
		max-width: 96%;
		min-width: 0px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
			    box-sizing: border-box;
	}
	.wrapper.gutter {
		padding-left: 2%;
		padding-right: 2%;
		-webkit-box-sizing: content-box;
		   -moz-box-sizing: content-box;
			    box-sizing: content-box;
	}
}
/* 	================================================

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {

	/* Full Column Width */
	.row .col12 {
		clear: both;
		float: none;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	/* Remove margin/padding on first last columns in even width rows */
	.row-1cols.no-margin > li
	.row-1cols.no-margin > .column {
		padding-left: 0;
		padding-right: 0;
	}

	.row-2cols > li:nth-child(odd),
	.row-2cols > .column:nth-child(odd),
	.row-3cols > li:nth-child(3n+1),
	.row-3cols > .column:nth-child(3n+1),
	.row-4cols > li:nth-child(4n+1),
	.row-4cols > .column:nth-child(4n+1),
	.row-5cols > li:nth-child(5n+1),
	.row-5cols > .column:nth-child(5n+1),
	.row-6cols > li:nth-child(6n+1),
	.row-6cols > .column:nth-child(6n+1),
	.row-7cols > li:nth-child(7n+1),
	.row-7cols > .column:nth-child(7n+1),
	.row-8cols > li:nth-child(8n+1),
	.row-8cols > .column:nth-child(8n+1),
	.row-9cols > li:nth-child(9n+1),
	.row-9cols > .column:nth-child(9n+1),
	.row-10cols > li:nth-child(10n+1),
	.row-10cols > .column:nth-child(10n+1),
	.row-11cols > li:nth-child(11n+1),
	.row-11cols > .column:nth-child(11n+1),
	.row-12cols > li:nth-child(12n+1),
	.row-12cols > .column:nth-child(12n+1) {
		clear: both;
		margin-left: 0;
	}

	.row-2cols > li:nth-child(even),
	.row-2cols > .column:nth-child(even),
	.row-3cols > li:nth-child(3n+3),
	.row-3cols > .column:nth-child(3n+3),
	.row-4cols > li:nth-child(4n+4),
	.row-4cols > .column:nth-child(4n+4),
	.row-5cols > li:nth-child(5n+5),
	.row-5cols > .column:nth-child(5n+5),
	.row-6cols > li:nth-child(6n+6),
	.row-6cols > .column:nth-child(6n+6),
	.row-7cols > li:nth-child(7n+7),
	.row-7cols > .column:nth-child(7n+7),
	.row-8cols > li:nth-child(8n+8),
	.row-8cols > .column:nth-child(8n+8),
	.row-9cols > li:nth-child(9n+9),
	.row-9cols > .column:nth-child(9n+9),
	.row-10cols > li:nth-child(10n+10),
	.row-10cols > .column:nth-child(10n+10),
	.row-11cols > li:nth-child(11n+11),
	.row-11cols > .column:nth-child(11n+11),
	.row-12cols > li:nth-child(12n+12),
	.row-12cols > .column:nth-child(12n+12) {
		margin-right: 0;
	}

	.row-2cols.no-margin > li:nth-child(odd),
	.row-2cols.no-margin > .column:nth-child(odd),
	.row-3cols.no-margin > li:nth-child(3n+1),
	.row-3cols.no-margin > .column:nth-child(3n+1),
	.row-4cols.no-margin > li:nth-child(4n+1),
	.row-4cols.no-margin > .column:nth-child(4n+1),
	.row-5cols.no-margin > li:nth-child(5n+1),
	.row-5cols.no-margin > .column:nth-child(5n+1),
	.row-6cols.no-margin > li:nth-child(6n+1),
	.row-6cols.no-margin > .column:nth-child(6n+1),
	.row-7cols.no-margin > li:nth-child(7n+1),
	.row-7cols.no-margin > .column:nth-child(7n+1),
	.row-8cols.no-margin > li:nth-child(8n+1),
	.row-8cols.no-margin > .column:nth-child(8n+1),
	.row-9cols.no-margin > li:nth-child(9n+1),
	.row-9cols.no-margin > .column:nth-child(9n+1),
	.row-10cols.no-margin > li:nth-child(10n+1),
	.row-10cols.no-margin > .column:nth-child(10n+1),
	.row-11cols.no-margin > li:nth-child(11n+1),
	.row-11cols.no-margin > .column:nth-child(11n+1),
	.row-12cols.no-margin > li:nth-child(12n+1),
	.row-12cols.no-margin > .column:nth-child(12n+1) {
		padding-left: 0;
	}

	.row-2cols.no-margin > li:nth-child(even),
	.row-2cols.no-margin > .column:nth-child(even),
	.row-3cols.no-margin > li:nth-child(3n+3),
	.row-3cols.no-margin > .column:nth-child(3n+3),
	.row-4cols.no-margin > li:nth-child(4n+4),
	.row-4cols.no-margin > .column:nth-child(4n+4),
	.row-5cols.no-margin > li:nth-child(5n+5),
	.row-5cols.no-margin > .column:nth-child(5n+5),
	.row-6cols.no-margin > li:nth-child(6n+6),
	.row-6cols.no-margin > .column:nth-child(6n+6),
	.row-7cols.no-margin > li:nth-child(7n+7),
	.row-7cols.no-margin > .column:nth-child(7n+7),
	.row-8cols.no-margin > li:nth-child(8n+8),
	.row-8cols.no-margin > .column:nth-child(8n+8),
	.row-9cols.no-margin > li:nth-child(9n+9),
	.row-9cols.no-margin > .column:nth-child(9n+9),
	.row-10cols.no-margin > li:nth-child(10n+10),
	.row-10cols.no-margin > .column:nth-child(10n+10),
	.row-11cols.no-margin > li:nth-child(11n+11),
	.row-11cols.no-margin > .column:nth-child(11n+11),
	.row-12cols.no-margin > li:nth-child(12n+11),
	.row-12cols.no-margin > .column:nth-child(12n+12) {
		padding-right: 0;
	}

	/* Push Full Column/Gutter Width */
	.row .column.push11,
	.row li.push11 { left: 94.2857137%; }
	.row .column.push10,
	.row li.push10 { left: 85.7142852%; }
	.row .column.push9,
	.row li.push9 {	left: 77.1428567%; }
	.row .column.push8,
	.row li.push8 {	left: 68.5714282%; }
	.row .column.push7,
	.row li.push7 {	left: 59.9999999%; }
	.row .column.push6,
	.row li.push6 {	left: 51.4285711%; }
	.row .column.push5,
	.row li.push5 {	left: 42.8571426%; }
	.row .column.push4,
	.row li.push4 {	left: 34.2857141%; }
	.row .column.push3,
	.row li.push3 {	left: 25.7142856%; }
	.row .column.push2,
	.row li.push2 {	left: 17.1428571%; }
	.row .column.push1,
	.row li.push1 {	left: 8.57142857%; }

	/* Push Column Width only. No Gutter */
	.row .column.pushcol,
	.row li.pushcol { left: 5.71428572%; }

	/* Push Gutter Width only. No Column */
	.row .column.pushmargin,
	.row li.pushmargin { left: 2.85714286%; }

	/* Pull Full Column/Gutter Width */
	.row .column.pull11,
	.row li.pull11 { left: -94.2857137%; }
	.row .column.pull10,
	.row li.pull10 { left: -85.7142852%; }
	.row .column.pull9,
	.row li.pull9 {	left: -77.1428567%; }
	.row .column.pull8,
	.row li.pull8 {	left: -68.5714282%; }
	.row .column.pull7,
	.row li.pull7 {	left: -59.9999999%; }
	.row .column.pull6,
	.row li.pull6 {	left: -51.4285711%; }
	.row .column.pull5,
	.row li.pull5 {	left: -42.8571426%; }
	.row .column.pull4,
	.row li.pull4 {	left: -34.2857141%; }
	.row .column.pull3,
	.row li.pull3 {	left: -25.7142856%; }
	.row .column.pull2,
	.row li.pull2 {	left: -17.1428571%; }
	.row .column.pull1,
	.row li.pull1 {	left: -8.57142857%; }

	/* Pull Column Width only. No Gutter */
	.row .column.pullcol,
	.row li.pullcol { left: -5.71428572%; }

	/* Pull Gutter Width only. No Column */
	.row .column.pullmargin,
	.row li.pullmargin { left: -2.85714286%; }


	.hide-desktop {
		display: none !important;
	}

}
/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

	/* Custom column widths */
	.row .col12-tab { width: 100%; float: none; clear: both; margin-left: 0; margin-right: 0; }
	.row .col11-tab { width: 91.42857143%; }
	.row .col10-tab { width: 82.85714286%; }
	.row .col9-tab { width: 74.28571429%; }
	.row .col8-tab { width: 65.71428571%; }
	.row .col7-tab { width: 57.14285714%; }
	.row .col6-tab { width: 48.57142857%; }
	.row .col5-tab { width: 40%; }
	.row .col4-tab { width: 31.42857143%; }
	.row .col3-tab { width: 22.85714286%; }
	.row .col2-tab { width: 14.2857143%; }
	.row .col1-tab { width: 5.71428572%; }

	.row-1cols-tab > li,
	.row-1cols-tab > .column {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.row-1cols-tab.no-margin > li
	.row-1cols-tab.no-margin > .column {
		padding-left: 0;
		padding-right: 0;
	}

	/* Set widths for tablet classes */
	.row-2cols-tab > li,
	.row-2cols-tab > .column { width:48.57142857%; }
	.row-3cols-tab > li,
	.row-3cols-tab > .column { width:31.42857143%; }
	.row-4cols-tab > li,
	.row-4cols-tab > .column { width:22.85714286%; }
	.row-5cols-tab > li,
	.row-5cols-tab > .column { width:17.714285712%; }
	.row-6cols-tab > li,
	.row-6cols-tab > .column { width:14.2857143%; }
	.row-7cols-tab > li,
	.row-7cols-tab > .column { width:11.8367346%; }
	.row-8cols-tab > li,
	.row-8cols-tab > .column { width:9.99999999%; }
	.row-9cols-tab > li,
	.row-9cols-tab > .column { width:8.57142857%; }
	.row-10cols-tab > li,
	.row-10cols-tab > .column { width:7.4285714%; }
	.row-11cols-tab > li,
	.row-11cols-tab > .column { width:6.4935065%; }
	.row-12cols-tab > li,
	.row-12cols-tab > .column { width: 5.71428572%; }


	/* Remove margin/padding on first last columns in even width rows */
	.row-2cols-tab > li:nth-child(odd),
	.row-2cols-tab > .column:nth-child(odd),
	.row-3cols-tab > li:nth-child(3n+1),
	.row-3cols-tab > .column:nth-child(3n+1),
	.row-4cols-tab > li:nth-child(4n+1),
	.row-4cols-tab > .column:nth-child(4n+1),
	.row-5cols-tab > li:nth-child(5n+1),
	.row-5cols-tab > .column:nth-child(5n+1),
	.row-6cols-tab > li:nth-child(6n+1),
	.row-6cols-tab > .column:nth-child(6n+1),
	.row-7cols-tab > li:nth-child(7n+1),
	.row-7cols-tab > .column:nth-child(7n+1),
	.row-8cols-tab > li:nth-child(8n+1),
	.row-8cols-tab > .column:nth-child(8n+1),
	.row-9cols-tab > li:nth-child(9n+1),
	.row-9cols-tab > .column:nth-child(9n+1),
	.row-10cols-tab > li:nth-child(10n+1),
	.row-10cols-tab > .column:nth-child(10n+1),
	.row-11cols-tab > li:nth-child(11n+1),
	.row-11cols-tab > .column:nth-child(11n+1),
	.row-12cols-tab > li:nth-child(12n+1),
	.row-12cols-tab > .column:nth-child(12n+1) {
		clear: both;
		margin-left: 0;
	}

	.row-2cols-tab > li:nth-child(even),
	.row-2cols-tab > .column:nth-child(even),
	.row-3cols-tab > li:nth-child(3n+3),
	.row-3cols-tab > .column:nth-child(3n+3),
	.row-4cols-tab > li:nth-child(4n+4),
	.row-4cols-tab > .column:nth-child(4n+4),
	.row-5cols-tab > li:nth-child(5n+5),
	.row-5cols-tab > .column:nth-child(5n+5),
	.row-6cols-tab > li:nth-child(6n+6),
	.row-6cols-tab > .column:nth-child(6n+6),
	.row-7cols-tab > li:nth-child(7n+7),
	.row-7cols-tab > .column:nth-child(7n+7),
	.row-8cols-tab > li:nth-child(8n+8),
	.row-8cols-tab > .column:nth-child(8n+8),
	.row-9cols-tab > li:nth-child(9n+9),
	.row-9cols-tab > .column:nth-child(9n+9),
	.row-10cols-tab > li:nth-child(10n+10),
	.row-10cols-tab > .column:nth-child(10n+10),
	.row-11cols-tab > li:nth-child(11n+11),
	.row-11cols-tab > .column:nth-child(11n+11),
	.row-12cols-tab > li:nth-child(12n+12),
	.row-12cols-tab > .column:nth-child(12n+12) {
		margin-right: 0;
	}

	.row-2cols-tab.no-margin > li:nth-child(odd),
	.row-2cols-tab.no-margin > .column:nth-child(odd),
	.row-3cols-tab.no-margin > li:nth-child(3n+1),
	.row-3cols-tab.no-margin > .column:nth-child(3n+1),
	.row-4cols-tab.no-margin > li:nth-child(4n+1),
	.row-4cols-tab.no-margin > .column:nth-child(4n+1),
	.row-5cols-tab.no-margin > li:nth-child(5n+1),
	.row-5cols-tab.no-margin > .column:nth-child(5n+1),
	.row-6cols-tab.no-margin > li:nth-child(6n+1),
	.row-6cols-tab.no-margin > .column:nth-child(6n+1),
	.row-7cols-tab.no-margin > li:nth-child(7n+1),
	.row-7cols-tab.no-margin > .column:nth-child(7n+1),
	.row-8cols-tab.no-margin > li:nth-child(8n+1),
	.row-8cols-tab.no-margin > .column:nth-child(8n+1),
	.row-9cols-tab.no-margin > li:nth-child(9n+1),
	.row-9cols-tab.no-margin > .column:nth-child(9n+1),
	.row-10cols-tab.no-margin > li:nth-child(10n+1),
	.row-10cols-tab.no-margin > .column:nth-child(10n+1),
	.row-11cols-tab.no-margin > li:nth-child(11n+1),
	.row-11cols-tab.no-margin > .column:nth-child(11n+1),
	.row-12cols-tab.no-margin > li:nth-child(12n+1),
	.row-12cols-tab.no-margin > .column:nth-child(12n+1) {
		padding-left: 0;
	}

	.row-2cols-tab.no-margin > li:nth-child(even),
	.row-2cols-tab.no-margin > .column:nth-child(even),
	.row-3cols-tab.no-margin > li:nth-child(3n+3),
	.row-3cols-tab.no-margin > .column:nth-child(3n+3),
	.row-4cols-tab.no-margin > li:nth-child(4n+4),
	.row-4cols-tab.no-margin > .column:nth-child(4n+4),
	.row-5cols-tab.no-margin > li:nth-child(5n+5),
	.row-5cols-tab.no-margin > .column:nth-child(5n+5),
	.row-6cols-tab.no-margin > li:nth-child(6n+6),
	.row-6cols-tab.no-margin > .column:nth-child(6n+6),
	.row-7cols-tab.no-margin > li:nth-child(7n+7),
	.row-7cols-tab.no-margin > .column:nth-child(7n+7),
	.row-8cols-tab.no-margin > li:nth-child(8n+8),
	.row-8cols-tab.no-margin > .column:nth-child(8n+8),
	.row-9cols-tab.no-margin > li:nth-child(9n+9),
	.row-9cols-tab.no-margin > .column:nth-child(9n+9),
	.row-10cols-tab.no-margin > li:nth-child(10n+10),
	.row-10cols-tab.no-margin > .column:nth-child(10n+10),
	.row-11cols-tab.no-margin > li:nth-child(11n+11),
	.row-11cols-tab.no-margin > .column:nth-child(11n+11),
	.row-12cols-tab.no-margin > li:nth-child(12n+11),
	.row-12cols-tab.no-margin > .column:nth-child(12n+12) {
		padding-right: 0;
	}

	/* Push Full Column/Gutter Width */
	.row .column.push11-tab,
	.row li.push11-tab { left: 94.2857137%; }
	.row .column.push10-tab,
	.row li.push10-tab { left: 85.7142852%; }
	.row .column.push9-tab,
	.row li.push9-tab {	left: 77.1428567%; }
	.row .column.push8-tab,
	.row li.push8-tab {	left: 68.5714282%; }
	.row .column.push7-tab,
	.row li.push7-tab {	left: 59.9999999%; }
	.row .column.push6-tab,
	.row li.push6-tab {	left: 51.4285711%; }
	.row .column.push5-tab,
	.row li.push5-tab {	left: 42.8571426%; }
	.row .column.push4-tab,
	.row li.push4-tab {	left: 34.2857141%; }
	.row .column.push3-tab,
	.row li.push3-tab {	left: 25.7142856%; }
	.row .column.push2-tab,
	.row li.push2-tab {	left: 17.1428571%; }
	.row .column.push1-tab,
	.row li.push1-tab {	left: 8.57142857%; }

	/* Push Column Width only. No Gutter */
	.row .column.pushcol-tab,
	.row li.pushcol-tab { left: 5.71428572%; }

	/* Push Gutter Width only. No Column */
	.row .column.pushmargin-tab,
	.row li.pushmargin-tab { left: 2.85714286%; }

	/* Pull Full Column/Gutter Width */
	.row .column.pull11-tab,
	.row li.pull11-tab { left: -94.2857137%; }
	.row .column.pull10-tab,
	.row li.pull10-tab { left: -85.7142852%; }
	.row .column.pull9-tab,
	.row li.pull9-tab {	left: -77.1428567%; }
	.row .column.pull8-tab,
	.row li.pull8-tab {	left: -68.5714282%; }
	.row .column.pull7-tab,
	.row li.pull7-tab {	left: -59.9999999%; }
	.row .column.pull6-tab,
	.row li.pull6-tab {	left: -51.4285711%; }
	.row .column.pull5-tab,
	.row li.pull5-tab {	left: -42.8571426%; }
	.row .column.pull4-tab,
	.row li.pull4-tab {	left: -34.2857141%; }
	.row .column.pull3-tab,
	.row li.pull3-tab {	left: -25.7142856%; }
	.row .column.pull2-tab,
	.row li.pull2-tab {	left: -17.1428571%; }
	.row .column.pull1-tab,
	.row li.pull1-tab {	left: -8.57142857%; }

	/* Pull Column Width only. No Gutter */
	.row .column.pullcol-tab,
	.row li.pullcol-tab { left: -5.71428572%; }

	/* Pull Gutter Width only. No Column */
	.row .column.pullmargin-tab,
	.row li.pullmargin-tab { left: -2.85714286%; }


	.hide-tablet {
		display: none !important;
	}

}


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

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

	/* Default Columns are Full Width */
	.row > .column,
	.row > li {
		float: none;
		clear: both;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.no-margin > .column,
	.no-margin > li {
		padding-left: 0;
		padding-right: 0;
	}

	/* Custom column widths */
	.row .col12-mob { width: 100%; float: none; clear: both; margin-left: 0; margin-right: 0; }
	.row .col11-mob { width: 91.42857143%; float: left; clear: none; }
	.row .col10-mob { width: 82.85714286%; float: left; clear: none; }
	.row .col9-mob { width: 74.28571429%; float: left; clear: none; }
	.row .col8-mob { width: 65.71428571%; float: left; clear: none; }
	.row .col7-mob { width: 57.14285714%; float: left; clear: none; }
	.row .col6-mob { width: 48.57142857%; float: left; clear: none; }
	.row .col5-mob { width: 40%; float: left; clear: none; }
	.row .col4-mob { width: 31.42857143%; float: left; clear: none; }
	.row .col3-mob { width: 22.85714286%; float: left; clear: none; }
	.row .col2-mob { width: 14.2857143%; float: left; clear: none; }
	.row .col1-mob { width: 5.71428572%; float: left; clear: none; }

	/* Push Full Column/Gutter Width */
	.row .column.push11-mob,
	.row li.push11-mob { left: 94.2857137%; }
	.row .column.push10-mob,
	.row li.push10-mob { left: 85.7142852%; }
	.row .column.push9-mob,
	.row li.push9-mob {	left: 77.1428567%; }
	.row .column.push8-mob,
	.row li.push8-mob {	left: 68.5714282%; }
	.row .column.push7-mob,
	.row li.push7-mob {	left: 59.9999999%; }
	.row .column.push6-mob,
	.row li.push6-mob {	left: 51.4285711%; }
	.row .column.push5-mob,
	.row li.push5-mob {	left: 42.8571426%; }
	.row .column.push4-mob,
	.row li.push4-mob {	left: 34.2857141%; }
	.row .column.push3-mob,
	.row li.push3-mob {	left: 25.7142856%; }
	.row .column.push2-mob,
	.row li.push2-mob {	left: 17.1428571%; }
	.row .column.push1-mob,
	.row li.push1-mob {	left: 8.57142857%; }

	/* Push Column Width only. No Gutter */
	.row .column.pushcol-mob,
	.row li.pushcol-mob { left: 5.71428572%; }

	/* Push Gutter Width only. No Column */
	.row .column.pushmargin-mob,
	.row li.pushmargin-mob { left: 2.85714286%; }

	/* Pull Full Column/Gutter Width */
	.row .column.pull11-mob,
	.row li.pull11-mob { left: -94.2857137%; }
	.row .column.pull10-mob,
	.row li.pull10-mob { left: -85.7142852%; }
	.row .column.pull9-mob,
	.row li.pull9-mob {	left: -77.1428567%; }
	.row .column.pull8-mob,
	.row li.pull8-mob {	left: -68.5714282%; }
	.row .column.pull7-mob,
	.row li.pull7-mob {	left: -59.9999999%; }
	.row .column.pull6-mob,
	.row li.pull6-mob {	left: -51.4285711%; }
	.row .column.pull5-mob,
	.row li.pull5-mob {	left: -42.8571426%; }
	.row .column.pull4-mob,
	.row li.pull4-mob {	left: -34.2857141%; }
	.row .column.pull3-mob,
	.row li.pull3-mob {	left: -25.7142856%; }
	.row .column.pull2-mob,
	.row li.pull2-mob {	left: -17.1428571%; }
	.row .column.pull1-mob,
	.row li.pull1-mob {	left: -8.57142857%; }

	/* Pull Column Width only. No Gutter */
	.row .column.pullcol-mob,
	.row li.pullcol-mob { left: -5.71428572%; }

	/* Pull Gutter Width only. No Column */
	.row .column.pullmargin-mob,
	.row li.pullmargin-mob { left: -2.85714286%; }

	/* Add margin/padding for multi columns */
	.row-2cols-mob > li,
	.row-2cols-mob > .column,
	.row-3cols-mob > li,
	.row-3cols-mob > .column,
	.row-4cols-mob > li,
	.row-4cols-mob > .column,
	.row-5cols-mob > li,
	.row-5cols-mob > .column,
	.row-6cols-mob > li,
	.row-6cols-mob > .column,
	.row-7cols-mob > li,
	.row-7cols-mob > .column,
	.row-8cols-mob > li,
	.row-8cols-mob > .column,
	.row-9cols-mob > li,
	.row-9cols-mob > .column,
	.row-10cols-mob > li,
	.row-10cols-mob > .column,
	.row-11cols-mob > li,
	.row-11cols-mob > .column,
	.row-12cols-mob > li,
	.row-12cols-mob > .column {
		clear: none;
		float: left;
		margin-left: 1.42857143%;
		margin-right: 1.42857143%;
	}

	.row-2cols-mob.no-margin > li,
	.row-2cols-mob.no-margin > .column,
	.row-3cols-mob.no-margin > li,
	.row-3cols-mob.no-margin > .column,
	.row-4cols-mob.no-margin > li,
	.row-4cols-mob.no-margin > .column,
	.row-5cols-mob.no-margin > li,
	.row-5cols-mob.no-margin > .column,
	.row-6cols-mob.no-margin > li,
	.row-6cols-mob.no-margin > .column,
	.row-7cols-mob.no-margin > li,
	.row-7cols-mob.no-margin > .column,
	.row-8cols-mob.no-margin > li,
	.row-8cols-mob.no-margin > .column,
	.row-9cols-mob.no-margin > li,
	.row-9cols-mob.no-margin > .column,
	.row-10cols-mob.no-margin > li,
	.row-10cols-mob.no-margin > .column,
	.row-11cols-mob.no-margin > li,
	.row-11cols-mob.no-margin > .column,
	.row-12cols-mob.no-margin > li,
	.row-12cols-mob.no-margin > .column {
		padding-left: 1.42857143%;
		padding-right: 1.42857143%;
	}

	/* Set widths for mobile classes */
	.row-2cols-mob > li,
	.row-2cols-mob > .column { width:48.57142857%; }
	.row-3cols-mob > li,
	.row-3cols-mob > .column { width:31.42857143%; }
	.row-4cols-mob > li,
	.row-4cols-mob > .column { width:22.85714286%; }
	.row-5cols-mob > li,
	.row-5cols-mob > .column { width:17.714285712%; }
	.row-6cols-mob > li,
	.row-6cols-mob > .column { width:14.2857143%; }
	.row-7cols-mob > li,
	.row-7cols-mob > .column { width:11.8367346%; }
	.row-8cols-mob > li,
	.row-8cols-mob > .column { width:9.99999999%; }
	.row-9cols-mob > li,
	.row-9cols-mob > .column { width:8.57142857%; }
	.row-10cols-mob > li,
	.row-10cols-mob > .column { width:7.4285714%; }
	.row-11cols-mob > li,
	.row-11cols-mob > .column { width:6.4935065%; }
	.row-12cols-mob > li,
	.row-12cols-mob > .column { width: 5.71428572%; }

	/* Remove margin/padding on first last columns in even width rows */
	.row-2cols-mob > li:nth-child(odd),
	.row-2cols-mob > .column:nth-child(odd),
	.row-3cols-mob > li:nth-child(3n+1),
	.row-3cols-mob > .column:nth-child(3n+1),
	.row-4cols-mob > li:nth-child(4n+1),
	.row-4cols-mob > .column:nth-child(4n+1),
	.row-5cols-mob > li:nth-child(5n+1),
	.row-5cols-mob > .column:nth-child(5n+1),
	.row-6cols-mob > li:nth-child(6n+1),
	.row-6cols-mob > .column:nth-child(6n+1),
	.row-7cols-mob > li:nth-child(7n+1),
	.row-7cols-mob > .column:nth-child(7n+1),
	.row-8cols-mob > li:nth-child(8n+1),
	.row-8cols-mob > .column:nth-child(8n+1),
	.row-9cols-mob > li:nth-child(9n+1),
	.row-9cols-mob > .column:nth-child(9n+1),
	.row-10cols-mob > li:nth-child(10n+1),
	.row-10cols-mob > .column:nth-child(10n+1),
	.row-11cols-mob > li:nth-child(11n+1),
	.row-11cols-mob > .column:nth-child(11n+1),
	.row-12cols-mob > li:nth-child(12n+1),
	.row-12cols-mob > .column:nth-child(12n+1) {
		clear: both;
		margin-left: 0;
	}

	.row-2cols-mob > li:nth-child(even),
	.row-2cols-mob > .column:nth-child(even),
	.row-3cols-mob > li:nth-child(3n+3),
	.row-3cols-mob > .column:nth-child(3n+3),
	.row-4cols-mob > li:nth-child(4n+4),
	.row-4cols-mob > .column:nth-child(4n+4),
	.row-5cols-mob > li:nth-child(5n+5),
	.row-5cols-mob > .column:nth-child(5n+5),
	.row-6cols-mob > li:nth-child(6n+6),
	.row-6cols-mob > .column:nth-child(6n+6),
	.row-7cols-mob > li:nth-child(7n+7),
	.row-7cols-mob > .column:nth-child(7n+7),
	.row-8cols-mob > li:nth-child(8n+8),
	.row-8cols-mob > .column:nth-child(8n+8),
	.row-9cols-mob > li:nth-child(9n+9),
	.row-9cols-mob > .column:nth-child(9n+9),
	.row-10cols-mob > li:nth-child(10n+10),
	.row-10cols-mob > .column:nth-child(10n+10),
	.row-11cols-mob > li:nth-child(11n+11),
	.row-11cols-mob > .column:nth-child(11n+11),
	.row-12cols-mob > li:nth-child(12n+12),
	.row-12cols-mob > .column:nth-child(12n+12) {
		margin-right: 0;
	}

	.row-2cols-mob.no-margin > li:nth-child(odd),
	.row-2cols-mob.no-margin > .column:nth-child(odd),
	.row-3cols-mob.no-margin > li:nth-child(3n+1),
	.row-3cols-mob.no-margin > .column:nth-child(3n+1),
	.row-4cols-mob.no-margin > li:nth-child(4n+1),
	.row-4cols-mob.no-margin > .column:nth-child(4n+1),
	.row-5cols-mob.no-margin > li:nth-child(5n+1),
	.row-5cols-mob.no-margin > .column:nth-child(5n+1),
	.row-6cols-mob.no-margin > li:nth-child(6n+1),
	.row-6cols-mob.no-margin > .column:nth-child(6n+1),
	.row-7cols-mob.no-margin > li:nth-child(7n+1),
	.row-7cols-mob.no-margin > .column:nth-child(7n+1),
	.row-8cols-mob.no-margin > li:nth-child(8n+1),
	.row-8cols-mob.no-margin > .column:nth-child(8n+1),
	.row-9cols-mob.no-margin > li:nth-child(9n+1),
	.row-9cols-mob.no-margin > .column:nth-child(9n+1),
	.row-10cols-mob.no-margin > li:nth-child(10n+1),
	.row-10cols-mob.no-margin > .column:nth-child(10n+1),
	.row-11cols-mob.no-margin > li:nth-child(11n+1),
	.row-11cols-mob.no-margin > .column:nth-child(11n+1),
	.row-12cols-mob.no-margin > li:nth-child(12n+1),
	.row-12cols-mob.no-margin > .column:nth-child(12n+1) {
		padding-left: 0;
	}

	.row-2cols-mob.no-margin > li:nth-child(even),
	.row-2cols-mob.no-margin > .column:nth-child(even),
	.row-3cols-mob.no-margin > li:nth-child(3n+3),
	.row-3cols-mob.no-margin > .column:nth-child(3n+3),
	.row-4cols-mob.no-margin > li:nth-child(4n+4),
	.row-4cols-mob.no-margin > .column:nth-child(4n+4),
	.row-5cols-mob.no-margin > li:nth-child(5n+5),
	.row-5cols-mob.no-margin > .column:nth-child(5n+5),
	.row-6cols-mob.no-margin > li:nth-child(6n+6),
	.row-6cols-mob.no-margin > .column:nth-child(6n+6),
	.row-7cols-mob.no-margin > li:nth-child(7n+7),
	.row-7cols-mob.no-margin > .column:nth-child(7n+7),
	.row-8cols-mob.no-margin > li:nth-child(8n+8),
	.row-8cols-mob.no-margin > .column:nth-child(8n+8),
	.row-9cols-mob.no-margin > li:nth-child(9n+9),
	.row-9cols-mob.no-margin > .column:nth-child(9n+9),
	.row-10cols-mob.no-margin > li:nth-child(10n+10),
	.row-10cols-mob.no-margin > .column:nth-child(10n+10),
	.row-11cols-mob.no-margin > li:nth-child(11n+11),
	.row-11cols-mob.no-margin > .column:nth-child(11n+11),
	.row-12cols-mob.no-margin > li:nth-child(12n+11),
	.row-12cols-mob.no-margin > .column:nth-child(12n+12) {
		padding-right: 0;
	}

	.no-margin > .column,
	.no-margin > li {
		margin: 0;
	}

	.hide-mobile {
		display: none !important;
	}
}



/*	-----------------------------------
	Resets
	----------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body {
	max-width: 100%;
	overflow-x: hidden;
	width: 100%;
}
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr,
.hr {
	background: #dadada;
	border: none;
	display: block;
	height: 1px;
	margin: 30px auto;
	padding: 0;
	width: 100%;
}
/*	-----------------------------------
	Font Declarations
	----------------------------------- */
@font-face {
	font-family: 'icons';
	src:url('/asset/font/icons/icons.eot');
	src:url('/asset/font/icons/icons.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/icons/icons.ttf') format('truetype'),
		url('/asset/font/icons/icons.woff') format('woff'),
		url('/asset/font/icons/icons.svg#icons') format('svg');
	font-weight: normal;
	font-style: normal;
}
[class*="icon-"] {
	font-family: 'icons';
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	speak: none;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class*="icon-"]:before {
	display: block;
	position: absolute;
	text-indent: 0;
}

/* Logos */
.icon-amiibo:before 	{ content: "\e62a"; }
.icon-nintendo:before	{ content: "\e617\00a0"; } /* add nbsp after to fix android bug */
.icon-facebook:before	{ content: "\e616"; }
.icon-instagram:before 	{ content: "\e615"; }
.icon-tumblr:before		{ content: "\e614"; }
.icon-twitter:before	{ content: "\e613"; }
.icon-youtube:before	{ content: "\e612"; }
.icon-3ds:before		{ content: "\e619"; }
.icon-wiiu:before		{ content: "\e61a"; }
.icon-eshop-nin:before	{ content: "\e61e"; } /* eshop classes need to be wrapped in a .logo-eshop class defined in widgets.css */
.icon-eshop:before		{ content: "\e61f"; }

/* Thick Pagination Arrow */
.icon-arrow-01-up:before 	{ content: "\e603"; }
.icon-arrow-01-right:before { content: "\e602"; }
.icon-arrow-01-left:before 	{ content: "\e601"; }
.icon-arrow-01-down:before 	{ content: "\e600"; }
/* Thin Text Arrow */
.icon-arrow-02-up:before 	{ content: "\e607"; }
.icon-arrow-02-right:before { content: "\e606"; }
.icon-arrow-02-left:before 	{ content: "\e605"; }
.icon-arrow-02-down:before 	{ content: "\e604"; }
/* Double Thin Text Arrow */
.icon-arrow-02-up-double:before 	{ content: "\e607\A\e607"; line-height: 0.5; white-space: pre; }
.icon-arrow-02-right-double:before 	{ content: "\e606\e606";   letter-spacing: -0.5em; padding-right: 0.5em; }
.icon-arrow-02-left-double:before 	{ content: "\e605\e605";   letter-spacing: -0.5em; padding-right: 0.5em; }
.icon-arrow-02-down-double:before 	{ content: "\e604\A\e604"; line-height: 0.5; white-space: pre; }

/* Solid Triangle */
.icon-arrow-03-up:before 	{ content: "\e60b"; }
.icon-arrow-03-right:before { content: "\e60a"; }
.icon-arrow-03-left:before 	{ content: "\e609"; }
.icon-arrow-03-down:before 	{ content: "\e608"; }
/* Accordion Arrows */
.icon-arrow-04-up:before	{ content: "\e60f"; }
.icon-arrow-04-right:before { content: "\e60e"; }
.icon-arrow-04-left:before 	{ content: "\e60d"; }
.icon-arrow-04-down:before 	{ content: "\e60c"; }

/* Icons */
.icon-x-thick:before 	    { content: "\e61b"; }
.icon-x-thin:before 	    { content: "\e61c"; }
.icon-search:before		    { content: "\e610"; }
.icon-menu:before 		    { content: "\e611"; }
.icon-rss:before 		    { content: "\e618"; }
.icon-play:before 		    { content: "\e61d"; }
.icon-check:before 		    { content: "\e620"; }
.icon-top:before 		    { content: "\e621"; }
.icon-wiiu:before 		    { content: "\e622"; color: #00a0C8; }
.icon-wii:before 		    { content: "\e623"; color: #13b5ea; }
.icon-web:before 		    { content: "\e624"; color: #9b9b9b; }
.icon-support:before     	{ content: "\e625"; color: #9b9b9b; }
.icon-news:before 		    { content: "\e627"; color: #9b9b9b; }
.icon-3dsxl:before 		    { content: "\e628"; color: #b01e23; }
.icon-ds:before 		    { content: "\e629"; color: #000; }
.icon-featured:before       { content: "\e626"; color: #ffbf05; }



@font-face {
	font-family: 'LatoHairline';
	src: url('/asset/font/lato/Lato-Hai-Webfont.eot');
	src: url('/asset/font/lato/Lato-Hai-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Hai-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Hai-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Hai-Webfont.svg#LatoHairline') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoHairlineItalic';
	src: url('/asset/font/lato/Lato-HaiIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-HaiIta-Webfont.eot?#iefix') format('embedded-opentype'),
	url('/asset/font/lato/Lato-HaiIta-Webfont.woff') format('woff'),
	url('/asset/font/lato/Lato-HaiIta-Webfont.ttf') format('truetype'),
	url('/asset/font/lato/Lato-HaiIta-Webfont.svg#LatoHairlineItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoLight';
	src: url('/asset/font/lato/Lato-Lig-Webfont.eot');
	src: url('/asset/font/lato/Lato-Lig-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Lig-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Lig-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Lig-Webfont.svg#LatoLight') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoLightItalic';
	src: url('/asset/font/lato/Lato-LigIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-LigIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-LigIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-LigIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-LigIta-Webfont.svg#LatoLightItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoRegular';
	src: url('/asset/font/lato/Lato-Reg-Webfont.eot');
	src: url('/asset/font/lato/Lato-Reg-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Reg-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Reg-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Reg-Webfont.svg#LatoRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoItalic';
	src: url('/asset/font/lato/Lato-RegIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-RegIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-RegIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-RegIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-RegIta-Webfont.svg#LatoItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBold';
	src: url('/asset/font/lato/Lato-Bol-Webfont.eot');
	src: url('/asset/font/lato/Lato-Bol-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Bol-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Bol-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Bol-Webfont.svg#LatoBold') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBoldItalic';
	src: url('/asset/font/lato/Lato-BolIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-BolIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-BolIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-BolIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-BolIta-Webfont.svg#LatoBoldItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBlack';
	src: url('/asset/font/lato/Lato-Bla-Webfont.eot');
	src: url('/asset/font/lato/Lato-Bla-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Bla-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Bla-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Bla-Webfont.svg#LatoBlack') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBlackItalic';
	src: url('/asset/font/lato/Lato-BlaIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-BlaIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-BlaIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-BlaIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-BlaIta-Webfont.svg#LatoBlackItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}


/*	-----------------------------------
	Baselines
	----------------------------------- */

html {
	height: 100%;
}

body {
	background: #989898;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

div#page-container {
	background: #fff;
	box-shadow: 0 -10px 25px rgba(0,0,0,0.2);
	display: block;
	overflow: hidden; /* prevent selecting text and horizontally scrolling when content is off the right edge (carousel arrows) */
	padding-top: 36px;
	position: relative;
	width: 100%;
}
div.page-content {
	padding-top: 30px;
}

/* --- Desktop Headline Fonts --- */
h1, .h1 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 66px;
	margin: 0;
}
h2, .h2 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 44px;
	margin: 0 0 10px;
}
h3, .h3 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 30px;
	margin: 0 0 10px;
}
h4, .h4 {
	color: #484848;
	font-family: 'LatoBlack';
	font-size: 40px;
	margin: 0 0 10px;
}
h5, .h5 {
	color: #484848;
	font-family: 'LatoBlack';
	font-size: 32px;
	margin: 0 0 10px;
}

/* --- Desktop Body Fonts --- */
body, .b1 {
	color: #777;
	font-family: 'LatoRegular';
	font-size: 16px;
}
.b2 {
	color: #999;
	font-family: 'LatoBold';
	font-size: 16px;
}
.b3 {
	color: #777;
	font-family: 'LatoBold';
	font-size: 20px;
	margin: 0 0 10px;
}
.b4 {
	color: #999;
	font-family: 'LatoRegular';
	font-size: 14px;
}
.b5 {
	color: #777;
	font-family: 'LatoRegular';
	font-size: 20px;
}
.b6 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 20px;
}
.b7 {
	color: #484848;
	font-family: 'LatoBlack';
	font-size: 24px;
	margin: 0 0 10px;
}

small,
.b8 {
	color: #777;
	font-family: 'LatoRegular';
	font-size: 14px;
}

p {
	line-height: 1.5;
	margin: 0 0 20px;
}

ol, ul { }

a {
	color: #2576bc;
	cursor: pointer;
	text-decoration: none;
}
a.h1, a.h2, a.h3, a.h4, a.h5,
a.b1, a.b2, a.b3, a.b4, a.b5, a.b6, a.b7, a.b8 {
	color: #2576bc;
}
a:hover {
	color: #3aa4ff;
	text-decoration: underline;
}
a.h1:hover, a.h2:hover, a.h3:hover, a.h4:hover, a.h5:hover,
a.b1:hover, a.b2:hover, a.b3:hover, a.b4:hover, a.b5:hover, a.b6:hover, a.b7:hover, a.b8:hover {
	color: #3aa4ff;
}

h1 a:hover, a.h1:hover,
h2 a:hover, a.h2:hover,
h3 a:hover, a.h3:hover {
	border-bottom: 1px solid #3aa4ff;
	text-decoration: none;
}

a:visited div {
	border-color: inherit; /* Safari border-color bug fix */
}

strong, b {
	font-family: 'LatoBold';
	font-size: inherit;
}
i, em {
	font-family: 'LatoItalic';
}

i b, 
em b,
b i, 
b em {
	font-family: 'LatoBoldItalic';
}


sup {
	font-size: 0.7em;
	vertical-align: super;
}
sub {
	font-size: 0.7em;
	vertical-align: sub;
}

input, textarea {
	font-family: 'LatoRegular';
}
	input::-webkit-search-cancel-button {
		-webkit-appearance: none;
	}
	input::-ms-clear {
		display: none;
	}

/*	-----------------------------------
	Utilities
	----------------------------------- */

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.table {
	display: table;
	height: 100%;
}
	.table-cell {
		display: table-cell;
		float: none;
		vertical-align: middle;
	}

.nowrap {
	white-space: nowrap;	
}

.invisible {
	opacity: 0;
}

.offscreen {
	display: block;
	left: -999999px;
	position: absolute;
	top: -999999px;
}

.hide-text {
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.clear {
	clear: both;
	display: block;
	width: 100%;
}

.clearfix {
	display: inline-block;
}

.clear-fix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}

.loader {
	background: url('/images/global/loader.gif') center center no-repeat;
	height: 100%;
	width: 100%;
}

.jump-target {
	display: block;
	position: relative;
	top: -110px;
}


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

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Baselines
	----------------------------------- */
	div#page-container {
		padding-top: 50px;
	}

	/* --- Desktop Headline Fonts --- */
	h3, .h3 {
		font-size: 24px;
	}
/*	-----------------------------------
	Utilities
	----------------------------------- */
	.left-tab {
		float: left;
	}

	.right-tab {
		float: right;
	}

	.center-tab {
		text-align: center;
	}

}

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

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Baselines
	----------------------------------- */

	div#page-container {
		padding-top: 50px;
	}

	/* --- Mobile Headline Fonts --- */
	h1, .h1 {
		font-size: 46px;
		/*margin-bottom: 30px;*/
	}
	h2, .h2 {
		font-size: 40px;
	}
	h3, .h3 {
		font-size: 24px;
	}
	h4, .h4 {
		font-size: 30px;
	}
	h5, .h5 {
		font-size: 30px;
	}

	/* --- Mobile Body Fonts --- */
	body, .b1 {
		font-size: 18px;
	}
	.b4 {
		font-size: 16px;
	}
	.b5 {
		font-size: 18px;
	}
	.b6 {
		font-size: 18px;
	}
	.b7 {
		font-size: 22px;
	}
	.b8 {
		font-size: 16px;
	}
/*	-----------------------------------
	Utilities
	----------------------------------- */
	.left-mob {
		float: left;
	}

	.right-mob {
		float: right;
	}

	.center-mob {
		text-align: center;
	}

	.jump-target {
		top: -80px;
	}

}

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

	3DS Browser Specific Styles

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

body.nin3DS h1,
body.nin3DS .h1 {
	font-size: 36px;
}
body.nin3DS h2,
body.nin3DS .h2 {
	font-size: 28px;
}
body.nin3DS h3,
body.nin3DS .h3 {
	font-size: 20px;
}
body.nin3DS h4,
body.nin3DS .h4 {
	font-size: 24px;
}

body.nin3DS,
body.nin3DS .b1 {
	font-size: 14px;
}
body.nin3DS .b3 {
	font-size: 16px;
}
body.nin3DS .b4 {
	font-size: 14px;
}
body.nin3DS .b7 {
	font-size: 18px;
}


body.nin3DS [class*="icon-"]:before {
	display: none;
}
body.nin3DS .icon-facebook,
body.nin3DS .icon-twitter,
body.nin3DS .icon-youtube,
body.nin3DS .icon-tumblr,
body.nin3DS .icon-instagram {
	background: url('/images/global/no-icon-font-header-footer.png') no-repeat;
	height: 35px;
	overflow: hidden;
	width: 35px;
}
body.nin3DS .icon-facebook  { background-position: 0 -95px; }
body.nin3DS .icon-twitter   { background-position: -35px -95px; }
body.nin3DS .icon-youtube   { background-position: -70px -95px; }
body.nin3DS .icon-tumblr    { background-position: 0 -130px; }
body.nin3DS .icon-instagram { background-position: -35px -130px; }


/*	-----------------------------------
	NOTES:
	- Global nav is pinned via position:fixed on header#global-header
	- On mobile it is NOT pinned via position:absolute. Remove this line from the mobile styles to pin.
	----------------------------------- */

/* --- Global Back to top button (tablet/mobile) --- */
a.back-to-top {
	background: rgba(37, 118, 188, 1);
	opacity: 0;
	/*
	background: #2576bc;
	border-left: 1px solid #1660a0;
	border-right: 1px solid #1660a0;
	border-top: 1px solid #1660a0;
	*/
	border: 1px solid #fff;
	border-radius: 2px;
	box-shadow: 0 0 3px rgba(0,0,0,.5);
	bottom: 40px;
	-webkit-transform: translate3d(0, 0, 0px);
	display: block;
	height: 35px;
	width: 35px;
	overflow: hidden;
	position: fixed;
	right: 10px;
	text-indent: -99999em;
	text-decoration: none;
	
	z-index: 100;

	opacity: 0;


	-webkit-transition: opacity .4s ease-in-out;
	   -moz-transition: opacity .4s ease-in-out;
		-ms-transition: opacity .4s ease-in-out;
		 -o-transition: opacity .4s ease-in-out;
			transition: opacity .4s ease-in-out;
}
	
	a.back-to-top:before {
		color: #fff;
		content: "\e621";
		display: block;
		font-family: 'icons';
		font-size: 18px;
		height: 100%;
		line-height: 37px;
		text-align: center;
		text-indent: 0;
		width: 100%;
	}


	a.back-to-top.is-on {
		opacity: .7;
	}

	a.back-to-top.is-off {
		opacity: 0;
	}

	a.back-to-top.is-inactive {
		opacity: .2;
	}

	a.back-to-top.is-hidden {
		right: 999px;
	}


/*	-----------------------------------
	Global Header
	----------------------------------- */

/* --- Header Bar --- */
header#global-header {
	background: #e6e6e6;
	background: -moz-linear-gradient(top, #e6e6e6 0%, #f5f5f5 100%);
	background: -webkit-linear-gradient(top, #e6e6e6 0%,#f5f5f5 100%);
	background: -o-linear-gradient(top, #e6e6e6 0%,#f5f5f5 100%);
	background: -ms-linear-gradient(top, #e6e6e6 0%,#f5f5f5 100%);
	background: linear-gradient(to bottom, #e6e6e6 0%,#f5f5f5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6e6', endColorstr='#f5f5f5',GradientType=0 );
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	font-family: 'LatoBold';
	font-size: 13px;
	height: 36px;
	left: 0;
	opacity: .95;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 200;
}
header#global-header:hover {
	opacity: 1;
}

	/* Inner Content */
	header#global-header div.wrapper {
		height: 100%;
	}
		/* Flyout Menu Toggle */
		header#global-header a.icon-menu {
			display: block;
			float: left;
			height: 30px;
			text-decoration: none;
			text-indent: -99999em;
			width: 33px;
		}
		header#global-header a.icon-search {
			display: block;
			float: right;
			height: 30px;
			text-decoration: none;
			text-indent: -99999em;
			width: 33px;
		}
			header#global-header a.icon-menu:before,
			header#global-header a.icon-search:before {
				color: #7a7a7a;
				font-size: 30px;
			}

		/* Nintendo Logo */
		header#global-header .nintendo-logo {
			display: block;
			float: left;
			height: 26px;
			margin: 5px 0 0;
			position: relative;
			width: 104px;
		}
			header#global-header .nintendo-logo a {
				display: block;
				height: 100%;
				text-decoration: none;
				text-indent: -9999em;
				width: 100%;
			}
			header#global-header .nintendo-logo a:hover {
				border: none;
			}
				header#global-header .nintendo-logo a:before {
					color: #7a7a7a;
					display: block;
					font-size: 26px;
					height: 100%;
					position: absolute;
					text-indent: 0;
					width: 100%;
				}

		/* Primary Links */
		header#global-header nav {
			display: block;
			float: right;
			height: 100%;
			margin: 0 auto;
			text-align: center;
			width: -webkit-calc(100% - 120px);
			width: calc(100% - 120px);
		}
			header#global-header nav ul {
				display: block;
				height: 100%;
				width: 100%;
			}
			header#global-header nav ul li {
				/*display: inline-block;*/
				display: block;
				float: left;
				height: 100%;
				padding: 0;
				position: relative;
				white-space: nowrap;
				width: 14.2%;
			}
			
			header#global-header nav ul li.smaller {
				width: 10%;
			}
			
				header#global-header nav ul li a {
					color: #999;
					display: block;
					height: 100%;
					line-height: 36px;
					/*padding: 0 20px;*/
					text-decoration: none;
				}
				header#global-header nav ul li a:focus,
				header#global-header nav ul li a:hover {
					background: #d7d7d7;
					background: -moz-linear-gradient(top, #d7d7d7 0%, #c4c4c4 100%);
					background: -webkit-linear-gradient(top, #d7d7d7 0%,#c4c4c4 100%);
					background: -o-linear-gradient(top, #d7d7d7 0%,#c4c4c4 100%);
					background: -ms-linear-gradient(top, #d7d7d7 0%,#c4c4c4 100%);
					background: linear-gradient(to bottom, #d7d7d7 0%,#c4c4c4 100%);
					filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d7d7', endColorstr='#c4c4c4',GradientType=0 );
					color: #777;
				}
				/* Active */
				header#global-header nav ul li a.active,
				header#global-header nav ul li a:active,
				body#games-page header#global-header .btn-header-games,
				body#threeDS-page header#global-header .btn-header-threeDS,
				body#wiiu-page header#global-header .btn-header-wiiu,
				body#amiibo-page header#global-header .btn-header-amiibo {
					background: #848484;
					background: -moz-linear-gradient(top, #848484 0%, #484848 100%);
					background: -webkit-linear-gradient(top, #848484 0%,#484848 100%);
					background: -o-linear-gradient(top, #848484 0%,#484848 100%);
					background: -ms-linear-gradient(top, #848484 0%,#484848 100%);
					background: linear-gradient(to bottom, #848484 0%,#484848 100%);
					filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#848484', endColorstr='#484848',GradientType=0 );
					color: #d1d1d1;
				}

		/* Desktop Search */
		header#global-header nav ul li.global-header-search {
			float: right;
			margin-top: 5px;
			/*width: 15%;*/
		}
			li.global-header-search form {
				height: 100%;
			}
				li.global-header-search input[type="search"] {
					background: #fff;
					border: none;
					border-bottom-left-radius: 13px;
					border-top-left-radius: 13px;
					border-bottom-right-radius: 0;
					border-top-right-radius: 0;
					color: #989898;
					display: block;
					float: left;
					font-size: 13px;
					height: 24px;
					outline: none;
					padding: 0 0 0 10px;
					width: 80%;
					width: -webkit-calc(100% - 24px);
					width: calc(100% - 24px);
					-webkit-appearance: none;
				}
					li.global-header-search input::-webkit-input-placeholder		{ color: #989898; }
					li.global-header-search input::-moz-placeholder 				{ color: #989898; opacity: 1; }
					li.global-header-search input:-ms-input-placeholder 			{ color: #989898; }
					li.global-header-search input:placeholder 						{ color: #989898; }

					li.global-header-search input:focus::-webkit-input-placeholder 	{ opacity: 0; }
					li.global-header-search input:focus::-moz-placeholder 			{ opacity: 0; }
					li.global-header-search input:focus:-ms-input-placeholder 		{ opacity: 0; }
					li.global-header-search input:focus:placeholder 				{ opacity: 0; }


				li.global-header-search input[type="submit"] {
					background: #fff;
					border: none;
					border-bottom-left-radius: 0;
					border-top-left-radius: 0;
					border-bottom-right-radius: 13px;
					border-top-right-radius: 13px;
					color: #989898;
					cursor: pointer;
					display: block;
					float: left;
					font-family: 'icons';
					font-size: 16px;
					height: 24px;
					outline: none;
					padding: 0;
					width: 24px;
					-webkit-appearance: none;
				}

/* --- Flyout Drawer - Tablet/Mobile --- */
header#global-header-drawer {
	background: #efefef;
	position: absolute;
	width: 80%;
	-webkit-backface-visibility: hidden;
}
	/* Sections */
	header#global-header-drawer li {
		border-top: 1px solid #d1d1d1;
		height: 50px;
	}
		/* Links */
		header#global-header-drawer li a {
			color: #484848;
			display: block;
			font-size: 18px;
			height: 100%;
			line-height: 30px;
			padding: 10px 20px;
		}
		/* Search */
		header#global-header-drawer li.global-header-search {
			background: #d1d1d1;
			padding: 10px 20px;
		}
			header#global-header-drawer input {
				height: 30px;
			}
			header#global-header-drawer input[type="search"] {
				border-radius: 17px 0 0 17px;
				font-size: 18px;
				width: -webkit-calc(100% - 35px);
				width: calc(100% - 35px);
			}
			header#global-header-drawer input[type="submit"] {
				border-bottom-left-radius: 0;
				border-bottom-right-radius: 17px;
				border-top-left-radius: 0;
				border-top-right-radius: 17px;
				border-radius: 0 17px 17px 0;
				font-size: 22px;
				width: 30px;
			}

/* Animate Drawer Open/Close */
div#page-container {
	-webkit-backface-visibility: hidden;
}

/*	-----------------------------------
	Global Footer
	----------------------------------- */
footer#global-footer {
	width: 100%;
}
	/* --- Top Section / Primary Links --- */
	nav.global-footer-top {
		background: #e7e7e7;
		background: -moz-linear-gradient(bottom, #e7e7e7 0%, #f9f9f9 75%);
		background: -webkit-linear-gradient(bottom, #e7e7e7 0%,#f9f9f9 75%);
		background: -o-linear-gradient(bottom, #e7e7e7 0%,#f9f9f9 75%);
		background: -ms-linear-gradient(bottom, #e7e7e7 0%,#f9f9f9 75%);
		background: linear-gradient(to top, #e7e7e7 0%,#f9f9f9 75%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#f9f9f9',GradientType=0 );
		padding: 20px 0;
	}
		/* General Styles */
		nav.global-footer-top ul li {
			padding: 5px 0;
		}
			/* Links */
			nav.global-footer-top a {
				color: #a0a0a0;
			}
				nav.global-footer-top a:hover {
					color: #484848;
					text-decoration: none;
				}

		/* Headings */
		nav.global-footer-top ul > li,
		nav.global-footer-top ul > li a {
			font-family: 'LatoBold';
			font-size: 16px;
		}

			nav.global-footer-top li.footer-icon-country {
				clear: none;
			}
			nav.global-footer-top li.footer-icon-country span.change {
				background-position: 0 -100px;
				display: inline;
			}

			/* Country Selector Icon */
			nav.global-footer-top li.footer-icon-country span {
				background: url('/images/global/sprite-global-footer-flags.png') 0 0 no-repeat;
				display: inline-block;
				height: 12px;
				width: 16px;
			}

			/* Page Titles */
			nav.global-footer-top ul ul li,
			nav.global-footer-top ul ul li a {
				display: block;
				font-family: 'LatoRegular';
				font-size: 12px;
			}

			/* Prevent Word Wrapping */
			nav.global-footer-top ul a div {
				white-space: nowrap;
				display: inline;
			}


	/* --- Bottom Section / Secondary Links & Social Media  ---*/
	section.global-footer-bottom {
		background: #989898;
		background: -moz-linear-gradient(top, #8c8a8a 0%, #989898 50%);
		background: -webkit-linear-gradient(top, #8c8a8a 0%,#989898 50%);
		background: -o-linear-gradient(top, #8c8a8a 0%,#989898 50%);
		background: -ms-linear-gradient(top, #8c8a8a 0%,#989898 50%);
		background: linear-gradient(to bottom, #8c8a8a 0%,#989898 50%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8c8a8a', endColorstr='#989898',GradientType=0 );
		color: #e2e2e2;
		height: auto;
		min-height: 145px;
		padding: 20px 0;
		text-align: center;
	}
		/* General Styles */
		section.global-footer-bottom ul {
			margin-bottom: 15px;
		}
			section.global-footer-bottom ul li {
				display: inline-block;
				padding: 0 10px;
			}
				/* Links */
				section.global-footer-bottom a {
					font-size: 14px;
					color: #e2e2e2;
				}
					section.global-footer-bottom a:hover {
						color: #fff;
					}

		/* Nintendo Logo */
		section.global-footer-bottom a.icon-nintendo {
			display: block;
			height: 30px;
			margin: 30px auto;
			text-decoration: none;
			text-indent: -99999em;
			width: 120px;
		}
			section.global-footer-bottom a.icon-nintendo:before {
				color: #c1c1c1;
				font-size: 30px;
			}

		/* ESRB Logo */
		section.global-footer-bottom a.footer-logo-esrb {
			display: block;
			width: 60px;
		}

		/* Social Media */
		section.global-footer-bottom ul.footer-social a {
			background: #fff;
			display: block;
			font-size: 38px;
			height: 34px;
			margin: 2px;
			padding: 5px;
			position: relative;
			text-decoration: none;
			text-indent: -99999em;
			width: 34px;
		}
		section.global-footer-bottom a.icon-facebook	{ color: #4b689f; }
		section.global-footer-bottom a.icon-twitter		{ color: #00aee8; }
		section.global-footer-bottom a.icon-youtube		{ color: #ce1721; }
		section.global-footer-bottom a.icon-tumblr		{ color: #2c4760; }
		section.global-footer-bottom a.icon-instagram	{ color: #624338; }

		section.global-footer-bottom ul.footer-social a:before {
			height: 35px;
			left: -2px;
			top: -2px;
			width: 35px;

		}

		/* Copyright */
		section.global-footer-bottom ul.footer-copyright {
			font-size: 12px;
		}
			section.global-footer-bottom ul.footer-copyright li {
				display: inline-block;
				padding: 0;
			}

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

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {
	a.back-to-top {
		display: none;
	}
}

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

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Global Header
	----------------------------------- */
	/* --- Header Bar --- */
	header#global-header {
		height: 50px;
		padding: 10px 0;
	}
		/* Nintendo Logo */
		header#global-header .nintendo-logo {
			float: none;
			height: 30px;
			margin: auto;
			width: 120px;
		}
			header#global-header .nintendo-logo a:before {
				font-size: 30px;
			}
/*	-----------------------------------
	Global Footer
	----------------------------------- */
	nav.global-footer-top ul > li.col4-tab {
		margin-right: 0;
	}
	section.global-footer-bottom {
		padding-bottom: 40px;
	}

}


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

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Global Header
	----------------------------------- */
	/* --- Header Bar --- */
	header#global-header {
		height: 50px;
		padding: 10px 0;
		position: absolute; /* Remove this to pin global nav on mobile. */
	}
		/* Nintendo Logo */
		header#global-header .nintendo-logo {
			float: none;
			height: 30px;
			margin: auto;
			width: 120px;
		}
			header#global-header .nintendo-logo a:before {
				font-size: 30px;
			}

		/* Search */
		div.global-header-search input[type="search"] {
			width: 65%;
		}
		div.global-header-search input[type="submit"] {
			width: 30%;
		}

/*	-----------------------------------
	Global Footer
	----------------------------------- */
/* --- Top Section / Primary Links --- */
	nav.global-footer-top {
		background: #fff;
		padding: 0;
	}
	nav.global-footer-top .wrapper {
		max-width: 100%;
	}
		/* General Styles */
		nav.global-footer-top ul.accordion {
			border-bottom: none;
			margin-bottom: 0;
		}
		nav.global-footer-top ul li {
			padding: 0;
		}
			/* Links */
			nav.global-footer-top a {
				color: #484848;
			}
				nav.global-footer-top a:hover {
					color: #3aa4ff;
				}
			nav.global-footer-top li.closed ul {
				display: block;
			}

		/* Headings */
		nav.global-footer-top ul > li,
		nav.global-footer-top ul > li a {
			font-family: 'LatoBold';
			font-size: 22px;
		}
			nav.global-footer-top div.wrapper > ul > li > a {
				background: #fafafa;
				border-bottom: 1px solid #dadada;
				border-top: 1px solid #dadada;
				color: #2576bc;
				display: block;
				min-height: 60px;
				padding: 20px 40px 20px 20px;
				position: relative;
			}
				/* Arrow Icon */
				nav.global-footer-top div.wrapper > ul > li > a:after {
					content: '\e60f';
					display: block;
					font-family: 'icons';
					font-size: 20px;
					position: absolute;
					right: 25px;
					top: 20px;
				}
				/* Country Select Icon */
				nav.global-footer-top div.wrapper > ul > li.footer-icon-country > a:after {
					display: none;
				}

				nav.global-footer-top li.footer-icon-country span.change {
					background-position: 0 -100px;
					display: inline;
				}

				nav.global-footer-top li.footer-icon-country div > span {
					background-position: 0 -8px;
					background-size: 30px;
					height: 22px;
					vertical-align: top;
					width: 30px;
				}

				nav.global-footer-top ul a div {
					display: inline;
				}

			/* Closed State */
			nav.global-footer-top div.wrapper > ul > li.closed > a {
				border-bottom: none;
			}
				nav.global-footer-top div.wrapper > ul > li.closed > a:after {
					content: '\e60c';
				}
				nav.global-footer-top li.closed ul {
					display: none;
				}

			/* Open Drawer Links */
			nav.global-footer-top ul ul {
				padding: 20px 20px 10px;
				display: none;
			}
				nav.global-footer-top ul ul li {
					margin-bottom: 15px;
				}
				nav.global-footer-top ul ul li,
				nav.global-footer-top ul ul li a,
				nav.global-footer-top ul ul li a:hover {
					font-family: 'LatoLight';
					font-size: 18px;
				}
				nav.global-footer-top ul ul li a:hover {
					text-decoration: underline;
				}

	/* --- Bottom Section / Secondary Links & Social Media --- */
	section.global-footer-bottom {
		padding-bottom: 40px;
	}
		/* General Styles */
		section.global-footer-bottom ul {
			margin-bottom: 20px;
		}
			section.global-footer-bottom ul.footer-links li {
				display: block;
				margin-bottom: 10px;
			}
		section.global-footer-bottom ul.footer-social {
			margin-bottom: 10px;
		}
			section.global-footer-bottom ul.footer-social li {
				padding: 0 7px;
			}
				/* Links */
				section.global-footer-bottom a {
					font-size: 16px;
				}

		/* Nintendo Logo */
		section.global-footer-bottom a.icon-nintendo {
			margin: 10px auto;
		}

		/* ESRB Logo */
		section.global-footer-bottom a.footer-logo-esrb {
			margin: 0 auto;
			width: 80px;
		}

		/* Copyright */
		section.global-footer-bottom ul.footer-copyright {
			margin-top: 10px;
		}
			section.global-footer-bottom ul.footer-copyright li {
				display: block;
				font-size: 14px;
			}
				section.global-footer-bottom ul.footer-copyright li:last-child {
					margin-top: 10px;
				}
}

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

	3DS Browser Specific Styles

	================================================ */
body.nin3DS a.back-to-top {
	display: none;
}

body.nin3DS header#global-header .nintendo-logo a {
	background: url('/images/global/no-icon-font-header-footer.png') 0 0 no-repeat;
}
body.nin3DS header#global-header .nintendo-logo a:before {
	display: none;
}
body.nin3DS header#global-header a.icon-menu {
	background: url('/images/global/no-icon-font-header-footer.png') -35px -60px no-repeat;
	height: 35px;
	width: 35px;
}
body.nin3DS header#global-header a.icon-search {
	background: url('/images/global/no-icon-font-header-footer.png') 0 -60px no-repeat;
	height: 35px;
	width: 35px;
}
body.nin3DS header#global-header-drawer input[type="submit"] {
	text-indent: -99999em;
}

body.nin3DS #global-footer ul,
body.nin3DS #global-footer li {
	border: none;
}

body.nin3DS nav.global-footer-top ul > li,
body.nin3DS nav.global-footer-top ul > li a {
	display: block;
	font-size: 18px;
}
body.nin3DS nav.global-footer-top div.wrapper > ul > li > a:after {
	background: url('/images/global/no-icon-font-arrows.png') 0 -20px no-repeat;
	content: '';
	height: 17px;
	overflow: hidden;
	position: absolute;
	right: 25px;
	top: 20px;
	width: 25px;
}
body.nin3DS nav.global-footer-top div.wrapper > ul > li.closed > a:after {
	background-position: 0 0;
	content: '';
}

body.nin3DS section.global-footer-bottom a.icon-nintendo {
	background: url('/images/global/no-icon-font-header-footer.png') 0 -30px no-repeat;
}
body.nin3DS section.global-footer-bottom a,
body.nin3DS section.global-footer-bottom ul.footer-copyright {
	border: none;
	font-size: 12px;
}
body.nin3DS section.global-footer-bottom ul.footer-copyright li {
	border: none;
	display: block;
	padding: 0;
}
body.nin3DS ul.footer-social a {
	background: url('/images/global/no-icon-font-header-footer.png') no-repeat;
	height: 35px;
	overflow: hidden;
	width: 35px;
}
body.nin3DS ul.footer-social a.icon-facebook  { background-position: 0 -95px; }
body.nin3DS ul.footer-social a.icon-twitter   { background-position: -35px -95px; }
body.nin3DS ul.footer-social a.icon-youtube   { background-position: -70px -95px; }
body.nin3DS ul.footer-social a.icon-tumblr    { background-position: 0 -130px; }
body.nin3DS ul.footer-social a.icon-instagram { background-position: -35px -130px; }


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

	New 3DS Browser Specific Styles

	================================================ */
 
body.new3DS header#global-header-drawer li a {
	font-size: 14px;
	line-height: 11px;
	padding: 8px 20px;
}

body.new3DS header#global-header-drawer li {
	height: 27px;
}

body.new3DS header#global-header-drawer li.global-header-search {
	height: 50px;
}

body.new3DS header#global-header-drawer input[type="search"] {
	width: 80%;
}

 
/*	-----------------------------------
	Backgrounds
	----------------------------------- */
/* --- Gradient that stretches the browser width --- */
.container-gradient {
	position: relative;
}
	.container-gradient:before {
		background: url('/images/global/gradient/radial-f2-fff.png') center top no-repeat;
		background-size: 100%;
		background: -moz-radial-gradient(top, ellipse cover,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		background: -webkit-gradient(radial, center top, 0px, center top, 100%, color-stop(0%,#f2f2f2), color-stop(90%,rgba(255,255,255,0)));
		background: -webkit-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -o-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -ms-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: radial-gradient(ellipse at top,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		content: '';
		height: 150px;
		left: 0;
		position: absolute;
		width: 100%;
	}
	/* Gradient on main content */
	div#page-container.container-gradient:before {
		top: 150px;
	}
	/* Gradient on specific sections */	
	.container-gradient:before {
		top: 40px;
	}
		.container-gradient .page-content > .row {
			margin-bottom: 60px;
			padding-top: 25px;
		}

/* --- Gradient that is within content --- */
.content-gradient {
	background: url('/images/global/gradient/radial-f2-fff.png') center top no-repeat;
	background-size: 100%;
	background: -moz-radial-gradient(top, ellipse cover,  #f2f2f2 0%, #fff 50%);
	background: -webkit-gradient(radial, center top, 0px, center top, 100%, color-stop(0%,#f2f2f2), color-stop(50%,#fff));
	background: -webkit-radial-gradient(top, ellipse cover,  #f2f2f2 0%,#fff 50%);
	background: -o-radial-gradient(top, ellipse cover,  #f2f2f2 0%,#fff 50%);
	background: -ms-radial-gradient(top, ellipse cover,  #f2f2f2 0%,#fff 50%);
	background: radial-gradient(ellipse at top,  #f2f2f2 0%, #fff 50%);
	margin-bottom: 80px;
	padding-top: 25px;
	position: relative;
}

/* --- Gradient that is within content but stretches full browser width --- */
.content-gradient-before,
.content-gradient-after {
	position: relative;
}
	.content-gradient-before:before,
	.content-gradient-after:after {
		background: url('../image/global/gradient/radial-f2-fff.png') center top no-repeat;
		background-size: 100%;
		background: -moz-radial-gradient(top, ellipse cover,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		background: -webkit-gradient(radial, center top, 0px, center top, 100%, color-stop(0%,#f2f2f2), color-stop(90%,rgba(255,255,255,0)));
		background: -webkit-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -o-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -ms-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: radial-gradient(ellipse at top,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		content: '';
		height: 150px;
		left: -50%;
		position: absolute;
		right: -50%;
		width: 200%;
	}
	.content-gradient-before:before {
		top: 0;
	}
	.content-gradient-after:after {
		bottom: -155px;
	}

/*	-----------------------------------
	Platform Indicators
	----------------------------------- */

/* --- Border --- */
.threeDS {
	border-bottom: 3px solid #ce181e;
}
.WiiU {
	border-bottom: 3px solid #0096c8;
}

.no-system {
	border-bottom: 3px solid #999;
}

/* --- Date with Border --- */
.date {
	border-bottom: 3px solid #dadada;
	color: #999;
	display: inline-block;
	font-size: 16px;
	font-family: 'LatoBold';
	padding-bottom: 5px;
}
	.threeDS .date,
	.date.threeDS {
		border-color: #ce181e;
	}
	.WiiU .date,
	.date.WiiU {
		border-color: #0096c8;
	}
	.no-system .date,
	.date.no-system {
		border-color: #999;
	}

/*	-----------------------------------
	Buttons
	----------------------------------- */
/* --- Default button --- */
.btn {
	background: #2576bc;
	border: 1px solid #1660a0;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-family: 'LatoBold';
	font-size: 20px;
	line-height: 28px;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	width: 98%;
	margin-left: 1%;
	
		-webkit-transition: all 150ms ease-in-out;
		-moz-transition: all 150ms ease-in-out;
		-ms-transition: all 150ms ease-in-out;
		-o-transition: all 150ms ease-in-out;
		transition: all 150ms ease-in-out;
}
	.btn:hover {
		background: #3aa4ff;
		border-color: #3aa4ff;
		color: #fff;
		text-decoration: none;
	}
	
	/* --- Display button as inline-block --- */
	.btn-inline {
		display: inline-block;
		padding-left: 20px;
		padding-right: 20px;
		width: auto;
	}

	/* --- White button --- */
	/* --- Preview button --- */
	.btn-white,
	.btn-preview {
		background: #fff;
		border-color: #dadada;
		color: #2576bc;
	}
		.btn-white:hover,
		.btn-preview:hover {
			background: #fff;
			border-color: #3aa4ff;
			color: #3aa4ff;
		}

		/* --- Orange button --- */
		.btn-orange {
			background: #f47b2b;
			border-color: #f47b2b;
			color: #fff;
		}
			.btn-orange:hover {
				background: #f7a400;
				border-color: #f7a400;
				color: #fff;
			}

		
	/* --- Transparent button --- */
	.btn-transparent {
		background: none;
		border-color: #2576bc;
		color: #2576bc;
	}
		.btn-transparent:hover {
			background: none;
			border-color: #3aa4ff;
			color: #3aa4ff;
		}

	/* --- White Transparent button --- */
	.btn-white-transparent {
		background: none;
		border-color: #fff;
		color: #fff;
	}
		.btn-white-transparent:hover {
			background: #fff;
			border-color: #fff;
			color: #3aa4ff;
		}

	/* --- Grey button --- */
	.btn-grey {
		background: #888;
		border-color: #888;
		color: #fff;
	}
		.btn-grey:hover {
			background: #b1b1b1;
			border-color: #b1b1b1;
			color: #fff;
		}

	/* --- eShop button --- */
	.btn-eshop {
		background: #fff;
		border-color: #dadada;
		color: #ff7d00;
	}
		/* logo as an icon font */
		.btn-eshop span.icon-eshop,
		.btn-eshop span.icon-eshop-nin,
		.logo-eshop span.icon-eshop,
		.logo-eshop span.icon-eshop-nin {
			display: inline-block;
			position: relative;
			text-indent: -99999em;
		}
		.btn-eshop span.icon-eshop, .logo-eshop span.icon-eshop		{ width: 2.7em; }
		.btn-eshop span.icon-eshop-nin, .logo-eshop span.icon-eshop-nin	{ width: 4em; }

			.btn-eshop span.icon-eshop:before,
			.logo-eshop span.icon-eshop:before {
				bottom: -3px;
				color: #ff7d00;
			}
			.btn-eshop span.icon-eshop-nin:before,
			.logo-eshop span.icon-eshop-nin:before {
				bottom: -2px;
				color: #8c8c8c;
			}
		/* hover state */
		.btn-eshop:hover {
			background: #fff;
			border-color: #ff7d00;
			color: #ff7d00;
		}
	/* --- eShop button with smaller orange text --- */
	.btn-eshop.orange {
		color: #ff7d00;
		font-size: 18px;
	}
		.btn-eshop.orange span.icon-eshop:before,
		.btn-eshop.orange span.icon-eshop-nin:before {
			font-size: 20px;
		}

	/* --- Official Site button --- */
	/* --- Preview button --- */
	.btn-site,
	.btn-preview {
		padding: 5px 0;
	}

	/* --- Preview button --- */
	.btn-preview {
		font-size: 18px;
	}
	/* --- Large button --- */
	.btn-large {
		font-size: 30px;
	}

/* --- Text button with arrow --- */
.text-btn-arrow {
	/*white-space: nowrap;*/
}
	.text-btn-arrow:after {
		content: '\e606';
		display: inline-block;
		font-family: 'icons';
		font-size: 60%;
		height: 20px;
		position: relative;
		width: 20px;
	}
	
/* --- Content separator button with top/bottom border  --- */
.btn-borders {
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
	font-size: 24px;
	margin: 0 0 20px;
	padding: 15px 0;
	text-align: center;
}


/* --- Text button with circle plus --- */
.text-btn-plus {
	white-space: nowrap;
}
	.text-btn-plus:after {
		border: 2px solid #2576bc;
		border-radius: 50%;
		content: '+';
		display: inline-block;
		font-family: 'LatoRegular';
		font-size: 24px;
		font-style: normal;
		height: 26px;
		line-height: 22px;
		margin-left: 10px;
		position: relative;
		text-align: center;
		width: 26px;
	}
	.text-btn-plus:hover:after {
		border-color: #3aa4ff;
	}

/* --- Video thumbnail links --- */
.modal-video-trigger {
	display: inline-block;
	position: relative;
	text-decoration: none;
}

	.play-btn-container {
		background: #000;
		position: relative;
	}
	
		.play-btn-container img {
			opacity: 1;
		
			-webkit-transition: opacity .3s ease-in-out;
			transition: opacity .3s ease-in-out;
		}
	
			.play-btn-container:hover img {
				opacity: .7;
			}	
	
	.play-btn {
		background: url(/images/global/play-button.png);
		display: block;
		height: 64px;
		width: 64px;
		left: 50%;
		top: 50%;
		margin-left: -32px;
		margin-top: -32px;
		position: absolute;
		opacity: .8;
		-webkit-transition: opacity .3s ease-in-out;
		transition: opacity .3s ease-in-out;
	}
	
	.play-btn:hover {
		opacity: 1;
	}
	.modal-video-trigger span.b8 {
		display: block;
		line-height: 1.2;
		margin-bottom: 10px;
		max-width: 166px;
		text-align: left;
	}
	.modal-video-trigger img {
		border-radius: 2px;
		display: block;

	}
	


/* --- Split, single-row CTA buttons with top and bottom border --- */
ul.split-cta {
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	line-height: 1.5;
	margin-bottom: 20px;
}

	ul.split-cta li {
		border-left: 1px solid #dadada;
		display: inline-block;
		padding: 10px 0;
		margin: 0!important;
	}
	ul.split-cta li:first-child {
		border: none;
		text-align: right;
		padding-right: 7%;
	}
	
	ul.split-cta li:last-child {
		text-align: left;
		padding-left: 7%;
	}	

	@media screen and (max-width: 570px) {
		ul.split-cta li {
			border-left: none;
			border-bottom: 1px solid #dadada;
			line-height: 1.2;
			
		}
		
		ul.split-cta li:first-child {
			border-bottom: 1px solid #dadada;
			text-align: center;
			padding-right: 0;
		}
		
		ul.split-cta li:last-child {
			border-bottom: none;
			text-align: center;
			padding-left: 0;
		}
	}


/*	-----------------------------------
	Lists
	----------------------------------- */
	
.bullet-list {} /* for list in a container that can not be reached. i.e: CMS body text */

div.cms-content ul,
ul.bullets,
.bullet-list ul {
	padding-left: 15px;
}
	ul.bullets li,
	div.cms-content ul li,
	.bullet-list ul li {
		line-height: 1.5;
		margin-bottom: 2ex;
		position: relative;
	}
	ul.bullets li:before,
	div.cms-content ul li:before,
	.bullet-list ul li:before {
		color: #0096c8;
		content: '\2022';
		display: block;
		font-size: 17px;
		left: -15px;
		position: absolute;
		top: 0;
	}

	ul.bullets.grey li:before {
		color: #777;
	}
	
	ul.bullets.red li:before {
		color: #ce181e;
	}


ul.asterisk {
	margin-bottom: 20px;
	padding-left: 18px;
}
	ul.asterisk li {
		margin-bottom: 5px;
		position: relative;
	}
	ul.asterisk li:before {
		content: '*';
		display: block;
		left: -15px;
		position: absolute;
		top: 0;
	}
	ul.asterisk li.no-stars {
		margin-left: -15px;
	}
	ul.asterisk li.no-stars:before {
		content: '';
	}
	ul.asterisk li.two-stars:before {
		content: '**';
	}
	ul.asterisk li.three-stars:before {
		content: '***';
	}
	ul.asterisk li.cross:before {
		content: '†';
	}

ol.numbers {
	list-style: decimal;
	padding-left: 20px;
}


/*	-----------------------------------
	Form Elements
	----------------------------------- */
/* --- Custom Checkboxes --- */
input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}
	input[type="checkbox"] + label {
		clear: both;
		display: block;
		font-family: 'LatoBold';
		margin-bottom: 12px;
		padding-left: 25px;
		position: relative;
	}
	/* Styled pseudo input */
	input[type="checkbox"] + label:before {
		background: #dbdbdb;
		border-radius: 2px;
		color: #dbdbdb;
		content: '\e620';
		display: block;
		font-family: 'icons';
		font-size: 14px;
		height: 20px;
		left: 0;
		line-height: 20px;
		margin-right: 10px;
		position: absolute;
		text-align: center;
		top: -2px;
		width: 20px;
	}
	/* Focus state */
	input[type="checkbox"]:focus + label:before {
		outline: 1px dotted #3aa4ff;
	}
	/* Active state */
	input[type="checkbox"]:checked + label {
		color: #2576bc;
	}
	input[type="checkbox"]:checked + label:before {
		background: #2576bc;
		color: #fff;
	}


/*	-----------------------------------
	Pagination
	----------------------------------- */
div.pagination-bar {
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
	margin-bottom: -1px;
	min-height: 49px;
}
	/* General Styles */
	div.pagination-bar ul {
		display: inline-block;
		font-family: 'LatoBold';
		font-size: 14px;
		line-height: 28px;
		height: 100%;
		vertical-align: top;
		white-space: nowrap;
	}
	div.pagination-bar ul:after {
		clear: both;
		content: '';
		display: block;
	}
		div.pagination-bar li {
			display: inline-block;
		}

	/* Sort Options */
	div.pagination-bar ul.options {
		font-size: 16px;
		padding: 10px 0;
		width: 50%;
	}
	div.pagination-bar ul.sort {
		float: left;
	}
	div.pagination-bar ul.items {
		float: left;
		text-align: right;
	}
		ul.options li {
			border-left: 1px solid #dadada;
			font-family: 'LatoRegular';
		}
		ul.options li:nth-child(1),
		ul.options li:nth-child(2) {
			border: none;
		}
			ul.options li a {
				display: block;
				font-family: 'LatoBold';
				padding: 0 10px;
			}
			ul.options li.active a {
				color: #777;
				font-family: 'LatoRegular';
			}
				ul.options li.active a:hover {
					color: #777;
					cursor: default;
					text-decoration: none;
				}

	/* Pagination - Pages */
	div.pagination-bar div.bottom-row {
		clear: both;
		display: inline-block;
		text-align: center;
		width: 100%;
	}
		div.bottom-row:before {
			background: #dadada;
			content: '';
			display: block;
			height: 1px;
			left: 0;
			position: absolute;
			width: 100%;
		}
		div.pagination-bar ul.pagination {
			padding: 10px 10px 10px 0;
		}
			ul.pagination li {
				min-width: 28px;
				text-align: center;
			}
				ul.pagination li a {
					display: block;
					height: 100%;
					width: 100%;
				}
				ul.pagination li.active a {
					background: #d9d9d9;
					border-radius: 50%;
					color: #777;
				}
				ul.pagination li a:hover {
					color: #3aa4ff;
				}

				ul.pagination li.ellipses a {
					color: #777;
				}
					ul.pagination li.ellipses a:hover {
						color: #777;
						cursor: default;
						text-decoration: none;
					}

		/* Pagination - Prev/Next Arrows */
		div.pagination-bar ul.pagination-nav {}
			ul.pagination-nav li {
				display: block;
				float: left;
				height: 48px;
				margin-left: -1px;
				position: relative;
				text-indent: -99999em;
				vertical-align: top;
				width: 50px;
			}
				ul.pagination-nav li a {
					display: block;
					height: 100%;
					width: 100%;
				}
				ul.pagination-nav li a:before {
					font-size: 24px;
					height: 100%;
					padding-top: 12px;
					text-align: center;
					width: 100%;
				}
				ul.pagination-nav li a:hover {
					color: #3aa4ff;
				}
				ul.pagination-nav li.disabled a {
					color: #777;
					cursor: default;
				}


/*	-----------------------------------
	Modal Window
	----------------------------------- */
div#overlay {
	background-color: #000;
	display: block;
	min-height: 100%;
	left: 0;
	opacity: .7;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999998;
}
div#modal-window {
	background: #fff;
	border-radius: 2px;
	color: #000;
	display: block;
	min-height: 300px;
	margin: 0 auto;
	opacity: 0;
	padding: 2%;
	position: fixed;
	max-width: 780px;
	width: 80%;
	z-index: 999999;

	/* Had to remove this so video would play on ios6 devices*/
	/*-webkit-transform: translate3d(0,0,0);
	-webkit-transform: scale(0);
	   -moz-transform: scale(0);
	    -ms-transform: scale(0);
	     -o-transform: scale(0);*/
}
div#modal-window.modal-video {
	min-height: 0;
}
	div.video-player .innerWrapper,
	div#modal-window .innerWrapper {
		z-index: 1 !important; 
	}
	/* Close Button */
	#btn-modal-close {
		background: #2576bc;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		height: 30px;
		padding: 0;
		position: absolute;
		right: -10px;
		text-indent: -99999em;
		text-decoration: none;
		top: -10px;
		width: 30px;
		z-index: 2;
	}
		#btn-modal-close:before {
			color: #fff;
			content: '\e61b';
			display: block;
			font-family: 'icons';
			font-size: 15px;
			left: 0;
			line-height: 30px;
			position: absolute;
			text-align: center;
			text-indent: 0;
			top: 0;
			width: 30px;
		}
		#btn-modal-close:hover {
			background: #3aa4ff;
		}


	div.modal-content {
		display: none;
	}

	div#modal-window div.modal-content {
		position: relative;
		-webkit-backface-visibility: hidden;
	}
	div#modal-window div#video-player {
		background-color: #000;
		height: 100%;
		position: relative;
		width: 100%;
	}


/*	-----------------------------------
	Preview Popup Window
	----------------------------------- */
div.preview-overlay {
	background: rgba(255,255,255,.5);
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	width: 100%;
	z-index: 1;
}
/* --- Preview Window --- */
div.preview-container {
	background: #fff;
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	max-width: 100%;
	opacity: 0;
	position: absolute;
	width: 600px;
	z-index: 2;

	min-height: 200px;
}
div.preview-container.loading {
	background: #fff url('/images/global/loader.gif') center center no-repeat;
}
div.preview-container:before,
div.preview-container:after {
	background: #dadada;
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	z-index: -1;
}
div.preview-container:before {
	height: 30px;
	top: 0;
}
div.preview-container:after {
	height: 5px;
	bottom: 0;
}
	/* Close Button */
	div.preview-container a.preview-close {
		background: #fff;
		border-radius: 2px;
		height: 20px;
		position: absolute;
		right: 5px;
		text-indent: -99999em;
		text-decoration: none;
		top: 5px;
		width: 20px;
		z-index: 1;
	}
		div.preview-container a.preview-close:before {
			color: #2576bc;
			font-size: 12px;
			line-height: 20px;
			width: 100%;
			text-align: center;
		}
		div.preview-container a.preview-close:hover:before {
			color: #3aa4ff;
		}

	/* Content Container Grid */
	div.preview-container div.preview-content {
		border-bottom: 5px solid #dadada;
		border-top: 30px solid #dadada;
		padding: 20px;
	}
	div.preview-container div.preview-content[data-system*="DS"] {
		border-color: #ce181e;
	}
	div.preview-container div.preview-content[data-system*="Wii"] {
		border-color: #0096c8;
	}
	div.preview-container div.preview-content:before {
		color: #fff;
		display: block;
		font-family: 'icons';
		left: 0;
		line-height: 30px;
		position: absolute;
		text-align: center;
		top: 0;
		width: 100%;
	}
	div.preview-container div.preview-content[data-system*="DS"]:before {
		content: '\e619';
		font-size: 30px;
	}
	div.preview-container div.preview-content[data-system*="Wii"]:before {
		content: '\e61a';
		font-size: 16px;
	}
		/* Video Player */
		div.preview-content div.video-player {
			margin-bottom: 20px;
		}

		/* Title & Details */
		div.preview-info {}
			div.preview-info li {
				margin-bottom: 5px;
			}
				div.preview-info li span {
					color: #484848;
					font-family: 'LatoBold';
				}
		/* Learn More Buttons */
		div.preview-buttons {}
			div.preview-buttons li {
				margin-bottom: 10px;
				text-align: center;
			}


/*	-----------------------------------
	Tab Switcher
	----------------------------------- */
.tab-switcher {
	position: relative;
}
	.tab-switcher ul.tab-content {
		position: relative;
	}
		.tab-switcher ul.tab-content > li {
			display: none;
		}
			.tab-switcher ul.tab-content > li.active {
				display: block;
			}
	.tab-switcher ul.tab-nav {
		position: relative;
	}
		.tab-switcher ul.tab-nav li {
			display: inline-block;
			vertical-align: top;
		}

/*	-----------------------------------
	Tab Slider (3DS Home Hero)
	----------------------------------- */
.tab-slider {
	max-width: 980px;
	position: relative;
	z-index: 1;
}
	.tab-slider ul.content {
		height: 488px;
		overflow: hidden;
		position: relative;
	}
		.tab-slider ul.content li {
			float: left;
			overflow: hidden;
			position: relative;
			width: 4%;
			-webkit-transition: width 500ms, height 500ms;
			   -moz-transition: width 500ms, height 500ms;
			     -o-transition: width 500ms, height 500ms;
			        transition: width 500ms, height 500ms;
		}
			.tab-slider ul.content li .slideContent {
				opacity: 0;
				-webkit-transition: opacity 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860);
			}
			.tab-slider ul.content li:first-child {
				width: 92%;
			}
		.tab-slider ul.triggers li {
			cursor: pointer;
		}





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

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {

	/* Hover state */
	input[type="checkbox"] + label:hover {
		color: #3aa4ff;
		cursor: pointer;
	}
	input[type="checkbox"] + label:hover:before {
		color: #c1c1c1;
	}
	/* Active state */
	input[type="checkbox"]:checked + label {
		color: #2576bc;
	}
	input[type="checkbox"]:checked + label:before {
		background: #2576bc;
		color: #fff;
	}

/*	-----------------------------------
	Pagination
	----------------------------------- */
	/* Sort Options */
	div.pagination-bar ul.options {
		border-bottom: none;
		width: auto;
	}
	div.pagination-bar ul.sort {
		float: left;
		padding-right: 3%;
	}
	div.pagination-bar ul.items {
		text-align: left;
	}
	/* Pagination - Pages */
	div.pagination-bar div.bottom-row {
		clear: none;
		float: right;
		width: auto;
	}
		div.bottom-row:before {
			display: none;
		}
}

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

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Backgrounds
	----------------------------------- */
	div#page-container.container-gradient:before {
		top: 160px;
	}

/*	-----------------------------------
	Platform Indicators
	----------------------------------- */
	/* --- Date with Border --- */
	.date {
		color: #999;
	}

/*	-----------------------------------
	Buttons
	----------------------------------- */
	.btn,
	.btn-white,
	.btn-grey,
	.btn-orange {
		font-size: 18px;
	}
	.btn-large {
		font-size: 30px;
	}
	
	/*	-----------------------------------
	Tab Slider (3DS Home Hero)
	----------------------------------- */
	.tab-slider ul.content {
		height: 750px;
		-webkit-transition : height 300ms;
		   -moz-transition : height 300ms;
		    -ms-transition : height 300ms;
		     -o-transition : height 300ms;
		        transition : height 300ms;
	}
	.tab-slider.short ul.content {
		height: 580px;
	}
		.tab-slider ul.content li {
			width: 100%;
		}

}


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

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Backgrounds
	----------------------------------- */
	div#page-container.container-gradient:before {
		top: 140px;
	}
	.page-gradient {
		margin-bottom: 40px;
	}

/*	-----------------------------------
	Buttons
	----------------------------------- */
	.btn,
	.btn-white,
	.btn-grey,
	.btn-orange {
		font-size: 18px;
	}
	.btn-large {
		font-size: 30px;
	}
	
	body:lang(fr-CA) .text-btn-plus:after {
		font-size: 16px;
		height: 20px;
		line-height: 16px;
		margin-left: 6px;
		width: 20px;
	}


/*	-----------------------------------
	Form Elements
	----------------------------------- */
	/* --- Custom Checkboxes --- */
	input[type="checkbox"] + label {
		padding-left: 0;
	}
	/* Styled pseudo input */
	input[type="checkbox"] + label:before {
		left: auto;
		right: 0;
	}
	

/*	-----------------------------------
	Pagination
	----------------------------------- */
	/* General Styles */
	div.pagination-bar ul {
		line-height: 20px;
	}
	/* Sort Options */
	div.pagination-bar ul.options {
		padding: 10px 0;
	}
		ul.options li a {
			padding: 0 5px;
		}

	/* Pagination - Pages */
	div.pagination-bar ul.pagination {
		line-height: 30px;
		padding: 5px 15px 0 5px;
	}
		ul.pagination li {
			margin-right: 5px;
			min-width: 30px;
		}
		
		ul.pagination li.ellipses {
			min-width: 10px;
		}

	/* Pagination - Prev/Next Arrows */
	ul.pagination-nav li {
		height: 40px;
		width: 30px;
	}
		ul.pagination-nav li a:before {
			font-size: 20px;
			padding-top: 10px;
		}
		
/*	-----------------------------------
	Tab Slider (3DS Home Hero)
	----------------------------------- */
	.tab-slider ul.content {
		height: 620px;
	}

/*	-----------------------------------
	Accordion Links (similar to footer)
	----------------------------------- */
	/* --- Wrapper --- */
	.accordion {
		border-bottom: 10px solid #2576bc;
		max-width: 100%;
		width: 100%;
	}
		/* --- Row --- */
		.accordion-row {}

			/* --- Expandable Column --- */
			.accordion-row .column {
				background: #fff;
				max-width: 100%;
				padding: 0;
			}
				/* General Styles */
				.accordion-row .column ul li {
					padding: 0;
					margin-bottom: 15px;
				}
					/* Links */
					.accordion-row .column li a {
						color: #484848;
						display: block;
						font-family: 'LatoLight';
						font-size: 18px;
					}
					/* Subhead Links */
					.accordion-row .column a.b2 {
						font-size: 22px;
						font-family: 'LatoRegular';
						margin-bottom: 20px;
					}
					.accordion-row .column.closed ul {
						display: none;
					}

				/* Headings */
				.accordion-row .column  h2 {
					background: #fafafa;
					border-top: 1px solid #dadada;
					color: #2576bc;
					display: block;
					font-family: 'LatoBold';
					font-size: 20px;
					height: 60px;
					margin: 0;
					padding: 20px;
					position: relative;
				}
				.accordion-row .column  h2.trigger {
					border-bottom: 1px solid #dadada;
				}
				.accordion-row .column  h2 a {
					color: #2576bc;
					display: block;
					height: 100%;
					width: 100%;
				}
					/* Arrow Icon */
					.accordion-row .column  h2.trigger:after {
						content: '\e60f';
						display: block;
						font-family: 'icons';
						font-size: 20px;
						position: absolute;
						right: 25px;
						top: 20px;
					}

				/* Closed State */
				.accordion-row .column.closed h2 {
					border-bottom: none;
				}
					.accordion-row .column.closed h2:after {
						content: '\e60c';
					}

				/* --- Open Drawer Links --- */
				.accordion-row .column  > ul {
					padding: 20px 20px 10px;
					display: none;
				}
}

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

	3DS Browser Specific Styles

	================================================ */
body.nin3DS .date {
	font-size: 14px;
}

body.nin3DS .accordion-row .column h2 {
	font-size: 18px;
}

body.nin3DS .accordion-row .column  h2.trigger:after {
	background: url('../image/global/no-icon-font-arrows.png') 0 -20px no-repeat;
	content: '';
	height: 17px;
	overflow: hidden;
	position: absolute;
	right: 25px;
	top: 20px;
	width: 25px;
}
body.nin3DS .accordion-row .column.closed h2:after {
	background-position: 0 0;
	content: '';
}

body.nin3DS .text-btn-arrow:after,
body.nin3DS .text-btn-plus:after {
	display: none;
}
body.nin3DS .modal-video-trigger.play-btn:before {
	background: url('../image/global/btn-play.png') center center no-repeat;
	content: '';
}

body.nin3DS input[type="checkbox"] + label:before {
	content: 'X';
}



/*	================================================
	
	Custom styles used in compel
	
	================================================ */
p.gd-footnote {
	font-size: .8em;
	line-height: 1.2;
}

li.cms-indent {
	margin-left: 2em;
}
	ul li.cms-indent:before {
		content: "-";
	}


/**
 *
 * Main container
 *
 */
#addToHomeScreen {
	z-index:9999;
	-webkit-user-select:none;
	user-select:none;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-touch-callout:none;
	touch-callout:none;
	width:240px;
	font-size:15px;
	padding:12px 14px;
	text-align:left;
	font-family:helvetica;
	background-image:-webkit-gradient(linear,0 0,0 100%,color-stop(0,#fff),color-stop(0.02,#eee),color-stop(0.98,#ccc),color-stop(1,#a3a3a3));
	border:1px solid #505050;
	-webkit-border-radius:8px;
	-webkit-background-clip:padding-box;
	color:#333;
	text-shadow:0 1px 0 rgba(255,255,255,0.75);
	line-height:130%;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.5);
}

#addToHomeScreen.addToHomeIOS7 {
	background:#f2f2f2 !important;
	-webkit-border-radius:1px !important;
	border:1px solid #ccc;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.2);
}

#addToHomeScreen.addToHomeIpad {
	width:268px;
	font-size:18px;
	padding:14px;
}

/**
 *
 * The 'wide' class is added when the popup contains the touch icon
 *
 */
#addToHomeScreen.addToHomeWide {
	width:296px;
}

#addToHomeScreen.addToHomeIpad.addToHomeWide {
	width:320px;
	font-size:18px;
	padding:14px;
}

/**
 *
 * The balloon arrow
 *
 */
#addToHomeScreen .addToHomeArrow {
	position:absolute;
	background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#ccc));
	border-width:0 1px 1px 0;
	border-style:solid;
	border-color:#505050;
	width:16px; height:16px;
	-webkit-transform:rotateZ(45deg);
	bottom:-9px;
	left:50%;
	margin-left:-8px;
	-webkit-box-shadow:inset -1px -1px 0 #a9a9a9;
	-webkit-border-bottom-right-radius:2px;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeArrow {
	background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#f2f2f2)) !important;
	-webkit-box-shadow:inset -1px -1px 0 #fff !important;
	border-color:#ccc !important;
}

/**
 *
 * The balloon arrow for iPad
 *
 */
#addToHomeScreen.addToHomeIpad .addToHomeArrow {
	-webkit-transform:rotateZ(-135deg);
	background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(238,238,238,0)),color-stop(0.4,rgba(238,238,238,0)),color-stop(0.4,#eee));
	-webkit-box-shadow:inset -1px -1px 0 #fff;
	top:-9px; bottom:auto; left:50%;
}


/**
 *
 * Close button
 *
 */
#addToHomeScreen .addToHomeClose {
	-webkit-box-sizing:border-box;
	position:absolute;
	right:4px;
	top:4px;
	width:18px;
	height:18px; line-height:14px;
	text-align:center;
	text-indent:1px;
	-webkit-border-radius:9px;
	background:rgba(0,0,0,0.12);
	color:#888;
	-webkit-box-shadow:0 1px 0 #fff;
	font-size:16px;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeClose {
	line-height:12px;
	padding-right:1px;
	background:transparent;
	border: 1px solid #888;
	-webkit-box-shadow:none;
}

/**
 *
 * The '+' icon, displayed only on iOS < 4.2
 *
 */
#addToHomeScreen .addToHomePlus {
	font-weight:bold;
	font-size:1.3em;
}


/**
 *
 * The 'share' icon, displayed only on iOS >= 4.2
 *
 */
#addToHomeScreen .addToHomeShare {
	display:inline-block;
	width:18px;
	height:15px;
	background-repeat:no-repeat;
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAQAAADu6HTYAAADPElEQVR4Xq3TX2gcRRzA8e/M7mVv2+TSNpc/TZtrY6jUGqgaSAmEChKLrYK0YH0RFC2CSCkEfCghiKU04J8qNigq6os+iQV98MHWFwVBrQQRWs21lBw5cw3NNb1/udu72RGG5Y77IzXW77D7sAwf5scyYoL6BGXSDKFZwaGpLvIUaeoCkvX1MmsM0Ny6oRSQYOLuIS+YZOpfQdqslpUxcZrzTVAz4qPwW2O3CeIwC/RSzeY6Ow1QhUrkr+YOWfEKDkEP8Rij7CHKJmrFSDHBdwGEE5wiGChPN+PnT8VdRtEIl1d4gRj/1EVe5ZSBKGh8iqQpo/Fo5+3C/gz0MYg4zgwbqday1/Q4B8BGQ45d/Hi54lakCrU5obOcidJpu1+Lg9whjabyaOYLnrIBFFaRD+xe2ybMDWY66GmP/WA9cGfGp0CWhy0wkMN8inepFiH2rV1j0NQSNQbFLRQnS8/8YSDBBpadfv4CYDub2fmeHDNAsL1MBWUel0iA+Xik6eHcyvD3vAMSU1TGuA/YRS+dD7ovCQN43GKRFCU20Kd3V/avDVVyAZ5niTEuLA5/zBGWg9EEEhfJKN200Tat8CmRAQb9+wv7soPlHt2tQorsz1uPbr0HTY4sJwrH47zJZwABBAKLMBoQXepwgTwdHCo+fXMkQ4lrxEmQ5AaXipPqDY9V2vn09tgvTPI71EEGYxM+/uMJLJ4svpgaWGKOi/xKgmqLSUGSUd5f2vIVJ/CgBaTIUsZ7ZBsn0+NzfMOXLFCXQyTcybN6ep5ZZgUOHn7jpfUpsZshdugPGf+E5zjbyHTSRyQ8xfRPPM/s63RHeuknSoT22mjmmnAOIMkUZ6D1xSfPPAfd1WFKM3sO2CMaHx8M1NjnXKHaAGGkOW0C02WeYHUz4qMtx+w5gUDS8NckYe5lHsMYwCZEPyEEmjLDZFmAS7CDviMdxyTkMNVBKEmYLvbiQQBIBBbCQG04bGQvFWz6CfsCQLWCigILFwcfkGYBiOpbYuOizTAyYyDdCtrGaRG1LCkIgMYEFhI0WqQZoSlbGRyHKe4qOx7iv2bVQW9dp4dlM/x6kmwnWQcd/Q3FCqwTEiT5s+6D5v/pb0SSHyg7uhMWAAAAAElFTkSuQmCC);
	background-size:18px 15px;
	text-indent:-9999em;
	overflow:hidden;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeShare {
	width:11px;
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAA8CAYAAAAQTCjdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAASCQAAEgkB80sG3AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKjSURBVGiB7dpPiFVVHMDxz7m9NCtMyI2bEJEC25WrEkzHUXCRraIwdNE8ZxfYIlcis1ZEbGEzT1QCF4XgH1CyWhUoJKIWNRGEiCNKmkSiYTzfcfGuOokx77x3ZlS8382959zfn+/invvn3RdijHIRBrwkOINCYXEcdjpb7VyiYdBsLScwt5y6IloYdzqXo36Ro0gY9IKWo+5JwmzBt2HQnBw9ehYNazyn5TBee8Dh+Vq+CWu92GufnkTDR6ab7gDeBNHouMM/l9tXTXM0fGBmL726Fg1Dam74EsvKqR8VNowL2Yzj5f7rnnE4DHq2235diYYhhTGfC94up35T0y+6di/ITU0rKVd+sEi0P7xr2pSJOu8zvF+OzqEv7vDH/WFxt7/cshy/ticsN8sXYUht0kXDOlsF9XJ4UaEvNoz9X3zc5bKaZThbyr5jzJ4wlNY7KTgM+ES0vhz+KeiPw36fKC/ucAF9uFBOrTZm26SJCtaV27+xIo7cXdkTEhvOoh+XyxprU1qnim7CQdGK2HAyKRexYVShT3RItDElN+mkjiP2Ym+S3f01hv2EVal5WW6hU0ElmptaqJuBpXg6MbeFH2LDpU6CQ93zWIKnEvs0cayGU3glMfkOo1jQYewZzOuyz7FC95Jwo5OgUFfgeg993hh/eTqCTxOSm/iuk8DY0Ap1b2GhtHXxsfZN4j/X0fOx4auEIknEhqv4OiUn1L13Z/+xWfWVaG4q0dxUormpRHNTieamEs1NJZqbJ1Q0jHvdiJo5S2cVjSNOCHZhn3/SnuYnIvl3yomIIz7MXZMn9hydRCrR3FSiualEc1OJ5qYSzU0lmptKNDePjWgwcPePT7/g+4cp8wCW4GXaryK3tL+mLdD5x62ppllgu7bso8q/2HIbzGWdNmWnSJwAAAAASUVORK5CYII=);
	background-size:11px 15px;
}

/**
 *
 * The touch icon (if available)
 *
 */
#addToHomeScreen .addToHomeTouchIcon {
	display:block;
	float:left;
	-webkit-border-radius:6px;
	border-radius:6px;
	-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5),
		inset 0 0 2px rgba(255,255,255,0.9);
	box-shadow:0 1px 3px rgba(0,0,0,0.5),
		inset 0 0 2px rgba(255,255,255,0.9);
	background-repeat:no-repeat;
	width:57px; height:57px;
	-webkit-background-size:57px 57px;
	background-size:57px 57px;
	margin:0 12px 0 0;
	border:1px solid #333;
	-webkit-background-clip:padding-box;
	background-clip:padding-box;
}


.outdated-overlay {
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(/images/outdatedbrowser/bg-overlay.png) repeat;
}

.outdated-message {
	position: absolute;
	z-index: 1999;
	top: 20%;
	left: 0;
	width: 100%;
	height: 583px;
	background: url(/images/outdatedbrowser/img-message.png) no-repeat center center;
}
	.fr-message .outdated-message {
		background: url(/images/outdatedbrowser/img-message-fr.png) no-repeat center center;
	}

	.outdated-force-width {
		width: 980px;
		height: 583px;
		position: relative;
		margin: 0 auto;
	}

	#btn-outdated-continue {
		position: absolute;
		right: -11px;
		bottom: 98px;
		width: 200px;
		height: 54px;
	}

	#btn-browser-firefox,
	#btn-browser-ie,
	#btn-browser-chrome,
	#btn-browser-safari {
		position: absolute;
		right: -11px;
		bottom: 209px;
		height: 24px;
	}

	#btn-browser-firefox:hover ,
	#btn-browser-ie:hover,
	#btn-browser-chrome:hover,
	#btn-browser-safari:hover {
		border-bottom: 1px solid #1e74bf;

	}

		#btn-browser-chrome {
			left: 526px;
			width: 107px;
		}

			.fr-message #btn-browser-chrome {
				width: 112px;
			}

		#btn-browser-ie {
			left: 643px;
			width: 117px;
		}
			.fr-message #btn-browser-ie  {
				left: 650px;
				width: 128px;
			}

		#btn-browser-firefox {
			left: 771px;
			width: 101px;
		}
			.fr-message #btn-browser-firefox  {
				left: 791px;
				width: 106px;
			}

		#btn-browser-safari {
			left: 880px;
			width: 46px;
		}
			.fr-message #btn-browser-safari  {
				left: 908px;
			}

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

	Carousel Widget

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

/*	-----------------------------------
	Hero Carousel - CTA button
	----------------------------------- */

.cta-container {
	width: 100%;
	position: absolute;
	right: 0;
	padding-right: -webkit-calc( (100% - 940px) / 2 );
	padding-right: calc( (100% - 940px) / 2 );
}
	@media screen and (min-width: 571px) and (max-width: 768px) {	
		.cta-container {
			padding-right: 10px;
		}
	}

	.cta-inner-container {
		width: 160px;	
		float: right;
	}
	
	body:lang(fr-CA) .cta-inner-container {
		white-space: nowrap;
	}

	.cta-container .btn {
		padding: 10px 15px;
		width: initial;
	}




/*	-----------------------------------
	Default Styles (.multiple)
	----------------------------------- */
div.carousel {
	margin: 0 auto 30px;
	position: relative;
	width: 100%;
}
	div.frame {
		margin: 0 auto;
		max-width: 980px;
		overflow: hidden;
		position: relative;
		width: 100%;
		z-index: 1;
	}
		div.frame.smooth-scroll {
			overflow-x: auto;
			padding-bottom: 10px;

			-webkit-overflow-scrolling: touch;
		}
		
		
		/* Filter Items */
		
		.filtered-row .carousel.multiple {
			z-index: 1;
			top: 3em;
		}
		
		.filtered-row  .filter-selector {
			text-align: right;
			float: right;
			padding-top: 11px;
			z-index: 2;
		}
		
		 section.filtered-row h2.section-title {
			float: left;
			z-index: 2;
		}
		
		.filter-selector .btn-filter {
			display: inline-block;
			padding-bottom: 10px;
		}
		
		
		.filter-all #see-all,
		.filter-all #see-all:hover {
			color: #000;
			cursor: default;
			text-decoration: none;
			border-bottom: 3px solid #999;
		}
		
		.filter-WiiU #see-WiiU,
		.filter-WiiU #see-WiiU:hover {
			color: #000;
			cursor: default;
			text-decoration: none;
			border-bottom: 3px solid #0096c8;
		}
		
		.filter-threeDS #see-threeDS,
		.filter-threeDS #see-threeDS:hover {
			color: #000;
			cursor: default;
			text-decoration: none;
			border-bottom: 3px solid #ce181e;
		}		
		
		.filtered-row  div.frame {
			top: -2em;
		}
		
		div.carousel ul.panels li.filtered-out {
			display: none;
		}
		
		
		
		/* --- Content Items --- */
		div.carousel ul.panels {
			overflow: hidden;
			position: relative;
			width: 100%;
			z-index: 1;
		}
			div.carousel ul.panels > li {
				float: left;
				margin-bottom: 30px;
				position: relative;
				opacity: 0;
				-webkit-tap-highlight-color: rgba(0,0,0,0);
			}
				/* System Logo  */
				div.carousel ul.panels li:after {
					color: #d5d5d5;
					display: block;
					font-family: 'icons';
					height: 20px;
					left: 0;
					position: absolute;
					width: 100%;
				}
				div.carousel ul.panels li.WiiU:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 60px;
					height: 20px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/sprite-logos.png') right 0 no-repeat;
					background-size: 240px;
				}
				
					div.carousel ul.panels li.WiiU:hover:after {
						background-position: right -20px;
					}
					
				div.carousel ul.panels li.threeDS:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 110px;
					height: 20px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/sprite-logos.png') right -80px no-repeat;
					background-size: 120px;
				}
				
					div.carousel ul.panels li.threeDS:hover:after {
						background-position: right -100px;
					}
				
					div.carousel ul.panels li img {
						display: block;
					}


				.container {
					overflow: hidden;
					position: relative;
				}
					.container > div {
						opacity: 0;
						position: absolute;
						transition: opacity 400ms;
						-webkit-transition: opacity 400ms;
					}


	/*	--- Next/Prev Navigation --- */
	div.carousel div.nav {
		position: absolute;
		display: none;
		height: 100%;
		top: 0;
		width: 100%;
	}
		div.carousel div.nav div.arrow {
			display: block;
			height: 100%;
			overflow: hidden;
			position: absolute;
			top: 0;
			width: 60px;
		}
		div.carousel div.nav div.prev { left: -2.5%; }
		div.carousel div.nav div.next { right: -2.5%; }
		div.carousel div.nav div.more { display: none; }

			div.carousel div.nav div.arrow a {
				background-image: url('/images/global/sprite-carousel-arrows.png');
				background-repeat: no-repeat;
				display: block;
				height: 60px;
				position: absolute;
				text-decoration: none;
				text-indent: -99999em;
				top: 25%;
				top: -webkit-calc(35% - 30px);
				top: calc(35% - 30px);
				width: 60px;
				z-index: 1;
			}
			div.carousel div.nav div.prev a			{ background-position: 0 0; }
			div.carousel div.nav div.next a			{ background-position: -60px 0; }

			div.carousel div.nav div.prev a:hover	{ background-position: 0 -60px; }
			div.carousel div.nav div.next a:hover	{ background-position: -60px -60px; }

	/* --- Pagination --- */
	div.carousel ul.carousel-pagination {
		margin: 30px 0;
		overflow: hidden;
		position: relative;
		text-align: center;
		z-index: 1;
	}
		div.carousel ul.carousel-pagination li {
			display: inline-block;
			margin: 5px;
			position: relative;
			width: 30px;
		}
			div.carousel ul.carousel-pagination li a {
				display: block;
				position: relative;
				text-decoration: none;
				z-index: 1;
			}

			div.carousel ul.carousel-pagination li span {
				background: #e0e0e0;
				border: 1px solid #e0e0e0;
				border-radius: 2px;
				cursor: pointer;
				display: block;
				height: 4px;
				text-indent: -99999em;
			}
			div.carousel ul.carousel-pagination li.is-active span {
				background: #2576bc;
				border-color: #1660a0;
			}
			div.carousel ul.carousel-pagination li a:hover span {
				background: #3aa4ff;
				border-color: #3aa4ff;
			}

/*	-----------------------------------
	Detail Hero Carousel - Games Detail Page
	----------------------------------- */


		/*	--- Next/Prev Navigation --- */
		div.carousel.hero div.nav,
		div.carousel.sibling-hero div.nav {}

			div.carousel.hero div.nav div.arrow,
			div.carousel.sibling-hero div.nav div.arrow {
				width: 100px;
			}
			div.carousel.hero div.nav div.prev,
			div.carousel.sibling-hero div.nav div.prev { left: 0; }
			div.carousel.hero div.nav div.next,
			div.carousel.sibling-hero div.nav div.next { right: 0; }

				div.carousel.hero div.nav div.arrow a,
				div.carousel.sibling-hero div.nav div.arrow a {
					background: rgba(0,0,0,0.27);
					border: 5px solid rgba(255,255,255,0.27);
					border-radius: 50%;
					height: 64px;
					left: 18px;
					opacity: 0;
					top: 30%;
					top: -webkit-calc(45% - 30px);
					top: calc(45% - 30px);
					width: 64px;
					-webkit-transition: opacity 0.5s;
					   -moz-transition: opacity 0.5s;
						-ms-transition: opacity 0.5s;
						 -o-transition: opacity 0.5s;
							transition: opacity 0.5s;
				}
				div.carousel.hero:hover div.nav div.arrow a,
				div.carousel.sibling-hero:hover div.nav div.arrow a {
					opacity: 1;
				}
					div.carousel.hero div.nav div.arrow a:before,
					div.carousel.sibling-hero div.nav div.arrow a:before {
						font-size: 40px;
						line-height: 54px;
						text-align: center;
					}
					div.carousel.hero div.nav div.prev a:before,
					div.carousel.sibling-hero div.nav div.prev a:before { left: 4px; }
					div.carousel.hero div.nav div.next a:before,
					div.carousel.sibling-hero div.nav div.next a:before { right: 4px; }




/*	-----------------------------------
	Hero Carousel - Center Stage
	----------------------------------- */
div.carousel.hero {
}
	div.carousel.hero div.frame {
		max-width: 1200px;
	}

		/* --- Content Items --- */
		div.carousel.hero ul.panels li {
			margin-bottom: 0;
			text-align: center;
			border: none;
		}
		div.carousel.hero ul.panels li:after {
			display: none;
		}

		div.carousel.hero ul.panels li .hero-img {
			background-position: center top;
			background-repeat: no-repeat;
			background-size: cover;
			display: block;
			max-height: 510px;
			padding-bottom: 42.5%; /* Initially set height to 1200x510 */
			width: 100%;
			position: relative;
			z-index: -1;
			height:50px;

			/* 56.25% = 16x9 */
		}
		
		a div.hero-esrb {
			display: table;
			background-color: #fff;	
			vertical-align: top;
			border: solid 1px white;
		}
		
			a div.hero-esrb-icon {
				width: 47px;
			}
			a div.hero-esrb-desc {
				display: table-cell;
				vertical-align: middle;
				color: #000;				
				border-width: 3px 3px 3px 0;
				border-color: black;
				border-style: solid;
				-moz-box-sizing: border-box;
				margin-left: -3px;
				width: 120px;
				overflow: hidden;
			}
				.hero-esrb-desc p {
					margin-bottom: 1px;
					font-size: 10px;
					line-height: 1.1;
					padding-left: 5px;
					text-align: left !important;
				}

		/* Adjust image to display 980x510 and scale accordingly */
		@media screen and (max-width: 1080px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 48%;
			}
		}
		@media screen and (max-width: 1024px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 50%;
			}
		}
		@media screen and (max-width: 980px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 53%;
			}
		}
		@media screen and (max-width: 768px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 59%;
			}
		}
		@media screen and (max-width: 570px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 62%;
			}
		}

			/* --- Slide Info --- */
			div.carousel.hero div.info-bar {
				background: rgba(0,0,0, 0.7);
				height: 110px;
				opacity: 1;
				position: absolute;
				bottom: 0;
				width: 100%;
				z-index: 1;
			}
				div.carousel.hero div.info-bar a {
					text-decoration: none;
				}
					div.carousel.hero div.info-bar div.inner-content {
						border: none;
						margin: 10px auto;
						max-width: 980px;
						position: relative;
					}

						/* Inline Images */
						div.carousel.hero div.info-bar img {
							display: inline-block;
							vertical-align: middle;
						}
						/* Title */
						.carousel.hero .info-bar h3, 
						.carousel.hero .info-bar .h3 {
							color: #fff;
							letter-spacing: -1px;
							line-height: 1;
							margin: 5px auto;
							text-align: center;
						}
							
							/*
							div.carousel.hero div.info-bar .txt-dark  h3 {
								color: #000;
							}
							*/
						/* Sub Text */
						div.carousel.hero div.info-bar p {
							text-align: center;
						}
							div.carousel.hero div.info-bar .txt-dark  p {
								color: #000;
							}

				div.carousel.hero .BGImage {
					opacity: 0;
					width: 100%;
					height: 100%;
					position: absolute;
					top: 0;
					background-position: center center;
				}

					div.carousel.hero .BGImage .overlayWide {
						background: rgba(0,0,0, 0.7);
						width: 100%;
				    	position: absolute;
				    	bottom: 0;
					}

		/* --- Pagination --- */
		div.carousel.hero ul.carousel-pagination {
			bottom: -1px;
			margin: auto;
			padding-right: -webkit-calc( (100% - 940px) / 2 );
			padding-right: calc( (100% - 940px) / 2 );
			position: absolute;
			text-align: right;
			width: 100%;
		}
			div.carousel.hero ul.carousel-pagination li {
				height: 30px;
				line-height: 30px;
				text-align: center;
			}
			div.carousel.hero ul.carousel-pagination li a,
			div.carousel.hero ul.carousel-pagination li a:hover {
				background: none;
				border: none;
				padding: 0;
			}
			div.carousel.hero ul.carousel-pagination li span,
			div.carousel.hero ul.carousel-pagination li a:hover span {
				background: url('/images/global/sprite-carousel-pagination.png') 0 0 no-repeat;
				border: none;
				color: #3aa4ff;
				cursor: pointer;
				display: block;
				height: 100%;
				text-indent: 0;
				width: 100%;
			}
				/* Dark Theme - default */
				div.carousel.hero ul.carousel-pagination li.is-active span			{ background-position: -30px -30px; color: #fff; }
				div.carousel.hero ul.carousel-pagination li.step1 span				{ background-position: -60px -30px; }
				div.carousel.hero ul.carousel-pagination li.step2 span				{ background-position: -90px -30px; }
				div.carousel.hero ul.carousel-pagination li.step3 span				{ background-position: -120px -30px; }
				div.carousel.hero ul.carousel-pagination li.step4 span				{ background-position: -150px -30px; }

				/* Light Theme */
				div.carousel.hero.light ul.carousel-pagination li.is-active span	{ background-position: -30px -60px; color: #000; }
				div.carousel.hero.light ul.carousel-pagination li.step1 span		{ background-position: -60px -60px; }
				div.carousel.hero.light ul.carousel-pagination li.step2 span		{ background-position: -90px -60px; }
				div.carousel.hero.light ul.carousel-pagination li.step3 span		{ background-position: -120px -60px; }
				div.carousel.hero.light ul.carousel-pagination li.step4 span		{ background-position: -150px -60px; }

				/* Hover State */
				div.carousel.hero ul.carousel-pagination li a:hover span,
				div.carousel.hero ul.carousel-pagination li.is-active a:hover span	{ background-position: -30px 0; }
				div.carousel.hero ul.carousel-pagination li.step1 a:hover span		{ background-position: -60px 0; }
				div.carousel.hero ul.carousel-pagination li.step2 a:hover span		{ background-position: -90px 0; }
				div.carousel.hero ul.carousel-pagination li.step3 a:hover span		{ background-position: -120px 0; }
				div.carousel.hero ul.carousel-pagination li.step4 a:hover span		{ background-position: -150px 0; }


	div.carousel.hero ul.carousel-pagination li:first-child:before,
	div.carousel.hero ul.carousel-pagination li:last-child:after {
		bottom: -5px;
		content: '';
		cursor: default;
		display: block;
		height: 20px;
		position: absolute;
		width: 10000em;
		z-index: -1;
	}
	div.carousel.hero.hero ul.carousel-pagination li:first-child:before {
		background: url('/images/global/sprite-carousel-pagination-bar.png') right 0 no-repeat;
		right: 20px;
	}
	div.carousel.hero ul.carousel-pagination li:last-child:after {
		background: url('/images/global/sprite-carousel-pagination-bar.png') 0 -20px no-repeat;
		left: 20px;
	}

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

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Default Styles (.multiple)
	----------------------------------- */
	div.carousel div.nav div.arrow {
		display: none;
	}
	div.carousel ul.carousel-pagination {
		margin: 0;
	}

		div.carousel ul.carousel-pagination li {
			width: 20px;
		}
				div.carousel ul.carousel-pagination li a {
					padding: 18px 0;
				}

/*	-----------------------------------
	Hero Carousel
	----------------------------------- */
	div.carousel.hero ul.carousel-pagination {
		padding-right: 10px;
	}
		div.carousel.hero ul.carousel-pagination li {
			width: 30px;
		}

/*	-----------------------------------
	Thumbnail Carousel
	----------------------------------- */
	div.carousel.sibling-thumbs div.nav div.arrow {
		/* display: block; */
	}
	
/*	-----------------------------------
	Filter Items
	----------------------------------- */
		
	.filtered-row .filter-selector {
		text-align: left;
		padding-bottom: 1em;
		float: none;
	}
	
	.filtered-row div.frame {
		top: 0;
	}
		section.filtered-row h2.section-title {
			float: none;
		}
	
}

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

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Default Styles (.multiple)
	----------------------------------- */
	.wrapper.gutter div.carousel {
		width: 102%; /* extend carousel to right edge on wrappers with padding (WiiU/3DS pages) */
	}
	div.carousel div.nav,
	div.carousel ul.carousel-pagination {
		display: none;
		opacity: 0;
	}
	div.carousel ul.carousel-pagination {
		margin: 0;
	}
		div.carousel ul.carousel-pagination li a {
			padding: 18px 0;
		}
	div.carousel ul.panels li.WiiU:after {
		font-size: 10px;
	}
	div.carousel ul.panels li.threeDS:after {
		font-size: 16px;
	}

/*	-----------------------------------
	Hero Carousel
	----------------------------------- */
	div.carousel.hero ul.panels,
	div.carousel.hero ul.panels li {
		padding-bottom: 30px;
	}
		div.carousel.hero div.info-bar {
			background: -moz-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: -webkit-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: -o-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: -ms-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			bottom: -30px;
			height: 90px;
		}
			div.carousel.hero div.info-bar div.inner-content {
				margin: 20px auto 0;
			}

				div.carousel.hero div.info-bar h3 {
					font-size: 18px;
				}

	div.carousel.hero ul.carousel-pagination {
		display: block;
		opacity: 1;
		padding-right: 0;
		text-align: center;
	}

	div.carousel.hero div.nav {
		display: none;
	}

/*	-----------------------------------
	Accordion Drawer Carousel
	----------------------------------- */
	div.carousel.drawer {
		background: #fafafa;
		background: -moz-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: -webkit-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: -o-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: -ms-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: linear-gradient(to top, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8f8f8',GradientType=0 );
		margin-bottom: 0;
		padding-bottom: 60px;
	}
		div.carousel.drawer div.nav {
			background: #fff;
			border-top: 1px solid #f2f2f2;
			bottom: 0;
			height: 30px;
			opacity: 1;
			top: auto;
			display:block;
		}
			div.carousel.drawer div.nav div.next,
			div.carousel.drawer div.nav div.prev {
				display: none;
			}
			div.carousel.drawer div.nav div.more {
				bottom: 30px;
				display: block !important;
				overflow: visible;
				top: auto;
				width: 100%;
			}
				div.carousel.drawer div.nav div.more a {
					left: 40%;
					left: -webkit-calc(50% - 30px);
					left: calc(50% - 30px);
					top: 0;
				}
				/* add full background path for iOS 6 bug fix */
				div.carousel.drawer div.nav div.open a {
					background: url('/images/global/sprite-carousel-arrows.png') 0 -240px no-repeat;
				}
				div.carousel.drawer div.nav div.closed a {
					background: url('/images/global/sprite-carousel-arrows.png') -60px -240px no-repeat;
				}
/*	-----------------------------------
	Filter Items
	----------------------------------- */
		
	.filtered-row  .filter-selector {
		text-align: left;
		padding-bottom: 1em;
		float: none;
	}
		 section.filtered-row h2.section-title {
			float: none;
		}
		
		.filtered-row  div.frame {
			top: 0;
		}

}

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

	3DS Browser Specific Styles

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

body.nin3DS div.carousel.multiple ul.carousel-pagination {
	opacity: 1;
}
body.nin3DS div.carousel ul.panels li:after {
	display: none;
}

.carousel.hero ul.panels {
	padding-bottom: 0 !important;
}
.carousel.hero ul.panels li {
	padding-bottom: 0 !important;
}
.carousel.hero ul.panels li .info-bar {
	bottom: 0;
	height: auto;
	padding: 0 1% 25px;
}

@media screen and (max-width: 570px) {
	.carousel.hero ul.panels li .info-bar {
		padding-bottom: 30px !important;
	}
	.carousel.hero ul.panels li .info-bar.no-pag {
		padding-bottom: 0 !important;
	}
}

.carousel.hero ul.panels li .info-bar.no-pag {
	padding: 0 1%;
}

div.carousel.hero div.info-bar div.inner-content {
	margin: 0 auto;
	padding: 10px 0 20px;
	font-size: 0;
}

div.carousel.hero div.info-bar.no-pag div.inner-content {
	padding: 10px 0;
}

div.carousel.hero div.info-bar div.inner-content div.column {
	display: inline-block;
	vertical-align: middle;
	float: none;
}

div.carousel.hero div.info-bar .cta-inner-container {
	float: none;
	width: auto;
	text-align: right;
}
div.carousel.hero div.info-bar .cta-inner-container .btn {
	width: auto;
	padding: 10px 20px;
}


/*	-----------------------------------
	Carousel - Featured Games
	----------------------------------- */
section.games {
	border-bottom: 1px solid #dadada;
	margin: 0 auto;
	max-width: 980px;
}
	div#games ul.panels li {
		margin-top: 1px;
	}
	
		div#games ul.panels li.no-system {
			border-bottom: 3px solid #999;
		}	
	
		/* Hover outlines on Desktop only */
		@media screen and (min-width: 769px) {
			div#games ul.panels li.WiiU:hover {
				box-shadow: 0 0 0 1px #0096c8;
			}
			div#games ul.panels li.threeDS:hover {
				box-shadow: 0 0 0 1px #ce181e;
			}
			div#games ul.panels li.no-system:hover {
				box-shadow: 0 0 0 1px #999;
			}
		}

/*	-----------------------------------
	Carousel - Game Platforms
	----------------------------------- */
section.platforms {
	border-bottom: 1px solid #dadada;
	margin: 0 auto;
	max-width: 980px;
	padding: 30px 0 0;
}
	section.platforms .h2 {
		text-align: center;
	}

	div#platforms ul.panels li:after {
		display: none;
	}
		div#platforms ul.panels li a {
			color: #777;
			display: block;
			text-decoration: none;
			-webkit-transition: all 300ms ease;
			   -moz-transition: all 300ms ease;
				-ms-transition: all 300ms ease;
				 -o-transition: all 300ms ease;
					transition: all 300ms ease;
		}
			/* Hover background on Desktop only */
			@media screen and (min-width: 769px) {
				div#platforms ul.panels li a:hover {
					/*background: url('/images/global/gradient/linear-top-fd-f2-fd.png') 0 center repeat-x;
					background-size: auto 100%;
					background: -moz-linear-gradient(top, #fdfdfd 0%, #f2f2f2 50%, #fdfdfd 100%);
					background: -webkit-linear-gradient(top, #fdfdfd 0%,#f2f2f2 50%, #fdfdfd 100%);
					background: -o-linear-gradient(top, #fdfdfd 0%,#f2f2f2 50%, #fdfdfd 100%);
					background: -ms-linear-gradient(top, #fdfdfd 0%,#f2f2f2 50%, #fdfdfd 100%);
					background: linear-gradient(to bottom, #fdfdfd 0%,#f2f2f2 50%, #fdfdfd 100%);*/
					background: #f0f0f0;
				}
			}
			@media screen and (max-width: 570px){
				section.platforms h2,
				section.platforms .h2 {
				    font-size: 32px;
				}
				
				section.platforms div.carousel ul.panels > li {
				    width: 26%!important;
				}
				
			}
			
			
				
			
			
		div#platforms ul.panels li p {
			bottom: 5px;
			left: 0;
			margin: 0;
			position: absolute;
		}
		
		div#platforms ul.panels li img {
			margin: 0 auto;
		}

		@media screen and (max-width: 374px){
				section.platforms h2,
				section.platforms .h2 {
				    font-size: 26px;
				}
				
				div#platforms ul.panels li img {
				    margin: 0 auto 20px;
				}
								
			}

/*	-----------------------------------
	What's New & New Game Releases
	----------------------------------- */
/* --- General Section Styles --- */
section.coming-soon {
	border-bottom: 1px solid #dadada;
	padding: 30px 0;
}

section.news-games {
	border-bottom: 1px solid #dadada;
	padding: 30px 0;
}
	/* Column Heading */
	section.news-games .h3 {
		margin-bottom: 30px;
	}
		section.news-games .h3 span,
		section.new-releases span.divider {
			
			color: #dcdcdc;
		}

	section.news-games li {
		border-bottom: none;
	}
	/* Date */
	section.news-games .date {
		margin-bottom: 20px;
		padding-bottom: 5px;
	}

	/* Game Title */
	section.news-games h3 {
		margin-bottom: 5px;
	}

	/* --- What's New section --- */
	section.whats-new li {
		margin-bottom: 30px;
		padding-right: 10px;
	}
		section.whats-new a {
			white-space: nowrap;
		}

	/* --- New Game Releases section --- */
	
	section.new-releases .h3 {
		display: inline-block; 
	}
		
	section.new-releases li {
		padding-bottom: 1%;
	}

		section.new-releases > ul li:nth-child(1),
		section.new-releases > ul li:nth-child(3) {
			/*border-right: 1px solid #dadada;*/
			margin-right: -1px;
		}
		section.new-releases > ul li:nth-child(2),
		section.new-releases > ul li:nth-child(4) {
			border-left: 1px solid #dadada;
		}
		section.new-releases > ul li:nth-child(3),
		section.new-releases > ul li:nth-child(4) {
			border-top: 1px solid #dadada;
			padding-top: 2%;
		}
		section.new-releases > ul li:nth-child(3) {
			clear: left;
		}

			section.new-releases li a {
				text-decoration: none;
			}

			/* Hover States */
			section.new-releases li.WiiU:hover .b4 {
				color: #0096c8;
			}
			section.new-releases li.threeDS:hover .b4 {
				color: #ce181e;
			}
			section.new-releases li:hover .b3 {
				color: #3aa4ff;
			}

			section.new-releases div.boxart {
				max-width: 140px;
			}
			
			/* min height for new releases containers for tablet and up */
			@media screen and (min-width: 571px) {
				.new-releases li {
					min-height: 200px;
				}				
			}

/*	-----------------------------------
	Static Promos Section
	----------------------------------- */
/* --- General Section Styles --- */
section.static-promos {
	padding: 30px 0 60px;
}

body:lang(fr-CA) section.static-promos {
	display: none;
}
	section.static-promos a {
		color: #777;
		text-decoration: none;
	}
		/* Column Heading */
		section.static-promos h3 {
			margin-bottom: 10px;
		}
		section.static-promos img {
			display: block;
		}

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

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

	div#platforms ul.panels li {
		margin-bottom: 0;
	}
	
}


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

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Carousel - Game Platforms
	----------------------------------- */
	section.platforms {
		border-bottom: none;
	}
		div#platforms ul.panels li p {
			font-size: 12px;
		}

/*	-----------------------------------
	What's New & New Game Releases
	----------------------------------- */

	/* --- What's New section --- */
	section.whats-new ul {
		border-bottom: 1px solid #dadada;
		margin-bottom: 50px;
	}
	
	body:lang(fr-CA) section.whats-new ul {
		border-bottom: 0;
		margin-bottom: 0;
	}
	
	body:lang(fr-CA) section.coming-soon {
		border-bottom: 1px solid #dadada;
		padding: 60px 0 0px 0;
		margin-bottom: 15px;
	}
	
		section.whats-new ul li {
			padding-right: 10px;
		}
	
	/* --- New Game Releases section --- */
	section.new-releases li.column {
		min-height: 460px;
		padding-top: 30px;
	}
	section.new-releases > ul li:nth-child(3),
	section.new-releases > ul li:nth-child(4) {
		border-top: 1px solid #dadada;
		padding-top: 30px;
	}
	section.new-releases > ul li:nth-child(1) a,
	section.new-releases > ul li:nth-child(2) a {
		padding-bottom: 30px;
	}
		section.new-releases div.boxart {
			margin-bottom: 10px;
			max-width: 100%;
			min-height: 200px;
			text-align: center;
		}
		section.new-releases div.info {
			/* padding: 0 10px; */
		}

/*	-----------------------------------
	Static Promos Section
	----------------------------------- */
	section.static-promos {
		padding-top: 50px;
	}
		section.static-promos li {
			margin-bottom: 30px;
		}
			section.static-promos li h3 {
				margin-bottom: 20px;
			}
}

@media screen and (max-width: 374px){
	section.news-games .h3 {
	    margin-bottom: 10px;
	}
	
	section.new-releases a.text-btn-arrow{
	    display: inline-block;
		margin-bottom: 20px;
	}
}

