
    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_6a9d45305a7e3e47cc637f05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2067b17dcac04e927049abab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_c903b347ab9c108760510760.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_90e6b10a591ce0d59ea51ee6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_55d124075c800f2b909da65f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_a3220a5ed15927673052b86e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_0d8845825af444e7e8f05a1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_0708a6b09718ea454e34e81a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_379599d5966ba3beb7cdcf6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_7b9e185bc0ac9900b1c728b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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.000000,-0.249961,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249961,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249961,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250191,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250191,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250191,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.178230,-0.175312,0.175340,0.178202,0,0);-ms-transform:matrix(0.178230,-0.175312,0.175340,0.178202,0,0);-webkit-transform:matrix(0.178230,-0.175312,0.175340,0.178202,0,0);}
.m8{transform:matrix(0.178240,-0.175302,0.175330,0.178212,0,0);-ms-transform:matrix(0.178240,-0.175302,0.175330,0.178212,0,0);-webkit-transform:matrix(0.178240,-0.175302,0.175330,0.178212,0,0);}
.md{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,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.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-30.804886px;}
.v4{vertical-align:-25.116634px;}
.v8{vertical-align:-8.978541px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.760000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:24.875707px;}
.ls54{letter-spacing:-1.586222px;}
.ls56{letter-spacing:-1.524918px;}
.ls55{letter-spacing:-1.351226px;}
.ls2f{letter-spacing:-0.945638px;}
.ls2e{letter-spacing:-0.885544px;}
.ls4b{letter-spacing:-0.812374px;}
.ls5b{letter-spacing:-0.804710px;}
.ls53{letter-spacing:-0.804605px;}
.ls64{letter-spacing:-0.794492px;}
.ls52{letter-spacing:-0.794388px;}
.ls5e{letter-spacing:-0.768845px;}
.ls4f{letter-spacing:-0.763836px;}
.ls68{letter-spacing:-0.763736px;}
.ls51{letter-spacing:-0.756172px;}
.ls48{letter-spacing:-0.751063px;}
.ls4e{letter-spacing:-0.748508px;}
.ls65{letter-spacing:-0.743399px;}
.ls5a{letter-spacing:-0.730626px;}
.ls67{letter-spacing:-0.684553px;}
.ls61{letter-spacing:-0.633467px;}
.ls5f{letter-spacing:-0.597707px;}
.ls30{letter-spacing:-0.584290px;}
.ls6e{letter-spacing:-0.561947px;}
.ls7c{letter-spacing:-0.540000px;}
.ls88{letter-spacing:-0.417768px;}
.ls90{letter-spacing:-0.387762px;}
.ls87{letter-spacing:-0.362373px;}
.ls5{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.340334px;}
.ls86{letter-spacing:-0.330059px;}
.ls6{letter-spacing:-0.324000px;}
.ls71{letter-spacing:-0.321842px;}
.ls8d{letter-spacing:-0.304437px;}
.ls93{letter-spacing:-0.299825px;}
.ls62{letter-spacing:-0.293745px;}
.ls80{letter-spacing:-0.290822px;}
.ls7f{letter-spacing:-0.265432px;}
.ls57{letter-spacing:-0.260539px;}
.ls7a{letter-spacing:-0.223800px;}
.ls7{letter-spacing:-0.200400px;}
.ls6a{letter-spacing:-0.181100px;}
.ls6c{letter-spacing:-0.153003px;}
.ls40{letter-spacing:-0.140039px;}
.ls6d{letter-spacing:-0.129503px;}
.ls60{letter-spacing:-0.123884px;}
.ls6b{letter-spacing:-0.118264px;}
.ls37{letter-spacing:-0.062340px;}
.ls26{letter-spacing:-0.055413px;}
.ls8{letter-spacing:-0.048840px;}
.ls59{letter-spacing:-0.046999px;}
.ls44{letter-spacing:-0.043423px;}
.ls84{letter-spacing:-0.042469px;}
.ls2a{letter-spacing:-0.037048px;}
.ls81{letter-spacing:-0.035545px;}
.ls5c{letter-spacing:-0.031422px;}
.ls36{letter-spacing:-0.029333px;}
.ls27{letter-spacing:-0.027707px;}
.ls45{letter-spacing:-0.023503px;}
.ls83{letter-spacing:-0.021235px;}
.ls7b{letter-spacing:-0.018000px;}
.ls25{letter-spacing:-0.014004px;}
.ls2c{letter-spacing:-0.009337px;}
.ls46{letter-spacing:-0.007919px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005352px;}
.ls15{letter-spacing:0.006029px;}
.ls35{letter-spacing:0.011866px;}
.ls28{letter-spacing:0.014006px;}
.ls42{letter-spacing:0.018672px;}
.ls75{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.039341px;}
.ls3c{letter-spacing:0.046378px;}
.ls4d{letter-spacing:0.050831px;}
.ls78{letter-spacing:0.051420px;}
.ls49{letter-spacing:0.054925px;}
.ls82{letter-spacing:0.062319px;}
.ls2b{letter-spacing:0.064759px;}
.ls22{letter-spacing:0.071977px;}
.ls8e{letter-spacing:0.073398px;}
.ls1a{letter-spacing:0.083520px;}
.ls1{letter-spacing:0.096480px;}
.lsb{letter-spacing:0.106800px;}
.ls33{letter-spacing:0.110834px;}
.ls13{letter-spacing:0.121840px;}
.ls19{letter-spacing:0.135360px;}
.ls20{letter-spacing:0.143653px;}
.ls70{letter-spacing:0.144063px;}
.ls24{letter-spacing:0.146062px;}
.ls38{letter-spacing:0.149398px;}
.ls43{letter-spacing:0.156834px;}
.ls7d{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.184676px;}
.ls3b{letter-spacing:0.184911px;}
.ls31{letter-spacing:0.184925px;}
.ls1d{letter-spacing:0.198720px;}
.ls1f{letter-spacing:0.208200px;}
.ls3e{letter-spacing:0.216232px;}
.ls23{letter-spacing:0.217738px;}
.ls17{letter-spacing:0.219670px;}
.ls18{letter-spacing:0.231600px;}
.ls89{letter-spacing:0.235427px;}
.ls6f{letter-spacing:0.263128px;}
.ls79{letter-spacing:0.282600px;}
.ls1c{letter-spacing:0.315360px;}
.ls3f{letter-spacing:0.334286px;}
.lsa{letter-spacing:0.337200px;}
.ls4{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.364402px;}
.ls72{letter-spacing:0.382800px;}
.ls10{letter-spacing:0.427680px;}
.ls74{letter-spacing:0.427800px;}
.ls1e{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.468000px;}
.ls2{letter-spacing:0.468401px;}
.ls1b{letter-spacing:0.528480px;}
.ls77{letter-spacing:0.636000px;}
.ls73{letter-spacing:0.780000px;}
.ls7e{letter-spacing:0.900000px;}
.ls69{letter-spacing:1.417638px;}
.lsd{letter-spacing:4.030143px;}
.ls11{letter-spacing:4.469760px;}
.ls8a{letter-spacing:5.904237px;}
.ls95{letter-spacing:6.111808px;}
.ls8c{letter-spacing:6.134872px;}
.ls92{letter-spacing:6.157935px;}
.ls91{letter-spacing:6.250189px;}
.ls94{letter-spacing:6.296316px;}
.ls8b{letter-spacing:6.319379px;}
.ls4a{letter-spacing:6.769786px;}
.ls47{letter-spacing:6.820879px;}
.ls32{letter-spacing:7.409041px;}
.ls5d{letter-spacing:7.485084px;}
.ls50{letter-spacing:7.536177px;}
.ls66{letter-spacing:7.561723px;}
.ls3d{letter-spacing:8.855442px;}
.ls29{letter-spacing:8.915683px;}
.ls2d{letter-spacing:8.945804px;}
.ls16{letter-spacing:22.324220px;}
.ls21{letter-spacing:27.796947px;}
.ls39{letter-spacing:43.788473px;}
.ls3a{letter-spacing:43.878821px;}
.ls63{letter-spacing:66.616204px;}
.ls8f{letter-spacing:73.305520px;}
.ls85{letter-spacing:73.328601px;}
.ls4c{letter-spacing:73.410648px;}
.ls58{letter-spacing:73.436191px;}
.lse{letter-spacing:89.053241px;}
.ls76{letter-spacing:138.175228px;}
.lsf{letter-spacing:372.192066px;}
.ls0{letter-spacing:3051.137760px;}
.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;}
}
.ws3f{word-spacing:-80.145747px;}
.ws32{word-spacing:-80.137672px;}
.ws4a{word-spacing:-73.343228px;}
.ws22{word-spacing:-51.810151px;}
.ws1f{word-spacing:-51.719804px;}
.wsa{word-spacing:-35.728278px;}
.ws18{word-spacing:-17.867783px;}
.ws14{word-spacing:-17.837662px;}
.ws25{word-spacing:-17.777421px;}
.ws50{word-spacing:-15.128786px;}
.ws39{word-spacing:-15.085485px;}
.ws45{word-spacing:-15.052147px;}
.ws2d{word-spacing:-14.387941px;}
.ws31{word-spacing:-14.336849px;}
.ws61{word-spacing:-12.840000px;}
.ws63{word-spacing:-12.486600px;}
.ws8{word-spacing:-12.412200px;}
.ws6b{word-spacing:-12.377603px;}
.ws72{word-spacing:-12.370312px;}
.ws70{word-spacing:-12.324185px;}
.ws62{word-spacing:-12.255420px;}
.ws71{word-spacing:-12.231931px;}
.ws2{word-spacing:-12.204000px;}
.ws6c{word-spacing:-12.193095px;}
.ws65{word-spacing:-12.186000px;}
.ws73{word-spacing:-12.185804px;}
.ws5{word-spacing:-12.155160px;}
.ws64{word-spacing:-11.980200px;}
.ws6a{word-spacing:-11.962461px;}
.ws1{word-spacing:-11.880000px;}
.ws60{word-spacing:-10.217760px;}
.ws5f{word-spacing:-9.820560px;}
.ws5a{word-spacing:-9.489901px;}
.ws26{word-spacing:-9.437760px;}
.ws58{word-spacing:-9.243320px;}
.ws5b{word-spacing:-9.226774px;}
.ws0{word-spacing:-9.146880px;}
.ws59{word-spacing:-9.113817px;}
.ws16{word-spacing:-8.986738px;}
.ws1e{word-spacing:-8.967545px;}
.ws12{word-spacing:-8.935985px;}
.ws13{word-spacing:-8.921979px;}
.ws24{word-spacing:-8.920591px;}
.ws17{word-spacing:-8.912641px;}
.wsf{word-spacing:-8.906587px;}
.ws10{word-spacing:-8.892885px;}
.ws15{word-spacing:-8.884930px;}
.ws6{word-spacing:-8.604000px;}
.ws57{word-spacing:-8.404697px;}
.ws5d{word-spacing:-8.386944px;}
.wsd{word-spacing:-8.149069px;}
.ws3{word-spacing:-8.136000px;}
.ws9{word-spacing:-8.074984px;}
.ws4{word-spacing:-7.935600px;}
.ws19{word-spacing:-7.911309px;}
.ws30{word-spacing:-7.621987px;}
.ws2f{word-spacing:-7.606404px;}
.ws2a{word-spacing:-7.567062px;}
.ws2c{word-spacing:-7.559143px;}
.ws35{word-spacing:-7.555337px;}
.ws38{word-spacing:-7.549308px;}
.ws2b{word-spacing:-7.543560px;}
.ws44{word-spacing:-7.535640px;}
.ws1a{word-spacing:-7.327018px;}
.ws51{word-spacing:-6.863768px;}
.ws4f{word-spacing:-6.823663px;}
.ws67{word-spacing:-6.815590px;}
.ws37{word-spacing:-6.785472px;}
.ws3a{word-spacing:-6.771685px;}
.ws43{word-spacing:-6.762352px;}
.ws48{word-spacing:-6.603140px;}
.ws68{word-spacing:-6.298288px;}
.ws5e{word-spacing:-6.183360px;}
.ws47{word-spacing:-6.111849px;}
.ws49{word-spacing:-6.093557px;}
.ws6e{word-spacing:-6.078646px;}
.ws6f{word-spacing:-6.073996px;}
.ws6d{word-spacing:-6.062861px;}
.ws69{word-spacing:-6.058224px;}
.ws46{word-spacing:-5.940710px;}
.ws52{word-spacing:-5.870861px;}
.ws3c{word-spacing:-5.358330px;}
.ws3d{word-spacing:-5.184637px;}
.ws3b{word-spacing:-5.123334px;}
.ws3e{word-spacing:-4.771628px;}
.ws1d{word-spacing:-1.919989px;}
.ws11{word-spacing:-1.389988px;}
.ws1b{word-spacing:-1.259578px;}
.ws1c{word-spacing:-0.578613px;}
.ws7{word-spacing:0.000000px;}
.ws42{word-spacing:0.066714px;}
.ws4e{word-spacing:0.181673px;}
.ws36{word-spacing:0.226826px;}
.ws23{word-spacing:1.476912px;}
.wsc{word-spacing:20.219430px;}
.wsb{word-spacing:20.309778px;}
.wse{word-spacing:20.671168px;}
.ws56{word-spacing:31.524203px;}
.ws54{word-spacing:31.526757px;}
.ws55{word-spacing:31.636081px;}
.ws53{word-spacing:31.643744px;}
.ws29{word-spacing:32.916126px;}
.ws27{word-spacing:32.941669px;}
.ws28{word-spacing:33.242055px;}
.ws66{word-spacing:36.318269px;}
.ws21{word-spacing:38.680458px;}
.ws20{word-spacing:38.981616px;}
.ws4c{word-spacing:45.377369px;}
.ws4b{word-spacing:45.514791px;}
.ws4d{word-spacing:45.565877px;}
.ws41{word-spacing:52.537319px;}
.ws40{word-spacing:52.649197px;}
.ws33{word-spacing:52.692380px;}
.ws34{word-spacing:52.784846px;}
.ws2e{word-spacing:279.685792px;}
.ws5c{word-spacing:714.862929px;}
._29{margin-left:-358.354417px;}
._21{margin-left:-39.571759px;}
._1f{margin-left:-27.286894px;}
._20{margin-left:-8.682466px;}
._22{margin-left:-7.359775px;}
._2a{margin-left:-5.316803px;}
._23{margin-left:-3.798278px;}
._9{margin-left:-2.700000px;}
._1{margin-left:-1.242000px;}
._2{width:1.015920px;}
._3{width:2.440080px;}
._5{width:3.726000px;}
._4{width:4.932000px;}
._8{width:5.958000px;}
._6{width:7.614000px;}
._c{width:8.704080px;}
._7{width:9.720000px;}
._12{width:11.090160px;}
._24{width:12.152160px;}
._13{width:13.284000px;}
._1c{width:14.464844px;}
._f{width:16.308000px;}
._10{width:17.604000px;}
._26{width:19.386000px;}
._15{width:20.952000px;}
._a{width:22.950000px;}
._18{width:24.030000px;}
._1b{width:26.028000px;}
._25{width:27.972000px;}
._1d{width:29.268000px;}
._b{width:31.068000px;}
._d{width:33.102000px;}
._e{width:34.194000px;}
._1e{width:35.962080px;}
._11{width:40.662000px;}
._14{width:44.118000px;}
._16{width:72.468000px;}
._17{width:73.504080px;}
._28{width:135.606000px;}
._27{width:162.966000px;}
._0{width:3040.398240px;}
._19{width:3048.534240px;}
._1a{width:3051.137760px;}
.fc7{color:rgb(0,128,192);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,255,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(29,29,27);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs1f{font-size:15.084432px;}
.fs1c{font-size:18.101319px;}
.fs1d{font-size:18.164155px;}
.fs28{font-size:19.082747px;}
.fs29{font-size:19.139527px;}
.fs1e{font-size:21.118205px;}
.fs2b{font-size:21.792171px;}
.fs2a{font-size:21.808854px;}
.fs2d{font-size:21.848907px;}
.fs2c{font-size:21.865633px;}
.fs16{font-size:24.135092px;}
.fs15{font-size:24.197927px;}
.fs27{font-size:24.535191px;}
.fs26{font-size:24.592894px;}
.fs1a{font-size:27.152233px;}
.fs1b{font-size:27.155783px;}
.fs18{font-size:27.216091px;}
.fs19{font-size:27.219649px;}
.fs8{font-size:27.360000px;}
.fsd{font-size:28.383841px;}
.fs11{font-size:28.455882px;}
.fsc{font-size:28.457944px;}
.fs9{font-size:28.529967px;}
.fse{font-size:28.900693px;}
.fsf{font-size:28.974778px;}
.fs20{font-size:30.168864px;}
.fs17{font-size:30.232722px;}
.fs10{font-size:31.719953px;}
.fsa{font-size:32.088458px;}
.fsb{font-size:32.093448px;}
.fs22{font-size:33.189834px;}
.fs21{font-size:33.249353px;}
.fs7{font-size:36.000000px;}
.fs25{font-size:38.222274px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs23{font-size:42.299246px;}
.fs12{font-size:42.758510px;}
.fs13{font-size:42.830788px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs14{font-size:66.240000px;}
.fs24{font-size:72.000000px;}
.fs3{font-size:87.120000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y16c{bottom:1.716021px;}
.y71{bottom:1.767801px;}
.y9d{bottom:2.174988px;}
.yb8{bottom:3.007755px;}
.y37{bottom:3.060000px;}
.y83{bottom:4.064965px;}
.y70{bottom:4.768998px;}
.y166{bottom:8.403822px;}
.y6f{bottom:10.048912px;}
.y98{bottom:10.880051px;}
.y72{bottom:10.974975px;}
.y144{bottom:11.340000px;}
.yb1{bottom:11.555664px;}
.y7c{bottom:14.698803px;}
.y16d{bottom:14.991741px;}
.y36{bottom:15.834000px;}
.y96{bottom:17.820000px;}
.y73{bottom:17.866992px;}
.y99{bottom:17.966324px;}
.ye4{bottom:18.180000px;}
.yb2{bottom:18.516776px;}
.y167{bottom:18.612008px;}
.yb9{bottom:19.317550px;}
.y84{bottom:25.351538px;}
.y143{bottom:26.454000px;}
.y7d{bottom:27.667448px;}
.y35{bottom:28.614000px;}
.y9e{bottom:29.719946px;}
.y168{bottom:30.595707px;}
.y74{bottom:31.483129px;}
.ye8{bottom:32.934000px;}
.y95{bottom:32.940000px;}
.yb3{bottom:33.632498px;}
.y7b{bottom:37.615473px;}
.y34{bottom:41.394000px;}
.y169{bottom:42.536705px;}
.y7e{bottom:44.822200px;}
.y75{bottom:45.767085px;}
.ye7{bottom:47.874000px;}
.y94{bottom:47.880000px;}
.ye3{bottom:48.060000px;}
.yb4{bottom:48.826766px;}
.y33{bottom:54.174000px;}
.y16a{bottom:54.520404px;}
.y32{bottom:57.234000px;}
.y170{bottom:57.430928px;}
.y9a{bottom:58.474365px;}
.y76{bottom:60.124826px;}
.y7f{bottom:62.069558px;}
.ye6{bottom:62.814000px;}
.y93{bottom:62.820000px;}
.ye2{bottom:63.000000px;}
.yb5{bottom:63.940572px;}
.y16e{bottom:64.275046px;}
.y16b{bottom:66.502371px;}
.y31{bottom:67.134000px;}
.y16f{bottom:71.118588px;}
.y77{bottom:74.408029px;}
.y92{bottom:77.940000px;}
.yb6{bottom:79.119514px;}
.y80{bottom:79.332727px;}
.y30{bottom:79.914000px;}
.y4{bottom:81.936000px;}
.ybc{bottom:82.765780px;}
.y2f{bottom:82.974000px;}
.ybb{bottom:83.378813px;}
.y9c{bottom:85.230682px;}
.y78{bottom:88.743936px;}
.ydc{bottom:89.004664px;}
.yba{bottom:92.523215px;}
.y91{bottom:92.880000px;}
.ye1{bottom:93.060000px;}
.y161{bottom:94.107346px;}
.yb7{bottom:94.234598px;}
.y81{bottom:96.491243px;}
.yde{bottom:97.006016px;}
.y9b{bottom:98.966443px;}
.ybd{bottom:99.343202px;}
.y15b{bottom:100.904725px;}
.y79{bottom:103.101676px;}
.y162{bottom:107.552077px;}
.ye0{bottom:108.000000px;}
.ya3{bottom:109.304981px;}
.y15c{bottom:111.302753px;}
.y82{bottom:113.755165px;}
.y7a{bottom:117.391656px;}
.y9f{bottom:118.008766px;}
.yac{bottom:122.580967px;}
.y15d{bottom:123.483795px;}
.ya0{bottom:125.096955px;}
.y86{bottom:130.612522px;}
.ya5{bottom:131.144266px;}
.ye5{bottom:131.796000px;}
.y142{bottom:133.776000px;}
.y15e{bottom:135.624445px;}
.y2e{bottom:136.476000px;}
.ya4{bottom:136.853131px;}
.ya6{bottom:138.111125px;}
.yad{bottom:138.909345px;}
.y5b{bottom:142.416000px;}
.y15f{bottom:147.805487px;}
.y6b{bottom:148.441116px;}
.y165{bottom:150.759865px;}
.y141{bottom:152.850000px;}
.ya7{bottom:153.226209px;}
.y164{bottom:158.041947px;}
.y64{bottom:158.070665px;}
.y160{bottom:159.986528px;}
.y8f{bottom:160.389587px;}
.y5a{bottom:160.410000px;}
.y6c{bottom:161.353295px;}
.y163{bottom:165.324029px;}
.ya1{bottom:165.608190px;}
.y65{bottom:166.442877px;}
.y8d{bottom:168.016431px;}
.ya8{bottom:168.417922px;}
.y140{bottom:169.410000px;}
.y8c{bottom:173.685743px;}
.y59{bottom:178.410000px;}
.y66{bottom:182.374171px;}
.y8a{bottom:182.728033px;}
.ya9{bottom:183.533006px;}
.y145{bottom:184.320000px;}
.y13f{bottom:185.970000px;}
.y156{bottom:186.327814px;}
.y8e{bottom:188.254294px;}
.y89{bottom:188.419932px;}
.y8b{bottom:192.402755px;}
.y150{bottom:193.113653px;}
.y58{bottom:196.410000px;}
.y67{bottom:198.312995px;}
.yaa{bottom:198.711947px;}
.y157{bottom:199.899491px;}
.y13e{bottom:202.350000px;}
.y88{bottom:202.958367px;}
.yae{bottom:202.958475px;}
.y151{bottom:203.477059px;}
.ydd{bottom:203.769466px;}
.ya2{bottom:206.113038px;}
.ydb{bottom:209.050486px;}
.yd9{bottom:211.815518px;}
.yaf{bottom:212.115649px;}
.yab{bottom:213.827031px;}
.y68{bottom:214.244289px;}
.y57{bottom:214.410000px;}
.y152{bottom:215.629250px;}
.y87{bottom:217.745259px;}
.y13d{bottom:218.910000px;}
.yb0{bottom:219.861570px;}
.y6e{bottom:220.192173px;}
.y147{bottom:223.938439px;}
.yd2{bottom:224.561487px;}
.y153{bottom:227.741048px;}
.y69{bottom:230.190641px;}
.y6d{bottom:231.191994px;}
.y56{bottom:232.410000px;}
.yca{bottom:234.536037px;}
.y13c{bottom:235.290000px;}
.y14f{bottom:235.340495px;}
.y154{bottom:239.893238px;}
.yc5{bottom:242.409674px;}
.y15a{bottom:242.836076px;}
.y6a{bottom:246.129465px;}
.ycb{bottom:246.151727px;}
.y159{bottom:250.089307px;}
.y55{bottom:250.410000px;}
.ybe{bottom:250.960201px;}
.y13b{bottom:251.850000px;}
.y155{bottom:252.051199px;}
.y14d{bottom:254.007321px;}
.y158{bottom:257.359848px;}
.ybf{bottom:257.920675px;}
.yc6{bottom:258.706123px;}
.ycc{bottom:261.892615px;}
.y149{bottom:262.160713px;}
.y85{bottom:262.745895px;}
.y14a{bottom:265.680578px;}
.y14b{bottom:266.673065px;}
.y13a{bottom:268.230000px;}
.y54{bottom:268.410000px;}
.y2d{bottom:269.310000px;}
.yc0{bottom:273.035759px;}
.yd3{bottom:274.229895px;}
.y148{bottom:275.565052px;}
.y14c{bottom:277.538485px;}
.ycd{bottom:277.563259px;}
.y14e{bottom:281.554593px;}
.y139{bottom:284.790000px;}
.y146{bottom:285.726499px;}
.y53{bottom:286.410000px;}
.y2c{bottom:287.310000px;}
.yc1{bottom:288.214700px;}
.yce{bottom:293.304147px;}
.y138{bottom:301.170000px;}
.yc2{bottom:303.329784px;}
.y52{bottom:304.410000px;}
.y2b{bottom:305.310000px;}
.ycf{bottom:308.968406px;}
.yd7{bottom:315.807551px;}
.y137{bottom:317.730000px;}
.yc3{bottom:318.521497px;}
.y51{bottom:322.410000px;}
.yc8{bottom:322.768024px;}
.yd6{bottom:323.272499px;}
.y2a{bottom:323.310000px;}
.yd0{bottom:324.715680px;}
.yda{bottom:329.415596px;}
.yd5{bottom:330.731062px;}
.yc7{bottom:331.912427px;}
.yc4{bottom:333.642966px;}
.y136{bottom:334.335000px;}
.yd4{bottom:338.215168px;}
.yc9{bottom:338.809043px;}
.y50{bottom:340.455000px;}
.yd1{bottom:340.462954px;}
.y29{bottom:341.355000px;}
.yd8{bottom:348.049231px;}
.y135{bottom:350.715000px;}
.y4f{bottom:358.455000px;}
.y28{bottom:359.355000px;}
.y134{bottom:367.275000px;}
.y4e{bottom:376.455000px;}
.y27{bottom:377.355000px;}
.y133{bottom:383.655000px;}
.y4d{bottom:394.455000px;}
.y26{bottom:395.355000px;}
.y132{bottom:400.215000px;}
.y4c{bottom:412.455000px;}
.y25{bottom:413.355000px;}
.y131{bottom:416.595000px;}
.y4b{bottom:430.455000px;}
.y24{bottom:431.355000px;}
.y130{bottom:433.155000px;}
.y4a{bottom:448.455000px;}
.y23{bottom:449.355000px;}
.y12f{bottom:449.535000px;}
.y10d{bottom:464.475000px;}
.y12e{bottom:466.095000px;}
.y49{bottom:466.455000px;}
.y22{bottom:467.355000px;}
.y10c{bottom:482.475000px;}
.y12d{bottom:482.655000px;}
.y48{bottom:484.455000px;}
.y21{bottom:485.355000px;}
.y12c{bottom:499.035000px;}
.y10b{bottom:500.475000px;}
.y47{bottom:502.455000px;}
.y20{bottom:503.355000px;}
.y12b{bottom:515.595000px;}
.y10a{bottom:518.475000px;}
.y46{bottom:520.455000px;}
.y1f{bottom:521.355000px;}
.y12a{bottom:531.975000px;}
.y109{bottom:536.475000px;}
.y45{bottom:538.455000px;}
.y1e{bottom:539.355000px;}
.y129{bottom:548.535000px;}
.y62{bottom:551.595000px;}
.y108{bottom:554.475000px;}
.y44{bottom:556.455000px;}
.y1d{bottom:557.355000px;}
.y128{bottom:564.915000px;}
.y61{bottom:569.595000px;}
.y107{bottom:572.475000px;}
.y43{bottom:574.455000px;}
.y1c{bottom:575.355000px;}
.y127{bottom:581.475000px;}
.y60{bottom:587.595000px;}
.y106{bottom:590.475000px;}
.y42{bottom:592.455000px;}
.y1b{bottom:593.355000px;}
.y126{bottom:597.885000px;}
.y5f{bottom:605.625000px;}
.y105{bottom:608.505000px;}
.y41{bottom:610.485000px;}
.y1a{bottom:611.385000px;}
.y125{bottom:614.445000px;}
.y5e{bottom:623.625000px;}
.y104{bottom:626.505000px;}
.y40{bottom:628.485000px;}
.y19{bottom:629.385000px;}
.y124{bottom:630.825000px;}
.y5d{bottom:641.625000px;}
.y103{bottom:644.505000px;}
.y3f{bottom:646.485000px;}
.y18{bottom:647.385000px;}
.y5c{bottom:659.625000px;}
.y102{bottom:662.505000px;}
.y123{bottom:663.945000px;}
.y3e{bottom:664.485000px;}
.y17{bottom:665.385000px;}
.ydf{bottom:674.025000px;}
.y122{bottom:680.325000px;}
.y101{bottom:680.505000px;}
.y3d{bottom:682.485000px;}
.y16{bottom:683.385000px;}
.y121{bottom:696.885000px;}
.y100{bottom:698.505000px;}
.y3c{bottom:700.485000px;}
.y15{bottom:701.385000px;}
.y120{bottom:713.265000px;}
.yff{bottom:716.505000px;}
.y3b{bottom:718.485000px;}
.y14{bottom:719.385000px;}
.y11f{bottom:729.825000px;}
.y90{bottom:733.785000px;}
.yfe{bottom:734.505000px;}
.y13{bottom:737.385000px;}
.y11e{bottom:746.205000px;}
.yfd{bottom:752.505000px;}
.y12{bottom:755.385000px;}
.y11d{bottom:769.965000px;}
.yfc{bottom:770.505000px;}
.y11{bottom:773.385000px;}
.yfb{bottom:788.505000px;}
.y10{bottom:791.385000px;}
.y97{bottom:799.560000px;}
.yfa{bottom:806.505000px;}
.yf{bottom:809.385000px;}
.y11c{bottom:811.725000px;}
.yf9{bottom:824.505000px;}
.ye{bottom:827.385000px;}
.y11b{bottom:828.285000px;}
.y63{bottom:842.220000px;}
.yf8{bottom:842.505000px;}
.yd{bottom:845.385000px;}
.yf7{bottom:860.505000px;}
.y11a{bottom:867.030000px;}
.yf6{bottom:878.550000px;}
.yf5{bottom:896.550000px;}
.y8{bottom:907.170000px;}
.y119{bottom:911.130000px;}
.yf4{bottom:914.550000px;}
.yf3{bottom:932.550000px;}
.y7{bottom:933.990000px;}
.y118{bottom:934.710000px;}
.yf2{bottom:950.550000px;}
.yc{bottom:951.270000px;}
.y6{bottom:960.990000px;}
.yf1{bottom:968.550000px;}
.y5{bottom:974.490000px;}
.y117{bottom:976.470000px;}
.yb{bottom:983.490000px;}
.yf0{bottom:986.550000px;}
.y116{bottom:994.470000px;}
.yef{bottom:1004.550000px;}
.ya{bottom:1010.130000px;}
.y115{bottom:1012.470000px;}
.yee{bottom:1022.550000px;}
.y114{bottom:1030.470000px;}
.y9{bottom:1036.590000px;}
.yed{bottom:1040.550000px;}
.y113{bottom:1048.470000px;}
.yec{bottom:1058.550000px;}
.y112{bottom:1066.470000px;}
.yeb{bottom:1076.550000px;}
.y3{bottom:1081.950000px;}
.y111{bottom:1084.470000px;}
.yea{bottom:1094.550000px;}
.y110{bottom:1102.470000px;}
.ye9{bottom:1112.550000px;}
.y10f{bottom:1120.470000px;}
.y2{bottom:1129.290000px;}
.y3a{bottom:1130.580000px;}
.y10e{bottom:1145.700000px;}
.y39{bottom:1148.580000px;}
.y1{bottom:1176.480000px;}
.y38{bottom:1184.940000px;}
.h37{height:19.902709px;}
.h38{height:19.961928px;}
.hb{height:22.016250px;}
.h27{height:22.025628px;}
.h3a{height:22.728553px;}
.h39{height:22.745953px;}
.h3c{height:22.787727px;}
.h3b{height:22.805172px;}
.h2c{height:24.005460px;}
.h2b{height:24.067958px;}
.h21{height:25.172146px;}
.h20{height:25.237682px;}
.h36{height:25.589438px;}
.h35{height:25.649620px;}
.h25{height:28.318931px;}
.h26{height:28.322633px;}
.h23{height:28.385532px;}
.h24{height:28.389243px;}
.h15{height:29.603459px;}
.h19{height:29.678596px;}
.h13{height:29.680747px;}
.h14{height:29.681238px;}
.h10{height:29.755864px;}
.h16{height:30.142520px;}
.h17{height:30.219788px;}
.h28{height:31.465183px;}
.h22{height:31.531784px;}
.h18{height:33.082920px;}
.h11{height:33.467259px;}
.h12{height:33.472464px;}
.hd{height:33.603750px;}
.h2a{height:34.615960px;}
.h29{height:34.678036px;}
.h34{height:38.016978px;}
.h4{height:41.535703px;}
.hc{height:41.658047px;}
.h2d{height:42.072053px;}
.h1a{height:42.528850px;}
.h1b{height:42.600740px;}
.h5{height:42.759141px;}
.h3{height:47.980898px;}
.h9{height:53.709961px;}
.h1c{height:54.631571px;}
.h8{height:55.291992px;}
.h32{height:57.960000px;}
.he{height:59.439023px;}
.h7{height:59.551172px;}
.h30{height:61.189805px;}
.h1e{height:65.884219px;}
.h31{height:73.722656px;}
.h2f{height:74.880000px;}
.h6{height:89.204414px;}
.ha{height:91.980000px;}
.h2{height:98.051133px;}
.h1d{height:104.940000px;}
.h2e{height:120.060000px;}
.hf{height:271.434324px;}
.h33{height:293.412500px;}
.h1f{height:356.925432px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:367.729046px;}
.w6{width:371.693187px;}
.w3{width:372.135000px;}
.w8{width:373.935000px;}
.w5{width:374.115000px;}
.w4{width:374.210208px;}
.w7{width:374.295000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:5.400000px;}
.x42{left:7.103166px;}
.x3c{left:10.592161px;}
.x40{left:13.012040px;}
.x3d{left:14.724923px;}
.x3f{left:17.160769px;}
.x1e{left:21.326857px;}
.x3e{left:25.348378px;}
.x1d{left:26.477471px;}
.x3b{left:29.088366px;}
.x1c{left:30.405944px;}
.x1b{left:34.427038px;}
.x2d{left:38.580117px;}
.x2c{left:41.959262px;}
.x2b{left:45.400995px;}
.x65{left:51.855809px;}
.x17{left:52.992593px;}
.x66{left:55.871152px;}
.x2a{left:56.872589px;}
.x45{left:60.864208px;}
.x28{left:62.201199px;}
.x1{left:63.899987px;}
.x64{left:66.186270px;}
.x27{left:70.909804px;}
.x41{left:75.527820px;}
.x62{left:81.650297px;}
.x63{left:89.653307px;}
.x18{left:94.962570px;}
.x24{left:97.613179px;}
.x2e{left:99.273164px;}
.x25{left:104.706569px;}
.x48{left:108.755987px;}
.x26{left:113.418939px;}
.x43{left:115.693089px;}
.x5{left:131.975987px;}
.x51{left:133.235987px;}
.x6{left:139.535987px;}
.x52{left:140.615987px;}
.x55{left:144.215987px;}
.x4b{left:146.195987px;}
.x7{left:147.275987px;}
.x19{left:148.599743px;}
.x56{left:151.589987px;}
.x4c{left:153.749987px;}
.x1a{left:155.625362px;}
.x8{left:160.409987px;}
.x61{left:172.110000px;}
.x57{left:186.509987px;}
.x58{left:193.889987px;}
.x23{left:195.316719px;}
.x39{left:197.945989px;}
.x32{left:199.344653px;}
.xf{left:200.369987px;}
.x37{left:201.401135px;}
.x30{left:202.787025px;}
.x15{left:205.136019px;}
.x34{left:206.306036px;}
.x10{left:207.749987px;}
.x21{left:209.006510px;}
.x13{left:211.837842px;}
.x20{left:213.140556px;}
.x50{left:214.229987px;}
.x12{left:215.896587px;}
.x1f{left:217.342373px;}
.x44{left:220.720571px;}
.x36{left:222.745121px;}
.x2f{left:224.993200px;}
.x2{left:229.709987px;}
.x4f{left:231.869987px;}
.xb{left:234.389987px;}
.x11{left:235.572837px;}
.x53{left:237.269987px;}
.x47{left:240.375000px;}
.xc{left:241.949987px;}
.x6a{left:243.474833px;}
.x68{left:245.573605px;}
.x54{left:248.609987px;}
.x67{left:250.878193px;}
.xd{left:254.189987px;}
.xe{left:261.569987px;}
.x38{left:264.577289px;}
.x31{left:265.975952px;}
.x3a{left:272.279517px;}
.x14{left:275.618111px;}
.x22{left:277.523236px;}
.x35{left:282.427810px;}
.x69{left:290.322419px;}
.x29{left:294.735000px;}
.x4d{left:300.314987px;}
.x59{left:303.194987px;}
.x4e{left:307.874987px;}
.x5a{left:310.574987px;}
.x49{left:346.394987px;}
.x33{left:351.920302px;}
.x4a{left:353.954987px;}
.x16{left:355.399923px;}
.x6c{left:361.669131px;}
.x6b{left:363.456546px;}
.x5d{left:386.714987px;}
.x9{left:427.034987px;}
.x5b{left:430.634987px;}
.xa{left:434.414987px;}
.x5c{left:437.474987px;}
.x3{left:455.114987px;}
.x46{left:456.375000px;}
.x60{left:509.144987px;}
.x5e{left:540.284987px;}
.x5f{left:547.664987px;}
@media print{
.v6{vertical-align:-27.382121pt;}
.v4{vertical-align:-22.325897pt;}
.v8{vertical-align:-7.980926pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.120000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:22.111740pt;}
.ls54{letter-spacing:-1.409975pt;}
.ls56{letter-spacing:-1.355483pt;}
.ls55{letter-spacing:-1.201090pt;}
.ls2f{letter-spacing:-0.840567pt;}
.ls2e{letter-spacing:-0.787150pt;}
.ls4b{letter-spacing:-0.722111pt;}
.ls5b{letter-spacing:-0.715298pt;}
.ls53{letter-spacing:-0.715205pt;}
.ls64{letter-spacing:-0.706215pt;}
.ls52{letter-spacing:-0.706123pt;}
.ls5e{letter-spacing:-0.683418pt;}
.ls4f{letter-spacing:-0.678966pt;}
.ls68{letter-spacing:-0.678877pt;}
.ls51{letter-spacing:-0.672153pt;}
.ls48{letter-spacing:-0.667612pt;}
.ls4e{letter-spacing:-0.665341pt;}
.ls65{letter-spacing:-0.660799pt;}
.ls5a{letter-spacing:-0.649445pt;}
.ls67{letter-spacing:-0.608492pt;}
.ls61{letter-spacing:-0.563082pt;}
.ls5f{letter-spacing:-0.531295pt;}
.ls30{letter-spacing:-0.519369pt;}
.ls6e{letter-spacing:-0.499508pt;}
.ls7c{letter-spacing:-0.480000pt;}
.ls88{letter-spacing:-0.371349pt;}
.ls90{letter-spacing:-0.344678pt;}
.ls87{letter-spacing:-0.322109pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.302519pt;}
.ls86{letter-spacing:-0.293386pt;}
.ls6{letter-spacing:-0.288000pt;}
.ls71{letter-spacing:-0.286082pt;}
.ls8d{letter-spacing:-0.270611pt;}
.ls93{letter-spacing:-0.266511pt;}
.ls62{letter-spacing:-0.261106pt;}
.ls80{letter-spacing:-0.258508pt;}
.ls7f{letter-spacing:-0.235940pt;}
.ls57{letter-spacing:-0.231590pt;}
.ls7a{letter-spacing:-0.198933pt;}
.ls7{letter-spacing:-0.178133pt;}
.ls6a{letter-spacing:-0.160978pt;}
.ls6c{letter-spacing:-0.136002pt;}
.ls40{letter-spacing:-0.124479pt;}
.ls6d{letter-spacing:-0.115114pt;}
.ls60{letter-spacing:-0.110119pt;}
.ls6b{letter-spacing:-0.105124pt;}
.ls37{letter-spacing:-0.055413pt;}
.ls26{letter-spacing:-0.049256pt;}
.ls8{letter-spacing:-0.043413pt;}
.ls59{letter-spacing:-0.041777pt;}
.ls44{letter-spacing:-0.038598pt;}
.ls84{letter-spacing:-0.037750pt;}
.ls2a{letter-spacing:-0.032932pt;}
.ls81{letter-spacing:-0.031595pt;}
.ls5c{letter-spacing:-0.027931pt;}
.ls36{letter-spacing:-0.026074pt;}
.ls27{letter-spacing:-0.024628pt;}
.ls45{letter-spacing:-0.020891pt;}
.ls83{letter-spacing:-0.018875pt;}
.ls7b{letter-spacing:-0.016000pt;}
.ls25{letter-spacing:-0.012448pt;}
.ls2c{letter-spacing:-0.008300pt;}
.ls46{letter-spacing:-0.007039pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004758pt;}
.ls15{letter-spacing:0.005359pt;}
.ls35{letter-spacing:0.010547pt;}
.ls28{letter-spacing:0.012450pt;}
.ls42{letter-spacing:0.016597pt;}
.ls75{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.034970pt;}
.ls3c{letter-spacing:0.041225pt;}
.ls4d{letter-spacing:0.045183pt;}
.ls78{letter-spacing:0.045707pt;}
.ls49{letter-spacing:0.048822pt;}
.ls82{letter-spacing:0.055395pt;}
.ls2b{letter-spacing:0.057564pt;}
.ls22{letter-spacing:0.063979pt;}
.ls8e{letter-spacing:0.065243pt;}
.ls1a{letter-spacing:0.074240pt;}
.ls1{letter-spacing:0.085760pt;}
.lsb{letter-spacing:0.094933pt;}
.ls33{letter-spacing:0.098519pt;}
.ls13{letter-spacing:0.108302pt;}
.ls19{letter-spacing:0.120320pt;}
.ls20{letter-spacing:0.127691pt;}
.ls70{letter-spacing:0.128056pt;}
.ls24{letter-spacing:0.129833pt;}
.ls38{letter-spacing:0.132798pt;}
.ls43{letter-spacing:0.139408pt;}
.ls7d{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.164156pt;}
.ls3b{letter-spacing:0.164366pt;}
.ls31{letter-spacing:0.164378pt;}
.ls1d{letter-spacing:0.176640pt;}
.ls1f{letter-spacing:0.185067pt;}
.ls3e{letter-spacing:0.192206pt;}
.ls23{letter-spacing:0.193545pt;}
.ls17{letter-spacing:0.195262pt;}
.ls18{letter-spacing:0.205867pt;}
.ls89{letter-spacing:0.209268pt;}
.ls6f{letter-spacing:0.233891pt;}
.ls79{letter-spacing:0.251200pt;}
.ls1c{letter-spacing:0.280320pt;}
.ls3f{letter-spacing:0.297143pt;}
.lsa{letter-spacing:0.299733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.323913pt;}
.ls72{letter-spacing:0.340267pt;}
.ls10{letter-spacing:0.380160pt;}
.ls74{letter-spacing:0.380267pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.416000pt;}
.ls2{letter-spacing:0.416357pt;}
.ls1b{letter-spacing:0.469760pt;}
.ls77{letter-spacing:0.565333pt;}
.ls73{letter-spacing:0.693333pt;}
.ls7e{letter-spacing:0.800000pt;}
.ls69{letter-spacing:1.260122pt;}
.lsd{letter-spacing:3.582350pt;}
.ls11{letter-spacing:3.973120pt;}
.ls8a{letter-spacing:5.248211pt;}
.ls95{letter-spacing:5.432718pt;}
.ls8c{letter-spacing:5.453219pt;}
.ls92{letter-spacing:5.473720pt;}
.ls91{letter-spacing:5.555723pt;}
.ls94{letter-spacing:5.596725pt;}
.ls8b{letter-spacing:5.617226pt;}
.ls4a{letter-spacing:6.017588pt;}
.ls47{letter-spacing:6.063003pt;}
.ls32{letter-spacing:6.585814pt;}
.ls5d{letter-spacing:6.653408pt;}
.ls50{letter-spacing:6.698824pt;}
.ls66{letter-spacing:6.721532pt;}
.ls3d{letter-spacing:7.871504pt;}
.ls29{letter-spacing:7.925052pt;}
.ls2d{letter-spacing:7.951826pt;}
.ls16{letter-spacing:19.843751pt;}
.ls21{letter-spacing:24.708397pt;}
.ls39{letter-spacing:38.923087pt;}
.ls3a{letter-spacing:39.003396pt;}
.ls63{letter-spacing:59.214404pt;}
.ls8f{letter-spacing:65.160462pt;}
.ls85{letter-spacing:65.180979pt;}
.ls4c{letter-spacing:65.253909pt;}
.ls58{letter-spacing:65.276614pt;}
.lse{letter-spacing:79.158437pt;}
.ls76{letter-spacing:122.822425pt;}
.lsf{letter-spacing:330.837392pt;}
.ls0{letter-spacing:2712.122453pt;}
.ws3f{word-spacing:-71.240664pt;}
.ws32{word-spacing:-71.233486pt;}
.ws4a{word-spacing:-65.193980pt;}
.ws22{word-spacing:-46.053468pt;}
.ws1f{word-spacing:-45.973159pt;}
.wsa{word-spacing:-31.758469pt;}
.ws18{word-spacing:-15.882473pt;}
.ws14{word-spacing:-15.855700pt;}
.ws25{word-spacing:-15.802152pt;}
.ws50{word-spacing:-13.447810pt;}
.ws39{word-spacing:-13.409320pt;}
.ws45{word-spacing:-13.379686pt;}
.ws2d{word-spacing:-12.789281pt;}
.ws31{word-spacing:-12.743865pt;}
.ws61{word-spacing:-11.413333pt;}
.ws63{word-spacing:-11.099200pt;}
.ws8{word-spacing:-11.033067pt;}
.ws6b{word-spacing:-11.002313pt;}
.ws72{word-spacing:-10.995833pt;}
.ws70{word-spacing:-10.954831pt;}
.ws62{word-spacing:-10.893707pt;}
.ws71{word-spacing:-10.872828pt;}
.ws2{word-spacing:-10.848000pt;}
.ws6c{word-spacing:-10.838307pt;}
.ws65{word-spacing:-10.832000pt;}
.ws73{word-spacing:-10.831826pt;}
.ws5{word-spacing:-10.804587pt;}
.ws64{word-spacing:-10.649067pt;}
.ws6a{word-spacing:-10.633299pt;}
.ws1{word-spacing:-10.560000pt;}
.ws60{word-spacing:-9.082453pt;}
.ws5f{word-spacing:-8.729387pt;}
.ws5a{word-spacing:-8.435468pt;}
.ws26{word-spacing:-8.389120pt;}
.ws58{word-spacing:-8.216285pt;}
.ws5b{word-spacing:-8.201577pt;}
.ws0{word-spacing:-8.130560pt;}
.ws59{word-spacing:-8.101171pt;}
.ws16{word-spacing:-7.988211pt;}
.ws1e{word-spacing:-7.971151pt;}
.ws12{word-spacing:-7.943097pt;}
.ws13{word-spacing:-7.930648pt;}
.ws24{word-spacing:-7.929415pt;}
.ws17{word-spacing:-7.922348pt;}
.wsf{word-spacing:-7.916967pt;}
.ws10{word-spacing:-7.904786pt;}
.ws15{word-spacing:-7.897716pt;}
.ws6{word-spacing:-7.648000pt;}
.ws57{word-spacing:-7.470842pt;}
.ws5d{word-spacing:-7.455062pt;}
.wsd{word-spacing:-7.243616pt;}
.ws3{word-spacing:-7.232000pt;}
.ws9{word-spacing:-7.177763pt;}
.ws4{word-spacing:-7.053867pt;}
.ws19{word-spacing:-7.032274pt;}
.ws30{word-spacing:-6.775100pt;}
.ws2f{word-spacing:-6.761248pt;}
.ws2a{word-spacing:-6.726278pt;}
.ws2c{word-spacing:-6.719238pt;}
.ws35{word-spacing:-6.715855pt;}
.ws38{word-spacing:-6.710496pt;}
.ws2b{word-spacing:-6.705387pt;}
.ws44{word-spacing:-6.698347pt;}
.ws1a{word-spacing:-6.512905pt;}
.ws51{word-spacing:-6.101127pt;}
.ws4f{word-spacing:-6.065479pt;}
.ws67{word-spacing:-6.058302pt;}
.ws37{word-spacing:-6.031530pt;}
.ws3a{word-spacing:-6.019276pt;}
.ws43{word-spacing:-6.010980pt;}
.ws48{word-spacing:-5.869458pt;}
.ws68{word-spacing:-5.598479pt;}
.ws5e{word-spacing:-5.496320pt;}
.ws47{word-spacing:-5.432754pt;}
.ws49{word-spacing:-5.416495pt;}
.ws6e{word-spacing:-5.403241pt;}
.ws6f{word-spacing:-5.399108pt;}
.ws6d{word-spacing:-5.389210pt;}
.ws69{word-spacing:-5.385088pt;}
.ws46{word-spacing:-5.280632pt;}
.ws52{word-spacing:-5.218543pt;}
.ws3c{word-spacing:-4.762960pt;}
.ws3d{word-spacing:-4.608566pt;}
.ws3b{word-spacing:-4.554074pt;}
.ws3e{word-spacing:-4.241447pt;}
.ws1d{word-spacing:-1.706657pt;}
.ws11{word-spacing:-1.235545pt;}
.ws1b{word-spacing:-1.119625pt;}
.ws1c{word-spacing:-0.514322pt;}
.ws7{word-spacing:0.000000pt;}
.ws42{word-spacing:0.059302pt;}
.ws4e{word-spacing:0.161487pt;}
.ws36{word-spacing:0.201623pt;}
.ws23{word-spacing:1.312811pt;}
.wsc{word-spacing:17.972827pt;}
.wsb{word-spacing:18.053136pt;}
.wse{word-spacing:18.374372pt;}
.ws56{word-spacing:28.021514pt;}
.ws54{word-spacing:28.023784pt;}
.ws55{word-spacing:28.120961pt;}
.ws53{word-spacing:28.127773pt;}
.ws29{word-spacing:29.258779pt;}
.ws27{word-spacing:29.281483pt;}
.ws28{word-spacing:29.548493pt;}
.ws66{word-spacing:32.282906pt;}
.ws21{word-spacing:34.382629pt;}
.ws20{word-spacing:34.650326pt;}
.ws4c{word-spacing:40.335439pt;}
.ws4b{word-spacing:40.457592pt;}
.ws4d{word-spacing:40.503002pt;}
.ws41{word-spacing:46.699839pt;}
.ws40{word-spacing:46.799286pt;}
.ws33{word-spacing:46.837671pt;}
.ws34{word-spacing:46.919863pt;}
.ws2e{word-spacing:248.609593pt;}
.ws5c{word-spacing:635.433715pt;}
._29{margin-left:-318.537259pt;}
._21{margin-left:-35.174897pt;}
._1f{margin-left:-24.255016pt;}
._20{margin-left:-7.717748pt;}
._22{margin-left:-6.542022pt;}
._2a{margin-left:-4.726047pt;}
._23{margin-left:-3.376247pt;}
._9{margin-left:-2.400000pt;}
._1{margin-left:-1.104000pt;}
._2{width:0.903040pt;}
._3{width:2.168960pt;}
._5{width:3.312000pt;}
._4{width:4.384000pt;}
._8{width:5.296000pt;}
._6{width:6.768000pt;}
._c{width:7.736960pt;}
._7{width:8.640000pt;}
._12{width:9.857920pt;}
._24{width:10.801920pt;}
._13{width:11.808000pt;}
._1c{width:12.857640pt;}
._f{width:14.496000pt;}
._10{width:15.648000pt;}
._26{width:17.232000pt;}
._15{width:18.624000pt;}
._a{width:20.400000pt;}
._18{width:21.360000pt;}
._1b{width:23.136000pt;}
._25{width:24.864000pt;}
._1d{width:26.016000pt;}
._b{width:27.616000pt;}
._d{width:29.424000pt;}
._e{width:30.394667pt;}
._1e{width:31.966293pt;}
._11{width:36.144000pt;}
._14{width:39.216000pt;}
._16{width:64.416000pt;}
._17{width:65.336960pt;}
._28{width:120.538667pt;}
._27{width:144.858667pt;}
._0{width:2702.576213pt;}
._19{width:2709.808213pt;}
._1a{width:2712.122453pt;}
.fs1f{font-size:13.408384pt;}
.fs1c{font-size:16.090061pt;}
.fs1d{font-size:16.145915pt;}
.fs28{font-size:16.962442pt;}
.fs29{font-size:17.012913pt;}
.fs1e{font-size:18.771738pt;}
.fs2b{font-size:19.370819pt;}
.fs2a{font-size:19.385648pt;}
.fs2d{font-size:19.421251pt;}
.fs2c{font-size:19.436119pt;}
.fs16{font-size:21.453415pt;}
.fs15{font-size:21.509269pt;}
.fs27{font-size:21.809059pt;}
.fs26{font-size:21.860350pt;}
.fs1a{font-size:24.135319pt;}
.fs1b{font-size:24.138474pt;}
.fs18{font-size:24.192081pt;}
.fs19{font-size:24.195244pt;}
.fs8{font-size:24.320000pt;}
.fsd{font-size:25.230081pt;}
.fs11{font-size:25.294117pt;}
.fsc{font-size:25.295951pt;}
.fs9{font-size:25.359971pt;}
.fse{font-size:25.689505pt;}
.fsf{font-size:25.755359pt;}
.fs20{font-size:26.816768pt;}
.fs17{font-size:26.873531pt;}
.fs10{font-size:28.195514pt;}
.fsa{font-size:28.523074pt;}
.fsb{font-size:28.527509pt;}
.fs22{font-size:29.502075pt;}
.fs21{font-size:29.554980pt;}
.fs7{font-size:32.000000pt;}
.fs25{font-size:33.975354pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs23{font-size:37.599330pt;}
.fs12{font-size:38.007565pt;}
.fs13{font-size:38.071812pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs14{font-size:58.880000pt;}
.fs24{font-size:64.000000pt;}
.fs3{font-size:77.440000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:1.525352pt;}
.y71{bottom:1.571379pt;}
.y9d{bottom:1.933323pt;}
.yb8{bottom:2.673560pt;}
.y37{bottom:2.720000pt;}
.y83{bottom:3.613302pt;}
.y70{bottom:4.239110pt;}
.y166{bottom:7.470064pt;}
.y6f{bottom:8.932367pt;}
.y98{bottom:9.671156pt;}
.y72{bottom:9.755534pt;}
.y144{bottom:10.080000pt;}
.yb1{bottom:10.271701pt;}
.y7c{bottom:13.065602pt;}
.y16d{bottom:13.325992pt;}
.y36{bottom:14.074667pt;}
.y96{bottom:15.840000pt;}
.y73{bottom:15.881771pt;}
.y99{bottom:15.970066pt;}
.ye4{bottom:16.160000pt;}
.yb2{bottom:16.459356pt;}
.y167{bottom:16.544008pt;}
.yb9{bottom:17.171155pt;}
.y84{bottom:22.534701pt;}
.y143{bottom:23.514667pt;}
.y7d{bottom:24.593288pt;}
.y35{bottom:25.434667pt;}
.y9e{bottom:26.417730pt;}
.y168{bottom:27.196184pt;}
.y74{bottom:27.985004pt;}
.ye8{bottom:29.274667pt;}
.y95{bottom:29.280000pt;}
.yb3{bottom:29.895554pt;}
.y7b{bottom:33.435976pt;}
.y34{bottom:36.794667pt;}
.y169{bottom:37.810405pt;}
.y7e{bottom:39.841956pt;}
.y75{bottom:40.681854pt;}
.ye7{bottom:42.554667pt;}
.y94{bottom:42.560000pt;}
.ye3{bottom:42.720000pt;}
.yb4{bottom:43.401569pt;}
.y33{bottom:48.154667pt;}
.y16a{bottom:48.462581pt;}
.y32{bottom:50.874667pt;}
.y170{bottom:51.049714pt;}
.y9a{bottom:51.977214pt;}
.y76{bottom:53.444290pt;}
.y7f{bottom:55.172940pt;}
.ye6{bottom:55.834667pt;}
.y93{bottom:55.840000pt;}
.ye2{bottom:56.000000pt;}
.yb5{bottom:56.836064pt;}
.y16e{bottom:57.133375pt;}
.y16b{bottom:59.113219pt;}
.y31{bottom:59.674667pt;}
.y16f{bottom:63.216522pt;}
.y77{bottom:66.140471pt;}
.y92{bottom:69.280000pt;}
.yb6{bottom:70.328457pt;}
.y80{bottom:70.517979pt;}
.y30{bottom:71.034667pt;}
.y4{bottom:72.832000pt;}
.ybc{bottom:73.569582pt;}
.y2f{bottom:73.754667pt;}
.ybb{bottom:74.114500pt;}
.y9c{bottom:75.760606pt;}
.y78{bottom:78.883498pt;}
.ydc{bottom:79.115257pt;}
.yba{bottom:82.242858pt;}
.y91{bottom:82.560000pt;}
.ye1{bottom:82.720000pt;}
.y161{bottom:83.650975pt;}
.yb7{bottom:83.764087pt;}
.y81{bottom:85.769994pt;}
.yde{bottom:86.227569pt;}
.y9b{bottom:87.970171pt;}
.ybd{bottom:88.305069pt;}
.y15b{bottom:89.693089pt;}
.y79{bottom:91.645934pt;}
.y162{bottom:95.601847pt;}
.ye0{bottom:96.000000pt;}
.ya3{bottom:97.159983pt;}
.y15c{bottom:98.935781pt;}
.y82{bottom:101.115702pt;}
.y7a{bottom:104.348138pt;}
.y9f{bottom:104.896681pt;}
.yac{bottom:108.960860pt;}
.y15d{bottom:109.763373pt;}
.ya0{bottom:111.197293pt;}
.y86{bottom:116.100020pt;}
.ya5{bottom:116.572681pt;}
.ye5{bottom:117.152000pt;}
.y142{bottom:118.912000pt;}
.y15e{bottom:120.555062pt;}
.y2e{bottom:121.312000pt;}
.ya4{bottom:121.647228pt;}
.ya6{bottom:122.765445pt;}
.yad{bottom:123.474973pt;}
.y5b{bottom:126.592000pt;}
.y15f{bottom:131.382655pt;}
.y6b{bottom:131.947659pt;}
.y165{bottom:134.008769pt;}
.y141{bottom:135.866667pt;}
.ya7{bottom:136.201075pt;}
.y164{bottom:140.481731pt;}
.y64{bottom:140.507258pt;}
.y160{bottom:142.210247pt;}
.y8f{bottom:142.568522pt;}
.y5a{bottom:142.586667pt;}
.y6c{bottom:143.425151pt;}
.y163{bottom:146.954692pt;}
.ya1{bottom:147.207280pt;}
.y65{bottom:147.949224pt;}
.y8d{bottom:149.347938pt;}
.ya8{bottom:149.704820pt;}
.y140{bottom:150.586667pt;}
.y8c{bottom:154.387327pt;}
.y59{bottom:158.586667pt;}
.y66{bottom:162.110374pt;}
.y8a{bottom:162.424918pt;}
.ya9{bottom:163.140450pt;}
.y145{bottom:163.840000pt;}
.y13f{bottom:165.306667pt;}
.y156{bottom:165.624724pt;}
.y8e{bottom:167.337151pt;}
.y89{bottom:167.484384pt;}
.y8b{bottom:171.024671pt;}
.y150{bottom:171.656580pt;}
.y58{bottom:174.586667pt;}
.y67{bottom:176.278217pt;}
.yaa{bottom:176.632842pt;}
.y157{bottom:177.688437pt;}
.y13e{bottom:179.866667pt;}
.y88{bottom:180.407438pt;}
.yae{bottom:180.407533pt;}
.y151{bottom:180.868497pt;}
.ydd{bottom:181.128414pt;}
.ya2{bottom:183.211590pt;}
.ydb{bottom:185.822654pt;}
.yd9{bottom:188.280461pt;}
.yaf{bottom:188.547243pt;}
.yab{bottom:190.068472pt;}
.y68{bottom:190.439368pt;}
.y57{bottom:190.586667pt;}
.y152{bottom:191.670444pt;}
.y87{bottom:193.551341pt;}
.y13d{bottom:194.586667pt;}
.yb0{bottom:195.432507pt;}
.y6e{bottom:195.726376pt;}
.y147{bottom:199.056391pt;}
.yd2{bottom:199.610210pt;}
.y153{bottom:202.436487pt;}
.y69{bottom:204.613904pt;}
.y6d{bottom:205.503995pt;}
.y56{bottom:206.586667pt;}
.yca{bottom:208.476477pt;}
.y13c{bottom:209.146667pt;}
.y14f{bottom:209.191551pt;}
.y154{bottom:213.238434pt;}
.yc5{bottom:215.475266pt;}
.y15a{bottom:215.854290pt;}
.y6a{bottom:218.781747pt;}
.ycb{bottom:218.801535pt;}
.y159{bottom:222.301606pt;}
.y55{bottom:222.586667pt;}
.ybe{bottom:223.075734pt;}
.y13b{bottom:223.866667pt;}
.y155{bottom:224.045510pt;}
.y14d{bottom:225.784285pt;}
.y158{bottom:228.764309pt;}
.ybf{bottom:229.262822pt;}
.yc6{bottom:229.960998pt;}
.ycc{bottom:232.793435pt;}
.y149{bottom:233.031745pt;}
.y85{bottom:233.551907pt;}
.y14a{bottom:236.160514pt;}
.y14b{bottom:237.042724pt;}
.y13a{bottom:238.426667pt;}
.y54{bottom:238.586667pt;}
.y2d{bottom:239.386667pt;}
.yc0{bottom:242.698452pt;}
.yd3{bottom:243.759907pt;}
.y148{bottom:244.946713pt;}
.y14c{bottom:246.700876pt;}
.ycd{bottom:246.722897pt;}
.y14e{bottom:250.270750pt;}
.y139{bottom:253.146667pt;}
.y146{bottom:253.979110pt;}
.y53{bottom:254.586667pt;}
.y2c{bottom:255.386667pt;}
.yc1{bottom:256.190844pt;}
.yce{bottom:260.714798pt;}
.y138{bottom:267.706667pt;}
.yc2{bottom:269.626475pt;}
.y52{bottom:270.586667pt;}
.y2b{bottom:271.386667pt;}
.ycf{bottom:274.638583pt;}
.yd7{bottom:280.717823pt;}
.y137{bottom:282.426667pt;}
.yc3{bottom:283.130219pt;}
.y51{bottom:286.586667pt;}
.yc8{bottom:286.904911pt;}
.yd6{bottom:287.353333pt;}
.y2a{bottom:287.386667pt;}
.yd0{bottom:288.636160pt;}
.yda{bottom:292.813863pt;}
.yd5{bottom:293.983166pt;}
.yc7{bottom:295.033268pt;}
.yc4{bottom:296.571526pt;}
.y136{bottom:297.186667pt;}
.yd4{bottom:300.635704pt;}
.yc9{bottom:301.163594pt;}
.y50{bottom:302.626667pt;}
.yd1{bottom:302.633737pt;}
.y29{bottom:303.426667pt;}
.yd8{bottom:309.377095pt;}
.y135{bottom:311.746667pt;}
.y4f{bottom:318.626667pt;}
.y28{bottom:319.426667pt;}
.y134{bottom:326.466667pt;}
.y4e{bottom:334.626667pt;}
.y27{bottom:335.426667pt;}
.y133{bottom:341.026667pt;}
.y4d{bottom:350.626667pt;}
.y26{bottom:351.426667pt;}
.y132{bottom:355.746667pt;}
.y4c{bottom:366.626667pt;}
.y25{bottom:367.426667pt;}
.y131{bottom:370.306667pt;}
.y4b{bottom:382.626667pt;}
.y24{bottom:383.426667pt;}
.y130{bottom:385.026667pt;}
.y4a{bottom:398.626667pt;}
.y23{bottom:399.426667pt;}
.y12f{bottom:399.586667pt;}
.y10d{bottom:412.866667pt;}
.y12e{bottom:414.306667pt;}
.y49{bottom:414.626667pt;}
.y22{bottom:415.426667pt;}
.y10c{bottom:428.866667pt;}
.y12d{bottom:429.026667pt;}
.y48{bottom:430.626667pt;}
.y21{bottom:431.426667pt;}
.y12c{bottom:443.586667pt;}
.y10b{bottom:444.866667pt;}
.y47{bottom:446.626667pt;}
.y20{bottom:447.426667pt;}
.y12b{bottom:458.306667pt;}
.y10a{bottom:460.866667pt;}
.y46{bottom:462.626667pt;}
.y1f{bottom:463.426667pt;}
.y12a{bottom:472.866667pt;}
.y109{bottom:476.866667pt;}
.y45{bottom:478.626667pt;}
.y1e{bottom:479.426667pt;}
.y129{bottom:487.586667pt;}
.y62{bottom:490.306667pt;}
.y108{bottom:492.866667pt;}
.y44{bottom:494.626667pt;}
.y1d{bottom:495.426667pt;}
.y128{bottom:502.146667pt;}
.y61{bottom:506.306667pt;}
.y107{bottom:508.866667pt;}
.y43{bottom:510.626667pt;}
.y1c{bottom:511.426667pt;}
.y127{bottom:516.866667pt;}
.y60{bottom:522.306667pt;}
.y106{bottom:524.866667pt;}
.y42{bottom:526.626667pt;}
.y1b{bottom:527.426667pt;}
.y126{bottom:531.453333pt;}
.y5f{bottom:538.333333pt;}
.y105{bottom:540.893333pt;}
.y41{bottom:542.653333pt;}
.y1a{bottom:543.453333pt;}
.y125{bottom:546.173333pt;}
.y5e{bottom:554.333333pt;}
.y104{bottom:556.893333pt;}
.y40{bottom:558.653333pt;}
.y19{bottom:559.453333pt;}
.y124{bottom:560.733333pt;}
.y5d{bottom:570.333333pt;}
.y103{bottom:572.893333pt;}
.y3f{bottom:574.653333pt;}
.y18{bottom:575.453333pt;}
.y5c{bottom:586.333333pt;}
.y102{bottom:588.893333pt;}
.y123{bottom:590.173333pt;}
.y3e{bottom:590.653333pt;}
.y17{bottom:591.453333pt;}
.ydf{bottom:599.133333pt;}
.y122{bottom:604.733333pt;}
.y101{bottom:604.893333pt;}
.y3d{bottom:606.653333pt;}
.y16{bottom:607.453333pt;}
.y121{bottom:619.453333pt;}
.y100{bottom:620.893333pt;}
.y3c{bottom:622.653333pt;}
.y15{bottom:623.453333pt;}
.y120{bottom:634.013333pt;}
.yff{bottom:636.893333pt;}
.y3b{bottom:638.653333pt;}
.y14{bottom:639.453333pt;}
.y11f{bottom:648.733333pt;}
.y90{bottom:652.253333pt;}
.yfe{bottom:652.893333pt;}
.y13{bottom:655.453333pt;}
.y11e{bottom:663.293333pt;}
.yfd{bottom:668.893333pt;}
.y12{bottom:671.453333pt;}
.y11d{bottom:684.413333pt;}
.yfc{bottom:684.893333pt;}
.y11{bottom:687.453333pt;}
.yfb{bottom:700.893333pt;}
.y10{bottom:703.453333pt;}
.y97{bottom:710.720000pt;}
.yfa{bottom:716.893333pt;}
.yf{bottom:719.453333pt;}
.y11c{bottom:721.533333pt;}
.yf9{bottom:732.893333pt;}
.ye{bottom:735.453333pt;}
.y11b{bottom:736.253333pt;}
.y63{bottom:748.640000pt;}
.yf8{bottom:748.893333pt;}
.yd{bottom:751.453333pt;}
.yf7{bottom:764.893333pt;}
.y11a{bottom:770.693333pt;}
.yf6{bottom:780.933333pt;}
.yf5{bottom:796.933333pt;}
.y8{bottom:806.373333pt;}
.y119{bottom:809.893333pt;}
.yf4{bottom:812.933333pt;}
.yf3{bottom:828.933333pt;}
.y7{bottom:830.213333pt;}
.y118{bottom:830.853333pt;}
.yf2{bottom:844.933333pt;}
.yc{bottom:845.573333pt;}
.y6{bottom:854.213333pt;}
.yf1{bottom:860.933333pt;}
.y5{bottom:866.213333pt;}
.y117{bottom:867.973333pt;}
.yb{bottom:874.213333pt;}
.yf0{bottom:876.933333pt;}
.y116{bottom:883.973333pt;}
.yef{bottom:892.933333pt;}
.ya{bottom:897.893333pt;}
.y115{bottom:899.973333pt;}
.yee{bottom:908.933333pt;}
.y114{bottom:915.973333pt;}
.y9{bottom:921.413333pt;}
.yed{bottom:924.933333pt;}
.y113{bottom:931.973333pt;}
.yec{bottom:940.933333pt;}
.y112{bottom:947.973333pt;}
.yeb{bottom:956.933333pt;}
.y3{bottom:961.733333pt;}
.y111{bottom:963.973333pt;}
.yea{bottom:972.933333pt;}
.y110{bottom:979.973333pt;}
.ye9{bottom:988.933333pt;}
.y10f{bottom:995.973333pt;}
.y2{bottom:1003.813333pt;}
.y3a{bottom:1004.960000pt;}
.y10e{bottom:1018.400000pt;}
.y39{bottom:1020.960000pt;}
.y1{bottom:1045.760000pt;}
.y38{bottom:1053.280000pt;}
.h37{height:17.691297pt;}
.h38{height:17.743936pt;}
.hb{height:19.570000pt;}
.h27{height:19.578336pt;}
.h3a{height:20.203158pt;}
.h39{height:20.218625pt;}
.h3c{height:20.255757pt;}
.h3b{height:20.271264pt;}
.h2c{height:21.338186pt;}
.h2b{height:21.393741pt;}
.h21{height:22.375241pt;}
.h20{height:22.433495pt;}
.h36{height:22.746167pt;}
.h35{height:22.799662pt;}
.h25{height:25.172383pt;}
.h26{height:25.175674pt;}
.h23{height:25.231584pt;}
.h24{height:25.234883pt;}
.h15{height:26.314186pt;}
.h19{height:26.380974pt;}
.h13{height:26.382886pt;}
.h14{height:26.383322pt;}
.h10{height:26.449657pt;}
.h16{height:26.793351pt;}
.h17{height:26.862034pt;}
.h28{height:27.969051pt;}
.h22{height:28.028253pt;}
.h18{height:29.407040pt;}
.h11{height:29.748675pt;}
.h12{height:29.753301pt;}
.hd{height:29.870000pt;}
.h2a{height:30.769742pt;}
.h29{height:30.824921pt;}
.h34{height:33.792870pt;}
.h4{height:36.920625pt;}
.hc{height:37.029375pt;}
.h2d{height:37.397380pt;}
.h1a{height:37.803422pt;}
.h1b{height:37.867325pt;}
.h5{height:38.008125pt;}
.h3{height:42.649687pt;}
.h9{height:47.742188pt;}
.h1c{height:48.561397pt;}
.h8{height:49.148438pt;}
.h32{height:51.520000pt;}
.he{height:52.834688pt;}
.h7{height:52.934375pt;}
.h30{height:54.390938pt;}
.h1e{height:58.563750pt;}
.h31{height:65.531250pt;}
.h2f{height:66.560000pt;}
.h6{height:79.292812pt;}
.ha{height:81.760000pt;}
.h2{height:87.156562pt;}
.h1d{height:93.280000pt;}
.h2e{height:106.720000pt;}
.hf{height:241.274954pt;}
.h33{height:260.811111pt;}
.h1f{height:317.267051pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:326.870263pt;}
.w6{width:330.393944pt;}
.w3{width:330.786667pt;}
.w8{width:332.386667pt;}
.w5{width:332.546667pt;}
.w4{width:332.631296pt;}
.w7{width:332.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:4.800000pt;}
.x42{left:6.313925pt;}
.x3c{left:9.415254pt;}
.x40{left:11.566258pt;}
.x3d{left:13.088821pt;}
.x3f{left:15.254017pt;}
.x1e{left:18.957206pt;}
.x3e{left:22.531892pt;}
.x1d{left:23.535530pt;}
.x3b{left:25.856325pt;}
.x1c{left:27.027506pt;}
.x1b{left:30.601811pt;}
.x2d{left:34.293437pt;}
.x2c{left:37.297121pt;}
.x2b{left:40.356440pt;}
.x65{left:46.094053pt;}
.x17{left:47.104527pt;}
.x66{left:49.663246pt;}
.x2a{left:50.553413pt;}
.x45{left:54.101519pt;}
.x28{left:55.289955pt;}
.x1{left:56.799988pt;}
.x64{left:58.832240pt;}
.x27{left:63.030936pt;}
.x41{left:67.135840pt;}
.x62{left:72.578042pt;}
.x63{left:79.691828pt;}
.x18{left:84.411174pt;}
.x24{left:86.767270pt;}
.x2e{left:88.242813pt;}
.x25{left:93.072506pt;}
.x48{left:96.671988pt;}
.x26{left:100.816834pt;}
.x43{left:102.838301pt;}
.x5{left:117.311988pt;}
.x51{left:118.431988pt;}
.x6{left:124.031988pt;}
.x52{left:124.991988pt;}
.x55{left:128.191988pt;}
.x4b{left:129.951988pt;}
.x7{left:130.911988pt;}
.x19{left:132.088661pt;}
.x56{left:134.746655pt;}
.x4c{left:136.666655pt;}
.x1a{left:138.333655pt;}
.x8{left:142.586655pt;}
.x61{left:152.986667pt;}
.x57{left:165.786655pt;}
.x58{left:172.346655pt;}
.x23{left:173.614862pt;}
.x39{left:175.951990pt;}
.x32{left:177.195247pt;}
.xf{left:178.106655pt;}
.x37{left:179.023231pt;}
.x30{left:180.255133pt;}
.x15{left:182.343128pt;}
.x34{left:183.383143pt;}
.x10{left:184.666655pt;}
.x21{left:185.783565pt;}
.x13{left:188.300304pt;}
.x20{left:189.458272pt;}
.x50{left:190.426655pt;}
.x12{left:191.908077pt;}
.x1f{left:193.193221pt;}
.x44{left:196.196063pt;}
.x36{left:197.995663pt;}
.x2f{left:199.993956pt;}
.x2{left:204.186655pt;}
.x4f{left:206.106655pt;}
.xb{left:208.346655pt;}
.x11{left:209.398078pt;}
.x53{left:210.906655pt;}
.x47{left:213.666667pt;}
.xc{left:215.066655pt;}
.x6a{left:216.422074pt;}
.x68{left:218.287649pt;}
.x54{left:220.986655pt;}
.x67{left:223.002838pt;}
.xd{left:225.946655pt;}
.xe{left:232.506655pt;}
.x38{left:235.179812pt;}
.x31{left:236.423069pt;}
.x3a{left:242.026238pt;}
.x14{left:244.993877pt;}
.x22{left:246.687321pt;}
.x35{left:251.046942pt;}
.x69{left:258.064373pt;}
.x29{left:261.986667pt;}
.x4d{left:266.946655pt;}
.x59{left:269.506655pt;}
.x4e{left:273.666655pt;}
.x5a{left:276.066655pt;}
.x49{left:307.906655pt;}
.x33{left:312.818046pt;}
.x4a{left:314.626655pt;}
.x16{left:315.911043pt;}
.x6c{left:321.483672pt;}
.x6b{left:323.072485pt;}
.x5d{left:343.746655pt;}
.x9{left:379.586655pt;}
.x5b{left:382.786655pt;}
.xa{left:386.146655pt;}
.x5c{left:388.866655pt;}
.x3{left:404.546655pt;}
.x46{left:405.666667pt;}
.x60{left:452.573322pt;}
.x5e{left:480.253322pt;}
.x5f{left:486.813322pt;}
}




    .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; }
  