
    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_ba1e666b54b63393a6d73c24.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e21a41cf5bb737676f8085d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_f71aa679f31c52cda585700f.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_ae5f04aaa388b78dc0b0645a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d55606a7fbacf2bbfedd93f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_61877521af5261fbfcd2ae8f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e7c4be25555e8a7b7896f34.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_5a4ca824e26066f8d1aaba6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-82.800000px;}
.v3{vertical-align:-75.600000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.053400px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.109200px;}
.ls21{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.192000px;}
.ls20{letter-spacing:0.245280px;}
.ls8{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.269280px;}
.lsb{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls25{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.600000px;}
.ls1d{letter-spacing:5.760000px;}
.lsd{letter-spacing:7.200000px;}
.ls17{letter-spacing:8.280000px;}
.ls1e{letter-spacing:11.520000px;}
.ls13{letter-spacing:14.400000px;}
.ls18{letter-spacing:18.720000px;}
.ls19{letter-spacing:27.336000px;}
.lse{letter-spacing:33.960000px;}
.lsf{letter-spacing:151.896000px;}
.ls1b{letter-spacing:153.336000px;}
.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;}
}
.wsd{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws10{word-spacing:-16.712400px;}
.wse{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.254600px;}
.wsf{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:35.976000px;}
._18{margin-left:-5.175719px;}
._e{margin-left:-4.032000px;}
._f{margin-left:-2.407800px;}
._5{margin-left:-1.088281px;}
._0{width:1.015800px;}
._1{width:2.107678px;}
._9{width:3.645358px;}
._7{width:4.661400px;}
._12{width:5.930642px;}
._10{width:7.920000px;}
._11{width:8.928000px;}
._14{width:9.941400px;}
._a{width:11.055600px;}
._b{width:12.355799px;}
._8{width:13.565400px;}
._17{width:15.421199px;}
._22{width:16.560000px;}
._6{width:17.580481px;}
._4{width:18.669360px;}
._1a{width:19.800000px;}
._1b{width:21.103438px;}
._1c{width:22.289885px;}
._15{width:23.328000px;}
._16{width:24.772200px;}
._29{width:25.928281px;}
._23{width:28.080000px;}
._24{width:29.160000px;}
._25{width:30.672000px;}
._26{width:32.124000px;}
._20{width:33.552000px;}
._21{width:34.604399px;}
._28{width:38.808000px;}
._27{width:41.605208px;}
._c{width:42.800520px;}
._d{width:43.910279px;}
._1e{width:53.976000px;}
._1d{width:59.879341px;}
._2a{width:98.565054px;}
._2{width:104.401138px;}
._3{width:896.037238px;}
._13{width:2044.356000px;}
._1f{width:2059.656000px;}
._19{width:2165.757599px;}
.fc6{color:rgb(131,60,11);}
.fc5{color:rgb(131,60,11);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs4{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.670000px;}
.y22{bottom:3.750000px;}
.y20{bottom:3.930000px;}
.y1e{bottom:4.110000px;}
.y24{bottom:4.830000px;}
.y26{bottom:12.750000px;}
.y2d{bottom:38.340000px;}
.y2{bottom:60.840000px;}
.y2c{bottom:79.380000px;}
.y1{bottom:80.640000px;}
.y17e{bottom:112.500000px;}
.yb2{bottom:112.860000px;}
.y55{bottom:114.480000px;}
.y97{bottom:114.660000px;}
.yc8{bottom:115.020000px;}
.ye8{bottom:115.380000px;}
.y74{bottom:120.600000px;}
.y105{bottom:127.260000px;}
.y129{bottom:130.320000px;}
.yb9{bottom:131.580000px;}
.y1c{bottom:132.840000px;}
.y1ad{bottom:136.440000px;}
.yf9{bottom:136.620000px;}
.y17d{bottom:136.800000px;}
.y192{bottom:137.160000px;}
.yb1{bottom:139.680000px;}
.y54{bottom:141.300000px;}
.y96{bottom:141.660000px;}
.yc7{bottom:142.020000px;}
.ye7{bottom:142.200000px;}
.y73{bottom:147.780000px;}
.y1b{bottom:150.840000px;}
.y132{bottom:153.000000px;}
.y104{bottom:154.470000px;}
.y128{bottom:157.170000px;}
.yb8{bottom:158.610000px;}
.y1ac{bottom:160.770000px;}
.y17c{bottom:161.490000px;}
.y191{bottom:161.850000px;}
.yf8{bottom:163.830000px;}
.yb0{bottom:166.710000px;}
.y53{bottom:168.330000px;}
.y95{bottom:168.510000px;}
.yc6{bottom:168.870000px;}
.ye6{bottom:169.230000px;}
.y156{bottom:174.450000px;}
.y72{bottom:174.810000px;}
.y1a{bottom:175.530000px;}
.y131{bottom:179.310000px;}
.y103{bottom:181.290000px;}
.y127{bottom:184.170000px;}
.y1ab{bottom:185.070000px;}
.y17b{bottom:185.790000px;}
.y190{bottom:186.150000px;}
.yf7{bottom:190.830000px;}
.yaf{bottom:193.530000px;}
.y52{bottom:195.150000px;}
.y94{bottom:195.510000px;}
.yc5{bottom:195.870000px;}
.ye5{bottom:196.050000px;}
.y155{bottom:198.750000px;}
.y71{bottom:201.630000px;}
.y19{bottom:202.710000px;}
.y130{bottom:203.970000px;}
.y102{bottom:208.290000px;}
.y1aa{bottom:209.730000px;}
.y17a{bottom:210.450000px;}
.y126{bottom:210.990000px;}
.yb7{bottom:212.610000px;}
.yf6{bottom:217.650000px;}
.yae{bottom:220.530000px;}
.y51{bottom:222.150000px;}
.y93{bottom:222.330000px;}
.yc4{bottom:222.690000px;}
.y154{bottom:222.870000px;}
.ye4{bottom:223.050000px;}
.y70{bottom:228.630000px;}
.y18{bottom:229.530000px;}
.y1a9{bottom:234.390000px;}
.y179{bottom:234.750000px;}
.y101{bottom:235.110000px;}
.y125{bottom:237.990000px;}
.yf5{bottom:244.650000px;}
.yad{bottom:247.350000px;}
.y153{bottom:247.530000px;}
.y50{bottom:248.970000px;}
.y92{bottom:249.330000px;}
.yc3{bottom:249.690000px;}
.ye3{bottom:249.870000px;}
.y6f{bottom:255.450000px;}
.y12f{bottom:255.810000px;}
.y17{bottom:256.530000px;}
.y1a8{bottom:258.510000px;}
.y178{bottom:259.410000px;}
.y100{bottom:262.110000px;}
.y124{bottom:264.810000px;}
.yb6{bottom:266.070000px;}
.yf4{bottom:271.470000px;}
.y152{bottom:271.830000px;}
.yac{bottom:274.170000px;}
.y4f{bottom:275.970000px;}
.y91{bottom:276.150000px;}
.yc2{bottom:276.510000px;}
.ye2{bottom:276.870000px;}
.y12e{bottom:280.470000px;}
.y6e{bottom:282.450000px;}
.y1a7{bottom:283.170000px;}
.y16{bottom:283.350000px;}
.y18f{bottom:283.530000px;}
.y177{bottom:283.890000px;}
.yff{bottom:289.290000px;}
.yb5{bottom:291.090000px;}
.y123{bottom:291.810000px;}
.y151{bottom:296.130000px;}
.yf3{bottom:298.470000px;}
.yab{bottom:301.170000px;}
.y4e{bottom:302.790000px;}
.y90{bottom:303.150000px;}
.yc1{bottom:303.510000px;}
.ye1{bottom:303.690000px;}
.y12d{bottom:306.030000px;}
.y1a6{bottom:307.470000px;}
.y18e{bottom:308.190000px;}
.y176{bottom:308.550000px;}
.y6d{bottom:309.270000px;}
.yfe{bottom:309.630000px;}
.y15{bottom:310.350000px;}
.y122{bottom:318.630000px;}
.y150{bottom:320.430000px;}
.yf2{bottom:325.290000px;}
.yaa{bottom:327.990000px;}
.yfd{bottom:328.710000px;}
.y4d{bottom:329.790000px;}
.y8f{bottom:329.970000px;}
.yc0{bottom:330.330000px;}
.ye0{bottom:330.690000px;}
.y1a5{bottom:332.130000px;}
.y12c{bottom:332.310000px;}
.y18d{bottom:332.490000px;}
.y175{bottom:332.850000px;}
.y6c{bottom:336.270000px;}
.y14{bottom:337.170000px;}
.y14f{bottom:345.090000px;}
.y121{bottom:345.630000px;}
.yfc{bottom:347.610000px;}
.yf1{bottom:352.290000px;}
.ya9{bottom:354.990000px;}
.y1a4{bottom:356.430000px;}
.y4c{bottom:356.610000px;}
.y8e{bottom:356.970000px;}
.y174{bottom:357.150000px;}
.ybf{bottom:357.330000px;}
.ydf{bottom:357.510000px;}
.y6b{bottom:363.090000px;}
.y13{bottom:364.170000px;}
.y14e{bottom:369.390000px;}
.y120{bottom:372.450000px;}
.yf0{bottom:379.110000px;}
.y1a3{bottom:381.090000px;}
.y18c{bottom:381.450000px;}
.ya8{bottom:381.810000px;}
.y4b{bottom:383.610000px;}
.y8d{bottom:383.790000px;}
.ybe{bottom:384.150000px;}
.yde{bottom:384.510000px;}
.yfb{bottom:385.590000px;}
.y12b{bottom:389.550000px;}
.y6a{bottom:390.090000px;}
.y12{bottom:390.990000px;}
.y14d{bottom:393.870000px;}
.y11f{bottom:399.450000px;}
.y1a2{bottom:405.435000px;}
.yef{bottom:406.155000px;}
.ya7{bottom:408.855000px;}
.y4a{bottom:410.475000px;}
.y8c{bottom:410.835000px;}
.ycc{bottom:411.195000px;}
.ybd{bottom:411.375000px;}
.ydd{bottom:411.735000px;}
.y69{bottom:416.955000px;}
.y14c{bottom:418.215000px;}
.y11e{bottom:426.315000px;}
.y1a1{bottom:430.095000px;}
.y18b{bottom:430.455000px;}
.y173{bottom:430.815000px;}
.yee{bottom:432.975000px;}
.ya6{bottom:435.675000px;}
.y12a{bottom:437.115000px;}
.y49{bottom:437.475000px;}
.y8b{bottom:437.655000px;}
.ycb{bottom:438.015000px;}
.ybc{bottom:438.375000px;}
.ydc{bottom:438.555000px;}
.y14b{bottom:442.875000px;}
.y68{bottom:443.955000px;}
.y11{bottom:445.215000px;}
.y11d{bottom:453.135000px;}
.y1a0{bottom:454.215000px;}
.y172{bottom:455.115000px;}
.yed{bottom:459.975000px;}
.ya5{bottom:462.675000px;}
.y48{bottom:464.295000px;}
.y9a{bottom:464.655000px;}
.y8a{bottom:464.835000px;}
.ybb{bottom:465.195000px;}
.ydb{bottom:465.555000px;}
.y14a{bottom:467.175000px;}
.y19f{bottom:478.875000px;}
.y171{bottom:479.595000px;}
.y11c{bottom:480.135000px;}
.yec{bottom:487.155000px;}
.ya4{bottom:489.495000px;}
.y47{bottom:491.475000px;}
.yca{bottom:491.835000px;}
.y89{bottom:492.195000px;}
.yda{bottom:492.375000px;}
.y19e{bottom:503.175000px;}
.y170{bottom:503.895000px;}
.y11b{bottom:506.955000px;}
.y10{bottom:509.655000px;}
.yeb{bottom:513.255000px;}
.y149{bottom:516.135000px;}
.ya3{bottom:516.495000px;}
.y67{bottom:518.475000px;}
.y46{bottom:518.655000px;}
.y88{bottom:519.015000px;}
.yd9{bottom:519.375000px;}
.y19d{bottom:527.835000px;}
.y16f{bottom:528.555000px;}
.yf{bottom:532.155000px;}
.y11a{bottom:533.955000px;}
.yea{bottom:538.275000px;}
.y148{bottom:540.795000px;}
.ya2{bottom:543.315000px;}
.y66{bottom:545.295000px;}
.y45{bottom:545.655000px;}
.y87{bottom:546.015000px;}
.yd8{bottom:546.195000px;}
.y19c{bottom:552.135000px;}
.y16e{bottom:552.855000px;}
.ye9{bottom:560.235000px;}
.y119{bottom:560.775000px;}
.y147{bottom:565.095000px;}
.ya1{bottom:570.315000px;}
.y65{bottom:572.295000px;}
.y44{bottom:572.475000px;}
.y86{bottom:572.835000px;}
.yd7{bottom:573.195000px;}
.y19b{bottom:576.435000px;}
.y18a{bottom:577.155000px;}
.ye{bottom:577.515000px;}
.y118{bottom:587.775000px;}
.y146{bottom:589.215000px;}
.ya0{bottom:597.135000px;}
.y64{bottom:599.115000px;}
.y43{bottom:599.475000px;}
.y85{bottom:599.835000px;}
.yd{bottom:600.015000px;}
.y19a{bottom:601.095000px;}
.y189{bottom:601.455000px;}
.y16d{bottom:602.175000px;}
.y145{bottom:613.875000px;}
.y117{bottom:614.595000px;}
.yc{bottom:622.515000px;}
.y9f{bottom:624.135000px;}
.y199{bottom:625.755000px;}
.y63{bottom:626.115000px;}
.y42{bottom:626.295000px;}
.y16c{bottom:626.475000px;}
.y84{bottom:626.655000px;}
.yd6{bottom:627.015000px;}
.yba{bottom:633.495000px;}
.y144{bottom:638.175000px;}
.y116{bottom:641.595000px;}
.yb{bottom:645.195000px;}
.y198{bottom:649.905000px;}
.y188{bottom:650.265000px;}
.y9e{bottom:650.985000px;}
.y16b{bottom:651.165000px;}
.y61{bottom:652.965000px;}
.y41{bottom:653.325000px;}
.y83{bottom:653.685000px;}
.yd5{bottom:653.865000px;}
.y62{bottom:659.805000px;}
.y143{bottom:662.505000px;}
.ya{bottom:667.725000px;}
.y115{bottom:668.445000px;}
.y187{bottom:674.565000px;}
.y16a{bottom:675.285000px;}
.y9d{bottom:677.985000px;}
.y60{bottom:679.965000px;}
.y40{bottom:680.145000px;}
.yb4{bottom:680.325000px;}
.y82{bottom:680.505000px;}
.yd4{bottom:680.865000px;}
.y142{bottom:686.805000px;}
.y9{bottom:690.225000px;}
.y114{bottom:695.445000px;}
.y197{bottom:698.865000px;}
.y186{bottom:699.225000px;}
.y169{bottom:699.585000px;}
.yb3{bottom:705.345000px;}
.y5f{bottom:706.785000px;}
.y3f{bottom:707.145000px;}
.y81{bottom:707.505000px;}
.yd3{bottom:707.685000px;}
.y8{bottom:708.945000px;}
.y141{bottom:711.465000px;}
.y113{bottom:722.265000px;}
.y185{bottom:723.525000px;}
.y168{bottom:724.245000px;}
.y9c{bottom:731.445000px;}
.y5e{bottom:733.785000px;}
.y3e{bottom:733.965000px;}
.y80{bottom:734.325000px;}
.yd2{bottom:734.685000px;}
.y140{bottom:735.765000px;}
.y184{bottom:748.185000px;}
.y167{bottom:748.545000px;}
.y112{bottom:749.265000px;}
.y9b{bottom:756.285000px;}
.y13f{bottom:759.885000px;}
.y5d{bottom:760.605000px;}
.y3d{bottom:760.965000px;}
.y7f{bottom:761.325000px;}
.yd1{bottom:761.505000px;}
.y183{bottom:772.485000px;}
.y166{bottom:772.845000px;}
.y7{bottom:773.385000px;}
.y111{bottom:776.085000px;}
.y13e{bottom:784.545000px;}
.y5c{bottom:787.605000px;}
.y3c{bottom:787.785000px;}
.y7e{bottom:788.145000px;}
.yd0{bottom:788.505000px;}
.y182{bottom:796.785000px;}
.y196{bottom:797.145000px;}
.y165{bottom:797.505000px;}
.y110{bottom:803.085000px;}
.y13d{bottom:808.845000px;}
.y5b{bottom:814.425000px;}
.y3b{bottom:814.785000px;}
.y7d{bottom:814.965000px;}
.ycf{bottom:815.325000px;}
.y181{bottom:821.445000px;}
.y164{bottom:821.805000px;}
.y10f{bottom:829.905000px;}
.y13c{bottom:833.505000px;}
.y5a{bottom:841.425000px;}
.y3a{bottom:841.605000px;}
.y7c{bottom:841.965000px;}
.yce{bottom:842.325000px;}
.y6{bottom:842.865000px;}
.y180{bottom:845.925000px;}
.y163{bottom:846.465000px;}
.y10e{bottom:856.905000px;}
.y13b{bottom:857.805000px;}
.y99{bottom:868.245000px;}
.y5{bottom:868.425000px;}
.y59{bottom:868.605000px;}
.y39{bottom:868.785000px;}
.ycd{bottom:869.145000px;}
.y195{bottom:870.225000px;}
.y162{bottom:870.585000px;}
.y13a{bottom:882.105000px;}
.y10d{bottom:883.725000px;}
.y161{bottom:894.930000px;}
.y58{bottom:895.470000px;}
.y7b{bottom:895.830000px;}
.y38{bottom:896.190000px;}
.y139{bottom:906.810000px;}
.y10c{bottom:910.770000px;}
.y4{bottom:918.870000px;}
.y194{bottom:919.230000px;}
.y160{bottom:919.590000px;}
.y98{bottom:922.470000px;}
.y57{bottom:922.650000px;}
.y36{bottom:923.010000px;}
.y37{bottom:929.850000px;}
.y10b{bottom:937.590000px;}
.y15f{bottom:943.890000px;}
.y7a{bottom:949.650000px;}
.y35{bottom:950.010000px;}
.y3{bottom:954.870000px;}
.y138{bottom:960.270000px;}
.y10a{bottom:964.590000px;}
.y17f{bottom:968.190000px;}
.y15e{bottom:968.550000px;}
.y79{bottom:976.470000px;}
.y34{bottom:976.830000px;}
.y109{bottom:991.410000px;}
.y15d{bottom:992.850000px;}
.y78{bottom:1003.470000px;}
.y33{bottom:1003.830000px;}
.y137{bottom:1012.470000px;}
.y15c{bottom:1017.150000px;}
.y108{bottom:1018.410000px;}
.y77{bottom:1030.290000px;}
.y32{bottom:1030.650000px;}
.yfa{bottom:1037.490000px;}
.y136{bottom:1038.570000px;}
.y15b{bottom:1041.630000px;}
.y107{bottom:1045.230000px;}
.y76{bottom:1057.290000px;}
.y31{bottom:1057.650000px;}
.y29{bottom:1062.360000px;}
.y27{bottom:1063.080000px;}
.y135{bottom:1063.230000px;}
.y193{bottom:1065.930000px;}
.y15a{bottom:1066.290000px;}
.y106{bottom:1072.230000px;}
.y23{bottom:1075.500000px;}
.y21{bottom:1077.120000px;}
.y75{bottom:1084.110000px;}
.y30{bottom:1084.470000px;}
.y25{bottom:1085.040000px;}
.y134{bottom:1087.890000px;}
.y159{bottom:1090.590000px;}
.y1f{bottom:1094.220000px;}
.yc9{bottom:1111.110000px;}
.y1d{bottom:1111.320000px;}
.y2f{bottom:1111.470000px;}
.y133{bottom:1112.730000px;}
.y1ae{bottom:1114.890000px;}
.y158{bottom:1115.250000px;}
.y2e{bottom:1138.290000px;}
.y157{bottom:1139.550000px;}
.y56{bottom:1166.040000px;}
.y2b{bottom:1167.840000px;}
.y2a{bottom:1192.320000px;}
.hf{height:13.320000px;}
.hb{height:18.000000px;}
.h9{height:18.180000px;}
.hc{height:21.780000px;}
.h10{height:45.714375px;}
.h11{height:47.344922px;}
.ha{height:58.621992px;}
.h2{height:58.651172px;}
.h18{height:59.383125px;}
.h5{height:60.226875px;}
.hd{height:62.820000px;}
.h7{height:64.546875px;}
.h17{height:64.978594px;}
.h15{height:65.010937px;}
.h14{height:66.757500px;}
.h13{height:70.628906px;}
.h4{height:70.664062px;}
.h6{height:72.562500px;}
.h8{height:74.704922px;}
.h16{height:74.824922px;}
.h12{height:74.953125px;}
.h3{height:96.508125px;}
.he{height:159.800977px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:6.120000px;}
.w3{width:21.600000px;}
.w4{width:129.240000px;}
.w7{width:165.780000px;}
.w2{width:185.400000px;}
.w6{width:191.520000px;}
.w8{width:194.040000px;}
.wa{width:892.439973px;}
.w9{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.956000px;}
.x6{left:108.036000px;}
.xd{left:112.140000px;}
.x3{left:122.256000px;}
.x7{left:135.036000px;}
.x12{left:149.795987px;}
.x1e{left:161.130000px;}
.x16{left:207.390000px;}
.x2{left:225.930000px;}
.xf{left:296.354987px;}
.x1a{left:313.274987px;}
.x5{left:318.135000px;}
.x4{left:366.735000px;}
.x17{left:367.815000px;}
.x18{left:369.254973px;}
.x8{left:378.360000px;}
.xa{left:397.440000px;}
.x15{left:435.855000px;}
.x9{left:439.920000px;}
.x1c{left:458.894973px;}
.x1b{left:465.374987px;}
.x1d{left:469.874987px;}
.xb{left:494.640000px;}
.x13{left:523.724973px;}
.x10{left:528.224973px;}
.x14{left:533.984987px;}
.x11{left:535.064987px;}
.xe{left:634.140000px;}
.xc{left:636.120000px;}
.x19{left:652.244987px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v3{vertical-align:-67.200000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.047467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.097067pt;}
.ls21{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.170667pt;}
.ls20{letter-spacing:0.218027pt;}
.ls8{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.239360pt;}
.lsb{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls25{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:5.120000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.360000pt;}
.ls1e{letter-spacing:10.240000pt;}
.ls13{letter-spacing:12.800000pt;}
.ls18{letter-spacing:16.640000pt;}
.ls19{letter-spacing:24.298667pt;}
.lse{letter-spacing:30.186667pt;}
.lsf{letter-spacing:135.018667pt;}
.ls1b{letter-spacing:136.298667pt;}
.wsd{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws10{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:31.978667pt;}
._18{margin-left:-4.600639pt;}
._e{margin-left:-3.584000pt;}
._f{margin-left:-2.140267pt;}
._5{margin-left:-0.967361pt;}
._0{width:0.902934pt;}
._1{width:1.873492pt;}
._9{width:3.240318pt;}
._7{width:4.143466pt;}
._12{width:5.271682pt;}
._10{width:7.040000pt;}
._11{width:7.936000pt;}
._14{width:8.836800pt;}
._a{width:9.827200pt;}
._b{width:10.982932pt;}
._8{width:12.058134pt;}
._17{width:13.707732pt;}
._22{width:14.720000pt;}
._6{width:15.627094pt;}
._4{width:16.594987pt;}
._1a{width:17.600000pt;}
._1b{width:18.758612pt;}
._1c{width:19.813231pt;}
._15{width:20.736000pt;}
._16{width:22.019733pt;}
._29{width:23.047361pt;}
._23{width:24.960000pt;}
._24{width:25.920000pt;}
._25{width:27.264000pt;}
._26{width:28.554667pt;}
._20{width:29.824000pt;}
._21{width:30.759466pt;}
._28{width:34.496000pt;}
._27{width:36.982407pt;}
._c{width:38.044906pt;}
._d{width:39.031359pt;}
._1e{width:47.978667pt;}
._1d{width:53.226081pt;}
._2a{width:87.613381pt;}
._2{width:92.801012pt;}
._3{width:796.477545pt;}
._13{width:1817.205333pt;}
._1f{width:1830.805333pt;}
._19{width:1925.117866pt;}
.fs5{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs4{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.373333pt;}
.y22{bottom:3.333333pt;}
.y20{bottom:3.493333pt;}
.y1e{bottom:3.653333pt;}
.y24{bottom:4.293333pt;}
.y26{bottom:11.333333pt;}
.y2d{bottom:34.080000pt;}
.y2{bottom:54.080000pt;}
.y2c{bottom:70.560000pt;}
.y1{bottom:71.680000pt;}
.y17e{bottom:100.000000pt;}
.yb2{bottom:100.320000pt;}
.y55{bottom:101.760000pt;}
.y97{bottom:101.920000pt;}
.yc8{bottom:102.240000pt;}
.ye8{bottom:102.560000pt;}
.y74{bottom:107.200000pt;}
.y105{bottom:113.120000pt;}
.y129{bottom:115.840000pt;}
.yb9{bottom:116.960000pt;}
.y1c{bottom:118.080000pt;}
.y1ad{bottom:121.280000pt;}
.yf9{bottom:121.440000pt;}
.y17d{bottom:121.600000pt;}
.y192{bottom:121.920000pt;}
.yb1{bottom:124.160000pt;}
.y54{bottom:125.600000pt;}
.y96{bottom:125.920000pt;}
.yc7{bottom:126.240000pt;}
.ye7{bottom:126.400000pt;}
.y73{bottom:131.360000pt;}
.y1b{bottom:134.080000pt;}
.y132{bottom:136.000000pt;}
.y104{bottom:137.306667pt;}
.y128{bottom:139.706667pt;}
.yb8{bottom:140.986667pt;}
.y1ac{bottom:142.906667pt;}
.y17c{bottom:143.546667pt;}
.y191{bottom:143.866667pt;}
.yf8{bottom:145.626667pt;}
.yb0{bottom:148.186667pt;}
.y53{bottom:149.626667pt;}
.y95{bottom:149.786667pt;}
.yc6{bottom:150.106667pt;}
.ye6{bottom:150.426667pt;}
.y156{bottom:155.066667pt;}
.y72{bottom:155.386667pt;}
.y1a{bottom:156.026667pt;}
.y131{bottom:159.386667pt;}
.y103{bottom:161.146667pt;}
.y127{bottom:163.706667pt;}
.y1ab{bottom:164.506667pt;}
.y17b{bottom:165.146667pt;}
.y190{bottom:165.466667pt;}
.yf7{bottom:169.626667pt;}
.yaf{bottom:172.026667pt;}
.y52{bottom:173.466667pt;}
.y94{bottom:173.786667pt;}
.yc5{bottom:174.106667pt;}
.ye5{bottom:174.266667pt;}
.y155{bottom:176.666667pt;}
.y71{bottom:179.226667pt;}
.y19{bottom:180.186667pt;}
.y130{bottom:181.306667pt;}
.y102{bottom:185.146667pt;}
.y1aa{bottom:186.426667pt;}
.y17a{bottom:187.066667pt;}
.y126{bottom:187.546667pt;}
.yb7{bottom:188.986667pt;}
.yf6{bottom:193.466667pt;}
.yae{bottom:196.026667pt;}
.y51{bottom:197.466667pt;}
.y93{bottom:197.626667pt;}
.yc4{bottom:197.946667pt;}
.y154{bottom:198.106667pt;}
.ye4{bottom:198.266667pt;}
.y70{bottom:203.226667pt;}
.y18{bottom:204.026667pt;}
.y1a9{bottom:208.346667pt;}
.y179{bottom:208.666667pt;}
.y101{bottom:208.986667pt;}
.y125{bottom:211.546667pt;}
.yf5{bottom:217.466667pt;}
.yad{bottom:219.866667pt;}
.y153{bottom:220.026667pt;}
.y50{bottom:221.306667pt;}
.y92{bottom:221.626667pt;}
.yc3{bottom:221.946667pt;}
.ye3{bottom:222.106667pt;}
.y6f{bottom:227.066667pt;}
.y12f{bottom:227.386667pt;}
.y17{bottom:228.026667pt;}
.y1a8{bottom:229.786667pt;}
.y178{bottom:230.586667pt;}
.y100{bottom:232.986667pt;}
.y124{bottom:235.386667pt;}
.yb6{bottom:236.506667pt;}
.yf4{bottom:241.306667pt;}
.y152{bottom:241.626667pt;}
.yac{bottom:243.706667pt;}
.y4f{bottom:245.306667pt;}
.y91{bottom:245.466667pt;}
.yc2{bottom:245.786667pt;}
.ye2{bottom:246.106667pt;}
.y12e{bottom:249.306667pt;}
.y6e{bottom:251.066667pt;}
.y1a7{bottom:251.706667pt;}
.y16{bottom:251.866667pt;}
.y18f{bottom:252.026667pt;}
.y177{bottom:252.346667pt;}
.yff{bottom:257.146667pt;}
.yb5{bottom:258.746667pt;}
.y123{bottom:259.386667pt;}
.y151{bottom:263.226667pt;}
.yf3{bottom:265.306667pt;}
.yab{bottom:267.706667pt;}
.y4e{bottom:269.146667pt;}
.y90{bottom:269.466667pt;}
.yc1{bottom:269.786667pt;}
.ye1{bottom:269.946667pt;}
.y12d{bottom:272.026667pt;}
.y1a6{bottom:273.306667pt;}
.y18e{bottom:273.946667pt;}
.y176{bottom:274.266667pt;}
.y6d{bottom:274.906667pt;}
.yfe{bottom:275.226667pt;}
.y15{bottom:275.866667pt;}
.y122{bottom:283.226667pt;}
.y150{bottom:284.826667pt;}
.yf2{bottom:289.146667pt;}
.yaa{bottom:291.546667pt;}
.yfd{bottom:292.186667pt;}
.y4d{bottom:293.146667pt;}
.y8f{bottom:293.306667pt;}
.yc0{bottom:293.626667pt;}
.ye0{bottom:293.946667pt;}
.y1a5{bottom:295.226667pt;}
.y12c{bottom:295.386667pt;}
.y18d{bottom:295.546667pt;}
.y175{bottom:295.866667pt;}
.y6c{bottom:298.906667pt;}
.y14{bottom:299.706667pt;}
.y14f{bottom:306.746667pt;}
.y121{bottom:307.226667pt;}
.yfc{bottom:308.986667pt;}
.yf1{bottom:313.146667pt;}
.ya9{bottom:315.546667pt;}
.y1a4{bottom:316.826667pt;}
.y4c{bottom:316.986667pt;}
.y8e{bottom:317.306667pt;}
.y174{bottom:317.466667pt;}
.ybf{bottom:317.626667pt;}
.ydf{bottom:317.786667pt;}
.y6b{bottom:322.746667pt;}
.y13{bottom:323.706667pt;}
.y14e{bottom:328.346667pt;}
.y120{bottom:331.066667pt;}
.yf0{bottom:336.986667pt;}
.y1a3{bottom:338.746667pt;}
.y18c{bottom:339.066667pt;}
.ya8{bottom:339.386667pt;}
.y4b{bottom:340.986667pt;}
.y8d{bottom:341.146667pt;}
.ybe{bottom:341.466667pt;}
.yde{bottom:341.786667pt;}
.yfb{bottom:342.746667pt;}
.y12b{bottom:346.266667pt;}
.y6a{bottom:346.746667pt;}
.y12{bottom:347.546667pt;}
.y14d{bottom:350.106667pt;}
.y11f{bottom:355.066667pt;}
.y1a2{bottom:360.386667pt;}
.yef{bottom:361.026667pt;}
.ya7{bottom:363.426667pt;}
.y4a{bottom:364.866667pt;}
.y8c{bottom:365.186667pt;}
.ycc{bottom:365.506667pt;}
.ybd{bottom:365.666667pt;}
.ydd{bottom:365.986667pt;}
.y69{bottom:370.626667pt;}
.y14c{bottom:371.746667pt;}
.y11e{bottom:378.946667pt;}
.y1a1{bottom:382.306667pt;}
.y18b{bottom:382.626667pt;}
.y173{bottom:382.946667pt;}
.yee{bottom:384.866667pt;}
.ya6{bottom:387.266667pt;}
.y12a{bottom:388.546667pt;}
.y49{bottom:388.866667pt;}
.y8b{bottom:389.026667pt;}
.ycb{bottom:389.346667pt;}
.ybc{bottom:389.666667pt;}
.ydc{bottom:389.826667pt;}
.y14b{bottom:393.666667pt;}
.y68{bottom:394.626667pt;}
.y11{bottom:395.746667pt;}
.y11d{bottom:402.786667pt;}
.y1a0{bottom:403.746667pt;}
.y172{bottom:404.546667pt;}
.yed{bottom:408.866667pt;}
.ya5{bottom:411.266667pt;}
.y48{bottom:412.706667pt;}
.y9a{bottom:413.026667pt;}
.y8a{bottom:413.186667pt;}
.ybb{bottom:413.506667pt;}
.ydb{bottom:413.826667pt;}
.y14a{bottom:415.266667pt;}
.y19f{bottom:425.666667pt;}
.y171{bottom:426.306667pt;}
.y11c{bottom:426.786667pt;}
.yec{bottom:433.026667pt;}
.ya4{bottom:435.106667pt;}
.y47{bottom:436.866667pt;}
.yca{bottom:437.186667pt;}
.y89{bottom:437.506667pt;}
.yda{bottom:437.666667pt;}
.y19e{bottom:447.266667pt;}
.y170{bottom:447.906667pt;}
.y11b{bottom:450.626667pt;}
.y10{bottom:453.026667pt;}
.yeb{bottom:456.226667pt;}
.y149{bottom:458.786667pt;}
.ya3{bottom:459.106667pt;}
.y67{bottom:460.866667pt;}
.y46{bottom:461.026667pt;}
.y88{bottom:461.346667pt;}
.yd9{bottom:461.666667pt;}
.y19d{bottom:469.186667pt;}
.y16f{bottom:469.826667pt;}
.yf{bottom:473.026667pt;}
.y11a{bottom:474.626667pt;}
.yea{bottom:478.466667pt;}
.y148{bottom:480.706667pt;}
.ya2{bottom:482.946667pt;}
.y66{bottom:484.706667pt;}
.y45{bottom:485.026667pt;}
.y87{bottom:485.346667pt;}
.yd8{bottom:485.506667pt;}
.y19c{bottom:490.786667pt;}
.y16e{bottom:491.426667pt;}
.ye9{bottom:497.986667pt;}
.y119{bottom:498.466667pt;}
.y147{bottom:502.306667pt;}
.ya1{bottom:506.946667pt;}
.y65{bottom:508.706667pt;}
.y44{bottom:508.866667pt;}
.y86{bottom:509.186667pt;}
.yd7{bottom:509.506667pt;}
.y19b{bottom:512.386667pt;}
.y18a{bottom:513.026667pt;}
.ye{bottom:513.346667pt;}
.y118{bottom:522.466667pt;}
.y146{bottom:523.746667pt;}
.ya0{bottom:530.786667pt;}
.y64{bottom:532.546667pt;}
.y43{bottom:532.866667pt;}
.y85{bottom:533.186667pt;}
.yd{bottom:533.346667pt;}
.y19a{bottom:534.306667pt;}
.y189{bottom:534.626667pt;}
.y16d{bottom:535.266667pt;}
.y145{bottom:545.666667pt;}
.y117{bottom:546.306667pt;}
.yc{bottom:553.346667pt;}
.y9f{bottom:554.786667pt;}
.y199{bottom:556.226667pt;}
.y63{bottom:556.546667pt;}
.y42{bottom:556.706667pt;}
.y16c{bottom:556.866667pt;}
.y84{bottom:557.026667pt;}
.yd6{bottom:557.346667pt;}
.yba{bottom:563.106667pt;}
.y144{bottom:567.266667pt;}
.y116{bottom:570.306667pt;}
.yb{bottom:573.506667pt;}
.y198{bottom:577.693333pt;}
.y188{bottom:578.013333pt;}
.y9e{bottom:578.653333pt;}
.y16b{bottom:578.813333pt;}
.y61{bottom:580.413333pt;}
.y41{bottom:580.733333pt;}
.y83{bottom:581.053333pt;}
.yd5{bottom:581.213333pt;}
.y62{bottom:586.493333pt;}
.y143{bottom:588.893333pt;}
.ya{bottom:593.533333pt;}
.y115{bottom:594.173333pt;}
.y187{bottom:599.613333pt;}
.y16a{bottom:600.253333pt;}
.y9d{bottom:602.653333pt;}
.y60{bottom:604.413333pt;}
.y40{bottom:604.573333pt;}
.yb4{bottom:604.733333pt;}
.y82{bottom:604.893333pt;}
.yd4{bottom:605.213333pt;}
.y142{bottom:610.493333pt;}
.y9{bottom:613.533333pt;}
.y114{bottom:618.173333pt;}
.y197{bottom:621.213333pt;}
.y186{bottom:621.533333pt;}
.y169{bottom:621.853333pt;}
.yb3{bottom:626.973333pt;}
.y5f{bottom:628.253333pt;}
.y3f{bottom:628.573333pt;}
.y81{bottom:628.893333pt;}
.yd3{bottom:629.053333pt;}
.y8{bottom:630.173333pt;}
.y141{bottom:632.413333pt;}
.y113{bottom:642.013333pt;}
.y185{bottom:643.133333pt;}
.y168{bottom:643.773333pt;}
.y9c{bottom:650.173333pt;}
.y5e{bottom:652.253333pt;}
.y3e{bottom:652.413333pt;}
.y80{bottom:652.733333pt;}
.yd2{bottom:653.053333pt;}
.y140{bottom:654.013333pt;}
.y184{bottom:665.053333pt;}
.y167{bottom:665.373333pt;}
.y112{bottom:666.013333pt;}
.y9b{bottom:672.253333pt;}
.y13f{bottom:675.453333pt;}
.y5d{bottom:676.093333pt;}
.y3d{bottom:676.413333pt;}
.y7f{bottom:676.733333pt;}
.yd1{bottom:676.893333pt;}
.y183{bottom:686.653333pt;}
.y166{bottom:686.973333pt;}
.y7{bottom:687.453333pt;}
.y111{bottom:689.853333pt;}
.y13e{bottom:697.373333pt;}
.y5c{bottom:700.093333pt;}
.y3c{bottom:700.253333pt;}
.y7e{bottom:700.573333pt;}
.yd0{bottom:700.893333pt;}
.y182{bottom:708.253333pt;}
.y196{bottom:708.573333pt;}
.y165{bottom:708.893333pt;}
.y110{bottom:713.853333pt;}
.y13d{bottom:718.973333pt;}
.y5b{bottom:723.933333pt;}
.y3b{bottom:724.253333pt;}
.y7d{bottom:724.413333pt;}
.ycf{bottom:724.733333pt;}
.y181{bottom:730.173333pt;}
.y164{bottom:730.493333pt;}
.y10f{bottom:737.693333pt;}
.y13c{bottom:740.893333pt;}
.y5a{bottom:747.933333pt;}
.y3a{bottom:748.093333pt;}
.y7c{bottom:748.413333pt;}
.yce{bottom:748.733333pt;}
.y6{bottom:749.213333pt;}
.y180{bottom:751.933333pt;}
.y163{bottom:752.413333pt;}
.y10e{bottom:761.693333pt;}
.y13b{bottom:762.493333pt;}
.y99{bottom:771.773333pt;}
.y5{bottom:771.933333pt;}
.y59{bottom:772.093333pt;}
.y39{bottom:772.253333pt;}
.ycd{bottom:772.573333pt;}
.y195{bottom:773.533333pt;}
.y162{bottom:773.853333pt;}
.y13a{bottom:784.093333pt;}
.y10d{bottom:785.533333pt;}
.y161{bottom:795.493333pt;}
.y58{bottom:795.973333pt;}
.y7b{bottom:796.293333pt;}
.y38{bottom:796.613333pt;}
.y139{bottom:806.053333pt;}
.y10c{bottom:809.573333pt;}
.y4{bottom:816.773333pt;}
.y194{bottom:817.093333pt;}
.y160{bottom:817.413333pt;}
.y98{bottom:819.973333pt;}
.y57{bottom:820.133333pt;}
.y36{bottom:820.453333pt;}
.y37{bottom:826.533333pt;}
.y10b{bottom:833.413333pt;}
.y15f{bottom:839.013333pt;}
.y7a{bottom:844.133333pt;}
.y35{bottom:844.453333pt;}
.y3{bottom:848.773333pt;}
.y138{bottom:853.573333pt;}
.y10a{bottom:857.413333pt;}
.y17f{bottom:860.613333pt;}
.y15e{bottom:860.933333pt;}
.y79{bottom:867.973333pt;}
.y34{bottom:868.293333pt;}
.y109{bottom:881.253333pt;}
.y15d{bottom:882.533333pt;}
.y78{bottom:891.973333pt;}
.y33{bottom:892.293333pt;}
.y137{bottom:899.973333pt;}
.y15c{bottom:904.133333pt;}
.y108{bottom:905.253333pt;}
.y77{bottom:915.813333pt;}
.y32{bottom:916.133333pt;}
.yfa{bottom:922.213333pt;}
.y136{bottom:923.173333pt;}
.y15b{bottom:925.893333pt;}
.y107{bottom:929.093333pt;}
.y76{bottom:939.813333pt;}
.y31{bottom:940.133333pt;}
.y29{bottom:944.320000pt;}
.y27{bottom:944.960000pt;}
.y135{bottom:945.093333pt;}
.y193{bottom:947.493333pt;}
.y15a{bottom:947.813333pt;}
.y106{bottom:953.093333pt;}
.y23{bottom:956.000000pt;}
.y21{bottom:957.440000pt;}
.y75{bottom:963.653333pt;}
.y30{bottom:963.973333pt;}
.y25{bottom:964.480000pt;}
.y134{bottom:967.013333pt;}
.y159{bottom:969.413333pt;}
.y1f{bottom:972.640000pt;}
.yc9{bottom:987.653333pt;}
.y1d{bottom:987.840000pt;}
.y2f{bottom:987.973333pt;}
.y133{bottom:989.093333pt;}
.y1ae{bottom:991.013333pt;}
.y158{bottom:991.333333pt;}
.y2e{bottom:1011.813333pt;}
.y157{bottom:1012.933333pt;}
.y56{bottom:1036.480000pt;}
.y2b{bottom:1038.080000pt;}
.y2a{bottom:1059.840000pt;}
.hf{height:11.840000pt;}
.hb{height:16.000000pt;}
.h9{height:16.160000pt;}
.hc{height:19.360000pt;}
.h10{height:40.635000pt;}
.h11{height:42.084375pt;}
.ha{height:52.108438pt;}
.h2{height:52.134375pt;}
.h18{height:52.785000pt;}
.h5{height:53.535000pt;}
.hd{height:55.840000pt;}
.h7{height:57.375000pt;}
.h17{height:57.758750pt;}
.h15{height:57.787500pt;}
.h14{height:59.340000pt;}
.h13{height:62.781250pt;}
.h4{height:62.812500pt;}
.h6{height:64.500000pt;}
.h8{height:66.404375pt;}
.h16{height:66.511042pt;}
.h12{height:66.625000pt;}
.h3{height:85.785000pt;}
.he{height:142.045312pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:5.440000pt;}
.w3{width:19.200000pt;}
.w4{width:114.880000pt;}
.w7{width:147.360000pt;}
.w2{width:164.800000pt;}
.w6{width:170.240000pt;}
.w8{width:172.480000pt;}
.wa{width:793.279976pt;}
.w9{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.072000pt;}
.x6{left:96.032000pt;}
.xd{left:99.680000pt;}
.x3{left:108.672000pt;}
.x7{left:120.032000pt;}
.x12{left:133.151988pt;}
.x1e{left:143.226667pt;}
.x16{left:184.346667pt;}
.x2{left:200.826667pt;}
.xf{left:263.426655pt;}
.x1a{left:278.466655pt;}
.x5{left:282.786667pt;}
.x4{left:325.986667pt;}
.x17{left:326.946667pt;}
.x18{left:328.226643pt;}
.x8{left:336.320000pt;}
.xa{left:353.280000pt;}
.x15{left:387.426667pt;}
.x9{left:391.040000pt;}
.x1c{left:407.906643pt;}
.x1b{left:413.666655pt;}
.x1d{left:417.666655pt;}
.xb{left:439.680000pt;}
.x13{left:465.533310pt;}
.x10{left:469.533310pt;}
.x14{left:474.653322pt;}
.x11{left:475.613322pt;}
.xe{left:563.680000pt;}
.xc{left:565.440000pt;}
.x19{left:579.773322pt;}
}




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