
    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_6193fc93719873dbca485474.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4de8205fbc6f15670e72b1a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026855;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_4a7c2d0a1d051a2c0951fcb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.162598;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_a0b7edf00bb4668d1883609b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.145020;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_d3677998cc340b4dc8383cb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.145020;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_8a0f0166e884d50512c3a8e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.162598;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_cc049c29cd4f3c251418de0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bac19533f3e772b9447b8595.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.876953;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_31d2887b7e7987a03f661bbe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882812;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_a0f0d320330b535be33264d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7633c65202395928a1bb3c1d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_df8929bc9360023cf7013c55.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b21402c6117ddff3970b852e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a84449ea6c6f26e6485d32cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887207;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:fff;src:url('chunks/assets/font_e3e91cb9c927e76571243ff9.woff2')format("woff");}.fff{font-family:fff;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dd21e82f686ead7436054aeb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.894531;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:ff11;src:url('chunks/assets/font_2d464390e1998d5662a24448.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.752441;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:ff12;src:url('chunks/assets/font_b96458c43646fa0816d07efc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.026855;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060000px;}
.v2{vertical-align:6.060000px;}
.ls21{letter-spacing:-10.860000px;}
.ls15{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.336000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.192000px;}
.ls9{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.384000px;}
.ls1c{letter-spacing:0.468000px;}
.lse{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.750000px;}
.ls1d{letter-spacing:0.762000px;}
.lsa{letter-spacing:0.768000px;}
.ls1f{letter-spacing:0.840000px;}
.ls7{letter-spacing:0.948000px;}
.ls1e{letter-spacing:1.500000px;}
.ls11{letter-spacing:1.620000px;}
.ls18{letter-spacing:18.000000px;}
.ls19{letter-spacing:19.722000px;}
.ls12{letter-spacing:33.984000px;}
.ls10{letter-spacing:44.484000px;}
.ls4{letter-spacing:846.450000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws12{word-spacing:-66.000000px;}
.ws5{word-spacing:-61.537500px;}
.ws0{word-spacing:-27.000000px;}
.wsd{word-spacing:-18.552000px;}
.ws13{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.192000px;}
.ws8{word-spacing:-18.060000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.664000px;}
.wsa{word-spacing:-17.604000px;}
.ws10{word-spacing:-17.460000px;}
.wsf{word-spacing:-17.400000px;}
.ws14{word-spacing:-17.262000px;}
.ws11{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.250000px;}
.ws3{word-spacing:-12.000000px;}
.ws15{word-spacing:-7.140000px;}
.wse{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-15.192000px;}
._9{margin-left:-13.464000px;}
._7{margin-left:-11.088000px;}
._6{margin-left:-7.806000px;}
._a{margin-left:-6.696000px;}
._b{margin-left:-5.472000px;}
._5{margin-left:-4.176000px;}
._8{margin-left:-2.808000px;}
._1{margin-left:-1.512000px;}
._0{width:1.224000px;}
._2{width:2.310000px;}
._3{width:3.342000px;}
._c{width:6.720000px;}
._4{width:20.070000px;}
.fc6{color:rgb(6,6,7);}
.fc5{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(55,65,81);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:6.000000px;}
.fs8{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:246.150000px;}
.fsb{font-size:288.150000px;}
.y0{bottom:0.000000px;}
.yea{bottom:9.000000px;}
.y172{bottom:9.030000px;}
.ydd{bottom:9.045000px;}
.y167{bottom:9.360000px;}
.y15d{bottom:9.375000px;}
.y150{bottom:10.125000px;}
.y157{bottom:10.485000px;}
.y152{bottom:10.500000px;}
.y154{bottom:10.530000px;}
.y162{bottom:12.375000px;}
.y14e{bottom:12.750000px;}
.y26{bottom:14.250000px;}
.y159{bottom:16.500000px;}
.y16b{bottom:24.000000px;}
.y170{bottom:24.030000px;}
.y15e{bottom:24.375000px;}
.y16d{bottom:24.750000px;}
.y160{bottom:27.375000px;}
.y14c{bottom:27.795000px;}
.ye9{bottom:36.375000px;}
.yf3{bottom:36.405000px;}
.ydc{bottom:36.420000px;}
.y15c{bottom:39.000000px;}
.y16c{bottom:39.030000px;}
.y165{bottom:39.405000px;}
.y171{bottom:39.780000px;}
.y168{bottom:40.155000px;}
.y161{bottom:42.375000px;}
.y14d{bottom:42.420000px;}
.y163{bottom:43.125000px;}
.y16f{bottom:54.030000px;}
.y2{bottom:59.250000px;}
.ydb{bottom:63.780000px;}
.y166{bottom:69.030000px;}
.y117{bottom:111.787500px;}
.y24{bottom:112.537500px;}
.yd3{bottom:113.287500px;}
.y149{bottom:115.162500px;}
.y12f{bottom:119.662500px;}
.y186{bottom:121.912500px;}
.y67{bottom:125.662500px;}
.y84{bottom:129.412500px;}
.y23{bottom:134.287500px;}
.y116{bottom:135.037500px;}
.y148{bottom:142.537500px;}
.yd2{bottom:143.287500px;}
.yd9{bottom:144.037500px;}
.y12e{bottom:149.287500px;}
.y185{bottom:151.530000px;}
.y19b{bottom:154.905000px;}
.y22{bottom:155.280000px;}
.y66{bottom:155.670000px;}
.y83{bottom:159.045000px;}
.y46{bottom:162.795000px;}
.y9c{bottom:166.545000px;}
.yae{bottom:166.920000px;}
.y147{bottom:169.920000px;}
.yd1{bottom:172.920000px;}
.yd8{bottom:174.045000px;}
.y21{bottom:180.420000px;}
.y19a{bottom:180.795000px;}
.y65{bottom:185.280000px;}
.y82{bottom:189.030000px;}
.y12d{bottom:194.295000px;}
.y9b{bottom:196.545000px;}
.yad{bottom:196.920000px;}
.y146{bottom:197.325000px;}
.yb5{bottom:200.700000px;}
.ye7{bottom:202.530000px;}
.yd0{bottom:202.950000px;}
.yd7{bottom:204.075000px;}
.y199{bottom:206.700000px;}
.y45{bottom:207.825000px;}
.y106{bottom:214.950000px;}
.y64{bottom:215.325000px;}
.y20{bottom:216.450000px;}
.y15a{bottom:221.325000px;}
.y12c{bottom:224.325000px;}
.y145{bottom:224.700000px;}
.y9a{bottom:226.200000px;}
.y184{bottom:226.575000px;}
.yac{bottom:226.950000px;}
.ye6{bottom:229.950000px;}
.y81{bottom:230.325000px;}
.ycf{bottom:232.950000px;}
.yd6{bottom:233.700000px;}
.y44{bottom:237.450000px;}
.y115{bottom:241.200000px;}
.y105{bottom:244.950000px;}
.y63{bottom:245.325000px;}
.y1f{bottom:246.450000px;}
.y198{bottom:247.950000px;}
.yb4{bottom:252.450000px;}
.y12b{bottom:253.950000px;}
.y144{bottom:254.325000px;}
.y99{bottom:256.200000px;}
.yab{bottom:256.575000px;}
.ye5{bottom:257.325000px;}
.yce{bottom:262.575000px;}
.y43{bottom:267.450000px;}
.y113{bottom:270.825000px;}
.y197{bottom:273.825000px;}
.y62{bottom:274.950000px;}
.yd5{bottom:275.325000px;}
.y1e{bottom:276.075000px;}
.y114{bottom:276.825000px;}
.y80{bottom:282.450000px;}
.y12a{bottom:283.950000px;}
.ye4{bottom:284.700000px;}
.y98{bottom:286.200000px;}
.yaa{bottom:286.575000px;}
.ycd{bottom:292.575000px;}
.y17a{bottom:292.950000px;}
.y42{bottom:297.450000px;}
.y196{bottom:299.700000px;}
.y112{bottom:300.825000px;}
.y104{bottom:304.575000px;}
.y61{bottom:304.950000px;}
.y1d{bottom:306.075000px;}
.ye3{bottom:312.075000px;}
.y7f{bottom:312.450000px;}
.y129{bottom:313.950000px;}
.ya9{bottom:316.200000px;}
.ycc{bottom:322.575000px;}
.y41{bottom:327.105000px;}
.y97{bottom:327.480000px;}
.y111{bottom:330.855000px;}
.y103{bottom:334.605000px;}
.y60{bottom:334.995000px;}
.y1c{bottom:336.120000px;}
.y158{bottom:339.495000px;}
.y195{bottom:340.605000px;}
.ye2{bottom:342.105000px;}
.y7e{bottom:342.120000px;}
.y128{bottom:343.620000px;}
.y183{bottom:345.870000px;}
.ya8{bottom:346.245000px;}
.ycb{bottom:352.245000px;}
.y179{bottom:352.620000px;}
.yed{bottom:355.980000px;}
.y40{bottom:357.120000px;}
.yde{bottom:360.495000px;}
.y5f{bottom:364.605000px;}
.y1b{bottom:365.745000px;}
.y7d{bottom:372.120000px;}
.y127{bottom:373.620000px;}
.y156{bottom:373.995000px;}
.ye1{bottom:374.730000px;}
.y102{bottom:375.870000px;}
.ya7{bottom:376.245000px;}
.y96{bottom:379.245000px;}
.y178{bottom:379.995000px;}
.y194{bottom:381.855000px;}
.yca{bottom:382.245000px;}
.yec{bottom:383.355000px;}
.y3f{bottom:386.745000px;}
.y110{bottom:390.495000px;}
.yb3{bottom:401.745000px;}
.y7c{bottom:402.120000px;}
.y126{bottom:403.620000px;}
.y182{bottom:405.870000px;}
.y177{bottom:407.370000px;}
.ye0{bottom:407.730000px;}
.y193{bottom:407.745000px;}
.y155{bottom:408.870000px;}
.y95{bottom:409.245000px;}
.y5e{bottom:409.620000px;}
.yeb{bottom:410.730000px;}
.y1a{bottom:410.745000px;}
.y3e{bottom:416.745000px;}
.yf2{bottom:417.870000px;}
.yc9{bottom:423.495000px;}
.y101{bottom:427.995000px;}
.ya6{bottom:431.370000px;}
.y7b{bottom:431.745000px;}
.y125{bottom:433.245000px;}
.y192{bottom:433.620000px;}
.y176{bottom:434.745000px;}
.y181{bottom:435.495000px;}
.ydf{bottom:438.105000px;}
.y94{bottom:439.245000px;}
.y5d{bottom:439.620000px;}
.y19{bottom:440.370000px;}
.y153{bottom:443.370000px;}
.y3d{bottom:446.745000px;}
.y100{bottom:457.650000px;}
.ya5{bottom:461.400000px;}
.y7a{bottom:461.775000px;}
.y175{bottom:462.150000px;}
.y124{bottom:463.275000px;}
.y93{bottom:468.900000px;}
.y5c{bottom:469.275000px;}
.y18{bottom:470.400000px;}
.y191{bottom:474.525000px;}
.yf1{bottom:475.275000px;}
.yc8{bottom:475.650000px;}
.y3c{bottom:476.400000px;}
.y135{bottom:477.150000px;}
.y151{bottom:478.275000px;}
.y180{bottom:480.525000px;}
.y174{bottom:489.525000px;}
.y79{bottom:491.400000px;}
.y123{bottom:492.900000px;}
.y92{bottom:498.900000px;}
.y5b{bottom:499.275000px;}
.y17{bottom:500.400000px;}
.y190{bottom:500.775000px;}
.yc7{bottom:505.275000px;}
.y3b{bottom:506.400000px;}
.y134{bottom:506.775000px;}
.yff{bottom:510.150000px;}
.y173{bottom:511.650000px;}
.y14f{bottom:513.150000px;}
.y78{bottom:521.400000px;}
.y10f{bottom:528.525000px;}
.y5a{bottom:528.900000px;}
.y16{bottom:530.025000px;}
.yf0{bottom:532.650000px;}
.yc6{bottom:535.275000px;}
.ya4{bottom:536.025000px;}
.y3a{bottom:536.400000px;}
.y122{bottom:537.900000px;}
.yfe{bottom:540.150000px;}
.y18f{bottom:541.650000px;}
.y14b{bottom:547.650000px;}
.y77{bottom:551.400000px;}
.y91{bottom:558.525000px;}
.y59{bottom:558.900000px;}
.y15{bottom:560.025000px;}
.y133{bottom:563.775000px;}
.y1ad{bottom:564.150000px;}
.yc5{bottom:565.275000px;}
.y39{bottom:566.025000px;}
.yb2{bottom:566.400000px;}
.y18e{bottom:567.525000px;}
.y121{bottom:567.900000px;}
.yfd{bottom:569.775000px;}
.y17f{bottom:570.150000px;}
.y76{bottom:581.070000px;}
.y90{bottom:588.570000px;}
.y58{bottom:588.945000px;}
.y14{bottom:590.070000px;}
.y132{bottom:591.195000px;}
.y1ac{bottom:594.195000px;}
.yc4{bottom:594.945000px;}
.y38{bottom:596.070000px;}
.y120{bottom:597.570000px;}
.yfc{bottom:599.820000px;}
.y18d{bottom:608.445000px;}
.y75{bottom:611.070000px;}
.y10e{bottom:618.195000px;}
.y57{bottom:618.570000px;}
.y13{bottom:619.695000px;}
.y1ab{bottom:624.195000px;}
.yc3{bottom:624.945000px;}
.yb1{bottom:626.070000px;}
.y11f{bottom:627.570000px;}
.yfb{bottom:629.820000px;}
.y18c{bottom:634.695000px;}
.y37{bottom:641.070000px;}
.y131{bottom:645.945000px;}
.yef{bottom:647.445000px;}
.y8f{bottom:648.195000px;}
.y56{bottom:648.570000px;}
.y12{bottom:649.695000px;}
.ya3{bottom:655.695000px;}
.y74{bottom:656.070000px;}
.y11e{bottom:657.570000px;}
.yc2{bottom:658.695000px;}
.yfa{bottom:659.445000px;}
.y17e{bottom:659.820000px;}
.y18b{bottom:660.570000px;}
.y1aa{bottom:665.445000px;}
.y130{bottom:668.070000px;}
.y36{bottom:670.695000px;}
.y14a{bottom:674.820000px;}
.y8e{bottom:678.195000px;}
.y55{bottom:678.570000px;}
.y11{bottom:679.695000px;}
.y73{bottom:685.695000px;}
.y143{bottom:686.445000px;}
.y11d{bottom:687.195000px;}
.yf9{bottom:689.445000px;}
.yc1{bottom:690.945000px;}
.y1a9{bottom:691.320000px;}
.y16e{bottom:692.445000px;}
.y35{bottom:700.725000px;}
.y18a{bottom:701.475000px;}
.yee{bottom:704.850000px;}
.y54{bottom:708.225000px;}
.y10{bottom:709.350000px;}
.y72{bottom:715.725000px;}
.y142{bottom:716.475000px;}
.y11c{bottom:717.225000px;}
.yf8{bottom:719.475000px;}
.yc0{bottom:724.725000px;}
.y189{bottom:727.350000px;}
.y10d{bottom:730.350000px;}
.y34{bottom:730.725000px;}
.y1a8{bottom:732.225000px;}
.y8d{bottom:737.850000px;}
.y53{bottom:738.225000px;}
.yf{bottom:739.350000px;}
.ya2{bottom:745.350000px;}
.y71{bottom:745.725000px;}
.y141{bottom:746.475000px;}
.y11b{bottom:747.225000px;}
.yf7{bottom:749.100000px;}
.y17d{bottom:749.475000px;}
.y188{bottom:753.600000px;}
.y1a7{bottom:758.475000px;}
.y33{bottom:760.350000px;}
.ybf{bottom:760.725000px;}
.ye8{bottom:762.225000px;}
.y8c{bottom:767.850000px;}
.y52{bottom:768.225000px;}
.ye{bottom:769.350000px;}
.y70{bottom:775.350000px;}
.y140{bottom:776.100000px;}
.y11a{bottom:776.850000px;}
.yf6{bottom:779.100000px;}
.y16a{bottom:788.850000px;}
.y32{bottom:790.350000px;}
.ybe{bottom:792.975000px;}
.y187{bottom:794.475000px;}
.y51{bottom:797.850000px;}
.yd{bottom:798.975000px;}
.y1a6{bottom:799.350000px;}
.y6f{bottom:805.350000px;}
.y17c{bottom:809.100000px;}
.y119{bottom:818.475000px;}
.yda{bottom:819.600000px;}
.y10c{bottom:819.975000px;}
.y31{bottom:820.350000px;}
.ybd{bottom:822.600000px;}
.y13f{bottom:824.100000px;}
.y1a5{bottom:825.225000px;}
.y8b{bottom:827.505000px;}
.yc{bottom:829.005000px;}
.yf5{bottom:831.645000px;}
.ya1{bottom:835.020000px;}
.yb0{bottom:835.380000px;}
.y17b{bottom:839.145000px;}
.y50{bottom:842.880000px;}
.y25{bottom:849.630000px;}
.y30{bottom:850.005000px;}
.y6e{bottom:850.380000px;}
.y1a4{bottom:851.505000px;}
.ybc{bottom:852.645000px;}
.y13e{bottom:854.130000px;}
.y169{bottom:855.255000px;}
.y8a{bottom:857.505000px;}
.yb{bottom:858.645000px;}
.y118{bottom:859.395000px;}
.yf4{bottom:861.255000px;}
.yaf{bottom:865.005000px;}
.y10b{bottom:872.505000px;}
.y4f{bottom:872.895000px;}
.y6d{bottom:880.005000px;}
.ybb{bottom:882.630000px;}
.y13d{bottom:883.755000px;}
.y89{bottom:887.130000px;}
.y1a3{bottom:888.255000px;}
.ya{bottom:890.505000px;}
.y2f{bottom:895.005000px;}
.y10a{bottom:902.130000px;}
.y4e{bottom:902.505000px;}
.ya0{bottom:909.630000px;}
.y6c{bottom:910.005000px;}
.yba{bottom:912.255000px;}
.y13c{bottom:913.755000px;}
.y88{bottom:917.130000px;}
.y1a2{bottom:918.255000px;}
.y164{bottom:921.645000px;}
.y2e{bottom:924.630000px;}
.yd4{bottom:925.005000px;}
.y109{bottom:932.130000px;}
.y4d{bottom:932.505000px;}
.y9{bottom:935.130000px;}
.y9f{bottom:939.630000px;}
.y6b{bottom:940.005000px;}
.y13b{bottom:943.755000px;}
.yb9{bottom:946.380000px;}
.y87{bottom:947.130000px;}
.y1a1{bottom:947.880000px;}
.y2d{bottom:954.675000px;}
.y108{bottom:962.175000px;}
.y4c{bottom:962.550000px;}
.y6a{bottom:969.675000px;}
.y13a{bottom:973.425000px;}
.y86{bottom:976.800000px;}
.yb8{bottom:978.300000px;}
.y8{bottom:981.675000px;}
.y2c{bottom:984.675000px;}
.y1a0{bottom:989.550000px;}
.y107{bottom:991.800000px;}
.y4b{bottom:992.175000px;}
.y9e{bottom:999.300000px;}
.y139{bottom:1003.425000px;}
.y85{bottom:1006.800000px;}
.yb7{bottom:1008.300000px;}
.y69{bottom:1010.925000px;}
.y2b{bottom:1014.300000px;}
.y19f{bottom:1015.425000px;}
.y15f{bottom:1018.050000px;}
.y4a{bottom:1022.175000px;}
.y9d{bottom:1029.300000px;}
.y138{bottom:1033.050000px;}
.y5{bottom:1034.550000px;}
.y7{bottom:1040.550000px;}
.y19e{bottom:1041.300000px;}
.yb6{bottom:1042.050000px;}
.y6{bottom:1044.300000px;}
.y49{bottom:1051.800000px;}
.y68{bottom:1052.175000px;}
.y137{bottom:1063.050000px;}
.y2a{bottom:1074.300000px;}
.y4{bottom:1079.580000px;}
.y19d{bottom:1082.205000px;}
.y15b{bottom:1090.830000px;}
.y136{bottom:1093.080000px;}
.y48{bottom:1093.455000px;}
.y29{bottom:1103.955000px;}
.y19c{bottom:1108.455000px;}
.y3{bottom:1124.205000px;}
.y28{bottom:1133.955000px;}
.y47{bottom:1134.330000px;}
.y27{bottom:1188.330000px;}
.y1{bottom:1195.830000px;}
.h19{height:5.203125px;}
.h1b{height:31.875000px;}
.h1c{height:32.250000px;}
.h1d{height:32.287500px;}
.h1f{height:34.505859px;}
.h18{height:37.160156px;}
.h2{height:39.313477px;}
.h6{height:41.625000px;}
.hb{height:42.468750px;}
.h1e{height:44.625000px;}
.ha{height:48.049805px;}
.hd{height:53.085938px;}
.h16{height:54.750000px;}
.h15{height:54.785156px;}
.h17{height:54.787500px;}
.h13{height:57.234375px;}
.h11{height:58.394531px;}
.hc{height:59.145938px;}
.h20{height:59.625000px;}
.h23{height:59.662500px;}
.h5{height:61.048828px;}
.h8{height:62.437500px;}
.h10{height:63.000000px;}
.h3{height:63.703125px;}
.he{height:64.500000px;}
.h21{height:66.037500px;}
.h1a{height:66.412500px;}
.h7{height:72.843750px;}
.h9{height:74.320312px;}
.h12{height:82.162500px;}
.h22{height:89.662500px;}
.h4{height:93.656250px;}
.hf{height:254.945215px;}
.h14{height:456.480000px;}
.h0{height:1262.625000px;}
.h1{height:1263.000000px;}
.w3{width:39.787500px;}
.w9{width:62.625000px;}
.w8{width:70.912500px;}
.we{width:72.787500px;}
.w6{width:83.662500px;}
.w7{width:94.162500px;}
.wa{width:96.037500px;}
.w4{width:103.950000px;}
.w5{width:105.037500px;}
.w10{width:115.912500px;}
.w12{width:124.537500px;}
.wb{width:125.287500px;}
.wf{width:126.037500px;}
.wc{width:136.537500px;}
.w11{width:150.450000px;}
.wd{width:158.325000px;}
.w13{width:180.450000px;}
.w2{width:893.249973px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3a{left:-3.375000px;}
.x0{left:0.000000px;}
.x9{left:2.250000px;}
.x1b{left:7.162500px;}
.x8{left:105.787500px;}
.x1{left:108.037487px;}
.x2a{left:111.037487px;}
.x7{left:114.037487px;}
.x1a{left:125.287500px;}
.x2f{left:131.287487px;}
.x30{left:133.199987px;}
.x11{left:135.074987px;}
.x2b{left:136.574987px;}
.x5{left:145.574987px;}
.x2c{left:154.574987px;}
.x2{left:160.199973px;}
.x12{left:162.074987px;}
.x26{left:167.324987px;}
.x3{left:168.824987px;}
.x13{left:189.074987px;}
.x14{left:216.074987px;}
.x31{left:219.824987px;}
.xc{left:227.369987px;}
.x1c{left:230.745000px;}
.xd{left:244.244987px;}
.x23{left:258.869987px;}
.x33{left:261.120000px;}
.xe{left:265.244987px;}
.x17{left:266.369987px;}
.x37{left:284.370000px;}
.x24{left:297.869987px;}
.xa{left:306.869987px;}
.x28{left:314.399987px;}
.xf{left:318.149987px;}
.x32{left:321.899987px;}
.x6{left:324.149987px;}
.x25{left:328.274987px;}
.x1d{left:337.275000px;}
.x2d{left:345.149987px;}
.x15{left:350.399987px;}
.x27{left:363.899987px;}
.x16{left:376.274987px;}
.x22{left:378.149987px;}
.x10{left:381.524987px;}
.x18{left:386.024987px;}
.x4{left:387.524987px;}
.x3c{left:389.399987px;}
.xb{left:392.024987px;}
.x3d{left:396.149987px;}
.x34{left:399.150000px;}
.x19{left:404.819987px;}
.x1e{left:422.445000px;}
.x38{left:435.570000px;}
.x1f{left:518.100000px;}
.x35{left:558.975000px;}
.x39{left:560.850000px;}
.x20{left:590.520000px;}
.x36{left:633.270000px;}
.x21{left:654.645000px;}
.x2e{left:739.424987px;}
.x3b{left:751.799987px;}
.x29{left:770.204987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720000pt;}
.v2{vertical-align:5.386667pt;}
.ls21{letter-spacing:-9.653333pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.298667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.170667pt;}
.ls9{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls1c{letter-spacing:0.416000pt;}
.lse{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.666667pt;}
.ls1d{letter-spacing:0.677333pt;}
.lsa{letter-spacing:0.682667pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls7{letter-spacing:0.842667pt;}
.ls1e{letter-spacing:1.333333pt;}
.ls11{letter-spacing:1.440000pt;}
.ls18{letter-spacing:16.000000pt;}
.ls19{letter-spacing:17.530667pt;}
.ls12{letter-spacing:30.208000pt;}
.ls10{letter-spacing:39.541333pt;}
.ls4{letter-spacing:752.400000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws12{word-spacing:-58.666667pt;}
.ws5{word-spacing:-54.700000pt;}
.ws0{word-spacing:-24.000000pt;}
.wsd{word-spacing:-16.490667pt;}
.ws13{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.170667pt;}
.ws8{word-spacing:-16.053333pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.701333pt;}
.wsa{word-spacing:-15.648000pt;}
.ws10{word-spacing:-15.520000pt;}
.wsf{word-spacing:-15.466667pt;}
.ws14{word-spacing:-15.344000pt;}
.ws11{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.666667pt;}
.ws3{word-spacing:-10.666667pt;}
.ws15{word-spacing:-6.346667pt;}
.wse{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-13.504000pt;}
._9{margin-left:-11.968000pt;}
._7{margin-left:-9.856000pt;}
._6{margin-left:-6.938667pt;}
._a{margin-left:-5.952000pt;}
._b{margin-left:-4.864000pt;}
._5{margin-left:-3.712000pt;}
._8{margin-left:-2.496000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.088000pt;}
._2{width:2.053333pt;}
._3{width:2.970667pt;}
._c{width:5.973333pt;}
._4{width:17.840000pt;}
.fsd{font-size:5.333333pt;}
.fs8{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:218.800000pt;}
.fsb{font-size:256.133333pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:8.000000pt;}
.y172{bottom:8.026667pt;}
.ydd{bottom:8.040000pt;}
.y167{bottom:8.320000pt;}
.y15d{bottom:8.333333pt;}
.y150{bottom:9.000000pt;}
.y157{bottom:9.320000pt;}
.y152{bottom:9.333333pt;}
.y154{bottom:9.360000pt;}
.y162{bottom:11.000000pt;}
.y14e{bottom:11.333333pt;}
.y26{bottom:12.666667pt;}
.y159{bottom:14.666667pt;}
.y16b{bottom:21.333333pt;}
.y170{bottom:21.360000pt;}
.y15e{bottom:21.666667pt;}
.y16d{bottom:22.000000pt;}
.y160{bottom:24.333333pt;}
.y14c{bottom:24.706667pt;}
.ye9{bottom:32.333333pt;}
.yf3{bottom:32.360000pt;}
.ydc{bottom:32.373333pt;}
.y15c{bottom:34.666667pt;}
.y16c{bottom:34.693333pt;}
.y165{bottom:35.026667pt;}
.y171{bottom:35.360000pt;}
.y168{bottom:35.693333pt;}
.y161{bottom:37.666667pt;}
.y14d{bottom:37.706667pt;}
.y163{bottom:38.333333pt;}
.y16f{bottom:48.026667pt;}
.y2{bottom:52.666667pt;}
.ydb{bottom:56.693333pt;}
.y166{bottom:61.360000pt;}
.y117{bottom:99.366667pt;}
.y24{bottom:100.033333pt;}
.yd3{bottom:100.700000pt;}
.y149{bottom:102.366667pt;}
.y12f{bottom:106.366667pt;}
.y186{bottom:108.366667pt;}
.y67{bottom:111.700000pt;}
.y84{bottom:115.033333pt;}
.y23{bottom:119.366667pt;}
.y116{bottom:120.033333pt;}
.y148{bottom:126.700000pt;}
.yd2{bottom:127.366667pt;}
.yd9{bottom:128.033333pt;}
.y12e{bottom:132.700000pt;}
.y185{bottom:134.693333pt;}
.y19b{bottom:137.693333pt;}
.y22{bottom:138.026667pt;}
.y66{bottom:138.373333pt;}
.y83{bottom:141.373333pt;}
.y46{bottom:144.706667pt;}
.y9c{bottom:148.040000pt;}
.yae{bottom:148.373333pt;}
.y147{bottom:151.040000pt;}
.yd1{bottom:153.706667pt;}
.yd8{bottom:154.706667pt;}
.y21{bottom:160.373333pt;}
.y19a{bottom:160.706667pt;}
.y65{bottom:164.693333pt;}
.y82{bottom:168.026667pt;}
.y12d{bottom:172.706667pt;}
.y9b{bottom:174.706667pt;}
.yad{bottom:175.040000pt;}
.y146{bottom:175.400000pt;}
.yb5{bottom:178.400000pt;}
.ye7{bottom:180.026667pt;}
.yd0{bottom:180.400000pt;}
.yd7{bottom:181.400000pt;}
.y199{bottom:183.733333pt;}
.y45{bottom:184.733333pt;}
.y106{bottom:191.066667pt;}
.y64{bottom:191.400000pt;}
.y20{bottom:192.400000pt;}
.y15a{bottom:196.733333pt;}
.y12c{bottom:199.400000pt;}
.y145{bottom:199.733333pt;}
.y9a{bottom:201.066667pt;}
.y184{bottom:201.400000pt;}
.yac{bottom:201.733333pt;}
.ye6{bottom:204.400000pt;}
.y81{bottom:204.733333pt;}
.ycf{bottom:207.066667pt;}
.yd6{bottom:207.733333pt;}
.y44{bottom:211.066667pt;}
.y115{bottom:214.400000pt;}
.y105{bottom:217.733333pt;}
.y63{bottom:218.066667pt;}
.y1f{bottom:219.066667pt;}
.y198{bottom:220.400000pt;}
.yb4{bottom:224.400000pt;}
.y12b{bottom:225.733333pt;}
.y144{bottom:226.066667pt;}
.y99{bottom:227.733333pt;}
.yab{bottom:228.066667pt;}
.ye5{bottom:228.733333pt;}
.yce{bottom:233.400000pt;}
.y43{bottom:237.733333pt;}
.y113{bottom:240.733333pt;}
.y197{bottom:243.400000pt;}
.y62{bottom:244.400000pt;}
.yd5{bottom:244.733333pt;}
.y1e{bottom:245.400000pt;}
.y114{bottom:246.066667pt;}
.y80{bottom:251.066667pt;}
.y12a{bottom:252.400000pt;}
.ye4{bottom:253.066667pt;}
.y98{bottom:254.400000pt;}
.yaa{bottom:254.733333pt;}
.ycd{bottom:260.066667pt;}
.y17a{bottom:260.400000pt;}
.y42{bottom:264.400000pt;}
.y196{bottom:266.400000pt;}
.y112{bottom:267.400000pt;}
.y104{bottom:270.733333pt;}
.y61{bottom:271.066667pt;}
.y1d{bottom:272.066667pt;}
.ye3{bottom:277.400000pt;}
.y7f{bottom:277.733333pt;}
.y129{bottom:279.066667pt;}
.ya9{bottom:281.066667pt;}
.ycc{bottom:286.733333pt;}
.y41{bottom:290.760000pt;}
.y97{bottom:291.093333pt;}
.y111{bottom:294.093333pt;}
.y103{bottom:297.426667pt;}
.y60{bottom:297.773333pt;}
.y1c{bottom:298.773333pt;}
.y158{bottom:301.773333pt;}
.y195{bottom:302.760000pt;}
.ye2{bottom:304.093333pt;}
.y7e{bottom:304.106667pt;}
.y128{bottom:305.440000pt;}
.y183{bottom:307.440000pt;}
.ya8{bottom:307.773333pt;}
.ycb{bottom:313.106667pt;}
.y179{bottom:313.440000pt;}
.yed{bottom:316.426667pt;}
.y40{bottom:317.440000pt;}
.yde{bottom:320.440000pt;}
.y5f{bottom:324.093333pt;}
.y1b{bottom:325.106667pt;}
.y7d{bottom:330.773333pt;}
.y127{bottom:332.106667pt;}
.y156{bottom:332.440000pt;}
.ye1{bottom:333.093333pt;}
.y102{bottom:334.106667pt;}
.ya7{bottom:334.440000pt;}
.y96{bottom:337.106667pt;}
.y178{bottom:337.773333pt;}
.y194{bottom:339.426667pt;}
.yca{bottom:339.773333pt;}
.yec{bottom:340.760000pt;}
.y3f{bottom:343.773333pt;}
.y110{bottom:347.106667pt;}
.yb3{bottom:357.106667pt;}
.y7c{bottom:357.440000pt;}
.y126{bottom:358.773333pt;}
.y182{bottom:360.773333pt;}
.y177{bottom:362.106667pt;}
.ye0{bottom:362.426667pt;}
.y193{bottom:362.440000pt;}
.y155{bottom:363.440000pt;}
.y95{bottom:363.773333pt;}
.y5e{bottom:364.106667pt;}
.yeb{bottom:365.093333pt;}
.y1a{bottom:365.106667pt;}
.y3e{bottom:370.440000pt;}
.yf2{bottom:371.440000pt;}
.yc9{bottom:376.440000pt;}
.y101{bottom:380.440000pt;}
.ya6{bottom:383.440000pt;}
.y7b{bottom:383.773333pt;}
.y125{bottom:385.106667pt;}
.y192{bottom:385.440000pt;}
.y176{bottom:386.440000pt;}
.y181{bottom:387.106667pt;}
.ydf{bottom:389.426667pt;}
.y94{bottom:390.440000pt;}
.y5d{bottom:390.773333pt;}
.y19{bottom:391.440000pt;}
.y153{bottom:394.106667pt;}
.y3d{bottom:397.106667pt;}
.y100{bottom:406.800000pt;}
.ya5{bottom:410.133333pt;}
.y7a{bottom:410.466667pt;}
.y175{bottom:410.800000pt;}
.y124{bottom:411.800000pt;}
.y93{bottom:416.800000pt;}
.y5c{bottom:417.133333pt;}
.y18{bottom:418.133333pt;}
.y191{bottom:421.800000pt;}
.yf1{bottom:422.466667pt;}
.yc8{bottom:422.800000pt;}
.y3c{bottom:423.466667pt;}
.y135{bottom:424.133333pt;}
.y151{bottom:425.133333pt;}
.y180{bottom:427.133333pt;}
.y174{bottom:435.133333pt;}
.y79{bottom:436.800000pt;}
.y123{bottom:438.133333pt;}
.y92{bottom:443.466667pt;}
.y5b{bottom:443.800000pt;}
.y17{bottom:444.800000pt;}
.y190{bottom:445.133333pt;}
.yc7{bottom:449.133333pt;}
.y3b{bottom:450.133333pt;}
.y134{bottom:450.466667pt;}
.yff{bottom:453.466667pt;}
.y173{bottom:454.800000pt;}
.y14f{bottom:456.133333pt;}
.y78{bottom:463.466667pt;}
.y10f{bottom:469.800000pt;}
.y5a{bottom:470.133333pt;}
.y16{bottom:471.133333pt;}
.yf0{bottom:473.466667pt;}
.yc6{bottom:475.800000pt;}
.ya4{bottom:476.466667pt;}
.y3a{bottom:476.800000pt;}
.y122{bottom:478.133333pt;}
.yfe{bottom:480.133333pt;}
.y18f{bottom:481.466667pt;}
.y14b{bottom:486.800000pt;}
.y77{bottom:490.133333pt;}
.y91{bottom:496.466667pt;}
.y59{bottom:496.800000pt;}
.y15{bottom:497.800000pt;}
.y133{bottom:501.133333pt;}
.y1ad{bottom:501.466667pt;}
.yc5{bottom:502.466667pt;}
.y39{bottom:503.133333pt;}
.yb2{bottom:503.466667pt;}
.y18e{bottom:504.466667pt;}
.y121{bottom:504.800000pt;}
.yfd{bottom:506.466667pt;}
.y17f{bottom:506.800000pt;}
.y76{bottom:516.506667pt;}
.y90{bottom:523.173333pt;}
.y58{bottom:523.506667pt;}
.y14{bottom:524.506667pt;}
.y132{bottom:525.506667pt;}
.y1ac{bottom:528.173333pt;}
.yc4{bottom:528.840000pt;}
.y38{bottom:529.840000pt;}
.y120{bottom:531.173333pt;}
.yfc{bottom:533.173333pt;}
.y18d{bottom:540.840000pt;}
.y75{bottom:543.173333pt;}
.y10e{bottom:549.506667pt;}
.y57{bottom:549.840000pt;}
.y13{bottom:550.840000pt;}
.y1ab{bottom:554.840000pt;}
.yc3{bottom:555.506667pt;}
.yb1{bottom:556.506667pt;}
.y11f{bottom:557.840000pt;}
.yfb{bottom:559.840000pt;}
.y18c{bottom:564.173333pt;}
.y37{bottom:569.840000pt;}
.y131{bottom:574.173333pt;}
.yef{bottom:575.506667pt;}
.y8f{bottom:576.173333pt;}
.y56{bottom:576.506667pt;}
.y12{bottom:577.506667pt;}
.ya3{bottom:582.840000pt;}
.y74{bottom:583.173333pt;}
.y11e{bottom:584.506667pt;}
.yc2{bottom:585.506667pt;}
.yfa{bottom:586.173333pt;}
.y17e{bottom:586.506667pt;}
.y18b{bottom:587.173333pt;}
.y1aa{bottom:591.506667pt;}
.y130{bottom:593.840000pt;}
.y36{bottom:596.173333pt;}
.y14a{bottom:599.840000pt;}
.y8e{bottom:602.840000pt;}
.y55{bottom:603.173333pt;}
.y11{bottom:604.173333pt;}
.y73{bottom:609.506667pt;}
.y143{bottom:610.173333pt;}
.y11d{bottom:610.840000pt;}
.yf9{bottom:612.840000pt;}
.yc1{bottom:614.173333pt;}
.y1a9{bottom:614.506667pt;}
.y16e{bottom:615.506667pt;}
.y35{bottom:622.866667pt;}
.y18a{bottom:623.533333pt;}
.yee{bottom:626.533333pt;}
.y54{bottom:629.533333pt;}
.y10{bottom:630.533333pt;}
.y72{bottom:636.200000pt;}
.y142{bottom:636.866667pt;}
.y11c{bottom:637.533333pt;}
.yf8{bottom:639.533333pt;}
.yc0{bottom:644.200000pt;}
.y189{bottom:646.533333pt;}
.y10d{bottom:649.200000pt;}
.y34{bottom:649.533333pt;}
.y1a8{bottom:650.866667pt;}
.y8d{bottom:655.866667pt;}
.y53{bottom:656.200000pt;}
.yf{bottom:657.200000pt;}
.ya2{bottom:662.533333pt;}
.y71{bottom:662.866667pt;}
.y141{bottom:663.533333pt;}
.y11b{bottom:664.200000pt;}
.yf7{bottom:665.866667pt;}
.y17d{bottom:666.200000pt;}
.y188{bottom:669.866667pt;}
.y1a7{bottom:674.200000pt;}
.y33{bottom:675.866667pt;}
.ybf{bottom:676.200000pt;}
.ye8{bottom:677.533333pt;}
.y8c{bottom:682.533333pt;}
.y52{bottom:682.866667pt;}
.ye{bottom:683.866667pt;}
.y70{bottom:689.200000pt;}
.y140{bottom:689.866667pt;}
.y11a{bottom:690.533333pt;}
.yf6{bottom:692.533333pt;}
.y16a{bottom:701.200000pt;}
.y32{bottom:702.533333pt;}
.ybe{bottom:704.866667pt;}
.y187{bottom:706.200000pt;}
.y51{bottom:709.200000pt;}
.yd{bottom:710.200000pt;}
.y1a6{bottom:710.533333pt;}
.y6f{bottom:715.866667pt;}
.y17c{bottom:719.200000pt;}
.y119{bottom:727.533333pt;}
.yda{bottom:728.533333pt;}
.y10c{bottom:728.866667pt;}
.y31{bottom:729.200000pt;}
.ybd{bottom:731.200000pt;}
.y13f{bottom:732.533333pt;}
.y1a5{bottom:733.533333pt;}
.y8b{bottom:735.560000pt;}
.yc{bottom:736.893333pt;}
.yf5{bottom:739.240000pt;}
.ya1{bottom:742.240000pt;}
.yb0{bottom:742.560000pt;}
.y17b{bottom:745.906667pt;}
.y50{bottom:749.226667pt;}
.y25{bottom:755.226667pt;}
.y30{bottom:755.560000pt;}
.y6e{bottom:755.893333pt;}
.y1a4{bottom:756.893333pt;}
.ybc{bottom:757.906667pt;}
.y13e{bottom:759.226667pt;}
.y169{bottom:760.226667pt;}
.y8a{bottom:762.226667pt;}
.yb{bottom:763.240000pt;}
.y118{bottom:763.906667pt;}
.yf4{bottom:765.560000pt;}
.yaf{bottom:768.893333pt;}
.y10b{bottom:775.560000pt;}
.y4f{bottom:775.906667pt;}
.y6d{bottom:782.226667pt;}
.ybb{bottom:784.560000pt;}
.y13d{bottom:785.560000pt;}
.y89{bottom:788.560000pt;}
.y1a3{bottom:789.560000pt;}
.ya{bottom:791.560000pt;}
.y2f{bottom:795.560000pt;}
.y10a{bottom:801.893333pt;}
.y4e{bottom:802.226667pt;}
.ya0{bottom:808.560000pt;}
.y6c{bottom:808.893333pt;}
.yba{bottom:810.893333pt;}
.y13c{bottom:812.226667pt;}
.y88{bottom:815.226667pt;}
.y1a2{bottom:816.226667pt;}
.y164{bottom:819.240000pt;}
.y2e{bottom:821.893333pt;}
.yd4{bottom:822.226667pt;}
.y109{bottom:828.560000pt;}
.y4d{bottom:828.893333pt;}
.y9{bottom:831.226667pt;}
.y9f{bottom:835.226667pt;}
.y6b{bottom:835.560000pt;}
.y13b{bottom:838.893333pt;}
.yb9{bottom:841.226667pt;}
.y87{bottom:841.893333pt;}
.y1a1{bottom:842.560000pt;}
.y2d{bottom:848.600000pt;}
.y108{bottom:855.266667pt;}
.y4c{bottom:855.600000pt;}
.y6a{bottom:861.933333pt;}
.y13a{bottom:865.266667pt;}
.y86{bottom:868.266667pt;}
.yb8{bottom:869.600000pt;}
.y8{bottom:872.600000pt;}
.y2c{bottom:875.266667pt;}
.y1a0{bottom:879.600000pt;}
.y107{bottom:881.600000pt;}
.y4b{bottom:881.933333pt;}
.y9e{bottom:888.266667pt;}
.y139{bottom:891.933333pt;}
.y85{bottom:894.933333pt;}
.yb7{bottom:896.266667pt;}
.y69{bottom:898.600000pt;}
.y2b{bottom:901.600000pt;}
.y19f{bottom:902.600000pt;}
.y15f{bottom:904.933333pt;}
.y4a{bottom:908.600000pt;}
.y9d{bottom:914.933333pt;}
.y138{bottom:918.266667pt;}
.y5{bottom:919.600000pt;}
.y7{bottom:924.933333pt;}
.y19e{bottom:925.600000pt;}
.yb6{bottom:926.266667pt;}
.y6{bottom:928.266667pt;}
.y49{bottom:934.933333pt;}
.y68{bottom:935.266667pt;}
.y137{bottom:944.933333pt;}
.y2a{bottom:954.933333pt;}
.y4{bottom:959.626667pt;}
.y19d{bottom:961.960000pt;}
.y15b{bottom:969.626667pt;}
.y136{bottom:971.626667pt;}
.y48{bottom:971.960000pt;}
.y29{bottom:981.293333pt;}
.y19c{bottom:985.293333pt;}
.y3{bottom:999.293333pt;}
.y28{bottom:1007.960000pt;}
.y47{bottom:1008.293333pt;}
.y27{bottom:1056.293333pt;}
.y1{bottom:1062.960000pt;}
.h19{height:4.625000pt;}
.h1b{height:28.333333pt;}
.h1c{height:28.666667pt;}
.h1d{height:28.700000pt;}
.h1f{height:30.671875pt;}
.h18{height:33.031250pt;}
.h2{height:34.945312pt;}
.h6{height:37.000000pt;}
.hb{height:37.750000pt;}
.h1e{height:39.666667pt;}
.ha{height:42.710938pt;}
.hd{height:47.187500pt;}
.h16{height:48.666667pt;}
.h15{height:48.697917pt;}
.h17{height:48.700000pt;}
.h13{height:50.875000pt;}
.h11{height:51.906250pt;}
.hc{height:52.574167pt;}
.h20{height:53.000000pt;}
.h23{height:53.033333pt;}
.h5{height:54.265625pt;}
.h8{height:55.500000pt;}
.h10{height:56.000000pt;}
.h3{height:56.625000pt;}
.he{height:57.333333pt;}
.h21{height:58.700000pt;}
.h1a{height:59.033333pt;}
.h7{height:64.750000pt;}
.h9{height:66.062500pt;}
.h12{height:73.033333pt;}
.h22{height:79.700000pt;}
.h4{height:83.250000pt;}
.hf{height:226.617969pt;}
.h14{height:405.760000pt;}
.h0{height:1122.333333pt;}
.h1{height:1122.666667pt;}
.w3{width:35.366667pt;}
.w9{width:55.666667pt;}
.w8{width:63.033333pt;}
.we{width:64.700000pt;}
.w6{width:74.366667pt;}
.w7{width:83.700000pt;}
.wa{width:85.366667pt;}
.w4{width:92.400000pt;}
.w5{width:93.366667pt;}
.w10{width:103.033333pt;}
.w12{width:110.700000pt;}
.wb{width:111.366667pt;}
.wf{width:112.033333pt;}
.wc{width:121.366667pt;}
.w11{width:133.733333pt;}
.wd{width:140.733333pt;}
.w13{width:160.400000pt;}
.w2{width:793.999976pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3a{left:-3.000000pt;}
.x0{left:0.000000pt;}
.x9{left:2.000000pt;}
.x1b{left:6.366667pt;}
.x8{left:94.033333pt;}
.x1{left:96.033322pt;}
.x2a{left:98.699988pt;}
.x7{left:101.366655pt;}
.x1a{left:111.366667pt;}
.x2f{left:116.699988pt;}
.x30{left:118.399988pt;}
.x11{left:120.066655pt;}
.x2b{left:121.399988pt;}
.x5{left:129.399988pt;}
.x2c{left:137.399988pt;}
.x2{left:142.399976pt;}
.x12{left:144.066655pt;}
.x26{left:148.733322pt;}
.x3{left:150.066655pt;}
.x13{left:168.066655pt;}
.x14{left:192.066655pt;}
.x31{left:195.399988pt;}
.xc{left:202.106655pt;}
.x1c{left:205.106667pt;}
.xd{left:217.106655pt;}
.x23{left:230.106655pt;}
.x33{left:232.106667pt;}
.xe{left:235.773322pt;}
.x17{left:236.773322pt;}
.x37{left:252.773333pt;}
.x24{left:264.773322pt;}
.xa{left:272.773322pt;}
.x28{left:279.466655pt;}
.xf{left:282.799988pt;}
.x32{left:286.133322pt;}
.x6{left:288.133322pt;}
.x25{left:291.799988pt;}
.x1d{left:299.800000pt;}
.x2d{left:306.799988pt;}
.x15{left:311.466655pt;}
.x27{left:323.466655pt;}
.x16{left:334.466655pt;}
.x22{left:336.133322pt;}
.x10{left:339.133322pt;}
.x18{left:343.133322pt;}
.x4{left:344.466655pt;}
.x3c{left:346.133322pt;}
.xb{left:348.466655pt;}
.x3d{left:352.133322pt;}
.x34{left:354.800000pt;}
.x19{left:359.839988pt;}
.x1e{left:375.506667pt;}
.x38{left:387.173333pt;}
.x1f{left:460.533333pt;}
.x35{left:496.866667pt;}
.x39{left:498.533333pt;}
.x20{left:524.906667pt;}
.x36{left:562.906667pt;}
.x21{left:581.906667pt;}
.x2e{left:657.266655pt;}
.x3b{left:668.266655pt;}
.x29{left:684.626655pt;}
}




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