
    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_44b7bb9d5abe468bdbe13ef6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f3d515a29a01d3f220ae8f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_31935f18a6ff9e3e3cf15fa0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_982d83a28877496b82418ea3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_8f200103a854005fec52750c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_bf7fd00b50666f4873ebd8ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_27d34bb6475149331eccd2f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_5f0ee77f06208e753f8e2735.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3151d03fc1b2830b844b337b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_84589d41fc02725513d046c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995117;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.262080px;}
.ls6{letter-spacing:0.400320px;}
.ls8{letter-spacing:0.544320px;}
.lsb{letter-spacing:26.945280px;}
.ls4{letter-spacing:36.449280px;}
.lsa{letter-spacing:60.209280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.305520px;}
.ws6{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.450800px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.045440px;}
._1{width:1.932720px;}
._4{width:3.128640px;}
._11{width:4.219680px;}
._e{width:5.299200px;}
._8{width:6.485760px;}
._3{width:7.706880px;}
._2{width:8.743680px;}
._7{width:9.936000px;}
._13{width:11.113920px;}
._c{width:13.115520px;}
._d{width:14.241600px;}
._16{width:15.405120px;}
._5{width:18.414720px;}
._a{width:19.872000px;}
._14{width:20.998080px;}
._15{width:22.086240px;}
._6{width:23.184000px;}
._f{width:24.972480px;}
._10{width:26.084160px;}
._b{width:27.290880px;}
._12{width:29.410560px;}
._9{width:32.192640px;}
._19{width:33.736320px;}
._1a{width:35.902080px;}
._1b{width:37.258080px;}
._18{width:42.189120px;}
._17{width:43.297920px;}
._21{width:55.252800px;}
._20{width:56.436480px;}
._22{width:68.492160px;}
._1e{width:95.385600px;}
._1f{width:96.629760px;}
._1c{width:141.223680px;}
._1d{width:142.401600px;}
._24{width:207.648000px;}
._23{width:208.707840px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:3.600000px;}
.yea{bottom:3.780000px;}
.y100{bottom:3.810000px;}
.y121{bottom:3.960000px;}
.y6{bottom:6.660000px;}
.ye7{bottom:23.400000px;}
.yf1{bottom:23.445000px;}
.yec{bottom:33.300000px;}
.y4{bottom:42.660000px;}
.y3a{bottom:63.180000px;}
.y12d{bottom:77.256000px;}
.yfe{bottom:77.616000px;}
.y6f{bottom:79.236000px;}
.y170{bottom:81.216000px;}
.y157{bottom:82.836000px;}
.ycb{bottom:86.796000px;}
.y39{bottom:91.296000px;}
.y9c{bottom:93.996000px;}
.yfd{bottom:97.416000px;}
.y6e{bottom:98.496000px;}
.y16f{bottom:100.476000px;}
.y156{bottom:101.916000px;}
.y12c{bottom:106.416000px;}
.y38{bottom:110.376000px;}
.yca{bottom:114.876000px;}
.yfc{bottom:117.036000px;}
.y6d{bottom:117.396000px;}
.y9b{bottom:123.156000px;}
.y16e{bottom:128.196000px;}
.y37{bottom:129.276000px;}
.y155{bottom:131.076000px;}
.yc9{bottom:133.956000px;}
.y12b{bottom:135.576000px;}
.y6c{bottom:136.476000px;}
.yfb{bottom:140.436000px;}
.y16d{bottom:147.276000px;}
.y36{bottom:148.356000px;}
.y9a{bottom:152.130000px;}
.y12a{bottom:154.650000px;}
.y6b{bottom:155.370000px;}
.y154{bottom:160.230000px;}
.yc8{bottom:161.670000px;}
.y16c{bottom:166.350000px;}
.y35{bottom:167.250000px;}
.yfa{bottom:168.330000px;}
.y6a{bottom:174.270000px;}
.y99{bottom:180.210000px;}
.yc7{bottom:180.930000px;}
.y129{bottom:183.810000px;}
.yf9{bottom:187.410000px;}
.y153{bottom:189.210000px;}
.y69{bottom:193.350000px;}
.y16b{bottom:194.070000px;}
.y34{bottom:195.150000px;}
.y98{bottom:199.290000px;}
.y128{bottom:203.970000px;}
.y152{bottom:208.290000px;}
.yc6{bottom:208.830000px;}
.y68{bottom:212.250000px;}
.y16a{bottom:213.330000px;}
.y33{bottom:214.230000px;}
.yf8{bottom:215.130000px;}
.y97{bottom:228.270000px;}
.y67{bottom:231.330000px;}
.y127{bottom:231.690000px;}
.y169{bottom:232.230000px;}
.y32{bottom:233.130000px;}
.yf7{bottom:234.390000px;}
.y151{bottom:237.450000px;}
.yc5{bottom:237.990000px;}
.y96{bottom:247.350000px;}
.y66{bottom:250.230000px;}
.y126{bottom:250.950000px;}
.y31{bottom:252.210000px;}
.yf4{bottom:259.410000px;}
.y168{bottom:259.950000px;}
.y150{bottom:266.430000px;}
.yc4{bottom:266.970000px;}
.y30{bottom:271.110000px;}
.y95{bottom:276.330000px;}
.y65{bottom:277.950000px;}
.y125{bottom:278.670000px;}
.yf6{bottom:279.210000px;}
.y14f{bottom:285.510000px;}
.yc3{bottom:286.230000px;}
.y2f{bottom:290.190000px;}
.y94{bottom:295.410000px;}
.y64{bottom:297.210000px;}
.y167{bottom:298.110000px;}
.yf5{bottom:298.830000px;}
.y124{bottom:303.870000px;}
.y2e{bottom:309.090000px;}
.yc2{bottom:313.950000px;}
.y14e{bottom:314.670000px;}
.y63{bottom:316.110000px;}
.yf0{bottom:318.630000px;}
.y123{bottom:324.030000px;}
.y93{bottom:324.570000px;}
.y166{bottom:326.010000px;}
.y2d{bottom:327.990000px;}
.yc1{bottom:333.030000px;}
.y62{bottom:335.190000px;}
.yf3{bottom:338.295000px;}
.y14d{bottom:343.875000px;}
.y122{bottom:344.235000px;}
.y165{bottom:345.135000px;}
.y92{bottom:353.775000px;}
.y61{bottom:354.135000px;}
.y2c{bottom:355.935000px;}
.yf2{bottom:358.095000px;}
.yc0{bottom:360.975000px;}
.y14c{bottom:362.955000px;}
.y164{bottom:364.035000px;}
.y120{bottom:364.215000px;}
.y60{bottom:373.035000px;}
.y91{bottom:374.115000px;}
.y2b{bottom:375.015000px;}
.yeb{bottom:377.715000px;}
.ybf{bottom:380.055000px;}
.y14b{bottom:383.115000px;}
.y11f{bottom:384.375000px;}
.y163{bottom:391.935000px;}
.y5f{bottom:392.115000px;}
.y2a{bottom:394.095000px;}
.yef{bottom:397.515000px;}
.ybe{bottom:399.135000px;}
.y90{bottom:401.835000px;}
.y11e{bottom:404.535000px;}
.y14a{bottom:411.015000px;}
.y29{bottom:412.995000px;}
.yee{bottom:417.315000px;}
.y5e{bottom:419.835000px;}
.y8f{bottom:421.095000px;}
.ybd{bottom:426.855000px;}
.y11d{bottom:427.755000px;}
.y149{bottom:430.095000px;}
.y28{bottom:431.895000px;}
.yed{bottom:436.935000px;}
.y5d{bottom:439.095000px;}
.y8e{bottom:439.995000px;}
.ybc{bottom:445.935000px;}
.y148{bottom:448.995000px;}
.y27{bottom:450.975000px;}
.y11c{bottom:455.835000px;}
.ye6{bottom:456.735000px;}
.y162{bottom:457.815000px;}
.y5c{bottom:457.995000px;}
.y8d{bottom:458.895000px;}
.y26{bottom:469.875000px;}
.ybb{bottom:473.835000px;}
.y11b{bottom:475.095000px;}
.ye9{bottom:476.355000px;}
.y5b{bottom:476.895000px;}
.y8c{bottom:477.975000px;}
.y25{bottom:488.955000px;}
.y5a{bottom:495.975000px;}
.ye8{bottom:496.155000px;}
.y8b{bottom:496.875000px;}
.y147{bottom:497.235000px;}
.yba{bottom:502.995000px;}
.y11a{bottom:503.355000px;}
.y24{bottom:507.855000px;}
.y59{bottom:514.875000px;}
.ye4{bottom:515.955000px;}
.y146{bottom:516.135000px;}
.y8a{bottom:524.775000px;}
.y119{bottom:531.255000px;}
.yb9{bottom:532.155000px;}
.y58{bottom:533.955000px;}
.y145{bottom:535.035000px;}
.ye3{bottom:539.175000px;}
.y161{bottom:542.775000px;}
.y89{bottom:543.855000px;}
.y23{bottom:544.575000px;}
.yb8{bottom:551.235000px;}
.y118{bottom:559.335000px;}
.y57{bottom:561.675000px;}
.y160{bottom:561.855000px;}
.y88{bottom:562.755000px;}
.y22{bottom:563.835000px;}
.y144{bottom:564.195000px;}
.ye2{bottom:567.075000px;}
.yb7{bottom:579.135000px;}
.y56{bottom:580.755000px;}
.y87{bottom:581.835000px;}
.y143{bottom:583.275000px;}
.y117{bottom:587.235000px;}
.y21{bottom:591.555000px;}
.ye1{bottom:594.975000px;}
.yb6{bottom:598.215000px;}
.y55{bottom:599.835000px;}
.y86{bottom:600.735000px;}
.y142{bottom:602.175000px;}
.y116{bottom:606.345000px;}
.y20{bottom:610.845000px;}
.ye0{bottom:614.265000px;}
.yb5{bottom:617.145000px;}
.y54{bottom:618.765000px;}
.y85{bottom:619.845000px;}
.y1f{bottom:629.745000px;}
.y141{bottom:631.185000px;}
.y115{bottom:631.545000px;}
.ydf{bottom:633.165000px;}
.yb4{bottom:636.225000px;}
.y53{bottom:637.845000px;}
.y84{bottom:638.745000px;}
.y1e{bottom:648.825000px;}
.y140{bottom:650.445000px;}
.y114{bottom:651.165000px;}
.yde{bottom:652.245000px;}
.yb3{bottom:655.125000px;}
.y52{bottom:656.745000px;}
.y83{bottom:666.645000px;}
.y1d{bottom:667.725000px;}
.y13f{bottom:669.345000px;}
.y113{bottom:670.965000px;}
.y51{bottom:675.825000px;}
.ydd{bottom:679.965000px;}
.yb2{bottom:683.025000px;}
.y82{bottom:685.725000px;}
.y1c{bottom:686.625000px;}
.y112{bottom:690.585000px;}
.y15f{bottom:694.725000px;}
.y13e{bottom:698.325000px;}
.ydc{bottom:699.045000px;}
.yb1{bottom:702.105000px;}
.y50{bottom:703.545000px;}
.y81{bottom:704.625000px;}
.y1b{bottom:705.705000px;}
.y15e{bottom:713.625000px;}
.y111{bottom:713.985000px;}
.y13d{bottom:717.585000px;}
.yb0{bottom:721.005000px;}
.y4f{bottom:722.625000px;}
.y80{bottom:723.705000px;}
.ydb{bottom:726.945000px;}
.y15d{bottom:732.705000px;}
.y1a{bottom:733.425000px;}
.y13c{bottom:736.485000px;}
.y4e{bottom:741.705000px;}
.y110{bottom:741.885000px;}
.yaf{bottom:748.905000px;}
.y7f{bottom:751.425000px;}
.y15c{bottom:751.605000px;}
.y19{bottom:752.685000px;}
.yda{bottom:756.105000px;}
.y4d{bottom:760.605000px;}
.y17c{bottom:763.305000px;}
.y13b{bottom:765.465000px;}
.yae{bottom:767.985000px;}
.y7e{bottom:770.685000px;}
.y10f{bottom:771.045000px;}
.y18{bottom:771.585000px;}
.y15b{bottom:779.505000px;}
.y4c{bottom:779.685000px;}
.y13a{bottom:784.545000px;}
.yd9{bottom:785.265000px;}
.yad{bottom:787.065000px;}
.y7d{bottom:789.585000px;}
.y17{bottom:790.485000px;}
.y17b{bottom:791.385000px;}
.y10e{bottom:791.565000px;}
.y4b{bottom:798.585000px;}
.y139{bottom:803.445000px;}
.yac{bottom:805.965000px;}
.y7c{bottom:808.485000px;}
.y16{bottom:809.565000px;}
.yd8{bottom:814.425000px;}
.y4a{bottom:817.485000px;}
.y10d{bottom:819.285000px;}
.y15{bottom:828.465000px;}
.y138{bottom:832.605000px;}
.yab{bottom:833.685000px;}
.y7b{bottom:836.385000px;}
.y15a{bottom:836.565000px;}
.y17a{bottom:838.545000px;}
.yd7{bottom:843.585000px;}
.y49{bottom:845.385000px;}
.y10c{bottom:847.365000px;}
.y137{bottom:851.685000px;}
.yaa{bottom:852.945000px;}
.y7a{bottom:855.465000px;}
.y14{bottom:856.365000px;}
.yd6{bottom:862.665000px;}
.y48{bottom:864.465000px;}
.y179{bottom:866.265000px;}
.y136{bottom:870.630000px;}
.ya9{bottom:871.890000px;}
.y10b{bottom:872.610000px;}
.y79{bottom:874.590000px;}
.y13{bottom:875.490000px;}
.y159{bottom:883.410000px;}
.y47{bottom:883.590000px;}
.y178{bottom:885.390000px;}
.ya8{bottom:890.970000px;}
.yd5{bottom:891.690000px;}
.y10a{bottom:892.230000px;}
.y78{bottom:893.490000px;}
.y12{bottom:894.390000px;}
.y135{bottom:899.790000px;}
.y46{bottom:902.490000px;}
.y177{bottom:904.470000px;}
.yd4{bottom:910.950000px;}
.y109{bottom:912.030000px;}
.y77{bottom:912.390000px;}
.y11{bottom:913.470000px;}
.ya7{bottom:918.690000px;}
.y134{bottom:918.870000px;}
.y45{bottom:921.390000px;}
.y76{bottom:931.470000px;}
.y108{bottom:931.830000px;}
.y176{bottom:932.190000px;}
.y10{bottom:932.370000px;}
.ya6{bottom:937.950000px;}
.yd3{bottom:938.670000px;}
.y44{bottom:940.470000px;}
.yf{bottom:951.450000px;}
.ya5{bottom:956.850000px;}
.yd2{bottom:957.750000px;}
.y75{bottom:959.190000px;}
.y43{bottom:959.370000px;}
.ye{bottom:970.350000px;}
.y107{bottom:971.250000px;}
.ya4{bottom:975.750000px;}
.yd1{bottom:976.830000px;}
.y74{bottom:978.450000px;}
.y175{bottom:979.170000px;}
.y133{bottom:985.830000px;}
.y42{bottom:987.270000px;}
.yd{bottom:989.250000px;}
.y106{bottom:990.870000px;}
.ya3{bottom:994.830000px;}
.y73{bottom:997.350000px;}
.y174{bottom:998.250000px;}
.yd0{bottom:1004.730000px;}
.y132{bottom:1004.910000px;}
.y158{bottom:1006.170000px;}
.y41{bottom:1006.350000px;}
.ya2{bottom:1013.730000px;}
.y105{bottom:1014.270000px;}
.y72{bottom:1016.250000px;}
.y131{bottom:1023.990000px;}
.y40{bottom:1025.250000px;}
.y173{bottom:1026.150000px;}
.yc{bottom:1026.330000px;}
.ycf{bottom:1033.890000px;}
.y71{bottom:1035.330000px;}
.ya1{bottom:1041.630000px;}
.y104{bottom:1042.170000px;}
.y130{bottom:1042.890000px;}
.y3f{bottom:1044.330000px;}
.yb{bottom:1045.230000px;}
.y70{bottom:1063.050000px;}
.y3e{bottom:1063.230000px;}
.y103{bottom:1070.070000px;}
.ya{bottom:1070.250000px;}
.ya0{bottom:1070.790000px;}
.y12f{bottom:1071.870000px;}
.y172{bottom:1073.130000px;}
.y3d{bottom:1082.310000px;}
.y9{bottom:1083.210000px;}
.y9f{bottom:1089.870000px;}
.y12e{bottom:1091.130000px;}
.yce{bottom:1092.030000px;}
.y171{bottom:1092.210000px;}
.y102{bottom:1095.270000px;}
.y3c{bottom:1101.210000px;}
.ycd{bottom:1111.290000px;}
.y101{bottom:1115.070000px;}
.y9e{bottom:1118.850000px;}
.y8{bottom:1120.110000px;}
.y3b{bottom:1120.290000px;}
.yff{bottom:1134.690000px;}
.y9d{bottom:1137.960000px;}
.ycc{bottom:1139.040000px;}
.y7{bottom:1139.220000px;}
.y3{bottom:1159.020000px;}
.y2{bottom:1178.640000px;}
.y5{bottom:1181.700000px;}
.y1{bottom:1200.060000px;}
.hc{height:18.900000px;}
.h11{height:18.936000px;}
.he{height:19.080000px;}
.h13{height:19.116000px;}
.h15{height:19.260000px;}
.h17{height:19.296000px;}
.h16{height:19.440000px;}
.h5{height:23.580000px;}
.h9{height:29.158594px;}
.ha{height:46.251562px;}
.h7{height:46.736719px;}
.h4{height:48.224531px;}
.h6{height:52.417969px;}
.h8{height:53.224453px;}
.hb{height:54.596250px;}
.h14{height:55.825312px;}
.hd{height:58.320000px;}
.h10{height:58.356000px;}
.h12{height:58.500000px;}
.h2{height:61.468945px;}
.h3{height:65.884219px;}
.hf{height:78.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:48.456000px;}
.wa{width:52.560000px;}
.we{width:62.316000px;}
.w9{width:64.080000px;}
.w10{width:69.120000px;}
.w15{width:72.396000px;}
.w16{width:75.960000px;}
.w12{width:75.996000px;}
.w6{width:99.000000px;}
.w14{width:113.580000px;}
.w7{width:133.236000px;}
.wf{width:134.316000px;}
.wd{width:135.900000px;}
.w3{width:151.020000px;}
.w4{width:157.890000px;}
.wb{width:163.110000px;}
.w5{width:168.330000px;}
.w17{width:205.230000px;}
.w13{width:213.690000px;}
.wc{width:244.515000px;}
.w8{width:360.075000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.740000px;}
.x11{left:11.880000px;}
.x33{left:13.860000px;}
.x21{left:15.660000px;}
.x4{left:16.920000px;}
.x3e{left:18.900000px;}
.x36{left:20.160000px;}
.x1a{left:21.420000px;}
.x19{left:24.300000px;}
.x30{left:25.380000px;}
.x26{left:26.820000px;}
.x25{left:28.620000px;}
.x23{left:31.140000px;}
.x3d{left:35.460000px;}
.x37{left:37.800000px;}
.x14{left:41.220000px;}
.x2e{left:42.840000px;}
.x16{left:45.540000px;}
.xd{left:48.240000px;}
.x18{left:49.320000px;}
.x1b{left:50.400000px;}
.xf{left:51.660000px;}
.x2b{left:53.460000px;}
.x17{left:57.600000px;}
.x15{left:63.540000px;}
.x13{left:65.160000px;}
.x1{left:75.599987px;}
.xa{left:96.875987px;}
.x39{left:105.336000px;}
.x3f{left:107.675987px;}
.x7{left:112.715987px;}
.x1d{left:126.216000px;}
.x40{left:129.635987px;}
.x1e{left:144.174000px;}
.xc{left:166.890000px;}
.x28{left:225.030000px;}
.x2d{left:228.810000px;}
.xb{left:233.309987px;}
.x27{left:234.929987px;}
.x9{left:284.294987px;}
.x1c{left:291.674987px;}
.x6{left:301.214987px;}
.x8{left:303.194987px;}
.x3a{left:319.755000px;}
.x38{left:322.454987px;}
.xe{left:325.515000px;}
.x2c{left:359.894987px;}
.x2f{left:363.855000px;}
.x5{left:367.814987px;}
.x31{left:433.695000px;}
.x29{left:470.445000px;}
.x32{left:482.865000px;}
.x1f{left:487.005000px;}
.x10{left:494.565000px;}
.x3b{left:507.165000px;}
.x34{left:536.145000px;}
.x20{left:551.805000px;}
.x3c{left:583.845000px;}
.x35{left:589.605000px;}
.x12{left:594.285000px;}
.x22{left:605.085000px;}
.x2a{left:607.065000px;}
.x3{left:673.530000px;}
.x2{left:791.249987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.232960pt;}
.ls6{letter-spacing:0.355840pt;}
.ls8{letter-spacing:0.483840pt;}
.lsb{letter-spacing:23.951360pt;}
.ls4{letter-spacing:32.399360pt;}
.lsa{letter-spacing:53.519360pt;}
.ws4{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws6{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.622933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-0.929280pt;}
._1{width:1.717973pt;}
._4{width:2.781013pt;}
._11{width:3.750827pt;}
._e{width:4.710400pt;}
._8{width:5.765120pt;}
._3{width:6.850560pt;}
._2{width:7.772160pt;}
._7{width:8.832000pt;}
._13{width:9.879040pt;}
._c{width:11.658240pt;}
._d{width:12.659200pt;}
._16{width:13.693440pt;}
._5{width:16.368640pt;}
._a{width:17.664000pt;}
._14{width:18.664960pt;}
._15{width:19.632213pt;}
._6{width:20.608000pt;}
._f{width:22.197760pt;}
._10{width:23.185920pt;}
._b{width:24.258560pt;}
._12{width:26.142720pt;}
._9{width:28.615680pt;}
._19{width:29.987840pt;}
._1a{width:31.912960pt;}
._1b{width:33.118293pt;}
._18{width:37.501440pt;}
._17{width:38.487040pt;}
._21{width:49.113600pt;}
._20{width:50.165760pt;}
._22{width:60.881920pt;}
._1e{width:84.787200pt;}
._1f{width:85.893120pt;}
._1c{width:125.532160pt;}
._1d{width:126.579200pt;}
._24{width:184.576000pt;}
._23{width:185.518080pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:3.200000pt;}
.yea{bottom:3.360000pt;}
.y100{bottom:3.386667pt;}
.y121{bottom:3.520000pt;}
.y6{bottom:5.920000pt;}
.ye7{bottom:20.800000pt;}
.yf1{bottom:20.840000pt;}
.yec{bottom:29.600000pt;}
.y4{bottom:37.920000pt;}
.y3a{bottom:56.160000pt;}
.y12d{bottom:68.672000pt;}
.yfe{bottom:68.992000pt;}
.y6f{bottom:70.432000pt;}
.y170{bottom:72.192000pt;}
.y157{bottom:73.632000pt;}
.ycb{bottom:77.152000pt;}
.y39{bottom:81.152000pt;}
.y9c{bottom:83.552000pt;}
.yfd{bottom:86.592000pt;}
.y6e{bottom:87.552000pt;}
.y16f{bottom:89.312000pt;}
.y156{bottom:90.592000pt;}
.y12c{bottom:94.592000pt;}
.y38{bottom:98.112000pt;}
.yca{bottom:102.112000pt;}
.yfc{bottom:104.032000pt;}
.y6d{bottom:104.352000pt;}
.y9b{bottom:109.472000pt;}
.y16e{bottom:113.952000pt;}
.y37{bottom:114.912000pt;}
.y155{bottom:116.512000pt;}
.yc9{bottom:119.072000pt;}
.y12b{bottom:120.512000pt;}
.y6c{bottom:121.312000pt;}
.yfb{bottom:124.832000pt;}
.y16d{bottom:130.912000pt;}
.y36{bottom:131.872000pt;}
.y9a{bottom:135.226667pt;}
.y12a{bottom:137.466667pt;}
.y6b{bottom:138.106667pt;}
.y154{bottom:142.426667pt;}
.yc8{bottom:143.706667pt;}
.y16c{bottom:147.866667pt;}
.y35{bottom:148.666667pt;}
.yfa{bottom:149.626667pt;}
.y6a{bottom:154.906667pt;}
.y99{bottom:160.186667pt;}
.yc7{bottom:160.826667pt;}
.y129{bottom:163.386667pt;}
.yf9{bottom:166.586667pt;}
.y153{bottom:168.186667pt;}
.y69{bottom:171.866667pt;}
.y16b{bottom:172.506667pt;}
.y34{bottom:173.466667pt;}
.y98{bottom:177.146667pt;}
.y128{bottom:181.306667pt;}
.y152{bottom:185.146667pt;}
.yc6{bottom:185.626667pt;}
.y68{bottom:188.666667pt;}
.y16a{bottom:189.626667pt;}
.y33{bottom:190.426667pt;}
.yf8{bottom:191.226667pt;}
.y97{bottom:202.906667pt;}
.y67{bottom:205.626667pt;}
.y127{bottom:205.946667pt;}
.y169{bottom:206.426667pt;}
.y32{bottom:207.226667pt;}
.yf7{bottom:208.346667pt;}
.y151{bottom:211.066667pt;}
.yc5{bottom:211.546667pt;}
.y96{bottom:219.866667pt;}
.y66{bottom:222.426667pt;}
.y126{bottom:223.066667pt;}
.y31{bottom:224.186667pt;}
.yf4{bottom:230.586667pt;}
.y168{bottom:231.066667pt;}
.y150{bottom:236.826667pt;}
.yc4{bottom:237.306667pt;}
.y30{bottom:240.986667pt;}
.y95{bottom:245.626667pt;}
.y65{bottom:247.066667pt;}
.y125{bottom:247.706667pt;}
.yf6{bottom:248.186667pt;}
.y14f{bottom:253.786667pt;}
.yc3{bottom:254.426667pt;}
.y2f{bottom:257.946667pt;}
.y94{bottom:262.586667pt;}
.y64{bottom:264.186667pt;}
.y167{bottom:264.986667pt;}
.yf5{bottom:265.626667pt;}
.y124{bottom:270.106667pt;}
.y2e{bottom:274.746667pt;}
.yc2{bottom:279.066667pt;}
.y14e{bottom:279.706667pt;}
.y63{bottom:280.986667pt;}
.yf0{bottom:283.226667pt;}
.y123{bottom:288.026667pt;}
.y93{bottom:288.506667pt;}
.y166{bottom:289.786667pt;}
.y2d{bottom:291.546667pt;}
.yc1{bottom:296.026667pt;}
.y62{bottom:297.946667pt;}
.yf3{bottom:300.706667pt;}
.y14d{bottom:305.666667pt;}
.y122{bottom:305.986667pt;}
.y165{bottom:306.786667pt;}
.y92{bottom:314.466667pt;}
.y61{bottom:314.786667pt;}
.y2c{bottom:316.386667pt;}
.yf2{bottom:318.306667pt;}
.yc0{bottom:320.866667pt;}
.y14c{bottom:322.626667pt;}
.y164{bottom:323.586667pt;}
.y120{bottom:323.746667pt;}
.y60{bottom:331.586667pt;}
.y91{bottom:332.546667pt;}
.y2b{bottom:333.346667pt;}
.yeb{bottom:335.746667pt;}
.ybf{bottom:337.826667pt;}
.y14b{bottom:340.546667pt;}
.y11f{bottom:341.666667pt;}
.y163{bottom:348.386667pt;}
.y5f{bottom:348.546667pt;}
.y2a{bottom:350.306667pt;}
.yef{bottom:353.346667pt;}
.ybe{bottom:354.786667pt;}
.y90{bottom:357.186667pt;}
.y11e{bottom:359.586667pt;}
.y14a{bottom:365.346667pt;}
.y29{bottom:367.106667pt;}
.yee{bottom:370.946667pt;}
.y5e{bottom:373.186667pt;}
.y8f{bottom:374.306667pt;}
.ybd{bottom:379.426667pt;}
.y11d{bottom:380.226667pt;}
.y149{bottom:382.306667pt;}
.y28{bottom:383.906667pt;}
.yed{bottom:388.386667pt;}
.y5d{bottom:390.306667pt;}
.y8e{bottom:391.106667pt;}
.ybc{bottom:396.386667pt;}
.y148{bottom:399.106667pt;}
.y27{bottom:400.866667pt;}
.y11c{bottom:405.186667pt;}
.ye6{bottom:405.986667pt;}
.y162{bottom:406.946667pt;}
.y5c{bottom:407.106667pt;}
.y8d{bottom:407.906667pt;}
.y26{bottom:417.666667pt;}
.ybb{bottom:421.186667pt;}
.y11b{bottom:422.306667pt;}
.ye9{bottom:423.426667pt;}
.y5b{bottom:423.906667pt;}
.y8c{bottom:424.866667pt;}
.y25{bottom:434.626667pt;}
.y5a{bottom:440.866667pt;}
.ye8{bottom:441.026667pt;}
.y8b{bottom:441.666667pt;}
.y147{bottom:441.986667pt;}
.yba{bottom:447.106667pt;}
.y11a{bottom:447.426667pt;}
.y24{bottom:451.426667pt;}
.y59{bottom:457.666667pt;}
.ye4{bottom:458.626667pt;}
.y146{bottom:458.786667pt;}
.y8a{bottom:466.466667pt;}
.y119{bottom:472.226667pt;}
.yb9{bottom:473.026667pt;}
.y58{bottom:474.626667pt;}
.y145{bottom:475.586667pt;}
.ye3{bottom:479.266667pt;}
.y161{bottom:482.466667pt;}
.y89{bottom:483.426667pt;}
.y23{bottom:484.066667pt;}
.yb8{bottom:489.986667pt;}
.y118{bottom:497.186667pt;}
.y57{bottom:499.266667pt;}
.y160{bottom:499.426667pt;}
.y88{bottom:500.226667pt;}
.y22{bottom:501.186667pt;}
.y144{bottom:501.506667pt;}
.ye2{bottom:504.066667pt;}
.yb7{bottom:514.786667pt;}
.y56{bottom:516.226667pt;}
.y87{bottom:517.186667pt;}
.y143{bottom:518.466667pt;}
.y117{bottom:521.986667pt;}
.y21{bottom:525.826667pt;}
.ye1{bottom:528.866667pt;}
.yb6{bottom:531.746667pt;}
.y55{bottom:533.186667pt;}
.y86{bottom:533.986667pt;}
.y142{bottom:535.266667pt;}
.y116{bottom:538.973333pt;}
.y20{bottom:542.973333pt;}
.ye0{bottom:546.013333pt;}
.yb5{bottom:548.573333pt;}
.y54{bottom:550.013333pt;}
.y85{bottom:550.973333pt;}
.y1f{bottom:559.773333pt;}
.y141{bottom:561.053333pt;}
.y115{bottom:561.373333pt;}
.ydf{bottom:562.813333pt;}
.yb4{bottom:565.533333pt;}
.y53{bottom:566.973333pt;}
.y84{bottom:567.773333pt;}
.y1e{bottom:576.733333pt;}
.y140{bottom:578.173333pt;}
.y114{bottom:578.813333pt;}
.yde{bottom:579.773333pt;}
.yb3{bottom:582.333333pt;}
.y52{bottom:583.773333pt;}
.y83{bottom:592.573333pt;}
.y1d{bottom:593.533333pt;}
.y13f{bottom:594.973333pt;}
.y113{bottom:596.413333pt;}
.y51{bottom:600.733333pt;}
.ydd{bottom:604.413333pt;}
.yb2{bottom:607.133333pt;}
.y82{bottom:609.533333pt;}
.y1c{bottom:610.333333pt;}
.y112{bottom:613.853333pt;}
.y15f{bottom:617.533333pt;}
.y13e{bottom:620.733333pt;}
.ydc{bottom:621.373333pt;}
.yb1{bottom:624.093333pt;}
.y50{bottom:625.373333pt;}
.y81{bottom:626.333333pt;}
.y1b{bottom:627.293333pt;}
.y15e{bottom:634.333333pt;}
.y111{bottom:634.653333pt;}
.y13d{bottom:637.853333pt;}
.yb0{bottom:640.893333pt;}
.y4f{bottom:642.333333pt;}
.y80{bottom:643.293333pt;}
.ydb{bottom:646.173333pt;}
.y15d{bottom:651.293333pt;}
.y1a{bottom:651.933333pt;}
.y13c{bottom:654.653333pt;}
.y4e{bottom:659.293333pt;}
.y110{bottom:659.453333pt;}
.yaf{bottom:665.693333pt;}
.y7f{bottom:667.933333pt;}
.y15c{bottom:668.093333pt;}
.y19{bottom:669.053333pt;}
.yda{bottom:672.093333pt;}
.y4d{bottom:676.093333pt;}
.y17c{bottom:678.493333pt;}
.y13b{bottom:680.413333pt;}
.yae{bottom:682.653333pt;}
.y7e{bottom:685.053333pt;}
.y10f{bottom:685.373333pt;}
.y18{bottom:685.853333pt;}
.y15b{bottom:692.893333pt;}
.y4c{bottom:693.053333pt;}
.y13a{bottom:697.373333pt;}
.yd9{bottom:698.013333pt;}
.yad{bottom:699.613333pt;}
.y7d{bottom:701.853333pt;}
.y17{bottom:702.653333pt;}
.y17b{bottom:703.453333pt;}
.y10e{bottom:703.613333pt;}
.y4b{bottom:709.853333pt;}
.y139{bottom:714.173333pt;}
.yac{bottom:716.413333pt;}
.y7c{bottom:718.653333pt;}
.y16{bottom:719.613333pt;}
.yd8{bottom:723.933333pt;}
.y4a{bottom:726.653333pt;}
.y10d{bottom:728.253333pt;}
.y15{bottom:736.413333pt;}
.y138{bottom:740.093333pt;}
.yab{bottom:741.053333pt;}
.y7b{bottom:743.453333pt;}
.y15a{bottom:743.613333pt;}
.y17a{bottom:745.373333pt;}
.yd7{bottom:749.853333pt;}
.y49{bottom:751.453333pt;}
.y10c{bottom:753.213333pt;}
.y137{bottom:757.053333pt;}
.yaa{bottom:758.173333pt;}
.y7a{bottom:760.413333pt;}
.y14{bottom:761.213333pt;}
.yd6{bottom:766.813333pt;}
.y48{bottom:768.413333pt;}
.y179{bottom:770.013333pt;}
.y136{bottom:773.893333pt;}
.ya9{bottom:775.013333pt;}
.y10b{bottom:775.653333pt;}
.y79{bottom:777.413333pt;}
.y13{bottom:778.213333pt;}
.y159{bottom:785.253333pt;}
.y47{bottom:785.413333pt;}
.y178{bottom:787.013333pt;}
.ya8{bottom:791.973333pt;}
.yd5{bottom:792.613333pt;}
.y10a{bottom:793.093333pt;}
.y78{bottom:794.213333pt;}
.y12{bottom:795.013333pt;}
.y135{bottom:799.813333pt;}
.y46{bottom:802.213333pt;}
.y177{bottom:803.973333pt;}
.yd4{bottom:809.733333pt;}
.y109{bottom:810.693333pt;}
.y77{bottom:811.013333pt;}
.y11{bottom:811.973333pt;}
.ya7{bottom:816.613333pt;}
.y134{bottom:816.773333pt;}
.y45{bottom:819.013333pt;}
.y76{bottom:827.973333pt;}
.y108{bottom:828.293333pt;}
.y176{bottom:828.613333pt;}
.y10{bottom:828.773333pt;}
.ya6{bottom:833.733333pt;}
.yd3{bottom:834.373333pt;}
.y44{bottom:835.973333pt;}
.yf{bottom:845.733333pt;}
.ya5{bottom:850.533333pt;}
.yd2{bottom:851.333333pt;}
.y75{bottom:852.613333pt;}
.y43{bottom:852.773333pt;}
.ye{bottom:862.533333pt;}
.y107{bottom:863.333333pt;}
.ya4{bottom:867.333333pt;}
.yd1{bottom:868.293333pt;}
.y74{bottom:869.733333pt;}
.y175{bottom:870.373333pt;}
.y133{bottom:876.293333pt;}
.y42{bottom:877.573333pt;}
.yd{bottom:879.333333pt;}
.y106{bottom:880.773333pt;}
.ya3{bottom:884.293333pt;}
.y73{bottom:886.533333pt;}
.y174{bottom:887.333333pt;}
.yd0{bottom:893.093333pt;}
.y132{bottom:893.253333pt;}
.y158{bottom:894.373333pt;}
.y41{bottom:894.533333pt;}
.ya2{bottom:901.093333pt;}
.y105{bottom:901.573333pt;}
.y72{bottom:903.333333pt;}
.y131{bottom:910.213333pt;}
.y40{bottom:911.333333pt;}
.y173{bottom:912.133333pt;}
.yc{bottom:912.293333pt;}
.ycf{bottom:919.013333pt;}
.y71{bottom:920.293333pt;}
.ya1{bottom:925.893333pt;}
.y104{bottom:926.373333pt;}
.y130{bottom:927.013333pt;}
.y3f{bottom:928.293333pt;}
.yb{bottom:929.093333pt;}
.y70{bottom:944.933333pt;}
.y3e{bottom:945.093333pt;}
.y103{bottom:951.173333pt;}
.ya{bottom:951.333333pt;}
.ya0{bottom:951.813333pt;}
.y12f{bottom:952.773333pt;}
.y172{bottom:953.893333pt;}
.y3d{bottom:962.053333pt;}
.y9{bottom:962.853333pt;}
.y9f{bottom:968.773333pt;}
.y12e{bottom:969.893333pt;}
.yce{bottom:970.693333pt;}
.y171{bottom:970.853333pt;}
.y102{bottom:973.573333pt;}
.y3c{bottom:978.853333pt;}
.ycd{bottom:987.813333pt;}
.y101{bottom:991.173333pt;}
.y9e{bottom:994.533333pt;}
.y8{bottom:995.653333pt;}
.y3b{bottom:995.813333pt;}
.yff{bottom:1008.613333pt;}
.y9d{bottom:1011.520000pt;}
.ycc{bottom:1012.480000pt;}
.y7{bottom:1012.640000pt;}
.y3{bottom:1030.240000pt;}
.y2{bottom:1047.680000pt;}
.y5{bottom:1050.400000pt;}
.y1{bottom:1066.720000pt;}
.hc{height:16.800000pt;}
.h11{height:16.832000pt;}
.he{height:16.960000pt;}
.h13{height:16.992000pt;}
.h15{height:17.120000pt;}
.h17{height:17.152000pt;}
.h16{height:17.280000pt;}
.h5{height:20.960000pt;}
.h9{height:25.918750pt;}
.ha{height:41.112500pt;}
.h7{height:41.543750pt;}
.h4{height:42.866250pt;}
.h6{height:46.593750pt;}
.h8{height:47.310625pt;}
.hb{height:48.530000pt;}
.h14{height:49.622500pt;}
.hd{height:51.840000pt;}
.h10{height:51.872000pt;}
.h12{height:52.000000pt;}
.h2{height:54.639063pt;}
.h3{height:58.563750pt;}
.hf{height:69.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:43.072000pt;}
.wa{width:46.720000pt;}
.we{width:55.392000pt;}
.w9{width:56.960000pt;}
.w10{width:61.440000pt;}
.w15{width:64.352000pt;}
.w16{width:67.520000pt;}
.w12{width:67.552000pt;}
.w6{width:88.000000pt;}
.w14{width:100.960000pt;}
.w7{width:118.432000pt;}
.wf{width:119.392000pt;}
.wd{width:120.800000pt;}
.w3{width:134.240000pt;}
.w4{width:140.346667pt;}
.wb{width:144.986667pt;}
.w5{width:149.626667pt;}
.w17{width:182.426667pt;}
.w13{width:189.946667pt;}
.wc{width:217.346667pt;}
.w8{width:320.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.880000pt;}
.x11{left:10.560000pt;}
.x33{left:12.320000pt;}
.x21{left:13.920000pt;}
.x4{left:15.040000pt;}
.x3e{left:16.800000pt;}
.x36{left:17.920000pt;}
.x1a{left:19.040000pt;}
.x19{left:21.600000pt;}
.x30{left:22.560000pt;}
.x26{left:23.840000pt;}
.x25{left:25.440000pt;}
.x23{left:27.680000pt;}
.x3d{left:31.520000pt;}
.x37{left:33.600000pt;}
.x14{left:36.640000pt;}
.x2e{left:38.080000pt;}
.x16{left:40.480000pt;}
.xd{left:42.880000pt;}
.x18{left:43.840000pt;}
.x1b{left:44.800000pt;}
.xf{left:45.920000pt;}
.x2b{left:47.520000pt;}
.x17{left:51.200000pt;}
.x15{left:56.480000pt;}
.x13{left:57.920000pt;}
.x1{left:67.199988pt;}
.xa{left:86.111988pt;}
.x39{left:93.632000pt;}
.x3f{left:95.711988pt;}
.x7{left:100.191988pt;}
.x1d{left:112.192000pt;}
.x40{left:115.231988pt;}
.x1e{left:128.154667pt;}
.xc{left:148.346667pt;}
.x28{left:200.026667pt;}
.x2d{left:203.386667pt;}
.xb{left:207.386655pt;}
.x27{left:208.826655pt;}
.x9{left:252.706655pt;}
.x1c{left:259.266655pt;}
.x6{left:267.746655pt;}
.x8{left:269.506655pt;}
.x3a{left:284.226667pt;}
.x38{left:286.626655pt;}
.xe{left:289.346667pt;}
.x2c{left:319.906655pt;}
.x2f{left:323.426667pt;}
.x5{left:326.946655pt;}
.x31{left:385.506667pt;}
.x29{left:418.173333pt;}
.x32{left:429.213333pt;}
.x1f{left:432.893333pt;}
.x10{left:439.613333pt;}
.x3b{left:450.813333pt;}
.x34{left:476.573333pt;}
.x20{left:490.493333pt;}
.x3c{left:518.973333pt;}
.x35{left:524.093333pt;}
.x12{left:528.253333pt;}
.x22{left:537.853333pt;}
.x2a{left:539.613333pt;}
.x3{left:598.693333pt;}
.x2{left:703.333322pt;}
}




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