
    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_a39226eec8788341d835f09d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_6be63f64357cc73414ca82a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_0718a75d5d503ff6dd8bd1e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_5a40fb4dbc3505bf5b45d377.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_96a33b24f817390322938ea4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_2cfe5b4e8bf4181c88b5d14a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_56865671a9f640776b3627dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.156738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a793da99ee967765d010fa12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.988000px;}
.ls1c{letter-spacing:-2.466000px;}
.ls1d{letter-spacing:-1.854000px;}
.ls21{letter-spacing:-1.134000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.828000px;}
.ls2d{letter-spacing:-0.816000px;}
.ls3f{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.414600px;}
.ls35{letter-spacing:-0.308400px;}
.ls13{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.106800px;}
.ls44{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.013440px;}
.ls24{letter-spacing:0.048960px;}
.lse{letter-spacing:0.097800px;}
.ls34{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.232560px;}
.ls26{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.305280px;}
.ls23{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.442080px;}
.ls18{letter-spacing:1.025280px;}
.ls16{letter-spacing:2.465280px;}
.lsf{letter-spacing:3.185280px;}
.lsb{letter-spacing:3.905280px;}
.ls2{letter-spacing:4.986720px;}
.ls2a{letter-spacing:5.345280px;}
.ls27{letter-spacing:6.185280px;}
.ls1f{letter-spacing:8.225280px;}
.ls19{letter-spacing:11.105280px;}
.ls36{letter-spacing:11.825280px;}
.ls6{letter-spacing:13.265280px;}
.ls38{letter-spacing:13.985280px;}
.ls12{letter-spacing:14.705280px;}
.ls17{letter-spacing:15.425280px;}
.ls1e{letter-spacing:16.145280px;}
.ls20{letter-spacing:17.561280px;}
.ls2e{letter-spacing:20.465280px;}
.ls37{letter-spacing:21.185280px;}
.ls22{letter-spacing:24.065280px;}
.ls40{letter-spacing:26.225280px;}
.ls11{letter-spacing:26.945280px;}
.ls29{letter-spacing:31.985280px;}
.ls9{letter-spacing:32.705280px;}
.lsc{letter-spacing:33.425280px;}
.ls42{letter-spacing:35.946720px;}
.ls10{letter-spacing:45.665280px;}
.ls28{letter-spacing:47.105280px;}
.ls41{letter-spacing:57.185280px;}
.ls33{letter-spacing:58.805280px;}
.ls3a{letter-spacing:60.065280px;}
.ls2f{letter-spacing:61.685280px;}
.ls30{letter-spacing:86.705280px;}
.ls5{letter-spacing:96.065280px;}
.lsa{letter-spacing:108.305280px;}
.ls3c{letter-spacing:129.905280px;}
.ls3e{letter-spacing:130.625280px;}
.ls3d{letter-spacing:130.805280px;}
.ls32{letter-spacing:147.305280px;}
.ls31{letter-spacing:147.365280px;}
.ls25{letter-spacing:150.785280px;}
.ls43{letter-spacing:846.156000px;}
.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:-20.016000px;}
.ws5{word-spacing:-18.774720px;}
.wsc{word-spacing:-18.523920px;}
.ws6{word-spacing:-18.512520px;}
.wsb{word-spacing:-18.463680px;}
.ws7{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.wsa{word-spacing:-17.334720px;}
.ws2{word-spacing:-16.613280px;}
.wse{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.506480px;}
.ws1{word-spacing:-15.812640px;}
.ws3{word-spacing:-13.625280px;}
.wsd{word-spacing:-13.410720px;}
.ws4{word-spacing:0.000000px;}
._3b{margin-left:-6.511680px;}
._17{margin-left:-5.482080px;}
._18{margin-left:-4.239360px;}
._d{margin-left:-3.107520px;}
._4{margin-left:-1.733040px;}
._0{width:1.020000px;}
._1{width:2.282880px;}
._3{width:3.338160px;}
._e{width:4.422240px;}
._8{width:6.035760px;}
._9{width:7.075680px;}
._6{width:8.366400px;}
._5{width:9.382320px;}
._35{width:10.423440px;}
._23{width:11.536560px;}
._1c{width:12.546720px;}
._2{width:14.103360px;}
._21{width:15.318000px;}
._25{width:16.421760px;}
._22{width:20.004480px;}
._12{width:21.196800px;}
._13{width:22.532400px;}
._14{width:23.820000px;}
._a{width:25.457760px;}
._b{width:26.469600px;}
._c{width:27.545280px;}
._19{width:28.867680px;}
._38{width:29.956320px;}
._1a{width:31.066560px;}
._26{width:32.358720px;}
._27{width:33.978960px;}
._36{width:35.305920px;}
._2e{width:36.442800px;}
._2f{width:38.419200px;}
._10{width:40.278240px;}
._f{width:41.336400px;}
._1f{width:43.056000px;}
._3a{width:44.415360px;}
._2a{width:45.915120px;}
._24{width:47.162880px;}
._39{width:48.607200px;}
._3c{width:49.760880px;}
._2b{width:51.036480px;}
._7{width:52.050960px;}
._3e{width:53.124480px;}
._3d{width:54.347520px;}
._1e{width:55.774080px;}
._1d{width:57.032640px;}
._43{width:58.633200px;}
._42{width:59.958000px;}
._32{width:61.205760px;}
._31{width:62.210160px;}
._37{width:63.820800px;}
._3f{width:65.151360px;}
._46{width:66.356640px;}
._34{width:67.498560px;}
._33{width:69.099120px;}
._45{width:72.919440px;}
._16{width:74.144160px;}
._15{width:75.182400px;}
._47{width:83.796480px;}
._48{width:84.798000px;}
._4a{width:85.910400px;}
._20{width:87.105600px;}
._11{width:90.748800px;}
._1b{width:95.584320px;}
._2c{width:97.091040px;}
._2d{width:99.238320px;}
._30{width:100.387440px;}
._41{width:103.411440px;}
._40{width:104.612880px;}
._28{width:107.904960px;}
._49{width:125.952960px;}
._29{width:128.648880px;}
._44{width:146.513040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.y57{bottom:3.600000px;}
.yaf{bottom:11.880000px;}
.ya2{bottom:20.520000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y7a{bottom:108.756000px;}
.y2c{bottom:109.476000px;}
.y9b{bottom:111.996000px;}
.y65{bottom:113.076000px;}
.y51{bottom:122.076000px;}
.yaa{bottom:123.336000px;}
.y72{bottom:125.316000px;}
.y2b{bottom:126.576000px;}
.y79{bottom:126.756000px;}
.y9a{bottom:130.896000px;}
.y64{bottom:131.976000px;}
.y50{bottom:140.976000px;}
.ya9{bottom:142.236000px;}
.y2a{bottom:143.856000px;}
.y71{bottom:144.396000px;}
.y78{bottom:144.756000px;}
.ycb{bottom:145.656000px;}
.y29{bottom:148.356000px;}
.yd2{bottom:149.436000px;}
.y99{bottom:149.976000px;}
.y63{bottom:151.050000px;}
.y4f{bottom:159.870000px;}
.ya8{bottom:161.310000px;}
.y28{bottom:161.850000px;}
.y77{bottom:162.750000px;}
.y70{bottom:163.290000px;}
.yca{bottom:164.730000px;}
.yd1{bottom:166.530000px;}
.y98{bottom:168.870000px;}
.y62{bottom:169.950000px;}
.y4e{bottom:178.950000px;}
.ya7{bottom:180.210000px;}
.y75{bottom:180.750000px;}
.y6f{bottom:182.370000px;}
.yc9{bottom:183.630000px;}
.yd0{bottom:183.810000px;}
.y27{bottom:184.170000px;}
.y97{bottom:187.770000px;}
.y61{bottom:189.030000px;}
.y4d{bottom:197.850000px;}
.ya6{bottom:199.110000px;}
.ycf{bottom:201.090000px;}
.y6e{bottom:201.270000px;}
.yc8{bottom:202.710000px;}
.y26{bottom:203.070000px;}
.y96{bottom:206.850000px;}
.y60{bottom:207.930000px;}
.y74{bottom:210.990000px;}
.y4c{bottom:216.930000px;}
.ya5{bottom:218.190000px;}
.yce{bottom:218.370000px;}
.y6d{bottom:219.630000px;}
.yc7{bottom:221.610000px;}
.y25{bottom:221.970000px;}
.y95{bottom:225.750000px;}
.y5f{bottom:227.010000px;}
.y73{bottom:228.270000px;}
.y6c{bottom:232.995000px;}
.ycd{bottom:235.695000px;}
.y4b{bottom:235.875000px;}
.ya4{bottom:237.135000px;}
.yc6{bottom:240.555000px;}
.y24{bottom:240.735000px;}
.y94{bottom:244.875000px;}
.y5e{bottom:245.955000px;}
.y6b{bottom:252.795000px;}
.ycc{bottom:253.515000px;}
.y4a{bottom:254.955000px;}
.y23{bottom:258.015000px;}
.yc5{bottom:259.635000px;}
.ya3{bottom:262.335000px;}
.y93{bottom:263.775000px;}
.y5d{bottom:264.855000px;}
.y6a{bottom:272.595000px;}
.y49{bottom:273.855000px;}
.y22{bottom:275.295000px;}
.yc4{bottom:278.535000px;}
.ya1{bottom:280.335000px;}
.y92{bottom:282.675000px;}
.y5c{bottom:283.935000px;}
.y21{bottom:291.855000px;}
.y69{bottom:292.215000px;}
.y48{bottom:292.755000px;}
.yc3{bottom:297.615000px;}
.y91{bottom:301.755000px;}
.y5b{bottom:302.835000px;}
.y20{bottom:306.435000px;}
.y47{bottom:311.835000px;}
.y68{bottom:312.015000px;}
.ya0{bottom:315.615000px;}
.yc2{bottom:316.515000px;}
.y90{bottom:320.655000px;}
.y5a{bottom:320.835000px;}
.y1f{bottom:323.535000px;}
.y46{bottom:330.735000px;}
.y59{bottom:332.895000px;}
.y9f{bottom:333.615000px;}
.yc1{bottom:335.415000px;}
.y8f{bottom:339.735000px;}
.y1e{bottom:340.815000px;}
.y67{bottom:343.875000px;}
.y45{bottom:349.815000px;}
.y9e{bottom:351.615000px;}
.y58{bottom:352.695000px;}
.yc0{bottom:354.495000px;}
.y1d{bottom:358.095000px;}
.y8e{bottom:358.635000px;}
.y66{bottom:361.155000px;}
.y44{bottom:368.715000px;}
.y56{bottom:372.315000px;}
.ybf{bottom:373.395000px;}
.y1c{bottom:375.375000px;}
.y8d{bottom:377.715000px;}
.y9d{bottom:381.855000px;}
.y43{bottom:387.615000px;}
.y55{bottom:392.115000px;}
.ybe{bottom:392.475000px;}
.y1b{bottom:392.655000px;}
.y8c{bottom:396.615000px;}
.y9c{bottom:399.135000px;}
.y42{bottom:406.695000px;}
.y1a{bottom:409.935000px;}
.ybd{bottom:411.375000px;}
.y54{bottom:414.975000px;}
.y8b{bottom:415.515000px;}
.y41{bottom:425.625000px;}
.y19{bottom:427.065000px;}
.ybc{bottom:430.305000px;}
.y53{bottom:432.285000px;}
.y8a{bottom:434.625000px;}
.y18{bottom:444.345000px;}
.y40{bottom:444.705000px;}
.y52{bottom:448.845000px;}
.ybb{bottom:449.385000px;}
.y89{bottom:453.525000px;}
.y17{bottom:461.625000px;}
.y3f{bottom:463.605000px;}
.yba{bottom:468.285000px;}
.y88{bottom:472.605000px;}
.y16{bottom:478.905000px;}
.y3e{bottom:482.505000px;}
.yb9{bottom:487.365000px;}
.y87{bottom:491.505000px;}
.y15{bottom:496.185000px;}
.y3d{bottom:501.585000px;}
.yb8{bottom:506.265000px;}
.y86{bottom:510.405000px;}
.y14{bottom:513.285000px;}
.y3c{bottom:520.485000px;}
.yb7{bottom:525.165000px;}
.y85{bottom:529.485000px;}
.y13{bottom:530.565000px;}
.y3b{bottom:539.565000px;}
.yb6{bottom:544.245000px;}
.y12{bottom:547.845000px;}
.y84{bottom:548.385000px;}
.y3a{bottom:558.465000px;}
.yb5{bottom:563.145000px;}
.y11{bottom:565.125000px;}
.y83{bottom:567.465000px;}
.y39{bottom:577.365000px;}
.yb4{bottom:582.225000px;}
.y10{bottom:582.405000px;}
.y82{bottom:586.365000px;}
.y38{bottom:596.445000px;}
.yf{bottom:599.685000px;}
.yb3{bottom:601.125000px;}
.y81{bottom:605.265000px;}
.y37{bottom:615.390000px;}
.ydc{bottom:616.830000px;}
.ye{bottom:617.370000px;}
.y80{bottom:621.690000px;}
.ydb{bottom:634.110000px;}
.y36{bottom:634.470000px;}
.yb2{bottom:635.370000px;}
.yd{bottom:638.070000px;}
.y7f{bottom:641.310000px;}
.yda{bottom:651.390000px;}
.y35{bottom:653.370000px;}
.yc{bottom:658.770000px;}
.y7e{bottom:661.110000px;}
.yd9{bottom:668.670000px;}
.yb1{bottom:670.650000px;}
.y34{bottom:672.270000px;}
.yb{bottom:679.470000px;}
.y7d{bottom:680.730000px;}
.yd8{bottom:685.950000px;}
.y33{bottom:691.350000px;}
.ya{bottom:700.170000px;}
.y7c{bottom:700.530000px;}
.yd7{bottom:703.230000px;}
.yb0{bottom:705.930000px;}
.y32{bottom:710.250000px;}
.yd6{bottom:720.330000px;}
.y9{bottom:720.870000px;}
.yae{bottom:723.930000px;}
.y31{bottom:729.330000px;}
.y7b{bottom:732.390000px;}
.yd5{bottom:737.610000px;}
.y8{bottom:741.570000px;}
.y30{bottom:748.230000px;}
.yd4{bottom:754.890000px;}
.yad{bottom:759.210000px;}
.y6{bottom:762.270000px;}
.y2f{bottom:767.310000px;}
.y7{bottom:768.210000px;}
.yd3{bottom:772.170000px;}
.y5{bottom:782.970000px;}
.y2e{bottom:786.210000px;}
.yac{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y2d{bottom:805.140000px;}
.yab{bottom:806.760000px;}
.h12{height:17.280000px;}
.he{height:18.900000px;}
.h10{height:19.080000px;}
.h13{height:34.560000px;}
.hb{height:34.874297px;}
.h8{height:35.591133px;}
.hc{height:43.269961px;}
.h5{height:43.905937px;}
.h7{height:44.090508px;}
.h6{height:45.549492px;}
.h3{height:46.251562px;}
.h11{height:48.436523px;}
.ha{height:50.273438px;}
.h2{height:53.603086px;}
.hd{height:54.390938px;}
.h9{height:59.415469px;}
.hf{height:60.288750px;}
.h14{height:64.582031px;}
.h4{height:65.531250px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w13{width:72.900000px;}
.wb{width:73.620000px;}
.wa{width:73.656000px;}
.w12{width:73.836000px;}
.w6{width:79.920000px;}
.w5{width:79.956000px;}
.wf{width:84.240000px;}
.w14{width:84.996000px;}
.w7{width:89.856000px;}
.wc{width:94.896000px;}
.w10{width:95.076000px;}
.we{width:108.036000px;}
.wd{width:177.690000px;}
.w4{width:180.750000px;}
.w8{width:181.470000px;}
.w9{width:222.150000px;}
.w11{width:232.770000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x3a{left:9.045000px;}
.x1f{left:12.960000px;}
.x27{left:14.265000px;}
.x26{left:15.480000px;}
.x1e{left:16.560000px;}
.x28{left:18.405000px;}
.x29{left:19.620000px;}
.x14{left:21.600000px;}
.x34{left:25.020000px;}
.x35{left:32.580000px;}
.x39{left:37.125000px;}
.x17{left:39.105000px;}
.x19{left:40.365000px;}
.x25{left:41.985000px;}
.x2a{left:43.245000px;}
.x2f{left:48.105000px;}
.x1d{left:55.074000px;}
.x31{left:75.996000px;}
.x2{left:80.855991px;}
.xa{left:82.655991px;}
.x36{left:84.054000px;}
.xf{left:86.255991px;}
.x21{left:87.654000px;}
.x12{left:90.354000px;}
.x3{left:92.555991px;}
.x10{left:97.055991px;}
.x11{left:98.316000px;}
.x20{left:100.835991px;}
.xb{left:103.175991px;}
.x1b{left:107.315991px;}
.xd{left:123.335991px;}
.x1c{left:140.075991px;}
.x5{left:164.189991px;}
.x4{left:173.189991px;}
.x2b{left:187.049991px;}
.x30{left:200.954991px;}
.x9{left:238.754991px;}
.xc{left:245.594991px;}
.x2c{left:269.355000px;}
.x13{left:279.795000px;}
.xe{left:296.894991px;}
.x32{left:299.055000px;}
.x22{left:304.275000px;}
.x1a{left:306.434991px;}
.x1{left:310.574991px;}
.x8{left:314.714991px;}
.x2d{left:350.025000px;}
.x15{left:360.645000px;}
.x33{left:373.425000px;}
.x23{left:378.825000px;}
.x37{left:389.445000px;}
.x2e{left:430.665000px;}
.x16{left:441.285000px;}
.x24{left:453.165000px;}
.x6{left:458.744981px;}
.x38{left:463.065000px;}
.x7{left:465.404991px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-2.656000pt;}
.ls1c{letter-spacing:-2.192000pt;}
.ls1d{letter-spacing:-1.648000pt;}
.ls21{letter-spacing:-1.008000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.736000pt;}
.ls2d{letter-spacing:-0.725333pt;}
.ls3f{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls35{letter-spacing:-0.274133pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls44{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.011947pt;}
.ls24{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.086933pt;}
.ls34{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.206720pt;}
.ls26{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.271360pt;}
.ls23{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.392960pt;}
.ls18{letter-spacing:0.911360pt;}
.ls16{letter-spacing:2.191360pt;}
.lsf{letter-spacing:2.831360pt;}
.lsb{letter-spacing:3.471360pt;}
.ls2{letter-spacing:4.432640pt;}
.ls2a{letter-spacing:4.751360pt;}
.ls27{letter-spacing:5.498027pt;}
.ls1f{letter-spacing:7.311360pt;}
.ls19{letter-spacing:9.871360pt;}
.ls36{letter-spacing:10.511360pt;}
.ls6{letter-spacing:11.791360pt;}
.ls38{letter-spacing:12.431360pt;}
.ls12{letter-spacing:13.071360pt;}
.ls17{letter-spacing:13.711360pt;}
.ls1e{letter-spacing:14.351360pt;}
.ls20{letter-spacing:15.610027pt;}
.ls2e{letter-spacing:18.191360pt;}
.ls37{letter-spacing:18.831360pt;}
.ls22{letter-spacing:21.391360pt;}
.ls40{letter-spacing:23.311360pt;}
.ls11{letter-spacing:23.951360pt;}
.ls29{letter-spacing:28.431360pt;}
.ls9{letter-spacing:29.071360pt;}
.lsc{letter-spacing:29.711360pt;}
.ls42{letter-spacing:31.952640pt;}
.ls10{letter-spacing:40.591360pt;}
.ls28{letter-spacing:41.871360pt;}
.ls41{letter-spacing:50.831360pt;}
.ls33{letter-spacing:52.271360pt;}
.ls3a{letter-spacing:53.391360pt;}
.ls2f{letter-spacing:54.831360pt;}
.ls30{letter-spacing:77.071360pt;}
.ls5{letter-spacing:85.391360pt;}
.lsa{letter-spacing:96.271360pt;}
.ls3c{letter-spacing:115.471360pt;}
.ls3e{letter-spacing:116.111360pt;}
.ls3d{letter-spacing:116.271360pt;}
.ls32{letter-spacing:130.938027pt;}
.ls31{letter-spacing:130.991360pt;}
.ls25{letter-spacing:134.031360pt;}
.ls43{letter-spacing:752.138667pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.688640pt;}
.wsc{word-spacing:-16.465707pt;}
.ws6{word-spacing:-16.455573pt;}
.wsb{word-spacing:-16.412160pt;}
.ws7{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.wsa{word-spacing:-15.408640pt;}
.ws2{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.672427pt;}
.ws1{word-spacing:-14.055680pt;}
.ws3{word-spacing:-12.111360pt;}
.wsd{word-spacing:-11.920640pt;}
.ws4{word-spacing:0.000000pt;}
._3b{margin-left:-5.788160pt;}
._17{margin-left:-4.872960pt;}
._18{margin-left:-3.768320pt;}
._d{margin-left:-2.762240pt;}
._4{margin-left:-1.540480pt;}
._0{width:0.906667pt;}
._1{width:2.029227pt;}
._3{width:2.967253pt;}
._e{width:3.930880pt;}
._8{width:5.365120pt;}
._9{width:6.289493pt;}
._6{width:7.436800pt;}
._5{width:8.339840pt;}
._35{width:9.265280pt;}
._23{width:10.254720pt;}
._1c{width:11.152640pt;}
._2{width:12.536320pt;}
._21{width:13.616000pt;}
._25{width:14.597120pt;}
._22{width:17.781760pt;}
._12{width:18.841600pt;}
._13{width:20.028800pt;}
._14{width:21.173333pt;}
._a{width:22.629120pt;}
._b{width:23.528533pt;}
._c{width:24.484693pt;}
._19{width:25.660160pt;}
._38{width:26.627840pt;}
._1a{width:27.614720pt;}
._26{width:28.763307pt;}
._27{width:30.203520pt;}
._36{width:31.383040pt;}
._2e{width:32.393600pt;}
._2f{width:34.150400pt;}
._10{width:35.802880pt;}
._f{width:36.743467pt;}
._1f{width:38.272000pt;}
._3a{width:39.480320pt;}
._2a{width:40.813440pt;}
._24{width:41.922560pt;}
._39{width:43.206400pt;}
._3c{width:44.231893pt;}
._2b{width:45.365760pt;}
._7{width:46.267520pt;}
._3e{width:47.221760pt;}
._3d{width:48.308907pt;}
._1e{width:49.576960pt;}
._1d{width:50.695680pt;}
._43{width:52.118400pt;}
._42{width:53.296000pt;}
._32{width:54.405120pt;}
._31{width:55.297920pt;}
._37{width:56.729600pt;}
._3f{width:57.912320pt;}
._46{width:58.983680pt;}
._34{width:59.998720pt;}
._33{width:61.421440pt;}
._45{width:64.817280pt;}
._16{width:65.905920pt;}
._15{width:66.828800pt;}
._47{width:74.485760pt;}
._48{width:75.376000pt;}
._4a{width:76.364800pt;}
._20{width:77.427200pt;}
._11{width:80.665600pt;}
._1b{width:84.963840pt;}
._2c{width:86.303147pt;}
._2d{width:88.211840pt;}
._30{width:89.233280pt;}
._41{width:91.921280pt;}
._40{width:92.989227pt;}
._28{width:95.915520pt;}
._49{width:111.958187pt;}
._29{width:114.354560pt;}
._44{width:130.233813pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.y57{bottom:3.200000pt;}
.yaf{bottom:10.560000pt;}
.ya2{bottom:18.240000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y7a{bottom:96.672000pt;}
.y2c{bottom:97.312000pt;}
.y9b{bottom:99.552000pt;}
.y65{bottom:100.512000pt;}
.y51{bottom:108.512000pt;}
.yaa{bottom:109.632000pt;}
.y72{bottom:111.392000pt;}
.y2b{bottom:112.512000pt;}
.y79{bottom:112.672000pt;}
.y9a{bottom:116.352000pt;}
.y64{bottom:117.312000pt;}
.y50{bottom:125.312000pt;}
.ya9{bottom:126.432000pt;}
.y2a{bottom:127.872000pt;}
.y71{bottom:128.352000pt;}
.y78{bottom:128.672000pt;}
.ycb{bottom:129.472000pt;}
.y29{bottom:131.872000pt;}
.yd2{bottom:132.832000pt;}
.y99{bottom:133.312000pt;}
.y63{bottom:134.266667pt;}
.y4f{bottom:142.106667pt;}
.ya8{bottom:143.386667pt;}
.y28{bottom:143.866667pt;}
.y77{bottom:144.666667pt;}
.y70{bottom:145.146667pt;}
.yca{bottom:146.426667pt;}
.yd1{bottom:148.026667pt;}
.y98{bottom:150.106667pt;}
.y62{bottom:151.066667pt;}
.y4e{bottom:159.066667pt;}
.ya7{bottom:160.186667pt;}
.y75{bottom:160.666667pt;}
.y6f{bottom:162.106667pt;}
.yc9{bottom:163.226667pt;}
.yd0{bottom:163.386667pt;}
.y27{bottom:163.706667pt;}
.y97{bottom:166.906667pt;}
.y61{bottom:168.026667pt;}
.y4d{bottom:175.866667pt;}
.ya6{bottom:176.986667pt;}
.ycf{bottom:178.746667pt;}
.y6e{bottom:178.906667pt;}
.yc8{bottom:180.186667pt;}
.y26{bottom:180.506667pt;}
.y96{bottom:183.866667pt;}
.y60{bottom:184.826667pt;}
.y74{bottom:187.546667pt;}
.y4c{bottom:192.826667pt;}
.ya5{bottom:193.946667pt;}
.yce{bottom:194.106667pt;}
.y6d{bottom:195.226667pt;}
.yc7{bottom:196.986667pt;}
.y25{bottom:197.306667pt;}
.y95{bottom:200.666667pt;}
.y5f{bottom:201.786667pt;}
.y73{bottom:202.906667pt;}
.y6c{bottom:207.106667pt;}
.ycd{bottom:209.506667pt;}
.y4b{bottom:209.666667pt;}
.ya4{bottom:210.786667pt;}
.yc6{bottom:213.826667pt;}
.y24{bottom:213.986667pt;}
.y94{bottom:217.666667pt;}
.y5e{bottom:218.626667pt;}
.y6b{bottom:224.706667pt;}
.ycc{bottom:225.346667pt;}
.y4a{bottom:226.626667pt;}
.y23{bottom:229.346667pt;}
.yc5{bottom:230.786667pt;}
.ya3{bottom:233.186667pt;}
.y93{bottom:234.466667pt;}
.y5d{bottom:235.426667pt;}
.y6a{bottom:242.306667pt;}
.y49{bottom:243.426667pt;}
.y22{bottom:244.706667pt;}
.yc4{bottom:247.586667pt;}
.ya1{bottom:249.186667pt;}
.y92{bottom:251.266667pt;}
.y5c{bottom:252.386667pt;}
.y21{bottom:259.426667pt;}
.y69{bottom:259.746667pt;}
.y48{bottom:260.226667pt;}
.yc3{bottom:264.546667pt;}
.y91{bottom:268.226667pt;}
.y5b{bottom:269.186667pt;}
.y20{bottom:272.386667pt;}
.y47{bottom:277.186667pt;}
.y68{bottom:277.346667pt;}
.ya0{bottom:280.546667pt;}
.yc2{bottom:281.346667pt;}
.y90{bottom:285.026667pt;}
.y5a{bottom:285.186667pt;}
.y1f{bottom:287.586667pt;}
.y46{bottom:293.986667pt;}
.y59{bottom:295.906667pt;}
.y9f{bottom:296.546667pt;}
.yc1{bottom:298.146667pt;}
.y8f{bottom:301.986667pt;}
.y1e{bottom:302.946667pt;}
.y67{bottom:305.666667pt;}
.y45{bottom:310.946667pt;}
.y9e{bottom:312.546667pt;}
.y58{bottom:313.506667pt;}
.yc0{bottom:315.106667pt;}
.y1d{bottom:318.306667pt;}
.y8e{bottom:318.786667pt;}
.y66{bottom:321.026667pt;}
.y44{bottom:327.746667pt;}
.y56{bottom:330.946667pt;}
.ybf{bottom:331.906667pt;}
.y1c{bottom:333.666667pt;}
.y8d{bottom:335.746667pt;}
.y9d{bottom:339.426667pt;}
.y43{bottom:344.546667pt;}
.y55{bottom:348.546667pt;}
.ybe{bottom:348.866667pt;}
.y1b{bottom:349.026667pt;}
.y8c{bottom:352.546667pt;}
.y9c{bottom:354.786667pt;}
.y42{bottom:361.506667pt;}
.y1a{bottom:364.386667pt;}
.ybd{bottom:365.666667pt;}
.y54{bottom:368.866667pt;}
.y8b{bottom:369.346667pt;}
.y41{bottom:378.333333pt;}
.y19{bottom:379.613333pt;}
.ybc{bottom:382.493333pt;}
.y53{bottom:384.253333pt;}
.y8a{bottom:386.333333pt;}
.y18{bottom:394.973333pt;}
.y40{bottom:395.293333pt;}
.y52{bottom:398.973333pt;}
.ybb{bottom:399.453333pt;}
.y89{bottom:403.133333pt;}
.y17{bottom:410.333333pt;}
.y3f{bottom:412.093333pt;}
.yba{bottom:416.253333pt;}
.y88{bottom:420.093333pt;}
.y16{bottom:425.693333pt;}
.y3e{bottom:428.893333pt;}
.yb9{bottom:433.213333pt;}
.y87{bottom:436.893333pt;}
.y15{bottom:441.053333pt;}
.y3d{bottom:445.853333pt;}
.yb8{bottom:450.013333pt;}
.y86{bottom:453.693333pt;}
.y14{bottom:456.253333pt;}
.y3c{bottom:462.653333pt;}
.yb7{bottom:466.813333pt;}
.y85{bottom:470.653333pt;}
.y13{bottom:471.613333pt;}
.y3b{bottom:479.613333pt;}
.yb6{bottom:483.773333pt;}
.y12{bottom:486.973333pt;}
.y84{bottom:487.453333pt;}
.y3a{bottom:496.413333pt;}
.yb5{bottom:500.573333pt;}
.y11{bottom:502.333333pt;}
.y83{bottom:504.413333pt;}
.y39{bottom:513.213333pt;}
.yb4{bottom:517.533333pt;}
.y10{bottom:517.693333pt;}
.y82{bottom:521.213333pt;}
.y38{bottom:530.173333pt;}
.yf{bottom:533.053333pt;}
.yb3{bottom:534.333333pt;}
.y81{bottom:538.013333pt;}
.y37{bottom:547.013333pt;}
.ydc{bottom:548.293333pt;}
.ye{bottom:548.773333pt;}
.y80{bottom:552.613333pt;}
.ydb{bottom:563.653333pt;}
.y36{bottom:563.973333pt;}
.yb2{bottom:564.773333pt;}
.yd{bottom:567.173333pt;}
.y7f{bottom:570.053333pt;}
.yda{bottom:579.013333pt;}
.y35{bottom:580.773333pt;}
.yc{bottom:585.573333pt;}
.y7e{bottom:587.653333pt;}
.yd9{bottom:594.373333pt;}
.yb1{bottom:596.133333pt;}
.y34{bottom:597.573333pt;}
.yb{bottom:603.973333pt;}
.y7d{bottom:605.093333pt;}
.yd8{bottom:609.733333pt;}
.y33{bottom:614.533333pt;}
.ya{bottom:622.373333pt;}
.y7c{bottom:622.693333pt;}
.yd7{bottom:625.093333pt;}
.yb0{bottom:627.493333pt;}
.y32{bottom:631.333333pt;}
.yd6{bottom:640.293333pt;}
.y9{bottom:640.773333pt;}
.yae{bottom:643.493333pt;}
.y31{bottom:648.293333pt;}
.y7b{bottom:651.013333pt;}
.yd5{bottom:655.653333pt;}
.y8{bottom:659.173333pt;}
.y30{bottom:665.093333pt;}
.yd4{bottom:671.013333pt;}
.yad{bottom:674.853333pt;}
.y6{bottom:677.573333pt;}
.y2f{bottom:682.053333pt;}
.y7{bottom:682.853333pt;}
.yd3{bottom:686.373333pt;}
.y5{bottom:695.973333pt;}
.y2e{bottom:698.853333pt;}
.yac{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y2d{bottom:715.680000pt;}
.yab{bottom:717.120000pt;}
.h12{height:15.360000pt;}
.he{height:16.800000pt;}
.h10{height:16.960000pt;}
.h13{height:30.720000pt;}
.hb{height:30.999375pt;}
.h8{height:31.636562pt;}
.hc{height:38.462187pt;}
.h5{height:39.027500pt;}
.h7{height:39.191562pt;}
.h6{height:40.488438pt;}
.h3{height:41.112500pt;}
.h11{height:43.054688pt;}
.ha{height:44.687500pt;}
.h2{height:47.647188pt;}
.hd{height:48.347500pt;}
.h9{height:52.813750pt;}
.hf{height:53.590000pt;}
.h14{height:57.406250pt;}
.h4{height:58.250000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w13{width:64.800000pt;}
.wb{width:65.440000pt;}
.wa{width:65.472000pt;}
.w12{width:65.632000pt;}
.w6{width:71.040000pt;}
.w5{width:71.072000pt;}
.wf{width:74.880000pt;}
.w14{width:75.552000pt;}
.w7{width:79.872000pt;}
.wc{width:84.352000pt;}
.w10{width:84.512000pt;}
.we{width:96.032000pt;}
.wd{width:157.946667pt;}
.w4{width:160.666667pt;}
.w8{width:161.306667pt;}
.w9{width:197.466667pt;}
.w11{width:206.906667pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x3a{left:8.040000pt;}
.x1f{left:11.520000pt;}
.x27{left:12.680000pt;}
.x26{left:13.760000pt;}
.x1e{left:14.720000pt;}
.x28{left:16.360000pt;}
.x29{left:17.440000pt;}
.x14{left:19.200000pt;}
.x34{left:22.240000pt;}
.x35{left:28.960000pt;}
.x39{left:33.000000pt;}
.x17{left:34.760000pt;}
.x19{left:35.880000pt;}
.x25{left:37.320000pt;}
.x2a{left:38.440000pt;}
.x2f{left:42.760000pt;}
.x1d{left:48.954667pt;}
.x31{left:67.552000pt;}
.x2{left:71.871992pt;}
.xa{left:73.471992pt;}
.x36{left:74.714667pt;}
.xf{left:76.671992pt;}
.x21{left:77.914667pt;}
.x12{left:80.314667pt;}
.x3{left:82.271992pt;}
.x10{left:86.271992pt;}
.x11{left:87.392000pt;}
.x20{left:89.631992pt;}
.xb{left:91.711992pt;}
.x1b{left:95.391992pt;}
.xd{left:109.631992pt;}
.x1c{left:124.511992pt;}
.x5{left:145.946658pt;}
.x4{left:153.946658pt;}
.x2b{left:166.266658pt;}
.x30{left:178.626658pt;}
.x9{left:212.226658pt;}
.xc{left:218.306658pt;}
.x2c{left:239.426667pt;}
.x13{left:248.706667pt;}
.xe{left:263.906658pt;}
.x32{left:265.826667pt;}
.x22{left:270.466667pt;}
.x1a{left:272.386658pt;}
.x1{left:276.066658pt;}
.x8{left:279.746658pt;}
.x2d{left:311.133333pt;}
.x15{left:320.573333pt;}
.x33{left:331.933333pt;}
.x23{left:336.733333pt;}
.x37{left:346.173333pt;}
.x2e{left:382.813333pt;}
.x16{left:392.253333pt;}
.x24{left:402.813333pt;}
.x6{left:407.773317pt;}
.x38{left:411.613333pt;}
.x7{left:413.693325pt;}
}




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