/*
pitch
-------------------------------------------------------------------------------------------------
|		LF		|		CF		|		RF		| forwards (3x33%)
|-----------------------------------------------------------------------------------------------|
|						AM						| attackingMidfield (1x100%)
|-----------------------------------------------------------------------------------------------|
|	LW	|		LM		|		RM		|	RW	| midfield (4x25%)
|-----------------------------------------------------------------------------------------------|
|						DM						| defensiveMidfield (1x100%)
|-----------------------------------------------------------------------------------------------|
|	LB		|	LCB		|		RCB		|	RB	| defense (4x25%)
|-----------------------------------------------------------------------------------------------|
|						SW						| sweeper (1x100%)
|-----------------------------------------------------------------------------------------------|
|						GK						| goalkeeper (1x100%)
-------------------------------------------------------------------------------------------------
*/
.teamLayout {
	width: 500px;
	margin: 0px auto;
}

.pitch {
	height: 500px;
	text-align: center;
	background: url('/images/match/pitch3.png') no-repeat;
}

.pitch img {
	opacity:0.8;
	filter:alpha(opacity=80);
}

.pitch select {
	margin-top: 20px;
	margin-bottom: 30px;
	font-size: 0.8em;
}

/* ROWS */
.goalkeeper {
	margin-bottom: 20px;
}
.defence {
	margin-bottom: 20px;
}

.midfield {
	margin-bottom: 20px;
}

.attackingMidfield {
	margin-bottom: 20px;
}

.forwards {
	margin-bottom: 20px;
}

/* COLS */
.oneColOne {
	width: 100%;
	display: inline-block;
	text-align:center;
}

.fiveColsOne {
	position: relative;
	top: 60px;
	width: 19%;
	display: inline-block;
	z-index: 10;
}
.fiveColsTwo {
	position: relative;
	top: 30px;
	width: 19%;
	display: inline-block;
	z-index: 9;
}
.fiveColsThree {
	position: relative;
	width: 19%;
	display: inline-block;
	z-index: 8;
}
.fiveColsFour {
	position: relative;
	top: 30px;
	width: 19%;
	display: inline-block;
	z-index: 7;
}
.fiveColsFive {
	position: relative;
	top: 60px;
	width: 19%;
	display: inline-block;
	z-index: 6;
}

.playerName {
	position: relative;
	top: -30px;
	color: white;
	font-weight: bold;
	float: left;
}


