
    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_4066d5dcf67fe42b1b4ccb00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_456d5fc36eff1134fabafbbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_357b04caec22739c17396808.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_c95fb6d2652b20adc9b128e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882324;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_96b3ace26844f24cfbb776df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1524d539fdc879a181e6eabb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_2c7fb06f4bba011200a10894.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v7{vertical-align:-25.920000px;}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-14.400000px;}
.v5{vertical-align:-5.760000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.760000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:24.480000px;}
.v6{vertical-align:40.320000px;}
.ls34{letter-spacing:-1.728000px;}
.ls32{letter-spacing:-1.584000px;}
.ls14{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.425600px;}
.lsd{letter-spacing:-1.296000px;}
.ls10{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.648000px;}
.ls27{letter-spacing:-0.609408px;}
.ls21{letter-spacing:-0.524160px;}
.lsc{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.304704px;}
.ls7{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.251856px;}
.ls28{letter-spacing:-0.152352px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.014256px;}
.ls8{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.152352px;}
.ls2{letter-spacing:0.175392px;}
.lsf{letter-spacing:0.232848px;}
.ls2e{letter-spacing:0.234720px;}
.ls1d{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.ls29{letter-spacing:0.609408px;}
.ls4{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.700560px;}
.ls0{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.722304px;}
.ls2c{letter-spacing:1.080000px;}
.lse{letter-spacing:1.152000px;}
.ls33{letter-spacing:2.160000px;}
.ls2b{letter-spacing:3.600000px;}
.ls1a{letter-spacing:3.744000px;}
.ls1c{letter-spacing:3.938400px;}
.ls17{letter-spacing:5.040000px;}
.ls5{letter-spacing:6.480000px;}
.ls30{letter-spacing:7.920000px;}
.ls2d{letter-spacing:9.360000px;}
.ls13{letter-spacing:10.800000px;}
.ls1{letter-spacing:18.000000px;}
.ls1b{letter-spacing:18.338400px;}
.ls6{letter-spacing:19.440000px;}
.ls2a{letter-spacing:20.880000px;}
.ls18{letter-spacing:24.069600px;}
.ls31{letter-spacing:25.200000px;}
.ls19{letter-spacing:45.482400px;}
.ls1f{letter-spacing:85.392000px;}
.ls2f{letter-spacing:193.680000px;}
.ls1e{letter-spacing:200.592000px;}
.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;}
}
.wse{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.504000px;}
.ws15{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.496000px;}
.ws8{word-spacing:-17.352000px;}
.wsd{word-spacing:-17.208000px;}
.ws24{word-spacing:-17.169408px;}
.wsf{word-spacing:-17.064000px;}
.ws21{word-spacing:-16.712352px;}
.ws7{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.407648px;}
.ws20{word-spacing:-16.255296px;}
.ws22{word-spacing:-15.950592px;}
.ws1{word-spacing:-15.000000px;}
.ws1d{word-spacing:-12.602304px;}
.ws6{word-spacing:-12.112848px;}
.ws1e{word-spacing:-11.894256px;}
.ws12{word-spacing:-11.880000px;}
.wsc{word-spacing:-11.628144px;}
.ws1f{word-spacing:-10.454400px;}
.ws1c{word-spacing:-0.750960px;}
.ws10{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.050400px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:14.405040px;}
.ws1b{word-spacing:15.881040px;}
.ws13{word-spacing:21.024000px;}
.ws1a{word-spacing:23.294880px;}
.ws16{word-spacing:39.384000px;}
.ws17{word-spacing:40.536000px;}
._1c{margin-left:-11.520000px;}
._20{margin-left:-10.080000px;}
._1d{margin-left:-6.689664px;}
._1b{margin-left:-5.205888px;}
._9{margin-left:-3.945600px;}
._3{margin-left:-2.854080px;}
._1{margin-left:-1.336320px;}
._2{width:1.119168px;}
._a{width:2.664000px;}
._0{width:3.758400px;}
._16{width:4.799808px;}
._8{width:5.881536px;}
._7{width:7.128000px;}
._10{width:8.248320px;}
._11{width:9.616320px;}
._5{width:10.800000px;}
._17{width:11.952000px;}
._18{width:13.002624px;}
._b{width:14.376960px;}
._6{width:15.549120px;}
._4{width:16.646400px;}
._14{width:19.289664px;}
._f{width:20.304000px;}
._c{width:21.456000px;}
._e{width:22.524480px;}
._d{width:23.904000px;}
._12{width:25.244352px;}
._13{width:26.896320px;}
._1a{width:28.584000px;}
._19{width:29.592000px;}
._25{width:31.104000px;}
._26{width:32.186304px;}
._24{width:33.456384px;}
._3a{width:34.568640px;}
._23{width:35.640000px;}
._44{width:36.648000px;}
._27{width:39.096000px;}
._28{width:40.248000px;}
._46{width:41.728320px;}
._45{width:43.816320px;}
._31{width:45.922752px;}
._21{width:47.521152px;}
._22{width:48.816000px;}
._1e{width:54.720000px;}
._1f{width:56.030400px;}
._39{width:57.856320px;}
._47{width:59.208192px;}
._2b{width:62.208000px;}
._34{width:70.310016px;}
._33{width:71.353152px;}
._43{width:72.504000px;}
._3e{width:75.784320px;}
._2a{width:90.896832px;}
._40{width:96.584832px;}
._3f{width:97.816320px;}
._49{width:100.782720px;}
._48{width:102.096000px;}
._3c{width:103.415040px;}
._3b{width:104.656320px;}
._42{width:106.496640px;}
._41{width:108.720000px;}
._2f{width:123.041664px;}
._2e{width:124.096320px;}
._30{width:125.280000px;}
._29{width:130.248000px;}
._32{width:140.544000px;}
._38{width:152.424000px;}
._4a{width:171.648000px;}
._4b{width:172.656000px;}
._4c{width:176.544000px;}
._3d{width:192.384000px;}
._15{width:193.680000px;}
._2c{width:207.864000px;}
._2d{width:208.990080px;}
._36{width:211.032000px;}
._37{width:212.184000px;}
._35{width:213.376320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:3.780000px;}
.ye5{bottom:3.900000px;}
.yeb{bottom:4.020000px;}
.yda{bottom:4.080000px;}
.ycb{bottom:4.200000px;}
.yc1{bottom:4.380000px;}
.ydc{bottom:4.500000px;}
.ye3{bottom:4.620000px;}
.yd2{bottom:4.680000px;}
.yed{bottom:4.800000px;}
.yd4{bottom:5.100000px;}
.yc3{bottom:5.160000px;}
.yd8{bottom:9.600000px;}
.yd0{bottom:13.020000px;}
.ybf{bottom:13.080000px;}
.ye1{bottom:13.320000px;}
.ybb{bottom:13.560000px;}
.ycc{bottom:13.620000px;}
.ydd{bottom:13.920000px;}
.yc7{bottom:13.980000px;}
.ye9{bottom:14.220000px;}
.yd7{bottom:28.320000px;}
.ycf{bottom:32.100000px;}
.ybe{bottom:32.160000px;}
.ye0{bottom:32.400000px;}
.yc6{bottom:32.700000px;}
.ye8{bottom:33.300000px;}
.yd6{bottom:47.400000px;}
.ybd{bottom:50.880000px;}
.ydf{bottom:51.120000px;}
.yce{bottom:51.180000px;}
.yc5{bottom:51.780000px;}
.ye7{bottom:52.020000px;}
.y28{bottom:110.280000px;}
.yf1{bottom:111.720000px;}
.y168{bottom:115.680000px;}
.y6c{bottom:119.640000px;}
.y115{bottom:122.160000px;}
.yfe{bottom:124.680000px;}
.y8b{bottom:126.840000px;}
.y16c{bottom:127.560000px;}
.y10e{bottom:130.080000px;}
.y40{bottom:132.600000px;}
.y175{bottom:132.960000px;}
.y58{bottom:133.320000px;}
.y10f{bottom:134.400000px;}
.yb1{bottom:136.920000px;}
.y164{bottom:139.800000px;}
.y14e{bottom:144.120000px;}
.y15a{bottom:145.200000px;}
.y122{bottom:151.680000px;}
.yf0{bottom:154.560000px;}
.y13c{bottom:157.080000px;}
.y99{bottom:158.880000px;}
.y6b{bottom:161.040000px;}
.y27{bottom:163.560000px;}
.yfd{bottom:166.080000px;}
.y8a{bottom:168.240000px;}
.y16b{bottom:168.960000px;}
.y10d{bottom:171.480000px;}
.yf3{bottom:172.200000px;}
.y3f{bottom:174.000000px;}
.y57{bottom:174.720000px;}
.y63{bottom:175.800000px;}
.yb0{bottom:178.320000px;}
.yb9{bottom:180.120000px;}
.y163{bottom:181.200000px;}
.y14d{bottom:185.520000px;}
.y159{bottom:186.600000px;}
.y7d{bottom:192.000000px;}
.y121{bottom:193.080000px;}
.yef{bottom:197.760000px;}
.y13b{bottom:198.480000px;}
.y6a{bottom:202.440000px;}
.y26{bottom:204.960000px;}
.yfc{bottom:207.480000px;}
.y89{bottom:209.640000px;}
.y16a{bottom:210.360000px;}
.y98{bottom:213.240000px;}
.yf2{bottom:213.600000px;}
.y10c{bottom:214.680000px;}
.y3e{bottom:215.400000px;}
.y56{bottom:216.120000px;}
.y62{bottom:217.200000px;}
.yb8{bottom:221.520000px;}
.y16f{bottom:222.600000px;}
.y14c{bottom:226.920000px;}
.y158{bottom:228.000000px;}
.yaf{bottom:231.600000px;}
.y120{bottom:234.480000px;}
.y13a{bottom:239.880000px;}
.yee{bottom:240.600000px;}
.y69{bottom:243.840000px;}
.y7c{bottom:245.280000px;}
.y114{bottom:246.360000px;}
.yfb{bottom:248.880000px;}
.y88{bottom:251.040000px;}
.y169{bottom:251.760000px;}
.y3d{bottom:256.800000px;}
.y55{bottom:257.520000px;}
.y25{bottom:258.600000px;}
.ye6{bottom:259.500000px;}
.yb7{bottom:262.920000px;}
.y16e{bottom:264.000000px;}
.y97{bottom:266.880000px;}
.y10b{bottom:267.960000px;}
.y157{bottom:269.400000px;}
.yae{bottom:273.000000px;}
.y11f{bottom:275.880000px;}
.y14b{bottom:280.560000px;}
.y139{bottom:281.280000px;}
.y68{bottom:285.240000px;}
.y7b{bottom:286.680000px;}
.y113{bottom:287.760000px;}
.yec{bottom:288.000000px;}
.yfa{bottom:290.280000px;}
.y87{bottom:292.440000px;}
.y167{bottom:293.160000px;}
.y3c{bottom:298.200000px;}
.y54{bottom:298.920000px;}
.y24{bottom:300.000000px;}
.yb6{bottom:304.320000px;}
.y174{bottom:305.400000px;}
.yea{bottom:307.500000px;}
.y96{bottom:308.280000px;}
.y156{bottom:310.800000px;}
.yad{bottom:314.400000px;}
.y162{bottom:317.280000px;}
.y10a{bottom:321.240000px;}
.y14a{bottom:321.960000px;}
.y138{bottom:322.680000px;}
.y67{bottom:326.640000px;}
.y7a{bottom:327.360000px;}
.y112{bottom:329.160000px;}
.yf9{bottom:331.680000px;}
.y86{bottom:333.840000px;}
.y160{bottom:334.560000px;}
.yde{bottom:336.000000px;}
.y3b{bottom:339.600000px;}
.y53{bottom:340.320000px;}
.y23{bottom:341.400000px;}
.yb5{bottom:345.720000px;}
.y173{bottom:346.800000px;}
.y95{bottom:349.680000px;}
.y77{bottom:350.040000px;}
.y78{bottom:350.760000px;}
.y128{bottom:353.280000px;}
.yac{bottom:355.800000px;}
.y161{bottom:358.680000px;}
.y149{bottom:363.360000px;}
.y137{bottom:364.080000px;}
.ye4{bottom:364.500000px;}
.y66{bottom:368.040000px;}
.y111{bottom:370.560000px;}
.yf8{bottom:373.080000px;}
.y109{bottom:374.880000px;}
.y15f{bottom:375.960000px;}
.y79{bottom:376.680000px;}
.y3a{bottom:381.000000px;}
.y52{bottom:381.720000px;}
.ye2{bottom:382.500000px;}
.y22{bottom:382.800000px;}
.y85{bottom:387.120000px;}
.y166{bottom:388.200000px;}
.y94{bottom:391.080000px;}
.y127{bottom:394.680000px;}
.yab{bottom:397.200000px;}
.y16d{bottom:400.080000px;}
.y148{bottom:404.760000px;}
.y136{bottom:405.480000px;}
.yd5{bottom:411.000000px;}
.y65{bottom:411.240000px;}
.y110{bottom:411.960000px;}
.y15e{bottom:417.360000px;}
.y39{bottom:422.400000px;}
.y51{bottom:423.120000px;}
.y21{bottom:424.200000px;}
.yf7{bottom:426.360000px;}
.y108{bottom:428.160000px;}
.yb4{bottom:428.520000px;}
.y165{bottom:429.600000px;}
.y126{bottom:436.080000px;}
.yaa{bottom:438.600000px;}
.ydb{bottom:439.500000px;}
.y84{bottom:440.400000px;}
.y172{bottom:441.480000px;}
.y64{bottom:444.720000px;}
.y93{bottom:445.440000px;}
.y147{bottom:446.160000px;}
.y155{bottom:446.880000px;}
.y11e{bottom:453.360000px;}
.y135{bottom:458.760000px;}
.yd9{bottom:459.000000px;}
.y38{bottom:463.800000px;}
.y50{bottom:464.520000px;}
.y20{bottom:465.600000px;}
.y107{bottom:469.560000px;}
.yb3{bottom:469.920000px;}
.y15d{bottom:471.000000px;}
.y125{bottom:477.480000px;}
.yf6{bottom:479.640000px;}
.ya9{bottom:480.000000px;}
.y83{bottom:481.800000px;}
.y171{bottom:482.880000px;}
.ycd{bottom:487.500000px;}
.y11d{bottom:494.760000px;}
.y91{bottom:499.080000px;}
.y146{bottom:499.440000px;}
.y92{bottom:499.800000px;}
.y154{bottom:500.160000px;}
.y37{bottom:505.200000px;}
.y4f{bottom:505.920000px;}
.y1f{bottom:507.000000px;}
.y134{bottom:512.400000px;}
.yd3{bottom:514.500000px;}
.y105{bottom:516.000000px;}
.y124{bottom:518.880000px;}
.y106{bottom:519.240000px;}
.yf5{bottom:521.040000px;}
.ya8{bottom:521.400000px;}
.y82{bottom:523.200000px;}
.y170{bottom:524.280000px;}
.yd1{bottom:534.000000px;}
.y11c{bottom:536.160000px;}
.y145{bottom:540.840000px;}
.y153{bottom:541.560000px;}
.y36{bottom:546.600000px;}
.y4e{bottom:547.320000px;}
.y1e{bottom:548.400000px;}
.y8f{bottom:553.440000px;}
.y15c{bottom:553.800000px;}
.y90{bottom:554.160000px;}
.y123{bottom:560.280000px;}
.yf4{bottom:560.640000px;}
.yc4{bottom:562.500000px;}
.ya7{bottom:562.800000px;}
.y81{bottom:564.600000px;}
.y133{bottom:565.680000px;}
.yb2{bottom:568.920000px;}
.y104{bottom:569.280000px;}
.y11b{bottom:577.560000px;}
.y152{bottom:582.960000px;}
.y76{bottom:588.000000px;}
.y4d{bottom:588.720000px;}
.y1d{bottom:589.800000px;}
.yca{bottom:591.000000px;}
.y144{bottom:594.120000px;}
.y15b{bottom:595.200000px;}
.y35{bottom:599.880000px;}
.y61{bottom:601.680000px;}
.ya6{bottom:604.200000px;}
.y80{bottom:606.000000px;}
.y8e{bottom:607.080000px;}
.yc8{bottom:610.500000px;}
.y103{bottom:610.680000px;}
.y11a{bottom:618.960000px;}
.y75{bottom:629.400000px;}
.y4c{bottom:630.120000px;}
.y1c{bottom:631.200000px;}
.y143{bottom:635.520000px;}
.y151{bottom:636.600000px;}
.ybc{bottom:639.000000px;}
.y34{bottom:641.280000px;}
.y60{bottom:643.080000px;}
.ya5{bottom:645.600000px;}
.y7f{bottom:647.400000px;}
.y8d{bottom:648.480000px;}
.y102{bottom:652.080000px;}
.y119{bottom:660.360000px;}
.yc2{bottom:666.000000px;}
.y74{bottom:670.800000px;}
.y4b{bottom:671.520000px;}
.y1b{bottom:672.600000px;}
.y142{bottom:676.920000px;}
.y150{bottom:678.000000px;}
.y33{bottom:682.680000px;}
.y5f{bottom:684.480000px;}
.yc0{bottom:685.500000px;}
.ya4{bottom:687.000000px;}
.y132{bottom:689.880000px;}
.y101{bottom:693.480000px;}
.y7e{bottom:701.400000px;}
.y8c{bottom:701.760000px;}
.y73{bottom:712.200000px;}
.y1a{bottom:714.000000px;}
.yba{bottom:717.000000px;}
.y141{bottom:718.320000px;}
.y32{bottom:724.080000px;}
.y4a{bottom:725.160000px;}
.y5e{bottom:725.880000px;}
.ya3{bottom:728.400000px;}
.y131{bottom:731.280000px;}
.y100{bottom:734.880000px;}
.y118{bottom:743.160000px;}
.yc{bottom:746.760000px;}
.y72{bottom:753.600000px;}
.y19{bottom:755.400000px;}
.y140{bottom:759.720000px;}
.y31{bottom:765.480000px;}
.y49{bottom:766.560000px;}
.y5d{bottom:767.280000px;}
.ya2{bottom:769.800000px;}
.y130{bottom:772.680000px;}
.yff{bottom:774.120000px;}
.y117{bottom:784.560000px;}
.yb{bottom:788.160000px;}
.ya{bottom:794.280000px;}
.y71{bottom:795.000000px;}
.y18{bottom:796.800000px;}
.y13f{bottom:801.120000px;}
.y30{bottom:806.880000px;}
.y48{bottom:807.960000px;}
.y5c{bottom:808.680000px;}
.ya1{bottom:811.200000px;}
.y12f{bottom:814.080000px;}
.y116{bottom:825.960000px;}
.y70{bottom:836.400000px;}
.y17{bottom:838.200000px;}
.y9{bottom:841.800000px;}
.y2f{bottom:848.280000px;}
.y47{bottom:849.360000px;}
.y5b{bottom:850.080000px;}
.ya0{bottom:852.600000px;}
.y13e{bottom:854.760000px;}
.y12e{bottom:855.480000px;}
.y12a{bottom:867.360000px;}
.y6f{bottom:877.800000px;}
.y16{bottom:879.600000px;}
.y8{bottom:883.200000px;}
.y7{bottom:889.320000px;}
.y2e{bottom:889.680000px;}
.y46{bottom:890.760000px;}
.y5a{bottom:891.480000px;}
.y9f{bottom:894.000000px;}
.y13d{bottom:896.520000px;}
.y12d{bottom:896.880000px;}
.y129{bottom:908.760000px;}
.y6e{bottom:919.200000px;}
.y15{bottom:921.000000px;}
.y2d{bottom:931.080000px;}
.y45{bottom:932.520000px;}
.y59{bottom:932.880000px;}
.y6{bottom:936.480000px;}
.y12c{bottom:938.280000px;}
.y9e{bottom:947.280000px;}
.y14f{bottom:950.160000px;}
.y6d{bottom:960.600000px;}
.y14{bottom:962.040000px;}
.y2c{bottom:972.480000px;}
.y44{bottom:974.280000px;}
.y5{bottom:977.880000px;}
.y4{bottom:984.000000px;}
.y12b{bottom:991.560000px;}
.y9d{bottom:1000.560000px;}
.y13{bottom:1003.440000px;}
.y2b{bottom:1013.880000px;}
.y43{bottom:1015.680000px;}
.y3{bottom:1031.160000px;}
.y9c{bottom:1041.960000px;}
.y12{bottom:1044.840000px;}
.y2a{bottom:1055.280000px;}
.y42{bottom:1057.080000px;}
.y9b{bottom:1083.360000px;}
.y11{bottom:1086.240000px;}
.y2{bottom:1089.120000px;}
.y29{bottom:1096.680000px;}
.y41{bottom:1098.480000px;}
.y1{bottom:1137.360000px;}
.y9a{bottom:1139.520000px;}
.y10{bottom:1139.880000px;}
.yf{bottom:1196.728500px;}
.ye{bottom:1214.728500px;}
.yd{bottom:1232.728500px;}
.h13{height:19.500000px;}
.h11{height:21.000000px;}
.h12{height:28.500000px;}
.h10{height:30.000000px;}
.h6{height:39.630937px;}
.hc{height:40.500000px;}
.h7{height:41.689453px;}
.he{height:44.893125px;}
.h8{height:48.796875px;}
.hf{height:55.243125px;}
.h1{height:56.604375px;}
.h3{height:60.046875px;}
.ha{height:62.507813px;}
.hb{height:63.035156px;}
.h5{height:64.110937px;}
.h4{height:65.387812px;}
.hd{height:76.500000px;}
.h9{height:89.296875px;}
.h2{height:1245.000000px;}
.h0{height:1263.000000px;}
.w3{width:76.500000px;}
.w5{width:93.000000px;}
.w4{width:108.000000px;}
.w6{width:112.500000px;}
.w2{width:117.000000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2d{left:8.640000px;}
.x2b{left:12.600000px;}
.x1f{left:15.840000px;}
.x29{left:16.920000px;}
.x27{left:18.660000px;}
.x20{left:21.120000px;}
.x2a{left:22.260000px;}
.x28{left:24.840000px;}
.x2{left:27.000000px;}
.x23{left:30.240000px;}
.x26{left:33.420000px;}
.x22{left:34.500000px;}
.x2c{left:38.100000px;}
.x25{left:40.620000px;}
.x1d{left:43.860000px;}
.x5{left:45.394500px;}
.x8{left:46.440000px;}
.x6{left:55.440000px;}
.x3{left:64.440000px;}
.x4{left:100.440000px;}
.x1{left:127.440000px;}
.x32{left:163.440000px;}
.x7{left:180.360000px;}
.x1e{left:243.000000px;}
.x19{left:263.160000px;}
.x17{left:272.520000px;}
.x1b{left:273.600000px;}
.x13{left:303.480000px;}
.x11{left:318.960000px;}
.x15{left:321.120000px;}
.x9{left:331.560000px;}
.xf{left:334.800000px;}
.xd{left:387.000000px;}
.xc{left:394.200000px;}
.xa{left:413.640000px;}
.x21{left:424.500000px;}
.x31{left:446.760000px;}
.xb{left:482.040000px;}
.x12{left:486.360000px;}
.x14{left:502.200000px;}
.x16{left:513.000000px;}
.x10{left:530.640000px;}
.xe{left:534.600000px;}
.x1c{left:592.200000px;}
.x18{left:593.280000px;}
.x2f{left:595.080000px;}
.x1a{left:602.280000px;}
.x24{left:622.500000px;}
.x2e{left:715.320000px;}
.x30{left:765.000000px;}
@media print{
.v7{vertical-align:-23.040000pt;}
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-12.800000pt;}
.v5{vertical-align:-5.120000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.120000pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:21.760000pt;}
.v6{vertical-align:35.840000pt;}
.ls34{letter-spacing:-1.536000pt;}
.ls32{letter-spacing:-1.408000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.267200pt;}
.lsd{letter-spacing:-1.152000pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls27{letter-spacing:-0.541696pt;}
.ls21{letter-spacing:-0.465920pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.270848pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.223872pt;}
.ls28{letter-spacing:-0.135424pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.012672pt;}
.ls8{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.135424pt;}
.ls2{letter-spacing:0.155904pt;}
.lsf{letter-spacing:0.206976pt;}
.ls2e{letter-spacing:0.208640pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls29{letter-spacing:0.541696pt;}
.ls4{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.622720pt;}
.ls0{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.642048pt;}
.ls2c{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.024000pt;}
.ls33{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:3.328000pt;}
.ls1c{letter-spacing:3.500800pt;}
.ls17{letter-spacing:4.480000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls30{letter-spacing:7.040000pt;}
.ls2d{letter-spacing:8.320000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls1{letter-spacing:16.000000pt;}
.ls1b{letter-spacing:16.300800pt;}
.ls6{letter-spacing:17.280000pt;}
.ls2a{letter-spacing:18.560000pt;}
.ls18{letter-spacing:21.395200pt;}
.ls31{letter-spacing:22.400000pt;}
.ls19{letter-spacing:40.428800pt;}
.ls1f{letter-spacing:75.904000pt;}
.ls2f{letter-spacing:172.160000pt;}
.ls1e{letter-spacing:178.304000pt;}
.wse{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.552000pt;}
.ws8{word-spacing:-15.424000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws24{word-spacing:-15.261696pt;}
.wsf{word-spacing:-15.168000pt;}
.ws21{word-spacing:-14.855424pt;}
.ws7{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.584576pt;}
.ws20{word-spacing:-14.449152pt;}
.ws22{word-spacing:-14.178304pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-11.202048pt;}
.ws6{word-spacing:-10.766976pt;}
.ws1e{word-spacing:-10.572672pt;}
.ws12{word-spacing:-10.560000pt;}
.wsc{word-spacing:-10.336128pt;}
.ws1f{word-spacing:-9.292800pt;}
.ws1c{word-spacing:-0.667520pt;}
.ws10{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.044800pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:12.804480pt;}
.ws1b{word-spacing:14.116480pt;}
.ws13{word-spacing:18.688000pt;}
.ws1a{word-spacing:20.706560pt;}
.ws16{word-spacing:35.008000pt;}
.ws17{word-spacing:36.032000pt;}
._1c{margin-left:-10.240000pt;}
._20{margin-left:-8.960000pt;}
._1d{margin-left:-5.946368pt;}
._1b{margin-left:-4.627456pt;}
._9{margin-left:-3.507200pt;}
._3{margin-left:-2.536960pt;}
._1{margin-left:-1.187840pt;}
._2{width:0.994816pt;}
._a{width:2.368000pt;}
._0{width:3.340800pt;}
._16{width:4.266496pt;}
._8{width:5.228032pt;}
._7{width:6.336000pt;}
._10{width:7.331840pt;}
._11{width:8.547840pt;}
._5{width:9.600000pt;}
._17{width:10.624000pt;}
._18{width:11.557888pt;}
._b{width:12.779520pt;}
._6{width:13.821440pt;}
._4{width:14.796800pt;}
._14{width:17.146368pt;}
._f{width:18.048000pt;}
._c{width:19.072000pt;}
._e{width:20.021760pt;}
._d{width:21.248000pt;}
._12{width:22.439424pt;}
._13{width:23.907840pt;}
._1a{width:25.408000pt;}
._19{width:26.304000pt;}
._25{width:27.648000pt;}
._26{width:28.610048pt;}
._24{width:29.739008pt;}
._3a{width:30.727680pt;}
._23{width:31.680000pt;}
._44{width:32.576000pt;}
._27{width:34.752000pt;}
._28{width:35.776000pt;}
._46{width:37.091840pt;}
._45{width:38.947840pt;}
._31{width:40.820224pt;}
._21{width:42.241024pt;}
._22{width:43.392000pt;}
._1e{width:48.640000pt;}
._1f{width:49.804800pt;}
._39{width:51.427840pt;}
._47{width:52.629504pt;}
._2b{width:55.296000pt;}
._34{width:62.497792pt;}
._33{width:63.425024pt;}
._43{width:64.448000pt;}
._3e{width:67.363840pt;}
._2a{width:80.797184pt;}
._40{width:85.853184pt;}
._3f{width:86.947840pt;}
._49{width:89.584640pt;}
._48{width:90.752000pt;}
._3c{width:91.924480pt;}
._3b{width:93.027840pt;}
._42{width:94.663680pt;}
._41{width:96.640000pt;}
._2f{width:109.370368pt;}
._2e{width:110.307840pt;}
._30{width:111.360000pt;}
._29{width:115.776000pt;}
._32{width:124.928000pt;}
._38{width:135.488000pt;}
._4a{width:152.576000pt;}
._4b{width:153.472000pt;}
._4c{width:156.928000pt;}
._3d{width:171.008000pt;}
._15{width:172.160000pt;}
._2c{width:184.768000pt;}
._2d{width:185.768960pt;}
._36{width:187.584000pt;}
._37{width:188.608000pt;}
._35{width:189.667840pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:3.360000pt;}
.ye5{bottom:3.466667pt;}
.yeb{bottom:3.573333pt;}
.yda{bottom:3.626667pt;}
.ycb{bottom:3.733333pt;}
.yc1{bottom:3.893333pt;}
.ydc{bottom:4.000000pt;}
.ye3{bottom:4.106667pt;}
.yd2{bottom:4.160000pt;}
.yed{bottom:4.266667pt;}
.yd4{bottom:4.533333pt;}
.yc3{bottom:4.586667pt;}
.yd8{bottom:8.533333pt;}
.yd0{bottom:11.573333pt;}
.ybf{bottom:11.626667pt;}
.ye1{bottom:11.840000pt;}
.ybb{bottom:12.053333pt;}
.ycc{bottom:12.106667pt;}
.ydd{bottom:12.373333pt;}
.yc7{bottom:12.426667pt;}
.ye9{bottom:12.640000pt;}
.yd7{bottom:25.173333pt;}
.ycf{bottom:28.533333pt;}
.ybe{bottom:28.586667pt;}
.ye0{bottom:28.800000pt;}
.yc6{bottom:29.066667pt;}
.ye8{bottom:29.600000pt;}
.yd6{bottom:42.133333pt;}
.ybd{bottom:45.226667pt;}
.ydf{bottom:45.440000pt;}
.yce{bottom:45.493333pt;}
.yc5{bottom:46.026667pt;}
.ye7{bottom:46.240000pt;}
.y28{bottom:98.026667pt;}
.yf1{bottom:99.306667pt;}
.y168{bottom:102.826667pt;}
.y6c{bottom:106.346667pt;}
.y115{bottom:108.586667pt;}
.yfe{bottom:110.826667pt;}
.y8b{bottom:112.746667pt;}
.y16c{bottom:113.386667pt;}
.y10e{bottom:115.626667pt;}
.y40{bottom:117.866667pt;}
.y175{bottom:118.186667pt;}
.y58{bottom:118.506667pt;}
.y10f{bottom:119.466667pt;}
.yb1{bottom:121.706667pt;}
.y164{bottom:124.266667pt;}
.y14e{bottom:128.106667pt;}
.y15a{bottom:129.066667pt;}
.y122{bottom:134.826667pt;}
.yf0{bottom:137.386667pt;}
.y13c{bottom:139.626667pt;}
.y99{bottom:141.226667pt;}
.y6b{bottom:143.146667pt;}
.y27{bottom:145.386667pt;}
.yfd{bottom:147.626667pt;}
.y8a{bottom:149.546667pt;}
.y16b{bottom:150.186667pt;}
.y10d{bottom:152.426667pt;}
.yf3{bottom:153.066667pt;}
.y3f{bottom:154.666667pt;}
.y57{bottom:155.306667pt;}
.y63{bottom:156.266667pt;}
.yb0{bottom:158.506667pt;}
.yb9{bottom:160.106667pt;}
.y163{bottom:161.066667pt;}
.y14d{bottom:164.906667pt;}
.y159{bottom:165.866667pt;}
.y7d{bottom:170.666667pt;}
.y121{bottom:171.626667pt;}
.yef{bottom:175.786667pt;}
.y13b{bottom:176.426667pt;}
.y6a{bottom:179.946667pt;}
.y26{bottom:182.186667pt;}
.yfc{bottom:184.426667pt;}
.y89{bottom:186.346667pt;}
.y16a{bottom:186.986667pt;}
.y98{bottom:189.546667pt;}
.yf2{bottom:189.866667pt;}
.y10c{bottom:190.826667pt;}
.y3e{bottom:191.466667pt;}
.y56{bottom:192.106667pt;}
.y62{bottom:193.066667pt;}
.yb8{bottom:196.906667pt;}
.y16f{bottom:197.866667pt;}
.y14c{bottom:201.706667pt;}
.y158{bottom:202.666667pt;}
.yaf{bottom:205.866667pt;}
.y120{bottom:208.426667pt;}
.y13a{bottom:213.226667pt;}
.yee{bottom:213.866667pt;}
.y69{bottom:216.746667pt;}
.y7c{bottom:218.026667pt;}
.y114{bottom:218.986667pt;}
.yfb{bottom:221.226667pt;}
.y88{bottom:223.146667pt;}
.y169{bottom:223.786667pt;}
.y3d{bottom:228.266667pt;}
.y55{bottom:228.906667pt;}
.y25{bottom:229.866667pt;}
.ye6{bottom:230.666667pt;}
.yb7{bottom:233.706667pt;}
.y16e{bottom:234.666667pt;}
.y97{bottom:237.226667pt;}
.y10b{bottom:238.186667pt;}
.y157{bottom:239.466667pt;}
.yae{bottom:242.666667pt;}
.y11f{bottom:245.226667pt;}
.y14b{bottom:249.386667pt;}
.y139{bottom:250.026667pt;}
.y68{bottom:253.546667pt;}
.y7b{bottom:254.826667pt;}
.y113{bottom:255.786667pt;}
.yec{bottom:256.000000pt;}
.yfa{bottom:258.026667pt;}
.y87{bottom:259.946667pt;}
.y167{bottom:260.586667pt;}
.y3c{bottom:265.066667pt;}
.y54{bottom:265.706667pt;}
.y24{bottom:266.666667pt;}
.yb6{bottom:270.506667pt;}
.y174{bottom:271.466667pt;}
.yea{bottom:273.333333pt;}
.y96{bottom:274.026667pt;}
.y156{bottom:276.266667pt;}
.yad{bottom:279.466667pt;}
.y162{bottom:282.026667pt;}
.y10a{bottom:285.546667pt;}
.y14a{bottom:286.186667pt;}
.y138{bottom:286.826667pt;}
.y67{bottom:290.346667pt;}
.y7a{bottom:290.986667pt;}
.y112{bottom:292.586667pt;}
.yf9{bottom:294.826667pt;}
.y86{bottom:296.746667pt;}
.y160{bottom:297.386667pt;}
.yde{bottom:298.666667pt;}
.y3b{bottom:301.866667pt;}
.y53{bottom:302.506667pt;}
.y23{bottom:303.466667pt;}
.yb5{bottom:307.306667pt;}
.y173{bottom:308.266667pt;}
.y95{bottom:310.826667pt;}
.y77{bottom:311.146667pt;}
.y78{bottom:311.786667pt;}
.y128{bottom:314.026667pt;}
.yac{bottom:316.266667pt;}
.y161{bottom:318.826667pt;}
.y149{bottom:322.986667pt;}
.y137{bottom:323.626667pt;}
.ye4{bottom:324.000000pt;}
.y66{bottom:327.146667pt;}
.y111{bottom:329.386667pt;}
.yf8{bottom:331.626667pt;}
.y109{bottom:333.226667pt;}
.y15f{bottom:334.186667pt;}
.y79{bottom:334.826667pt;}
.y3a{bottom:338.666667pt;}
.y52{bottom:339.306667pt;}
.ye2{bottom:340.000000pt;}
.y22{bottom:340.266667pt;}
.y85{bottom:344.106667pt;}
.y166{bottom:345.066667pt;}
.y94{bottom:347.626667pt;}
.y127{bottom:350.826667pt;}
.yab{bottom:353.066667pt;}
.y16d{bottom:355.626667pt;}
.y148{bottom:359.786667pt;}
.y136{bottom:360.426667pt;}
.yd5{bottom:365.333333pt;}
.y65{bottom:365.546667pt;}
.y110{bottom:366.186667pt;}
.y15e{bottom:370.986667pt;}
.y39{bottom:375.466667pt;}
.y51{bottom:376.106667pt;}
.y21{bottom:377.066667pt;}
.yf7{bottom:378.986667pt;}
.y108{bottom:380.586667pt;}
.yb4{bottom:380.906667pt;}
.y165{bottom:381.866667pt;}
.y126{bottom:387.626667pt;}
.yaa{bottom:389.866667pt;}
.ydb{bottom:390.666667pt;}
.y84{bottom:391.466667pt;}
.y172{bottom:392.426667pt;}
.y64{bottom:395.306667pt;}
.y93{bottom:395.946667pt;}
.y147{bottom:396.586667pt;}
.y155{bottom:397.226667pt;}
.y11e{bottom:402.986667pt;}
.y135{bottom:407.786667pt;}
.yd9{bottom:408.000000pt;}
.y38{bottom:412.266667pt;}
.y50{bottom:412.906667pt;}
.y20{bottom:413.866667pt;}
.y107{bottom:417.386667pt;}
.yb3{bottom:417.706667pt;}
.y15d{bottom:418.666667pt;}
.y125{bottom:424.426667pt;}
.yf6{bottom:426.346667pt;}
.ya9{bottom:426.666667pt;}
.y83{bottom:428.266667pt;}
.y171{bottom:429.226667pt;}
.ycd{bottom:433.333333pt;}
.y11d{bottom:439.786667pt;}
.y91{bottom:443.626667pt;}
.y146{bottom:443.946667pt;}
.y92{bottom:444.266667pt;}
.y154{bottom:444.586667pt;}
.y37{bottom:449.066667pt;}
.y4f{bottom:449.706667pt;}
.y1f{bottom:450.666667pt;}
.y134{bottom:455.466667pt;}
.yd3{bottom:457.333333pt;}
.y105{bottom:458.666667pt;}
.y124{bottom:461.226667pt;}
.y106{bottom:461.546667pt;}
.yf5{bottom:463.146667pt;}
.ya8{bottom:463.466667pt;}
.y82{bottom:465.066667pt;}
.y170{bottom:466.026667pt;}
.yd1{bottom:474.666667pt;}
.y11c{bottom:476.586667pt;}
.y145{bottom:480.746667pt;}
.y153{bottom:481.386667pt;}
.y36{bottom:485.866667pt;}
.y4e{bottom:486.506667pt;}
.y1e{bottom:487.466667pt;}
.y8f{bottom:491.946667pt;}
.y15c{bottom:492.266667pt;}
.y90{bottom:492.586667pt;}
.y123{bottom:498.026667pt;}
.yf4{bottom:498.346667pt;}
.yc4{bottom:500.000000pt;}
.ya7{bottom:500.266667pt;}
.y81{bottom:501.866667pt;}
.y133{bottom:502.826667pt;}
.yb2{bottom:505.706667pt;}
.y104{bottom:506.026667pt;}
.y11b{bottom:513.386667pt;}
.y152{bottom:518.186667pt;}
.y76{bottom:522.666667pt;}
.y4d{bottom:523.306667pt;}
.y1d{bottom:524.266667pt;}
.yca{bottom:525.333333pt;}
.y144{bottom:528.106667pt;}
.y15b{bottom:529.066667pt;}
.y35{bottom:533.226667pt;}
.y61{bottom:534.826667pt;}
.ya6{bottom:537.066667pt;}
.y80{bottom:538.666667pt;}
.y8e{bottom:539.626667pt;}
.yc8{bottom:542.666667pt;}
.y103{bottom:542.826667pt;}
.y11a{bottom:550.186667pt;}
.y75{bottom:559.466667pt;}
.y4c{bottom:560.106667pt;}
.y1c{bottom:561.066667pt;}
.y143{bottom:564.906667pt;}
.y151{bottom:565.866667pt;}
.ybc{bottom:568.000000pt;}
.y34{bottom:570.026667pt;}
.y60{bottom:571.626667pt;}
.ya5{bottom:573.866667pt;}
.y7f{bottom:575.466667pt;}
.y8d{bottom:576.426667pt;}
.y102{bottom:579.626667pt;}
.y119{bottom:586.986667pt;}
.yc2{bottom:592.000000pt;}
.y74{bottom:596.266667pt;}
.y4b{bottom:596.906667pt;}
.y1b{bottom:597.866667pt;}
.y142{bottom:601.706667pt;}
.y150{bottom:602.666667pt;}
.y33{bottom:606.826667pt;}
.y5f{bottom:608.426667pt;}
.yc0{bottom:609.333333pt;}
.ya4{bottom:610.666667pt;}
.y132{bottom:613.226667pt;}
.y101{bottom:616.426667pt;}
.y7e{bottom:623.466667pt;}
.y8c{bottom:623.786667pt;}
.y73{bottom:633.066667pt;}
.y1a{bottom:634.666667pt;}
.yba{bottom:637.333333pt;}
.y141{bottom:638.506667pt;}
.y32{bottom:643.626667pt;}
.y4a{bottom:644.586667pt;}
.y5e{bottom:645.226667pt;}
.ya3{bottom:647.466667pt;}
.y131{bottom:650.026667pt;}
.y100{bottom:653.226667pt;}
.y118{bottom:660.586667pt;}
.yc{bottom:663.786667pt;}
.y72{bottom:669.866667pt;}
.y19{bottom:671.466667pt;}
.y140{bottom:675.306667pt;}
.y31{bottom:680.426667pt;}
.y49{bottom:681.386667pt;}
.y5d{bottom:682.026667pt;}
.ya2{bottom:684.266667pt;}
.y130{bottom:686.826667pt;}
.yff{bottom:688.106667pt;}
.y117{bottom:697.386667pt;}
.yb{bottom:700.586667pt;}
.ya{bottom:706.026667pt;}
.y71{bottom:706.666667pt;}
.y18{bottom:708.266667pt;}
.y13f{bottom:712.106667pt;}
.y30{bottom:717.226667pt;}
.y48{bottom:718.186667pt;}
.y5c{bottom:718.826667pt;}
.ya1{bottom:721.066667pt;}
.y12f{bottom:723.626667pt;}
.y116{bottom:734.186667pt;}
.y70{bottom:743.466667pt;}
.y17{bottom:745.066667pt;}
.y9{bottom:748.266667pt;}
.y2f{bottom:754.026667pt;}
.y47{bottom:754.986667pt;}
.y5b{bottom:755.626667pt;}
.ya0{bottom:757.866667pt;}
.y13e{bottom:759.786667pt;}
.y12e{bottom:760.426667pt;}
.y12a{bottom:770.986667pt;}
.y6f{bottom:780.266667pt;}
.y16{bottom:781.866667pt;}
.y8{bottom:785.066667pt;}
.y7{bottom:790.506667pt;}
.y2e{bottom:790.826667pt;}
.y46{bottom:791.786667pt;}
.y5a{bottom:792.426667pt;}
.y9f{bottom:794.666667pt;}
.y13d{bottom:796.906667pt;}
.y12d{bottom:797.226667pt;}
.y129{bottom:807.786667pt;}
.y6e{bottom:817.066667pt;}
.y15{bottom:818.666667pt;}
.y2d{bottom:827.626667pt;}
.y45{bottom:828.906667pt;}
.y59{bottom:829.226667pt;}
.y6{bottom:832.426667pt;}
.y12c{bottom:834.026667pt;}
.y9e{bottom:842.026667pt;}
.y14f{bottom:844.586667pt;}
.y6d{bottom:853.866667pt;}
.y14{bottom:855.146667pt;}
.y2c{bottom:864.426667pt;}
.y44{bottom:866.026667pt;}
.y5{bottom:869.226667pt;}
.y4{bottom:874.666667pt;}
.y12b{bottom:881.386667pt;}
.y9d{bottom:889.386667pt;}
.y13{bottom:891.946667pt;}
.y2b{bottom:901.226667pt;}
.y43{bottom:902.826667pt;}
.y3{bottom:916.586667pt;}
.y9c{bottom:926.186667pt;}
.y12{bottom:928.746667pt;}
.y2a{bottom:938.026667pt;}
.y42{bottom:939.626667pt;}
.y9b{bottom:962.986667pt;}
.y11{bottom:965.546667pt;}
.y2{bottom:968.106667pt;}
.y29{bottom:974.826667pt;}
.y41{bottom:976.426667pt;}
.y1{bottom:1010.986667pt;}
.y9a{bottom:1012.906667pt;}
.y10{bottom:1013.226667pt;}
.yf{bottom:1063.758667pt;}
.ye{bottom:1079.758667pt;}
.yd{bottom:1095.758667pt;}
.h13{height:17.333333pt;}
.h11{height:18.666667pt;}
.h12{height:25.333333pt;}
.h10{height:26.666667pt;}
.h6{height:35.227500pt;}
.hc{height:36.000000pt;}
.h7{height:37.057292pt;}
.he{height:39.905000pt;}
.h8{height:43.375000pt;}
.hf{height:49.105000pt;}
.h1{height:50.315000pt;}
.h3{height:53.375000pt;}
.ha{height:55.562500pt;}
.hb{height:56.031250pt;}
.h5{height:56.987500pt;}
.h4{height:58.122500pt;}
.hd{height:68.000000pt;}
.h9{height:79.375000pt;}
.h2{height:1106.666667pt;}
.h0{height:1122.666667pt;}
.w3{width:68.000000pt;}
.w5{width:82.666667pt;}
.w4{width:96.000000pt;}
.w6{width:100.000000pt;}
.w2{width:104.000000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2d{left:7.680000pt;}
.x2b{left:11.200000pt;}
.x1f{left:14.080000pt;}
.x29{left:15.040000pt;}
.x27{left:16.586667pt;}
.x20{left:18.773333pt;}
.x2a{left:19.786667pt;}
.x28{left:22.080000pt;}
.x2{left:24.000000pt;}
.x23{left:26.880000pt;}
.x26{left:29.706667pt;}
.x22{left:30.666667pt;}
.x2c{left:33.866667pt;}
.x25{left:36.106667pt;}
.x1d{left:38.986667pt;}
.x5{left:40.350667pt;}
.x8{left:41.280000pt;}
.x6{left:49.280000pt;}
.x3{left:57.280000pt;}
.x4{left:89.280000pt;}
.x1{left:113.280000pt;}
.x32{left:145.280000pt;}
.x7{left:160.320000pt;}
.x1e{left:216.000000pt;}
.x19{left:233.920000pt;}
.x17{left:242.240000pt;}
.x1b{left:243.200000pt;}
.x13{left:269.760000pt;}
.x11{left:283.520000pt;}
.x15{left:285.440000pt;}
.x9{left:294.720000pt;}
.xf{left:297.600000pt;}
.xd{left:344.000000pt;}
.xc{left:350.400000pt;}
.xa{left:367.680000pt;}
.x21{left:377.333333pt;}
.x31{left:397.120000pt;}
.xb{left:428.480000pt;}
.x12{left:432.320000pt;}
.x14{left:446.400000pt;}
.x16{left:456.000000pt;}
.x10{left:471.680000pt;}
.xe{left:475.200000pt;}
.x1c{left:526.400000pt;}
.x18{left:527.360000pt;}
.x2f{left:528.960000pt;}
.x1a{left:535.360000pt;}
.x24{left:553.333333pt;}
.x2e{left:635.840000pt;}
.x30{left:680.000000pt;}
}




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