
    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_05b77a5238b031760419d97f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3515f1d67f4f6718ce440c7d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ee2d2d50669c4fac4c000495.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_39df01cf72f7fee1d4ed46ca.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_587bca5bad1cc4b736729e36.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_de03851ea2731fa84070cb8e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e27689b931bfb90643e9ef2c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v3{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:40.320000px;}
.ls13{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012960px;}
.ls1c{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls24{letter-spacing:0.119520px;}
.ls7{letter-spacing:0.149760px;}
.ls1d{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.379920px;}
.ls2{letter-spacing:0.439920px;}
.ls14{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.828000px;}
.ls19{letter-spacing:1.811520px;}
.ls21{letter-spacing:16.506720px;}
.ls18{letter-spacing:16.559280px;}
.ls17{letter-spacing:17.279280px;}
.ls20{letter-spacing:46.026720px;}
.ls1f{letter-spacing:91.530720px;}
.lsa{letter-spacing:134.586720px;}
.lsf{letter-spacing:137.466720px;}
.ls9{letter-spacing:151.146720px;}
.ls10{letter-spacing:154.026720px;}
.ls8{letter-spacing:167.706720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws7{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.ws13{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.wse{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:87.099840px;}
.wsf{word-spacing:103.659840px;}
._3{margin-left:-5.745600px;}
._4{margin-left:-4.068960px;}
._b{margin-left:-2.928240px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._5{width:2.624640px;}
._a{width:4.302720px;}
._9{width:5.318640px;}
._c{width:6.690240px;}
._d{width:8.127360px;}
._12{width:9.265680px;}
._8{width:10.933200px;}
._15{width:12.337680px;}
._13{width:13.502880px;}
._14{width:15.968640px;}
._1c{width:17.031600px;}
._f{width:18.097920px;}
._e{width:19.422000px;}
._11{width:20.842320px;}
._1d{width:21.897120px;}
._19{width:23.724720px;}
._18{width:25.099200px;}
._10{width:31.191840px;}
._17{width:42.130800px;}
._16{width:50.556960px;}
._1a{width:51.818880px;}
._7{width:91.011600px;}
._6{width:92.406720px;}
._1b{width:153.635520px;}
._1{width:1100.028000px;}
.fc6{color:rgb(38,74,96);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc5{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.yca{bottom:2.700000px;}
.ycd{bottom:4.680000px;}
.yc6{bottom:4.860000px;}
.y25{bottom:5.760000px;}
.y136{bottom:5.805000px;}
.yb7{bottom:5.940000px;}
.y16d{bottom:5.985000px;}
.y132{bottom:6.480000px;}
.y7{bottom:8.100000px;}
.y139{bottom:10.440000px;}
.y23{bottom:10.980000px;}
.y12a{bottom:13.350000px;}
.yfe{bottom:13.860000px;}
.y12e{bottom:14.040000px;}
.y111{bottom:14.400000px;}
.y108{bottom:17.280000px;}
.yd0{bottom:21.420000px;}
.y13b{bottom:21.780000px;}
.y110{bottom:23.040000px;}
.yc8{bottom:23.580000px;}
.yc9{bottom:24.840000px;}
.y105{bottom:25.380000px;}
.y33{bottom:25.560000px;}
.y165{bottom:25.590000px;}
.y135{bottom:25.605000px;}
.yb6{bottom:25.740000px;}
.y16c{bottom:25.785000px;}
.y131{bottom:26.280000px;}
.ycc{bottom:26.820000px;}
.yc5{bottom:27.000000px;}
.y10e{bottom:27.900000px;}
.y102{bottom:28.665000px;}
.y138{bottom:30.240000px;}
.y22{bottom:30.780000px;}
.y12d{bottom:33.840000px;}
.y6{bottom:36.180000px;}
.y107{bottom:37.080000px;}
.y104{bottom:45.180000px;}
.y32{bottom:45.360000px;}
.yf3{bottom:45.540000px;}
.y173{bottom:45.570000px;}
.y10d{bottom:47.700000px;}
.y101{bottom:48.645000px;}
.y21{bottom:50.760000px;}
.yb{bottom:56.520000px;}
.y5{bottom:58.140000px;}
.yee{bottom:65.160000px;}
.y31{bottom:65.340000px;}
.yf8{bottom:65.385000px;}
.y10c{bottom:67.530000px;}
.y20{bottom:70.560000px;}
.y160{bottom:77.580000px;}
.y4{bottom:81.900000px;}
.y4a{bottom:82.980000px;}
.yeb{bottom:83.700000px;}
.y30{bottom:85.140000px;}
.yf2{bottom:85.170000px;}
.yf7{bottom:85.185000px;}
.yb3{bottom:88.380000px;}
.y1f{bottom:90.360000px;}
.y82{bottom:95.580000px;}
.y15f{bottom:97.380000px;}
.y49{bottom:102.780000px;}
.yea{bottom:103.500000px;}
.y2f{bottom:104.940000px;}
.yf1{bottom:104.970000px;}
.yf6{bottom:105.165000px;}
.y128{bottom:105.660000px;}
.yb2{bottom:108.180000px;}
.y9{bottom:108.750000px;}
.y1e{bottom:110.160000px;}
.y81{bottom:115.380000px;}
.y15e{bottom:117.180000px;}
.y3{bottom:118.110000px;}
.y48{bottom:122.760000px;}
.ye9{bottom:123.300000px;}
.y2e{bottom:124.770000px;}
.y127{bottom:125.460000px;}
.yb1{bottom:128.160000px;}
.yfc{bottom:129.960000px;}
.y1d{bottom:129.990000px;}
.y8{bottom:130.710000px;}
.y80{bottom:135.180000px;}
.y15d{bottom:137.160000px;}
.y172{bottom:138.060000px;}
.y47{bottom:142.560000px;}
.ye8{bottom:143.280000px;}
.y2d{bottom:144.570000px;}
.y126{bottom:145.260000px;}
.yb0{bottom:147.960000px;}
.yfb{bottom:149.760000px;}
.y1c{bottom:149.970000px;}
.y15c{bottom:151.950000px;}
.y7f{bottom:155.190000px;}
.y46{bottom:162.390000px;}
.ye7{bottom:163.110000px;}
.y2c{bottom:164.550000px;}
.y125{bottom:165.090000px;}
.yaf{bottom:167.790000px;}
.y1b{bottom:169.770000px;}
.y15b{bottom:172.470000px;}
.y7e{bottom:174.990000px;}
.y45{bottom:182.190000px;}
.ye6{bottom:182.910000px;}
.y2b{bottom:184.350000px;}
.y124{bottom:184.890000px;}
.yae{bottom:187.590000px;}
.y1a{bottom:189.570000px;}
.y15a{bottom:192.990000px;}
.y7d{bottom:194.790000px;}
.y171{bottom:198.390000px;}
.y44{bottom:201.990000px;}
.ye5{bottom:202.710000px;}
.y2a{bottom:204.150000px;}
.y123{bottom:204.870000px;}
.yad{bottom:207.390000px;}
.y19{bottom:209.370000px;}
.y159{bottom:213.690000px;}
.y7c{bottom:214.590000px;}
.y43{bottom:221.970000px;}
.ye4{bottom:222.510000px;}
.y29{bottom:223.950000px;}
.y122{bottom:224.670000px;}
.y18{bottom:229.170000px;}
.y158{bottom:234.210000px;}
.y7b{bottom:234.390000px;}
.yac{bottom:236.370000px;}
.y170{bottom:238.710000px;}
.y42{bottom:241.770000px;}
.ye3{bottom:242.490000px;}
.y28{bottom:243.750000px;}
.y121{bottom:244.470000px;}
.yfa{bottom:248.970000px;}
.y17{bottom:249.150000px;}
.y7a{bottom:254.370000px;}
.y157{bottom:254.910000px;}
.yab{bottom:256.170000px;}
.y41{bottom:261.570000px;}
.ye2{bottom:262.290000px;}
.y27{bottom:263.730000px;}
.y120{bottom:264.270000px;}
.y16{bottom:268.950000px;}
.y79{bottom:274.170000px;}
.y156{bottom:275.430000px;}
.yaa{bottom:275.970000px;}
.y40{bottom:281.370000px;}
.ye1{bottom:282.270000px;}
.y26{bottom:283.530000px;}
.y11f{bottom:284.070000px;}
.y15{bottom:288.750000px;}
.y78{bottom:293.970000px;}
.ya9{bottom:295.770000px;}
.y16f{bottom:299.010000px;}
.y3f{bottom:301.170000px;}
.y155{bottom:301.710000px;}
.ye0{bottom:302.250000px;}
.y11e{bottom:304.050000px;}
.y14{bottom:308.550000px;}
.y77{bottom:313.770000px;}
.ya8{bottom:315.570000px;}
.y3e{bottom:321.150000px;}
.y154{bottom:321.690000px;}
.ydf{bottom:322.230000px;}
.y11d{bottom:323.850000px;}
.yf9{bottom:328.350000px;}
.y76{bottom:333.570000px;}
.ya7{bottom:335.550000px;}
.y16e{bottom:339.510000px;}
.y3d{bottom:340.950000px;}
.y153{bottom:341.490000px;}
.yde{bottom:342.030000px;}
.yf5{bottom:343.110000px;}
.y11c{bottom:343.650000px;}
.y75{bottom:353.550000px;}
.ya6{bottom:355.350000px;}
.y3c{bottom:360.750000px;}
.y152{bottom:361.290000px;}
.ydd{bottom:361.830000px;}
.y11b{bottom:363.450000px;}
.y74{bottom:373.350000px;}
.ya5{bottom:375.150000px;}
.y3b{bottom:380.550000px;}
.y151{bottom:381.090000px;}
.ydc{bottom:381.630000px;}
.y11a{bottom:383.250000px;}
.y73{bottom:393.150000px;}
.ya4{bottom:394.950000px;}
.y16b{bottom:399.630000px;}
.y3a{bottom:400.350000px;}
.y150{bottom:400.935000px;}
.ydb{bottom:401.835000px;}
.y119{bottom:403.275000px;}
.y72{bottom:412.995000px;}
.ya3{bottom:414.795000px;}
.y39{bottom:420.375000px;}
.y14f{bottom:420.915000px;}
.yda{bottom:421.815000px;}
.y118{bottom:423.075000px;}
.y71{bottom:432.795000px;}
.ya2{bottom:434.775000px;}
.y38{bottom:440.175000px;}
.y14e{bottom:440.715000px;}
.yd9{bottom:441.615000px;}
.y117{bottom:442.875000px;}
.y70{bottom:452.775000px;}
.ya1{bottom:454.575000px;}
.y37{bottom:459.975000px;}
.y14d{bottom:460.515000px;}
.y116{bottom:462.675000px;}
.yf4{bottom:463.035000px;}
.yd8{bottom:470.415000px;}
.y6f{bottom:472.575000px;}
.ya0{bottom:474.375000px;}
.y36{bottom:479.775000px;}
.y14c{bottom:480.315000px;}
.y115{bottom:482.475000px;}
.y16a{bottom:486.435000px;}
.yd7{bottom:490.215000px;}
.y6e{bottom:492.375000px;}
.y9f{bottom:494.175000px;}
.y35{bottom:499.575000px;}
.y14b{bottom:500.115000px;}
.y114{bottom:502.455000px;}
.y169{bottom:506.235000px;}
.yd6{bottom:510.195000px;}
.y6d{bottom:512.175000px;}
.y9e{bottom:513.975000px;}
.y34{bottom:519.555000px;}
.y14a{bottom:520.095000px;}
.y168{bottom:520.995000px;}
.y113{bottom:522.255000px;}
.yd5{bottom:529.995000px;}
.y6c{bottom:531.975000px;}
.y9d{bottom:533.955000px;}
.y13{bottom:538.815000px;}
.y149{bottom:539.895000px;}
.y112{bottom:542.055000px;}
.yd4{bottom:549.795000px;}
.y6b{bottom:551.955000px;}
.y9c{bottom:553.755000px;}
.y10f{bottom:557.535000px;}
.y148{bottom:559.695000px;}
.y167{bottom:561.495000px;}
.yd3{bottom:569.595000px;}
.y6a{bottom:571.755000px;}
.y9b{bottom:573.555000px;}
.y147{bottom:579.495000px;}
.yf0{bottom:582.735000px;}
.yd2{bottom:589.395000px;}
.y69{bottom:591.555000px;}
.y9a{bottom:593.355000px;}
.y10b{bottom:596.055000px;}
.y146{bottom:599.295000px;}
.y166{bottom:601.815000px;}
.yd1{bottom:609.375000px;}
.y68{bottom:611.355000px;}
.y99{bottom:613.155000px;}
.y145{bottom:619.275000px;}
.ycf{bottom:624.135000px;}
.y67{bottom:631.155000px;}
.y98{bottom:633.135000px;}
.y144{bottom:639.075000px;}
.y164{bottom:642.315000px;}
.y66{bottom:651.165000px;}
.y97{bottom:652.965000px;}
.y143{bottom:658.905000px;}
.yce{bottom:660.345000px;}
.y65{bottom:670.965000px;}
.y96{bottom:672.765000px;}
.y142{bottom:678.705000px;}
.y10a{bottom:679.065000px;}
.y163{bottom:682.665000px;}
.y64{bottom:690.765000px;}
.y95{bottom:692.565000px;}
.y141{bottom:698.505000px;}
.ycb{bottom:698.685000px;}
.yef{bottom:702.645000px;}
.y63{bottom:710.565000px;}
.y94{bottom:712.365000px;}
.y140{bottom:718.485000px;}
.y109{bottom:720.285000px;}
.y162{bottom:723.165000px;}
.y62{bottom:730.365000px;}
.y93{bottom:732.345000px;}
.y13f{bottom:738.285000px;}
.yc7{bottom:739.005000px;}
.y61{bottom:750.345000px;}
.y13e{bottom:758.085000px;}
.y92{bottom:761.145000px;}
.y161{bottom:763.485000px;}
.y60{bottom:770.145000px;}
.y106{bottom:773.025000px;}
.yc4{bottom:777.345000px;}
.y13d{bottom:777.885000px;}
.y91{bottom:780.945000px;}
.y5f{bottom:789.945000px;}
.y13c{bottom:797.685000px;}
.y90{bottom:800.745000px;}
.yed{bottom:802.545000px;}
.y5e{bottom:809.745000px;}
.y13a{bottom:813.345000px;}
.yc3{bottom:817.845000px;}
.y8f{bottom:820.545000px;}
.y103{bottom:825.585000px;}
.y5d{bottom:829.545000px;}
.y8e{bottom:840.525000px;}
.y24{bottom:841.605000px;}
.y5c{bottom:849.525000px;}
.y137{bottom:850.785000px;}
.y8d{bottom:860.325000px;}
.yc2{bottom:864.105000px;}
.y5b{bottom:869.325000px;}
.y12{bottom:872.385000px;}
.y8c{bottom:880.125000px;}
.yec{bottom:882.645000px;}
.yc1{bottom:883.905000px;}
.y100{bottom:886.425000px;}
.y5a{bottom:889.125000px;}
.y134{bottom:896.685000px;}
.y11{bottom:897.585000px;}
.y8b{bottom:899.970000px;}
.yc0{bottom:903.750000px;}
.y59{bottom:908.970000px;}
.y10{bottom:917.430000px;}
.y8a{bottom:919.770000px;}
.ybf{bottom:923.550000px;}
.y58{bottom:928.770000px;}
.yf{bottom:932.550000px;}
.y133{bottom:937.770000px;}
.y89{bottom:939.750000px;}
.ybe{bottom:943.350000px;}
.y57{bottom:948.750000px;}
.yff{bottom:950.550000px;}
.ye{bottom:953.790000px;}
.y88{bottom:959.550000px;}
.ybd{bottom:963.330000px;}
.y56{bottom:968.550000px;}
.yd{bottom:977.370000px;}
.y130{bottom:978.990000px;}
.y87{bottom:979.350000px;}
.ybc{bottom:983.130000px;}
.yfd{bottom:986.370000px;}
.y55{bottom:988.350000px;}
.ybb{bottom:997.890000px;}
.y86{bottom:999.150000px;}
.y54{bottom:1008.150000px;}
.yc{bottom:1009.050000px;}
.yba{bottom:1018.410000px;}
.y85{bottom:1018.950000px;}
.y12f{bottom:1020.930000px;}
.y53{bottom:1027.950000px;}
.ya{bottom:1035.870000px;}
.y84{bottom:1038.930000px;}
.yb9{bottom:1039.110000px;}
.y52{bottom:1047.930000px;}
.y1{bottom:1052.250000px;}
.y83{bottom:1058.730000px;}
.yb8{bottom:1059.630000px;}
.y12c{bottom:1061.970000px;}
.y51{bottom:1067.730000px;}
.yb5{bottom:1080.150000px;}
.y50{bottom:1087.530000px;}
.y4f{bottom:1107.330000px;}
.y12b{bottom:1111.290000px;}
.yb4{bottom:1120.650000px;}
.y4e{bottom:1127.130000px;}
.y129{bottom:1146.030000px;}
.y4d{bottom:1147.140000px;}
.y4c{bottom:1166.940000px;}
.y4b{bottom:1195.740000px;}
.he{height:19.800000px;}
.h19{height:19.836000px;}
.h13{height:19.980000px;}
.ha{height:27.147656px;}
.h26{height:34.740000px;}
.h25{height:34.956000px;}
.h18{height:35.496000px;}
.h1f{height:35.820000px;}
.h24{height:37.080000px;}
.h17{height:37.620000px;}
.h14{height:39.600000px;}
.h11{height:39.636000px;}
.h12{height:39.780000px;}
.h2a{height:39.816000px;}
.h28{height:40.320000px;}
.hb{height:41.726953px;}
.h8{height:42.164648px;}
.h10{height:43.506914px;}
.h29{height:44.280000px;}
.h27{height:47.880000px;}
.hd{height:49.255313px;}
.h6{height:50.273438px;}
.h15{height:50.364141px;}
.h22{height:51.120000px;}
.h9{height:53.224453px;}
.h21{height:59.220000px;}
.h2b{height:59.400000px;}
.h2c{height:59.580000px;}
.h2d{height:59.616000px;}
.h20{height:62.676000px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h3{height:73.722656px;}
.h1a{height:79.200000px;}
.h23{height:81.576000px;}
.h16{height:90.684141px;}
.h1b{height:99.180000px;}
.h4{height:105.060586px;}
.h1d{height:118.980000px;}
.h1c{height:119.016000px;}
.h1e{height:119.196000px;}
.h2{height:156.810000px;}
.hf{height:297.570000px;}
.hc{height:322.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:39.816000px;}
.w24{width:39.960000px;}
.w27{width:41.400000px;}
.w1a{width:45.900000px;}
.w26{width:46.620000px;}
.w25{width:46.836000px;}
.wa{width:50.580000px;}
.w1b{width:52.560000px;}
.w14{width:52.596000px;}
.w22{width:54.756000px;}
.w16{width:54.900000px;}
.w1c{width:55.980000px;}
.w13{width:59.940000px;}
.w15{width:66.060000px;}
.w21{width:88.560000px;}
.w20{width:93.816000px;}
.w1f{width:107.280000px;}
.wc{width:118.116000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.w1e{width:161.310000px;}
.w9{width:190.650000px;}
.w10{width:223.050000px;}
.wf{width:225.210000px;}
.we{width:225.930000px;}
.wb{width:240.510000px;}
.wd{width:260.670000px;}
.w1d{width:263.910000px;}
.w8{width:265.035000px;}
.w6{width:304.815000px;}
.w23{width:412.275000px;}
.w12{width:438.915000px;}
.w7{width:473.325000px;}
.w18{width:486.075000px;}
.w3{width:499.785000px;}
.w11{width:676.725000px;}
.w17{width:684.645000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:4.500000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:55.980000px;}
.x2d{left:64.799987px;}
.x2c{left:68.939987px;}
.x2b{left:73.079987px;}
.x17{left:74.880000px;}
.x19{left:79.020000px;}
.xd{left:80.999987px;}
.x26{left:87.696000px;}
.x18{left:99.720000px;}
.x7{left:102.285000px;}
.x21{left:104.256000px;}
.x12{left:108.035987px;}
.x13{left:110.556000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.xe{left:135.035987px;}
.x2e{left:137.376000px;}
.xc{left:158.609987px;}
.x14{left:161.850000px;}
.x3{left:181.650000px;}
.xf{left:216.029987px;}
.x10{left:218.370000px;}
.x1a{left:335.415000px;}
.x27{left:352.335000px;}
.xb{left:363.855000px;}
.x15{left:403.095000px;}
.x11{left:484.125000px;}
.x28{left:514.365000px;}
.x16{left:521.925000px;}
.x1d{left:547.125000px;}
.x2f{left:550.365000px;}
.x1b{left:561.345000px;}
.x22{left:590.325000px;}
.x1e{left:608.505000px;}
.x29{left:622.365000px;}
.x23{left:631.590000px;}
.x30{left:638.610000px;}
.x1f{left:662.550000px;}
.x24{left:678.930000px;}
.x9{left:681.450000px;}
.x31{left:685.950000px;}
.x2a{left:716.910000px;}
.x20{left:730.050000px;}
.x25{left:732.930000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v3{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:35.840000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.011520pt;}
.ls1c{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls24{letter-spacing:0.106240pt;}
.ls7{letter-spacing:0.133120pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.337707pt;}
.ls2{letter-spacing:0.391040pt;}
.ls14{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.736000pt;}
.ls19{letter-spacing:1.610240pt;}
.ls21{letter-spacing:14.672640pt;}
.ls18{letter-spacing:14.719360pt;}
.ls17{letter-spacing:15.359360pt;}
.ls20{letter-spacing:40.912640pt;}
.ls1f{letter-spacing:81.360640pt;}
.lsa{letter-spacing:119.632640pt;}
.lsf{letter-spacing:122.192640pt;}
.ls9{letter-spacing:134.352640pt;}
.ls10{letter-spacing:136.912640pt;}
.ls8{letter-spacing:149.072640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.ws13{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.wse{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:77.422080pt;}
.wsf{word-spacing:92.142080pt;}
._3{margin-left:-5.107200pt;}
._4{margin-left:-3.616853pt;}
._b{margin-left:-2.602880pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._5{width:2.333013pt;}
._a{width:3.824640pt;}
._9{width:4.727680pt;}
._c{width:5.946880pt;}
._d{width:7.224320pt;}
._12{width:8.236160pt;}
._8{width:9.718400pt;}
._15{width:10.966827pt;}
._13{width:12.002560pt;}
._14{width:14.194347pt;}
._1c{width:15.139200pt;}
._f{width:16.087040pt;}
._e{width:17.264000pt;}
._11{width:18.526507pt;}
._1d{width:19.464107pt;}
._19{width:21.088640pt;}
._18{width:22.310400pt;}
._10{width:27.726080pt;}
._17{width:37.449600pt;}
._16{width:44.939520pt;}
._1a{width:46.061227pt;}
._7{width:80.899200pt;}
._6{width:82.139307pt;}
._1b{width:136.564907pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.yca{bottom:2.400000pt;}
.ycd{bottom:4.160000pt;}
.yc6{bottom:4.320000pt;}
.y25{bottom:5.120000pt;}
.y136{bottom:5.160000pt;}
.yb7{bottom:5.280000pt;}
.y16d{bottom:5.320000pt;}
.y132{bottom:5.760000pt;}
.y7{bottom:7.200000pt;}
.y139{bottom:9.280000pt;}
.y23{bottom:9.760000pt;}
.y12a{bottom:11.866667pt;}
.yfe{bottom:12.320000pt;}
.y12e{bottom:12.480000pt;}
.y111{bottom:12.800000pt;}
.y108{bottom:15.360000pt;}
.yd0{bottom:19.040000pt;}
.y13b{bottom:19.360000pt;}
.y110{bottom:20.480000pt;}
.yc8{bottom:20.960000pt;}
.yc9{bottom:22.080000pt;}
.y105{bottom:22.560000pt;}
.y33{bottom:22.720000pt;}
.y165{bottom:22.746667pt;}
.y135{bottom:22.760000pt;}
.yb6{bottom:22.880000pt;}
.y16c{bottom:22.920000pt;}
.y131{bottom:23.360000pt;}
.ycc{bottom:23.840000pt;}
.yc5{bottom:24.000000pt;}
.y10e{bottom:24.800000pt;}
.y102{bottom:25.480000pt;}
.y138{bottom:26.880000pt;}
.y22{bottom:27.360000pt;}
.y12d{bottom:30.080000pt;}
.y6{bottom:32.160000pt;}
.y107{bottom:32.960000pt;}
.y104{bottom:40.160000pt;}
.y32{bottom:40.320000pt;}
.yf3{bottom:40.480000pt;}
.y173{bottom:40.506667pt;}
.y10d{bottom:42.400000pt;}
.y101{bottom:43.240000pt;}
.y21{bottom:45.120000pt;}
.yb{bottom:50.240000pt;}
.y5{bottom:51.680000pt;}
.yee{bottom:57.920000pt;}
.y31{bottom:58.080000pt;}
.yf8{bottom:58.120000pt;}
.y10c{bottom:60.026667pt;}
.y20{bottom:62.720000pt;}
.y160{bottom:68.960000pt;}
.y4{bottom:72.800000pt;}
.y4a{bottom:73.760000pt;}
.yeb{bottom:74.400000pt;}
.y30{bottom:75.680000pt;}
.yf2{bottom:75.706667pt;}
.yf7{bottom:75.720000pt;}
.yb3{bottom:78.560000pt;}
.y1f{bottom:80.320000pt;}
.y82{bottom:84.960000pt;}
.y15f{bottom:86.560000pt;}
.y49{bottom:91.360000pt;}
.yea{bottom:92.000000pt;}
.y2f{bottom:93.280000pt;}
.yf1{bottom:93.306667pt;}
.yf6{bottom:93.480000pt;}
.y128{bottom:93.920000pt;}
.yb2{bottom:96.160000pt;}
.y9{bottom:96.666667pt;}
.y1e{bottom:97.920000pt;}
.y81{bottom:102.560000pt;}
.y15e{bottom:104.160000pt;}
.y3{bottom:104.986667pt;}
.y48{bottom:109.120000pt;}
.ye9{bottom:109.600000pt;}
.y2e{bottom:110.906667pt;}
.y127{bottom:111.520000pt;}
.yb1{bottom:113.920000pt;}
.yfc{bottom:115.520000pt;}
.y1d{bottom:115.546667pt;}
.y8{bottom:116.186667pt;}
.y80{bottom:120.160000pt;}
.y15d{bottom:121.920000pt;}
.y172{bottom:122.720000pt;}
.y47{bottom:126.720000pt;}
.ye8{bottom:127.360000pt;}
.y2d{bottom:128.506667pt;}
.y126{bottom:129.120000pt;}
.yb0{bottom:131.520000pt;}
.yfb{bottom:133.120000pt;}
.y1c{bottom:133.306667pt;}
.y15c{bottom:135.066667pt;}
.y7f{bottom:137.946667pt;}
.y46{bottom:144.346667pt;}
.ye7{bottom:144.986667pt;}
.y2c{bottom:146.266667pt;}
.y125{bottom:146.746667pt;}
.yaf{bottom:149.146667pt;}
.y1b{bottom:150.906667pt;}
.y15b{bottom:153.306667pt;}
.y7e{bottom:155.546667pt;}
.y45{bottom:161.946667pt;}
.ye6{bottom:162.586667pt;}
.y2b{bottom:163.866667pt;}
.y124{bottom:164.346667pt;}
.yae{bottom:166.746667pt;}
.y1a{bottom:168.506667pt;}
.y15a{bottom:171.546667pt;}
.y7d{bottom:173.146667pt;}
.y171{bottom:176.346667pt;}
.y44{bottom:179.546667pt;}
.ye5{bottom:180.186667pt;}
.y2a{bottom:181.466667pt;}
.y123{bottom:182.106667pt;}
.yad{bottom:184.346667pt;}
.y19{bottom:186.106667pt;}
.y159{bottom:189.946667pt;}
.y7c{bottom:190.746667pt;}
.y43{bottom:197.306667pt;}
.ye4{bottom:197.786667pt;}
.y29{bottom:199.066667pt;}
.y122{bottom:199.706667pt;}
.y18{bottom:203.706667pt;}
.y158{bottom:208.186667pt;}
.y7b{bottom:208.346667pt;}
.yac{bottom:210.106667pt;}
.y170{bottom:212.186667pt;}
.y42{bottom:214.906667pt;}
.ye3{bottom:215.546667pt;}
.y28{bottom:216.666667pt;}
.y121{bottom:217.306667pt;}
.yfa{bottom:221.306667pt;}
.y17{bottom:221.466667pt;}
.y7a{bottom:226.106667pt;}
.y157{bottom:226.586667pt;}
.yab{bottom:227.706667pt;}
.y41{bottom:232.506667pt;}
.ye2{bottom:233.146667pt;}
.y27{bottom:234.426667pt;}
.y120{bottom:234.906667pt;}
.y16{bottom:239.066667pt;}
.y79{bottom:243.706667pt;}
.y156{bottom:244.826667pt;}
.yaa{bottom:245.306667pt;}
.y40{bottom:250.106667pt;}
.ye1{bottom:250.906667pt;}
.y26{bottom:252.026667pt;}
.y11f{bottom:252.506667pt;}
.y15{bottom:256.666667pt;}
.y78{bottom:261.306667pt;}
.ya9{bottom:262.906667pt;}
.y16f{bottom:265.786667pt;}
.y3f{bottom:267.706667pt;}
.y155{bottom:268.186667pt;}
.ye0{bottom:268.666667pt;}
.y11e{bottom:270.266667pt;}
.y14{bottom:274.266667pt;}
.y77{bottom:278.906667pt;}
.ya8{bottom:280.506667pt;}
.y3e{bottom:285.466667pt;}
.y154{bottom:285.946667pt;}
.ydf{bottom:286.426667pt;}
.y11d{bottom:287.866667pt;}
.yf9{bottom:291.866667pt;}
.y76{bottom:296.506667pt;}
.ya7{bottom:298.266667pt;}
.y16e{bottom:301.786667pt;}
.y3d{bottom:303.066667pt;}
.y153{bottom:303.546667pt;}
.yde{bottom:304.026667pt;}
.yf5{bottom:304.986667pt;}
.y11c{bottom:305.466667pt;}
.y75{bottom:314.266667pt;}
.ya6{bottom:315.866667pt;}
.y3c{bottom:320.666667pt;}
.y152{bottom:321.146667pt;}
.ydd{bottom:321.626667pt;}
.y11b{bottom:323.066667pt;}
.y74{bottom:331.866667pt;}
.ya5{bottom:333.466667pt;}
.y3b{bottom:338.266667pt;}
.y151{bottom:338.746667pt;}
.ydc{bottom:339.226667pt;}
.y11a{bottom:340.666667pt;}
.y73{bottom:349.466667pt;}
.ya4{bottom:351.066667pt;}
.y16b{bottom:355.226667pt;}
.y3a{bottom:355.866667pt;}
.y150{bottom:356.386667pt;}
.ydb{bottom:357.186667pt;}
.y119{bottom:358.466667pt;}
.y72{bottom:367.106667pt;}
.ya3{bottom:368.706667pt;}
.y39{bottom:373.666667pt;}
.y14f{bottom:374.146667pt;}
.yda{bottom:374.946667pt;}
.y118{bottom:376.066667pt;}
.y71{bottom:384.706667pt;}
.ya2{bottom:386.466667pt;}
.y38{bottom:391.266667pt;}
.y14e{bottom:391.746667pt;}
.yd9{bottom:392.546667pt;}
.y117{bottom:393.666667pt;}
.y70{bottom:402.466667pt;}
.ya1{bottom:404.066667pt;}
.y37{bottom:408.866667pt;}
.y14d{bottom:409.346667pt;}
.y116{bottom:411.266667pt;}
.yf4{bottom:411.586667pt;}
.yd8{bottom:418.146667pt;}
.y6f{bottom:420.066667pt;}
.ya0{bottom:421.666667pt;}
.y36{bottom:426.466667pt;}
.y14c{bottom:426.946667pt;}
.y115{bottom:428.866667pt;}
.y16a{bottom:432.386667pt;}
.yd7{bottom:435.746667pt;}
.y6e{bottom:437.666667pt;}
.y9f{bottom:439.266667pt;}
.y35{bottom:444.066667pt;}
.y14b{bottom:444.546667pt;}
.y114{bottom:446.626667pt;}
.y169{bottom:449.986667pt;}
.yd6{bottom:453.506667pt;}
.y6d{bottom:455.266667pt;}
.y9e{bottom:456.866667pt;}
.y34{bottom:461.826667pt;}
.y14a{bottom:462.306667pt;}
.y168{bottom:463.106667pt;}
.y113{bottom:464.226667pt;}
.yd5{bottom:471.106667pt;}
.y6c{bottom:472.866667pt;}
.y9d{bottom:474.626667pt;}
.y13{bottom:478.946667pt;}
.y149{bottom:479.906667pt;}
.y112{bottom:481.826667pt;}
.yd4{bottom:488.706667pt;}
.y6b{bottom:490.626667pt;}
.y9c{bottom:492.226667pt;}
.y10f{bottom:495.586667pt;}
.y148{bottom:497.506667pt;}
.y167{bottom:499.106667pt;}
.yd3{bottom:506.306667pt;}
.y6a{bottom:508.226667pt;}
.y9b{bottom:509.826667pt;}
.y147{bottom:515.106667pt;}
.yf0{bottom:517.986667pt;}
.yd2{bottom:523.906667pt;}
.y69{bottom:525.826667pt;}
.y9a{bottom:527.426667pt;}
.y10b{bottom:529.826667pt;}
.y146{bottom:532.706667pt;}
.y166{bottom:534.946667pt;}
.yd1{bottom:541.666667pt;}
.y68{bottom:543.426667pt;}
.y99{bottom:545.026667pt;}
.y145{bottom:550.466667pt;}
.ycf{bottom:554.786667pt;}
.y67{bottom:561.026667pt;}
.y98{bottom:562.786667pt;}
.y144{bottom:568.066667pt;}
.y164{bottom:570.946667pt;}
.y66{bottom:578.813333pt;}
.y97{bottom:580.413333pt;}
.y143{bottom:585.693333pt;}
.yce{bottom:586.973333pt;}
.y65{bottom:596.413333pt;}
.y96{bottom:598.013333pt;}
.y142{bottom:603.293333pt;}
.y10a{bottom:603.613333pt;}
.y163{bottom:606.813333pt;}
.y64{bottom:614.013333pt;}
.y95{bottom:615.613333pt;}
.y141{bottom:620.893333pt;}
.ycb{bottom:621.053333pt;}
.yef{bottom:624.573333pt;}
.y63{bottom:631.613333pt;}
.y94{bottom:633.213333pt;}
.y140{bottom:638.653333pt;}
.y109{bottom:640.253333pt;}
.y162{bottom:642.813333pt;}
.y62{bottom:649.213333pt;}
.y93{bottom:650.973333pt;}
.y13f{bottom:656.253333pt;}
.yc7{bottom:656.893333pt;}
.y61{bottom:666.973333pt;}
.y13e{bottom:673.853333pt;}
.y92{bottom:676.573333pt;}
.y161{bottom:678.653333pt;}
.y60{bottom:684.573333pt;}
.y106{bottom:687.133333pt;}
.yc4{bottom:690.973333pt;}
.y13d{bottom:691.453333pt;}
.y91{bottom:694.173333pt;}
.y5f{bottom:702.173333pt;}
.y13c{bottom:709.053333pt;}
.y90{bottom:711.773333pt;}
.yed{bottom:713.373333pt;}
.y5e{bottom:719.773333pt;}
.y13a{bottom:722.973333pt;}
.yc3{bottom:726.973333pt;}
.y8f{bottom:729.373333pt;}
.y103{bottom:733.853333pt;}
.y5d{bottom:737.373333pt;}
.y8e{bottom:747.133333pt;}
.y24{bottom:748.093333pt;}
.y5c{bottom:755.133333pt;}
.y137{bottom:756.253333pt;}
.y8d{bottom:764.733333pt;}
.yc2{bottom:768.093333pt;}
.y5b{bottom:772.733333pt;}
.y12{bottom:775.453333pt;}
.y8c{bottom:782.333333pt;}
.yec{bottom:784.573333pt;}
.yc1{bottom:785.693333pt;}
.y100{bottom:787.933333pt;}
.y5a{bottom:790.333333pt;}
.y134{bottom:797.053333pt;}
.y11{bottom:797.853333pt;}
.y8b{bottom:799.973333pt;}
.yc0{bottom:803.333333pt;}
.y59{bottom:807.973333pt;}
.y10{bottom:815.493333pt;}
.y8a{bottom:817.573333pt;}
.ybf{bottom:820.933333pt;}
.y58{bottom:825.573333pt;}
.yf{bottom:828.933333pt;}
.y133{bottom:833.573333pt;}
.y89{bottom:835.333333pt;}
.ybe{bottom:838.533333pt;}
.y57{bottom:843.333333pt;}
.yff{bottom:844.933333pt;}
.ye{bottom:847.813333pt;}
.y88{bottom:852.933333pt;}
.ybd{bottom:856.293333pt;}
.y56{bottom:860.933333pt;}
.yd{bottom:868.773333pt;}
.y130{bottom:870.213333pt;}
.y87{bottom:870.533333pt;}
.ybc{bottom:873.893333pt;}
.yfd{bottom:876.773333pt;}
.y55{bottom:878.533333pt;}
.ybb{bottom:887.013333pt;}
.y86{bottom:888.133333pt;}
.y54{bottom:896.133333pt;}
.yc{bottom:896.933333pt;}
.yba{bottom:905.253333pt;}
.y85{bottom:905.733333pt;}
.y12f{bottom:907.493333pt;}
.y53{bottom:913.733333pt;}
.ya{bottom:920.773333pt;}
.y84{bottom:923.493333pt;}
.yb9{bottom:923.653333pt;}
.y52{bottom:931.493333pt;}
.y1{bottom:935.333333pt;}
.y83{bottom:941.093333pt;}
.yb8{bottom:941.893333pt;}
.y12c{bottom:943.973333pt;}
.y51{bottom:949.093333pt;}
.yb5{bottom:960.133333pt;}
.y50{bottom:966.693333pt;}
.y4f{bottom:984.293333pt;}
.y12b{bottom:987.813333pt;}
.yb4{bottom:996.133333pt;}
.y4e{bottom:1001.893333pt;}
.y129{bottom:1018.693333pt;}
.y4d{bottom:1019.680000pt;}
.y4c{bottom:1037.280000pt;}
.y4b{bottom:1062.880000pt;}
.he{height:17.600000pt;}
.h19{height:17.632000pt;}
.h13{height:17.760000pt;}
.ha{height:24.131250pt;}
.h26{height:30.880000pt;}
.h25{height:31.072000pt;}
.h18{height:31.552000pt;}
.h1f{height:31.840000pt;}
.h24{height:32.960000pt;}
.h17{height:33.440000pt;}
.h14{height:35.200000pt;}
.h11{height:35.232000pt;}
.h12{height:35.360000pt;}
.h2a{height:35.392000pt;}
.h28{height:35.840000pt;}
.hb{height:37.090625pt;}
.h8{height:37.479688pt;}
.h10{height:38.672812pt;}
.h29{height:39.360000pt;}
.h27{height:42.560000pt;}
.hd{height:43.782500pt;}
.h6{height:44.687500pt;}
.h15{height:44.768125pt;}
.h22{height:45.440000pt;}
.h9{height:47.310625pt;}
.h21{height:52.640000pt;}
.h2b{height:52.800000pt;}
.h2c{height:52.960000pt;}
.h2d{height:52.992000pt;}
.h20{height:55.712000pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h3{height:65.531250pt;}
.h1a{height:70.400000pt;}
.h23{height:72.512000pt;}
.h16{height:80.608125pt;}
.h1b{height:88.160000pt;}
.h4{height:93.387187pt;}
.h1d{height:105.760000pt;}
.h1c{height:105.792000pt;}
.h1e{height:105.952000pt;}
.h2{height:139.386667pt;}
.hf{height:264.506667pt;}
.hc{height:286.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:35.392000pt;}
.w24{width:35.520000pt;}
.w27{width:36.800000pt;}
.w1a{width:40.800000pt;}
.w26{width:41.440000pt;}
.w25{width:41.632000pt;}
.wa{width:44.960000pt;}
.w1b{width:46.720000pt;}
.w14{width:46.752000pt;}
.w22{width:48.672000pt;}
.w16{width:48.800000pt;}
.w1c{width:49.760000pt;}
.w13{width:53.280000pt;}
.w15{width:58.720000pt;}
.w21{width:78.720000pt;}
.w20{width:83.392000pt;}
.w1f{width:95.360000pt;}
.wc{width:104.992000pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.w1e{width:143.386667pt;}
.w9{width:169.466667pt;}
.w10{width:198.266667pt;}
.wf{width:200.186667pt;}
.we{width:200.826667pt;}
.wb{width:213.786667pt;}
.wd{width:231.706667pt;}
.w1d{width:234.586667pt;}
.w8{width:235.586667pt;}
.w6{width:270.946667pt;}
.w23{width:366.466667pt;}
.w12{width:390.146667pt;}
.w7{width:420.733333pt;}
.w18{width:432.066667pt;}
.w3{width:444.253333pt;}
.w11{width:601.533333pt;}
.w17{width:608.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:4.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:49.760000pt;}
.x2d{left:57.599988pt;}
.x2c{left:61.279988pt;}
.x2b{left:64.959988pt;}
.x17{left:66.560000pt;}
.x19{left:70.240000pt;}
.xd{left:71.999988pt;}
.x26{left:77.952000pt;}
.x18{left:88.640000pt;}
.x7{left:90.920000pt;}
.x21{left:92.672000pt;}
.x12{left:96.031988pt;}
.x13{left:98.272000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.xe{left:120.031988pt;}
.x2e{left:122.112000pt;}
.xc{left:140.986655pt;}
.x14{left:143.866667pt;}
.x3{left:161.466667pt;}
.xf{left:192.026655pt;}
.x10{left:194.106667pt;}
.x1a{left:298.146667pt;}
.x27{left:313.186667pt;}
.xb{left:323.426667pt;}
.x15{left:358.306667pt;}
.x11{left:430.333333pt;}
.x28{left:457.213333pt;}
.x16{left:463.933333pt;}
.x1d{left:486.333333pt;}
.x2f{left:489.213333pt;}
.x1b{left:498.973333pt;}
.x22{left:524.733333pt;}
.x1e{left:540.893333pt;}
.x29{left:553.213333pt;}
.x23{left:561.413333pt;}
.x30{left:567.653333pt;}
.x1f{left:588.933333pt;}
.x24{left:603.493333pt;}
.x9{left:605.733333pt;}
.x31{left:609.733333pt;}
.x2a{left:637.253333pt;}
.x20{left:648.933333pt;}
.x25{left:651.493333pt;}
}




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