
    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_18fbe411af36d6e74b16b4ec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bbbb30ed33f8f764a30d21b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d66dcb088ddc4396efac560e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9370b2e2f52ca9d6e6526baa.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_ff53305c47ee71f3a4c50b26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_a74b3c00254984ef3e5a8c36.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7dad671adbf91d37d0997008.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ee450797b833fb090cc5f097.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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:ffa;src:url('chunks/assets/font_ee78c548c2ba82e2e2454faf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111816;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:ffb;src:url('chunks/assets/font_1eb646fc3651ebbb68d42054.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6e395c18e6d2da81f2e02de2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.111816;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.848000px;}
.ls14{letter-spacing:-0.696000px;}
.ls17{letter-spacing:-0.624000px;}
.ls1c{letter-spacing:-0.348000px;}
.lsd{letter-spacing:-0.336000px;}
.ls1b{letter-spacing:-0.048000px;}
.lsf{letter-spacing:-0.024000px;}
.lse{letter-spacing:-0.018000px;}
.ls10{letter-spacing:-0.012000px;}
.ls11{letter-spacing:-0.006000px;}
.lsc{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.078000px;}
.lsa{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.186000px;}
.ls9{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.312000px;}
.ls15{letter-spacing:0.348000px;}
.ls1{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.522000px;}
.ls21{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.804000px;}
.ls18{letter-spacing:2.652000px;}
.ls19{letter-spacing:2.772000px;}
.ls1a{letter-spacing:5.652000px;}
.ls12{letter-spacing:11.652000px;}
.ls20{letter-spacing:13.152000px;}
.ls1d{letter-spacing:14.652000px;}
.ls1e{letter-spacing:17.652000px;}
.ls5{letter-spacing:29.484000px;}
.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;}
}
.wsd{word-spacing:-66.000000px;}
.wsc{word-spacing:-19.152000px;}
.ws12{word-spacing:-18.870000px;}
.wsf{word-spacing:-18.696000px;}
.wsb{word-spacing:-18.348000px;}
.ws10{word-spacing:-16.680000px;}
.ws5{word-spacing:-15.030000px;}
.ws6{word-spacing:-15.024000px;}
.ws2{word-spacing:-15.012000px;}
.ws8{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.994000px;}
.ws7{word-spacing:-14.988000px;}
.ws4{word-spacing:-13.656000px;}
.ws3{word-spacing:-13.344000px;}
.wse{word-spacing:-12.312000px;}
.ws11{word-spacing:-11.688000px;}
.ws13{word-spacing:-11.556000px;}
.ws14{word-spacing:-10.944000px;}
.ws0{word-spacing:-10.848000px;}
.ws1{word-spacing:-10.512000px;}
.wsa{word-spacing:0.000000px;}
._13{margin-left:-6.264000px;}
._12{margin-left:-5.076000px;}
._c{margin-left:-3.732000px;}
._b{margin-left:-2.370000px;}
._1{margin-left:-1.032000px;}
._0{width:1.404000px;}
._9{width:2.412000px;}
._7{width:3.552000px;}
._8{width:5.382000px;}
._f{width:6.594000px;}
._4{width:7.620000px;}
._5{width:8.856000px;}
._6{width:9.966000px;}
._e{width:11.094000px;}
._11{width:12.270000px;}
._d{width:13.392000px;}
._1b{width:14.484000px;}
._14{width:15.906000px;}
._15{width:17.292000px;}
._a{width:19.506000px;}
._10{width:20.790000px;}
._1e{width:22.158000px;}
._27{width:23.172000px;}
._1c{width:24.366000px;}
._17{width:25.602000px;}
._16{width:27.480000px;}
._2{width:29.094000px;}
._3{width:30.198000px;}
._23{width:31.572000px;}
._20{width:32.742000px;}
._19{width:33.786000px;}
._18{width:35.490000px;}
._1a{width:36.516000px;}
._24{width:37.578000px;}
._28{width:38.790000px;}
._22{width:48.744000px;}
._21{width:49.854000px;}
._1d{width:51.108000px;}
._1f{width:59.292000px;}
._2b{width:99.540000px;}
._29{width:347.292000px;}
._2a{width:349.158000px;}
._25{width:745.800000px;}
._26{width:780.300000px;}
.fc5{color:rgb(17,85,204);}
.fc4{color:transparent;}
.fc3{color:rgb(0,128,0);}
.fc6{color:rgb(5,5,5);}
.fc2{color:rgb(21,21,21);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.yee{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.375000px;}
.ya{bottom:2.625000px;}
.y16{bottom:2.985000px;}
.yc{bottom:3.000000px;}
.y120{bottom:3.015000px;}
.y3{bottom:3.375000px;}
.ye{bottom:3.750000px;}
.y12{bottom:7.125000px;}
.yfb{bottom:18.375000px;}
.y15{bottom:18.405000px;}
.y14{bottom:33.780000px;}
.y139{bottom:36.375000px;}
.y5{bottom:57.412500px;}
.y117{bottom:108.787500px;}
.ya1{bottom:109.912500px;}
.y72{bottom:110.287500px;}
.y17a{bottom:112.162500px;}
.y128{bottom:112.537500px;}
.y122{bottom:112.912500px;}
.yc6{bottom:115.537500px;}
.y10c{bottom:117.412500px;}
.y3f{bottom:118.912500px;}
.ye5{bottom:122.287500px;}
.y116{bottom:124.162500px;}
.y13c{bottom:124.912500px;}
.ya0{bottom:128.662500px;}
.y71{bottom:129.037500px;}
.y115{bottom:129.412500px;}
.y127{bottom:131.287500px;}
.y121{bottom:132.037500px;}
.yc5{bottom:134.287500px;}
.y10b{bottom:136.162500px;}
.y3e{bottom:137.662500px;}
.ye4{bottom:139.537500px;}
.y19e{bottom:142.912500px;}
.y13b{bottom:144.037500px;}
.y114{bottom:144.412500px;}
.y9f{bottom:147.787500px;}
.y70{bottom:148.162500px;}
.y179{bottom:150.045000px;}
.y126{bottom:150.420000px;}
.yc4{bottom:153.420000px;}
.y10a{bottom:155.280000px;}
.y19a{bottom:156.045000px;}
.y19d{bottom:156.420000px;}
.y3d{bottom:156.795000px;}
.y13a{bottom:162.795000px;}
.y155{bottom:163.170000px;}
.y187{bottom:165.030000px;}
.y6f{bottom:166.920000px;}
.y11f{bottom:168.405000px;}
.y178{bottom:169.155000px;}
.y199{bottom:169.920000px;}
.y113{bottom:172.155000px;}
.yc3{bottom:172.530000px;}
.y109{bottom:174.075000px;}
.y3c{bottom:175.950000px;}
.ye3{bottom:178.200000px;}
.y154{bottom:181.950000px;}
.y11e{bottom:183.825000px;}
.y186{bottom:184.200000px;}
.y9e{bottom:185.700000px;}
.y6e{bottom:186.075000px;}
.y125{bottom:186.825000px;}
.y177{bottom:187.950000px;}
.y19c{bottom:190.575000px;}
.yc2{bottom:191.325000px;}
.y108{bottom:193.200000px;}
.ye2{bottom:197.325000px;}
.y138{bottom:199.575000px;}
.y153{bottom:201.075000px;}
.y124{bottom:202.575000px;}
.y185{bottom:202.950000px;}
.y198{bottom:204.075000px;}
.y19b{bottom:204.450000px;}
.y9d{bottom:204.825000px;}
.y6d{bottom:205.200000px;}
.y176{bottom:207.075000px;}
.yc1{bottom:210.450000px;}
.y107{bottom:212.325000px;}
.y3b{bottom:215.700000px;}
.ye1{bottom:216.075000px;}
.y197{bottom:218.325000px;}
.y152{bottom:219.825000px;}
.y184{bottom:222.075000px;}
.y9c{bottom:223.575000px;}
.y6c{bottom:223.950000px;}
.y112{bottom:227.700000px;}
.yc0{bottom:229.200000px;}
.y106{bottom:231.075000px;}
.ye0{bottom:235.200000px;}
.y151{bottom:238.950000px;}
.y183{bottom:240.825000px;}
.y9b{bottom:242.700000px;}
.y6b{bottom:243.075000px;}
.y175{bottom:246.825000px;}
.ybf{bottom:248.325000px;}
.y196{bottom:252.450000px;}
.ydf{bottom:254.325000px;}
.y3a{bottom:255.450000px;}
.y150{bottom:258.075000px;}
.y182{bottom:259.950000px;}
.y6a{bottom:261.825000px;}
.y174{bottom:265.950000px;}
.y195{bottom:266.325000px;}
.y105{bottom:270.825000px;}
.yde{bottom:273.075000px;}
.y181{bottom:279.075000px;}
.y9a{bottom:280.575000px;}
.y69{bottom:280.950000px;}
.y173{bottom:285.075000px;}
.ybe{bottom:288.075000px;}
.y104{bottom:289.950000px;}
.ydd{bottom:292.200000px;}
.y39{bottom:295.200000px;}
.y14f{bottom:297.825000px;}
.y99{bottom:299.700000px;}
.y68{bottom:300.075000px;}
.y194{bottom:301.200000px;}
.y172{bottom:303.855000px;}
.ybd{bottom:307.230000px;}
.y103{bottom:309.120000px;}
.ydc{bottom:310.980000px;}
.y14e{bottom:316.995000px;}
.y98{bottom:318.495000px;}
.y67{bottom:318.870000px;}
.y171{bottom:322.995000px;}
.y102{bottom:328.230000px;}
.y38{bottom:331.605000px;}
.y14d{bottom:335.745000px;}
.y97{bottom:337.605000px;}
.y66{bottom:337.980000px;}
.y193{bottom:339.870000px;}
.y170{bottom:342.120000px;}
.ybc{bottom:346.995000px;}
.y37{bottom:347.370000px;}
.ydb{bottom:351.105000px;}
.y14c{bottom:354.855000px;}
.y65{bottom:356.745000px;}
.y192{bottom:358.995000px;}
.y16f{bottom:360.870000px;}
.y36{bottom:362.745000px;}
.y101{bottom:366.120000px;}
.yda{bottom:370.245000px;}
.y14b{bottom:373.995000px;}
.y96{bottom:375.480000px;}
.y64{bottom:375.870000px;}
.y191{bottom:377.745000px;}
.y35{bottom:378.105000px;}
.y16e{bottom:379.995000px;}
.y100{bottom:384.855000px;}
.ybb{bottom:387.120000px;}
.yd9{bottom:388.980000px;}
.y14a{bottom:392.745000px;}
.y34{bottom:393.870000px;}
.y95{bottom:394.620000px;}
.y63{bottom:394.980000px;}
.y190{bottom:396.870000px;}
.y16d{bottom:398.730000px;}
.yff{bottom:403.995000px;}
.y123{bottom:405.120000px;}
.yba{bottom:406.245000px;}
.yd8{bottom:408.120000px;}
.y33{bottom:409.245000px;}
.y149{bottom:411.870000px;}
.y94{bottom:413.370000px;}
.y62{bottom:413.745000px;}
.y18f{bottom:415.995000px;}
.y16c{bottom:417.870000px;}
.yfe{bottom:423.120000px;}
.y32{bottom:424.995000px;}
.yb9{bottom:425.370000px;}
.yd7{bottom:426.870000px;}
.y148{bottom:430.620000px;}
.y93{bottom:432.525000px;}
.y61{bottom:432.900000px;}
.y18e{bottom:434.775000px;}
.y16b{bottom:437.025000px;}
.y31{bottom:440.400000px;}
.yfd{bottom:441.900000px;}
.yb8{bottom:445.275000px;}
.yd6{bottom:446.025000px;}
.y1d0{bottom:446.400000px;}
.y180{bottom:449.775000px;}
.y60{bottom:451.650000px;}
.y18d{bottom:453.900000px;}
.y30{bottom:455.775000px;}
.yfc{bottom:461.025000px;}
.yb7{bottom:464.400000px;}
.yd5{bottom:465.150000px;}
.y17f{bottom:468.900000px;}
.y5f{bottom:470.775000px;}
.y2f{bottom:471.525000px;}
.y92{bottom:472.275000px;}
.y18c{bottom:472.650000px;}
.y16a{bottom:474.900000px;}
.yd4{bottom:483.900000px;}
.yb6{bottom:484.275000px;}
.y1ba{bottom:485.775000px;}
.y2e{bottom:486.900000px;}
.y17e{bottom:487.650000px;}
.y91{bottom:489.525000px;}
.y5e{bottom:489.900000px;}
.y18b{bottom:491.775000px;}
.y169{bottom:493.650000px;}
.yfa{bottom:497.400000px;}
.y1b9{bottom:499.650000px;}
.y2d{bottom:502.650000px;}
.yd3{bottom:503.025000px;}
.yb5{bottom:503.400000px;}
.y90{bottom:506.775000px;}
.y5d{bottom:508.650000px;}
.y18a{bottom:510.900000px;}
.y168{bottom:512.775000px;}
.y1b8{bottom:513.150000px;}
.y2c{bottom:518.025000px;}
.y1cf{bottom:520.275000px;}
.yd2{bottom:521.775000px;}
.yb4{bottom:523.275000px;}
.y8f{bottom:524.025000px;}
.y17d{bottom:525.525000px;}
.y1b7{bottom:526.650000px;}
.y147{bottom:527.775000px;}
.yf9{bottom:528.150000px;}
.y189{bottom:529.650000px;}
.y167{bottom:531.900000px;}
.y2b{bottom:533.400000px;}
.y1ce{bottom:534.150000px;}
.yd1{bottom:540.900000px;}
.y8e{bottom:541.275000px;}
.yb3{bottom:542.400000px;}
.y137{bottom:544.650000px;}
.y146{bottom:546.525000px;}
.y5c{bottom:548.400000px;}
.y188{bottom:548.775000px;}
.y2a{bottom:549.150000px;}
.y166{bottom:550.650000px;}
.yd0{bottom:560.070000px;}
.y1b6{bottom:561.195000px;}
.yb2{bottom:562.695000px;}
.y136{bottom:563.820000px;}
.y145{bottom:565.695000px;}
.y11d{bottom:567.570000px;}
.y1cd{bottom:568.320000px;}
.y165{bottom:569.820000px;}
.y1b5{bottom:575.070000px;}
.ycf{bottom:578.820000px;}
.y8d{bottom:579.570000px;}
.yb1{bottom:581.445000px;}
.y135{bottom:582.570000px;}
.y144{bottom:584.820000px;}
.y29{bottom:585.570000px;}
.y11c{bottom:586.695000px;}
.y5b{bottom:588.570000px;}
.yce{bottom:597.945000px;}
.y8c{bottom:598.695000px;}
.y28{bottom:600.945000px;}
.y134{bottom:601.695000px;}
.y1cc{bottom:603.195000px;}
.y143{bottom:603.570000px;}
.y11b{bottom:605.820000px;}
.y5a{bottom:607.695000px;}
.y1b4{bottom:609.195000px;}
.y111{bottom:616.320000px;}
.ycd{bottom:616.695000px;}
.y1cb{bottom:617.070000px;}
.y8b{bottom:617.820000px;}
.y133{bottom:620.445000px;}
.yb0{bottom:622.320000px;}
.y142{bottom:622.695000px;}
.y1b3{bottom:623.070000px;}
.y11a{bottom:624.570000px;}
.y59{bottom:626.820000px;}
.y1ca{bottom:630.570000px;}
.y110{bottom:633.195000px;}
.ycc{bottom:635.820000px;}
.y8a{bottom:636.570000px;}
.y27{bottom:637.695000px;}
.y132{bottom:639.570000px;}
.y141{bottom:641.445000px;}
.y119{bottom:643.695000px;}
.y58{bottom:645.570000px;}
.y10f{bottom:648.570000px;}
.ycb{bottom:654.570000px;}
.y89{bottom:655.695000px;}
.y1b2{bottom:657.195000px;}
.y131{bottom:658.320000px;}
.y140{bottom:660.570000px;}
.yaf{bottom:662.445000px;}
.y57{bottom:664.695000px;}
.y164{bottom:666.570000px;}
.y1b1{bottom:671.445000px;}
.yca{bottom:673.695000px;}
.y26{bottom:674.070000px;}
.y88{bottom:674.445000px;}
.y1c9{bottom:678.570000px;}
.y13f{bottom:679.320000px;}
.yae{bottom:681.570000px;}
.y56{bottom:683.445000px;}
.y1b0{bottom:684.945000px;}
.y163{bottom:685.695000px;}
.y25{bottom:689.850000px;}
.y1c8{bottom:692.475000px;}
.yc9{bottom:692.850000px;}
.y87{bottom:693.600000px;}
.y130{bottom:698.475000px;}
.yad{bottom:700.350000px;}
.y17c{bottom:702.225000px;}
.y55{bottom:702.600000px;}
.yf8{bottom:702.975000px;}
.y162{bottom:704.475000px;}
.y24{bottom:705.225000px;}
.y86{bottom:712.725000px;}
.y12f{bottom:717.600000px;}
.y1af{bottom:719.100000px;}
.yac{bottom:719.475000px;}
.y23{bottom:720.600000px;}
.y54{bottom:721.350000px;}
.yf7{bottom:722.100000px;}
.y161{bottom:723.600000px;}
.y1c7{bottom:726.600000px;}
.yc8{bottom:729.225000px;}
.y85{bottom:731.475000px;}
.y22{bottom:736.350000px;}
.yab{bottom:738.600000px;}
.y53{bottom:740.475000px;}
.yf6{bottom:740.850000px;}
.y160{bottom:742.350000px;}
.yc7{bottom:744.600000px;}
.y84{bottom:750.600000px;}
.y21{bottom:751.725000px;}
.y1ae{bottom:753.600000px;}
.y1c6{bottom:753.975000px;}
.y12e{bottom:755.475000px;}
.yaa{bottom:757.350000px;}
.y52{bottom:759.600000px;}
.yf5{bottom:759.975000px;}
.y15f{bottom:761.475000px;}
.y20{bottom:767.475000px;}
.y1ad{bottom:767.850000px;}
.y83{bottom:769.350000px;}
.y118{bottom:776.475000px;}
.y51{bottom:778.350000px;}
.yf4{bottom:778.725000px;}
.y15e{bottom:780.600000px;}
.y1ac{bottom:781.350000px;}
.y1f{bottom:782.850000px;}
.y82{bottom:788.475000px;}
.y12d{bottom:795.225000px;}
.ya9{bottom:797.100000px;}
.y50{bottom:797.475000px;}
.yf3{bottom:797.850000px;}
.y1e{bottom:798.225000px;}
.y15d{bottom:799.350000px;}
.y1c5{bottom:802.350000px;}
.y81{bottom:807.600000px;}
.y1d{bottom:813.975000px;}
.y12c{bottom:814.350000px;}
.y1ab{bottom:815.475000px;}
.y4f{bottom:816.225000px;}
.yf2{bottom:817.020000px;}
.y15c{bottom:818.520000px;}
.y80{bottom:826.380000px;}
.y1c{bottom:829.380000px;}
.y12b{bottom:833.505000px;}
.y4e{bottom:835.395000px;}
.yf1{bottom:835.755000px;}
.y1c4{bottom:836.505000px;}
.y15b{bottom:837.255000px;}
.y1b{bottom:845.130000px;}
.y7f{bottom:845.520000px;}
.y1c3{bottom:850.380000px;}
.y12a{bottom:852.270000px;}
.y10e{bottom:854.130000px;}
.y4d{bottom:854.505000px;}
.yf0{bottom:854.880000px;}
.y15a{bottom:856.395000px;}
.y1a{bottom:860.505000px;}
.y1aa{bottom:863.880000px;}
.y7e{bottom:864.255000px;}
.y129{bottom:871.380000px;}
.y4c{bottom:873.270000px;}
.y159{bottom:875.505000px;}
.y19{bottom:875.895000px;}
.y1c2{bottom:877.755000px;}
.y10d{bottom:879.255000px;}
.y7d{bottom:883.380000px;}
.yef{bottom:891.255000px;}
.y18{bottom:892.005000px;}
.y4b{bottom:892.380000px;}
.y158{bottom:894.255000px;}
.y1a9{bottom:898.380000px;}
.y7c{bottom:902.505000px;}
.yed{bottom:907.020000px;}
.y4a{bottom:911.130000px;}
.y1c1{bottom:911.880000px;}
.y1a8{bottom:912.255000px;}
.y17b{bottom:913.005000px;}
.y157{bottom:913.380000px;}
.y7b{bottom:921.255000px;}
.y17{bottom:925.380000px;}
.y1c0{bottom:925.755000px;}
.y49{bottom:930.255000px;}
.y156{bottom:932.130000px;}
.y7a{bottom:940.380000px;}
.y13{bottom:940.770000px;}
.y1a7{bottom:946.425000px;}
.ya8{bottom:949.425000px;}
.y13e{bottom:951.300000px;}
.y1bf{bottom:959.925000px;}
.y1a6{bottom:960.300000px;}
.ya7{bottom:968.175000px;}
.y48{bottom:970.050000px;}
.y13d{bottom:970.425000px;}
.y1be{bottom:974.175000px;}
.y79{bottom:979.800000px;}
.y11{bottom:987.300000px;}
.y47{bottom:989.175000px;}
.y1a5{bottom:994.800000px;}
.y78{bottom:997.050000px;}
.ya6{bottom:1006.050000px;}
.y46{bottom:1008.300000px;}
.y1a4{bottom:1008.675000px;}
.y10{bottom:1011.300000px;}
.y77{bottom:1014.300000px;}
.y1a3{bottom:1022.175000px;}
.ya5{bottom:1025.175000px;}
.yf{bottom:1027.050000px;}
.y76{bottom:1031.550000px;}
.yec{bottom:1039.050000px;}
.yb{bottom:1042.425000px;}
.ya4{bottom:1044.300000px;}
.y45{bottom:1046.175000px;}
.y75{bottom:1048.800000px;}
.yeb{bottom:1056.300000px;}
.y9{bottom:1058.175000px;}
.ya3{bottom:1063.050000px;}
.y44{bottom:1065.300000px;}
.y74{bottom:1066.050000px;}
.y1a2{bottom:1070.550000px;}
.yea{bottom:1073.550000px;}
.y73{bottom:1083.330000px;}
.y43{bottom:1084.080000px;}
.ye9{bottom:1090.830000px;}
.y1a1{bottom:1097.580000px;}
.y8{bottom:1098.330000px;}
.ya2{bottom:1102.830000px;}
.y42{bottom:1103.205000px;}
.y1bd{bottom:1104.705000px;}
.ye8{bottom:1108.080000px;}
.y1bc{bottom:1118.580000px;}
.y7{bottom:1118.955000px;}
.y41{bottom:1121.955000px;}
.ye7{bottom:1125.330000px;}
.y1a0{bottom:1131.705000px;}
.y1bb{bottom:1132.080000px;}
.y6{bottom:1139.955000px;}
.y40{bottom:1141.080000px;}
.ye6{bottom:1142.580000px;}
.y19f{bottom:1145.955000px;}
.y4{bottom:1162.080000px;}
.y2{bottom:1173.330000px;}
.y1{bottom:1194.330000px;}
.h2{height:14.625000px;}
.h6{height:15.375000px;}
.h1c{height:15.412500px;}
.h9{height:15.750000px;}
.ha{height:24.000000px;}
.h15{height:30.750000px;}
.h1a{height:41.774414px;}
.h21{height:43.265625px;}
.h16{height:43.804688px;}
.hb{height:46.522500px;}
.h3{height:47.742188px;}
.hc{height:48.436523px;}
.h12{height:48.673828px;}
.h8{height:50.062500px;}
.hf{height:53.818359px;}
.h7{height:56.320312px;}
.h10{height:59.200195px;}
.h20{height:59.490234px;}
.he{height:62.578125px;}
.h4{height:65.645508px;}
.h1{height:68.835938px;}
.h18{height:74.004654px;}
.hd{height:74.953125px;}
.h5{height:75.093750px;}
.h13{height:108.022500px;}
.h14{height:150.405000px;}
.h17{height:181.575000px;}
.h1e{height:202.545000px;}
.h1d{height:216.075000px;}
.h11{height:258.075000px;}
.h1f{height:320.700000px;}
.h1b{height:359.325000px;}
.h19{height:369.120000px;}
.h0{height:1263.000000px;}
.w6{width:16.875000px;}
.w4{width:39.037500px;}
.wa{width:62.287500px;}
.w7{width:169.950000px;}
.wb{width:186.825000px;}
.w9{width:389.070000px;}
.w5{width:451.350000px;}
.w3{width:598.380000px;}
.wc{width:637.425000px;}
.w8{width:638.175000px;}
.wd{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.250000px;}
.x18{left:10.162500px;}
.x7{left:13.485000px;}
.xa{left:24.000000px;}
.xf{left:28.537500px;}
.x13{left:49.912500px;}
.x11{left:55.162500px;}
.x1d{left:101.332500px;}
.x20{left:115.207500px;}
.x1{left:127.537487px;}
.x1b{left:132.824987px;}
.x21{left:146.707500px;}
.xc{left:154.574987px;}
.xb{left:169.949987px;}
.xd{left:181.574987px;}
.x14{left:198.487500px;}
.x2{left:211.237500px;}
.x1a{left:343.649987px;}
.x22{left:473.819987px;}
.x17{left:486.232500px;}
.x19{left:492.217500px;}
.x15{left:506.099973px;}
.x16{left:512.099987px;}
.x1e{left:513.967500px;}
.x9{left:516.600000px;}
.xe{left:533.512500px;}
.x1f{left:542.512500px;}
.x1c{left:564.262500px;}
.x6{left:578.895000px;}
.x8{left:595.770000px;}
.x12{left:620.542500px;}
.x10{left:646.042500px;}
.x3{left:726.675000px;}
.x5{left:765.719987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.642667pt;}
.ls14{letter-spacing:-0.618667pt;}
.ls17{letter-spacing:-0.554667pt;}
.ls1c{letter-spacing:-0.309333pt;}
.lsd{letter-spacing:-0.298667pt;}
.ls1b{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:-0.021333pt;}
.lse{letter-spacing:-0.016000pt;}
.ls10{letter-spacing:-0.010667pt;}
.ls11{letter-spacing:-0.005333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.069333pt;}
.lsa{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.165333pt;}
.ls9{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.277333pt;}
.ls15{letter-spacing:0.309333pt;}
.ls1{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.464000pt;}
.ls21{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.714667pt;}
.ls18{letter-spacing:2.357333pt;}
.ls19{letter-spacing:2.464000pt;}
.ls1a{letter-spacing:5.024000pt;}
.ls12{letter-spacing:10.357333pt;}
.ls20{letter-spacing:11.690667pt;}
.ls1d{letter-spacing:13.024000pt;}
.ls1e{letter-spacing:15.690667pt;}
.ls5{letter-spacing:26.208000pt;}
.wsd{word-spacing:-58.666667pt;}
.wsc{word-spacing:-17.024000pt;}
.ws12{word-spacing:-16.773333pt;}
.wsf{word-spacing:-16.618667pt;}
.wsb{word-spacing:-16.309333pt;}
.ws10{word-spacing:-14.826667pt;}
.ws5{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.354667pt;}
.ws2{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.328000pt;}
.ws7{word-spacing:-13.322667pt;}
.ws4{word-spacing:-12.138667pt;}
.ws3{word-spacing:-11.861333pt;}
.wse{word-spacing:-10.944000pt;}
.ws11{word-spacing:-10.389333pt;}
.ws13{word-spacing:-10.272000pt;}
.ws14{word-spacing:-9.728000pt;}
.ws0{word-spacing:-9.642667pt;}
.ws1{word-spacing:-9.344000pt;}
.wsa{word-spacing:0.000000pt;}
._13{margin-left:-5.568000pt;}
._12{margin-left:-4.512000pt;}
._c{margin-left:-3.317333pt;}
._b{margin-left:-2.106667pt;}
._1{margin-left:-0.917333pt;}
._0{width:1.248000pt;}
._9{width:2.144000pt;}
._7{width:3.157333pt;}
._8{width:4.784000pt;}
._f{width:5.861333pt;}
._4{width:6.773333pt;}
._5{width:7.872000pt;}
._6{width:8.858667pt;}
._e{width:9.861333pt;}
._11{width:10.906667pt;}
._d{width:11.904000pt;}
._1b{width:12.874667pt;}
._14{width:14.138667pt;}
._15{width:15.370667pt;}
._a{width:17.338667pt;}
._10{width:18.480000pt;}
._1e{width:19.696000pt;}
._27{width:20.597333pt;}
._1c{width:21.658667pt;}
._17{width:22.757333pt;}
._16{width:24.426667pt;}
._2{width:25.861333pt;}
._3{width:26.842667pt;}
._23{width:28.064000pt;}
._20{width:29.104000pt;}
._19{width:30.032000pt;}
._18{width:31.546667pt;}
._1a{width:32.458667pt;}
._24{width:33.402667pt;}
._28{width:34.480000pt;}
._22{width:43.328000pt;}
._21{width:44.314667pt;}
._1d{width:45.429333pt;}
._1f{width:52.704000pt;}
._2b{width:88.480000pt;}
._29{width:308.704000pt;}
._2a{width:310.362667pt;}
._25{width:662.933333pt;}
._26{width:693.600000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.yee{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.333333pt;}
.ya{bottom:2.333333pt;}
.y16{bottom:2.653333pt;}
.yc{bottom:2.666667pt;}
.y120{bottom:2.680000pt;}
.y3{bottom:3.000000pt;}
.ye{bottom:3.333333pt;}
.y12{bottom:6.333333pt;}
.yfb{bottom:16.333333pt;}
.y15{bottom:16.360000pt;}
.y14{bottom:30.026667pt;}
.y139{bottom:32.333333pt;}
.y5{bottom:51.033333pt;}
.y117{bottom:96.700000pt;}
.ya1{bottom:97.700000pt;}
.y72{bottom:98.033333pt;}
.y17a{bottom:99.700000pt;}
.y128{bottom:100.033333pt;}
.y122{bottom:100.366667pt;}
.yc6{bottom:102.700000pt;}
.y10c{bottom:104.366667pt;}
.y3f{bottom:105.700000pt;}
.ye5{bottom:108.700000pt;}
.y116{bottom:110.366667pt;}
.y13c{bottom:111.033333pt;}
.ya0{bottom:114.366667pt;}
.y71{bottom:114.700000pt;}
.y115{bottom:115.033333pt;}
.y127{bottom:116.700000pt;}
.y121{bottom:117.366667pt;}
.yc5{bottom:119.366667pt;}
.y10b{bottom:121.033333pt;}
.y3e{bottom:122.366667pt;}
.ye4{bottom:124.033333pt;}
.y19e{bottom:127.033333pt;}
.y13b{bottom:128.033333pt;}
.y114{bottom:128.366667pt;}
.y9f{bottom:131.366667pt;}
.y70{bottom:131.700000pt;}
.y179{bottom:133.373333pt;}
.y126{bottom:133.706667pt;}
.yc4{bottom:136.373333pt;}
.y10a{bottom:138.026667pt;}
.y19a{bottom:138.706667pt;}
.y19d{bottom:139.040000pt;}
.y3d{bottom:139.373333pt;}
.y13a{bottom:144.706667pt;}
.y155{bottom:145.040000pt;}
.y187{bottom:146.693333pt;}
.y6f{bottom:148.373333pt;}
.y11f{bottom:149.693333pt;}
.y178{bottom:150.360000pt;}
.y199{bottom:151.040000pt;}
.y113{bottom:153.026667pt;}
.yc3{bottom:153.360000pt;}
.y109{bottom:154.733333pt;}
.y3c{bottom:156.400000pt;}
.ye3{bottom:158.400000pt;}
.y154{bottom:161.733333pt;}
.y11e{bottom:163.400000pt;}
.y186{bottom:163.733333pt;}
.y9e{bottom:165.066667pt;}
.y6e{bottom:165.400000pt;}
.y125{bottom:166.066667pt;}
.y177{bottom:167.066667pt;}
.y19c{bottom:169.400000pt;}
.yc2{bottom:170.066667pt;}
.y108{bottom:171.733333pt;}
.ye2{bottom:175.400000pt;}
.y138{bottom:177.400000pt;}
.y153{bottom:178.733333pt;}
.y124{bottom:180.066667pt;}
.y185{bottom:180.400000pt;}
.y198{bottom:181.400000pt;}
.y19b{bottom:181.733333pt;}
.y9d{bottom:182.066667pt;}
.y6d{bottom:182.400000pt;}
.y176{bottom:184.066667pt;}
.yc1{bottom:187.066667pt;}
.y107{bottom:188.733333pt;}
.y3b{bottom:191.733333pt;}
.ye1{bottom:192.066667pt;}
.y197{bottom:194.066667pt;}
.y152{bottom:195.400000pt;}
.y184{bottom:197.400000pt;}
.y9c{bottom:198.733333pt;}
.y6c{bottom:199.066667pt;}
.y112{bottom:202.400000pt;}
.yc0{bottom:203.733333pt;}
.y106{bottom:205.400000pt;}
.ye0{bottom:209.066667pt;}
.y151{bottom:212.400000pt;}
.y183{bottom:214.066667pt;}
.y9b{bottom:215.733333pt;}
.y6b{bottom:216.066667pt;}
.y175{bottom:219.400000pt;}
.ybf{bottom:220.733333pt;}
.y196{bottom:224.400000pt;}
.ydf{bottom:226.066667pt;}
.y3a{bottom:227.066667pt;}
.y150{bottom:229.400000pt;}
.y182{bottom:231.066667pt;}
.y6a{bottom:232.733333pt;}
.y174{bottom:236.400000pt;}
.y195{bottom:236.733333pt;}
.y105{bottom:240.733333pt;}
.yde{bottom:242.733333pt;}
.y181{bottom:248.066667pt;}
.y9a{bottom:249.400000pt;}
.y69{bottom:249.733333pt;}
.y173{bottom:253.400000pt;}
.ybe{bottom:256.066667pt;}
.y104{bottom:257.733333pt;}
.ydd{bottom:259.733333pt;}
.y39{bottom:262.400000pt;}
.y14f{bottom:264.733333pt;}
.y99{bottom:266.400000pt;}
.y68{bottom:266.733333pt;}
.y194{bottom:267.733333pt;}
.y172{bottom:270.093333pt;}
.ybd{bottom:273.093333pt;}
.y103{bottom:274.773333pt;}
.ydc{bottom:276.426667pt;}
.y14e{bottom:281.773333pt;}
.y98{bottom:283.106667pt;}
.y67{bottom:283.440000pt;}
.y171{bottom:287.106667pt;}
.y102{bottom:291.760000pt;}
.y38{bottom:294.760000pt;}
.y14d{bottom:298.440000pt;}
.y97{bottom:300.093333pt;}
.y66{bottom:300.426667pt;}
.y193{bottom:302.106667pt;}
.y170{bottom:304.106667pt;}
.ybc{bottom:308.440000pt;}
.y37{bottom:308.773333pt;}
.ydb{bottom:312.093333pt;}
.y14c{bottom:315.426667pt;}
.y65{bottom:317.106667pt;}
.y192{bottom:319.106667pt;}
.y16f{bottom:320.773333pt;}
.y36{bottom:322.440000pt;}
.y101{bottom:325.440000pt;}
.yda{bottom:329.106667pt;}
.y14b{bottom:332.440000pt;}
.y96{bottom:333.760000pt;}
.y64{bottom:334.106667pt;}
.y191{bottom:335.773333pt;}
.y35{bottom:336.093333pt;}
.y16e{bottom:337.773333pt;}
.y100{bottom:342.093333pt;}
.ybb{bottom:344.106667pt;}
.yd9{bottom:345.760000pt;}
.y14a{bottom:349.106667pt;}
.y34{bottom:350.106667pt;}
.y95{bottom:350.773333pt;}
.y63{bottom:351.093333pt;}
.y190{bottom:352.773333pt;}
.y16d{bottom:354.426667pt;}
.yff{bottom:359.106667pt;}
.y123{bottom:360.106667pt;}
.yba{bottom:361.106667pt;}
.yd8{bottom:362.773333pt;}
.y33{bottom:363.773333pt;}
.y149{bottom:366.106667pt;}
.y94{bottom:367.440000pt;}
.y62{bottom:367.773333pt;}
.y18f{bottom:369.773333pt;}
.y16c{bottom:371.440000pt;}
.yfe{bottom:376.106667pt;}
.y32{bottom:377.773333pt;}
.yb9{bottom:378.106667pt;}
.yd7{bottom:379.440000pt;}
.y148{bottom:382.773333pt;}
.y93{bottom:384.466667pt;}
.y61{bottom:384.800000pt;}
.y18e{bottom:386.466667pt;}
.y16b{bottom:388.466667pt;}
.y31{bottom:391.466667pt;}
.yfd{bottom:392.800000pt;}
.yb8{bottom:395.800000pt;}
.yd6{bottom:396.466667pt;}
.y1d0{bottom:396.800000pt;}
.y180{bottom:399.800000pt;}
.y60{bottom:401.466667pt;}
.y18d{bottom:403.466667pt;}
.y30{bottom:405.133333pt;}
.yfc{bottom:409.800000pt;}
.yb7{bottom:412.800000pt;}
.yd5{bottom:413.466667pt;}
.y17f{bottom:416.800000pt;}
.y5f{bottom:418.466667pt;}
.y2f{bottom:419.133333pt;}
.y92{bottom:419.800000pt;}
.y18c{bottom:420.133333pt;}
.y16a{bottom:422.133333pt;}
.yd4{bottom:430.133333pt;}
.yb6{bottom:430.466667pt;}
.y1ba{bottom:431.800000pt;}
.y2e{bottom:432.800000pt;}
.y17e{bottom:433.466667pt;}
.y91{bottom:435.133333pt;}
.y5e{bottom:435.466667pt;}
.y18b{bottom:437.133333pt;}
.y169{bottom:438.800000pt;}
.yfa{bottom:442.133333pt;}
.y1b9{bottom:444.133333pt;}
.y2d{bottom:446.800000pt;}
.yd3{bottom:447.133333pt;}
.yb5{bottom:447.466667pt;}
.y90{bottom:450.466667pt;}
.y5d{bottom:452.133333pt;}
.y18a{bottom:454.133333pt;}
.y168{bottom:455.800000pt;}
.y1b8{bottom:456.133333pt;}
.y2c{bottom:460.466667pt;}
.y1cf{bottom:462.466667pt;}
.yd2{bottom:463.800000pt;}
.yb4{bottom:465.133333pt;}
.y8f{bottom:465.800000pt;}
.y17d{bottom:467.133333pt;}
.y1b7{bottom:468.133333pt;}
.y147{bottom:469.133333pt;}
.yf9{bottom:469.466667pt;}
.y189{bottom:470.800000pt;}
.y167{bottom:472.800000pt;}
.y2b{bottom:474.133333pt;}
.y1ce{bottom:474.800000pt;}
.yd1{bottom:480.800000pt;}
.y8e{bottom:481.133333pt;}
.yb3{bottom:482.133333pt;}
.y137{bottom:484.133333pt;}
.y146{bottom:485.800000pt;}
.y5c{bottom:487.466667pt;}
.y188{bottom:487.800000pt;}
.y2a{bottom:488.133333pt;}
.y166{bottom:489.466667pt;}
.yd0{bottom:497.840000pt;}
.y1b6{bottom:498.840000pt;}
.yb2{bottom:500.173333pt;}
.y136{bottom:501.173333pt;}
.y145{bottom:502.840000pt;}
.y11d{bottom:504.506667pt;}
.y1cd{bottom:505.173333pt;}
.y165{bottom:506.506667pt;}
.y1b5{bottom:511.173333pt;}
.ycf{bottom:514.506667pt;}
.y8d{bottom:515.173333pt;}
.yb1{bottom:516.840000pt;}
.y135{bottom:517.840000pt;}
.y144{bottom:519.840000pt;}
.y29{bottom:520.506667pt;}
.y11c{bottom:521.506667pt;}
.y5b{bottom:523.173333pt;}
.yce{bottom:531.506667pt;}
.y8c{bottom:532.173333pt;}
.y28{bottom:534.173333pt;}
.y134{bottom:534.840000pt;}
.y1cc{bottom:536.173333pt;}
.y143{bottom:536.506667pt;}
.y11b{bottom:538.506667pt;}
.y5a{bottom:540.173333pt;}
.y1b4{bottom:541.506667pt;}
.y111{bottom:547.840000pt;}
.ycd{bottom:548.173333pt;}
.y1cb{bottom:548.506667pt;}
.y8b{bottom:549.173333pt;}
.y133{bottom:551.506667pt;}
.yb0{bottom:553.173333pt;}
.y142{bottom:553.506667pt;}
.y1b3{bottom:553.840000pt;}
.y11a{bottom:555.173333pt;}
.y59{bottom:557.173333pt;}
.y1ca{bottom:560.506667pt;}
.y110{bottom:562.840000pt;}
.ycc{bottom:565.173333pt;}
.y8a{bottom:565.840000pt;}
.y27{bottom:566.840000pt;}
.y132{bottom:568.506667pt;}
.y141{bottom:570.173333pt;}
.y119{bottom:572.173333pt;}
.y58{bottom:573.840000pt;}
.y10f{bottom:576.506667pt;}
.ycb{bottom:581.840000pt;}
.y89{bottom:582.840000pt;}
.y1b2{bottom:584.173333pt;}
.y131{bottom:585.173333pt;}
.y140{bottom:587.173333pt;}
.yaf{bottom:588.840000pt;}
.y57{bottom:590.840000pt;}
.y164{bottom:592.506667pt;}
.y1b1{bottom:596.840000pt;}
.yca{bottom:598.840000pt;}
.y26{bottom:599.173333pt;}
.y88{bottom:599.506667pt;}
.y1c9{bottom:603.173333pt;}
.y13f{bottom:603.840000pt;}
.yae{bottom:605.840000pt;}
.y56{bottom:607.506667pt;}
.y1b0{bottom:608.840000pt;}
.y163{bottom:609.506667pt;}
.y25{bottom:613.200000pt;}
.y1c8{bottom:615.533333pt;}
.yc9{bottom:615.866667pt;}
.y87{bottom:616.533333pt;}
.y130{bottom:620.866667pt;}
.yad{bottom:622.533333pt;}
.y17c{bottom:624.200000pt;}
.y55{bottom:624.533333pt;}
.yf8{bottom:624.866667pt;}
.y162{bottom:626.200000pt;}
.y24{bottom:626.866667pt;}
.y86{bottom:633.533333pt;}
.y12f{bottom:637.866667pt;}
.y1af{bottom:639.200000pt;}
.yac{bottom:639.533333pt;}
.y23{bottom:640.533333pt;}
.y54{bottom:641.200000pt;}
.yf7{bottom:641.866667pt;}
.y161{bottom:643.200000pt;}
.y1c7{bottom:645.866667pt;}
.yc8{bottom:648.200000pt;}
.y85{bottom:650.200000pt;}
.y22{bottom:654.533333pt;}
.yab{bottom:656.533333pt;}
.y53{bottom:658.200000pt;}
.yf6{bottom:658.533333pt;}
.y160{bottom:659.866667pt;}
.yc7{bottom:661.866667pt;}
.y84{bottom:667.200000pt;}
.y21{bottom:668.200000pt;}
.y1ae{bottom:669.866667pt;}
.y1c6{bottom:670.200000pt;}
.y12e{bottom:671.533333pt;}
.yaa{bottom:673.200000pt;}
.y52{bottom:675.200000pt;}
.yf5{bottom:675.533333pt;}
.y15f{bottom:676.866667pt;}
.y20{bottom:682.200000pt;}
.y1ad{bottom:682.533333pt;}
.y83{bottom:683.866667pt;}
.y118{bottom:690.200000pt;}
.y51{bottom:691.866667pt;}
.yf4{bottom:692.200000pt;}
.y15e{bottom:693.866667pt;}
.y1ac{bottom:694.533333pt;}
.y1f{bottom:695.866667pt;}
.y82{bottom:700.866667pt;}
.y12d{bottom:706.866667pt;}
.ya9{bottom:708.533333pt;}
.y50{bottom:708.866667pt;}
.yf3{bottom:709.200000pt;}
.y1e{bottom:709.533333pt;}
.y15d{bottom:710.533333pt;}
.y1c5{bottom:713.200000pt;}
.y81{bottom:717.866667pt;}
.y1d{bottom:723.533333pt;}
.y12c{bottom:723.866667pt;}
.y1ab{bottom:724.866667pt;}
.y4f{bottom:725.533333pt;}
.yf2{bottom:726.240000pt;}
.y15c{bottom:727.573333pt;}
.y80{bottom:734.560000pt;}
.y1c{bottom:737.226667pt;}
.y12b{bottom:740.893333pt;}
.y4e{bottom:742.573333pt;}
.yf1{bottom:742.893333pt;}
.y1c4{bottom:743.560000pt;}
.y15b{bottom:744.226667pt;}
.y1b{bottom:751.226667pt;}
.y7f{bottom:751.573333pt;}
.y1c3{bottom:755.893333pt;}
.y12a{bottom:757.573333pt;}
.y10e{bottom:759.226667pt;}
.y4d{bottom:759.560000pt;}
.yf0{bottom:759.893333pt;}
.y15a{bottom:761.240000pt;}
.y1a{bottom:764.893333pt;}
.y1aa{bottom:767.893333pt;}
.y7e{bottom:768.226667pt;}
.y129{bottom:774.560000pt;}
.y4c{bottom:776.240000pt;}
.y159{bottom:778.226667pt;}
.y19{bottom:778.573333pt;}
.y1c2{bottom:780.226667pt;}
.y10d{bottom:781.560000pt;}
.y7d{bottom:785.226667pt;}
.yef{bottom:792.226667pt;}
.y18{bottom:792.893333pt;}
.y4b{bottom:793.226667pt;}
.y158{bottom:794.893333pt;}
.y1a9{bottom:798.560000pt;}
.y7c{bottom:802.226667pt;}
.yed{bottom:806.240000pt;}
.y4a{bottom:809.893333pt;}
.y1c1{bottom:810.560000pt;}
.y1a8{bottom:810.893333pt;}
.y17b{bottom:811.560000pt;}
.y157{bottom:811.893333pt;}
.y7b{bottom:818.893333pt;}
.y17{bottom:822.560000pt;}
.y1c0{bottom:822.893333pt;}
.y49{bottom:826.893333pt;}
.y156{bottom:828.560000pt;}
.y7a{bottom:835.893333pt;}
.y13{bottom:836.240000pt;}
.y1a7{bottom:841.266667pt;}
.ya8{bottom:843.933333pt;}
.y13e{bottom:845.600000pt;}
.y1bf{bottom:853.266667pt;}
.y1a6{bottom:853.600000pt;}
.ya7{bottom:860.600000pt;}
.y48{bottom:862.266667pt;}
.y13d{bottom:862.600000pt;}
.y1be{bottom:865.933333pt;}
.y79{bottom:870.933333pt;}
.y11{bottom:877.600000pt;}
.y47{bottom:879.266667pt;}
.y1a5{bottom:884.266667pt;}
.y78{bottom:886.266667pt;}
.ya6{bottom:894.266667pt;}
.y46{bottom:896.266667pt;}
.y1a4{bottom:896.600000pt;}
.y10{bottom:898.933333pt;}
.y77{bottom:901.600000pt;}
.y1a3{bottom:908.600000pt;}
.ya5{bottom:911.266667pt;}
.yf{bottom:912.933333pt;}
.y76{bottom:916.933333pt;}
.yec{bottom:923.600000pt;}
.yb{bottom:926.600000pt;}
.ya4{bottom:928.266667pt;}
.y45{bottom:929.933333pt;}
.y75{bottom:932.266667pt;}
.yeb{bottom:938.933333pt;}
.y9{bottom:940.600000pt;}
.ya3{bottom:944.933333pt;}
.y44{bottom:946.933333pt;}
.y74{bottom:947.600000pt;}
.y1a2{bottom:951.600000pt;}
.yea{bottom:954.266667pt;}
.y73{bottom:962.960000pt;}
.y43{bottom:963.626667pt;}
.ye9{bottom:969.626667pt;}
.y1a1{bottom:975.626667pt;}
.y8{bottom:976.293333pt;}
.ya2{bottom:980.293333pt;}
.y42{bottom:980.626667pt;}
.y1bd{bottom:981.960000pt;}
.ye8{bottom:984.960000pt;}
.y1bc{bottom:994.293333pt;}
.y7{bottom:994.626667pt;}
.y41{bottom:997.293333pt;}
.ye7{bottom:1000.293333pt;}
.y1a0{bottom:1005.960000pt;}
.y1bb{bottom:1006.293333pt;}
.y6{bottom:1013.293333pt;}
.y40{bottom:1014.293333pt;}
.ye6{bottom:1015.626667pt;}
.y19f{bottom:1018.626667pt;}
.y4{bottom:1032.960000pt;}
.y2{bottom:1042.960000pt;}
.y1{bottom:1061.626667pt;}
.h2{height:13.000000pt;}
.h6{height:13.666667pt;}
.h1c{height:13.700000pt;}
.h9{height:14.000000pt;}
.ha{height:21.333333pt;}
.h15{height:27.333333pt;}
.h1a{height:37.132812pt;}
.h21{height:38.458333pt;}
.h16{height:38.937500pt;}
.hb{height:41.353333pt;}
.h3{height:42.437500pt;}
.hc{height:43.054688pt;}
.h12{height:43.265625pt;}
.h8{height:44.500000pt;}
.hf{height:47.838542pt;}
.h7{height:50.062500pt;}
.h10{height:52.622396pt;}
.h20{height:52.880208pt;}
.he{height:55.625000pt;}
.h4{height:58.351562pt;}
.h1{height:61.187500pt;}
.h18{height:65.781915pt;}
.hd{height:66.625000pt;}
.h5{height:66.750000pt;}
.h13{height:96.020000pt;}
.h14{height:133.693333pt;}
.h17{height:161.400000pt;}
.h1e{height:180.040000pt;}
.h1d{height:192.066667pt;}
.h11{height:229.400000pt;}
.h1f{height:285.066667pt;}
.h1b{height:319.400000pt;}
.h19{height:328.106667pt;}
.h0{height:1122.666667pt;}
.w6{width:15.000000pt;}
.w4{width:34.700000pt;}
.wa{width:55.366667pt;}
.w7{width:151.066667pt;}
.wb{width:166.066667pt;}
.w9{width:345.840000pt;}
.w5{width:401.200000pt;}
.w3{width:531.893333pt;}
.wc{width:566.600000pt;}
.w8{width:567.266667pt;}
.wd{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.333333pt;}
.x18{left:9.033333pt;}
.x7{left:11.986667pt;}
.xa{left:21.333333pt;}
.xf{left:25.366667pt;}
.x13{left:44.366667pt;}
.x11{left:49.033333pt;}
.x1d{left:90.073333pt;}
.x20{left:102.406667pt;}
.x1{left:113.366655pt;}
.x1b{left:118.066655pt;}
.x21{left:130.406667pt;}
.xc{left:137.399988pt;}
.xb{left:151.066655pt;}
.xd{left:161.399988pt;}
.x14{left:176.433333pt;}
.x2{left:187.766667pt;}
.x1a{left:305.466655pt;}
.x22{left:421.173322pt;}
.x17{left:432.206667pt;}
.x19{left:437.526667pt;}
.x15{left:449.866643pt;}
.x16{left:455.199988pt;}
.x1e{left:456.860000pt;}
.x9{left:459.200000pt;}
.xe{left:474.233333pt;}
.x1f{left:482.233333pt;}
.x1c{left:501.566667pt;}
.x6{left:514.573333pt;}
.x8{left:529.573333pt;}
.x12{left:551.593333pt;}
.x10{left:574.260000pt;}
.x3{left:645.933333pt;}
.x5{left:680.639988pt;}
}




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