/*

CSX CSS layout
Author: Scott Saunders, RowLogic
Copyright 2019

*/

html {
	overflow-y:scroll;
}

body {
	box-sizing: border-box;
	margin:0px;
	padding:0px;
	background-color: white;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
}

h1 {
	color: #243269;
	font-weight: bold;
	font-size: 38px;
	margin:0px;
	padding:0px;
}
h2 {
	font-weight:bold;
	font-size: 28px;
	margin: 4px 0px;
	padding: 0px;
}
h3 {
	font-weight:bold;
	font-size: 28px;
	color: #243269;
	margin: 4px 0px;
	padding: 0px;
}

form {
	margin: 0px;
	padding: 0px;
}

a,
a:visited,
.fakeLink
{
	color: #60bc50;
	text-decoration: none;
    cursor: pointer;
}
a:hover
{
	text-decoration: underline;
}

button,
input[type=submit],
input[type=button],
a.button
{
    color: #60bc50 !important;
    background-color: white;
    margin: 4px 0;
    display: inline-block;
    border-radius: 6px;
    border: 2px solid #60bc50;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
    text-decoration: none;
	line-height: 140%;
}
button:hover,
input[type=submit]:hover,
input[type=button]:hover,
a.button:hover
{
    color: #fff !important;
    background-color: #60bc50;
    border: 2px solid #60bc50;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
    text-decoration: none
}

input[type=reset]
{
    color: #777 !important;
    background-color: white;
    margin: 4px 0;
    display: inline-block;
    border-radius: 6px;
    border: 2px solid #777;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
    text-decoration: none;
}
input[type=reset]:hover
{
    color: #fff !important;
    background-color: #777;
    border: 2px solid #777;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
    text-decoration: none
}

input[type=text], 
input[type=password] 
{
	box-sizing: border-box;
	padding: 4px;
	font-size: 16px;
	margin: 8px 6px 10px 6px;
}

select
{
	font-size: 16px;
	line-height: 18px;
	padding: 8px 16px 10px 3px;
}



.center
{
	text-align: center;
}

.error {
	font-weight:bold;
	color:#FF0000;
	font-size: 16px;
	clear:both;
}



/*	Structure * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Default - change per breakpoint */
.container {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 6px 10px;
}

#content {
	box-sizing: border-box;
	padding-top: 15px;
}

#contentWithNav {
	box-sizing: border-box;
	padding-top: 15px;
	margin-left: 215px;
}

#contentVeryWide {
	box-sizing: border-box;
	padding: 15px 6px;
	width: 100%;
	overflow-x: scroll;
}

#header {
	box-sizing: border-box;
	height: 100px;
	width: 100%;
	background-color: #FFF;
}
#header img {
	margin: 10px 0px;
}

#footer {
	box-sizing: border-box;
	width: 100%;
	clear: both;
	background-color: #243269;
	color: white;
	font-size: 16px;
	padding-top: 27px;
	padding-bottom: 27px;
	margin: 0px;
	margin-top: 30px;
}

#footer a {
	color: white;
}





/*	Navigation * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


#topnavbarlinks
{
	border-radius: 6px;
	background-color: #243269;
	color: #60bc50;
	padding-left: 14px;
}
.topnavbarlink
{
	display: inline-block;
	font-size: 18px;
	padding: 14px;
	margin: 1px;
}
a.topnavbarlink
{
	color: white;
	text-decoration: none;
}




#leftNav {
	box-sizing: border-box;
	width: 190px;
	float: left;
	display: inline;
	background-color: #243269;
	padding: 12px 10px 15px 10px;
	margin-bottom: 20px;
	font-size: 16px;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	border-radius: 6px;
	color: white;
}

ul.navSubList
{
	box-sizing: border-box;
	list-style: none;
	margin: 0px;
	padding: 12px 10px 0px 10px;
}
#leftNav a {
	box-sizing: border-box;
	color: white;
	display: block;
	width: 100%;
	padding: 5px 0px;
	text-decoration: none;
}

#leftNav a:hover {
	text-decoration: underline;
}
#leftNav strong a {
	color: #60bc50;
	text-decoration: none;
}
#leftNav .subCategory
{
	font-weight: bold;
	background-color: #1f8fd1;
	padding: 8px 6px 6px 6px;
	margin: 10px -8px 2px -8px;
	border-radius: 4px;	
}
#leftNav .subCategory:first-child
{
	margin-top: 0px;	
}
#leftNav .navInfoBox
{
	box-sizing: border-box;
	font-size: .8em;
	margin: 20px 10px;
}

/*
#bar {
	text-align: left;
	margin-bottom: 10px;
}
#bar h2 {
	margin-top: 0px;
	padding-top: 0px;
}
 */






/*	Outside * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.containerLoginOnly
{
	box-sizing: border-box;
	width: 90%;
	max-width: 700px;
	min-width: 280px;
	padding: 0;
	margin: 0px auto;
	position: relative;
}

#header .containerLoginOnly p
{
	position: absolute;
	width: 225px;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
	top: 37px;
	left: 270px;
	margin: 0;
	padding: 0;
	color: #005f9e;
}

a.loginAdImg
{
	box-sizing: border-box;
	float: left;
	width: 34%;
	margin: 10px 0px 0px 0px;
	text-decoration: none;
	border: 0;
}
img.loginAdImg
{
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	border: 0;
}
#loginOnlyArea 
{
	box-sizing: border-box;
	float: right;
	width: 64%;
	height: 410px;
	padding: 26px 30px;
	margin: 10px 0px;
	background-color: #e4e4e4;	
	border: 1px solid #727f8a;
}
#forgotOnlyArea 
{
	box-sizing: border-box;
	width: 100%;
	padding: 20px 30px;
	margin: 10px 0px;
	background-color: #e4e4e4;	
	border: 1px solid #727f8a;
}
.containerLoginOnly input[type=text], 
.containerLoginOnly input[type=password] 
{
	box-sizing: border-box;
	width: 100%;
	padding: 4px;
	font-size: 16px;
	margin: 8px 6px 10px 6px;
}

/* Screens too small for header text */
@media only screen and (max-width: 480px) {
	#header .containerLoginOnly p
	{
		display: none;
	}
	a.loginAdImg
	{
		float: none;
		width: 100%;
		margin-top: 20px;
	}
	#loginOnlyArea 
	{
		float: right;
		width: 100%;
		height: auto;
	}
}






/*	Inside Stuff * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


.ColorBar
{
	background-color: #BBBBBB;
	color: black;
	text-align: center;
	padding: 4px;
	border: solid 1px white;
}
/*
.ColorFromCSSFile
{
	background-color: #BBBBBB;
	color: black;
	padding: 2px;
	font-weight: bold;
	margin: 3px;
	text-align: center;
}

h3.header
{
	padding: 3px 6px;
	background-color: silver;
	font-size: 18px;
}
*/

h3.header, 
.ColorFromCSSFile
{
	font-weight: bold;
	font-size: 18px;
	text-align: left;
	color: #243269;
	background-color: #BBBBBB;
	margin: 4px 4px 6px 0px;
	padding: 6px 8px;
	border-radius: 5px 5px 0px 0px;
}
.SelectionWrapper h3
{
	font-size: 18px;	
}




/*	Responsive * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Large Display: 1200px Default: 980px Tablet: 768px Mobile: 480px

*/
/* Mobile: <= 480px */
@media only screen and (max-width: 480px)
{
	.container {
		width: 90%;
		margin: 0 auto;
		padding: 6px 10px;
	}
}

/* Small: 481px - 768 */
@media only screen and (min-width: 481px) and (max-width: 768px)
{	
	.container {
		width: 100%;
		margin: 0 auto;
		padding: 6px 10px;
	}
}

/* Medium: 769 - 980 */
@media only screen and (min-width: 769px) and (max-width: 980px) 
{	
	.container {
		width: 760px;
		margin: 0 auto;
		padding: 6px 10px;
	}
	.topnavbarlink
	{
		font-size: 15px;
		padding: 8px;
		margin: 1px;
	}
}

/* Large: 981 - 1200 */
@media only screen and (min-width: 980px) and (max-width: 1199px) 
{	
	.container {
		width: 970px;
		margin: 0 auto;
		padding: 6px 10px;
	}
	.topnavbarlink
	{
		font-size: 16px;
		padding: 16px 7px;
		margin: 1px;
	}

}

/* Ginormous: >=1200 */
@media only screen and (min-width: 1200px) and (max-width: 1400px)
{	
	.container {
		width: 1190px;
		margin: 0 auto;
		padding: 6px 10px;
	}
	#contentWithNav {
		margin-left: 225px;
	}
	#leftNav {
		width: 200px;
	}
}

/* More Ginormous: >1400 */
@media only screen and (min-width: 1401px) 
{	
	.container {
		width: 1400px;
		margin: 0 auto;
		padding: 6px 10px;
	}
	#contentWithNav {
		margin-left: 240px;
	}
	#leftNav {
		width: 212px;
	}
}


