/* An attempt to systematize our colours

  BASIC COLOURS
  -------------
     SN blue: #1668f7;
     SN gold: #e9ad09;


  DERIVED COLOURS (hue remains constant by saturation and value change)
  ---------------------------------------------------------------------
    BLUES
      very light (white substitute for backgrounds): #e1e9f7;
      light (for text on darker colours): #c1d5f7;
      desaturated (for backgrounds): #a8c5f7;
      slightly desaturated (for backgrounds): #4888f7;
      very dark (black substitute): #061c42;

    GOLDS
      very saturated (for text): #ffbb00;
      very light (for highlights): #fff0c7;

  OTHER HUES
  ----------
    red #f71616; (for very urgent things)
    desaturated red #e07777; (a little less ***RED*** than red)
    orange: #ffcc66;  (for semi-urgent things)
    green: #ccff99;  (for okay or new things)
*/

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;}
body {
    font-family: Roboto;
    font-size: .9em;
    color: #424242;}

banner_header, footer, section, div {
    box-sizing: border-box;}

a {
    outline: 0;
    }
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);}


/*
 *
 * banner_Header
 *
 */
.banner_header {
    display: flex;
    position: relative;
    background-color: white;
    transition: min-height 0.3s;}    
.home_logo_image {
    margin-top: .5em;
    margin-bottom: 0;
    vertical-align: bottom;
    width: 16em;
    z-index: 3;}   
.home_logo_image:hover {
    opacity: 0.7;}
    
.banner_header_search_area {
    position: absolute;
    width: 20em;
    margin-top: 0;
    right: 0;
    top: 0;}
.banner_header_search_area:hover {
    opacity: 0.7;}

.auth_area {
    position: relative;
    display: flex;
    width: 100%;
    background-color: rgba(214, 148, 10, .9);
    height: 1.8em;}

/*
 * Navigation
 */

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_area {
    position: relative;
    display: flex;
    width: 100%;
    background-color: rgba(204, 138, 0, .9);
    height: 2.5em;}
.nav {
    width: 28em;
    height: 100%;
    float: none;
    z-index: 10;}
.nav_list {
    width: 100%;
    margin: 0;
    z-index: 10;}
.nav_item {
    box-sizing: border-box;
    display: inline-block;
    width: 32%;
    text-align: center;
    line-height: 2.5em;
    text-transform: uppercase;
    z-index: 10;}
.nav a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 2.5em;}
.nav_item:hover {
    background-color: rgba(224, 158, 20,1);}
.nav_item:hover a {
    color: rgba(255,255,255,1);}
.nav_item:hover > nav {
    display: block;}

.nav_sub {
    text-align: left;
    display: none;
    position: absolute;
    width: 12em;
    z-index: 12;}
.nav_sub_item {
    height: 2.5em;
    line-height: 2.5em;
    text-transform: none;
    text-align: left;
    background-color: rgba(60,60,60,1);}
.nav_sub_item a {
    padding-left:1em;
    height: 2.5em;
    color: rgb(255,255,255);}
.nav_sub_item:hover {
    background-color: rgba(90,90,90,1);}
.nav_sub_item:hover a {
    color: rgba(255,255,255,1);}
.nav_sub_item:hover > nav {
    display: inline-block;}

.nav_sub2 {
    text-align: left;
    display: none;
    position: absolute;
    width: 12em;
    line-height: 2.25em;
    z-index: 10;}
.nav_sub2_list {
    position: absolute;
    left: 8em;
    top: -2em;
    width: 12em;}
.nav_sub2_item {
    height: 2.5em;
    text-transform: none;
    text-align: left;
    background-color: rgba(40,40,40,1);}
.nav_sub2_item a {
    padding-left:1em;
    height: 2.5em;}
.nav_sub2_item:hover {
    background-color: rgba(70,70,70,1);}


/*
 * User & Usage Navigation 
 */
.user_usage_nav {
    width: 10em;
    height: 100%;
    float: none;
    position: absolute;
    right: 10em;}
.user_usage_nav_list {
    width: 100%;
    margin: 0;}
.user_usage_nav_item {
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 2.5em;
    text-transform: uppercase;}
.user_usage_nav a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 2.5em;}
.user_usage_nav_item:hover {
    background-color: rgba(224, 158, 20,.9);}
.user_usage_nav_item:hover a {
    color: rgba(255,255,255,1);}
.user_usage_nav_item:hover > nav {
    display: block;}

.user_usage_nav_sub {
    text-align: left;
    display: none;
    position: relative;
    width: 12em;
    z-index: 12;}
.user_usage_nav_sub_item {
    height: 2.5em;
    line-height: 2.5em;
    text-transform: none;
    text-align: left;
    background-color: rgba(60,60,60,1);}
.user_usage_nav_sub_item a {
    padding-left:1em;
    height: 2.5em;}
.user_usage_nav_sub_item:hover {
    background-color: rgba(90,90,90,1);}
.user_usage_nav_sub_item:hover a {
    color: rgba(255,255,255,1);}
.user_usage_nav_sub_item:hover > nav {
    display: inline-block;}

.user_usage_nav_sub2 {
    text-align: left;
    display: none;
    position: absolute;
    width: 12em;
    line-height: 2.25em;
    z-index: 10;}
.user_usage_nav_sub2_list {
    position: absolute;
    left: 8em;
    top: -2em;
    width: 12em;}
.user_usage_nav_sub2_item {
    height: 2.5em;
    text-transform: none;
    text-align: left;
    background-color: rgba(40,40,40,1);}
.user_usage_nav_sub2_item a {
    padding-left:1em;
    height: 2.5em;}
.user_usage_nav_sub2_item:hover {
    background-color: rgba(70,70,70,1);}

/*
 * User Navigation
 */
.user_nav {
    width: 10em;
    height: 100%;
    float: none;
    position: absolute;
    right: .5em;}
.user_nav_list {
    width: 100%;
    margin: 0;}
.user_nav_item {
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 2.5em;
    text-transform: uppercase;}
.user_nav a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 2.5em;}
.user_nav_item:hover {
    background-color: rgba(224, 158, 20,.9);}
.user_nav_item:hover > nav {
    display: block;}

.user_nav_sub {
    text-align: left;
    display: none;
    position: absolute;
    width: 10em;
    right: 0;
    z-index: 10;}
.user_nav_sub_item {
    height: 2.5em;
    line-height: 2.5em;
    text-transform: none;
    text-align: left;
    background-color: rgba(60,60,60,1);}
.user_nav_sub a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 2.5em;}
.user_nav_sub_item:hover {
    background-color: rgba(60,60,60,1);}
.user_nav_item:hover a {
    color: rgba(255,255,255,1);}
.user_nav_sub_item:hover > nav {
    display: inline-block;}

.user_nav_sub2 {
    text-align: left;
    display: none;
    position: absolute;
    width: 10em;
    line-height: 2.25em;
    z-index: 10;}
.user_nav_sub2_list {
    position: absolute;
    left: -9.5em;
    top: -2em;
    width: 10em;}
.user_nav_sub2_item {
    height: 2.5em;
    text-transform: none;
    text-align: left;
    background-color: rgba(40,40,40,1);}
.user_nav_sub2_item:hover {
    background-color: rgba(70,70,70,1);}
    
/*
 * Main
 */

/*
 * news
 */
.news {
    display: flex;
    flex-wrap: wrap;
    height: 17em;
    width: 50%;}
.news_nav {
    width: 100%;
    height: 5em;
    margin-top: 0;
    margin-bottom: 0;
    background-color: rgb(64, 126, 201);}
.news_nav_list {
    width: 8em;
    padding: 0;
    margin: 0;}
.news_nav_item {
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    height: 5em;
    text-align: left;
    line-height: 5em;
    background-color: rgb(64, 126, 201);
    font-weight: 500;
    text-transform: uppercase;}
.news_nav a {
    text-decoration: none;
    padding: 1.5em;}
.news_nav_item:hover {
    text-decoration: none;
    color: #212121;
    background-color: rgb(74, 136, 211);}
.news_nav_item:hover > nav {
    display: block;}

.news_nav_sub {
    text-align: left;
    box-shadow: 0 .125em .5em rgba(0,0,0,.6);
    display: none;
    position: absolute;
    width: 10.625em;
    line-height: 2.25em;
    z-index: 3;}
.news_nav_sub_item {
    text-transform: none;
    text-align: left;
    background-color: rgb(60,60,60);}
.news_nav_sub_item:hover {
    text-decoration: underline;
    background-color: rgb(60,60,60);}
.news_list_section {
    height: 12em;
    width: 100%;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    z-index: 10;
    opacity: .85}
.news_item {
    width: 100%;
    font-size: 1em;
    border-bottom: .0625em solid #E0E0E0;
    padding: .5em;
    padding-left: .875em;
    line-height: 1.2em;}
.news_item:last-child {
    border-bottom: none;}
.news_item a {
    text-decoration: none;
    color: rgba(0,0,0,1);
    padding: 1.5em inherit;}
.news_item a:hover,
.news_item a:active {
    text-decoration: underline;}

/*
 * events
 */
.events {
    display: flex;
    flex-wrap: wrap;
    height: 17em;
    width: 50%;}
.events_nav {
    width: 100%;
    height: 5em;
    margin-top: 0;
    margin-bottom: 0;
    background-color: rgb(64, 126, 201);}
.events_nav_list {
    width: 8em;
    padding: 0;
    margin: 0;}
.events_nav_item {
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    height: 5em;
    text-align: left;
    line-height: 5em;
    background-color: rgb(64, 126, 201);
    font-weight: 500;
    text-transform: uppercase;}
.events_nav a {
    text-decoration: none;
    padding: 1.5em;}
.events_nav_item:hover {
    text-decoration: none;
    color: #212121;
    background-color: rgb(74, 136, 211);}
.events_nav_item:hover > nav {
    display: block;}
.events_nav_sub {
    text-align: left;
    box-shadow: 0 .125em .5em rgba(0,0,0,.6);
    display: none;
    position: absolute;
    width: 10.625em;
    line-height: 2.25em;
    z-index: 10;}
.events_nav_sub_item {
    text-transform: none;
    text-align: left;
    background-color: rgb(60,60,60);}
.events_nav_sub_item:hover {
    text-decoration: underline;
    background-color: rgb(60,60,60);}
.events_list_section {
    z-index:4;
    height: 12em;
    width: 100%;
    overflow-y: scroll;}

/*
 * Footer
 */
.footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;}
.foot_bridge {
    position: relative;
    height: 1em;
    width: 100%;
    background-color: rgb(170,170,170);
    z-index: -1;}
.foot_links {
    display: flex;
    flex-wrap: wrap;
    height: 4em;
    width: 100%;
    margin-top: 1em;}

/*
 * Partners
 */
.partners_outer {
    width: 50%;}
.partners {
    height: 4em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.partner_cc_link {
    width: 50%;}
.partner_cc_link:hover {
    opacity: 0.7;}
.cc_logo {
    height: 3.5em;
    width: auto;
    margin-left: auto;
    margin-right: auto;}
.partner_co_link {
    width: 50%;}
.partner_co_link:hover {
    opacity: 0.7;}
.co_logo {
    height: 3.5em;
    width: auto;
    margin-left: auto;
    margin-right: auto;}

/*
 * Follow
 */
.follow_outer {
    width: 50%;}
.follow {
    height: 4em;
    width: 12.5em;
    margin-left: auto;
    margin-right: auto;}
.wiki_link {
    width: 32%;}
.wiki_link:hover {
    opacity: 0.7;}
.wiki_logo {
    max-height: 3em;}
.twitter_link {
    width: 32%;}
.twitter_link:hover {
    opacity: 0.7;}
.twitter_logo {
    height: 3em;}
.youtube_link {
    width: 32%;}
.youtube_link:hover {
    opacity: 0.7;}
.youtube_logo {
    height: 3em;}

/*
 * foot Navigation
 */
.foot_nav_area {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    background-color: rgb(80,80,80)}
.foot_nav_main {
    width: 60%;}
.foot_nav_user {
    width: 40%;}
.foot_nav {
    padding-top: 0;
    padding-bottom: 0;
    width: 20%;}
.foot_nav_list {
    width: 100%;
    margin-top: 2em;
    margin-left: 2em;}
.foot_nav_list_user {
    width: 100%;
    margin-top: 2em;}
.foot_nav_item {
    display: inline-block;
    width: 32%;
    margin-top: 1em;
    margin-bottom: 2em;
    text-align: left;
    text-transform: uppercase;
    line-height: 2em;
    vertical-align: top;
    min-width: 10em;}
.foot_nav_item a {
    color: rgba(204, 138, 0,1);
    text-decoration: none;
    padding: .5em;
    font-weight: 900;}

.foot_nav_item:hover > a {
    color: rgba(204, 138, 0,1);}

.foot_nav_sub_item_link a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    text-transform: none;
    font-size: .7em;
    font-weight: 900;}
.foot_nav_sub_item_link:hover a {
    color: rgba(255, 255,255,1);
    text-decoration: underline;}

.foot_nav_sub_item a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    text-transform: none;
    font-size: .7em;
    font-weight: 900;}
.foot_nav_sub_item:hover a {
    color: rgba(255, 255,255,1);
    text-decoration: none;}

.foot_nav_sub2_item_link a {
    text-decoration: none;
    text-transform: none;
    font-size: .7em;
    font-weight: 100;
    margin-left: 1em;}
.foot_nav_sub2_item_link:hover a {
    color: rgba(255, 255,255,1);
    text-decoration: underline;}


.foot_nav_item_user {
    display: inline-block;
    width: 48%;
    margin-top: 1em;
    margin-bottom: 2em;
    text-align: left;
    text-transform: uppercase;
    line-height: 2em;
    vertical-align: top;
    min-width: 10em;}
.foot_nav_item_user > a {
    color: rgba(204, 138, 0,1);
    text-decoration: none;
    padding: .5em;
    font-weight: 900;}

.foot_nav_item_user:hover > a {
    color: rgba(204, 138, 0,1);}


.a_foot_nav_item:hover {
    text-decoration: none;}    
.a_foot_nav_item_link:hover {
    text-decoration: underline;}    
.foot_nav_sub2_item a {
    text-decoration: none;
    font-size: .7em;
    font-weight: 100;
    padding: 1.5em;}



.copyright {
    width: 100%;}
.foot_copyright {
    width: 100%;
    background-color: rgb(40,40,40);
    color: rgb(230,230,230);
    text-align: center;
    font-size: .75em;
    padding-top: .375em;
    padding-bottom: .375em;
    margin-top: 0;}

hr {
  height: 1px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0px;
  background-color: #1668f7; /* sn blue */
  color: #1668f7; /* sn blue */
}
    
td.frontpage {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: #000000;
}

a.frontpage:link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: #3660A8;
    text-decoration: none;
}

a.frontpage:visited {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: #3660A8;
    text-decoration: none;
}

a.frontpage:hover {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: #3660A8;
    text-decoration: underline;
}

a, form.button-to input {
    padding: 0 0 0 0;
    text-decoration: none;
    font-weight: normal;
    color: #1668f7; /*sn blue*/ 
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}

a:hover {
    /* background-color: #dae5f7; */
/*    background-color: white; */
    color: #ffbb00; /* supersaturated sn gold */
}

table#banner {
  width: 98%;
  border: 0px;
  padding: 0;
  margin: 0;
}

#banner td {
  padding: 0;
  margin: 0;
}

#banner form {
  padding: 0;
  margin: 0;
}

#banner .smallprint {
  padding: 0;
  margin: 0;
}

table#over_quota {
  width: 98%;
  border: 1px solid black;
}

td#pageid {
  font-size: 105%;
  font-weight: bold;
  font-style: italic;
}

td.endpiece {
  text-align: right;
}
/* there goes my nice magnifying glass icon */

#search {
  background-image:url(/my/images/shared/white_search.svg);
  background-position: top .4em right 1em;
  background-size: 2em 2em;
}
 input#search {
  height: 2.8em;
  width: 100%;
  float: right;
  vertical-align: bottom;
  margin-left: 0em;
  margin-right: 0em;
  margin-top: 0;
  background-repeat: no-repeat;
  background-color: rgb(215,215,215);
  border: 0px solid;
  text-align: left;
}


div.auto_complete {
  width:350px;
}
div.auto_complete ul {
  width: 100%;
  background-color:white;
  border:1px solid #888;
  margin:0px;
  padding:0px;
  text-align: left;
}
div.auto_complete ul li {
  list-style-type: none;
  width: 100%;
  margin:0px;
  padding:0px;
}
div.auto_complete ul li.selected {
  background-color: rgb(224, 181, 4);
}
span.result_type {
  font-weight: bold;
}

td.menubar {
    background-color: rgb(224, 181, 4);
    text-align: left;
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 1px;
    padding-bottom: 3px;
    padding-left: 4px;
    font-size: 13px;
}

td.menubar_right {
    background-color: rgb(224, 181, 4);
    text-align: right;
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 1px;
    padding-bottom: 3px;
    padding-right: 4px;
    padding-left: 30px;
    font-size: 13px;
}

a.menubar:link {
	font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    color: #3660A8;
    text-decoration: none;
}

a.menubar:visited {
	font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    color: #3660A8;
    text-decoration: none;
}

a.menubar:hover {
	font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    color: #3660A8;
    text-decoration: underline;
}

ul#menu {
  padding: 0;
}

ul#menu li {
  list-style-type: none;
  text-align: left;
  font-size: 85%;
  width: 190px;
}

ul#menu li a, div.menu {
  color: rgb(56, 97, 163);
  text-decoration: none;
  display: block;
  width: 160px;
  padding: 0 0 0 1em;
}

ul#menu li div.title {
  padding: 0 0 0 0;
  font-size: 110%;
  font-weight: bold;
}

ul#menu li.current div.menu {
  color: #000000;
  background-color: rgb(224, 181, 4);
  font-weight: bold;
}

ul#menu li a:hover {
  background-color: rgb(56, 97, 163);
  color: #ffffff;
}



td.menu {
    vertical-align: top;
    padding: 0; margin: 0;
    text-align: left;
    width: 100px;
    padding-right: 10px;
    height: 100%;
}

#tabmenuwrapper {
    padding: 0;
}

#tabmenu {
    font-size: 85%;
}

#tabmenu
{
  padding: 3px 0;
  margin-left: 0;
  border-bottom: 1px solid #778;
  font: bold 12px Verdana, sans-serif;
}

#tabmenu li
{
  list-style: none;
  margin: 0;
  display: inline;
}

#tabmenu li a
{
  padding: 3px 0.5em;
  margin-left: 3px;
  border: 1px solid #778;
  border-bottom: none;
  background: #DDE;
  text-decoration: none;
}

#tabmenu li a:link { color: #448; }
#tabmenu li a:visited { color: #667; }

#tabmenu li a:hover
{
  color: #000;
  background: #AAE;
  border-color: #227;
}

#tabmenu li a#current
{
  background: white;
  border-bottom: 1px solid white;
}

[role="toolbar"] {
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 6px;
  width: 1050px;
  background-color: #ececea;
}

[role="toolbar"].focus {
  border-color: #005a9c;
  border-width: 3px;
  padding: 5px;
}

[role="toolbar"] * {
    vertical-align: middle;
}

[role="toolbar"] .group {
  padding: 0.25em;
  display: block;
  float: left;
}

[role="toolbar"] .group:not(:first-child) {
  margin-left: 0.75em;
}

[role="toolbar"] input[type="checkbox"].visibility {
  display: none;
}

[role="toolbar"] input[type="checkbox"].visibility + label::before {
  content: "visibility";
  font-family: Material Icons;
  margin-right: 1em;
}

[role="toolbar"] input[type="checkbox"].visibility:checked + label::before {
  content: "visibility_off";
}

[role="toolbar"] input[type="checkbox"].visibility:not(:checked) + label > .checked {
  display: none;
}

[role="toolbar"] input[type="checkbox"].visibility:checked + label > .unchecked {
  display: none;
}


[role="toolbar"] button,
[role="toolbar"] [role="radio"],
[role="toolbar"] label,
[role="toolbar"] .spinbutton,
[role="toolbar"] a,
[role="toolbar"] .input {
  border: 1px solid rgb(255, 255, 255);
  outline: none;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 5px;
  text-align: center;
  background: rgb(255, 255, 255);
  color: #222428;
  font-size: 14px;
  /* line-height: 1.5em; */
  margin-right: 0.25em;
}

[role="toolbar"] button.popup {
  position: relative;
}

[role="toolbar"] button .popup-label {
  display: block;
  width: initial;
  border: 1px solid white;
  padding: 2px 4px;
  border-radius: 5px;
  position: absolute;
  top: -30000em;
  background-color: black;
  color: white;
  font-weight: normal;
}

[role="toolbar"] button:hover .popup-label,
[role="toolbar"] button .popup-label.show {
  text-align: center;
  top: -2.5em;
}

[role="toolbar"] button .popup-label::after,
[role="toolbar"] button .popup-label::before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

[role="toolbar"] button .popup-label::after {
  border-color: rgba(0, 0, 0, 0);
  border-top-color: #000;
  border-width: 10px;
  margin-left: -10px;
}

[role="toolbar"] button .popup-label::before {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 12px;
  margin-left: -12px;
}

[role="toolbar"] button[aria-pressed="true"],
[role="toolbar"] [role="radio"][aria-checked="true"] {
  border-color: #555;
  font-weight: bold;
  background-color: #f4f4f4;
}

[role="toolbar"] button[aria-pressed="true"] label {
  font-weight: normal;
}

[role="toolbar"] button[aria-disabled="true"] {
  color: #889;
  cursor: not-allowed;
}

[role="toolbar"] button[aria-disabled="true"]:focus {
  border-color: #005a9c;
}

[role="toolbar"] button::-moz-focus-inner {
  border: 0;
}

[role="toolbar"] button:focus,
[role="toolbar"] [role="radio"]:focus,
[role="toolbar"] .spinbutton:focus,
[role="toolbar"] .focus,
[role="toolbar"] a:focus {
  border-width: 2px;
  border-color: #005a9c;
  background: rgb(226, 239, 255);
  padding: 5px 11px;
}

[role="toolbar"] button:hover,
[role="toolbar"] [role="radio"]:hover,
[role="toolbar"] .spinbutton:hover,
[role="toolbar"] label.input:hover,
[role="toolbar"] a:hover {
  border-color: #005a9c;
  background: rgb(226, 239, 255);
}

[role="toolbar"] [role="spinbutton"] .value,
[role="toolbar"] [role="spinbutton"] .increase,
[role="toolbar"] [role="spinbutton"] .decrease {
  width: 60px;
  display: inline-block;
  padding: 0;
  margin: 0;
}

[role="toolbar"] button[aria-haspopup] span {
  float: right;
}

[role="toolbar"] button[aria-haspopup] span::after {
  content: url(../images/pulldown-icon.svg);
}

[role="toolbar"] button[aria-haspopup]:focus span::after {
  content: url(../images/pulldown-icon-focus.svg);
}

[role="toolbar"] [role="spinbutton"] .increase,
[role="toolbar"] [role="spinbutton"] .decrease {
  width: 20px;
  border: 1px solid #ececea;
  border-radius: 3px;
  background-color: #ececea;
}

[role="toolbar"] [role="spinbutton"] .increase:hover,
[role="toolbar"] [role="spinbutton"] .decrease:hover,
[role="toolbar"] [role="spinbutton"]:focus .increase,
[role="toolbar"] [role="spinbutton"]:focus .decrease {
  fill: #005a9c;
  border-color: #005a9c;
}

textarea {
  width: 990px;
  padding: 0.25em;
  border: 2px solid black;
  height: 400px;
  font-size: 14pt;
  font-family: sans-serif;
  border-radius: 5px;
}

.urgent {
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    /*height: 4em;*/
    width: 100%;
	text-align: center;
	color: black; /*default palette*/
	/*color: rgb(240,240,240); /*Classy Christmas palette*/
	background-color: #ffcf0e; /*default palette*/
	/*background-color: rgb(153,33,20);/*Classy Christmas palette*/
	padding: 1em;
	font-size: 100%;
	display: inline-block;
}

/* styles for various objects */

/* these are Rails' default styles for error fields */
.fieldWithErrors input, .fieldWithErrors textarea, .fieldWithErrors select, .error {
  background: #ffeecc;
}

.errorExplanation {
  min-height: 64px;
  padding-left: 70px;
  background-image: url(/my/images/shared/error.gif);
  background-repeat: no-repeat;
  border: 2px solid red;
  margin: 5px;
  margin-bottom: 20px;
  width: 700px;
}


/* for autocompletion, where we don't want to display the return value */
.hidden_link, .hidden_id {
	display: none;
}

.error {
	text-align: left;
	color: yellow;
	background-color: red;
	border: 2px solid black;
	font-size: 150%;
}

.incorrect {
  background-color: red;
  color: yellow;
}

.prominent {
	font-weight: bold;
}

.advertising {
	font-weight: bold;
	font-size: 125%;
}

.bad {
	font-weight: bold;
	font-style: italic;
}

.inconspicuous {
	font-style: italic;
}

.conspicuous {
 background-color: #a8c5f7; /* desaturated sn blue */
 color: #1668f7; /* sn blue */
 padding: 5px;
 border-color: #1668f7; /* sn blue */
 border-width: 3px;
 border-style: solid;
 font-size: 115%;
 width: 100%;
 max-width: 900px;
}

.conspicuous b {
  color: rgb(50,50,255);
  color: #061c42; /* very dark sn blue */
  font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}

.conspicuous a {
 color: #1668f7; /* sn blue */
}
.conspicuous a:hover, .conspicuous a:focus, .conspicuous a:active {
  background-color: #e9ad09;
  color: #061c42;
}

.highlight {
	background-color: #ffaaaa;
}

.important {
	font-size: 120%;
	padding: 1em;
	background-color: #f8f8ff;
}

.attention {
  background-color: yellow;
}

.trivial {
}

.techie {
  font-weight: normal;
  font-style: normal;
  font-size: 80%;
  color: red;
}

/* for numeric fields in tables, to right-justify numbers */
.numeric {
  text-align: right;
}

/* used in News sections */
.headline {
  font-size: 110%;
  font-weight: bold;
}

.subheadline {
  font-size: 95%;
  font-style: italic;
}

.dateline {
  font-size: 85%;
  font-weight: bold;
  font-style: italic;
}

#error {
    margin: 1em 0;
    padding: 1em;
    border-width: 1px 0;
}

#error::before {
    content: "error";
    font-family: 'Material Icons Two Tone';
    font-size: 24px;
    vertical-align: middle;
    margin-right: 0.5em;
}

div.notice {
	font-size: 120%;
    margin: 1em 0;
	background-color: #ddffdd;
    padding: 1em;
    border-color: #1668f7;
    border-style: solid;
    border-width: 1px 0;
}

div.notice::before {
    content: "notifications";
    font-family: 'Material Icons Two Tone';
    font-size: 24px;
    vertical-align: middle;
    margin-right: 0.5em;
}

.sysadmin {
    background-color: #ccccff;
    text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.coming {
    background-color: #ffff99;
    text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.online {
	background-color: #ccff99;
	text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.downsched {
	background-color: #ffff99;
	text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.conditions {
	background-color: #ffcc66;
	text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.testing {
	background-color: #ccccff;
	text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.offline {
	background-color: #e07777;
	text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.decom {
	background-color: #888888;
	text-align: center;
    width: 76px;
    margin-right: auto;
    margin-left: auto;
}

.past {
	color: #f71616;
}

/* the "popup" div for the monitoring page */
div#nagios_details {
  position: absolute;
  width: 50%;
  top: 20%;
  left: 25%;
  text-align: right;
  padding: 1em;;
  background-color: #000000;
  color: #ffffff;
}

div#nagios_message {
  width: 100%;
  text-align: center;
}

#close_link {
  font-weight: bold;
  font-size: 125%;
  border: 1px solid #666666;
  padding: 2px;
}

/* don't take newline for button-to */
form.button-to div {
  display: inline;
}

/* something inside another something */
.sub_table table {
  margin-left: 3em;
  margin-right: 1em;
  font-size: 90%;
}

/* used in some AJAX boxes to collapse */
.closer {
	float: left;
	font-style: italic;
	font-size: 80%;
}

table#login {
  margin-top : 1em;
  margin-bottom : 1em;
  padding: 1em;
  font-size: 120%;
}

td.icon, td.check {
	text-align: center;
}

img.icon {
	border: 0px;
}

td.footer {
	text-align: center;
	background-color: rgb(56, 97, 163);
  background-color: #1668f7; /* sn blue */
}

h1 {
  color: #1668f7;
  font-size:160%;
  margin-top: 0px;
  padding-top: 0px;
  font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}	

h2 {
  color: #1668f7;
  font-size:140%;
  max-width: 600px;
  font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}	

h3 {
  color: #1668f7;
  font-size:120%;
  max-width: 600px;
  font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}

h4 {
  color: #1668f7;
  font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}

form {
  counter-reset: formHeader;
}

form h2:before {
  content: counter(formHeader) ". ";
  counter-increment: formHeader;
}

table {
	border: 0px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
	border-collapse: collapse;
  font-size: 12px;
  font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}

table.hpc {
  max-width: 600px;
}

table.hpc td {
  padding: 3px;
}

table.data th a {
  background-color: #1668f7;
  color: white;
}

table.data, table.sortable {
  border-collapse: collapse;
  border-style: solid;
  border-color: rgb(230,230,230);
  border-width: 3px;
  background-color: rgb(250, 250, 255);
}

table.data td, table.data th, table.sortable td, table.sortable th {
  border-color: rgb(230,230,230);
  border-style: solid;
  padding: 1px 2px 1px 1px;
  border-width: 1px;
  font-size: 10px;
}

table.data th span, table.sortable th span {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

table.data th, table.sortable th {
  background-color: #1668f7;  /* sn blue */
  color: #c1d5f7; /* light sn blue */
  font-size: 10px;
  /* width: 40px; */
}

table.data td.alert, table.sortable td.alert {
  background-color: red;
  color: black;
}

table.data tr.even td, table.sortable tr.even td {
  background: #ffffcc;
}

table.allocations thead.nonexpired th,
table.allocations thead.expired th {
  background-color: #2e5dcc;
  color: yellow;
  font-weight: lighter;
}

table.allocations thead.expired {
  cursor: pointer;
}

table.allocations thead.expired th::after {
  font-family: "Material Icons";
  color: yellow;
  float: right;
}

table.allocations thead.expired.expanded th::after {
  content: "expand_less";
}

table.allocations thead.expired.collapsed th::after {
  content: "expand_more";
}

table.allocations thead.expired.collapsed + tbody.expired {
  display: none;
}

table.allocations ~ #comments[data-older-comments-visible="false"] article.older {
    display: none;
}

div.subbranch {
   margin-left: 40px;
}

div.ticket, div.discussion {
    width: 100%;
    max-width: 900px;
    padding: 0 0 0 0;
}

div.forum_comment_header_user {
    float: left;
    font-size: 10px;
    background-color: #4888f7; /* slightly desaturated sn blue */
    color: #c1d5f7; /* very light sn blue */
    color: white;
    padding: 2px;
    width: 100%;
}

div.forum_comment_header_user a {
  color: #ffbb00; /* super saturated sn gold */
  font-weight: bolder;
}

div.forum_comment_header_user em {
  color: #ffbb00; /* supersaturated sn gold */
  font-weight: bold;
  font-style: normal;
}

div.forum_comment_header_user a:hover {
  background-color: #e9ad09;
  color: #061c42;
}

div.forum_comment_header_reply {
    float: right;
    font-size: 10px;
}

.forum_comment_header_reply a {
  color: #1668f7;
}
.forum_comment_header_reply a:hover, .forum_comment_header_reply a:active .forum_comment_header_reply a:focus {
  color: #ffbb00;
}


div.forum_comment_comments {
    padding-top: 4px; 
    font-size: 11.5px;
    background-color: #e1e9f7;
    margin-bottom: 9px;
    padding-right: 2px;
    padding-left: 2px;
}

.ticket_state_0 {
	background-color: #ccff99; /* light green */
}

.ticket_state_1 {
  background-color: #fff0c7; /* light yellow */
}

.ticket_state_3 {
  background-color: #fff0c7; /* light yellow */
}

.ticket_state_6 {
	background-color: #ccff99; /* light green */
}

.ticket_urgency_0 {
}

.ticket_urgency_1 {
  background-color: #c1d5f7; /* light sn blue */
  color: black;
}

.ticket_urgency_2 {
  background-color: #ffcc66; /* light orange */
  color: black;
}

.ticket_urgency_3 {
  background-color: #e07777; /* sn red */
  color: black;
}

.ticket_label, div.labels label {
  display: block;
  width: 130px;
  float: left;
  text-align: right;
  padding-right: 10px;
  color: #1668f7; /* sn blue */
}

.ticket_input {
  display: block;
  float: left;
  width: 80%;
  max-width: 750px;
}

br {
  clear: left;
}

/* when editing highlights */

table#highlights { border-collapse: collapse; min-width: 90%;}
table#highlights td { vertical-align: middle; border: 1px dotted black; padding: 3px; }

div.table {
	display: table;
}

div.table_row {
	display: table-row;
}

div.table_row.header {
	font-weight: bold;
}

div.table_cell {
	display: table-cell;
}

table#systemlist, table#changes, table#software_availability, table#versions_management {
    max-width: 600px; /* same as the <p> setting - I think this is wrong, but it's arguable */
    border: 1px solid black;
}

table#systemlist tr td, table#changes tr td, table#software_availability tr td, table#systemlist tr th, table#changes tr th, table#software_availability tr th {
    padding-right: 9px;
    padding-left: 2px;
}

form.software_version ul.details,
form.software_version ul.systems {
    list-style: none;
    padding-left: 1em;
}

form.software_version .actions button[name=delete] {
    margin-left: 10em;
}

table.vertically_arranged_headings {

}

table.vertically_arranged_headings th {
    text-align: right;
    padding: 1px;
    padding-right: 8px;
    padding-bottom: 4px;
}

tr.header {
	background-color: rgb(206, 216, 233);
}

tr.subheader {
	background-color: rgb(226, 236, 251);
	margin-top: 3px;
}

th, td {
	vertical-align: top;
}

td {
	padding: 1px 1px 1px 1px;
}

th {
	/* text-align: center; */
  font-weight: bold;
	padding: 3px 3px 3px 3px;
}

th.date_column {
  min-width: 85px;
}

td.list {
	vertical-align: top;
}

div.date {
	padding: 2px 2px 1em 2px;
	width: 12em;
}

td.notes {
	padding: 2px 2px 1em 2px;
}

.cpus {
	padding-left: 10px;
	padding-right: 10px;
}

tr.odd {
	background-color: #ffffff;
}

tr.even {
	background-color: #f8f8ff;
}

tr.totals {
	background-color: #ffdd22;
	font-weight: bold;
}

th.state, th.notices {
	text-align: center;
	font-size: small;
}

td.notices {
	text-align: center;
}

td.notices a {
	color: black;
}

td.numeric {
	text-align: right;
}

td.num {
  text-align: right;
}

td.num, th.mysn_table_header_num {
    width: 50px;
}



td.sponsor {
	font-weight: bold;
}

form.button-to, form.button-to div {
	display: inline;
}

table.sortable td {
	vertical-align: top;
}

table.sortable td.middle {
	vertical-align: top;
        padding-top: 4em;
}

ul.sortable {
	min-height: 150px;
	/*min-width: 10em;*/
	background-color: #eeeeee;
	padding: 4px;
	border: 4px outset #eeeeee;
}

ul.sortable li {
	list-style: none;
	margin: 4px;
	font-size: 85%;
}

ul#havelist li {
	background-color: #ccffcc;
	border: 1px solid #aaffaa;
}

ul#havegrouplist li {
	background-color: #ffffcc;
	border: 1px solid #ffffaa;
}

ul#havenotlist li {
	background-color: #ffcccc;
	border: 1px solid #ffaaaa;
}

.empty {
  text-align: center;
}

.smallprint {
	font-size: 85%;
	font-style: italic;
}

.tinyprint {
	font-size: 70%;
	font-style: normal;
}

.striking {
	font-weight: bold;
}

.important {
        font-size: 105%;
        font-weight: bold;
}

.informal {
	font-style: italic;
}

div.completed_item_sub {
  font-size: 85%;
  font-style: italic;
}

div.completed_item_main {
  font-size: 100%;
  font-weight: bold;
}

table.calendar {
  width: 100%;
  padding-bottom: 20px;
}

table.calendar thead {
  text-align: center;
  font-weight: bold;
  padding-top: 20px;
}

table.calendar thead tr.dayName {
  padding-top: 0px;
}

table.calendar thead tr.dayName {
  font-size: 90%;
  padding-top: 0;
}

table.calendar tbody tr {
  height: 3em;
}

table.calendar tbody td {
  border: 1px solid black;
  vertical-align: top;
  width: 14%;
  font-size: 75%;
}

table.calendar tbody td.otherMonth {
  background-color: #eeeeee;
}

table.calendar tbody td.day {
  background-color: #abcaff;
}

table.calendar tbody td.day.weekendDay {
  background-color: #c9d7ed;
}

table.calendar tbody td.specialDay {
  background-color: rgb(224, 181, 4);;
}

table.calendar tbody td.today {
  border: 2px solid black;
}

img#spinnergif {
}

p {
    font-size: 12px;
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
}

p.doubleimage {
    max-width: 750px;
}

ul li, ol li {
    max-width: 580px;
}

li.sortable {
    width: 20em;
}

div.row {
	clear: both;
	width: 500px;
	padding-top: 10px;
}

div.row span.label {
	float: left;
	width: 150px;
	text-align: right;
}

div.row span.formw {
	float: right;
  	width: 350px;
  	text-align: left;
} 

div.metrics {
    background: rgb(54, 96, 168);
    width: 515px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    font-size: 15px;
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    color: #061c42; /* VERY DARK SN BLUE */
    color: rgb(224, 181, 4);
    font-weight: bold;
}
    
div.metrics2 { 
    padding-left: 10px;
    width: 515px;
    background: #e8e8f0;
    padding-bottom: 8px;
}
    
a.metrics:link, a.metrics:visited {
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    color: rgb(54, 96, 168);
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
}   
    
a.metrics:hover {
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    color: rgb(54, 96, 168);
    text-decoration: underline;
    font-size: 10px;
}

a.master:link, a.master:visited, a.master:hover {
    color: #ffbb00;
    text-decoration: none;
    font-weight: bold;
}

.floatimage_right {
	float: right;
	margin: 10px;
}

.floatimage_left {
	float: left;
	margin: 10px;
}

h3.survey {
	margin-top: 0;
	margin-bottom: 0;
}

table.survey {
    border-collapse: collapse;
    border-style: solid;
    border-color: #1668f7; /* sharcnet_blue */
    border-width: 2px;
	display: inline-table;
	vertical-align: top;
	margin-right: 15px;
    margin-top: 1px;
    margin-bottom: 3px;
	padding: 2px;
	text-align: center;
	font-size: 9pt;
}

table.survey.small {
	width: 40%
}

th.category {
	text-align: left;
	padding: 0px 6px;
	font-weight: bold;
	vertical-align: middle;
	width: 80%;
}

th.category.small {
	width: 40%;
}

td.numeric.survey {
	text-align: center;
	vertical-align: middle;
}

td#real_content {
  padding: 0; margin: 0;
}

td.iconlist {
  white-space: nowrap;
}

a.tag {
	background-color:#e1e9f7;
	border-color:#c1d5f7;
	border-style:solid;
	border-width:1px;
	line-height:1.5em;
	padding-left:0.3em;
	padding-right:0.3em;
}

a.tag.delete {
	background-color: #FFEEAA;
	background-image: url(/my/images/icon_minus.gif);
	background-position: 0.3em center;
	background-repeat: no-repeat;
	border-color: #FFDD99 #EEDDAA #EEDDAA #FFDD99;
	font-weight: bold;
	padding-left: 1.3em;	
}

a.tag.add {
	background-image:url(/my/images/icon_plus.gif);
	background-position:0.3em center;
	background-repeat:no-repeat;
	font-weight: normal;
	padding-left:1.3em;
}

a.tag:hover {
	color:#000000;
}

/* ---
   Overrides for the textile generated documents on the software page
--- */

div.programmarkup h1 { /* should be a copy of h3 */
  color: #1668f7;
  font-size:120%;
  max-width: 600px;
}

div.programmarkup h2, div.programmarkup h3, div.programmarkup h4 { /* should be a copy of h4 */
  color: #1668f7;
  font-size: 100%;
}

div.programmarkup code {
  font-weight: bold;
}

div.programmarkup pre {
  border-style: dashed;
  border-width: 1px;
  border-color: #4888f7;
  margin-left: 10px;
  margin-right: auto;
  max-width: 680px;
  padding: 10px;
  background-color: #f0f0f0;
  overflow: auto;
}

div#utility form {
  display: inline;
} 

div#utility {
  /*float: right;*/
  margin-top: .4em;
  margin-left: 0;
  margin-right: 1.2em;
  height: 1em;
  width: 100%;
  vertical-align: bottom;
  text-align: right;
  }

div#breadcrumbs {
  float: left;
  margin-top: 75px;
  margin-left: 5px;
  font-weight: bold;
}

div#top_banner {
  clear: both;
}

div#top_banner {
  width: 100%;
/*  overflow: hidden;*/
  margin-bottom: 0;
/*
  background-image: url('/my/images/front/snet_logo_banner.png');
  background-repeat: no-repeat;
*/
  height: 7.4em;
  background-color: rgb(204, 138, 0); /*#e4e5e5*/
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
div#top_banner img {
  border: 0;
  position: absolute;
}

#real_content_div {
  padding: 15px;
  background-color: white;
  margin-bottom: 2px;
  width: 100%;
}

/*div#copyright {
  color: #888;
  font-size: 10px;
  text-align: center;
  float: none;
  clear: left;
}

#copyright a {
  color: #888;
}

#copyright a:hover {
  color: #ffbb00;
  background-color: #555;
}
*/

div#internal_menu {
    background-color: white;
    border: 4px solid #d9d9d9;
    border-radius: 16px;
    margin-right: 2px;
    padding-bottom: 2px;
}

div#internal_menu ul.treeview {
    border-radius: 16px;
    margin-top: 0;
}

.word_count {
  display: block;
  color: black;
}

.word_count_warn {
  color: red;
}

a img {
    border: 0
}

table#system tr th {
    padding-right: 10px;
}

.system {
    font-weight: bold;
    font-size: 120%;
}

th.centered_heading {
   text-align: center;
}

.survey_response {
    background-color: #e1e9f7;
    padding: 4px;
    max-width: 600px;
}

.written_survey_comments {
}

div.written_survey_comments ul li {
  margin-bottom: 4px;
}

table#usage_table th {
    padding-left: 0.3em;
}

table#usage_table tr > td:first-child {
    padding-left: 0.3em;
}

table#usage_table tr > th:not(:first-child),
table#usage_table tr > td:not(:first-child) {
    text-align: right;
    padding-left: 1em;
    padding-right: 0.3em;
}

#regional_partners {
    text-align: center;
    float: none;
    clear: left;
    background-color: white;
    border-radius: 10px;
}

#regional_partners > ol {
    display: inline-block;
    list-style: none;
    padding: 0;
}

#regional_partners > ol > li {
    float: left;
}

#regional_partners > ol > li + li {
    margin-left: 3em;
}

#regional_partners > ol > li a:hover {
    background-color: transparent;
}
