/* points (pt) are used for all fonts according to Mike Liou despite the SEDL */

/* consistency */
* {
  box-sizing: border-box;
}

html, body {
  background: #FFFFFF;
  font: normal 12px/18px Helvetica; /* SEDL */
  color: #444444; /* SEDL */
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: row;
  margin: 0;
}

h1 {
  font: normal 24px "CA Sans", Helvetica; /* SEDL specifies 18pt line height which cannot be correct */
  color: #21076A; /* SEDL */
  background-color: #FFFFFF;
  padding: 30px 0 20px 0;
}
h2 {
  font: normal 18px "CA Sans", Helvetica; /* SEDL */
  color: #21076A; /* SEDL */
  background-color: #FFFFFF;
  padding: 30px 0 20px 0;
}

a, a:hover, a:focus, a:active {
  color: #0064AF; /* SEDL */
  text-decoration: none; /* SEDL */
}
.error {
  color: #CD003C; /* SEDL */
  font: bold 12px/18px Helvetica;  /* SEDL */
  border: 1px solid #CD003C;
  padding: 9px 10px 10px 10px;
  margin: 8px 0 10px 0;
}
.error a, .error a:hover, .error a:focus, .error a:active {
  color: #0064AF; /* SEDL */
  text-decoration: none; /* SEDL */
}


/* nav common */
.nav>li>a.active, .nav>li>a:hover, .nav>li>a:focus {
  color: #FFFFFF; /* SEDL */
  background-color: #21076A; /* SEDL */
}
/* /nav common */

.grow {
  flex: 1;
}

#sidebar-nav {
  display: flex;
  flex-direction: column;
  width: 84px; /* SEDL */
  padding: 16px 0; /* SEDL */
  
  text-align: center; /* SEDL */
  background: #0678bf; /* legacy */
  background: -moz-linear-gradient(top,  #0678bf 0%, #232477 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0678bf), color-stop(100%,#232477)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #0678bf 0%,#232477 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #0678bf 0%,#232477 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #0678bf 0%,#232477 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #0678bf 0%,#232477 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0678bf', endColorstr='#232477',GradientType=0 ); /* IE6-9 */
}
#sidebar-nav .section {
  display: flex;
  flex-direction: column; /* SEDL */
  align-items: center; /* SEDL */
  height: 72px; /* SEDL */
  padding: 8px 0; /* SEDL */
}
#sidebar-nav .section.active,
#sidebar-nav .section:hover,
#sidebar-nav .section:focus {
  background-color: #21076A; /* SEDL */
}
#sidebar-nav label {
  font: bold 12pt "CA Sans", Helvetica; /* SEDL */
  color: #FFFFFF; /* SEDL */
  text-transform: uppercase; /* SEDL */
  margin: 8px 0; /* SEDL */
}
#sidebar-nav .icon {
  height: 28px;
  width: 28px;
}

#main-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh; /* required for IE */
}

#masthead {
  display: flex;
  align-items: center; /* SEDL */
  padding: 10px 0; /* SEDL vertically center .user with justify top and top padding */
  height: 70px; /* SEDL */
  /* border cannot be here due to strange width, must be top border on .page-header */
  border-radius: 0;
  margin: 0 15px 0 30px; /* SEDL */
}
#masthead .tenant .logo {
  height: 50px;
  min-width: 50px;
  max-width: 200px;
}
#masthead .tenant,
#masthead .tenant:hover{
  font: normal 18pt Helvetica;
  color: #444444;
  background-color: #FFFFFF;
  text-decoration: none;
  padding: 0;
}

#masthead .icon {
  height: 16px; /* SEDL */
  width: 16px; /* SEDL */
  margin: 0 5px; /* SEDL */
}
#masthead .help,
#masthead .help:hover,
#masthead .help:focus {
  display: flex;
  align-items: center; /* SEDL */
  color: #0064AF; /* SEDL */
  font: bold 10pt Helvetica; /* SEDL */
  text-transform: uppercase;
  padding: 0 15px;  /* SEDL left and right only */
}

#masthead .vertical-divider {
  display: inline-block;
  height: 40px;
  margin: 5px 15px; /* SEDL left and right only */
  border-right: 1px solid #CCCCCC;
}

#masthead .dropdown {
  padding: 4px 15px 20px 15px; /* allow for border during dropdown */  /* SEDL left and right only*/
  border: 1px solid transparent; /* prevent movement during open */
  align-self: flex-start; /* SEDL vertically center .user with justify top and top padding */
}
#masthead .dropdown a.user {
  min-width: 180px; /* SEDL specifies 160px but this is too narrow for bold text on rollover */
}
#masthead .dropdown a.user .name {
  max-width: 85px; /* SEDL */
  overflow-x: hidden; /* SEDL */
  text-overflow: ellipsis; /* SEDL */
  white-space: nowrap; /* SEDL */
  margin-right: 3px;
}

#masthead .dropdown a {
  display: flex;
  align-items: center; /* SEDL */
  font: bold 12pt Helvetica; /* SEDL */
  color: #0064AF; /* SEDL */
}
#masthead .dropdown a:hover,
#masthead .dropdown a:focus {
  color: #21076A;
}

/* left pointing caret */
#masthead .dropdown .caret,
#masthead .dropdown .caret:hover,
#masthead .dropdown .caret:focus {
  border-right: 6px solid #0064AF; /* SEDL */
  border-top: 6px solid transparent; /* SEDL */
  border-bottom: 6px solid transparent; /* SEDL */
  border-left: 6px solid transparent; /* SEDL */
  margin: 0;
}

#masthead .dropdown.open a.user {
  color: #444444; /* SEDL */
}

/* down pointing caret */
#masthead .dropdown.open .caret {
  border-top: 6px solid #444444; /* SEDL */
  border-right: 6px solid transparent; /* SEDL */
  border-left: 6px solid transparent; /* SEDL */
  border-bottom: 0; /* SEDL */
  margin: 0;
}

#masthead .dropdown.open {
  border: 1px solid #CCCCCC;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  background-color: #FFFFFF; /* background overlaps */
  z-index: 1; /* background overlaps */
}

#masthead .dropdown-menu {
  width: 100%;
  border-top: 1px solid #CCCCCC; /* SEDL */
  border-radius: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  margin: 15px 0 0 0; /* SEDL */
  padding: 10px 0 0 0; /* SEDL */
  position: relative; /* include in box of parent */
}
#masthead .dropdown-menu a {
  font: normal 12pt Helvetica; /* SEDL */
  color: #0064AF; /* SEDL */
  height: 24px; /* SEDL */
  padding: 0 10px; /* SEDL */
}
#masthead .dropdown-menu a:hover,
#masthead .dropdown-menu a:focus {
  font-weight: bold; /* SEDL */
  color: #FFFFFF; /* SEDL */
  background-color: #21076A; /* SEDL */
}

#masthead .dropdown-menu .nav-divider {
  border-bottom: 1px solid #CCCCCC; /* SEDL */
  margin: 20px 0; /* SEDL */
}

.user-picture {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px #CCCCCC solid;
  margin-right: 10px; /* SEDL */
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-header {
  display: flex;
  align-items: center;
  height: 100px;
  border-top: 1px solid #CCCCCC; /* SEDL - color not specified */
  border-bottom: 1px solid #CCCCCC;
  padding: 0;
  margin: 0 30px;
}
.page-header .icon {
  height: 50px; /* SEDL */
  width: 50px; /* SEDL */
  border-radius: 50%; /* SEDL */
  background-color: #21076A; /* SEDL */
  background-size: 28px 28px;
}
.page-header label {
  font: normal 24pt "CA Sans", Helvetica;
  color: #21076A;
  padding-left: 15px;
  margin: 0;
}
.page-header .status-icon {
  height: 30px; /* SEDL if this is an "icon button" */
  width: 30px; /* SEDL if this is an "icon button" */
}

.page-header-sub {
  display: flex;
  align-items: center;
  background-color: #F2F2F2;
  height: 60px;
  margin: 0 30px;
}
.page-header-sub .logo {
  height: 40px; /* SEDL */
  width: 40px; /* SEDL */
  margin: 0 15px;
}
.page-header-sub label {
  margin: 0;
}

.page-content {
  display: flex;
  flex: 1;
  padding: 30px 0;
  margin: 0 30px;
}

.left-rail-taskflow {
  display: flex;
  flex-direction: column;
  width: 220px;
  padding: 0 30px 0 0;
}
.left-rail-taskflow a {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 10px;
  border-bottom: 1px solid #CCCCCC;
  font: normal 12pt "CA Sans", Helvetica;
  text-decoration: none;
}
.left-rail-taskflow a.active, .left-rail-taskflow a:hover, .left-rail-taskflow a:focus {
  color: #FFFFFF;
  background-color: #21076A;
}

.left-rail-categories {
  display: flex;
  flex-direction: column;
  width: 220px;
  padding: 0 30px 0 0;
}
.left-rail-categories a {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 10px;
  border-bottom: 1px solid #CCCCCC;
  font: normal 12pt "CA Sans", Helvetica;
  text-decoration: none;
}
.left-rail-categories a.active, .left-rail-categories a:hover, .left-rail-categories a:focus {
  color: #FFFFFF;
  background-color: #21076A;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.grid-landscape {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.grid-landscape .assets {
  display: flex;
  flex: 1;
  justify-content: center;
  flex-flow: row wrap;
  align-content: flex-start;
}
.grid-landscape .asset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 1px #CCCCCC;
  margin: 3px;
  padding: 10px;
  height: 70px;
  width: 216px;
  border: 1px solid #CCCCCC;
}
.grid-landscape .asset:hover,
.grid-landscape .asset:focus {
  border: 1px solid #21076A;
}
.grid-landscape .asset img {
  height: 40px;
  width: 40px;
}
.grid-landscape .asset h4 {
  font: bold 12pt Helvetica;
  margin: 0;
}
.grid-landscape .asset p {
  font: normal 8pt Helvetica;
  color: #444444;
  margin: 0;
}
.grid-landscape .asset .status {
  align-self: flex-end;
  height: 14px;
  width: 14px;
  margin: 0;
}
.grid-landscape .action-bar {
  display: flex;
  padding: 20px 0 0 0;
}

.assets-edit {
}
.assets-edit a, .assets-edit a:hover, .assets-edit a:focus, .assets-edit a:active {
  font: bold 13pt Helvetica;
  color: #0064AF;
  text-decoration: none;
}
.assets-edit .action-bar {
  display: flex;
  padding: 20px 0 0 0;
}
.assets-edit .asset {
  margin: 4px 0 0 0;
}
.assets-edit .asset .header {
  display: flex;
  flex: 1;
  align-items: center;
  font: bold 13pt Helvetica;
  color: #0064AF;
  height: 80px;
  padding: 0 20px 0 10px;
  background-color: #ECF5F7;
}
.assets-edit .asset .detail {
  background-color: #ECF5F7;
  margin-top: 4px;
  padding: 30px 20px;
}
.assets-edit .asset .remove {
  margin: 10px;
}
.assets-edit .asset img {
  height: 40px;
  width: 40px;
  margin: 10px;
}
.assets-edit .asset .description {
  font: bold 12pt Helvetica;
  min-width: 120px;
  white-space: nowrap;
  margin: 0 10px 0 0;
}
.assets-edit .asset .status {
  display: flex;
  align-items: center;
  font: bold 12pt Helvetica;
  min-width: 120px;
}
.assets-edit .asset .status .icon {
  height: 14px;
  width: 14px;
  margin: 0 10px 0 0;
}
.assets-edit .asset .expando {
  height: 14px;
  width: 14px; /* SEDL */
  margin: 20px;
}
/* override bootstrap for assets-edit */
.assets-edit .panel-group {
  margin: 0;
  padding: 0;
}
.assets-edit .panel {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.assets-edit .panel-heading {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
.assets-edit .panel-body {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
/* /override bootstrap for assets-edit */

.sectioned-accordion h3 {
  display: inline-block;
  padding: 0;
}
.sectioned-accordion .accordion-toggle {
  display: flex;
  align-items: center;
}
/* override bootstrap for sectioned-accordion */
.sectioned-accordion .panel-group {
  margin: 0;
  padding: 0;
}
.sectioned-accordion .panel {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.sectioned-accordion .panel-heading {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
.sectioned-accordion .panel-body {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
/* /override bootstrap for sectioned-accordion */

.pagination {
  padding: 0;
  margin: 0 10px;
}

footer {
  font: normal 11pt Helvetica; /* SEDL */
  color: #595959; /* SEDL */
  border-top: 1px solid #CCCCCC;
  padding: 15px 30px; /* SEDL */
  height: 100px; /* SEDL */
  background-color: #F2F2F2;
}
footer .navbar-nav {
  padding-top: 15px; /* SEDL */
}
footer .navbar-nav>li>a {
  font: normal 11pt Helvetica; /* SEDL */
  padding: 0;
  margin: 0;
}
footer .navbar-nav>li>a:hover, .footer .navbar-nav>li>a:focus, .footer .navbar-nav>li>a:active {
  color: #21076A;
  background-color: transparent;
}
footer .pb {
  color: #59686E;
  font: italic 11pt Helvetica;
}
footer .pb .icon {
  height: 20px;
  min-width: 90px;
  margin-left: 5px;
  vertical-align: middle; /* SEDL */
  margin-right: 0;
}

.vertical-divider {
  height: 20px;
  margin: 0 9px;
  border-right: 1px solid #000000;
}

/* form elements */
form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
form label {
  margin: 10px 0; /* SEDL */
  font: normal 15pt Helvetica; /* SEDL */
  color: #444444; /* SEDL */
  display: inline-block;
  max-width: 100%;
}
form .form-body {
  background-color: #ECF5F7; /* SEDL */
  padding: 30px; /* SEDL */
}
form .form-group {
  margin: 10px 0; /* SEDL */
}
form .form-control {
  display: block;
  font: normal 15pt Helvetica; /* SEDL */
  color: #444444; /* SEDL */
  height: 30px; /* SEDL */
  min-width: 120px; /* SEDL */
  /* SEDL this is too narrow to see the data
  max-width: 330px;
  */
  max-width: 500px;
  width: 100%;
  padding: 0 10px; /* SEDL */
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
form .read-value {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}
form .action-bar {
  display: flex;
  justify-content: flex-end; /* SEDL */
  padding: 30px 0; /* SEDL */
}
form .help-block {
  font: normal 12pt Helvetica; /* SEDL */
  color: #444444; /* SEDL */
}
.input-row {
  display: flex;
  align-items: center; /* SEDL */
}
.input-row input {
  flex: 1;
  padding-right: 30px; /* allows for validation icon */
}
.input-row .icon {
  width: 18px; /* SEDL */
  height: 18px; /* SEDL */
  margin-left: -28px; /* SEDL */
  margin-right: 10px; /* SEDL */
}
form .invalid {
  font: bold 12pt Helvetica; /* SEDL */
  color: #CD003C; /* SEDL */
}
/* file upload */
form .drop-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border: 5px dashed #DDD;
  width: 100px;
  height: 100px;
  margin: 10px;
}
/* /form elements */

/* modal */
.modal-dialog {
  width: 500px;
}
.modal-content {
  border-radius: 0;
}
.modal-header {
  height: 60px;
  padding: 0 0 0 20px;
  margin: 0;
  border: 0;
}
.modal-header h3 {
}
.modal-body {

}
.modal-footer {
  padding: 0;
  margin: 0;
  border: 0;
}
.modal-footer .action-bar {
  display: flex;
  justify-content: flex-end;
  padding: 30px 0;
}
/* no animation */
.modal-backdrop.fade {
  transition: none;
}
.modal.fade, .modal.fade .modal-dialog, .modal.in .modal-dialog {
  opacity: 1;
  transition: none;
  transform: none;
}
/* /modal */

@font-face {
  font-family: 'CA Sans';
  src: url('../font/ca_sans_web-regular.eot');
  src: url('../font/ca_sans_web-regular.eot?#iefix') format('eot'),
    url('../font/ca_sans_web-regular.svg') format('svg'),
    url('../font/ca_sans_web-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CA Sans';
  src: url('../font/ca_sans_web-bold.eot');
  src: url('../font/ca_sans_web-bold.eot?#iefix') format('eot'),
    url('../font/ca_sans_web-bold.svg') format('svg'),
    url('../font/ca_sans_web-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/* icons */
.status-icon {
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin: 0 5px;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin: 0 5px;
}
.icon-active {
  background: url('../img/icon/active.svg') no-repeat center center;
}
.icon-application {
  background: url('../img/icon/application.svg') no-repeat center center;
}
.icon-applications {
  background: url('../img/icon/applications.svg') no-repeat center center;
}
.icon-accordion-closed {
  background: url('../img/icon/accordion-closed.svg') no-repeat center center;
}
.icon-accordion-open {
  background: url('../img/icon/accordion-open.svg') no-repeat center center;
}
.icon-arrow-down {
  background: url('../img/icon/arrow-down.svg') no-repeat center center;
}
.icon-arrow-left {
  background: url('img/icon/arrow-left.svg') no-repeat center center;
}
.icon-ca {
  background: url('../img/logo/ca.svg') no-repeat center center;
}
.icon-ca-horizontal {
  background: url('../img/logo/ca_horizontal.svg') no-repeat center center;
}
.icon-delete {
  background: url('../img/icon/delete.svg') no-repeat center center;
}
.icon-failed {
  background: url('../img/icon/failed.svg') no-repeat center center;
}
.icon-google {
  background: url('../img/logo/google.svg') no-repeat center center;
}
.icon-help {
  background: url('../img/icon/help.svg') no-repeat center center;
}
.icon-home {
  background: url('../img/icon/home.svg') no-repeat center center;
}
.icon-inactive {
  background: url('../img/icon/inactive.svg') no-repeat center center;
}
.icon-inprocess {
  background: url('../img/icon/inprocess.svg') no-repeat center center;
}
.icon-invalid {
  background: url('../img/icon/invalid.svg') no-repeat center center;
}
.icon-microsoft {
  background: url('../img/logo/microsoft.svg') no-repeat center center;
}
.icon-paypal {
  background: url('../img/logo/paypal.svg') no-repeat center center;
}
.icon-pending {
  background: url('../img/icon/pending.svg') no-repeat center center;
}
.icon-saved {
  background: url('../img/icon/saved.svg') no-repeat center center;
}
.icon-server {
  background: url('../img/icon/server.svg') no-repeat center center;
}
.icon-servers {
  background: url('../img/icon/servers.svg') no-repeat center center;
}
.icon-user {
  background: url('../img/icon/user.svg') no-repeat center center;
}
.icon-valid {
  background: url('../img/icon/valid.svg') no-repeat center center;
}

/* /icons */

/* links (tertiary text link) */
.link, .navbar-default .navbar-nav>li>a {
  font: bold 13pt "CA Sans", Helvetica;
  color: #0064AF;
  text-transform: uppercase;
  cursor: pointer;
}
.link:hover, .link:focus, .link:active,
  .navbar-default .navbar-nav>li>a:hover,
  .navbar-default .navbar-nav>li>a:focus,
  .navbar-default .navbar-nav>li>a:active {
  color: #21076A;
}
.link-padding {
  padding: 10px 14px 10px 14px;
  display: inline-block; /* maintain padding */
}

/* buttons */
.btn,
.btn:hover,
.btn:focus {
  font: bold 13pt "CA Sans", Helvetica; /* SEDL */
  border-radius: 2px; /* per Tal Herman */
  padding: 0 15px; /* SEDL */
  height: 35px; /* SEDL */
  box-shadow: 1px 2px 5px rgba(0,0,0,.35); /* per Tal Herman */
  color: #0064AF; /* SEDL */
  background-color: #FFFFFF; /* SEDL */
  text-transform: uppercase; /* SEDL */
  cursor: pointer;
  margin: 2px; /* allows shadow to show */
  border: 1px solid #FFFFFF; /* SEDL */
}
/* SEDL does not specify hover or focus color changes
so hover and focus have been added to the btn types directly
.btn:hover,.btn:focus,.btn:active, .btn-ter:hover,.btn-ter:focus,.btn-ter:active {
  background-color: #21076A;
  border: 1px solid #21076A;
  color: #FFFFFF;
}
*/

/* primary button */
.btn-pri,
.btn-pri:hover,
.btn-pri:focus {
  color: #FFFFFF; /* SEDL */
  background-color: #14AA13; /* SEDL */
  border: 1px solid #14AA13; /* SEDL */
}

/* secondary button */
.btn-sec,
.btn-sec:hover,
.btn-sec:focus {
  color: #FFFFFF; /* SEDL */
  background-color: #0064AF; /* SEDL */
  border: 1px solid #0064AF; /* SEDL */
}

/* tertiary button */
.btn-ter {
  height: 30px; /* SEDL */
}

/* text button */
.btn-text,
.btn-text:hover,
.btn-text:focus {
  box-shadow: none; /* SEDL */
}

/* disabled button */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  opacity: 1; /* SEDL */
  background-color: #AAAAAA; /* SEDL */
  border: 1px solid #AAAAAA; /* SEDL */
}

/* tertiary disabled button */
.btn-ter.disabled, .btn-ter[disabled], fieldset[disabled] .btn-ter {
  opacity: 1; /* SEDL */
  color: #AAAAAA; /* SEDL */
  background-color: #FFFFFF; /* SEDL */
  border: 1px solid #FFFFFF; /* SEDL */
}

/* small button */
.btn-sm,
.btn-sm:hover,
.btn-sm:focus {
  font: bold 11pt "CA Sans", Helvetica; /* SEDL */
  height: 20px; /* SEDL */
}

/* icon then text */
.btn .icon {
  margin-right: 10px; /* SEDL */
}
/* /buttons */

/* login form */
@media (min-width: 600px) {
  .login {
    width: 440px; /* SEDL */
    margin: 30px auto;
  }
}
.login {
  box-shadow: 5px 5px 5px rgba(0,0,0,.35); /* per Tal Herman */
  border: 1px solid #CCCCCC; /* per Tal Herman */
}
.login .masthead {
  display: flex;
  align-items: center; /* SEDL */
  height: 70px; /* SEDL */
  font: normal 18pt Helvetica;
  color: #444444;
  padding: 0;
  margin: 0 30px; /* SEDL */
  border-bottom: 1px solid #CCCCCC;
}
.login .masthead .logo {
  max-height: 50px;
  max-width: 200px;
  margin-right: 15px;
}
.login .header {
  display: flex;
  align-items: center; /* SEDL */
  height: 70px; /* SEDL */
  font: normal 24pt "CA Sans",Helvetica;/* SEDL */
  color: #21076A; /* SEDL */
  margin: 0 30px; /* SEDL */
}
.login .content {
  padding: 0 0 40px 0;
  margin: 0 30px; /* SEDL */
}
.login .messaging {
  height: 70px; /* SEDL */
  margin: 0 30px; /* SEDL */
}
.login .footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 60px; /* SEDL */
  background-color: #F2F2F2;
  padding: 0 30px 0 30px;
}
.login .footer .pb-text {
  color: #59686E;
  font: italic 11pt Helvetica;
}
.login .footer .pb-logo {
  max-height: 20px;
  max-width: 200px;
  margin-left: 5px;
  vertical-align: middle; /* SEDL */
}
/* .login form */

/* page action - e.g. "Please Register" */
.page-action {
  /* ca platform http://cawiki.ca.com/display/Platform */
  color: #0066aa;
  font-size: 12pt;
  /* ca platform end */
}
/* page action end */