
    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_2f69945b4e7305df360d0d78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_e674fa4bcfd6529d3b88484f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.213379;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_21431c22d0b3988a80bdee8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_60b68b7ae14614ed93c9bf8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109863;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_584066640775a01a056fb563.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.846000;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_17bbeaae028520306ce9d663.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_70a49d8e2c8d2588956f3b71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_012e1b12967574ba2d1340ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_c9aed6760570e365496863fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_79e4fa3b0cbe266a9951d7ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.398000;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_03170f10a689d84efa3cf6f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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_c08bb81c93a53be747f27a0e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.188000;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;}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{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:-7.149481px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.383311px;}
.v3{vertical-align:32.316000px;}
.v2{vertical-align:67.350533px;}
.v4{vertical-align:100.345200px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.033474px;}
.ls6{letter-spacing:7.727809px;}
.ls4{letter-spacing:10.458365px;}
.ls9{letter-spacing:10.797891px;}
.ls3{letter-spacing:13.179357px;}
.lsb{letter-spacing:13.468926px;}
.ls8{letter-spacing:13.474926px;}
.lsc{letter-spacing:13.804926px;}
.lsa{letter-spacing:13.810926px;}
.ls2{letter-spacing:16.190526px;}
.ls0{letter-spacing:19.038201px;}
.ls7{letter-spacing:32.947416px;}
.lsd{letter-spacing:189.670926px;}
.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;}
}
.ws2{word-spacing:-24.230394px;}
.ws1{word-spacing:-15.192414px;}
.ws3{word-spacing:-14.011436px;}
.wsd{word-spacing:-12.610134px;}
.ws4{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsa{word-spacing:-11.208832px;}
.wsc{word-spacing:-10.759500px;}
.ws6{word-spacing:-10.061328px;}
.wsb{word-spacing:-9.563850px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.961194px;}
.ws9{word-spacing:1.075963px;}
.ws8{word-spacing:1.238554px;}
._4{margin-left:-17.343592px;}
._c{margin-left:-5.303305px;}
._b{margin-left:-4.279944px;}
._e{margin-left:-2.529710px;}
._5{margin-left:-1.480507px;}
._3{width:1.491961px;}
._1{width:2.633926px;}
._2{width:3.959019px;}
._8{width:5.728358px;}
._10{width:6.948333px;}
._18{width:7.957348px;}
._7{width:9.012157px;}
._6{width:10.230133px;}
._12{width:11.298259px;}
._a{width:12.600728px;}
._51{width:14.192336px;}
._0{width:15.579756px;}
._52{width:17.043457px;}
._d{width:18.645252px;}
._f{width:20.318240px;}
._15{width:21.763888px;}
._17{width:23.188209px;}
._13{width:24.508057px;}
._14{width:25.517072px;}
._11{width:27.339037px;}
._9{width:30.193927px;}
._16{width:31.336839px;}
._1a{width:208.817101px;}
._33{width:267.064773px;}
._21{width:290.044792px;}
._41{width:299.122798px;}
._2b{width:307.692008px;}
._2f{width:309.834310px;}
._36{width:316.375984px;}
._50{width:321.310930px;}
._2a{width:337.799008px;}
._3e{width:362.205953px;}
._39{width:377.355091px;}
._27{width:379.038329px;}
._4a{width:384.929660px;}
._49{width:387.110218px;}
._48{width:388.678690px;}
._30{width:396.364199px;}
._34{width:397.974752px;}
._4b{width:400.805651px;}
._31{width:401.953313px;}
._1d{width:403.315206px;}
._25{width:406.161407px;}
._20{width:408.433778px;}
._38{width:412.244016px;}
._22{width:413.429933px;}
._4c{width:414.539340px;}
._44{width:416.031301px;}
._45{width:417.408495px;}
._2c{width:431.983802px;}
._43{width:448.739668px;}
._3c{width:453.827636px;}
._2d{width:457.997474px;}
._47{width:459.527690px;}
._3a{width:460.943140px;}
._1f{width:465.151234px;}
._37{width:474.294275px;}
._35{width:482.480930px;}
._23{width:484.125913px;}
._3b{width:491.394439px;}
._46{width:500.307947px;}
._3d{width:501.608630px;}
._4d{width:511.210736px;}
._42{width:514.232912px;}
._2e{width:517.408111px;}
._4f{width:526.742428px;}
._1b{width:531.141799px;}
._28{width:534.890828px;}
._3f{width:536.880109px;}
._40{width:560.598457px;}
._19{width:596.252490px;}
._26{width:712.870251px;}
._1c{width:717.988824px;}
._1e{width:817.980788px;}
._29{width:1140.967305px;}
._32{width:1240.002885px;}
._4e{width:1241.074036px;}
._24{width:1550.361294px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs6{font-size:26.761800px;}
.fsc{font-size:31.083000px;}
.fsd{font-size:35.867400px;}
.fs7{font-size:38.255400px;}
.fsb{font-size:38.256000px;}
.fs8{font-size:41.842200px;}
.fs5{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs4{font-size:44.327400px;}
.fs9{font-size:47.820600px;}
.fs1{font-size:57.384000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsa{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y3f{bottom:47.430000px;}
.y179{bottom:78.411941px;}
.y5{bottom:79.140000px;}
.ya9{bottom:79.347944px;}
.y158{bottom:79.772437px;}
.ycd{bottom:82.320134px;}
.ybd{bottom:86.315300px;}
.y129{bottom:88.358298px;}
.y114{bottom:90.230456px;}
.y4{bottom:93.495000px;}
.ya8{bottom:95.079726px;}
.y157{bottom:95.420532px;}
.ycc{bottom:98.051916px;}
.ybb{bottom:100.006200px;}
.ybc{bottom:101.962200px;}
.yba{bottom:101.963567px;}
.y128{bottom:104.005198px;}
.y3{bottom:105.630000px;}
.y113{bottom:105.877356px;}
.y178{bottom:109.791818px;}
.ya7{bottom:110.727822px;}
.y156{bottom:111.152314px;}
.y68{bottom:111.662715px;}
.y11d{bottom:113.102608px;}
.ycb{bottom:113.698816px;}
.yb9{bottom:117.695349px;}
.y127{bottom:119.736980px;}
.y3d{bottom:119.905636px;}
.y112{bottom:121.609138px;}
.ya6{bottom:126.459604px;}
.y155{bottom:126.799215px;}
.y67{bottom:127.394497px;}
.y11c{bottom:127.474072px;}
.yca{bottom:129.430598px;}
.y3c{bottom:134.192100px;}
.y126{bottom:135.385076px;}
.y111{bottom:137.256038px;}
.y177{bottom:141.341459px;}
.y11b{bottom:141.845536px;}
.ya5{bottom:142.106504px;}
.y154{bottom:142.530997px;}
.y66{bottom:143.042592px;}
.yc9{bottom:145.078694px;}
.yb8{bottom:147.373852px;}
.y125{bottom:151.116858px;}
.y110{bottom:152.989016px;}
.yb7{bottom:155.622000px;}
.y11a{bottom:156.132000px;}
.ya4{bottom:157.838286px;}
.y153{bottom:158.179092px;}
.y65{bottom:158.774374px;}
.y38{bottom:159.703536px;}
.yc8{bottom:160.810476px;}
.y124{bottom:166.763758px;}
.y10f{bottom:168.635916px;}
.y176{bottom:172.720141px;}
.ya3{bottom:173.571263px;}
.y152{bottom:173.910874px;}
.y37{bottom:174.075000px;}
.y64{bottom:174.506156px;}
.yc7{bottom:176.457376px;}
.y123{bottom:182.495540px;}
.yb6{bottom:182.921370px;}
.y10e{bottom:184.367698px;}
.ya2{bottom:189.218164px;}
.y151{bottom:189.557775px;}
.y63{bottom:190.153057px;}
.yc6{bottom:192.189158px;}
.y122{bottom:198.143636px;}
.y116{bottom:200.014598px;}
.y175{bottom:204.098824px;}
.ya1{bottom:204.949946px;}
.y150{bottom:205.289557px;}
.y62{bottom:205.886034px;}
.yb5{bottom:207.921980px;}
.yc5{bottom:207.922136px;}
.y121{bottom:213.875417px;}
.y35{bottom:215.492796px;}
.y10d{bottom:215.747576px;}
.y174{bottom:219.831801px;}
.ya0{bottom:220.596846px;}
.y14f{bottom:220.936457px;}
.y61{bottom:221.532934px;}
.yc4{bottom:223.569036px;}
.yb4{bottom:223.570076px;}
.y120{bottom:229.522318px;}
.y34{bottom:231.224578px;}
.y115{bottom:231.394476px;}
.y173{bottom:235.478701px;}
.y9f{bottom:236.329823px;}
.y14e{bottom:236.669434px;}
.y60{bottom:237.264716px;}
.yc3{bottom:239.300818px;}
.yb3{bottom:239.301858px;}
.y11f{bottom:245.254100px;}
.y33{bottom:246.957555px;}
.y10c{bottom:247.126258px;}
.y9e{bottom:251.976724px;}
.y14d{bottom:252.316335px;}
.y5f{bottom:252.911616px;}
.yc2{bottom:254.947718px;}
.yb2{bottom:254.948758px;}
.y11e{bottom:260.901000px;}
.y32{bottom:262.604456px;}
.y10b{bottom:262.773158px;}
.y172{bottom:266.857383px;}
.y9d{bottom:267.708506px;}
.y14c{bottom:268.048116px;}
.yc0{bottom:268.639500px;}
.y5e{bottom:268.644594px;}
.yc1{bottom:270.679500px;}
.yb1{bottom:270.680540px;}
.y31{bottom:278.336238px;}
.y10a{bottom:278.506136px;}
.y9c{bottom:283.355406px;}
.y14b{bottom:283.695017px;}
.y5d{bottom:284.291494px;}
.yb0{bottom:286.328636px;}
.y30{bottom:293.983138px;}
.y109{bottom:294.153036px;}
.y12c{bottom:294.577072px;}
.y171{bottom:299.087272px;}
.y9b{bottom:299.088383px;}
.y14a{bottom:299.427994px;}
.y5c{bottom:300.023276px;}
.yaf{bottom:302.060417px;}
.y12b{bottom:308.948536px;}
.y2f{bottom:309.716115px;}
.y108{bottom:309.884818px;}
.y170{bottom:314.734173px;}
.y9a{bottom:314.735284px;}
.y149{bottom:315.074894px;}
.y5b{bottom:315.670176px;}
.yae{bottom:317.707318px;}
.y12a{bottom:323.235000px;}
.y2e{bottom:325.363016px;}
.y107{bottom:325.531718px;}
.y99{bottom:330.467066px;}
.y16f{bottom:330.467150px;}
.y148{bottom:330.806676px;}
.y5a{bottom:331.401958px;}
.yad{bottom:333.439100px;}
.y2d{bottom:341.094798px;}
.y106{bottom:341.263500px;}
.y98{bottom:346.113966px;}
.y16e{bottom:346.114050px;}
.y147{bottom:346.453577px;}
.y59{bottom:347.050054px;}
.ybf{bottom:347.130000px;}
.ybe{bottom:349.083519px;}
.yac{bottom:349.086000px;}
.y2c{bottom:356.741698px;}
.y97{bottom:361.845748px;}
.y146{bottom:362.186554px;}
.y58{bottom:362.781836px;}
.y2b{bottom:372.473480px;}
.y117{bottom:374.938500px;}
.y16d{bottom:377.492733px;}
.y96{bottom:377.493844px;}
.y145{bottom:377.918336px;}
.y57{bottom:378.428736px;}
.y2a{bottom:388.121576px;}
.y104{bottom:389.658177px;}
.y95{bottom:393.225625px;}
.y144{bottom:393.565236px;}
.y56{bottom:394.160518px;}
.y103{bottom:402.498602px;}
.y29{bottom:403.853358px;}
.y94{bottom:408.872526px;}
.y16c{bottom:409.042373px;}
.y143{bottom:409.297018px;}
.y55{bottom:409.808614px;}
.y102{bottom:415.339984px;}
.y28{bottom:419.500258px;}
.y93{bottom:424.604308px;}
.y16b{bottom:424.774155px;}
.y142{bottom:424.945114px;}
.y54{bottom:425.540396px;}
.y101{bottom:428.180409px;}
.y27{bottom:435.232040px;}
.y92{bottom:440.252403px;}
.y16a{bottom:440.421056px;}
.y141{bottom:440.676896px;}
.y100{bottom:441.021790px;}
.y53{bottom:441.187296px;}
.y26{bottom:450.880136px;}
.yff{bottom:453.862215px;}
.y91{bottom:455.984185px;}
.y169{bottom:456.154033px;}
.y140{bottom:456.323796px;}
.y52{bottom:456.919078px;}
.y25{bottom:466.611917px;}
.yfe{bottom:466.702640px;}
.y90{bottom:471.631086px;}
.y168{bottom:471.800933px;}
.y13f{bottom:472.055578px;}
.y51{bottom:472.565978px;}
.yfd{bottom:479.629140px;}
.y24{bottom:482.258818px;}
.y8f{bottom:487.362868px;}
.y167{bottom:487.532715px;}
.y13e{bottom:487.702478px;}
.y50{bottom:488.298956px;}
.yfc{bottom:492.469565px;}
.y36{bottom:497.990600px;}
.y8e{bottom:503.009768px;}
.y166{bottom:503.179616px;}
.y13d{bottom:503.435456px;}
.y4f{bottom:503.945856px;}
.yfb{bottom:505.310946px;}
.y23{bottom:513.637500px;}
.yfa{bottom:518.151371px;}
.y8d{bottom:518.742745px;}
.y165{bottom:518.912593px;}
.y13c{bottom:519.082356px;}
.y4e{bottom:519.677638px;}
.yf9{bottom:530.991796px;}
.y8c{bottom:534.389646px;}
.y164{bottom:534.559493px;}
.y13b{bottom:534.814138px;}
.y4d{bottom:535.324538px;}
.yf8{bottom:543.833178px;}
.y8b{bottom:550.121427px;}
.y163{bottom:550.291275px;}
.y13a{bottom:550.461038px;}
.y4c{bottom:551.057516px;}
.yf7{bottom:556.673603px;}
.y8a{bottom:565.768328px;}
.y162{bottom:566.023057px;}
.y139{bottom:566.194016px;}
.y4b{bottom:566.704416px;}
.yf6{bottom:569.514984px;}
.y22{bottom:573.167930px;}
.y89{bottom:581.501305px;}
.y161{bottom:581.671153px;}
.y138{bottom:581.840916px;}
.y4a{bottom:582.436198px;}
.yf5{bottom:582.440527px;}
.y21{bottom:587.539395px;}
.yf4{bottom:595.280952px;}
.y88{bottom:597.148206px;}
.y160{bottom:597.402935px;}
.y137{bottom:597.572698px;}
.y49{bottom:598.083098px;}
.y20{bottom:601.825859px;}
.yf3{bottom:608.122334px;}
.y87{bottom:612.879987px;}
.y15f{bottom:613.049835px;}
.y136{bottom:613.219598px;}
.y48{bottom:613.816076px;}
.y1f{bottom:616.197323px;}
.yf2{bottom:620.962759px;}
.y86{bottom:628.526888px;}
.y15e{bottom:628.781617px;}
.y135{bottom:628.952576px;}
.y47{bottom:629.462976px;}
.y1e{bottom:630.568787px;}
.yf1{bottom:633.803184px;}
.y85{bottom:644.259865px;}
.y15d{bottom:644.429713px;}
.y134{bottom:644.599476px;}
.y1d{bottom:644.940251px;}
.y46{bottom:645.194758px;}
.yf0{bottom:646.644565px;}
.y1c{bottom:659.226715px;}
.yef{bottom:659.484990px;}
.y84{bottom:659.906765px;}
.y15c{bottom:660.161495px;}
.y133{bottom:660.331258px;}
.y45{bottom:660.841658px;}
.yee{bottom:672.411490px;}
.y1b{bottom:673.598179px;}
.y83{bottom:675.638547px;}
.y15b{bottom:675.808395px;}
.y132{bottom:675.978158px;}
.y44{bottom:676.574636px;}
.y15{bottom:682.527300px;}
.yed{bottom:685.251915px;}
.y1a{bottom:687.969644px;}
.y82{bottom:691.285448px;}
.y15a{bottom:691.540177px;}
.y131{bottom:691.711136px;}
.y119{bottom:692.135536px;}
.y43{bottom:692.306417px;}
.y14{bottom:695.367725px;}
.yec{bottom:698.092340px;}
.y19{bottom:702.256108px;}
.y118{bottom:706.422000px;}
.y81{bottom:707.018425px;}
.y130{bottom:707.358036px;}
.y42{bottom:707.953318px;}
.y13{bottom:708.293269px;}
.yeb{bottom:710.933721px;}
.y18{bottom:716.627572px;}
.y12{bottom:721.134650px;}
.y80{bottom:722.750207px;}
.y159{bottom:722.920055px;}
.y12f{bottom:723.089818px;}
.y41{bottom:723.685100px;}
.yea{bottom:723.774146px;}
.y17{bottom:730.999036px;}
.y11{bottom:733.975075px;}
.ye9{bottom:736.615528px;}
.y7f{bottom:738.397107px;}
.y12e{bottom:738.736718px;}
.y40{bottom:739.332000px;}
.y16{bottom:745.285500px;}
.y10{bottom:746.815500px;}
.ye8{bottom:749.455953px;}
.y7e{bottom:754.127694px;}
.y12d{bottom:754.468500px;}
.ye7{bottom:762.296378px;}
.y7d{bottom:769.775789px;}
.yaa{bottom:773.007000px;}
.yf{bottom:774.624000px;}
.ye6{bottom:775.222877px;}
.y7c{bottom:785.507571px;}
.ye5{bottom:788.063302px;}
.y17a{bottom:788.145000px;}
.ye4{bottom:800.903727px;}
.y7b{bottom:801.154472px;}
.y18f{bottom:806.515138px;}
.ye3{bottom:813.745109px;}
.y1a9{bottom:813.998851px;}
.y7a{bottom:816.886254px;}
.y18e{bottom:818.420219px;}
.ye{bottom:824.116500px;}
.y1a8{bottom:825.903932px;}
.ye2{bottom:826.585534px;}
.yd{bottom:828.369000px;}
.y18d{bottom:830.411374px;}
.y79{bottom:832.533154px;}
.yc{bottom:836.958000px;}
.y1a7{bottom:837.894130px;}
.ye1{bottom:839.426915px;}
.yb{bottom:841.209000px;}
.y18c{bottom:842.401573px;}
.y78{bottom:848.266131px;}
.y1a6{bottom:849.884329px;}
.ye0{bottom:852.267340px;}
.y18b{bottom:854.306653px;}
.y9{bottom:861.619500px;}
.y1a5{bottom:861.790366px;}
.y77{bottom:863.913032px;}
.ydf{bottom:865.107765px;}
.y18a{bottom:866.296852px;}
.ya{bottom:868.591500px;}
.y1a4{bottom:873.780565px;}
.yde{bottom:878.034265px;}
.y189{bottom:878.202889px;}
.y76{bottom:879.644813px;}
.y1a3{bottom:885.685645px;}
.y1a2{bottom:888.152162px;}
.y188{bottom:890.193088px;}
.ydd{bottom:890.874690px;}
.y75{bottom:895.291714px;}
.y1a1{bottom:897.676800px;}
.y8{bottom:899.036716px;}
.y187{bottom:902.183286px;}
.ydc{bottom:903.716071px;}
.y1a0{bottom:909.666999px;}
.y74{bottom:911.024691px;}
.y186{bottom:914.088367px;}
.ydb{bottom:916.556496px;}
.y19f{bottom:921.572080px;}
.y7{bottom:924.888000px;}
.y185{bottom:926.079522px;}
.y73{bottom:926.671592px;}
.yda{bottom:929.396921px;}
.y19e{bottom:933.562278px;}
.y184{bottom:937.984603px;}
.yd9{bottom:942.238303px;}
.y72{bottom:942.403373px;}
.y19d{bottom:945.468315px;}
.y183{bottom:949.974801px;}
.yd8{bottom:955.078728px;}
.y19c{bottom:957.458514px;}
.y6{bottom:957.798000px;}
.y71{bottom:958.050274px;}
.y182{bottom:961.965000px;}
.yd7{bottom:967.920109px;}
.y19b{bottom:969.362638px;}
.y70{bottom:973.783251px;}
.yd6{bottom:980.845652px;}
.y19a{bottom:981.352837px;}
.y6f{bottom:989.430151px;}
.y181{bottom:989.434476px;}
.y199{bottom:993.343992px;}
.yd5{bottom:993.686077px;}
.y3b{bottom:1003.719000px;}
.y6e{bottom:1005.161933px;}
.y198{bottom:1005.249072px;}
.yd4{bottom:1006.527459px;}
.y197{bottom:1017.239271px;}
.yd3{bottom:1019.367884px;}
.y6d{bottom:1020.808834px;}
.y180{bottom:1020.813158px;}
.y196{bottom:1029.145308px;}
.yd2{bottom:1032.208309px;}
.y6c{bottom:1036.541811px;}
.y17f{bottom:1036.546136px;}
.y195{bottom:1041.135507px;}
.yd1{bottom:1045.049690px;}
.y3a{bottom:1045.474500px;}
.y6b{bottom:1052.188711px;}
.y17e{bottom:1052.193036px;}
.y194{bottom:1053.125705px;}
.yd0{bottom:1064.778000px;}
.y193{bottom:1065.030786px;}
.y6a{bottom:1067.920493px;}
.y17d{bottom:1067.924818px;}
.y192{bottom:1077.021941px;}
.y17c{bottom:1083.571718px;}
.ycf{bottom:1084.507536px;}
.y39{bottom:1087.312500px;}
.y191{bottom:1088.927022px;}
.yce{bottom:1098.879000px;}
.y69{bottom:1099.299175px;}
.y17b{bottom:1099.303500px;}
.y190{bottom:1100.917220px;}
.y2{bottom:1127.505000px;}
.y3e{bottom:1128.630000px;}
.y1aa{bottom:1128.639952px;}
.y105{bottom:1128.641565px;}
.yab{bottom:1128.642000px;}
.h9{height:26.343647px;}
.h17{height:26.702269px;}
.h16{height:31.524082px;}
.h13{height:32.661470px;}
.ha{height:33.622910px;}
.h12{height:33.623438px;}
.h11{height:34.478653px;}
.hc{height:37.657659px;}
.h3{height:37.826367px;}
.hb{height:41.188416px;}
.h8{height:41.577047px;}
.he{height:42.029824px;}
.hd{height:42.365531px;}
.h7{height:43.634784px;}
.hf{height:47.073403px;}
.h4{height:56.487375px;}
.h6{height:62.372363px;}
.h14{height:69.263357px;}
.h5{height:79.436109px;}
.h10{height:82.377422px;}
.h15{height:102.255417px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x8{left:62.758950px;}
.xd{left:63.949500px;}
.x21{left:65.395200px;}
.xa{left:74.323389px;}
.x15{left:86.229900px;}
.x16{left:88.611000px;}
.x14{left:102.557400px;}
.x13{left:109.445550px;}
.x17{left:121.351050px;}
.x18{left:123.732150px;}
.x19{left:156.813000px;}
.x1a{left:159.193500px;}
.x3{left:172.035000px;}
.x4{left:178.072500px;}
.x5{left:182.580000px;}
.x24{left:185.213811px;}
.x6{left:188.532000px;}
.x1b{left:206.560500px;}
.x1c{left:213.279000px;}
.x22{left:228.160500px;}
.x23{left:265.663500px;}
.x10{left:299.169000px;}
.x9{left:302.995500px;}
.xe{left:342.624000px;}
.x1{left:348.041979px;}
.xf{left:351.042000px;}
.x7{left:397.644000px;}
.x12{left:444.311979px;}
.xb{left:459.888932px;}
.xc{left:477.831221px;}
.x29{left:489.396842px;}
.x25{left:496.709361px;}
.x28{left:507.424699px;}
.x26{left:512.356776px;}
.x1f{left:622.828500px;}
.x20{left:629.206500px;}
.x27{left:635.407183px;}
.x1d{left:656.419500px;}
.x1e{left:661.266000px;}
.x11{left:669.326979px;}
@media print{
.v1{vertical-align:-6.355094pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.118499pt;}
.v3{vertical-align:28.725333pt;}
.v2{vertical-align:59.867140pt;}
.v4{vertical-align:89.195733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.029755pt;}
.ls6{letter-spacing:6.869164pt;}
.ls4{letter-spacing:9.296325pt;}
.ls9{letter-spacing:9.598126pt;}
.ls3{letter-spacing:11.714984pt;}
.lsb{letter-spacing:11.972379pt;}
.ls8{letter-spacing:11.977712pt;}
.lsc{letter-spacing:12.271045pt;}
.lsa{letter-spacing:12.276379pt;}
.ls2{letter-spacing:14.391579pt;}
.ls0{letter-spacing:16.922845pt;}
.ls7{letter-spacing:29.286592pt;}
.lsd{letter-spacing:168.596379pt;}
.ws2{word-spacing:-21.538128pt;}
.ws1{word-spacing:-13.504368pt;}
.ws3{word-spacing:-12.454610pt;}
.wsd{word-spacing:-11.209008pt;}
.ws4{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsa{word-spacing:-9.963406pt;}
.wsc{word-spacing:-9.564000pt;}
.ws6{word-spacing:-8.943403pt;}
.wsb{word-spacing:-8.501200pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.854395pt;}
.ws9{word-spacing:0.956412pt;}
.ws8{word-spacing:1.100936pt;}
._4{margin-left:-15.416526pt;}
._c{margin-left:-4.714048pt;}
._b{margin-left:-3.804394pt;}
._e{margin-left:-2.248631pt;}
._5{margin-left:-1.316006pt;}
._3{width:1.326187pt;}
._1{width:2.341267pt;}
._2{width:3.519128pt;}
._8{width:5.091874pt;}
._10{width:6.176296pt;}
._18{width:7.073198pt;}
._7{width:8.010806pt;}
._6{width:9.093451pt;}
._12{width:10.042896pt;}
._a{width:11.200647pt;}
._51{width:12.615410pt;}
._0{width:13.848672pt;}
._52{width:15.149740pt;}
._d{width:16.573557pt;}
._f{width:18.060658pt;}
._15{width:19.345678pt;}
._17{width:20.611741pt;}
._13{width:21.784940pt;}
._14{width:22.681842pt;}
._11{width:24.301366pt;}
._9{width:26.839046pt;}
._16{width:27.854968pt;}
._1a{width:185.615201pt;}
._33{width:237.390909pt;}
._21{width:257.817593pt;}
._41{width:265.886932pt;}
._2b{width:273.504007pt;}
._2f{width:275.408276pt;}
._36{width:281.223096pt;}
._50{width:285.609716pt;}
._2a{width:300.265784pt;}
._3e{width:321.960847pt;}
._39{width:335.426748pt;}
._27{width:336.922959pt;}
._4a{width:342.159698pt;}
._49{width:344.097972pt;}
._48{width:345.492168pt;}
._30{width:352.323733pt;}
._34{width:353.755335pt;}
._4b{width:356.271690pt;}
._31{width:357.291834pt;}
._1d{width:358.502405pt;}
._25{width:361.032362pt;}
._20{width:363.052247pt;}
._38{width:366.439125pt;}
._22{width:367.493274pt;}
._4c{width:368.479413pt;}
._44{width:369.805600pt;}
._45{width:371.029773pt;}
._2c{width:383.985602pt;}
._43{width:398.879704pt;}
._3c{width:403.402343pt;}
._2d{width:407.108866pt;}
._47{width:408.469058pt;}
._3a{width:409.727236pt;}
._1f{width:413.467764pt;}
._37{width:421.594911pt;}
._35{width:428.871938pt;}
._23{width:430.334144pt;}
._3b{width:436.795056pt;}
._46{width:444.718175pt;}
._3d{width:445.874338pt;}
._4d{width:454.409543pt;}
._42{width:457.095922pt;}
._2e{width:459.918320pt;}
._4f{width:468.215492pt;}
._1b{width:472.126044pt;}
._28{width:475.458514pt;}
._3f{width:477.226764pt;}
._40{width:498.309740pt;}
._19{width:530.002213pt;}
._26{width:633.662446pt;}
._1c{width:638.212288pt;}
._1e{width:727.094034pt;}
._29{width:1014.193160pt;}
._32{width:1102.224786pt;}
._4e{width:1103.176921pt;}
._24{width:1378.098928pt;}
.fs6{font-size:23.788267pt;}
.fsc{font-size:27.629333pt;}
.fsd{font-size:31.882133pt;}
.fs7{font-size:34.004800pt;}
.fsb{font-size:34.005333pt;}
.fs8{font-size:37.193067pt;}
.fs5{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs4{font-size:39.402133pt;}
.fs9{font-size:42.507200pt;}
.fs1{font-size:51.008000pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsa{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y3f{bottom:42.160000pt;}
.y179{bottom:69.699503pt;}
.y5{bottom:70.346667pt;}
.ya9{bottom:70.531506pt;}
.y158{bottom:70.908833pt;}
.ycd{bottom:73.173453pt;}
.ybd{bottom:76.724711pt;}
.y129{bottom:78.540709pt;}
.y114{bottom:80.204850pt;}
.y4{bottom:83.106667pt;}
.ya8{bottom:84.515312pt;}
.y157{bottom:84.818251pt;}
.ycc{bottom:87.157259pt;}
.ybb{bottom:88.894400pt;}
.ybc{bottom:90.633067pt;}
.yba{bottom:90.634282pt;}
.y128{bottom:92.449065pt;}
.y3{bottom:93.893333pt;}
.y113{bottom:94.113205pt;}
.y178{bottom:97.592727pt;}
.ya7{bottom:98.424731pt;}
.y156{bottom:98.802057pt;}
.y68{bottom:99.255746pt;}
.y11d{bottom:100.535651pt;}
.ycb{bottom:101.065615pt;}
.yb9{bottom:104.618088pt;}
.y127{bottom:106.432871pt;}
.y3d{bottom:106.582787pt;}
.y112{bottom:108.097012pt;}
.ya6{bottom:112.408537pt;}
.y155{bottom:112.710413pt;}
.y67{bottom:113.239553pt;}
.y11c{bottom:113.310286pt;}
.yca{bottom:115.049421pt;}
.y3c{bottom:119.281867pt;}
.y126{bottom:120.342289pt;}
.y111{bottom:122.005367pt;}
.y177{bottom:125.636853pt;}
.y11b{bottom:126.084921pt;}
.ya5{bottom:126.316893pt;}
.y154{bottom:126.694219pt;}
.y66{bottom:127.148971pt;}
.yc9{bottom:128.958839pt;}
.yb8{bottom:130.998979pt;}
.y125{bottom:134.326096pt;}
.y110{bottom:135.990236pt;}
.yb7{bottom:138.330667pt;}
.y11a{bottom:138.784000pt;}
.ya4{bottom:140.300699pt;}
.y153{bottom:140.603638pt;}
.y65{bottom:141.132777pt;}
.y38{bottom:141.958699pt;}
.yc8{bottom:142.942645pt;}
.y124{bottom:148.234451pt;}
.y10f{bottom:149.898592pt;}
.y176{bottom:153.529015pt;}
.ya3{bottom:154.285568pt;}
.y152{bottom:154.587444pt;}
.y37{bottom:154.733333pt;}
.y64{bottom:155.116583pt;}
.yc7{bottom:156.851001pt;}
.y123{bottom:162.218258pt;}
.yb6{bottom:162.596773pt;}
.y10e{bottom:163.882398pt;}
.ya2{bottom:168.193923pt;}
.y151{bottom:168.495800pt;}
.y63{bottom:169.024939pt;}
.yc6{bottom:170.834807pt;}
.y122{bottom:176.127676pt;}
.y116{bottom:177.790754pt;}
.y175{bottom:181.421177pt;}
.ya1{bottom:182.177729pt;}
.y150{bottom:182.479606pt;}
.y62{bottom:183.009808pt;}
.yb5{bottom:184.819538pt;}
.yc5{bottom:184.819676pt;}
.y121{bottom:190.111482pt;}
.y35{bottom:191.549152pt;}
.y10d{bottom:191.775623pt;}
.y174{bottom:195.406045pt;}
.ya0{bottom:196.086085pt;}
.y14f{bottom:196.387962pt;}
.y61{bottom:196.918164pt;}
.yc4{bottom:198.728032pt;}
.yb4{bottom:198.728956pt;}
.y120{bottom:204.019838pt;}
.y34{bottom:205.532958pt;}
.y115{bottom:205.683979pt;}
.y173{bottom:209.314401pt;}
.y9f{bottom:210.070954pt;}
.y14e{bottom:210.372830pt;}
.y60{bottom:210.901970pt;}
.yc3{bottom:212.711838pt;}
.yb3{bottom:212.712762pt;}
.y11f{bottom:218.003644pt;}
.y33{bottom:219.517827pt;}
.y10c{bottom:219.667785pt;}
.y9e{bottom:223.979310pt;}
.y14d{bottom:224.281186pt;}
.y5f{bottom:224.810326pt;}
.yc2{bottom:226.620194pt;}
.yb2{bottom:226.621118pt;}
.y11e{bottom:231.912000pt;}
.y32{bottom:233.426183pt;}
.y10b{bottom:233.576141pt;}
.y172{bottom:237.206563pt;}
.y9d{bottom:237.963116pt;}
.y14c{bottom:238.264992pt;}
.yc0{bottom:238.790667pt;}
.y5e{bottom:238.795195pt;}
.yc1{bottom:240.604000pt;}
.yb1{bottom:240.604924pt;}
.y31{bottom:247.409989pt;}
.y10a{bottom:247.561009pt;}
.y9c{bottom:251.871472pt;}
.y14b{bottom:252.173348pt;}
.y5d{bottom:252.703550pt;}
.yb0{bottom:254.514343pt;}
.y30{bottom:261.318345pt;}
.y109{bottom:261.469365pt;}
.y12c{bottom:261.846286pt;}
.y171{bottom:265.855353pt;}
.y9b{bottom:265.856341pt;}
.y14a{bottom:266.158217pt;}
.y5c{bottom:266.687356pt;}
.yaf{bottom:268.498149pt;}
.y12b{bottom:274.620921pt;}
.y2f{bottom:275.303214pt;}
.y108{bottom:275.453171pt;}
.y170{bottom:279.763709pt;}
.y9a{bottom:279.764697pt;}
.y149{bottom:280.066573pt;}
.y5b{bottom:280.595712pt;}
.yae{bottom:282.406505pt;}
.y12a{bottom:287.320000pt;}
.y2e{bottom:289.211570pt;}
.y107{bottom:289.361527pt;}
.y99{bottom:293.748503pt;}
.y16f{bottom:293.748578pt;}
.y148{bottom:294.050379pt;}
.y5a{bottom:294.579518pt;}
.yad{bottom:296.390311pt;}
.y2d{bottom:303.195376pt;}
.y106{bottom:303.345333pt;}
.y98{bottom:307.656859pt;}
.y16e{bottom:307.656934pt;}
.y147{bottom:307.958735pt;}
.y59{bottom:308.488937pt;}
.ybf{bottom:308.560000pt;}
.ybe{bottom:310.296461pt;}
.yac{bottom:310.298667pt;}
.y2c{bottom:317.103732pt;}
.y97{bottom:321.640665pt;}
.y146{bottom:321.943604pt;}
.y58{bottom:322.472743pt;}
.y2b{bottom:331.087538pt;}
.y117{bottom:333.278667pt;}
.y16d{bottom:335.549096pt;}
.y96{bottom:335.550083pt;}
.y145{bottom:335.927410pt;}
.y57{bottom:336.381099pt;}
.y2a{bottom:344.996956pt;}
.y104{bottom:346.362824pt;}
.y95{bottom:349.533889pt;}
.y144{bottom:349.835766pt;}
.y56{bottom:350.364905pt;}
.y103{bottom:357.776535pt;}
.y29{bottom:358.980762pt;}
.y94{bottom:363.442245pt;}
.y16c{bottom:363.593221pt;}
.y143{bottom:363.819572pt;}
.y55{bottom:364.274324pt;}
.y102{bottom:369.191097pt;}
.y28{bottom:372.889118pt;}
.y93{bottom:377.426051pt;}
.y16b{bottom:377.577027pt;}
.y142{bottom:377.728990pt;}
.y54{bottom:378.258130pt;}
.y101{bottom:380.604808pt;}
.y27{bottom:386.872924pt;}
.y92{bottom:391.335470pt;}
.y16a{bottom:391.485383pt;}
.y141{bottom:391.712796pt;}
.y100{bottom:392.019369pt;}
.y53{bottom:392.166486pt;}
.y26{bottom:400.782343pt;}
.yff{bottom:403.433080pt;}
.y91{bottom:405.319276pt;}
.y169{bottom:405.470252pt;}
.y140{bottom:405.621152pt;}
.y52{bottom:406.150292pt;}
.y25{bottom:414.766149pt;}
.yfe{bottom:414.846791pt;}
.y90{bottom:419.227632pt;}
.y168{bottom:419.378607pt;}
.y13f{bottom:419.604958pt;}
.y51{bottom:420.058647pt;}
.yfd{bottom:426.337013pt;}
.y24{bottom:428.674505pt;}
.y8f{bottom:433.211438pt;}
.y167{bottom:433.362414pt;}
.y13e{bottom:433.513314pt;}
.y50{bottom:434.043516pt;}
.yfc{bottom:437.750724pt;}
.y36{bottom:442.658311pt;}
.y8e{bottom:447.119794pt;}
.y166{bottom:447.270769pt;}
.y13d{bottom:447.498183pt;}
.y4f{bottom:447.951872pt;}
.yfb{bottom:449.165286pt;}
.y23{bottom:456.566667pt;}
.yfa{bottom:460.578997pt;}
.y8d{bottom:461.104662pt;}
.y165{bottom:461.255638pt;}
.y13c{bottom:461.406539pt;}
.y4e{bottom:461.935678pt;}
.yf9{bottom:471.992708pt;}
.y8c{bottom:475.013018pt;}
.y164{bottom:475.163994pt;}
.y13b{bottom:475.390345pt;}
.y4d{bottom:475.844034pt;}
.yf8{bottom:483.407269pt;}
.y8b{bottom:488.996824pt;}
.y163{bottom:489.147800pt;}
.y13a{bottom:489.298701pt;}
.y4c{bottom:489.828903pt;}
.yf7{bottom:494.820980pt;}
.y8a{bottom:502.905180pt;}
.y162{bottom:503.131606pt;}
.y139{bottom:503.283570pt;}
.y4b{bottom:503.737259pt;}
.yf6{bottom:506.235541pt;}
.y22{bottom:509.482605pt;}
.y89{bottom:516.890049pt;}
.y161{bottom:517.041025pt;}
.y138{bottom:517.191925pt;}
.y4a{bottom:517.721065pt;}
.yf5{bottom:517.724913pt;}
.y21{bottom:522.257240pt;}
.yf4{bottom:529.138624pt;}
.y88{bottom:530.798405pt;}
.y160{bottom:531.024831pt;}
.y137{bottom:531.175732pt;}
.y49{bottom:531.629421pt;}
.y20{bottom:534.956319pt;}
.yf3{bottom:540.553186pt;}
.y87{bottom:544.782211pt;}
.y15f{bottom:544.933187pt;}
.y136{bottom:545.084087pt;}
.y48{bottom:545.614289pt;}
.y1f{bottom:547.730954pt;}
.yf2{bottom:551.966897pt;}
.y86{bottom:558.690567pt;}
.y15e{bottom:558.916993pt;}
.y135{bottom:559.068956pt;}
.y47{bottom:559.522645pt;}
.y1e{bottom:560.505588pt;}
.yf1{bottom:563.380608pt;}
.y85{bottom:572.675436pt;}
.y15d{bottom:572.826411pt;}
.y134{bottom:572.977312pt;}
.y1d{bottom:573.280223pt;}
.y46{bottom:573.506451pt;}
.yf0{bottom:574.795169pt;}
.y1c{bottom:585.979302pt;}
.yef{bottom:586.208880pt;}
.y84{bottom:586.583792pt;}
.y15c{bottom:586.810218pt;}
.y133{bottom:586.961118pt;}
.y45{bottom:587.414807pt;}
.yee{bottom:597.699102pt;}
.y1b{bottom:598.753937pt;}
.y83{bottom:600.567598pt;}
.y15b{bottom:600.718573pt;}
.y132{bottom:600.869474pt;}
.y44{bottom:601.399676pt;}
.y15{bottom:606.690934pt;}
.yed{bottom:609.112813pt;}
.y1a{bottom:611.528572pt;}
.y82{bottom:614.475953pt;}
.y15a{bottom:614.702380pt;}
.y131{bottom:614.854343pt;}
.y119{bottom:615.231587pt;}
.y43{bottom:615.383482pt;}
.y14{bottom:618.104645pt;}
.yec{bottom:620.526524pt;}
.y19{bottom:624.227651pt;}
.y118{bottom:627.930667pt;}
.y81{bottom:628.460822pt;}
.y130{bottom:628.762699pt;}
.y42{bottom:629.291838pt;}
.y13{bottom:629.594017pt;}
.yeb{bottom:631.941086pt;}
.y18{bottom:637.002286pt;}
.y12{bottom:641.008578pt;}
.y80{bottom:642.444628pt;}
.y159{bottom:642.595604pt;}
.y12f{bottom:642.746505pt;}
.y41{bottom:643.275644pt;}
.yea{bottom:643.354797pt;}
.y17{bottom:649.776921pt;}
.y11{bottom:652.422289pt;}
.ye9{bottom:654.769358pt;}
.y7f{bottom:656.352984pt;}
.y12e{bottom:656.654861pt;}
.y40{bottom:657.184000pt;}
.y16{bottom:662.476000pt;}
.y10{bottom:663.836000pt;}
.ye8{bottom:666.183069pt;}
.y7e{bottom:670.335728pt;}
.y12d{bottom:670.638667pt;}
.ye7{bottom:677.596780pt;}
.y7d{bottom:684.245146pt;}
.yaa{bottom:687.117333pt;}
.yf{bottom:688.554667pt;}
.ye6{bottom:689.087002pt;}
.y7c{bottom:698.228952pt;}
.ye5{bottom:700.500713pt;}
.y17a{bottom:700.573333pt;}
.ye4{bottom:711.914424pt;}
.y7b{bottom:712.137308pt;}
.y18f{bottom:716.902345pt;}
.ye3{bottom:723.328986pt;}
.y1a9{bottom:723.554534pt;}
.y7a{bottom:726.121114pt;}
.y18e{bottom:727.484639pt;}
.ye{bottom:732.548000pt;}
.y1a8{bottom:734.136828pt;}
.ye2{bottom:734.742697pt;}
.yd{bottom:736.328000pt;}
.y18d{bottom:738.143444pt;}
.y79{bottom:740.029470pt;}
.yc{bottom:743.962667pt;}
.y1a7{bottom:744.794783pt;}
.ye1{bottom:746.157258pt;}
.yb{bottom:747.741333pt;}
.y18c{bottom:748.801398pt;}
.y78{bottom:754.014339pt;}
.y1a6{bottom:755.452737pt;}
.ye0{bottom:757.570969pt;}
.y18b{bottom:759.383692pt;}
.y9{bottom:765.884000pt;}
.y1a5{bottom:766.035881pt;}
.y77{bottom:767.922695pt;}
.ydf{bottom:768.984680pt;}
.y18a{bottom:770.041646pt;}
.ya{bottom:772.081333pt;}
.y1a4{bottom:776.693835pt;}
.yde{bottom:780.474902pt;}
.y189{bottom:780.624790pt;}
.y76{bottom:781.906501pt;}
.y1a3{bottom:787.276129pt;}
.y1a2{bottom:789.468589pt;}
.y188{bottom:791.282745pt;}
.ydd{bottom:791.888613pt;}
.y75{bottom:795.814857pt;}
.y1a1{bottom:797.934934pt;}
.y8{bottom:799.143748pt;}
.y187{bottom:801.940699pt;}
.ydc{bottom:803.303174pt;}
.y1a0{bottom:808.592888pt;}
.y74{bottom:809.799726pt;}
.y186{bottom:812.522993pt;}
.ydb{bottom:814.716886pt;}
.y19f{bottom:819.175182pt;}
.y7{bottom:822.122667pt;}
.y185{bottom:823.181797pt;}
.y73{bottom:823.708081pt;}
.yda{bottom:826.130597pt;}
.y19e{bottom:829.833136pt;}
.y184{bottom:833.764091pt;}
.yd9{bottom:837.545158pt;}
.y72{bottom:837.691887pt;}
.y19d{bottom:840.416280pt;}
.y183{bottom:844.422046pt;}
.yd8{bottom:848.958869pt;}
.y19c{bottom:851.074235pt;}
.y6{bottom:851.376000pt;}
.y71{bottom:851.600243pt;}
.y182{bottom:855.080000pt;}
.yd7{bottom:860.373430pt;}
.y19b{bottom:861.655678pt;}
.y70{bottom:865.585112pt;}
.yd6{bottom:871.862802pt;}
.y19a{bottom:872.313633pt;}
.y6f{bottom:879.493468pt;}
.y181{bottom:879.497312pt;}
.y199{bottom:882.972437pt;}
.yd5{bottom:883.276513pt;}
.y3b{bottom:892.194667pt;}
.y6e{bottom:893.477274pt;}
.y198{bottom:893.554731pt;}
.yd4{bottom:894.691074pt;}
.y197{bottom:904.212685pt;}
.yd3{bottom:906.104786pt;}
.y6d{bottom:907.385630pt;}
.y180{bottom:907.389474pt;}
.y196{bottom:914.795829pt;}
.yd2{bottom:917.518497pt;}
.y6c{bottom:921.370499pt;}
.y17f{bottom:921.374343pt;}
.y195{bottom:925.453784pt;}
.yd1{bottom:928.933058pt;}
.y3a{bottom:929.310667pt;}
.y6b{bottom:935.278855pt;}
.y17e{bottom:935.282699pt;}
.y194{bottom:936.111738pt;}
.yd0{bottom:946.469333pt;}
.y193{bottom:946.694032pt;}
.y6a{bottom:949.262661pt;}
.y17d{bottom:949.266505pt;}
.y192{bottom:957.352836pt;}
.y17c{bottom:963.174861pt;}
.ycf{bottom:964.006699pt;}
.y39{bottom:966.500000pt;}
.y191{bottom:967.935130pt;}
.yce{bottom:976.781333pt;}
.y69{bottom:977.154823pt;}
.y17b{bottom:977.158667pt;}
.y190{bottom:978.593085pt;}
.y2{bottom:1002.226667pt;}
.y3e{bottom:1003.226667pt;}
.y1aa{bottom:1003.235513pt;}
.y105{bottom:1003.236946pt;}
.yab{bottom:1003.237333pt;}
.h9{height:23.416575pt;}
.h17{height:23.735350pt;}
.h16{height:28.021406pt;}
.h13{height:29.032418pt;}
.ha{height:29.887031pt;}
.h12{height:29.887500pt;}
.h11{height:30.647691pt;}
.hc{height:33.473475pt;}
.h3{height:33.623437pt;}
.hb{height:36.611925pt;}
.h8{height:36.957375pt;}
.he{height:37.359844pt;}
.hd{height:37.658250pt;}
.h7{height:38.786475pt;}
.hf{height:41.843025pt;}
.h4{height:50.211000pt;}
.h6{height:55.442100pt;}
.h14{height:61.567428pt;}
.h5{height:70.609875pt;}
.h10{height:73.224375pt;}
.h15{height:90.893704pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x8{left:55.785733pt;}
.xd{left:56.844000pt;}
.x21{left:58.129067pt;}
.xa{left:66.065235pt;}
.x15{left:76.648800pt;}
.x16{left:78.765333pt;}
.x14{left:91.162133pt;}
.x13{left:97.284933pt;}
.x17{left:107.867600pt;}
.x18{left:109.984133pt;}
.x19{left:139.389333pt;}
.x1a{left:141.505333pt;}
.x3{left:152.920000pt;}
.x4{left:158.286667pt;}
.x5{left:162.293333pt;}
.x24{left:164.634498pt;}
.x6{left:167.584000pt;}
.x1b{left:183.609333pt;}
.x1c{left:189.581333pt;}
.x22{left:202.809333pt;}
.x23{left:236.145333pt;}
.x10{left:265.928000pt;}
.x9{left:269.329333pt;}
.xe{left:304.554667pt;}
.x1{left:309.370648pt;}
.xf{left:312.037333pt;}
.x7{left:353.461333pt;}
.x12{left:394.943981pt;}
.xb{left:408.790162pt;}
.xc{left:424.738863pt;}
.x29{left:435.019415pt;}
.x25{left:441.519432pt;}
.x28{left:451.044177pt;}
.x26{left:455.428246pt;}
.x1f{left:553.625333pt;}
.x20{left:559.294667pt;}
.x27{left:564.806385pt;}
.x1d{left:583.484000pt;}
.x1e{left:587.792000pt;}
.x11{left:594.957314pt;}
}




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