/* All elements on the page unless changed in a class. */
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
}
body {
  position: relative;
  margin: 0;
  min-height: 100%;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: -0.025rem;
  background: #f9f9f9 url("/images/tristar.jpg") no-repeat 101% 75px;
  padding-bottom: 6rem;

}

h1, h2, h3 {
	font-family: 'PermianSlabSerifTypeface', serif;
	letter-spacing: -0.075em;
    color: #3d3e40;	
	font-weight: normal;

}

h1 {
    font-size: 36px;
    line-height: 3rem;
}

p {
  font-weight: normal;
  font-size: .875rem;
  
}
a{
	text-decoration: none;
}

a:hover{
	color: #ee3524 !important;
}

ul {
	position: relative;
	list-style-type: none;
}

li {
	display: inline;
}
#wrapper {
    height: 100%;
}
/* Header */
.tfactsheader {
	background: url(/images/banner.jpg); /*Need to stretch image rather than repeat*/
	background-size: cover;
	width: 100%;
	height: 115px;
	position: relative;
	margin-top: 0px;
	margin-left: 0px;
	z-index: 0;
}

.tranparentheader {
	background: rgba(68, 92, 124, 0.9); /* Black background 50% opacity */
	background-position: 50%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
	height: 115px;
}
.logo{
	max-width: 1100px;
	width: 100%;
	margin: auto;
}
.logo img {
	z-index: 3;
	position: relative;
	margin-top: 5px;
	text-align:left;
}

/* Body */

.loginwrapper{	
	width: 67%;
	max-width: 1100px;
	height: 100%;
	max-height: 500px;
	margin: 50px auto;
	border-radius: 4px;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	position: relative;
	background: #ffffff;
	z-index: 5;
	display: flex;

}

.leftcolumn{
	float: left;
	margin: 0;
}
.leftcolumn img{
    width: 100%;
    max-width: 500px;
    height: 100%;
}
@media screen and (max-width:1000px) {  
  .leftcolumn img {
    display: none;
  }
}




.rightcolumn {
	padding: 15px;
	margin: auto;
	text-align: center;
	float: left;
	overflow: auto;
}

.rightcolumn a{
	text-decoration: none;
}

.rightcolumn a:hover{
	color: #ee3524 !important;
}

.rightcolumn img{
	width: 25px;
	height: 25px;
	position: relative;
	top: 14px;
	left: -3px;
}

@media screen and (max-width:550px) {  
  .rightcolumn img {
    display: none;
  }
}


.rightcolumn h1 {
	border-bottom: 4px dotted red;

}

input {
	width: 90%;
	padding: 10px 10px;
    margin: 8px 0;
    
}

input[type=text] {
	border: none;
    border-bottom: 2px solid #d1d3d4;
    text-align:center;
}

input[type=password] {
	border: none;
    border-bottom: 2px solid #d1d3d4;
    text-align:center;
}
.button{
	 background-color: #1b365d;
padding: 8px;
margin: 12px;
font-size: 18px;
font-family: Open Sans,sans-serif;
font-weight: bold;
border: 2px groove #6699CC;
width: 155px;
height: 50px;
color: #f9f9f9;
vertical-align: middle;
border-radius: 12px;
}

.rightcolumn button:hover{
	background: #ee3524;
	color: white;
}

.rightcolumn a {
	color: #979797;
}
/* Footer */
.footerwrapper {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}

.foot-top {
	box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
	height: 50px;
	width: 100%;
	position: relative;
	bottom: -16px;
}
.foot-bottom {
	background-color: #1b365d;
	height:50px;
	width:100%;
	position: relative;
	bottom: 0px;
}
.linkwrapper {
	max-width: 1100px;
	width: 100%;
	margin: auto;
}

.linkwrapper p{
	letter-spacing: -0.05rem;
	text-align: right;
	line-height: 0px;
	padding-right: 10px;
	bottom: 15px;
	position: relative;
	color: white !important;
}
.linkwrapper ul li a{
	text-decoration: none;
	color: white !important;
	font-size: .825rem;
	letter-spacing: -0.05rem;
	position: relative;
	bottom: -15px;
}

.linkwrapper ul li a:hover{
	color: #ee3524 !important;
}

.starball img{
	max-width: 50px;
	max-height: 50px;
    height: auto;
	position: absolute;
	left: 50%;
	bottom: 20%;
	z-index: 1600;
}
@media screen and (max-width:850px) {  
  .starball img {
    display: none;
  }
}

 div.errorMsgDiv {
	/* This div is used when presenting validation errors to users.  
	   Font is controlled in this div for consistency across application. */
	background-color: #FFFFFF;
	padding: 0.2em;
	margin: 5px 0px;
	border: 1px solid #CC0000;
	border-radius: 3px;
	color: #CC0000;
	font-size: 1em;
	font-weight: 600;
	overflow:hidden;
}