
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_01853e0365c0d740e791719d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_0ab0c375b22c3fa15fc6b4cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_8b2b17fafcd37f8581c37289.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_ff891e3b3e22b15a21f40c9f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ec44261ffb2f2b2953d1921.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_28d7b08fa1b12098925d0c39.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_dc5e6de3ec5e47fd0f78d0d2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1d{letter-spacing:-0.423600px;}
.ls1c{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.070800px;}
.ls10{letter-spacing:-0.063600px;}
.ls11{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls14{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.177000px;}
.ls13{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls18{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.407600px;}
.wse{word-spacing:-13.403400px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982800px;}
.ws12{word-spacing:-12.802800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-3.999599px;}
._8{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.090272px;}
._7{width:2.239367px;}
._2{width:4.208400px;}
._b{width:5.230320px;}
._4{width:6.252600px;}
._5{width:7.469492px;}
._d{width:8.507695px;}
._a{width:9.746160px;}
._3{width:11.122200px;}
._c{width:12.223320px;}
._6{width:14.488800px;}
._f{width:15.571080px;}
._10{width:16.893720px;}
._11{width:18.096120px;}
._12{width:19.298520px;}
._16{width:20.507880px;}
._28{width:21.756480px;}
._e{width:23.326560px;}
._13{width:26.272440px;}
._1f{width:27.534960px;}
._2c{width:28.549440px;}
._1d{width:33.366600px;}
._26{width:37.214280px;}
._27{width:38.513520px;}
._30{width:39.723240px;}
._22{width:44.067960px;}
._29{width:48.997800px;}
._1a{width:51.672960px;}
._31{width:53.229960px;}
._1e{width:59.759280px;}
._33{width:70.424280px;}
._37{width:71.963640px;}
._19{width:77.938920px;}
._18{width:78.997680px;}
._3a{width:80.584560px;}
._23{width:86.236440px;}
._14{width:88.737120px;}
._34{width:96.706440px;}
._2a{width:99.198000px;}
._2b{width:100.655400px;}
._2e{width:112.845240px;}
._2f{width:113.850960px;}
._20{width:145.610640px;}
._21{width:146.944920px;}
._38{width:150.481560px;}
._32{width:157.668120px;}
._1c{width:166.260360px;}
._1b{width:167.285400px;}
._2d{width:168.818880px;}
._3c{width:184.027320px;}
._3d{width:185.410080px;}
._35{width:239.190840px;}
._15{width:471.461040px;}
._17{width:625.368240px;}
._3b{width:649.028880px;}
._25{width:1026.969840px;}
._39{width:1085.019120px;}
._36{width:1602.138840px;}
._24{width:2555.761800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf7{bottom:114.240000px;}
.y81{bottom:116.130000px;}
.y196{bottom:116.940000px;}
.yca{bottom:119.550000px;}
.y14e{bottom:122.250000px;}
.y11d{bottom:122.340000px;}
.y9b{bottom:124.680000px;}
.yaa{bottom:127.740000px;}
.yf6{bottom:131.790000px;}
.y28{bottom:133.410000px;}
.y80{bottom:133.680000px;}
.y195{bottom:134.580000px;}
.yc9{bottom:137.100000px;}
.y57{bottom:137.910000px;}
.y11c{bottom:139.980000px;}
.y9a{bottom:142.320000px;}
.ya9{bottom:145.290000px;}
.y178{bottom:148.080000px;}
.yf5{bottom:149.430000px;}
.y27{bottom:150.960000px;}
.y7f{bottom:151.320000px;}
.y194{bottom:152.130000px;}
.yc8{bottom:154.740000px;}
.y56{bottom:155.460000px;}
.y11b{bottom:157.530000px;}
.y14d{bottom:157.800000px;}
.y99{bottom:159.870000px;}
.y1b6{bottom:160.320000px;}
.ya8{bottom:162.930000px;}
.y177{bottom:165.630000px;}
.yf4{bottom:166.980000px;}
.y26{bottom:168.600000px;}
.y7e{bottom:168.870000px;}
.yc7{bottom:172.290000px;}
.y55{bottom:173.100000px;}
.y11a{bottom:175.170000px;}
.y1a9{bottom:177.870000px;}
.y193{bottom:178.680000px;}
.ya7{bottom:180.480000px;}
.y176{bottom:183.270000px;}
.yf3{bottom:184.530000px;}
.y25{bottom:186.150000px;}
.yc6{bottom:189.930000px;}
.y54{bottom:190.650000px;}
.y119{bottom:192.720000px;}
.y14c{bottom:193.440000px;}
.y7d{bottom:195.510000px;}
.ya6{bottom:198.030000px;}
.y24{bottom:203.790000px;}
.y1a8{bottom:204.510000px;}
.y192{bottom:205.320000px;}
.yc5{bottom:207.480000px;}
.y175{bottom:210.180000px;}
.y118{bottom:210.270000px;}
.y14b{bottom:210.990000px;}
.yf2{bottom:211.170000px;}
.y98{bottom:213.060000px;}
.ya5{bottom:215.670000px;}
.y53{bottom:217.200000px;}
.y23{bottom:221.340000px;}
.y1a7{bottom:222.060000px;}
.y191{bottom:222.870000px;}
.yc4{bottom:225.030000px;}
.y117{bottom:227.910000px;}
.y14a{bottom:228.630000px;}
.y97{bottom:230.610000px;}
.y7c{bottom:231.060000px;}
.ya4{bottom:233.220000px;}
.y1b5{bottom:239.610000px;}
.y190{bottom:240.510000px;}
.yc3{bottom:242.670000px;}
.y116{bottom:245.460000px;}
.y149{bottom:246.180000px;}
.yf1{bottom:246.720000px;}
.y96{bottom:248.250000px;}
.y7b{bottom:248.610000px;}
.y52{bottom:252.840000px;}
.y22{bottom:256.890000px;}
.y1b4{bottom:257.250000px;}
.y174{bottom:258.420000px;}
.ya3{bottom:259.770000px;}
.yc2{bottom:260.220000px;}
.y115{bottom:263.100000px;}
.yf0{bottom:264.360000px;}
.y95{bottom:265.800000px;}
.y7a{bottom:266.250000px;}
.y18f{bottom:267.060000px;}
.y51{bottom:270.390000px;}
.y148{bottom:272.730000px;}
.y21{bottom:274.530000px;}
.y114{bottom:280.650000px;}
.yef{bottom:281.910000px;}
.y94{bottom:283.440000px;}
.y79{bottom:283.800000px;}
.y173{bottom:285.330000px;}
.y50{bottom:287.940000px;}
.y20{bottom:292.080000px;}
.ya2{bottom:292.440000px;}
.y18e{bottom:293.610000px;}
.yc1{bottom:295.860000px;}
.y113{bottom:298.200000px;}
.yee{bottom:299.460000px;}
.y78{bottom:301.440000px;}
.y4f{bottom:305.580000px;}
.y147{bottom:308.370000px;}
.y1f{bottom:309.630000px;}
.y1a6{bottom:310.440000px;}
.y18d{bottom:311.250000px;}
.yc0{bottom:313.410000px;}
.yed{bottom:317.100000px;}
.y77{bottom:318.990000px;}
.y172{bottom:322.680000px;}
.y112{bottom:325.110000px;}
.y146{bottom:325.920000px;}
.y1e{bottom:327.270000px;}
.ya1{bottom:327.990000px;}
.y18c{bottom:328.800000px;}
.ybf{bottom:330.960000px;}
.y4e{bottom:332.130000px;}
.yec{bottom:334.650000px;}
.y76{bottom:336.540000px;}
.y145{bottom:343.470000px;}
.ya0{bottom:345.540000px;}
.ybe{bottom:348.600000px;}
.yeb{bottom:352.290000px;}
.y1d{bottom:353.820000px;}
.y93{bottom:354.180000px;}
.y1a5{bottom:354.540000px;}
.y18b{bottom:355.440000px;}
.y144{bottom:361.110000px;}
.y75{bottom:363.180000px;}
.ybd{bottom:366.150000px;}
.y4d{bottom:368.040000px;}
.yea{bottom:369.840000px;}
.y171{bottom:370.920000px;}
.y92{bottom:371.730000px;}
.y18a{bottom:372.990000px;}
.y111{bottom:373.440000px;}
.y143{bottom:378.660000px;}
.y9f{bottom:380.730000px;}
.y1a4{bottom:381.180000px;}
.ybc{bottom:383.790000px;}
.ye9{bottom:387.390000px;}
.y170{bottom:388.560000px;}
.y91{bottom:389.370000px;}
.y1c{bottom:389.730000px;}
.y189{bottom:390.540000px;}
.y110{bottom:390.990000px;}
.y142{bottom:396.300000px;}
.y9e{bottom:398.370000px;}
.y74{bottom:398.730000px;}
.ye8{bottom:405.030000px;}
.y16f{bottom:406.110000px;}
.y90{bottom:406.920000px;}
.y10f{bottom:408.540000px;}
.ybb{bottom:410.340000px;}
.y141{bottom:413.850000px;}
.y4c{bottom:416.370000px;}
.y188{bottom:417.180000px;}
.y16e{bottom:423.660000px;}
.y1b3{bottom:424.920000px;}
.y1a3{bottom:425.370000px;}
.y10e{bottom:426.180000px;}
.y140{bottom:431.400000px;}
.ye7{bottom:431.580000px;}
.y8f{bottom:433.470000px;}
.y4b{bottom:433.920000px;}
.y187{bottom:434.730000px;}
.y1b{bottom:438.060000px;}
.y16d{bottom:441.300000px;}
.y10d{bottom:443.730000px;}
.yba{bottom:445.890000px;}
.y13f{bottom:449.040000px;}
.y4a{bottom:451.470000px;}
.y1a2{bottom:451.920000px;}
.y186{bottom:452.370000px;}
.y1a{bottom:455.970000px;}
.y16c{bottom:458.850000px;}
.y10c{bottom:461.370000px;}
.yb9{bottom:463.530000px;}
.y13e{bottom:466.590000px;}
.ye6{bottom:467.220000px;}
.y49{bottom:469.110000px;}
.y1a1{bottom:469.470000px;}
.y185{bottom:469.950000px;}
.y16b{bottom:476.520000px;}
.y10b{bottom:478.950000px;}
.yb8{bottom:481.110000px;}
.ye5{bottom:484.800000px;}
.y73{bottom:486.690000px;}
.y1a0{bottom:487.140000px;}
.y19{bottom:492.990000px;}
.y10a{bottom:496.500000px;}
.yb7{bottom:498.750000px;}
.y13d{bottom:502.260000px;}
.ye4{bottom:502.350000px;}
.y16a{bottom:503.070000px;}
.y72{bottom:504.330000px;}
.y48{bottom:504.690000px;}
.y18{bottom:510.540000px;}
.y1b2{bottom:513.330000px;}
.y19f{bottom:513.690000px;}
.y109{bottom:514.140000px;}
.yb6{bottom:516.300000px;}
.y13c{bottom:519.810000px;}
.ye3{bottom:519.990000px;}
.y71{bottom:521.880000px;}
.y47{bottom:522.330000px;}
.y1bd{bottom:523.140000px;}
.y17{bottom:528.180000px;}
.y1b1{bottom:530.880000px;}
.y19e{bottom:531.330000px;}
.y108{bottom:531.690000px;}
.yb5{bottom:533.850000px;}
.y13b{bottom:537.360000px;}
.ye2{bottom:537.540000px;}
.y169{bottom:538.620000px;}
.y8e{bottom:539.430000px;}
.y46{bottom:539.880000px;}
.y1bc{bottom:540.690000px;}
.y16{bottom:545.730000px;}
.y70{bottom:548.430000px;}
.y107{bottom:549.330000px;}
.yb4{bottom:551.490000px;}
.y13a{bottom:554.910000px;}
.y168{bottom:556.260000px;}
.y45{bottom:557.430000px;}
.y19d{bottom:557.880000px;}
.y184{bottom:558.330000px;}
.y15{bottom:563.370000px;}
.ye1{bottom:564.090000px;}
.y8d{bottom:566.070000px;}
.y106{bottom:566.880000px;}
.y139{bottom:573.360000px;}
.y167{bottom:573.810000px;}
.y44{bottom:575.070000px;}
.y19c{bottom:575.430000px;}
.y183{bottom:575.880000px;}
.yb3{bottom:578.040000px;}
.y14{bottom:580.920000px;}
.y6f{bottom:584.070000px;}
.y138{bottom:591.000000px;}
.y166{bottom:591.450000px;}
.y43{bottom:592.620000px;}
.y105{bottom:593.430000px;}
.y13{bottom:598.470000px;}
.ye0{bottom:600.000000px;}
.y6e{bottom:601.620000px;}
.y19b{bottom:602.070000px;}
.y137{bottom:608.550000px;}
.y165{bottom:609.000000px;}
.y42{bottom:610.260000px;}
.yb2{bottom:610.620000px;}
.y182{bottom:611.070000px;}
.y12{bottom:616.110000px;}
.y6d{bottom:619.260000px;}
.y1bb{bottom:620.070000px;}
.y136{bottom:626.190000px;}
.y164{bottom:626.550000px;}
.y41{bottom:627.810000px;}
.y181{bottom:628.620000px;}
.y104{bottom:629.070000px;}
.y11{bottom:633.660000px;}
.y8c{bottom:636.810000px;}
.y1ba{bottom:637.620000px;}
.y135{bottom:643.740000px;}
.y163{bottom:644.190000px;}
.y6c{bottom:645.810000px;}
.yb1{bottom:646.260000px;}
.y103{bottom:646.620000px;}
.ydf{bottom:648.330000px;}
.y10{bottom:651.210000px;}
.y40{bottom:654.360000px;}
.y180{bottom:655.260000px;}
.y134{bottom:661.290000px;}
.yb0{bottom:663.810000px;}
.y102{bottom:664.260000px;}
.yde{bottom:665.880000px;}
.yf{bottom:668.850000px;}
.y162{bottom:670.740000px;}
.y8b{bottom:672.000000px;}
.y17f{bottom:672.810000px;}
.y133{bottom:679.740000px;}
.y6b{bottom:681.360000px;}
.y101{bottom:681.810000px;}
.ydd{bottom:683.520000px;}
.ye{bottom:686.400000px;}
.y8a{bottom:689.550000px;}
.y3f{bottom:690.000000px;}
.y17e{bottom:690.360000px;}
.y132{bottom:697.290000px;}
.y9d{bottom:698.550000px;}
.y6a{bottom:699.000000px;}
.y100{bottom:699.360000px;}
.ydc{bottom:701.070000px;}
.yd{bottom:704.040000px;}
.y161{bottom:706.380000px;}
.y3e{bottom:707.550000px;}
.y17d{bottom:708.000000px;}
.y131{bottom:714.930000px;}
.y89{bottom:716.190000px;}
.y69{bottom:716.550000px;}
.yff{bottom:717.000000px;}
.ydb{bottom:718.620000px;}
.yc{bottom:721.590000px;}
.y160{bottom:723.930000px;}
.y3d{bottom:725.190000px;}
.y19a{bottom:725.550000px;}
.y130{bottom:732.480000px;}
.y1b0{bottom:733.740000px;}
.y68{bottom:734.190000px;}
.yfe{bottom:734.550000px;}
.yda{bottom:736.260000px;}
.yb{bottom:739.140000px;}
.y15f{bottom:741.480000px;}
.y3c{bottom:742.740000px;}
.y12f{bottom:750.930000px;}
.y67{bottom:751.740000px;}
.yaf{bottom:752.190000px;}
.yd9{bottom:753.810000px;}
.ya{bottom:756.780000px;}
.y15e{bottom:759.120000px;}
.y1af{bottom:760.290000px;}
.y12e{bottom:768.480000px;}
.y66{bottom:769.290000px;}
.yae{bottom:769.740000px;}
.y15d{bottom:776.670000px;}
.y1ae{bottom:777.930000px;}
.y3b{bottom:778.290000px;}
.y17c{bottom:778.740000px;}
.yd8{bottom:780.450000px;}
.y9{bottom:783.690000px;}
.y12d{bottom:786.120000px;}
.y88{bottom:786.930000px;}
.yad{bottom:787.290000px;}
.y15c{bottom:794.310000px;}
.y1ad{bottom:795.480000px;}
.y3a{bottom:795.930000px;}
.yfd{bottom:796.290000px;}
.y12c{bottom:803.670000px;}
.y87{bottom:804.480000px;}
.y65{bottom:804.930000px;}
.y15b{bottom:811.860000px;}
.y1ac{bottom:813.030000px;}
.y39{bottom:813.480000px;}
.yfc{bottom:813.930000px;}
.yd7{bottom:816.000000px;}
.y86{bottom:822.030000px;}
.y12b{bottom:822.120000px;}
.y64{bottom:822.480000px;}
.y15a{bottom:829.410000px;}
.y8{bottom:830.490000px;}
.y38{bottom:831.030000px;}
.y1b9{bottom:831.480000px;}
.yd6{bottom:833.550000px;}
.y12a{bottom:839.670000px;}
.y63{bottom:840.030000px;}
.y17b{bottom:840.480000px;}
.y37{bottom:848.670000px;}
.y199{bottom:849.030000px;}
.yfb{bottom:849.480000px;}
.yd5{bottom:852.000000px;}
.y159{bottom:856.050000px;}
.y129{bottom:857.220000px;}
.y62{bottom:857.670000px;}
.y17a{bottom:858.030000px;}
.y7{bottom:866.040000px;}
.y36{bottom:866.220000px;}
.y198{bottom:866.670000px;}
.yfa{bottom:867.030000px;}
.yd4{bottom:869.550000px;}
.y128{bottom:874.770000px;}
.y61{bottom:875.220000px;}
.y179{bottom:875.670000px;}
.y1ab{bottom:883.860000px;}
.y85{bottom:884.220000px;}
.yf9{bottom:884.670000px;}
.yd3{bottom:888.000000px;}
.y158{bottom:891.960000px;}
.y60{bottom:892.860000px;}
.y1b8{bottom:893.220000px;}
.y6{bottom:901.860000px;}
.yf8{bottom:902.220000px;}
.y1aa{bottom:910.410000px;}
.y197{bottom:910.860000px;}
.yd2{bottom:915.450000px;}
.y35{bottom:919.410000px;}
.yac{bottom:919.860000px;}
.y34{bottom:936.960000px;}
.yab{bottom:937.410000px;}
.y5{bottom:937.860000px;}
.y157{bottom:940.200000px;}
.y84{bottom:945.960000px;}
.yd1{bottom:951.270000px;}
.y33{bottom:954.600000px;}
.y5f{bottom:954.960000px;}
.y127{bottom:955.410000px;}
.y156{bottom:957.750000px;}
.y9c{bottom:963.600000px;}
.y1b7{bottom:963.960000px;}
.y5e{bottom:972.600000px;}
.y126{bottom:972.960000px;}
.y4{bottom:973.950000px;}
.y32{bottom:981.150000px;}
.y83{bottom:981.600000px;}
.y5d{bottom:990.150000px;}
.y125{bottom:990.600000px;}
.y155{bottom:993.300000px;}
.y82{bottom:999.150000px;}
.yd0{bottom:999.600000px;}
.y5c{bottom:1007.790000px;}
.y124{bottom:1008.150000px;}
.y154{bottom:1011.780000px;}
.y3{bottom:1012.230000px;}
.y31{bottom:1016.820000px;}
.ycf{bottom:1017.180000px;}
.y5b{bottom:1025.370000px;}
.y123{bottom:1025.820000px;}
.y153{bottom:1030.230000px;}
.y30{bottom:1034.370000px;}
.yce{bottom:1034.820000px;}
.y5a{bottom:1042.920000px;}
.y122{bottom:1043.370000px;}
.y152{bottom:1048.590000px;}
.y2f{bottom:1051.920000px;}
.ycd{bottom:1052.370000px;}
.y59{bottom:1060.560000px;}
.y121{bottom:1060.920000px;}
.y151{bottom:1067.040000px;}
.y2e{bottom:1069.560000px;}
.ycc{bottom:1069.920000px;}
.y120{bottom:1078.560000px;}
.y150{bottom:1085.400000px;}
.y58{bottom:1087.110000px;}
.ycb{bottom:1087.560000px;}
.y11f{bottom:1096.110000px;}
.y14f{bottom:1103.850000px;}
.y2d{bottom:1105.110000px;}
.y11e{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h6{height:52.311445px;}
.h5{height:55.779258px;}
.hc{height:57.323320px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x7{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x6{left:356.879987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.376533pt;}
.ls1c{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.062933pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls14{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.157333pt;}
.ls13{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls18{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.917867pt;}
.wse{word-spacing:-11.914133pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws12{word-spacing:-11.380267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-3.555199pt;}
._8{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969131pt;}
._7{width:1.990548pt;}
._2{width:3.740800pt;}
._b{width:4.649173pt;}
._4{width:5.557867pt;}
._5{width:6.639549pt;}
._d{width:7.562396pt;}
._a{width:8.663253pt;}
._3{width:9.886400pt;}
._c{width:10.865173pt;}
._6{width:12.878933pt;}
._f{width:13.840960pt;}
._10{width:15.016640pt;}
._11{width:16.085440pt;}
._12{width:17.154240pt;}
._16{width:18.229227pt;}
._28{width:19.339093pt;}
._e{width:20.734720pt;}
._13{width:23.353280pt;}
._1f{width:24.475520pt;}
._2c{width:25.377280pt;}
._1d{width:29.659200pt;}
._26{width:33.079360pt;}
._27{width:34.234240pt;}
._30{width:35.309547pt;}
._22{width:39.171520pt;}
._29{width:43.553600pt;}
._1a{width:45.931520pt;}
._31{width:47.315520pt;}
._1e{width:53.119360pt;}
._33{width:62.599360pt;}
._37{width:63.967680pt;}
._19{width:69.279040pt;}
._18{width:70.220160pt;}
._3a{width:71.630720pt;}
._23{width:76.654613pt;}
._14{width:78.877440pt;}
._34{width:85.961280pt;}
._2a{width:88.176000pt;}
._2b{width:89.471467pt;}
._2e{width:100.306880pt;}
._2f{width:101.200853pt;}
._20{width:129.431680pt;}
._21{width:130.617707pt;}
._38{width:133.761387pt;}
._32{width:140.149440pt;}
._1c{width:147.786987pt;}
._1b{width:148.698133pt;}
._2d{width:150.061227pt;}
._3c{width:163.579840pt;}
._3d{width:164.808960pt;}
._35{width:212.614080pt;}
._15{width:419.076480pt;}
._17{width:555.882880pt;}
._3b{width:576.914560pt;}
._25{width:912.862080pt;}
._39{width:964.461440pt;}
._36{width:1424.123413pt;}
._24{width:2271.788267pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf7{bottom:101.546667pt;}
.y81{bottom:103.226667pt;}
.y196{bottom:103.946667pt;}
.yca{bottom:106.266667pt;}
.y14e{bottom:108.666667pt;}
.y11d{bottom:108.746667pt;}
.y9b{bottom:110.826667pt;}
.yaa{bottom:113.546667pt;}
.yf6{bottom:117.146667pt;}
.y28{bottom:118.586667pt;}
.y80{bottom:118.826667pt;}
.y195{bottom:119.626667pt;}
.yc9{bottom:121.866667pt;}
.y57{bottom:122.586667pt;}
.y11c{bottom:124.426667pt;}
.y9a{bottom:126.506667pt;}
.ya9{bottom:129.146667pt;}
.y178{bottom:131.626667pt;}
.yf5{bottom:132.826667pt;}
.y27{bottom:134.186667pt;}
.y7f{bottom:134.506667pt;}
.y194{bottom:135.226667pt;}
.yc8{bottom:137.546667pt;}
.y56{bottom:138.186667pt;}
.y11b{bottom:140.026667pt;}
.y14d{bottom:140.266667pt;}
.y99{bottom:142.106667pt;}
.y1b6{bottom:142.506667pt;}
.ya8{bottom:144.826667pt;}
.y177{bottom:147.226667pt;}
.yf4{bottom:148.426667pt;}
.y26{bottom:149.866667pt;}
.y7e{bottom:150.106667pt;}
.yc7{bottom:153.146667pt;}
.y55{bottom:153.866667pt;}
.y11a{bottom:155.706667pt;}
.y1a9{bottom:158.106667pt;}
.y193{bottom:158.826667pt;}
.ya7{bottom:160.426667pt;}
.y176{bottom:162.906667pt;}
.yf3{bottom:164.026667pt;}
.y25{bottom:165.466667pt;}
.yc6{bottom:168.826667pt;}
.y54{bottom:169.466667pt;}
.y119{bottom:171.306667pt;}
.y14c{bottom:171.946667pt;}
.y7d{bottom:173.786667pt;}
.ya6{bottom:176.026667pt;}
.y24{bottom:181.146667pt;}
.y1a8{bottom:181.786667pt;}
.y192{bottom:182.506667pt;}
.yc5{bottom:184.426667pt;}
.y175{bottom:186.826667pt;}
.y118{bottom:186.906667pt;}
.y14b{bottom:187.546667pt;}
.yf2{bottom:187.706667pt;}
.y98{bottom:189.386667pt;}
.ya5{bottom:191.706667pt;}
.y53{bottom:193.066667pt;}
.y23{bottom:196.746667pt;}
.y1a7{bottom:197.386667pt;}
.y191{bottom:198.106667pt;}
.yc4{bottom:200.026667pt;}
.y117{bottom:202.586667pt;}
.y14a{bottom:203.226667pt;}
.y97{bottom:204.986667pt;}
.y7c{bottom:205.386667pt;}
.ya4{bottom:207.306667pt;}
.y1b5{bottom:212.986667pt;}
.y190{bottom:213.786667pt;}
.yc3{bottom:215.706667pt;}
.y116{bottom:218.186667pt;}
.y149{bottom:218.826667pt;}
.yf1{bottom:219.306667pt;}
.y96{bottom:220.666667pt;}
.y7b{bottom:220.986667pt;}
.y52{bottom:224.746667pt;}
.y22{bottom:228.346667pt;}
.y1b4{bottom:228.666667pt;}
.y174{bottom:229.706667pt;}
.ya3{bottom:230.906667pt;}
.yc2{bottom:231.306667pt;}
.y115{bottom:233.866667pt;}
.yf0{bottom:234.986667pt;}
.y95{bottom:236.266667pt;}
.y7a{bottom:236.666667pt;}
.y18f{bottom:237.386667pt;}
.y51{bottom:240.346667pt;}
.y148{bottom:242.426667pt;}
.y21{bottom:244.026667pt;}
.y114{bottom:249.466667pt;}
.yef{bottom:250.586667pt;}
.y94{bottom:251.946667pt;}
.y79{bottom:252.266667pt;}
.y173{bottom:253.626667pt;}
.y50{bottom:255.946667pt;}
.y20{bottom:259.626667pt;}
.ya2{bottom:259.946667pt;}
.y18e{bottom:260.986667pt;}
.yc1{bottom:262.986667pt;}
.y113{bottom:265.066667pt;}
.yee{bottom:266.186667pt;}
.y78{bottom:267.946667pt;}
.y4f{bottom:271.626667pt;}
.y147{bottom:274.106667pt;}
.y1f{bottom:275.226667pt;}
.y1a6{bottom:275.946667pt;}
.y18d{bottom:276.666667pt;}
.yc0{bottom:278.586667pt;}
.yed{bottom:281.866667pt;}
.y77{bottom:283.546667pt;}
.y172{bottom:286.826667pt;}
.y112{bottom:288.986667pt;}
.y146{bottom:289.706667pt;}
.y1e{bottom:290.906667pt;}
.ya1{bottom:291.546667pt;}
.y18c{bottom:292.266667pt;}
.ybf{bottom:294.186667pt;}
.y4e{bottom:295.226667pt;}
.yec{bottom:297.466667pt;}
.y76{bottom:299.146667pt;}
.y145{bottom:305.306667pt;}
.ya0{bottom:307.146667pt;}
.ybe{bottom:309.866667pt;}
.yeb{bottom:313.146667pt;}
.y1d{bottom:314.506667pt;}
.y93{bottom:314.826667pt;}
.y1a5{bottom:315.146667pt;}
.y18b{bottom:315.946667pt;}
.y144{bottom:320.986667pt;}
.y75{bottom:322.826667pt;}
.ybd{bottom:325.466667pt;}
.y4d{bottom:327.146667pt;}
.yea{bottom:328.746667pt;}
.y171{bottom:329.706667pt;}
.y92{bottom:330.426667pt;}
.y18a{bottom:331.546667pt;}
.y111{bottom:331.946667pt;}
.y143{bottom:336.586667pt;}
.y9f{bottom:338.426667pt;}
.y1a4{bottom:338.826667pt;}
.ybc{bottom:341.146667pt;}
.ye9{bottom:344.346667pt;}
.y170{bottom:345.386667pt;}
.y91{bottom:346.106667pt;}
.y1c{bottom:346.426667pt;}
.y189{bottom:347.146667pt;}
.y110{bottom:347.546667pt;}
.y142{bottom:352.266667pt;}
.y9e{bottom:354.106667pt;}
.y74{bottom:354.426667pt;}
.ye8{bottom:360.026667pt;}
.y16f{bottom:360.986667pt;}
.y90{bottom:361.706667pt;}
.y10f{bottom:363.146667pt;}
.ybb{bottom:364.746667pt;}
.y141{bottom:367.866667pt;}
.y4c{bottom:370.106667pt;}
.y188{bottom:370.826667pt;}
.y16e{bottom:376.586667pt;}
.y1b3{bottom:377.706667pt;}
.y1a3{bottom:378.106667pt;}
.y10e{bottom:378.826667pt;}
.y140{bottom:383.466667pt;}
.ye7{bottom:383.626667pt;}
.y8f{bottom:385.306667pt;}
.y4b{bottom:385.706667pt;}
.y187{bottom:386.426667pt;}
.y1b{bottom:389.386667pt;}
.y16d{bottom:392.266667pt;}
.y10d{bottom:394.426667pt;}
.yba{bottom:396.346667pt;}
.y13f{bottom:399.146667pt;}
.y4a{bottom:401.306667pt;}
.y1a2{bottom:401.706667pt;}
.y186{bottom:402.106667pt;}
.y1a{bottom:405.306667pt;}
.y16c{bottom:407.866667pt;}
.y10c{bottom:410.106667pt;}
.yb9{bottom:412.026667pt;}
.y13e{bottom:414.746667pt;}
.ye6{bottom:415.306667pt;}
.y49{bottom:416.986667pt;}
.y1a1{bottom:417.306667pt;}
.y185{bottom:417.733333pt;}
.y16b{bottom:423.573333pt;}
.y10b{bottom:425.733333pt;}
.yb8{bottom:427.653333pt;}
.ye5{bottom:430.933333pt;}
.y73{bottom:432.613333pt;}
.y1a0{bottom:433.013333pt;}
.y19{bottom:438.213333pt;}
.y10a{bottom:441.333333pt;}
.yb7{bottom:443.333333pt;}
.y13d{bottom:446.453333pt;}
.ye4{bottom:446.533333pt;}
.y16a{bottom:447.173333pt;}
.y72{bottom:448.293333pt;}
.y48{bottom:448.613333pt;}
.y18{bottom:453.813333pt;}
.y1b2{bottom:456.293333pt;}
.y19f{bottom:456.613333pt;}
.y109{bottom:457.013333pt;}
.yb6{bottom:458.933333pt;}
.y13c{bottom:462.053333pt;}
.ye3{bottom:462.213333pt;}
.y71{bottom:463.893333pt;}
.y47{bottom:464.293333pt;}
.y1bd{bottom:465.013333pt;}
.y17{bottom:469.493333pt;}
.y1b1{bottom:471.893333pt;}
.y19e{bottom:472.293333pt;}
.y108{bottom:472.613333pt;}
.yb5{bottom:474.533333pt;}
.y13b{bottom:477.653333pt;}
.ye2{bottom:477.813333pt;}
.y169{bottom:478.773333pt;}
.y8e{bottom:479.493333pt;}
.y46{bottom:479.893333pt;}
.y1bc{bottom:480.613333pt;}
.y16{bottom:485.093333pt;}
.y70{bottom:487.493333pt;}
.y107{bottom:488.293333pt;}
.yb4{bottom:490.213333pt;}
.y13a{bottom:493.253333pt;}
.y168{bottom:494.453333pt;}
.y45{bottom:495.493333pt;}
.y19d{bottom:495.893333pt;}
.y184{bottom:496.293333pt;}
.y15{bottom:500.773333pt;}
.ye1{bottom:501.413333pt;}
.y8d{bottom:503.173333pt;}
.y106{bottom:503.893333pt;}
.y139{bottom:509.653333pt;}
.y167{bottom:510.053333pt;}
.y44{bottom:511.173333pt;}
.y19c{bottom:511.493333pt;}
.y183{bottom:511.893333pt;}
.yb3{bottom:513.813333pt;}
.y14{bottom:516.373333pt;}
.y6f{bottom:519.173333pt;}
.y138{bottom:525.333333pt;}
.y166{bottom:525.733333pt;}
.y43{bottom:526.773333pt;}
.y105{bottom:527.493333pt;}
.y13{bottom:531.973333pt;}
.ye0{bottom:533.333333pt;}
.y6e{bottom:534.773333pt;}
.y19b{bottom:535.173333pt;}
.y137{bottom:540.933333pt;}
.y165{bottom:541.333333pt;}
.y42{bottom:542.453333pt;}
.yb2{bottom:542.773333pt;}
.y182{bottom:543.173333pt;}
.y12{bottom:547.653333pt;}
.y6d{bottom:550.453333pt;}
.y1bb{bottom:551.173333pt;}
.y136{bottom:556.613333pt;}
.y164{bottom:556.933333pt;}
.y41{bottom:558.053333pt;}
.y181{bottom:558.773333pt;}
.y104{bottom:559.173333pt;}
.y11{bottom:563.253333pt;}
.y8c{bottom:566.053333pt;}
.y1ba{bottom:566.773333pt;}
.y135{bottom:572.213333pt;}
.y163{bottom:572.613333pt;}
.y6c{bottom:574.053333pt;}
.yb1{bottom:574.453333pt;}
.y103{bottom:574.773333pt;}
.ydf{bottom:576.293333pt;}
.y10{bottom:578.853333pt;}
.y40{bottom:581.653333pt;}
.y180{bottom:582.453333pt;}
.y134{bottom:587.813333pt;}
.yb0{bottom:590.053333pt;}
.y102{bottom:590.453333pt;}
.yde{bottom:591.893333pt;}
.yf{bottom:594.533333pt;}
.y162{bottom:596.213333pt;}
.y8b{bottom:597.333333pt;}
.y17f{bottom:598.053333pt;}
.y133{bottom:604.213333pt;}
.y6b{bottom:605.653333pt;}
.y101{bottom:606.053333pt;}
.ydd{bottom:607.573333pt;}
.ye{bottom:610.133333pt;}
.y8a{bottom:612.933333pt;}
.y3f{bottom:613.333333pt;}
.y17e{bottom:613.653333pt;}
.y132{bottom:619.813333pt;}
.y9d{bottom:620.933333pt;}
.y6a{bottom:621.333333pt;}
.y100{bottom:621.653333pt;}
.ydc{bottom:623.173333pt;}
.yd{bottom:625.813333pt;}
.y161{bottom:627.893333pt;}
.y3e{bottom:628.933333pt;}
.y17d{bottom:629.333333pt;}
.y131{bottom:635.493333pt;}
.y89{bottom:636.613333pt;}
.y69{bottom:636.933333pt;}
.yff{bottom:637.333333pt;}
.ydb{bottom:638.773333pt;}
.yc{bottom:641.413333pt;}
.y160{bottom:643.493333pt;}
.y3d{bottom:644.613333pt;}
.y19a{bottom:644.933333pt;}
.y130{bottom:651.093333pt;}
.y1b0{bottom:652.213333pt;}
.y68{bottom:652.613333pt;}
.yfe{bottom:652.933333pt;}
.yda{bottom:654.453333pt;}
.yb{bottom:657.013333pt;}
.y15f{bottom:659.093333pt;}
.y3c{bottom:660.213333pt;}
.y12f{bottom:667.493333pt;}
.y67{bottom:668.213333pt;}
.yaf{bottom:668.613333pt;}
.yd9{bottom:670.053333pt;}
.ya{bottom:672.693333pt;}
.y15e{bottom:674.773333pt;}
.y1af{bottom:675.813333pt;}
.y12e{bottom:683.093333pt;}
.y66{bottom:683.813333pt;}
.yae{bottom:684.213333pt;}
.y15d{bottom:690.373333pt;}
.y1ae{bottom:691.493333pt;}
.y3b{bottom:691.813333pt;}
.y17c{bottom:692.213333pt;}
.yd8{bottom:693.733333pt;}
.y9{bottom:696.613333pt;}
.y12d{bottom:698.773333pt;}
.y88{bottom:699.493333pt;}
.yad{bottom:699.813333pt;}
.y15c{bottom:706.053333pt;}
.y1ad{bottom:707.093333pt;}
.y3a{bottom:707.493333pt;}
.yfd{bottom:707.813333pt;}
.y12c{bottom:714.373333pt;}
.y87{bottom:715.093333pt;}
.y65{bottom:715.493333pt;}
.y15b{bottom:721.653333pt;}
.y1ac{bottom:722.693333pt;}
.y39{bottom:723.093333pt;}
.yfc{bottom:723.493333pt;}
.yd7{bottom:725.333333pt;}
.y86{bottom:730.693333pt;}
.y12b{bottom:730.773333pt;}
.y64{bottom:731.093333pt;}
.y15a{bottom:737.253333pt;}
.y8{bottom:738.213333pt;}
.y38{bottom:738.693333pt;}
.y1b9{bottom:739.093333pt;}
.yd6{bottom:740.933333pt;}
.y12a{bottom:746.373333pt;}
.y63{bottom:746.693333pt;}
.y17b{bottom:747.093333pt;}
.y37{bottom:754.373333pt;}
.y199{bottom:754.693333pt;}
.yfb{bottom:755.093333pt;}
.yd5{bottom:757.333333pt;}
.y159{bottom:760.933333pt;}
.y129{bottom:761.973333pt;}
.y62{bottom:762.373333pt;}
.y17a{bottom:762.693333pt;}
.y7{bottom:769.813333pt;}
.y36{bottom:769.973333pt;}
.y198{bottom:770.373333pt;}
.yfa{bottom:770.693333pt;}
.yd4{bottom:772.933333pt;}
.y128{bottom:777.573333pt;}
.y61{bottom:777.973333pt;}
.y179{bottom:778.373333pt;}
.y1ab{bottom:785.653333pt;}
.y85{bottom:785.973333pt;}
.yf9{bottom:786.373333pt;}
.yd3{bottom:789.333333pt;}
.y158{bottom:792.853333pt;}
.y60{bottom:793.653333pt;}
.y1b8{bottom:793.973333pt;}
.y6{bottom:801.653333pt;}
.yf8{bottom:801.973333pt;}
.y1aa{bottom:809.253333pt;}
.y197{bottom:809.653333pt;}
.yd2{bottom:813.733333pt;}
.y35{bottom:817.253333pt;}
.yac{bottom:817.653333pt;}
.y34{bottom:832.853333pt;}
.yab{bottom:833.253333pt;}
.y5{bottom:833.653333pt;}
.y157{bottom:835.733333pt;}
.y84{bottom:840.853333pt;}
.yd1{bottom:845.573333pt;}
.y33{bottom:848.533333pt;}
.y5f{bottom:848.853333pt;}
.y127{bottom:849.253333pt;}
.y156{bottom:851.333333pt;}
.y9c{bottom:856.533333pt;}
.y1b7{bottom:856.853333pt;}
.y5e{bottom:864.533333pt;}
.y126{bottom:864.853333pt;}
.y4{bottom:865.733333pt;}
.y32{bottom:872.133333pt;}
.y83{bottom:872.533333pt;}
.y5d{bottom:880.133333pt;}
.y125{bottom:880.533333pt;}
.y155{bottom:882.933333pt;}
.y82{bottom:888.133333pt;}
.yd0{bottom:888.533333pt;}
.y5c{bottom:895.813333pt;}
.y124{bottom:896.133333pt;}
.y154{bottom:899.360000pt;}
.y3{bottom:899.760000pt;}
.y31{bottom:903.840000pt;}
.ycf{bottom:904.160000pt;}
.y5b{bottom:911.440000pt;}
.y123{bottom:911.840000pt;}
.y153{bottom:915.760000pt;}
.y30{bottom:919.440000pt;}
.yce{bottom:919.840000pt;}
.y5a{bottom:927.040000pt;}
.y122{bottom:927.440000pt;}
.y152{bottom:932.080000pt;}
.y2f{bottom:935.040000pt;}
.ycd{bottom:935.440000pt;}
.y59{bottom:942.720000pt;}
.y121{bottom:943.040000pt;}
.y151{bottom:948.480000pt;}
.y2e{bottom:950.720000pt;}
.ycc{bottom:951.040000pt;}
.y120{bottom:958.720000pt;}
.y150{bottom:964.800000pt;}
.y58{bottom:966.320000pt;}
.ycb{bottom:966.720000pt;}
.y11f{bottom:974.320000pt;}
.y14f{bottom:981.200000pt;}
.y2d{bottom:982.320000pt;}
.y11e{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h6{height:46.499062pt;}
.h5{height:49.581562pt;}
.hc{height:50.954062pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x7{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x6{left:317.226655pt;}
.x3{left:711.413322pt;}
}




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