/*
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;
	font-weight: bold;
	font-size: 10pt;
	color: black;
	background: url('/images/backgrounds/pitch3.png') no-repeat;
}

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

.pitch select { 
	font-size: 75%;
}

/* ROWS */
.goalkeeper {
	height: 75px;
}
.sweeper {
	height: 75px;
}

.defence {
	position: relative;
	top: -60px;
	height: 75px;
}


.defensiveMidfield {
	position: relative;
	top: -60px;
	height: 75px;
}

.midfield {
	position: relative;
	top: -70px;
	height: 75px;
}

.attackingMidfield {
	position: relative;
	top: -80px;
	height: 75px;
}

.forwards {
	position: relative;
	top: -70px;
	height: 75px;
}

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

.fiveColsOne {
	width: 19%;
	display: inline-block;
}
.fiveColsTwo {
	width: 19%;
	display: inline-block;
}
.fiveColsThree {
	width: 19%;
	display: inline-block;
}
.fiveColsFour {
	width: 19%;
	display: inline-block;
}
.fiveColsFive {
	width: 19%;
	display: inline-block;
}

.playerName {
	position: relative;
	top: -30px;
	color: white;
}

