﻿/* styles for the new header, global navigation menu and submenus (extract of Greenlight.css) */ /* reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details,
figcaption, figure, footer, header, hgroup,
menu, nav, section, summary,
time, mark, audio, video {
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* variables.scss */
/* variables.scss */
/* links.scss */
a,
a:link,
a:visited {
  color: #6a4;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #6b4;
  text-decoration: underline;
}

a.back-button {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: solid 2px #ccc;
  color: #ccc;
  z-index: 1;
}

a.back-button:hover {
  background: #757575;
  border: solid 2px #757575;
  text-decoration: none;
}

a.back-button:hover i {
  color: #fff;
}

/* typography.scss */
h2, h3, p {
  margin-bottom: 1em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

strong {
  font-weight: bold;
}

h3.subhead {
  margin-left: 30px;
}

body {
  background-color: #fff;
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 16px;
  color: #333;
}

#header-wrapper {
  font-size: 75%;
  position: relative;
  width: 100%;
  background-color: #fff;
}

#body-wrapper {
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
  min-width: 960px;
}

/* variables.scss */
/* header.scss */
header {
  position: relative;
  margin-inline-start: 30px;
  margin-inline-end: 30px;
  block-size: 90px;
}

#gl-logo {
  position: absolute;
  inset-block-start: 25px;
  inset-inline-start: 0;
}

#gl-logo img {
  inline-size: 338px;
  block-size: 40px;
}

#co-logo {
  position: absolute;
  inset-block-start: 55px;
  inset-inline-end: 0;
  /*inline-size: 224px;*/
  block-size: 40px;
}

#co-logo img {
  float: inline-end;
}

#login {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: -30px;
  /*font-size: 0.75em;*/
  z-index: 1;
}

#login > span {
  display: inline-block;
  padding: 8px 12px;
}

#login-links {
  display: inline-block;
  background: #6a4;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-bottom-left-radius: 5px;
  border-start-end-radius: 5px;
  padding: 0 12px;
}

#login-links a {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
}

#login-links i {
  font-size: 14px;
  margin-inline-end: 0.25em;
}

#login-links i:hover {
  color: #fff;
}

#login-links a:hover i {
  text-decoration: none;
}

/* variables.scss */
/* navigation.scss */
#global {
  position: relative;
  clear: both;
  margin-left: 30px;
  margin-right: 30px;
  min-width: 960px;
  height: 35px;
  font-size: 1.166667em; /* 14px */
}

/*---------- top level menu ----------*/
#global > ul > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: visible;
}

#global > ul > li > a,
#global > ul > li > span.nav-area {
  position: relative;
  height: 30px;
  z-index: 1;
  text-decoration: none;
  color: #757575;
  cursor: default;
}

nav > ul > li.show-submenu > a,
nav > ul > li.show-submenu > span.nav-area,
nav > ul > li:hover > a,
nav > ul > li:hover > span.nav-area {
  color: #6a4 !important;
}

nav > ul > li.active > a,
nav > ul > li.active > span.nav-area {
  color: #333 !important;
  font-weight: bold;
}

nav > ul > li.active span.up-arrow {
  visibility: visible;
  border-bottom: solid 15px #6a4;
}

#menu1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 500;
}

#menu1 > li {
  margin-right: 2em;
  z-index: 100;
}

#menu2 {
  position: absolute;
  top: 0;
  right: 320px;
  z-index: 500;
}

#menu2 > li {
  margin-left: 2em;
  z-index: 100;
}

#menu2 .noFaves {
  color: #fff;
}

span.up-arrow {
  visibility: hidden;
  position: relative;
  bottom: 9px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 0;
  height: 0;
  border: solid 15px transparent;
  z-index: 10000;
}

li.show-submenu span.up-arrow,
li:hover span.up-arrow {
  visibility: visible;
  border-bottom: solid 15px #6a4 !important;
}

/*---------- sub menu ----------*/
#global > ul > li > ul {
  position: absolute;
  top: 33px;
  left: -20px;
  height: auto;
  width: auto;
  min-width: 200px;
  z-index: 9999;
  visibility: hidden;
  background: #6a4;
  text-align: left;
  padding: 16px 0;
  -webkit-border-radius: 20px 0 20px 0;
  -moz-border-radius: 20px 0 20px 0;
  border-radius: 20px 0 20px 0;
  border: solid 2px #fff;
}

#global > ul > li > ul > li {
  padding: 8px 16px;
}

#global > ul > li > ul > li > ul > li {
  padding: 8px 0;
}

#global ul > li > ul > li > a {
  display: block;
  color: #fff;
}

#global > ul > li.show-submenu > ul,
#global > ul > li:hover > ul {
  visibility: visible;
}

/*----- sub sub menu -----*/
#global > ul > li > ul > li > h2 {
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  border-bottom: dotted 1px #fff;
  padding-bottom: 2px;
  margin: 8px 0;
}

nav#global .branchDepth2.menuDepth0 li.subbranch {
  float: left;
  vertical-align: top;
}

nav#global .branchDepth2.menuDepth0 {
  max-width: 720px;
  overflow: hidden; /* to fix float */
}

#global > ul > li > ul > li > h2 {
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  border-bottom: dotted 1px #fff;
  padding-bottom: 2px;
  margin: 8px 0;
}

#menu1 li.subbranch > a:first-child {
  font-weight: bold;
  cursor: default;
  margin-bottom: 5px;
}

/* variables.scss */
/* messages.scss */
#infoBar {
  display: none;
  position: relative;
  background: #08c;
  color: #fff;
  padding: 10px 30px;
  margin: 0;
  font-size: 14px;
  z-index: 101;
}

#infoBar a {
  font-weight: bold;
  color: #fff;
}

#infoBar span {
  position: absolute;
  top: 7px;
  right: 30px;
  font-size: 1.5em;
}

#infoBar span:hover {
  cursor: pointer;
}

#infoBar.success {
  background: #6a4;
}

#infoBar.info {
  background: #08c;
}

#infoBar.error {
  background: #c00;
}

/* variables.scss */
/* footer.scss */
footer {
  padding: 12px 0;
  color: #757575;
}

/*footer p {
    font-size: .75em;
}*/
footer a {
  text-decoration: none;
  color: #757575 !important;
}

footer a:hover {
  text-decoration: underline;
  color: #6a4 !important;
}

/* variables.scss */
/* modal.scss */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1001;
  -ms-zoom: 1;
  zoom: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.lightbox {
  display: none;
  position: fixed;
  background: #fff;
  border: solid 10px #6a4;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 20px;
  top: 50%;
  left: 50%;
  z-index: 1002;
  /*font-size: 0.75em;*/
}

/* variables.scss */
/* buttons.scss */
input[type=button],
input[type=submit],
input[type=reset],
button {
  color: #fff;
  /*-webkit-box-shadow: 0 0 5px $grey-mid;
  -moz-box-shadow: 0 0 5px $grey-mid;
  box-shadow: 0 0 5px $grey-mid;*/
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: solid 1px #ccc;
  padding: 5px 8px;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none; /* suppress Safari styling */
}

input.green-button,
button.green-button {
  background: #6a4;
}

input.green-button:hover,
button.green-button:hover {
  background: #6b4;
}

input.grey-button,
button.grey-button {
  background: #777;
}

input.grey-button:hover,
button.grey-button:hover {
  background: #888;
}

/*input[disabled],
    button[disabled],
    input[disabled].green-button,
    button[disabled].green-button,
    input[disabled].grey-button,
    button[disabled].grey-button {
        background: $grey-light;
    }*/
input:disabled,
select:disabled,
textarea:disabled {
  background-color: #eee;
  pointer-events: none;
}

input[type=button]:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled,
button:disabled {
  background-color: #ccc;
  pointer-events: none;
}

/***** main content (article) *****/
article {
  position: relative;
  clear: both;
  padding: 30px 0px;
  font-size: 0.75em;
  min-height: 450px;
}

#main {
  position: relative;
  margin-right: 320px;
  min-width: 600px;
  background-color: #fff;
  min-height: 400px;
}

/* If you need the main section to be full screen width, and you are not using the expanding/contracting control */
#main.fullwidth {
  margin-right: 0;
}

.clearBoth {
  clear: both;
  height: 0;
}

/* forms */
/* labels with checkboxes in:
    <label class="checkbox"><input type="checkbox">Some text which wraps to next line</label>
    [X] Some text which 
        wraps to next line
*/
label.checkboxlabel {
  display: block;
  padding-left: 15px;
  text-indent: -15px;
}

label.checkboxlabel input {
  width: 13px;
  height: 13px;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  position: relative;
  top: -3px;
}
