
    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_2ef2678167053933f89dff05.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_bd2ffd81690dae5064967609.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.747070;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_bb2ce45d0d4f717240fc3a32.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_59b5c8088a80d3e9fcf7dc5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7e2b6399c1a90b34c6820704.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_416c7a5f6f6623bdea804c27.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b2e35e22e023d3cec64dbd18.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;}
.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);}
.m2{transform:matrix(0.372100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,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:-84.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls24{letter-spacing:-5.832000px;}
.ls23{letter-spacing:-2.232000px;}
.ls3d{letter-spacing:-1.656000px;}
.ls22{letter-spacing:-1.584000px;}
.ls1d{letter-spacing:-1.512000px;}
.ls12{letter-spacing:-1.440000px;}
.ls3c{letter-spacing:-1.224000px;}
.ls3b{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.792000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls2b{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.350400px;}
.ls10{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.109200px;}
.ls1a{letter-spacing:0.144000px;}
.lse{letter-spacing:0.152400px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.305280px;}
.lsc{letter-spacing:0.341400px;}
.ls9{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.613440px;}
.ls1b{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls21{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.008000px;}
.ls3a{letter-spacing:1.440000px;}
.ls34{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.880000px;}
.ls33{letter-spacing:3.600000px;}
.ls32{letter-spacing:4.320000px;}
.ls31{letter-spacing:8.640000px;}
.ls1f{letter-spacing:10.080000px;}
.ls36{letter-spacing:12.240000px;}
.ls29{letter-spacing:17.280000px;}
.ls39{letter-spacing:18.720000px;}
.ls38{letter-spacing:19.440000px;}
.ls30{letter-spacing:25.920000px;}
.ls2f{letter-spacing:26.760000px;}
.ls2e{letter-spacing:30.240000px;}
.ls2d{letter-spacing:30.960000px;}
.ls35{letter-spacing:33.840000px;}
.ls28{letter-spacing:36.720000px;}
.ls37{letter-spacing:61.200000px;}
.ls27{letter-spacing:66.960000px;}
.ls2{letter-spacing:1858.596000px;}
.ls3{letter-spacing:2176.296000px;}
.ls1{letter-spacing:2223.096000px;}
.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;}
}
.ws2{word-spacing:-27.252000px;}
.ws4{word-spacing:-27.216000px;}
.ws3{word-spacing:-26.712000px;}
.ws5{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.401400px;}
.ws8{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.709600px;}
.ws6{word-spacing:-20.700000px;}
.ws13{word-spacing:-19.008000px;}
.wsf{word-spacing:-18.792000px;}
.ws19{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.432000px;}
.ws11{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.216000px;}
.ws15{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws22{word-spacing:-17.568000px;}
.ws23{word-spacing:-17.496000px;}
.ws14{word-spacing:-17.208000px;}
.ws24{word-spacing:-17.064000px;}
.ws25{word-spacing:-16.776000px;}
.wsd{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.488000px;}
.ws1c{word-spacing:-16.416000px;}
.ws26{word-spacing:-16.344000px;}
.wsc{word-spacing:-16.254600px;}
.ws1d{word-spacing:-15.768000px;}
.ws21{word-spacing:-15.552000px;}
.ws20{word-spacing:-14.940000px;}
.ws1f{word-spacing:-12.168000px;}
.ws1a{word-spacing:-12.060000px;}
.ws0{word-spacing:-0.063360px;}
.wsb{word-spacing:0.000000px;}
.ws1{word-spacing:0.047040px;}
._3{margin-left:-4.644000px;}
._2{margin-left:-3.624000px;}
._1a{margin-left:-2.593920px;}
._0{margin-left:-1.457280px;}
._1{width:1.557840px;}
._8{width:2.770080px;}
._7{width:3.908160px;}
._6{width:4.968000px;}
._5{width:6.228960px;}
._4{width:7.583280px;}
._9{width:8.590080px;}
._c{width:9.758400px;}
._d{width:10.800480px;}
._e{width:12.043680px;}
._a{width:13.416960px;}
._b{width:14.814960px;}
._17{width:16.087680px;}
._10{width:18.017280px;}
._13{width:19.474560px;}
._12{width:20.600640px;}
._11{width:21.726720px;}
._16{width:23.050560px;}
._19{width:24.120000px;}
._18{width:25.405440px;}
._15{width:26.697600px;}
._14{width:28.062720px;}
._1b{width:29.304000px;}
._1c{width:30.600720px;}
._1f{width:32.250000px;}
._22{width:33.528000px;}
._20{width:35.976000px;}
._21{width:37.692000px;}
._1e{width:42.398880px;}
._1d{width:43.649280px;}
._25{width:59.808000px;}
._26{width:61.471440px;}
._24{width:63.072000px;}
._23{width:191.095920px;}
._f{width:925.869600px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,9);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y90{bottom:-5.970000px;}
.y9c{bottom:-5.955000px;}
.y97{bottom:-5.760000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:3.765000px;}
.y88{bottom:4.140000px;}
.y9d{bottom:4.305000px;}
.y9f{bottom:4.485000px;}
.ya8{bottom:4.491000px;}
.y8c{bottom:4.500000px;}
.yc5{bottom:5.565000px;}
.yb6{bottom:5.580000px;}
.yc3{bottom:5.610000px;}
.y86{bottom:14.580000px;}
.ya1{bottom:14.745000px;}
.y8a{bottom:14.760000px;}
.ya4{bottom:14.925000px;}
.y94{bottom:14.940000px;}
.y87{bottom:24.840000px;}
.ya0{bottom:25.185000px;}
.y8b{bottom:25.200000px;}
.y4{bottom:57.960000px;}
.y80{bottom:117.540000px;}
.yb0{bottom:118.260000px;}
.ydf{bottom:119.880000px;}
.ya9{bottom:123.300000px;}
.yd2{bottom:128.880000px;}
.y2f{bottom:130.320000px;}
.y59{bottom:132.480000px;}
.ya7{bottom:140.265000px;}
.y12b{bottom:140.976000px;}
.y7f{bottom:148.536000px;}
.y2e{bottom:149.256000px;}
.yaf{bottom:149.436000px;}
.yd1{bottom:149.616000px;}
.yde{bottom:150.870000px;}
.y12a{bottom:161.670000px;}
.ya6{bottom:161.685000px;}
.ye8{bottom:161.850000px;}
.y58{bottom:163.650000px;}
.y2d{bottom:168.330000px;}
.yd0{bottom:169.590000px;}
.y109{bottom:171.210000px;}
.y7e{bottom:179.670000px;}
.yae{bottom:180.390000px;}
.ydd{bottom:182.010000px;}
.y129{bottom:182.370000px;}
.ycf{bottom:186.870000px;}
.y2c{bottom:187.230000px;}
.y108{bottom:191.910000px;}
.y57{bottom:194.610000px;}
.ya5{bottom:203.805000px;}
.yce{bottom:204.150000px;}
.y2b{bottom:206.130000px;}
.y7d{bottom:210.630000px;}
.ye7{bottom:210.990000px;}
.yad{bottom:211.530000px;}
.y107{bottom:212.610000px;}
.ydc{bottom:212.970000px;}
.ycc{bottom:219.105000px;}
.y128{bottom:221.070000px;}
.y2a{bottom:225.210000px;}
.y56{bottom:225.750000px;}
.ycb{bottom:237.825000px;}
.y7c{bottom:241.770000px;}
.ye6{bottom:241.950000px;}
.yac{bottom:242.490000px;}
.y29{bottom:244.110000px;}
.ya3{bottom:245.925000px;}
.y106{bottom:251.310000px;}
.y55{bottom:256.710000px;}
.yca{bottom:258.525000px;}
.y127{bottom:259.770000px;}
.ye5{bottom:273.090000px;}
.yab{bottom:273.630000px;}
.ydb{bottom:275.070000px;}
.y13d{bottom:277.770000px;}
.yc9{bottom:279.225000px;}
.y126{bottom:280.470000px;}
.y28{bottom:280.830000px;}
.y54{bottom:287.850000px;}
.ya2{bottom:288.225000px;}
.y105{bottom:289.830000px;}
.y13c{bottom:298.470000px;}
.yc8{bottom:299.925000px;}
.y27{bottom:300.630000px;}
.ye4{bottom:304.050000px;}
.y7b{bottom:304.410000px;}
.yaa{bottom:304.590000px;}
.yda{bottom:306.210000px;}
.y104{bottom:310.530000px;}
.y53{bottom:318.810000px;}
.y125{bottom:319.170000px;}
.yc7{bottom:320.625000px;}
.y26{bottom:321.330000px;}
.y9e{bottom:329.625000px;}
.y103{bottom:331.230000px;}
.ye3{bottom:335.190000px;}
.y7a{bottom:335.730000px;}
.yd9{bottom:337.170000px;}
.y13b{bottom:339.870000px;}
.yc6{bottom:341.325000px;}
.y25{bottom:342.030000px;}
.y52{bottom:349.950000px;}
.y124{bottom:357.870000px;}
.yc4{bottom:362.025000px;}
.y24{bottom:362.730000px;}
.ye2{bottom:366.150000px;}
.y79{bottom:366.690000px;}
.y102{bottom:369.930000px;}
.y9b{bottom:371.025000px;}
.y123{bottom:378.570000px;}
.y51{bottom:380.910000px;}
.yc2{bottom:382.725000px;}
.y23{bottom:383.430000px;}
.yd8{bottom:389.235000px;}
.y9a{bottom:391.575000px;}
.y78{bottom:397.695000px;}
.y122{bottom:399.315000px;}
.yc1{bottom:403.455000px;}
.y22{bottom:404.175000px;}
.yd7{bottom:405.435000px;}
.y101{bottom:408.675000px;}
.y50{bottom:412.095000px;}
.y99{bottom:412.275000px;}
.y13a{bottom:417.315000px;}
.ye1{bottom:418.215000px;}
.y121{bottom:420.015000px;}
.yc0{bottom:424.155000px;}
.y21{bottom:424.515000px;}
.y77{bottom:428.835000px;}
.y100{bottom:429.375000px;}
.y98{bottom:432.975000px;}
.ye0{bottom:434.415000px;}
.y139{bottom:438.015000px;}
.y4f{bottom:443.055000px;}
.ybf{bottom:444.855000px;}
.y20{bottom:445.575000px;}
.yff{bottom:450.075000px;}
.y120{bottom:458.715000px;}
.y76{bottom:459.795000px;}
.ybe{bottom:465.555000px;}
.y1f{bottom:466.275000px;}
.y96{bottom:474.375000px;}
.y4e{bottom:482.115000px;}
.ybd{bottom:486.255000px;}
.y1e{bottom:486.975000px;}
.yfe{bottom:488.775000px;}
.y75{bottom:490.935000px;}
.y95{bottom:495.075000px;}
.y11f{bottom:497.415000px;}
.y4d{bottom:506.055000px;}
.ybc{bottom:506.955000px;}
.y1d{bottom:507.675000px;}
.y11e{bottom:518.115000px;}
.y74{bottom:521.895000px;}
.y4c{bottom:526.755000px;}
.yfd{bottom:527.475000px;}
.ybb{bottom:527.655000px;}
.y138{bottom:536.115000px;}
.y93{bottom:536.475000px;}
.y11d{bottom:538.815000px;}
.y6c{bottom:544.395000px;}
.y4b{bottom:547.095000px;}
.yfc{bottom:548.175000px;}
.yba{bottom:548.355000px;}
.y1c{bottom:549.075000px;}
.y73{bottom:553.035000px;}
.y137{bottom:556.815000px;}
.y11c{bottom:559.515000px;}
.y6b{bottom:565.095000px;}
.yfb{bottom:568.875000px;}
.yb9{bottom:569.055000px;}
.y1b{bottom:569.775000px;}
.y136{bottom:577.515000px;}
.y92{bottom:578.775000px;}
.y4a{bottom:583.995000px;}
.yfa{bottom:589.575000px;}
.yb8{bottom:589.755000px;}
.y1a{bottom:590.475000px;}
.y11b{bottom:598.215000px;}
.y49{bottom:602.895000px;}
.yb7{bottom:610.455000px;}
.yf9{bottom:610.635000px;}
.y19{bottom:611.175000px;}
.y6a{bottom:614.415000px;}
.y72{bottom:615.135000px;}
.y135{bottom:616.215000px;}
.y91{bottom:620.175000px;}
.y48{bottom:621.975000px;}
.yb5{bottom:631.155000px;}
.yf8{bottom:634.575000px;}
.y11a{bottom:636.915000px;}
.y47{bottom:640.905000px;}
.y69{bottom:645.405000px;}
.y71{bottom:646.125000px;}
.y18{bottom:652.605000px;}
.yb4{bottom:653.505000px;}
.y134{bottom:654.945000px;}
.y119{bottom:657.645000px;}
.y46{bottom:659.985000px;}
.y8e{bottom:662.325000px;}
.yf7{bottom:665.385000px;}
.y17{bottom:673.305000px;}
.y133{bottom:675.645000px;}
.y68{bottom:676.545000px;}
.y70{bottom:677.265000px;}
.y118{bottom:678.345000px;}
.y45{bottom:678.885000px;}
.yb3{bottom:680.145000px;}
.y8f{bottom:683.025000px;}
.y16{bottom:694.005000px;}
.y132{bottom:696.345000px;}
.yf6{bottom:696.525000px;}
.y44{bottom:697.965000px;}
.yb2{bottom:700.485000px;}
.y8d{bottom:704.445000px;}
.y67{bottom:707.505000px;}
.y6f{bottom:708.225000px;}
.y15{bottom:714.705000px;}
.y43{bottom:716.865000px;}
.y117{bottom:717.045000px;}
.yb1{bottom:721.185000px;}
.yd6{bottom:721.545000px;}
.y89{bottom:725.865000px;}
.yf5{bottom:727.485000px;}
.y14{bottom:734.865000px;}
.y42{bottom:735.765000px;}
.y6e{bottom:739.365000px;}
.yd5{bottom:741.885000px;}
.y66{bottom:746.565000px;}
.y41{bottom:754.845000px;}
.y116{bottom:755.745000px;}
.y13{bottom:755.925000px;}
.yf4{bottom:758.445000px;}
.yd4{bottom:762.585000px;}
.y85{bottom:767.985000px;}
.y65{bottom:770.145000px;}
.y6d{bottom:770.325000px;}
.y40{bottom:773.745000px;}
.y115{bottom:776.445000px;}
.y12{bottom:776.625000px;}
.yd3{bottom:783.285000px;}
.yf3{bottom:789.585000px;}
.y3f{bottom:792.825000px;}
.y131{bottom:794.445000px;}
.y114{bottom:797.145000px;}
.y11{bottom:797.325000px;}
.y64{bottom:801.465000px;}
.y3e{bottom:811.725000px;}
.y84{bottom:814.245000px;}
.y130{bottom:815.145000px;}
.y10{bottom:818.025000px;}
.yf2{bottom:828.645000px;}
.y3d{bottom:830.625000px;}
.y63{bottom:832.425000px;}
.y83{bottom:834.945000px;}
.y113{bottom:835.845000px;}
.y3c{bottom:849.705000px;}
.yf1{bottom:852.225000px;}
.y82{bottom:855.645000px;}
.yf{bottom:859.425000px;}
.y62{bottom:863.565000px;}
.y112{bottom:874.545000px;}
.y81{bottom:876.345000px;}
.ye{bottom:880.125000px;}
.yf0{bottom:883.545000px;}
.y3b{bottom:886.245000px;}
.y61{bottom:894.570000px;}
.y111{bottom:895.290000px;}
.yd{bottom:900.870000px;}
.y3a{bottom:905.730000px;}
.y12f{bottom:913.290000px;}
.yef{bottom:914.550000px;}
.y110{bottom:915.990000px;}
.yc{bottom:921.570000px;}
.y39{bottom:924.630000px;}
.y60{bottom:925.710000px;}
.y12e{bottom:933.990000px;}
.yb{bottom:941.910000px;}
.yee{bottom:945.690000px;}
.y10f{bottom:954.690000px;}
.y5f{bottom:956.670000px;}
.y38{bottom:961.530000px;}
.yed{bottom:976.650000px;}
.y37{bottom:980.610000px;}
.ya{bottom:980.970000px;}
.y5e{bottom:987.810000px;}
.y10e{bottom:993.390000px;}
.y36{bottom:999.510000px;}
.y9{bottom:1002.030000px;}
.yec{bottom:1007.790000px;}
.y10d{bottom:1014.090000px;}
.y35{bottom:1018.590000px;}
.y5d{bottom:1018.770000px;}
.y8{bottom:1026.150000px;}
.y12d{bottom:1032.090000px;}
.y10c{bottom:1034.790000px;}
.y34{bottom:1037.490000px;}
.yeb{bottom:1038.750000px;}
.y5c{bottom:1049.910000px;}
.y7{bottom:1050.090000px;}
.y12c{bottom:1052.790000px;}
.y33{bottom:1056.390000px;}
.yea{bottom:1069.890000px;}
.y6{bottom:1072.230000px;}
.y10b{bottom:1073.490000px;}
.y32{bottom:1075.470000px;}
.y5b{bottom:1080.870000px;}
.y31{bottom:1094.370000px;}
.y5{bottom:1103.370000px;}
.ye9{bottom:1108.950000px;}
.y5a{bottom:1112.010000px;}
.y10a{bottom:1112.190000px;}
.y30{bottom:1113.450000px;}
.y3{bottom:1132.890000px;}
.y2{bottom:1152.360000px;}
.y1{bottom:1171.260000px;}
.h17{height:17.265000px;}
.h11{height:20.541000px;}
.h10{height:20.685000px;}
.h12{height:20.691000px;}
.hd{height:20.700000px;}
.h16{height:20.721000px;}
.he{height:20.730000px;}
.hf{height:41.385000px;}
.hc{height:41.400000px;}
.h3{height:48.839062px;}
.h15{height:58.651172px;}
.ha{height:59.383125px;}
.h18{height:60.226875px;}
.h4{height:62.327813px;}
.h13{height:64.546875px;}
.h2{height:65.010937px;}
.h9{height:66.757500px;}
.h14{height:70.628906px;}
.h6{height:70.664062px;}
.h8{height:72.562500px;}
.hb{height:74.704922px;}
.h7{height:84.898125px;}
.h5{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:39.621000px;}
.wc{width:41.385000px;}
.w9{width:50.745000px;}
.w8{width:50.796000px;}
.wa{width:51.825000px;}
.wd{width:53.265000px;}
.w7{width:61.200000px;}
.w5{width:101.010000px;}
.w2{width:124.011000px;}
.w4{width:149.061000px;}
.w6{width:167.955000px;}
.w3{width:295.620000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x48{left:2.865000px;}
.x4c{left:3.960000px;}
.x4e{left:5.400000px;}
.x52{left:6.480000px;}
.x4b{left:7.590000px;}
.x24{left:8.991000px;}
.x23{left:10.440000px;}
.x38{left:12.225000px;}
.x45{left:13.665000px;}
.x29{left:15.831000px;}
.x20{left:18.705000px;}
.x25{left:20.190000px;}
.x3d{left:21.411000px;}
.x3b{left:22.851000px;}
.x2a{left:24.690000px;}
.x30{left:25.905000px;}
.x2f{left:27.390000px;}
.x22{left:29.160000px;}
.x36{left:30.630000px;}
.x1d{left:32.391000px;}
.x31{left:33.510000px;}
.x37{left:34.545000px;}
.x2e{left:36.900000px;}
.x2c{left:38.505000px;}
.x4d{left:39.585000px;}
.x28{left:41.400000px;}
.x50{left:42.645000px;}
.x3c{left:44.445000px;}
.x2b{left:45.900000px;}
.x27{left:46.965000px;}
.x34{left:48.045000px;}
.x4f{left:56.325000px;}
.x51{left:57.585000px;}
.x3e{left:59.070000px;}
.x2d{left:61.905000px;}
.x35{left:69.870000px;}
.x2{left:81.036000px;}
.x53{left:83.736000px;}
.x19{left:85.716000px;}
.x3f{left:87.696000px;}
.x18{left:91.656000px;}
.x17{left:95.796000px;}
.x16{left:96.876000px;}
.x3{left:99.936000px;}
.x15{left:102.276000px;}
.x1c{left:112.185000px;}
.x54{left:114.336000px;}
.x1a{left:115.596000px;}
.x3a{left:117.390000px;}
.x32{left:118.830000px;}
.x33{left:121.890000px;}
.x6{left:125.496000px;}
.x26{left:128.550000px;}
.x39{left:129.810000px;}
.x4{left:130.896000px;}
.x40{left:136.476000px;}
.x60{left:155.550000px;}
.x61{left:169.230000px;}
.x76{left:171.030000px;}
.x77{left:183.810000px;}
.x62{left:186.690000px;}
.x41{left:188.505000px;}
.x63{left:200.370000px;}
.x64{left:221.970000px;}
.x1{left:230.610000px;}
.x1e{left:236.205000px;}
.x78{left:247.710000px;}
.x79{left:260.715000px;}
.x58{left:281.055000px;}
.x7{left:283.575000px;}
.x59{left:292.755000px;}
.x65{left:310.215000px;}
.x66{left:323.895000px;}
.x67{left:335.595000px;}
.x55{left:347.835000px;}
.x68{left:349.275000px;}
.x5a{left:354.315000px;}
.x42{left:356.475000px;}
.x69{left:364.755000px;}
.x5b{left:366.015000px;}
.x6a{left:378.435000px;}
.x1b{left:387.435000px;}
.x5c{left:400.575000px;}
.x5d{left:412.275000px;}
.x6b{left:413.535000px;}
.x43{left:417.675000px;}
.x5e{left:425.805000px;}
.x5f{left:437.685000px;}
.x5{left:447.045000px;}
.x44{left:468.660000px;}
.xe{left:481.605000px;}
.x6c{left:489.345000px;}
.x6d{left:503.025000px;}
.x46{left:519.420000px;}
.x6e{left:520.485000px;}
.xa{left:530.565000px;}
.x1f{left:531.840000px;}
.x6f{left:534.165000px;}
.xc{left:541.725000px;}
.xb{left:553.065000px;}
.x70{left:556.665000px;}
.x10{left:560.085000px;}
.x47{left:571.260000px;}
.xf{left:581.145000px;}
.x13{left:593.745000px;}
.x8{left:608.730000px;}
.x49{left:610.890000px;}
.x14{left:614.130000px;}
.x71{left:633.930000px;}
.x72{left:647.610000px;}
.x4a{left:652.290000px;}
.x73{left:659.310000px;}
.x11{left:666.150000px;}
.x74{left:672.990000px;}
.x21{left:680.910000px;}
.x75{left:693.510000px;}
.x9{left:765.150000px;}
.x57{left:792.180000px;}
.x56{left:799.380000px;}
.x12{left:808.740000px;}
.xd{left:813.240000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls24{letter-spacing:-5.184000pt;}
.ls23{letter-spacing:-1.984000pt;}
.ls3d{letter-spacing:-1.472000pt;}
.ls22{letter-spacing:-1.408000pt;}
.ls1d{letter-spacing:-1.344000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls3c{letter-spacing:-1.088000pt;}
.ls3b{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.311467pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls1a{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.135467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.271360pt;}
.lsc{letter-spacing:0.303467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.545280pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls33{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.840000pt;}
.ls31{letter-spacing:7.680000pt;}
.ls1f{letter-spacing:8.960000pt;}
.ls36{letter-spacing:10.880000pt;}
.ls29{letter-spacing:15.360000pt;}
.ls39{letter-spacing:16.640000pt;}
.ls38{letter-spacing:17.280000pt;}
.ls30{letter-spacing:23.040000pt;}
.ls2f{letter-spacing:23.786667pt;}
.ls2e{letter-spacing:26.880000pt;}
.ls2d{letter-spacing:27.520000pt;}
.ls35{letter-spacing:30.080000pt;}
.ls28{letter-spacing:32.640000pt;}
.ls37{letter-spacing:54.400000pt;}
.ls27{letter-spacing:59.520000pt;}
.ls2{letter-spacing:1652.085333pt;}
.ls3{letter-spacing:1934.485333pt;}
.ls1{letter-spacing:1976.085333pt;}
.ws2{word-spacing:-24.224000pt;}
.ws4{word-spacing:-24.192000pt;}
.ws3{word-spacing:-23.744000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.023467pt;}
.ws8{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.408533pt;}
.ws6{word-spacing:-18.400000pt;}
.ws13{word-spacing:-16.896000pt;}
.wsf{word-spacing:-16.704000pt;}
.ws19{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.384000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.192000pt;}
.ws15{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws22{word-spacing:-15.616000pt;}
.ws23{word-spacing:-15.552000pt;}
.ws14{word-spacing:-15.296000pt;}
.ws24{word-spacing:-15.168000pt;}
.ws25{word-spacing:-14.912000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.656000pt;}
.ws1c{word-spacing:-14.592000pt;}
.ws26{word-spacing:-14.528000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws1d{word-spacing:-14.016000pt;}
.ws21{word-spacing:-13.824000pt;}
.ws20{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-10.816000pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws0{word-spacing:-0.056320pt;}
.wsb{word-spacing:0.000000pt;}
.ws1{word-spacing:0.041813pt;}
._3{margin-left:-4.128000pt;}
._2{margin-left:-3.221333pt;}
._1a{margin-left:-2.305707pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.384747pt;}
._8{width:2.462293pt;}
._7{width:3.473920pt;}
._6{width:4.416000pt;}
._5{width:5.536853pt;}
._4{width:6.740693pt;}
._9{width:7.635627pt;}
._c{width:8.674133pt;}
._d{width:9.600427pt;}
._e{width:10.705493pt;}
._a{width:11.926187pt;}
._b{width:13.168853pt;}
._17{width:14.300160pt;}
._10{width:16.015360pt;}
._13{width:17.310720pt;}
._12{width:18.311680pt;}
._11{width:19.312640pt;}
._16{width:20.489387pt;}
._19{width:21.440000pt;}
._18{width:22.582613pt;}
._15{width:23.731200pt;}
._14{width:24.944640pt;}
._1b{width:26.048000pt;}
._1c{width:27.200640pt;}
._1f{width:28.666667pt;}
._22{width:29.802667pt;}
._20{width:31.978667pt;}
._21{width:33.504000pt;}
._1e{width:37.687893pt;}
._1d{width:38.799360pt;}
._25{width:53.162667pt;}
._26{width:54.641280pt;}
._24{width:56.064000pt;}
._23{width:169.863040pt;}
._f{width:822.995200pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y90{bottom:-5.306667pt;}
.y9c{bottom:-5.293333pt;}
.y97{bottom:-5.120000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:3.346667pt;}
.y88{bottom:3.680000pt;}
.y9d{bottom:3.826667pt;}
.y9f{bottom:3.986667pt;}
.ya8{bottom:3.992000pt;}
.y8c{bottom:4.000000pt;}
.yc5{bottom:4.946667pt;}
.yb6{bottom:4.960000pt;}
.yc3{bottom:4.986667pt;}
.y86{bottom:12.960000pt;}
.ya1{bottom:13.106667pt;}
.y8a{bottom:13.120000pt;}
.ya4{bottom:13.266667pt;}
.y94{bottom:13.280000pt;}
.y87{bottom:22.080000pt;}
.ya0{bottom:22.386667pt;}
.y8b{bottom:22.400000pt;}
.y4{bottom:51.520000pt;}
.y80{bottom:104.480000pt;}
.yb0{bottom:105.120000pt;}
.ydf{bottom:106.560000pt;}
.ya9{bottom:109.600000pt;}
.yd2{bottom:114.560000pt;}
.y2f{bottom:115.840000pt;}
.y59{bottom:117.760000pt;}
.ya7{bottom:124.680000pt;}
.y12b{bottom:125.312000pt;}
.y7f{bottom:132.032000pt;}
.y2e{bottom:132.672000pt;}
.yaf{bottom:132.832000pt;}
.yd1{bottom:132.992000pt;}
.yde{bottom:134.106667pt;}
.y12a{bottom:143.706667pt;}
.ya6{bottom:143.720000pt;}
.ye8{bottom:143.866667pt;}
.y58{bottom:145.466667pt;}
.y2d{bottom:149.626667pt;}
.yd0{bottom:150.746667pt;}
.y109{bottom:152.186667pt;}
.y7e{bottom:159.706667pt;}
.yae{bottom:160.346667pt;}
.ydd{bottom:161.786667pt;}
.y129{bottom:162.106667pt;}
.ycf{bottom:166.106667pt;}
.y2c{bottom:166.426667pt;}
.y108{bottom:170.586667pt;}
.y57{bottom:172.986667pt;}
.ya5{bottom:181.160000pt;}
.yce{bottom:181.466667pt;}
.y2b{bottom:183.226667pt;}
.y7d{bottom:187.226667pt;}
.ye7{bottom:187.546667pt;}
.yad{bottom:188.026667pt;}
.y107{bottom:188.986667pt;}
.ydc{bottom:189.306667pt;}
.ycc{bottom:194.760000pt;}
.y128{bottom:196.506667pt;}
.y2a{bottom:200.186667pt;}
.y56{bottom:200.666667pt;}
.ycb{bottom:211.400000pt;}
.y7c{bottom:214.906667pt;}
.ye6{bottom:215.066667pt;}
.yac{bottom:215.546667pt;}
.y29{bottom:216.986667pt;}
.ya3{bottom:218.600000pt;}
.y106{bottom:223.386667pt;}
.y55{bottom:228.186667pt;}
.yca{bottom:229.800000pt;}
.y127{bottom:230.906667pt;}
.ye5{bottom:242.746667pt;}
.yab{bottom:243.226667pt;}
.ydb{bottom:244.506667pt;}
.y13d{bottom:246.906667pt;}
.yc9{bottom:248.200000pt;}
.y126{bottom:249.306667pt;}
.y28{bottom:249.626667pt;}
.y54{bottom:255.866667pt;}
.ya2{bottom:256.200000pt;}
.y105{bottom:257.626667pt;}
.y13c{bottom:265.306667pt;}
.yc8{bottom:266.600000pt;}
.y27{bottom:267.226667pt;}
.ye4{bottom:270.266667pt;}
.y7b{bottom:270.586667pt;}
.yaa{bottom:270.746667pt;}
.yda{bottom:272.186667pt;}
.y104{bottom:276.026667pt;}
.y53{bottom:283.386667pt;}
.y125{bottom:283.706667pt;}
.yc7{bottom:285.000000pt;}
.y26{bottom:285.626667pt;}
.y9e{bottom:293.000000pt;}
.y103{bottom:294.426667pt;}
.ye3{bottom:297.946667pt;}
.y7a{bottom:298.426667pt;}
.yd9{bottom:299.706667pt;}
.y13b{bottom:302.106667pt;}
.yc6{bottom:303.400000pt;}
.y25{bottom:304.026667pt;}
.y52{bottom:311.066667pt;}
.y124{bottom:318.106667pt;}
.yc4{bottom:321.800000pt;}
.y24{bottom:322.426667pt;}
.ye2{bottom:325.466667pt;}
.y79{bottom:325.946667pt;}
.y102{bottom:328.826667pt;}
.y9b{bottom:329.800000pt;}
.y123{bottom:336.506667pt;}
.y51{bottom:338.586667pt;}
.yc2{bottom:340.200000pt;}
.y23{bottom:340.826667pt;}
.yd8{bottom:345.986667pt;}
.y9a{bottom:348.066667pt;}
.y78{bottom:353.506667pt;}
.y122{bottom:354.946667pt;}
.yc1{bottom:358.626667pt;}
.y22{bottom:359.266667pt;}
.yd7{bottom:360.386667pt;}
.y101{bottom:363.266667pt;}
.y50{bottom:366.306667pt;}
.y99{bottom:366.466667pt;}
.y13a{bottom:370.946667pt;}
.ye1{bottom:371.746667pt;}
.y121{bottom:373.346667pt;}
.yc0{bottom:377.026667pt;}
.y21{bottom:377.346667pt;}
.y77{bottom:381.186667pt;}
.y100{bottom:381.666667pt;}
.y98{bottom:384.866667pt;}
.ye0{bottom:386.146667pt;}
.y139{bottom:389.346667pt;}
.y4f{bottom:393.826667pt;}
.ybf{bottom:395.426667pt;}
.y20{bottom:396.066667pt;}
.yff{bottom:400.066667pt;}
.y120{bottom:407.746667pt;}
.y76{bottom:408.706667pt;}
.ybe{bottom:413.826667pt;}
.y1f{bottom:414.466667pt;}
.y96{bottom:421.666667pt;}
.y4e{bottom:428.546667pt;}
.ybd{bottom:432.226667pt;}
.y1e{bottom:432.866667pt;}
.yfe{bottom:434.466667pt;}
.y75{bottom:436.386667pt;}
.y95{bottom:440.066667pt;}
.y11f{bottom:442.146667pt;}
.y4d{bottom:449.826667pt;}
.ybc{bottom:450.626667pt;}
.y1d{bottom:451.266667pt;}
.y11e{bottom:460.546667pt;}
.y74{bottom:463.906667pt;}
.y4c{bottom:468.226667pt;}
.yfd{bottom:468.866667pt;}
.ybb{bottom:469.026667pt;}
.y138{bottom:476.546667pt;}
.y93{bottom:476.866667pt;}
.y11d{bottom:478.946667pt;}
.y6c{bottom:483.906667pt;}
.y4b{bottom:486.306667pt;}
.yfc{bottom:487.266667pt;}
.yba{bottom:487.426667pt;}
.y1c{bottom:488.066667pt;}
.y73{bottom:491.586667pt;}
.y137{bottom:494.946667pt;}
.y11c{bottom:497.346667pt;}
.y6b{bottom:502.306667pt;}
.yfb{bottom:505.666667pt;}
.yb9{bottom:505.826667pt;}
.y1b{bottom:506.466667pt;}
.y136{bottom:513.346667pt;}
.y92{bottom:514.466667pt;}
.y4a{bottom:519.106667pt;}
.yfa{bottom:524.066667pt;}
.yb8{bottom:524.226667pt;}
.y1a{bottom:524.866667pt;}
.y11b{bottom:531.746667pt;}
.y49{bottom:535.906667pt;}
.yb7{bottom:542.626667pt;}
.yf9{bottom:542.786667pt;}
.y19{bottom:543.266667pt;}
.y6a{bottom:546.146667pt;}
.y72{bottom:546.786667pt;}
.y135{bottom:547.746667pt;}
.y91{bottom:551.266667pt;}
.y48{bottom:552.866667pt;}
.yb5{bottom:561.026667pt;}
.yf8{bottom:564.066667pt;}
.y11a{bottom:566.146667pt;}
.y47{bottom:569.693333pt;}
.y69{bottom:573.693333pt;}
.y71{bottom:574.333333pt;}
.y18{bottom:580.093333pt;}
.yb4{bottom:580.893333pt;}
.y134{bottom:582.173333pt;}
.y119{bottom:584.573333pt;}
.y46{bottom:586.653333pt;}
.y8e{bottom:588.733333pt;}
.yf7{bottom:591.453333pt;}
.y17{bottom:598.493333pt;}
.y133{bottom:600.573333pt;}
.y68{bottom:601.373333pt;}
.y70{bottom:602.013333pt;}
.y118{bottom:602.973333pt;}
.y45{bottom:603.453333pt;}
.yb3{bottom:604.573333pt;}
.y8f{bottom:607.133333pt;}
.y16{bottom:616.893333pt;}
.y132{bottom:618.973333pt;}
.yf6{bottom:619.133333pt;}
.y44{bottom:620.413333pt;}
.yb2{bottom:622.653333pt;}
.y8d{bottom:626.173333pt;}
.y67{bottom:628.893333pt;}
.y6f{bottom:629.533333pt;}
.y15{bottom:635.293333pt;}
.y43{bottom:637.213333pt;}
.y117{bottom:637.373333pt;}
.yb1{bottom:641.053333pt;}
.yd6{bottom:641.373333pt;}
.y89{bottom:645.213333pt;}
.yf5{bottom:646.653333pt;}
.y14{bottom:653.213333pt;}
.y42{bottom:654.013333pt;}
.y6e{bottom:657.213333pt;}
.yd5{bottom:659.453333pt;}
.y66{bottom:663.613333pt;}
.y41{bottom:670.973333pt;}
.y116{bottom:671.773333pt;}
.y13{bottom:671.933333pt;}
.yf4{bottom:674.173333pt;}
.yd4{bottom:677.853333pt;}
.y85{bottom:682.653333pt;}
.y65{bottom:684.573333pt;}
.y6d{bottom:684.733333pt;}
.y40{bottom:687.773333pt;}
.y115{bottom:690.173333pt;}
.y12{bottom:690.333333pt;}
.yd3{bottom:696.253333pt;}
.yf3{bottom:701.853333pt;}
.y3f{bottom:704.733333pt;}
.y131{bottom:706.173333pt;}
.y114{bottom:708.573333pt;}
.y11{bottom:708.733333pt;}
.y64{bottom:712.413333pt;}
.y3e{bottom:721.533333pt;}
.y84{bottom:723.773333pt;}
.y130{bottom:724.573333pt;}
.y10{bottom:727.133333pt;}
.yf2{bottom:736.573333pt;}
.y3d{bottom:738.333333pt;}
.y63{bottom:739.933333pt;}
.y83{bottom:742.173333pt;}
.y113{bottom:742.973333pt;}
.y3c{bottom:755.293333pt;}
.yf1{bottom:757.533333pt;}
.y82{bottom:760.573333pt;}
.yf{bottom:763.933333pt;}
.y62{bottom:767.613333pt;}
.y112{bottom:777.373333pt;}
.y81{bottom:778.973333pt;}
.ye{bottom:782.333333pt;}
.yf0{bottom:785.373333pt;}
.y3b{bottom:787.773333pt;}
.y61{bottom:795.173333pt;}
.y111{bottom:795.813333pt;}
.yd{bottom:800.773333pt;}
.y3a{bottom:805.093333pt;}
.y12f{bottom:811.813333pt;}
.yef{bottom:812.933333pt;}
.y110{bottom:814.213333pt;}
.yc{bottom:819.173333pt;}
.y39{bottom:821.893333pt;}
.y60{bottom:822.853333pt;}
.y12e{bottom:830.213333pt;}
.yb{bottom:837.253333pt;}
.yee{bottom:840.613333pt;}
.y10f{bottom:848.613333pt;}
.y5f{bottom:850.373333pt;}
.y38{bottom:854.693333pt;}
.yed{bottom:868.133333pt;}
.y37{bottom:871.653333pt;}
.ya{bottom:871.973333pt;}
.y5e{bottom:878.053333pt;}
.y10e{bottom:883.013333pt;}
.y36{bottom:888.453333pt;}
.y9{bottom:890.693333pt;}
.yec{bottom:895.813333pt;}
.y10d{bottom:901.413333pt;}
.y35{bottom:905.413333pt;}
.y5d{bottom:905.573333pt;}
.y8{bottom:912.133333pt;}
.y12d{bottom:917.413333pt;}
.y10c{bottom:919.813333pt;}
.y34{bottom:922.213333pt;}
.yeb{bottom:923.333333pt;}
.y5c{bottom:933.253333pt;}
.y7{bottom:933.413333pt;}
.y12c{bottom:935.813333pt;}
.y33{bottom:939.013333pt;}
.yea{bottom:951.013333pt;}
.y6{bottom:953.093333pt;}
.y10b{bottom:954.213333pt;}
.y32{bottom:955.973333pt;}
.y5b{bottom:960.773333pt;}
.y31{bottom:972.773333pt;}
.y5{bottom:980.773333pt;}
.ye9{bottom:985.733333pt;}
.y5a{bottom:988.453333pt;}
.y10a{bottom:988.613333pt;}
.y30{bottom:989.733333pt;}
.y3{bottom:1007.013333pt;}
.y2{bottom:1024.320000pt;}
.y1{bottom:1041.120000pt;}
.h17{height:15.346667pt;}
.h11{height:18.258667pt;}
.h10{height:18.386667pt;}
.h12{height:18.392000pt;}
.hd{height:18.400000pt;}
.h16{height:18.418667pt;}
.he{height:18.426667pt;}
.hf{height:36.786667pt;}
.hc{height:36.800000pt;}
.h3{height:43.412500pt;}
.h15{height:52.134375pt;}
.ha{height:52.785000pt;}
.h18{height:53.535000pt;}
.h4{height:55.402500pt;}
.h13{height:57.375000pt;}
.h2{height:57.787500pt;}
.h9{height:59.340000pt;}
.h14{height:62.781250pt;}
.h6{height:62.812500pt;}
.h8{height:64.500000pt;}
.hb{height:66.404375pt;}
.h7{height:75.465000pt;}
.h5{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:35.218667pt;}
.wc{width:36.786667pt;}
.w9{width:45.106667pt;}
.w8{width:45.152000pt;}
.wa{width:46.066667pt;}
.wd{width:47.346667pt;}
.w7{width:54.400000pt;}
.w5{width:89.786667pt;}
.w2{width:110.232000pt;}
.w4{width:132.498667pt;}
.w6{width:149.293333pt;}
.w3{width:262.773333pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x48{left:2.546667pt;}
.x4c{left:3.520000pt;}
.x4e{left:4.800000pt;}
.x52{left:5.760000pt;}
.x4b{left:6.746667pt;}
.x24{left:7.992000pt;}
.x23{left:9.280000pt;}
.x38{left:10.866667pt;}
.x45{left:12.146667pt;}
.x29{left:14.072000pt;}
.x20{left:16.626667pt;}
.x25{left:17.946667pt;}
.x3d{left:19.032000pt;}
.x3b{left:20.312000pt;}
.x2a{left:21.946667pt;}
.x30{left:23.026667pt;}
.x2f{left:24.346667pt;}
.x22{left:25.920000pt;}
.x36{left:27.226667pt;}
.x1d{left:28.792000pt;}
.x31{left:29.786667pt;}
.x37{left:30.706667pt;}
.x2e{left:32.800000pt;}
.x2c{left:34.226667pt;}
.x4d{left:35.186667pt;}
.x28{left:36.800000pt;}
.x50{left:37.906667pt;}
.x3c{left:39.506667pt;}
.x2b{left:40.800000pt;}
.x27{left:41.746667pt;}
.x34{left:42.706667pt;}
.x4f{left:50.066667pt;}
.x51{left:51.186667pt;}
.x3e{left:52.506667pt;}
.x2d{left:55.026667pt;}
.x35{left:62.106667pt;}
.x2{left:72.032000pt;}
.x53{left:74.432000pt;}
.x19{left:76.192000pt;}
.x3f{left:77.952000pt;}
.x18{left:81.472000pt;}
.x17{left:85.152000pt;}
.x16{left:86.112000pt;}
.x3{left:88.832000pt;}
.x15{left:90.912000pt;}
.x1c{left:99.720000pt;}
.x54{left:101.632000pt;}
.x1a{left:102.752000pt;}
.x3a{left:104.346667pt;}
.x32{left:105.626667pt;}
.x33{left:108.346667pt;}
.x6{left:111.552000pt;}
.x26{left:114.266667pt;}
.x39{left:115.386667pt;}
.x4{left:116.352000pt;}
.x40{left:121.312000pt;}
.x60{left:138.266667pt;}
.x61{left:150.426667pt;}
.x76{left:152.026667pt;}
.x77{left:163.386667pt;}
.x62{left:165.946667pt;}
.x41{left:167.560000pt;}
.x63{left:178.106667pt;}
.x64{left:197.306667pt;}
.x1{left:204.986667pt;}
.x1e{left:209.960000pt;}
.x78{left:220.186667pt;}
.x79{left:231.746667pt;}
.x58{left:249.826667pt;}
.x7{left:252.066667pt;}
.x59{left:260.226667pt;}
.x65{left:275.746667pt;}
.x66{left:287.906667pt;}
.x67{left:298.306667pt;}
.x55{left:309.186667pt;}
.x68{left:310.466667pt;}
.x5a{left:314.946667pt;}
.x42{left:316.866667pt;}
.x69{left:324.226667pt;}
.x5b{left:325.346667pt;}
.x6a{left:336.386667pt;}
.x1b{left:344.386667pt;}
.x5c{left:356.066667pt;}
.x5d{left:366.466667pt;}
.x6b{left:367.586667pt;}
.x43{left:371.266667pt;}
.x5e{left:378.493333pt;}
.x5f{left:389.053333pt;}
.x5{left:397.373333pt;}
.x44{left:416.586667pt;}
.xe{left:428.093333pt;}
.x6c{left:434.973333pt;}
.x6d{left:447.133333pt;}
.x46{left:461.706667pt;}
.x6e{left:462.653333pt;}
.xa{left:471.613333pt;}
.x1f{left:472.746667pt;}
.x6f{left:474.813333pt;}
.xc{left:481.533333pt;}
.xb{left:491.613333pt;}
.x70{left:494.813333pt;}
.x10{left:497.853333pt;}
.x47{left:507.786667pt;}
.xf{left:516.573333pt;}
.x13{left:527.773333pt;}
.x8{left:541.093333pt;}
.x49{left:543.013333pt;}
.x14{left:545.893333pt;}
.x71{left:563.493333pt;}
.x72{left:575.653333pt;}
.x4a{left:579.813333pt;}
.x73{left:586.053333pt;}
.x11{left:592.133333pt;}
.x74{left:598.213333pt;}
.x21{left:605.253333pt;}
.x75{left:616.453333pt;}
.x9{left:680.133333pt;}
.x57{left:704.160000pt;}
.x56{left:710.560000pt;}
.x12{left:718.880000pt;}
.xd{left:722.880000pt;}
}




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