/*
 * This file is part of GumTree.
 *
 * GumTree is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * GumTree is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with GumTree.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Copyright 2011-2015 Jean-Rémy Falleri <jr.falleri@gmail.com>
 * Copyright 2011-2015 Floréal Morandat <florealm@gmail.com>
 */

.add {
	border: 1px solid black;
	background-color: greenyellow;
}

.del {
	border: 1px solid black;
	background-color: tomato;
}

.mv {
	border: 1px solid black;
	background-color: lightblue;
}

.upd {
	border: 1px solid black;
	background-color: gold;
	font-weight: bold;
}

.cupd {
	font-weight: normal;
	color: grey;
}

.selected {
	background-color: silver;	
}

.marker {
	margin: 0;
	padding: 0;
}

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
} 

.scrollable {
	overflow: scroll;
}

.no-overflow {
	overflow: hidden;
}

body, html {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

div {
	margin: 0px;
	padding: 0px;
}

.max-height {
	height: 100%;
}

.pre {
	margin: 0px;
	padding: 0px;
	font-size: 10pt;
	color: black;
	font-family: monospace;
}
