* {
	padding: 0;
	margin:0;
	color: black;
	text-decoration: none;
}

a:hover {
	color: blue;
}

body {
   font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
   font-weight: 300;
   min-width: 768px;
}

.preventScrolling {
	overflow: hidden;
}

div#dimBackground {
	color: white;
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20;
}


div#dimBackground.plaza {
	background-image: url(../images/backdrop2.jpg);
	z-index: -10;
	background-repeat: no-repeat;
	background-size: cover;
	height: 800px;
	z-index: -1;
}

.styledInput {
	height: 26px;
	width: 196px;
	padding: 10px;
	margin: 10px;
	border-radius: 5px;
	border: 2px solid white;
}


/* LOGIN
------------------------------------------- */

img#logo {
	top: 0;
	left: 0;
	position: absolute;
	width: 400px;
}

#clan {
	margin: 0;
	padding: 0;
}


form#login {
	width: 240px;
	height: 550px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.7);
		margin-top: 150px;

}

form#login > h2 {
	font-size: 16px;
	text-align: left;
	font-weight: bolder;
	margin: 10px 0 0 30px;
}

form#login > .registration {
	display: none;
}

form#login > input {
	font-size: 16px;
	text-align: center;
}

#handle {
}

#inkling {
}

#loginInkling {
	display: block;
	position: absolute;
	z-index: 1;
	width: 165px;
	height: 165px;
	margin: 384px 35px 0px 35px;
}

#passwordInitial {
}

#passwordVerify {
	display: none;
}

#submitLogin {
	background-color: #67ea67;
	outline: none;
	outline-style: none;
	height: 50px;
	width: 220px;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
	border-color: #00dd00;
	border-width: 1px;
	border-style: solid;
	color: #186100;
}

#submitLogin:hover {
	border-color: #00dd00;
	background-color: #75f075;
	color:#023200;	
}

#formTypeToggle {
	display: block;
	text-align: center;
	padding: 15px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.18);
}

#formTypeToggle:hover {
	background-color: #00a2ed;
	border-color: #39a0ff;
	color: #001c70;
}

a#passwordReminder {
	display: block;
	text-align: center;
	margin-bottom: 20px;
	font-size: 12px;
}	


/* CHAT
---------------------------------------------------------- */	

#chat {
	left: 20px;
	top: 112px;
	width: 300px;
	height: 475px;
	overflow: hidden;
	border: rgba(0, 0, 0, 0.3) 1px solid;
	border-radius: 8px;
	position: fixed;
	z-index: 30;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

#chat:hover {
	cursor: pointer;
}

#chat:active {
	cursor: move;
}

#chatLogWrapper {
	overflow: hidden;
	background-color: white;
	height: 390px;
}	

#chatTitle {
	height: 30px;

	font-size: 14px;
	font-style: normal;
	font-weight: 200;
	color: #787878;

	text-align: center;
	line-height: 30px;
	vertical-align: middle;

	background-color: #f2f2f2;
	
	border-width: 0 0 1px 0;
	border-color: #e6e6e6;
	border-style: solid;
	
	background-image: url(../images/chatTitle.png);
}

#chatLog {
	list-style: inside;
	padding: 10px;
	margin: 0;
	font-size: 14px;		
	list-style-type: none;
}

#chatMessage {
	height: 55px;
	background-color: #f2f2f2;
	border-width: 1px 0 0 0;
	border-color: #e6e6e6;
	border-style: solid;
}

#msg {
	width: 190px;
	height: 16px;
	margin: 10px 0 10px 10px;
	padding: 8px;
	border: #e1e1e1 1px solid;
	float: left;
}

#submitMsg {
	width: 60px;
	height: 34px;
	background-color:#dddddd;
	border: #bdbdbd 1px solid;
}


ol#chatLog > li {
	margin: 10px 0 0 0;
	display: block;
	padding: 4px 2px;
	color: black;
}

ol#chatLog > li > span {
	display: block;
	margin: 0;
}

ol#chatLog > li.self {
	color: black;
	text-align: right;
}

ol#chatLog > li.self > em > span.timestamps {
	display: none;
}

/* Chat Log Formatting -------------- */

ol#chatLog > li > em {
	display: block;
	font-weight: normal;
	font-size: 12px;
	color: #0092b6;
}

ol#chatLog > li > em > span {
	display: block;
	float: right;
	font-size: 11px;
	color: #d1d1d1;
	margin-right: 5px;
}	

ol#chatLog > li > em > span.timestamps > span {
	display: none;
}


ol#chatLog > li.systemMsg {
	padding: 10px;
	color: black;
	background-color: #cdcdcd;
	border-radius: 6px;
	display: block;
}

ol#chatLog > li.systemMsg.error {
	color: #941e1e;
	background-color: #e8b3b3;	
}

ol#chatLog > li.systemMsg.welcome {
	color: #005fb2;
	background-color: #ccebff;	
}

ol#chatLog > li.systemMsg.welcome > b {
	color: #003d73;
	font-weight: bolder;
}


/* Player Chat Colors
------------------------------------ */

.color1 {
	color: #e25454;
}
.bgColor1 {
	background-color: #e25454;
}

.color2 {
	color: #c752d9;
}
.bgColor2 {
	background-color: #c752d9;
}

.color3 {
	color: #4e51d7;
}
.bgColor3 {
	background-color: #4e51d7;
}

.color4 {
	color: #1b9e2a;
}
.bgColor4 {
	background-color: #1b9e2a;
}

.color5 {
	color: #cbb228;
}
.bgColor5 {
	background-color: #cbb228;
}


img#splash {
	position: absolute;
   top: 50%;
   left: 50%;
   width: 700px;
   height: 700px;
   margin-top: -350px;
   margin-left: -350px;
}

input#passwordInitial.missing,
input#handle.missing {
	border: 2px solid red;
}


/* DIALOG BOX: BECOME A MEMBER OF SQUAD?
------------------------------------------ */

/*
	<div id="joinSquad">		
		<h1>United Inklings</h1>
		<h2>Do you want to join this squad?</h2>
		<ol id="currentSquadMembers">
			<li>
				Basse
				<span>B+</span>
				<span>Admin</span>
			</li>
			<li>
				Alpha
				<span>B+</span>
			</li>
		</ol>
		<div id="joinSquadActions">
			<a id="joinSquadCancellation" href="#">Back to List</a>
			<a id="joinSquadConfirmation" href="#">Join Squad</a>
		</div>
	</div>
*/

div#joinSquad{
	width: 240px;
	height: 395px;
	padding: 0 40px;
	background-color: #f2f2f2;
	margin: 90px auto;
	border-radius: 6px;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -180px;
	margin-top: -250px;
	z-index: 40;
	box-shadow: 0px 1px 5px black;
	display: none;
}

div#joinSquad > h1 {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
}

div#joinSquad > h2 {
	text-align: center;
	font-size: 14px;
	font-weight: 400;
}

ol#currentSquadMembers {
	display: block;
	overflow-x: hidden;
	overflow-y: auto;
	height: 230px;
	margin: 20px 0;
	border: 1px solid rgba(0, 0, 0, 1);
	border-width: 1px 0 1px 0;
}

ol#currentSquadMembers > li {
	height: 35px;
	text-align: left;
	font-weight: bold;
	line-height: 35px;
}

ol#currentSquadMembers > li > span {
	text-align: right;
	display: block;
	margin-right: 20px;
	width: 40px;
	float: right;
	font-weight: normal;
	color: #888888;
}

ol#currentSquadMembers > li.noMembers {
	padding: 5px;
	margin: 60px 10px 10px 10px;
	border-radius: 6px;
	border:1px solid #91d8ff;
	background-color: #cceaff;
	color: #0096ff;
	font-weight: normal;
	font-size: 16px;
	text-align: center;
	height: 100px;
	line-height: 100px;
}



/* JOIN SQUAD
------------------------------------------ */

div#joinSquadActions {
	background-color: green;
}

div#joinSquadActions > a {
	height: 40px;
	display: block;
	float: left;
	width: 110px;
	border: 1px solid #cdcdcd;
	line-height: 40px;
	border-radius: 8px;
	font-weight: 400;
}

div#joinSquadActions > a#joinSquadCancellation {
	margin-right: 15px;
	color: red;
}

div#joinSquadActions > a#joinSquadConfirmation {
	color: green;
}

div#joinSquadActions > a#joinSquadCancellation:hover {
	color: white;
	background-color: red;
	border-color: #6f0000;
}

div#joinSquadActions > a#joinSquadConfirmation:hover {
	color: white;
	background-color: green;
	border-color: #003804;
}


/* SQUAD HOME
------------------------------------------ */

div#squadHomeWrapper {
	margin: 90px 0 140px 0;
}

div#squadHome {
	margin: 0 auto;
}

form#squadHomeGameSearch {
	position: fixed;
	top: 0;
	height: 110px;
	width: 768px;
	background-color: #00abff;
}

h1#squadHomeTitle {
}

input#squadHomeGameSearchField {
}

input#submitSquadGameSearch {
}

div#eventHeader > div.scheduleAction {
	width: 217px;
	float: right;
}

a#primaryAction {
	width: 155px;
	display: block;

	line-height: 50px;
	text-decoration: none;
	text-align: center;
	font-weight: normal;

	color: black;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 10px;

	padding: 0 20px;
	margin: 20px 0 0 0;
}

a#primaryAction:hover {
	color: white;
	background: #3ca4ff;
	border: 1px solid rgba(0,44,125,0.32);
}

div#squadHomeGameWrapper {
	width: 768px;
	margin: 0 auto;
}

ol#squadGamesList {
}


/* GAME HEADER
---------------------------------------------------------------- */

ol#leagueSchedule {
	list-style: none;
	width: 768px;
}

/* HEADER
---------------------------- */

li#gameScheduleHeader {
	position: relative;
	display: block;
	width: 768px;
	height: 60px;
	color: white;
	background-color: black;
}

li#gameScheduleHeader.fixed {
	position: fixed;
	top: 90px;
}

li#gameScheduleHeader.messages {
	top: 345px;
}

li#gameScheduleHeader > ol {
	list-style: none;
	clear: both;
	height: 60px;
}

li#gameScheduleHeader > ol > li {
	color: white;
	padding: 20px;
	float: left;
	line-height: 20px;
	font-weight: normal;
}

li#gameScheduleHeader > ol > li.gameDatetime {
	width: 160px;
	height: 20px;
	padding: 20px 0px;
}


/* AN ACTUAL GAME
---------------------------- */

li.gameSceduleItem {
	height: 90px;
	background-color: white;
}

li.gameSceduleItem:hover,
li.gameSceduleItem.highligthedGameEntry {
	background-color: #d8f4ff;
}

li.gameSceduleItem > ol {
	list-style: none;
	clear: both;
	height: 90px;
}

li.gameSceduleItem > ol > li {
	float: left;
	padding: 35px 20px;
	cursor: pointer;	
}

li.gameAttendance,
li.gameAttendanceQuickMenu {
	width: 110px;
	height: 20px;
}

li.gameTitle {
	width: 230px;
	height: 20px;
}

li.gameSceduleItem > ol > li.gameDatetime {
	width: 160px;
	height: 20px;
	padding: 35px 0px;
}


li.gameSceduleItem li.memberAttendance {
	text-align: center;
	font-weight: normal;
	width: 20px;
	height: 20px;
}


li.gameSceduleItem li.gameAttendanceCertain {
	color: #00d81a;
}

li.gameSceduleItem li.gameAttendanceMaybe {
	color: #e3c500;
}

li.gameSceduleItem li.gameAttendanceNo {
	color: #bd4e4e;
}

li.gameSceduleItem li.memberAttendanceResponse {
	background-repeat: no-repeat;
	background-position: center center;
	font-weight: bold;
	color: white;
}

li.gameSceduleItem li.gameAttendanceCertain.memberAttendanceResponse {
	background-image: url(../images/eventAttendanceCertain.svg);
}

li.gameSceduleItem li.gameAttendanceMaybe.memberAttendanceResponse {
	background-image: url(../images/eventAttendanceMaybe.svg);
}

li.gameSceduleItem li.gameAttendanceNo.memberAttendanceResponse {
	background-image: url(../images/eventAttendanceNo.svg);
}


/* ATTENDANCE QUICK MENU
------------------------------------ */

/* Quick Attendance ------ */

div#quickAttendanceMenu {
	background-color: white;
	border: 1px solid black;
	width: 250px;
	height: 120px;
	border-radius: 6px;
	position: absolute;
	z-index: 10;
	top: 300px;
	left: 50px;
	display: none;
}

div#quickAttendanceMenu > ol {
	width: 250px;
	height: 120px;
}

div#quickAttendanceMenu > ol > li {
	display: block;
	float: left;
	clear: both;
	width: 220px;
	padding: 5px 10px 5px 20px;
	border-width: 0 0 1px 0;
	border-color: black;
	border-style: solid;
	line-height: 30px;
}

div#quickAttendanceMenu > ol > li:hover {
	font-weight: bold;
}

div#quickAttendanceMenu > ol > li.quickAttendanceNo {
	border: 0;
}

div#quickAttendanceMenu > ol > li > div {
	overflow: hidden;
	height: 30px;
	width: 25px;
	float: left;
	margin: 0 15px 0 -11px;
}

div#quickAttendanceMenu > ol > li.quickAttendanceYes > div > img {
	margin: -10px 0 0 -38px;
}

div#quickAttendanceMenu > ol > li.quickAttendanceMaybe > div > img {
	margin: -10px 0 60px -102px;
}

div#quickAttendanceMenu > ol > li.quickAttendanceNo > div > img {
	margin: -10px 0 60px -70px;
}


/* Quick Attendance ------ */

a.attendance {
	display: block;
	float: left;
	width: 92px;
	border: 1px solid transparent;
	border-radius: 7px;
	margin: -15px 0 -20px 0;
}

a.attendance:hover {
	border: 1px solid rgba(0,0,0,0.56);
	background-color: rgba(255, 255, 255, 0.5);
}

a.attendance > img {
}

a.attendance > span {
	display: block;
	float: right;
	width: 32px;
	height: 53px;
	overflow: hidden;
	background-image: url(../images/attendance.png);
	border-radius: 5px;
	text-indent: -200px;
}

a.attendance > span.attending {
	background-position-x: -32px;
}	

a.attendance > span.absent {
	background-position-x: -64px;
}

a.attendance > span.maybe {
	background-position-x: -96px;
}

a.attendance > span.rescheduled {
	background-position-x: -128px;
}

a.attendance > span.moved {
	background-position-x: -160px;
}

div#events > ol > li.cancelled > a.attendance > span {
	background-position-x: -192px;
}

div.battleModeWrapper {
	overflow: hidden;
	width: 50px;
	height: 50px;
	float: left;
}

.battleMode1 {
	/* Random Ranked Battle */
	margin-top: -150px;
}

.battleMode2 {
	/* Turf War */
	margin-top: -200px;
}

.battleMode3 {
	/* Private Random Battle */
	margin-top: -150px;
}

.battleMode4 {
	/* Splat Zones */
	margin-top: 0;
}

.battleMode5 {
	/* Tower Control */
	margin-top: -100px;
}

.battleMode6 {
	/* Rainmaker */
	margin-top: -50px;
}


/* NO GAME HEADER
---------------------------------------------------------------- */


li#noGameScheduledHeader {
	background-color: #dadada;
	border: 1px solid #939393;
	border-radius: 6px;
	position: relative;
	top: 150px;
	width: 768px;
	height: 200px;
}

li#noGameScheduledHeader > h1 {
	line-height: 40px;
	color: #e40000;
	text-align: center;
	font-size: 50px;
	margin-top: 71px;
}

li#noGameScheduledHeader > h2 {
	margin: 0;
	color: #7f7f7f;
	font-size: 15px;
	font-weight: normal;
	line-height: 30px;
	text-align: center;
}

li#noGameScheduledHeader > h2 > em {
	color: #4b4b4b;
	font-weight: normal;
	font-style: normal;
}

li#noGameScheduledHeader > a#createNewGame {
		width: 240px;
		height: 30px;
		padding: 10px;
		background-color: #f2f2f2;
		margin: 0 auto;
		border-radius: 6px;
		text-align: center;
		line-height: 30px;
		display: block;
}

li#noGameScheduledHeader > a#createNewGame:hover {
	color: white;
	background-color: green;
}

li#noGameScheduledHeader > div#createNewGameDisabled {
		width: 240px;
		height: 30px;
		padding: 10px;
		background-color: #f2f2f2;
		margin: 0 auto;
		border-radius: 6px;
		text-align: center;
		line-height: 30px;
		display: block;
		color: gray;
}



/* SQUAD LISTING
------------------------------------------ */

div#squadLogWrapper {
	width: 768px;
	margin: 0 auto;
}

ol#squadLog {
	width: 768px;
	margin-top: 140px;
}

ol#squadLog li {
	display: block;
	height: 50px;
	line-height: 50px;
}

li.squidSquad:hover {
	background-color: #818181;
}

li.squidSquad:hover > h1,
li.squidSquad:hover li {
	color: white;
}


li.even {
	background-color: #f3f3f3;
}

li#squadLogHeader {
	background-color: black;
	position: fixed;
	top: 90px;
	width: 768px;
}

ol#squadLog > li > em.squadRanking {
	display: block;
	float: left;
	width: 53px;
	padding: 0 0 0 17px;
	background-repeat: no-repeat;
	background-position: center center;
	font-style: normal;
}

ol#squadLog li#hiddenLeaguesReminder {
	border-radius: 6px;
	border: 1px solid #d8d8d8;
	background-color: #f6f6f6;
	display: block;
	padding: 22px 15px;
	text-align: center;
	font-size: 15px;
	line-height: 20px;
	vertical-align: middle;
	height: 45px;
	margin: 50px 100px 100px 100px;
	color: #8a8a8a;
}

ol#squadLog > li > h1 {
	display: block;
	width: 310px;
	float: left;
	font-size: 16px;
	font-weight: bold;
	font-style: normal;
}

ol#squadLog > li > ol {
	display: block;
	width: 360px;
	float: left;
}

ol#squadLog > li > ol > li {
	display: block;
	width: 180px;
	float: left;
	text-align: center;
	font-style: normal;
}

li > h1,
li > em,
li > ol > li {
	color: black;
	font-weight: 200;
	font-size: 16px;
	font-style: italic;
}

li#squadLogHeader > h1,
li#squadLogHeader > em,
li#squadLogHeader > ol > li {
	color: white;
	font-weight: 400;
	font-size: 16px;
	font-style: italic;
}


	

/* CREATE NEW SQUAD
------------------------------------------ */

#newSquadForm {
		width: 240px;
		height: 380px;
		padding: 60px;
		background-color: #f2f2f2;
		margin: 90px auto;
		border-radius: 6px;
		text-align: center;
		position: fixed;
		top: 50%;
		left: 50%;
		margin-left: -180px;
		margin-top: -250px;
		z-index: 40;
		box-shadow: 0px 1px 5px black;
		display: none;
}

#newSquadForm h1 {
	font-size: 20px;
	font-weight: 400;
}

#newSquadForm p {
	margin-top: 20px;
}

#newSquadForm p > span {
	display: block;
	font-size: 12px;
	color: #888888;
}

#newSquadForm > input {
	font-size: 20px;
	text-align: center;
}

#newSquadForm p > input {
	margin-right: 10px;
}

#squidSquadName.missing {
	border: 2px solid red;
}

#newSquadForm a {
	display: block;
	padding: 10px;
	width: 160px;
	text-align: center;
	margin: 0 30px;
	border-radius: 6px;
	color: red;
}

#newSquadForm a:hover {
	background-color: red;
	color: white;	
	font-weight: bolder;
}


#createSquad {
	margin-top: 30px;
	height: 50px;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	background-color: #45d14a;
	border-color: #28b32d;
}

#createSquad:hover {
	color: white;
}

#createSquad:active {
	background-color: #88e88c;
	border-color: #56ca5a;
}

#RankSplishes {
}

.SquadRank > .splishes {
	fill: #b2b2b2;
}

.SquadRank:hover > .splishes {
	fill: #cdcdcd;
	cursor: pointer;
}

.splishCaption {
	fill: white;
	cursor: pointer;
}

#SplishS.selected {
	fill:#ffcf00;
}

#SplishA.selected {
	fill: #1de12f;
}

#SplishB.selected {
	fill: #0086ff;
}

#SplishC.selected {
	fill: #ff0008;
}

#debug {
	bottom: 0;
	position: fixed;
}