
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a459b4f8dc065ccfe511f1d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_7428ced6ba0a60501502091e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_3c7e592a4108a35317b2805c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f753d626161ad59f75a3eb54.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_a8081ae6e14fd3ede23b7a79.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b5d41d626ca4ad8e16a32d51.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_a5b561b4de3b9b76091306a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_b4d37be940520b3acaf1fede.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9bed3d07fc8b5ff6c2a79c0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.298200px;}
.ls10{letter-spacing:-0.240600px;}
.ls9{letter-spacing:-0.175800px;}
.ls13{letter-spacing:-0.082200px;}
.ls11{letter-spacing:-0.064800px;}
.ls12{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.041040px;}
.ls1c{letter-spacing:-0.032400px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.038880px;}
.ls8{letter-spacing:0.066000px;}
.ls17{letter-spacing:0.140400px;}
.ls15{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.210000px;}
.ls14{letter-spacing:0.243360px;}
.ls6{letter-spacing:0.256200px;}
.lse{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.418800px;}
.ls1e{letter-spacing:0.460200px;}
.ls18{letter-spacing:0.479400px;}
.lsa{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls3{letter-spacing:5.934240px;}
.ls20{letter-spacing:12.186720px;}
.ls1f{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws12{word-spacing:-18.036000px;}
.wsd{word-spacing:-18.000000px;}
.ws17{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws13{word-spacing:-13.811760px;}
.ws8{word-spacing:-13.692360px;}
.ws10{word-spacing:-13.544640px;}
.ws6{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.473360px;}
.wse{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:-8.722080px;}
.wsb{word-spacing:-8.704680px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:317.100000px;}
.wsc{word-spacing:358.980000px;}
.wsf{word-spacing:375.840000px;}
.ws16{word-spacing:380.280000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.617760px;}
._1a{margin-left:-4.368672px;}
._6{margin-left:-3.312000px;}
._11{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._f{width:2.437920px;}
._a{width:3.681600px;}
._d{width:4.692960px;}
._10{width:5.917680px;}
._7{width:6.990480px;}
._9{width:8.606880px;}
._8{width:9.742320px;}
._12{width:11.414160px;}
._e{width:12.469920px;}
._c{width:14.639280px;}
._b{width:15.931200px;}
._13{width:17.941440px;}
._14{width:20.357040px;}
._1c{width:29.222640px;}
._1b{width:30.656880px;}
._19{width:352.920000px;}
._18{width:371.100000px;}
._16{width:394.860000px;}
._17{width:411.840000px;}
._15{width:412.860000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs8{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y103{bottom:3.885000px;}
.y138{bottom:5.865000px;}
.y101{bottom:5.970000px;}
.y7e{bottom:6.660000px;}
.yd0{bottom:6.810000px;}
.y157{bottom:7.020000px;}
.ya7{bottom:8.460000px;}
.ya9{bottom:8.640000px;}
.ya2{bottom:9.000000px;}
.yab{bottom:9.360000px;}
.y85{bottom:10.080000px;}
.y131{bottom:10.230000px;}
.y80{bottom:10.260000px;}
.y83{bottom:11.160000px;}
.yb0{bottom:20.700000px;}
.yb2{bottom:20.880000px;}
.yb4{bottom:21.600000px;}
.y8f{bottom:27.540000px;}
.y7d{bottom:27.720000px;}
.y111{bottom:27.765000px;}
.y156{bottom:28.080000px;}
.ya0{bottom:31.392000px;}
.yff{bottom:32.580000px;}
.ycd{bottom:34.020000px;}
.yae{bottom:34.965000px;}
.y154{bottom:35.460000px;}
.y12f{bottom:36.750000px;}
.y8e{bottom:48.630000px;}
.yd6{bottom:48.780000px;}
.y10a{bottom:49.500000px;}
.y9a{bottom:52.530000px;}
.yf6{bottom:53.745000px;}
.yc8{bottom:55.185000px;}
.y129{bottom:55.725000px;}
.yad{bottom:56.025000px;}
.y100{bottom:56.985000px;}
.y6{bottom:60.696000px;}
.yd5{bottom:69.840000px;}
.y155{bottom:70.554000px;}
.y130{bottom:75.240000px;}
.yf7{bottom:82.515000px;}
.yce{bottom:83.625000px;}
.yc6{bottom:88.596000px;}
.y127{bottom:88.956000px;}
.y9b{bottom:89.535000px;}
.y152{bottom:93.096000px;}
.y153{bottom:95.256000px;}
.yf4{bottom:95.796000px;}
.y98{bottom:96.336000px;}
.y64{bottom:99.216000px;}
.y12a{bottom:99.510000px;}
.y84{bottom:102.996000px;}
.y31{bottom:104.256000px;}
.yc9{bottom:104.865000px;}
.yc5{bottom:109.656000px;}
.y126{bottom:110.016000px;}
.ya1{bottom:110.880000px;}
.ya4{bottom:111.090000px;}
.yf8{bottom:111.315000px;}
.y108{bottom:112.395000px;}
.y97{bottom:113.436000px;}
.y99{bottom:113.760000px;}
.y151{bottom:114.156000px;}
.yf3{bottom:116.676000px;}
.y63{bottom:120.276000px;}
.yd2{bottom:124.170000px;}
.y30{bottom:125.316000px;}
.y9c{bottom:126.510000px;}
.y82{bottom:127.476000px;}
.yc4{bottom:130.716000px;}
.y125{bottom:131.076000px;}
.y107{bottom:133.095000px;}
.y150{bottom:135.216000px;}
.yf2{bottom:137.736000px;}
.yf9{bottom:140.115000px;}
.y62{bottom:141.336000px;}
.ycf{bottom:142.845000px;}
.y12b{bottom:143.250000px;}
.y2f{bottom:146.376000px;}
.yc3{bottom:151.770000px;}
.y124{bottom:152.130000px;}
.y81{bottom:153.030000px;}
.yca{bottom:154.590000px;}
.y14f{bottom:156.270000px;}
.y106{bottom:157.530000px;}
.y136{bottom:158.070000px;}
.yf1{bottom:158.790000px;}
.y61{bottom:162.390000px;}
.ya3{bottom:163.155000px;}
.y9d{bottom:163.470000px;}
.y2e{bottom:167.430000px;}
.yfa{bottom:168.870000px;}
.yc2{bottom:172.830000px;}
.y123{bottom:173.190000px;}
.yd1{bottom:174.930000px;}
.y14e{bottom:177.330000px;}
.y7f{bottom:177.690000px;}
.y105{bottom:178.230000px;}
.yf0{bottom:179.850000px;}
.y60{bottom:183.450000px;}
.y12c{bottom:187.020000px;}
.y2d{bottom:188.490000px;}
.y135{bottom:190.260000px;}
.yc1{bottom:193.890000px;}
.y122{bottom:194.250000px;}
.yfb{bottom:197.670000px;}
.y14d{bottom:198.390000px;}
.y9e{bottom:200.490000px;}
.yef{bottom:200.910000px;}
.y7c{bottom:203.070000px;}
.ycb{bottom:204.300000px;}
.y5f{bottom:204.510000px;}
.y2c{bottom:209.550000px;}
.yc0{bottom:214.950000px;}
.y121{bottom:215.310000px;}
.y14c{bottom:219.450000px;}
.yee{bottom:221.970000px;}
.y134{bottom:222.480000px;}
.y5e{bottom:225.570000px;}
.yfc{bottom:226.440000px;}
.y2b{bottom:230.610000px;}
.y12d{bottom:230.760000px;}
.ybf{bottom:236.010000px;}
.y120{bottom:236.370000px;}
.y9f{bottom:237.450000px;}
.y14b{bottom:240.510000px;}
.yed{bottom:243.030000px;}
.y5d{bottom:246.630000px;}
.y2a{bottom:251.670000px;}
.y7b{bottom:252.570000px;}
.ycc{bottom:254.010000px;}
.y133{bottom:254.670000px;}
.yfd{bottom:255.240000px;}
.ybe{bottom:257.070000px;}
.y11f{bottom:257.430000px;}
.y14a{bottom:261.570000px;}
.yec{bottom:264.090000px;}
.y5c{bottom:267.690000px;}
.y29{bottom:272.730000px;}
.y7a{bottom:273.630000px;}
.y12e{bottom:274.530000px;}
.ybd{bottom:278.130000px;}
.y11e{bottom:278.490000px;}
.y149{bottom:282.675000px;}
.yfe{bottom:284.010000px;}
.yeb{bottom:285.195000px;}
.y132{bottom:286.845000px;}
.y5b{bottom:288.795000px;}
.y13a{bottom:289.185000px;}
.y28{bottom:293.835000px;}
.y79{bottom:294.735000px;}
.ybc{bottom:299.235000px;}
.y11d{bottom:299.595000px;}
.y148{bottom:303.735000px;}
.yea{bottom:306.255000px;}
.y5a{bottom:309.855000px;}
.y27{bottom:314.895000px;}
.y78{bottom:315.795000px;}
.ybb{bottom:320.295000px;}
.y11c{bottom:320.655000px;}
.y147{bottom:324.795000px;}
.ye9{bottom:327.315000px;}
.y59{bottom:330.915000px;}
.y26{bottom:335.955000px;}
.y77{bottom:336.855000px;}
.yba{bottom:341.355000px;}
.y11b{bottom:341.715000px;}
.y146{bottom:345.855000px;}
.ye8{bottom:348.375000px;}
.y58{bottom:351.975000px;}
.y25{bottom:357.015000px;}
.y76{bottom:357.915000px;}
.yb9{bottom:362.415000px;}
.y11a{bottom:362.775000px;}
.y145{bottom:366.915000px;}
.ye7{bottom:369.435000px;}
.y57{bottom:373.035000px;}
.y24{bottom:378.075000px;}
.y75{bottom:378.975000px;}
.yb8{bottom:379.515000px;}
.yc7{bottom:379.980000px;}
.y119{bottom:383.835000px;}
.y96{bottom:385.635000px;}
.y144{bottom:387.975000px;}
.ye6{bottom:390.495000px;}
.y56{bottom:394.095000px;}
.y23{bottom:398.955000px;}
.y74{bottom:400.035000px;}
.y118{bottom:404.895000px;}
.y95{bottom:406.695000px;}
.y143{bottom:409.035000px;}
.ye5{bottom:411.555000px;}
.y22{bottom:420.015000px;}
.y73{bottom:421.095000px;}
.y55{bottom:424.155000px;}
.y117{bottom:425.955000px;}
.y94{bottom:427.755000px;}
.y142{bottom:430.095000px;}
.ye4{bottom:432.615000px;}
.y21{bottom:441.075000px;}
.y72{bottom:442.155000px;}
.y93{bottom:442.875000px;}
.y116{bottom:443.055000px;}
.y139{bottom:443.520000px;}
.y128{bottom:443.700000px;}
.y54{bottom:445.215000px;}
.y141{bottom:451.155000px;}
.ye3{bottom:453.675000px;}
.y20{bottom:462.135000px;}
.y71{bottom:463.215000px;}
.y92{bottom:463.935000px;}
.y53{bottom:466.275000px;}
.y140{bottom:472.215000px;}
.ye2{bottom:474.735000px;}
.y1f{bottom:483.195000px;}
.y70{bottom:484.275000px;}
.y91{bottom:484.995000px;}
.y52{bottom:487.335000px;}
.y13f{bottom:493.275000px;}
.ye1{bottom:495.795000px;}
.y1e{bottom:504.255000px;}
.y6f{bottom:505.335000px;}
.y90{bottom:506.055000px;}
.y51{bottom:508.395000px;}
.y13e{bottom:514.335000px;}
.ye0{bottom:516.855000px;}
.y1d{bottom:525.315000px;}
.y6e{bottom:526.395000px;}
.y8d{bottom:528.015000px;}
.y50{bottom:529.455000px;}
.y13d{bottom:535.395000px;}
.ydf{bottom:537.915000px;}
.y1c{bottom:546.375000px;}
.y6d{bottom:547.455000px;}
.y4f{bottom:550.515000px;}
.y13c{bottom:556.455000px;}
.yde{bottom:558.975000px;}
.y1b{bottom:567.465000px;}
.y6c{bottom:568.545000px;}
.y13b{bottom:577.545000px;}
.ydd{bottom:580.065000px;}
.y4e{bottom:580.605000px;}
.y1a{bottom:588.525000px;}
.y6b{bottom:589.605000px;}
.y8c{bottom:598.605000px;}
.ydc{bottom:601.125000px;}
.y4d{bottom:601.665000px;}
.y6a{bottom:610.665000px;}
.y19{bottom:612.105000px;}
.y8b{bottom:619.665000px;}
.ydb{bottom:622.185000px;}
.y4c{bottom:622.725000px;}
.y69{bottom:631.725000px;}
.y8a{bottom:640.725000px;}
.y18{bottom:641.985000px;}
.yda{bottom:643.245000px;}
.y4b{bottom:652.785000px;}
.y89{bottom:661.785000px;}
.y17{bottom:663.045000px;}
.yd9{bottom:664.305000px;}
.yb7{bottom:672.045000px;}
.y4a{bottom:673.845000px;}
.yd8{bottom:681.405000px;}
.y104{bottom:682.560000px;}
.yf5{bottom:682.740000px;}
.y88{bottom:682.845000px;}
.y16{bottom:684.105000px;}
.yb6{bottom:693.105000px;}
.y49{bottom:694.905000px;}
.y87{bottom:703.905000px;}
.y15{bottom:705.165000px;}
.yb5{bottom:714.165000px;}
.y48{bottom:715.965000px;}
.y86{bottom:724.965000px;}
.y14{bottom:726.225000px;}
.y137{bottom:726.840000px;}
.yb3{bottom:729.285000px;}
.y47{bottom:737.025000px;}
.y68{bottom:746.025000px;}
.y13{bottom:747.285000px;}
.y46{bottom:757.905000px;}
.y115{bottom:760.245000px;}
.yb1{bottom:765.285000px;}
.y67{bottom:766.905000px;}
.y12{bottom:768.345000px;}
.y45{bottom:778.965000px;}
.y114{bottom:781.305000px;}
.y66{bottom:787.965000px;}
.y11{bottom:789.405000px;}
.y44{bottom:800.025000px;}
.yaf{bottom:800.565000px;}
.y113{bottom:802.365000px;}
.y65{bottom:809.025000px;}
.y10{bottom:812.625000px;}
.y112{bottom:823.425000px;}
.y43{bottom:830.085000px;}
.yac{bottom:836.565000px;}
.y110{bottom:838.545000px;}
.yf{bottom:838.905000px;}
.y42{bottom:851.190000px;}
.yaa{bottom:857.670000px;}
.ye{bottom:860.010000px;}
.y41{bottom:872.250000px;}
.yd{bottom:881.070000px;}
.ya8{bottom:881.430000px;}
.y102{bottom:889.380000px;}
.y40{bottom:893.310000px;}
.yc{bottom:902.130000px;}
.y10f{bottom:903.210000px;}
.ya6{bottom:904.470000px;}
.y3f{bottom:914.370000px;}
.yb{bottom:923.190000px;}
.ya5{bottom:928.050000px;}
.y3e{bottom:935.430000px;}
.ya{bottom:939.930000px;}
.y10e{bottom:946.230000px;}
.y3d{bottom:956.490000px;}
.y9{bottom:962.250000px;}
.y3c{bottom:977.550000px;}
.y8{bottom:987.450000px;}
.y10d{bottom:989.070000px;}
.yd7{bottom:996.450000px;}
.y3b{bottom:998.610000px;}
.yd4{bottom:1011.570000px;}
.y3a{bottom:1019.670000px;}
.y7{bottom:1021.110000px;}
.y10c{bottom:1031.910000px;}
.y39{bottom:1040.730000px;}
.y5{bottom:1061.250000px;}
.y38{bottom:1061.790000px;}
.y109{bottom:1074.750000px;}
.y37{bottom:1082.850000px;}
.y4{bottom:1093.470000px;}
.yd3{bottom:1096.530000px;}
.y36{bottom:1103.910000px;}
.y10b{bottom:1117.590000px;}
.y35{bottom:1124.970000px;}
.y3{bottom:1125.510000px;}
.y34{bottom:1146.060000px;}
.y2{bottom:1157.760000px;}
.y33{bottom:1173.960000px;}
.y1{bottom:1192.320000px;}
.y32{bottom:1194.120000px;}
.h2d{height:2.864531px;}
.he{height:21.060000px;}
.h24{height:21.096000px;}
.h13{height:22.860000px;}
.h14{height:23.040000px;}
.h15{height:23.760000px;}
.hc{height:24.480000px;}
.ha{height:24.660000px;}
.hb{height:25.560000px;}
.h20{height:26.100000px;}
.h29{height:26.820000px;}
.h17{height:35.100000px;}
.h18{height:35.280000px;}
.h19{height:36.000000px;}
.h7{height:38.671172px;}
.h25{height:41.940000px;}
.h9{height:42.120000px;}
.h1c{height:42.156000px;}
.h1b{height:50.800781px;}
.h2{height:56.146289px;}
.h28{height:58.651172px;}
.h8{height:59.439023px;}
.hf{height:59.551172px;}
.h5{height:61.189805px;}
.h2b{height:61.423863px;}
.hd{height:63.036000px;}
.h23{height:63.936000px;}
.h3{height:65.884219px;}
.h27{height:66.757500px;}
.h6{height:67.824844px;}
.h16{height:70.416000px;}
.h12{height:70.664062px;}
.h22{height:70.805391px;}
.h11{height:72.562500px;}
.h1f{height:72.707593px;}
.h1d{height:84.240000px;}
.h2c{height:84.960000px;}
.h4{height:98.051133px;}
.h10{height:265.320000px;}
.h1a{height:285.480000px;}
.h1e{height:307.080000px;}
.h21{height:307.260000px;}
.h26{height:309.960000px;}
.h2a{height:310.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:64.656000px;}
.w1f{width:65.880000px;}
.wc{width:76.860000px;}
.w1c{width:79.056000px;}
.w8{width:92.700000px;}
.w11{width:100.476000px;}
.w7{width:103.536000px;}
.w17{width:109.116000px;}
.wf{width:110.556000px;}
.w6{width:122.400000px;}
.w1d{width:128.880000px;}
.w1a{width:129.096000px;}
.w1b{width:135.720000px;}
.w1e{width:135.756000px;}
.wd{width:150.330000px;}
.we{width:164.010000px;}
.wb{width:189.390000px;}
.w15{width:190.620000px;}
.w13{width:196.590000px;}
.w23{width:210.810000px;}
.w12{width:212.970000px;}
.wa{width:240.915000px;}
.w4{width:242.670000px;}
.w3{width:309.495000px;}
.w19{width:330.510000px;}
.w18{width:343.875000px;}
.w21{width:364.500000px;}
.w10{width:576.720000px;}
.w24{width:580.965000px;}
.w14{width:590.220000px;}
.w16{width:590.400000px;}
.w9{width:595.800000px;}
.w20{width:603.360000px;}
.w22{width:603.540000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1c{left:19.110000px;}
.x36{left:21.135000px;}
.xf{left:24.555000px;}
.xd{left:30.090000px;}
.x26{left:36.900000px;}
.xc{left:39.090000px;}
.x25{left:45.900000px;}
.x1a{left:48.420000px;}
.x1{left:53.999987px;}
.x19{left:57.420000px;}
.x3a{left:80.999987px;}
.x3b{left:108.035987px;}
.x2a{left:111.210000px;}
.xe{left:115.020000px;}
.x27{left:116.565000px;}
.x35{left:123.660000px;}
.x1b{left:135.510000px;}
.x34{left:143.820000px;}
.xb{left:148.320000px;}
.x24{left:150.480000px;}
.x18{left:158.400000px;}
.x2d{left:163.830000px;}
.x2{left:170.490000px;}
.x1d{left:180.690000px;}
.x3c{left:190.110000px;}
.x1f{left:191.550000px;}
.x13{left:195.690000px;}
.x28{left:197.460000px;}
.xa{left:198.749987px;}
.x37{left:210.240000px;}
.x11{left:230.790000px;}
.x5{left:254.910000px;}
.x3d{left:264.810000px;}
.x33{left:269.849987px;}
.x14{left:272.550000px;}
.x22{left:282.134987px;}
.x20{left:292.035000px;}
.x6{left:319.575000px;}
.x39{left:360.150000px;}
.x15{left:422.895000px;}
.x2f{left:428.655000px;}
.x7{left:441.975000px;}
.x23{left:446.474987px;}
.x12{left:471.705000px;}
.x1e{left:478.545000px;}
.x4{left:479.985000px;}
.x2c{left:489.675000px;}
.x2b{left:490.710000px;}
.x21{left:505.005000px;}
.x2e{left:508.605000px;}
.x10{left:509.610000px;}
.x38{left:536.835000px;}
.x8{left:545.505000px;}
.x29{left:550.260000px;}
.x16{left:586.905000px;}
.x30{left:637.485000px;}
.x17{left:736.889987px;}
.x9{left:744.629987px;}
.x32{left:749.129987px;}
.x31{left:773.250000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.265067pt;}
.ls10{letter-spacing:-0.213867pt;}
.ls9{letter-spacing:-0.156267pt;}
.ls13{letter-spacing:-0.073067pt;}
.ls11{letter-spacing:-0.057600pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.036480pt;}
.ls1c{letter-spacing:-0.028800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.034560pt;}
.ls8{letter-spacing:0.058667pt;}
.ls17{letter-spacing:0.124800pt;}
.ls15{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.186667pt;}
.ls14{letter-spacing:0.216320pt;}
.ls6{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.372267pt;}
.ls1e{letter-spacing:0.409067pt;}
.ls18{letter-spacing:0.426133pt;}
.lsa{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls3{letter-spacing:5.274880pt;}
.ls20{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws12{word-spacing:-16.032000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws17{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.277120pt;}
.ws8{word-spacing:-12.170987pt;}
.ws10{word-spacing:-12.039680pt;}
.ws6{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.976320pt;}
.wse{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:-7.752960pt;}
.wsb{word-spacing:-7.737493pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:281.866667pt;}
.wsc{word-spacing:319.093333pt;}
.wsf{word-spacing:334.080000pt;}
.ws16{word-spacing:338.026667pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.882453pt;}
._1a{margin-left:-3.883264pt;}
._6{margin-left:-2.944000pt;}
._11{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._f{width:2.167040pt;}
._a{width:3.272533pt;}
._d{width:4.171520pt;}
._10{width:5.260160pt;}
._7{width:6.213760pt;}
._9{width:7.650560pt;}
._8{width:8.659840pt;}
._12{width:10.145920pt;}
._e{width:11.084373pt;}
._c{width:13.012693pt;}
._b{width:14.161067pt;}
._13{width:15.947947pt;}
._14{width:18.095147pt;}
._1c{width:25.975680pt;}
._1b{width:27.250560pt;}
._19{width:313.706667pt;}
._18{width:329.866667pt;}
._16{width:350.986667pt;}
._17{width:366.080000pt;}
._15{width:366.986667pt;}
.fs8{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:3.453333pt;}
.y138{bottom:5.213333pt;}
.y101{bottom:5.306667pt;}
.y7e{bottom:5.920000pt;}
.yd0{bottom:6.053333pt;}
.y157{bottom:6.240000pt;}
.ya7{bottom:7.520000pt;}
.ya9{bottom:7.680000pt;}
.ya2{bottom:8.000000pt;}
.yab{bottom:8.320000pt;}
.y85{bottom:8.960000pt;}
.y131{bottom:9.093333pt;}
.y80{bottom:9.120000pt;}
.y83{bottom:9.920000pt;}
.yb0{bottom:18.400000pt;}
.yb2{bottom:18.560000pt;}
.yb4{bottom:19.200000pt;}
.y8f{bottom:24.480000pt;}
.y7d{bottom:24.640000pt;}
.y111{bottom:24.680000pt;}
.y156{bottom:24.960000pt;}
.ya0{bottom:27.904000pt;}
.yff{bottom:28.960000pt;}
.ycd{bottom:30.240000pt;}
.yae{bottom:31.080000pt;}
.y154{bottom:31.520000pt;}
.y12f{bottom:32.666667pt;}
.y8e{bottom:43.226667pt;}
.yd6{bottom:43.360000pt;}
.y10a{bottom:44.000000pt;}
.y9a{bottom:46.693333pt;}
.yf6{bottom:47.773333pt;}
.yc8{bottom:49.053333pt;}
.y129{bottom:49.533333pt;}
.yad{bottom:49.800000pt;}
.y100{bottom:50.653333pt;}
.y6{bottom:53.952000pt;}
.yd5{bottom:62.080000pt;}
.y155{bottom:62.714667pt;}
.y130{bottom:66.880000pt;}
.yf7{bottom:73.346667pt;}
.yce{bottom:74.333333pt;}
.yc6{bottom:78.752000pt;}
.y127{bottom:79.072000pt;}
.y9b{bottom:79.586667pt;}
.y152{bottom:82.752000pt;}
.y153{bottom:84.672000pt;}
.yf4{bottom:85.152000pt;}
.y98{bottom:85.632000pt;}
.y64{bottom:88.192000pt;}
.y12a{bottom:88.453333pt;}
.y84{bottom:91.552000pt;}
.y31{bottom:92.672000pt;}
.yc9{bottom:93.213333pt;}
.yc5{bottom:97.472000pt;}
.y126{bottom:97.792000pt;}
.ya1{bottom:98.560000pt;}
.ya4{bottom:98.746667pt;}
.yf8{bottom:98.946667pt;}
.y108{bottom:99.906667pt;}
.y97{bottom:100.832000pt;}
.y99{bottom:101.120000pt;}
.y151{bottom:101.472000pt;}
.yf3{bottom:103.712000pt;}
.y63{bottom:106.912000pt;}
.yd2{bottom:110.373333pt;}
.y30{bottom:111.392000pt;}
.y9c{bottom:112.453333pt;}
.y82{bottom:113.312000pt;}
.yc4{bottom:116.192000pt;}
.y125{bottom:116.512000pt;}
.y107{bottom:118.306667pt;}
.y150{bottom:120.192000pt;}
.yf2{bottom:122.432000pt;}
.yf9{bottom:124.546667pt;}
.y62{bottom:125.632000pt;}
.ycf{bottom:126.973333pt;}
.y12b{bottom:127.333333pt;}
.y2f{bottom:130.112000pt;}
.yc3{bottom:134.906667pt;}
.y124{bottom:135.226667pt;}
.y81{bottom:136.026667pt;}
.yca{bottom:137.413333pt;}
.y14f{bottom:138.906667pt;}
.y106{bottom:140.026667pt;}
.y136{bottom:140.506667pt;}
.yf1{bottom:141.146667pt;}
.y61{bottom:144.346667pt;}
.ya3{bottom:145.026667pt;}
.y9d{bottom:145.306667pt;}
.y2e{bottom:148.826667pt;}
.yfa{bottom:150.106667pt;}
.yc2{bottom:153.626667pt;}
.y123{bottom:153.946667pt;}
.yd1{bottom:155.493333pt;}
.y14e{bottom:157.626667pt;}
.y7f{bottom:157.946667pt;}
.y105{bottom:158.426667pt;}
.yf0{bottom:159.866667pt;}
.y60{bottom:163.066667pt;}
.y12c{bottom:166.240000pt;}
.y2d{bottom:167.546667pt;}
.y135{bottom:169.120000pt;}
.yc1{bottom:172.346667pt;}
.y122{bottom:172.666667pt;}
.yfb{bottom:175.706667pt;}
.y14d{bottom:176.346667pt;}
.y9e{bottom:178.213333pt;}
.yef{bottom:178.586667pt;}
.y7c{bottom:180.506667pt;}
.ycb{bottom:181.600000pt;}
.y5f{bottom:181.786667pt;}
.y2c{bottom:186.266667pt;}
.yc0{bottom:191.066667pt;}
.y121{bottom:191.386667pt;}
.y14c{bottom:195.066667pt;}
.yee{bottom:197.306667pt;}
.y134{bottom:197.760000pt;}
.y5e{bottom:200.506667pt;}
.yfc{bottom:201.280000pt;}
.y2b{bottom:204.986667pt;}
.y12d{bottom:205.120000pt;}
.ybf{bottom:209.786667pt;}
.y120{bottom:210.106667pt;}
.y9f{bottom:211.066667pt;}
.y14b{bottom:213.786667pt;}
.yed{bottom:216.026667pt;}
.y5d{bottom:219.226667pt;}
.y2a{bottom:223.706667pt;}
.y7b{bottom:224.506667pt;}
.ycc{bottom:225.786667pt;}
.y133{bottom:226.373333pt;}
.yfd{bottom:226.880000pt;}
.ybe{bottom:228.506667pt;}
.y11f{bottom:228.826667pt;}
.y14a{bottom:232.506667pt;}
.yec{bottom:234.746667pt;}
.y5c{bottom:237.946667pt;}
.y29{bottom:242.426667pt;}
.y7a{bottom:243.226667pt;}
.y12e{bottom:244.026667pt;}
.ybd{bottom:247.226667pt;}
.y11e{bottom:247.546667pt;}
.y149{bottom:251.266667pt;}
.yfe{bottom:252.453333pt;}
.yeb{bottom:253.506667pt;}
.y132{bottom:254.973333pt;}
.y5b{bottom:256.706667pt;}
.y13a{bottom:257.053333pt;}
.y28{bottom:261.186667pt;}
.y79{bottom:261.986667pt;}
.ybc{bottom:265.986667pt;}
.y11d{bottom:266.306667pt;}
.y148{bottom:269.986667pt;}
.yea{bottom:272.226667pt;}
.y5a{bottom:275.426667pt;}
.y27{bottom:279.906667pt;}
.y78{bottom:280.706667pt;}
.ybb{bottom:284.706667pt;}
.y11c{bottom:285.026667pt;}
.y147{bottom:288.706667pt;}
.ye9{bottom:290.946667pt;}
.y59{bottom:294.146667pt;}
.y26{bottom:298.626667pt;}
.y77{bottom:299.426667pt;}
.yba{bottom:303.426667pt;}
.y11b{bottom:303.746667pt;}
.y146{bottom:307.426667pt;}
.ye8{bottom:309.666667pt;}
.y58{bottom:312.866667pt;}
.y25{bottom:317.346667pt;}
.y76{bottom:318.146667pt;}
.yb9{bottom:322.146667pt;}
.y11a{bottom:322.466667pt;}
.y145{bottom:326.146667pt;}
.ye7{bottom:328.386667pt;}
.y57{bottom:331.586667pt;}
.y24{bottom:336.066667pt;}
.y75{bottom:336.866667pt;}
.yb8{bottom:337.346667pt;}
.yc7{bottom:337.760000pt;}
.y119{bottom:341.186667pt;}
.y96{bottom:342.786667pt;}
.y144{bottom:344.866667pt;}
.ye6{bottom:347.106667pt;}
.y56{bottom:350.306667pt;}
.y23{bottom:354.626667pt;}
.y74{bottom:355.586667pt;}
.y118{bottom:359.906667pt;}
.y95{bottom:361.506667pt;}
.y143{bottom:363.586667pt;}
.ye5{bottom:365.826667pt;}
.y22{bottom:373.346667pt;}
.y73{bottom:374.306667pt;}
.y55{bottom:377.026667pt;}
.y117{bottom:378.626667pt;}
.y94{bottom:380.226667pt;}
.y142{bottom:382.306667pt;}
.ye4{bottom:384.546667pt;}
.y21{bottom:392.066667pt;}
.y72{bottom:393.026667pt;}
.y93{bottom:393.666667pt;}
.y116{bottom:393.826667pt;}
.y139{bottom:394.240000pt;}
.y128{bottom:394.400000pt;}
.y54{bottom:395.746667pt;}
.y141{bottom:401.026667pt;}
.ye3{bottom:403.266667pt;}
.y20{bottom:410.786667pt;}
.y71{bottom:411.746667pt;}
.y92{bottom:412.386667pt;}
.y53{bottom:414.466667pt;}
.y140{bottom:419.746667pt;}
.ye2{bottom:421.986667pt;}
.y1f{bottom:429.506667pt;}
.y70{bottom:430.466667pt;}
.y91{bottom:431.106667pt;}
.y52{bottom:433.186667pt;}
.y13f{bottom:438.466667pt;}
.ye1{bottom:440.706667pt;}
.y1e{bottom:448.226667pt;}
.y6f{bottom:449.186667pt;}
.y90{bottom:449.826667pt;}
.y51{bottom:451.906667pt;}
.y13e{bottom:457.186667pt;}
.ye0{bottom:459.426667pt;}
.y1d{bottom:466.946667pt;}
.y6e{bottom:467.906667pt;}
.y8d{bottom:469.346667pt;}
.y50{bottom:470.626667pt;}
.y13d{bottom:475.906667pt;}
.ydf{bottom:478.146667pt;}
.y1c{bottom:485.666667pt;}
.y6d{bottom:486.626667pt;}
.y4f{bottom:489.346667pt;}
.y13c{bottom:494.626667pt;}
.yde{bottom:496.866667pt;}
.y1b{bottom:504.413333pt;}
.y6c{bottom:505.373333pt;}
.y13b{bottom:513.373333pt;}
.ydd{bottom:515.613333pt;}
.y4e{bottom:516.093333pt;}
.y1a{bottom:523.133333pt;}
.y6b{bottom:524.093333pt;}
.y8c{bottom:532.093333pt;}
.ydc{bottom:534.333333pt;}
.y4d{bottom:534.813333pt;}
.y6a{bottom:542.813333pt;}
.y19{bottom:544.093333pt;}
.y8b{bottom:550.813333pt;}
.ydb{bottom:553.053333pt;}
.y4c{bottom:553.533333pt;}
.y69{bottom:561.533333pt;}
.y8a{bottom:569.533333pt;}
.y18{bottom:570.653333pt;}
.yda{bottom:571.773333pt;}
.y4b{bottom:580.253333pt;}
.y89{bottom:588.253333pt;}
.y17{bottom:589.373333pt;}
.yd9{bottom:590.493333pt;}
.yb7{bottom:597.373333pt;}
.y4a{bottom:598.973333pt;}
.yd8{bottom:605.693333pt;}
.y104{bottom:606.720000pt;}
.yf5{bottom:606.880000pt;}
.y88{bottom:606.973333pt;}
.y16{bottom:608.093333pt;}
.yb6{bottom:616.093333pt;}
.y49{bottom:617.693333pt;}
.y87{bottom:625.693333pt;}
.y15{bottom:626.813333pt;}
.yb5{bottom:634.813333pt;}
.y48{bottom:636.413333pt;}
.y86{bottom:644.413333pt;}
.y14{bottom:645.533333pt;}
.y137{bottom:646.080000pt;}
.yb3{bottom:648.253333pt;}
.y47{bottom:655.133333pt;}
.y68{bottom:663.133333pt;}
.y13{bottom:664.253333pt;}
.y46{bottom:673.693333pt;}
.y115{bottom:675.773333pt;}
.yb1{bottom:680.253333pt;}
.y67{bottom:681.693333pt;}
.y12{bottom:682.973333pt;}
.y45{bottom:692.413333pt;}
.y114{bottom:694.493333pt;}
.y66{bottom:700.413333pt;}
.y11{bottom:701.693333pt;}
.y44{bottom:711.133333pt;}
.yaf{bottom:711.613333pt;}
.y113{bottom:713.213333pt;}
.y65{bottom:719.133333pt;}
.y10{bottom:722.333333pt;}
.y112{bottom:731.933333pt;}
.y43{bottom:737.853333pt;}
.yac{bottom:743.613333pt;}
.y110{bottom:745.373333pt;}
.yf{bottom:745.693333pt;}
.y42{bottom:756.613333pt;}
.yaa{bottom:762.373333pt;}
.ye{bottom:764.453333pt;}
.y41{bottom:775.333333pt;}
.yd{bottom:783.173333pt;}
.ya8{bottom:783.493333pt;}
.y102{bottom:790.560000pt;}
.y40{bottom:794.053333pt;}
.yc{bottom:801.893333pt;}
.y10f{bottom:802.853333pt;}
.ya6{bottom:803.973333pt;}
.y3f{bottom:812.773333pt;}
.yb{bottom:820.613333pt;}
.ya5{bottom:824.933333pt;}
.y3e{bottom:831.493333pt;}
.ya{bottom:835.493333pt;}
.y10e{bottom:841.093333pt;}
.y3d{bottom:850.213333pt;}
.y9{bottom:855.333333pt;}
.y3c{bottom:868.933333pt;}
.y8{bottom:877.733333pt;}
.y10d{bottom:879.173333pt;}
.yd7{bottom:885.733333pt;}
.y3b{bottom:887.653333pt;}
.yd4{bottom:899.173333pt;}
.y3a{bottom:906.373333pt;}
.y7{bottom:907.653333pt;}
.y10c{bottom:917.253333pt;}
.y39{bottom:925.093333pt;}
.y5{bottom:943.333333pt;}
.y38{bottom:943.813333pt;}
.y109{bottom:955.333333pt;}
.y37{bottom:962.533333pt;}
.y4{bottom:971.973333pt;}
.yd3{bottom:974.693333pt;}
.y36{bottom:981.253333pt;}
.y10b{bottom:993.413333pt;}
.y35{bottom:999.973333pt;}
.y3{bottom:1000.453333pt;}
.y34{bottom:1018.720000pt;}
.y2{bottom:1029.120000pt;}
.y33{bottom:1043.520000pt;}
.y1{bottom:1059.840000pt;}
.y32{bottom:1061.440000pt;}
.h2d{height:2.546250pt;}
.he{height:18.720000pt;}
.h24{height:18.752000pt;}
.h13{height:20.320000pt;}
.h14{height:20.480000pt;}
.h15{height:21.120000pt;}
.hc{height:21.760000pt;}
.ha{height:21.920000pt;}
.hb{height:22.720000pt;}
.h20{height:23.200000pt;}
.h29{height:23.840000pt;}
.h17{height:31.200000pt;}
.h18{height:31.360000pt;}
.h19{height:32.000000pt;}
.h7{height:34.374375pt;}
.h25{height:37.280000pt;}
.h9{height:37.440000pt;}
.h1c{height:37.472000pt;}
.h1b{height:45.156250pt;}
.h2{height:49.907812pt;}
.h28{height:52.134375pt;}
.h8{height:52.834688pt;}
.hf{height:52.934375pt;}
.h5{height:54.390938pt;}
.h2b{height:54.598989pt;}
.hd{height:56.032000pt;}
.h23{height:56.832000pt;}
.h3{height:58.563750pt;}
.h27{height:59.340000pt;}
.h6{height:60.288750pt;}
.h16{height:62.592000pt;}
.h12{height:62.812500pt;}
.h22{height:62.938125pt;}
.h11{height:64.500000pt;}
.h1f{height:64.628972pt;}
.h1d{height:74.880000pt;}
.h2c{height:75.520000pt;}
.h4{height:87.156562pt;}
.h10{height:235.840000pt;}
.h1a{height:253.760000pt;}
.h1e{height:272.960000pt;}
.h21{height:273.120000pt;}
.h26{height:275.520000pt;}
.h2a{height:275.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:57.472000pt;}
.w1f{width:58.560000pt;}
.wc{width:68.320000pt;}
.w1c{width:70.272000pt;}
.w8{width:82.400000pt;}
.w11{width:89.312000pt;}
.w7{width:92.032000pt;}
.w17{width:96.992000pt;}
.wf{width:98.272000pt;}
.w6{width:108.800000pt;}
.w1d{width:114.560000pt;}
.w1a{width:114.752000pt;}
.w1b{width:120.640000pt;}
.w1e{width:120.672000pt;}
.wd{width:133.626667pt;}
.we{width:145.786667pt;}
.wb{width:168.346667pt;}
.w15{width:169.440000pt;}
.w13{width:174.746667pt;}
.w23{width:187.386667pt;}
.w12{width:189.306667pt;}
.wa{width:214.146667pt;}
.w4{width:215.706667pt;}
.w3{width:275.106667pt;}
.w19{width:293.786667pt;}
.w18{width:305.666667pt;}
.w21{width:324.000000pt;}
.w10{width:512.640000pt;}
.w24{width:516.413333pt;}
.w14{width:524.640000pt;}
.w16{width:524.800000pt;}
.w9{width:529.600000pt;}
.w20{width:536.320000pt;}
.w22{width:536.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1c{left:16.986667pt;}
.x36{left:18.786667pt;}
.xf{left:21.826667pt;}
.xd{left:26.746667pt;}
.x26{left:32.800000pt;}
.xc{left:34.746667pt;}
.x25{left:40.800000pt;}
.x1a{left:43.040000pt;}
.x1{left:47.999988pt;}
.x19{left:51.040000pt;}
.x3a{left:71.999988pt;}
.x3b{left:96.031988pt;}
.x2a{left:98.853333pt;}
.xe{left:102.240000pt;}
.x27{left:103.613333pt;}
.x35{left:109.920000pt;}
.x1b{left:120.453333pt;}
.x34{left:127.840000pt;}
.xb{left:131.840000pt;}
.x24{left:133.760000pt;}
.x18{left:140.800000pt;}
.x2d{left:145.626667pt;}
.x2{left:151.546667pt;}
.x1d{left:160.613333pt;}
.x3c{left:168.986667pt;}
.x1f{left:170.266667pt;}
.x13{left:173.946667pt;}
.x28{left:175.520000pt;}
.xa{left:176.666655pt;}
.x37{left:186.880000pt;}
.x11{left:205.146667pt;}
.x5{left:226.586667pt;}
.x3d{left:235.386667pt;}
.x33{left:239.866655pt;}
.x14{left:242.266667pt;}
.x22{left:250.786655pt;}
.x20{left:259.586667pt;}
.x6{left:284.066667pt;}
.x39{left:320.133333pt;}
.x15{left:375.906667pt;}
.x2f{left:381.026667pt;}
.x7{left:392.866667pt;}
.x23{left:396.866655pt;}
.x12{left:419.293333pt;}
.x1e{left:425.373333pt;}
.x4{left:426.653333pt;}
.x2c{left:435.266667pt;}
.x2b{left:436.186667pt;}
.x21{left:448.893333pt;}
.x2e{left:452.093333pt;}
.x10{left:452.986667pt;}
.x38{left:477.186667pt;}
.x8{left:484.893333pt;}
.x29{left:489.120000pt;}
.x16{left:521.693333pt;}
.x30{left:566.653333pt;}
.x17{left:655.013322pt;}
.x9{left:661.893322pt;}
.x32{left:665.893322pt;}
.x31{left:687.333333pt;}
}




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