
    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_b1e4e27b426e6214ed8988c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_888aafd556c54105c5c34fa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_fa8c942f374f333e721c1a2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_7d915260cf84f0cb9d31f92a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_78620490a7e87d0db5fb258a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_e3764dd5d7d9a180a2dc5637.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_51a9093a02a1b2d42818f019.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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;}
.ls20{letter-spacing:-1.800000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.942000px;}
.ls13{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.518400px;}
.lsa{letter-spacing:-0.507000px;}
.ls9{letter-spacing:-0.498000px;}
.ls6{letter-spacing:-0.486600px;}
.ls19{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.250800px;}
.ls1a{letter-spacing:-0.020160px;}
.lsd{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015840px;}
.lsf{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.lse{letter-spacing:0.250800px;}
.lsb{letter-spacing:0.466800px;}
.ls2{letter-spacing:0.498240px;}
.ls21{letter-spacing:0.501000px;}
.ls14{letter-spacing:0.507000px;}
.ls3{letter-spacing:0.519840px;}
.ls1f{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.160000px;}
.ls17{letter-spacing:9.106560px;}
.ls18{letter-spacing:13.426560px;}
.ls16{letter-spacing:26.386560px;}
.ls1e{letter-spacing:35.749440px;}
.ls1d{letter-spacing:59.345280px;}
.ls1c{letter-spacing:63.826560px;}
.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;}
}
.ws16{word-spacing:-66.240000px;}
.ws15{word-spacing:-60.480000px;}
.ws5{word-spacing:-54.720000px;}
.ws11{word-spacing:-15.627000px;}
.ws14{word-spacing:-15.586800px;}
.wse{word-spacing:-15.140160px;}
.ws9{word-spacing:-15.120000px;}
.ws13{word-spacing:-15.099840px;}
.ws12{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.ws7{word-spacing:-14.613000px;}
.ws10{word-spacing:-14.184000px;}
.wsf{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.182000px;}
.ws3{word-spacing:-12.600000px;}
.ws17{word-spacing:-12.545280px;}
.ws18{word-spacing:-12.381000px;}
.wsb{word-spacing:-12.130800px;}
.ws1{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.864400px;}
.ws19{word-spacing:-11.629200px;}
.ws2{word-spacing:-11.520000px;}
.wsd{word-spacing:0.000000px;}
.wsc{word-spacing:28.332960px;}
.ws8{word-spacing:29.773080px;}
._17{margin-left:-3.295675px;}
._0{margin-left:-2.056199px;}
._3{margin-left:-1.051544px;}
._1{width:1.571996px;}
._2{width:3.136225px;}
._e{width:4.497856px;}
._9{width:6.402689px;}
._25{width:7.413120px;}
._a{width:8.417190px;}
._10{width:10.099479px;}
._15{width:11.437820px;}
._14{width:12.444489px;}
._1b{width:14.045509px;}
._12{width:15.243008px;}
._11{width:16.447833px;}
._13{width:17.485113px;}
._18{width:18.748800px;}
._22{width:19.979899px;}
._b{width:21.043820px;}
._c{width:22.473218px;}
._4{width:23.966400px;}
._6{width:25.366810px;}
._d{width:26.725279px;}
._5{width:27.875981px;}
._f{width:29.012404px;}
._19{width:30.283208px;}
._27{width:31.572353px;}
._1a{width:32.650560px;}
._24{width:33.741959px;}
._26{width:35.070006px;}
._28{width:36.590400px;}
._29{width:37.981319px;}
._1d{width:39.070201px;}
._1c{width:40.400398px;}
._21{width:41.452063px;}
._8{width:42.822599px;}
._7{width:44.659918px;}
._30{width:45.843719px;}
._16{width:48.306837px;}
._23{width:55.423064px;}
._2e{width:58.121038px;}
._2d{width:59.633280px;}
._1e{width:60.661198px;}
._1f{width:61.810802px;}
._2a{width:66.830400px;}
._2b{width:67.892516px;}
._34{width:72.932164px;}
._33{width:74.356804px;}
._32{width:81.313811px;}
._31{width:89.110080px;}
._20{width:106.747200px;}
._2f{width:130.637042px;}
._2c{width:180.406802px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc6{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:2.520000px;}
.y9{bottom:2.880000px;}
.y104{bottom:4.320000px;}
.yf1{bottom:5.760000px;}
.yea{bottom:7.560000px;}
.yec{bottom:7.605000px;}
.yff{bottom:7.920000px;}
.yf5{bottom:9.000000px;}
.yd{bottom:9.720000px;}
.ya{bottom:11.916000px;}
.y5{bottom:15.876000px;}
.y8{bottom:16.560000px;}
.y103{bottom:18.000000px;}
.y4{bottom:19.116000px;}
.yf0{bottom:19.800000px;}
.yfe{bottom:21.960000px;}
.yf3{bottom:22.680000px;}
.yc{bottom:23.400000px;}
.y7{bottom:30.240000px;}
.y101{bottom:30.285000px;}
.y102{bottom:31.725000px;}
.yf4{bottom:36.720000px;}
.y3{bottom:36.756000px;}
.yb{bottom:37.080000px;}
.yf7{bottom:43.920000px;}
.y6{bottom:44.280000px;}
.y118{bottom:80.676000px;}
.yd7{bottom:81.756000px;}
.y79{bottom:85.356000px;}
.yb6{bottom:86.436000px;}
.yfb{bottom:93.996000px;}
.yd6{bottom:99.756000px;}
.y170{bottom:100.116000px;}
.y117{bottom:101.196000px;}
.y45{bottom:101.556000px;}
.y78{bottom:103.356000px;}
.yb5{bottom:104.436000px;}
.y16f{bottom:113.796000px;}
.y44{bottom:115.236000px;}
.yfa{bottom:117.036000px;}
.yd5{bottom:118.116000px;}
.y13c{bottom:119.556000px;}
.y77{bottom:121.716000px;}
.yb4{bottom:122.436000px;}
.y16e{bottom:127.836000px;}
.y43{bottom:129.276000px;}
.yd4{bottom:136.152000px;}
.y13b{bottom:137.592000px;}
.y76{bottom:139.752000px;}
.yb3{bottom:140.472000px;}
.yf9{bottom:141.552000px;}
.yd3{bottom:154.155000px;}
.y16d{bottom:155.235000px;}
.y13a{bottom:155.595000px;}
.yf6{bottom:156.315000px;}
.y42{bottom:156.675000px;}
.y75{bottom:157.755000px;}
.yb2{bottom:158.835000px;}
.y16c{bottom:169.275000px;}
.y41{bottom:170.715000px;}
.y139{bottom:173.955000px;}
.y74{bottom:176.115000px;}
.yb1{bottom:176.835000px;}
.y40{bottom:185.115000px;}
.y138{bottom:191.955000px;}
.y16b{bottom:192.675000px;}
.y73{bottom:194.115000px;}
.yb0{bottom:194.835000px;}
.y3f{bottom:201.675000px;}
.yd2{bottom:203.115000px;}
.y137{bottom:209.955000px;}
.y72{bottom:212.115000px;}
.yaf{bottom:213.195000px;}
.y3e{bottom:215.715000px;}
.yd1{bottom:221.115000px;}
.y16a{bottom:227.955000px;}
.y136{bottom:228.315000px;}
.y71{bottom:230.115000px;}
.y3d{bottom:231.195000px;}
.y169{bottom:242.355000px;}
.yd0{bottom:244.515000px;}
.y135{bottom:246.315000px;}
.y3c{bottom:246.675000px;}
.y70{bottom:248.475000px;}
.yae{bottom:249.195000px;}
.y168{bottom:256.755000px;}
.y3b{bottom:262.155000px;}
.y134{bottom:264.315000px;}
.ycf{bottom:264.675000px;}
.y6f{bottom:266.505000px;}
.yf2{bottom:266.865000px;}
.yad{bottom:267.585000px;}
.y167{bottom:271.545000px;}
.y3a{bottom:277.665000px;}
.y133{bottom:282.705000px;}
.y6e{bottom:284.505000px;}
.yac{bottom:285.585000px;}
.y116{bottom:285.945000px;}
.y166{bottom:300.345000px;}
.y132{bottom:300.705000px;}
.y6d{bottom:302.865000px;}
.yab{bottom:303.585000px;}
.y115{bottom:303.945000px;}
.yef{bottom:308.985000px;}
.y165{bottom:314.745000px;}
.y131{bottom:318.705000px;}
.y6c{bottom:320.865000px;}
.yaa{bottom:321.945000px;}
.y39{bottom:322.665000px;}
.y164{bottom:329.505000px;}
.y130{bottom:337.065000px;}
.y6b{bottom:338.865000px;}
.ya9{bottom:339.945000px;}
.y114{bottom:340.305000px;}
.y38{bottom:340.665000px;}
.yee{bottom:343.545000px;}
.y163{bottom:343.905000px;}
.y12f{bottom:355.065000px;}
.y6a{bottom:357.225000px;}
.ya8{bottom:357.945000px;}
.y113{bottom:358.305000px;}
.y37{bottom:359.025000px;}
.yed{bottom:368.025000px;}
.y162{bottom:372.705000px;}
.y12e{bottom:373.065000px;}
.y69{bottom:375.225000px;}
.ya7{bottom:375.945000px;}
.y112{bottom:376.305000px;}
.y36{bottom:377.025000px;}
.y161{bottom:387.465000px;}
.y12d{bottom:391.065000px;}
.yeb{bottom:392.505000px;}
.y68{bottom:393.225000px;}
.ya6{bottom:394.305000px;}
.y35{bottom:395.025000px;}
.y160{bottom:401.910000px;}
.y12c{bottom:409.470000px;}
.y67{bottom:411.630000px;}
.ya5{bottom:412.350000px;}
.y111{bottom:412.710000px;}
.y34{bottom:413.430000px;}
.y15f{bottom:416.310000px;}
.ye9{bottom:416.670000px;}
.y12b{bottom:427.470000px;}
.y66{bottom:429.630000px;}
.ya4{bottom:430.350000px;}
.y110{bottom:430.710000px;}
.y33{bottom:431.430000px;}
.y12a{bottom:445.470000px;}
.y65{bottom:447.630000px;}
.ya3{bottom:448.710000px;}
.y32{bottom:449.430000px;}
.ye8{bottom:450.150000px;}
.y15e{bottom:459.870000px;}
.y129{bottom:463.830000px;}
.y64{bottom:465.630000px;}
.ya2{bottom:466.710000px;}
.yce{bottom:467.070000px;}
.y31{bottom:467.430000px;}
.y15d{bottom:474.270000px;}
.ye7{bottom:474.630000px;}
.y128{bottom:481.830000px;}
.y63{bottom:483.990000px;}
.ya1{bottom:484.710000px;}
.y10f{bottom:485.070000px;}
.y30{bottom:485.790000px;}
.ycd{bottom:487.230000px;}
.y15c{bottom:488.670000px;}
.ye6{bottom:492.630000px;}
.y127{bottom:499.830000px;}
.y62{bottom:501.990000px;}
.ya0{bottom:503.070000px;}
.y15b{bottom:503.430000px;}
.y2f{bottom:503.790000px;}
.ye5{bottom:510.630000px;}
.y15a{bottom:517.830000px;}
.y126{bottom:518.190000px;}
.y9f{bottom:521.070000px;}
.y2e{bottom:521.790000px;}
.y10e{bottom:525.030000px;}
.y61{bottom:528.270000px;}
.ye4{bottom:528.990000px;}
.y159{bottom:532.260000px;}
.y9e{bottom:539.100000px;}
.y2d{bottom:544.140000px;}
.y158{bottom:546.660000px;}
.ye3{bottom:547.020000px;}
.y10d{bottom:556.380000px;}
.y9d{bottom:557.460000px;}
.y157{bottom:561.420000px;}
.y60{bottom:564.300000px;}
.ye2{bottom:568.620000px;}
.y9c{bottom:575.460000px;}
.y156{bottom:575.820000px;}
.y125{bottom:579.420000px;}
.y5f{bottom:582.660000px;}
.y2c{bottom:584.460000px;}
.y155{bottom:590.220000px;}
.y9b{bottom:593.460000px;}
.ye1{bottom:595.980000px;}
.y124{bottom:598.140000px;}
.y5e{bottom:600.660000px;}
.y154{bottom:604.620000px;}
.y9a{bottom:611.460000px;}
.ye0{bottom:613.980000px;}
.y5d{bottom:618.660000px;}
.y153{bottom:619.380000px;}
.y2b{bottom:619.740000px;}
.y99{bottom:629.820000px;}
.ydf{bottom:631.980000px;}
.y152{bottom:633.780000px;}
.y2a{bottom:636.660000px;}
.y5c{bottom:637.020000px;}
.y98{bottom:647.820000px;}
.y151{bottom:648.180000px;}
.y29{bottom:652.140000px;}
.yde{bottom:653.940000px;}
.y5b{bottom:655.020000px;}
.ycc{bottom:657.900000px;}
.y150{bottom:662.580000px;}
.y97{bottom:665.850000px;}
.y28{bottom:667.650000px;}
.ydd{bottom:671.250000px;}
.y5a{bottom:673.050000px;}
.ycb{bottom:675.930000px;}
.y14f{bottom:677.370000px;}
.y27{bottom:683.130000px;}
.y96{bottom:684.210000px;}
.y59{bottom:691.050000px;}
.y14e{bottom:691.770000px;}
.yca{bottom:694.290000px;}
.ydc{bottom:697.170000px;}
.y26{bottom:698.610000px;}
.y95{bottom:702.210000px;}
.y14d{bottom:706.170000px;}
.y58{bottom:709.410000px;}
.yc9{bottom:712.290000px;}
.ydb{bottom:714.450000px;}
.y25{bottom:720.210000px;}
.y14c{bottom:720.570000px;}
.y123{bottom:725.250000px;}
.y57{bottom:727.410000px;}
.yc8{bottom:730.290000px;}
.yda{bottom:735.330000px;}
.y24{bottom:735.690000px;}
.y94{bottom:738.570000px;}
.y122{bottom:743.250000px;}
.y56{bottom:745.410000px;}
.yc7{bottom:748.650000px;}
.y14b{bottom:749.730000px;}
.y23{bottom:751.170000px;}
.y93{bottom:756.570000px;}
.y121{bottom:761.250000px;}
.y55{bottom:763.770000px;}
.y14a{bottom:764.130000px;}
.yc6{bottom:766.650000px;}
.y22{bottom:772.770000px;}
.y92{bottom:774.570000px;}
.y149{bottom:778.530000px;}
.y120{bottom:779.610000px;}
.y54{bottom:781.770000px;}
.yc5{bottom:784.650000px;}
.y21{bottom:788.250000px;}
.y91{bottom:792.930000px;}
.y11f{bottom:797.610000px;}
.y53{bottom:799.815000px;}
.y148{bottom:801.975000px;}
.yc4{bottom:803.055000px;}
.y20{bottom:803.775000px;}
.y90{bottom:810.975000px;}
.y10c{bottom:814.575000px;}
.y11e{bottom:815.655000px;}
.y52{bottom:818.175000px;}
.y1f{bottom:819.615000px;}
.yc3{bottom:821.055000px;}
.y8f{bottom:828.975000px;}
.y11d{bottom:833.655000px;}
.y1e{bottom:835.095000px;}
.y51{bottom:836.175000px;}
.y10b{bottom:837.975000px;}
.y147{bottom:838.335000px;}
.yc2{bottom:839.055000px;}
.y8e{bottom:846.975000px;}
.y185{bottom:847.335000px;}
.y1d{bottom:850.575000px;}
.y11c{bottom:852.015000px;}
.y50{bottom:854.175000px;}
.y10a{bottom:855.255000px;}
.y146{bottom:855.975000px;}
.yc1{bottom:857.055000px;}
.y184{bottom:862.815000px;}
.y8d{bottom:865.335000px;}
.y1c{bottom:866.055000px;}
.y4f{bottom:872.535000px;}
.y11b{bottom:875.055000px;}
.yc0{bottom:875.415000px;}
.y183{bottom:880.815000px;}
.y1b{bottom:881.535000px;}
.y8c{bottom:883.335000px;}
.y109{bottom:889.815000px;}
.y4e{bottom:890.535000px;}
.ybf{bottom:893.415000px;}
.y11a{bottom:895.935000px;}
.y1a{bottom:897.015000px;}
.y182{bottom:898.815000px;}
.y8b{bottom:901.335000px;}
.y108{bottom:907.095000px;}
.y4d{bottom:908.535000px;}
.ybe{bottom:911.415000px;}
.y19{bottom:912.495000px;}
.yd9{bottom:912.855000px;}
.y181{bottom:916.815000px;}
.y8a{bottom:919.695000px;}
.y107{bottom:925.095000px;}
.y4c{bottom:926.535000px;}
.yd8{bottom:927.615000px;}
.y18{bottom:927.975000px;}
.y145{bottom:929.415000px;}
.ybd{bottom:929.775000px;}
.y180{bottom:935.205000px;}
.y89{bottom:937.725000px;}
.y106{bottom:939.885000px;}
.y17{bottom:943.845000px;}
.y4b{bottom:944.925000px;}
.ybc{bottom:947.805000px;}
.y17f{bottom:953.205000px;}
.y88{bottom:955.725000px;}
.y16{bottom:959.325000px;}
.y4a{bottom:962.925000px;}
.ybb{bottom:965.805000px;}
.y17e{bottom:971.205000px;}
.y87{bottom:974.085000px;}
.y15{bottom:974.805000px;}
.y49{bottom:980.925000px;}
.y105{bottom:982.005000px;}
.y144{bottom:983.805000px;}
.yba{bottom:984.165000px;}
.y17d{bottom:989.565000px;}
.y14{bottom:990.285000px;}
.y86{bottom:992.085000px;}
.y48{bottom:999.285000px;}
.yb9{bottom:1002.165000px;}
.y13{bottom:1005.765000px;}
.y17c{bottom:1007.565000px;}
.y85{bottom:1010.085000px;}
.y47{bottom:1017.285000px;}
.yb8{bottom:1020.165000px;}
.y12{bottom:1021.245000px;}
.y17b{bottom:1021.605000px;}
.y84{bottom:1028.445000px;}
.y46{bottom:1035.285000px;}
.y11{bottom:1036.725000px;}
.y100{bottom:1037.805000px;}
.y143{bottom:1038.165000px;}
.yb7{bottom:1038.525000px;}
.y83{bottom:1046.445000px;}
.y17a{bottom:1051.845000px;}
.y119{bottom:1053.645000px;}
.y142{bottom:1056.525000px;}
.y82{bottom:1064.445000px;}
.y179{bottom:1065.525000px;}
.y10{bottom:1070.970000px;}
.y141{bottom:1074.570000px;}
.y178{bottom:1079.610000px;}
.y81{bottom:1082.490000px;}
.yfd{bottom:1082.850000px;}
.y140{bottom:1092.570000px;}
.y177{bottom:1093.290000px;}
.y80{bottom:1100.850000px;}
.y176{bottom:1106.970000px;}
.y13f{bottom:1110.570000px;}
.yf{bottom:1112.370000px;}
.y7f{bottom:1118.850000px;}
.y175{bottom:1121.010000px;}
.yfc{bottom:1121.730000px;}
.y13e{bottom:1128.930000px;}
.y174{bottom:1134.690000px;}
.y7e{bottom:1136.850000px;}
.y13d{bottom:1146.930000px;}
.y173{bottom:1148.370000px;}
.ye{bottom:1153.770000px;}
.y7d{bottom:1155.210000px;}
.y172{bottom:1162.410000px;}
.y7c{bottom:1173.210000px;}
.y171{bottom:1176.090000px;}
.y7b{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y7a{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h19{height:21.661172px;}
.h12{height:23.436000px;}
.h10{height:23.760000px;}
.h11{height:33.528516px;}
.h13{height:33.840000px;}
.hd{height:34.038984px;}
.h1d{height:34.595859px;}
.h6{height:36.150469px;}
.h17{height:38.160000px;}
.hc{height:38.608594px;}
.ha{height:39.196406px;}
.h14{height:41.400000px;}
.h2{height:42.672656px;}
.h4{height:43.322344px;}
.hf{height:44.031094px;}
.h18{height:44.316000px;}
.h9{height:44.406562px;}
.h1b{height:44.798906px;}
.h1a{height:46.009688px;}
.he{height:46.736719px;}
.h3{height:47.448281px;}
.h7{height:48.240000px;}
.h1c{height:49.065469px;}
.h15{height:54.036000px;}
.h16{height:55.080000px;}
.h5{height:55.440000px;}
.hb{height:85.613203px;}
.h8{height:103.148438px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:95.796000px;}
.w5{width:168.555000px;}
.w2{width:193.425000px;}
.w6{width:212.865000px;}
.w3{width:241.665000px;}
.w8{width:264.345000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:7.920000px;}
.x37{left:9.360000px;}
.x6{left:10.830000px;}
.x21{left:12.240000px;}
.x29{left:13.680000px;}
.x34{left:15.120000px;}
.x30{left:17.280000px;}
.x28{left:20.160000px;}
.x2d{left:21.240000px;}
.x36{left:23.040000px;}
.x25{left:24.480000px;}
.x23{left:25.920000px;}
.x32{left:29.880000px;}
.x2e{left:31.680000px;}
.x24{left:34.230000px;}
.x26{left:37.110000px;}
.x1e{left:39.630000px;}
.x20{left:44.310000px;}
.x22{left:47.910000px;}
.x27{left:49.350000px;}
.x1f{left:61.230000px;}
.x38{left:64.110000px;}
.x1d{left:66.630000px;}
.x1a{left:69.150000px;}
.x3{left:70.236000px;}
.x1c{left:76.710000px;}
.xa{left:81.036000px;}
.x41{left:85.715987px;}
.x11{left:90.035987px;}
.x43{left:91.475987px;}
.x33{left:95.790000px;}
.x7{left:100.836000px;}
.x42{left:112.715987px;}
.x31{left:120.270000px;}
.x3c{left:128.555987px;}
.x39{left:142.991987px;}
.x40{left:147.671987px;}
.x44{left:155.234987px;}
.xf{left:165.674987px;}
.x2f{left:167.115000px;}
.x2c{left:172.514987px;}
.xb{left:178.635000px;}
.x13{left:190.874987px;}
.x8{left:245.265000px;}
.x1{left:273.345000px;}
.x9{left:384.270000px;}
.x3a{left:409.139987px;}
.x2{left:423.180000px;}
.x10{left:433.979987px;}
.x12{left:435.059987px;}
.x3b{left:436.859987px;}
.x4{left:442.980000px;}
.xe{left:446.579987px;}
.xc{left:457.380000px;}
.x19{left:458.460000px;}
.x5{left:468.900000px;}
.x16{left:500.249987px;}
.x3f{left:509.969987px;}
.x3e{left:515.729987px;}
.xd{left:538.050000px;}
.x2b{left:551.369987px;}
.x2a{left:563.609987px;}
.x18{left:579.494987px;}
.x17{left:588.494987px;}
.x1b{left:627.375000px;}
.x3d{left:801.329987px;}
.x15{left:820.049987px;}
.x45{left:822.929987px;}
.x14{left:827.249987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.600000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.460800pt;}
.lsa{letter-spacing:-0.450667pt;}
.ls9{letter-spacing:-0.442667pt;}
.ls6{letter-spacing:-0.432533pt;}
.ls19{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.222933pt;}
.ls1a{letter-spacing:-0.017920pt;}
.lsd{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.014080pt;}
.lsf{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.222933pt;}
.lsb{letter-spacing:0.414933pt;}
.ls2{letter-spacing:0.442880pt;}
.ls21{letter-spacing:0.445333pt;}
.ls14{letter-spacing:0.450667pt;}
.ls3{letter-spacing:0.462080pt;}
.ls1f{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls17{letter-spacing:8.094720pt;}
.ls18{letter-spacing:11.934720pt;}
.ls16{letter-spacing:23.454720pt;}
.ls1e{letter-spacing:31.777280pt;}
.ls1d{letter-spacing:52.751360pt;}
.ls1c{letter-spacing:56.734720pt;}
.ws16{word-spacing:-58.880000pt;}
.ws15{word-spacing:-53.760000pt;}
.ws5{word-spacing:-48.640000pt;}
.ws11{word-spacing:-13.890667pt;}
.ws14{word-spacing:-13.854933pt;}
.wse{word-spacing:-13.457920pt;}
.ws9{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.422080pt;}
.ws12{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.989333pt;}
.ws10{word-spacing:-12.608000pt;}
.wsf{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.717333pt;}
.ws3{word-spacing:-11.200000pt;}
.ws17{word-spacing:-11.151360pt;}
.ws18{word-spacing:-11.005333pt;}
.wsb{word-spacing:-10.782933pt;}
.ws1{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.546133pt;}
.ws19{word-spacing:-10.337067pt;}
.ws2{word-spacing:-10.240000pt;}
.wsd{word-spacing:0.000000pt;}
.wsc{word-spacing:25.184853pt;}
.ws8{word-spacing:26.464960pt;}
._17{margin-left:-2.929489pt;}
._0{margin-left:-1.827732pt;}
._3{margin-left:-0.934706pt;}
._1{width:1.397330pt;}
._2{width:2.787756pt;}
._e{width:3.998095pt;}
._9{width:5.691279pt;}
._25{width:6.589440pt;}
._a{width:7.481946pt;}
._10{width:8.977315pt;}
._15{width:10.166951pt;}
._14{width:11.061768pt;}
._1b{width:12.484897pt;}
._12{width:13.549340pt;}
._11{width:14.620296pt;}
._13{width:15.542323pt;}
._18{width:16.665600pt;}
._22{width:17.759910pt;}
._b{width:18.705618pt;}
._c{width:19.976194pt;}
._4{width:21.303467pt;}
._6{width:22.548275pt;}
._d{width:23.755804pt;}
._5{width:24.778650pt;}
._f{width:25.788803pt;}
._19{width:26.918407pt;}
._27{width:28.064314pt;}
._1a{width:29.022720pt;}
._24{width:29.992852pt;}
._26{width:31.173338pt;}
._28{width:32.524800pt;}
._29{width:33.761172pt;}
._1d{width:34.729068pt;}
._1c{width:35.911465pt;}
._21{width:36.846278pt;}
._8{width:38.064532pt;}
._7{width:39.697705pt;}
._30{width:40.749972pt;}
._16{width:42.939411pt;}
._23{width:49.264946pt;}
._2e{width:51.663145pt;}
._2d{width:53.007360pt;}
._1e{width:53.921065pt;}
._1f{width:54.942935pt;}
._2a{width:59.404800pt;}
._2b{width:60.348903pt;}
._34{width:64.828590pt;}
._33{width:66.094937pt;}
._32{width:72.278943pt;}
._31{width:79.208960pt;}
._20{width:94.886400pt;}
._2f{width:116.121815pt;}
._2c{width:160.361602pt;}
.fs6{font-size:26.880000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:2.240000pt;}
.y9{bottom:2.560000pt;}
.y104{bottom:3.840000pt;}
.yf1{bottom:5.120000pt;}
.yea{bottom:6.720000pt;}
.yec{bottom:6.760000pt;}
.yff{bottom:7.040000pt;}
.yf5{bottom:8.000000pt;}
.yd{bottom:8.640000pt;}
.ya{bottom:10.592000pt;}
.y5{bottom:14.112000pt;}
.y8{bottom:14.720000pt;}
.y103{bottom:16.000000pt;}
.y4{bottom:16.992000pt;}
.yf0{bottom:17.600000pt;}
.yfe{bottom:19.520000pt;}
.yf3{bottom:20.160000pt;}
.yc{bottom:20.800000pt;}
.y7{bottom:26.880000pt;}
.y101{bottom:26.920000pt;}
.y102{bottom:28.200000pt;}
.yf4{bottom:32.640000pt;}
.y3{bottom:32.672000pt;}
.yb{bottom:32.960000pt;}
.yf7{bottom:39.040000pt;}
.y6{bottom:39.360000pt;}
.y118{bottom:71.712000pt;}
.yd7{bottom:72.672000pt;}
.y79{bottom:75.872000pt;}
.yb6{bottom:76.832000pt;}
.yfb{bottom:83.552000pt;}
.yd6{bottom:88.672000pt;}
.y170{bottom:88.992000pt;}
.y117{bottom:89.952000pt;}
.y45{bottom:90.272000pt;}
.y78{bottom:91.872000pt;}
.yb5{bottom:92.832000pt;}
.y16f{bottom:101.152000pt;}
.y44{bottom:102.432000pt;}
.yfa{bottom:104.032000pt;}
.yd5{bottom:104.992000pt;}
.y13c{bottom:106.272000pt;}
.y77{bottom:108.192000pt;}
.yb4{bottom:108.832000pt;}
.y16e{bottom:113.632000pt;}
.y43{bottom:114.912000pt;}
.yd4{bottom:121.024000pt;}
.y13b{bottom:122.304000pt;}
.y76{bottom:124.224000pt;}
.yb3{bottom:124.864000pt;}
.yf9{bottom:125.824000pt;}
.yd3{bottom:137.026667pt;}
.y16d{bottom:137.986667pt;}
.y13a{bottom:138.306667pt;}
.yf6{bottom:138.946667pt;}
.y42{bottom:139.266667pt;}
.y75{bottom:140.226667pt;}
.yb2{bottom:141.186667pt;}
.y16c{bottom:150.466667pt;}
.y41{bottom:151.746667pt;}
.y139{bottom:154.626667pt;}
.y74{bottom:156.546667pt;}
.yb1{bottom:157.186667pt;}
.y40{bottom:164.546667pt;}
.y138{bottom:170.626667pt;}
.y16b{bottom:171.266667pt;}
.y73{bottom:172.546667pt;}
.yb0{bottom:173.186667pt;}
.y3f{bottom:179.266667pt;}
.yd2{bottom:180.546667pt;}
.y137{bottom:186.626667pt;}
.y72{bottom:188.546667pt;}
.yaf{bottom:189.506667pt;}
.y3e{bottom:191.746667pt;}
.yd1{bottom:196.546667pt;}
.y16a{bottom:202.626667pt;}
.y136{bottom:202.946667pt;}
.y71{bottom:204.546667pt;}
.y3d{bottom:205.506667pt;}
.y169{bottom:215.426667pt;}
.yd0{bottom:217.346667pt;}
.y135{bottom:218.946667pt;}
.y3c{bottom:219.266667pt;}
.y70{bottom:220.866667pt;}
.yae{bottom:221.506667pt;}
.y168{bottom:228.226667pt;}
.y3b{bottom:233.026667pt;}
.y134{bottom:234.946667pt;}
.ycf{bottom:235.266667pt;}
.y6f{bottom:236.893333pt;}
.yf2{bottom:237.213333pt;}
.yad{bottom:237.853333pt;}
.y167{bottom:241.373333pt;}
.y3a{bottom:246.813333pt;}
.y133{bottom:251.293333pt;}
.y6e{bottom:252.893333pt;}
.yac{bottom:253.853333pt;}
.y116{bottom:254.173333pt;}
.y166{bottom:266.973333pt;}
.y132{bottom:267.293333pt;}
.y6d{bottom:269.213333pt;}
.yab{bottom:269.853333pt;}
.y115{bottom:270.173333pt;}
.yef{bottom:274.653333pt;}
.y165{bottom:279.773333pt;}
.y131{bottom:283.293333pt;}
.y6c{bottom:285.213333pt;}
.yaa{bottom:286.173333pt;}
.y39{bottom:286.813333pt;}
.y164{bottom:292.893333pt;}
.y130{bottom:299.613333pt;}
.y6b{bottom:301.213333pt;}
.ya9{bottom:302.173333pt;}
.y114{bottom:302.493333pt;}
.y38{bottom:302.813333pt;}
.yee{bottom:305.373333pt;}
.y163{bottom:305.693333pt;}
.y12f{bottom:315.613333pt;}
.y6a{bottom:317.533333pt;}
.ya8{bottom:318.173333pt;}
.y113{bottom:318.493333pt;}
.y37{bottom:319.133333pt;}
.yed{bottom:327.133333pt;}
.y162{bottom:331.293333pt;}
.y12e{bottom:331.613333pt;}
.y69{bottom:333.533333pt;}
.ya7{bottom:334.173333pt;}
.y112{bottom:334.493333pt;}
.y36{bottom:335.133333pt;}
.y161{bottom:344.413333pt;}
.y12d{bottom:347.613333pt;}
.yeb{bottom:348.893333pt;}
.y68{bottom:349.533333pt;}
.ya6{bottom:350.493333pt;}
.y35{bottom:351.133333pt;}
.y160{bottom:357.253333pt;}
.y12c{bottom:363.973333pt;}
.y67{bottom:365.893333pt;}
.ya5{bottom:366.533333pt;}
.y111{bottom:366.853333pt;}
.y34{bottom:367.493333pt;}
.y15f{bottom:370.053333pt;}
.ye9{bottom:370.373333pt;}
.y12b{bottom:379.973333pt;}
.y66{bottom:381.893333pt;}
.ya4{bottom:382.533333pt;}
.y110{bottom:382.853333pt;}
.y33{bottom:383.493333pt;}
.y12a{bottom:395.973333pt;}
.y65{bottom:397.893333pt;}
.ya3{bottom:398.853333pt;}
.y32{bottom:399.493333pt;}
.ye8{bottom:400.133333pt;}
.y15e{bottom:408.773333pt;}
.y129{bottom:412.293333pt;}
.y64{bottom:413.893333pt;}
.ya2{bottom:414.853333pt;}
.yce{bottom:415.173333pt;}
.y31{bottom:415.493333pt;}
.y15d{bottom:421.573333pt;}
.ye7{bottom:421.893333pt;}
.y128{bottom:428.293333pt;}
.y63{bottom:430.213333pt;}
.ya1{bottom:430.853333pt;}
.y10f{bottom:431.173333pt;}
.y30{bottom:431.813333pt;}
.ycd{bottom:433.093333pt;}
.y15c{bottom:434.373333pt;}
.ye6{bottom:437.893333pt;}
.y127{bottom:444.293333pt;}
.y62{bottom:446.213333pt;}
.ya0{bottom:447.173333pt;}
.y15b{bottom:447.493333pt;}
.y2f{bottom:447.813333pt;}
.ye5{bottom:453.893333pt;}
.y15a{bottom:460.293333pt;}
.y126{bottom:460.613333pt;}
.y9f{bottom:463.173333pt;}
.y2e{bottom:463.813333pt;}
.y10e{bottom:466.693333pt;}
.y61{bottom:469.573333pt;}
.ye4{bottom:470.213333pt;}
.y159{bottom:473.120000pt;}
.y9e{bottom:479.200000pt;}
.y2d{bottom:483.680000pt;}
.y158{bottom:485.920000pt;}
.ye3{bottom:486.240000pt;}
.y10d{bottom:494.560000pt;}
.y9d{bottom:495.520000pt;}
.y157{bottom:499.040000pt;}
.y60{bottom:501.600000pt;}
.ye2{bottom:505.440000pt;}
.y9c{bottom:511.520000pt;}
.y156{bottom:511.840000pt;}
.y125{bottom:515.040000pt;}
.y5f{bottom:517.920000pt;}
.y2c{bottom:519.520000pt;}
.y155{bottom:524.640000pt;}
.y9b{bottom:527.520000pt;}
.ye1{bottom:529.760000pt;}
.y124{bottom:531.680000pt;}
.y5e{bottom:533.920000pt;}
.y154{bottom:537.440000pt;}
.y9a{bottom:543.520000pt;}
.ye0{bottom:545.760000pt;}
.y5d{bottom:549.920000pt;}
.y153{bottom:550.560000pt;}
.y2b{bottom:550.880000pt;}
.y99{bottom:559.840000pt;}
.ydf{bottom:561.760000pt;}
.y152{bottom:563.360000pt;}
.y2a{bottom:565.920000pt;}
.y5c{bottom:566.240000pt;}
.y98{bottom:575.840000pt;}
.y151{bottom:576.160000pt;}
.y29{bottom:579.680000pt;}
.yde{bottom:581.280000pt;}
.y5b{bottom:582.240000pt;}
.ycc{bottom:584.800000pt;}
.y150{bottom:588.960000pt;}
.y97{bottom:591.866667pt;}
.y28{bottom:593.466667pt;}
.ydd{bottom:596.666667pt;}
.y5a{bottom:598.266667pt;}
.ycb{bottom:600.826667pt;}
.y14f{bottom:602.106667pt;}
.y27{bottom:607.226667pt;}
.y96{bottom:608.186667pt;}
.y59{bottom:614.266667pt;}
.y14e{bottom:614.906667pt;}
.yca{bottom:617.146667pt;}
.ydc{bottom:619.706667pt;}
.y26{bottom:620.986667pt;}
.y95{bottom:624.186667pt;}
.y14d{bottom:627.706667pt;}
.y58{bottom:630.586667pt;}
.yc9{bottom:633.146667pt;}
.ydb{bottom:635.066667pt;}
.y25{bottom:640.186667pt;}
.y14c{bottom:640.506667pt;}
.y123{bottom:644.666667pt;}
.y57{bottom:646.586667pt;}
.yc8{bottom:649.146667pt;}
.yda{bottom:653.626667pt;}
.y24{bottom:653.946667pt;}
.y94{bottom:656.506667pt;}
.y122{bottom:660.666667pt;}
.y56{bottom:662.586667pt;}
.yc7{bottom:665.466667pt;}
.y14b{bottom:666.426667pt;}
.y23{bottom:667.706667pt;}
.y93{bottom:672.506667pt;}
.y121{bottom:676.666667pt;}
.y55{bottom:678.906667pt;}
.y14a{bottom:679.226667pt;}
.yc6{bottom:681.466667pt;}
.y22{bottom:686.906667pt;}
.y92{bottom:688.506667pt;}
.y149{bottom:692.026667pt;}
.y120{bottom:692.986667pt;}
.y54{bottom:694.906667pt;}
.yc5{bottom:697.466667pt;}
.y21{bottom:700.666667pt;}
.y91{bottom:704.826667pt;}
.y11f{bottom:708.986667pt;}
.y53{bottom:710.946667pt;}
.y148{bottom:712.866667pt;}
.yc4{bottom:713.826667pt;}
.y20{bottom:714.466667pt;}
.y90{bottom:720.866667pt;}
.y10c{bottom:724.066667pt;}
.y11e{bottom:725.026667pt;}
.y52{bottom:727.266667pt;}
.y1f{bottom:728.546667pt;}
.yc3{bottom:729.826667pt;}
.y8f{bottom:736.866667pt;}
.y11d{bottom:741.026667pt;}
.y1e{bottom:742.306667pt;}
.y51{bottom:743.266667pt;}
.y10b{bottom:744.866667pt;}
.y147{bottom:745.186667pt;}
.yc2{bottom:745.826667pt;}
.y8e{bottom:752.866667pt;}
.y185{bottom:753.186667pt;}
.y1d{bottom:756.066667pt;}
.y11c{bottom:757.346667pt;}
.y50{bottom:759.266667pt;}
.y10a{bottom:760.226667pt;}
.y146{bottom:760.866667pt;}
.yc1{bottom:761.826667pt;}
.y184{bottom:766.946667pt;}
.y8d{bottom:769.186667pt;}
.y1c{bottom:769.826667pt;}
.y4f{bottom:775.586667pt;}
.y11b{bottom:777.826667pt;}
.yc0{bottom:778.146667pt;}
.y183{bottom:782.946667pt;}
.y1b{bottom:783.586667pt;}
.y8c{bottom:785.186667pt;}
.y109{bottom:790.946667pt;}
.y4e{bottom:791.586667pt;}
.ybf{bottom:794.146667pt;}
.y11a{bottom:796.386667pt;}
.y1a{bottom:797.346667pt;}
.y182{bottom:798.946667pt;}
.y8b{bottom:801.186667pt;}
.y108{bottom:806.306667pt;}
.y4d{bottom:807.586667pt;}
.ybe{bottom:810.146667pt;}
.y19{bottom:811.106667pt;}
.yd9{bottom:811.426667pt;}
.y181{bottom:814.946667pt;}
.y8a{bottom:817.506667pt;}
.y107{bottom:822.306667pt;}
.y4c{bottom:823.586667pt;}
.yd8{bottom:824.546667pt;}
.y18{bottom:824.866667pt;}
.y145{bottom:826.146667pt;}
.ybd{bottom:826.466667pt;}
.y180{bottom:831.293333pt;}
.y89{bottom:833.533333pt;}
.y106{bottom:835.453333pt;}
.y17{bottom:838.973333pt;}
.y4b{bottom:839.933333pt;}
.ybc{bottom:842.493333pt;}
.y17f{bottom:847.293333pt;}
.y88{bottom:849.533333pt;}
.y16{bottom:852.733333pt;}
.y4a{bottom:855.933333pt;}
.ybb{bottom:858.493333pt;}
.y17e{bottom:863.293333pt;}
.y87{bottom:865.853333pt;}
.y15{bottom:866.493333pt;}
.y49{bottom:871.933333pt;}
.y105{bottom:872.893333pt;}
.y144{bottom:874.493333pt;}
.yba{bottom:874.813333pt;}
.y17d{bottom:879.613333pt;}
.y14{bottom:880.253333pt;}
.y86{bottom:881.853333pt;}
.y48{bottom:888.253333pt;}
.yb9{bottom:890.813333pt;}
.y13{bottom:894.013333pt;}
.y17c{bottom:895.613333pt;}
.y85{bottom:897.853333pt;}
.y47{bottom:904.253333pt;}
.yb8{bottom:906.813333pt;}
.y12{bottom:907.773333pt;}
.y17b{bottom:908.093333pt;}
.y84{bottom:914.173333pt;}
.y46{bottom:920.253333pt;}
.y11{bottom:921.533333pt;}
.y100{bottom:922.493333pt;}
.y143{bottom:922.813333pt;}
.yb7{bottom:923.133333pt;}
.y83{bottom:930.173333pt;}
.y17a{bottom:934.973333pt;}
.y119{bottom:936.573333pt;}
.y142{bottom:939.133333pt;}
.y82{bottom:946.173333pt;}
.y179{bottom:947.133333pt;}
.y10{bottom:951.973333pt;}
.y141{bottom:955.173333pt;}
.y178{bottom:959.653333pt;}
.y81{bottom:962.213333pt;}
.yfd{bottom:962.533333pt;}
.y140{bottom:971.173333pt;}
.y177{bottom:971.813333pt;}
.y80{bottom:978.533333pt;}
.y176{bottom:983.973333pt;}
.y13f{bottom:987.173333pt;}
.yf{bottom:988.773333pt;}
.y7f{bottom:994.533333pt;}
.y175{bottom:996.453333pt;}
.yfc{bottom:997.093333pt;}
.y13e{bottom:1003.493333pt;}
.y174{bottom:1008.613333pt;}
.y7e{bottom:1010.533333pt;}
.y13d{bottom:1019.493333pt;}
.y173{bottom:1020.773333pt;}
.ye{bottom:1025.573333pt;}
.y7d{bottom:1026.853333pt;}
.y172{bottom:1033.253333pt;}
.y7c{bottom:1042.853333pt;}
.y171{bottom:1045.413333pt;}
.y7b{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y7a{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h19{height:19.254375pt;}
.h12{height:20.832000pt;}
.h10{height:21.120000pt;}
.h11{height:29.803125pt;}
.h13{height:30.080000pt;}
.hd{height:30.256875pt;}
.h1d{height:30.751875pt;}
.h6{height:32.133750pt;}
.h17{height:33.920000pt;}
.hc{height:34.318750pt;}
.ha{height:34.841250pt;}
.h14{height:36.800000pt;}
.h2{height:37.931250pt;}
.h4{height:38.508750pt;}
.hf{height:39.138750pt;}
.h18{height:39.392000pt;}
.h9{height:39.472500pt;}
.h1b{height:39.821250pt;}
.h1a{height:40.897500pt;}
.he{height:41.543750pt;}
.h3{height:42.176250pt;}
.h7{height:42.880000pt;}
.h1c{height:43.613750pt;}
.h15{height:48.032000pt;}
.h16{height:48.960000pt;}
.h5{height:49.280000pt;}
.hb{height:76.100625pt;}
.h8{height:91.687500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:85.152000pt;}
.w5{width:149.826667pt;}
.w2{width:171.933333pt;}
.w6{width:189.213333pt;}
.w3{width:214.813333pt;}
.w8{width:234.973333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:7.040000pt;}
.x37{left:8.320000pt;}
.x6{left:9.626667pt;}
.x21{left:10.880000pt;}
.x29{left:12.160000pt;}
.x34{left:13.440000pt;}
.x30{left:15.360000pt;}
.x28{left:17.920000pt;}
.x2d{left:18.880000pt;}
.x36{left:20.480000pt;}
.x25{left:21.760000pt;}
.x23{left:23.040000pt;}
.x32{left:26.560000pt;}
.x2e{left:28.160000pt;}
.x24{left:30.426667pt;}
.x26{left:32.986667pt;}
.x1e{left:35.226667pt;}
.x20{left:39.386667pt;}
.x22{left:42.586667pt;}
.x27{left:43.866667pt;}
.x1f{left:54.426667pt;}
.x38{left:56.986667pt;}
.x1d{left:59.226667pt;}
.x1a{left:61.466667pt;}
.x3{left:62.432000pt;}
.x1c{left:68.186667pt;}
.xa{left:72.032000pt;}
.x41{left:76.191988pt;}
.x11{left:80.031988pt;}
.x43{left:81.311988pt;}
.x33{left:85.146667pt;}
.x7{left:89.632000pt;}
.x42{left:100.191988pt;}
.x31{left:106.906667pt;}
.x3c{left:114.271988pt;}
.x39{left:127.103988pt;}
.x40{left:131.263988pt;}
.x44{left:137.986655pt;}
.xf{left:147.266655pt;}
.x2f{left:148.546667pt;}
.x2c{left:153.346655pt;}
.xb{left:158.786667pt;}
.x13{left:169.666655pt;}
.x8{left:218.013333pt;}
.x1{left:242.973333pt;}
.x9{left:341.573333pt;}
.x3a{left:363.679988pt;}
.x2{left:376.160000pt;}
.x10{left:385.759988pt;}
.x12{left:386.719988pt;}
.x3b{left:388.319988pt;}
.x4{left:393.760000pt;}
.xe{left:396.959988pt;}
.xc{left:406.560000pt;}
.x19{left:407.520000pt;}
.x5{left:416.800000pt;}
.x16{left:444.666655pt;}
.x3f{left:453.306655pt;}
.x3e{left:458.426655pt;}
.xd{left:478.266667pt;}
.x2b{left:490.106655pt;}
.x2a{left:500.986655pt;}
.x18{left:515.106655pt;}
.x17{left:523.106655pt;}
.x1b{left:557.666667pt;}
.x3d{left:712.293322pt;}
.x15{left:728.933322pt;}
.x45{left:731.493322pt;}
.x14{left:735.333322pt;}
}




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