@charset "utf-8";
/* =====================
   Global Styles
===================== */

* {
	box-sizing: border-box;
}

body {
	margin:0px;
	padding: 20px;
	text-align: center;

	font-family: Tahoma, Geneva, sans-serif;
	font-size: 11px;
	color: #666666;

	background-color: #8f8f8f;
	background-image: url('img/bg-body.jpg');
	background-repeat: repeat-x;
}

a {
	color: #990000;
	text-decoration: none;
}

a:hover {
	color: #8acb0b;
	text-decoration: underline;
}

h1, h2 {
	color: #000;
	border-bottom: 1px dotted #999;
	padding-bottom: 4px;
}

h1 { font-size: 18px; }
h2 { font-size: 14px; }

ul {
	list-style-type: square;
}

.cleaner {
	clear: both;
}

/* =====================
   Wrapper
===================== */

#wrapper {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	text-align: left;

	background-color: #ffffff;
	background-image: url('img/bg-wrapper.jpg');
	background-repeat: repeat-x;
}

/* =====================
   Header
===================== */

#header {
	width: 100%;
	min-height: 100px;
}

#header h1 {
	margin: 20px 0 0 10px;
	border: none;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: bold;
}

#header h2 {
	margin: 0 0 0 10px;
	border: none;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #999999;
}

#header h1 span.black { color: #000; }
#header h1 span.orange { color: #8a6b0b; }

/* =====================
   Navigation
===================== */

#navi,
#subnavi {
	width: 100%;
}

#navi {
	height: auto;
	background-image: url('img/bg-navi.jpg');
	background-repeat: repeat-x;
}

#navi ul {
	margin: 0;
	padding: 0;
	list-style: none;

	display: flex;
	flex-wrap: wrap;
}

#navi li {
	height: 30px;
	padding: 0 20px;

	background-image: url('img/navi-div.jpg');
	background-repeat: no-r
	
	
	
button {
    display: inline-block; /* Allows padding and margin, acts like a button */
    padding: 10px 20px; /* Space between text and border */
    background-color: #007bff; /* Button background color */
    color: white; /* Text color */
    text-decoration: none; /* Removes the default underline from links */
    border-radius: 5px; /* Rounds the corners */
    text-align: center;
    cursor: pointer; /* Makes the cursor a hand pointer on hover */
    border: 1px solid #0056b3;
}

.button:hover {
    background-color: #0056b3; /* Darker color when hovering */
}
