
    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_0e14f4faf03293a6fd9e9169.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3881b11cdacc3a7b86aea268.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_45c9987e89c8d983efd86668.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4e4ff688be30197cc5de992f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fd84a918fdced592bff13259.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a04fb77438a28ff47317701.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.666000px;}
.ls16{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.513600px;}
.ls2{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.774000px;}
.ls12{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.440000px;}
.ls11{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.714000px;}
.wsd{word-spacing:-15.453600px;}
.ws9{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws6{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1650.349440px;}
._a{margin-left:-1613.091360px;}
._4{margin-left:-1170.942000px;}
._9{margin-left:-900.840000px;}
._6{margin-left:-805.946400px;}
._7{margin-left:-665.712000px;}
._5{margin-left:-484.799040px;}
._8{margin-left:-33.120000px;}
._75{margin-left:-14.489280px;}
._c{margin-left:-7.090560px;}
._b{margin-left:-5.343840px;}
._14{margin-left:-3.712320px;}
._e{margin-left:-2.158560px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._d{width:2.333040px;}
._11{width:4.301280px;}
._15{width:5.318640px;}
._12{width:6.334560px;}
._13{width:7.809600px;}
._10{width:9.143280px;}
._f{width:10.911120px;}
._1a{width:11.935440px;}
._16{width:12.967920px;}
._18{width:15.981840px;}
._17{width:17.782560px;}
._27{width:18.995760px;}
._25{width:20.236320px;}
._21{width:21.340080px;}
._24{width:22.344480px;}
._3c{width:23.369520px;}
._29{width:25.099200px;}
._23{width:26.234640px;}
._19{width:27.907920px;}
._22{width:28.983600px;}
._35{width:29.985120px;}
._1f{width:31.254480px;}
._20{width:32.628960px;}
._2b{width:33.644880px;}
._2c{width:35.310960px;}
._1e{width:36.996240px;}
._1d{width:38.126880px;}
._32{width:39.792960px;}
._3a{width:40.904640px;}
._36{width:42.138000px;}
._1b{width:43.505280px;}
._3d{width:44.812800px;}
._1c{width:46.732320px;}
._28{width:48.106800px;}
._2a{width:49.899600px;}
._3b{width:51.183360px;}
._2d{width:52.462080px;}
._2e{width:53.683680px;}
._49{width:54.979200px;}
._4c{width:56.040480px;}
._34{width:57.070800px;}
._33{width:58.624560px;}
._4f{width:59.881680px;}
._37{width:60.955200px;}
._2f{width:62.508960px;}
._30{width:63.995760px;}
._3f{width:65.377440px;}
._53{width:66.512880px;}
._31{width:67.528800px;}
._52{width:69.381360px;}
._48{width:70.576560px;}
._46{width:72.190080px;}
._55{width:73.257840px;}
._47{width:74.819520px;}
._5b{width:76.296240px;}
._3e{width:77.747760px;}
._4e{width:79.301520px;}
._66{width:80.549280px;}
._65{width:81.684720px;}
._51{width:83.873280px;}
._56{width:85.531920px;}
._4a{width:86.711760px;}
._4b{width:87.727680px;}
._59{width:89.699760px;}
._57{width:91.067040px;}
._67{width:92.329200px;}
._50{width:93.576960px;}
._4d{width:95.914800px;}
._26{width:97.528320px;}
._5d{width:99.306720px;}
._6e{width:107.546400px;}
._78{width:110.137680px;}
._58{width:112.647600px;}
._5c{width:117.547920px;}
._44{width:119.094480px;}
._85{width:120.228240px;}
._40{width:121.432320px;}
._5e{width:122.627520px;}
._39{width:123.815520px;}
._54{width:125.010720px;}
._6f{width:127.229040px;}
._38{width:128.723040px;}
._7d{width:129.851280px;}
._7c{width:130.874400px;}
._74{width:134.460000px;}
._61{width:135.946800px;}
._62{width:137.561520px;}
._68{width:139.120080px;}
._7f{width:144.380160px;}
._41{width:146.292480px;}
._73{width:151.465680px;}
._77{width:153.045360px;}
._43{width:155.196720px;}
._6a{width:161.404560px;}
._69{width:162.427680px;}
._82{width:163.622880px;}
._45{width:225.534240px;}
._42{width:243.402480px;}
._63{width:272.438640px;}
._64{width:283.023360px;}
._5a{width:287.139600px;}
._6b{width:297.903600px;}
._7e{width:309.437280px;}
._71{width:313.261920px;}
._81{width:318.819600px;}
._70{width:326.110320px;}
._6c{width:339.675840px;}
._79{width:353.413440px;}
._7a{width:354.558720px;}
._83{width:400.392000px;}
._5f{width:771.740640px;}
._60{width:817.269600px;}
._7b{width:837.235440px;}
._76{width:862.277040px;}
._80{width:891.320400px;}
._72{width:951.797520px;}
._6d{width:972.347760px;}
._84{width:1002.892320px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:5.760000px;}
.y8{bottom:5.940000px;}
.yb5{bottom:6.120000px;}
.y7{bottom:6.300000px;}
.ya{bottom:11.196000px;}
.y9{bottom:11.916000px;}
.yf2{bottom:15.300000px;}
.yab{bottom:15.840000px;}
.yb7{bottom:16.020000px;}
.yb1{bottom:16.200000px;}
.yf0{bottom:25.200000px;}
.y108{bottom:25.230000px;}
.yae{bottom:25.740000px;}
.ya9{bottom:25.770000px;}
.yb4{bottom:26.100000px;}
.yff{bottom:34.740000px;}
.yf1{bottom:35.100000px;}
.y10b{bottom:35.130000px;}
.yfb{bottom:35.145000px;}
.ybb{bottom:35.640000px;}
.yb0{bottom:36.000000px;}
.yb{bottom:36.360000px;}
.y116{bottom:39.600000px;}
.y104{bottom:44.670000px;}
.yf5{bottom:44.685000px;}
.y107{bottom:45.030000px;}
.yf8{bottom:45.045000px;}
.yad{bottom:45.540000px;}
.yb3{bottom:45.900000px;}
.y10f{bottom:49.140000px;}
.y112{bottom:49.500000px;}
.y6{bottom:52.920000px;}
.yfe{bottom:54.540000px;}
.y101{bottom:54.900000px;}
.y10a{bottom:54.930000px;}
.yfa{bottom:54.945000px;}
.yba{bottom:55.440000px;}
.yaf{bottom:55.800000px;}
.y115{bottom:59.400000px;}
.y103{bottom:64.470000px;}
.yf4{bottom:64.485000px;}
.y106{bottom:64.830000px;}
.yf7{bottom:64.845000px;}
.yb2{bottom:65.700000px;}
.y10e{bottom:69.120000px;}
.y111{bottom:69.480000px;}
.yfd{bottom:74.340000px;}
.y100{bottom:74.700000px;}
.y109{bottom:74.730000px;}
.yf9{bottom:74.745000px;}
.y3b{bottom:79.236000px;}
.y114{bottom:79.380000px;}
.ydf{bottom:81.036000px;}
.y12a{bottom:82.476000px;}
.ya5{bottom:83.556000px;}
.ya1{bottom:83.916000px;}
.y105{bottom:84.630000px;}
.yf6{bottom:84.645000px;}
.y10d{bottom:88.920000px;}
.y110{bottom:89.280000px;}
.y4d{bottom:90.036000px;}
.y143{bottom:92.916000px;}
.y152{bottom:94.356000px;}
.y85{bottom:94.716000px;}
.y3a{bottom:99.036000px;}
.y113{bottom:99.180000px;}
.yde{bottom:100.836000px;}
.y127{bottom:102.276000px;}
.ya0{bottom:103.716000px;}
.y4c{bottom:109.836000px;}
.y142{bottom:112.716000px;}
.y84{bottom:114.696000px;}
.y39{bottom:118.836000px;}
.ydd{bottom:120.636000px;}
.y126{bottom:122.256000px;}
.y9f{bottom:123.696000px;}
.y4b{bottom:129.636000px;}
.y141{bottom:132.696000px;}
.y83{bottom:134.496000px;}
.y38{bottom:138.636000px;}
.ydc{bottom:140.436000px;}
.y125{bottom:142.056000px;}
.y9e{bottom:143.496000px;}
.y4a{bottom:149.616000px;}
.y140{bottom:152.490000px;}
.y82{bottom:154.290000px;}
.y37{bottom:158.610000px;}
.ydb{bottom:160.230000px;}
.y124{bottom:161.850000px;}
.y9d{bottom:163.290000px;}
.y49{bottom:169.410000px;}
.y13f{bottom:172.290000px;}
.yea{bottom:173.730000px;}
.y81{bottom:174.090000px;}
.y36{bottom:178.410000px;}
.yda{bottom:180.210000px;}
.y123{bottom:181.650000px;}
.y9c{bottom:183.090000px;}
.y48{bottom:189.210000px;}
.y13e{bottom:192.090000px;}
.ye9{bottom:193.530000px;}
.y80{bottom:193.890000px;}
.y35{bottom:198.210000px;}
.yd9{bottom:200.010000px;}
.y122{bottom:201.450000px;}
.y9b{bottom:202.890000px;}
.y47{bottom:209.010000px;}
.y13d{bottom:211.890000px;}
.y7f{bottom:213.510000px;}
.y34{bottom:218.010000px;}
.yd8{bottom:219.810000px;}
.y121{bottom:221.430000px;}
.y9a{bottom:222.870000px;}
.y46{bottom:228.810000px;}
.y13c{bottom:231.870000px;}
.y14b{bottom:233.310000px;}
.y33{bottom:237.810000px;}
.yd7{bottom:239.610000px;}
.y120{bottom:241.230000px;}
.y7e{bottom:242.670000px;}
.y45{bottom:248.790000px;}
.y13b{bottom:251.670000px;}
.y32{bottom:257.790000px;}
.yd6{bottom:259.410000px;}
.y11f{bottom:261.030000px;}
.y7d{bottom:262.470000px;}
.y44{bottom:268.590000px;}
.y155{bottom:271.110000px;}
.y13a{bottom:271.470000px;}
.y31{bottom:277.590000px;}
.yd5{bottom:279.390000px;}
.y11e{bottom:280.830000px;}
.y7c{bottom:282.270000px;}
.y43{bottom:288.390000px;}
.y154{bottom:290.910000px;}
.y139{bottom:291.270000px;}
.y30{bottom:297.390000px;}
.yd4{bottom:299.190000px;}
.y11d{bottom:300.630000px;}
.y7b{bottom:302.070000px;}
.y42{bottom:308.190000px;}
.y153{bottom:310.710000px;}
.y138{bottom:311.070000px;}
.y2f{bottom:317.190000px;}
.yd3{bottom:318.990000px;}
.y11c{bottom:320.610000px;}
.y7a{bottom:322.050000px;}
.y41{bottom:328.035000px;}
.y137{bottom:331.095000px;}
.y2e{bottom:337.035000px;}
.yd2{bottom:338.835000px;}
.y11b{bottom:340.455000px;}
.y79{bottom:341.895000px;}
.y40{bottom:347.655000px;}
.y136{bottom:350.895000px;}
.y2d{bottom:357.015000px;}
.yd1{bottom:358.635000px;}
.y11a{bottom:360.255000px;}
.y78{bottom:361.695000px;}
.y135{bottom:370.695000px;}
.y2c{bottom:376.815000px;}
.yd0{bottom:378.615000px;}
.y119{bottom:379.695000px;}
.y129{bottom:380.055000px;}
.y77{bottom:381.495000px;}
.y134{bottom:390.495000px;}
.y2b{bottom:396.615000px;}
.ycf{bottom:398.415000px;}
.y118{bottom:399.495000px;}
.y128{bottom:399.855000px;}
.y76{bottom:401.295000px;}
.y133{bottom:410.295000px;}
.y2a{bottom:416.415000px;}
.yce{bottom:418.215000px;}
.y117{bottom:419.835000px;}
.y75{bottom:421.275000px;}
.y132{bottom:430.275000px;}
.y29{bottom:436.215000px;}
.y10c{bottom:437.655000px;}
.ycd{bottom:438.015000px;}
.y74{bottom:441.075000px;}
.y14f{bottom:449.715000px;}
.y131{bottom:450.075000px;}
.y28{bottom:456.195000px;}
.ycc{bottom:457.815000px;}
.y73{bottom:460.875000px;}
.y14e{bottom:469.515000px;}
.y130{bottom:469.875000px;}
.y27{bottom:475.995000px;}
.ycb{bottom:477.795000px;}
.y99{bottom:480.315000px;}
.y72{bottom:480.675000px;}
.y12f{bottom:489.315000px;}
.y14d{bottom:489.675000px;}
.y26{bottom:495.795000px;}
.yca{bottom:497.595000px;}
.y98{bottom:500.115000px;}
.y71{bottom:500.475000px;}
.y12e{bottom:509.115000px;}
.y14c{bottom:509.475000px;}
.y25{bottom:515.595000px;}
.yc9{bottom:517.395000px;}
.y97{bottom:520.095000px;}
.y70{bottom:520.455000px;}
.y12d{bottom:529.455000px;}
.y24{bottom:535.395000px;}
.yc8{bottom:537.195000px;}
.y96{bottom:539.895000px;}
.y6f{bottom:540.255000px;}
.y12c{bottom:549.255000px;}
.y23{bottom:555.375000px;}
.yc7{bottom:556.995000px;}
.y6e{bottom:560.055000px;}
.yed{bottom:569.055000px;}
.y22{bottom:574.815000px;}
.y3f{bottom:575.175000px;}
.yc6{bottom:576.975000px;}
.y6d{bottom:579.855000px;}
.yec{bottom:588.855000px;}
.y102{bottom:589.215000px;}
.y21{bottom:594.615000px;}
.y3e{bottom:594.975000px;}
.yc5{bottom:596.805000px;}
.y6c{bottom:599.325000px;}
.y95{bottom:599.685000px;}
.yeb{bottom:608.685000px;}
.y20{bottom:614.445000px;}
.y3d{bottom:614.805000px;}
.yc4{bottom:616.605000px;}
.y94{bottom:619.665000px;}
.y6b{bottom:628.665000px;}
.y1f{bottom:634.245000px;}
.y3c{bottom:634.605000px;}
.yc3{bottom:636.405000px;}
.y93{bottom:639.465000px;}
.y6a{bottom:648.465000px;}
.y1e{bottom:654.585000px;}
.ye4{bottom:655.845000px;}
.yc2{bottom:656.205000px;}
.y151{bottom:658.905000px;}
.y92{bottom:659.265000px;}
.y69{bottom:668.265000px;}
.y1d{bottom:674.385000px;}
.ye3{bottom:675.825000px;}
.yc1{bottom:676.185000px;}
.y150{bottom:678.705000px;}
.y91{bottom:679.065000px;}
.y68{bottom:688.065000px;}
.ye2{bottom:695.625000px;}
.yc0{bottom:695.985000px;}
.y1c{bottom:696.345000px;}
.ya2{bottom:698.505000px;}
.y90{bottom:698.865000px;}
.y67{bottom:707.865000px;}
.yfc{bottom:711.645000px;}
.ybf{bottom:715.785000px;}
.y1b{bottom:716.325000px;}
.y8f{bottom:718.845000px;}
.y66{bottom:727.845000px;}
.ybe{bottom:735.225000px;}
.ye1{bottom:735.585000px;}
.y1a{bottom:736.125000px;}
.y145{bottom:738.285000px;}
.y8e{bottom:738.645000px;}
.y65{bottom:747.645000px;}
.ybd{bottom:755.025000px;}
.ye0{bottom:755.385000px;}
.y19{bottom:755.925000px;}
.y144{bottom:758.085000px;}
.y8d{bottom:758.445000px;}
.y64{bottom:767.445000px;}
.ybc{bottom:775.365000px;}
.y18{bottom:775.725000px;}
.y8c{bottom:778.245000px;}
.y63{bottom:787.245000px;}
.yb9{bottom:793.005000px;}
.y17{bottom:795.525000px;}
.y8b{bottom:798.045000px;}
.y62{bottom:807.045000px;}
.y16{bottom:815.505000px;}
.y8a{bottom:818.025000px;}
.y61{bottom:827.025000px;}
.yf3{bottom:834.045000px;}
.y15{bottom:835.305000px;}
.y89{bottom:837.825000px;}
.y60{bottom:846.825000px;}
.y14{bottom:855.105000px;}
.y88{bottom:857.625000px;}
.y5f{bottom:866.670000px;}
.y13{bottom:875.130000px;}
.y87{bottom:877.470000px;}
.yb8{bottom:877.650000px;}
.y5e{bottom:886.470000px;}
.y12{bottom:895.830000px;}
.y86{bottom:896.910000px;}
.ya4{bottom:897.270000px;}
.y5d{bottom:906.270000px;}
.ya3{bottom:916.890000px;}
.ye8{bottom:917.250000px;}
.y11{bottom:918.150000px;}
.y5c{bottom:926.250000px;}
.ye7{bottom:937.050000px;}
.y10{bottom:937.950000px;}
.yb6{bottom:942.450000px;}
.y5b{bottom:946.050000px;}
.yf{bottom:953.070000px;}
.ye6{bottom:956.490000px;}
.y14a{bottom:956.850000px;}
.y5a{bottom:965.850000px;}
.ye{bottom:973.050000px;}
.ye5{bottom:976.290000px;}
.y149{bottom:976.650000px;}
.y59{bottom:985.650000px;}
.yd{bottom:993.570000px;}
.y148{bottom:996.450000px;}
.y58{bottom:1005.450000px;}
.y147{bottom:1016.430000px;}
.yef{bottom:1025.070000px;}
.yc{bottom:1025.250000px;}
.y57{bottom:1025.430000px;}
.yac{bottom:1027.770000px;}
.y146{bottom:1035.870000px;}
.yee{bottom:1044.870000px;}
.y56{bottom:1045.230000px;}
.y5{bottom:1054.590000px;}
.y55{bottom:1065.030000px;}
.y54{bottom:1084.830000px;}
.y4{bottom:1088.070000px;}
.y53{bottom:1104.630000px;}
.ya8{bottom:1112.370000px;}
.y3{bottom:1119.030000px;}
.y52{bottom:1124.610000px;}
.y156{bottom:1144.080000px;}
.y51{bottom:1144.440000px;}
.y2{bottom:1149.840000px;}
.y12b{bottom:1163.880000px;}
.y50{bottom:1164.240000px;}
.ya7{bottom:1171.800000px;}
.y1{bottom:1181.700000px;}
.y4f{bottom:1193.400000px;}
.ya6{bottom:1193.580000px;}
.y4e{bottom:1215.180000px;}
.h5{height:21.276000px;}
.h6{height:29.464453px;}
.hd{height:37.771172px;}
.h7{height:39.183750px;}
.h14{height:39.816000px;}
.h11{height:42.164648px;}
.h13{height:46.736719px;}
.he{height:47.344922px;}
.hb{height:48.616875px;}
.h12{height:52.319180px;}
.h18{height:58.500000px;}
.h10{height:58.651172px;}
.h16{height:59.580000px;}
.hf{height:60.226875px;}
.h1c{height:61.423863px;}
.h4{height:65.010937px;}
.hc{height:65.846250px;}
.h3{height:66.757500px;}
.h9{height:67.565039px;}
.h8{height:74.004654px;}
.h2{height:78.367500px;}
.h15{height:79.380000px;}
.h17{height:79.416000px;}
.ha{height:96.508125px;}
.h1a{height:117.180000px;}
.h19{height:117.216000px;}
.h1b{height:146.340000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w9{width:112.140000px;}
.w5{width:119.016000px;}
.wa{width:176.610000px;}
.wc{width:185.430000px;}
.wb{width:213.150000px;}
.w8{width:216.390000px;}
.w7{width:216.570000px;}
.w6{width:217.290000px;}
.w4{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.080000px;}
.x8{left:2.700000px;}
.x17{left:4.680000px;}
.x1f{left:5.760000px;}
.x3{left:8.100000px;}
.x19{left:9.720000px;}
.x26{left:11.340000px;}
.x24{left:12.600000px;}
.x25{left:15.300000px;}
.x1d{left:18.180000px;}
.x2a{left:19.260000px;}
.x28{left:22.140000px;}
.x21{left:25.380000px;}
.x22{left:26.460000px;}
.x27{left:28.800000px;}
.x2c{left:30.240000px;}
.x20{left:31.860000px;}
.x2b{left:34.560000px;}
.x1b{left:45.900000px;}
.x1e{left:48.420000px;}
.x1{left:54.179987px;}
.x11{left:57.420000px;}
.x23{left:60.660000px;}
.x2{left:62.100000px;}
.x10{left:66.419987px;}
.x2d{left:69.885000px;}
.x29{left:79.020000px;}
.x30{left:80.999987px;}
.x9{left:90.899987px;}
.x16{left:98.316000px;}
.x31{left:108.035987px;}
.x4{left:118.296000px;}
.x13{left:179.490000px;}
.xd{left:198.929987px;}
.xa{left:211.709987px;}
.x18{left:213.510000px;}
.xb{left:223.409987px;}
.xc{left:353.954987px;}
.x1a{left:393.195000px;}
.x14{left:399.675000px;}
.x7{left:411.009000px;}
.x6{left:415.149000px;}
.xe{left:446.474987px;}
.xf{left:473.504987px;}
.x2e{left:500.504987px;}
.x2f{left:527.504987px;}
.x1c{left:609.405000px;}
.x15{left:619.305000px;}
.x5{left:629.934000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.592000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.456533pt;}
.ls2{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.688000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.240000pt;}
.wsa{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.968000pt;}
.wsd{word-spacing:-13.736533pt;}
.ws9{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws6{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1466.977280pt;}
._a{margin-left:-1433.858987pt;}
._4{margin-left:-1040.837333pt;}
._9{margin-left:-800.746667pt;}
._6{margin-left:-716.396800pt;}
._7{margin-left:-591.744000pt;}
._5{margin-left:-430.932480pt;}
._8{margin-left:-29.440000pt;}
._75{margin-left:-12.879360pt;}
._c{margin-left:-6.302720pt;}
._b{margin-left:-4.750080pt;}
._14{margin-left:-3.299840pt;}
._e{margin-left:-1.918720pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._d{width:2.073813pt;}
._11{width:3.823360pt;}
._15{width:4.727680pt;}
._12{width:5.630720pt;}
._13{width:6.941867pt;}
._10{width:8.127360pt;}
._f{width:9.698773pt;}
._1a{width:10.609280pt;}
._16{width:11.527040pt;}
._18{width:14.206080pt;}
._17{width:15.806720pt;}
._27{width:16.885120pt;}
._25{width:17.987840pt;}
._21{width:18.968960pt;}
._24{width:19.861760pt;}
._3c{width:20.772907pt;}
._29{width:22.310400pt;}
._23{width:23.319680pt;}
._19{width:24.807040pt;}
._22{width:25.763200pt;}
._35{width:26.653440pt;}
._1f{width:27.781760pt;}
._20{width:29.003520pt;}
._2b{width:29.906560pt;}
._2c{width:31.387520pt;}
._1e{width:32.885547pt;}
._1d{width:33.890560pt;}
._32{width:35.371520pt;}
._3a{width:36.359680pt;}
._36{width:37.456000pt;}
._1b{width:38.671360pt;}
._3d{width:39.833600pt;}
._1c{width:41.539840pt;}
._28{width:42.761600pt;}
._2a{width:44.355200pt;}
._3b{width:45.496320pt;}
._2d{width:46.632960pt;}
._2e{width:47.718827pt;}
._49{width:48.870400pt;}
._4c{width:49.813760pt;}
._34{width:50.729600pt;}
._33{width:52.110720pt;}
._4f{width:53.228160pt;}
._37{width:54.182400pt;}
._2f{width:55.563520pt;}
._30{width:56.885120pt;}
._3f{width:58.113280pt;}
._53{width:59.122560pt;}
._31{width:60.025600pt;}
._52{width:61.672320pt;}
._48{width:62.734720pt;}
._46{width:64.168960pt;}
._55{width:65.118080pt;}
._47{width:66.506240pt;}
._5b{width:67.818880pt;}
._3e{width:69.109120pt;}
._4e{width:70.490240pt;}
._66{width:71.599360pt;}
._65{width:72.608640pt;}
._51{width:74.554027pt;}
._56{width:76.028373pt;}
._4a{width:77.077120pt;}
._4b{width:77.980160pt;}
._59{width:79.733120pt;}
._57{width:80.948480pt;}
._67{width:82.070400pt;}
._50{width:83.179520pt;}
._4d{width:85.257600pt;}
._26{width:86.691840pt;}
._5d{width:88.272640pt;}
._6e{width:95.596800pt;}
._78{width:97.900160pt;}
._58{width:100.131200pt;}
._5c{width:104.487040pt;}
._44{width:105.861760pt;}
._85{width:106.869547pt;}
._40{width:107.939840pt;}
._5e{width:109.002240pt;}
._39{width:110.058240pt;}
._54{width:111.120640pt;}
._6f{width:113.092480pt;}
._38{width:114.420480pt;}
._7d{width:115.423360pt;}
._7c{width:116.332800pt;}
._74{width:119.520000pt;}
._61{width:120.841600pt;}
._62{width:122.276907pt;}
._68{width:123.662293pt;}
._7f{width:128.337920pt;}
._41{width:130.037760pt;}
._73{width:134.636160pt;}
._77{width:136.040320pt;}
._43{width:137.952640pt;}
._6a{width:143.470720pt;}
._69{width:144.380160pt;}
._82{width:145.442560pt;}
._45{width:200.474880pt;}
._42{width:216.357760pt;}
._63{width:242.167680pt;}
._64{width:251.576320pt;}
._5a{width:255.235200pt;}
._6b{width:264.803200pt;}
._7e{width:275.055360pt;}
._71{width:278.455040pt;}
._81{width:283.395200pt;}
._70{width:289.875840pt;}
._6c{width:301.934080pt;}
._79{width:314.145280pt;}
._7a{width:315.163307pt;}
._83{width:355.904000pt;}
._5f{width:685.991680pt;}
._60{width:726.461867pt;}
._7b{width:744.209280pt;}
._76{width:766.468480pt;}
._80{width:792.284800pt;}
._72{width:846.042240pt;}
._6d{width:864.309120pt;}
._84{width:891.459840pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:5.120000pt;}
.y8{bottom:5.280000pt;}
.yb5{bottom:5.440000pt;}
.y7{bottom:5.600000pt;}
.ya{bottom:9.952000pt;}
.y9{bottom:10.592000pt;}
.yf2{bottom:13.600000pt;}
.yab{bottom:14.080000pt;}
.yb7{bottom:14.240000pt;}
.yb1{bottom:14.400000pt;}
.yf0{bottom:22.400000pt;}
.y108{bottom:22.426667pt;}
.yae{bottom:22.880000pt;}
.ya9{bottom:22.906667pt;}
.yb4{bottom:23.200000pt;}
.yff{bottom:30.880000pt;}
.yf1{bottom:31.200000pt;}
.y10b{bottom:31.226667pt;}
.yfb{bottom:31.240000pt;}
.ybb{bottom:31.680000pt;}
.yb0{bottom:32.000000pt;}
.yb{bottom:32.320000pt;}
.y116{bottom:35.200000pt;}
.y104{bottom:39.706667pt;}
.yf5{bottom:39.720000pt;}
.y107{bottom:40.026667pt;}
.yf8{bottom:40.040000pt;}
.yad{bottom:40.480000pt;}
.yb3{bottom:40.800000pt;}
.y10f{bottom:43.680000pt;}
.y112{bottom:44.000000pt;}
.y6{bottom:47.040000pt;}
.yfe{bottom:48.480000pt;}
.y101{bottom:48.800000pt;}
.y10a{bottom:48.826667pt;}
.yfa{bottom:48.840000pt;}
.yba{bottom:49.280000pt;}
.yaf{bottom:49.600000pt;}
.y115{bottom:52.800000pt;}
.y103{bottom:57.306667pt;}
.yf4{bottom:57.320000pt;}
.y106{bottom:57.626667pt;}
.yf7{bottom:57.640000pt;}
.yb2{bottom:58.400000pt;}
.y10e{bottom:61.440000pt;}
.y111{bottom:61.760000pt;}
.yfd{bottom:66.080000pt;}
.y100{bottom:66.400000pt;}
.y109{bottom:66.426667pt;}
.yf9{bottom:66.440000pt;}
.y3b{bottom:70.432000pt;}
.y114{bottom:70.560000pt;}
.ydf{bottom:72.032000pt;}
.y12a{bottom:73.312000pt;}
.ya5{bottom:74.272000pt;}
.ya1{bottom:74.592000pt;}
.y105{bottom:75.226667pt;}
.yf6{bottom:75.240000pt;}
.y10d{bottom:79.040000pt;}
.y110{bottom:79.360000pt;}
.y4d{bottom:80.032000pt;}
.y143{bottom:82.592000pt;}
.y152{bottom:83.872000pt;}
.y85{bottom:84.192000pt;}
.y3a{bottom:88.032000pt;}
.y113{bottom:88.160000pt;}
.yde{bottom:89.632000pt;}
.y127{bottom:90.912000pt;}
.ya0{bottom:92.192000pt;}
.y4c{bottom:97.632000pt;}
.y142{bottom:100.192000pt;}
.y84{bottom:101.952000pt;}
.y39{bottom:105.632000pt;}
.ydd{bottom:107.232000pt;}
.y126{bottom:108.672000pt;}
.y9f{bottom:109.952000pt;}
.y4b{bottom:115.232000pt;}
.y141{bottom:117.952000pt;}
.y83{bottom:119.552000pt;}
.y38{bottom:123.232000pt;}
.ydc{bottom:124.832000pt;}
.y125{bottom:126.272000pt;}
.y9e{bottom:127.552000pt;}
.y4a{bottom:132.992000pt;}
.y140{bottom:135.546667pt;}
.y82{bottom:137.146667pt;}
.y37{bottom:140.986667pt;}
.ydb{bottom:142.426667pt;}
.y124{bottom:143.866667pt;}
.y9d{bottom:145.146667pt;}
.y49{bottom:150.586667pt;}
.y13f{bottom:153.146667pt;}
.yea{bottom:154.426667pt;}
.y81{bottom:154.746667pt;}
.y36{bottom:158.586667pt;}
.yda{bottom:160.186667pt;}
.y123{bottom:161.466667pt;}
.y9c{bottom:162.746667pt;}
.y48{bottom:168.186667pt;}
.y13e{bottom:170.746667pt;}
.ye9{bottom:172.026667pt;}
.y80{bottom:172.346667pt;}
.y35{bottom:176.186667pt;}
.yd9{bottom:177.786667pt;}
.y122{bottom:179.066667pt;}
.y9b{bottom:180.346667pt;}
.y47{bottom:185.786667pt;}
.y13d{bottom:188.346667pt;}
.y7f{bottom:189.786667pt;}
.y34{bottom:193.786667pt;}
.yd8{bottom:195.386667pt;}
.y121{bottom:196.826667pt;}
.y9a{bottom:198.106667pt;}
.y46{bottom:203.386667pt;}
.y13c{bottom:206.106667pt;}
.y14b{bottom:207.386667pt;}
.y33{bottom:211.386667pt;}
.yd7{bottom:212.986667pt;}
.y120{bottom:214.426667pt;}
.y7e{bottom:215.706667pt;}
.y45{bottom:221.146667pt;}
.y13b{bottom:223.706667pt;}
.y32{bottom:229.146667pt;}
.yd6{bottom:230.586667pt;}
.y11f{bottom:232.026667pt;}
.y7d{bottom:233.306667pt;}
.y44{bottom:238.746667pt;}
.y155{bottom:240.986667pt;}
.y13a{bottom:241.306667pt;}
.y31{bottom:246.746667pt;}
.yd5{bottom:248.346667pt;}
.y11e{bottom:249.626667pt;}
.y7c{bottom:250.906667pt;}
.y43{bottom:256.346667pt;}
.y154{bottom:258.586667pt;}
.y139{bottom:258.906667pt;}
.y30{bottom:264.346667pt;}
.yd4{bottom:265.946667pt;}
.y11d{bottom:267.226667pt;}
.y7b{bottom:268.506667pt;}
.y42{bottom:273.946667pt;}
.y153{bottom:276.186667pt;}
.y138{bottom:276.506667pt;}
.y2f{bottom:281.946667pt;}
.yd3{bottom:283.546667pt;}
.y11c{bottom:284.986667pt;}
.y7a{bottom:286.266667pt;}
.y41{bottom:291.586667pt;}
.y137{bottom:294.306667pt;}
.y2e{bottom:299.586667pt;}
.yd2{bottom:301.186667pt;}
.y11b{bottom:302.626667pt;}
.y79{bottom:303.906667pt;}
.y40{bottom:309.026667pt;}
.y136{bottom:311.906667pt;}
.y2d{bottom:317.346667pt;}
.yd1{bottom:318.786667pt;}
.y11a{bottom:320.226667pt;}
.y78{bottom:321.506667pt;}
.y135{bottom:329.506667pt;}
.y2c{bottom:334.946667pt;}
.yd0{bottom:336.546667pt;}
.y119{bottom:337.506667pt;}
.y129{bottom:337.826667pt;}
.y77{bottom:339.106667pt;}
.y134{bottom:347.106667pt;}
.y2b{bottom:352.546667pt;}
.ycf{bottom:354.146667pt;}
.y118{bottom:355.106667pt;}
.y128{bottom:355.426667pt;}
.y76{bottom:356.706667pt;}
.y133{bottom:364.706667pt;}
.y2a{bottom:370.146667pt;}
.yce{bottom:371.746667pt;}
.y117{bottom:373.186667pt;}
.y75{bottom:374.466667pt;}
.y132{bottom:382.466667pt;}
.y29{bottom:387.746667pt;}
.y10c{bottom:389.026667pt;}
.ycd{bottom:389.346667pt;}
.y74{bottom:392.066667pt;}
.y14f{bottom:399.746667pt;}
.y131{bottom:400.066667pt;}
.y28{bottom:405.506667pt;}
.ycc{bottom:406.946667pt;}
.y73{bottom:409.666667pt;}
.y14e{bottom:417.346667pt;}
.y130{bottom:417.666667pt;}
.y27{bottom:423.106667pt;}
.ycb{bottom:424.706667pt;}
.y99{bottom:426.946667pt;}
.y72{bottom:427.266667pt;}
.y12f{bottom:434.946667pt;}
.y14d{bottom:435.266667pt;}
.y26{bottom:440.706667pt;}
.yca{bottom:442.306667pt;}
.y98{bottom:444.546667pt;}
.y71{bottom:444.866667pt;}
.y12e{bottom:452.546667pt;}
.y14c{bottom:452.866667pt;}
.y25{bottom:458.306667pt;}
.yc9{bottom:459.906667pt;}
.y97{bottom:462.306667pt;}
.y70{bottom:462.626667pt;}
.y12d{bottom:470.626667pt;}
.y24{bottom:475.906667pt;}
.yc8{bottom:477.506667pt;}
.y96{bottom:479.906667pt;}
.y6f{bottom:480.226667pt;}
.y12c{bottom:488.226667pt;}
.y23{bottom:493.666667pt;}
.yc7{bottom:495.106667pt;}
.y6e{bottom:497.826667pt;}
.yed{bottom:505.826667pt;}
.y22{bottom:510.946667pt;}
.y3f{bottom:511.266667pt;}
.yc6{bottom:512.866667pt;}
.y6d{bottom:515.426667pt;}
.yec{bottom:523.426667pt;}
.y102{bottom:523.746667pt;}
.y21{bottom:528.546667pt;}
.y3e{bottom:528.866667pt;}
.yc5{bottom:530.493333pt;}
.y6c{bottom:532.733333pt;}
.y95{bottom:533.053333pt;}
.yeb{bottom:541.053333pt;}
.y20{bottom:546.173333pt;}
.y3d{bottom:546.493333pt;}
.yc4{bottom:548.093333pt;}
.y94{bottom:550.813333pt;}
.y6b{bottom:558.813333pt;}
.y1f{bottom:563.773333pt;}
.y3c{bottom:564.093333pt;}
.yc3{bottom:565.693333pt;}
.y93{bottom:568.413333pt;}
.y6a{bottom:576.413333pt;}
.y1e{bottom:581.853333pt;}
.ye4{bottom:582.973333pt;}
.yc2{bottom:583.293333pt;}
.y151{bottom:585.693333pt;}
.y92{bottom:586.013333pt;}
.y69{bottom:594.013333pt;}
.y1d{bottom:599.453333pt;}
.ye3{bottom:600.733333pt;}
.yc1{bottom:601.053333pt;}
.y150{bottom:603.293333pt;}
.y91{bottom:603.613333pt;}
.y68{bottom:611.613333pt;}
.ye2{bottom:618.333333pt;}
.yc0{bottom:618.653333pt;}
.y1c{bottom:618.973333pt;}
.ya2{bottom:620.893333pt;}
.y90{bottom:621.213333pt;}
.y67{bottom:629.213333pt;}
.yfc{bottom:632.573333pt;}
.ybf{bottom:636.253333pt;}
.y1b{bottom:636.733333pt;}
.y8f{bottom:638.973333pt;}
.y66{bottom:646.973333pt;}
.ybe{bottom:653.533333pt;}
.ye1{bottom:653.853333pt;}
.y1a{bottom:654.333333pt;}
.y145{bottom:656.253333pt;}
.y8e{bottom:656.573333pt;}
.y65{bottom:664.573333pt;}
.ybd{bottom:671.133333pt;}
.ye0{bottom:671.453333pt;}
.y19{bottom:671.933333pt;}
.y144{bottom:673.853333pt;}
.y8d{bottom:674.173333pt;}
.y64{bottom:682.173333pt;}
.ybc{bottom:689.213333pt;}
.y18{bottom:689.533333pt;}
.y8c{bottom:691.773333pt;}
.y63{bottom:699.773333pt;}
.yb9{bottom:704.893333pt;}
.y17{bottom:707.133333pt;}
.y8b{bottom:709.373333pt;}
.y62{bottom:717.373333pt;}
.y16{bottom:724.893333pt;}
.y8a{bottom:727.133333pt;}
.y61{bottom:735.133333pt;}
.yf3{bottom:741.373333pt;}
.y15{bottom:742.493333pt;}
.y89{bottom:744.733333pt;}
.y60{bottom:752.733333pt;}
.y14{bottom:760.093333pt;}
.y88{bottom:762.333333pt;}
.y5f{bottom:770.373333pt;}
.y13{bottom:777.893333pt;}
.y87{bottom:779.973333pt;}
.yb8{bottom:780.133333pt;}
.y5e{bottom:787.973333pt;}
.y12{bottom:796.293333pt;}
.y86{bottom:797.253333pt;}
.ya4{bottom:797.573333pt;}
.y5d{bottom:805.573333pt;}
.ya3{bottom:815.013333pt;}
.ye8{bottom:815.333333pt;}
.y11{bottom:816.133333pt;}
.y5c{bottom:823.333333pt;}
.ye7{bottom:832.933333pt;}
.y10{bottom:833.733333pt;}
.yb6{bottom:837.733333pt;}
.y5b{bottom:840.933333pt;}
.yf{bottom:847.173333pt;}
.ye6{bottom:850.213333pt;}
.y14a{bottom:850.533333pt;}
.y5a{bottom:858.533333pt;}
.ye{bottom:864.933333pt;}
.ye5{bottom:867.813333pt;}
.y149{bottom:868.133333pt;}
.y59{bottom:876.133333pt;}
.yd{bottom:883.173333pt;}
.y148{bottom:885.733333pt;}
.y58{bottom:893.733333pt;}
.y147{bottom:903.493333pt;}
.yef{bottom:911.173333pt;}
.yc{bottom:911.333333pt;}
.y57{bottom:911.493333pt;}
.yac{bottom:913.573333pt;}
.y146{bottom:920.773333pt;}
.yee{bottom:928.773333pt;}
.y56{bottom:929.093333pt;}
.y5{bottom:937.413333pt;}
.y55{bottom:946.693333pt;}
.y54{bottom:964.293333pt;}
.y4{bottom:967.173333pt;}
.y53{bottom:981.893333pt;}
.ya8{bottom:988.773333pt;}
.y3{bottom:994.693333pt;}
.y52{bottom:999.653333pt;}
.y156{bottom:1016.960000pt;}
.y51{bottom:1017.280000pt;}
.y2{bottom:1022.080000pt;}
.y12b{bottom:1034.560000pt;}
.y50{bottom:1034.880000pt;}
.ya7{bottom:1041.600000pt;}
.y1{bottom:1050.400000pt;}
.y4f{bottom:1060.800000pt;}
.ya6{bottom:1060.960000pt;}
.y4e{bottom:1080.160000pt;}
.h5{height:18.912000pt;}
.h6{height:26.190625pt;}
.hd{height:33.574375pt;}
.h7{height:34.830000pt;}
.h14{height:35.392000pt;}
.h11{height:37.479688pt;}
.h13{height:41.543750pt;}
.he{height:42.084375pt;}
.hb{height:43.215000pt;}
.h12{height:46.505938pt;}
.h18{height:52.000000pt;}
.h10{height:52.134375pt;}
.h16{height:52.960000pt;}
.hf{height:53.535000pt;}
.h1c{height:54.598989pt;}
.h4{height:57.787500pt;}
.hc{height:58.530000pt;}
.h3{height:59.340000pt;}
.h9{height:60.057813pt;}
.h8{height:65.781915pt;}
.h2{height:69.660000pt;}
.h15{height:70.560000pt;}
.h17{height:70.592000pt;}
.ha{height:85.785000pt;}
.h1a{height:104.160000pt;}
.h19{height:104.192000pt;}
.h1b{height:130.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w9{width:99.680000pt;}
.w5{width:105.792000pt;}
.wa{width:156.986667pt;}
.wc{width:164.826667pt;}
.wb{width:189.466667pt;}
.w8{width:192.346667pt;}
.w7{width:192.506667pt;}
.w6{width:193.146667pt;}
.w4{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.960000pt;}
.x8{left:2.400000pt;}
.x17{left:4.160000pt;}
.x1f{left:5.120000pt;}
.x3{left:7.200000pt;}
.x19{left:8.640000pt;}
.x26{left:10.080000pt;}
.x24{left:11.200000pt;}
.x25{left:13.600000pt;}
.x1d{left:16.160000pt;}
.x2a{left:17.120000pt;}
.x28{left:19.680000pt;}
.x21{left:22.560000pt;}
.x22{left:23.520000pt;}
.x27{left:25.600000pt;}
.x2c{left:26.880000pt;}
.x20{left:28.320000pt;}
.x2b{left:30.720000pt;}
.x1b{left:40.800000pt;}
.x1e{left:43.040000pt;}
.x1{left:48.159988pt;}
.x11{left:51.040000pt;}
.x23{left:53.920000pt;}
.x2{left:55.200000pt;}
.x10{left:59.039988pt;}
.x2d{left:62.120000pt;}
.x29{left:70.240000pt;}
.x30{left:71.999988pt;}
.x9{left:80.799988pt;}
.x16{left:87.392000pt;}
.x31{left:96.031988pt;}
.x4{left:105.152000pt;}
.x13{left:159.546667pt;}
.xd{left:176.826655pt;}
.xa{left:188.186655pt;}
.x18{left:189.786667pt;}
.xb{left:198.586655pt;}
.xc{left:314.626655pt;}
.x1a{left:349.506667pt;}
.x14{left:355.266667pt;}
.x7{left:365.341333pt;}
.x6{left:369.021333pt;}
.xe{left:396.866655pt;}
.xf{left:420.893322pt;}
.x2e{left:444.893322pt;}
.x2f{left:468.893322pt;}
.x1c{left:541.693333pt;}
.x15{left:550.493333pt;}
.x5{left:559.941333pt;}
}




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