
    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_0e85434c38f24bc4d567c097.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_90310a7786ef46b773c456f9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_748149154a521543bec6494d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_a673ad29818cc2223181336e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_e53866670a24c46b7d7d5c7b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_a88f9285811a2efaf1af736c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_73f36c168044f4a0ae335ec0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_3c4f5d2802d003cd1115b7ea.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680176;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v5{vertical-align:-26.640600px;}
.v8{vertical-align:-24.420000px;}
.v3{vertical-align:-22.200000px;}
.v6{vertical-align:-21.090000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v4{vertical-align:21.096000px;}
.v7{vertical-align:24.420000px;}
.v2{vertical-align:26.640000px;}
.ls18{letter-spacing:-20.232000px;}
.ls17{letter-spacing:-7.560000px;}
.ls15{letter-spacing:-7.200000px;}
.ls12{letter-spacing:-6.840000px;}
.ls19{letter-spacing:-5.700000px;}
.lsd{letter-spacing:-2.592000px;}
.ls1a{letter-spacing:-2.223000px;}
.ls5{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.285000px;}
.ls16{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000600px;}
.lsf{letter-spacing:0.043800px;}
.ls13{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.215400px;}
.ls8{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.330000px;}
.ls1c{letter-spacing:0.342000px;}
.ls7{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.570000px;}
.ls1e{letter-spacing:2.880000px;}
.ls0{letter-spacing:3.780000px;}
.ls6{letter-spacing:4.200000px;}
.ls1f{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls1b{letter-spacing:10.080000px;}
.ls2{letter-spacing:10.200000px;}
.ls20{letter-spacing:10.956000px;}
.lsb{letter-spacing:13.680000px;}
.ls10{letter-spacing:38.923200px;}
.ls11{letter-spacing:38.923800px;}
.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;}
}
.ws1{word-spacing:-78.948000px;}
.ws16{word-spacing:-72.000000px;}
.wsc{word-spacing:-48.888000px;}
.ws3{word-spacing:-48.528000px;}
.ws7{word-spacing:-48.168000px;}
.wsb{word-spacing:-47.808000px;}
.ws1e{word-spacing:-44.484000px;}
.ws17{word-spacing:-40.440000px;}
.ws10{word-spacing:-38.988000px;}
.ws9{word-spacing:-38.418000px;}
.wsf{word-spacing:-38.133000px;}
.wsa{word-spacing:-35.928000px;}
.ws0{word-spacing:-32.352000px;}
.ws1f{word-spacing:-31.548000px;}
.ws1b{word-spacing:-28.158000px;}
.ws1a{word-spacing:-27.702000px;}
.ws1c{word-spacing:-22.860000px;}
.ws2{word-spacing:-20.232000px;}
.wse{word-spacing:-19.872000px;}
.ws11{word-spacing:-17.784000px;}
.ws5{word-spacing:-16.860000px;}
.wsd{word-spacing:-16.017000px;}
.ws19{word-spacing:-14.820000px;}
.ws12{word-spacing:-14.079000px;}
.ws13{word-spacing:-12.355200px;}
.ws6{word-spacing:-12.139200px;}
.ws14{word-spacing:-11.923200px;}
.ws18{word-spacing:-11.707200px;}
.ws1d{word-spacing:-11.127600px;}
.ws8{word-spacing:-9.610200px;}
.ws15{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-21.183133px;}
._1c{margin-left:-19.568000px;}
._1a{margin-left:-17.522133px;}
._16{margin-left:-16.320000px;}
._11{margin-left:-14.040000px;}
._1d{margin-left:-11.568000px;}
._5{margin-left:-10.302000px;}
._d{margin-left:-8.688000px;}
._3{margin-left:-6.732000px;}
._f{margin-left:-5.568867px;}
._0{margin-left:-4.200000px;}
._2{margin-left:-2.592000px;}
._4{margin-left:-1.020000px;}
._1{width:1.262667px;}
._6{width:2.757333px;}
._7{width:3.809333px;}
._8{width:5.616000px;}
._9{width:7.128000px;}
._b{width:9.072000px;}
._a{width:10.296000px;}
._12{width:11.637333px;}
._c{width:13.212000px;}
._10{width:14.868000px;}
._19{width:17.568000px;}
._18{width:19.841333px;}
._17{width:22.140000px;}
._14{width:28.080000px;}
._13{width:29.232000px;}
._15{width:38.923200px;}
._e{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.200000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.231200px;}
.y22{bottom:76.337550px;}
.ya1{bottom:140.310000px;}
.y43{bottom:140.310150px;}
.y68{bottom:140.311500px;}
.y21{bottom:140.910150px;}
.y15b{bottom:143.603550px;}
.y136{bottom:144.126750px;}
.y106{bottom:145.585650px;}
.yb1{bottom:145.863000px;}
.yb0{bottom:156.810000px;}
.ya0{bottom:156.811500px;}
.y42{bottom:156.811650px;}
.y15a{bottom:161.603550px;}
.y20{bottom:162.204150px;}
.y67{bottom:162.363000px;}
.y135{bottom:166.032750px;}
.y66{bottom:173.310000px;}
.yaf{bottom:173.311500px;}
.y41{bottom:173.311650px;}
.ycb{bottom:178.585500px;}
.y9f{bottom:178.863000px;}
.ye7{bottom:178.863150px;}
.y159{bottom:179.603550px;}
.y1f{bottom:183.498150px;}
.y134{bottom:187.938750px;}
.ye6{bottom:189.808650px;}
.y9e{bottom:189.810000px;}
.y117{bottom:189.810150px;}
.y65{bottom:189.811500px;}
.y105{bottom:189.811650px;}
.yae{bottom:195.363000px;}
.y40{bottom:195.363150px;}
.y1e{bottom:204.792150px;}
.y3f{bottom:206.310150px;}
.y9d{bottom:206.311500px;}
.y88{bottom:206.311650px;}
.y133{bottom:209.844750px;}
.yad{bottom:211.585500px;}
.y64{bottom:211.863000px;}
.y104{bottom:211.863150px;}
.y158{bottom:215.603550px;}
.y103{bottom:222.810150px;}
.y63{bottom:222.811500px;}
.y3e{bottom:222.811650px;}
.y1d{bottom:226.086150px;}
.yca{bottom:228.008400px;}
.y9c{bottom:228.363000px;}
.y87{bottom:228.363150px;}
.y132{bottom:231.750750px;}
.y157{bottom:233.603550px;}
.y116{bottom:239.310150px;}
.y9b{bottom:239.311500px;}
.y3d{bottom:239.311650px;}
.y62{bottom:244.863000px;}
.ye5{bottom:244.863150px;}
.y1c{bottom:247.380150px;}
.yc9{bottom:249.608400px;}
.y156{bottom:251.603550px;}
.y131{bottom:253.656750px;}
.y9a{bottom:255.811500px;}
.ye4{bottom:255.811650px;}
.y3c{bottom:261.363150px;}
.y86{bottom:261.730500px;}
.y1b{bottom:268.674150px;}
.yc8{bottom:271.208400px;}
.y102{bottom:272.310150px;}
.y130{bottom:275.562750px;}
.y99{bottom:277.863000px;}
.ye3{bottom:277.863150px;}
.y85{bottom:283.924500px;}
.yac{bottom:284.304600px;}
.ye2{bottom:288.808650px;}
.y98{bottom:288.811500px;}
.y101{bottom:288.811650px;}
.y61{bottom:289.202400px;}
.y1a{bottom:289.968150px;}
.yc7{bottom:292.808400px;}
.y12f{bottom:297.468750px;}
.ye1{bottom:305.310150px;}
.y3b{bottom:305.904600px;}
.y84{bottom:306.118500px;}
.y155{bottom:308.303550px;}
.y60{bottom:310.190400px;}
.y97{bottom:310.863000px;}
.y100{bottom:310.863150px;}
.y19{bottom:311.262150px;}
.yc6{bottom:314.408400px;}
.y12e{bottom:319.374750px;}
.y115{bottom:319.844550px;}
.ye0{bottom:321.811650px;}
.y3a{bottom:327.504600px;}
.y83{bottom:328.348500px;}
.y5f{bottom:331.196400px;}
.y18{bottom:332.556150px;}
.yc5{bottom:336.008550px;}
.ydf{bottom:338.311650px;}
.y114{bottom:342.038550px;}
.y96{bottom:343.692600px;}
.y154{bottom:347.003550px;}
.y39{bottom:349.104600px;}
.yff{bottom:349.784550px;}
.y82{bottom:350.542500px;}
.y5e{bottom:352.202400px;}
.y17{bottom:353.850150px;}
.yab{bottom:357.608400px;}
.yc4{bottom:357.608550px;}
.yde{bottom:360.363150px;}
.y113{bottom:364.232550px;}
.y95{bottom:364.698600px;}
.y153{bottom:366.803550px;}
.y38{bottom:370.704600px;}
.ydd{bottom:371.310150px;}
.yfe{bottom:371.690550px;}
.y81{bottom:372.736500px;}
.y5d{bottom:373.190550px;}
.y16{bottom:375.144150px;}
.yc3{bottom:379.208550px;}
.y12d{bottom:385.074750px;}
.y94{bottom:385.698600px;}
.y112{bottom:386.426550px;}
.y152{bottom:386.603550px;}
.ydc{bottom:387.811650px;}
.y37{bottom:392.304600px;}
.yfd{bottom:393.596550px;}
.y5c{bottom:394.196550px;}
.y80{bottom:394.930500px;}
.y15{bottom:396.438150px;}
.yc2{bottom:400.808550px;}
.ydb{bottom:404.311650px;}
.y151{bottom:406.403550px;}
.y93{bottom:406.704600px;}
.y12c{bottom:406.980750px;}
.y111{bottom:408.620550px;}
.y36{bottom:413.904600px;}
.y5b{bottom:415.202550px;}
.yfc{bottom:415.502550px;}
.y7f{bottom:417.124500px;}
.y14{bottom:417.732150px;}
.yc1{bottom:422.408400px;}
.yaa{bottom:422.408550px;}
.y150{bottom:426.203550px;}
.yda{bottom:426.363150px;}
.y12b{bottom:428.886750px;}
.y110{bottom:430.814550px;}
.y35{bottom:435.504600px;}
.y5a{bottom:436.154550px;}
.y92{bottom:436.208550px;}
.yfb{bottom:437.408550px;}
.y13{bottom:439.026150px;}
.y7e{bottom:439.318500px;}
.yc0{bottom:444.008400px;}
.ya9{bottom:444.008550px;}
.y14f{bottom:446.003550px;}
.y12a{bottom:450.792750px;}
.y10f{bottom:453.008550px;}
.y34{bottom:457.104600px;}
.y59{bottom:457.160550px;}
.y12{bottom:460.320150px;}
.yd9{bottom:461.530500px;}
.y7d{bottom:461.536500px;}
.ybf{bottom:465.608400px;}
.ya8{bottom:465.608550px;}
.y14e{bottom:465.803550px;}
.yfa{bottom:467.812500px;}
.y129{bottom:472.698750px;}
.y58{bottom:478.166550px;}
.y33{bottom:478.704600px;}
.y11{bottom:481.614150px;}
.y10e{bottom:483.712500px;}
.yd8{bottom:483.724500px;}
.y7c{bottom:483.730500px;}
.y14d{bottom:485.603550px;}
.ybe{bottom:487.208400px;}
.ya7{bottom:487.208550px;}
.y128{bottom:494.604750px;}
.y57{bottom:499.172550px;}
.y91{bottom:499.202550px;}
.y32{bottom:500.304600px;}
.y10{bottom:502.908150px;}
.y14c{bottom:505.403550px;}
.yd7{bottom:505.918500px;}
.y7b{bottom:505.924500px;}
.ybd{bottom:508.808400px;}
.ya6{bottom:508.808550px;}
.y90{bottom:520.160550px;}
.y56{bottom:520.178550px;}
.yf{bottom:524.202150px;}
.y127{bottom:525.008700px;}
.y14b{bottom:525.203550px;}
.y7a{bottom:528.118500px;}
.yd6{bottom:528.130500px;}
.ybc{bottom:530.408400px;}
.y31{bottom:530.408550px;}
.yf9{bottom:533.476500px;}
.y8f{bottom:541.166550px;}
.y55{bottom:541.184550px;}
.y14a{bottom:545.003550px;}
.ye{bottom:545.496150px;}
.yd5{bottom:550.324500px;}
.y10d{bottom:550.336500px;}
.y79{bottom:550.414500px;}
.ybb{bottom:552.008400px;}
.ya5{bottom:552.008550px;}
.yf8{bottom:555.382500px;}
.y8e{bottom:562.172550px;}
.y54{bottom:562.190550px;}
.y149{bottom:564.803550px;}
.yd{bottom:566.790150px;}
.yd4{bottom:572.518500px;}
.y10c{bottom:572.530500px;}
.y78{bottom:572.608500px;}
.yba{bottom:573.608400px;}
.ya4{bottom:573.608550px;}
.yf7{bottom:577.288500px;}
.y8d{bottom:583.178550px;}
.y53{bottom:583.196550px;}
.y148{bottom:584.603550px;}
.yc{bottom:588.084150px;}
.y126{bottom:590.624550px;}
.y10b{bottom:594.724500px;}
.yd3{bottom:594.736500px;}
.y77{bottom:594.802500px;}
.yb9{bottom:595.208400px;}
.y30{bottom:595.208550px;}
.yf6{bottom:599.194500px;}
.y8c{bottom:604.184550px;}
.y52{bottom:604.202550px;}
.y147{bottom:604.403550px;}
.yb{bottom:609.378150px;}
.y125{bottom:612.530550px;}
.yb8{bottom:616.808400px;}
.y2f{bottom:616.808550px;}
.y10a{bottom:616.918500px;}
.yd2{bottom:616.930500px;}
.y76{bottom:616.996500px;}
.yf5{bottom:621.100500px;}
.y146{bottom:624.203550px;}
.y51{bottom:625.130550px;}
.y8b{bottom:625.190550px;}
.ya{bottom:630.672150px;}
.y124{bottom:634.436550px;}
.yb7{bottom:638.408400px;}
.y2e{bottom:638.408550px;}
.yd1{bottom:639.124500px;}
.y109{bottom:639.130500px;}
.y75{bottom:639.190500px;}
.yf4{bottom:643.006500px;}
.y145{bottom:644.003550px;}
.y50{bottom:646.136550px;}
.y8a{bottom:646.196550px;}
.y9{bottom:651.966150px;}
.y123{bottom:656.342550px;}
.yb6{bottom:660.008400px;}
.y2d{bottom:660.008550px;}
.yd0{bottom:661.318500px;}
.y108{bottom:661.324500px;}
.y74{bottom:661.384500px;}
.y144{bottom:663.803550px;}
.yf3{bottom:664.906500px;}
.y4f{bottom:667.142550px;}
.y89{bottom:667.202550px;}
.y8{bottom:673.260150px;}
.y122{bottom:678.248550px;}
.yb5{bottom:681.608400px;}
.y2c{bottom:681.608550px;}
.y107{bottom:683.518500px;}
.ycf{bottom:683.530500px;}
.y73{bottom:683.578500px;}
.y143{bottom:683.603700px;}
.yf2{bottom:686.788500px;}
.y4e{bottom:688.148550px;}
.y7{bottom:694.554150px;}
.y121{bottom:700.154550px;}
.y2b{bottom:703.208550px;}
.y142{bottom:703.403700px;}
.yce{bottom:705.724500px;}
.y72{bottom:705.772500px;}
.yf1{bottom:708.694500px;}
.y4d{bottom:709.154550px;}
.yb4{bottom:711.712350px;}
.y120{bottom:722.060550px;}
.y141{bottom:723.203700px;}
.y2a{bottom:724.808550px;}
.ycd{bottom:727.918500px;}
.y71{bottom:727.966500px;}
.y4c{bottom:730.160550px;}
.yf0{bottom:730.600500px;}
.y140{bottom:743.003700px;}
.y11f{bottom:743.966550px;}
.ya3{bottom:746.408550px;}
.ycc{bottom:750.118500px;}
.y70{bottom:750.160500px;}
.y4b{bottom:751.166550px;}
.yef{bottom:752.506500px;}
.y29{bottom:754.912500px;}
.y13f{bottom:762.803700px;}
.y11e{bottom:765.872550px;}
.y4a{bottom:772.172550px;}
.y6f{bottom:772.354500px;}
.yee{bottom:774.388500px;}
.ya2{bottom:776.512350px;}
.yb3{bottom:776.512500px;}
.y13e{bottom:782.603700px;}
.y11d{bottom:787.778550px;}
.y49{bottom:793.178550px;}
.y6e{bottom:794.548500px;}
.yed{bottom:796.294500px;}
.yb2{bottom:798.112500px;}
.y13d{bottom:802.403700px;}
.y6{bottom:802.554150px;}
.y11c{bottom:809.684550px;}
.y48{bottom:814.184550px;}
.y6d{bottom:816.742500px;}
.yec{bottom:818.200500px;}
.y28{bottom:819.712500px;}
.y13c{bottom:822.203700px;}
.y5{bottom:828.406050px;}
.y11b{bottom:831.590550px;}
.y47{bottom:835.190550px;}
.y6c{bottom:838.936500px;}
.yeb{bottom:840.106500px;}
.y27{bottom:841.312500px;}
.y13b{bottom:842.003700px;}
.y11a{bottom:853.496550px;}
.y46{bottom:856.196550px;}
.y4{bottom:859.006050px;}
.y6b{bottom:861.130500px;}
.y13a{bottom:861.803700px;}
.yea{bottom:861.994500px;}
.y26{bottom:862.912500px;}
.y119{bottom:875.402550px;}
.y45{bottom:877.202550px;}
.y139{bottom:881.603700px;}
.y6a{bottom:883.324500px;}
.ye9{bottom:883.900500px;}
.y25{bottom:884.512500px;}
.y3{bottom:889.606050px;}
.y118{bottom:897.308550px;}
.y44{bottom:898.208550px;}
.y138{bottom:901.403700px;}
.y69{bottom:905.518500px;}
.ye8{bottom:905.806500px;}
.y24{bottom:906.112500px;}
.y23{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.y137{bottom:929.707650px;}
.hc{height:26.199902px;}
.h1c{height:27.309902px;}
.h9{height:27.993164px;}
.h10{height:30.568359px;}
.h8{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.ha{height:47.988281px;}
.he{height:48.399902px;}
.hd{height:48.405902px;}
.hf{height:48.411902px;}
.h16{height:50.135941px;}
.h7{height:50.947266px;}
.h21{height:50.953266px;}
.h4{height:56.041992px;}
.h25{height:58.044595px;}
.h6{height:61.136719px;}
.h1d{height:61.137319px;}
.h15{height:61.160719px;}
.h1b{height:61.184719px;}
.h14{height:61.208719px;}
.h11{height:61.448719px;}
.h17{height:62.914031px;}
.h23{height:63.130031px;}
.h1f{height:63.154031px;}
.h20{height:63.226031px;}
.h18{height:63.250031px;}
.h24{height:63.274031px;}
.h1e{height:63.321431px;}
.hb{height:63.322031px;}
.h13{height:63.394031px;}
.h22{height:63.418031px;}
.h1a{height:63.514031px;}
.h12{height:63.538031px;}
.h19{height:63.562031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:75.721800px;}
.x3{left:97.775400px;}
.x6{left:119.053350px;}
.x7{left:140.328750px;}
.x4{left:150.670350px;}
.x5{left:270.577950px;}
.x8{left:543.209400px;}
.x2{left:586.174650px;}
@media print{
.v5{vertical-align:-23.680533pt;}
.v8{vertical-align:-21.706667pt;}
.v3{vertical-align:-19.733333pt;}
.v6{vertical-align:-18.746667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v4{vertical-align:18.752000pt;}
.v7{vertical-align:21.706667pt;}
.v2{vertical-align:23.680000pt;}
.ls18{letter-spacing:-17.984000pt;}
.ls17{letter-spacing:-6.720000pt;}
.ls15{letter-spacing:-6.400000pt;}
.ls12{letter-spacing:-6.080000pt;}
.ls19{letter-spacing:-5.066667pt;}
.lsd{letter-spacing:-2.304000pt;}
.ls1a{letter-spacing:-1.976000pt;}
.ls5{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.253333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000533pt;}
.lsf{letter-spacing:0.038933pt;}
.ls13{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.191467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.293333pt;}
.ls1c{letter-spacing:0.304000pt;}
.ls7{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.506667pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls6{letter-spacing:3.733333pt;}
.ls1f{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls1b{letter-spacing:8.960000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls20{letter-spacing:9.738667pt;}
.lsb{letter-spacing:12.160000pt;}
.ls10{letter-spacing:34.598400pt;}
.ls11{letter-spacing:34.598933pt;}
.ws1{word-spacing:-70.176000pt;}
.ws16{word-spacing:-64.000000pt;}
.wsc{word-spacing:-43.456000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws7{word-spacing:-42.816000pt;}
.wsb{word-spacing:-42.496000pt;}
.ws1e{word-spacing:-39.541333pt;}
.ws17{word-spacing:-35.946667pt;}
.ws10{word-spacing:-34.656000pt;}
.ws9{word-spacing:-34.149333pt;}
.wsf{word-spacing:-33.896000pt;}
.wsa{word-spacing:-31.936000pt;}
.ws0{word-spacing:-28.757333pt;}
.ws1f{word-spacing:-28.042667pt;}
.ws1b{word-spacing:-25.029333pt;}
.ws1a{word-spacing:-24.624000pt;}
.ws1c{word-spacing:-20.320000pt;}
.ws2{word-spacing:-17.984000pt;}
.wse{word-spacing:-17.664000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws5{word-spacing:-14.986667pt;}
.wsd{word-spacing:-14.237333pt;}
.ws19{word-spacing:-13.173333pt;}
.ws12{word-spacing:-12.514667pt;}
.ws13{word-spacing:-10.982400pt;}
.ws6{word-spacing:-10.790400pt;}
.ws14{word-spacing:-10.598400pt;}
.ws18{word-spacing:-10.406400pt;}
.ws1d{word-spacing:-9.891200pt;}
.ws8{word-spacing:-8.542400pt;}
.ws15{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-18.829452pt;}
._1c{margin-left:-17.393778pt;}
._1a{margin-left:-15.575230pt;}
._16{margin-left:-14.506667pt;}
._11{margin-left:-12.480000pt;}
._1d{margin-left:-10.282667pt;}
._5{margin-left:-9.157333pt;}
._d{margin-left:-7.722667pt;}
._3{margin-left:-5.984000pt;}
._f{margin-left:-4.950104pt;}
._0{margin-left:-3.733333pt;}
._2{margin-left:-2.304000pt;}
._4{margin-left:-0.906667pt;}
._1{width:1.122370pt;}
._6{width:2.450963pt;}
._7{width:3.386074pt;}
._8{width:4.992000pt;}
._9{width:6.336000pt;}
._b{width:8.064000pt;}
._a{width:9.152000pt;}
._12{width:10.344296pt;}
._c{width:11.744000pt;}
._10{width:13.216000pt;}
._19{width:15.616000pt;}
._18{width:17.636741pt;}
._17{width:19.680000pt;}
._14{width:24.960000pt;}
._13{width:25.984000pt;}
._15{width:34.598400pt;}
._e{width:50.598400pt;}
.fs9{font-size:30.400000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.761067pt;}
.y22{bottom:67.855600pt;}
.ya1{bottom:124.720000pt;}
.y43{bottom:124.720133pt;}
.y68{bottom:124.721333pt;}
.y21{bottom:125.253467pt;}
.y15b{bottom:127.647600pt;}
.y136{bottom:128.112667pt;}
.y106{bottom:129.409467pt;}
.yb1{bottom:129.656000pt;}
.yb0{bottom:139.386667pt;}
.ya0{bottom:139.388000pt;}
.y42{bottom:139.388133pt;}
.y15a{bottom:143.647600pt;}
.y20{bottom:144.181467pt;}
.y67{bottom:144.322667pt;}
.y135{bottom:147.584667pt;}
.y66{bottom:154.053333pt;}
.yaf{bottom:154.054667pt;}
.y41{bottom:154.054800pt;}
.ycb{bottom:158.742667pt;}
.y9f{bottom:158.989333pt;}
.ye7{bottom:158.989467pt;}
.y159{bottom:159.647600pt;}
.y1f{bottom:163.109467pt;}
.y134{bottom:167.056667pt;}
.ye6{bottom:168.718800pt;}
.y9e{bottom:168.720000pt;}
.y117{bottom:168.720133pt;}
.y65{bottom:168.721333pt;}
.y105{bottom:168.721467pt;}
.yae{bottom:173.656000pt;}
.y40{bottom:173.656133pt;}
.y1e{bottom:182.037467pt;}
.y3f{bottom:183.386800pt;}
.y9d{bottom:183.388000pt;}
.y88{bottom:183.388133pt;}
.y133{bottom:186.528667pt;}
.yad{bottom:188.076000pt;}
.y64{bottom:188.322667pt;}
.y104{bottom:188.322800pt;}
.y158{bottom:191.647600pt;}
.y103{bottom:198.053467pt;}
.y63{bottom:198.054667pt;}
.y3e{bottom:198.054800pt;}
.y1d{bottom:200.965467pt;}
.yca{bottom:202.674133pt;}
.y9c{bottom:202.989333pt;}
.y87{bottom:202.989467pt;}
.y132{bottom:206.000667pt;}
.y157{bottom:207.647600pt;}
.y116{bottom:212.720133pt;}
.y9b{bottom:212.721333pt;}
.y3d{bottom:212.721467pt;}
.y62{bottom:217.656000pt;}
.ye5{bottom:217.656133pt;}
.y1c{bottom:219.893467pt;}
.yc9{bottom:221.874133pt;}
.y156{bottom:223.647600pt;}
.y131{bottom:225.472667pt;}
.y9a{bottom:227.388000pt;}
.ye4{bottom:227.388133pt;}
.y3c{bottom:232.322800pt;}
.y86{bottom:232.649333pt;}
.y1b{bottom:238.821467pt;}
.yc8{bottom:241.074133pt;}
.y102{bottom:242.053467pt;}
.y130{bottom:244.944667pt;}
.y99{bottom:246.989333pt;}
.ye3{bottom:246.989467pt;}
.y85{bottom:252.377333pt;}
.yac{bottom:252.715200pt;}
.ye2{bottom:256.718800pt;}
.y98{bottom:256.721333pt;}
.y101{bottom:256.721467pt;}
.y61{bottom:257.068800pt;}
.y1a{bottom:257.749467pt;}
.yc7{bottom:260.274133pt;}
.y12f{bottom:264.416667pt;}
.ye1{bottom:271.386800pt;}
.y3b{bottom:271.915200pt;}
.y84{bottom:272.105333pt;}
.y155{bottom:274.047600pt;}
.y60{bottom:275.724800pt;}
.y97{bottom:276.322667pt;}
.y100{bottom:276.322800pt;}
.y19{bottom:276.677467pt;}
.yc6{bottom:279.474133pt;}
.y12e{bottom:283.888667pt;}
.y115{bottom:284.306267pt;}
.ye0{bottom:286.054800pt;}
.y3a{bottom:291.115200pt;}
.y83{bottom:291.865333pt;}
.y5f{bottom:294.396800pt;}
.y18{bottom:295.605467pt;}
.yc5{bottom:298.674267pt;}
.ydf{bottom:300.721467pt;}
.y114{bottom:304.034267pt;}
.y96{bottom:305.504533pt;}
.y154{bottom:308.447600pt;}
.y39{bottom:310.315200pt;}
.yff{bottom:310.919600pt;}
.y82{bottom:311.593333pt;}
.y5e{bottom:313.068800pt;}
.y17{bottom:314.533467pt;}
.yab{bottom:317.874133pt;}
.yc4{bottom:317.874267pt;}
.yde{bottom:320.322800pt;}
.y113{bottom:323.762267pt;}
.y95{bottom:324.176533pt;}
.y153{bottom:326.047600pt;}
.y38{bottom:329.515200pt;}
.ydd{bottom:330.053467pt;}
.yfe{bottom:330.391600pt;}
.y81{bottom:331.321333pt;}
.y5d{bottom:331.724933pt;}
.y16{bottom:333.461467pt;}
.yc3{bottom:337.074267pt;}
.y12d{bottom:342.288667pt;}
.y94{bottom:342.843200pt;}
.y112{bottom:343.490267pt;}
.y152{bottom:343.647600pt;}
.ydc{bottom:344.721467pt;}
.y37{bottom:348.715200pt;}
.yfd{bottom:349.863600pt;}
.y5c{bottom:350.396933pt;}
.y80{bottom:351.049333pt;}
.y15{bottom:352.389467pt;}
.yc2{bottom:356.274267pt;}
.ydb{bottom:359.388133pt;}
.y151{bottom:361.247600pt;}
.y93{bottom:361.515200pt;}
.y12c{bottom:361.760667pt;}
.y111{bottom:363.218267pt;}
.y36{bottom:367.915200pt;}
.y5b{bottom:369.068933pt;}
.yfc{bottom:369.335600pt;}
.y7f{bottom:370.777333pt;}
.y14{bottom:371.317467pt;}
.yc1{bottom:375.474133pt;}
.yaa{bottom:375.474267pt;}
.y150{bottom:378.847600pt;}
.yda{bottom:378.989467pt;}
.y12b{bottom:381.232667pt;}
.y110{bottom:382.946267pt;}
.y35{bottom:387.115200pt;}
.y5a{bottom:387.692933pt;}
.y92{bottom:387.740933pt;}
.yfb{bottom:388.807600pt;}
.y13{bottom:390.245467pt;}
.y7e{bottom:390.505333pt;}
.yc0{bottom:394.674133pt;}
.ya9{bottom:394.674267pt;}
.y14f{bottom:396.447600pt;}
.y12a{bottom:400.704667pt;}
.y10f{bottom:402.674267pt;}
.y34{bottom:406.315200pt;}
.y59{bottom:406.364933pt;}
.y12{bottom:409.173467pt;}
.yd9{bottom:410.249333pt;}
.y7d{bottom:410.254667pt;}
.ybf{bottom:413.874133pt;}
.ya8{bottom:413.874267pt;}
.y14e{bottom:414.047600pt;}
.yfa{bottom:415.833333pt;}
.y129{bottom:420.176667pt;}
.y58{bottom:425.036933pt;}
.y33{bottom:425.515200pt;}
.y11{bottom:428.101467pt;}
.y10e{bottom:429.966667pt;}
.yd8{bottom:429.977333pt;}
.y7c{bottom:429.982667pt;}
.y14d{bottom:431.647600pt;}
.ybe{bottom:433.074133pt;}
.ya7{bottom:433.074267pt;}
.y128{bottom:439.648667pt;}
.y57{bottom:443.708933pt;}
.y91{bottom:443.735600pt;}
.y32{bottom:444.715200pt;}
.y10{bottom:447.029467pt;}
.y14c{bottom:449.247600pt;}
.yd7{bottom:449.705333pt;}
.y7b{bottom:449.710667pt;}
.ybd{bottom:452.274133pt;}
.ya6{bottom:452.274267pt;}
.y90{bottom:462.364933pt;}
.y56{bottom:462.380933pt;}
.yf{bottom:465.957467pt;}
.y127{bottom:466.674400pt;}
.y14b{bottom:466.847600pt;}
.y7a{bottom:469.438667pt;}
.yd6{bottom:469.449333pt;}
.ybc{bottom:471.474133pt;}
.y31{bottom:471.474267pt;}
.yf9{bottom:474.201333pt;}
.y8f{bottom:481.036933pt;}
.y55{bottom:481.052933pt;}
.y14a{bottom:484.447600pt;}
.ye{bottom:484.885467pt;}
.yd5{bottom:489.177333pt;}
.y10d{bottom:489.188000pt;}
.y79{bottom:489.257333pt;}
.ybb{bottom:490.674133pt;}
.ya5{bottom:490.674267pt;}
.yf8{bottom:493.673333pt;}
.y8e{bottom:499.708933pt;}
.y54{bottom:499.724933pt;}
.y149{bottom:502.047600pt;}
.yd{bottom:503.813467pt;}
.yd4{bottom:508.905333pt;}
.y10c{bottom:508.916000pt;}
.y78{bottom:508.985333pt;}
.yba{bottom:509.874133pt;}
.ya4{bottom:509.874267pt;}
.yf7{bottom:513.145333pt;}
.y8d{bottom:518.380933pt;}
.y53{bottom:518.396933pt;}
.y148{bottom:519.647600pt;}
.yc{bottom:522.741467pt;}
.y126{bottom:524.999600pt;}
.y10b{bottom:528.644000pt;}
.yd3{bottom:528.654667pt;}
.y77{bottom:528.713333pt;}
.yb9{bottom:529.074133pt;}
.y30{bottom:529.074267pt;}
.yf6{bottom:532.617333pt;}
.y8c{bottom:537.052933pt;}
.y52{bottom:537.068933pt;}
.y147{bottom:537.247600pt;}
.yb{bottom:541.669467pt;}
.y125{bottom:544.471600pt;}
.yb8{bottom:548.274133pt;}
.y2f{bottom:548.274267pt;}
.y10a{bottom:548.372000pt;}
.yd2{bottom:548.382667pt;}
.y76{bottom:548.441333pt;}
.yf5{bottom:552.089333pt;}
.y146{bottom:554.847600pt;}
.y51{bottom:555.671600pt;}
.y8b{bottom:555.724933pt;}
.ya{bottom:560.597467pt;}
.y124{bottom:563.943600pt;}
.yb7{bottom:567.474133pt;}
.y2e{bottom:567.474267pt;}
.yd1{bottom:568.110667pt;}
.y109{bottom:568.116000pt;}
.y75{bottom:568.169333pt;}
.yf4{bottom:571.561333pt;}
.y145{bottom:572.447600pt;}
.y50{bottom:574.343600pt;}
.y8a{bottom:574.396933pt;}
.y9{bottom:579.525467pt;}
.y123{bottom:583.415600pt;}
.yb6{bottom:586.674133pt;}
.y2d{bottom:586.674267pt;}
.yd0{bottom:587.838667pt;}
.y108{bottom:587.844000pt;}
.y74{bottom:587.897333pt;}
.y144{bottom:590.047600pt;}
.yf3{bottom:591.028000pt;}
.y4f{bottom:593.015600pt;}
.y89{bottom:593.068933pt;}
.y8{bottom:598.453467pt;}
.y122{bottom:602.887600pt;}
.yb5{bottom:605.874133pt;}
.y2c{bottom:605.874267pt;}
.y107{bottom:607.572000pt;}
.ycf{bottom:607.582667pt;}
.y73{bottom:607.625333pt;}
.y143{bottom:607.647733pt;}
.yf2{bottom:610.478667pt;}
.y4e{bottom:611.687600pt;}
.y7{bottom:617.381467pt;}
.y121{bottom:622.359600pt;}
.y2b{bottom:625.074267pt;}
.y142{bottom:625.247733pt;}
.yce{bottom:627.310667pt;}
.y72{bottom:627.353333pt;}
.yf1{bottom:629.950667pt;}
.y4d{bottom:630.359600pt;}
.yb4{bottom:632.633200pt;}
.y120{bottom:641.831600pt;}
.y141{bottom:642.847733pt;}
.y2a{bottom:644.274267pt;}
.ycd{bottom:647.038667pt;}
.y71{bottom:647.081333pt;}
.y4c{bottom:649.031600pt;}
.yf0{bottom:649.422667pt;}
.y140{bottom:660.447733pt;}
.y11f{bottom:661.303600pt;}
.ya3{bottom:663.474267pt;}
.ycc{bottom:666.772000pt;}
.y70{bottom:666.809333pt;}
.y4b{bottom:667.703600pt;}
.yef{bottom:668.894667pt;}
.y29{bottom:671.033333pt;}
.y13f{bottom:678.047733pt;}
.y11e{bottom:680.775600pt;}
.y4a{bottom:686.375600pt;}
.y6f{bottom:686.537333pt;}
.yee{bottom:688.345333pt;}
.ya2{bottom:690.233200pt;}
.yb3{bottom:690.233333pt;}
.y13e{bottom:695.647733pt;}
.y11d{bottom:700.247600pt;}
.y49{bottom:705.047600pt;}
.y6e{bottom:706.265333pt;}
.yed{bottom:707.817333pt;}
.yb2{bottom:709.433333pt;}
.y13d{bottom:713.247733pt;}
.y6{bottom:713.381467pt;}
.y11c{bottom:719.719600pt;}
.y48{bottom:723.719600pt;}
.y6d{bottom:725.993333pt;}
.yec{bottom:727.289333pt;}
.y28{bottom:728.633333pt;}
.y13c{bottom:730.847733pt;}
.y5{bottom:736.360933pt;}
.y11b{bottom:739.191600pt;}
.y47{bottom:742.391600pt;}
.y6c{bottom:745.721333pt;}
.yeb{bottom:746.761333pt;}
.y27{bottom:747.833333pt;}
.y13b{bottom:748.447733pt;}
.y11a{bottom:758.663600pt;}
.y46{bottom:761.063600pt;}
.y4{bottom:763.560933pt;}
.y6b{bottom:765.449333pt;}
.y13a{bottom:766.047733pt;}
.yea{bottom:766.217333pt;}
.y26{bottom:767.033333pt;}
.y119{bottom:778.135600pt;}
.y45{bottom:779.735600pt;}
.y139{bottom:783.647733pt;}
.y6a{bottom:785.177333pt;}
.ye9{bottom:785.689333pt;}
.y25{bottom:786.233333pt;}
.y3{bottom:790.760933pt;}
.y118{bottom:797.607600pt;}
.y44{bottom:798.407600pt;}
.y138{bottom:801.247733pt;}
.y69{bottom:804.905333pt;}
.ye8{bottom:805.161333pt;}
.y24{bottom:805.433333pt;}
.y23{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.y137{bottom:826.406800pt;}
.hc{height:23.288802pt;}
.h1c{height:24.275469pt;}
.h9{height:24.882812pt;}
.h10{height:27.171875pt;}
.h8{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.ha{height:42.656250pt;}
.he{height:43.022135pt;}
.hd{height:43.027469pt;}
.hf{height:43.032802pt;}
.h16{height:44.565281pt;}
.h7{height:45.286458pt;}
.h21{height:45.291792pt;}
.h4{height:49.815104pt;}
.h25{height:51.595196pt;}
.h6{height:54.343750pt;}
.h1d{height:54.344283pt;}
.h15{height:54.365083pt;}
.h1b{height:54.386417pt;}
.h14{height:54.407750pt;}
.h11{height:54.621083pt;}
.h17{height:55.923583pt;}
.h23{height:56.115583pt;}
.h1f{height:56.136917pt;}
.h20{height:56.200917pt;}
.h18{height:56.222250pt;}
.h24{height:56.243583pt;}
.h1e{height:56.285717pt;}
.hb{height:56.286250pt;}
.h13{height:56.350250pt;}
.h22{height:56.371583pt;}
.h1a{height:56.456917pt;}
.h12{height:56.478250pt;}
.h19{height:56.499583pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:67.308267pt;}
.x3{left:86.911467pt;}
.x6{left:105.825200pt;}
.x7{left:124.736667pt;}
.x4{left:133.929200pt;}
.x5{left:240.513733pt;}
.x8{left:482.852800pt;}
.x2{left:521.044133pt;}
}




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