
    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_f154cc7ce35c1feb0fc534c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_94a0fecec0523fb0987e2b36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e884d987a9c28b9b7898cbed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8b0ff39f7e4316a75109cc1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_1df06c7d5249626ae50cdd2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_14fb2b5b0dd8ec8714acd8da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_56ac20e8340ffe3cec9be079.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859375;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-69.120000px;}
.v1{vertical-align:-58.320000px;}
.v3{vertical-align:-48.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls13{letter-spacing:-0.513600px;}
.ls1c{letter-spacing:-0.306600px;}
.ls1b{letter-spacing:-0.220200px;}
.lsc{letter-spacing:-0.153600px;}
.ls14{letter-spacing:-0.026640px;}
.lsb{letter-spacing:-0.021960px;}
.ls9{letter-spacing:-0.018720px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.090600px;}
.ls3{letter-spacing:0.090720px;}
.ls11{letter-spacing:0.139800px;}
.ls19{letter-spacing:0.153600px;}
.lsa{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.210720px;}
.ls18{letter-spacing:50.805360px;}
.ls6{letter-spacing:60.048000px;}
.ls4{letter-spacing:74.928000px;}
.ls7{letter-spacing:90.288000px;}
.ls1a{letter-spacing:91.286640px;}
.lsd{letter-spacing:170.910000px;}
.ls17{letter-spacing:432.650640px;}
.ls15{letter-spacing:435.050640px;}
.ls0{letter-spacing:475.929360px;}
.ls16{letter-spacing:664.850640px;}
.lse{letter-spacing:1137.170640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-65.880000px;}
.ws6{word-spacing:-18.405240px;}
.ws5{word-spacing:-18.360000px;}
.ws3{word-spacing:-18.314640px;}
.wsd{word-spacing:-16.893360px;}
.wsc{word-spacing:-16.866960px;}
.wsa{word-spacing:-16.853160px;}
.wse{word-spacing:-16.766640px;}
.ws7{word-spacing:-16.713360px;}
.wsb{word-spacing:-16.686720px;}
.ws8{word-spacing:-16.559760px;}
.wsf{word-spacing:-16.493160px;}
.ws11{word-spacing:-16.406760px;}
.ws13{word-spacing:-15.012000px;}
.ws12{word-spacing:-13.310640px;}
.ws0{word-spacing:-11.889360px;}
.ws1{word-spacing:-11.709360px;}
.ws4{word-spacing:-11.690640px;}
.ws10{word-spacing:-10.808640px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-17.045520px;}
._3{margin-left:-15.417120px;}
._9{margin-left:-13.624080px;}
._8{margin-left:-9.889440px;}
._7{margin-left:-6.500160px;}
._6{margin-left:-4.881600px;}
._a{margin-left:-3.620880px;}
._4{margin-left:-2.594640px;}
._1{margin-left:-1.263600px;}
._2{width:1.025760px;}
._14{width:3.006000px;}
._25{width:4.148280px;}
._1a{width:5.537760px;}
._f{width:6.607560px;}
._10{width:7.887000px;}
._1b{width:9.427560px;}
._18{width:10.460880px;}
._19{width:11.960160px;}
._e{width:13.199880px;}
._d{width:14.609160px;}
._23{width:15.631200px;}
._12{width:17.855640px;}
._2b{width:19.358640px;}
._13{width:20.380680px;}
._34{width:21.522960px;}
._28{width:22.845600px;}
._20{width:24.408720px;}
._32{width:25.490880px;}
._2f{width:27.361200px;}
._37{width:29.338560px;}
._24{width:30.661200px;}
._1c{width:31.803480px;}
._1e{width:32.904360px;}
._31{width:34.189560px;}
._16{width:35.221080px;}
._15{width:36.252360px;}
._1f{width:38.296440px;}
._26{width:39.498840px;}
._17{width:40.959840px;}
._1d{width:42.011520px;}
._3a{width:44.007840px;}
._4f{width:45.150120px;}
._45{width:46.412640px;}
._46{width:47.520840px;}
._3d{width:48.817440px;}
._33{width:49.899600px;}
._22{width:51.342480px;}
._c{width:52.824000px;}
._41{width:53.927640px;}
._27{width:55.310400px;}
._35{width:56.392560px;}
._39{width:58.316400px;}
._b{width:59.764080px;}
._21{width:62.264760px;}
._11{width:63.686640px;}
._3b{width:64.910040px;}
._30{width:67.635000px;}
._40{width:68.957640px;}
._43{width:70.641000px;}
._2d{width:73.466640px;}
._2e{width:74.548800px;}
._4b{width:78.576840px;}
._47{width:81.642960px;}
._4d{width:85.490640px;}
._4a{width:86.512680px;}
._38{width:87.594840px;}
._2a{width:89.879400px;}
._49{width:97.454520px;}
._2c{width:106.232040px;}
._50{width:114.539880px;}
._3e{width:122.945400px;}
._4e{width:125.951400px;}
._48{width:142.484400px;}
._44{width:144.408240px;}
._51{width:165.871080px;}
._3f{width:174.764640px;}
._42{width:177.534360px;}
._36{width:189.017280px;}
._3c{width:202.123440px;}
._29{width:223.947000px;}
._4c{width:302.223240px;}
._0{width:567.030000px;}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(0,40,91);}
.fc4{color:transparent;}
.fc1{color:rgb(0,102,98);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:6.120000px;}
.fs3{font-size:11.880000px;}
.fsa{font-size:29.880000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:83.880000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:2.250000px;}
.y9{bottom:3.150000px;}
.y82{bottom:4.140000px;}
.y2{bottom:4.230000px;}
.y52{bottom:4.680000px;}
.y26{bottom:5.310000px;}
.y14e{bottom:7.290000px;}
.y14c{bottom:7.380000px;}
.y24{bottom:7.470000px;}
.y21{bottom:8.550000px;}
.y22{bottom:8.910000px;}
.y35{bottom:10.440000px;}
.y2f{bottom:12.060000px;}
.y32{bottom:12.150000px;}
.y39{bottom:12.510000px;}
.y36{bottom:13.770000px;}
.y4{bottom:13.950000px;}
.y8b{bottom:14.310000px;}
.y1e{bottom:15.120000px;}
.yc{bottom:16.830000px;}
.y146{bottom:18.450000px;}
.y66{bottom:20.340000px;}
.y116{bottom:20.370000px;}
.y8{bottom:20.430000px;}
.y51{bottom:20.970000px;}
.yac{bottom:21.060000px;}
.y87{bottom:21.150000px;}
.yd4{bottom:21.180000px;}
.y81{bottom:21.420000px;}
.y9d{bottom:22.410000px;}
.y25{bottom:22.500000px;}
.y14b{bottom:22.950000px;}
.y8a{bottom:26.370000px;}
.y1d{bottom:27.180000px;}
.y7e{bottom:29.340000px;}
.y86{bottom:29.430000px;}
.y14f{bottom:29.610000px;}
.y150{bottom:30.600000px;}
.y50{bottom:33.030000px;}
.y15{bottom:34.110000px;}
.y2e{bottom:34.200000px;}
.y31{bottom:34.290000px;}
.y145{bottom:35.640000px;}
.y38{bottom:36.000000px;}
.y20{bottom:36.540000px;}
.y65{bottom:37.620000px;}
.y115{bottom:37.650000px;}
.y7{bottom:37.710000px;}
.y10a{bottom:37.740000px;}
.yab{bottom:38.340000px;}
.y12e{bottom:38.430000px;}
.yd3{bottom:38.460000px;}
.y89{bottom:38.520000px;}
.y5f{bottom:38.610000px;}
.y80{bottom:38.700000px;}
.y1c{bottom:39.240000px;}
.y9c{bottom:39.690000px;}
.y3a{bottom:40.500000px;}
.y139{bottom:40.680000px;}
.y4f{bottom:45.450000px;}
.y14{bottom:46.170000px;}
.y85{bottom:46.710000px;}
.yb4{bottom:47.430000px;}
.y1b{bottom:51.300000px;}
.yc2{bottom:51.840000px;}
.y144{bottom:53.910000px;}
.y14a{bottom:54.000000px;}
.y112{bottom:54.810000px;}
.y6{bottom:54.900000px;}
.ye7{bottom:54.930000px;}
.y7d{bottom:55.620000px;}
.yd2{bottom:55.650000px;}
.y64{bottom:55.890000px;}
.y5e{bottom:56.880000px;}
.yf0{bottom:57.960000px;}
.y13{bottom:58.230000px;}
.y1f{bottom:61.290000px;}
.yd{bottom:62.640000px;}
.y1a{bottom:63.360000px;}
.y84{bottom:63.900000px;}
.yc1{bottom:69.120000px;}
.y12{bottom:70.290000px;}
.y143{bottom:71.190000px;}
.ya6{bottom:72.090000px;}
.y114{bottom:72.120000px;}
.ya8{bottom:72.180000px;}
.ye6{bottom:72.210000px;}
.y7c{bottom:72.900000px;}
.yd1{bottom:72.930000px;}
.yb3{bottom:73.620000px;}
.y12d{bottom:73.650000px;}
.y5d{bottom:74.160000px;}
.y138{bottom:75.240000px;}
.y19{bottom:75.420000px;}
.yef{bottom:76.230000px;}
.y59{bottom:77.220000px;}
.y11{bottom:82.350000px;}
.yc0{bottom:86.310000px;}
.y18{bottom:87.570000px;}
.ya5{bottom:89.370000px;}
.ye5{bottom:89.400000px;}
.yc5{bottom:89.460000px;}
.yf2{bottom:89.490000px;}
.ycb{bottom:90.090000px;}
.yaa{bottom:90.120000px;}
.y8d{bottom:90.180000px;}
.yd0{bottom:90.210000px;}
.y13d{bottom:90.450000px;}
.yb2{bottom:90.900000px;}
.y5c{bottom:91.440000px;}
.y63{bottom:92.430000px;}
.y10{bottom:94.410000px;}
.yee{bottom:94.500000px;}
.y7b{bottom:99.090000px;}
.y17{bottom:99.630000px;}
.y83{bottom:100.710000px;}
.yf6{bottom:101.340000px;}
.y10e{bottom:101.520000px;}
.yc8{bottom:102.510000px;}
.yda{bottom:103.950000px;}
.ybf{bottom:104.580000px;}
.ye{bottom:105.660000px;}
.ye2{bottom:106.560000px;}
.ya4{bottom:106.650000px;}
.ye4{bottom:106.680000px;}
.yf{bottom:107.370000px;}
.ycf{bottom:107.400000px;}
.y13c{bottom:107.730000px;}
.yb1{bottom:108.180000px;}
.y12c{bottom:108.930000px;}
.y5b{bottom:109.710000px;}
.y62{bottom:110.610000px;}
.y16{bottom:111.690000px;}
.yed{bottom:112.770000px;}
.yf5{bottom:115.110000px;}
.y7a{bottom:116.370000px;}
.y12f{bottom:118.440000px;}
.ybe{bottom:121.860000px;}
.ya3{bottom:123.840000px;}
.yc4{bottom:123.930000px;}
.ydb{bottom:123.960000px;}
.yad{bottom:124.650000px;}
.y13b{bottom:125.910000px;}
.y12b{bottom:126.210000px;}
.y96{bottom:126.900000px;}
.y137{bottom:126.990000px;}
.y5a{bottom:127.890000px;}
.y61{bottom:128.880000px;}
.y58{bottom:128.970000px;}
.yec{bottom:131.040000px;}
.yf4{bottom:133.470000px;}
.y79{bottom:133.650000px;}
.y10d{bottom:136.710000px;}
.y156{bottom:137.340000px;}
.ya9{bottom:139.500000px;}
.ybd{bottom:140.130000px;}
.ya2{bottom:141.120000px;}
.y109{bottom:141.240000px;}
.y13a{bottom:143.190000px;}
.yf3{bottom:143.460000px;}
.y12a{bottom:143.490000px;}
.y136{bottom:144.180000px;}
.y95{bottom:145.170000px;}
.y57{bottom:146.160000px;}
.yeb{bottom:148.230000px;}
.yc7{bottom:154.980000px;}
.ybc{bottom:157.320000px;}
.y101{bottom:158.310000px;}
.ya1{bottom:158.400000px;}
.y108{bottom:158.430000px;}
.y10c{bottom:158.490000px;}
.y78{bottom:159.840000px;}
.y129{bottom:160.680000px;}
.y135{bottom:161.460000px;}
.y94{bottom:162.450000px;}
.y155{bottom:163.980000px;}
.yf1{bottom:168.120000px;}
.y11a{bottom:170.910000px;}
.ya0{bottom:175.590000px;}
.y107{bottom:175.710000px;}
.y77{bottom:177.120000px;}
.y10b{bottom:178.560000px;}
.y134{bottom:178.740000px;}
.y7f{bottom:179.460000px;}
.y93{bottom:179.640000px;}
.yb{bottom:184.140000px;}
.y154{bottom:191.610000px;}
.y9f{bottom:192.870000px;}
.y106{bottom:193.410000px;}
.y128{bottom:195.960000px;}
.y92{bottom:196.920000px;}
.y76{bottom:203.310000px;}
.y100{bottom:210.060000px;}
.ybb{bottom:210.150000px;}
.y127{bottom:213.240000px;}
.y91{bottom:214.200000px;}
.y153{bottom:217.800000px;}
.y75{bottom:220.590000px;}
.yc6{bottom:224.760000px;}
.yba{bottom:227.340000px;}
.y126{bottom:230.430000px;}
.y90{bottom:231.390000px;}
.y67{bottom:233.040000px;}
.y152{bottom:235.110000px;}
.y74{bottom:237.870000px;}
.yd9{bottom:242.760000px;}
.ya7{bottom:244.470000px;}
.yff{bottom:244.620000px;}
.yb9{bottom:244.650000px;}
.y8f{bottom:248.670000px;}
.y73{bottom:255.060000px;}
.y151{bottom:261.390000px;}
.yfe{bottom:261.810000px;}
.y125{bottom:265.620000px;}
.y72{bottom:272.340000px;}
.y14d{bottom:276.240000px;}
.yc3{bottom:277.230000px;}
.yfd{bottom:279.090000px;}
.y124{bottom:282.900000px;}
.y71{bottom:289.620000px;}
.yea{bottom:289.650000px;}
.y4d{bottom:293.700000px;}
.yfc{bottom:296.370000px;}
.y123{bottom:300.180000px;}
.y70{bottom:306.810000px;}
.y4c{bottom:311.340000px;}
.yfb{bottom:313.560000px;}
.y122{bottom:317.460000px;}
.y11e{bottom:318.180000px;}
.y6f{bottom:324.090000px;}
.y4b{bottom:330.330000px;}
.yfa{bottom:330.840000px;}
.y9e{bottom:331.500000px;}
.y121{bottom:334.650000px;}
.y11d{bottom:335.460000px;}
.y6e{bottom:341.370000px;}
.y149{bottom:348.060000px;}
.yf9{bottom:348.120000px;}
.y4a{bottom:349.230000px;}
.y120{bottom:351.930000px;}
.y11c{bottom:352.650000px;}
.y6d{bottom:358.560000px;}
.yf8{bottom:365.310000px;}
.y49{bottom:368.220000px;}
.y11b{bottom:369.930000px;}
.y6c{bottom:375.840000px;}
.y105{bottom:383.970000px;}
.y11f{bottom:387.120000px;}
.y48{bottom:387.210000px;}
.y6b{bottom:393.120000px;}
.y47{bottom:406.200000px;}
.y6a{bottom:410.310000px;}
.yb8{bottom:416.010000px;}
.y46{bottom:424.830000px;}
.y69{bottom:427.620000px;}
.y148{bottom:433.380000px;}
.y45{bottom:442.020000px;}
.y68{bottom:444.900000px;}
.ye9{bottom:452.730000px;}
.y44{bottom:459.300000px;}
.y147{bottom:466.500000px;}
.yd8{bottom:467.760000px;}
.y43{bottom:476.580000px;}
.yd7{bottom:488.910000px;}
.y42{bottom:494.130000px;}
.y142{bottom:495.930000px;}
.yd6{bottom:507.540000px;}
.y41{bottom:513.120000px;}
.yd5{bottom:522.390000px;}
.ye8{bottom:522.480000px;}
.y40{bottom:532.110000px;}
.y9b{bottom:539.220000px;}
.y3f{bottom:559.650000px;}
.y119{bottom:572.970000px;}
.y3e{bottom:586.560000px;}
.ye3{bottom:592.230000px;}
.y9a{bottom:593.760000px;}
.y118{bottom:594.750000px;}
.y104{bottom:608.970000px;}
.y117{bottom:614.820000px;}
.y99{bottom:614.910000px;}
.y3d{bottom:616.260000px;}
.y141{bottom:617.430000px;}
.y113{bottom:629.670000px;}
.y103{bottom:630.750000px;}
.y98{bottom:634.170000px;}
.y140{bottom:639.210000px;}
.yce{bottom:643.890000px;}
.y3c{bottom:645.990000px;}
.y102{bottom:650.850000px;}
.y97{bottom:654.270000px;}
.y13f{bottom:659.310000px;}
.yf7{bottom:665.700000px;}
.y8e{bottom:669.120000px;}
.y13e{bottom:674.160000px;}
.yb7{bottom:675.510000px;}
.y3b{bottom:675.690000px;}
.y60{bottom:692.790000px;}
.y37{bottom:701.610000px;}
.yb6{bottom:711.510000px;}
.ye1{bottom:731.040000px;}
.y111{bottom:751.200000px;}
.y34{bottom:757.590000px;}
.ycd{bottom:766.140000px;}
.y133{bottom:778.380000px;}
.y33{bottom:788.010000px;}
.yb5{bottom:798.450000px;}
.y30{bottom:842.190000px;}
.y56{bottom:853.800000px;}
.y110{bottom:855.420000px;}
.yb0{bottom:868.200000px;}
.ye0{bottom:887.010000px;}
.y2d{bottom:896.460000px;}
.ycc{bottom:904.920000px;}
.ydf{bottom:908.160000px;}
.yde{bottom:926.790000px;}
.y8c{bottom:932.640000px;}
.yca{bottom:940.920000px;}
.ydd{bottom:941.640000px;}
.y2c{bottom:962.790000px;}
.y132{bottom:971.970000px;}
.y2b{bottom:980.160000px;}
.y4e{bottom:991.230000px;}
.y131{bottom:993.750000px;}
.y10f{bottom:994.110000px;}
.y2a{bottom:1006.260000px;}
.y130{bottom:1013.820000px;}
.y55{bottom:1014.810000px;}
.yaf{bottom:1027.230000px;}
.ydc{bottom:1028.670000px;}
.y29{bottom:1032.540000px;}
.y54{bottom:1036.590000px;}
.yc9{bottom:1045.860000px;}
.yae{bottom:1048.380000px;}
.y28{bottom:1049.910000px;}
.y53{bottom:1058.010000px;}
.y27{bottom:1066.590000px;}
.y88{bottom:1067.130000px;}
.ya{bottom:1078.380000px;}
.y3{bottom:1081.170000px;}
.y5{bottom:1108.890000px;}
.y1{bottom:1177.920000px;}
.hf{height:6.290396px;}
.h9{height:12.210768px;}
.h25{height:17.190000px;}
.h1d{height:17.280000px;}
.h2{height:21.150000px;}
.h10{height:24.390000px;}
.h7{height:27.720000px;}
.ha{height:28.080000px;}
.h16{height:30.420000px;}
.h3c{height:31.163906px;}
.h37{height:34.470000px;}
.h32{height:35.190000px;}
.h2a{height:35.280000px;}
.h1b{height:42.840000px;}
.he{height:43.292723px;}
.hc{height:43.847578px;}
.hd{height:43.929844px;}
.h2d{height:43.945137px;}
.h22{height:48.330000px;}
.h13{height:49.213095px;}
.h8{height:49.937344px;}
.h30{height:51.750000px;}
.h20{height:52.770000px;}
.h26{height:53.730000px;}
.h14{height:54.180000px;}
.h15{height:54.270000px;}
.h17{height:55.980000px;}
.h45{height:56.320312px;}
.h12{height:61.793886px;}
.h6{height:62.703281px;}
.h11{height:68.710781px;}
.h5{height:69.030000px;}
.h44{height:71.100000px;}
.h18{height:71.613281px;}
.h3{height:75.093750px;}
.h21{height:78.030000px;}
.h19{height:79.230000px;}
.h2c{height:86.220000px;}
.h28{height:86.310000px;}
.h1c{height:87.484219px;}
.h3f{height:103.410000px;}
.h43{height:103.500000px;}
.h31{height:104.220000px;}
.h29{height:104.250000px;}
.h4{height:117.900000px;}
.h40{height:120.720000px;}
.h34{height:120.780000px;}
.h3b{height:120.810000px;}
.hb{height:121.500000px;}
.h33{height:121.530000px;}
.h2b{height:122.310000px;}
.h23{height:130.500000px;}
.h2f{height:137.970000px;}
.h39{height:138.000000px;}
.h36{height:138.090000px;}
.h1a{height:150.187500px;}
.h38{height:155.160000px;}
.h1e{height:160.290000px;}
.h3a{height:162.360000px;}
.h3e{height:189.840000px;}
.h42{height:192.780000px;}
.h27{height:207.000000px;}
.h35{height:224.190000px;}
.h2e{height:258.780000px;}
.h24{height:262.800000px;}
.h3d{height:379.440000px;}
.h41{height:401.250000px;}
.h1f{height:458.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:62.639972px;}
.w1c{width:69.570000px;}
.wa{width:78.479972px;}
.w12{width:127.620000px;}
.w7{width:161.310000px;}
.wb{width:213.870000px;}
.w14{width:228.900000px;}
.w3{width:233.940000px;}
.w16{width:255.180000px;}
.w19{width:262.350000px;}
.we{width:263.280000px;}
.w1d{width:264.990000px;}
.w9{width:278.310000px;}
.wd{width:281.610000px;}
.w17{width:281.729972px;}
.w13{width:297.660000px;}
.w11{width:314.070000px;}
.wc{width:319.020000px;}
.w18{width:348.900000px;}
.w8{width:380.310000px;}
.w1b{width:386.250000px;}
.wf{width:478.500000px;}
.w15{width:488.310000px;}
.w2{width:499.740000px;}
.w10{width:741.510000px;}
.w5{width:882.569972px;}
.w1a{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x5{left:-32.040028px;}
.x6{left:-26.460028px;}
.x0{left:0.000000px;}
.x8{left:5.220000px;}
.xd{left:7.380000px;}
.xa{left:12.960000px;}
.xe{left:26.910000px;}
.x1c{left:34.740000px;}
.x7{left:62.640000px;}
.x11{left:78.480000px;}
.x1{left:85.050000px;}
.x17{left:86.130000px;}
.x24{left:89.189987px;}
.x16{left:103.049987px;}
.xb{left:122.400000px;}
.x18{left:130.710000px;}
.x13{left:146.370000px;}
.x1f{left:161.220000px;}
.x22{left:182.700000px;}
.xc{left:190.110000px;}
.x9{left:223.950000px;}
.x3{left:233.850000px;}
.x1d{left:255.180000px;}
.x10{left:273.090000px;}
.x1e{left:281.730000px;}
.x12{left:292.350000px;}
.x21{left:293.790000px;}
.x23{left:301.079987px;}
.x1b{left:315.390000px;}
.x15{left:348.330000px;}
.x19{left:398.670000px;}
.x25{left:472.380000px;}
.x4{left:491.730000px;}
.x1a{left:526.290000px;}
.x26{left:542.670000px;}
.x2{left:584.790000px;}
.xf{left:604.260000px;}
.x14{left:611.370000px;}
.x20{left:630.630000px;}
@media print{
.v4{vertical-align:-61.440000pt;}
.v1{vertical-align:-51.840000pt;}
.v3{vertical-align:-42.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls13{letter-spacing:-0.456533pt;}
.ls1c{letter-spacing:-0.272533pt;}
.ls1b{letter-spacing:-0.195733pt;}
.lsc{letter-spacing:-0.136533pt;}
.ls14{letter-spacing:-0.023680pt;}
.lsb{letter-spacing:-0.019520pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.080533pt;}
.ls3{letter-spacing:0.080640pt;}
.ls11{letter-spacing:0.124267pt;}
.ls19{letter-spacing:0.136533pt;}
.lsa{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.187307pt;}
.ls18{letter-spacing:45.160320pt;}
.ls6{letter-spacing:53.376000pt;}
.ls4{letter-spacing:66.602667pt;}
.ls7{letter-spacing:80.256000pt;}
.ls1a{letter-spacing:81.143680pt;}
.lsd{letter-spacing:151.920000pt;}
.ls17{letter-spacing:384.578347pt;}
.ls15{letter-spacing:386.711680pt;}
.ls0{letter-spacing:423.048320pt;}
.ls16{letter-spacing:590.978347pt;}
.lse{letter-spacing:1010.818347pt;}
.ws2{word-spacing:-58.560000pt;}
.ws6{word-spacing:-16.360213pt;}
.ws5{word-spacing:-16.320000pt;}
.ws3{word-spacing:-16.279680pt;}
.wsd{word-spacing:-15.016320pt;}
.wsc{word-spacing:-14.992853pt;}
.wsa{word-spacing:-14.980587pt;}
.wse{word-spacing:-14.903680pt;}
.ws7{word-spacing:-14.856320pt;}
.wsb{word-spacing:-14.832640pt;}
.ws8{word-spacing:-14.719787pt;}
.wsf{word-spacing:-14.660587pt;}
.ws11{word-spacing:-14.583787pt;}
.ws13{word-spacing:-13.344000pt;}
.ws12{word-spacing:-11.831680pt;}
.ws0{word-spacing:-10.568320pt;}
.ws1{word-spacing:-10.408320pt;}
.ws4{word-spacing:-10.391680pt;}
.ws10{word-spacing:-9.607680pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-15.151573pt;}
._3{margin-left:-13.704107pt;}
._9{margin-left:-12.110293pt;}
._8{margin-left:-8.790613pt;}
._7{margin-left:-5.777920pt;}
._6{margin-left:-4.339200pt;}
._a{margin-left:-3.218560pt;}
._4{margin-left:-2.306347pt;}
._1{margin-left:-1.123200pt;}
._2{width:0.911787pt;}
._14{width:2.672000pt;}
._25{width:3.687360pt;}
._1a{width:4.922453pt;}
._f{width:5.873387pt;}
._10{width:7.010667pt;}
._1b{width:8.380053pt;}
._18{width:9.298560pt;}
._19{width:10.631253pt;}
._e{width:11.733227pt;}
._d{width:12.985920pt;}
._23{width:13.894400pt;}
._12{width:15.871680pt;}
._2b{width:17.207680pt;}
._13{width:18.116160pt;}
._34{width:19.131520pt;}
._28{width:20.307200pt;}
._20{width:21.696640pt;}
._32{width:22.658560pt;}
._2f{width:24.321067pt;}
._37{width:26.078720pt;}
._24{width:27.254400pt;}
._1c{width:28.269760pt;}
._1e{width:29.248320pt;}
._31{width:30.390720pt;}
._16{width:31.307627pt;}
._15{width:32.224320pt;}
._1f{width:34.041280pt;}
._26{width:35.110080pt;}
._17{width:36.408747pt;}
._1d{width:37.343573pt;}
._3a{width:39.118080pt;}
._4f{width:40.133440pt;}
._45{width:41.255680pt;}
._46{width:42.240747pt;}
._3d{width:43.393280pt;}
._33{width:44.355200pt;}
._22{width:45.637760pt;}
._c{width:46.954667pt;}
._41{width:47.935680pt;}
._27{width:49.164800pt;}
._35{width:50.126720pt;}
._39{width:51.836800pt;}
._b{width:53.123627pt;}
._21{width:55.346453pt;}
._11{width:56.610347pt;}
._3b{width:57.697813pt;}
._30{width:60.120000pt;}
._40{width:61.295680pt;}
._43{width:62.792000pt;}
._2d{width:65.303680pt;}
._2e{width:66.265600pt;}
._4b{width:69.846080pt;}
._47{width:72.571520pt;}
._4d{width:75.991680pt;}
._4a{width:76.900160pt;}
._38{width:77.862080pt;}
._2a{width:79.892800pt;}
._49{width:86.626240pt;}
._2c{width:94.428480pt;}
._50{width:101.813227pt;}
._3e{width:109.284800pt;}
._4e{width:111.956800pt;}
._48{width:126.652800pt;}
._44{width:128.362880pt;}
._51{width:147.440960pt;}
._3f{width:155.346347pt;}
._42{width:157.808320pt;}
._36{width:168.015360pt;}
._3c{width:179.665280pt;}
._29{width:199.064000pt;}
._4c{width:268.642880pt;}
._0{width:504.026667pt;}
.fs5{font-size:5.440000pt;}
.fs3{font-size:10.560000pt;}
.fsa{font-size:26.560000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.560000pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.000000pt;}
.y9{bottom:2.800000pt;}
.y82{bottom:3.680000pt;}
.y2{bottom:3.760000pt;}
.y52{bottom:4.160000pt;}
.y26{bottom:4.720000pt;}
.y14e{bottom:6.480000pt;}
.y14c{bottom:6.560000pt;}
.y24{bottom:6.640000pt;}
.y21{bottom:7.600000pt;}
.y22{bottom:7.920000pt;}
.y35{bottom:9.280000pt;}
.y2f{bottom:10.720000pt;}
.y32{bottom:10.800000pt;}
.y39{bottom:11.120000pt;}
.y36{bottom:12.240000pt;}
.y4{bottom:12.400000pt;}
.y8b{bottom:12.720000pt;}
.y1e{bottom:13.440000pt;}
.yc{bottom:14.960000pt;}
.y146{bottom:16.400000pt;}
.y66{bottom:18.080000pt;}
.y116{bottom:18.106667pt;}
.y8{bottom:18.160000pt;}
.y51{bottom:18.640000pt;}
.yac{bottom:18.720000pt;}
.y87{bottom:18.800000pt;}
.yd4{bottom:18.826667pt;}
.y81{bottom:19.040000pt;}
.y9d{bottom:19.920000pt;}
.y25{bottom:20.000000pt;}
.y14b{bottom:20.400000pt;}
.y8a{bottom:23.440000pt;}
.y1d{bottom:24.160000pt;}
.y7e{bottom:26.080000pt;}
.y86{bottom:26.160000pt;}
.y14f{bottom:26.320000pt;}
.y150{bottom:27.200000pt;}
.y50{bottom:29.360000pt;}
.y15{bottom:30.320000pt;}
.y2e{bottom:30.400000pt;}
.y31{bottom:30.480000pt;}
.y145{bottom:31.680000pt;}
.y38{bottom:32.000000pt;}
.y20{bottom:32.480000pt;}
.y65{bottom:33.440000pt;}
.y115{bottom:33.466667pt;}
.y7{bottom:33.520000pt;}
.y10a{bottom:33.546667pt;}
.yab{bottom:34.080000pt;}
.y12e{bottom:34.160000pt;}
.yd3{bottom:34.186667pt;}
.y89{bottom:34.240000pt;}
.y5f{bottom:34.320000pt;}
.y80{bottom:34.400000pt;}
.y1c{bottom:34.880000pt;}
.y9c{bottom:35.280000pt;}
.y3a{bottom:36.000000pt;}
.y139{bottom:36.160000pt;}
.y4f{bottom:40.400000pt;}
.y14{bottom:41.040000pt;}
.y85{bottom:41.520000pt;}
.yb4{bottom:42.160000pt;}
.y1b{bottom:45.600000pt;}
.yc2{bottom:46.080000pt;}
.y144{bottom:47.920000pt;}
.y14a{bottom:48.000000pt;}
.y112{bottom:48.720000pt;}
.y6{bottom:48.800000pt;}
.ye7{bottom:48.826667pt;}
.y7d{bottom:49.440000pt;}
.yd2{bottom:49.466667pt;}
.y64{bottom:49.680000pt;}
.y5e{bottom:50.560000pt;}
.yf0{bottom:51.520000pt;}
.y13{bottom:51.760000pt;}
.y1f{bottom:54.480000pt;}
.yd{bottom:55.680000pt;}
.y1a{bottom:56.320000pt;}
.y84{bottom:56.800000pt;}
.yc1{bottom:61.440000pt;}
.y12{bottom:62.480000pt;}
.y143{bottom:63.280000pt;}
.ya6{bottom:64.080000pt;}
.y114{bottom:64.106667pt;}
.ya8{bottom:64.160000pt;}
.ye6{bottom:64.186667pt;}
.y7c{bottom:64.800000pt;}
.yd1{bottom:64.826667pt;}
.yb3{bottom:65.440000pt;}
.y12d{bottom:65.466667pt;}
.y5d{bottom:65.920000pt;}
.y138{bottom:66.880000pt;}
.y19{bottom:67.040000pt;}
.yef{bottom:67.760000pt;}
.y59{bottom:68.640000pt;}
.y11{bottom:73.200000pt;}
.yc0{bottom:76.720000pt;}
.y18{bottom:77.840000pt;}
.ya5{bottom:79.440000pt;}
.ye5{bottom:79.466667pt;}
.yc5{bottom:79.520000pt;}
.yf2{bottom:79.546667pt;}
.ycb{bottom:80.080000pt;}
.yaa{bottom:80.106667pt;}
.y8d{bottom:80.160000pt;}
.yd0{bottom:80.186667pt;}
.y13d{bottom:80.400000pt;}
.yb2{bottom:80.800000pt;}
.y5c{bottom:81.280000pt;}
.y63{bottom:82.160000pt;}
.y10{bottom:83.920000pt;}
.yee{bottom:84.000000pt;}
.y7b{bottom:88.080000pt;}
.y17{bottom:88.560000pt;}
.y83{bottom:89.520000pt;}
.yf6{bottom:90.080000pt;}
.y10e{bottom:90.240000pt;}
.yc8{bottom:91.120000pt;}
.yda{bottom:92.400000pt;}
.ybf{bottom:92.960000pt;}
.ye{bottom:93.920000pt;}
.ye2{bottom:94.720000pt;}
.ya4{bottom:94.800000pt;}
.ye4{bottom:94.826667pt;}
.yf{bottom:95.440000pt;}
.ycf{bottom:95.466667pt;}
.y13c{bottom:95.760000pt;}
.yb1{bottom:96.160000pt;}
.y12c{bottom:96.826667pt;}
.y5b{bottom:97.520000pt;}
.y62{bottom:98.320000pt;}
.y16{bottom:99.280000pt;}
.yed{bottom:100.240000pt;}
.yf5{bottom:102.320000pt;}
.y7a{bottom:103.440000pt;}
.y12f{bottom:105.280000pt;}
.ybe{bottom:108.320000pt;}
.ya3{bottom:110.080000pt;}
.yc4{bottom:110.160000pt;}
.ydb{bottom:110.186667pt;}
.yad{bottom:110.800000pt;}
.y13b{bottom:111.920000pt;}
.y12b{bottom:112.186667pt;}
.y96{bottom:112.800000pt;}
.y137{bottom:112.880000pt;}
.y5a{bottom:113.680000pt;}
.y61{bottom:114.560000pt;}
.y58{bottom:114.640000pt;}
.yec{bottom:116.480000pt;}
.yf4{bottom:118.640000pt;}
.y79{bottom:118.800000pt;}
.y10d{bottom:121.520000pt;}
.y156{bottom:122.080000pt;}
.ya9{bottom:124.000000pt;}
.ybd{bottom:124.560000pt;}
.ya2{bottom:125.440000pt;}
.y109{bottom:125.546667pt;}
.y13a{bottom:127.280000pt;}
.yf3{bottom:127.520000pt;}
.y12a{bottom:127.546667pt;}
.y136{bottom:128.160000pt;}
.y95{bottom:129.040000pt;}
.y57{bottom:129.920000pt;}
.yeb{bottom:131.760000pt;}
.yc7{bottom:137.760000pt;}
.ybc{bottom:139.840000pt;}
.y101{bottom:140.720000pt;}
.ya1{bottom:140.800000pt;}
.y108{bottom:140.826667pt;}
.y10c{bottom:140.880000pt;}
.y78{bottom:142.080000pt;}
.y129{bottom:142.826667pt;}
.y135{bottom:143.520000pt;}
.y94{bottom:144.400000pt;}
.y155{bottom:145.760000pt;}
.yf1{bottom:149.440000pt;}
.y11a{bottom:151.920000pt;}
.ya0{bottom:156.080000pt;}
.y107{bottom:156.186667pt;}
.y77{bottom:157.440000pt;}
.y10b{bottom:158.720000pt;}
.y134{bottom:158.880000pt;}
.y7f{bottom:159.520000pt;}
.y93{bottom:159.680000pt;}
.yb{bottom:163.680000pt;}
.y154{bottom:170.320000pt;}
.y9f{bottom:171.440000pt;}
.y106{bottom:171.920000pt;}
.y128{bottom:174.186667pt;}
.y92{bottom:175.040000pt;}
.y76{bottom:180.720000pt;}
.y100{bottom:186.720000pt;}
.ybb{bottom:186.800000pt;}
.y127{bottom:189.546667pt;}
.y91{bottom:190.400000pt;}
.y153{bottom:193.600000pt;}
.y75{bottom:196.080000pt;}
.yc6{bottom:199.786667pt;}
.yba{bottom:202.080000pt;}
.y126{bottom:204.826667pt;}
.y90{bottom:205.680000pt;}
.y67{bottom:207.146667pt;}
.y152{bottom:208.986667pt;}
.y74{bottom:211.440000pt;}
.yd9{bottom:215.786667pt;}
.ya7{bottom:217.306667pt;}
.yff{bottom:217.440000pt;}
.yb9{bottom:217.466667pt;}
.y8f{bottom:221.040000pt;}
.y73{bottom:226.720000pt;}
.y151{bottom:232.346667pt;}
.yfe{bottom:232.720000pt;}
.y125{bottom:236.106667pt;}
.y72{bottom:242.080000pt;}
.y14d{bottom:245.546667pt;}
.yc3{bottom:246.426667pt;}
.yfd{bottom:248.080000pt;}
.y124{bottom:251.466667pt;}
.y71{bottom:257.440000pt;}
.yea{bottom:257.466667pt;}
.y4d{bottom:261.066667pt;}
.yfc{bottom:263.440000pt;}
.y123{bottom:266.826667pt;}
.y70{bottom:272.720000pt;}
.y4c{bottom:276.746667pt;}
.yfb{bottom:278.720000pt;}
.y122{bottom:282.186667pt;}
.y11e{bottom:282.826667pt;}
.y6f{bottom:288.080000pt;}
.y4b{bottom:293.626667pt;}
.yfa{bottom:294.080000pt;}
.y9e{bottom:294.666667pt;}
.y121{bottom:297.466667pt;}
.y11d{bottom:298.186667pt;}
.y6e{bottom:303.440000pt;}
.y149{bottom:309.386667pt;}
.yf9{bottom:309.440000pt;}
.y4a{bottom:310.426667pt;}
.y120{bottom:312.826667pt;}
.y11c{bottom:313.466667pt;}
.y6d{bottom:318.720000pt;}
.yf8{bottom:324.720000pt;}
.y49{bottom:327.306667pt;}
.y11b{bottom:328.826667pt;}
.y6c{bottom:334.080000pt;}
.y105{bottom:341.306667pt;}
.y11f{bottom:344.106667pt;}
.y48{bottom:344.186667pt;}
.y6b{bottom:349.440000pt;}
.y47{bottom:361.066667pt;}
.y6a{bottom:364.720000pt;}
.yb8{bottom:369.786667pt;}
.y46{bottom:377.626667pt;}
.y69{bottom:380.106667pt;}
.y148{bottom:385.226667pt;}
.y45{bottom:392.906667pt;}
.y68{bottom:395.466667pt;}
.ye9{bottom:402.426667pt;}
.y44{bottom:408.266667pt;}
.y147{bottom:414.666667pt;}
.yd8{bottom:415.786667pt;}
.y43{bottom:423.626667pt;}
.yd7{bottom:434.586667pt;}
.y42{bottom:439.226667pt;}
.y142{bottom:440.826667pt;}
.yd6{bottom:451.146667pt;}
.y41{bottom:456.106667pt;}
.yd5{bottom:464.346667pt;}
.ye8{bottom:464.426667pt;}
.y40{bottom:472.986667pt;}
.y9b{bottom:479.306667pt;}
.y3f{bottom:497.466667pt;}
.y119{bottom:509.306667pt;}
.y3e{bottom:521.386667pt;}
.ye3{bottom:526.426667pt;}
.y9a{bottom:527.786667pt;}
.y118{bottom:528.666667pt;}
.y104{bottom:541.306667pt;}
.y117{bottom:546.506667pt;}
.y99{bottom:546.586667pt;}
.y3d{bottom:547.786667pt;}
.y141{bottom:548.826667pt;}
.y113{bottom:559.706667pt;}
.y103{bottom:560.666667pt;}
.y98{bottom:563.706667pt;}
.y140{bottom:568.186667pt;}
.yce{bottom:572.346667pt;}
.y3c{bottom:574.213333pt;}
.y102{bottom:578.533333pt;}
.y97{bottom:581.573333pt;}
.y13f{bottom:586.053333pt;}
.yf7{bottom:591.733333pt;}
.y8e{bottom:594.773333pt;}
.y13e{bottom:599.253333pt;}
.yb7{bottom:600.453333pt;}
.y3b{bottom:600.613333pt;}
.y60{bottom:615.813333pt;}
.y37{bottom:623.653333pt;}
.yb6{bottom:632.453333pt;}
.ye1{bottom:649.813333pt;}
.y111{bottom:667.733333pt;}
.y34{bottom:673.413333pt;}
.ycd{bottom:681.013333pt;}
.y133{bottom:691.893333pt;}
.y33{bottom:700.453333pt;}
.yb5{bottom:709.733333pt;}
.y30{bottom:748.613333pt;}
.y56{bottom:758.933333pt;}
.y110{bottom:760.373333pt;}
.yb0{bottom:771.733333pt;}
.ye0{bottom:788.453333pt;}
.y2d{bottom:796.853333pt;}
.ycc{bottom:804.373333pt;}
.ydf{bottom:807.253333pt;}
.yde{bottom:823.813333pt;}
.y8c{bottom:829.013333pt;}
.yca{bottom:836.373333pt;}
.ydd{bottom:837.013333pt;}
.y2c{bottom:855.813333pt;}
.y132{bottom:863.973333pt;}
.y2b{bottom:871.253333pt;}
.y4e{bottom:881.093333pt;}
.y131{bottom:883.333333pt;}
.y10f{bottom:883.653333pt;}
.y2a{bottom:894.453333pt;}
.y130{bottom:901.173333pt;}
.y55{bottom:902.053333pt;}
.yaf{bottom:913.093333pt;}
.ydc{bottom:914.373333pt;}
.y29{bottom:917.813333pt;}
.y54{bottom:921.413333pt;}
.yc9{bottom:929.653333pt;}
.yae{bottom:931.893333pt;}
.y28{bottom:933.253333pt;}
.y53{bottom:940.453333pt;}
.y27{bottom:948.080000pt;}
.y88{bottom:948.560000pt;}
.ya{bottom:958.560000pt;}
.y3{bottom:961.040000pt;}
.y5{bottom:985.680000pt;}
.y1{bottom:1047.040000pt;}
.hf{height:5.591463pt;}
.h9{height:10.854016pt;}
.h25{height:15.280000pt;}
.h1d{height:15.360000pt;}
.h2{height:18.800000pt;}
.h10{height:21.680000pt;}
.h7{height:24.640000pt;}
.ha{height:24.960000pt;}
.h16{height:27.040000pt;}
.h3c{height:27.701250pt;}
.h37{height:30.640000pt;}
.h32{height:31.280000pt;}
.h2a{height:31.360000pt;}
.h1b{height:38.080000pt;}
.he{height:38.482420pt;}
.hc{height:38.975625pt;}
.hd{height:39.048750pt;}
.h2d{height:39.062344pt;}
.h22{height:42.960000pt;}
.h13{height:43.744973pt;}
.h8{height:44.388750pt;}
.h30{height:46.000000pt;}
.h20{height:46.906667pt;}
.h26{height:47.760000pt;}
.h14{height:48.160000pt;}
.h15{height:48.240000pt;}
.h17{height:49.760000pt;}
.h45{height:50.062500pt;}
.h12{height:54.927899pt;}
.h6{height:55.736250pt;}
.h11{height:61.076250pt;}
.h5{height:61.360000pt;}
.h44{height:63.200000pt;}
.h18{height:63.656250pt;}
.h3{height:66.750000pt;}
.h21{height:69.360000pt;}
.h19{height:70.426667pt;}
.h2c{height:76.640000pt;}
.h28{height:76.720000pt;}
.h1c{height:77.763750pt;}
.h3f{height:91.920000pt;}
.h43{height:92.000000pt;}
.h31{height:92.640000pt;}
.h29{height:92.666667pt;}
.h4{height:104.800000pt;}
.h40{height:107.306667pt;}
.h34{height:107.360000pt;}
.h3b{height:107.386667pt;}
.hb{height:108.000000pt;}
.h33{height:108.026667pt;}
.h2b{height:108.720000pt;}
.h23{height:116.000000pt;}
.h2f{height:122.640000pt;}
.h39{height:122.666667pt;}
.h36{height:122.746667pt;}
.h1a{height:133.500000pt;}
.h38{height:137.920000pt;}
.h1e{height:142.480000pt;}
.h3a{height:144.320000pt;}
.h3e{height:168.746667pt;}
.h42{height:171.360000pt;}
.h27{height:184.000000pt;}
.h35{height:199.280000pt;}
.h2e{height:230.026667pt;}
.h24{height:233.600000pt;}
.h3d{height:337.280000pt;}
.h41{height:356.666667pt;}
.h1f{height:407.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:55.679975pt;}
.w1c{width:61.840000pt;}
.wa{width:69.759975pt;}
.w12{width:113.440000pt;}
.w7{width:143.386667pt;}
.wb{width:190.106667pt;}
.w14{width:203.466667pt;}
.w3{width:207.946667pt;}
.w16{width:226.826667pt;}
.w19{width:233.200000pt;}
.we{width:234.026667pt;}
.w1d{width:235.546667pt;}
.w9{width:247.386667pt;}
.wd{width:250.320000pt;}
.w17{width:250.426642pt;}
.w13{width:264.586667pt;}
.w11{width:279.173333pt;}
.wc{width:283.573333pt;}
.w18{width:310.133333pt;}
.w8{width:338.053333pt;}
.w1b{width:343.333333pt;}
.wf{width:425.333333pt;}
.w15{width:434.053333pt;}
.w2{width:444.213333pt;}
.w10{width:659.120000pt;}
.w5{width:784.506642pt;}
.w1a{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x5{left:-28.480025pt;}
.x6{left:-23.520025pt;}
.x0{left:0.000000pt;}
.x8{left:4.640000pt;}
.xd{left:6.560000pt;}
.xa{left:11.520000pt;}
.xe{left:23.920000pt;}
.x1c{left:30.880000pt;}
.x7{left:55.680000pt;}
.x11{left:69.760000pt;}
.x1{left:75.600000pt;}
.x17{left:76.560000pt;}
.x24{left:79.279988pt;}
.x16{left:91.599988pt;}
.xb{left:108.800000pt;}
.x18{left:116.186667pt;}
.x13{left:130.106667pt;}
.x1f{left:143.306667pt;}
.x22{left:162.400000pt;}
.xc{left:168.986667pt;}
.x9{left:199.066667pt;}
.x3{left:207.866667pt;}
.x1d{left:226.826667pt;}
.x10{left:242.746667pt;}
.x1e{left:250.426667pt;}
.x12{left:259.866667pt;}
.x21{left:261.146667pt;}
.x23{left:267.626655pt;}
.x1b{left:280.346667pt;}
.x15{left:309.626667pt;}
.x19{left:354.373333pt;}
.x25{left:419.893333pt;}
.x4{left:437.093333pt;}
.x1a{left:467.813333pt;}
.x26{left:482.373333pt;}
.x2{left:519.813333pt;}
.xf{left:537.120000pt;}
.x14{left:543.440000pt;}
.x20{left:560.560000pt;}
}




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