:root {
	--main-bg: #1c1c20;
	--main-fg: #cbcfcf;
	--main-highlight: #dec1aa;
	--main-highlight2: #e46904;
	--main-font: "Work Sans", "Helvetica", "Arial", "sans-serif";
	--main-font-size: 16px;
	--main-font-weight: 500;
	--main-font-highlight: #ffffff;
	--element-bg: #863a7f;
	--element-fg: #ffffff;
	--element-hover: #2AB887;
	--element-font-size: 120%;
	--field-bg: #e4f0f3;
	--field-fg: #000000;
	--field-border: none; 
	--field-width: 370px;
	--field-height: 20px;
	--field-font-size: 16px;
}

@media only screen and (min-width : 900px) {
	:root {
		--field-width: 640px;
	}
}

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

body {
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% 200px;
	background-image: url(img/page-header.jpg);
	background-color: var(--main-bg);
}

html, body, div {
	color: var(--main-fg);
	font-family: var(--main-font);
	font-weight: var(--main-font-weight);
	font-size: var(--main-font-size);
}

a, a:visited {
	text-decoration:  none;
	color: var(--main-highlight);
}
a:hover {
	color: var(--main-highlight2);
}

b {
	color: var(--main-font-highlight);
	font-weight: 600;
	letter-spacing: 1px;
}

button {
	border: none;
	background: var(--element-bg);
	color: var(--element-fg);
	font-size: var(--element-font-size);
	border-radius: 25px;
	padding: 15px 25px;
}
button:hover {
	background-color: var(--element-hover);
}

.icon_button {
	background-color: transparent;
	padding: 0 5px;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	border: 2px solid transparent;
}
.icon_button:hover {
	background-color: transparent;
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type=tel], input[type=email] {
	width: calc(var(--field-width) - 20px);
	height: var(--field-height);
	font-size: var(--element-font-size);
	background: var(--field-bg);
	color: var(--field-fg);
	border: var(--field-border);
	padding: 10px;
	border-radius: 5px;
}

input:focus, textarea:focus {
	outline: none;
	box-shadow: none;
}
input::placeholder, textarea::placeholder {
	color: rgba(134, 58, 127, 0.3);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

select {
	background: var(--field-bg);
	color: var(--field-fg);
	border: var(--field-border);
}

textarea {
	width: var(--field-width);
	height: calc(var(--field-height) * 10);
	font-size: var(--field-font-size);
	background: var(--field-bg);
	color: var(--field-fg);
	border: var(--field-border);
}

h1 {
	font-weight: bold;
	font-size: 150%;
	letter-spacing: 2px;
	color: var(--main-font-highlight);
}

.form_area {
	border-radius: 10px;
	width: 100%;
}

.form_field_area {
	width: var(--field-width);
	margin-bottom: 20px;	
}

.form_field_label {
	font-size: 80%;
	margin-bottom: 3px;
	margin-left: 3px;
}

.form_field_input {
	width: var(--field-width);
}

.report, .report_end_cap {
	width: 100%;
}
.report {
	display: table;
	margin-bottom: 0;
}
.report_end_cap {
	margin-top: 0;
	height: 30px;
	background-color: #90949f;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.report_header_row, .report_row {
	display: table-row;
}

.report_header_col, .report_col {
	display: table-cell;
	padding: 10px;
	font-size: 80%;
}

.report_header_row {
	background-color: #90949f;
}

.report_row:nth-child(odd) {
	background-color: #6a8096;
}
.report_row:nth-child(even) {
	background-color: #5e6a76;
}

.report_header_col {
	color: var(--element-bg);
}

.report_header_col:first-child {
	border-top-left-radius: 10px;
}

.report_header_col:last-child {
	border-top-right-radius: 10px;
}

.report_rows {
	display: table-row-group;
}

@media only screen and (min-width : 900px) {
	.report_header_col, .report_col {
		font-size: 100%;
	}
}

.p_link {
	cursor: pointer;
	color: #41a1ff;
}
.p_link:hover {
	color: #ff0000;
}

.readable {
	font-size: 1.1rem !important;
	font-family: 'Noto Serif', serif;
	margin-top: 60px;
	margin-left: 20px;
	margin-bottom: 150px;
	width: calc(100% - 50px);
}

.readable p {
	font-weight: 400;
	font-style: normal;
	line-height: 1.6842;
}

.readable h1 {
	font-weight: 700;
	font-size: 2rem;
	margin-top: 50px;
	margin-bottom: 50px;
}

.readable h2 {
	font-weight: 700;
	font-size: 1.5rem;
	margin-top: 60px;
}

.readable h3 {
	margin-top: 40px;
	font-weight: 700;
	font-size: 1.3rem;
}
.readable h4 {
	margin-top: 20px;
	margin-bottom: -10px;
	font-weight: 700;
	font-size: 1.1rem;
}
.readable h5 {
	margin-top: 20px;
	margin-bottom: -10px;
	font-weight: 700;
	font-size: .9rem;
}

.readable li {
	margin-bottom: 10px;
}

.gal_container {
	margin: 0 auto;
	width: 96%;
}

.gal_entry {
	display: none;
	padding: 10px;
	height: 400px;
}
.gal_entry:first-child {
	display: block;
}

.gal_dot_container {
	text-align: center;
	width: 100%;
}

.gal_dot {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-color: #333333;
	border-radius: 25px;
	margin: 15px;
}

.gal_dot_on {
	background-color: #555555;
}

.gal_dot:hover {
	background-color: #999999;
}

.panel {
	border-radius: 10px;
	width: 98%;
	margin: 0 auto 10px auto;
	background-color: #5d6278;
}

.panel_title_area {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	width: 100%;
	margin-bottom: 10px;
	background-color: #606060;
	color: #ffffff;
	padding: 15px;
	box-sizing: border-box;
	cursor: pointer;
}
.panel_title_area:hover {
	background-color: #999999;
}
.panel_title_area::before {
	content: '\25BC\00a0\00a0\00a0';
}

.panel_title_area_closed {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.panel_title_area_closed::before {
	content: '\25Ba\00a0\00a0\00a0';
}

.panel_body_area {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	width: 100%;
	padding: 0 5px 20px 5px;
	box-sizing: border-box;
}


@media only screen and (min-width : 900px) {
	.panel_body_area {
		padding: 5px 15px 20px 15px;
	}
}

.panel_note {
	font-size: 80%;
	color: #9999ff;
}

