@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'Hurme Geometric Sans No.3 Bold';
  src: local('Hurme Geometric Sans No.3 SemiBold'), local('Hurme-Geometric-Sans-No.3-SemiBold'), url('fonts/HurmeGeometricSans3-SemiBold.woff2') format('woff2'), url('fonts/HurmeGeometricSans3-SemiBold.woff') format('woff'), url('fonts/HurmeGeometricSans3-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Hurme Geometric Sans No.3 Light';
  src: local('Hurme Geometric Sans No.3 Light'), local('Hurme-Geometric-Sans-No.3-Light'), url('fonts/HurmeGeometricSans3-Light.woff2') format('woff2'), url('fonts/HurmeGeometricSans3-Light.woff') format('woff'), url('fonts/HurmeGeometricSans3-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background-color: #2a6865;
  margin: 0;
  padding: 0;
  color: #000;
}

.bodys {
  font: 70%/1 Verdana, Arial, Helvetica, sans-serif;
  color: #000;
}
.bodys_r {
  font: 70%/1 Verdana, Arial, Helvetica, sans-serif;
  color: #900;
}

.body_amber {
  margin: 0;
  padding: 0;
}

.body_amber_s {
  font-size: 70%;
  margin: 0;
  padding: 0;
}

/* ~~ Element/tag selectors ~~ */
ul,
ol,
dl {
  /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.header * {
  font-family: 'Hurme Geometric Sans No.3 Bold' !important;
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
  padding-right: 15px;
  padding-left: 0x; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h3 {
  font-size: 22px;
}
a img {
  /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
  border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
  color: #42413c;
  text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
  color: #6e6c64;
  text-decoration: underline;
}
a:hover,
a:active,
a:focus {
  /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
  text-decoration: none;
}

a.guide {
	color: #009966;
	position: relative;
	text-decoration: none;
	transition: color .4s ease-out;
	font-weight: strong;
}

a.guide:hover {
	color: #009966;
	right: 0;
	text-decoration: none;
}

a.guide:hover:after {
  border-color: #009966;
  right: 0;
}

a.guide:after {
  border-radius: 1em;
  border-top: .1em solid #2F56B0;
  content: "";
  position: absolute;
    right: 100%;
    bottom: .14em;
    left: 0;
  transition: right .4s cubic-bezier(0,.5,0,1),
              border-color .4s ease-out;
}

a.guide:hover:after {
  animation: anchor-underline 2s cubic-bezier(0,.5,0,1) infinite;
  border-color: #009966;
}





@keyframes anchor-underline {
  0%, 10% {
    left: 0;
    right: 100%;
  }
  40%, 60% {
    left: 0;
    right: 0;
  }
  90%, 100% {
    left: 100%;
    right: 0;
  }
}




/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
  width: 1200px;
  background-color: #fff;
  margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
  background-color: #fff;
}
.header * {
  font-size: 18px !important;
}

.header > img:nth-of-type(1) {
  width: 220px;
  height: auto;
  margin: 10px;
}
.header > img:nth-of-type(2) {
  display: none;
}
/* ~~ This is the layout information. ~~

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.bg_white {
	background-color: white;
}
	
	
.content {
  padding: 25px;
  min-height: 800px;
}

/* ~~ The footer ~~ */
.footer,
.footer .body_amber_s {
  line-height: 24px;
  padding: 10px;
  background-color: #194549;
  color: #fff;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {
  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
  float: right;
  margin-left: 8px;
}
.fltlft {
  /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
  float: left;
  margin-right: 8px;
}
.clearfloat {
  /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.input_select_taken {
	font-size: 80%;
	padding: 2px 3px;
	margin: 1px 0;
	box-sizing: border-box;
	background-color: #FFFFFF;
	color: #666666;
	border-radius: 5px;
	border-color: #999999;
}

.input_select_teal_ltxt {
  font-size: 90%;
  padding: 3px 5px;
  margin: 1px 0;
  box-sizing: border-box;
  background-color: #fff7e3;
  color: #333333;
  border-radius: 5px;
  border-color: #f1f1f1;
}

.input_select_teala_ltxt a {
  text-decoration: none;
  display: block;
  background: #dff2f7;
  padding: 2px;
  color: #000;
  border-radius: 5px;
}
.input_select_teala_ltxt a:hover {
  background: #fff3d3;
}

.input_b[type='text'] {
  padding: 1px 1px;
  margin: 1px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid #e2f2e3;
}
.heading_blue {
  font-size: 125%;
  color: #2a6865;
  font-weight: bold;
}

.td_base {
  border-bottom-width: 1px;
  border-bottom-color: #2a6865;
}
.overflow_1 {
  overflow-x: auto;
  z-index: -1;
}
.col1 {
  width: 100px;
}

/* this class is for the tooltips that appear in the rankings page */

nav {
  position: sticky;
  top: 0;
  z-index: 1;
}
body#login-screen {
  background-color: #fff;
  background-image: url(https://arlls.info/images/ARLLS-Logo-200h.png);
  background-repeat: no-repeat;
  background-position: center 175px;
  background-size: 200px auto;
}

body#login-screen .login-box {
  background-color: #fff;
  width: 300px;
  border: solid 1px #ececec;
  border-radius: 5px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

body#login-screen h3 {
  padding: 10px;
  color: #2a6865;
  padding-bottom: 0;
  margin-bottom: 0;
}
body#login-screen label {
  font-family: 'Hurme Geometric Sans No.3 Bold';
  margin-bottom: 5px;
  font-size: 14px;
  display: block;
}
input[type='submit'] {
  padding: 5px 10px;
  background-image: linear-gradient(to right, #2a6865 50%, transparent 50%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  transition: all 0.5s ease-out;
  text-transform: uppercase;
  font-weight: bold !important;
  line-height: 1.4 !important;
  font-size: 14px;
  align-items: left;
  border-radius: 9999px !important;
  text-decoration: none;
  -webkit-border-radius: 9999px !important;
  -moz-border-radius: 9999px !important;
  -ms-border-radius: 9999px !important;
  -o-border-radius: 9999px !important;
  border: 2px solid #2a6865 !important;
  display: block;
  background-color: #fff;
  color: #2a6865;
  margin-top: 10px;
}

input[type='submit']:hover {
  color: #fff !important;
  background-position: left bottom !important;
  cursor: pointer;
}

input[type='button'] {
  padding: 3px 5px;
  background-image: linear-gradient(to right, #2a6865 50%, transparent 50%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  transition: all 0.5s ease-out;
  /*text-transform: uppercase;*/
  font-weight: bold !important;
  line-height: 1.4 !important;
  font-size: 14px;
  align-items: left;
  border-radius: 9999px !important;
  text-decoration: none;
  -webkit-border-radius: 9999px !important;
  -moz-border-radius: 9999px !important;
  -ms-border-radius: 9999px !important;
  -o-border-radius: 9999px !important;
  border: 2px solid #2a6865 !important;
  display: block;
  background-color: #fff;
  color: #2a6865;
  margin-top: 10px;
}

input[type='button']:hover {
  color: #fff !important;
  background-position: left bottom !important;
  cursor: pointer;
}

/* this code is interfering with additional menu items and does not address the changes in font colour & bg for sub menu items.
The program used to create the site menus is Sothink vs 8

#stUI6_txt,
#stUI10_txt {
  font-size: 16px !important;
  color: #000 !important;
  font-family: 'Hurme Geometric Sans No.3 Bold' !important;
  font-weight: bold;
  padding-left: 15px;
}
#stUI6_itd,
#stUI10_itd {
  background-color: #fff !important;
} 
*/
.sortable th,
.sortable td {
  border-bottom: 1px solid #d4d4d4;
}
.student-name {
  color: #2a6865;
}
