
    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_96affae4a5d5daa3b967fbf7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_44f086bc83573d870b22385b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_61d47006adde89c5e757c7a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_22ed16f8149b96f1215d7b39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a61b1f369c2a8db3713c807.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_fce06f6530f9e19c356d5435.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_b318c2326893c6ca352cedf2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ada41087b9b02c206049e8b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bbaaed8308beb7d253a18f1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_fab643f9368a1a3cd4cf037d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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);}
.m2{transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250773,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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls3{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.090900px;}
.ls2{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.017941px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:98.784000px;}
.ls8{letter-spacing:134.784000px;}
.lsa{letter-spacing:141.984000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.447440px;}
.ws9{word-spacing:-12.163818px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-4.588080px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._b{width:3.546000px;}
._14{width:5.472000px;}
._15{width:6.688080px;}
._7{width:8.280000px;}
._8{width:9.712080px;}
._c{width:10.728000px;}
._d{width:12.168000px;}
._11{width:13.536000px;}
._e{width:15.408000px;}
._f{width:16.832160px;}
._13{width:19.040400px;}
._12{width:20.488080px;}
._18{width:21.712800px;}
._10{width:22.824000px;}
._19{width:23.896080px;}
._22{width:25.128000px;}
._23{width:26.215920px;}
._24{width:27.268080px;}
._16{width:29.992320px;}
._17{width:31.711680px;}
._9{width:32.976000px;}
._20{width:38.425680px;}
._21{width:39.740400px;}
._1c{width:46.493280px;}
._1e{width:54.919440px;}
._1d{width:56.353680px;}
._1f{width:85.875120px;}
._1a{width:112.707360px;}
._3{width:194.376000px;}
._1b{width:207.128160px;}
._6{width:1864.536000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:53.822201px;}
.fs5{font-size:53.965727px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:107.644403px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.y77{bottom:12.060000px;}
.yc7{bottom:12.105000px;}
.y66{bottom:12.240000px;}
.ya6{bottom:12.270000px;}
.y14{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y70{bottom:21.240000px;}
.y7{bottom:21.420000px;}
.y67{bottom:29.340000px;}
.y65{bottom:29.520000px;}
.yc5{bottom:30.960000px;}
.ycc{bottom:32.400000px;}
.y5{bottom:37.260000px;}
.y6e{bottom:38.340000px;}
.y6a{bottom:38.520000px;}
.y2{bottom:39.060000px;}
.yb8{bottom:44.565381px;}
.y7a{bottom:47.520000px;}
.yc3{bottom:48.105000px;}
.yc4{bottom:48.285000px;}
.ycb{bottom:49.680000px;}
.y8d{bottom:56.520000px;}
.y12{bottom:57.420000px;}
.yb7{bottom:61.070856px;}
.y79{bottom:64.620000px;}
.y7f{bottom:64.650000px;}
.y76{bottom:64.665000px;}
.y69{bottom:64.800000px;}
.y6c{bottom:64.830000px;}
.yca{bottom:66.960000px;}
.yd1{bottom:66.990000px;}
.y91{bottom:67.005000px;}
.y11{bottom:73.260000px;}
.y99{bottom:73.650000px;}
.y8c{bottom:73.800000px;}
.yb6{bottom:77.576331px;}
.yc9{bottom:84.060000px;}
.y9c{bottom:84.240000px;}
.yd0{bottom:84.270000px;}
.y90{bottom:84.285000px;}
.y8a{bottom:90.900000px;}
.y7e{bottom:90.930000px;}
.y75{bottom:90.945000px;}
.y8b{bottom:91.080000px;}
.yaa{bottom:99.786810px;}
.y7d{bottom:99.930000px;}
.y74{bottom:99.945000px;}
.ybb{bottom:112.500000px;}
.y9f{bottom:114.660000px;}
.y97{bottom:117.180000px;}
.y7c{bottom:117.210000px;}
.y73{bottom:117.225000px;}
.y3f{bottom:117.360000px;}
.y11b{bottom:118.260000px;}
.yb5{bottom:119.764200px;}
.ya9{bottom:119.764350px;}
.yab{bottom:122.535660px;}
.y96{bottom:126.180000px;}
.yf2{bottom:129.780000px;}
.y6b{bottom:135.900000px;}
.y3e{bottom:138.060000px;}
.y83{bottom:140.220000px;}
.y95{bottom:143.460000px;}
.y89{bottom:143.490000px;}
.yac{bottom:145.277036px;}
.y11a{bottom:147.960000px;}
.ya7{bottom:150.660000px;}
.y3d{bottom:158.760000px;}
.yf1{bottom:159.480000px;}
.yba{bottom:161.720765px;}
.yad{bottom:168.001965px;}
.y119{bottom:168.660000px;}
.y88{bottom:169.770000px;}
.ya1{bottom:174.990000px;}
.y3c{bottom:179.460000px;}
.yf0{bottom:180.180000px;}
.ya5{bottom:186.660000px;}
.y118{bottom:189.360000px;}
.yae{bottom:190.741845px;}
.ya0{bottom:192.270000px;}
.y87{bottom:196.050000px;}
.y3b{bottom:200.190000px;}
.yef{bottom:200.910000px;}
.y13c{bottom:209.190000px;}
.yaf{bottom:213.496676px;}
.y117{bottom:219.090000px;}
.y3a{bottom:220.890000px;}
.yee{bottom:221.610000px;}
.y86{bottom:222.150000px;}
.ya4{bottom:222.690000px;}
.y68{bottom:224.490000px;}
.y13b{bottom:229.890000px;}
.y85{bottom:231.150000px;}
.yb0{bottom:236.236556px;}
.y116{bottom:239.790000px;}
.y39{bottom:241.590000px;}
.yed{bottom:242.310000px;}
.y84{bottom:248.430000px;}
.y13a{bottom:250.590000px;}
.ya3{bottom:258.690000px;}
.yb1{bottom:258.961486px;}
.y115{bottom:260.490000px;}
.yec{bottom:263.010000px;}
.y38{bottom:271.290000px;}
.y139{bottom:280.290000px;}
.y114{bottom:281.190000px;}
.yb2{bottom:281.701366px;}
.yeb{bottom:283.710000px;}
.ya2{bottom:294.690000px;}
.yb9{bottom:300.608890px;}
.y37{bottom:300.990000px;}
.y113{bottom:301.890000px;}
.yb3{bottom:304.456196px;}
.y138{bottom:309.990000px;}
.y152{bottom:312.690000px;}
.y64{bottom:313.050000px;}
.yea{bottom:313.410000px;}
.yb4{bottom:327.196076px;}
.y36{bottom:330.690000px;}
.y112{bottom:331.590000px;}
.ye9{bottom:334.110000px;}
.y151{bottom:342.390000px;}
.y35{bottom:351.390000px;}
.ye8{bottom:354.810000px;}
.y137{bottom:360.390000px;}
.y111{bottom:361.290000px;}
.y9e{bottom:366.690000px;}
.y150{bottom:372.090000px;}
.ye7{bottom:375.330000px;}
.y63{bottom:379.290000px;}
.y34{bottom:381.090000px;}
.y110{bottom:381.990000px;}
.y136{bottom:390.090000px;}
.y14f{bottom:392.790000px;}
.ye6{bottom:396.030000px;}
.y62{bottom:399.990000px;}
.y33{bottom:401.790000px;}
.y9d{bottom:402.690000px;}
.y135{bottom:410.790000px;}
.y82{bottom:412.410000px;}
.y14e{bottom:413.490000px;}
.ye5{bottom:416.730000px;}
.y32{bottom:422.490000px;}
.y10f{bottom:423.390000px;}
.y61{bottom:429.690000px;}
.y134{bottom:431.490000px;}
.ye4{bottom:437.475000px;}
.y9b{bottom:438.735000px;}
.y31{bottom:443.235000px;}
.y81{bottom:448.455000px;}
.y10e{bottom:453.135000px;}
.y60{bottom:459.435000px;}
.y133{bottom:461.235000px;}
.y30{bottom:463.935000px;}
.ye3{bottom:467.175000px;}
.y10d{bottom:473.835000px;}
.y5f{bottom:480.135000px;}
.y132{bottom:481.935000px;}
.y2f{bottom:484.635000px;}
.ye2{bottom:487.875000px;}
.y14d{bottom:493.635000px;}
.y10c{bottom:494.535000px;}
.y5e{bottom:500.835000px;}
.y131{bottom:502.635000px;}
.y2e{bottom:505.335000px;}
.ye1{bottom:508.575000px;}
.y14c{bottom:514.335000px;}
.y10b{bottom:515.235000px;}
.ya8{bottom:518.115000px;}
.y5d{bottom:521.535000px;}
.y2d{bottom:526.035000px;}
.y9a{bottom:527.295000px;}
.ye0{bottom:529.275000px;}
.y130{bottom:532.335000px;}
.y14b{bottom:535.035000px;}
.y10a{bottom:535.935000px;}
.y80{bottom:537.015000px;}
.y5c{bottom:542.235000px;}
.yd4{bottom:544.575000px;}
.y2c{bottom:546.735000px;}
.y12f{bottom:553.035000px;}
.y109{bottom:556.635000px;}
.ydf{bottom:558.975000px;}
.y5b{bottom:562.935000px;}
.y14a{bottom:564.735000px;}
.y2b{bottom:567.435000px;}
.yde{bottom:579.675000px;}
.yd6{bottom:580.575000px;}
.y12e{bottom:582.735000px;}
.y5a{bottom:583.635000px;}
.y149{bottom:585.435000px;}
.y108{bottom:586.335000px;}
.y2a{bottom:588.135000px;}
.ydd{bottom:600.375000px;}
.y59{bottom:604.335000px;}
.y148{bottom:606.135000px;}
.y107{bottom:607.035000px;}
.y29{bottom:608.835000px;}
.y12d{bottom:612.435000px;}
.y98{bottom:615.855000px;}
.yd5{bottom:616.575000px;}
.y13{bottom:617.475000px;}
.ydc{bottom:621.075000px;}
.y7b{bottom:625.575000px;}
.y106{bottom:627.735000px;}
.y28{bottom:629.535000px;}
.y12c{bottom:633.135000px;}
.y58{bottom:634.035000px;}
.y147{bottom:635.835000px;}
.ydb{bottom:641.775000px;}
.y105{bottom:648.435000px;}
.y27{bottom:650.235000px;}
.ycf{bottom:652.575000px;}
.y12b{bottom:653.835000px;}
.yda{bottom:662.475000px;}
.y57{bottom:663.735000px;}
.y146{bottom:665.535000px;}
.y104{bottom:669.135000px;}
.y26{bottom:670.935000px;}
.y12a{bottom:683.565000px;}
.y56{bottom:684.465000px;}
.y145{bottom:686.265000px;}
.yd3{bottom:688.605000px;}
.y25{bottom:691.665000px;}
.yd9{bottom:692.205000px;}
.y103{bottom:698.865000px;}
.y129{bottom:704.265000px;}
.y55{bottom:705.165000px;}
.y144{bottom:715.965000px;}
.y102{bottom:719.565000px;}
.y24{bottom:721.365000px;}
.yd8{bottom:721.905000px;}
.yd2{bottom:724.605000px;}
.y128{bottom:724.965000px;}
.y54{bottom:725.865000px;}
.y94{bottom:730.545000px;}
.y101{bottom:740.265000px;}
.y143{bottom:745.665000px;}
.y53{bottom:746.565000px;}
.yd7{bottom:747.825000px;}
.y23{bottom:751.065000px;}
.y127{bottom:754.665000px;}
.yc8{bottom:760.605000px;}
.y100{bottom:760.965000px;}
.y142{bottom:766.365000px;}
.y78{bottom:766.545000px;}
.y52{bottom:767.265000px;}
.y126{bottom:775.365000px;}
.y22{bottom:780.765000px;}
.yff{bottom:781.665000px;}
.y51{bottom:787.965000px;}
.y125{bottom:796.065000px;}
.yce{bottom:796.605000px;}
.y21{bottom:808.305000px;}
.y50{bottom:808.665000px;}
.yfe{bottom:811.365000px;}
.y141{bottom:816.765000px;}
.y124{bottom:825.765000px;}
.y4f{bottom:829.365000px;}
.y20{bottom:831.165000px;}
.yfd{bottom:832.065000px;}
.ycd{bottom:832.605000px;}
.y123{bottom:846.465000px;}
.y4e{bottom:850.065000px;}
.yfc{bottom:852.765000px;}
.y72{bottom:855.105000px;}
.y1f{bottom:858.705000px;}
.y122{bottom:867.165000px;}
.yc2{bottom:868.605000px;}
.y4d{bottom:870.765000px;}
.yfb{bottom:873.465000px;}
.y1e{bottom:881.565000px;}
.y4c{bottom:891.465000px;}
.yfa{bottom:894.165000px;}
.y121{bottom:896.865000px;}
.y8f{bottom:897.765000px;}
.y1d{bottom:902.265000px;}
.yc6{bottom:904.605000px;}
.y4b{bottom:912.165000px;}
.yf9{bottom:914.910000px;}
.y120{bottom:917.610000px;}
.y140{bottom:926.610000px;}
.y1c{bottom:932.010000px;}
.y4a{bottom:932.910000px;}
.y93{bottom:933.810000px;}
.yf8{bottom:935.610000px;}
.yc1{bottom:940.650000px;}
.y11f{bottom:947.310000px;}
.y49{bottom:953.610000px;}
.y1b{bottom:961.710000px;}
.yf7{bottom:965.310000px;}
.y11e{bottom:968.010000px;}
.y92{bottom:969.810000px;}
.y48{bottom:974.310000px;}
.yc0{bottom:976.650000px;}
.y13f{bottom:977.010000px;}
.yf6{bottom:986.010000px;}
.y11d{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y47{bottom:995.010000px;}
.y71{bottom:996.090000px;}
.y13e{bottom:997.710000px;}
.y8e{bottom:1005.810000px;}
.yf5{bottom:1006.710000px;}
.y19{bottom:1012.110000px;}
.ybf{bottom:1012.650000px;}
.y46{bottom:1015.710000px;}
.y11c{bottom:1018.410000px;}
.yf4{bottom:1027.410000px;}
.y6f{bottom:1032.090000px;}
.y45{bottom:1036.410000px;}
.y18{bottom:1041.810000px;}
.yf3{bottom:1048.110000px;}
.ybe{bottom:1048.650000px;}
.y44{bottom:1057.110000px;}
.y13d{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y43{bottom:1077.810000px;}
.ybd{bottom:1084.650000px;}
.y6d{bottom:1094.370000px;}
.y42{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y41{bottom:1119.210000px;}
.ybc{bottom:1120.650000px;}
.y15{bottom:1130.910000px;}
.y40{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.260000px;}
.h11{height:33.683203px;}
.h28{height:35.100000px;}
.h27{height:35.136000px;}
.h18{height:35.280000px;}
.h1b{height:35.316000px;}
.ha{height:41.726953px;}
.h13{height:42.164648px;}
.hc{height:46.251562px;}
.hd{height:50.273438px;}
.he{height:50.800781px;}
.h5{height:52.020000px;}
.h12{height:52.380000px;}
.h2c{height:52.417969px;}
.h2d{height:52.628906px;}
.h22{height:53.533117px;}
.h23{height:53.675872px;}
.h2{height:53.820000px;}
.hf{height:57.796523px;}
.h10{height:61.043203px;}
.h7{height:61.189805px;}
.h16{height:61.416000px;}
.h17{height:61.560000px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h29{height:71.136000px;}
.h1a{height:87.660000px;}
.h14{height:87.840000px;}
.h15{height:87.876000px;}
.h24{height:90.421298px;}
.h2a{height:107.100000px;}
.h2b{height:107.280000px;}
.h1e{height:107.316000px;}
.h26{height:110.219879px;}
.h1d{height:113.976000px;}
.h19{height:140.256000px;}
.h1f{height:166.500000px;}
.h25{height:189.633556px;}
.h20{height:215.310000px;}
.h1c{height:271.470000px;}
.h21{height:379.446520px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:48.780000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.wc{width:115.776000px;}
.w13{width:124.893885px;}
.w12{width:138.211100px;}
.w10{width:140.370649px;}
.w11{width:157.467074px;}
.wf{width:167.005079px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.wa{width:218.010000px;}
.wb{width:268.770000px;}
.w14{width:334.010159px;}
.w2{width:383.115000px;}
.wd{width:653.505000px;}
.we{width:683.857006px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x17{left:7.740000px;}
.x1c{left:8.962126px;}
.xb{left:10.800000px;}
.x1b{left:15.800696px;}
.x26{left:17.666306px;}
.x5{left:21.960000px;}
.x1f{left:24.762822px;}
.x28{left:31.568399px;}
.x1e{left:34.300828px;}
.x23{left:37.792098px;}
.x24{left:45.710442px;}
.x21{left:50.179507px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x11{left:111.275987px;}
.xd{left:117.755987px;}
.x13{left:131.795987px;}
.x15{left:140.975987px;}
.x1d{left:142.822361px;}
.x2{left:148.005000px;}
.x16{left:153.929987px;}
.x18{left:156.630000px;}
.x2c{left:160.229987px;}
.x1{left:165.270000px;}
.x12{left:183.089987px;}
.x10{left:190.109987px;}
.x14{left:200.729987px;}
.x20{left:279.413800px;}
.x29{left:287.152182px;}
.xe{left:301.934987px;}
.x19{left:375.375000px;}
.x7{left:378.075000px;}
.x22{left:394.049830px;}
.xf{left:446.474987px;}
.x25{left:527.042021px;}
.x1a{left:644.865000px;}
.x27{left:656.974852px;}
.x8{left:662.730000px;}
.x2b{left:755.429987px;}
.x4{left:765.510000px;}
.x2a{left:802.769987px;}
.xa{left:807.990000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.080800pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.015947pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:87.808000pt;}
.ls8{letter-spacing:119.808000pt;}
.lsa{letter-spacing:126.208000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws9{word-spacing:-10.812282pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-4.078293pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._b{width:3.152000pt;}
._14{width:4.864000pt;}
._15{width:5.944960pt;}
._7{width:7.360000pt;}
._8{width:8.632960pt;}
._c{width:9.536000pt;}
._d{width:10.816000pt;}
._11{width:12.032000pt;}
._e{width:13.696000pt;}
._f{width:14.961920pt;}
._13{width:16.924800pt;}
._12{width:18.211627pt;}
._18{width:19.300267pt;}
._10{width:20.288000pt;}
._19{width:21.240960pt;}
._22{width:22.336000pt;}
._23{width:23.303040pt;}
._24{width:24.238293pt;}
._16{width:26.659840pt;}
._17{width:28.188160pt;}
._9{width:29.312000pt;}
._20{width:34.156160pt;}
._21{width:35.324800pt;}
._1c{width:41.327360pt;}
._1e{width:48.817280pt;}
._1d{width:50.092160pt;}
._1f{width:76.333440pt;}
._1a{width:100.184320pt;}
._3{width:172.778667pt;}
._1b{width:184.113920pt;}
._6{width:1657.365333pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:47.841957pt;}
.fs5{font-size:47.969535pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:95.683914pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.y77{bottom:10.720000pt;}
.yc7{bottom:10.760000pt;}
.y66{bottom:10.880000pt;}
.ya6{bottom:10.906667pt;}
.y14{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y70{bottom:18.880000pt;}
.y7{bottom:19.040000pt;}
.y67{bottom:26.080000pt;}
.y65{bottom:26.240000pt;}
.yc5{bottom:27.520000pt;}
.ycc{bottom:28.800000pt;}
.y5{bottom:33.120000pt;}
.y6e{bottom:34.080000pt;}
.y6a{bottom:34.240000pt;}
.y2{bottom:34.720000pt;}
.yb8{bottom:39.613672pt;}
.y7a{bottom:42.240000pt;}
.yc3{bottom:42.760000pt;}
.yc4{bottom:42.920000pt;}
.ycb{bottom:44.160000pt;}
.y8d{bottom:50.240000pt;}
.y12{bottom:51.040000pt;}
.yb7{bottom:54.285205pt;}
.y79{bottom:57.440000pt;}
.y7f{bottom:57.466667pt;}
.y76{bottom:57.480000pt;}
.y69{bottom:57.600000pt;}
.y6c{bottom:57.626667pt;}
.yca{bottom:59.520000pt;}
.yd1{bottom:59.546667pt;}
.y91{bottom:59.560000pt;}
.y11{bottom:65.120000pt;}
.y99{bottom:65.466667pt;}
.y8c{bottom:65.600000pt;}
.yb6{bottom:68.956739pt;}
.yc9{bottom:74.720000pt;}
.y9c{bottom:74.880000pt;}
.yd0{bottom:74.906667pt;}
.y90{bottom:74.920000pt;}
.y8a{bottom:80.800000pt;}
.y7e{bottom:80.826667pt;}
.y75{bottom:80.840000pt;}
.y8b{bottom:80.960000pt;}
.yaa{bottom:88.699387pt;}
.y7d{bottom:88.826667pt;}
.y74{bottom:88.840000pt;}
.ybb{bottom:100.000000pt;}
.y9f{bottom:101.920000pt;}
.y97{bottom:104.160000pt;}
.y7c{bottom:104.186667pt;}
.y73{bottom:104.200000pt;}
.y3f{bottom:104.320000pt;}
.y11b{bottom:105.120000pt;}
.yb5{bottom:106.457067pt;}
.ya9{bottom:106.457200pt;}
.yab{bottom:108.920587pt;}
.y96{bottom:112.160000pt;}
.yf2{bottom:115.360000pt;}
.y6b{bottom:120.800000pt;}
.y3e{bottom:122.720000pt;}
.y83{bottom:124.640000pt;}
.y95{bottom:127.520000pt;}
.y89{bottom:127.546667pt;}
.yac{bottom:129.135143pt;}
.y11a{bottom:131.520000pt;}
.ya7{bottom:133.920000pt;}
.y3d{bottom:141.120000pt;}
.yf1{bottom:141.760000pt;}
.yba{bottom:143.751791pt;}
.yad{bottom:149.335080pt;}
.y119{bottom:149.920000pt;}
.y88{bottom:150.906667pt;}
.ya1{bottom:155.546667pt;}
.y3c{bottom:159.520000pt;}
.yf0{bottom:160.160000pt;}
.ya5{bottom:165.920000pt;}
.y118{bottom:168.320000pt;}
.yae{bottom:169.548307pt;}
.ya0{bottom:170.906667pt;}
.y87{bottom:174.266667pt;}
.y3b{bottom:177.946667pt;}
.yef{bottom:178.586667pt;}
.y13c{bottom:185.946667pt;}
.yaf{bottom:189.774823pt;}
.y117{bottom:194.746667pt;}
.y3a{bottom:196.346667pt;}
.yee{bottom:196.986667pt;}
.y86{bottom:197.466667pt;}
.ya4{bottom:197.946667pt;}
.y68{bottom:199.546667pt;}
.y13b{bottom:204.346667pt;}
.y85{bottom:205.466667pt;}
.yb0{bottom:209.988050pt;}
.y116{bottom:213.146667pt;}
.y39{bottom:214.746667pt;}
.yed{bottom:215.386667pt;}
.y84{bottom:220.826667pt;}
.y13a{bottom:222.746667pt;}
.ya3{bottom:229.946667pt;}
.yb1{bottom:230.187987pt;}
.y115{bottom:231.546667pt;}
.yec{bottom:233.786667pt;}
.y38{bottom:241.146667pt;}
.y139{bottom:249.146667pt;}
.y114{bottom:249.946667pt;}
.yb2{bottom:250.401214pt;}
.yeb{bottom:252.186667pt;}
.ya2{bottom:261.946667pt;}
.yb9{bottom:267.207903pt;}
.y37{bottom:267.546667pt;}
.y113{bottom:268.346667pt;}
.yb3{bottom:270.627730pt;}
.y138{bottom:275.546667pt;}
.y152{bottom:277.946667pt;}
.y64{bottom:278.266667pt;}
.yea{bottom:278.586667pt;}
.yb4{bottom:290.840957pt;}
.y36{bottom:293.946667pt;}
.y112{bottom:294.746667pt;}
.ye9{bottom:296.986667pt;}
.y151{bottom:304.346667pt;}
.y35{bottom:312.346667pt;}
.ye8{bottom:315.386667pt;}
.y137{bottom:320.346667pt;}
.y111{bottom:321.146667pt;}
.y9e{bottom:325.946667pt;}
.y150{bottom:330.746667pt;}
.ye7{bottom:333.626667pt;}
.y63{bottom:337.146667pt;}
.y34{bottom:338.746667pt;}
.y110{bottom:339.546667pt;}
.y136{bottom:346.746667pt;}
.y14f{bottom:349.146667pt;}
.ye6{bottom:352.026667pt;}
.y62{bottom:355.546667pt;}
.y33{bottom:357.146667pt;}
.y9d{bottom:357.946667pt;}
.y135{bottom:365.146667pt;}
.y82{bottom:366.586667pt;}
.y14e{bottom:367.546667pt;}
.ye5{bottom:370.426667pt;}
.y32{bottom:375.546667pt;}
.y10f{bottom:376.346667pt;}
.y61{bottom:381.946667pt;}
.y134{bottom:383.546667pt;}
.ye4{bottom:388.866667pt;}
.y9b{bottom:389.986667pt;}
.y31{bottom:393.986667pt;}
.y81{bottom:398.626667pt;}
.y10e{bottom:402.786667pt;}
.y60{bottom:408.386667pt;}
.y133{bottom:409.986667pt;}
.y30{bottom:412.386667pt;}
.ye3{bottom:415.266667pt;}
.y10d{bottom:421.186667pt;}
.y5f{bottom:426.786667pt;}
.y132{bottom:428.386667pt;}
.y2f{bottom:430.786667pt;}
.ye2{bottom:433.666667pt;}
.y14d{bottom:438.786667pt;}
.y10c{bottom:439.586667pt;}
.y5e{bottom:445.186667pt;}
.y131{bottom:446.786667pt;}
.y2e{bottom:449.186667pt;}
.ye1{bottom:452.066667pt;}
.y14c{bottom:457.186667pt;}
.y10b{bottom:457.986667pt;}
.ya8{bottom:460.546667pt;}
.y5d{bottom:463.586667pt;}
.y2d{bottom:467.586667pt;}
.y9a{bottom:468.706667pt;}
.ye0{bottom:470.466667pt;}
.y130{bottom:473.186667pt;}
.y14b{bottom:475.586667pt;}
.y10a{bottom:476.386667pt;}
.y80{bottom:477.346667pt;}
.y5c{bottom:481.986667pt;}
.yd4{bottom:484.066667pt;}
.y2c{bottom:485.986667pt;}
.y12f{bottom:491.586667pt;}
.y109{bottom:494.786667pt;}
.ydf{bottom:496.866667pt;}
.y5b{bottom:500.386667pt;}
.y14a{bottom:501.986667pt;}
.y2b{bottom:504.386667pt;}
.yde{bottom:515.266667pt;}
.yd6{bottom:516.066667pt;}
.y12e{bottom:517.986667pt;}
.y5a{bottom:518.786667pt;}
.y149{bottom:520.386667pt;}
.y108{bottom:521.186667pt;}
.y2a{bottom:522.786667pt;}
.ydd{bottom:533.666667pt;}
.y59{bottom:537.186667pt;}
.y148{bottom:538.786667pt;}
.y107{bottom:539.586667pt;}
.y29{bottom:541.186667pt;}
.y12d{bottom:544.386667pt;}
.y98{bottom:547.426667pt;}
.yd5{bottom:548.066667pt;}
.y13{bottom:548.866667pt;}
.ydc{bottom:552.066667pt;}
.y7b{bottom:556.066667pt;}
.y106{bottom:557.986667pt;}
.y28{bottom:559.586667pt;}
.y12c{bottom:562.786667pt;}
.y58{bottom:563.586667pt;}
.y147{bottom:565.186667pt;}
.ydb{bottom:570.466667pt;}
.y105{bottom:576.386667pt;}
.y27{bottom:577.986667pt;}
.ycf{bottom:580.066667pt;}
.y12b{bottom:581.186667pt;}
.yda{bottom:588.866667pt;}
.y57{bottom:589.986667pt;}
.y146{bottom:591.586667pt;}
.y104{bottom:594.786667pt;}
.y26{bottom:596.386667pt;}
.y12a{bottom:607.613333pt;}
.y56{bottom:608.413333pt;}
.y145{bottom:610.013333pt;}
.yd3{bottom:612.093333pt;}
.y25{bottom:614.813333pt;}
.yd9{bottom:615.293333pt;}
.y103{bottom:621.213333pt;}
.y129{bottom:626.013333pt;}
.y55{bottom:626.813333pt;}
.y144{bottom:636.413333pt;}
.y102{bottom:639.613333pt;}
.y24{bottom:641.213333pt;}
.yd8{bottom:641.693333pt;}
.yd2{bottom:644.093333pt;}
.y128{bottom:644.413333pt;}
.y54{bottom:645.213333pt;}
.y94{bottom:649.373333pt;}
.y101{bottom:658.013333pt;}
.y143{bottom:662.813333pt;}
.y53{bottom:663.613333pt;}
.yd7{bottom:664.733333pt;}
.y23{bottom:667.613333pt;}
.y127{bottom:670.813333pt;}
.yc8{bottom:676.093333pt;}
.y100{bottom:676.413333pt;}
.y142{bottom:681.213333pt;}
.y78{bottom:681.373333pt;}
.y52{bottom:682.013333pt;}
.y126{bottom:689.213333pt;}
.y22{bottom:694.013333pt;}
.yff{bottom:694.813333pt;}
.y51{bottom:700.413333pt;}
.y125{bottom:707.613333pt;}
.yce{bottom:708.093333pt;}
.y21{bottom:718.493333pt;}
.y50{bottom:718.813333pt;}
.yfe{bottom:721.213333pt;}
.y141{bottom:726.013333pt;}
.y124{bottom:734.013333pt;}
.y4f{bottom:737.213333pt;}
.y20{bottom:738.813333pt;}
.yfd{bottom:739.613333pt;}
.ycd{bottom:740.093333pt;}
.y123{bottom:752.413333pt;}
.y4e{bottom:755.613333pt;}
.yfc{bottom:758.013333pt;}
.y72{bottom:760.093333pt;}
.y1f{bottom:763.293333pt;}
.y122{bottom:770.813333pt;}
.yc2{bottom:772.093333pt;}
.y4d{bottom:774.013333pt;}
.yfb{bottom:776.413333pt;}
.y1e{bottom:783.613333pt;}
.y4c{bottom:792.413333pt;}
.yfa{bottom:794.813333pt;}
.y121{bottom:797.213333pt;}
.y8f{bottom:798.013333pt;}
.y1d{bottom:802.013333pt;}
.yc6{bottom:804.093333pt;}
.y4b{bottom:810.813333pt;}
.yf9{bottom:813.253333pt;}
.y120{bottom:815.653333pt;}
.y140{bottom:823.653333pt;}
.y1c{bottom:828.453333pt;}
.y4a{bottom:829.253333pt;}
.y93{bottom:830.053333pt;}
.yf8{bottom:831.653333pt;}
.yc1{bottom:836.133333pt;}
.y11f{bottom:842.053333pt;}
.y49{bottom:847.653333pt;}
.y1b{bottom:854.853333pt;}
.yf7{bottom:858.053333pt;}
.y11e{bottom:860.453333pt;}
.y92{bottom:862.053333pt;}
.y48{bottom:866.053333pt;}
.yc0{bottom:868.133333pt;}
.y13f{bottom:868.453333pt;}
.yf6{bottom:876.453333pt;}
.y11d{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y47{bottom:884.453333pt;}
.y71{bottom:885.413333pt;}
.y13e{bottom:886.853333pt;}
.y8e{bottom:894.053333pt;}
.yf5{bottom:894.853333pt;}
.y19{bottom:899.653333pt;}
.ybf{bottom:900.133333pt;}
.y46{bottom:902.853333pt;}
.y11c{bottom:905.253333pt;}
.yf4{bottom:913.253333pt;}
.y6f{bottom:917.413333pt;}
.y45{bottom:921.253333pt;}
.y18{bottom:926.053333pt;}
.yf3{bottom:931.653333pt;}
.ybe{bottom:932.133333pt;}
.y44{bottom:939.653333pt;}
.y13d{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y43{bottom:958.053333pt;}
.ybd{bottom:964.133333pt;}
.y6d{bottom:972.773333pt;}
.y42{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y41{bottom:994.853333pt;}
.ybc{bottom:996.133333pt;}
.y15{bottom:1005.253333pt;}
.y40{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:25.120000pt;}
.h11{height:29.940625pt;}
.h28{height:31.200000pt;}
.h27{height:31.232000pt;}
.h18{height:31.360000pt;}
.h1b{height:31.392000pt;}
.ha{height:37.090625pt;}
.h13{height:37.479688pt;}
.hc{height:41.112500pt;}
.hd{height:44.687500pt;}
.he{height:45.156250pt;}
.h5{height:46.240000pt;}
.h12{height:46.560000pt;}
.h2c{height:46.593750pt;}
.h2d{height:46.781250pt;}
.h22{height:47.584993pt;}
.h23{height:47.711887pt;}
.h2{height:47.840000pt;}
.hf{height:51.374688pt;}
.h10{height:54.260625pt;}
.h7{height:54.390938pt;}
.h16{height:54.592000pt;}
.h17{height:54.720000pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h29{height:63.232000pt;}
.h1a{height:77.920000pt;}
.h14{height:78.080000pt;}
.h15{height:78.112000pt;}
.h24{height:80.374487pt;}
.h2a{height:95.200000pt;}
.h2b{height:95.360000pt;}
.h1e{height:95.392000pt;}
.h26{height:97.973226pt;}
.h1d{height:101.312000pt;}
.h19{height:124.672000pt;}
.h1f{height:148.000000pt;}
.h25{height:168.563161pt;}
.h20{height:191.386667pt;}
.h1c{height:241.306667pt;}
.h21{height:337.285796pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:43.360000pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.wc{width:102.912000pt;}
.w13{width:111.016786pt;}
.w12{width:122.854311pt;}
.w10{width:124.773910pt;}
.w11{width:139.970732pt;}
.wf{width:148.448959pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.wa{width:193.786667pt;}
.wb{width:238.906667pt;}
.w14{width:296.897919pt;}
.w2{width:340.546667pt;}
.wd{width:580.893333pt;}
.we{width:607.872894pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x17{left:6.880000pt;}
.x1c{left:7.966334pt;}
.xb{left:9.600000pt;}
.x1b{left:14.045063pt;}
.x26{left:15.703383pt;}
.x5{left:19.520000pt;}
.x1f{left:22.011397pt;}
.x28{left:28.060799pt;}
.x1e{left:30.489625pt;}
.x23{left:33.592976pt;}
.x24{left:40.631504pt;}
.x21{left:44.604007pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x11{left:98.911988pt;}
.xd{left:104.671988pt;}
.x13{left:117.151988pt;}
.x15{left:125.311988pt;}
.x1d{left:126.953210pt;}
.x2{left:131.560000pt;}
.x16{left:136.826655pt;}
.x18{left:139.226667pt;}
.x2c{left:142.426655pt;}
.x1{left:146.906667pt;}
.x12{left:162.746655pt;}
.x10{left:168.986655pt;}
.x14{left:178.426655pt;}
.x20{left:248.367822pt;}
.x29{left:255.246384pt;}
.xe{left:268.386655pt;}
.x19{left:333.666667pt;}
.x7{left:336.066667pt;}
.x22{left:350.266515pt;}
.xf{left:396.866655pt;}
.x25{left:468.481796pt;}
.x1a{left:573.213333pt;}
.x27{left:583.977646pt;}
.x8{left:589.093333pt;}
.x2b{left:671.493322pt;}
.x4{left:680.453333pt;}
.x2a{left:713.573322pt;}
.xa{left:718.213333pt;}
}




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