
/* Copyright (c) 2023 Cendix.  All rights reserved. Cendix, PO Box 1232, La Grande, OR 97850 */


@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

html,body
{
	font-family: Merriweather, Georgia, Times, "Times New Roman", serif; 
	background:#FFFFFF url(./images_background.jpg); 
	background-size: cover; 
	background-repeat: no-repeat;
}

h1,h2,h3,h4,h5,h6 { font-family: Merriweather, Georgia, Times, "Times New Roman", serif; }

p { font-size:16px; }

h1 { font-size:30px; }

h2 { font-size:24px; }

h3 { font-size:20px; }

h4 { font-size:18px; }

h5 { font-size:16px; }

h6 { font-size:14px; }

.cdx-portal-color { color:#03528B; }

.cdx-portal-alt-color { color:#2196F3; }

.cdx-portal-text-on-color { color: #FFFFFF !important; background-color: #03528B !important; }

.cdx-portal-text-on-alt-color { color: #FFFFFF !important; background-color: #2196F3 !important; }

.cdx-portal-text-on-hover-color:hover { color: #FFFFFF !important; background-color: #2196F3 !important; }

.loader 
{
	width: 32px;
	height: 32px;
	vertical-align: middle;
	border: 5px solid #03528B;
	border-bottom-color: #FF0000;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation 
{
	0% 
	{
		transform: rotate(0deg);
	}
	100% 
	{
		transform: rotate(360deg);
	}
} 
