
    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_25571c7f06ea85c0983000ca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_295cbde00336a4d037ecc543.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_581d8a08fd21fc92a9006182.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_017a6e4a8c29f55ab99c7d9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_eac683b1ebad75dfa0f91b53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c1d40b09e99f975d8e751929.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_2b9516893e7fb2228cef28be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7d315ac08e8e4e7a0eb3d298.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_8f7a1e2094ce0e85f4e024be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.367200px;}
.lsf{letter-spacing:-0.305400px;}
.ls1{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.152640px;}
.lsd{letter-spacing:0.178560px;}
.lse{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.269400px;}
.ls1c{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.305400px;}
.ls17{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls3{letter-spacing:33.264000px;}
.ls9{letter-spacing:33.984000px;}
.ls1e{letter-spacing:75.660000px;}
.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;}
}
.ws26{word-spacing:-89.160000px;}
.ws0{word-spacing:-18.984000px;}
.ws13{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.720000px;}
.ws22{word-spacing:-18.432000px;}
.ws21{word-spacing:-18.288000px;}
.ws1f{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.424000px;}
.ws15{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.669200px;}
.ws10{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.407600px;}
.wsd{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.226440px;}
.wse{word-spacing:-14.940000px;}
.ws1e{word-spacing:-12.329400px;}
.ws11{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.720000px;}
.ws2c{word-spacing:-4.896000px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:7.794000px;}
.ws2a{word-spacing:8.274000px;}
.ws1b{word-spacing:20.160000px;}
.ws19{word-spacing:20.280000px;}
.ws29{word-spacing:20.520000px;}
.ws27{word-spacing:20.580000px;}
.ws1d{word-spacing:21.294000px;}
.ws1c{word-spacing:21.474000px;}
.ws28{word-spacing:21.774000px;}
.ws17{word-spacing:33.348000px;}
.ws16{word-spacing:33.660000px;}
.ws2b{word-spacing:34.080000px;}
.ws23{word-spacing:47.580000px;}
.ws25{word-spacing:47.640000px;}
.ws18{word-spacing:48.180000px;}
.ws24{word-spacing:48.600000px;}
._d{margin-left:-13.140000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._4{width:1.420800px;}
._c{width:2.539920px;}
._0{width:5.587200px;}
._a{width:34.992000px;}
._b{width:47.466000px;}
._8{width:61.200000px;}
._9{width:75.360000px;}
._7{width:203.040000px;}
._5{width:840.216000px;}
._6{width:846.156000px;}
.fc7{color:transparent;}
.fc3{color:rgb(41,43,44);}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(46,46,46);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(1,2,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:81.360000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:95.760000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:3.600000px;}
.y62{bottom:3.780000px;}
.yfa{bottom:3.960000px;}
.ycc{bottom:4.500000px;}
.yc1{bottom:4.680000px;}
.yc9{bottom:4.860000px;}
.yb3{bottom:4.890000px;}
.y104{bottom:5.040000px;}
.yd1{bottom:6.840000px;}
.yc{bottom:8.040000px;}
.y6d{bottom:9.720000px;}
.y130{bottom:9.930000px;}
.yaf{bottom:12.060000px;}
.yab{bottom:19.620000px;}
.y70{bottom:21.240000px;}
.yf7{bottom:21.810000px;}
.y65{bottom:22.320000px;}
.y5f{bottom:22.500000px;}
.y63{bottom:22.530000px;}
.y69{bottom:22.680000px;}
.y61{bottom:22.710000px;}
.ycb{bottom:23.400000px;}
.yf9{bottom:24.660000px;}
.y113{bottom:24.690000px;}
.ya0{bottom:25.380000px;}
.yb2{bottom:25.410000px;}
.ya1{bottom:25.560000px;}
.yd0{bottom:25.740000px;}
.ya4{bottom:26.100000px;}
.ya3{bottom:26.280000px;}
.y7a{bottom:28.074000px;}
.y78{bottom:28.254000px;}
.y84{bottom:30.780000px;}
.yae{bottom:30.960000px;}
.y80{bottom:31.320000px;}
.y7e{bottom:31.500000px;}
.yac{bottom:38.520000px;}
.yaa{bottom:38.700000px;}
.y71{bottom:39.960000px;}
.y6f{bottom:40.140000px;}
.ya7{bottom:41.400000px;}
.y68{bottom:41.580000px;}
.y6c{bottom:41.760000px;}
.ycf{bottom:44.820000px;}
.y111{bottom:45.354000px;}
.y77{bottom:47.154000px;}
.y83{bottom:49.860000px;}
.y7d{bottom:50.580000px;}
.yf6{bottom:57.090000px;}
.y1d{bottom:57.456000px;}
.y12e{bottom:57.990000px;}
.y87{bottom:60.300000px;}
.y5e{bottom:60.480000px;}
.y74{bottom:60.525000px;}
.y67{bottom:60.660000px;}
.y73{bottom:60.705000px;}
.y79{bottom:65.874000px;}
.y76{bottom:66.054000px;}
.y85{bottom:68.580000px;}
.y82{bottom:68.760000px;}
.y7f{bottom:69.330000px;}
.y7c{bottom:69.510000px;}
.y1c{bottom:77.616000px;}
.y15{bottom:77.715000px;}
.yf4{bottom:81.210000px;}
.y12c{bottom:82.110000px;}
.y9e{bottom:82.980000px;}
.y110{bottom:86.754000px;}
.yed{bottom:97.530000px;}
.y125{bottom:98.430000px;}
.y14{bottom:99.795000px;}
.y10f{bottom:107.454000px;}
.ybf{bottom:112.896000px;}
.y5c{bottom:113.436000px;}
.y19{bottom:113.670000px;}
.y10e{bottom:117.936000px;}
.y12d{bottom:119.370000px;}
.y123{bottom:123.696000px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y126{bottom:136.905000px;}
.y9c{bottom:137.196000px;}
.y133{bottom:139.896000px;}
.y75{bottom:140.076000px;}
.yee{bottom:140.295000px;}
.ye6{bottom:141.876000px;}
.y4c{bottom:144.396000px;}
.y53{bottom:148.356000px;}
.yf5{bottom:148.575000px;}
.y14b{bottom:151.590000px;}
.ybe{bottom:154.290000px;}
.y5b{bottom:154.830000px;}
.y16{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y17{bottom:157.830000px;}
.y127{bottom:175.395000px;}
.y9b{bottom:178.590000px;}
.y122{bottom:181.290000px;}
.y124{bottom:182.700000px;}
.yef{bottom:183.090000px;}
.ye5{bottom:183.270000px;}
.y4b{bottom:185.790000px;}
.y52{bottom:189.750000px;}
.y14a{bottom:192.990000px;}
.y12f{bottom:194.400000px;}
.ybd{bottom:195.690000px;}
.y5a{bottom:196.230000px;}
.ye4{bottom:200.730000px;}
.y128{bottom:213.870000px;}
.y9a{bottom:219.990000px;}
.y72{bottom:221.430000px;}
.y132{bottom:222.690000px;}
.yeb{bottom:224.670000px;}
.yf0{bottom:225.870000px;}
.y4a{bottom:227.190000px;}
.y51{bottom:231.150000px;}
.y149{bottom:234.390000px;}
.ybc{bottom:237.090000px;}
.y59{bottom:237.630000px;}
.y10d{bottom:242.130000px;}
.yea{bottom:245.370000px;}
.y33{bottom:250.590000px;}
.y129{bottom:252.360000px;}
.ye3{bottom:257.610000px;}
.y99{bottom:261.390000px;}
.y10c{bottom:262.830000px;}
.ye9{bottom:266.070000px;}
.y131{bottom:266.790000px;}
.y49{bottom:268.590000px;}
.yf1{bottom:268.665000px;}
.y50{bottom:272.550000px;}
.y148{bottom:275.790000px;}
.ye2{bottom:277.635000px;}
.ybb{bottom:278.535000px;}
.y58{bottom:279.075000px;}
.y10b{bottom:283.575000px;}
.ye8{bottom:286.815000px;}
.y12a{bottom:290.850000px;}
.y6e{bottom:297.435000px;}
.ye1{bottom:297.795000px;}
.y98{bottom:302.655000px;}
.y10a{bottom:304.275000px;}
.y48{bottom:310.035000px;}
.yf2{bottom:311.475000px;}
.y32{bottom:312.555000px;}
.y4f{bottom:313.995000px;}
.ye0{bottom:316.695000px;}
.y147{bottom:317.235000px;}
.yba{bottom:319.935000px;}
.y57{bottom:320.475000px;}
.ye7{bottom:323.535000px;}
.yec{bottom:324.900000px;}
.y109{bottom:324.975000px;}
.y12b{bottom:329.325000px;}
.ydf{bottom:336.675000px;}
.y97{bottom:344.055000px;}
.ya{bottom:344.680500px;}
.y108{bottom:345.675000px;}
.y47{bottom:351.435000px;}
.y6b{bottom:352.875000px;}
.y31{bottom:353.955000px;}
.yf3{bottom:354.240000px;}
.y4e{bottom:355.395000px;}
.yde{bottom:355.755000px;}
.y146{bottom:358.635000px;}
.yb9{bottom:361.335000px;}
.y56{bottom:361.875000px;}
.y150{bottom:362.235000px;}
.y107{bottom:366.375000px;}
.ydd{bottom:375.735000px;}
.y14f{bottom:384.555000px;}
.y96{bottom:385.455000px;}
.yd{bottom:386.490000px;}
.y106{bottom:387.075000px;}
.y154{bottom:390.315000px;}
.y46{bottom:392.835000px;}
.y4d{bottom:394.455000px;}
.y30{bottom:395.355000px;}
.y9{bottom:395.689500px;}
.ydc{bottom:395.715000px;}
.y145{bottom:400.035000px;}
.yb8{bottom:402.735000px;}
.y55{bottom:403.275000px;}
.y14e{bottom:406.875000px;}
.y105{bottom:407.775000px;}
.y153{bottom:412.815000px;}
.ydb{bottom:414.795000px;}
.y95{bottom:426.855000px;}
.y103{bottom:428.475000px;}
.y66{bottom:428.835000px;}
.y14d{bottom:429.195000px;}
.y45{bottom:434.235000px;}
.yda{bottom:434.775000px;}
.yb{bottom:434.850000px;}
.y152{bottom:435.135000px;}
.y144{bottom:441.435000px;}
.yb7{bottom:444.135000px;}
.y54{bottom:444.675000px;}
.y8{bottom:446.698500px;}
.y102{bottom:450.255000px;}
.y2f{bottom:451.875000px;}
.yd9{bottom:454.755000px;}
.y151{bottom:457.455000px;}
.yb6{bottom:464.115000px;}
.y94{bottom:468.255000px;}
.y101{bottom:470.955000px;}
.yd8{bottom:474.735000px;}
.y44{bottom:475.635000px;}
.y143{bottom:482.835000px;}
.y11{bottom:488.055000px;}
.y100{bottom:491.655000px;}
.yd7{bottom:494.895000px;}
.y7{bottom:497.707500px;}
.yb5{bottom:502.815000px;}
.y64{bottom:504.795000px;}
.y2e{bottom:508.215000px;}
.y93{bottom:509.655000px;}
.yff{bottom:512.355000px;}
.yd6{bottom:513.795000px;}
.y43{bottom:517.035000px;}
.yb4{bottom:520.275000px;}
.y142{bottom:524.235000px;}
.yd5{bottom:533.775000px;}
.y12{bottom:538.230000px;}
.y60{bottom:542.595000px;}
.y6{bottom:548.716500px;}
.y2d{bottom:549.615000px;}
.y92{bottom:551.055000px;}
.yd4{bottom:552.855000px;}
.yfe{bottom:553.755000px;}
.y121{bottom:556.995000px;}
.yb1{bottom:558.255000px;}
.y42{bottom:558.435000px;}
.y141{bottom:565.485000px;}
.yd3{bottom:572.865000px;}
.yfd{bottom:574.485000px;}
.y5d{bottom:581.325000px;}
.y1a{bottom:589.605000px;}
.y2c{bottom:591.045000px;}
.y91{bottom:592.485000px;}
.y120{bottom:598.425000px;}
.yb0{bottom:599.145000px;}
.y5{bottom:599.725500px;}
.y41{bottom:599.865000px;}
.y140{bottom:606.885000px;}
.yd2{bottom:610.845000px;}
.yfc{bottom:615.885000px;}
.yce{bottom:629.745000px;}
.ye{bottom:631.920000px;}
.y2b{bottom:632.445000px;}
.y90{bottom:633.885000px;}
.yfb{bottom:636.585000px;}
.yad{bottom:637.125000px;}
.y11f{bottom:639.825000px;}
.y40{bottom:641.265000px;}
.y13f{bottom:648.285000px;}
.yf8{bottom:657.285000px;}
.y2a{bottom:673.845000px;}
.y8f{bottom:675.285000px;}
.y11e{bottom:681.225000px;}
.y3f{bottom:682.665000px;}
.ya9{bottom:683.385000px;}
.y13e{bottom:689.685000px;}
.ycd{bottom:689.865000px;}
.y29{bottom:696.165000px;}
.yca{bottom:709.845000px;}
.y8e{bottom:716.685000px;}
.y28{bottom:718.485000px;}
.y11d{bottom:722.625000px;}
.y3e{bottom:724.065000px;}
.y13d{bottom:731.085000px;}
.ya8{bottom:737.385000px;}
.y27{bottom:740.805000px;}
.yc8{bottom:748.545000px;}
.y8d{bottom:758.085000px;}
.y11c{bottom:764.025000px;}
.y3d{bottom:765.465000px;}
.yc7{bottom:768.705000px;}
.y13c{bottom:772.485000px;}
.y4{bottom:778.225500px;}
.y26{bottom:782.205000px;}
.yc6{bottom:787.605000px;}
.ya6{bottom:794.265000px;}
.y8c{bottom:799.485000px;}
.y11b{bottom:805.425000px;}
.y3c{bottom:806.865000px;}
.yc5{bottom:807.585000px;}
.y13b{bottom:813.885000px;}
.y13{bottom:815.670000px;}
.y8b{bottom:820.185000px;}
.yc4{bottom:826.665000px;}
.y14c{bottom:830.625000px;}
.y25{bottom:832.425000px;}
.y8a{bottom:840.165000px;}
.yc3{bottom:846.690000px;}
.y11a{bottom:846.870000px;}
.y3b{bottom:848.310000px;}
.ya5{bottom:851.190000px;}
.y13a{bottom:855.330000px;}
.y89{bottom:857.490000px;}
.yc2{bottom:866.670000px;}
.y88{bottom:872.250000px;}
.y24{bottom:878.730000px;}
.yc0{bottom:885.750000px;}
.y119{bottom:888.270000px;}
.ya2{bottom:889.170000px;}
.y3a{bottom:889.710000px;}
.y139{bottom:896.730000px;}
.y3{bottom:905.716500px;}
.y86{bottom:910.230000px;}
.y23{bottom:923.550000px;}
.y118{bottom:929.670000px;}
.y39{bottom:931.110000px;}
.y9d{bottom:931.470000px;}
.y138{bottom:938.130000px;}
.y2{bottom:964.228500px;}
.y22{bottom:965.490000px;}
.y117{bottom:971.070000px;}
.y38{bottom:972.510000px;}
.y137{bottom:979.530000px;}
.y81{bottom:986.010000px;}
.y9f{bottom:989.070000px;}
.y1{bottom:989.716500px;}
.y21{bottom:1007.250000px;}
.y116{bottom:1012.470000px;}
.y37{bottom:1013.910000px;}
.y136{bottom:1020.930000px;}
.y20{bottom:1049.010000px;}
.y115{bottom:1053.870000px;}
.y36{bottom:1055.310000px;}
.y135{bottom:1062.330000px;}
.y7b{bottom:1070.070000px;}
.y1f{bottom:1090.770000px;}
.y114{bottom:1095.270000px;}
.y35{bottom:1096.710000px;}
.y134{bottom:1103.730000px;}
.y112{bottom:1112.730000px;}
.y1e{bottom:1132.560000px;}
.y34{bottom:1138.140000px;}
.y1b{bottom:1193.040000px;}
.h2c{height:18.900000px;}
.h2a{height:19.080000px;}
.h29{height:19.980000px;}
.h2b{height:20.016000px;}
.h2d{height:20.160000px;}
.h37{height:20.700000px;}
.h39{height:20.736000px;}
.h3a{height:21.780000px;}
.h4{height:33.000000px;}
.h17{height:37.437188px;}
.h15{height:37.800000px;}
.h1e{height:37.980000px;}
.h14{height:38.016000px;}
.h2e{height:38.700000px;}
.h22{height:40.860000px;}
.h28{height:40.896000px;}
.h36{height:41.400000px;}
.h3c{height:41.436000px;}
.h24{height:41.580000px;}
.h27{height:46.260000px;}
.h34{height:48.410156px;}
.h11{height:50.132812px;}
.he{height:50.800781px;}
.hf{height:52.417969px;}
.h20{height:53.573906px;}
.h33{height:53.709961px;}
.h32{height:53.853187px;}
.h26{height:54.000000px;}
.h30{height:54.596250px;}
.h18{height:55.440000px;}
.h1f{height:55.735313px;}
.h23{height:56.880000px;}
.h25{height:56.916000px;}
.h3{height:58.406250px;}
.h10{height:59.343750px;}
.h13{height:59.383125px;}
.h2f{height:60.120000px;}
.h16{height:61.197187px;}
.ha{height:64.546875px;}
.hb{height:65.884219px;}
.h2{height:66.750000px;}
.h35{height:67.120313px;}
.h5{height:67.740234px;}
.h3e{height:70.200000px;}
.h38{height:70.606406px;}
.h1d{height:75.780000px;}
.h12{height:75.960000px;}
.h19{height:75.996000px;}
.h3f{height:78.927188px;}
.h1a{height:81.360000px;}
.h1c{height:84.060000px;}
.h1b{height:84.816000px;}
.hc{height:85.847344px;}
.hd{height:96.820312px;}
.h21{height:98.460000px;}
.h7{height:115.215000px;}
.h3b{height:124.200000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h3d{height:349.740000px;}
.h31{height:374.580000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:52.380000px;}
.w1a{width:84.240000px;}
.we{width:92.160000px;}
.wc{width:92.340000px;}
.w16{width:94.500000px;}
.wd{width:101.196000px;}
.w14{width:106.416000px;}
.wf{width:109.836000px;}
.w15{width:116.856000px;}
.w13{width:148.860000px;}
.wb{width:193.350000px;}
.w12{width:211.350000px;}
.w10{width:233.850000px;}
.w11{width:255.270000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w19{width:567.540000px;}
.w1c{width:569.160000px;}
.w1b{width:595.005000px;}
.w4{width:597.405000px;}
.w18{width:622.185000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x1d{left:8.100000px;}
.x23{left:13.140000px;}
.x2a{left:15.120000px;}
.x2c{left:17.280000px;}
.x3f{left:18.360000px;}
.x21{left:19.800000px;}
.x2d{left:21.600000px;}
.x25{left:23.400000px;}
.x2e{left:25.920000px;}
.x1f{left:27.360000px;}
.x3a{left:28.620000px;}
.x2b{left:30.060000px;}
.x29{left:31.680000px;}
.x3c{left:32.760000px;}
.x38{left:34.020000px;}
.x27{left:36.000000px;}
.x20{left:37.260000px;}
.x3b{left:38.730000px;}
.x2f{left:40.320000px;}
.x26{left:42.300000px;}
.x3e{left:43.380000px;}
.x28{left:46.440000px;}
.x39{left:51.660000px;}
.x35{left:55.620000px;}
.x3d{left:59.940000px;}
.x32{left:62.820000px;}
.x34{left:64.080000px;}
.x42{left:71.385000px;}
.x30{left:96.336000px;}
.x45{left:106.956000px;}
.xa{left:108.035987px;}
.x40{left:109.296000px;}
.x12{left:111.635987px;}
.x11{left:123.695987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x44{left:129.390000px;}
.x16{left:134.855987px;}
.xe{left:136.835987px;}
.x18{left:140.075987px;}
.xc{left:143.855987px;}
.x15{left:148.175987px;}
.x17{left:150.509987px;}
.x1c{left:152.130000px;}
.x1b{left:162.029987px;}
.x46{left:163.289987px;}
.x5{left:174.105000px;}
.x19{left:177.509987px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xd{left:245.009987px;}
.x43{left:289.800000px;}
.x13{left:323.534987px;}
.x31{left:330.195000px;}
.x1e{left:345.495000px;}
.x14{left:360.254987px;}
.x10{left:396.254987px;}
.x1a{left:438.194987px;}
.xb{left:442.334987px;}
.xf{left:446.474987px;}
.x36{left:479.055000px;}
.x22{left:539.025000px;}
.x33{left:585.465000px;}
.x24{left:631.185000px;}
.x37{left:702.330000px;}
.x41{left:719.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.326400pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.135680pt;}
.lsd{letter-spacing:0.158720pt;}
.lse{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.239467pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.271467pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls3{letter-spacing:29.568000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls1e{letter-spacing:67.253333pt;}
.ws26{word-spacing:-79.253333pt;}
.ws0{word-spacing:-16.874667pt;}
.ws13{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws22{word-spacing:-16.384000pt;}
.ws21{word-spacing:-16.256000pt;}
.ws1f{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.488000pt;}
.ws15{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.817067pt;}
.ws10{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.584533pt;}
.wsd{word-spacing:-14.448533pt;}
.wsa{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-10.959467pt;}
.ws11{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.640000pt;}
.ws2c{word-spacing:-4.352000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:6.928000pt;}
.ws2a{word-spacing:7.354667pt;}
.ws1b{word-spacing:17.920000pt;}
.ws19{word-spacing:18.026667pt;}
.ws29{word-spacing:18.240000pt;}
.ws27{word-spacing:18.293333pt;}
.ws1d{word-spacing:18.928000pt;}
.ws1c{word-spacing:19.088000pt;}
.ws28{word-spacing:19.354667pt;}
.ws17{word-spacing:29.642667pt;}
.ws16{word-spacing:29.920000pt;}
.ws2b{word-spacing:30.293333pt;}
.ws23{word-spacing:42.293333pt;}
.ws25{word-spacing:42.346667pt;}
.ws18{word-spacing:42.826667pt;}
.ws24{word-spacing:43.200000pt;}
._d{margin-left:-11.680000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.262933pt;}
._c{width:2.257707pt;}
._0{width:4.966400pt;}
._a{width:31.104000pt;}
._b{width:42.192000pt;}
._8{width:54.400000pt;}
._9{width:66.986667pt;}
._7{width:180.480000pt;}
._5{width:746.858667pt;}
._6{width:752.138667pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:72.320000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:85.120000pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:3.200000pt;}
.y62{bottom:3.360000pt;}
.yfa{bottom:3.520000pt;}
.ycc{bottom:4.000000pt;}
.yc1{bottom:4.160000pt;}
.yc9{bottom:4.320000pt;}
.yb3{bottom:4.346667pt;}
.y104{bottom:4.480000pt;}
.yd1{bottom:6.080000pt;}
.yc{bottom:7.146667pt;}
.y6d{bottom:8.640000pt;}
.y130{bottom:8.826667pt;}
.yaf{bottom:10.720000pt;}
.yab{bottom:17.440000pt;}
.y70{bottom:18.880000pt;}
.yf7{bottom:19.386667pt;}
.y65{bottom:19.840000pt;}
.y5f{bottom:20.000000pt;}
.y63{bottom:20.026667pt;}
.y69{bottom:20.160000pt;}
.y61{bottom:20.186667pt;}
.ycb{bottom:20.800000pt;}
.yf9{bottom:21.920000pt;}
.y113{bottom:21.946667pt;}
.ya0{bottom:22.560000pt;}
.yb2{bottom:22.586667pt;}
.ya1{bottom:22.720000pt;}
.yd0{bottom:22.880000pt;}
.ya4{bottom:23.200000pt;}
.ya3{bottom:23.360000pt;}
.y7a{bottom:24.954667pt;}
.y78{bottom:25.114667pt;}
.y84{bottom:27.360000pt;}
.yae{bottom:27.520000pt;}
.y80{bottom:27.840000pt;}
.y7e{bottom:28.000000pt;}
.yac{bottom:34.240000pt;}
.yaa{bottom:34.400000pt;}
.y71{bottom:35.520000pt;}
.y6f{bottom:35.680000pt;}
.ya7{bottom:36.800000pt;}
.y68{bottom:36.960000pt;}
.y6c{bottom:37.120000pt;}
.ycf{bottom:39.840000pt;}
.y111{bottom:40.314667pt;}
.y77{bottom:41.914667pt;}
.y83{bottom:44.320000pt;}
.y7d{bottom:44.960000pt;}
.yf6{bottom:50.746667pt;}
.y1d{bottom:51.072000pt;}
.y12e{bottom:51.546667pt;}
.y87{bottom:53.600000pt;}
.y5e{bottom:53.760000pt;}
.y74{bottom:53.800000pt;}
.y67{bottom:53.920000pt;}
.y73{bottom:53.960000pt;}
.y79{bottom:58.554667pt;}
.y76{bottom:58.714667pt;}
.y85{bottom:60.960000pt;}
.y82{bottom:61.120000pt;}
.y7f{bottom:61.626667pt;}
.y7c{bottom:61.786667pt;}
.y1c{bottom:68.992000pt;}
.y15{bottom:69.080000pt;}
.yf4{bottom:72.186667pt;}
.y12c{bottom:72.986667pt;}
.y9e{bottom:73.760000pt;}
.y110{bottom:77.114667pt;}
.yed{bottom:86.693333pt;}
.y125{bottom:87.493333pt;}
.y14{bottom:88.706667pt;}
.y10f{bottom:95.514667pt;}
.ybf{bottom:100.352000pt;}
.y5c{bottom:100.832000pt;}
.y19{bottom:101.040000pt;}
.y10e{bottom:104.832000pt;}
.y12d{bottom:106.106667pt;}
.y123{bottom:109.952000pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y126{bottom:121.693333pt;}
.y9c{bottom:121.952000pt;}
.y133{bottom:124.352000pt;}
.y75{bottom:124.512000pt;}
.yee{bottom:124.706667pt;}
.ye6{bottom:126.112000pt;}
.y4c{bottom:128.352000pt;}
.y53{bottom:131.872000pt;}
.yf5{bottom:132.066667pt;}
.y14b{bottom:134.746667pt;}
.ybe{bottom:137.146667pt;}
.y5b{bottom:137.626667pt;}
.y16{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y17{bottom:140.293333pt;}
.y127{bottom:155.906667pt;}
.y9b{bottom:158.746667pt;}
.y122{bottom:161.146667pt;}
.y124{bottom:162.400000pt;}
.yef{bottom:162.746667pt;}
.ye5{bottom:162.906667pt;}
.y4b{bottom:165.146667pt;}
.y52{bottom:168.666667pt;}
.y14a{bottom:171.546667pt;}
.y12f{bottom:172.800000pt;}
.ybd{bottom:173.946667pt;}
.y5a{bottom:174.426667pt;}
.ye4{bottom:178.426667pt;}
.y128{bottom:190.106667pt;}
.y9a{bottom:195.546667pt;}
.y72{bottom:196.826667pt;}
.y132{bottom:197.946667pt;}
.yeb{bottom:199.706667pt;}
.yf0{bottom:200.773333pt;}
.y4a{bottom:201.946667pt;}
.y51{bottom:205.466667pt;}
.y149{bottom:208.346667pt;}
.ybc{bottom:210.746667pt;}
.y59{bottom:211.226667pt;}
.y10d{bottom:215.226667pt;}
.yea{bottom:218.106667pt;}
.y33{bottom:222.746667pt;}
.y129{bottom:224.320000pt;}
.ye3{bottom:228.986667pt;}
.y99{bottom:232.346667pt;}
.y10c{bottom:233.626667pt;}
.ye9{bottom:236.506667pt;}
.y131{bottom:237.146667pt;}
.y49{bottom:238.746667pt;}
.yf1{bottom:238.813333pt;}
.y50{bottom:242.266667pt;}
.y148{bottom:245.146667pt;}
.ye2{bottom:246.786667pt;}
.ybb{bottom:247.586667pt;}
.y58{bottom:248.066667pt;}
.y10b{bottom:252.066667pt;}
.ye8{bottom:254.946667pt;}
.y12a{bottom:258.533333pt;}
.y6e{bottom:264.386667pt;}
.ye1{bottom:264.706667pt;}
.y98{bottom:269.026667pt;}
.y10a{bottom:270.466667pt;}
.y48{bottom:275.586667pt;}
.yf2{bottom:276.866667pt;}
.y32{bottom:277.826667pt;}
.y4f{bottom:279.106667pt;}
.ye0{bottom:281.506667pt;}
.y147{bottom:281.986667pt;}
.yba{bottom:284.386667pt;}
.y57{bottom:284.866667pt;}
.ye7{bottom:287.586667pt;}
.yec{bottom:288.800000pt;}
.y109{bottom:288.866667pt;}
.y12b{bottom:292.733333pt;}
.ydf{bottom:299.266667pt;}
.y97{bottom:305.826667pt;}
.ya{bottom:306.382667pt;}
.y108{bottom:307.266667pt;}
.y47{bottom:312.386667pt;}
.y6b{bottom:313.666667pt;}
.y31{bottom:314.626667pt;}
.yf3{bottom:314.880000pt;}
.y4e{bottom:315.906667pt;}
.yde{bottom:316.226667pt;}
.y146{bottom:318.786667pt;}
.yb9{bottom:321.186667pt;}
.y56{bottom:321.666667pt;}
.y150{bottom:321.986667pt;}
.y107{bottom:325.666667pt;}
.ydd{bottom:333.986667pt;}
.y14f{bottom:341.826667pt;}
.y96{bottom:342.626667pt;}
.yd{bottom:343.546667pt;}
.y106{bottom:344.066667pt;}
.y154{bottom:346.946667pt;}
.y46{bottom:349.186667pt;}
.y4d{bottom:350.626667pt;}
.y30{bottom:351.426667pt;}
.y9{bottom:351.724000pt;}
.ydc{bottom:351.746667pt;}
.y145{bottom:355.586667pt;}
.yb8{bottom:357.986667pt;}
.y55{bottom:358.466667pt;}
.y14e{bottom:361.666667pt;}
.y105{bottom:362.466667pt;}
.y153{bottom:366.946667pt;}
.ydb{bottom:368.706667pt;}
.y95{bottom:379.426667pt;}
.y103{bottom:380.866667pt;}
.y66{bottom:381.186667pt;}
.y14d{bottom:381.506667pt;}
.y45{bottom:385.986667pt;}
.yda{bottom:386.466667pt;}
.yb{bottom:386.533333pt;}
.y152{bottom:386.786667pt;}
.y144{bottom:392.386667pt;}
.yb7{bottom:394.786667pt;}
.y54{bottom:395.266667pt;}
.y8{bottom:397.065333pt;}
.y102{bottom:400.226667pt;}
.y2f{bottom:401.666667pt;}
.yd9{bottom:404.226667pt;}
.y151{bottom:406.626667pt;}
.yb6{bottom:412.546667pt;}
.y94{bottom:416.226667pt;}
.y101{bottom:418.626667pt;}
.yd8{bottom:421.986667pt;}
.y44{bottom:422.786667pt;}
.y143{bottom:429.186667pt;}
.y11{bottom:433.826667pt;}
.y100{bottom:437.026667pt;}
.yd7{bottom:439.906667pt;}
.y7{bottom:442.406667pt;}
.yb5{bottom:446.946667pt;}
.y64{bottom:448.706667pt;}
.y2e{bottom:451.746667pt;}
.y93{bottom:453.026667pt;}
.yff{bottom:455.426667pt;}
.yd6{bottom:456.706667pt;}
.y43{bottom:459.586667pt;}
.yb4{bottom:462.466667pt;}
.y142{bottom:465.986667pt;}
.yd5{bottom:474.466667pt;}
.y12{bottom:478.426667pt;}
.y60{bottom:482.306667pt;}
.y6{bottom:487.748000pt;}
.y2d{bottom:488.546667pt;}
.y92{bottom:489.826667pt;}
.yd4{bottom:491.426667pt;}
.yfe{bottom:492.226667pt;}
.y121{bottom:495.106667pt;}
.yb1{bottom:496.226667pt;}
.y42{bottom:496.386667pt;}
.y141{bottom:502.653333pt;}
.yd3{bottom:509.213333pt;}
.yfd{bottom:510.653333pt;}
.y5d{bottom:516.733333pt;}
.y1a{bottom:524.093333pt;}
.y2c{bottom:525.373333pt;}
.y91{bottom:526.653333pt;}
.y120{bottom:531.933333pt;}
.yb0{bottom:532.573333pt;}
.y5{bottom:533.089333pt;}
.y41{bottom:533.213333pt;}
.y140{bottom:539.453333pt;}
.yd2{bottom:542.973333pt;}
.yfc{bottom:547.453333pt;}
.yce{bottom:559.773333pt;}
.ye{bottom:561.706667pt;}
.y2b{bottom:562.173333pt;}
.y90{bottom:563.453333pt;}
.yfb{bottom:565.853333pt;}
.yad{bottom:566.333333pt;}
.y11f{bottom:568.733333pt;}
.y40{bottom:570.013333pt;}
.y13f{bottom:576.253333pt;}
.yf8{bottom:584.253333pt;}
.y2a{bottom:598.973333pt;}
.y8f{bottom:600.253333pt;}
.y11e{bottom:605.533333pt;}
.y3f{bottom:606.813333pt;}
.ya9{bottom:607.453333pt;}
.y13e{bottom:613.053333pt;}
.ycd{bottom:613.213333pt;}
.y29{bottom:618.813333pt;}
.yca{bottom:630.973333pt;}
.y8e{bottom:637.053333pt;}
.y28{bottom:638.653333pt;}
.y11d{bottom:642.333333pt;}
.y3e{bottom:643.613333pt;}
.y13d{bottom:649.853333pt;}
.ya8{bottom:655.453333pt;}
.y27{bottom:658.493333pt;}
.yc8{bottom:665.373333pt;}
.y8d{bottom:673.853333pt;}
.y11c{bottom:679.133333pt;}
.y3d{bottom:680.413333pt;}
.yc7{bottom:683.293333pt;}
.y13c{bottom:686.653333pt;}
.y4{bottom:691.756000pt;}
.y26{bottom:695.293333pt;}
.yc6{bottom:700.093333pt;}
.ya6{bottom:706.013333pt;}
.y8c{bottom:710.653333pt;}
.y11b{bottom:715.933333pt;}
.y3c{bottom:717.213333pt;}
.yc5{bottom:717.853333pt;}
.y13b{bottom:723.453333pt;}
.y13{bottom:725.040000pt;}
.y8b{bottom:729.053333pt;}
.yc4{bottom:734.813333pt;}
.y14c{bottom:738.333333pt;}
.y25{bottom:739.933333pt;}
.y8a{bottom:746.813333pt;}
.yc3{bottom:752.613333pt;}
.y11a{bottom:752.773333pt;}
.y3b{bottom:754.053333pt;}
.ya5{bottom:756.613333pt;}
.y13a{bottom:760.293333pt;}
.y89{bottom:762.213333pt;}
.yc2{bottom:770.373333pt;}
.y88{bottom:775.333333pt;}
.y24{bottom:781.093333pt;}
.yc0{bottom:787.333333pt;}
.y119{bottom:789.573333pt;}
.ya2{bottom:790.373333pt;}
.y3a{bottom:790.853333pt;}
.y139{bottom:797.093333pt;}
.y3{bottom:805.081333pt;}
.y86{bottom:809.093333pt;}
.y23{bottom:820.933333pt;}
.y118{bottom:826.373333pt;}
.y39{bottom:827.653333pt;}
.y9d{bottom:827.973333pt;}
.y138{bottom:833.893333pt;}
.y2{bottom:857.092000pt;}
.y22{bottom:858.213333pt;}
.y117{bottom:863.173333pt;}
.y38{bottom:864.453333pt;}
.y137{bottom:870.693333pt;}
.y81{bottom:876.453333pt;}
.y9f{bottom:879.173333pt;}
.y1{bottom:879.748000pt;}
.y21{bottom:895.333333pt;}
.y116{bottom:899.973333pt;}
.y37{bottom:901.253333pt;}
.y136{bottom:907.493333pt;}
.y20{bottom:932.453333pt;}
.y115{bottom:936.773333pt;}
.y36{bottom:938.053333pt;}
.y135{bottom:944.293333pt;}
.y7b{bottom:951.173333pt;}
.y1f{bottom:969.573333pt;}
.y114{bottom:973.573333pt;}
.y35{bottom:974.853333pt;}
.y134{bottom:981.093333pt;}
.y112{bottom:989.093333pt;}
.y1e{bottom:1006.720000pt;}
.y34{bottom:1011.680000pt;}
.y1b{bottom:1060.480000pt;}
.h2c{height:16.800000pt;}
.h2a{height:16.960000pt;}
.h29{height:17.760000pt;}
.h2b{height:17.792000pt;}
.h2d{height:17.920000pt;}
.h37{height:18.400000pt;}
.h39{height:18.432000pt;}
.h3a{height:19.360000pt;}
.h4{height:29.333333pt;}
.h17{height:33.277500pt;}
.h15{height:33.600000pt;}
.h1e{height:33.760000pt;}
.h14{height:33.792000pt;}
.h2e{height:34.400000pt;}
.h22{height:36.320000pt;}
.h28{height:36.352000pt;}
.h36{height:36.800000pt;}
.h3c{height:36.832000pt;}
.h24{height:36.960000pt;}
.h27{height:41.120000pt;}
.h34{height:43.031250pt;}
.h11{height:44.562500pt;}
.he{height:45.156250pt;}
.hf{height:46.593750pt;}
.h20{height:47.621250pt;}
.h33{height:47.742188pt;}
.h32{height:47.869500pt;}
.h26{height:48.000000pt;}
.h30{height:48.530000pt;}
.h18{height:49.280000pt;}
.h1f{height:49.542500pt;}
.h23{height:50.560000pt;}
.h25{height:50.592000pt;}
.h3{height:51.916667pt;}
.h10{height:52.750000pt;}
.h13{height:52.785000pt;}
.h2f{height:53.440000pt;}
.h16{height:54.397500pt;}
.ha{height:57.375000pt;}
.hb{height:58.563750pt;}
.h2{height:59.333333pt;}
.h35{height:59.662500pt;}
.h5{height:60.213542pt;}
.h3e{height:62.400000pt;}
.h38{height:62.761250pt;}
.h1d{height:67.360000pt;}
.h12{height:67.520000pt;}
.h19{height:67.552000pt;}
.h3f{height:70.157500pt;}
.h1a{height:72.320000pt;}
.h1c{height:74.720000pt;}
.h1b{height:75.392000pt;}
.hc{height:76.308750pt;}
.hd{height:86.062500pt;}
.h21{height:87.520000pt;}
.h7{height:102.413333pt;}
.h3b{height:110.400000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h3d{height:310.880000pt;}
.h31{height:332.960000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:46.560000pt;}
.w1a{width:74.880000pt;}
.we{width:81.920000pt;}
.wc{width:82.080000pt;}
.w16{width:84.000000pt;}
.wd{width:89.952000pt;}
.w14{width:94.592000pt;}
.wf{width:97.632000pt;}
.w15{width:103.872000pt;}
.w13{width:132.320000pt;}
.wb{width:171.866667pt;}
.w12{width:187.866667pt;}
.w10{width:207.866667pt;}
.w11{width:226.906667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w19{width:504.480000pt;}
.w1c{width:505.920000pt;}
.w1b{width:528.893333pt;}
.w4{width:531.026667pt;}
.w18{width:553.053333pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x1d{left:7.200000pt;}
.x23{left:11.680000pt;}
.x2a{left:13.440000pt;}
.x2c{left:15.360000pt;}
.x3f{left:16.320000pt;}
.x21{left:17.600000pt;}
.x2d{left:19.200000pt;}
.x25{left:20.800000pt;}
.x2e{left:23.040000pt;}
.x1f{left:24.320000pt;}
.x3a{left:25.440000pt;}
.x2b{left:26.720000pt;}
.x29{left:28.160000pt;}
.x3c{left:29.120000pt;}
.x38{left:30.240000pt;}
.x27{left:32.000000pt;}
.x20{left:33.120000pt;}
.x3b{left:34.426667pt;}
.x2f{left:35.840000pt;}
.x26{left:37.600000pt;}
.x3e{left:38.560000pt;}
.x28{left:41.280000pt;}
.x39{left:45.920000pt;}
.x35{left:49.440000pt;}
.x3d{left:53.280000pt;}
.x32{left:55.840000pt;}
.x34{left:56.960000pt;}
.x42{left:63.453333pt;}
.x30{left:85.632000pt;}
.x45{left:95.072000pt;}
.xa{left:96.031988pt;}
.x40{left:97.152000pt;}
.x12{left:99.231988pt;}
.x11{left:109.951988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x44{left:115.013333pt;}
.x16{left:119.871988pt;}
.xe{left:121.631988pt;}
.x18{left:124.511988pt;}
.xc{left:127.871988pt;}
.x15{left:131.711988pt;}
.x17{left:133.786655pt;}
.x1c{left:135.226667pt;}
.x1b{left:144.026655pt;}
.x46{left:145.146655pt;}
.x5{left:154.760000pt;}
.x19{left:157.786655pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xd{left:217.786655pt;}
.x43{left:257.600000pt;}
.x13{left:287.586655pt;}
.x31{left:293.506667pt;}
.x1e{left:307.106667pt;}
.x14{left:320.226655pt;}
.x10{left:352.226655pt;}
.x1a{left:389.506655pt;}
.xb{left:393.186655pt;}
.xf{left:396.866655pt;}
.x36{left:425.826667pt;}
.x22{left:479.133333pt;}
.x33{left:520.413333pt;}
.x24{left:561.053333pt;}
.x37{left:624.293333pt;}
.x41{left:639.813322pt;}
}




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