
    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_530bc46c20a6034796dc6a66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_09ea2b868f02b81052f8e168.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3162d18307ea6ea95596b2db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3e7211cc95d8fed528c08cee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_1679643b4c9389c6f75b89e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_61bd8c19a2b5e32f32592237.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_849ca00299eb1dcd0ff5ae24.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.666000px;}
.ls13{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.531600px;}
.ls2{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.070560px;}
.lsa{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:1.080000px;}
.ls8{letter-spacing:43.866720px;}
.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;}
}
.ws4{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws7{word-spacing:-14.274000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-4.242960px;}
._7{margin-left:-3.227040px;}
._8{margin-left:-2.211120px;}
._3{margin-left:-1.013040px;}
._0{width:1.135440px;}
._2{width:2.157600px;}
._6{width:3.609120px;}
._11{width:4.674000px;}
._e{width:5.736960px;}
._4{width:7.470000px;}
._5{width:8.665200px;}
._d{width:9.860400px;}
._a{width:11.533680px;}
._b{width:12.549600px;}
._f{width:13.930560px;}
._10{width:15.955920px;}
._13{width:17.868240px;}
._12{width:19.242720px;}
._14{width:20.378160px;}
._1a{width:21.394080px;}
._16{width:22.529520px;}
._15{width:23.545440px;}
._17{width:24.621120px;}
._19{width:25.756560px;}
._c{width:26.772480px;}
._18{width:28.505520px;}
._9{width:29.939760px;}
._1e{width:33.286320px;}
._1c{width:48.644640px;}
._1b{width:54.979200px;}
._1{width:482.162160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.240000px;}
.y122{bottom:3.420000px;}
.y11f{bottom:3.600000px;}
.y11d{bottom:4.320000px;}
.y11a{bottom:4.500000px;}
.y164{bottom:5.040000px;}
.y163{bottom:5.220000px;}
.ye6{bottom:6.840000px;}
.ye4{bottom:7.920000px;}
.y48{bottom:10.080000px;}
.y179{bottom:10.260000px;}
.y49{bottom:10.620000px;}
.y45{bottom:17.460000px;}
.y43{bottom:18.540000px;}
.ye2{bottom:20.340000px;}
.ye9{bottom:20.520000px;}
.y46{bottom:24.480000px;}
.y44{bottom:30.240000px;}
.y140{bottom:37.620000px;}
.y14b{bottom:37.800000px;}
.y146{bottom:37.845000px;}
.y7{bottom:50.595005px;}
.y13f{bottom:54.900000px;}
.y145{bottom:54.945000px;}
.y14a{bottom:55.080000px;}
.y13e{bottom:72.180000px;}
.y144{bottom:72.225000px;}
.y150{bottom:72.390000px;}
.y6{bottom:75.795004px;}
.y13d{bottom:89.460000px;}
.y143{bottom:89.505000px;}
.y14f{bottom:89.670000px;}
.y5{bottom:100.995005px;}
.y149{bottom:106.740000px;}
.y14e{bottom:106.770000px;}
.y142{bottom:106.785000px;}
.y148{bottom:124.020000px;}
.y14d{bottom:124.050000px;}
.y141{bottom:124.065000px;}
.y24{bottom:139.264499px;}
.y5c{bottom:187.410000px;}
.y1b{bottom:196.933500px;}
.y5b{bottom:208.110000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y5a{bottom:228.810000px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y54{bottom:243.570000px;}
.y59{bottom:249.510000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y53{bottom:261.570000px;}
.y58{bottom:270.210000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y52{bottom:279.570000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y57{bottom:290.910000px;}
.y51{bottom:297.570000px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y5d{bottom:311.115000px;}
.y56{bottom:311.655000px;}
.y50{bottom:315.615000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y87{bottom:331.815000px;}
.y86{bottom:332.355000px;}
.y196{bottom:333.435000px;}
.y4f{bottom:333.615000px;}
.y176{bottom:337.755000px;}
.y85{bottom:339.555000px;}
.y12{bottom:348.133500px;}
.y13a{bottom:351.255000px;}
.y195{bottom:351.435000px;}
.y4e{bottom:351.615000px;}
.yde{bottom:354.495000px;}
.y175{bottom:355.755000px;}
.yf7{bottom:355.935000px;}
.y84{bottom:357.555000px;}
.y118{bottom:361.695000px;}
.yaa{bottom:363.495000px;}
.y194{bottom:363.675000px;}
.yb7{bottom:369.435000px;}
.y4d{bottom:369.615000px;}
.y154{bottom:370.335000px;}
.y1ae{bottom:372.495000px;}
.y174{bottom:373.755000px;}
.yf6{bottom:373.935000px;}
.y83{bottom:375.555000px;}
.y139{bottom:378.255000px;}
.ydd{bottom:378.435000px;}
.ya9{bottom:381.495000px;}
.y193{bottom:381.675000px;}
.y11{bottom:386.785499px;}
.yc6{bottom:387.435000px;}
.y4c{bottom:387.615000px;}
.y153{bottom:388.335000px;}
.y117{bottom:389.055000px;}
.y1ad{bottom:390.495000px;}
.y173{bottom:391.755000px;}
.yf5{bottom:391.935000px;}
.y82{bottom:393.555000px;}
.ydc{bottom:396.435000px;}
.ya8{bottom:399.495000px;}
.y192{bottom:399.675000px;}
.y138{bottom:405.255000px;}
.y198{bottom:405.435000px;}
.y152{bottom:406.335000px;}
.y116{bottom:407.055000px;}
.y10{bottom:408.044999px;}
.y172{bottom:409.755000px;}
.yf4{bottom:409.935000px;}
.y4b{bottom:411.555000px;}
.ydb{bottom:414.435000px;}
.ya7{bottom:417.495000px;}
.y191{bottom:417.675000px;}
.y197{bottom:423.435000px;}
.y115{bottom:425.055000px;}
.yf3{bottom:427.935000px;}
.y4a{bottom:429.195000px;}
.y81{bottom:429.555000px;}
.y151{bottom:430.455000px;}
.y137{bottom:432.255000px;}
.yda{bottom:432.435000px;}
.y171{bottom:433.695000px;}
.ya6{bottom:435.495000px;}
.y190{bottom:435.675000px;}
.yb6{bottom:441.435000px;}
.y114{bottom:443.055000px;}
.y47{bottom:443.235000px;}
.yf2{bottom:445.935000px;}
.y80{bottom:447.555000px;}
.yd9{bottom:450.435000px;}
.ya5{bottom:453.495000px;}
.y18f{bottom:453.675000px;}
.y170{bottom:457.815000px;}
.y136{bottom:459.255000px;}
.yb5{bottom:459.435000px;}
.y113{bottom:461.055000px;}
.yf1{bottom:463.935000px;}
.y42{bottom:465.195000px;}
.y7f{bottom:465.555000px;}
.yd8{bottom:468.435000px;}
.yc4{bottom:471.495000px;}
.y18e{bottom:471.675000px;}
.y1ac{bottom:474.555000px;}
.y16f{bottom:475.815000px;}
.ya4{bottom:477.435000px;}
.y112{bottom:479.055000px;}
.yf0{bottom:481.935000px;}
.y7e{bottom:483.555000px;}
.yf{bottom:484.864502px;}
.y135{bottom:486.255000px;}
.yd7{bottom:486.435000px;}
.yc3{bottom:489.495000px;}
.y18d{bottom:489.675000px;}
.y1ab{bottom:492.555000px;}
.y16e{bottom:493.815000px;}
.ya3{bottom:495.435000px;}
.y111{bottom:497.055000px;}
.yef{bottom:499.935000px;}
.y14c{bottom:500.115000px;}
.y7d{bottom:501.555000px;}
.ye{bottom:502.864502px;}
.y41{bottom:504.255000px;}
.yd6{bottom:504.435000px;}
.yc2{bottom:507.495000px;}
.y18c{bottom:507.675000px;}
.y1aa{bottom:510.555000px;}
.y16d{bottom:511.815000px;}
.y134{bottom:513.255000px;}
.ya2{bottom:513.435000px;}
.y110{bottom:515.055000px;}
.yee{bottom:517.935000px;}
.y7c{bottom:519.555000px;}
.yd{bottom:520.864502px;}
.y40{bottom:521.355000px;}
.yd5{bottom:522.435000px;}
.yc1{bottom:525.495000px;}
.y18b{bottom:525.675000px;}
.y16c{bottom:529.815000px;}
.ya1{bottom:531.435000px;}
.y1a9{bottom:534.495000px;}
.yed{bottom:535.935000px;}
.yb3{bottom:537.555000px;}
.y3f{bottom:538.635000px;}
.yc{bottom:538.864499px;}
.y10f{bottom:538.995000px;}
.y133{bottom:540.255000px;}
.yd4{bottom:540.435000px;}
.y7b{bottom:543.495000px;}
.y18a{bottom:543.675000px;}
.y16b{bottom:547.815000px;}
.ya0{bottom:549.435000px;}
.y1a8{bottom:552.495000px;}
.yec{bottom:553.935000px;}
.yb2{bottom:555.555000px;}
.y3e{bottom:555.915000px;}
.yb{bottom:556.864499px;}
.yd3{bottom:558.435000px;}
.y7a{bottom:561.525000px;}
.y10e{bottom:563.145000px;}
.y16a{bottom:565.845000px;}
.y132{bottom:567.285000px;}
.y9f{bottom:567.465000px;}
.y189{bottom:567.645000px;}
.y1a7{bottom:570.525000px;}
.yeb{bottom:571.965000px;}
.y3d{bottom:573.225000px;}
.yb1{bottom:573.585000px;}
.yd2{bottom:576.465000px;}
.y79{bottom:579.525000px;}
.y10d{bottom:581.145000px;}
.y169{bottom:583.845000px;}
.y9e{bottom:585.465000px;}
.y1a6{bottom:588.525000px;}
.y3c{bottom:590.505000px;}
.ybc{bottom:591.585000px;}
.y131{bottom:594.285000px;}
.yd1{bottom:594.465000px;}
.y188{bottom:594.825000px;}
.yea{bottom:596.085000px;}
.y78{bottom:597.525000px;}
.y10c{bottom:599.145000px;}
.y9d{bottom:603.465000px;}
.y3b{bottom:607.785000px;}
.ybb{bottom:609.585000px;}
.yd0{bottom:612.465000px;}
.y187{bottom:612.825000px;}
.y77{bottom:615.525000px;}
.ye8{bottom:620.205000px;}
.y130{bottom:621.285000px;}
.y9c{bottom:621.465000px;}
.y3a{bottom:624.885000px;}
.yba{bottom:627.585000px;}
.ycf{bottom:630.465000px;}
.y186{bottom:630.825000px;}
.y168{bottom:631.905000px;}
.y76{bottom:633.525000px;}
.y10b{bottom:634.425000px;}
.y147{bottom:638.925000px;}
.y9b{bottom:639.465000px;}
.y39{bottom:642.165000px;}
.ya{bottom:645.510000px;}
.y1b4{bottom:645.585000px;}
.y12f{bottom:648.285000px;}
.yce{bottom:648.465000px;}
.y185{bottom:648.825000px;}
.y75{bottom:651.525000px;}
.y167{bottom:651.885000px;}
.y10a{bottom:652.425000px;}
.ye7{bottom:655.485000px;}
.y9a{bottom:657.465000px;}
.y38{bottom:659.445000px;}
.yc0{bottom:663.585000px;}
.ycd{bottom:666.465000px;}
.y9{bottom:666.771000px;}
.y184{bottom:666.825000px;}
.y74{bottom:669.525000px;}
.y109{bottom:670.425000px;}
.y166{bottom:671.685000px;}
.ye5{bottom:673.485000px;}
.y12e{bottom:675.285000px;}
.y99{bottom:675.465000px;}
.y37{bottom:676.725000px;}
.ycc{bottom:684.465000px;}
.y183{bottom:684.825000px;}
.y73{bottom:687.525000px;}
.y108{bottom:688.425000px;}
.y1a5{bottom:690.585000px;}
.y165{bottom:691.665000px;}
.y98{bottom:693.465000px;}
.y36{bottom:694.005000px;}
.ye3{bottom:695.085000px;}
.yb9{bottom:699.585000px;}
.y12d{bottom:702.285000px;}
.ycb{bottom:702.465000px;}
.y182{bottom:702.825000px;}
.y72{bottom:705.525000px;}
.y107{bottom:706.425000px;}
.y1a4{bottom:708.585000px;}
.y35{bottom:711.105000px;}
.y97{bottom:711.465000px;}
.yb0{bottom:717.585000px;}
.ye1{bottom:717.765000px;}
.yca{bottom:720.465000px;}
.y181{bottom:720.825000px;}
.y71{bottom:723.525000px;}
.y8{bottom:726.298500px;}
.y1a3{bottom:726.585000px;}
.y34{bottom:728.385000px;}
.y12c{bottom:729.285000px;}
.y96{bottom:729.465000px;}
.y162{bottom:731.265000px;}
.yaf{bottom:735.585000px;}
.yc9{bottom:738.465000px;}
.y70{bottom:741.525000px;}
.y106{bottom:741.705000px;}
.y1a2{bottom:744.585000px;}
.y180{bottom:744.945000px;}
.y33{bottom:745.665000px;}
.y95{bottom:747.465000px;}
.y4{bottom:752.599495px;}
.ye0{bottom:752.865000px;}
.yae{bottom:753.585000px;}
.y12b{bottom:756.285000px;}
.y6f{bottom:759.525000px;}
.y105{bottom:759.705000px;}
.y161{bottom:760.785000px;}
.yc8{bottom:762.405000px;}
.y32{bottom:762.945000px;}
.y94{bottom:765.465000px;}
.y1a1{bottom:768.525000px;}
.y17f{bottom:769.785000px;}
.yad{bottom:771.585000px;}
.y6e{bottom:777.525000px;}
.y104{bottom:777.705000px;}
.y31{bottom:780.225000px;}
.ydf{bottom:780.945000px;}
.y12a{bottom:783.285000px;}
.y93{bottom:783.465000px;}
.y1a0{bottom:786.525000px;}
.y160{bottom:787.785000px;}
.y17e{bottom:787.965000px;}
.yac{bottom:789.585000px;}
.y6d{bottom:795.525000px;}
.y103{bottom:795.705000px;}
.y30{bottom:797.505000px;}
.y92{bottom:801.465000px;}
.y19f{bottom:804.525000px;}
.y15f{bottom:805.785000px;}
.y17d{bottom:805.965000px;}
.yab{bottom:807.585000px;}
.yc7{bottom:809.925000px;}
.y129{bottom:810.285000px;}
.ybf{bottom:813.570000px;}
.y102{bottom:813.750000px;}
.y2f{bottom:814.650000px;}
.y6c{bottom:819.510000px;}
.y15e{bottom:823.830000px;}
.y17c{bottom:824.010000px;}
.y91{bottom:825.630000px;}
.y128{bottom:828.330000px;}
.y19e{bottom:828.510000px;}
.ybe{bottom:831.570000px;}
.y101{bottom:831.750000px;}
.y2e{bottom:831.930000px;}
.y15d{bottom:841.830000px;}
.y17b{bottom:842.010000px;}
.y6b{bottom:843.630000px;}
.y127{bottom:846.330000px;}
.y19d{bottom:846.510000px;}
.y2d{bottom:849.570000px;}
.y100{bottom:849.750000px;}
.y15c{bottom:859.830000px;}
.y17a{bottom:860.010000px;}
.y6a{bottom:861.630000px;}
.y126{bottom:864.330000px;}
.y19c{bottom:864.510000px;}
.yb4{bottom:867.570000px;}
.yff{bottom:867.750000px;}
.y2c{bottom:869.190000px;}
.yc5{bottom:873.510000px;}
.y15b{bottom:877.830000px;}
.y178{bottom:878.010000px;}
.y3{bottom:879.369000px;}
.y90{bottom:879.630000px;}
.y125{bottom:882.330000px;}
.y69{bottom:885.570000px;}
.yfe{bottom:885.750000px;}
.y19b{bottom:888.630000px;}
.y1b1{bottom:891.510000px;}
.y2b{bottom:896.910000px;}
.y8f{bottom:897.630000px;}
.y124{bottom:900.330000px;}
.y15a{bottom:901.950000px;}
.y68{bottom:903.570000px;}
.yfd{bottom:903.750000px;}
.y19a{bottom:906.630000px;}
.y1b0{bottom:909.510000px;}
.y177{bottom:912.570000px;}
.y8e{bottom:915.630000px;}
.y13c{bottom:916.530000px;}
.y123{bottom:918.330000px;}
.y159{bottom:919.950000px;}
.y67{bottom:921.570000px;}
.yfc{bottom:921.750000px;}
.y2a{bottom:924.450000px;}
.y199{bottom:924.630000px;}
.y1af{bottom:927.510000px;}
.y8d{bottom:933.630000px;}
.y158{bottom:937.950000px;}
.y66{bottom:939.570000px;}
.yfb{bottom:939.750000px;}
.y121{bottom:942.630000px;}
.y2{bottom:945.126001px;}
.y1b3{bottom:945.510000px;}
.y8c{bottom:951.630000px;}
.y29{bottom:951.990000px;}
.y157{bottom:955.950000px;}
.y65{bottom:957.570000px;}
.yfa{bottom:957.750000px;}
.y120{bottom:960.810000px;}
.y1b2{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y8b{bottom:969.630000px;}
.y156{bottom:973.950000px;}
.y64{bottom:975.570000px;}
.y28{bottom:979.710000px;}
.y11e{bottom:980.070000px;}
.y8a{bottom:987.630000px;}
.y155{bottom:991.950000px;}
.yf9{bottom:993.030000px;}
.y63{bottom:993.570000px;}
.y11c{bottom:998.430000px;}
.ybd{bottom:999.510000px;}
.y89{bottom:1005.630000px;}
.y62{bottom:1011.570000px;}
.y11b{bottom:1017.510000px;}
.yf8{bottom:1020.570000px;}
.y13b{bottom:1020.750000px;}
.y88{bottom:1023.630000px;}
.y61{bottom:1029.570000px;}
.y27{bottom:1031.550000px;}
.y119{bottom:1036.770000px;}
.yb8{bottom:1041.630000px;}
.y60{bottom:1047.570000px;}
.y26{bottom:1048.650000px;}
.y5f{bottom:1065.600000px;}
.y25{bottom:1065.960000px;}
.y55{bottom:1119.960000px;}
.h1b{height:17.100000px;}
.h13{height:17.280000px;}
.h1c{height:17.316000px;}
.h1f{height:17.460000px;}
.h24{height:18.180000px;}
.h1d{height:18.360000px;}
.h1e{height:18.540000px;}
.h26{height:19.080000px;}
.h25{height:19.260000px;}
.h19{height:20.880000px;}
.h18{height:21.780000px;}
.h10{height:21.960000px;}
.h27{height:24.120000px;}
.h7{height:32.130000px;}
.h17{height:34.380000px;}
.h1a{height:34.560000px;}
.hd{height:35.820000px;}
.h6{height:45.900000px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h11{height:50.171484px;}
.h14{height:53.573906px;}
.h2{height:55.080000px;}
.h15{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h16{height:61.423863px;}
.h5{height:64.260000px;}
.h23{height:68.940000px;}
.h12{height:70.664062px;}
.hc{height:93.983203px;}
.hb{height:96.508125px;}
.h20{height:103.500000px;}
.h4{height:119.055004px;}
.h22{height:138.060000px;}
.h21{height:138.096000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w18{width:49.896000px;}
.w10{width:53.100000px;}
.wb{width:53.280000px;}
.w1f{width:53.316000px;}
.w16{width:55.440000px;}
.w11{width:59.940000px;}
.w20{width:60.120000px;}
.w23{width:66.780000px;}
.w12{width:66.816000px;}
.w17{width:68.940000px;}
.w13{width:73.440000px;}
.w22{width:73.476000px;}
.we{width:83.880000px;}
.w1a{width:84.456000px;}
.w15{width:85.536000px;}
.wf{width:86.256000px;}
.w1e{width:86.580000px;}
.wa{width:86.616000px;}
.w14{width:86.976000px;}
.w19{width:89.820000px;}
.w1b{width:93.420000px;}
.w24{width:93.816000px;}
.w1c{width:127.656000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w1d{width:134.280000px;}
.w8{width:134.676000px;}
.w7{width:141.516000px;}
.w21{width:187.950000px;}
.wd{width:242.310000px;}
.wc{width:390.855000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x38{left:9.720000px;}
.x3e{left:10.800000px;}
.x2f{left:12.060000px;}
.x39{left:13.140000px;}
.x3d{left:14.220000px;}
.x35{left:16.020000px;}
.x3c{left:17.460000px;}
.x49{left:19.980000px;}
.x47{left:21.240000px;}
.x23{left:22.860000px;}
.x3b{left:25.200000px;}
.x33{left:27.000000px;}
.x25{left:28.260000px;}
.x22{left:29.520000px;}
.x2a{left:30.600000px;}
.x2b{left:33.705000px;}
.x24{left:34.920000px;}
.x2c{left:38.160000px;}
.x41{left:46.800000px;}
.x3f{left:50.580000px;}
.x40{left:53.460000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x1f{left:219.990000px;}
.x8{left:234.389986px;}
.xf{left:236.009986px;}
.x7{left:239.069986px;}
.x1d{left:243.029986px;}
.xc{left:247.529986px;}
.x15{left:266.429986px;}
.x2e{left:270.570000px;}
.x6{left:295.814986px;}
.x43{left:301.035000px;}
.x20{left:307.335000px;}
.x27{left:322.815000px;}
.x9{left:345.494986px;}
.x17{left:346.755000px;}
.x37{left:353.595000px;}
.x10{left:357.554986px;}
.x21{left:361.335000px;}
.x13{left:376.634986px;}
.xd{left:387.074986px;}
.x11{left:388.154986px;}
.x2d{left:390.854986px;}
.x16{left:396.254986px;}
.x42{left:399.494986px;}
.xb{left:401.474986px;}
.x26{left:410.474986px;}
.x30{left:412.095000px;}
.x36{left:413.354986px;}
.x14{left:423.254986px;}
.x4a{left:432.255000px;}
.x4e{left:435.674986px;}
.x12{left:440.354986px;}
.x44{left:442.335000px;}
.xe{left:450.434986px;}
.x1c{left:451.694986px;}
.x3{left:454.959000px;}
.x31{left:472.755000px;}
.x1b{left:474.735000px;}
.x19{left:479.955000px;}
.xa{left:486.104986px;}
.x45{left:496.365000px;}
.x4b{left:506.625000px;}
.x3a{left:530.025000px;}
.x32{left:540.285000px;}
.x46{left:550.365000px;}
.x28{left:565.845000px;}
.x4c{left:567.285000px;}
.x48{left:611.205000px;}
.x34{left:614.625000px;}
.x1a{left:621.465000px;}
.x4d{left:634.785000px;}
.x29{left:650.445000px;}
.x1e{left:760.649986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.592000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.472533pt;}
.ls2{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.062720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.960000pt;}
.ls8{letter-spacing:38.992640pt;}
.ws4{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.688000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-3.771520pt;}
._7{margin-left:-2.868480pt;}
._8{margin-left:-1.965440pt;}
._3{margin-left:-0.900480pt;}
._0{width:1.009280pt;}
._2{width:1.917867pt;}
._6{width:3.208107pt;}
._11{width:4.154667pt;}
._e{width:5.099520pt;}
._4{width:6.640000pt;}
._5{width:7.702400pt;}
._d{width:8.764800pt;}
._a{width:10.252160pt;}
._b{width:11.155200pt;}
._f{width:12.382720pt;}
._10{width:14.183040pt;}
._13{width:15.882880pt;}
._12{width:17.104640pt;}
._14{width:18.113920pt;}
._1a{width:19.016960pt;}
._16{width:20.026240pt;}
._15{width:20.929280pt;}
._17{width:21.885440pt;}
._19{width:22.894720pt;}
._c{width:23.797760pt;}
._18{width:25.338240pt;}
._9{width:26.613120pt;}
._1e{width:29.587840pt;}
._1c{width:43.239680pt;}
._1b{width:48.870400pt;}
._1{width:428.588587pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:2.880000pt;}
.y122{bottom:3.040000pt;}
.y11f{bottom:3.200000pt;}
.y11d{bottom:3.840000pt;}
.y11a{bottom:4.000000pt;}
.y164{bottom:4.480000pt;}
.y163{bottom:4.640000pt;}
.ye6{bottom:6.080000pt;}
.ye4{bottom:7.040000pt;}
.y48{bottom:8.960000pt;}
.y179{bottom:9.120000pt;}
.y49{bottom:9.440000pt;}
.y45{bottom:15.520000pt;}
.y43{bottom:16.480000pt;}
.ye2{bottom:18.080000pt;}
.ye9{bottom:18.240000pt;}
.y46{bottom:21.760000pt;}
.y44{bottom:26.880000pt;}
.y140{bottom:33.440000pt;}
.y14b{bottom:33.600000pt;}
.y146{bottom:33.640000pt;}
.y7{bottom:44.973338pt;}
.y13f{bottom:48.800000pt;}
.y145{bottom:48.840000pt;}
.y14a{bottom:48.960000pt;}
.y13e{bottom:64.160000pt;}
.y144{bottom:64.200000pt;}
.y150{bottom:64.346667pt;}
.y6{bottom:67.373337pt;}
.y13d{bottom:79.520000pt;}
.y143{bottom:79.560000pt;}
.y14f{bottom:79.706667pt;}
.y5{bottom:89.773337pt;}
.y149{bottom:94.880000pt;}
.y14e{bottom:94.906667pt;}
.y142{bottom:94.920000pt;}
.y148{bottom:110.240000pt;}
.y14d{bottom:110.266667pt;}
.y141{bottom:110.280000pt;}
.y24{bottom:123.790666pt;}
.y5c{bottom:166.586667pt;}
.y1b{bottom:175.052000pt;}
.y5b{bottom:184.986667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y5a{bottom:203.386667pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y54{bottom:216.506667pt;}
.y59{bottom:221.786667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y53{bottom:232.506667pt;}
.y58{bottom:240.186667pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y52{bottom:248.506667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y57{bottom:258.586667pt;}
.y51{bottom:264.506667pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y5d{bottom:276.546667pt;}
.y56{bottom:277.026667pt;}
.y50{bottom:280.546667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y87{bottom:294.946667pt;}
.y86{bottom:295.426667pt;}
.y196{bottom:296.386667pt;}
.y4f{bottom:296.546667pt;}
.y176{bottom:300.226667pt;}
.y85{bottom:301.826667pt;}
.y12{bottom:309.452000pt;}
.y13a{bottom:312.226667pt;}
.y195{bottom:312.386667pt;}
.y4e{bottom:312.546667pt;}
.yde{bottom:315.106667pt;}
.y175{bottom:316.226667pt;}
.yf7{bottom:316.386667pt;}
.y84{bottom:317.826667pt;}
.y118{bottom:321.506667pt;}
.yaa{bottom:323.106667pt;}
.y194{bottom:323.266667pt;}
.yb7{bottom:328.386667pt;}
.y4d{bottom:328.546667pt;}
.y154{bottom:329.186667pt;}
.y1ae{bottom:331.106667pt;}
.y174{bottom:332.226667pt;}
.yf6{bottom:332.386667pt;}
.y83{bottom:333.826667pt;}
.y139{bottom:336.226667pt;}
.ydd{bottom:336.386667pt;}
.ya9{bottom:339.106667pt;}
.y193{bottom:339.266667pt;}
.y11{bottom:343.809333pt;}
.yc6{bottom:344.386667pt;}
.y4c{bottom:344.546667pt;}
.y153{bottom:345.186667pt;}
.y117{bottom:345.826667pt;}
.y1ad{bottom:347.106667pt;}
.y173{bottom:348.226667pt;}
.yf5{bottom:348.386667pt;}
.y82{bottom:349.826667pt;}
.ydc{bottom:352.386667pt;}
.ya8{bottom:355.106667pt;}
.y192{bottom:355.266667pt;}
.y138{bottom:360.226667pt;}
.y198{bottom:360.386667pt;}
.y152{bottom:361.186667pt;}
.y116{bottom:361.826667pt;}
.y10{bottom:362.706666pt;}
.y172{bottom:364.226667pt;}
.yf4{bottom:364.386667pt;}
.y4b{bottom:365.826667pt;}
.ydb{bottom:368.386667pt;}
.ya7{bottom:371.106667pt;}
.y191{bottom:371.266667pt;}
.y197{bottom:376.386667pt;}
.y115{bottom:377.826667pt;}
.yf3{bottom:380.386667pt;}
.y4a{bottom:381.506667pt;}
.y81{bottom:381.826667pt;}
.y151{bottom:382.626667pt;}
.y137{bottom:384.226667pt;}
.yda{bottom:384.386667pt;}
.y171{bottom:385.506667pt;}
.ya6{bottom:387.106667pt;}
.y190{bottom:387.266667pt;}
.yb6{bottom:392.386667pt;}
.y114{bottom:393.826667pt;}
.y47{bottom:393.986667pt;}
.yf2{bottom:396.386667pt;}
.y80{bottom:397.826667pt;}
.yd9{bottom:400.386667pt;}
.ya5{bottom:403.106667pt;}
.y18f{bottom:403.266667pt;}
.y170{bottom:406.946667pt;}
.y136{bottom:408.226667pt;}
.yb5{bottom:408.386667pt;}
.y113{bottom:409.826667pt;}
.yf1{bottom:412.386667pt;}
.y42{bottom:413.506667pt;}
.y7f{bottom:413.826667pt;}
.yd8{bottom:416.386667pt;}
.yc4{bottom:419.106667pt;}
.y18e{bottom:419.266667pt;}
.y1ac{bottom:421.826667pt;}
.y16f{bottom:422.946667pt;}
.ya4{bottom:424.386667pt;}
.y112{bottom:425.826667pt;}
.yf0{bottom:428.386667pt;}
.y7e{bottom:429.826667pt;}
.yf{bottom:430.990669pt;}
.y135{bottom:432.226667pt;}
.yd7{bottom:432.386667pt;}
.yc3{bottom:435.106667pt;}
.y18d{bottom:435.266667pt;}
.y1ab{bottom:437.826667pt;}
.y16e{bottom:438.946667pt;}
.ya3{bottom:440.386667pt;}
.y111{bottom:441.826667pt;}
.yef{bottom:444.386667pt;}
.y14c{bottom:444.546667pt;}
.y7d{bottom:445.826667pt;}
.ye{bottom:446.990669pt;}
.y41{bottom:448.226667pt;}
.yd6{bottom:448.386667pt;}
.yc2{bottom:451.106667pt;}
.y18c{bottom:451.266667pt;}
.y1aa{bottom:453.826667pt;}
.y16d{bottom:454.946667pt;}
.y134{bottom:456.226667pt;}
.ya2{bottom:456.386667pt;}
.y110{bottom:457.826667pt;}
.yee{bottom:460.386667pt;}
.y7c{bottom:461.826667pt;}
.yd{bottom:462.990669pt;}
.y40{bottom:463.426667pt;}
.yd5{bottom:464.386667pt;}
.yc1{bottom:467.106667pt;}
.y18b{bottom:467.266667pt;}
.y16c{bottom:470.946667pt;}
.ya1{bottom:472.386667pt;}
.y1a9{bottom:475.106667pt;}
.yed{bottom:476.386667pt;}
.yb3{bottom:477.826667pt;}
.y3f{bottom:478.786667pt;}
.yc{bottom:478.990666pt;}
.y10f{bottom:479.106667pt;}
.y133{bottom:480.226667pt;}
.yd4{bottom:480.386667pt;}
.y7b{bottom:483.106667pt;}
.y18a{bottom:483.266667pt;}
.y16b{bottom:486.946667pt;}
.ya0{bottom:488.386667pt;}
.y1a8{bottom:491.106667pt;}
.yec{bottom:492.386667pt;}
.yb2{bottom:493.826667pt;}
.y3e{bottom:494.146667pt;}
.yb{bottom:494.990666pt;}
.yd3{bottom:496.386667pt;}
.y7a{bottom:499.133333pt;}
.y10e{bottom:500.573333pt;}
.y16a{bottom:502.973333pt;}
.y132{bottom:504.253333pt;}
.y9f{bottom:504.413333pt;}
.y189{bottom:504.573333pt;}
.y1a7{bottom:507.133333pt;}
.yeb{bottom:508.413333pt;}
.y3d{bottom:509.533333pt;}
.yb1{bottom:509.853333pt;}
.yd2{bottom:512.413333pt;}
.y79{bottom:515.133333pt;}
.y10d{bottom:516.573333pt;}
.y169{bottom:518.973333pt;}
.y9e{bottom:520.413333pt;}
.y1a6{bottom:523.133333pt;}
.y3c{bottom:524.893333pt;}
.ybc{bottom:525.853333pt;}
.y131{bottom:528.253333pt;}
.yd1{bottom:528.413333pt;}
.y188{bottom:528.733333pt;}
.yea{bottom:529.853333pt;}
.y78{bottom:531.133333pt;}
.y10c{bottom:532.573333pt;}
.y9d{bottom:536.413333pt;}
.y3b{bottom:540.253333pt;}
.ybb{bottom:541.853333pt;}
.yd0{bottom:544.413333pt;}
.y187{bottom:544.733333pt;}
.y77{bottom:547.133333pt;}
.ye8{bottom:551.293333pt;}
.y130{bottom:552.253333pt;}
.y9c{bottom:552.413333pt;}
.y3a{bottom:555.453333pt;}
.yba{bottom:557.853333pt;}
.ycf{bottom:560.413333pt;}
.y186{bottom:560.733333pt;}
.y168{bottom:561.693333pt;}
.y76{bottom:563.133333pt;}
.y10b{bottom:563.933333pt;}
.y147{bottom:567.933333pt;}
.y9b{bottom:568.413333pt;}
.y39{bottom:570.813333pt;}
.ya{bottom:573.786667pt;}
.y1b4{bottom:573.853333pt;}
.y12f{bottom:576.253333pt;}
.yce{bottom:576.413333pt;}
.y185{bottom:576.733333pt;}
.y75{bottom:579.133333pt;}
.y167{bottom:579.453333pt;}
.y10a{bottom:579.933333pt;}
.ye7{bottom:582.653333pt;}
.y9a{bottom:584.413333pt;}
.y38{bottom:586.173333pt;}
.yc0{bottom:589.853333pt;}
.ycd{bottom:592.413333pt;}
.y9{bottom:592.685334pt;}
.y184{bottom:592.733333pt;}
.y74{bottom:595.133333pt;}
.y109{bottom:595.933333pt;}
.y166{bottom:597.053333pt;}
.ye5{bottom:598.653333pt;}
.y12e{bottom:600.253333pt;}
.y99{bottom:600.413333pt;}
.y37{bottom:601.533333pt;}
.ycc{bottom:608.413333pt;}
.y183{bottom:608.733333pt;}
.y73{bottom:611.133333pt;}
.y108{bottom:611.933333pt;}
.y1a5{bottom:613.853333pt;}
.y165{bottom:614.813333pt;}
.y98{bottom:616.413333pt;}
.y36{bottom:616.893333pt;}
.ye3{bottom:617.853333pt;}
.yb9{bottom:621.853333pt;}
.y12d{bottom:624.253333pt;}
.ycb{bottom:624.413333pt;}
.y182{bottom:624.733333pt;}
.y72{bottom:627.133333pt;}
.y107{bottom:627.933333pt;}
.y1a4{bottom:629.853333pt;}
.y35{bottom:632.093333pt;}
.y97{bottom:632.413333pt;}
.yb0{bottom:637.853333pt;}
.ye1{bottom:638.013333pt;}
.yca{bottom:640.413333pt;}
.y181{bottom:640.733333pt;}
.y71{bottom:643.133333pt;}
.y8{bottom:645.598667pt;}
.y1a3{bottom:645.853333pt;}
.y34{bottom:647.453333pt;}
.y12c{bottom:648.253333pt;}
.y96{bottom:648.413333pt;}
.y162{bottom:650.013333pt;}
.yaf{bottom:653.853333pt;}
.yc9{bottom:656.413333pt;}
.y70{bottom:659.133333pt;}
.y106{bottom:659.293333pt;}
.y1a2{bottom:661.853333pt;}
.y180{bottom:662.173333pt;}
.y33{bottom:662.813333pt;}
.y95{bottom:664.413333pt;}
.y4{bottom:668.977329pt;}
.ye0{bottom:669.213333pt;}
.yae{bottom:669.853333pt;}
.y12b{bottom:672.253333pt;}
.y6f{bottom:675.133333pt;}
.y105{bottom:675.293333pt;}
.y161{bottom:676.253333pt;}
.yc8{bottom:677.693333pt;}
.y32{bottom:678.173333pt;}
.y94{bottom:680.413333pt;}
.y1a1{bottom:683.133333pt;}
.y17f{bottom:684.253333pt;}
.yad{bottom:685.853333pt;}
.y6e{bottom:691.133333pt;}
.y104{bottom:691.293333pt;}
.y31{bottom:693.533333pt;}
.ydf{bottom:694.173333pt;}
.y12a{bottom:696.253333pt;}
.y93{bottom:696.413333pt;}
.y1a0{bottom:699.133333pt;}
.y160{bottom:700.253333pt;}
.y17e{bottom:700.413333pt;}
.yac{bottom:701.853333pt;}
.y6d{bottom:707.133333pt;}
.y103{bottom:707.293333pt;}
.y30{bottom:708.893333pt;}
.y92{bottom:712.413333pt;}
.y19f{bottom:715.133333pt;}
.y15f{bottom:716.253333pt;}
.y17d{bottom:716.413333pt;}
.yab{bottom:717.853333pt;}
.yc7{bottom:719.933333pt;}
.y129{bottom:720.253333pt;}
.ybf{bottom:723.173333pt;}
.y102{bottom:723.333333pt;}
.y2f{bottom:724.133333pt;}
.y6c{bottom:728.453333pt;}
.y15e{bottom:732.293333pt;}
.y17c{bottom:732.453333pt;}
.y91{bottom:733.893333pt;}
.y128{bottom:736.293333pt;}
.y19e{bottom:736.453333pt;}
.ybe{bottom:739.173333pt;}
.y101{bottom:739.333333pt;}
.y2e{bottom:739.493333pt;}
.y15d{bottom:748.293333pt;}
.y17b{bottom:748.453333pt;}
.y6b{bottom:749.893333pt;}
.y127{bottom:752.293333pt;}
.y19d{bottom:752.453333pt;}
.y2d{bottom:755.173333pt;}
.y100{bottom:755.333333pt;}
.y15c{bottom:764.293333pt;}
.y17a{bottom:764.453333pt;}
.y6a{bottom:765.893333pt;}
.y126{bottom:768.293333pt;}
.y19c{bottom:768.453333pt;}
.yb4{bottom:771.173333pt;}
.yff{bottom:771.333333pt;}
.y2c{bottom:772.613333pt;}
.yc5{bottom:776.453333pt;}
.y15b{bottom:780.293333pt;}
.y178{bottom:780.453333pt;}
.y3{bottom:781.661334pt;}
.y90{bottom:781.893333pt;}
.y125{bottom:784.293333pt;}
.y69{bottom:787.173333pt;}
.yfe{bottom:787.333333pt;}
.y19b{bottom:789.893333pt;}
.y1b1{bottom:792.453333pt;}
.y2b{bottom:797.253333pt;}
.y8f{bottom:797.893333pt;}
.y124{bottom:800.293333pt;}
.y15a{bottom:801.733333pt;}
.y68{bottom:803.173333pt;}
.yfd{bottom:803.333333pt;}
.y19a{bottom:805.893333pt;}
.y1b0{bottom:808.453333pt;}
.y177{bottom:811.173333pt;}
.y8e{bottom:813.893333pt;}
.y13c{bottom:814.693333pt;}
.y123{bottom:816.293333pt;}
.y159{bottom:817.733333pt;}
.y67{bottom:819.173333pt;}
.yfc{bottom:819.333333pt;}
.y2a{bottom:821.733333pt;}
.y199{bottom:821.893333pt;}
.y1af{bottom:824.453333pt;}
.y8d{bottom:829.893333pt;}
.y158{bottom:833.733333pt;}
.y66{bottom:835.173333pt;}
.yfb{bottom:835.333333pt;}
.y121{bottom:837.893333pt;}
.y2{bottom:840.112001pt;}
.y1b3{bottom:840.453333pt;}
.y8c{bottom:845.893333pt;}
.y29{bottom:846.213333pt;}
.y157{bottom:849.733333pt;}
.y65{bottom:851.173333pt;}
.yfa{bottom:851.333333pt;}
.y120{bottom:854.053333pt;}
.y1b2{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y8b{bottom:861.893333pt;}
.y156{bottom:865.733333pt;}
.y64{bottom:867.173333pt;}
.y28{bottom:870.853333pt;}
.y11e{bottom:871.173333pt;}
.y8a{bottom:877.893333pt;}
.y155{bottom:881.733333pt;}
.yf9{bottom:882.693333pt;}
.y63{bottom:883.173333pt;}
.y11c{bottom:887.493333pt;}
.ybd{bottom:888.453333pt;}
.y89{bottom:893.893333pt;}
.y62{bottom:899.173333pt;}
.y11b{bottom:904.453333pt;}
.yf8{bottom:907.173333pt;}
.y13b{bottom:907.333333pt;}
.y88{bottom:909.893333pt;}
.y61{bottom:915.173333pt;}
.y27{bottom:916.933333pt;}
.y119{bottom:921.573333pt;}
.yb8{bottom:925.893333pt;}
.y60{bottom:931.173333pt;}
.y26{bottom:932.133333pt;}
.y5f{bottom:947.200000pt;}
.y25{bottom:947.520000pt;}
.y55{bottom:995.520000pt;}
.h1b{height:15.200000pt;}
.h13{height:15.360000pt;}
.h1c{height:15.392000pt;}
.h1f{height:15.520000pt;}
.h24{height:16.160000pt;}
.h1d{height:16.320000pt;}
.h1e{height:16.480000pt;}
.h26{height:16.960000pt;}
.h25{height:17.120000pt;}
.h19{height:18.560000pt;}
.h18{height:19.360000pt;}
.h10{height:19.520000pt;}
.h27{height:21.440000pt;}
.h7{height:28.560000pt;}
.h17{height:30.560000pt;}
.h1a{height:30.720000pt;}
.hd{height:31.840000pt;}
.h6{height:40.800000pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h11{height:44.596875pt;}
.h14{height:47.621250pt;}
.h2{height:48.960000pt;}
.h15{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h16{height:54.598989pt;}
.h5{height:57.120000pt;}
.h23{height:61.280000pt;}
.h12{height:62.812500pt;}
.hc{height:83.540625pt;}
.hb{height:85.785000pt;}
.h20{height:92.000000pt;}
.h4{height:105.826671pt;}
.h22{height:122.720000pt;}
.h21{height:122.752000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w18{width:44.352000pt;}
.w10{width:47.200000pt;}
.wb{width:47.360000pt;}
.w1f{width:47.392000pt;}
.w16{width:49.280000pt;}
.w11{width:53.280000pt;}
.w20{width:53.440000pt;}
.w23{width:59.360000pt;}
.w12{width:59.392000pt;}
.w17{width:61.280000pt;}
.w13{width:65.280000pt;}
.w22{width:65.312000pt;}
.we{width:74.560000pt;}
.w1a{width:75.072000pt;}
.w15{width:76.032000pt;}
.wf{width:76.672000pt;}
.w1e{width:76.960000pt;}
.wa{width:76.992000pt;}
.w14{width:77.312000pt;}
.w19{width:79.840000pt;}
.w1b{width:83.040000pt;}
.w24{width:83.392000pt;}
.w1c{width:113.472000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w1d{width:119.360000pt;}
.w8{width:119.712000pt;}
.w7{width:125.792000pt;}
.w21{width:167.066667pt;}
.wd{width:215.386667pt;}
.wc{width:347.426667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x38{left:8.640000pt;}
.x3e{left:9.600000pt;}
.x2f{left:10.720000pt;}
.x39{left:11.680000pt;}
.x3d{left:12.640000pt;}
.x35{left:14.240000pt;}
.x3c{left:15.520000pt;}
.x49{left:17.760000pt;}
.x47{left:18.880000pt;}
.x23{left:20.320000pt;}
.x3b{left:22.400000pt;}
.x33{left:24.000000pt;}
.x25{left:25.120000pt;}
.x22{left:26.240000pt;}
.x2a{left:27.200000pt;}
.x2b{left:29.960000pt;}
.x24{left:31.040000pt;}
.x2c{left:33.920000pt;}
.x41{left:41.600000pt;}
.x3f{left:44.960000pt;}
.x40{left:47.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x1f{left:195.546667pt;}
.x8{left:208.346655pt;}
.xf{left:209.786655pt;}
.x7{left:212.506655pt;}
.x1d{left:216.026655pt;}
.xc{left:220.026655pt;}
.x15{left:236.826655pt;}
.x2e{left:240.506667pt;}
.x6{left:262.946655pt;}
.x43{left:267.586667pt;}
.x20{left:273.186667pt;}
.x27{left:286.946667pt;}
.x9{left:307.106655pt;}
.x17{left:308.226667pt;}
.x37{left:314.306667pt;}
.x10{left:317.826655pt;}
.x21{left:321.186667pt;}
.x13{left:334.786655pt;}
.xd{left:344.066655pt;}
.x11{left:345.026655pt;}
.x2d{left:347.426655pt;}
.x16{left:352.226655pt;}
.x42{left:355.106655pt;}
.xb{left:356.866655pt;}
.x26{left:364.866655pt;}
.x30{left:366.306667pt;}
.x36{left:367.426655pt;}
.x14{left:376.226655pt;}
.x4a{left:384.226667pt;}
.x4e{left:387.266655pt;}
.x12{left:391.426655pt;}
.x44{left:393.186667pt;}
.xe{left:400.386655pt;}
.x1c{left:401.506655pt;}
.x3{left:404.408000pt;}
.x31{left:420.226667pt;}
.x1b{left:421.986667pt;}
.x19{left:426.626667pt;}
.xa{left:432.093321pt;}
.x45{left:441.213333pt;}
.x4b{left:450.333333pt;}
.x3a{left:471.133333pt;}
.x32{left:480.253333pt;}
.x46{left:489.213333pt;}
.x28{left:502.973333pt;}
.x4c{left:504.253333pt;}
.x48{left:543.293333pt;}
.x34{left:546.333333pt;}
.x1a{left:552.413333pt;}
.x4d{left:564.253333pt;}
.x29{left:578.173333pt;}
.x1e{left:676.133321pt;}
}




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