
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9c21a66b51dc778d3d3a5317.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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('chunks/assets/font_a4838d140d9a7c995eb849e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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('chunks/assets/font_9b6fe4420eb5c113a5eee781.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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('chunks/assets/font_edbfb6710b1841bca129948a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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('chunks/assets/font_5d4ab08908de4406774ef398.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998047;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('chunks/assets/font_218a261b8b7dc59c65013319.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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('chunks/assets/font_b8ae0383ea8632d4d6738f84.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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('chunks/assets/font_68e990fd9844582b49ed5f4e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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('chunks/assets/font_b50da1ce87ce077dbe0e6f10.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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('chunks/assets/font_8677ef78c10d0842e07be18e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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('chunks/assets/font_23914ff5a3c162980cced76d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_65250be899fdbe0ff1731634.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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;}
.m7{transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248326,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);}
.ma{transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253004,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253381,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253464,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253988,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254113,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254162,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254381,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254499,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:30.960000px;}
.v4{vertical-align:36.000000px;}
.v2{vertical-align:53.280000px;}
.ls65{letter-spacing:-1.458000px;}
.ls7{letter-spacing:-1.098000px;}
.ls8{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.828000px;}
.ls28{letter-spacing:-0.672000px;}
.lse{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.356450px;}
.lsd{letter-spacing:-0.350400px;}
.ls5{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.064800px;}
.ls4{letter-spacing:-0.028080px;}
.ls3{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls27{letter-spacing:0.048960px;}
.ls49{letter-spacing:0.071289px;}
.ls11{letter-spacing:0.131040px;}
.ls10{letter-spacing:0.172080px;}
.ls38{letter-spacing:0.187200px;}
.ls51{letter-spacing:0.247503px;}
.ls36{letter-spacing:0.252720px;}
.ls3e{letter-spacing:0.253200px;}
.ls1e{letter-spacing:0.331200px;}
.ls25{letter-spacing:0.341280px;}
.lsc{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.378600px;}
.ls63{letter-spacing:0.378720px;}
.ls3a{letter-spacing:0.412504px;}
.ls18{letter-spacing:0.485280px;}
.ls13{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.540000px;}
.ls40{letter-spacing:0.712890px;}
.ls43{letter-spacing:0.783590px;}
.ls46{letter-spacing:0.854290px;}
.ls2b{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.980000px;}
.ls4e{letter-spacing:2.038320px;}
.ls9{letter-spacing:2.700000px;}
.ls50{letter-spacing:2.838960px;}
.ls19{letter-spacing:3.420000px;}
.ls1a{letter-spacing:4.140000px;}
.ls1f{letter-spacing:4.860000px;}
.ls20{letter-spacing:5.040000px;}
.ls34{letter-spacing:5.580000px;}
.ls35{letter-spacing:5.760000px;}
.ls2d{letter-spacing:6.300000px;}
.ls26{letter-spacing:7.020000px;}
.ls23{letter-spacing:7.740000px;}
.ls2c{letter-spacing:7.860000px;}
.ls22{letter-spacing:8.460000px;}
.ls24{letter-spacing:9.180000px;}
.ls31{letter-spacing:12.780000px;}
.ls33{letter-spacing:12.960000px;}
.ls2f{letter-spacing:13.500000px;}
.ls2a{letter-spacing:14.220000px;}
.ls2e{letter-spacing:14.940000px;}
.ls30{letter-spacing:15.660000px;}
.ls32{letter-spacing:16.380000px;}
.ls17{letter-spacing:17.820000px;}
.ls4b{letter-spacing:18.235853px;}
.ls4d{letter-spacing:18.306553px;}
.ls3c{letter-spacing:19.094856px;}
.ls39{letter-spacing:19.096035px;}
.ls42{letter-spacing:19.165556px;}
.ls15{letter-spacing:19.260000px;}
.ls48{letter-spacing:19.306956px;}
.ls45{letter-spacing:19.377656px;}
.ls4a{letter-spacing:19.588577px;}
.ls4c{letter-spacing:19.665169px;}
.ls37{letter-spacing:20.377470px;}
.ls3b{letter-spacing:20.518869px;}
.ls16{letter-spacing:20.700000px;}
.ls44{letter-spacing:20.730969px;}
.ls47{letter-spacing:20.801669px;}
.ls4f{letter-spacing:22.278960px;}
.ls12{letter-spacing:24.214320px;}
.ls1d{letter-spacing:29.340000px;}
.ls1b{letter-spacing:30.036000px;}
.ls1c{letter-spacing:30.060000px;}
.ls21{letter-spacing:34.181280px;}
.ls3f{letter-spacing:117.008283px;}
.ls41{letter-spacing:143.049401px;}
.ls52{letter-spacing:158.897955px;}
.ls5b{letter-spacing:218.875010px;}
.ls53{letter-spacing:232.720401px;}
.ls54{letter-spacing:241.793551px;}
.ls5d{letter-spacing:247.154958px;}
.ls64{letter-spacing:250.572118px;}
.ls61{letter-spacing:251.809366px;}
.ls5f{letter-spacing:254.048195px;}
.ls5a{letter-spacing:258.940215px;}
.ls59{letter-spacing:263.005488px;}
.ls5c{letter-spacing:264.831915px;}
.ls58{letter-spacing:266.540508px;}
.ls55{letter-spacing:273.137160px;}
.ls5e{letter-spacing:291.049980px;}
.ls60{letter-spacing:299.003775px;}
.ls62{letter-spacing:304.424139px;}
.ls56{letter-spacing:315.498164px;}
.ls57{letter-spacing:319.209908px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws27{word-spacing:-263.088414px;}
.wsf{word-spacing:-66.288960px;}
.ws13{word-spacing:-66.240000px;}
.ws10{word-spacing:-65.568000px;}
.ws11{word-spacing:-65.412000px;}
.ws0{word-spacing:-24.300000px;}
.wsb{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.401400px;}
.ws14{word-spacing:-21.312720px;}
.wse{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws3{word-spacing:-21.031920px;}
.ws7{word-spacing:-20.995200px;}
.ws9{word-spacing:-20.709600px;}
.ws5{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.681400px;}
.ws12{word-spacing:-19.980000px;}
.ws33{word-spacing:-19.602000px;}
.ws19{word-spacing:-18.786000px;}
.wsc{word-spacing:-13.147200px;}
.ws20{word-spacing:-0.936932px;}
.ws1d{word-spacing:-0.866091px;}
.ws1b{word-spacing:-0.795533px;}
.ws22{word-spacing:-0.153790px;}
.wsd{word-spacing:-0.100080px;}
.ws18{word-spacing:-0.082642px;}
.ws6{word-spacing:0.000000px;}
.ws16{word-spacing:27.199622px;}
.ws28{word-spacing:34.331230px;}
.ws2b{word-spacing:34.497082px;}
.ws26{word-spacing:34.580008px;}
.ws15{word-spacing:46.604231px;}
.ws23{word-spacing:62.040643px;}
.ws30{word-spacing:64.845672px;}
.ws21{word-spacing:68.228207px;}
.ws1c{word-spacing:68.475710px;}
.ws1f{word-spacing:68.558211px;}
.ws24{word-spacing:70.043226px;}
.ws29{word-spacing:70.208228px;}
.ws2e{word-spacing:70.950735px;}
.ws32{word-spacing:71.072339px;}
.ws2c{word-spacing:71.816120px;}
.ws1e{word-spacing:76.313291px;}
.ws1a{word-spacing:77.468303px;}
.ws25{word-spacing:127.954320px;}
.ws17{word-spacing:161.373368px;}
.ws2d{word-spacing:253.586722px;}
.ws2a{word-spacing:260.884181px;}
.ws2f{word-spacing:261.464661px;}
.ws31{word-spacing:266.854830px;}
._2a{margin-left:-2109.761946px;}
._32{margin-left:-2019.871395px;}
._4e{margin-left:-748.909417px;}
._53{margin-left:-730.478300px;}
._4b{margin-left:-713.591891px;}
._48{margin-left:-649.490336px;}
._44{margin-left:-574.100838px;}
._41{margin-left:-568.450628px;}
._63{margin-left:-557.606543px;}
._5f{margin-left:-543.096022px;}
._5b{margin-left:-535.076682px;}
._66{margin-left:-521.619358px;}
._62{margin-left:-515.670188px;}
._57{margin-left:-508.605863px;}
._50{margin-left:-500.920120px;}
._5e{margin-left:-485.618475px;}
._5a{margin-left:-477.165943px;}
._56{margin-left:-442.242532px;}
._3e{margin-left:-410.127753px;}
._3d{margin-left:-396.280465px;}
._65{margin-left:-331.856631px;}
._39{margin-left:-330.441943px;}
._61{margin-left:-326.466462px;}
._5d{margin-left:-318.729923px;}
._52{margin-left:-294.265670px;}
._59{margin-left:-292.608335px;}
._4c{margin-left:-287.108043px;}
._4d{margin-left:-285.686976px;}
._49{margin-left:-280.558878px;}
._4a{margin-left:-279.133098px;}
._42{margin-left:-253.339429px;}
._43{margin-left:-251.915416px;}
._45{margin-left:-250.635159px;}
._46{margin-left:-248.781055px;}
._3f{margin-left:-243.512147px;}
._40{margin-left:-242.229534px;}
._3a{margin-left:-201.336730px;}
._3b{margin-left:-199.765425px;}
._36{margin-left:-167.421413px;}
._37{margin-left:-163.577108px;}
._20{margin-left:-9.018720px;}
._21{margin-left:-6.997440px;}
._22{margin-left:-5.961120px;}
._18{margin-left:-4.940160px;}
._3{margin-left:-3.258720px;}
._2{margin-left:-2.230320px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._10{width:2.529120px;}
._14{width:3.700560px;}
._11{width:4.885920px;}
._1f{width:5.952480px;}
._d{width:7.076160px;}
._c{width:8.171280px;}
._e{width:9.771840px;}
._f{width:10.930560px;}
._13{width:12.952320px;}
._4{width:13.983840px;}
._5{width:15.792960px;}
._9{width:17.606160px;}
._a{width:18.671280px;}
._b{width:19.806960px;}
._15{width:22.128480px;}
._7{width:23.334480px;}
._8{width:24.345360px;}
._12{width:25.844400px;}
._6{width:27.378000px;}
._1a{width:29.359680px;}
._1e{width:30.476400px;}
._19{width:32.600880px;}
._1c{width:36.307440px;}
._1b{width:37.381920px;}
._1d{width:39.124800px;}
._31{width:40.965285px;}
._16{width:50.628240px;}
._17{width:68.567280px;}
._3c{width:74.910777px;}
._55{width:77.385802px;}
._38{width:79.778327px;}
._47{width:80.933339px;}
._30{width:85.770502px;}
._28{width:91.292498px;}
._2c{width:101.644817px;}
._24{width:112.211832px;}
._23{width:118.666645px;}
._27{width:121.486118px;}
._26{width:124.982386px;}
._2f{width:131.768902px;}
._2e{width:140.641949px;}
._25{width:145.250406px;}
._54{width:152.085693px;}
._58{width:157.807564px;}
._51{width:159.383152px;}
._5c{width:183.846227px;}
._60{width:191.724166px;}
._64{width:197.114335px;}
._33{width:209.470261px;}
._2b{width:217.099424px;}
._2d{width:224.728586px;}
._4f{width:267.767013px;}
._34{width:308.732297px;}
._35{width:658.429879px;}
._29{width:695.000103px;}
.fc4{color:rgb(33,37,41);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.240000px;}
.fs7{font-size:48.303439px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:82.500855px;}
.fsa{font-size:82.642255px;}
.fs9{font-size:82.925678px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs8{font-size:125.388034px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.785817px;}
.y3{bottom:3.960000px;}
.ya3{bottom:4.749853px;}
.ya0{bottom:4.749859px;}
.yec{bottom:4.749873px;}
.yd5{bottom:4.749876px;}
.yb0{bottom:4.749887px;}
.yc1{bottom:4.749893px;}
.yc3{bottom:4.749894px;}
.yba{bottom:4.749895px;}
.yd1{bottom:4.749901px;}
.yfd{bottom:4.749933px;}
.yac{bottom:4.785645px;}
.ya5{bottom:4.785665px;}
.yd7{bottom:4.785668px;}
.yb2{bottom:4.785679px;}
.yd9{bottom:4.785685px;}
.yb8{bottom:4.785686px;}
.ycf{bottom:4.785692px;}
.yb4{bottom:4.785725px;}
.ybc{bottom:4.785726px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y9c{bottom:9.178532px;}
.yf1{bottom:9.178548px;}
.ye5{bottom:9.178562px;}
.yde{bottom:9.178572px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y7b{bottom:22.749545px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.y31{bottom:90.576000px;}
.yab{bottom:97.290000px;}
.yfb{bottom:100.515000px;}
.y120{bottom:100.836000px;}
.yad{bottom:101.736000px;}
.yfa{bottom:109.476000px;}
.y30{bottom:118.296000px;}
.y78{bottom:120.096000px;}
.ya9{bottom:120.690000px;}
.y54{bottom:122.976000px;}
.yaa{bottom:125.136000px;}
.y11f{bottom:128.556000px;}
.ya8{bottom:129.636000px;}
.yf9{bottom:137.196000px;}
.y2f{bottom:146.016000px;}
.y77{bottom:147.816000px;}
.y53{bottom:150.870000px;}
.yf7{bottom:156.315000px;}
.y11e{bottom:156.450000px;}
.ya7{bottom:158.970000px;}
.yf8{bottom:165.270000px;}
.y2e{bottom:173.730000px;}
.y76{bottom:175.530000px;}
.ya4{bottom:177.914980px;}
.y52{bottom:178.590000px;}
.y11d{bottom:184.170000px;}
.ya6{bottom:186.870000px;}
.yf6{bottom:189.990000px;}
.yf5{bottom:198.930000px;}
.y2d{bottom:201.630000px;}
.y75{bottom:203.250000px;}
.y51{bottom:206.310000px;}
.y9f{bottom:207.464980px;}
.ya2{bottom:207.465000px;}
.ya1{bottom:211.890000px;}
.y9e{bottom:216.390000px;}
.yf4{bottom:226.650000px;}
.y2c{bottom:229.350000px;}
.y74{bottom:231.150000px;}
.y50{bottom:234.030000px;}
.y11c{bottom:239.610000px;}
.y9d{bottom:245.550000px;}
.yf2{bottom:245.789980px;}
.yf3{bottom:254.730000px;}
.y2b{bottom:257.070000px;}
.y73{bottom:258.870000px;}
.y4f{bottom:261.930000px;}
.y11b{bottom:267.510000px;}
.y9b{bottom:268.815000px;}
.y9a{bottom:277.770000px;}
.yf0{bottom:279.464980px;}
.y2a{bottom:284.970000px;}
.y72{bottom:286.590000px;}
.yef{bottom:288.390000px;}
.y4e{bottom:289.650000px;}
.y11a{bottom:295.230000px;}
.y99{bottom:305.490000px;}
.y29{bottom:312.690000px;}
.y71{bottom:314.310000px;}
.yee{bottom:316.110000px;}
.y4d{bottom:317.370000px;}
.y119{bottom:322.950000px;}
.y98{bottom:333.390000px;}
.yeb{bottom:335.264980px;}
.y28{bottom:340.455000px;}
.y70{bottom:342.255000px;}
.yed{bottom:344.235000px;}
.y4c{bottom:345.135000px;}
.y118{bottom:350.715000px;}
.y97{bottom:361.155000px;}
.y27{bottom:368.175000px;}
.yea{bottom:368.940000px;}
.y6f{bottom:369.975000px;}
.y4b{bottom:373.035000px;}
.ye9{bottom:377.895000px;}
.y117{bottom:378.615000px;}
.y96{bottom:388.875000px;}
.y26{bottom:396.075000px;}
.y6e{bottom:397.695000px;}
.y4a{bottom:400.755000px;}
.ye8{bottom:405.615000px;}
.y116{bottom:406.335000px;}
.y95{bottom:416.595000px;}
.y25{bottom:420.195000px;}
.ye6{bottom:424.514959px;}
.y6d{bottom:425.595000px;}
.y49{bottom:428.475000px;}
.ye7{bottom:433.515000px;}
.y115{bottom:434.055000px;}
.y94{bottom:444.495000px;}
.y24{bottom:447.915000px;}
.y6c{bottom:453.315000px;}
.y48{bottom:456.375000px;}
.ye4{bottom:458.189959px;}
.y114{bottom:461.955000px;}
.ye3{bottom:467.175000px;}
.y93{bottom:472.215000px;}
.y23{bottom:475.635000px;}
.y6b{bottom:481.035000px;}
.y47{bottom:484.095000px;}
.y113{bottom:489.675000px;}
.ye2{bottom:495.075000px;}
.y92{bottom:499.935000px;}
.y22{bottom:503.535000px;}
.y6a{bottom:508.755000px;}
.y46{bottom:511.815000px;}
.y112{bottom:517.395000px;}
.ye1{bottom:522.795000px;}
.y91{bottom:527.835000px;}
.y21{bottom:531.255000px;}
.y69{bottom:536.655000px;}
.y45{bottom:539.535000px;}
.y111{bottom:545.115000px;}
.ye0{bottom:550.695000px;}
.y90{bottom:555.555000px;}
.y20{bottom:558.975000px;}
.y68{bottom:564.375000px;}
.ydd{bottom:565.814959px;}
.y44{bottom:567.435000px;}
.y110{bottom:573.015000px;}
.ydf{bottom:574.815000px;}
.y8f{bottom:583.275000px;}
.ydc{bottom:583.815000px;}
.y1f{bottom:586.695000px;}
.y67{bottom:592.095000px;}
.y43{bottom:595.155000px;}
.y10f{bottom:600.735000px;}
.y8e{bottom:611.025000px;}
.ydb{bottom:613.005000px;}
.y1e{bottom:614.625000px;}
.y66{bottom:620.025000px;}
.y42{bottom:622.905000px;}
.y10e{bottom:628.485000px;}
.yd8{bottom:636.239959px;}
.y8d{bottom:638.925000px;}
.yda{bottom:640.725000px;}
.y1d{bottom:642.345000px;}
.y65{bottom:647.745000px;}
.y41{bottom:650.805000px;}
.y10d{bottom:656.385000px;}
.yd4{bottom:659.789959px;}
.yd6{bottom:664.305000px;}
.y8c{bottom:666.645000px;}
.yd3{bottom:668.805000px;}
.y1c{bottom:670.065000px;}
.y64{bottom:675.465000px;}
.y40{bottom:678.525000px;}
.y10c{bottom:684.105000px;}
.y8b{bottom:694.365000px;}
.y1b{bottom:697.965000px;}
.y63{bottom:703.185000px;}
.y3f{bottom:706.245000px;}
.y10b{bottom:711.825000px;}
.yd2{bottom:721.139919px;}
.y8a{bottom:722.265000px;}
.y1a{bottom:725.685000px;}
.y62{bottom:731.085000px;}
.y3e{bottom:733.965000px;}
.y10a{bottom:739.545000px;}
.yce{bottom:744.764919px;}
.yd0{bottom:749.265000px;}
.y89{bottom:749.985000px;}
.y19{bottom:753.405000px;}
.ycd{bottom:753.765000px;}
.y61{bottom:758.805000px;}
.y3d{bottom:761.865000px;}
.y109{bottom:767.445000px;}
.y88{bottom:777.705000px;}
.y18{bottom:781.125000px;}
.ycc{bottom:782.925000px;}
.y60{bottom:786.525000px;}
.y3c{bottom:789.585000px;}
.y108{bottom:795.165000px;}
.y87{bottom:805.425000px;}
.yca{bottom:806.114919px;}
.y17{bottom:809.025000px;}
.ycb{bottom:810.645000px;}
.y5f{bottom:814.245000px;}
.y3b{bottom:817.305000px;}
.y107{bottom:822.885000px;}
.yc8{bottom:829.739919px;}
.y86{bottom:833.325000px;}
.yc9{bottom:834.225000px;}
.y16{bottom:836.745000px;}
.yc7{bottom:838.725000px;}
.y5e{bottom:842.145000px;}
.y3a{bottom:845.025000px;}
.y106{bottom:850.605000px;}
.y85{bottom:861.045000px;}
.y15{bottom:864.465000px;}
.yc6{bottom:867.885000px;}
.y5d{bottom:869.865000px;}
.y39{bottom:872.970000px;}
.y105{bottom:878.550000px;}
.y84{bottom:888.810000px;}
.yc4{bottom:891.090000px;}
.yc5{bottom:895.650000px;}
.y5c{bottom:897.630000px;}
.y38{bottom:900.690000px;}
.y14{bottom:904.290000px;}
.y104{bottom:906.270000px;}
.yc0{bottom:914.639919px;}
.y83{bottom:916.530000px;}
.yc2{bottom:919.230000px;}
.ybf{bottom:923.730000px;}
.y5b{bottom:925.530000px;}
.y37{bottom:928.410000px;}
.y103{bottom:930.390000px;}
.y13{bottom:932.010000px;}
.y82{bottom:944.430000px;}
.ybe{bottom:952.890000px;}
.y5a{bottom:953.250000px;}
.y102{bottom:954.510000px;}
.y36{bottom:956.310000px;}
.y12{bottom:959.910000px;}
.y81{bottom:972.150000px;}
.ybb{bottom:976.064919px;}
.ybd{bottom:980.610000px;}
.y59{bottom:980.970000px;}
.y101{bottom:982.410000px;}
.y35{bottom:984.030000px;}
.y11{bottom:987.630000px;}
.yb7{bottom:999.614919px;}
.y80{bottom:999.870000px;}
.yb9{bottom:1004.190000px;}
.y58{bottom:1008.690000px;}
.y100{bottom:1010.130000px;}
.y34{bottom:1011.750000px;}
.y10{bottom:1015.350000px;}
.y7f{bottom:1027.770000px;}
.y57{bottom:1036.590000px;}
.yb6{bottom:1037.850000px;}
.y33{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.y7e{bottom:1055.490000px;}
.yb3{bottom:1061.039919px;}
.y56{bottom:1064.310000px;}
.yb5{bottom:1065.570000px;}
.y32{bottom:1067.370000px;}
.ye{bottom:1070.970000px;}
.y7d{bottom:1083.210000px;}
.yaf{bottom:1084.589919px;}
.yb1{bottom:1089.150000px;}
.y55{bottom:1092.210000px;}
.yff{bottom:1093.470000px;}
.yae{bottom:1093.650000px;}
.yd{bottom:1095.090000px;}
.y7a{bottom:1106.339919px;}
.yfc{bottom:1112.339919px;}
.y79{bottom:1116.870000px;}
.yfe{bottom:1121.370000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h18{height:22.500233px;}
.h15{height:22.500254px;}
.h1c{height:22.500274px;}
.h1b{height:22.500315px;}
.h13{height:27.000188px;}
.h1f{height:27.000208px;}
.h1d{height:27.000229px;}
.h7{height:27.576000px;}
.h10{height:36.000092px;}
.h2{height:41.400000px;}
.h11{height:47.407184px;}
.h4{height:53.709961px;}
.hc{height:59.066719px;}
.he{height:63.070312px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h17{height:70.995234px;}
.h3{height:72.562500px;}
.h1a{height:80.970078px;}
.h16{height:81.108854px;}
.h14{height:81.387017px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.hf{height:86.585445px;}
.hd{height:93.935391px;}
.h9{height:96.508125px;}
.h19{height:100.676953px;}
.h1e{height:118.676953px;}
.h12{height:123.061498px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:44.999886px;}
.w9{width:48.599757px;}
.wd{width:53.098821px;}
.wf{width:54.000338px;}
.wc{width:54.900813px;}
.w6{width:63.756000px;}
.w12{width:63.901742px;}
.w11{width:66.600772px;}
.w14{width:67.500786px;}
.w3{width:68.616000px;}
.w7{width:71.100136px;}
.w18{width:75.601028px;}
.w17{width:76.497176px;}
.w1a{width:77.401305px;}
.wb{width:108.897227px;}
.w1d{width:125.096545px;}
.w1e{width:131.404263px;}
.w1f{width:134.104408px;}
.we{width:138.595950px;}
.w1c{width:139.504755px;}
.w21{width:140.400563px;}
.w23{width:143.099143px;}
.w10{width:143.995461px;}
.w25{width:147.604279px;}
.w20{width:149.398433px;}
.w22{width:161.103653px;}
.w24{width:170.994640px;}
.w26{width:171.908568px;}
.w13{width:202.494880px;}
.w15{width:206.091778px;}
.w16{width:234.008812px;}
.w19{width:257.398744px;}
.w1b{width:270.896463px;}
.w8{width:548.993219px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:2.548422px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x2d{left:30.854319px;}
.x1{left:31.860000px;}
.x30{left:33.464648px;}
.x1a{left:34.713900px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x9{left:117.755987px;}
.xd{left:120.455987px;}
.x8{left:127.475987px;}
.x17{left:155.039990px;}
.x20{left:174.689980px;}
.x25{left:180.089980px;}
.x2a{left:185.339980px;}
.xa{left:214.949987px;}
.x21{left:229.529987px;}
.x26{left:234.929987px;}
.x19{left:250.664980px;}
.x2b{left:251.849987px;}
.x34{left:256.529987px;}
.x22{left:262.514980px;}
.x24{left:266.069987px;}
.x27{left:267.914980px;}
.x29{left:271.469987px;}
.x10{left:281.594987px;}
.x2c{left:284.864980px;}
.xf{left:286.274987px;}
.x35{left:289.514980px;}
.xe{left:295.814987px;}
.x1b{left:299.234987px;}
.x3e{left:308.774987px;}
.x23{left:315.614987px;}
.x28{left:321.914987px;}
.x41{left:323.174987px;}
.x43{left:327.674987px;}
.x2f{left:330.014987px;}
.x1c{left:332.190000px;}
.x32{left:333.614987px;}
.x14{left:345.539959px;}
.x2e{left:348.734987px;}
.x31{left:353.234987px;}
.x44{left:360.464959px;}
.x33{left:361.514987px;}
.x36{left:365.114987px;}
.x11{left:368.894987px;}
.x38{left:372.134987px;}
.x13{left:375.914987px;}
.x1d{left:376.994987px;}
.xc{left:378.974987px;}
.x3c{left:380.789959px;}
.x37{left:384.914987px;}
.x12{left:389.234987px;}
.x1e{left:391.964959px;}
.x39{left:398.414987px;}
.x3b{left:406.514987px;}
.x16{left:416.594987px;}
.xb{left:446.474987px;}
.x3a{left:460.694987px;}
.x1f{left:500.864987px;}
.x3d{left:512.204987px;}
.x3f{left:521.204987px;}
.x40{left:526.964987px;}
.x42{left:532.004987px;}
.x18{left:704.129987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:27.520000pt;}
.v4{vertical-align:32.000000pt;}
.v2{vertical-align:47.360000pt;}
.ls65{letter-spacing:-1.296000pt;}
.ls7{letter-spacing:-0.976000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.736000pt;}
.ls28{letter-spacing:-0.597333pt;}
.lse{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.316845pt;}
.lsd{letter-spacing:-0.311467pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.057600pt;}
.ls4{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls27{letter-spacing:0.043520pt;}
.ls49{letter-spacing:0.063368pt;}
.ls11{letter-spacing:0.116480pt;}
.ls10{letter-spacing:0.152960pt;}
.ls38{letter-spacing:0.166400pt;}
.ls51{letter-spacing:0.220002pt;}
.ls36{letter-spacing:0.224640pt;}
.ls3e{letter-spacing:0.225067pt;}
.ls1e{letter-spacing:0.294400pt;}
.ls25{letter-spacing:0.303360pt;}
.lsc{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.336533pt;}
.ls63{letter-spacing:0.336640pt;}
.ls3a{letter-spacing:0.366670pt;}
.ls18{letter-spacing:0.431360pt;}
.ls13{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls40{letter-spacing:0.633680pt;}
.ls43{letter-spacing:0.696525pt;}
.ls46{letter-spacing:0.759369pt;}
.ls2b{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.760000pt;}
.ls4e{letter-spacing:1.811840pt;}
.ls9{letter-spacing:2.400000pt;}
.ls50{letter-spacing:2.523520pt;}
.ls19{letter-spacing:3.040000pt;}
.ls1a{letter-spacing:3.680000pt;}
.ls1f{letter-spacing:4.320000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls34{letter-spacing:4.960000pt;}
.ls35{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:5.600000pt;}
.ls26{letter-spacing:6.240000pt;}
.ls23{letter-spacing:6.880000pt;}
.ls2c{letter-spacing:6.986667pt;}
.ls22{letter-spacing:7.520000pt;}
.ls24{letter-spacing:8.160000pt;}
.ls31{letter-spacing:11.360000pt;}
.ls33{letter-spacing:11.520000pt;}
.ls2f{letter-spacing:12.000000pt;}
.ls2a{letter-spacing:12.640000pt;}
.ls2e{letter-spacing:13.280000pt;}
.ls30{letter-spacing:13.920000pt;}
.ls32{letter-spacing:14.560000pt;}
.ls17{letter-spacing:15.840000pt;}
.ls4b{letter-spacing:16.209647pt;}
.ls4d{letter-spacing:16.272491pt;}
.ls3c{letter-spacing:16.973206pt;}
.ls39{letter-spacing:16.974253pt;}
.ls42{letter-spacing:17.036050pt;}
.ls15{letter-spacing:17.120000pt;}
.ls48{letter-spacing:17.161739pt;}
.ls45{letter-spacing:17.224583pt;}
.ls4a{letter-spacing:17.412068pt;}
.ls4c{letter-spacing:17.480150pt;}
.ls37{letter-spacing:18.113306pt;}
.ls3b{letter-spacing:18.238995pt;}
.ls16{letter-spacing:18.400000pt;}
.ls44{letter-spacing:18.427528pt;}
.ls47{letter-spacing:18.490372pt;}
.ls4f{letter-spacing:19.803520pt;}
.ls12{letter-spacing:21.523840pt;}
.ls1d{letter-spacing:26.080000pt;}
.ls1b{letter-spacing:26.698667pt;}
.ls1c{letter-spacing:26.720000pt;}
.ls21{letter-spacing:30.383360pt;}
.ls3f{letter-spacing:104.007363pt;}
.ls41{letter-spacing:127.155023pt;}
.ls52{letter-spacing:141.242627pt;}
.ls5b{letter-spacing:194.555565pt;}
.ls53{letter-spacing:206.862579pt;}
.ls54{letter-spacing:214.927601pt;}
.ls5d{letter-spacing:219.693296pt;}
.ls64{letter-spacing:222.730772pt;}
.ls61{letter-spacing:223.830548pt;}
.ls5f{letter-spacing:225.820618pt;}
.ls5a{letter-spacing:230.169080pt;}
.ls59{letter-spacing:233.782656pt;}
.ls5c{letter-spacing:235.406147pt;}
.ls58{letter-spacing:236.924896pt;}
.ls55{letter-spacing:242.788586pt;}
.ls5e{letter-spacing:258.711093pt;}
.ls60{letter-spacing:265.781133pt;}
.ls62{letter-spacing:270.599235pt;}
.ls56{letter-spacing:280.442813pt;}
.ls57{letter-spacing:283.742140pt;}
.ws27{word-spacing:-233.856368pt;}
.wsf{word-spacing:-58.923520pt;}
.ws13{word-spacing:-58.880000pt;}
.ws10{word-spacing:-58.282667pt;}
.ws11{word-spacing:-58.144000pt;}
.ws0{word-spacing:-21.600000pt;}
.wsb{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.023467pt;}
.ws14{word-spacing:-18.944640pt;}
.wse{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws3{word-spacing:-18.695040pt;}
.ws7{word-spacing:-18.662400pt;}
.ws9{word-spacing:-18.408533pt;}
.ws5{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.383467pt;}
.ws12{word-spacing:-17.760000pt;}
.ws33{word-spacing:-17.424000pt;}
.ws19{word-spacing:-16.698667pt;}
.wsc{word-spacing:-11.686400pt;}
.ws20{word-spacing:-0.832829pt;}
.ws1d{word-spacing:-0.769859pt;}
.ws1b{word-spacing:-0.707140pt;}
.ws22{word-spacing:-0.136702pt;}
.wsd{word-spacing:-0.088960pt;}
.ws18{word-spacing:-0.073460pt;}
.ws6{word-spacing:0.000000pt;}
.ws16{word-spacing:24.177442pt;}
.ws28{word-spacing:30.516649pt;}
.ws2b{word-spacing:30.664073pt;}
.ws26{word-spacing:30.737784pt;}
.ws15{word-spacing:41.425983pt;}
.ws23{word-spacing:55.147238pt;}
.ws30{word-spacing:57.640598pt;}
.ws21{word-spacing:60.647295pt;}
.ws1c{word-spacing:60.867298pt;}
.ws1f{word-spacing:60.940632pt;}
.ws24{word-spacing:62.260645pt;}
.ws29{word-spacing:62.407314pt;}
.ws2e{word-spacing:63.067320pt;}
.ws32{word-spacing:63.175413pt;}
.ws2c{word-spacing:63.836551pt;}
.ws1e{word-spacing:67.834037pt;}
.ws1a{word-spacing:68.860714pt;}
.ws25{word-spacing:113.737174pt;}
.ws17{word-spacing:143.442994pt;}
.ws2d{word-spacing:225.410419pt;}
.ws2a{word-spacing:231.897050pt;}
.ws2f{word-spacing:232.413032pt;}
.ws31{word-spacing:237.204294pt;}
._2a{margin-left:-1875.343952pt;}
._32{margin-left:-1795.441240pt;}
._4e{margin-left:-665.697259pt;}
._53{margin-left:-649.314045pt;}
._4b{margin-left:-634.303903pt;}
._48{margin-left:-577.324743pt;}
._44{margin-left:-510.311856pt;}
._41{margin-left:-505.289447pt;}
._63{margin-left:-495.650260pt;}
._5f{margin-left:-482.752020pt;}
._5b{margin-left:-475.623717pt;}
._66{margin-left:-463.661652pt;}
._62{margin-left:-458.373500pt;}
._57{margin-left:-452.094101pt;}
._50{margin-left:-445.262329pt;}
._5e{margin-left:-431.660867pt;}
._5a{margin-left:-424.147505pt;}
._56{margin-left:-393.104473pt;}
._3e{margin-left:-364.558003pt;}
._3d{margin-left:-352.249302pt;}
._65{margin-left:-294.983672pt;}
._39{margin-left:-293.726171pt;}
._61{margin-left:-290.192410pt;}
._5d{margin-left:-283.315487pt;}
._52{margin-left:-261.569484pt;}
._59{margin-left:-260.096297pt;}
._4c{margin-left:-255.207149pt;}
._4d{margin-left:-253.943978pt;}
._49{margin-left:-249.385670pt;}
._4a{margin-left:-248.118309pt;}
._42{margin-left:-225.190604pt;}
._43{margin-left:-223.924814pt;}
._45{margin-left:-222.786808pt;}
._46{margin-left:-221.138716pt;}
._3f{margin-left:-216.455242pt;}
._40{margin-left:-215.315141pt;}
._3a{margin-left:-178.965982pt;}
._3b{margin-left:-177.569267pt;}
._36{margin-left:-148.819034pt;}
._37{margin-left:-145.401874pt;}
._20{margin-left:-8.016640pt;}
._21{margin-left:-6.219947pt;}
._22{margin-left:-5.298773pt;}
._18{margin-left:-4.391253pt;}
._3{margin-left:-2.896640pt;}
._2{margin-left:-1.982507pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._10{width:2.248107pt;}
._14{width:3.289387pt;}
._11{width:4.343040pt;}
._1f{width:5.291093pt;}
._d{width:6.289920pt;}
._c{width:7.263360pt;}
._e{width:8.686080pt;}
._f{width:9.716053pt;}
._13{width:11.513173pt;}
._4{width:12.430080pt;}
._5{width:14.038187pt;}
._9{width:15.649920pt;}
._a{width:16.596693pt;}
._b{width:17.606187pt;}
._15{width:19.669760pt;}
._7{width:20.741760pt;}
._8{width:21.640320pt;}
._12{width:22.972800pt;}
._6{width:24.336000pt;}
._1a{width:26.097493pt;}
._1e{width:27.090133pt;}
._19{width:28.978560pt;}
._1c{width:32.273280pt;}
._1b{width:33.228373pt;}
._1d{width:34.777600pt;}
._31{width:36.413586pt;}
._16{width:45.002880pt;}
._17{width:60.948693pt;}
._3c{width:66.587357pt;}
._55{width:68.787380pt;}
._38{width:70.914068pt;}
._47{width:71.940746pt;}
._30{width:76.240447pt;}
._28{width:81.148887pt;}
._2c{width:90.350949pt;}
._24{width:99.743850pt;}
._23{width:105.481462pt;}
._27{width:107.987660pt;}
._26{width:111.095454pt;}
._2f{width:117.127912pt;}
._2e{width:125.015066pt;}
._25{width:129.111472pt;}
._54{width:135.187282pt;}
._58{width:140.273390pt;}
._51{width:141.673913pt;}
._5c{width:163.418868pt;}
._60{width:170.421481pt;}
._64{width:175.212743pt;}
._33{width:186.195788pt;}
._2b{width:192.977266pt;}
._2d{width:199.758743pt;}
._4f{width:238.015122pt;}
._34{width:274.428709pt;}
._35{width:585.271004pt;}
._29{width:617.777869pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:42.936390pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:73.334094pt;}
.fsa{font-size:73.459782pt;}
.fs9{font-size:73.711713pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs8{font-size:111.456030pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.365170pt;}
.y3{bottom:3.520000pt;}
.ya3{bottom:4.222091pt;}
.ya0{bottom:4.222097pt;}
.yec{bottom:4.222109pt;}
.yd5{bottom:4.222112pt;}
.yb0{bottom:4.222122pt;}
.yc1{bottom:4.222127pt;}
.yc3{bottom:4.222128pt;}
.yba{bottom:4.222129pt;}
.yd1{bottom:4.222134pt;}
.yfd{bottom:4.222163pt;}
.yac{bottom:4.253906pt;}
.ya5{bottom:4.253924pt;}
.yd7{bottom:4.253927pt;}
.yb2{bottom:4.253937pt;}
.yd9{bottom:4.253942pt;}
.yb8{bottom:4.253944pt;}
.ycf{bottom:4.253949pt;}
.yb4{bottom:4.253977pt;}
.ybc{bottom:4.253979pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y9c{bottom:8.158695pt;}
.yf1{bottom:8.158709pt;}
.ye5{bottom:8.158722pt;}
.yde{bottom:8.158731pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y7b{bottom:20.221818pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.y31{bottom:80.512000pt;}
.yab{bottom:86.480000pt;}
.yfb{bottom:89.346667pt;}
.y120{bottom:89.632000pt;}
.yad{bottom:90.432000pt;}
.yfa{bottom:97.312000pt;}
.y30{bottom:105.152000pt;}
.y78{bottom:106.752000pt;}
.ya9{bottom:107.280000pt;}
.y54{bottom:109.312000pt;}
.yaa{bottom:111.232000pt;}
.y11f{bottom:114.272000pt;}
.ya8{bottom:115.232000pt;}
.yf9{bottom:121.952000pt;}
.y2f{bottom:129.792000pt;}
.y77{bottom:131.392000pt;}
.y53{bottom:134.106667pt;}
.yf7{bottom:138.946667pt;}
.y11e{bottom:139.066667pt;}
.ya7{bottom:141.306667pt;}
.yf8{bottom:146.906667pt;}
.y2e{bottom:154.426667pt;}
.y76{bottom:156.026667pt;}
.ya4{bottom:158.146649pt;}
.y52{bottom:158.746667pt;}
.y11d{bottom:163.706667pt;}
.ya6{bottom:166.106667pt;}
.yf6{bottom:168.880000pt;}
.yf5{bottom:176.826667pt;}
.y2d{bottom:179.226667pt;}
.y75{bottom:180.666667pt;}
.y51{bottom:183.386667pt;}
.y9f{bottom:184.413315pt;}
.ya2{bottom:184.413333pt;}
.ya1{bottom:188.346667pt;}
.y9e{bottom:192.346667pt;}
.yf4{bottom:201.466667pt;}
.y2c{bottom:203.866667pt;}
.y74{bottom:205.466667pt;}
.y50{bottom:208.026667pt;}
.y11c{bottom:212.986667pt;}
.y9d{bottom:218.266667pt;}
.yf2{bottom:218.479982pt;}
.yf3{bottom:226.426667pt;}
.y2b{bottom:228.506667pt;}
.y73{bottom:230.106667pt;}
.y4f{bottom:232.826667pt;}
.y11b{bottom:237.786667pt;}
.y9b{bottom:238.946667pt;}
.y9a{bottom:246.906667pt;}
.yf0{bottom:248.413315pt;}
.y2a{bottom:253.306667pt;}
.y72{bottom:254.746667pt;}
.yef{bottom:256.346667pt;}
.y4e{bottom:257.466667pt;}
.y11a{bottom:262.426667pt;}
.y99{bottom:271.546667pt;}
.y29{bottom:277.946667pt;}
.y71{bottom:279.386667pt;}
.yee{bottom:280.986667pt;}
.y4d{bottom:282.106667pt;}
.y119{bottom:287.066667pt;}
.y98{bottom:296.346667pt;}
.yeb{bottom:298.013315pt;}
.y28{bottom:302.626667pt;}
.y70{bottom:304.226667pt;}
.yed{bottom:305.986667pt;}
.y4c{bottom:306.786667pt;}
.y118{bottom:311.746667pt;}
.y97{bottom:321.026667pt;}
.y27{bottom:327.266667pt;}
.yea{bottom:327.946667pt;}
.y6f{bottom:328.866667pt;}
.y4b{bottom:331.586667pt;}
.ye9{bottom:335.906667pt;}
.y117{bottom:336.546667pt;}
.y96{bottom:345.666667pt;}
.y26{bottom:352.066667pt;}
.y6e{bottom:353.506667pt;}
.y4a{bottom:356.226667pt;}
.ye8{bottom:360.546667pt;}
.y116{bottom:361.186667pt;}
.y95{bottom:370.306667pt;}
.y25{bottom:373.506667pt;}
.ye6{bottom:377.346630pt;}
.y6d{bottom:378.306667pt;}
.y49{bottom:380.866667pt;}
.ye7{bottom:385.346667pt;}
.y115{bottom:385.826667pt;}
.y94{bottom:395.106667pt;}
.y24{bottom:398.146667pt;}
.y6c{bottom:402.946667pt;}
.y48{bottom:405.666667pt;}
.ye4{bottom:407.279964pt;}
.y114{bottom:410.626667pt;}
.ye3{bottom:415.266667pt;}
.y93{bottom:419.746667pt;}
.y23{bottom:422.786667pt;}
.y6b{bottom:427.586667pt;}
.y47{bottom:430.306667pt;}
.y113{bottom:435.266667pt;}
.ye2{bottom:440.066667pt;}
.y92{bottom:444.386667pt;}
.y22{bottom:447.586667pt;}
.y6a{bottom:452.226667pt;}
.y46{bottom:454.946667pt;}
.y112{bottom:459.906667pt;}
.ye1{bottom:464.706667pt;}
.y91{bottom:469.186667pt;}
.y21{bottom:472.226667pt;}
.y69{bottom:477.026667pt;}
.y45{bottom:479.586667pt;}
.y111{bottom:484.546667pt;}
.ye0{bottom:489.506667pt;}
.y90{bottom:493.826667pt;}
.y20{bottom:496.866667pt;}
.y68{bottom:501.666667pt;}
.ydd{bottom:502.946630pt;}
.y44{bottom:504.386667pt;}
.y110{bottom:509.346667pt;}
.ydf{bottom:510.946667pt;}
.y8f{bottom:518.466667pt;}
.ydc{bottom:518.946667pt;}
.y1f{bottom:521.506667pt;}
.y67{bottom:526.306667pt;}
.y43{bottom:529.026667pt;}
.y10f{bottom:533.986667pt;}
.y8e{bottom:543.133333pt;}
.ydb{bottom:544.893333pt;}
.y1e{bottom:546.333333pt;}
.y66{bottom:551.133333pt;}
.y42{bottom:553.693333pt;}
.y10e{bottom:558.653333pt;}
.yd8{bottom:565.546630pt;}
.y8d{bottom:567.933333pt;}
.yda{bottom:569.533333pt;}
.y1d{bottom:570.973333pt;}
.y65{bottom:575.773333pt;}
.y41{bottom:578.493333pt;}
.y10d{bottom:583.453333pt;}
.yd4{bottom:586.479964pt;}
.yd6{bottom:590.493333pt;}
.y8c{bottom:592.573333pt;}
.yd3{bottom:594.493333pt;}
.y1c{bottom:595.613333pt;}
.y64{bottom:600.413333pt;}
.y40{bottom:603.133333pt;}
.y10c{bottom:608.093333pt;}
.y8b{bottom:617.213333pt;}
.y1b{bottom:620.413333pt;}
.y63{bottom:625.053333pt;}
.y3f{bottom:627.773333pt;}
.y10b{bottom:632.733333pt;}
.yd2{bottom:641.013261pt;}
.y8a{bottom:642.013333pt;}
.y1a{bottom:645.053333pt;}
.y62{bottom:649.853333pt;}
.y3e{bottom:652.413333pt;}
.y10a{bottom:657.373333pt;}
.yce{bottom:662.013261pt;}
.yd0{bottom:666.013333pt;}
.y89{bottom:666.653333pt;}
.y19{bottom:669.693333pt;}
.ycd{bottom:670.013333pt;}
.y61{bottom:674.493333pt;}
.y3d{bottom:677.213333pt;}
.y109{bottom:682.173333pt;}
.y88{bottom:691.293333pt;}
.y18{bottom:694.333333pt;}
.ycc{bottom:695.933333pt;}
.y60{bottom:699.133333pt;}
.y3c{bottom:701.853333pt;}
.y108{bottom:706.813333pt;}
.y87{bottom:715.933333pt;}
.yca{bottom:716.546594pt;}
.y17{bottom:719.133333pt;}
.ycb{bottom:720.573333pt;}
.y5f{bottom:723.773333pt;}
.y3b{bottom:726.493333pt;}
.y107{bottom:731.453333pt;}
.yc8{bottom:737.546594pt;}
.y86{bottom:740.733333pt;}
.yc9{bottom:741.533333pt;}
.y16{bottom:743.773333pt;}
.yc7{bottom:745.533333pt;}
.y5e{bottom:748.573333pt;}
.y3a{bottom:751.133333pt;}
.y106{bottom:756.093333pt;}
.y85{bottom:765.373333pt;}
.y15{bottom:768.413333pt;}
.yc6{bottom:771.453333pt;}
.y5d{bottom:773.213333pt;}
.y39{bottom:775.973333pt;}
.y105{bottom:780.933333pt;}
.y84{bottom:790.053333pt;}
.yc4{bottom:792.080000pt;}
.yc5{bottom:796.133333pt;}
.y5c{bottom:797.893333pt;}
.y38{bottom:800.613333pt;}
.y14{bottom:803.813333pt;}
.y104{bottom:805.573333pt;}
.yc0{bottom:813.013261pt;}
.y83{bottom:814.693333pt;}
.yc2{bottom:817.093333pt;}
.ybf{bottom:821.093333pt;}
.y5b{bottom:822.693333pt;}
.y37{bottom:825.253333pt;}
.y103{bottom:827.013333pt;}
.y13{bottom:828.453333pt;}
.y82{bottom:839.493333pt;}
.ybe{bottom:847.013333pt;}
.y5a{bottom:847.333333pt;}
.y102{bottom:848.453333pt;}
.y36{bottom:850.053333pt;}
.y12{bottom:853.253333pt;}
.y81{bottom:864.133333pt;}
.ybb{bottom:867.613261pt;}
.ybd{bottom:871.653333pt;}
.y59{bottom:871.973333pt;}
.y101{bottom:873.253333pt;}
.y35{bottom:874.693333pt;}
.y11{bottom:877.893333pt;}
.yb7{bottom:888.546594pt;}
.y80{bottom:888.773333pt;}
.yb9{bottom:892.613333pt;}
.y58{bottom:896.613333pt;}
.y100{bottom:897.893333pt;}
.y34{bottom:899.333333pt;}
.y10{bottom:902.533333pt;}
.y7f{bottom:913.573333pt;}
.y57{bottom:921.413333pt;}
.yb6{bottom:922.533333pt;}
.y33{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.y7e{bottom:938.213333pt;}
.yb3{bottom:943.146594pt;}
.y56{bottom:946.053333pt;}
.yb5{bottom:947.173333pt;}
.y32{bottom:948.773333pt;}
.ye{bottom:951.973333pt;}
.y7d{bottom:962.853333pt;}
.yaf{bottom:964.079928pt;}
.yb1{bottom:968.133333pt;}
.y55{bottom:970.853333pt;}
.yff{bottom:971.973333pt;}
.yae{bottom:972.133333pt;}
.yd{bottom:973.413333pt;}
.y7a{bottom:983.413261pt;}
.yfc{bottom:988.746594pt;}
.y79{bottom:992.773333pt;}
.yfe{bottom:996.773333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h18{height:20.000207pt;}
.h15{height:20.000225pt;}
.h1c{height:20.000244pt;}
.h1b{height:20.000280pt;}
.h13{height:24.000167pt;}
.h1f{height:24.000185pt;}
.h1d{height:24.000203pt;}
.h7{height:24.512000pt;}
.h10{height:32.000082pt;}
.h2{height:36.800000pt;}
.h11{height:42.139719pt;}
.h4{height:47.742188pt;}
.hc{height:52.503750pt;}
.he{height:56.062500pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h17{height:63.106875pt;}
.h3{height:64.500000pt;}
.h1a{height:71.973402pt;}
.h16{height:72.096759pt;}
.h14{height:72.344016pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.hf{height:76.964840pt;}
.hd{height:83.498125pt;}
.h9{height:85.785000pt;}
.h19{height:89.490625pt;}
.h1e{height:105.490625pt;}
.h12{height:109.387998pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:39.999899pt;}
.w9{width:43.199784pt;}
.wd{width:47.198952pt;}
.wf{width:48.000300pt;}
.wc{width:48.800722pt;}
.w6{width:56.672000pt;}
.w12{width:56.801549pt;}
.w11{width:59.200686pt;}
.w14{width:60.000699pt;}
.w3{width:60.992000pt;}
.w7{width:63.200121pt;}
.w18{width:67.200914pt;}
.w17{width:67.997490pt;}
.w1a{width:68.801160pt;}
.wb{width:96.797535pt;}
.w1d{width:111.196929pt;}
.w1e{width:116.803790pt;}
.w1f{width:119.203918pt;}
.we{width:123.196400pt;}
.w1c{width:124.004226pt;}
.w21{width:124.800501pt;}
.w23{width:127.199238pt;}
.w10{width:127.995965pt;}
.w25{width:131.203804pt;}
.w20{width:132.798607pt;}
.w22{width:143.203248pt;}
.w24{width:151.995235pt;}
.w26{width:152.807616pt;}
.w13{width:179.995449pt;}
.w15{width:183.192692pt;}
.w16{width:208.007832pt;}
.w19{width:228.798883pt;}
.w1b{width:240.796856pt;}
.w8{width:487.993973pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:2.265264pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x2d{left:27.426062pt;}
.x1{left:28.320000pt;}
.x30{left:29.746354pt;}
.x1a{left:30.856800pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x9{left:104.671988pt;}
.xd{left:107.071988pt;}
.x8{left:113.311988pt;}
.x17{left:137.813324pt;}
.x20{left:155.279982pt;}
.x25{left:160.079982pt;}
.x2a{left:164.746649pt;}
.xa{left:191.066655pt;}
.x21{left:204.026655pt;}
.x26{left:208.826655pt;}
.x19{left:222.813315pt;}
.x2b{left:223.866655pt;}
.x34{left:228.026655pt;}
.x22{left:233.346649pt;}
.x24{left:236.506655pt;}
.x27{left:238.146649pt;}
.x29{left:241.306655pt;}
.x10{left:250.306655pt;}
.x2c{left:253.213315pt;}
.xf{left:254.466655pt;}
.x35{left:257.346649pt;}
.xe{left:262.946655pt;}
.x1b{left:265.986655pt;}
.x3e{left:274.466655pt;}
.x23{left:280.546655pt;}
.x28{left:286.146655pt;}
.x41{left:287.266655pt;}
.x43{left:291.266655pt;}
.x2f{left:293.346655pt;}
.x1c{left:295.280000pt;}
.x32{left:296.546655pt;}
.x14{left:307.146630pt;}
.x2e{left:309.986655pt;}
.x31{left:313.986655pt;}
.x44{left:320.413297pt;}
.x33{left:321.346655pt;}
.x36{left:324.546655pt;}
.x11{left:327.906655pt;}
.x38{left:330.786655pt;}
.x13{left:334.146655pt;}
.x1d{left:335.106655pt;}
.xc{left:336.866655pt;}
.x3c{left:338.479964pt;}
.x37{left:342.146655pt;}
.x12{left:345.986655pt;}
.x1e{left:348.413297pt;}
.x39{left:354.146655pt;}
.x3b{left:361.346655pt;}
.x16{left:370.306655pt;}
.xb{left:396.866655pt;}
.x3a{left:409.506655pt;}
.x1f{left:445.213322pt;}
.x3d{left:455.293322pt;}
.x3f{left:463.293322pt;}
.x40{left:468.413322pt;}
.x42{left:472.893322pt;}
.x18{left:625.893322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  