
    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_91594bfc7b75279fa1fe1050.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bba186332cb33a603b152e5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_810ab3852b2d7c90c655e8c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_2947876b07dd6a8eb157a18c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_00b10700fcdd7d394f1fb910.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_22a0678836dd11ffcaab474d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_0fc921ac1de50ca6cc8cb637.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_03bd0f87146adff9cd2f1655.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_44688d2b06e7970b77805be0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_88aeac00c11b9689b9f30201.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_76d6090ba66a902b7483607c.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls1d{letter-spacing:-18.720000px;}
.ls18{letter-spacing:-15.659999px;}
.ls11{letter-spacing:-14.219999px;}
.ls14{letter-spacing:-0.942000px;}
.ls1a{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.269400px;}
.ls1c{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.053280px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.179992px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.180038px;}
.ls15{letter-spacing:0.223800px;}
.ls20{letter-spacing:0.235920px;}
.ls16{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259832px;}
.ls26{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.260015px;}
.ls7{letter-spacing:0.359869px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.360005px;}
.lsa{letter-spacing:0.360008px;}
.ls5{letter-spacing:0.360051px;}
.lsb{letter-spacing:0.360234px;}
.ls4{letter-spacing:0.450731px;}
.ls25{letter-spacing:2.520000px;}
.ls24{letter-spacing:4.680000px;}
.ls23{letter-spacing:11.789280px;}
.ls22{letter-spacing:11.933280px;}
.ls19{letter-spacing:25.866720px;}
.ls3{letter-spacing:25.866731px;}
.ls21{letter-spacing:35.693280px;}
.ls1e{letter-spacing:41.706720px;}
.ls1f{letter-spacing:41.850720px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws10{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.283800px;}
.ws3{word-spacing:-12.240000px;}
.ws2{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.836200px;}
.ws1{word-spacing:-11.790600px;}
.ws4{word-spacing:-11.700000px;}
.wsa{word-spacing:-11.118000px;}
.ws13{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
._2b{margin-left:-626.171701px;}
._3b{margin-left:-603.896338px;}
._35{margin-left:-397.131091px;}
._39{margin-left:-378.317491px;}
._3a{margin-left:-354.101011px;}
._36{margin-left:-226.074960px;}
._33{margin-left:-222.746400px;}
._38{margin-left:-214.690320px;}
._2e{margin-left:-173.203920px;}
._2d{margin-left:-166.474560px;}
._37{margin-left:-158.418480px;}
._31{margin-left:-138.439920px;}
._2f{margin-left:-123.613200px;}
._32{margin-left:-112.903920px;}
._30{margin-left:-104.847840px;}
._3c{margin-left:-99.493200px;}
._2c{margin-left:-96.840000px;}
._34{margin-left:-89.503920px;}
._3d{margin-left:-82.890480px;}
._2a{margin-left:-14.326560px;}
._3e{margin-left:-10.413600px;}
._49{margin-left:-3.324982px;}
._14{margin-left:-2.270858px;}
._5{margin-left:-1.257149px;}
._0{width:1.314665px;}
._1{width:3.052925px;}
._a{width:4.661751px;}
._6{width:5.994019px;}
._7{width:7.397998px;}
._27{width:8.665200px;}
._13{width:9.737897px;}
._12{width:10.818016px;}
._20{width:12.358658px;}
._3{width:13.859927px;}
._10{width:15.119910px;}
._f{width:16.631990px;}
._11{width:18.468050px;}
._c{width:20.226238px;}
._b{width:21.275937px;}
._e{width:22.533103px;}
._d{width:23.597941px;}
._16{width:25.596035px;}
._15{width:26.855958px;}
._3f{width:28.336796px;}
._9{width:29.336882px;}
._8{width:30.348016px;}
._17{width:31.373993px;}
._40{width:32.509440px;}
._1a{width:34.105694px;}
._1b{width:35.273963px;}
._19{width:36.341905px;}
._18{width:38.069939px;}
._22{width:39.487844px;}
._21{width:40.696681px;}
._28{width:41.801547px;}
._24{width:43.804315px;}
._23{width:44.824900px;}
._1f{width:45.840100px;}
._1e{width:46.945439px;}
._1c{width:48.095233px;}
._1d{width:49.229642px;}
._41{width:50.676480px;}
._44{width:51.692455px;}
._26{width:52.887968px;}
._25{width:67.170994px;}
._43{width:72.664429px;}
._42{width:73.863360px;}
._4b{width:86.783760px;}
._46{width:91.910935px;}
._48{width:99.341280px;}
._47{width:101.044080px;}
._45{width:117.547920px;}
._29{width:123.446880px;}
._4{width:135.540103px;}
._4a{width:147.807360px;}
._2{width:1281.360041px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:120.240005px;}
.fs7{font-size:144.000000px;}
.y7a{bottom:-64.440033px;}
.yf{bottom:-16.200000px;}
.y79{bottom:-12.600037px;}
.ye{bottom:-2.340000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.340001px;}
.y84{bottom:2.520000px;}
.yc4{bottom:2.700000px;}
.yfe{bottom:3.240000px;}
.y5{bottom:3.240051px;}
.y78{bottom:6.660004px;}
.y7e{bottom:10.260040px;}
.ya{bottom:10.440000px;}
.yd{bottom:11.340001px;}
.y81{bottom:13.860000px;}
.yff{bottom:16.200000px;}
.y8{bottom:16.200002px;}
.y83{bottom:16.380000px;}
.ycf{bottom:16.425000px;}
.y6{bottom:17.099999px;}
.y3{bottom:19.260000px;}
.yc{bottom:25.200000px;}
.y82{bottom:30.060000px;}
.y7{bottom:30.060001px;}
.y85{bottom:38.880000px;}
.yb{bottom:38.880002px;}
.y7d{bottom:51.660004px;}
.y48{bottom:77.075998px;}
.y1a7{bottom:78.516000px;}
.y47{bottom:86.615999px;}
.ybf{bottom:87.516000px;}
.y16d{bottom:89.316000px;}
.y139{bottom:89.676000px;}
.y1a6{bottom:92.376000px;}
.y7c{bottom:92.910004px;}
.y76{bottom:94.355999px;}
.yfc{bottom:98.136000px;}
.y46{bottom:100.295998px;}
.y201{bottom:100.296000px;}
.y1f4{bottom:100.476000px;}
.y1a5{bottom:106.056000px;}
.ybe{bottom:107.316000px;}
.y138{bottom:107.676000px;}
.y45{bottom:114.155994px;}
.y1f3{bottom:114.156000px;}
.y1a4{bottom:119.916000px;}
.y16c{bottom:125.496000px;}
.y137{bottom:125.856000px;}
.ybd{bottom:127.116000px;}
.yfb{bottom:127.476000px;}
.y44{bottom:127.835999px;}
.y200{bottom:127.836000px;}
.y1f2{bottom:128.016000px;}
.y1a3{bottom:133.776000px;}
.y75{bottom:133.956001px;}
.y43{bottom:141.695995px;}
.y1f1{bottom:141.696000px;}
.y16b{bottom:143.676000px;}
.y136{bottom:143.856000px;}
.ybc{bottom:146.916000px;}
.y1a2{bottom:147.456000px;}
.y74{bottom:153.750000px;}
.y1ff{bottom:155.370000px;}
.y42{bottom:155.549995px;}
.y1f0{bottom:155.550000px;}
.yfa{bottom:156.630000px;}
.y1a1{bottom:161.310000px;}
.y16a{bottom:161.670000px;}
.y135{bottom:162.030000px;}
.ybb{bottom:166.710000px;}
.y41{bottom:169.230000px;}
.y1ef{bottom:169.410000px;}
.y73{bottom:173.549995px;}
.y1a0{bottom:174.990000px;}
.y169{bottom:179.850000px;}
.y134{bottom:180.030000px;}
.yf9{bottom:182.370000px;}
.y40{bottom:183.089996px;}
.y1ee{bottom:183.090000px;}
.yba{bottom:186.510000px;}
.y19f{bottom:188.850000px;}
.y72{bottom:193.530006px;}
.y3f{bottom:196.769989px;}
.y1fe{bottom:196.770000px;}
.y1ed{bottom:196.950000px;}
.y168{bottom:197.850000px;}
.y133{bottom:198.210000px;}
.yf8{bottom:202.350000px;}
.y19e{bottom:202.710000px;}
.yb9{bottom:206.310000px;}
.y3e{bottom:210.629997px;}
.y1ec{bottom:210.630000px;}
.y71{bottom:213.330002px;}
.y132{bottom:216.210000px;}
.y19d{bottom:216.390000px;}
.yf7{bottom:222.150000px;}
.y167{bottom:224.130000px;}
.y1fd{bottom:224.310000px;}
.y1eb{bottom:224.490000px;}
.y3d{bottom:224.490006px;}
.yb8{bottom:226.290000px;}
.y19c{bottom:230.250000px;}
.y70{bottom:233.129997px;}
.y131{bottom:234.390000px;}
.y1fc{bottom:238.170000px;}
.y1ea{bottom:238.350000px;}
.y3c{bottom:238.530006px;}
.yf6{bottom:241.950000px;}
.y19b{bottom:243.930000px;}
.yb7{bottom:246.090000px;}
.y1e9{bottom:252.030000px;}
.y130{bottom:252.390000px;}
.y6f{bottom:252.929993px;}
.y3b{bottom:254.190010px;}
.y19a{bottom:257.790000px;}
.y166{bottom:260.130000px;}
.yf5{bottom:261.750000px;}
.y1fb{bottom:265.710000px;}
.yb6{bottom:265.890000px;}
.y3a{bottom:269.669998px;}
.y12f{bottom:270.570000px;}
.y199{bottom:271.650000px;}
.y6e{bottom:272.730011px;}
.y165{bottom:278.310000px;}
.y1e8{bottom:279.570000px;}
.yf4{bottom:281.550000px;}
.y39{bottom:285.150009px;}
.y198{bottom:285.330000px;}
.yb5{bottom:285.690000px;}
.y12e{bottom:288.570000px;}
.y6d{bottom:292.530006px;}
.y1e7{bottom:293.430000px;}
.y164{bottom:296.490000px;}
.y197{bottom:299.190000px;}
.yf3{bottom:299.550000px;}
.y38{bottom:300.629997px;}
.yb4{bottom:304.770000px;}
.y12d{bottom:306.750000px;}
.y1fa{bottom:307.110000px;}
.y1e6{bottom:307.290000px;}
.y6c{bottom:312.330002px;}
.y196{bottom:312.870000px;}
.yf2{bottom:314.490000px;}
.y37{bottom:315.570007px;}
.y1e5{bottom:320.970000px;}
.y12c{bottom:324.930000px;}
.yb3{bottom:325.470000px;}
.y195{bottom:326.730000px;}
.y36{bottom:328.530006px;}
.yf1{bottom:328.890000px;}
.y6b{bottom:332.129997px;}
.y163{bottom:332.670000px;}
.y1f9{bottom:334.650000px;}
.y1e4{bottom:334.830000px;}
.y194{bottom:340.635000px;}
.y12b{bottom:342.975000px;}
.yf0{bottom:343.515000px;}
.yb2{bottom:343.695000px;}
.y1e3{bottom:348.555000px;}
.y35{bottom:349.094994px;}
.y162{bottom:350.715000px;}
.y6a{bottom:351.974991px;}
.y193{bottom:354.315000px;}
.yef{bottom:358.095000px;}
.y12a{bottom:361.155000px;}
.y1e2{bottom:362.415000px;}
.yb1{bottom:365.295000px;}
.y192{bottom:368.175000px;}
.y34{bottom:368.894989px;}
.y161{bottom:368.895000px;}
.y69{bottom:371.955002px;}
.yee{bottom:372.675000px;}
.y1f8{bottom:376.095000px;}
.y1e1{bottom:376.275000px;}
.y129{bottom:379.155000px;}
.y191{bottom:381.855000px;}
.y160{bottom:386.895000px;}
.yed{bottom:387.255000px;}
.y33{bottom:388.695007px;}
.y1e0{bottom:389.955000px;}
.y68{bottom:391.755020px;}
.yb0{bottom:394.275000px;}
.y190{bottom:395.715000px;}
.y128{bottom:397.335000px;}
.yec{bottom:401.835000px;}
.y1df{bottom:403.815000px;}
.y15f{bottom:405.075000px;}
.y32{bottom:408.494980px;}
.y18f{bottom:409.575000px;}
.y67{bottom:411.554993px;}
.y22c{bottom:413.535000px;}
.yaf{bottom:414.075000px;}
.y127{bottom:415.335000px;}
.yeb{bottom:416.235000px;}
.y1de{bottom:417.495000px;}
.y15e{bottom:423.075000px;}
.y18e{bottom:423.255000px;}
.y31{bottom:428.294998px;}
.yea{bottom:430.815000px;}
.y1dd{bottom:431.355000px;}
.y66{bottom:431.355011px;}
.y22b{bottom:431.715000px;}
.y126{bottom:433.515000px;}
.yae{bottom:433.875000px;}
.y18d{bottom:437.115000px;}
.y15d{bottom:441.255000px;}
.y1f7{bottom:445.035000px;}
.y1dc{bottom:445.215000px;}
.y22a{bottom:449.895000px;}
.y18c{bottom:450.795000px;}
.y65{bottom:451.154984px;}
.y125{bottom:451.515000px;}
.yad{bottom:451.875000px;}
.y30{bottom:454.214996px;}
.y1db{bottom:458.895000px;}
.ye9{bottom:459.255000px;}
.y18b{bottom:464.655000px;}
.yac{bottom:466.275000px;}
.y229{bottom:467.895000px;}
.yab{bottom:468.435000px;}
.y124{bottom:469.695000px;}
.y64{bottom:470.955002px;}
.y1da{bottom:472.755000px;}
.ye8{bottom:473.835000px;}
.y15c{bottom:477.435000px;}
.y18a{bottom:478.515000px;}
.yaa{bottom:483.015000px;}
.y228{bottom:486.075000px;}
.y1d9{bottom:486.435000px;}
.y123{bottom:487.695000px;}
.ye7{bottom:488.235000px;}
.y63{bottom:490.755020px;}
.y189{bottom:492.195000px;}
.y2f{bottom:494.175018px;}
.y15b{bottom:495.435000px;}
.ya9{bottom:497.595000px;}
.y1d8{bottom:500.295000px;}
.ye6{bottom:502.815000px;}
.y227{bottom:504.075000px;}
.y122{bottom:505.875000px;}
.y188{bottom:506.055000px;}
.y62{bottom:510.554993px;}
.ya8{bottom:512.175000px;}
.y15a{bottom:513.615000px;}
.y1f6{bottom:513.975000px;}
.y1d7{bottom:514.155000px;}
.ye5{bottom:517.395000px;}
.y187{bottom:519.915000px;}
.y226{bottom:521.355000px;}
.y121{bottom:523.875000px;}
.ya7{bottom:526.575000px;}
.y1d6{bottom:527.835000px;}
.y2e{bottom:529.095016px;}
.y61{bottom:530.355011px;}
.y159{bottom:531.795000px;}
.ye4{bottom:531.975000px;}
.y186{bottom:533.595000px;}
.y225{bottom:538.635000px;}
.ya6{bottom:541.155000px;}
.y1d5{bottom:541.695000px;}
.y120{bottom:542.055000px;}
.y2d{bottom:544.574982px;}
.ye3{bottom:546.555000px;}
.y185{bottom:547.455000px;}
.y158{bottom:549.795000px;}
.y60{bottom:550.335022px;}
.y1d4{bottom:555.375000px;}
.ya5{bottom:555.735000px;}
.y224{bottom:555.915000px;}
.y11f{bottom:560.235000px;}
.ye2{bottom:561.135000px;}
.y2c{bottom:566.175018px;}
.y157{bottom:567.975000px;}
.y1d3{bottom:569.235000px;}
.y5f{bottom:570.134994px;}
.ya4{bottom:570.315000px;}
.y223{bottom:573.015000px;}
.y184{bottom:574.995000px;}
.ye1{bottom:575.535000px;}
.y11e{bottom:578.235000px;}
.y1f5{bottom:582.915000px;}
.y1d2{bottom:583.095000px;}
.ya3{bottom:584.895000px;}
.y156{bottom:585.975000px;}
.y2b{bottom:587.775009px;}
.y183{bottom:588.855000px;}
.y5e{bottom:589.935013px;}
.ye0{bottom:590.115000px;}
.y222{bottom:590.295000px;}
.y11d{bottom:596.415000px;}
.y1d1{bottom:596.775000px;}
.ya2{bottom:599.295000px;}
.y182{bottom:602.535000px;}
.y2a{bottom:603.255020px;}
.y155{bottom:604.185000px;}
.ydf{bottom:604.725000px;}
.y221{bottom:607.605000px;}
.y5d{bottom:609.765015px;}
.y1d0{bottom:610.665000px;}
.ya1{bottom:613.905000px;}
.y11c{bottom:614.445000px;}
.y181{bottom:616.425000px;}
.y29{bottom:618.765015px;}
.yde{bottom:619.305000px;}
.y154{bottom:622.185000px;}
.y1cf{bottom:624.345000px;}
.y220{bottom:624.885000px;}
.ya0{bottom:628.485000px;}
.y5c{bottom:629.564987px;}
.y180{bottom:630.105000px;}
.y11b{bottom:632.625000px;}
.ydd{bottom:633.885000px;}
.y28{bottom:634.244980px;}
.y1ce{bottom:638.205000px;}
.y153{bottom:640.365000px;}
.y21f{bottom:641.985000px;}
.y9f{bottom:643.065000px;}
.y17f{bottom:643.965000px;}
.ydc{bottom:648.465000px;}
.y5b{bottom:649.365006px;}
.y27{bottom:649.724991px;}
.y11a{bottom:650.625000px;}
.y1cd{bottom:652.065000px;}
.y21e{bottom:656.925000px;}
.y9e{bottom:657.645000px;}
.y17e{bottom:657.825000px;}
.y152{bottom:658.365000px;}
.ydb{bottom:662.865000px;}
.y26{bottom:665.384994px;}
.y1cc{bottom:665.745000px;}
.y119{bottom:668.805000px;}
.y5a{bottom:669.164978px;}
.y17d{bottom:671.505000px;}
.y9d{bottom:672.225000px;}
.y21d{bottom:676.725000px;}
.yda{bottom:677.445000px;}
.y1cb{bottom:679.605000px;}
.y25{bottom:680.865006px;}
.y151{bottom:684.645000px;}
.y17c{bottom:685.365000px;}
.y9c{bottom:686.625000px;}
.y118{bottom:686.805000px;}
.y59{bottom:688.964996px;}
.y21c{bottom:690.405000px;}
.yd9{bottom:692.025000px;}
.y1ca{bottom:693.285000px;}
.y24{bottom:696.345016px;}
.y17b{bottom:699.045000px;}
.y9b{bottom:701.205000px;}
.y21b{bottom:704.265000px;}
.y117{bottom:704.985000px;}
.yd8{bottom:706.605000px;}
.y1c9{bottom:707.145000px;}
.y58{bottom:708.765015px;}
.y23{bottom:711.824982px;}
.y17a{bottom:712.905000px;}
.y9a{bottom:715.785000px;}
.y21a{bottom:718.125000px;}
.y150{bottom:720.825000px;}
.y1c8{bottom:721.005000px;}
.yd7{bottom:721.185000px;}
.y116{bottom:722.985000px;}
.y179{bottom:726.765000px;}
.y22{bottom:727.304993px;}
.y57{bottom:728.744980px;}
.y99{bottom:730.365000px;}
.y219{bottom:731.805000px;}
.y1c7{bottom:734.685000px;}
.yd6{bottom:735.585000px;}
.y14f{bottom:738.825000px;}
.y178{bottom:740.445000px;}
.y115{bottom:741.165000px;}
.y21{bottom:742.785004px;}
.y218{bottom:745.665000px;}
.y56{bottom:748.544998px;}
.y1c6{bottom:748.545000px;}
.y98{bottom:754.125000px;}
.y177{bottom:754.305000px;}
.y14e{bottom:757.005000px;}
.y20{bottom:758.445007px;}
.y114{bottom:759.165000px;}
.yd5{bottom:759.345000px;}
.y1c5{bottom:762.225000px;}
.y176{bottom:767.985000px;}
.y55{bottom:768.344971px;}
.y217{bottom:773.205000px;}
.y1f{bottom:773.925018px;}
.y14d{bottom:775.005000px;}
.y1c4{bottom:776.085000px;}
.yd4{bottom:776.625000px;}
.y113{bottom:777.345000px;}
.y97{bottom:778.245000px;}
.y175{bottom:781.845000px;}
.y216{bottom:787.065000px;}
.y54{bottom:788.144989px;}
.y1e{bottom:789.405029px;}
.y1c3{bottom:789.945000px;}
.y14c{bottom:793.185000px;}
.y112{bottom:795.525000px;}
.y174{bottom:795.705000px;}
.y96{bottom:796.245000px;}
.yd3{bottom:797.505000px;}
.y215{bottom:800.745000px;}
.y1c2{bottom:803.625000px;}
.y1d{bottom:804.885040px;}
.y53{bottom:807.945007px;}
.y173{bottom:809.385000px;}
.y14b{bottom:811.185000px;}
.yd2{bottom:811.905000px;}
.y111{bottom:813.525000px;}
.y214{bottom:814.605000px;}
.y1c1{bottom:817.485000px;}
.y95{bottom:818.025000px;}
.y1c{bottom:820.364960px;}
.y172{bottom:823.245000px;}
.yd1{bottom:826.485000px;}
.y52{bottom:827.745026px;}
.y213{bottom:828.285000px;}
.y14a{bottom:829.365000px;}
.y1c0{bottom:831.165000px;}
.y1b{bottom:835.844971px;}
.y171{bottom:836.925000px;}
.y110{bottom:839.805000px;}
.yd0{bottom:841.065000px;}
.y212{bottom:842.145000px;}
.y1bf{bottom:845.025000px;}
.y149{bottom:847.365000px;}
.y51{bottom:847.545044px;}
.y170{bottom:850.785000px;}
.y1a{bottom:851.504974px;}
.y94{bottom:853.305000px;}
.yce{bottom:855.645000px;}
.y211{bottom:856.005000px;}
.y1be{bottom:858.885000px;}
.y16f{bottom:864.645000px;}
.y148{bottom:865.545000px;}
.y19{bottom:866.984985px;}
.y50{bottom:867.344971px;}
.y210{bottom:869.685000px;}
.y10f{bottom:872.610000px;}
.y16e{bottom:878.370000px;}
.y18{bottom:882.510040px;}
.y147{bottom:883.590000px;}
.ycd{bottom:883.950000px;}
.y1bd{bottom:886.470000px;}
.y10e{bottom:887.190000px;}
.y4f{bottom:887.190033px;}
.y93{bottom:891.150000px;}
.y20f{bottom:897.270000px;}
.y17{bottom:897.989960px;}
.ycc{bottom:898.530000px;}
.y1bc{bottom:900.150000px;}
.y10d{bottom:901.770000px;}
.y4e{bottom:907.170044px;}
.y92{bottom:910.950000px;}
.y20e{bottom:911.130000px;}
.ycb{bottom:913.110000px;}
.y16{bottom:913.469971px;}
.y1bb{bottom:914.010000px;}
.y10c{bottom:916.170000px;}
.y146{bottom:919.770000px;}
.y20d{bottom:924.990000px;}
.y4d{bottom:926.969971px;}
.yca{bottom:927.690000px;}
.y1ba{bottom:927.870000px;}
.y15{bottom:929.129974px;}
.y91{bottom:930.750000px;}
.y145{bottom:937.950000px;}
.y20c{bottom:938.670000px;}
.y1b9{bottom:941.550000px;}
.yc9{bottom:942.270000px;}
.y14{bottom:944.609985px;}
.y10b{bottom:945.330000px;}
.y4c{bottom:946.769989px;}
.y90{bottom:950.550000px;}
.y20b{bottom:952.530000px;}
.y1b8{bottom:955.410000px;}
.y144{bottom:956.130000px;}
.yc8{bottom:956.850000px;}
.y10a{bottom:959.910000px;}
.y13{bottom:960.089996px;}
.y20a{bottom:966.210000px;}
.y4b{bottom:966.570007px;}
.y1b7{bottom:969.090000px;}
.y8f{bottom:970.350000px;}
.yc7{bottom:971.250000px;}
.y143{bottom:974.130000px;}
.y12{bottom:975.570007px;}
.y209{bottom:980.070000px;}
.y1b6{bottom:982.950000px;}
.yc6{bottom:985.830000px;}
.y4a{bottom:986.370026px;}
.y109{bottom:988.170000px;}
.y11{bottom:991.050018px;}
.y142{bottom:992.310000px;}
.y208{bottom:993.930000px;}
.y8e{bottom:996.630000px;}
.y1b5{bottom:996.810000px;}
.yc5{bottom:1000.410000px;}
.y108{bottom:1002.750000px;}
.y49{bottom:1006.170044px;}
.y10{bottom:1006.530029px;}
.y207{bottom:1007.610000px;}
.y141{bottom:1010.310000px;}
.y1b4{bottom:1010.490000px;}
.yc3{bottom:1014.990000px;}
.y107{bottom:1017.330000px;}
.y206{bottom:1021.470000px;}
.y1b3{bottom:1024.350000px;}
.y140{bottom:1028.490000px;}
.yc2{bottom:1029.750000px;}
.y106{bottom:1031.910000px;}
.y77{bottom:1034.250000px;}
.y8d{bottom:1034.430000px;}
.y205{bottom:1035.150000px;}
.y1b2{bottom:1038.030000px;}
.yc1{bottom:1044.330000px;}
.y105{bottom:1046.490000px;}
.y204{bottom:1049.010000px;}
.y1b1{bottom:1051.890000px;}
.y8c{bottom:1054.230000px;}
.y104{bottom:1061.070000px;}
.y203{bottom:1062.870000px;}
.y13f{bottom:1064.670000px;}
.y1b0{bottom:1065.750000px;}
.yc0{bottom:1068.090000px;}
.y7b{bottom:1068.629974px;}
.y8b{bottom:1074.030000px;}
.y1af{bottom:1079.430000px;}
.y13e{bottom:1082.670000px;}
.y202{bottom:1086.270000px;}
.y103{bottom:1089.330000px;}
.y1ae{bottom:1093.290000px;}
.y8a{bottom:1094.010000px;}
.y13d{bottom:1100.850000px;}
.y102{bottom:1103.910000px;}
.y1ad{bottom:1106.970000px;}
.y89{bottom:1113.810000px;}
.y101{bottom:1118.490000px;}
.y13c{bottom:1118.850000px;}
.y1ac{bottom:1120.830000px;}
.y88{bottom:1133.610000px;}
.y1ab{bottom:1134.690000px;}
.y13b{bottom:1137.030000px;}
.y1aa{bottom:1148.400000px;}
.y87{bottom:1153.440000px;}
.y13a{bottom:1155.060000px;}
.y100{bottom:1155.960000px;}
.y1a9{bottom:1162.260000px;}
.y86{bottom:1173.240000px;}
.y1a8{bottom:1175.940000px;}
.y2{bottom:1217.699982px;}
.y80{bottom:1217.700000px;}
.y4{bottom:1231.559967px;}
.yfd{bottom:1231.560000px;}
.y7f{bottom:1234.800000px;}
.y1{bottom:1234.800018px;}
.h1c{height:3.999375px;}
.h1a{height:13.680000px;}
.h19{height:13.860000px;}
.h1b{height:13.896000px;}
.h5{height:17.280001px;}
.h12{height:21.114844px;}
.h13{height:21.960000px;}
.h20{height:27.540000px;}
.h1e{height:27.576000px;}
.h1f{height:27.720000px;}
.he{height:29.158594px;}
.hb{height:31.462734px;}
.h11{height:33.683203px;}
.h10{height:34.036523px;}
.h22{height:35.120039px;}
.h7{height:36.698203px;}
.ha{height:37.705078px;}
.hf{height:38.100586px;}
.h23{height:39.336328px;}
.h9{height:40.684570px;}
.h6{height:41.219999px;}
.h18{height:41.400000px;}
.h4{height:41.726953px;}
.h3{height:42.164648px;}
.hc{height:43.506914px;}
.h21{height:44.265586px;}
.h15{height:44.860781px;}
.h14{height:46.736719px;}
.h1d{height:49.992188px;}
.h8{height:50.219999px;}
.hd{height:83.956644px;}
.h17{height:100.546875px;}
.h16{height:126.576004px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:6.840000px;}
.we{width:113.436000px;}
.wb{width:134.640000px;}
.w15{width:147.960000px;}
.w12{width:148.500000px;}
.wc{width:166.350000px;}
.w4{width:193.349991px;}
.w8{width:193.350000px;}
.w14{width:198.795000px;}
.w11{width:208.335000px;}
.w9{width:263.235000px;}
.w5{width:263.235008px;}
.wf{width:264.990000px;}
.wa{width:301.710000px;}
.w13{width:347.475000px;}
.w10{width:357.555000px;}
.wd{width:379.155000px;}
.w6{width:708.630020px;}
.w7{width:730.365006px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x11{left:-10.800001px;}
.x0{left:0.000000px;}
.x34{left:8.280000px;}
.x49{left:9.750000px;}
.x6{left:10.800018px;}
.x47{left:14.790000px;}
.x52{left:16.236000px;}
.x4a{left:18.570000px;}
.x33{left:20.730000px;}
.x3a{left:22.170000px;}
.x29{left:23.400000px;}
.x14{left:25.740006px;}
.x31{left:27.030000px;}
.x35{left:30.090000px;}
.x37{left:33.870000px;}
.x4f{left:35.136000px;}
.x39{left:36.390000px;}
.x48{left:37.650000px;}
.x43{left:39.450000px;}
.x46{left:41.070000px;}
.x25{left:42.840000px;}
.x28{left:43.920000px;}
.x13{left:47.879997px;}
.x1f{left:49.854000px;}
.x27{left:50.934000px;}
.x45{left:52.050000px;}
.x23{left:53.454000px;}
.x22{left:55.254000px;}
.x3f{left:56.730000px;}
.x2a{left:58.134000px;}
.x2b{left:60.294000px;}
.x41{left:61.740000px;}
.x21{left:64.845000px;}
.x44{left:66.240000px;}
.x40{left:68.250000px;}
.x3{left:70.199985px;}
.x24{left:72.405000px;}
.x1d{left:75.954000px;}
.xe{left:78.840002px;}
.x7{left:80.819988px;}
.x1b{left:82.259987px;}
.xb{left:85.319988px;}
.x42{left:88.050000px;}
.x12{left:89.315998px;}
.x51{left:91.830000px;}
.x17{left:94.895987px;}
.x3e{left:96.870000px;}
.x1c{left:102.096000px;}
.x26{left:104.574000px;}
.x32{left:117.045000px;}
.x2f{left:118.485000px;}
.x30{left:119.565000px;}
.x38{left:121.545000px;}
.x53{left:124.770000px;}
.x50{left:139.530000px;}
.x1e{left:142.014000px;}
.x8{left:146.556004px;}
.x36{left:165.630000px;}
.xa{left:178.049982px;}
.x54{left:181.469987px;}
.x1a{left:192.089987px;}
.x19{left:193.709987px;}
.x4e{left:214.049987px;}
.x15{left:235.299007px;}
.x20{left:237.450000px;}
.xf{left:266.294992px;}
.x1{left:277.814997px;}
.x9{left:380.774996px;}
.x2{left:430.454988px;}
.x16{left:446.294987px;}
.x2d{left:450.615000px;}
.xc{left:457.454988px;}
.x2c{left:459.614987px;}
.x3c{left:461.415000px;}
.x5{left:466.664978px;}
.xd{left:468.104998px;}
.x18{left:471.885000px;}
.x58{left:478.724987px;}
.x57{left:489.524987px;}
.x56{left:534.884987px;}
.x4d{left:541.904987px;}
.x59{left:543.344987px;}
.x4c{left:544.424987px;}
.x4b{left:556.664987px;}
.x2e{left:564.765000px;}
.x55{left:569.444987px;}
.x3b{left:601.304987px;}
.x3d{left:670.470000px;}
.x10{left:710.249994px;}
.x4{left:816.089996px;}
.x5a{left:822.929987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls1d{letter-spacing:-16.640000pt;}
.ls18{letter-spacing:-13.919999pt;}
.ls11{letter-spacing:-12.639999pt;}
.ls14{letter-spacing:-0.837333pt;}
.ls1a{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.239467pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.159993pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.160034pt;}
.ls15{letter-spacing:0.198933pt;}
.ls20{letter-spacing:0.209707pt;}
.ls16{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.230962pt;}
.ls26{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.231124pt;}
.ls7{letter-spacing:0.319883pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.320005pt;}
.lsa{letter-spacing:0.320007pt;}
.ls5{letter-spacing:0.320045pt;}
.lsb{letter-spacing:0.320208pt;}
.ls4{letter-spacing:0.400650pt;}
.ls25{letter-spacing:2.240000pt;}
.ls24{letter-spacing:4.160000pt;}
.ls23{letter-spacing:10.479360pt;}
.ls22{letter-spacing:10.607360pt;}
.ls19{letter-spacing:22.992640pt;}
.ls3{letter-spacing:22.992650pt;}
.ls21{letter-spacing:31.727360pt;}
.ls1e{letter-spacing:37.072640pt;}
.ls1f{letter-spacing:37.200640pt;}
.ws12{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws3{word-spacing:-10.880000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.521067pt;}
.ws1{word-spacing:-10.480533pt;}
.ws4{word-spacing:-10.400000pt;}
.wsa{word-spacing:-9.882667pt;}
.ws13{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
._2b{margin-left:-556.597068pt;}
._3b{margin-left:-536.796745pt;}
._35{margin-left:-353.005414pt;}
._39{margin-left:-336.282214pt;}
._3a{margin-left:-314.756454pt;}
._36{margin-left:-200.955520pt;}
._33{margin-left:-197.996800pt;}
._38{margin-left:-190.835840pt;}
._2e{margin-left:-153.959040pt;}
._2d{margin-left:-147.977387pt;}
._37{margin-left:-140.816427pt;}
._31{margin-left:-123.057707pt;}
._2f{margin-left:-109.878400pt;}
._32{margin-left:-100.359040pt;}
._30{margin-left:-93.198080pt;}
._3c{margin-left:-88.438400pt;}
._2c{margin-left:-86.080000pt;}
._34{margin-left:-79.559040pt;}
._3d{margin-left:-73.680427pt;}
._2a{margin-left:-12.734720pt;}
._3e{margin-left:-9.256533pt;}
._49{margin-left:-2.955540pt;}
._14{margin-left:-2.018540pt;}
._5{margin-left:-1.117466pt;}
._0{width:1.168591pt;}
._1{width:2.713711pt;}
._a{width:4.143779pt;}
._6{width:5.328017pt;}
._7{width:6.575998pt;}
._27{width:7.702400pt;}
._13{width:8.655909pt;}
._12{width:9.616014pt;}
._20{width:10.985474pt;}
._3{width:12.319935pt;}
._10{width:13.439920pt;}
._f{width:14.783991pt;}
._11{width:16.416044pt;}
._c{width:17.978878pt;}
._b{width:18.911944pt;}
._e{width:20.029425pt;}
._d{width:20.975947pt;}
._16{width:22.752031pt;}
._15{width:23.871963pt;}
._3f{width:25.188263pt;}
._9{width:26.077228pt;}
._8{width:26.976014pt;}
._17{width:27.887994pt;}
._40{width:28.897280pt;}
._1a{width:30.316172pt;}
._1b{width:31.354634pt;}
._19{width:32.303915pt;}
._18{width:33.839946pt;}
._22{width:35.100306pt;}
._21{width:36.174828pt;}
._28{width:37.156931pt;}
._24{width:38.937169pt;}
._23{width:39.844356pt;}
._1f{width:40.746755pt;}
._1e{width:41.729279pt;}
._1c{width:42.751318pt;}
._1d{width:43.759682pt;}
._41{width:45.045760pt;}
._44{width:45.948849pt;}
._26{width:47.011527pt;}
._25{width:59.707550pt;}
._43{width:64.590604pt;}
._42{width:65.656320pt;}
._4b{width:77.141120pt;}
._46{width:81.698609pt;}
._48{width:88.303360pt;}
._47{width:89.816960pt;}
._45{width:104.487040pt;}
._29{width:109.730560pt;}
._4{width:120.480091pt;}
._4a{width:131.384320pt;}
._2{width:1138.986703pt;}
.fs8{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:106.880005pt;}
.fs7{font-size:128.000000pt;}
.y7a{bottom:-57.280029pt;}
.yf{bottom:-14.400000pt;}
.y79{bottom:-11.200033pt;}
.ye{bottom:-2.080000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.080001pt;}
.y84{bottom:2.240000pt;}
.yc4{bottom:2.400000pt;}
.yfe{bottom:2.880000pt;}
.y5{bottom:2.880046pt;}
.y78{bottom:5.920003pt;}
.y7e{bottom:9.120036pt;}
.ya{bottom:9.280000pt;}
.yd{bottom:10.080001pt;}
.y81{bottom:12.320000pt;}
.yff{bottom:14.400000pt;}
.y8{bottom:14.400002pt;}
.y83{bottom:14.560000pt;}
.ycf{bottom:14.600000pt;}
.y6{bottom:15.199999pt;}
.y3{bottom:17.120000pt;}
.yc{bottom:22.400000pt;}
.y82{bottom:26.720000pt;}
.y7{bottom:26.720001pt;}
.y85{bottom:34.560000pt;}
.yb{bottom:34.560001pt;}
.y7d{bottom:45.920003pt;}
.y48{bottom:68.511999pt;}
.y1a7{bottom:69.792000pt;}
.y47{bottom:76.991999pt;}
.ybf{bottom:77.792000pt;}
.y16d{bottom:79.392000pt;}
.y139{bottom:79.712000pt;}
.y1a6{bottom:82.112000pt;}
.y7c{bottom:82.586670pt;}
.y76{bottom:83.871999pt;}
.yfc{bottom:87.232000pt;}
.y46{bottom:89.151998pt;}
.y201{bottom:89.152000pt;}
.y1f4{bottom:89.312000pt;}
.y1a5{bottom:94.272000pt;}
.ybe{bottom:95.392000pt;}
.y138{bottom:95.712000pt;}
.y45{bottom:101.471995pt;}
.y1f3{bottom:101.472000pt;}
.y1a4{bottom:106.592000pt;}
.y16c{bottom:111.552000pt;}
.y137{bottom:111.872000pt;}
.ybd{bottom:112.992000pt;}
.yfb{bottom:113.312000pt;}
.y44{bottom:113.631999pt;}
.y200{bottom:113.632000pt;}
.y1f2{bottom:113.792000pt;}
.y1a3{bottom:118.912000pt;}
.y75{bottom:119.072001pt;}
.y43{bottom:125.951996pt;}
.y1f1{bottom:125.952000pt;}
.y16b{bottom:127.712000pt;}
.y136{bottom:127.872000pt;}
.ybc{bottom:130.592000pt;}
.y1a2{bottom:131.072000pt;}
.y74{bottom:136.666667pt;}
.y1ff{bottom:138.106667pt;}
.y42{bottom:138.266663pt;}
.y1f0{bottom:138.266667pt;}
.yfa{bottom:139.226667pt;}
.y1a1{bottom:143.386667pt;}
.y16a{bottom:143.706667pt;}
.y135{bottom:144.026667pt;}
.ybb{bottom:148.186667pt;}
.y41{bottom:150.426666pt;}
.y1ef{bottom:150.586667pt;}
.y73{bottom:154.266663pt;}
.y1a0{bottom:155.546667pt;}
.y169{bottom:159.866667pt;}
.y134{bottom:160.026667pt;}
.yf9{bottom:162.106667pt;}
.y40{bottom:162.746663pt;}
.y1ee{bottom:162.746667pt;}
.yba{bottom:165.786667pt;}
.y19f{bottom:167.866667pt;}
.y72{bottom:172.026672pt;}
.y3f{bottom:174.906657pt;}
.y1fe{bottom:174.906667pt;}
.y1ed{bottom:175.066667pt;}
.y168{bottom:175.866667pt;}
.y133{bottom:176.186667pt;}
.yf8{bottom:179.866667pt;}
.y19e{bottom:180.186667pt;}
.yb9{bottom:183.386667pt;}
.y3e{bottom:187.226664pt;}
.y1ec{bottom:187.226667pt;}
.y71{bottom:189.626668pt;}
.y132{bottom:192.186667pt;}
.y19d{bottom:192.346667pt;}
.yf7{bottom:197.466667pt;}
.y167{bottom:199.226667pt;}
.y1fd{bottom:199.386667pt;}
.y1eb{bottom:199.546667pt;}
.y3d{bottom:199.546672pt;}
.yb8{bottom:201.146667pt;}
.y19c{bottom:204.666667pt;}
.y70{bottom:207.226664pt;}
.y131{bottom:208.346667pt;}
.y1fc{bottom:211.706667pt;}
.y1ea{bottom:211.866667pt;}
.y3c{bottom:212.026672pt;}
.yf6{bottom:215.066667pt;}
.y19b{bottom:216.826667pt;}
.yb7{bottom:218.746667pt;}
.y1e9{bottom:224.026667pt;}
.y130{bottom:224.346667pt;}
.y6f{bottom:224.826660pt;}
.y3b{bottom:225.946676pt;}
.y19a{bottom:229.146667pt;}
.y166{bottom:231.226667pt;}
.yf5{bottom:232.666667pt;}
.y1fb{bottom:236.186667pt;}
.yb6{bottom:236.346667pt;}
.y3a{bottom:239.706665pt;}
.y12f{bottom:240.506667pt;}
.y199{bottom:241.466667pt;}
.y6e{bottom:242.426676pt;}
.y165{bottom:247.386667pt;}
.y1e8{bottom:248.506667pt;}
.yf4{bottom:250.266667pt;}
.y39{bottom:253.466675pt;}
.y198{bottom:253.626667pt;}
.yb5{bottom:253.946667pt;}
.y12e{bottom:256.506667pt;}
.y6d{bottom:260.026672pt;}
.y1e7{bottom:260.826667pt;}
.y164{bottom:263.546667pt;}
.y197{bottom:265.946667pt;}
.yf3{bottom:266.266667pt;}
.y38{bottom:267.226664pt;}
.yb4{bottom:270.906667pt;}
.y12d{bottom:272.666667pt;}
.y1fa{bottom:272.986667pt;}
.y1e6{bottom:273.146667pt;}
.y6c{bottom:277.626668pt;}
.y196{bottom:278.106667pt;}
.yf2{bottom:279.546667pt;}
.y37{bottom:280.506673pt;}
.y1e5{bottom:285.306667pt;}
.y12c{bottom:288.826667pt;}
.yb3{bottom:289.306667pt;}
.y195{bottom:290.426667pt;}
.y36{bottom:292.026672pt;}
.yf1{bottom:292.346667pt;}
.y6b{bottom:295.226664pt;}
.y163{bottom:295.706667pt;}
.y1f9{bottom:297.466667pt;}
.y1e4{bottom:297.626667pt;}
.y194{bottom:302.786667pt;}
.y12b{bottom:304.866667pt;}
.yf0{bottom:305.346667pt;}
.yb2{bottom:305.506667pt;}
.y1e3{bottom:309.826667pt;}
.y35{bottom:310.306661pt;}
.y162{bottom:311.746667pt;}
.y6a{bottom:312.866659pt;}
.y193{bottom:314.946667pt;}
.yef{bottom:318.306667pt;}
.y12a{bottom:321.026667pt;}
.y1e2{bottom:322.146667pt;}
.yb1{bottom:324.706667pt;}
.y192{bottom:327.266667pt;}
.y34{bottom:327.906657pt;}
.y161{bottom:327.906667pt;}
.y69{bottom:330.626668pt;}
.yee{bottom:331.266667pt;}
.y1f8{bottom:334.306667pt;}
.y1e1{bottom:334.466667pt;}
.y129{bottom:337.026667pt;}
.y191{bottom:339.426667pt;}
.y160{bottom:343.906667pt;}
.yed{bottom:344.226667pt;}
.y33{bottom:345.506673pt;}
.y1e0{bottom:346.626667pt;}
.y68{bottom:348.226685pt;}
.yb0{bottom:350.466667pt;}
.y190{bottom:351.746667pt;}
.y128{bottom:353.186667pt;}
.yec{bottom:357.186667pt;}
.y1df{bottom:358.946667pt;}
.y15f{bottom:360.066667pt;}
.y32{bottom:363.106649pt;}
.y18f{bottom:364.066667pt;}
.y67{bottom:365.826660pt;}
.y22c{bottom:367.586667pt;}
.yaf{bottom:368.066667pt;}
.y127{bottom:369.186667pt;}
.yeb{bottom:369.986667pt;}
.y1de{bottom:371.106667pt;}
.y15e{bottom:376.066667pt;}
.y18e{bottom:376.226667pt;}
.y31{bottom:380.706665pt;}
.yea{bottom:382.946667pt;}
.y1dd{bottom:383.426667pt;}
.y66{bottom:383.426676pt;}
.y22b{bottom:383.746667pt;}
.y126{bottom:385.346667pt;}
.yae{bottom:385.666667pt;}
.y18d{bottom:388.546667pt;}
.y15d{bottom:392.226667pt;}
.y1f7{bottom:395.586667pt;}
.y1dc{bottom:395.746667pt;}
.y22a{bottom:399.906667pt;}
.y18c{bottom:400.706667pt;}
.y65{bottom:401.026652pt;}
.y125{bottom:401.346667pt;}
.yad{bottom:401.666667pt;}
.y30{bottom:403.746663pt;}
.y1db{bottom:407.906667pt;}
.ye9{bottom:408.226667pt;}
.y18b{bottom:413.026667pt;}
.yac{bottom:414.466667pt;}
.y229{bottom:415.906667pt;}
.yab{bottom:416.386667pt;}
.y124{bottom:417.506667pt;}
.y64{bottom:418.626668pt;}
.y1da{bottom:420.226667pt;}
.ye8{bottom:421.186667pt;}
.y15c{bottom:424.386667pt;}
.y18a{bottom:425.346667pt;}
.yaa{bottom:429.346667pt;}
.y228{bottom:432.066667pt;}
.y1d9{bottom:432.386667pt;}
.y123{bottom:433.506667pt;}
.ye7{bottom:433.986667pt;}
.y63{bottom:436.226685pt;}
.y189{bottom:437.506667pt;}
.y2f{bottom:439.266683pt;}
.y15b{bottom:440.386667pt;}
.ya9{bottom:442.306667pt;}
.y1d8{bottom:444.706667pt;}
.ye6{bottom:446.946667pt;}
.y227{bottom:448.066667pt;}
.y122{bottom:449.666667pt;}
.y188{bottom:449.826667pt;}
.y62{bottom:453.826660pt;}
.ya8{bottom:455.266667pt;}
.y15a{bottom:456.546667pt;}
.y1f6{bottom:456.866667pt;}
.y1d7{bottom:457.026667pt;}
.ye5{bottom:459.906667pt;}
.y187{bottom:462.146667pt;}
.y226{bottom:463.426667pt;}
.y121{bottom:465.666667pt;}
.ya7{bottom:468.066667pt;}
.y1d6{bottom:469.186667pt;}
.y2e{bottom:470.306681pt;}
.y61{bottom:471.426676pt;}
.y159{bottom:472.706667pt;}
.ye4{bottom:472.866667pt;}
.y186{bottom:474.306667pt;}
.y225{bottom:478.786667pt;}
.ya6{bottom:481.026667pt;}
.y1d5{bottom:481.506667pt;}
.y120{bottom:481.826667pt;}
.y2d{bottom:484.066650pt;}
.ye3{bottom:485.826667pt;}
.y185{bottom:486.626667pt;}
.y158{bottom:488.706667pt;}
.y60{bottom:489.186686pt;}
.y1d4{bottom:493.666667pt;}
.ya5{bottom:493.986667pt;}
.y224{bottom:494.146667pt;}
.y11f{bottom:497.986667pt;}
.ye2{bottom:498.786667pt;}
.y2c{bottom:503.266683pt;}
.y157{bottom:504.866667pt;}
.y1d3{bottom:505.986667pt;}
.y5f{bottom:506.786662pt;}
.ya4{bottom:506.946667pt;}
.y223{bottom:509.346667pt;}
.y184{bottom:511.106667pt;}
.ye1{bottom:511.586667pt;}
.y11e{bottom:513.986667pt;}
.y1f5{bottom:518.146667pt;}
.y1d2{bottom:518.306667pt;}
.ya3{bottom:519.906667pt;}
.y156{bottom:520.866667pt;}
.y2b{bottom:522.466675pt;}
.y183{bottom:523.426667pt;}
.y5e{bottom:524.386678pt;}
.ye0{bottom:524.546667pt;}
.y222{bottom:524.706667pt;}
.y11d{bottom:530.146667pt;}
.y1d1{bottom:530.466667pt;}
.ya2{bottom:532.706667pt;}
.y182{bottom:535.586667pt;}
.y2a{bottom:536.226685pt;}
.y155{bottom:537.053333pt;}
.ydf{bottom:537.533333pt;}
.y221{bottom:540.093333pt;}
.y5d{bottom:542.013346pt;}
.y1d0{bottom:542.813333pt;}
.ya1{bottom:545.693333pt;}
.y11c{bottom:546.173333pt;}
.y181{bottom:547.933333pt;}
.y29{bottom:550.013346pt;}
.yde{bottom:550.493333pt;}
.y154{bottom:553.053333pt;}
.y1cf{bottom:554.973333pt;}
.y220{bottom:555.453333pt;}
.ya0{bottom:558.653333pt;}
.y5c{bottom:559.613322pt;}
.y180{bottom:560.093333pt;}
.y11b{bottom:562.333333pt;}
.ydd{bottom:563.453333pt;}
.y28{bottom:563.773315pt;}
.y1ce{bottom:567.293333pt;}
.y153{bottom:569.213333pt;}
.y21f{bottom:570.653333pt;}
.y9f{bottom:571.613333pt;}
.y17f{bottom:572.413333pt;}
.ydc{bottom:576.413333pt;}
.y5b{bottom:577.213338pt;}
.y27{bottom:577.533325pt;}
.y11a{bottom:578.333333pt;}
.y1cd{bottom:579.613333pt;}
.y21e{bottom:583.933333pt;}
.y9e{bottom:584.573333pt;}
.y17e{bottom:584.733333pt;}
.y152{bottom:585.213333pt;}
.ydb{bottom:589.213333pt;}
.y26{bottom:591.453328pt;}
.y1cc{bottom:591.773333pt;}
.y119{bottom:594.493333pt;}
.y5a{bottom:594.813314pt;}
.y17d{bottom:596.893333pt;}
.y9d{bottom:597.533333pt;}
.y21d{bottom:601.533333pt;}
.yda{bottom:602.173333pt;}
.y1cb{bottom:604.093333pt;}
.y25{bottom:605.213338pt;}
.y151{bottom:608.573333pt;}
.y17c{bottom:609.213333pt;}
.y9c{bottom:610.333333pt;}
.y118{bottom:610.493333pt;}
.y59{bottom:612.413330pt;}
.y21c{bottom:613.693333pt;}
.yd9{bottom:615.133333pt;}
.y1ca{bottom:616.253333pt;}
.y24{bottom:618.973348pt;}
.y17b{bottom:621.373333pt;}
.y9b{bottom:623.293333pt;}
.y21b{bottom:626.013333pt;}
.y117{bottom:626.653333pt;}
.yd8{bottom:628.093333pt;}
.y1c9{bottom:628.573333pt;}
.y58{bottom:630.013346pt;}
.y23{bottom:632.733317pt;}
.y17a{bottom:633.693333pt;}
.y9a{bottom:636.253333pt;}
.y21a{bottom:638.333333pt;}
.y150{bottom:640.733333pt;}
.y1c8{bottom:640.893333pt;}
.yd7{bottom:641.053333pt;}
.y116{bottom:642.653333pt;}
.y179{bottom:646.013333pt;}
.y22{bottom:646.493327pt;}
.y57{bottom:647.773315pt;}
.y99{bottom:649.213333pt;}
.y219{bottom:650.493333pt;}
.y1c7{bottom:653.053333pt;}
.yd6{bottom:653.853333pt;}
.y14f{bottom:656.733333pt;}
.y178{bottom:658.173333pt;}
.y115{bottom:658.813333pt;}
.y21{bottom:660.253337pt;}
.y218{bottom:662.813333pt;}
.y56{bottom:665.373332pt;}
.y1c6{bottom:665.373333pt;}
.y98{bottom:670.333333pt;}
.y177{bottom:670.493333pt;}
.y14e{bottom:672.893333pt;}
.y20{bottom:674.173340pt;}
.y114{bottom:674.813333pt;}
.yd5{bottom:674.973333pt;}
.y1c5{bottom:677.533333pt;}
.y176{bottom:682.653333pt;}
.y55{bottom:682.973307pt;}
.y217{bottom:687.293333pt;}
.y1f{bottom:687.933350pt;}
.y14d{bottom:688.893333pt;}
.y1c4{bottom:689.853333pt;}
.yd4{bottom:690.333333pt;}
.y113{bottom:690.973333pt;}
.y97{bottom:691.773333pt;}
.y175{bottom:694.973333pt;}
.y216{bottom:699.613333pt;}
.y54{bottom:700.573324pt;}
.y1e{bottom:701.693359pt;}
.y1c3{bottom:702.173333pt;}
.y14c{bottom:705.053333pt;}
.y112{bottom:707.133333pt;}
.y174{bottom:707.293333pt;}
.y96{bottom:707.773333pt;}
.yd3{bottom:708.893333pt;}
.y215{bottom:711.773333pt;}
.y1c2{bottom:714.333333pt;}
.y1d{bottom:715.453369pt;}
.y53{bottom:718.173340pt;}
.y173{bottom:719.453333pt;}
.y14b{bottom:721.053333pt;}
.yd2{bottom:721.693333pt;}
.y111{bottom:723.133333pt;}
.y214{bottom:724.093333pt;}
.y1c1{bottom:726.653333pt;}
.y95{bottom:727.133333pt;}
.y1c{bottom:729.213297pt;}
.y172{bottom:731.773333pt;}
.yd1{bottom:734.653333pt;}
.y52{bottom:735.773356pt;}
.y213{bottom:736.253333pt;}
.y14a{bottom:737.213333pt;}
.y1c0{bottom:738.813333pt;}
.y1b{bottom:742.973307pt;}
.y171{bottom:743.933333pt;}
.y110{bottom:746.493333pt;}
.yd0{bottom:747.613333pt;}
.y212{bottom:748.573333pt;}
.y1bf{bottom:751.133333pt;}
.y149{bottom:753.213333pt;}
.y51{bottom:753.373372pt;}
.y170{bottom:756.253333pt;}
.y1a{bottom:756.893311pt;}
.y94{bottom:758.493333pt;}
.yce{bottom:760.573333pt;}
.y211{bottom:760.893333pt;}
.y1be{bottom:763.453333pt;}
.y16f{bottom:768.573333pt;}
.y148{bottom:769.373333pt;}
.y19{bottom:770.653320pt;}
.y50{bottom:770.973307pt;}
.y210{bottom:773.053333pt;}
.y10f{bottom:775.653333pt;}
.y16e{bottom:780.773333pt;}
.y18{bottom:784.453369pt;}
.y147{bottom:785.413333pt;}
.ycd{bottom:785.733333pt;}
.y1bd{bottom:787.973333pt;}
.y10e{bottom:788.613333pt;}
.y4f{bottom:788.613363pt;}
.y93{bottom:792.133333pt;}
.y20f{bottom:797.573333pt;}
.y17{bottom:798.213297pt;}
.ycc{bottom:798.693333pt;}
.y1bc{bottom:800.133333pt;}
.y10d{bottom:801.573333pt;}
.y4e{bottom:806.373372pt;}
.y92{bottom:809.733333pt;}
.y20e{bottom:809.893333pt;}
.ycb{bottom:811.653333pt;}
.y16{bottom:811.973307pt;}
.y1bb{bottom:812.453333pt;}
.y10c{bottom:814.373333pt;}
.y146{bottom:817.573333pt;}
.y20d{bottom:822.213333pt;}
.y4d{bottom:823.973307pt;}
.yca{bottom:824.613333pt;}
.y1ba{bottom:824.773333pt;}
.y15{bottom:825.893311pt;}
.y91{bottom:827.333333pt;}
.y145{bottom:833.733333pt;}
.y20c{bottom:834.373333pt;}
.y1b9{bottom:836.933333pt;}
.yc9{bottom:837.573333pt;}
.y14{bottom:839.653320pt;}
.y10b{bottom:840.293333pt;}
.y4c{bottom:841.573324pt;}
.y90{bottom:844.933333pt;}
.y20b{bottom:846.693333pt;}
.y1b8{bottom:849.253333pt;}
.y144{bottom:849.893333pt;}
.yc8{bottom:850.533333pt;}
.y10a{bottom:853.253333pt;}
.y13{bottom:853.413330pt;}
.y20a{bottom:858.853333pt;}
.y4b{bottom:859.173340pt;}
.y1b7{bottom:861.413333pt;}
.y8f{bottom:862.533333pt;}
.yc7{bottom:863.333333pt;}
.y143{bottom:865.893333pt;}
.y12{bottom:867.173340pt;}
.y209{bottom:871.173333pt;}
.y1b6{bottom:873.733333pt;}
.yc6{bottom:876.293333pt;}
.y4a{bottom:876.773356pt;}
.y109{bottom:878.373333pt;}
.y11{bottom:880.933350pt;}
.y142{bottom:882.053333pt;}
.y208{bottom:883.493333pt;}
.y8e{bottom:885.893333pt;}
.y1b5{bottom:886.053333pt;}
.yc5{bottom:889.253333pt;}
.y108{bottom:891.333333pt;}
.y49{bottom:894.373372pt;}
.y10{bottom:894.693359pt;}
.y207{bottom:895.653333pt;}
.y141{bottom:898.053333pt;}
.y1b4{bottom:898.213333pt;}
.yc3{bottom:902.213333pt;}
.y107{bottom:904.293333pt;}
.y206{bottom:907.973333pt;}
.y1b3{bottom:910.533333pt;}
.y140{bottom:914.213333pt;}
.yc2{bottom:915.333333pt;}
.y106{bottom:917.253333pt;}
.y77{bottom:919.333333pt;}
.y8d{bottom:919.493333pt;}
.y205{bottom:920.133333pt;}
.y1b2{bottom:922.693333pt;}
.yc1{bottom:928.293333pt;}
.y105{bottom:930.213333pt;}
.y204{bottom:932.453333pt;}
.y1b1{bottom:935.013333pt;}
.y8c{bottom:937.093333pt;}
.y104{bottom:943.173333pt;}
.y203{bottom:944.773333pt;}
.y13f{bottom:946.373333pt;}
.y1b0{bottom:947.333333pt;}
.yc0{bottom:949.413333pt;}
.y7b{bottom:949.893311pt;}
.y8b{bottom:954.693333pt;}
.y1af{bottom:959.493333pt;}
.y13e{bottom:962.373333pt;}
.y202{bottom:965.573333pt;}
.y103{bottom:968.293333pt;}
.y1ae{bottom:971.813333pt;}
.y8a{bottom:972.453333pt;}
.y13d{bottom:978.533333pt;}
.y102{bottom:981.253333pt;}
.y1ad{bottom:983.973333pt;}
.y89{bottom:990.053333pt;}
.y101{bottom:994.213333pt;}
.y13c{bottom:994.533333pt;}
.y1ac{bottom:996.293333pt;}
.y88{bottom:1007.653333pt;}
.y1ab{bottom:1008.613333pt;}
.y13b{bottom:1010.693333pt;}
.y1aa{bottom:1020.800000pt;}
.y87{bottom:1025.280000pt;}
.y13a{bottom:1026.720000pt;}
.y100{bottom:1027.520000pt;}
.y1a9{bottom:1033.120000pt;}
.y86{bottom:1042.880000pt;}
.y1a8{bottom:1045.280000pt;}
.y2{bottom:1082.399984pt;}
.y80{bottom:1082.400000pt;}
.y4{bottom:1094.719971pt;}
.yfd{bottom:1094.720000pt;}
.y7f{bottom:1097.600000pt;}
.y1{bottom:1097.600016pt;}
.h1c{height:3.555000pt;}
.h1a{height:12.160000pt;}
.h19{height:12.320000pt;}
.h1b{height:12.352000pt;}
.h5{height:15.360001pt;}
.h12{height:18.768750pt;}
.h13{height:19.520000pt;}
.h20{height:24.480000pt;}
.h1e{height:24.512000pt;}
.h1f{height:24.640000pt;}
.he{height:25.918750pt;}
.hb{height:27.966875pt;}
.h11{height:29.940625pt;}
.h10{height:30.254687pt;}
.h22{height:31.217812pt;}
.h7{height:32.620625pt;}
.ha{height:33.515625pt;}
.hf{height:33.867188pt;}
.h23{height:34.965625pt;}
.h9{height:36.164062pt;}
.h6{height:36.639999pt;}
.h18{height:36.800000pt;}
.h4{height:37.090625pt;}
.h3{height:37.479688pt;}
.hc{height:38.672812pt;}
.h21{height:39.347188pt;}
.h15{height:39.876250pt;}
.h14{height:41.543750pt;}
.h1d{height:44.437500pt;}
.h8{height:44.639999pt;}
.hd{height:74.628128pt;}
.h17{height:89.375000pt;}
.h16{height:112.512004pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.080000pt;}
.we{width:100.832000pt;}
.wb{width:119.680000pt;}
.w15{width:131.520000pt;}
.w12{width:132.000000pt;}
.wc{width:147.866667pt;}
.w4{width:171.866659pt;}
.w8{width:171.866667pt;}
.w14{width:176.706667pt;}
.w11{width:185.186667pt;}
.w9{width:233.986667pt;}
.w5{width:233.986674pt;}
.wf{width:235.546667pt;}
.wa{width:268.186667pt;}
.w13{width:308.866667pt;}
.w10{width:317.826667pt;}
.wd{width:337.026667pt;}
.w6{width:629.893351pt;}
.w7{width:649.213338pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x11{left:-9.600001pt;}
.x0{left:0.000000pt;}
.x34{left:7.360000pt;}
.x49{left:8.666667pt;}
.x6{left:9.600016pt;}
.x47{left:13.146667pt;}
.x52{left:14.432000pt;}
.x4a{left:16.506667pt;}
.x33{left:18.426667pt;}
.x3a{left:19.706667pt;}
.x29{left:20.800000pt;}
.x14{left:22.880005pt;}
.x31{left:24.026667pt;}
.x35{left:26.746667pt;}
.x37{left:30.106667pt;}
.x4f{left:31.232000pt;}
.x39{left:32.346667pt;}
.x48{left:33.466667pt;}
.x43{left:35.066667pt;}
.x46{left:36.506667pt;}
.x25{left:38.080000pt;}
.x28{left:39.040000pt;}
.x13{left:42.559998pt;}
.x1f{left:44.314667pt;}
.x27{left:45.274667pt;}
.x45{left:46.266667pt;}
.x23{left:47.514667pt;}
.x22{left:49.114667pt;}
.x3f{left:50.426667pt;}
.x2a{left:51.674667pt;}
.x2b{left:53.594667pt;}
.x41{left:54.880000pt;}
.x21{left:57.640000pt;}
.x44{left:58.880000pt;}
.x40{left:60.666667pt;}
.x3{left:62.399987pt;}
.x24{left:64.360000pt;}
.x1d{left:67.514667pt;}
.xe{left:70.080002pt;}
.x7{left:71.839990pt;}
.x1b{left:73.119988pt;}
.xb{left:75.839990pt;}
.x42{left:78.266667pt;}
.x12{left:79.391998pt;}
.x51{left:81.626667pt;}
.x17{left:84.351988pt;}
.x3e{left:86.106667pt;}
.x1c{left:90.752000pt;}
.x26{left:92.954667pt;}
.x32{left:104.040000pt;}
.x2f{left:105.320000pt;}
.x30{left:106.280000pt;}
.x38{left:108.040000pt;}
.x53{left:110.906667pt;}
.x50{left:124.026667pt;}
.x1e{left:126.234667pt;}
.x8{left:130.272003pt;}
.x36{left:147.226667pt;}
.xa{left:158.266651pt;}
.x54{left:161.306655pt;}
.x1a{left:170.746655pt;}
.x19{left:172.186655pt;}
.x4e{left:190.266655pt;}
.x15{left:209.154673pt;}
.x20{left:211.066667pt;}
.xf{left:236.706660pt;}
.x1{left:246.946664pt;}
.x9{left:338.466663pt;}
.x2{left:382.626656pt;}
.x16{left:396.706655pt;}
.x2d{left:400.546667pt;}
.xc{left:406.626656pt;}
.x2c{left:408.546655pt;}
.x3c{left:410.146667pt;}
.x5{left:414.813314pt;}
.xd{left:416.093331pt;}
.x18{left:419.453333pt;}
.x58{left:425.533322pt;}
.x57{left:435.133322pt;}
.x56{left:475.453322pt;}
.x4d{left:481.693322pt;}
.x59{left:482.973322pt;}
.x4c{left:483.933322pt;}
.x4b{left:494.813322pt;}
.x2e{left:502.013333pt;}
.x55{left:506.173322pt;}
.x3b{left:534.493322pt;}
.x3d{left:595.973333pt;}
.x10{left:631.333328pt;}
.x4{left:725.413330pt;}
.x5a{left:731.493322pt;}
}




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