/*************************User defined variables*/

.site-blue
{
	color: #23345C;
}

.site-blue-back
{
	background-color: #23345C;
}

.site-main
{
	color: #226666;
}

.site-main-back
{
	background-color: #226666;
}

.site-red
{
	color: #8B281F;
}

.site-red-back
{
	background-color: #8B281F;
}

.site-gray
{
	color: #67777E;
}

.site-gray-back
{
	background-color: #67777E;
}

.site-white
{
	color: white;
}

.site-white-back
{
	background-color: white;
}

/*************************Styles for Page Elements*/

*
{
	background-color: inherit;
}

.small-screen
{
	display: none;
}

body
{
	background-color: white;
	color: black;
	font-family: 'Open Sans', sans-serif;;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

/*************************User defined global classes*/

.center
{
	width: 90%;
	margin: auto;
}

.clear
{
	clear: both;
}

.error
{
	color: #ffff4c;
}

.errorback
{
	background-color: #f49999;
}

.fill
{
	width: 100%;
}

.half-fill
{
	width: 50%;
}

.hidden
{
	display: none!important;
}

.left
{
	float: left;
}

.middle
{
	text-align: center!important;
}

.no-bottom
{
	margin-bottom: 0px!important;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.no-top
{
	margin-top: 0px;
}

.paypal
{
	display: flex;
	justify-content: center;
}

.pointer
{
	cursor: pointer;
}

.right
{
	float: right;
}

.wide
{
	width: 100%!important;
}

/*************************Styles for img div*/

.img-div img
{
	left: 0;
	margin: 50px auto;
	max-height: 90%;
	max-width: 85%;
	position: fixed;
	right: 0;
	z-index: 80;
}

.close-img
{
	color: white;
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 80;
}


/*************************Styles for built in elements*/

/*Site Title*/
h1
{
	color: #226666;
	font: bold 40px Verdana,sans-serif;
	line-height: 54px;
	margin: 0;
	padding-top: 10px;
}

/*Page Title*/
h2
{
	font-size: 33px;
	margin: 0;
}

/*Section Title*/
h3
{
	font-size: 25px;
	margin: 5px 0;
}

/*Sub-section title*/
h4
{
	
	font-size: 18px;
	margin: 0;
	margin-top: 5px;
	padding-top: 0px!important;
}

h2,h3,h4
{
	clear: both;
	font-weight: 800;
	padding-top: 6px;
}

a
{
	color: inherit;
	text-decoration: underline;
	word-wrap: break-word;
}

p
{
	margin-bottom: 1rem;
	margin-top: .25rem;
}

pre
{
	font: inherit;
	white-space: pre-wrap;
}

ul
{
    list-style-type: square;
    padding: 0px 10%;
}

li
{
    padding: 8px 0;
	text-align: left;
}

img
{
	max-height: 100%;
}

/*************************Styles for defined screen sizes*/

@media(max-width:1080px)
{
	
	.large-screen
	{
		display: none!important;
	}
	
	.small-screen
	{
		display: block;
	}
    
    textarea
    {
        width: 90%!important;
    }
}