/***
* BOOTSTRAP OVERRIDES
* Note: This file should be included on the calling visualforce
* page after bootstrap's css.
***/
.alert-primary {
	border-color: #116ec0 !important;
	color: #0f61ab !important;
}

.bg-primary {
	background-color: #0f61ab !important;
	
}

.bg-light {
	background-color: !ececec !important;
}

.border-primary {
	border-color: #116ec0 !important;
}

.border-light {
	border-color: #dcddde !important;
}

.btn {
	cursor: pointer;
}

.btn-primary {
	background-color: #0f61ab !important;
	border-color: #116ec0 !important;
	cursor: pointer;
}

.btn-primary.hover, .btn-primary:hover {
	background-color: #116ec0;
}

.btn-primary.focus, .btn-primary:focus {
	box-shadow: 0 0 0.2rem rgba(17, 110, 192,.5);
}

.btn-primary.active, .btn-primary:active {
	box-shadow: 0 0 0.2rem rgba(17, 110, 192,.5);
}

.card-header {
	background-color: #ececec;
}

.card-footer{
	background-color: #ececec;
}

.text-primary {
	color: #0f61ab !important;
}

/***
* ALL
***/
body {
	font-family: 'Open Sans', sans-serif;
}

/* An inner container of fixed width content, used to center 
content on every page. */
.fixed-content {
	max-width: 1024px;
	margin: 0 auto;
}

/***
* SECTION HEADER
* Used on the visualforce component PW_GLSectionHeader which
* is used to display the page title on most pages on the public 
* website.
***/
.section-header {
	height: 50px;	
	background-image: url("../images/theme-blackblue/section-header-about-grey.jpg");
	background-color: #403f41;
	background-repeat: no-repeat;
	background-position:right center;
	background-size: cover;
	text-transform: uppercase;
	color: white;
}

.section-header h3 {
	font-weight: bolder;
	font-size: 2.0em;
}

/***
* HEADER
***/

/* top row */
.header-nav {
	font-size: 0.8em;
}

.header-nav li {
	list-style-type: none;
	display: inline-block;
	margin-left: 20px;
}

.header-nav a {
	color: black;
	font-weight: bold;
}

.header-nav .icon {
	max-width: 15px;
}

/* logo and login */
#header-logo img {
	margin: 15px 0;
}

.login-nav {
	list-style-type: none;
	display: inline-block;
	margin-left: 20px;
}

.login-nav li {
	display: inline;
}

.login-input {
	max-width: 175px;
	height: 25px;
	font-size: 0.7em;
}

.login-button {
	background-color: #403f41;
	color: white;
	text-transform: uppercase;
	width: 100px;
	height: 25px;
	font-size: 0.6em;
	border: none;
}

.login-button:hover {
	cursor: pointer;
}

.forgot-password {
	color: #403f41;
	text-decoration: none;
	font-size: 0.7em;
	font-weight: bold;
}

/***
* NAVBAR 
***/
.navbar {
	background-color: #1261a9;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.9rem;
	padding: 0;
}

/* bootstrap workaround that forces the dropdown menus 
to expand when hovered over. */
.dropdown:hover>.dropdown-menu {
	display: block;
}

.navbar li {
	padding-right: 50px;
}

.navbar a {
	color: white;
}

.navbar a.dropdown-item {
	color: black;
}


.dropdown-menu {
	margin: 0 !important;
}

/* Overrides the bootstrap css which uses the default 
primary color. */
.dropdown-item:hover {
	background-color: #dcdcdc !important;
}
.dropdown-item:active {
	background-color: #1261a9 !important;
	color: white !important;
}

/***
* MAIN PAGE STYLES
***/

.line-height-tall {
	line-height: 1.9em;
}

/***
* FOOTER
***/

.footer-details {
	background-image: url("../images/theme-blackblue/background-footer.jpg");
	background-size: cover;
	color: white;
	padding: 30px 0;
	font-size: 0.7em;
}

.footer-details table {
	width: 75%;
}

.footer-details table td {
	padding: 5px 0;
}

.footer-details li {
	margin: 10px 0;
	list-style-type: none;
}

.footer-details a, .footer-details h3 {
	color: white;
}

#last-row {
	text-align: left;
	color: white;
	background-color: #403f41;
	padding: 10px 0;
	font-size: 0.6em;
	font-weight: bold;
}