
    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_db2b8ef08d67b583e3832b5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_005b9c1bce37e6b32077d508.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_310306461bf25ca804c0f6a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2997259383668defbdb35019.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f0318f38595e13d0ff51cc71.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b50a1b1b92d7c62cb8bb9f3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.338867;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_abdffeacac9ea3c9a416ca19.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_256e0009d5b22405d6418706.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a5bf8aee3ad563a350b4c710.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ca3bb65493ec99db8ba66082.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c37be427704109cd6ead7ba5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.314453;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_b63d2ae89ee3f48befec077e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.314453;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:ffd;src:url('chunks/assets/font_14c5f82a09ba436b57ea02a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.338867;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:ffe;src:url('chunks/assets/font_a849e3655848692e6b7bbb25.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.575000;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;}
.m1{transform:matrix(0.241436,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241436,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241436,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-110.880000px;}
.v4{vertical-align:-105.120000px;}
.va{vertical-align:-96.480000px;}
.v5{vertical-align:-86.400000px;}
.v2{vertical-align:-83.520000px;}
.v3{vertical-align:-82.080000px;}
.vb{vertical-align:-80.640000px;}
.v9{vertical-align:-30.240000px;}
.v7{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:38.880000px;}
.v1{vertical-align:66.240000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006625px;}
.lsc{letter-spacing:0.083520px;}
.lsd{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.160129px;}
.ls21{letter-spacing:0.423360px;}
.ls13{letter-spacing:0.468578px;}
.ls1f{letter-spacing:0.470017px;}
.ls1b{letter-spacing:0.752293px;}
.lsa{letter-spacing:1.600417px;}
.ls20{letter-spacing:1.910905px;}
.ls9{letter-spacing:2.040193px;}
.ls18{letter-spacing:4.146913px;}
.ls1e{letter-spacing:4.480993px;}
.ls1c{letter-spacing:11.682433px;}
.ls8{letter-spacing:13.122721px;}
.ls15{letter-spacing:17.109506px;}
.ls1d{letter-spacing:20.324162px;}
.ls22{letter-spacing:26.085314px;}
.ls19{letter-spacing:35.833250px;}
.ls14{letter-spacing:45.915267px;}
.ls11{letter-spacing:47.355555px;}
.lse{letter-spacing:49.129923px;}
.ls5{letter-spacing:54.878979px;}
.ls16{letter-spacing:58.877859px;}
.ls6{letter-spacing:63.842691px;}
.ls17{letter-spacing:66.079300px;}
.ls10{letter-spacing:106.407365px;}
.lsf{letter-spacing:113.608805px;}
.ls1a{letter-spacing:166.899464px;}
.ls2{letter-spacing:193.722945px;}
.ls12{letter-spacing:489.858669px;}
.ls7{letter-spacing:826.886074px;}
.ls0{letter-spacing:1469.818164px;}
.ls1{letter-spacing:1681.540508px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.480000px;}
.ws8{word-spacing:-29.399040px;}
.ws7{word-spacing:-23.691466px;}
.wsa{word-spacing:-23.218560px;}
.ws4{word-spacing:-22.884480px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.813440px;}
.ws5{word-spacing:-14.993116px;}
.ws9{word-spacing:-10.808640px;}
.ws6{word-spacing:-10.644480px;}
.ws1{word-spacing:0.000000px;}
._3d{margin-left:-4.494215px;}
._4{margin-left:-2.721827px;}
._2{margin-left:-1.283040px;}
._0{width:1.092960px;}
._1{width:2.135595px;}
._a{width:3.227040px;}
._b{width:4.409196px;}
._16{width:5.782151px;}
._10{width:6.935929px;}
._e{width:8.352000px;}
._f{width:9.491040px;}
._19{width:10.639311px;}
._14{width:11.773368px;}
._13{width:12.816000px;}
._17{width:13.881525px;}
._18{width:15.783990px;}
._21{width:17.088480px;}
._8{width:19.008000px;}
._9{width:20.176098px;}
._15{width:21.444375px;}
._24{width:24.371727px;}
._22{width:25.424640px;}
._c{width:26.568000px;}
._d{width:28.440000px;}
._11{width:29.520000px;}
._12{width:31.118400px;}
._1d{width:32.577707px;}
._1e{width:33.658560px;}
._2c{width:35.621859px;}
._27{width:37.598494px;}
._26{width:38.814334px;}
._23{width:40.577771px;}
._25{width:41.910357px;}
._1f{width:43.256160px;}
._20{width:45.093600px;}
._28{width:46.520640px;}
._29{width:47.933280px;}
._36{width:49.330080px;}
._2e{width:50.385600px;}
._2a{width:51.865920px;}
._2f{width:53.362080px;}
._1a{width:54.878979px;}
._3c{width:56.526612px;}
._30{width:57.784329px;}
._31{width:59.716800px;}
._3b{width:62.211489px;}
._1b{width:63.387364px;}
._2d{width:64.466215px;}
._35{width:65.563200px;}
._3a{width:66.839040px;}
._2b{width:68.235840px;}
._38{width:76.747680px;}
._37{width:78.585120px;}
._39{width:83.937600px;}
._34{width:119.836800px;}
._5{width:126.028806px;}
._32{width:160.608960px;}
._33{width:162.021600px;}
._7{width:193.722344px;}
._6{width:195.162633px;}
._1c{width:923.769445px;}
._3{width:1372.749166px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,0);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs6{font-size:54.719400px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs7{font-size:86.465203px;}
.fs5{font-size:96.479400px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y120{bottom:5.400000px;}
.y2{bottom:58.320000px;}
.y1{bottom:74.520000px;}
.y130{bottom:109.800000px;}
.y128{bottom:110.160000px;}
.yc5{bottom:112.320000px;}
.y153{bottom:114.479850px;}
.y125{bottom:117.720000px;}
.y10d{bottom:121.680000px;}
.ya1{bottom:122.760000px;}
.y30{bottom:126.000000px;}
.y12f{bottom:127.080000px;}
.y124{bottom:127.800000px;}
.y55{bottom:128.520000px;}
.ye6{bottom:128.880000px;}
.yea{bottom:129.960000px;}
.y127{bottom:135.000000px;}
.yc4{bottom:140.040000px;}
.y152{bottom:142.560000px;}
.ye9{bottom:144.720000px;}
.y126{bottom:145.080000px;}
.y54{bottom:145.800000px;}
.y2f{bottom:146.520000px;}
.y10c{bottom:149.400000px;}
.ya0{bottom:150.480000px;}
.y7d{bottom:156.240000px;}
.ye5{bottom:156.600000px;}
.y12e{bottom:162.000000px;}
.ye8{bottom:164.520000px;}
.y53{bottom:165.240000px;}
.y2e{bottom:167.400000px;}
.yc3{bottom:168.120000px;}
.y151{bottom:170.640000px;}
.ye7{bottom:175.320000px;}
.y10b{bottom:177.480000px;}
.y9f{bottom:178.560000px;}
.y12d{bottom:179.280000px;}
.y7c{bottom:184.320000px;}
.ye4{bottom:184.680000px;}
.y2d{bottom:187.920000px;}
.y52{bottom:191.160000px;}
.yc2{bottom:195.840000px;}
.y12c{bottom:196.200000px;}
.y150{bottom:198.360000px;}
.y10a{bottom:205.560000px;}
.y9e{bottom:206.280000px;}
.y2c{bottom:208.800000px;}
.y51{bottom:211.320000px;}
.y7b{bottom:212.040000px;}
.ye3{bottom:212.400000px;}
.y12b{bottom:213.480000px;}
.yc1{bottom:223.920000px;}
.y14f{bottom:226.440000px;}
.y50{bottom:228.600000px;}
.y2b{bottom:229.320000px;}
.y109{bottom:233.280000px;}
.y9d{bottom:234.360000px;}
.y12a{bottom:238.320000px;}
.y7a{bottom:240.120000px;}
.ye2{bottom:240.480000px;}
.y4f{bottom:245.880000px;}
.y129{bottom:248.400000px;}
.y2a{bottom:250.200000px;}
.yc0{bottom:252.000000px;}
.yf7{bottom:261.360000px;}
.y9c{bottom:262.440000px;}
.y4e{bottom:263.160000px;}
.y79{bottom:268.200000px;}
.ye1{bottom:268.560000px;}
.y29{bottom:270.720000px;}
.y14e{bottom:272.880000px;}
.ybf{bottom:279.720000px;}
.y4d{bottom:280.440000px;}
.y108{bottom:282.240000px;}
.y11e{bottom:289.080000px;}
.y9b{bottom:290.160000px;}
.y28{bottom:291.240000px;}
.y78{bottom:295.920000px;}
.ye0{bottom:296.280000px;}
.ybe{bottom:307.800000px;}
.y14d{bottom:308.880000px;}
.yf6{bottom:310.320000px;}
.y27{bottom:312.120000px;}
.y11d{bottom:317.160000px;}
.y9a{bottom:318.240000px;}
.y122{bottom:318.960000px;}
.y77{bottom:324.000000px;}
.ydf{bottom:324.360000px;}
.y4c{bottom:326.880000px;}
.y26{bottom:332.640000px;}
.y14c{bottom:333.000000px;}
.ybd{bottom:335.520000px;}
.yf5{bottom:338.040000px;}
.y11c{bottom:345.240000px;}
.y99{bottom:345.960000px;}
.y4b{bottom:347.040000px;}
.y76{bottom:351.720000px;}
.yde{bottom:352.080000px;}
.y14b{bottom:357.120000px;}
.ybc{bottom:363.600000px;}
.y4a{bottom:364.320000px;}
.yf4{bottom:366.120000px;}
.y11b{bottom:372.960000px;}
.y25{bottom:374.040000px;}
.y75{bottom:379.800000px;}
.ydd{bottom:380.160000px;}
.y14a{bottom:380.880000px;}
.y49{bottom:383.400000px;}
.ybb{bottom:391.320000px;}
.yf3{bottom:393.840000px;}
.y24{bottom:394.920000px;}
.y11a{bottom:401.040000px;}
.y98{bottom:402.120000px;}
.y149{bottom:405.000000px;}
.y74{bottom:407.880000px;}
.ydc{bottom:408.240000px;}
.y48{bottom:411.120000px;}
.y23{bottom:415.440000px;}
.yba{bottom:419.400000px;}
.yf2{bottom:421.920000px;}
.y119{bottom:428.760000px;}
.y148{bottom:429.480000px;}
.y97{bottom:429.840000px;}
.y73{bottom:435.600000px;}
.ydb{bottom:435.960000px;}
.y22{bottom:436.320000px;}
.y47{bottom:436.680000px;}
.yb9{bottom:447.480000px;}
.yf1{bottom:450.000000px;}
.y46{bottom:453.960000px;}
.y21{bottom:456.840000px;}
.y96{bottom:457.920000px;}
.y72{bottom:463.680000px;}
.yda{bottom:464.040000px;}
.y45{bottom:471.240000px;}
.yb8{bottom:475.200000px;}
.y20{bottom:477.720000px;}
.y147{bottom:478.080000px;}
.y95{bottom:485.640000px;}
.y11f{bottom:486.360000px;}
.y44{bottom:488.160000px;}
.y71{bottom:491.400000px;}
.yd9{bottom:491.760000px;}
.y1f{bottom:498.240000px;}
.y146{bottom:502.200000px;}
.yb7{bottom:503.280000px;}
.yf0{bottom:505.800000px;}
.y43{bottom:506.520000px;}
.y94{bottom:513.720000px;}
.y1e{bottom:519.120000px;}
.y70{bottom:519.480000px;}
.yd8{bottom:519.840000px;}
.y145{bottom:526.320000px;}
.y42{bottom:527.040000px;}
.yb6{bottom:531.000000px;}
.y107{bottom:533.520000px;}
.y1d{bottom:539.640000px;}
.y93{bottom:541.440000px;}
.y6f{bottom:547.560000px;}
.y144{bottom:550.080000px;}
.y41{bottom:552.960000px;}
.yef{bottom:554.760000px;}
.yb5{bottom:559.080000px;}
.y1c{bottom:560.520000px;}
.y106{bottom:561.600000px;}
.y92{bottom:569.520000px;}
.y40{bottom:573.840000px;}
.y143{bottom:574.560000px;}
.y6e{bottom:575.280000px;}
.yd7{bottom:575.640000px;}
.y1b{bottom:581.040000px;}
.yee{bottom:582.480000px;}
.yb4{bottom:587.160000px;}
.y105{bottom:589.680000px;}
.y3f{bottom:595.800000px;}
.y91{bottom:597.600000px;}
.y142{bottom:598.320000px;}
.y1a{bottom:601.920000px;}
.y6d{bottom:603.360000px;}
.yd6{bottom:603.720000px;}
.yed{bottom:610.560000px;}
.yb3{bottom:614.880000px;}
.y118{bottom:617.400000px;}
.y3e{bottom:617.760000px;}
.y19{bottom:622.440000px;}
.y141{bottom:622.800000px;}
.y90{bottom:624.600000px;}
.y6c{bottom:631.080000px;}
.yd5{bottom:631.440000px;}
.yec{bottom:638.280000px;}
.y3d{bottom:641.160000px;}
.yb2{bottom:642.960000px;}
.y117{bottom:645.480000px;}
.y140{bottom:646.920000px;}
.y8f{bottom:648.720000px;}
.y6b{bottom:659.160000px;}
.yd4{bottom:659.520000px;}
.y18{bottom:663.840000px;}
.yeb{bottom:666.360000px;}
.y3c{bottom:667.080000px;}
.yb1{bottom:670.680000px;}
.y13f{bottom:671.040000px;}
.y116{bottom:673.200000px;}
.y8e{bottom:673.560000px;}
.y17{bottom:684.720000px;}
.y6a{bottom:686.880000px;}
.yd3{bottom:687.240000px;}
.y3b{bottom:690.480000px;}
.y104{bottom:694.440000px;}
.y13e{bottom:695.160000px;}
.yb0{bottom:698.760000px;}
.y115{bottom:701.280000px;}
.y8d{bottom:701.640000px;}
.y16{bottom:705.240000px;}
.y69{bottom:714.960000px;}
.yd2{bottom:715.320000px;}
.y13d{bottom:719.280000px;}
.y103{bottom:722.160000px;}
.y3a{bottom:725.040000px;}
.y15{bottom:726.120000px;}
.yaf{bottom:726.840000px;}
.y114{bottom:729.000000px;}
.y8c{bottom:729.720000px;}
.y121{bottom:738.000000px;}
.y68{bottom:740.880000px;}
.yd1{bottom:743.400000px;}
.y13c{bottom:743.760000px;}
.y14{bottom:746.640000px;}
.y102{bottom:750.240000px;}
.yae{bottom:754.560000px;}
.y113{bottom:757.080000px;}
.y8b{bottom:757.440000px;}
.y39{bottom:759.600000px;}
.y67{bottom:761.040000px;}
.y13{bottom:767.520000px;}
.y13b{bottom:767.880000px;}
.yd0{bottom:771.120000px;}
.y101{bottom:777.960000px;}
.yad{bottom:782.640000px;}
.y112{bottom:785.160000px;}
.y8a{bottom:785.520000px;}
.y12{bottom:788.040000px;}
.y66{bottom:788.760000px;}
.y13a{bottom:791.640000px;}
.y38{bottom:793.800000px;}
.ycf{bottom:799.200000px;}
.y100{bottom:806.040000px;}
.y11{bottom:809.280000px;}
.yac{bottom:810.360000px;}
.y111{bottom:812.880000px;}
.y89{bottom:813.240000px;}
.y65{bottom:814.680000px;}
.y139{bottom:816.120000px;}
.yce{bottom:826.920000px;}
.y37{bottom:828.360000px;}
.y10{bottom:829.800000px;}
.y64{bottom:831.600000px;}
.yff{bottom:834.120000px;}
.yab{bottom:838.440000px;}
.y138{bottom:839.880000px;}
.y110{bottom:840.960000px;}
.y88{bottom:841.320000px;}
.y123{bottom:849.600000px;}
.yf{bottom:850.680000px;}
.y63{bottom:851.760000px;}
.ycd{bottom:855.000000px;}
.y36{bottom:860.760000px;}
.yfe{bottom:861.840000px;}
.y137{bottom:864.360000px;}
.yaa{bottom:866.160000px;}
.y87{bottom:868.320000px;}
.y10f{bottom:868.680000px;}
.ye{bottom:870.840000px;}
.y62{bottom:878.040000px;}
.ycc{bottom:883.080000px;}
.y35{bottom:885.960000px;}
.y136{bottom:888.480000px;}
.yfd{bottom:889.920000px;}
.yd{bottom:891.720000px;}
.y86{bottom:893.520000px;}
.ya9{bottom:894.240000px;}
.y10e{bottom:896.760000px;}
.y61{bottom:898.200000px;}
.ycb{bottom:910.800000px;}
.y34{bottom:912.600000px;}
.y60{bottom:915.120000px;}
.yfc{bottom:917.640000px;}
.y85{bottom:921.240000px;}
.ya8{bottom:922.320000px;}
.yc{bottom:933.120000px;}
.y135{bottom:936.720000px;}
.y5f{bottom:938.880000px;}
.yfb{bottom:945.720000px;}
.y84{bottom:948.240000px;}
.ya7{bottom:950.040000px;}
.yb{bottom:953.640000px;}
.y134{bottom:960.480000px;}
.y5e{bottom:964.800000px;}
.yca{bottom:966.600000px;}
.y83{bottom:973.440000px;}
.yfa{bottom:973.800000px;}
.ya{bottom:974.520000px;}
.ya6{bottom:978.120000px;}
.y5d{bottom:984.600000px;}
.yc9{bottom:994.680000px;}
.y9{bottom:995.040000px;}
.y33{bottom:995.400000px;}
.y5c{bottom:1001.160000px;}
.yf9{bottom:1001.520000px;}
.ya5{bottom:1005.840000px;}
.y133{bottom:1008.720000px;}
.y8{bottom:1015.920000px;}
.y5b{bottom:1021.680000px;}
.yc8{bottom:1022.400000px;}
.y82{bottom:1029.240000px;}
.yf8{bottom:1029.600000px;}
.ya4{bottom:1033.200000px;}
.y7{bottom:1036.440000px;}
.y5a{bottom:1041.840000px;}
.yc7{bottom:1050.480000px;}
.y81{bottom:1055.520000px;}
.y6{bottom:1057.320000px;}
.y132{bottom:1057.680000px;}
.y59{bottom:1059.120000px;}
.y80{bottom:1072.800000px;}
.y58{bottom:1076.400000px;}
.y32{bottom:1077.840000px;}
.yc6{bottom:1078.560000px;}
.ya3{bottom:1081.440000px;}
.y131{bottom:1081.800000px;}
.y7f{bottom:1092.960000px;}
.y57{bottom:1093.680000px;}
.y5{bottom:1098.720000px;}
.ya2{bottom:1106.280000px;}
.y56{bottom:1113.840000px;}
.y4{bottom:1119.240000px;}
.y7e{bottom:1134.360000px;}
.y31{bottom:1140.120000px;}
.y3{bottom:1140.480000px;}
.h12{height:27.720000px;}
.h10{height:32.266080px;}
.h14{height:40.550625px;}
.h1{height:50.703840px;}
.ha{height:57.631712px;}
.h9{height:63.078750px;}
.hb{height:63.698906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h7{height:75.093750px;}
.hc{height:87.108750px;}
.hd{height:87.149531px;}
.h5{height:87.965156px;}
.h11{height:89.115840px;}
.he{height:91.067111px;}
.hf{height:95.977343px;}
.h13{height:96.511712px;}
.h8{height:100.624999px;}
.h6{height:124.655625px;}
.h2{height:129.318750px;}
.h0{height:1263.000000px;}
.w2{width:63.780000px;}
.w4{width:121.380000px;}
.w3{width:400.380000px;}
.w1{width:603.060000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.439850px;}
.x4{left:132.120000px;}
.x5{left:137.160000px;}
.x3b{left:149.040000px;}
.x31{left:150.480000px;}
.x7{left:154.440000px;}
.x14{left:157.680000px;}
.x6{left:159.120000px;}
.xe{left:168.120000px;}
.x38{left:171.000000px;}
.xc{left:172.440000px;}
.x3{left:180.360000px;}
.xd{left:181.440000px;}
.x1e{left:195.120000px;}
.x17{left:201.600000px;}
.xf{left:208.440000px;}
.x26{left:222.120000px;}
.x10{left:225.000000px;}
.x18{left:228.600000px;}
.x19{left:233.640000px;}
.x11{left:235.440000px;}
.x1f{left:249.120000px;}
.x15{left:255.600000px;}
.x1b{left:276.120000px;}
.x16{left:282.600000px;}
.x9{left:286.560000px;}
.x1c{left:289.440000px;}
.x22{left:309.600000px;}
.x32{left:313.920000px;}
.x1d{left:316.440000px;}
.x2b{left:330.120000px;}
.x8{left:339.840000px;}
.x33{left:349.560000px;}
.x3e{left:357.120000px;}
.x3c{left:397.080000px;}
.x29{left:405.000000px;}
.x3f{left:417.600000px;}
.x12{left:428.400000px;}
.x21{left:438.120000px;}
.x39{left:456.480000px;}
.xa{left:457.560000px;}
.x2a{left:465.120000px;}
.x13{left:492.480000px;}
.x34{left:501.480000px;}
.x1a{left:505.440000px;}
.xb{left:506.880000px;}
.x35{left:513.360000px;}
.x2{left:552.240000px;}
.x2d{left:574.200000px;}
.x37{left:581.760000px;}
.x2c{left:594.720000px;}
.x3a{left:627.480000px;}
.x2e{left:631.440000px;}
.x36{left:632.520000px;}
.x40{left:635.760000px;}
.x2f{left:641.880000px;}
.x24{left:643.680000px;}
.x27{left:648.000000px;}
.x3d{left:673.920000px;}
.x41{left:684.000000px;}
.x42{left:694.080000px;}
.x30{left:717.840000px;}
.x28{left:760.680000px;}
.x25{left:765.360000px;}
.x23{left:771.120000px;}
.x20{left:828.720000px;}
@media print{
.v8{vertical-align:-98.560000pt;}
.v4{vertical-align:-93.440000pt;}
.va{vertical-align:-85.760000pt;}
.v5{vertical-align:-76.800000pt;}
.v2{vertical-align:-74.240000pt;}
.v3{vertical-align:-72.960000pt;}
.vb{vertical-align:-71.680000pt;}
.v9{vertical-align:-26.880000pt;}
.v7{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:34.560000pt;}
.v1{vertical-align:58.880000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005889pt;}
.lsc{letter-spacing:0.074240pt;}
.lsd{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.142337pt;}
.ls21{letter-spacing:0.376320pt;}
.ls13{letter-spacing:0.416513pt;}
.ls1f{letter-spacing:0.417793pt;}
.ls1b{letter-spacing:0.668705pt;}
.lsa{letter-spacing:1.422593pt;}
.ls20{letter-spacing:1.698582pt;}
.ls9{letter-spacing:1.813505pt;}
.ls18{letter-spacing:3.686145pt;}
.ls1e{letter-spacing:3.983105pt;}
.ls1c{letter-spacing:10.384385pt;}
.ls8{letter-spacing:11.664641pt;}
.ls15{letter-spacing:15.208449pt;}
.ls1d{letter-spacing:18.065922pt;}
.ls22{letter-spacing:23.186946pt;}
.ls19{letter-spacing:31.851778pt;}
.ls14{letter-spacing:40.813570pt;}
.ls11{letter-spacing:42.093827pt;}
.lse{letter-spacing:43.671043pt;}
.ls5{letter-spacing:48.781315pt;}
.ls16{letter-spacing:52.335875pt;}
.ls6{letter-spacing:56.749059pt;}
.ls17{letter-spacing:58.737155pt;}
.ls10{letter-spacing:94.584325pt;}
.lsf{letter-spacing:100.985605pt;}
.ls1a{letter-spacing:148.355079pt;}
.ls2{letter-spacing:172.198173pt;}
.ls12{letter-spacing:435.429928pt;}
.ls7{letter-spacing:735.009844pt;}
.ls0{letter-spacing:1306.505034pt;}
.ls1{letter-spacing:1494.702674pt;}
.ws2{word-spacing:-53.760000pt;}
.ws8{word-spacing:-26.132480pt;}
.ws7{word-spacing:-21.059081pt;}
.wsa{word-spacing:-20.638720pt;}
.ws4{word-spacing:-20.341760pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.945280pt;}
.ws5{word-spacing:-13.327214pt;}
.ws9{word-spacing:-9.607680pt;}
.ws6{word-spacing:-9.461760pt;}
.ws1{word-spacing:0.000000pt;}
._3d{margin-left:-3.994858pt;}
._4{margin-left:-2.419402pt;}
._2{margin-left:-1.140480pt;}
._0{width:0.971520pt;}
._1{width:1.898307pt;}
._a{width:2.868480pt;}
._b{width:3.919285pt;}
._16{width:5.139690pt;}
._10{width:6.165270pt;}
._e{width:7.424000pt;}
._f{width:8.436480pt;}
._19{width:9.457165pt;}
._14{width:10.465216pt;}
._13{width:11.392000pt;}
._17{width:12.339133pt;}
._18{width:14.030213pt;}
._21{width:15.189760pt;}
._8{width:16.896000pt;}
._9{width:17.934309pt;}
._15{width:19.061666pt;}
._24{width:21.663758pt;}
._22{width:22.599680pt;}
._c{width:23.616000pt;}
._d{width:25.280000pt;}
._11{width:26.240000pt;}
._12{width:27.660800pt;}
._1d{width:28.957962pt;}
._1e{width:29.918720pt;}
._2c{width:31.663874pt;}
._27{width:33.420884pt;}
._26{width:34.501630pt;}
._23{width:36.069130pt;}
._25{width:37.253651pt;}
._1f{width:38.449920pt;}
._20{width:40.083200pt;}
._28{width:41.351680pt;}
._29{width:42.607360pt;}
._36{width:43.848960pt;}
._2e{width:44.787200pt;}
._2a{width:46.103040pt;}
._2f{width:47.432960pt;}
._1a{width:48.781315pt;}
._3c{width:50.245877pt;}
._30{width:51.363848pt;}
._31{width:53.081600pt;}
._3b{width:55.299101pt;}
._1b{width:56.344324pt;}
._2d{width:57.303302pt;}
._35{width:58.278400pt;}
._3a{width:59.412480pt;}
._2b{width:60.654080pt;}
._38{width:68.220160pt;}
._37{width:69.853440pt;}
._39{width:74.611200pt;}
._34{width:106.521600pt;}
._5{width:112.025605pt;}
._32{width:142.763520pt;}
._33{width:144.019200pt;}
._7{width:172.197640pt;}
._6{width:173.477896pt;}
._1c{width:821.128396pt;}
._3{width:1220.221481pt;}
.fs8{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs6{font-size:48.639467pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs7{font-size:76.857958pt;}
.fs5{font-size:85.759467pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:4.800000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:66.240000pt;}
.y130{bottom:97.600000pt;}
.y128{bottom:97.920000pt;}
.yc5{bottom:99.840000pt;}
.y153{bottom:101.759867pt;}
.y125{bottom:104.640000pt;}
.y10d{bottom:108.160000pt;}
.ya1{bottom:109.120000pt;}
.y30{bottom:112.000000pt;}
.y12f{bottom:112.960000pt;}
.y124{bottom:113.600000pt;}
.y55{bottom:114.240000pt;}
.ye6{bottom:114.560000pt;}
.yea{bottom:115.520000pt;}
.y127{bottom:120.000000pt;}
.yc4{bottom:124.480000pt;}
.y152{bottom:126.720000pt;}
.ye9{bottom:128.640000pt;}
.y126{bottom:128.960000pt;}
.y54{bottom:129.600000pt;}
.y2f{bottom:130.240000pt;}
.y10c{bottom:132.800000pt;}
.ya0{bottom:133.760000pt;}
.y7d{bottom:138.880000pt;}
.ye5{bottom:139.200000pt;}
.y12e{bottom:144.000000pt;}
.ye8{bottom:146.240000pt;}
.y53{bottom:146.880000pt;}
.y2e{bottom:148.800000pt;}
.yc3{bottom:149.440000pt;}
.y151{bottom:151.680000pt;}
.ye7{bottom:155.840000pt;}
.y10b{bottom:157.760000pt;}
.y9f{bottom:158.720000pt;}
.y12d{bottom:159.360000pt;}
.y7c{bottom:163.840000pt;}
.ye4{bottom:164.160000pt;}
.y2d{bottom:167.040000pt;}
.y52{bottom:169.920000pt;}
.yc2{bottom:174.080000pt;}
.y12c{bottom:174.400000pt;}
.y150{bottom:176.320000pt;}
.y10a{bottom:182.720000pt;}
.y9e{bottom:183.360000pt;}
.y2c{bottom:185.600000pt;}
.y51{bottom:187.840000pt;}
.y7b{bottom:188.480000pt;}
.ye3{bottom:188.800000pt;}
.y12b{bottom:189.760000pt;}
.yc1{bottom:199.040000pt;}
.y14f{bottom:201.280000pt;}
.y50{bottom:203.200000pt;}
.y2b{bottom:203.840000pt;}
.y109{bottom:207.360000pt;}
.y9d{bottom:208.320000pt;}
.y12a{bottom:211.840000pt;}
.y7a{bottom:213.440000pt;}
.ye2{bottom:213.760000pt;}
.y4f{bottom:218.560000pt;}
.y129{bottom:220.800000pt;}
.y2a{bottom:222.400000pt;}
.yc0{bottom:224.000000pt;}
.yf7{bottom:232.320000pt;}
.y9c{bottom:233.280000pt;}
.y4e{bottom:233.920000pt;}
.y79{bottom:238.400000pt;}
.ye1{bottom:238.720000pt;}
.y29{bottom:240.640000pt;}
.y14e{bottom:242.560000pt;}
.ybf{bottom:248.640000pt;}
.y4d{bottom:249.280000pt;}
.y108{bottom:250.880000pt;}
.y11e{bottom:256.960000pt;}
.y9b{bottom:257.920000pt;}
.y28{bottom:258.880000pt;}
.y78{bottom:263.040000pt;}
.ye0{bottom:263.360000pt;}
.ybe{bottom:273.600000pt;}
.y14d{bottom:274.560000pt;}
.yf6{bottom:275.840000pt;}
.y27{bottom:277.440000pt;}
.y11d{bottom:281.920000pt;}
.y9a{bottom:282.880000pt;}
.y122{bottom:283.520000pt;}
.y77{bottom:288.000000pt;}
.ydf{bottom:288.320000pt;}
.y4c{bottom:290.560000pt;}
.y26{bottom:295.680000pt;}
.y14c{bottom:296.000000pt;}
.ybd{bottom:298.240000pt;}
.yf5{bottom:300.480000pt;}
.y11c{bottom:306.880000pt;}
.y99{bottom:307.520000pt;}
.y4b{bottom:308.480000pt;}
.y76{bottom:312.640000pt;}
.yde{bottom:312.960000pt;}
.y14b{bottom:317.440000pt;}
.ybc{bottom:323.200000pt;}
.y4a{bottom:323.840000pt;}
.yf4{bottom:325.440000pt;}
.y11b{bottom:331.520000pt;}
.y25{bottom:332.480000pt;}
.y75{bottom:337.600000pt;}
.ydd{bottom:337.920000pt;}
.y14a{bottom:338.560000pt;}
.y49{bottom:340.800000pt;}
.ybb{bottom:347.840000pt;}
.yf3{bottom:350.080000pt;}
.y24{bottom:351.040000pt;}
.y11a{bottom:356.480000pt;}
.y98{bottom:357.440000pt;}
.y149{bottom:360.000000pt;}
.y74{bottom:362.560000pt;}
.ydc{bottom:362.880000pt;}
.y48{bottom:365.440000pt;}
.y23{bottom:369.280000pt;}
.yba{bottom:372.800000pt;}
.yf2{bottom:375.040000pt;}
.y119{bottom:381.120000pt;}
.y148{bottom:381.760000pt;}
.y97{bottom:382.080000pt;}
.y73{bottom:387.200000pt;}
.ydb{bottom:387.520000pt;}
.y22{bottom:387.840000pt;}
.y47{bottom:388.160000pt;}
.yb9{bottom:397.760000pt;}
.yf1{bottom:400.000000pt;}
.y46{bottom:403.520000pt;}
.y21{bottom:406.080000pt;}
.y96{bottom:407.040000pt;}
.y72{bottom:412.160000pt;}
.yda{bottom:412.480000pt;}
.y45{bottom:418.880000pt;}
.yb8{bottom:422.400000pt;}
.y20{bottom:424.640000pt;}
.y147{bottom:424.960000pt;}
.y95{bottom:431.680000pt;}
.y11f{bottom:432.320000pt;}
.y44{bottom:433.920000pt;}
.y71{bottom:436.800000pt;}
.yd9{bottom:437.120000pt;}
.y1f{bottom:442.880000pt;}
.y146{bottom:446.400000pt;}
.yb7{bottom:447.360000pt;}
.yf0{bottom:449.600000pt;}
.y43{bottom:450.240000pt;}
.y94{bottom:456.640000pt;}
.y1e{bottom:461.440000pt;}
.y70{bottom:461.760000pt;}
.yd8{bottom:462.080000pt;}
.y145{bottom:467.840000pt;}
.y42{bottom:468.480000pt;}
.yb6{bottom:472.000000pt;}
.y107{bottom:474.240000pt;}
.y1d{bottom:479.680000pt;}
.y93{bottom:481.280000pt;}
.y6f{bottom:486.720000pt;}
.y144{bottom:488.960000pt;}
.y41{bottom:491.520000pt;}
.yef{bottom:493.120000pt;}
.yb5{bottom:496.960000pt;}
.y1c{bottom:498.240000pt;}
.y106{bottom:499.200000pt;}
.y92{bottom:506.240000pt;}
.y40{bottom:510.080000pt;}
.y143{bottom:510.720000pt;}
.y6e{bottom:511.360000pt;}
.yd7{bottom:511.680000pt;}
.y1b{bottom:516.480000pt;}
.yee{bottom:517.760000pt;}
.yb4{bottom:521.920000pt;}
.y105{bottom:524.160000pt;}
.y3f{bottom:529.600000pt;}
.y91{bottom:531.200000pt;}
.y142{bottom:531.840000pt;}
.y1a{bottom:535.040000pt;}
.y6d{bottom:536.320000pt;}
.yd6{bottom:536.640000pt;}
.yed{bottom:542.720000pt;}
.yb3{bottom:546.560000pt;}
.y118{bottom:548.800000pt;}
.y3e{bottom:549.120000pt;}
.y19{bottom:553.280000pt;}
.y141{bottom:553.600000pt;}
.y90{bottom:555.200000pt;}
.y6c{bottom:560.960000pt;}
.yd5{bottom:561.280000pt;}
.yec{bottom:567.360000pt;}
.y3d{bottom:569.920000pt;}
.yb2{bottom:571.520000pt;}
.y117{bottom:573.760000pt;}
.y140{bottom:575.040000pt;}
.y8f{bottom:576.640000pt;}
.y6b{bottom:585.920000pt;}
.yd4{bottom:586.240000pt;}
.y18{bottom:590.080000pt;}
.yeb{bottom:592.320000pt;}
.y3c{bottom:592.960000pt;}
.yb1{bottom:596.160000pt;}
.y13f{bottom:596.480000pt;}
.y116{bottom:598.400000pt;}
.y8e{bottom:598.720000pt;}
.y17{bottom:608.640000pt;}
.y6a{bottom:610.560000pt;}
.yd3{bottom:610.880000pt;}
.y3b{bottom:613.760000pt;}
.y104{bottom:617.280000pt;}
.y13e{bottom:617.920000pt;}
.yb0{bottom:621.120000pt;}
.y115{bottom:623.360000pt;}
.y8d{bottom:623.680000pt;}
.y16{bottom:626.880000pt;}
.y69{bottom:635.520000pt;}
.yd2{bottom:635.840000pt;}
.y13d{bottom:639.360000pt;}
.y103{bottom:641.920000pt;}
.y3a{bottom:644.480000pt;}
.y15{bottom:645.440000pt;}
.yaf{bottom:646.080000pt;}
.y114{bottom:648.000000pt;}
.y8c{bottom:648.640000pt;}
.y121{bottom:656.000000pt;}
.y68{bottom:658.560000pt;}
.yd1{bottom:660.800000pt;}
.y13c{bottom:661.120000pt;}
.y14{bottom:663.680000pt;}
.y102{bottom:666.880000pt;}
.yae{bottom:670.720000pt;}
.y113{bottom:672.960000pt;}
.y8b{bottom:673.280000pt;}
.y39{bottom:675.200000pt;}
.y67{bottom:676.480000pt;}
.y13{bottom:682.240000pt;}
.y13b{bottom:682.560000pt;}
.yd0{bottom:685.440000pt;}
.y101{bottom:691.520000pt;}
.yad{bottom:695.680000pt;}
.y112{bottom:697.920000pt;}
.y8a{bottom:698.240000pt;}
.y12{bottom:700.480000pt;}
.y66{bottom:701.120000pt;}
.y13a{bottom:703.680000pt;}
.y38{bottom:705.600000pt;}
.ycf{bottom:710.400000pt;}
.y100{bottom:716.480000pt;}
.y11{bottom:719.360000pt;}
.yac{bottom:720.320000pt;}
.y111{bottom:722.560000pt;}
.y89{bottom:722.880000pt;}
.y65{bottom:724.160000pt;}
.y139{bottom:725.440000pt;}
.yce{bottom:735.040000pt;}
.y37{bottom:736.320000pt;}
.y10{bottom:737.600000pt;}
.y64{bottom:739.200000pt;}
.yff{bottom:741.440000pt;}
.yab{bottom:745.280000pt;}
.y138{bottom:746.560000pt;}
.y110{bottom:747.520000pt;}
.y88{bottom:747.840000pt;}
.y123{bottom:755.200000pt;}
.yf{bottom:756.160000pt;}
.y63{bottom:757.120000pt;}
.ycd{bottom:760.000000pt;}
.y36{bottom:765.120000pt;}
.yfe{bottom:766.080000pt;}
.y137{bottom:768.320000pt;}
.yaa{bottom:769.920000pt;}
.y87{bottom:771.840000pt;}
.y10f{bottom:772.160000pt;}
.ye{bottom:774.080000pt;}
.y62{bottom:780.480000pt;}
.ycc{bottom:784.960000pt;}
.y35{bottom:787.520000pt;}
.y136{bottom:789.760000pt;}
.yfd{bottom:791.040000pt;}
.yd{bottom:792.640000pt;}
.y86{bottom:794.240000pt;}
.ya9{bottom:794.880000pt;}
.y10e{bottom:797.120000pt;}
.y61{bottom:798.400000pt;}
.ycb{bottom:809.600000pt;}
.y34{bottom:811.200000pt;}
.y60{bottom:813.440000pt;}
.yfc{bottom:815.680000pt;}
.y85{bottom:818.880000pt;}
.ya8{bottom:819.840000pt;}
.yc{bottom:829.440000pt;}
.y135{bottom:832.640000pt;}
.y5f{bottom:834.560000pt;}
.yfb{bottom:840.640000pt;}
.y84{bottom:842.880000pt;}
.ya7{bottom:844.480000pt;}
.yb{bottom:847.680000pt;}
.y134{bottom:853.760000pt;}
.y5e{bottom:857.600000pt;}
.yca{bottom:859.200000pt;}
.y83{bottom:865.280000pt;}
.yfa{bottom:865.600000pt;}
.ya{bottom:866.240000pt;}
.ya6{bottom:869.440000pt;}
.y5d{bottom:875.200000pt;}
.yc9{bottom:884.160000pt;}
.y9{bottom:884.480000pt;}
.y33{bottom:884.800000pt;}
.y5c{bottom:889.920000pt;}
.yf9{bottom:890.240000pt;}
.ya5{bottom:894.080000pt;}
.y133{bottom:896.640000pt;}
.y8{bottom:903.040000pt;}
.y5b{bottom:908.160000pt;}
.yc8{bottom:908.800000pt;}
.y82{bottom:914.880000pt;}
.yf8{bottom:915.200000pt;}
.ya4{bottom:918.400000pt;}
.y7{bottom:921.280000pt;}
.y5a{bottom:926.080000pt;}
.yc7{bottom:933.760000pt;}
.y81{bottom:938.240000pt;}
.y6{bottom:939.840000pt;}
.y132{bottom:940.160000pt;}
.y59{bottom:941.440000pt;}
.y80{bottom:953.600000pt;}
.y58{bottom:956.800000pt;}
.y32{bottom:958.080000pt;}
.yc6{bottom:958.720000pt;}
.ya3{bottom:961.280000pt;}
.y131{bottom:961.600000pt;}
.y7f{bottom:971.520000pt;}
.y57{bottom:972.160000pt;}
.y5{bottom:976.640000pt;}
.ya2{bottom:983.360000pt;}
.y56{bottom:990.080000pt;}
.y4{bottom:994.880000pt;}
.y7e{bottom:1008.320000pt;}
.y31{bottom:1013.440000pt;}
.y3{bottom:1013.760000pt;}
.h12{height:24.640000pt;}
.h10{height:28.680960pt;}
.h14{height:36.045000pt;}
.h1{height:45.070080pt;}
.ha{height:51.228188pt;}
.h9{height:56.070000pt;}
.hb{height:56.621250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h7{height:66.750000pt;}
.hc{height:77.430000pt;}
.hd{height:77.466250pt;}
.h5{height:78.191250pt;}
.h11{height:79.214080pt;}
.he{height:80.948543pt;}
.hf{height:85.313193pt;}
.h13{height:85.788188pt;}
.h8{height:89.444444pt;}
.h6{height:110.805000pt;}
.h2{height:114.950000pt;}
.h0{height:1122.666667pt;}
.w2{width:56.693333pt;}
.w4{width:107.893333pt;}
.w3{width:355.893333pt;}
.w1{width:536.053333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.279867pt;}
.x4{left:117.440000pt;}
.x5{left:121.920000pt;}
.x3b{left:132.480000pt;}
.x31{left:133.760000pt;}
.x7{left:137.280000pt;}
.x14{left:140.160000pt;}
.x6{left:141.440000pt;}
.xe{left:149.440000pt;}
.x38{left:152.000000pt;}
.xc{left:153.280000pt;}
.x3{left:160.320000pt;}
.xd{left:161.280000pt;}
.x1e{left:173.440000pt;}
.x17{left:179.200000pt;}
.xf{left:185.280000pt;}
.x26{left:197.440000pt;}
.x10{left:200.000000pt;}
.x18{left:203.200000pt;}
.x19{left:207.680000pt;}
.x11{left:209.280000pt;}
.x1f{left:221.440000pt;}
.x15{left:227.200000pt;}
.x1b{left:245.440000pt;}
.x16{left:251.200000pt;}
.x9{left:254.720000pt;}
.x1c{left:257.280000pt;}
.x22{left:275.200000pt;}
.x32{left:279.040000pt;}
.x1d{left:281.280000pt;}
.x2b{left:293.440000pt;}
.x8{left:302.080000pt;}
.x33{left:310.720000pt;}
.x3e{left:317.440000pt;}
.x3c{left:352.960000pt;}
.x29{left:360.000000pt;}
.x3f{left:371.200000pt;}
.x12{left:380.800000pt;}
.x21{left:389.440000pt;}
.x39{left:405.760000pt;}
.xa{left:406.720000pt;}
.x2a{left:413.440000pt;}
.x13{left:437.760000pt;}
.x34{left:445.760000pt;}
.x1a{left:449.280000pt;}
.xb{left:450.560000pt;}
.x35{left:456.320000pt;}
.x2{left:490.880000pt;}
.x2d{left:510.400000pt;}
.x37{left:517.120000pt;}
.x2c{left:528.640000pt;}
.x3a{left:557.760000pt;}
.x2e{left:561.280000pt;}
.x36{left:562.240000pt;}
.x40{left:565.120000pt;}
.x2f{left:570.560000pt;}
.x24{left:572.160000pt;}
.x27{left:576.000000pt;}
.x3d{left:599.040000pt;}
.x41{left:608.000000pt;}
.x42{left:616.960000pt;}
.x30{left:638.080000pt;}
.x28{left:676.160000pt;}
.x25{left:680.320000pt;}
.x23{left:685.440000pt;}
.x20{left:736.640000pt;}
}




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