
    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_701b906e6e9354791f7b298d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117188;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_f6867a2696cf7e259e49fbeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_937937081a6f814e4849256c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5693485a06dd45abc5caa890.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7e18b5f97577dda9665a4fed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_042368f6911903490e3eb94e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117188;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_8030ee21f830baaf6284bf43.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cbef271fb7f5b3f8b4781a2f.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_81f7c0fa876307a04e4d1a05.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls28{letter-spacing:-15.840000px;}
.ls29{letter-spacing:-12.780000px;}
.ls11{letter-spacing:-0.936000px;}
.ls3d{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.460200px;}
.ls24{letter-spacing:-0.450600px;}
.lsf{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls3c{letter-spacing:-0.100200px;}
.ls34{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.018000px;}
.ls2f{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.106560px;}
.ls32{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.206400px;}
.ls37{letter-spacing:0.259800px;}
.ls2e{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.269400px;}
.ls1e{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.379920px;}
.ls1f{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.439920px;}
.ls22{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.684000px;}
.ls2b{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.738000px;}
.ls27{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.340000px;}
.ls15{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.780000px;}
.ls18{letter-spacing:3.960000px;}
.ls16{letter-spacing:4.320000px;}
.ls17{letter-spacing:4.500000px;}
.ls20{letter-spacing:5.760000px;}
.ls31{letter-spacing:5.940000px;}
.ls21{letter-spacing:6.480000px;}
.ls2{letter-spacing:8.640000px;}
.ls1a{letter-spacing:11.700000px;}
.ls36{letter-spacing:22.500000px;}
.ls0{letter-spacing:24.480000px;}
.ls3b{letter-spacing:35.460000px;}
.ls26{letter-spacing:37.440000px;}
.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;}
}
.ws19{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws1d{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.238800px;}
.ws23{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.146400px;}
.ws21{word-spacing:-15.120000px;}
.ws22{word-spacing:-15.046800px;}
.ws1f{word-spacing:-14.993280px;}
.ws1b{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.886720px;}
.ws26{word-spacing:-14.839800px;}
.ws25{word-spacing:-14.680200px;}
.ws24{word-spacing:-14.479800px;}
.ws29{word-spacing:-14.400000px;}
.ws28{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.608000px;}
.ws10{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.392000px;}
.ws17{word-spacing:-13.374000px;}
.ws16{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.888000px;}
.ws7{word-spacing:-12.329400px;}
.ws15{word-spacing:-11.609400px;}
.ws1e{word-spacing:-9.737280px;}
.ws1a{word-spacing:-9.720000px;}
.ws18{word-spacing:-9.072000px;}
.ws12{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._1b{margin-left:-1556.904000px;}
._1a{margin-left:-1539.660000px;}
._19{margin-left:-343.440000px;}
._5{margin-left:-4.320000px;}
._6{margin-left:-2.664000px;}
._1{margin-left:-1.188000px;}
._0{width:1.164000px;}
._3{width:2.712000px;}
._14{width:4.104000px;}
._c{width:5.232000px;}
._13{width:6.888000px;}
._f{width:7.896000px;}
._8{width:9.000000px;}
._9{width:10.080000px;}
._a{width:11.160000px;}
._b{width:13.056000px;}
._2{width:14.688000px;}
._15{width:16.326000px;}
._2b{width:18.051120px;}
._17{width:19.632000px;}
._24{width:20.712000px;}
._1c{width:21.720000px;}
._4{width:22.824000px;}
._28{width:23.904000px;}
._e{width:25.068000px;}
._d{width:26.316000px;}
._10{width:27.324000px;}
._7{width:28.440000px;}
._26{width:29.736000px;}
._29{width:30.840000px;}
._2a{width:32.328000px;}
._1f{width:33.552000px;}
._20{width:34.572000px;}
._1d{width:36.360000px;}
._1e{width:37.512000px;}
._23{width:38.796000px;}
._27{width:40.104000px;}
._11{width:42.048000px;}
._12{width:43.164000px;}
._25{width:47.196000px;}
._21{width:50.040000px;}
._22{width:51.756000px;}
._18{width:151.896000px;}
._16{width:582.096000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.160000px;}
.y5a{bottom:57.600000px;}
.y2{bottom:72.360000px;}
.y59{bottom:77.760000px;}
.y38{bottom:130.320000px;}
.y37{bottom:145.800000px;}
.yc0{bottom:148.860000px;}
.ye2{bottom:150.120000px;}
.y110{bottom:161.280000px;}
.y36{bottom:161.460000px;}
.ya7{bottom:165.960000px;}
.ye1{bottom:167.400000px;}
.ybf{bottom:169.560000px;}
.y35{bottom:176.970000px;}
.ybc{bottom:178.590000px;}
.y58{bottom:181.470000px;}
.ye0{bottom:184.710000px;}
.ybe{bottom:190.290000px;}
.y34{bottom:192.450000px;}
.y10f{bottom:195.870000px;}
.y8e{bottom:196.950000px;}
.ybb{bottom:199.290000px;}
.ydf{bottom:201.990000px;}
.y33{bottom:207.930000px;}
.y32{bottom:212.430000px;}
.y10e{bottom:212.970000px;}
.yde{bottom:219.270000px;}
.yba{bottom:219.990000px;}
.y31{bottom:223.590000px;}
.yb5{bottom:228.090000px;}
.y10d{bottom:230.250000px;}
.ydd{bottom:236.370000px;}
.y30{bottom:239.070000px;}
.yb4{bottom:240.690000px;}
.y10c{bottom:247.530000px;}
.ydc{bottom:253.650000px;}
.y2f{bottom:254.550000px;}
.y8d{bottom:259.050000px;}
.yb3{bottom:261.390000px;}
.y10b{bottom:264.810000px;}
.y2e{bottom:270.030000px;}
.ydb{bottom:270.930000px;}
.ya6{bottom:271.290000px;}
.y2d{bottom:274.530000px;}
.yb2{bottom:282.090000px;}
.y2c{bottom:285.690000px;}
.ya5{bottom:288.030000px;}
.yda{bottom:288.210000px;}
.ya4{bottom:292.530000px;}
.y10a{bottom:299.370000px;}
.y2b{bottom:301.170000px;}
.yb1{bottom:302.790000px;}
.ya3{bottom:303.690000px;}
.yd9{bottom:305.490000px;}
.y109{bottom:316.470000px;}
.y2a{bottom:316.650000px;}
.ya2{bottom:319.170000px;}
.y29{bottom:321.150000px;}
.yd8{bottom:322.770000px;}
.yb0{bottom:323.490000px;}
.y28{bottom:332.130000px;}
.y108{bottom:333.750000px;}
.ya1{bottom:334.650000px;}
.yd7{bottom:339.870000px;}
.yb9{bottom:344.190000px;}
.y27{bottom:347.790000px;}
.ya0{bottom:350.130000px;}
.y107{bottom:351.030000px;}
.y26{bottom:352.290000px;}
.yaf{bottom:353.190000px;}
.yd6{bottom:357.150000px;}
.y57{bottom:363.270000px;}
.y25{bottom:364.890000px;}
.y9f{bottom:365.790000px;}
.y8c{bottom:367.770000px;}
.y106{bottom:368.310000px;}
.yae{bottom:373.890000px;}
.yd5{bottom:374.430000px;}
.y56{bottom:378.750000px;}
.y9e{bottom:381.270000px;}
.yb8{bottom:385.590000px;}
.yd4{bottom:391.710000px;}
.y55{bottom:394.275000px;}
.yad{bottom:394.635000px;}
.y9d{bottom:396.795000px;}
.y23{bottom:399.135000px;}
.y105{bottom:402.915000px;}
.y24{bottom:405.975000px;}
.yb7{bottom:406.335000px;}
.yd3{bottom:409.035000px;}
.y54{bottom:409.935000px;}
.y9c{bottom:412.275000px;}
.yac{bottom:415.335000px;}
.y22{bottom:419.835000px;}
.y104{bottom:420.015000px;}
.y53{bottom:425.415000px;}
.yd2{bottom:426.315000px;}
.yb6{bottom:427.035000px;}
.y9b{bottom:427.935000px;}
.y9a{bottom:432.435000px;}
.yab{bottom:436.035000px;}
.y103{bottom:437.295000px;}
.y21{bottom:440.535000px;}
.y7b{bottom:440.895000px;}
.y52{bottom:442.515000px;}
.yd1{bottom:443.415000px;}
.y99{bottom:445.035000px;}
.ybd{bottom:447.735000px;}
.y102{bottom:454.575000px;}
.y7a{bottom:456.375000px;}
.yaa{bottom:456.735000px;}
.yd0{bottom:460.695000px;}
.y8b{bottom:460.875000px;}
.y20{bottom:461.235000px;}
.y98{bottom:468.435000px;}
.y101{bottom:471.855000px;}
.y79{bottom:472.035000px;}
.y8a{bottom:473.475000px;}
.y50{bottom:477.435000px;}
.ycf{bottom:477.975000px;}
.y51{bottom:484.275000px;}
.y78{bottom:487.515000px;}
.y96{bottom:488.955000px;}
.y100{bottom:489.135000px;}
.y1e{bottom:490.935000px;}
.yce{bottom:495.255000px;}
.y97{bottom:495.795000px;}
.y1f{bottom:497.775000px;}
.y4f{bottom:497.955000px;}
.y77{bottom:502.995000px;}
.yff{bottom:506.235000px;}
.y95{bottom:509.655000px;}
.y1d{bottom:511.635000px;}
.ycd{bottom:512.535000px;}
.y76{bottom:518.475000px;}
.y4e{bottom:518.655000px;}
.yfe{bottom:523.515000px;}
.ycc{bottom:529.635000px;}
.y94{bottom:530.355000px;}
.y1b{bottom:532.335000px;}
.y75{bottom:534.135000px;}
.y1c{bottom:539.175000px;}
.y4d{bottom:539.355000px;}
.yfd{bottom:540.795000px;}
.ycb{bottom:546.915000px;}
.y74{bottom:549.615000px;}
.y89{bottom:551.055000px;}
.y19{bottom:553.035000px;}
.y73{bottom:554.115000px;}
.yfc{bottom:558.075000px;}
.y1a{bottom:559.875000px;}
.y4c{bottom:560.055000px;}
.yca{bottom:564.195000px;}
.y72{bottom:565.095000px;}
.y88{bottom:571.755000px;}
.y18{bottom:573.735000px;}
.yfb{bottom:575.355000px;}
.y71{bottom:580.575000px;}
.y4b{bottom:580.755000px;}
.yc9{bottom:581.475000px;}
.y87{bottom:592.455000px;}
.yfa{bottom:592.635000px;}
.y17{bottom:594.435000px;}
.y70{bottom:596.235000px;}
.yc8{bottom:598.755000px;}
.y4a{bottom:601.455000px;}
.yf9{bottom:609.735000px;}
.y6f{bottom:611.745000px;}
.y86{bottom:613.185000px;}
.y16{bottom:614.985000px;}
.yc7{bottom:616.065000px;}
.y6e{bottom:616.245000px;}
.y93{bottom:620.025000px;}
.y49{bottom:622.185000px;}
.yf8{bottom:627.045000px;}
.y6d{bottom:627.225000px;}
.yc6{bottom:633.165000px;}
.y85{bottom:633.885000px;}
.y15{bottom:635.685000px;}
.y6c{bottom:642.705000px;}
.y48{bottom:642.885000px;}
.yf7{bottom:644.325000px;}
.yc5{bottom:650.445000px;}
.y92{bottom:654.585000px;}
.y14{bottom:656.385000px;}
.y6b{bottom:658.185000px;}
.yf6{bottom:661.605000px;}
.y47{bottom:663.585000px;}
.yc4{bottom:667.725000px;}
.y6a{bottom:673.845000px;}
.y13{bottom:677.085000px;}
.yf5{bottom:678.885000px;}
.y46{bottom:684.285000px;}
.yc3{bottom:685.005000px;}
.y69{bottom:689.325000px;}
.yf4{bottom:696.165000px;}
.y12{bottom:697.785000px;}
.yc2{bottom:702.285000px;}
.y68{bottom:704.805000px;}
.y45{bottom:704.985000px;}
.y84{bottom:711.825000px;}
.yf3{bottom:713.265000px;}
.y11{bottom:718.485000px;}
.yc1{bottom:719.565000px;}
.y67{bottom:720.285000px;}
.y44{bottom:725.685000px;}
.yf2{bottom:730.545000px;}
.ya9{bottom:734.685000px;}
.y66{bottom:735.945000px;}
.y10{bottom:739.185000px;}
.y43{bottom:746.385000px;}
.yf1{bottom:747.825000px;}
.y65{bottom:751.425000px;}
.y83{bottom:753.225000px;}
.ya8{bottom:755.385000px;}
.yf{bottom:759.885000px;}
.yf0{bottom:765.105000px;}
.y64{bottom:766.905000px;}
.y81{bottom:767.085000px;}
.y82{bottom:773.925000px;}
.y42{bottom:776.085000px;}
.ye{bottom:780.585000px;}
.y63{bottom:782.385000px;}
.y80{bottom:787.785000px;}
.y41{bottom:796.785000px;}
.y62{bottom:799.485000px;}
.yef{bottom:799.665000px;}
.yd{bottom:801.285000px;}
.y7f{bottom:808.485000px;}
.yee{bottom:816.765000px;}
.y40{bottom:817.485000px;}
.yc{bottom:821.985000px;}
.y7e{bottom:829.230000px;}
.yed{bottom:834.090000px;}
.y3f{bottom:838.230000px;}
.yb{bottom:842.730000px;}
.y60{bottom:849.930000px;}
.yec{bottom:851.370000px;}
.y61{bottom:856.770000px;}
.y3e{bottom:858.930000px;}
.ya{bottom:863.430000px;}
.y7d{bottom:865.770000px;}
.yeb{bottom:868.650000px;}
.y5e{bottom:870.630000px;}
.y5f{bottom:877.470000px;}
.y3d{bottom:879.630000px;}
.yea{bottom:885.930000px;}
.y5d{bottom:891.330000px;}
.y9{bottom:892.770000px;}
.y3c{bottom:900.330000px;}
.ye9{bottom:903.030000px;}
.y8{bottom:911.850000px;}
.y5c{bottom:912.030000px;}
.ye8{bottom:920.310000px;}
.y3b{bottom:921.030000px;}
.y7{bottom:932.730000px;}
.ye7{bottom:937.590000px;}
.y91{bottom:939.570000px;}
.y3a{bottom:941.730000px;}
.y5b{bottom:948.570000px;}
.y90{bottom:953.430000px;}
.ye6{bottom:954.870000px;}
.y6{bottom:962.430000px;}
.ye5{bottom:972.150000px;}
.y5{bottom:983.130000px;}
.ye4{bottom:989.430000px;}
.y8f{bottom:989.970000px;}
.y4{bottom:1003.830000px;}
.ye3{bottom:1006.530000px;}
.y7c{bottom:1010.670000px;}
.y1{bottom:1078.380000px;}
.y39{bottom:1082.520000px;}
.hb{height:32.273438px;}
.hf{height:38.100586px;}
.h8{height:43.246406px;}
.h3{height:48.410156px;}
.hc{height:48.673828px;}
.he{height:50.273438px;}
.h5{height:50.800781px;}
.h4{height:50.992031px;}
.h14{height:53.573906px;}
.h15{height:53.865703px;}
.hd{height:55.291992px;}
.h13{height:55.735313px;}
.h7{height:59.383125px;}
.h6{height:64.546875px;}
.h2{height:64.898438px;}
.ha{height:65.884219px;}
.h9{height:70.606406px;}
.h10{height:71.613281px;}
.h11{height:75.519844px;}
.h12{height:96.820312px;}
.h0{height:1148.220000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w3{width:808.019976px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x1{left:127.655988px;}
.x11{left:132.155988px;}
.x1f{left:136.655988px;}
.x2{left:146.555988px;}
.x7{left:170.129988px;}
.x28{left:180.749988px;}
.xc{left:198.569976px;}
.xd{left:204.689988px;}
.x12{left:246.809976px;}
.x6{left:250.049988px;}
.x13{left:252.974988px;}
.x5{left:258.014988px;}
.x3{left:279.614988px;}
.x26{left:308.054976px;}
.x27{left:320.294988px;}
.x4{left:331.634988px;}
.x10{left:343.694988px;}
.x1d{left:378.434976px;}
.x1e{left:390.674988px;}
.x15{left:431.744976px;}
.x16{left:437.864988px;}
.xa{left:448.844976px;}
.xb{left:454.964988px;}
.x17{left:462.344976px;}
.x18{left:468.464988px;}
.x19{left:564.764976px;}
.x1a{left:577.004988px;}
.xe{left:600.629976px;}
.xf{left:606.749988px;}
.x1b{left:609.269976px;}
.x22{left:610.529976px;}
.x1c{left:621.509988px;}
.x23{left:622.769988px;}
.x20{left:629.249976px;}
.x21{left:641.489988px;}
.x8{left:659.849976px;}
.x9{left:665.969988px;}
.x14{left:667.229988px;}
.x24{left:668.309976px;}
.x25{left:680.549988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls28{letter-spacing:-14.080000pt;}
.ls29{letter-spacing:-11.360000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls3d{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.409067pt;}
.ls24{letter-spacing:-0.400533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls3c{letter-spacing:-0.089067pt;}
.ls34{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.016000pt;}
.ls2f{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.094720pt;}
.ls32{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.183467pt;}
.ls37{letter-spacing:0.230933pt;}
.ls2e{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.239467pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.337707pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.391040pt;}
.ls22{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.608000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.656000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls19{letter-spacing:2.080000pt;}
.ls15{letter-spacing:2.720000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls18{letter-spacing:3.520000pt;}
.ls16{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.000000pt;}
.ls20{letter-spacing:5.120000pt;}
.ls31{letter-spacing:5.280000pt;}
.ls21{letter-spacing:5.760000pt;}
.ls2{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:10.400000pt;}
.ls36{letter-spacing:20.000000pt;}
.ls0{letter-spacing:21.760000pt;}
.ls3b{letter-spacing:31.520000pt;}
.ls26{letter-spacing:33.280000pt;}
.ws19{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws1d{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.545600pt;}
.ws23{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.463467pt;}
.ws21{word-spacing:-13.440000pt;}
.ws22{word-spacing:-13.374933pt;}
.ws1f{word-spacing:-13.327360pt;}
.ws1b{word-spacing:-13.280000pt;}
.ws27{word-spacing:-13.232640pt;}
.ws26{word-spacing:-13.190933pt;}
.ws25{word-spacing:-13.049067pt;}
.ws24{word-spacing:-12.870933pt;}
.ws29{word-spacing:-12.800000pt;}
.ws28{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.112000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws10{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws17{word-spacing:-11.888000pt;}
.ws16{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.456000pt;}
.ws7{word-spacing:-10.959467pt;}
.ws15{word-spacing:-10.319467pt;}
.ws1e{word-spacing:-8.655360pt;}
.ws1a{word-spacing:-8.640000pt;}
.ws18{word-spacing:-8.064000pt;}
.ws12{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._1b{margin-left:-1383.914667pt;}
._1a{margin-left:-1368.586667pt;}
._19{margin-left:-305.280000pt;}
._5{margin-left:-3.840000pt;}
._6{margin-left:-2.368000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.034667pt;}
._3{width:2.410667pt;}
._14{width:3.648000pt;}
._c{width:4.650667pt;}
._13{width:6.122667pt;}
._f{width:7.018667pt;}
._8{width:8.000000pt;}
._9{width:8.960000pt;}
._a{width:9.920000pt;}
._b{width:11.605333pt;}
._2{width:13.056000pt;}
._15{width:14.512000pt;}
._2b{width:16.045440pt;}
._17{width:17.450667pt;}
._24{width:18.410667pt;}
._1c{width:19.306667pt;}
._4{width:20.288000pt;}
._28{width:21.248000pt;}
._e{width:22.282667pt;}
._d{width:23.392000pt;}
._10{width:24.288000pt;}
._7{width:25.280000pt;}
._26{width:26.432000pt;}
._29{width:27.413333pt;}
._2a{width:28.736000pt;}
._1f{width:29.824000pt;}
._20{width:30.730667pt;}
._1d{width:32.320000pt;}
._1e{width:33.344000pt;}
._23{width:34.485333pt;}
._27{width:35.648000pt;}
._11{width:37.376000pt;}
._12{width:38.368000pt;}
._25{width:41.952000pt;}
._21{width:44.480000pt;}
._22{width:46.005333pt;}
._18{width:135.018667pt;}
._16{width:517.418667pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:49.920000pt;}
.y5a{bottom:51.200000pt;}
.y2{bottom:64.320000pt;}
.y59{bottom:69.120000pt;}
.y38{bottom:115.840000pt;}
.y37{bottom:129.600000pt;}
.yc0{bottom:132.320000pt;}
.ye2{bottom:133.440000pt;}
.y110{bottom:143.360000pt;}
.y36{bottom:143.520000pt;}
.ya7{bottom:147.520000pt;}
.ye1{bottom:148.800000pt;}
.ybf{bottom:150.720000pt;}
.y35{bottom:157.306667pt;}
.ybc{bottom:158.746667pt;}
.y58{bottom:161.306667pt;}
.ye0{bottom:164.186667pt;}
.ybe{bottom:169.146667pt;}
.y34{bottom:171.066667pt;}
.y10f{bottom:174.106667pt;}
.y8e{bottom:175.066667pt;}
.ybb{bottom:177.146667pt;}
.ydf{bottom:179.546667pt;}
.y33{bottom:184.826667pt;}
.y32{bottom:188.826667pt;}
.y10e{bottom:189.306667pt;}
.yde{bottom:194.906667pt;}
.yba{bottom:195.546667pt;}
.y31{bottom:198.746667pt;}
.yb5{bottom:202.746667pt;}
.y10d{bottom:204.666667pt;}
.ydd{bottom:210.106667pt;}
.y30{bottom:212.506667pt;}
.yb4{bottom:213.946667pt;}
.y10c{bottom:220.026667pt;}
.ydc{bottom:225.466667pt;}
.y2f{bottom:226.266667pt;}
.y8d{bottom:230.266667pt;}
.yb3{bottom:232.346667pt;}
.y10b{bottom:235.386667pt;}
.y2e{bottom:240.026667pt;}
.ydb{bottom:240.826667pt;}
.ya6{bottom:241.146667pt;}
.y2d{bottom:244.026667pt;}
.yb2{bottom:250.746667pt;}
.y2c{bottom:253.946667pt;}
.ya5{bottom:256.026667pt;}
.yda{bottom:256.186667pt;}
.ya4{bottom:260.026667pt;}
.y10a{bottom:266.106667pt;}
.y2b{bottom:267.706667pt;}
.yb1{bottom:269.146667pt;}
.ya3{bottom:269.946667pt;}
.yd9{bottom:271.546667pt;}
.y109{bottom:281.306667pt;}
.y2a{bottom:281.466667pt;}
.ya2{bottom:283.706667pt;}
.y29{bottom:285.466667pt;}
.yd8{bottom:286.906667pt;}
.yb0{bottom:287.546667pt;}
.y28{bottom:295.226667pt;}
.y108{bottom:296.666667pt;}
.ya1{bottom:297.466667pt;}
.yd7{bottom:302.106667pt;}
.yb9{bottom:305.946667pt;}
.y27{bottom:309.146667pt;}
.ya0{bottom:311.226667pt;}
.y107{bottom:312.026667pt;}
.y26{bottom:313.146667pt;}
.yaf{bottom:313.946667pt;}
.yd6{bottom:317.466667pt;}
.y57{bottom:322.906667pt;}
.y25{bottom:324.346667pt;}
.y9f{bottom:325.146667pt;}
.y8c{bottom:326.906667pt;}
.y106{bottom:327.386667pt;}
.yae{bottom:332.346667pt;}
.yd5{bottom:332.826667pt;}
.y56{bottom:336.666667pt;}
.y9e{bottom:338.906667pt;}
.yb8{bottom:342.746667pt;}
.yd4{bottom:348.186667pt;}
.y55{bottom:350.466667pt;}
.yad{bottom:350.786667pt;}
.y9d{bottom:352.706667pt;}
.y23{bottom:354.786667pt;}
.y105{bottom:358.146667pt;}
.y24{bottom:360.866667pt;}
.yb7{bottom:361.186667pt;}
.yd3{bottom:363.586667pt;}
.y54{bottom:364.386667pt;}
.y9c{bottom:366.466667pt;}
.yac{bottom:369.186667pt;}
.y22{bottom:373.186667pt;}
.y104{bottom:373.346667pt;}
.y53{bottom:378.146667pt;}
.yd2{bottom:378.946667pt;}
.yb6{bottom:379.586667pt;}
.y9b{bottom:380.386667pt;}
.y9a{bottom:384.386667pt;}
.yab{bottom:387.586667pt;}
.y103{bottom:388.706667pt;}
.y21{bottom:391.586667pt;}
.y7b{bottom:391.906667pt;}
.y52{bottom:393.346667pt;}
.yd1{bottom:394.146667pt;}
.y99{bottom:395.586667pt;}
.ybd{bottom:397.986667pt;}
.y102{bottom:404.066667pt;}
.y7a{bottom:405.666667pt;}
.yaa{bottom:405.986667pt;}
.yd0{bottom:409.506667pt;}
.y8b{bottom:409.666667pt;}
.y20{bottom:409.986667pt;}
.y98{bottom:416.386667pt;}
.y101{bottom:419.426667pt;}
.y79{bottom:419.586667pt;}
.y8a{bottom:420.866667pt;}
.y50{bottom:424.386667pt;}
.ycf{bottom:424.866667pt;}
.y51{bottom:430.466667pt;}
.y78{bottom:433.346667pt;}
.y96{bottom:434.626667pt;}
.y100{bottom:434.786667pt;}
.y1e{bottom:436.386667pt;}
.yce{bottom:440.226667pt;}
.y97{bottom:440.706667pt;}
.y1f{bottom:442.466667pt;}
.y4f{bottom:442.626667pt;}
.y77{bottom:447.106667pt;}
.yff{bottom:449.986667pt;}
.y95{bottom:453.026667pt;}
.y1d{bottom:454.786667pt;}
.ycd{bottom:455.586667pt;}
.y76{bottom:460.866667pt;}
.y4e{bottom:461.026667pt;}
.yfe{bottom:465.346667pt;}
.ycc{bottom:470.786667pt;}
.y94{bottom:471.426667pt;}
.y1b{bottom:473.186667pt;}
.y75{bottom:474.786667pt;}
.y1c{bottom:479.266667pt;}
.y4d{bottom:479.426667pt;}
.yfd{bottom:480.706667pt;}
.ycb{bottom:486.146667pt;}
.y74{bottom:488.546667pt;}
.y89{bottom:489.826667pt;}
.y19{bottom:491.586667pt;}
.y73{bottom:492.546667pt;}
.yfc{bottom:496.066667pt;}
.y1a{bottom:497.666667pt;}
.y4c{bottom:497.826667pt;}
.yca{bottom:501.506667pt;}
.y72{bottom:502.306667pt;}
.y88{bottom:508.226667pt;}
.y18{bottom:509.986667pt;}
.yfb{bottom:511.426667pt;}
.y71{bottom:516.066667pt;}
.y4b{bottom:516.226667pt;}
.yc9{bottom:516.866667pt;}
.y87{bottom:526.626667pt;}
.yfa{bottom:526.786667pt;}
.y17{bottom:528.386667pt;}
.y70{bottom:529.986667pt;}
.yc8{bottom:532.226667pt;}
.y4a{bottom:534.626667pt;}
.yf9{bottom:541.986667pt;}
.y6f{bottom:543.773333pt;}
.y86{bottom:545.053333pt;}
.y16{bottom:546.653333pt;}
.yc7{bottom:547.613333pt;}
.y6e{bottom:547.773333pt;}
.y93{bottom:551.133333pt;}
.y49{bottom:553.053333pt;}
.yf8{bottom:557.373333pt;}
.y6d{bottom:557.533333pt;}
.yc6{bottom:562.813333pt;}
.y85{bottom:563.453333pt;}
.y15{bottom:565.053333pt;}
.y6c{bottom:571.293333pt;}
.y48{bottom:571.453333pt;}
.yf7{bottom:572.733333pt;}
.yc5{bottom:578.173333pt;}
.y92{bottom:581.853333pt;}
.y14{bottom:583.453333pt;}
.y6b{bottom:585.053333pt;}
.yf6{bottom:588.093333pt;}
.y47{bottom:589.853333pt;}
.yc4{bottom:593.533333pt;}
.y6a{bottom:598.973333pt;}
.y13{bottom:601.853333pt;}
.yf5{bottom:603.453333pt;}
.y46{bottom:608.253333pt;}
.yc3{bottom:608.893333pt;}
.y69{bottom:612.733333pt;}
.yf4{bottom:618.813333pt;}
.y12{bottom:620.253333pt;}
.yc2{bottom:624.253333pt;}
.y68{bottom:626.493333pt;}
.y45{bottom:626.653333pt;}
.y84{bottom:632.733333pt;}
.yf3{bottom:634.013333pt;}
.y11{bottom:638.653333pt;}
.yc1{bottom:639.613333pt;}
.y67{bottom:640.253333pt;}
.y44{bottom:645.053333pt;}
.yf2{bottom:649.373333pt;}
.ya9{bottom:653.053333pt;}
.y66{bottom:654.173333pt;}
.y10{bottom:657.053333pt;}
.y43{bottom:663.453333pt;}
.yf1{bottom:664.733333pt;}
.y65{bottom:667.933333pt;}
.y83{bottom:669.533333pt;}
.ya8{bottom:671.453333pt;}
.yf{bottom:675.453333pt;}
.yf0{bottom:680.093333pt;}
.y64{bottom:681.693333pt;}
.y81{bottom:681.853333pt;}
.y82{bottom:687.933333pt;}
.y42{bottom:689.853333pt;}
.ye{bottom:693.853333pt;}
.y63{bottom:695.453333pt;}
.y80{bottom:700.253333pt;}
.y41{bottom:708.253333pt;}
.y62{bottom:710.653333pt;}
.yef{bottom:710.813333pt;}
.yd{bottom:712.253333pt;}
.y7f{bottom:718.653333pt;}
.yee{bottom:726.013333pt;}
.y40{bottom:726.653333pt;}
.yc{bottom:730.653333pt;}
.y7e{bottom:737.093333pt;}
.yed{bottom:741.413333pt;}
.y3f{bottom:745.093333pt;}
.yb{bottom:749.093333pt;}
.y60{bottom:755.493333pt;}
.yec{bottom:756.773333pt;}
.y61{bottom:761.573333pt;}
.y3e{bottom:763.493333pt;}
.ya{bottom:767.493333pt;}
.y7d{bottom:769.573333pt;}
.yeb{bottom:772.133333pt;}
.y5e{bottom:773.893333pt;}
.y5f{bottom:779.973333pt;}
.y3d{bottom:781.893333pt;}
.yea{bottom:787.493333pt;}
.y5d{bottom:792.293333pt;}
.y9{bottom:793.573333pt;}
.y3c{bottom:800.293333pt;}
.ye9{bottom:802.693333pt;}
.y8{bottom:810.533333pt;}
.y5c{bottom:810.693333pt;}
.ye8{bottom:818.053333pt;}
.y3b{bottom:818.693333pt;}
.y7{bottom:829.093333pt;}
.ye7{bottom:833.413333pt;}
.y91{bottom:835.173333pt;}
.y3a{bottom:837.093333pt;}
.y5b{bottom:843.173333pt;}
.y90{bottom:847.493333pt;}
.ye6{bottom:848.773333pt;}
.y6{bottom:855.493333pt;}
.ye5{bottom:864.133333pt;}
.y5{bottom:873.893333pt;}
.ye4{bottom:879.493333pt;}
.y8f{bottom:879.973333pt;}
.y4{bottom:892.293333pt;}
.ye3{bottom:894.693333pt;}
.y7c{bottom:898.373333pt;}
.y1{bottom:958.560000pt;}
.y39{bottom:962.240000pt;}
.hb{height:28.687500pt;}
.hf{height:33.867188pt;}
.h8{height:38.441250pt;}
.h3{height:43.031250pt;}
.hc{height:43.265625pt;}
.he{height:44.687500pt;}
.h5{height:45.156250pt;}
.h4{height:45.326250pt;}
.h14{height:47.621250pt;}
.h15{height:47.880625pt;}
.hd{height:49.148438pt;}
.h13{height:49.542500pt;}
.h7{height:52.785000pt;}
.h6{height:57.375000pt;}
.h2{height:57.687500pt;}
.ha{height:58.563750pt;}
.h9{height:62.761250pt;}
.h10{height:63.656250pt;}
.h11{height:67.128750pt;}
.h12{height:86.062500pt;}
.h0{height:1020.640000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w3{width:718.239979pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471989pt;}
.x11{left:117.471989pt;}
.x1f{left:121.471989pt;}
.x2{left:130.271989pt;}
.x7{left:151.226656pt;}
.x28{left:160.666656pt;}
.xc{left:176.506645pt;}
.xd{left:181.946656pt;}
.x12{left:219.386645pt;}
.x6{left:222.266656pt;}
.x13{left:224.866656pt;}
.x5{left:229.346656pt;}
.x3{left:248.546656pt;}
.x26{left:273.826645pt;}
.x27{left:284.706656pt;}
.x4{left:294.786656pt;}
.x10{left:305.506656pt;}
.x1d{left:336.386645pt;}
.x1e{left:347.266656pt;}
.x15{left:383.773312pt;}
.x16{left:389.213323pt;}
.xa{left:398.973312pt;}
.xb{left:404.413323pt;}
.x17{left:410.973312pt;}
.x18{left:416.413323pt;}
.x19{left:502.013312pt;}
.x1a{left:512.893323pt;}
.xe{left:533.893312pt;}
.xf{left:539.333323pt;}
.x1b{left:541.573312pt;}
.x22{left:542.693312pt;}
.x1c{left:552.453323pt;}
.x23{left:553.573323pt;}
.x20{left:559.333312pt;}
.x21{left:570.213323pt;}
.x8{left:586.533312pt;}
.x9{left:591.973323pt;}
.x14{left:593.093323pt;}
.x24{left:594.053312pt;}
.x25{left:604.933323pt;}
}




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