
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_50a82ac4ac18.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_b5dba74dc594.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_0d9a9c4cfbd3.woff")format("woff");}.ff3{font-family:ff3;line-height:1.199707;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_0bb81c9784a5.woff")format("woff");}.ff4{font-family:ff4;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_8b158a311e03.woff")format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_0bbf75cf977c.woff")format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_832a1624ea81.woff")format("woff");}.ff7{font-family:ff7;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_609b47645917.woff")format("woff");}.ff8{font-family:ff8;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_cf3ec0d3b999.woff")format("woff");}.ff9{font-family:ff9;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_cf3ec0d3b999.woff")format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_b55110ef5317.woff")format("woff");}.ffb{font-family:ffb;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_0511c7de72f6.woff")format("woff");}.ffc{font-family:ffc;line-height:1.051758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_8479418fd279.woff")format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_cf3ec0d3b999.woff")format("woff");}.ffe{font-family:ffe;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_cf3ec0d3b999.woff")format("woff");}.fff{font-family:fff;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_b55110ef5317.woff")format("woff");}.ff10{font-family:ff10;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_cf3ec0d3b999.woff")format("woff");}.ff11{font-family:ff11;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_cf3ec0d3b999.woff")format("woff");}.ff12{font-family:ff12;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_b55110ef5317.woff")format("woff");}.ff13{font-family:ff13;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_cf3ec0d3b999.woff")format("woff");}.ff14{font-family:ff14;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_cf3ec0d3b999.woff")format("woff");}.ff15{font-family:ff15;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_b55110ef5317.woff")format("woff");}.ff16{font-family:ff16;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_cf3ec0d3b999.woff")format("woff");}.ff17{font-family:ff17;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_cf3ec0d3b999.woff")format("woff");}.ff18{font-family:ff18;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_b55110ef5317.woff")format("woff");}.ff19{font-family:ff19;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_2805e131610d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:3.716797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_cf3ec0d3b999.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_cf3ec0d3b999.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_b55110ef5317.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_cf3ec0d3b999.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_cf3ec0d3b999.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_b55110ef5317.woff")format("woff");}.ff20{font-family:ff20;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_cf3ec0d3b999.woff")format("woff");}.ff21{font-family:ff21;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_cf3ec0d3b999.woff")format("woff");}.ff22{font-family:ff22;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_b55110ef5317.woff")format("woff");}.ff23{font-family:ff23;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_203842f4ea9c.woff")format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_cf3ec0d3b999.woff")format("woff");}.ff25{font-family:ff25;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_cf3ec0d3b999.woff")format("woff");}.ff26{font-family:ff26;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_b55110ef5317.woff")format("woff");}.ff27{font-family:ff27;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_cf3ec0d3b999.woff")format("woff");}.ff28{font-family:ff28;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_cf3ec0d3b999.woff")format("woff");}.ff29{font-family:ff29;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_b55110ef5317.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_cf3ec0d3b999.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_cf3ec0d3b999.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_b55110ef5317.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_cf3ec0d3b999.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_cf3ec0d3b999.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_b55110ef5317.woff")format("woff");}.ff30{font-family:ff30;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url("fonts/font_0048_13f3ad40a957.woff")format("woff");}.ff31{font-family:ff31;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_cf3ec0d3b999.woff")format("woff");}.ff32{font-family:ff32;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url("fonts/font_0050_cf3ec0d3b999.woff")format("woff");}.ff33{font-family:ff33;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url("fonts/font_0051_b55110ef5317.woff")format("woff");}.ff34{font-family:ff34;line-height:1.039062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url("fonts/font_0052_cf3ec0d3b999.woff")format("woff");}.ff35{font-family:ff35;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url("fonts/font_0053_cf3ec0d3b999.woff")format("woff");}.ff36{font-family:ff36;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-77.256134px;}
.v9{vertical-align:-34.486800px;}
.v3{vertical-align:-22.764323px;}
.v4{vertical-align:-2.069484px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.731719px;}
.v1{vertical-align:14.486387px;}
.v2{vertical-align:22.764323px;}
.va{vertical-align:34.540836px;}
.vb{vertical-align:37.272555px;}
.vc{vertical-align:44.193254px;}
.v7{vertical-align:48.296006px;}
.v6{vertical-align:51.025425px;}
.vd{vertical-align:76.592749px;}
.lsf{letter-spacing:-3.173209px;}
.ls45{letter-spacing:-2.759312px;}
.ls47{letter-spacing:-2.665495px;}
.ls46{letter-spacing:-1.396212px;}
.ls14{letter-spacing:-1.015427px;}
.ls15{letter-spacing:-0.951963px;}
.ls9{letter-spacing:-0.698106px;}
.lsa{letter-spacing:-0.571178px;}
.ls10{letter-spacing:-0.444249px;}
.lsb{letter-spacing:-0.380785px;}
.ls7{letter-spacing:-0.317321px;}
.ls4e{letter-spacing:-0.253857px;}
.ls4{letter-spacing:-0.233967px;}
.ls22{letter-spacing:-0.229023px;}
.ls5{letter-spacing:-0.114511px;}
.ls3c{letter-spacing:-0.060705px;}
.ls8{letter-spacing:-0.057256px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.126928px;}
.ls42{letter-spacing:0.171767px;}
.lse{letter-spacing:0.190393px;}
.ls3d{letter-spacing:0.229023px;}
.ls6{letter-spacing:0.242130px;}
.ls3{letter-spacing:0.253857px;}
.ls12{letter-spacing:0.253972px;}
.ls2c{letter-spacing:0.303524px;}
.lsd{letter-spacing:0.317321px;}
.ls1{letter-spacing:0.343534px;}
.ls30{letter-spacing:0.507483px;}
.ls34{letter-spacing:0.571408px;}
.ls26{letter-spacing:0.634527px;}
.ls23{letter-spacing:0.635102px;}
.ls2d{letter-spacing:1.031983px;}
.ls25{letter-spacing:1.078891px;}
.ls28{letter-spacing:1.081190px;}
.ls27{letter-spacing:1.142240px;}
.ls24{letter-spacing:1.142815px;}
.ls3a{letter-spacing:1.153392px;}
.ls2e{letter-spacing:1.517622px;}
.ls2a{letter-spacing:1.586604px;}
.ls2b{letter-spacing:2.063735px;}
.ls4d{letter-spacing:6.473346px;}
.lsc{letter-spacing:8.948218px;}
.ls29{letter-spacing:11.899532px;}
.ls11{letter-spacing:12.439323px;}
.ls38{letter-spacing:13.052005px;}
.ls3b{letter-spacing:13.234005px;}
.ls44{letter-spacing:14.630101px;}
.ls4a{letter-spacing:15.167592px;}
.ls13{letter-spacing:15.168167px;}
.ls41{letter-spacing:15.176215px;}
.ls2f{letter-spacing:15.176330px;}
.ls43{letter-spacing:15.866043px;}
.ls36{letter-spacing:16.208658px;}
.ls37{letter-spacing:16.754082px;}
.ls39{letter-spacing:16.876066px;}
.ls3f{letter-spacing:17.190053px;}
.ls32{letter-spacing:17.452188px;}
.ls31{letter-spacing:17.833778px;}
.ls3e{letter-spacing:20.625396px;}
.ls40{letter-spacing:24.117650px;}
.ls4b{letter-spacing:38.205317px;}
.ls48{letter-spacing:38.205432px;}
.ls4c{letter-spacing:38.205547px;}
.ls49{letter-spacing:38.205662px;}
.ls33{letter-spacing:91.642381px;}
.ls17{letter-spacing:158.675954px;}
.ls1c{letter-spacing:159.514670px;}
.ls19{letter-spacing:191.234109px;}
.ls18{letter-spacing:216.082862px;}
.ls1e{letter-spacing:287.137443px;}
.ls1a{letter-spacing:299.639425px;}
.ls1f{letter-spacing:331.931422px;}
.ls1d{letter-spacing:373.499305px;}
.ls21{letter-spacing:387.991441px;}
.ls35{letter-spacing:395.565752px;}
.ls20{letter-spacing:406.458136px;}
.ls1b{letter-spacing:504.413132px;}
.ls16{letter-spacing:556.863627px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-63.464173px;}
.ws1b{word-spacing:-60.704861px;}
.wsa{word-spacing:-20.419598px;}
.ws14{word-spacing:-17.245699px;}
.ws16{word-spacing:-16.183364px;}
.ws11{word-spacing:-16.119900px;}
.ws15{word-spacing:-16.056436px;}
.ws13{word-spacing:-15.992972px;}
.wse{word-spacing:-15.866043px;}
.ws8{word-spacing:-15.802579px;}
.ws4{word-spacing:-15.786786px;}
.ws24{word-spacing:-15.612187px;}
.wsc{word-spacing:-15.548722px;}
.ws12{word-spacing:-15.485258px;}
.ws10{word-spacing:-15.294866px;}
.ws1c{word-spacing:-15.176215px;}
.wsf{word-spacing:-15.167937px;}
.ws18{word-spacing:-14.850616px;}
.ws22{word-spacing:-14.486387px;}
.ws21{word-spacing:-14.485698px;}
.wsd{word-spacing:-14.313930px;}
.ws20{word-spacing:-14.256675px;}
.ws19{word-spacing:-14.084907px;}
.ws23{word-spacing:-13.200548px;}
.ws17{word-spacing:-12.692835px;}
.ws9{word-spacing:-10.355697px;}
.wsb{word-spacing:-10.002506px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.113574px;}
.ws6{word-spacing:0.170361px;}
.ws7{word-spacing:0.170732px;}
.ws3{word-spacing:15.729999px;}
.ws1{word-spacing:31.459998px;}
.ws2{word-spacing:31.687146px;}
.ws1e{word-spacing:59.308534px;}
.ws1f{word-spacing:145.400215px;}
.ws1d{word-spacing:220.199066px;}
._1c{margin-left:-15.722329px;}
._1{margin-left:-9.199494px;}
._19{margin-left:-7.869557px;}
._4{margin-left:-6.814440px;}
._a{margin-left:-5.565126px;}
._e{margin-left:-4.442492px;}
._3{margin-left:-3.066498px;}
._0{margin-left:-1.817184px;}
._b{width:1.138216px;}
._2{width:2.271480px;}
._11{width:3.317506px;}
._12{width:4.493921px;}
._13{width:6.228465px;}
._14{width:7.357007px;}
._15{width:8.417458px;}
._7{width:9.483429px;}
._f{width:10.823021px;}
._c{width:12.148278px;}
._10{width:13.374658px;}
._16{width:14.596760px;}
._d{width:17.218661px;}
._8{width:18.682923px;}
._9{width:20.216172px;}
._6{width:37.252272px;}
._5{width:44.293860px;}
._1a{width:148.360071px;}
._1b{width:234.649256px;}
._17{width:520.562819px;}
._18{width:536.394937px;}
._1d{width:812.087558px;}
.fc4{color:rgb(0,175,240);}
.fc3{color:rgb(38,59,126);}
.fc1{color:rgb(91,75,75);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.250710px;}
.fsb{font-size:40.010022px;}
.fsf{font-size:43.459162px;}
.fse{font-size:46.218474px;}
.fs2{font-size:56.787000px;}
.fs5{font-size:57.255721px;}
.fs7{font-size:60.704861px;}
.fs4{font-size:63.234230px;}
.fsa{font-size:63.464173px;}
.fsd{font-size:68.982797px;}
.fs3{font-size:74.731363px;}
.fs8{font-size:80.709872px;}
.fs0{font-size:90.859200px;}
.fs9{font-size:91.747120px;}
.fs1{font-size:113.574000px;}
.fsc{font-size:114.971100px;}
.y0{bottom:0.000000px;}
.y127{bottom:1.896670px;}
.y42{bottom:11.784538px;}
.y15{bottom:18.342526px;}
.y16{bottom:18.674793px;}
.y14{bottom:26.459730px;}
.y41{bottom:32.423805px;}
.y44{bottom:74.837424px;}
.y40{bottom:82.353215px;}
.yad{bottom:95.202296px;}
.y125{bottom:108.136570px;}
.y112{bottom:108.150367px;}
.yfd{bottom:108.159679px;}
.y145{bottom:108.173476px;}
.y3f{bottom:108.214865px;}
.yc8{bottom:108.246368px;}
.yee{bottom:108.260854px;}
.y86{bottom:108.289712px;}
.y6b{bottom:108.363063px;}
.y13{bottom:111.475500px;}
.yac{bottom:121.063946px;}
.y12{bottom:129.409500px;}
.y124{bottom:133.998220px;}
.y111{bottom:134.012017px;}
.yfc{bottom:134.021330px;}
.y144{bottom:134.035126px;}
.y3e{bottom:134.076516px;}
.yc7{bottom:134.108018px;}
.yed{bottom:134.122505px;}
.y85{bottom:134.165159px;}
.y6a{bottom:134.224714px;}
.yab{bottom:146.925597px;}
.y11{bottom:147.342000px;}
.y123{bottom:159.859871px;}
.y110{bottom:159.873668px;}
.yfb{bottom:159.883009px;}
.y143{bottom:159.896806px;}
.y3d{bottom:159.938195px;}
.yc6{bottom:159.969669px;}
.yec{bottom:159.984184px;}
.y84{bottom:160.025430px;}
.y69{bottom:160.086365px;}
.y10{bottom:165.274500px;}
.yaa{bottom:172.787247px;}
.y83{bottom:185.721522px;}
.y10f{bottom:185.735318px;}
.yfa{bottom:185.744660px;}
.y142{bottom:185.758456px;}
.y3c{bottom:185.799846px;}
.yc5{bottom:185.831319px;}
.yeb{bottom:185.845834px;}
.y68{bottom:185.948015px;}
.ya9{bottom:198.828253px;}
.y10e{bottom:211.596969px;}
.yf9{bottom:211.606310px;}
.y141{bottom:211.620107px;}
.y3b{bottom:211.661496px;}
.yc4{bottom:211.692970px;}
.yea{bottom:211.707485px;}
.y82{bottom:211.762527px;}
.y67{bottom:211.809666px;}
.ya8{bottom:225.731544px;}
.y122{bottom:229.353141px;}
.yf{bottom:237.006000px;}
.y10d{bottom:237.458619px;}
.yf8{bottom:237.467961px;}
.y140{bottom:237.481757px;}
.y81{bottom:237.509350px;}
.y3a{bottom:237.523147px;}
.yc3{bottom:237.554620px;}
.ye9{bottom:237.569135px;}
.y66{bottom:237.671316px;}
.ya7{bottom:252.289920px;}
.ye{bottom:254.938500px;}
.yf7{bottom:263.329611px;}
.y13f{bottom:263.343408px;}
.y80{bottom:263.371001px;}
.y39{bottom:263.384797px;}
.yc2{bottom:263.416271px;}
.ye8{bottom:263.430786px;}
.y11a{bottom:263.499625px;}
.y65{bottom:263.532967px;}
.yd{bottom:272.871000px;}
.ya6{bottom:278.891411px;}
.y10c{bottom:281.133352px;}
.y119{bottom:286.305625px;}
.yf6{bottom:289.238831px;}
.y13e{bottom:289.252628px;}
.y7f{bottom:289.280221px;}
.y38{bottom:289.294017px;}
.yc1{bottom:289.325491px;}
.ye7{bottom:289.340006px;}
.y64{bottom:289.442187px;}
.yc{bottom:290.803500px;}
.ya5{bottom:305.622245px;}
.y13d{bottom:315.114278px;}
.y7e{bottom:315.141871px;}
.y37{bottom:315.155668px;}
.yc0{bottom:315.187141px;}
.ye6{bottom:315.201656px;}
.y121{bottom:315.235285px;}
.y104{bottom:315.279837px;}
.y63{bottom:315.303837px;}
.ya4{bottom:331.663251px;}
.yf5{bottom:332.870450px;}
.y103{bottom:338.041142px;}
.y13c{bottom:340.975929px;}
.y7d{bottom:341.003522px;}
.y36{bottom:341.017318px;}
.ybf{bottom:341.048792px;}
.ye5{bottom:341.063307px;}
.y120{bottom:341.110732px;}
.y62{bottom:341.165488px;}
.yb{bottom:344.602500px;}
.ya3{bottom:358.738999px;}
.ya{bottom:362.535000px;}
.y13b{bottom:366.672020px;}
.y7c{bottom:366.865172px;}
.y35{bottom:366.878969px;}
.ybe{bottom:366.910442px;}
.ye4{bottom:366.924957px;}
.y10b{bottom:366.970084px;}
.y11f{bottom:366.986180px;}
.y61{bottom:367.027138px;}
.yf3{bottom:367.361848px;}
.yf4{bottom:386.337579px;}
.yf2{bottom:386.498826px;}
.y7b{bottom:392.726823px;}
.y34{bottom:392.740619px;}
.y13a{bottom:392.758296px;}
.ybd{bottom:392.772093px;}
.ye3{bottom:392.786608px;}
.ya2{bottom:392.813482px;}
.y10a{bottom:392.845531px;}
.y11e{bottom:392.861627px;}
.y60{bottom:392.888789px;}
.y9{bottom:398.400000px;}
.y8{bottom:416.332500px;}
.y7a{bottom:418.588473px;}
.y33{bottom:418.602270px;}
.y139{bottom:418.619947px;}
.ybc{bottom:418.633743px;}
.ye2{bottom:418.648258px;}
.ya1{bottom:418.675133px;}
.y109{bottom:418.720978px;}
.y11d{bottom:418.737074px;}
.y5f{bottom:418.750439px;}
.y7{bottom:434.265000px;}
.y79{bottom:444.450124px;}
.y32{bottom:444.463920px;}
.y138{bottom:444.481597px;}
.ybb{bottom:444.495394px;}
.ye1{bottom:444.509909px;}
.ya0{bottom:444.536783px;}
.y108{bottom:444.596425px;}
.y5e{bottom:444.612090px;}
.y11c{bottom:444.612521px;}
.y6{bottom:452.199000px;}
.y31{bottom:470.325571px;}
.y137{bottom:470.343248px;}
.yba{bottom:470.357044px;}
.ye0{bottom:470.371559px;}
.y9f{bottom:470.398434px;}
.y107{bottom:470.471872px;}
.y5d{bottom:470.473740px;}
.y11b{bottom:470.487968px;}
.y78{bottom:470.491130px;}
.y30{bottom:496.187221px;}
.y136{bottom:496.204898px;}
.yb9{bottom:496.218695px;}
.ydf{bottom:496.233210px;}
.y77{bottom:496.253186px;}
.y9e{bottom:496.260084px;}
.y5c{bottom:496.335391px;}
.y106{bottom:496.347319px;}
.y117{bottom:496.359678px;}
.y5{bottom:497.031000px;}
.y116{bottom:518.954131px;}
.y118{bottom:519.124001px;}
.y135{bottom:522.066549px;}
.yb8{bottom:522.080345px;}
.yde{bottom:522.094860px;}
.y76{bottom:522.114837px;}
.y9d{bottom:522.121735px;}
.y2f{bottom:522.145592px;}
.y5b{bottom:522.197041px;}
.y105{bottom:522.222766px;}
.y134{bottom:547.959960px;}
.yb7{bottom:547.973757px;}
.ydd{bottom:547.988272px;}
.y75{bottom:548.008248px;}
.y9c{bottom:548.015146px;}
.y2e{bottom:548.039003px;}
.y5a{bottom:548.090453px;}
.y101{bottom:548.125519px;}
.y102{bottom:570.540760px;}
.y100{bottom:570.888405px;}
.y133{bottom:573.821611px;}
.yb6{bottom:573.835407px;}
.ydc{bottom:573.849922px;}
.y74{bottom:573.869899px;}
.y9b{bottom:573.876797px;}
.y2d{bottom:573.900653px;}
.y59{bottom:573.952103px;}
.yb5{bottom:599.697058px;}
.ydb{bottom:599.711573px;}
.y73{bottom:599.731549px;}
.y9a{bottom:599.738447px;}
.y2c{bottom:599.762304px;}
.y58{bottom:599.813754px;}
.y132{bottom:617.453230px;}
.yb4{bottom:625.558708px;}
.yda{bottom:625.573223px;}
.y72{bottom:625.593200px;}
.y99{bottom:625.600098px;}
.y2b{bottom:625.623954px;}
.y57{bottom:625.675404px;}
.yf0{bottom:626.076079px;}
.yf1{bottom:645.226422px;}
.yef{bottom:645.269968px;}
.yd9{bottom:651.434874px;}
.y71{bottom:651.454850px;}
.y98{bottom:651.461748px;}
.y2a{bottom:651.485605px;}
.y56{bottom:651.537055px;}
.yb3{bottom:669.190327px;}
.y126{bottom:670.644150px;}
.yd8{bottom:677.296524px;}
.y70{bottom:677.316501px;}
.y97{bottom:677.323399px;}
.y29{bottom:677.347255px;}
.y55{bottom:677.398705px;}
.y131{bottom:677.435496px;}
.yd7{bottom:703.158175px;}
.y6f{bottom:703.178151px;}
.y96{bottom:703.185049px;}
.y28{bottom:703.208906px;}
.y54{bottom:703.260356px;}
.y130{bottom:703.310943px;}
.yb2{bottom:704.544011px;}
.y6e{bottom:729.039802px;}
.y95{bottom:729.046700px;}
.y27{bottom:729.070557px;}
.y53{bottom:729.122006px;}
.y12f{bottom:729.186390px;}
.y114{bottom:729.205360px;}
.yd6{bottom:736.098179px;}
.y113{bottom:750.762484px;}
.y115{bottom:751.802688px;}
.yd5{bottom:753.694253px;}
.y6d{bottom:754.901452px;}
.y94{bottom:754.908350px;}
.y26{bottom:754.932207px;}
.y52{bottom:754.983657px;}
.y12e{bottom:755.061837px;}
.yd4{bottom:755.246366px;}
.y93{bottom:780.770001px;}
.y25{bottom:780.793858px;}
.y51{bottom:780.845307px;}
.y12d{bottom:780.937284px;}
.y6c{bottom:780.942458px;}
.yff{bottom:803.190847px;}
.yfe{bottom:803.534324px;}
.yd3{bottom:806.642286px;}
.y24{bottom:806.655508px;}
.y50{bottom:806.706958px;}
.y92{bottom:806.761425px;}
.y12c{bottom:806.812731px;}
.y4{bottom:827.964000px;}
.y23{bottom:832.564728px;}
.y4f{bottom:832.616178px;}
.y91{bottom:832.667196px;}
.y12b{bottom:832.718502px;}
.yd2{bottom:836.353896px;}
.yd1{bottom:845.656944px;}
.y22{bottom:858.426379px;}
.y4e{bottom:858.477828px;}
.y90{bottom:858.542643px;}
.y12a{bottom:858.593949px;}
.y3{bottom:863.829000px;}
.yd0{bottom:884.285298px;}
.y21{bottom:884.288029px;}
.y129{bottom:884.294209px;}
.y4d{bottom:884.339479px;}
.y8f{bottom:884.418090px;}
.y2{bottom:899.695500px;}
.y128{bottom:910.155859px;}
.y4c{bottom:910.201129px;}
.y8e{bottom:910.293537px;}
.y20{bottom:910.676536px;}
.ycd{bottom:920.165263px;}
.ycf{bottom:928.780065px;}
.yb1{bottom:936.017510px;}
.y4b{bottom:936.062780px;}
.y8d{bottom:936.168985px;}
.y1f{bottom:936.541779px;}
.yce{bottom:938.266349px;}
.yb0{bottom:961.749961px;}
.y1e{bottom:961.892957px;}
.y4a{bottom:961.924430px;}
.y8c{bottom:962.044432px;}
.y1{bottom:962.460000px;}
.yaf{bottom:987.611612px;}
.y49{bottom:987.786081px;}
.y8b{bottom:987.919879px;}
.y1d{bottom:987.933963px;}
.ycc{bottom:987.936693px;}
.y1c{bottom:1012.089582px;}
.yae{bottom:1013.473262px;}
.ycb{bottom:1013.631923px;}
.y48{bottom:1013.647731px;}
.y8a{bottom:1013.795326px;}
.y1b{bottom:1037.957125px;}
.yca{bottom:1039.334913px;}
.y47{bottom:1039.509382px;}
.y89{bottom:1039.670773px;}
.y146{bottom:1039.671060px;}
.y1a{bottom:1063.824668px;}
.yc9{bottom:1065.196563px;}
.y46{bottom:1065.371032px;}
.y88{bottom:1065.546220px;}
.y19{bottom:1089.712331px;}
.y45{bottom:1091.264444px;}
.y87{bottom:1091.436901px;}
.y18{bottom:1116.615622px;}
.y43{bottom:1117.302863px;}
.y17{bottom:1134.551149px;}
.h27{height:41.141771px;}
.h15{height:41.648280px;}
.h5{height:42.079167px;}
.hf{height:42.149567px;}
.h4{height:42.192741px;}
.ha{height:42.214912px;}
.h1b{height:43.011852px;}
.h14{height:44.065456px;}
.hb{height:44.757979px;}
.h17{height:48.728868px;}
.h11{height:50.126713px;}
.h1c{height:51.021334px;}
.h29{height:51.664342px;}
.h19{height:53.052082px;}
.h1a{height:53.146395px;}
.h26{height:54.094908px;}
.h1d{height:54.484284px;}
.hd{height:54.699855px;}
.h13{height:55.562140px;}
.hc{height:56.039765px;}
.h12{height:56.553767px;}
.h9{height:56.904632px;}
.h10{height:58.417785px;}
.h18{height:60.393630px;}
.he{height:62.133613px;}
.h8{height:67.250929px;}
.h2{height:67.326667px;}
.h16{height:80.479770px;}
.h3{height:84.385482px;}
.h22{height:99.116962px;}
.h20{height:130.183472px;}
.h1f{height:132.907717px;}
.h1e{height:136.100902px;}
.h23{height:167.456027px;}
.h24{height:174.376726px;}
.h25{height:180.540914px;}
.h21{height:187.126327px;}
.h28{height:284.582850px;}
.h7{height:1209.915150px;}
.h6{height:1262.834700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:17.417835px;}
.w5{width:449.665800px;}
.w3{width:855.495900px;}
.w2{width:892.913400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:18.708705px;}
.x1{left:102.046500px;}
.x12{left:110.062052px;}
.x2c{left:120.665295px;}
.x2f{left:127.818224px;}
.x9{left:142.130545px;}
.x25{left:147.824385px;}
.x30{left:153.679875px;}
.x8{left:161.440439px;}
.x22{left:167.656939px;}
.x1e{left:175.762418px;}
.x1a{left:196.974628px;}
.x5{left:206.977133px;}
.x2b{left:212.323300px;}
.x27{left:215.599983px;}
.xa{left:224.567746px;}
.x11{left:234.570252px;}
.xb{left:268.759851px;}
.x29{left:271.691619px;}
.x10{left:277.727614px;}
.xc{left:298.575796px;}
.x17{left:307.735131px;}
.x15{left:336.880362px;}
.x20{left:338.432475px;}
.xd{left:360.228300px;}
.x14{left:361.714169px;}
.x6{left:374.131073px;}
.x4{left:402.619387px;}
.x16{left:403.959234px;}
.x19{left:417.738404px;}
.x1d{left:418.796140px;}
.x21{left:420.177090px;}
.xf{left:423.453772px;}
.x7{left:427.762754px;}
.x28{left:435.344682px;}
.x18{left:440.009644px;}
.x2d{left:441.900906px;}
.x24{left:480.910694px;}
.x1f{left:491.947941px;}
.x26{left:495.224624px;}
.x1c{left:516.091920px;}
.xe{left:536.996700px;}
.x2e{left:559.378625px;}
.x13{left:575.417125px;}
.x1b{left:743.612561px;}
.x2a{left:744.979427px;}
.x23{left:746.364687px;}
.x3{left:764.173602px;}
@media print{
.v8{vertical-align:-68.672119pt;}
.v9{vertical-align:-30.654933pt;}
.v3{vertical-align:-20.234954pt;}
.v4{vertical-align:-1.839541pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.428194pt;}
.v1{vertical-align:12.876789pt;}
.v2{vertical-align:20.234954pt;}
.va{vertical-align:30.702965pt;}
.vb{vertical-align:33.131160pt;}
.vc{vertical-align:39.282892pt;}
.v7{vertical-align:42.929783pt;}
.v6{vertical-align:45.355933pt;}
.vd{vertical-align:68.082444pt;}
.lsf{letter-spacing:-2.820630pt;}
.ls45{letter-spacing:-2.452722pt;}
.ls47{letter-spacing:-2.369329pt;}
.ls46{letter-spacing:-1.241077pt;}
.ls14{letter-spacing:-0.902602pt;}
.ls15{letter-spacing:-0.846189pt;}
.ls9{letter-spacing:-0.620539pt;}
.lsa{letter-spacing:-0.507713pt;}
.ls10{letter-spacing:-0.394888pt;}
.lsb{letter-spacing:-0.338476pt;}
.ls7{letter-spacing:-0.282063pt;}
.ls4e{letter-spacing:-0.225650pt;}
.ls4{letter-spacing:-0.207970pt;}
.ls22{letter-spacing:-0.203576pt;}
.ls5{letter-spacing:-0.101788pt;}
.ls3c{letter-spacing:-0.053960pt;}
.ls8{letter-spacing:-0.050894pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.112825pt;}
.ls42{letter-spacing:0.152682pt;}
.lse{letter-spacing:0.169238pt;}
.ls3d{letter-spacing:0.203576pt;}
.ls6{letter-spacing:0.215226pt;}
.ls3{letter-spacing:0.225650pt;}
.ls12{letter-spacing:0.225753pt;}
.ls2c{letter-spacing:0.269799pt;}
.lsd{letter-spacing:0.282063pt;}
.ls1{letter-spacing:0.305364pt;}
.ls30{letter-spacing:0.451096pt;}
.ls34{letter-spacing:0.507918pt;}
.ls26{letter-spacing:0.564024pt;}
.ls23{letter-spacing:0.564535pt;}
.ls2d{letter-spacing:0.917318pt;}
.ls25{letter-spacing:0.959014pt;}
.ls28{letter-spacing:0.961058pt;}
.ls27{letter-spacing:1.015325pt;}
.ls24{letter-spacing:1.015836pt;}
.ls3a{letter-spacing:1.025238pt;}
.ls2e{letter-spacing:1.348997pt;}
.ls2a{letter-spacing:1.410315pt;}
.ls2b{letter-spacing:1.834431pt;}
.ls4d{letter-spacing:5.754085pt;}
.lsc{letter-spacing:7.953972pt;}
.ls29{letter-spacing:10.577362pt;}
.ls11{letter-spacing:11.057176pt;}
.ls38{letter-spacing:11.601782pt;}
.ls3b{letter-spacing:11.763560pt;}
.ls44{letter-spacing:13.004535pt;}
.ls4a{letter-spacing:13.482304pt;}
.ls13{letter-spacing:13.482815pt;}
.ls41{letter-spacing:13.489969pt;}
.ls2f{letter-spacing:13.490071pt;}
.ls43{letter-spacing:14.103150pt;}
.ls36{letter-spacing:14.407696pt;}
.ls37{letter-spacing:14.892517pt;}
.ls39{letter-spacing:15.000948pt;}
.ls3f{letter-spacing:15.280047pt;}
.ls32{letter-spacing:15.513056pt;}
.ls31{letter-spacing:15.852247pt;}
.ls3e{letter-spacing:18.333686pt;}
.ls40{letter-spacing:21.437912pt;}
.ls4b{letter-spacing:33.960282pt;}
.ls48{letter-spacing:33.960384pt;}
.ls4c{letter-spacing:33.960486pt;}
.ls49{letter-spacing:33.960589pt;}
.ls33{letter-spacing:81.459894pt;}
.ls17{letter-spacing:141.045292pt;}
.ls1c{letter-spacing:141.790817pt;}
.ls19{letter-spacing:169.985875pt;}
.ls18{letter-spacing:192.073655pt;}
.ls1e{letter-spacing:255.233282pt;}
.ls1a{letter-spacing:266.346155pt;}
.ls1f{letter-spacing:295.050153pt;}
.ls1d{letter-spacing:331.999382pt;}
.ls21{letter-spacing:344.881281pt;}
.ls35{letter-spacing:351.614002pt;}
.ls20{letter-spacing:361.296121pt;}
.ls1b{letter-spacing:448.367229pt;}
.ls16{letter-spacing:494.989891pt;}
.ws1a{word-spacing:-56.412598pt;}
.ws1b{word-spacing:-53.959877pt;}
.wsa{word-spacing:-18.150753pt;}
.ws14{word-spacing:-15.329510pt;}
.ws16{word-spacing:-14.385213pt;}
.ws11{word-spacing:-14.328800pt;}
.ws15{word-spacing:-14.272387pt;}
.ws13{word-spacing:-14.215975pt;}
.wse{word-spacing:-14.103150pt;}
.ws8{word-spacing:-14.046737pt;}
.ws4{word-spacing:-14.032699pt;}
.ws24{word-spacing:-13.877499pt;}
.wsc{word-spacing:-13.821087pt;}
.ws12{word-spacing:-13.764674pt;}
.ws10{word-spacing:-13.595436pt;}
.ws1c{word-spacing:-13.489969pt;}
.wsf{word-spacing:-13.482611pt;}
.ws18{word-spacing:-13.200548pt;}
.ws22{word-spacing:-12.876789pt;}
.ws21{word-spacing:-12.876176pt;}
.wsd{word-spacing:-12.723494pt;}
.ws20{word-spacing:-12.672600pt;}
.ws19{word-spacing:-12.519918pt;}
.ws23{word-spacing:-11.733820pt;}
.ws17{word-spacing:-11.282520pt;}
.ws9{word-spacing:-9.205064pt;}
.wsb{word-spacing:-8.891116pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.100955pt;}
.ws6{word-spacing:0.151432pt;}
.ws7{word-spacing:0.151762pt;}
.ws3{word-spacing:13.982221pt;}
.ws1{word-spacing:27.964443pt;}
.ws2{word-spacing:28.166352pt;}
.ws1e{word-spacing:52.718697pt;}
.ws1f{word-spacing:129.244635pt;}
.ws1d{word-spacing:195.732503pt;}
._1c{margin-left:-13.975404pt;}
._1{margin-left:-8.177328pt;}
._19{margin-left:-6.995162pt;}
._4{margin-left:-6.057280pt;}
._a{margin-left:-4.946779pt;}
._e{margin-left:-3.948882pt;}
._3{margin-left:-2.725776pt;}
._0{margin-left:-1.615275pt;}
._b{width:1.011748pt;}
._2{width:2.019093pt;}
._11{width:2.948894pt;}
._12{width:3.994596pt;}
._13{width:5.536413pt;}
._14{width:6.539562pt;}
._15{width:7.482185pt;}
._7{width:8.429715pt;}
._f{width:9.620463pt;}
._c{width:10.798469pt;}
._10{width:11.888585pt;}
._16{width:12.974898pt;}
._d{width:15.305476pt;}
._8{width:16.607043pt;}
._9{width:17.969931pt;}
._6{width:33.113131pt;}
._5{width:39.372320pt;}
._1a{width:131.875619pt;}
._1b{width:208.577116pt;}
._17{width:462.722506pt;}
._18{width:476.795499pt;}
._1d{width:721.855607pt;}
.fs6{font-size:33.111742pt;}
.fsb{font-size:35.564464pt;}
.fsf{font-size:38.630366pt;}
.fse{font-size:41.083088pt;}
.fs2{font-size:50.477333pt;}
.fs5{font-size:50.893975pt;}
.fs7{font-size:53.959877pt;}
.fs4{font-size:56.208205pt;}
.fsa{font-size:56.412598pt;}
.fsd{font-size:61.318042pt;}
.fs3{font-size:66.427878pt;}
.fs8{font-size:71.742109pt;}
.fs0{font-size:80.763733pt;}
.fs9{font-size:81.552995pt;}
.fs1{font-size:100.954667pt;}
.fsc{font-size:102.196533pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:1.685929pt;}
.y42{bottom:10.475145pt;}
.y15{bottom:16.304467pt;}
.y16{bottom:16.599816pt;}
.y14{bottom:23.519760pt;}
.y41{bottom:28.821160pt;}
.y44{bottom:66.522155pt;}
.y40{bottom:73.202858pt;}
.yad{bottom:84.624263pt;}
.y125{bottom:96.121396pt;}
.y112{bottom:96.133659pt;}
.yfd{bottom:96.141937pt;}
.y145{bottom:96.154201pt;}
.y3f{bottom:96.190992pt;}
.yc8{bottom:96.218993pt;}
.yee{bottom:96.231870pt;}
.y86{bottom:96.257522pt;}
.y6b{bottom:96.322723pt;}
.y13{bottom:99.089333pt;}
.yac{bottom:107.612397pt;}
.y12{bottom:115.030667pt;}
.y124{bottom:119.109529pt;}
.y111{bottom:119.121793pt;}
.yfc{bottom:119.130071pt;}
.y144{bottom:119.142334pt;}
.y3e{bottom:119.179125pt;}
.yc7{bottom:119.207127pt;}
.yed{bottom:119.220004pt;}
.y85{bottom:119.257919pt;}
.y6a{bottom:119.310857pt;}
.yab{bottom:130.600530pt;}
.y11{bottom:130.970667pt;}
.y123{bottom:142.097663pt;}
.y110{bottom:142.109927pt;}
.yfb{bottom:142.118230pt;}
.y143{bottom:142.130494pt;}
.y3d{bottom:142.167285pt;}
.yc6{bottom:142.195261pt;}
.yec{bottom:142.208163pt;}
.y84{bottom:142.244826pt;}
.y69{bottom:142.298991pt;}
.y10{bottom:146.910667pt;}
.yaa{bottom:153.588664pt;}
.y83{bottom:165.085797pt;}
.y10f{bottom:165.098061pt;}
.yfa{bottom:165.106364pt;}
.y142{bottom:165.118628pt;}
.y3c{bottom:165.155418pt;}
.yc5{bottom:165.183395pt;}
.yeb{bottom:165.196297pt;}
.y68{bottom:165.287124pt;}
.ya9{bottom:176.736225pt;}
.y10e{bottom:188.086194pt;}
.yf9{bottom:188.094498pt;}
.y141{bottom:188.106761pt;}
.y3b{bottom:188.143552pt;}
.yc4{bottom:188.171529pt;}
.yea{bottom:188.184431pt;}
.y82{bottom:188.233358pt;}
.y67{bottom:188.275258pt;}
.ya8{bottom:200.650261pt;}
.y122{bottom:203.869458pt;}
.yf{bottom:210.672000pt;}
.y10d{bottom:211.074328pt;}
.yf8{bottom:211.082632pt;}
.y140{bottom:211.094895pt;}
.y81{bottom:211.119422pt;}
.y3a{bottom:211.131686pt;}
.yc3{bottom:211.159662pt;}
.ye9{bottom:211.172565pt;}
.y66{bottom:211.263392pt;}
.ya7{bottom:224.257707pt;}
.ye{bottom:226.612000pt;}
.yf7{bottom:234.070765pt;}
.y13f{bottom:234.083029pt;}
.y80{bottom:234.107556pt;}
.y39{bottom:234.119820pt;}
.yc2{bottom:234.147796pt;}
.ye8{bottom:234.160699pt;}
.y11a{bottom:234.221889pt;}
.y65{bottom:234.251526pt;}
.yd{bottom:242.552000pt;}
.ya6{bottom:247.903477pt;}
.y10c{bottom:249.896313pt;}
.y119{bottom:254.493889pt;}
.yf6{bottom:257.101183pt;}
.y13e{bottom:257.113447pt;}
.y7f{bottom:257.137974pt;}
.y38{bottom:257.150238pt;}
.yc1{bottom:257.178214pt;}
.ye7{bottom:257.191116pt;}
.y64{bottom:257.281944pt;}
.yc{bottom:258.492000pt;}
.ya5{bottom:271.664218pt;}
.y13d{bottom:280.101581pt;}
.y7e{bottom:280.126108pt;}
.y37{bottom:280.138371pt;}
.yc0{bottom:280.166348pt;}
.ye6{bottom:280.179250pt;}
.y121{bottom:280.209143pt;}
.y104{bottom:280.248744pt;}
.y63{bottom:280.270077pt;}
.ya4{bottom:294.811779pt;}
.yf5{bottom:295.884844pt;}
.y103{bottom:300.481015pt;}
.y13c{bottom:303.089714pt;}
.y7d{bottom:303.114242pt;}
.y36{bottom:303.126505pt;}
.ybf{bottom:303.154481pt;}
.ye5{bottom:303.167384pt;}
.y120{bottom:303.209540pt;}
.y62{bottom:303.258211pt;}
.yb{bottom:306.313333pt;}
.ya3{bottom:318.879110pt;}
.ya{bottom:322.253333pt;}
.y13b{bottom:325.930685pt;}
.y7c{bottom:326.102375pt;}
.y35{bottom:326.114639pt;}
.ybe{bottom:326.142615pt;}
.ye4{bottom:326.155518pt;}
.y10b{bottom:326.195630pt;}
.y11f{bottom:326.209937pt;}
.y61{bottom:326.246345pt;}
.yf3{bottom:326.543865pt;}
.yf4{bottom:343.411181pt;}
.yf2{bottom:343.554512pt;}
.y7b{bottom:349.090509pt;}
.y34{bottom:349.102773pt;}
.y13a{bottom:349.118485pt;}
.ybd{bottom:349.130749pt;}
.ye3{bottom:349.143651pt;}
.ya2{bottom:349.167540pt;}
.y10a{bottom:349.196027pt;}
.y11e{bottom:349.210335pt;}
.y60{bottom:349.234479pt;}
.y9{bottom:354.133333pt;}
.y8{bottom:370.073333pt;}
.y7a{bottom:372.078643pt;}
.y33{bottom:372.090907pt;}
.y139{bottom:372.106619pt;}
.ybc{bottom:372.118883pt;}
.ye2{bottom:372.131785pt;}
.ya1{bottom:372.155674pt;}
.y109{bottom:372.196425pt;}
.y11d{bottom:372.210732pt;}
.y5f{bottom:372.222613pt;}
.y7{bottom:386.013333pt;}
.y79{bottom:395.066777pt;}
.y32{bottom:395.079040pt;}
.y138{bottom:395.094753pt;}
.ybb{bottom:395.107017pt;}
.ye1{bottom:395.119919pt;}
.ya0{bottom:395.143807pt;}
.y108{bottom:395.196822pt;}
.y5e{bottom:395.210746pt;}
.y11c{bottom:395.211130pt;}
.y6{bottom:401.954667pt;}
.y31{bottom:418.067174pt;}
.y137{bottom:418.082887pt;}
.yba{bottom:418.095150pt;}
.ye0{bottom:418.108053pt;}
.y9f{bottom:418.131941pt;}
.y107{bottom:418.197219pt;}
.y5d{bottom:418.198880pt;}
.y11b{bottom:418.211527pt;}
.y78{bottom:418.214337pt;}
.y30{bottom:441.055308pt;}
.y136{bottom:441.071021pt;}
.yb9{bottom:441.083284pt;}
.ydf{bottom:441.096187pt;}
.y77{bottom:441.113943pt;}
.y9e{bottom:441.120075pt;}
.y5c{bottom:441.187014pt;}
.y106{bottom:441.197617pt;}
.y117{bottom:441.208603pt;}
.y5{bottom:441.805333pt;}
.y116{bottom:461.292561pt;}
.y118{bottom:461.443557pt;}
.y135{bottom:464.059154pt;}
.yb8{bottom:464.071418pt;}
.yde{bottom:464.084320pt;}
.y76{bottom:464.102077pt;}
.y9d{bottom:464.108209pt;}
.y2f{bottom:464.129415pt;}
.y5b{bottom:464.175148pt;}
.y105{bottom:464.198014pt;}
.y134{bottom:487.075520pt;}
.yb7{bottom:487.087784pt;}
.ydd{bottom:487.100686pt;}
.y75{bottom:487.118443pt;}
.y9c{bottom:487.124575pt;}
.y2e{bottom:487.145780pt;}
.y5a{bottom:487.191513pt;}
.y101{bottom:487.222683pt;}
.y102{bottom:507.147342pt;}
.y100{bottom:507.456360pt;}
.y133{bottom:510.063654pt;}
.yb6{bottom:510.075917pt;}
.ydc{bottom:510.088820pt;}
.y74{bottom:510.106577pt;}
.y9b{bottom:510.112708pt;}
.y2d{bottom:510.133914pt;}
.y59{bottom:510.179647pt;}
.yb5{bottom:533.064051pt;}
.ydb{bottom:533.076954pt;}
.y73{bottom:533.094710pt;}
.y9a{bottom:533.100842pt;}
.y2c{bottom:533.122048pt;}
.y58{bottom:533.167781pt;}
.y132{bottom:548.847315pt;}
.yb4{bottom:556.052185pt;}
.yda{bottom:556.065087pt;}
.y72{bottom:556.082844pt;}
.y99{bottom:556.088976pt;}
.y2b{bottom:556.110182pt;}
.y57{bottom:556.155915pt;}
.yf0{bottom:556.512070pt;}
.yf1{bottom:573.534597pt;}
.yef{bottom:573.573304pt;}
.yd9{bottom:579.053221pt;}
.y71{bottom:579.070978pt;}
.y98{bottom:579.077110pt;}
.y2a{bottom:579.098316pt;}
.y56{bottom:579.144049pt;}
.yb3{bottom:594.835846pt;}
.y126{bottom:596.128133pt;}
.yd8{bottom:602.041355pt;}
.y70{bottom:602.059112pt;}
.y97{bottom:602.065244pt;}
.y29{bottom:602.086449pt;}
.y55{bottom:602.132182pt;}
.y131{bottom:602.164885pt;}
.yd7{bottom:625.029489pt;}
.y6f{bottom:625.047245pt;}
.y96{bottom:625.053377pt;}
.y28{bottom:625.074583pt;}
.y54{bottom:625.120316pt;}
.y130{bottom:625.165283pt;}
.yb2{bottom:626.261343pt;}
.y6e{bottom:648.035379pt;}
.y95{bottom:648.041511pt;}
.y27{bottom:648.062717pt;}
.y53{bottom:648.108450pt;}
.y12f{bottom:648.165680pt;}
.y114{bottom:648.182543pt;}
.yd6{bottom:654.309492pt;}
.y113{bottom:667.344431pt;}
.y115{bottom:668.269056pt;}
.yd5{bottom:669.950447pt;}
.y6d{bottom:671.023513pt;}
.y94{bottom:671.029645pt;}
.y26{bottom:671.050851pt;}
.y52{bottom:671.096584pt;}
.y12e{bottom:671.166078pt;}
.yd4{bottom:671.330103pt;}
.y93{bottom:694.017779pt;}
.y25{bottom:694.038985pt;}
.y51{bottom:694.084718pt;}
.y12d{bottom:694.166475pt;}
.y6c{bottom:694.171074pt;}
.yff{bottom:713.947420pt;}
.yfe{bottom:714.252732pt;}
.yd3{bottom:717.015366pt;}
.y24{bottom:717.027118pt;}
.y50{bottom:717.072851pt;}
.y92{bottom:717.121267pt;}
.y12c{bottom:717.166872pt;}
.y4{bottom:735.968000pt;}
.y23{bottom:740.057536pt;}
.y4f{bottom:740.103269pt;}
.y91{bottom:740.148619pt;}
.y12b{bottom:740.194224pt;}
.yd2{bottom:743.425685pt;}
.yd1{bottom:751.695062pt;}
.y22{bottom:763.045670pt;}
.y4e{bottom:763.091403pt;}
.y90{bottom:763.149016pt;}
.y12a{bottom:763.194622pt;}
.y3{bottom:767.848000pt;}
.yd0{bottom:786.031376pt;}
.y21{bottom:786.033804pt;}
.y129{bottom:786.039297pt;}
.y4d{bottom:786.079537pt;}
.y8f{bottom:786.149414pt;}
.y2{bottom:799.729333pt;}
.y128{bottom:809.027430pt;}
.y4c{bottom:809.067670pt;}
.y8e{bottom:809.149811pt;}
.y20{bottom:809.490254pt;}
.ycd{bottom:817.924678pt;}
.ycf{bottom:825.582280pt;}
.yb1{bottom:832.015564pt;}
.y4b{bottom:832.055804pt;}
.y8d{bottom:832.150208pt;}
.y1f{bottom:832.481581pt;}
.yce{bottom:834.014532pt;}
.yb0{bottom:854.888854pt;}
.y1e{bottom:855.015962pt;}
.y4a{bottom:855.043938pt;}
.y8c{bottom:855.150606pt;}
.y1{bottom:855.520000pt;}
.yaf{bottom:877.876988pt;}
.y49{bottom:878.032072pt;}
.y8b{bottom:878.151003pt;}
.y1d{bottom:878.163522pt;}
.ycc{bottom:878.165950pt;}
.y1c{bottom:899.635184pt;}
.yae{bottom:900.865122pt;}
.ycb{bottom:901.006154pt;}
.y48{bottom:901.020206pt;}
.y8a{bottom:901.151401pt;}
.y1b{bottom:922.628556pt;}
.yca{bottom:923.853256pt;}
.y47{bottom:924.008339pt;}
.y89{bottom:924.151798pt;}
.y146{bottom:924.152054pt;}
.y1a{bottom:945.621927pt;}
.yc9{bottom:946.841390pt;}
.y46{bottom:946.996473pt;}
.y88{bottom:947.152195pt;}
.y19{bottom:968.633183pt;}
.y45{bottom:970.012839pt;}
.y87{bottom:970.166134pt;}
.y18{bottom:992.547219pt;}
.y43{bottom:993.158100pt;}
.y17{bottom:1008.489910pt;}
.h27{height:36.570463pt;}
.h15{height:37.020693pt;}
.h5{height:37.403704pt;}
.hf{height:37.466282pt;}
.h4{height:37.504659pt;}
.ha{height:37.524366pt;}
.h1b{height:38.232757pt;}
.h14{height:39.169294pt;}
.hb{height:39.784870pt;}
.h17{height:43.314550pt;}
.h11{height:44.557078pt;}
.h1c{height:45.352297pt;}
.h29{height:45.923860pt;}
.h19{height:47.157406pt;}
.h1a{height:47.241240pt;}
.h26{height:48.084363pt;}
.h1d{height:48.430474pt;}
.hd{height:48.622093pt;}
.h13{height:49.388569pt;}
.hc{height:49.813124pt;}
.h12{height:50.270016pt;}
.h9{height:50.581895pt;}
.h10{height:51.926920pt;}
.h18{height:53.683227pt;}
.he{height:55.229879pt;}
.h8{height:59.778603pt;}
.h2{height:59.845926pt;}
.h16{height:71.537573pt;}
.h3{height:75.009317pt;}
.h22{height:88.103966pt;}
.h20{height:115.718642pt;}
.h1f{height:118.140193pt;}
.h1e{height:120.978580pt;}
.h23{height:148.849801pt;}
.h24{height:155.001534pt;}
.h25{height:160.480812pt;}
.h21{height:166.334513pt;}
.h28{height:252.962533pt;}
.h7{height:1075.480133pt;}
.h6{height:1122.519733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:15.482520pt;}
.w5{width:399.702933pt;}
.w3{width:760.440800pt;}
.w2{width:793.700800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:16.629960pt;}
.x1{left:90.708000pt;}
.x12{left:97.832935pt;}
.x2c{left:107.258040pt;}
.x2f{left:113.616199pt;}
.x9{left:126.338262pt;}
.x25{left:131.399453pt;}
.x30{left:136.604333pt;}
.x8{left:143.502613pt;}
.x22{left:149.028390pt;}
.x1e{left:156.233260pt;}
.x1a{left:175.088558pt;}
.x5{left:183.979674pt;}
.x2b{left:188.731822pt;}
.x27{left:191.644429pt;}
.xa{left:199.615775pt;}
.x11{left:208.506891pt;}
.xb{left:238.897645pt;}
.x29{left:241.503662pt;}
.x10{left:246.868990pt;}
.xc{left:265.400708pt;}
.x17{left:273.542338pt;}
.x15{left:299.449211pt;}
.x20{left:300.828867pt;}
.xd{left:320.202933pt;}
.x14{left:321.523706pt;}
.x6{left:332.560954pt;}
.x4{left:357.883900pt;}
.x16{left:359.074875pt;}
.x19{left:371.323026pt;}
.x1d{left:372.263236pt;}
.x21{left:373.490746pt;}
.xf{left:376.403353pt;}
.x7{left:380.233559pt;}
.x28{left:386.973051pt;}
.x18{left:391.119683pt;}
.x2d{left:392.800805pt;}
.x24{left:427.476172pt;}
.x1f{left:437.287059pt;}
.x26{left:440.199666pt;}
.x1c{left:458.748373pt;}
.xe{left:477.330400pt;}
.x2e{left:497.225444pt;}
.x13{left:511.481889pt;}
.x1b{left:660.988943pt;}
.x2a{left:662.203935pt;}
.x23{left:663.435278pt;}
.x3{left:679.265424pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
