@CHARSET "ISO-8859-1";

.navigation {
	grid-area: navigation;
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: 38px 38px 38px 38px 38px 38px;
	grid-template-areas: "button_back" "button_reset" "button_print"
		"button_save" "button_open" "button_help";
	font-size: 100%;
	font-style: italic;
	font-weight: bold;
	padding-top: 5px;
}

.buttonBack {
	grid-area: button_back;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.buttonBackRegiment {
	grid-area: button_help;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.buttonReset {
	grid-area: button_reset;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.buttonPrint {
	grid-area: button_print;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.buttonSave {
	grid-area: button_save;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.buttonOpen {
	grid-area: button_open;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.buttonHelp {
	grid-area: button_help;
	justify-self: right;
	text-align: center;
	margin-right: 20px;
}

.navValidator {
	position: relative;
}

.img.validator {
	position: absolute;
	top: 6px;
	left: 0px;
}

.navButton {
	width: 80px;
	height: 15px;
	border: 2px solid #576680;
	border-radius: 6px;
	padding: 8px;
	font-size: 130%;
}

.navButton:hover {
	background: #576680;
	border-radius: 6px;
	color: #FFFFFF;
}