
    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_39e361f3089fd21ae8e62759.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_534f1074cbf42b1e5438d662.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb65cafcac2bc6756f39f894.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_d25df250c8e255c3373a2770.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b9ec85aa60667bc24baf588e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_09f465cc4a01c1d56c40337d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_940ed674a2000301d9f83675.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_94b40697c09132c713b66f34.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8647055c8b59fdc1794bd870.woff2')format("woff");}.ff9{font-family:ff9;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:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.lsa{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.403920px;}
.lsd{letter-spacing:0.720000px;}
.ls6{letter-spacing:4.500000px;}
.ls15{letter-spacing:25.308000px;}
.ls11{letter-spacing:52.668000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.976000px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsb{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.374000px;}
.wse{word-spacing:-13.284000px;}
.ws10{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.wsa{word-spacing:-8.676000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._b{width:2.034240px;}
._7{width:3.118320px;}
._9{width:4.601520px;}
._d{width:5.626512px;}
._c{width:7.581744px;}
._a{width:8.857872px;}
._8{width:10.303488px;}
._e{width:11.556000px;}
._6{width:13.140000px;}
._11{width:15.012000px;}
._10{width:16.038000px;}
._12{width:17.496000px;}
._21{width:18.738000px;}
._22{width:19.788000px;}
._18{width:20.790000px;}
._23{width:22.086000px;}
._1a{width:23.112000px;}
._19{width:24.246000px;}
._15{width:25.272000px;}
._13{width:27.324000px;}
._14{width:28.674000px;}
._27{width:29.700000px;}
._f{width:31.104000px;}
._26{width:32.724000px;}
._1d{width:33.804000px;}
._1e{width:35.154000px;}
._24{width:36.174000px;}
._1f{width:37.314000px;}
._20{width:38.472000px;}
._25{width:39.492000px;}
._2c{width:40.584000px;}
._2b{width:41.634000px;}
._17{width:43.008000px;}
._16{width:44.064000px;}
._2d{width:45.282000px;}
._1c{width:46.488000px;}
._1b{width:47.628000px;}
._2a{width:49.380000px;}
._2e{width:50.922000px;}
._28{width:52.326000px;}
._29{width:53.514000px;}
._33{width:56.754000px;}
._35{width:58.428000px;}
._36{width:59.964000px;}
._2f{width:77.166000px;}
._3{width:78.192000px;}
._4{width:157.860000px;}
._32{width:170.640000px;}
._31{width:171.936000px;}
._34{width:367.416000px;}
._30{width:791.262000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.ybe{bottom:10.080000px;}
.yc2{bottom:10.125000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yc8{bottom:27.900000px;}
.yc4{bottom:28.080000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3c{bottom:76.890000px;}
.y103{bottom:106.380000px;}
.yaf{bottom:107.820000px;}
.y79{bottom:108.000000px;}
.y12e{bottom:115.560000px;}
.y2b{bottom:116.100000px;}
.y150{bottom:119.700000px;}
.y102{bottom:124.380000px;}
.ye6{bottom:125.460000px;}
.y39{bottom:125.490000px;}
.y78{bottom:126.000000px;}
.y12d{bottom:133.380000px;}
.yae{bottom:134.280000px;}
.y2a{bottom:141.840000px;}
.ye5{bottom:143.280000px;}
.y16d{bottom:143.460000px;}
.y77{bottom:143.820000px;}
.y101{bottom:151.200000px;}
.y14f{bottom:152.460000px;}
.ye4{bottom:161.280000px;}
.yad{bottom:161.460000px;}
.y76{bottom:161.640000px;}
.y29{bottom:167.760000px;}
.y100{bottom:169.020000px;}
.y12c{bottom:169.200000px;}
.y14e{bottom:170.280000px;}
.y36{bottom:174.270000px;}
.ye3{bottom:179.100000px;}
.yac{bottom:179.280000px;}
.y75{bottom:179.460000px;}
.yff{bottom:186.840000px;}
.y2c{bottom:187.020000px;}
.y14d{bottom:188.280000px;}
.y28{bottom:193.500000px;}
.ye2{bottom:196.920000px;}
.y74{bottom:197.280000px;}
.yfe{bottom:204.660000px;}
.y14c{bottom:206.130000px;}
.y12b{bottom:213.870000px;}
.ye1{bottom:214.770000px;}
.y3e{bottom:214.950000px;}
.yab{bottom:215.130000px;}
.y17f{bottom:215.310000px;}
.y27{bottom:219.270000px;}
.yfd{bottom:222.510000px;}
.y33{bottom:222.870000px;}
.y14b{bottom:223.950000px;}
.y73{bottom:224.310000px;}
.y12a{bottom:231.690000px;}
.ye0{bottom:232.590000px;}
.yaa{bottom:232.950000px;}
.y17e{bottom:233.130000px;}
.yfc{bottom:240.510000px;}
.y16c{bottom:241.770000px;}
.y72{bottom:242.130000px;}
.y3d{bottom:244.110000px;}
.y26{bottom:245.010000px;}
.y129{bottom:249.510000px;}
.ya9{bottom:250.770000px;}
.y17d{bottom:250.950000px;}
.ydf{bottom:259.590000px;}
.y71{bottom:259.950000px;}
.y3b{bottom:263.910000px;}
.yfb{bottom:267.330000px;}
.y128{bottom:267.510000px;}
.ya8{bottom:268.590000px;}
.y17c{bottom:268.770000px;}
.y25{bottom:270.930000px;}
.y30{bottom:271.695000px;}
.yde{bottom:277.410000px;}
.y70{bottom:277.770000px;}
.y127{bottom:285.330000px;}
.ya7{bottom:286.050000px;}
.y14a{bottom:286.410000px;}
.y17b{bottom:286.590000px;}
.y2f{bottom:291.495000px;}
.y3a{bottom:292.710000px;}
.yfa{bottom:294.150000px;}
.ydd{bottom:295.230000px;}
.y16b{bottom:295.410000px;}
.y6f{bottom:295.590000px;}
.y24{bottom:296.670000px;}
.y149{bottom:304.410000px;}
.yf9{bottom:311.970000px;}
.y126{bottom:312.150000px;}
.y38{bottom:312.510000px;}
.ydc{bottom:313.050000px;}
.y6e{bottom:313.410000px;}
.y2d{bottom:321.735000px;}
.y148{bottom:322.230000px;}
.y23{bottom:322.410000px;}
.yf8{bottom:329.790000px;}
.y125{bottom:329.970000px;}
.ydb{bottom:330.870000px;}
.ya6{bottom:331.230000px;}
.y6d{bottom:331.410000px;}
.y147{bottom:340.050000px;}
.y17a{bottom:340.230000px;}
.y37{bottom:341.490000px;}
.yf7{bottom:347.790000px;}
.y22{bottom:348.150000px;}
.yda{bottom:348.690000px;}
.ya5{bottom:349.050000px;}
.y6c{bottom:349.230000px;}
.y146{bottom:357.870000px;}
.y179{bottom:358.050000px;}
.y35{bottom:361.290000px;}
.y124{bottom:365.610000px;}
.ya4{bottom:366.510000px;}
.yd9{bottom:366.690000px;}
.y16a{bottom:366.870000px;}
.y6b{bottom:367.050000px;}
.y21{bottom:374.070000px;}
.yf6{bottom:374.610000px;}
.y145{bottom:375.690000px;}
.y178{bottom:375.870000px;}
.y123{bottom:383.610000px;}
.yd8{bottom:384.510000px;}
.y169{bottom:384.690000px;}
.y34{bottom:390.090000px;}
.yf5{bottom:392.430000px;}
.ya3{bottom:393.690000px;}
.y6a{bottom:393.870000px;}
.y122{bottom:401.430000px;}
.yd7{bottom:402.330000px;}
.y144{bottom:402.690000px;}
.y1f{bottom:406.830000px;}
.y32{bottom:409.890000px;}
.yf4{bottom:410.250000px;}
.y69{bottom:411.690000px;}
.y121{bottom:419.250000px;}
.y143{bottom:420.510000px;}
.yf3{bottom:428.070000px;}
.yd6{bottom:429.150000px;}
.ya2{bottom:429.510000px;}
.y68{bottom:429.690000px;}
.y1e{bottom:433.650000px;}
.y142{bottom:438.330000px;}
.y31{bottom:438.690000px;}
.yf2{bottom:445.935000px;}
.y120{bottom:446.115000px;}
.ya1{bottom:447.375000px;}
.y67{bottom:447.555000px;}
.yd5{bottom:456.015000px;}
.y141{bottom:456.195000px;}
.y1d{bottom:460.515000px;}
.yf1{bottom:463.935000px;}
.ya0{bottom:464.835000px;}
.y177{bottom:465.195000px;}
.y66{bottom:465.375000px;}
.y11f{bottom:472.935000px;}
.yd4{bottom:474.015000px;}
.y2e{bottom:478.515000px;}
.yf0{bottom:481.755000px;}
.y176{bottom:483.015000px;}
.y65{bottom:483.195000px;}
.y9f{bottom:484.995000px;}
.y1c{bottom:487.335000px;}
.y11e{bottom:490.935000px;}
.yd3{bottom:491.835000px;}
.y175{bottom:500.835000px;}
.y64{bottom:501.015000px;}
.yef{bottom:508.575000px;}
.y11d{bottom:508.755000px;}
.yd2{bottom:509.655000px;}
.y140{bottom:509.835000px;}
.y1b{bottom:514.335000px;}
.y9e{bottom:517.935000px;}
.y63{bottom:518.835000px;}
.yee{bottom:526.395000px;}
.y11c{bottom:526.575000px;}
.yd1{bottom:527.475000px;}
.y13f{bottom:527.655000px;}
.y9d{bottom:535.755000px;}
.y168{bottom:536.655000px;}
.y62{bottom:536.835000px;}
.y1a{bottom:540.795000px;}
.y20{bottom:541.155000px;}
.yed{bottom:544.215000px;}
.y11b{bottom:544.395000px;}
.yd0{bottom:545.295000px;}
.y13e{bottom:545.475000px;}
.y9c{bottom:553.575000px;}
.y167{bottom:554.475000px;}
.y61{bottom:554.655000px;}
.yec{bottom:562.035000px;}
.y11a{bottom:562.215000px;}
.ycf{bottom:563.115000px;}
.y19{bottom:569.235000px;}
.y9b{bottom:571.395000px;}
.y13d{bottom:572.295000px;}
.yeb{bottom:580.035000px;}
.yce{bottom:581.115000px;}
.y166{bottom:581.295000px;}
.y60{bottom:581.475000px;}
.y9a{bottom:589.215000px;}
.y13c{bottom:590.115000px;}
.y18{bottom:595.515000px;}
.yea{bottom:597.855000px;}
.ycd{bottom:598.935000px;}
.y165{bottom:599.115000px;}
.y5f{bottom:599.295000px;}
.y99{bottom:607.035000px;}
.y13b{bottom:608.115000px;}
.ycc{bottom:616.755000px;}
.y5e{bottom:617.115000px;}
.ye9{bottom:624.675000px;}
.y119{bottom:624.855000px;}
.y98{bottom:625.035000px;}
.y13a{bottom:625.935000px;}
.y17{bottom:626.295000px;}
.ycb{bottom:634.575000px;}
.y164{bottom:634.935000px;}
.y5d{bottom:635.115000px;}
.y118{bottom:642.675000px;}
.y97{bottom:642.855000px;}
.y139{bottom:643.755000px;}
.ye8{bottom:651.495000px;}
.y163{bottom:652.755000px;}
.y5c{bottom:652.935000px;}
.yca{bottom:654.375000px;}
.y117{bottom:660.495000px;}
.y138{bottom:661.575000px;}
.ye7{bottom:669.315000px;}
.y96{bottom:669.675000px;}
.y162{bottom:670.575000px;}
.y5b{bottom:670.755000px;}
.y116{bottom:678.345000px;}
.y137{bottom:679.425000px;}
.yc9{bottom:682.485000px;}
.y16{bottom:682.845000px;}
.y95{bottom:687.525000px;}
.y161{bottom:688.425000px;}
.y5a{bottom:688.605000px;}
.y115{bottom:696.165000px;}
.y136{bottom:697.245000px;}
.y174{bottom:699.225000px;}
.y94{bottom:705.345000px;}
.y160{bottom:706.245000px;}
.y59{bottom:706.425000px;}
.y15{bottom:713.625000px;}
.y114{bottom:714.165000px;}
.y135{bottom:717.225000px;}
.y93{bottom:723.165000px;}
.y58{bottom:724.245000px;}
.yc7{bottom:727.845000px;}
.y173{bottom:732.165000px;}
.y113{bottom:740.985000px;}
.y92{bottom:741.165000px;}
.y15f{bottom:742.065000px;}
.y57{bottom:742.245000px;}
.y14{bottom:749.985000px;}
.y91{bottom:758.985000px;}
.y56{bottom:760.065000px;}
.y18d{bottom:764.925000px;}
.y112{bottom:767.805000px;}
.y15e{bottom:768.885000px;}
.yc6{bottom:773.385000px;}
.y90{bottom:776.805000px;}
.y111{bottom:785.625000px;}
.y18c{bottom:785.985000px;}
.y15d{bottom:786.705000px;}
.y55{bottom:786.885000px;}
.y8f{bottom:794.625000px;}
.y13{bottom:800.565000px;}
.yc5{bottom:800.925000px;}
.y110{bottom:803.445000px;}
.y18b{bottom:803.805000px;}
.y54{bottom:804.705000px;}
.y8e{bottom:812.445000px;}
.y15c{bottom:813.525000px;}
.y10f{bottom:821.445000px;}
.y18a{bottom:821.625000px;}
.y53{bottom:822.525000px;}
.y12{bottom:828.465000px;}
.y15b{bottom:831.345000px;}
.y134{bottom:839.265000px;}
.y8d{bottom:839.445000px;}
.y52{bottom:840.345000px;}
.y10e{bottom:848.265000px;}
.y15a{bottom:849.345000px;}
.y133{bottom:857.085000px;}
.y8c{bottom:857.265000px;}
.y189{bottom:857.445000px;}
.y51{bottom:858.345000px;}
.y10d{bottom:866.085000px;}
.y159{bottom:867.165000px;}
.yc3{bottom:874.005000px;}
.y11{bottom:874.545000px;}
.y132{bottom:874.905000px;}
.y8b{bottom:875.085000px;}
.y188{bottom:875.265000px;}
.y50{bottom:876.165000px;}
.y10c{bottom:883.905000px;}
.y158{bottom:884.985000px;}
.y8a{bottom:892.905000px;}
.y187{bottom:893.085000px;}
.y4f{bottom:893.985000px;}
.y10{bottom:899.745000px;}
.yc1{bottom:901.545000px;}
.y10b{bottom:901.725000px;}
.y157{bottom:902.805000px;}
.y89{bottom:910.770000px;}
.y186{bottom:910.950000px;}
.y4e{bottom:911.850000px;}
.yf{bottom:919.590000px;}
.y156{bottom:920.670000px;}
.y88{bottom:928.590000px;}
.y185{bottom:928.770000px;}
.yc0{bottom:929.310000px;}
.y4d{bottom:929.670000px;}
.y10a{bottom:937.590000px;}
.y155{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.y87{bottom:946.590000px;}
.y4c{bottom:947.670000px;}
.y109{bottom:955.410000px;}
.y154{bottom:956.490000px;}
.ybf{bottom:956.850000px;}
.yd{bottom:959.010000px;}
.y172{bottom:964.410000px;}
.y184{bottom:964.590000px;}
.y131{bottom:973.230000px;}
.y86{bottom:973.410000px;}
.y153{bottom:974.310000px;}
.y4b{bottom:974.490000px;}
.yc{bottom:979.170000px;}
.y108{bottom:982.230000px;}
.y183{bottom:982.410000px;}
.ybd{bottom:984.390000px;}
.y130{bottom:991.050000px;}
.y85{bottom:991.230000px;}
.y152{bottom:992.130000px;}
.y4a{bottom:992.310000px;}
.y107{bottom:1000.050000px;}
.y182{bottom:1000.230000px;}
.y84{bottom:1009.050000px;}
.y49{bottom:1010.130000px;}
.ybc{bottom:1017.690000px;}
.y106{bottom:1017.870000px;}
.y181{bottom:1018.050000px;}
.y151{bottom:1018.950000px;}
.yb{bottom:1019.130000px;}
.y83{bottom:1026.870000px;}
.y48{bottom:1027.950000px;}
.ya{bottom:1031.190000px;}
.yb5{bottom:1035.510000px;}
.y105{bottom:1035.870000px;}
.ybb{bottom:1038.750000px;}
.y9{bottom:1043.250000px;}
.y82{bottom:1044.870000px;}
.y47{bottom:1045.770000px;}
.y104{bottom:1053.690000px;}
.y180{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.yb4{bottom:1062.330000px;}
.y81{bottom:1062.690000px;}
.y46{bottom:1063.770000px;}
.y7{bottom:1069.890000px;}
.yba{bottom:1071.510000px;}
.y171{bottom:1071.690000px;}
.y80{bottom:1080.510000px;}
.y45{bottom:1081.590000px;}
.yb3{bottom:1089.150000px;}
.yb9{bottom:1089.330000px;}
.y170{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.y7f{bottom:1098.330000px;}
.y44{bottom:1099.410000px;}
.yb8{bottom:1107.150000px;}
.y16f{bottom:1107.330000px;}
.yb2{bottom:1115.970000px;}
.y7e{bottom:1116.150000px;}
.y43{bottom:1117.230000px;}
.yb7{bottom:1124.970000px;}
.y16e{bottom:1125.150000px;}
.y7d{bottom:1133.970000px;}
.y42{bottom:1135.050000px;}
.yb6{bottom:1142.610000px;}
.yb1{bottom:1142.970000px;}
.y12f{bottom:1152.000000px;}
.y41{bottom:1153.080000px;}
.y7c{bottom:1161.000000px;}
.yb0{bottom:1169.820000px;}
.y40{bottom:1170.900000px;}
.y7b{bottom:1178.820000px;}
.y3f{bottom:1190.700000px;}
.y7a{bottom:1196.640000px;}
.h18{height:26.820000px;}
.h19{height:26.856000px;}
.h2{height:31.135500px;}
.h15{height:37.705078px;}
.h7{height:40.985156px;}
.h1b{height:44.640000px;}
.h1a{height:44.820000px;}
.h3{height:52.998047px;}
.hf{height:54.421875px;}
.h17{height:55.503491px;}
.h12{height:58.621992px;}
.h8{height:58.651172px;}
.h13{height:58.763250px;}
.h16{height:59.092031px;}
.hb{height:59.436914px;}
.h9{height:60.226875px;}
.h14{height:60.372000px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.hc{height:72.326250px;}
.h10{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h11{height:349.020000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w6{width:89.820000px;}
.w7{width:140.976000px;}
.w5{width:214.090500px;}
.w8{width:340.440000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.555500px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x12{left:38.340000px;}
.x1{left:45.364500px;}
.x14{left:49.140000px;}
.x1c{left:52.744500px;}
.x5{left:54.000000px;}
.x18{left:60.696000px;}
.xb{left:67.860000px;}
.x17{left:69.156000px;}
.x16{left:73.296000px;}
.x1a{left:81.000000px;}
.x19{left:86.616000px;}
.x15{left:92.556000px;}
.x20{left:108.036000px;}
.xd{left:149.976000px;}
.x2{left:222.370500px;}
.x1e{left:267.555000px;}
.xe{left:269.535000px;}
.xf{left:275.475000px;}
.x8{left:281.775000px;}
.xc{left:283.215000px;}
.x6{left:285.735000px;}
.x9{left:288.975000px;}
.x10{left:314.355000px;}
.x1f{left:358.275000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x11{left:473.505000px;}
.x1b{left:500.505000px;}
.x21{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.359040pt;}
.lsd{letter-spacing:0.640000pt;}
.ls6{letter-spacing:4.000000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls11{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.312000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.888000pt;}
.wse{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsa{word-spacing:-7.712000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._b{width:1.808213pt;}
._7{width:2.771840pt;}
._9{width:4.090240pt;}
._d{width:5.001344pt;}
._c{width:6.739328pt;}
._a{width:7.873664pt;}
._8{width:9.158656pt;}
._e{width:10.272000pt;}
._6{width:11.680000pt;}
._11{width:13.344000pt;}
._10{width:14.256000pt;}
._12{width:15.552000pt;}
._21{width:16.656000pt;}
._22{width:17.589333pt;}
._18{width:18.480000pt;}
._23{width:19.632000pt;}
._1a{width:20.544000pt;}
._19{width:21.552000pt;}
._15{width:22.464000pt;}
._13{width:24.288000pt;}
._14{width:25.488000pt;}
._27{width:26.400000pt;}
._f{width:27.648000pt;}
._26{width:29.088000pt;}
._1d{width:30.048000pt;}
._1e{width:31.248000pt;}
._24{width:32.154667pt;}
._1f{width:33.168000pt;}
._20{width:34.197333pt;}
._25{width:35.104000pt;}
._2c{width:36.074667pt;}
._2b{width:37.008000pt;}
._17{width:38.229333pt;}
._16{width:39.168000pt;}
._2d{width:40.250667pt;}
._1c{width:41.322667pt;}
._1b{width:42.336000pt;}
._2a{width:43.893333pt;}
._2e{width:45.264000pt;}
._28{width:46.512000pt;}
._29{width:47.568000pt;}
._33{width:50.448000pt;}
._35{width:51.936000pt;}
._36{width:53.301333pt;}
._2f{width:68.592000pt;}
._3{width:69.504000pt;}
._4{width:140.320000pt;}
._32{width:151.680000pt;}
._31{width:152.832000pt;}
._34{width:326.592000pt;}
._30{width:703.344000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.ybe{bottom:8.960000pt;}
.yc2{bottom:9.000000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yc8{bottom:24.800000pt;}
.yc4{bottom:24.960000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3c{bottom:68.346667pt;}
.y103{bottom:94.560000pt;}
.yaf{bottom:95.840000pt;}
.y79{bottom:96.000000pt;}
.y12e{bottom:102.720000pt;}
.y2b{bottom:103.200000pt;}
.y150{bottom:106.400000pt;}
.y102{bottom:110.560000pt;}
.ye6{bottom:111.520000pt;}
.y39{bottom:111.546667pt;}
.y78{bottom:112.000000pt;}
.y12d{bottom:118.560000pt;}
.yae{bottom:119.360000pt;}
.y2a{bottom:126.080000pt;}
.ye5{bottom:127.360000pt;}
.y16d{bottom:127.520000pt;}
.y77{bottom:127.840000pt;}
.y101{bottom:134.400000pt;}
.y14f{bottom:135.520000pt;}
.ye4{bottom:143.360000pt;}
.yad{bottom:143.520000pt;}
.y76{bottom:143.680000pt;}
.y29{bottom:149.120000pt;}
.y100{bottom:150.240000pt;}
.y12c{bottom:150.400000pt;}
.y14e{bottom:151.360000pt;}
.y36{bottom:154.906667pt;}
.ye3{bottom:159.200000pt;}
.yac{bottom:159.360000pt;}
.y75{bottom:159.520000pt;}
.yff{bottom:166.080000pt;}
.y2c{bottom:166.240000pt;}
.y14d{bottom:167.360000pt;}
.y28{bottom:172.000000pt;}
.ye2{bottom:175.040000pt;}
.y74{bottom:175.360000pt;}
.yfe{bottom:181.920000pt;}
.y14c{bottom:183.226667pt;}
.y12b{bottom:190.106667pt;}
.ye1{bottom:190.906667pt;}
.y3e{bottom:191.066667pt;}
.yab{bottom:191.226667pt;}
.y17f{bottom:191.386667pt;}
.y27{bottom:194.906667pt;}
.yfd{bottom:197.786667pt;}
.y33{bottom:198.106667pt;}
.y14b{bottom:199.066667pt;}
.y73{bottom:199.386667pt;}
.y12a{bottom:205.946667pt;}
.ye0{bottom:206.746667pt;}
.yaa{bottom:207.066667pt;}
.y17e{bottom:207.226667pt;}
.yfc{bottom:213.786667pt;}
.y16c{bottom:214.906667pt;}
.y72{bottom:215.226667pt;}
.y3d{bottom:216.986667pt;}
.y26{bottom:217.786667pt;}
.y129{bottom:221.786667pt;}
.ya9{bottom:222.906667pt;}
.y17d{bottom:223.066667pt;}
.ydf{bottom:230.746667pt;}
.y71{bottom:231.066667pt;}
.y3b{bottom:234.586667pt;}
.yfb{bottom:237.626667pt;}
.y128{bottom:237.786667pt;}
.ya8{bottom:238.746667pt;}
.y17c{bottom:238.906667pt;}
.y25{bottom:240.826667pt;}
.y30{bottom:241.506667pt;}
.yde{bottom:246.586667pt;}
.y70{bottom:246.906667pt;}
.y127{bottom:253.626667pt;}
.ya7{bottom:254.266667pt;}
.y14a{bottom:254.586667pt;}
.y17b{bottom:254.746667pt;}
.y2f{bottom:259.106667pt;}
.y3a{bottom:260.186667pt;}
.yfa{bottom:261.466667pt;}
.ydd{bottom:262.426667pt;}
.y16b{bottom:262.586667pt;}
.y6f{bottom:262.746667pt;}
.y24{bottom:263.706667pt;}
.y149{bottom:270.586667pt;}
.yf9{bottom:277.306667pt;}
.y126{bottom:277.466667pt;}
.y38{bottom:277.786667pt;}
.ydc{bottom:278.266667pt;}
.y6e{bottom:278.586667pt;}
.y2d{bottom:285.986667pt;}
.y148{bottom:286.426667pt;}
.y23{bottom:286.586667pt;}
.yf8{bottom:293.146667pt;}
.y125{bottom:293.306667pt;}
.ydb{bottom:294.106667pt;}
.ya6{bottom:294.426667pt;}
.y6d{bottom:294.586667pt;}
.y147{bottom:302.266667pt;}
.y17a{bottom:302.426667pt;}
.y37{bottom:303.546667pt;}
.yf7{bottom:309.146667pt;}
.y22{bottom:309.466667pt;}
.yda{bottom:309.946667pt;}
.ya5{bottom:310.266667pt;}
.y6c{bottom:310.426667pt;}
.y146{bottom:318.106667pt;}
.y179{bottom:318.266667pt;}
.y35{bottom:321.146667pt;}
.y124{bottom:324.986667pt;}
.ya4{bottom:325.786667pt;}
.yd9{bottom:325.946667pt;}
.y16a{bottom:326.106667pt;}
.y6b{bottom:326.266667pt;}
.y21{bottom:332.506667pt;}
.yf6{bottom:332.986667pt;}
.y145{bottom:333.946667pt;}
.y178{bottom:334.106667pt;}
.y123{bottom:340.986667pt;}
.yd8{bottom:341.786667pt;}
.y169{bottom:341.946667pt;}
.y34{bottom:346.746667pt;}
.yf5{bottom:348.826667pt;}
.ya3{bottom:349.946667pt;}
.y6a{bottom:350.106667pt;}
.y122{bottom:356.826667pt;}
.yd7{bottom:357.626667pt;}
.y144{bottom:357.946667pt;}
.y1f{bottom:361.626667pt;}
.y32{bottom:364.346667pt;}
.yf4{bottom:364.666667pt;}
.y69{bottom:365.946667pt;}
.y121{bottom:372.666667pt;}
.y143{bottom:373.786667pt;}
.yf3{bottom:380.506667pt;}
.yd6{bottom:381.466667pt;}
.ya2{bottom:381.786667pt;}
.y68{bottom:381.946667pt;}
.y1e{bottom:385.466667pt;}
.y142{bottom:389.626667pt;}
.y31{bottom:389.946667pt;}
.yf2{bottom:396.386667pt;}
.y120{bottom:396.546667pt;}
.ya1{bottom:397.666667pt;}
.y67{bottom:397.826667pt;}
.yd5{bottom:405.346667pt;}
.y141{bottom:405.506667pt;}
.y1d{bottom:409.346667pt;}
.yf1{bottom:412.386667pt;}
.ya0{bottom:413.186667pt;}
.y177{bottom:413.506667pt;}
.y66{bottom:413.666667pt;}
.y11f{bottom:420.386667pt;}
.yd4{bottom:421.346667pt;}
.y2e{bottom:425.346667pt;}
.yf0{bottom:428.226667pt;}
.y176{bottom:429.346667pt;}
.y65{bottom:429.506667pt;}
.y9f{bottom:431.106667pt;}
.y1c{bottom:433.186667pt;}
.y11e{bottom:436.386667pt;}
.yd3{bottom:437.186667pt;}
.y175{bottom:445.186667pt;}
.y64{bottom:445.346667pt;}
.yef{bottom:452.066667pt;}
.y11d{bottom:452.226667pt;}
.yd2{bottom:453.026667pt;}
.y140{bottom:453.186667pt;}
.y1b{bottom:457.186667pt;}
.y9e{bottom:460.386667pt;}
.y63{bottom:461.186667pt;}
.yee{bottom:467.906667pt;}
.y11c{bottom:468.066667pt;}
.yd1{bottom:468.866667pt;}
.y13f{bottom:469.026667pt;}
.y9d{bottom:476.226667pt;}
.y168{bottom:477.026667pt;}
.y62{bottom:477.186667pt;}
.y1a{bottom:480.706667pt;}
.y20{bottom:481.026667pt;}
.yed{bottom:483.746667pt;}
.y11b{bottom:483.906667pt;}
.yd0{bottom:484.706667pt;}
.y13e{bottom:484.866667pt;}
.y9c{bottom:492.066667pt;}
.y167{bottom:492.866667pt;}
.y61{bottom:493.026667pt;}
.yec{bottom:499.586667pt;}
.y11a{bottom:499.746667pt;}
.ycf{bottom:500.546667pt;}
.y19{bottom:505.986667pt;}
.y9b{bottom:507.906667pt;}
.y13d{bottom:508.706667pt;}
.yeb{bottom:515.586667pt;}
.yce{bottom:516.546667pt;}
.y166{bottom:516.706667pt;}
.y60{bottom:516.866667pt;}
.y9a{bottom:523.746667pt;}
.y13c{bottom:524.546667pt;}
.y18{bottom:529.346667pt;}
.yea{bottom:531.426667pt;}
.ycd{bottom:532.386667pt;}
.y165{bottom:532.546667pt;}
.y5f{bottom:532.706667pt;}
.y99{bottom:539.586667pt;}
.y13b{bottom:540.546667pt;}
.ycc{bottom:548.226667pt;}
.y5e{bottom:548.546667pt;}
.ye9{bottom:555.266667pt;}
.y119{bottom:555.426667pt;}
.y98{bottom:555.586667pt;}
.y13a{bottom:556.386667pt;}
.y17{bottom:556.706667pt;}
.ycb{bottom:564.066667pt;}
.y164{bottom:564.386667pt;}
.y5d{bottom:564.546667pt;}
.y118{bottom:571.266667pt;}
.y97{bottom:571.426667pt;}
.y139{bottom:572.226667pt;}
.ye8{bottom:579.106667pt;}
.y163{bottom:580.226667pt;}
.y5c{bottom:580.386667pt;}
.yca{bottom:581.666667pt;}
.y117{bottom:587.106667pt;}
.y138{bottom:588.066667pt;}
.ye7{bottom:594.946667pt;}
.y96{bottom:595.266667pt;}
.y162{bottom:596.066667pt;}
.y5b{bottom:596.226667pt;}
.y116{bottom:602.973333pt;}
.y137{bottom:603.933333pt;}
.yc9{bottom:606.653333pt;}
.y16{bottom:606.973333pt;}
.y95{bottom:611.133333pt;}
.y161{bottom:611.933333pt;}
.y5a{bottom:612.093333pt;}
.y115{bottom:618.813333pt;}
.y136{bottom:619.773333pt;}
.y174{bottom:621.533333pt;}
.y94{bottom:626.973333pt;}
.y160{bottom:627.773333pt;}
.y59{bottom:627.933333pt;}
.y15{bottom:634.333333pt;}
.y114{bottom:634.813333pt;}
.y135{bottom:637.533333pt;}
.y93{bottom:642.813333pt;}
.y58{bottom:643.773333pt;}
.yc7{bottom:646.973333pt;}
.y173{bottom:650.813333pt;}
.y113{bottom:658.653333pt;}
.y92{bottom:658.813333pt;}
.y15f{bottom:659.613333pt;}
.y57{bottom:659.773333pt;}
.y14{bottom:666.653333pt;}
.y91{bottom:674.653333pt;}
.y56{bottom:675.613333pt;}
.y18d{bottom:679.933333pt;}
.y112{bottom:682.493333pt;}
.y15e{bottom:683.453333pt;}
.yc6{bottom:687.453333pt;}
.y90{bottom:690.493333pt;}
.y111{bottom:698.333333pt;}
.y18c{bottom:698.653333pt;}
.y15d{bottom:699.293333pt;}
.y55{bottom:699.453333pt;}
.y8f{bottom:706.333333pt;}
.y13{bottom:711.613333pt;}
.yc5{bottom:711.933333pt;}
.y110{bottom:714.173333pt;}
.y18b{bottom:714.493333pt;}
.y54{bottom:715.293333pt;}
.y8e{bottom:722.173333pt;}
.y15c{bottom:723.133333pt;}
.y10f{bottom:730.173333pt;}
.y18a{bottom:730.333333pt;}
.y53{bottom:731.133333pt;}
.y12{bottom:736.413333pt;}
.y15b{bottom:738.973333pt;}
.y134{bottom:746.013333pt;}
.y8d{bottom:746.173333pt;}
.y52{bottom:746.973333pt;}
.y10e{bottom:754.013333pt;}
.y15a{bottom:754.973333pt;}
.y133{bottom:761.853333pt;}
.y8c{bottom:762.013333pt;}
.y189{bottom:762.173333pt;}
.y51{bottom:762.973333pt;}
.y10d{bottom:769.853333pt;}
.y159{bottom:770.813333pt;}
.yc3{bottom:776.893333pt;}
.y11{bottom:777.373333pt;}
.y132{bottom:777.693333pt;}
.y8b{bottom:777.853333pt;}
.y188{bottom:778.013333pt;}
.y50{bottom:778.813333pt;}
.y10c{bottom:785.693333pt;}
.y158{bottom:786.653333pt;}
.y8a{bottom:793.693333pt;}
.y187{bottom:793.853333pt;}
.y4f{bottom:794.653333pt;}
.y10{bottom:799.773333pt;}
.yc1{bottom:801.373333pt;}
.y10b{bottom:801.533333pt;}
.y157{bottom:802.493333pt;}
.y89{bottom:809.573333pt;}
.y186{bottom:809.733333pt;}
.y4e{bottom:810.533333pt;}
.yf{bottom:817.413333pt;}
.y156{bottom:818.373333pt;}
.y88{bottom:825.413333pt;}
.y185{bottom:825.573333pt;}
.yc0{bottom:826.053333pt;}
.y4d{bottom:826.373333pt;}
.y10a{bottom:833.413333pt;}
.y155{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.y87{bottom:841.413333pt;}
.y4c{bottom:842.373333pt;}
.y109{bottom:849.253333pt;}
.y154{bottom:850.213333pt;}
.ybf{bottom:850.533333pt;}
.yd{bottom:852.453333pt;}
.y172{bottom:857.253333pt;}
.y184{bottom:857.413333pt;}
.y131{bottom:865.093333pt;}
.y86{bottom:865.253333pt;}
.y153{bottom:866.053333pt;}
.y4b{bottom:866.213333pt;}
.yc{bottom:870.373333pt;}
.y108{bottom:873.093333pt;}
.y183{bottom:873.253333pt;}
.ybd{bottom:875.013333pt;}
.y130{bottom:880.933333pt;}
.y85{bottom:881.093333pt;}
.y152{bottom:881.893333pt;}
.y4a{bottom:882.053333pt;}
.y107{bottom:888.933333pt;}
.y182{bottom:889.093333pt;}
.y84{bottom:896.933333pt;}
.y49{bottom:897.893333pt;}
.ybc{bottom:904.613333pt;}
.y106{bottom:904.773333pt;}
.y181{bottom:904.933333pt;}
.y151{bottom:905.733333pt;}
.yb{bottom:905.893333pt;}
.y83{bottom:912.773333pt;}
.y48{bottom:913.733333pt;}
.ya{bottom:916.613333pt;}
.yb5{bottom:920.453333pt;}
.y105{bottom:920.773333pt;}
.ybb{bottom:923.333333pt;}
.y9{bottom:927.333333pt;}
.y82{bottom:928.773333pt;}
.y47{bottom:929.573333pt;}
.y104{bottom:936.613333pt;}
.y180{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.yb4{bottom:944.293333pt;}
.y81{bottom:944.613333pt;}
.y46{bottom:945.573333pt;}
.y7{bottom:951.013333pt;}
.yba{bottom:952.453333pt;}
.y171{bottom:952.613333pt;}
.y80{bottom:960.453333pt;}
.y45{bottom:961.413333pt;}
.yb3{bottom:968.133333pt;}
.yb9{bottom:968.293333pt;}
.y170{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.y7f{bottom:976.293333pt;}
.y44{bottom:977.253333pt;}
.yb8{bottom:984.133333pt;}
.y16f{bottom:984.293333pt;}
.yb2{bottom:991.973333pt;}
.y7e{bottom:992.133333pt;}
.y43{bottom:993.093333pt;}
.yb7{bottom:999.973333pt;}
.y16e{bottom:1000.133333pt;}
.y7d{bottom:1007.973333pt;}
.y42{bottom:1008.933333pt;}
.yb6{bottom:1015.653333pt;}
.yb1{bottom:1015.973333pt;}
.y12f{bottom:1024.000000pt;}
.y41{bottom:1024.960000pt;}
.y7c{bottom:1032.000000pt;}
.yb0{bottom:1039.840000pt;}
.y40{bottom:1040.800000pt;}
.y7b{bottom:1047.840000pt;}
.y3f{bottom:1058.400000pt;}
.y7a{bottom:1063.680000pt;}
.h18{height:23.840000pt;}
.h19{height:23.872000pt;}
.h2{height:27.676000pt;}
.h15{height:33.515625pt;}
.h7{height:36.431250pt;}
.h1b{height:39.680000pt;}
.h1a{height:39.840000pt;}
.h3{height:47.109375pt;}
.hf{height:48.375000pt;}
.h17{height:49.336436pt;}
.h12{height:52.108438pt;}
.h8{height:52.134375pt;}
.h13{height:52.234000pt;}
.h16{height:52.526250pt;}
.hb{height:52.832812pt;}
.h9{height:53.535000pt;}
.h14{height:53.664000pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.hc{height:64.290000pt;}
.h10{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h11{height:310.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w6{width:79.840000pt;}
.w7{width:125.312000pt;}
.w5{width:190.302667pt;}
.w8{width:302.613333pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.716000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x12{left:34.080000pt;}
.x1{left:40.324000pt;}
.x14{left:43.680000pt;}
.x1c{left:46.884000pt;}
.x5{left:48.000000pt;}
.x18{left:53.952000pt;}
.xb{left:60.320000pt;}
.x17{left:61.472000pt;}
.x16{left:65.152000pt;}
.x1a{left:72.000000pt;}
.x19{left:76.992000pt;}
.x15{left:82.272000pt;}
.x20{left:96.032000pt;}
.xd{left:133.312000pt;}
.x2{left:197.662667pt;}
.x1e{left:237.826667pt;}
.xe{left:239.586667pt;}
.xf{left:244.866667pt;}
.x8{left:250.466667pt;}
.xc{left:251.746667pt;}
.x6{left:253.986667pt;}
.x9{left:256.866667pt;}
.x10{left:279.426667pt;}
.x1f{left:318.466667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x11{left:420.893333pt;}
.x1b{left:444.893333pt;}
.x21{left:468.893333pt;}
.x4{left:682.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  