
    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_a4f752e20779aabb6958bf9a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e279945e4dab7cde565c489f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5524d1852f9127304c680e9f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a13b5bad2d045b201b394a3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ad17370140bd136f27a057a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.078613;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_23f469a598ef4d7312afaebd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5bcc91dae7b0d1c11a66fa72.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_b06ad2b1113213890ed52c70.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.480000px;}
.v2{vertical-align:-76.500000px;}
.v5{vertical-align:-38.880000px;}
.v6{vertical-align:-30.240000px;}
.v4{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.ls30{letter-spacing:-1.620000px;}
.ls1d{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.518400px;}
.ls8{letter-spacing:-0.452400px;}
.ls2f{letter-spacing:-0.178800px;}
.ls29{letter-spacing:-0.043200px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.357120px;}
.ls1c{letter-spacing:0.411840px;}
.ls4{letter-spacing:0.668160px;}
.ls2d{letter-spacing:0.688320px;}
.ls3{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.732000px;}
.ls17{letter-spacing:0.840000px;}
.ls13{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.942000px;}
.ls19{letter-spacing:0.987840px;}
.ls25{letter-spacing:1.167840px;}
.ls2a{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.160000px;}
.ls27{letter-spacing:2.340000px;}
.ls1e{letter-spacing:3.600000px;}
.lsc{letter-spacing:5.040000px;}
.ls26{letter-spacing:7.920000px;}
.ls16{letter-spacing:9.360000px;}
.ls20{letter-spacing:10.800000px;}
.ls15{letter-spacing:13.680000px;}
.ls21{letter-spacing:16.560000px;}
.ls2e{letter-spacing:16.680000px;}
.ls12{letter-spacing:18.000000px;}
.ls14{letter-spacing:20.880000px;}
.lsf{letter-spacing:22.320000px;}
.ls11{letter-spacing:23.760000px;}
.ls1b{letter-spacing:28.080000px;}
.lse{letter-spacing:29.520000px;}
.ls5{letter-spacing:32.400000px;}
.ls18{letter-spacing:34.020000px;}
.ls6{letter-spacing:39.600000px;}
.ls28{letter-spacing:43.920000px;}
.ls23{letter-spacing:45.360000px;}
.ls22{letter-spacing:45.480000px;}
.ls2b{letter-spacing:64.080000px;}
.ls2c{letter-spacing:92.880000px;}
.ls1{letter-spacing:231.120000px;}
.ls0{letter-spacing:450.276000px;}
.ls2{letter-spacing:1259.856000px;}
.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;}
}
.ws6{word-spacing:-22.320000px;}
.ws1{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.836800px;}
.ws7{word-spacing:-20.701200px;}
.ws2{word-spacing:-20.427600px;}
.ws8{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.260000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-13.680000px;}
.ws3{word-spacing:0.000000px;}
._41{margin-left:-4.891200px;}
._33{margin-left:-3.878400px;}
._3{margin-left:-2.552640px;}
._2{margin-left:-1.523520px;}
._0{width:1.503360px;}
._1{width:2.906880px;}
._8{width:4.454400px;}
._4{width:5.790720px;}
._7{width:6.820800px;}
._9{width:8.352000px;}
._d{width:9.521280px;}
._1d{width:11.358720px;}
._25{width:13.006560px;}
._20{width:14.532480px;}
._1f{width:16.529760px;}
._1c{width:18.541440px;}
._1b{width:19.627200px;}
._23{width:21.965760px;}
._e{width:23.552640px;}
._2e{width:24.575040px;}
._18{width:25.807680px;}
._17{width:26.809920px;}
._19{width:27.812160px;}
._1a{width:28.814400px;}
._16{width:30.902400px;}
._b{width:32.155200px;}
._c{width:33.240960px;}
._47{width:34.273920px;}
._a{width:35.328960px;}
._2c{width:36.999360px;}
._f{width:38.085120px;}
._10{width:39.087360px;}
._11{width:40.089600px;}
._15{width:41.529600px;}
._30{width:43.012800px;}
._31{width:44.683200px;}
._3f{width:45.956160px;}
._32{width:47.021760px;}
._21{width:49.193280px;}
._22{width:50.299200px;}
._2f{width:51.344640px;}
._2b{width:52.701120px;}
._2a{width:54.288000px;}
._24{width:56.125440px;}
._1e{width:58.211040px;}
._26{width:59.549760px;}
._13{width:63.475200px;}
._12{width:64.811520px;}
._14{width:65.833920px;}
._5{width:67.795200px;}
._6{width:69.030720px;}
._48{width:70.240320px;}
._2d{width:71.409600px;}
._3d{width:73.330560px;}
._42{width:74.750400px;}
._4c{width:81.264960px;}
._40{width:82.274880px;}
._29{width:83.809920px;}
._27{width:84.856320px;}
._28{width:86.359680px;}
._4e{width:92.810880px;}
._4f{width:94.109760px;}
._49{width:101.067840px;}
._4a{width:102.072960px;}
._34{width:108.910080px;}
._35{width:110.079360px;}
._3b{width:116.801280px;}
._3c{width:118.097280px;}
._4d{width:122.440320px;}
._4b{width:124.444800px;}
._37{width:136.137600px;}
._3e{width:162.884160px;}
._45{width:170.213760px;}
._43{width:173.407680px;}
._50{width:221.181120px;}
._39{width:260.352000px;}
._38{width:266.595840px;}
._46{width:280.126080px;}
._44{width:326.479680px;}
._36{width:478.115520px;}
._3a{width:492.016320px;}
.fc7{color:rgb(61,60,59);}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(45,45,45);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y89{bottom:8.640000px;}
.y109{bottom:8.670000px;}
.y123{bottom:8.685000px;}
.yfb{bottom:9.000000px;}
.yb0{bottom:22.680000px;}
.yff{bottom:22.710000px;}
.yb8{bottom:22.725000px;}
.y91{bottom:36.360000px;}
.yf8{bottom:36.390000px;}
.y122{bottom:36.405000px;}
.y87{bottom:36.720000px;}
.yb5{bottom:36.765000px;}
.y8e{bottom:50.040000px;}
.yaf{bottom:50.400000px;}
.yb2{bottom:50.430000px;}
.yb7{bottom:50.445000px;}
.y120{bottom:52.605000px;}
.y90{bottom:64.080000px;}
.yb3{bottom:64.110000px;}
.yae{bottom:64.125000px;}
.y88{bottom:64.440000px;}
.y104{bottom:64.470000px;}
.yb6{bottom:64.485000px;}
.y10{bottom:75.996000px;}
.y8d{bottom:78.120000px;}
.y8f{bottom:91.800000px;}
.y8b{bottom:92.160000px;}
.y94{bottom:92.190000px;}
.y127{bottom:92.205000px;}
.yf{bottom:95.076000px;}
.ye{bottom:113.796000px;}
.y92{bottom:119.550000px;}
.y96{bottom:119.910000px;}
.y126{bottom:119.925000px;}
.yd{bottom:132.876000px;}
.y95{bottom:147.630000px;}
.yc{bottom:151.950000px;}
.y10c{bottom:168.510000px;}
.y97{bottom:175.350000px;}
.y167{bottom:179.310000px;}
.yd1{bottom:180.750000px;}
.yb4{bottom:181.830000px;}
.y155{bottom:186.150000px;}
.y13c{bottom:187.590000px;}
.y11f{bottom:193.350000px;}
.y10b{bottom:197.715000px;}
.ye7{bottom:204.555000px;}
.y166{bottom:207.075000px;}
.yd0{bottom:208.515000px;}
.y154{bottom:213.915000px;}
.yf6{bottom:216.795000px;}
.ya5{bottom:220.035000px;}
.y76{bottom:221.475000px;}
.y60{bottom:224.355000px;}
.y13b{bottom:224.715000px;}
.y8a{bottom:227.235000px;}
.y2a{bottom:229.755000px;}
.ye6{bottom:232.275000px;}
.y165{bottom:234.795000px;}
.ycf{bottom:236.235000px;}
.y153{bottom:241.635000px;}
.yf5{bottom:244.875000px;}
.ya4{bottom:247.755000px;}
.y75{bottom:249.195000px;}
.y5f{bottom:252.075000px;}
.y13a{bottom:252.435000px;}
.y121{bottom:253.155000px;}
.y10a{bottom:256.395000px;}
.y29{bottom:257.475000px;}
.ye5{bottom:259.995000px;}
.y41{bottom:261.795000px;}
.y164{bottom:262.515000px;}
.yce{bottom:264.315000px;}
.y152{bottom:269.355000px;}
.yb1{bottom:269.715000px;}
.ya3{bottom:275.475000px;}
.y74{bottom:277.275000px;}
.y5e{bottom:279.795000px;}
.y28{bottom:285.195000px;}
.yf4{bottom:286.275000px;}
.ye4{bottom:288.075000px;}
.y139{bottom:289.515000px;}
.y40{bottom:289.875000px;}
.y163{bottom:290.235000px;}
.ycd{bottom:292.035000px;}
.y4f{bottom:295.635000px;}
.y151{bottom:297.075000px;}
.ya2{bottom:303.555000px;}
.y73{bottom:305.355000px;}
.y5d{bottom:307.515000px;}
.y27{bottom:312.915000px;}
.y108{bottom:313.635000px;}
.yf3{bottom:314.355000px;}
.ye3{bottom:316.155000px;}
.y138{bottom:317.235000px;}
.y3f{bottom:317.595000px;}
.y162{bottom:318.315000px;}
.ycc{bottom:319.755000px;}
.y11e{bottom:321.585000px;}
.y4e{bottom:323.385000px;}
.y150{bottom:324.825000px;}
.ya1{bottom:331.665000px;}
.y72{bottom:333.105000px;}
.y5c{bottom:335.625000px;}
.y26{bottom:340.665000px;}
.yf2{bottom:342.465000px;}
.y107{bottom:342.825000px;}
.y86{bottom:343.185000px;}
.ye2{bottom:343.905000px;}
.y3e{bottom:345.345000px;}
.y161{bottom:346.065000px;}
.ycb{bottom:347.505000px;}
.y4d{bottom:351.105000px;}
.y14f{bottom:352.905000px;}
.ya0{bottom:359.385000px;}
.y11d{bottom:359.745000px;}
.y71{bottom:361.185000px;}
.y5b{bottom:363.345000px;}
.y137{bottom:365.865000px;}
.y25{bottom:368.385000px;}
.yf1{bottom:370.185000px;}
.ye1{bottom:371.625000px;}
.y3d{bottom:373.065000px;}
.y160{bottom:373.785000px;}
.yca{bottom:375.225000px;}
.y4c{bottom:378.825000px;}
.y14e{bottom:380.625000px;}
.yad{bottom:385.305000px;}
.y9f{bottom:387.465000px;}
.y70{bottom:388.905000px;}
.y5a{bottom:391.065000px;}
.y136{bottom:393.585000px;}
.y24{bottom:396.465000px;}
.yf0{bottom:397.905000px;}
.ye0{bottom:399.345000px;}
.y106{bottom:400.065000px;}
.y3c{bottom:400.785000px;}
.y15f{bottom:401.505000px;}
.yc9{bottom:403.305000px;}
.y4b{bottom:406.545000px;}
.y14d{bottom:408.345000px;}
.y9e{bottom:415.185000px;}
.y6f{bottom:416.625000px;}
.y59{bottom:418.785000px;}
.y12c{bottom:419.505000px;}
.y135{bottom:421.305000px;}
.y23{bottom:424.185000px;}
.yef{bottom:425.985000px;}
.ydf{bottom:427.065000px;}
.y3b{bottom:428.505000px;}
.y15e{bottom:429.225000px;}
.yc8{bottom:431.025000px;}
.y4a{bottom:434.265000px;}
.y14c{bottom:436.065000px;}
.y85{bottom:440.025000px;}
.y9d{bottom:442.905000px;}
.y6e{bottom:444.705000px;}
.y58{bottom:446.550000px;}
.y134{bottom:449.430000px;}
.y22{bottom:451.950000px;}
.yee{bottom:453.750000px;}
.yde{bottom:455.190000px;}
.y3a{bottom:456.270000px;}
.y11c{bottom:456.630000px;}
.y15d{bottom:456.990000px;}
.yc7{bottom:459.150000px;}
.y49{bottom:462.750000px;}
.y14b{bottom:463.830000px;}
.y84{bottom:468.150000px;}
.y9c{bottom:470.670000px;}
.y6d{bottom:472.470000px;}
.yac{bottom:473.190000px;}
.y57{bottom:474.270000px;}
.y133{bottom:477.150000px;}
.y21{bottom:479.670000px;}
.yed{bottom:481.470000px;}
.ydd{bottom:482.910000px;}
.y11b{bottom:484.350000px;}
.y15c{bottom:484.710000px;}
.y105{bottom:485.070000px;}
.y48{bottom:490.470000px;}
.y14a{bottom:491.550000px;}
.yc6{bottom:496.590000px;}
.y9b{bottom:498.750000px;}
.y6c{bottom:500.550000px;}
.y56{bottom:501.990000px;}
.y39{bottom:505.230000px;}
.y12b{bottom:507.030000px;}
.y20{bottom:507.390000px;}
.yec{bottom:509.190000px;}
.y83{bottom:509.910000px;}
.ydc{bottom:510.630000px;}
.y11a{bottom:512.430000px;}
.y15b{bottom:512.790000px;}
.y103{bottom:514.230000px;}
.y47{bottom:518.190000px;}
.y149{bottom:519.270000px;}
.yc5{bottom:525.390000px;}
.y132{bottom:525.750000px;}
.y9a{bottom:526.830000px;}
.y6b{bottom:528.270000px;}
.y55{bottom:529.710000px;}
.y38{bottom:532.950000px;}
.y1f{bottom:535.110000px;}
.yeb{bottom:537.270000px;}
.ydb{bottom:538.710000px;}
.y82{bottom:539.430000px;}
.y119{bottom:540.150000px;}
.y15a{bottom:540.510000px;}
.y46{bottom:545.910000px;}
.y148{bottom:547.350000px;}
.yc4{bottom:553.110000px;}
.y131{bottom:553.470000px;}
.y99{bottom:554.550000px;}
.y6a{bottom:556.350000px;}
.y54{bottom:558.150000px;}
.y1e{bottom:562.830000px;}
.yea{bottom:564.990000px;}
.yda{bottom:566.430000px;}
.y81{bottom:567.510000px;}
.y118{bottom:567.870000px;}
.y159{bottom:568.230000px;}
.y45{bottom:573.660000px;}
.y147{bottom:575.100000px;}
.yc3{bottom:580.860000px;}
.y130{bottom:581.220000px;}
.y37{bottom:581.580000px;}
.y69{bottom:584.100000px;}
.y53{bottom:585.900000px;}
.yd9{bottom:594.180000px;}
.y12a{bottom:594.540000px;}
.y80{bottom:595.260000px;}
.y117{bottom:595.620000px;}
.y158{bottom:595.980000px;}
.yab{bottom:597.420000px;}
.y102{bottom:599.220000px;}
.y44{bottom:601.380000px;}
.y146{bottom:602.820000px;}
.yc2{bottom:608.580000px;}
.y12f{bottom:609.300000px;}
.y36{bottom:609.660000px;}
.y1d{bottom:611.460000px;}
.y68{bottom:611.820000px;}
.y98{bottom:613.980000px;}
.yd8{bottom:621.900000px;}
.y7f{bottom:622.980000px;}
.y116{bottom:623.340000px;}
.y52{bottom:623.700000px;}
.y101{bottom:628.740000px;}
.y145{bottom:630.540000px;}
.y93{bottom:633.060000px;}
.yaa{bottom:635.220000px;}
.yc1{bottom:636.300000px;}
.y35{bottom:637.380000px;}
.y1c{bottom:639.540000px;}
.y43{bottom:648.180000px;}
.yd7{bottom:649.980000px;}
.y7e{bottom:650.700000px;}
.y115{bottom:651.060000px;}
.y157{bottom:651.420000px;}
.y100{bottom:657.900000px;}
.y144{bottom:658.260000px;}
.y51{bottom:661.860000px;}
.yc0{bottom:664.380000px;}
.y34{bottom:665.100000px;}
.y1b{bottom:667.620000px;}
.y42{bottom:676.260000px;}
.ya9{bottom:676.620000px;}
.yd6{bottom:677.700000px;}
.y7d{bottom:678.420000px;}
.y114{bottom:678.780000px;}
.y156{bottom:679.140000px;}
.y12e{bottom:685.620000px;}
.y143{bottom:685.980000px;}
.yfe{bottom:687.420000px;}
.ybf{bottom:692.460000px;}
.y33{bottom:692.820000px;}
.y50{bottom:694.620000px;}
.y1a{bottom:695.700000px;}
.ya8{bottom:704.370000px;}
.yd5{bottom:705.450000px;}
.y7c{bottom:706.170000px;}
.y113{bottom:707.250000px;}
.y129{bottom:709.770000px;}
.y12d{bottom:713.730000px;}
.ybe{bottom:720.210000px;}
.y32{bottom:720.570000px;}
.y67{bottom:723.450000px;}
.y19{bottom:723.810000px;}
.ya7{bottom:732.450000px;}
.yd4{bottom:733.890000px;}
.y7b{bottom:734.250000px;}
.ye9{bottom:734.610000px;}
.y112{bottom:734.970000px;}
.y142{bottom:741.810000px;}
.yfd{bottom:744.330000px;}
.ybd{bottom:747.930000px;}
.y31{bottom:748.290000px;}
.y66{bottom:751.530000px;}
.y18{bottom:751.890000px;}
.yd3{bottom:761.610000px;}
.y7a{bottom:761.970000px;}
.ye8{bottom:762.330000px;}
.y111{bottom:762.690000px;}
.y128{bottom:769.170000px;}
.y141{bottom:769.530000px;}
.yfc{bottom:773.850000px;}
.ybc{bottom:775.650000px;}
.y30{bottom:776.010000px;}
.y65{bottom:779.250000px;}
.y17{bottom:779.970000px;}
.y16c{bottom:780.330000px;}
.y79{bottom:789.690000px;}
.ya6{bottom:790.050000px;}
.y110{bottom:790.410000px;}
.y140{bottom:797.250000px;}
.y125{bottom:801.210000px;}
.yfa{bottom:803.010000px;}
.ybb{bottom:803.370000px;}
.y2f{bottom:804.090000px;}
.y64{bottom:806.970000px;}
.y16{bottom:807.690000px;}
.y16b{bottom:808.410000px;}
.yd2{bottom:817.410000px;}
.y78{bottom:817.770000px;}
.y10f{bottom:818.130000px;}
.y13f{bottom:825.015000px;}
.y8c{bottom:832.575000px;}
.y63{bottom:834.735000px;}
.y15{bottom:835.455000px;}
.y16a{bottom:836.535000px;}
.yba{bottom:841.215000px;}
.y77{bottom:845.535000px;}
.y10e{bottom:845.895000px;}
.y2e{bottom:852.375000px;}
.y13e{bottom:852.735000px;}
.yb9{bottom:860.655000px;}
.y169{bottom:864.615000px;}
.y62{bottom:872.535000px;}
.y14{bottom:873.255000px;}
.y10d{bottom:873.615000px;}
.y13d{bottom:880.815000px;}
.yf9{bottom:889.815000px;}
.y168{bottom:892.695000px;}
.y61{bottom:900.975000px;}
.y13{bottom:901.335000px;}
.y2d{bottom:901.695000px;}
.yf7{bottom:918.975000px;}
.y12{bottom:929.055000px;}
.y2c{bottom:929.415000px;}
.y124{bottom:944.175000px;}
.y11{bottom:956.805000px;}
.y2b{bottom:957.165000px;}
.yb{bottom:980.205000px;}
.ya{bottom:999.285000px;}
.y9{bottom:1018.005000px;}
.y8{bottom:1055.805000px;}
.y7{bottom:1094.010000px;}
.y6{bottom:1112.730000px;}
.y5{bottom:1131.450000px;}
.y4{bottom:1150.530000px;}
.y3{bottom:1169.610000px;}
.y2{bottom:1188.690000px;}
.y1{bottom:1232.640000px;}
.h15{height:27.720000px;}
.h1a{height:27.756000px;}
.h18{height:28.080000px;}
.h17{height:28.116000px;}
.h16{height:55.440000px;}
.h14{height:55.476000px;}
.h19{height:55.800000px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h4{height:66.757500px;}
.h9{height:68.838750px;}
.h6{height:72.223594px;}
.ha{height:73.610156px;}
.h8{height:81.929531px;}
.h7{height:81.970312px;}
.h12{height:83.196000px;}
.hc{height:83.520000px;}
.h13{height:83.556000px;}
.hb{height:83.944688px;}
.h10{height:84.124688px;}
.h2{height:84.172500px;}
.h11{height:110.916000px;}
.hd{height:111.276000px;}
.h1b{height:115.236000px;}
.he{height:138.636000px;}
.h1c{height:138.996000px;}
.hf{height:194.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:108.036000px;}
.we{width:119.556000px;}
.wf{width:119.592000px;}
.w10{width:119.916000px;}
.w8{width:124.272000px;}
.w3{width:143.712000px;}
.w6{width:191.235000px;}
.w4{width:231.555000px;}
.wb{width:234.825000px;}
.wa{width:289.185000px;}
.w5{width:323.430000px;}
.w7{width:384.270000px;}
.w9{width:412.020000px;}
.wc{width:468.180000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x22{left:1.080000px;}
.x23{left:4.680000px;}
.x39{left:6.840000px;}
.x4f{left:8.280000px;}
.x2f{left:10.110000px;}
.x4d{left:12.960000px;}
.x1d{left:14.040000px;}
.x43{left:15.480000px;}
.x4e{left:17.640000px;}
.x49{left:21.600000px;}
.x3a{left:23.040000px;}
.x30{left:29.190000px;}
.x24{left:36.390000px;}
.x2a{left:39.279000px;}
.x1b{left:45.759000px;}
.x37{left:47.880000px;}
.x40{left:49.680000px;}
.x31{left:51.510000px;}
.x41{left:54.000000px;}
.x48{left:63.030000px;}
.x2b{left:68.079000px;}
.x20{left:79.230000px;}
.x46{left:84.639000px;}
.x35{left:87.519000px;}
.x2d{left:93.285000px;}
.x42{left:95.805000px;}
.x38{left:103.365000px;}
.x1f{left:104.790000px;}
.x50{left:106.235987px;}
.x3e{left:107.685000px;}
.x3f{left:110.205000px;}
.x3d{left:113.085000px;}
.x3c{left:118.125000px;}
.x3b{left:123.525000px;}
.x45{left:124.956000px;}
.x1a{left:126.396000px;}
.x1{left:127.475987px;}
.x21{left:129.315000px;}
.x9{left:130.715987px;}
.x51{left:137.555987px;}
.xd{left:158.114987px;}
.x25{left:159.554987px;}
.x27{left:160.634987px;}
.x26{left:162.074987px;}
.x8{left:165.674987px;}
.x18{left:184.034987px;}
.xc{left:190.514987px;}
.x10{left:211.394987px;}
.xf{left:212.834987px;}
.x16{left:213.914987px;}
.x29{left:224.714987px;}
.x44{left:234.824987px;}
.x19{left:255.704987px;}
.x5{left:270.104987px;}
.x1c{left:271.185000px;}
.x14{left:276.584987px;}
.xe{left:302.504987px;}
.x2c{left:317.985000px;}
.x32{left:319.784987px;}
.x4{left:324.104987px;}
.x34{left:337.469987px;}
.x6{left:344.309987px;}
.x47{left:360.150000px;}
.x2{left:364.829987px;}
.x17{left:373.469987px;}
.x3{left:382.469987px;}
.x12{left:407.669987px;}
.xa{left:436.859987px;}
.x4a{left:468.540000px;}
.x33{left:469.979987px;}
.x7{left:474.299987px;}
.xb{left:475.739987px;}
.x11{left:491.219987px;}
.x1e{left:503.460000px;}
.x36{left:538.410000px;}
.x4b{left:588.450000px;}
.x28{left:701.894987px;}
.x2e{left:702.975000px;}
.x4c{left:708.405000px;}
.x13{left:818.249987px;}
.x15{left:838.409987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v2{vertical-align:-68.000000pt;}
.v5{vertical-align:-34.560000pt;}
.v6{vertical-align:-26.880000pt;}
.v4{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.ls30{letter-spacing:-1.440000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.460800pt;}
.ls8{letter-spacing:-0.402133pt;}
.ls2f{letter-spacing:-0.158933pt;}
.ls29{letter-spacing:-0.038400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.317440pt;}
.ls1c{letter-spacing:0.366080pt;}
.ls4{letter-spacing:0.593920pt;}
.ls2d{letter-spacing:0.611840pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.650667pt;}
.ls17{letter-spacing:0.746667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.837333pt;}
.ls19{letter-spacing:0.878080pt;}
.ls25{letter-spacing:1.038080pt;}
.ls2a{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls27{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:3.200000pt;}
.lsc{letter-spacing:4.480000pt;}
.ls26{letter-spacing:7.040000pt;}
.ls16{letter-spacing:8.320000pt;}
.ls20{letter-spacing:9.600000pt;}
.ls15{letter-spacing:12.160000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls2e{letter-spacing:14.826667pt;}
.ls12{letter-spacing:16.000000pt;}
.ls14{letter-spacing:18.560000pt;}
.lsf{letter-spacing:19.840000pt;}
.ls11{letter-spacing:21.120000pt;}
.ls1b{letter-spacing:24.960000pt;}
.lse{letter-spacing:26.240000pt;}
.ls5{letter-spacing:28.800000pt;}
.ls18{letter-spacing:30.240000pt;}
.ls6{letter-spacing:35.200000pt;}
.ls28{letter-spacing:39.040000pt;}
.ls23{letter-spacing:40.320000pt;}
.ls22{letter-spacing:40.426667pt;}
.ls2b{letter-spacing:56.960000pt;}
.ls2c{letter-spacing:82.560000pt;}
.ls1{letter-spacing:205.440000pt;}
.ls0{letter-spacing:400.245333pt;}
.ls2{letter-spacing:1119.872000pt;}
.ws6{word-spacing:-19.840000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.521600pt;}
.ws7{word-spacing:-18.401067pt;}
.ws2{word-spacing:-18.157867pt;}
.ws8{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws3{word-spacing:0.000000pt;}
._41{margin-left:-4.347733pt;}
._33{margin-left:-3.447467pt;}
._3{margin-left:-2.269013pt;}
._2{margin-left:-1.354240pt;}
._0{width:1.336320pt;}
._1{width:2.583893pt;}
._8{width:3.959467pt;}
._4{width:5.147307pt;}
._7{width:6.062933pt;}
._9{width:7.424000pt;}
._d{width:8.463360pt;}
._1d{width:10.096640pt;}
._25{width:11.561387pt;}
._20{width:12.917760pt;}
._1f{width:14.693120pt;}
._1c{width:16.481280pt;}
._1b{width:17.446400pt;}
._23{width:19.525120pt;}
._e{width:20.935680pt;}
._2e{width:21.844480pt;}
._18{width:22.940160pt;}
._17{width:23.831040pt;}
._19{width:24.721920pt;}
._1a{width:25.612800pt;}
._16{width:27.468800pt;}
._b{width:28.582400pt;}
._c{width:29.547520pt;}
._47{width:30.465707pt;}
._a{width:31.403520pt;}
._2c{width:32.888320pt;}
._f{width:33.853440pt;}
._10{width:34.744320pt;}
._11{width:35.635200pt;}
._15{width:36.915200pt;}
._30{width:38.233600pt;}
._31{width:39.718400pt;}
._3f{width:40.849920pt;}
._32{width:41.797120pt;}
._21{width:43.727360pt;}
._22{width:44.710400pt;}
._2f{width:45.639680pt;}
._2b{width:46.845440pt;}
._2a{width:48.256000pt;}
._24{width:49.889280pt;}
._1e{width:51.743147pt;}
._26{width:52.933120pt;}
._13{width:56.422400pt;}
._12{width:57.610240pt;}
._14{width:58.519040pt;}
._5{width:60.262400pt;}
._6{width:61.360640pt;}
._48{width:62.435840pt;}
._2d{width:63.475200pt;}
._3d{width:65.182720pt;}
._42{width:66.444800pt;}
._4c{width:72.235520pt;}
._40{width:73.133227pt;}
._29{width:74.497707pt;}
._27{width:75.427840pt;}
._28{width:76.764160pt;}
._4e{width:82.498560pt;}
._4f{width:83.653120pt;}
._49{width:89.838080pt;}
._4a{width:90.731520pt;}
._34{width:96.808960pt;}
._35{width:97.848320pt;}
._3b{width:103.823360pt;}
._3c{width:104.975360pt;}
._4d{width:108.835840pt;}
._4b{width:110.617600pt;}
._37{width:121.011200pt;}
._3e{width:144.785920pt;}
._45{width:151.301120pt;}
._43{width:154.140160pt;}
._50{width:196.605440pt;}
._39{width:231.424000pt;}
._38{width:236.974080pt;}
._46{width:249.000960pt;}
._44{width:290.204160pt;}
._36{width:424.991573pt;}
._3a{width:437.347840pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:7.680000pt;}
.y109{bottom:7.706667pt;}
.y123{bottom:7.720000pt;}
.yfb{bottom:8.000000pt;}
.yb0{bottom:20.160000pt;}
.yff{bottom:20.186667pt;}
.yb8{bottom:20.200000pt;}
.y91{bottom:32.320000pt;}
.yf8{bottom:32.346667pt;}
.y122{bottom:32.360000pt;}
.y87{bottom:32.640000pt;}
.yb5{bottom:32.680000pt;}
.y8e{bottom:44.480000pt;}
.yaf{bottom:44.800000pt;}
.yb2{bottom:44.826667pt;}
.yb7{bottom:44.840000pt;}
.y120{bottom:46.760000pt;}
.y90{bottom:56.960000pt;}
.yb3{bottom:56.986667pt;}
.yae{bottom:57.000000pt;}
.y88{bottom:57.280000pt;}
.y104{bottom:57.306667pt;}
.yb6{bottom:57.320000pt;}
.y10{bottom:67.552000pt;}
.y8d{bottom:69.440000pt;}
.y8f{bottom:81.600000pt;}
.y8b{bottom:81.920000pt;}
.y94{bottom:81.946667pt;}
.y127{bottom:81.960000pt;}
.yf{bottom:84.512000pt;}
.ye{bottom:101.152000pt;}
.y92{bottom:106.266667pt;}
.y96{bottom:106.586667pt;}
.y126{bottom:106.600000pt;}
.yd{bottom:118.112000pt;}
.y95{bottom:131.226667pt;}
.yc{bottom:135.066667pt;}
.y10c{bottom:149.786667pt;}
.y97{bottom:155.866667pt;}
.y167{bottom:159.386667pt;}
.yd1{bottom:160.666667pt;}
.yb4{bottom:161.626667pt;}
.y155{bottom:165.466667pt;}
.y13c{bottom:166.746667pt;}
.y11f{bottom:171.866667pt;}
.y10b{bottom:175.746667pt;}
.ye7{bottom:181.826667pt;}
.y166{bottom:184.066667pt;}
.yd0{bottom:185.346667pt;}
.y154{bottom:190.146667pt;}
.yf6{bottom:192.706667pt;}
.ya5{bottom:195.586667pt;}
.y76{bottom:196.866667pt;}
.y60{bottom:199.426667pt;}
.y13b{bottom:199.746667pt;}
.y8a{bottom:201.986667pt;}
.y2a{bottom:204.226667pt;}
.ye6{bottom:206.466667pt;}
.y165{bottom:208.706667pt;}
.ycf{bottom:209.986667pt;}
.y153{bottom:214.786667pt;}
.yf5{bottom:217.666667pt;}
.ya4{bottom:220.226667pt;}
.y75{bottom:221.506667pt;}
.y5f{bottom:224.066667pt;}
.y13a{bottom:224.386667pt;}
.y121{bottom:225.026667pt;}
.y10a{bottom:227.906667pt;}
.y29{bottom:228.866667pt;}
.ye5{bottom:231.106667pt;}
.y41{bottom:232.706667pt;}
.y164{bottom:233.346667pt;}
.yce{bottom:234.946667pt;}
.y152{bottom:239.426667pt;}
.yb1{bottom:239.746667pt;}
.ya3{bottom:244.866667pt;}
.y74{bottom:246.466667pt;}
.y5e{bottom:248.706667pt;}
.y28{bottom:253.506667pt;}
.yf4{bottom:254.466667pt;}
.ye4{bottom:256.066667pt;}
.y139{bottom:257.346667pt;}
.y40{bottom:257.666667pt;}
.y163{bottom:257.986667pt;}
.ycd{bottom:259.586667pt;}
.y4f{bottom:262.786667pt;}
.y151{bottom:264.066667pt;}
.ya2{bottom:269.826667pt;}
.y73{bottom:271.426667pt;}
.y5d{bottom:273.346667pt;}
.y27{bottom:278.146667pt;}
.y108{bottom:278.786667pt;}
.yf3{bottom:279.426667pt;}
.ye3{bottom:281.026667pt;}
.y138{bottom:281.986667pt;}
.y3f{bottom:282.306667pt;}
.y162{bottom:282.946667pt;}
.ycc{bottom:284.226667pt;}
.y11e{bottom:285.853333pt;}
.y4e{bottom:287.453333pt;}
.y150{bottom:288.733333pt;}
.ya1{bottom:294.813333pt;}
.y72{bottom:296.093333pt;}
.y5c{bottom:298.333333pt;}
.y26{bottom:302.813333pt;}
.yf2{bottom:304.413333pt;}
.y107{bottom:304.733333pt;}
.y86{bottom:305.053333pt;}
.ye2{bottom:305.693333pt;}
.y3e{bottom:306.973333pt;}
.y161{bottom:307.613333pt;}
.ycb{bottom:308.893333pt;}
.y4d{bottom:312.093333pt;}
.y14f{bottom:313.693333pt;}
.ya0{bottom:319.453333pt;}
.y11d{bottom:319.773333pt;}
.y71{bottom:321.053333pt;}
.y5b{bottom:322.973333pt;}
.y137{bottom:325.213333pt;}
.y25{bottom:327.453333pt;}
.yf1{bottom:329.053333pt;}
.ye1{bottom:330.333333pt;}
.y3d{bottom:331.613333pt;}
.y160{bottom:332.253333pt;}
.yca{bottom:333.533333pt;}
.y4c{bottom:336.733333pt;}
.y14e{bottom:338.333333pt;}
.yad{bottom:342.493333pt;}
.y9f{bottom:344.413333pt;}
.y70{bottom:345.693333pt;}
.y5a{bottom:347.613333pt;}
.y136{bottom:349.853333pt;}
.y24{bottom:352.413333pt;}
.yf0{bottom:353.693333pt;}
.ye0{bottom:354.973333pt;}
.y106{bottom:355.613333pt;}
.y3c{bottom:356.253333pt;}
.y15f{bottom:356.893333pt;}
.yc9{bottom:358.493333pt;}
.y4b{bottom:361.373333pt;}
.y14d{bottom:362.973333pt;}
.y9e{bottom:369.053333pt;}
.y6f{bottom:370.333333pt;}
.y59{bottom:372.253333pt;}
.y12c{bottom:372.893333pt;}
.y135{bottom:374.493333pt;}
.y23{bottom:377.053333pt;}
.yef{bottom:378.653333pt;}
.ydf{bottom:379.613333pt;}
.y3b{bottom:380.893333pt;}
.y15e{bottom:381.533333pt;}
.yc8{bottom:383.133333pt;}
.y4a{bottom:386.013333pt;}
.y14c{bottom:387.613333pt;}
.y85{bottom:391.133333pt;}
.y9d{bottom:393.693333pt;}
.y6e{bottom:395.293333pt;}
.y58{bottom:396.933333pt;}
.y134{bottom:399.493333pt;}
.y22{bottom:401.733333pt;}
.yee{bottom:403.333333pt;}
.yde{bottom:404.613333pt;}
.y3a{bottom:405.573333pt;}
.y11c{bottom:405.893333pt;}
.y15d{bottom:406.213333pt;}
.yc7{bottom:408.133333pt;}
.y49{bottom:411.333333pt;}
.y14b{bottom:412.293333pt;}
.y84{bottom:416.133333pt;}
.y9c{bottom:418.373333pt;}
.y6d{bottom:419.973333pt;}
.yac{bottom:420.613333pt;}
.y57{bottom:421.573333pt;}
.y133{bottom:424.133333pt;}
.y21{bottom:426.373333pt;}
.yed{bottom:427.973333pt;}
.ydd{bottom:429.253333pt;}
.y11b{bottom:430.533333pt;}
.y15c{bottom:430.853333pt;}
.y105{bottom:431.173333pt;}
.y48{bottom:435.973333pt;}
.y14a{bottom:436.933333pt;}
.yc6{bottom:441.413333pt;}
.y9b{bottom:443.333333pt;}
.y6c{bottom:444.933333pt;}
.y56{bottom:446.213333pt;}
.y39{bottom:449.093333pt;}
.y12b{bottom:450.693333pt;}
.y20{bottom:451.013333pt;}
.yec{bottom:452.613333pt;}
.y83{bottom:453.253333pt;}
.ydc{bottom:453.893333pt;}
.y11a{bottom:455.493333pt;}
.y15b{bottom:455.813333pt;}
.y103{bottom:457.093333pt;}
.y47{bottom:460.613333pt;}
.y149{bottom:461.573333pt;}
.yc5{bottom:467.013333pt;}
.y132{bottom:467.333333pt;}
.y9a{bottom:468.293333pt;}
.y6b{bottom:469.573333pt;}
.y55{bottom:470.853333pt;}
.y38{bottom:473.733333pt;}
.y1f{bottom:475.653333pt;}
.yeb{bottom:477.573333pt;}
.ydb{bottom:478.853333pt;}
.y82{bottom:479.493333pt;}
.y119{bottom:480.133333pt;}
.y15a{bottom:480.453333pt;}
.y46{bottom:485.253333pt;}
.y148{bottom:486.533333pt;}
.yc4{bottom:491.653333pt;}
.y131{bottom:491.973333pt;}
.y99{bottom:492.933333pt;}
.y6a{bottom:494.533333pt;}
.y54{bottom:496.133333pt;}
.y1e{bottom:500.293333pt;}
.yea{bottom:502.213333pt;}
.yda{bottom:503.493333pt;}
.y81{bottom:504.453333pt;}
.y118{bottom:504.773333pt;}
.y159{bottom:505.093333pt;}
.y45{bottom:509.920000pt;}
.y147{bottom:511.200000pt;}
.yc3{bottom:516.320000pt;}
.y130{bottom:516.640000pt;}
.y37{bottom:516.960000pt;}
.y69{bottom:519.200000pt;}
.y53{bottom:520.800000pt;}
.yd9{bottom:528.160000pt;}
.y12a{bottom:528.480000pt;}
.y80{bottom:529.120000pt;}
.y117{bottom:529.440000pt;}
.y158{bottom:529.760000pt;}
.yab{bottom:531.040000pt;}
.y102{bottom:532.640000pt;}
.y44{bottom:534.560000pt;}
.y146{bottom:535.840000pt;}
.yc2{bottom:540.960000pt;}
.y12f{bottom:541.600000pt;}
.y36{bottom:541.920000pt;}
.y1d{bottom:543.520000pt;}
.y68{bottom:543.840000pt;}
.y98{bottom:545.760000pt;}
.yd8{bottom:552.800000pt;}
.y7f{bottom:553.760000pt;}
.y116{bottom:554.080000pt;}
.y52{bottom:554.400000pt;}
.y101{bottom:558.880000pt;}
.y145{bottom:560.480000pt;}
.y93{bottom:562.720000pt;}
.yaa{bottom:564.640000pt;}
.yc1{bottom:565.600000pt;}
.y35{bottom:566.560000pt;}
.y1c{bottom:568.480000pt;}
.y43{bottom:576.160000pt;}
.yd7{bottom:577.760000pt;}
.y7e{bottom:578.400000pt;}
.y115{bottom:578.720000pt;}
.y157{bottom:579.040000pt;}
.y100{bottom:584.800000pt;}
.y144{bottom:585.120000pt;}
.y51{bottom:588.320000pt;}
.yc0{bottom:590.560000pt;}
.y34{bottom:591.200000pt;}
.y1b{bottom:593.440000pt;}
.y42{bottom:601.120000pt;}
.ya9{bottom:601.440000pt;}
.yd6{bottom:602.400000pt;}
.y7d{bottom:603.040000pt;}
.y114{bottom:603.360000pt;}
.y156{bottom:603.680000pt;}
.y12e{bottom:609.440000pt;}
.y143{bottom:609.760000pt;}
.yfe{bottom:611.040000pt;}
.ybf{bottom:615.520000pt;}
.y33{bottom:615.840000pt;}
.y50{bottom:617.440000pt;}
.y1a{bottom:618.400000pt;}
.ya8{bottom:626.106667pt;}
.yd5{bottom:627.066667pt;}
.y7c{bottom:627.706667pt;}
.y113{bottom:628.666667pt;}
.y129{bottom:630.906667pt;}
.y12d{bottom:634.426667pt;}
.ybe{bottom:640.186667pt;}
.y32{bottom:640.506667pt;}
.y67{bottom:643.066667pt;}
.y19{bottom:643.386667pt;}
.ya7{bottom:651.066667pt;}
.yd4{bottom:652.346667pt;}
.y7b{bottom:652.666667pt;}
.ye9{bottom:652.986667pt;}
.y112{bottom:653.306667pt;}
.y142{bottom:659.386667pt;}
.yfd{bottom:661.626667pt;}
.ybd{bottom:664.826667pt;}
.y31{bottom:665.146667pt;}
.y66{bottom:668.026667pt;}
.y18{bottom:668.346667pt;}
.yd3{bottom:676.986667pt;}
.y7a{bottom:677.306667pt;}
.ye8{bottom:677.626667pt;}
.y111{bottom:677.946667pt;}
.y128{bottom:683.706667pt;}
.y141{bottom:684.026667pt;}
.yfc{bottom:687.866667pt;}
.ybc{bottom:689.466667pt;}
.y30{bottom:689.786667pt;}
.y65{bottom:692.666667pt;}
.y17{bottom:693.306667pt;}
.y16c{bottom:693.626667pt;}
.y79{bottom:701.946667pt;}
.ya6{bottom:702.266667pt;}
.y110{bottom:702.586667pt;}
.y140{bottom:708.666667pt;}
.y125{bottom:712.186667pt;}
.yfa{bottom:713.786667pt;}
.ybb{bottom:714.106667pt;}
.y2f{bottom:714.746667pt;}
.y64{bottom:717.306667pt;}
.y16{bottom:717.946667pt;}
.y16b{bottom:718.586667pt;}
.yd2{bottom:726.586667pt;}
.y78{bottom:726.906667pt;}
.y10f{bottom:727.226667pt;}
.y13f{bottom:733.346667pt;}
.y8c{bottom:740.066667pt;}
.y63{bottom:741.986667pt;}
.y15{bottom:742.626667pt;}
.y16a{bottom:743.586667pt;}
.yba{bottom:747.746667pt;}
.y77{bottom:751.586667pt;}
.y10e{bottom:751.906667pt;}
.y2e{bottom:757.666667pt;}
.y13e{bottom:757.986667pt;}
.yb9{bottom:765.026667pt;}
.y169{bottom:768.546667pt;}
.y62{bottom:775.586667pt;}
.y14{bottom:776.226667pt;}
.y10d{bottom:776.546667pt;}
.y13d{bottom:782.946667pt;}
.yf9{bottom:790.946667pt;}
.y168{bottom:793.506667pt;}
.y61{bottom:800.866667pt;}
.y13{bottom:801.186667pt;}
.y2d{bottom:801.506667pt;}
.yf7{bottom:816.866667pt;}
.y12{bottom:825.826667pt;}
.y2c{bottom:826.146667pt;}
.y124{bottom:839.266667pt;}
.y11{bottom:850.493333pt;}
.y2b{bottom:850.813333pt;}
.yb{bottom:871.293333pt;}
.ya{bottom:888.253333pt;}
.y9{bottom:904.893333pt;}
.y8{bottom:938.493333pt;}
.y7{bottom:972.453333pt;}
.y6{bottom:989.093333pt;}
.y5{bottom:1005.733333pt;}
.y4{bottom:1022.693333pt;}
.y3{bottom:1039.653333pt;}
.y2{bottom:1056.613333pt;}
.y1{bottom:1095.680000pt;}
.h15{height:24.640000pt;}
.h1a{height:24.672000pt;}
.h18{height:24.960000pt;}
.h17{height:24.992000pt;}
.h16{height:49.280000pt;}
.h14{height:49.312000pt;}
.h19{height:49.600000pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h4{height:59.340000pt;}
.h9{height:61.190000pt;}
.h6{height:64.198750pt;}
.ha{height:65.431250pt;}
.h8{height:72.826250pt;}
.h7{height:72.862500pt;}
.h12{height:73.952000pt;}
.hc{height:74.240000pt;}
.h13{height:74.272000pt;}
.hb{height:74.617500pt;}
.h10{height:74.777500pt;}
.h2{height:74.820000pt;}
.h11{height:98.592000pt;}
.hd{height:98.912000pt;}
.h1b{height:102.432000pt;}
.he{height:123.232000pt;}
.h1c{height:123.552000pt;}
.hf{height:172.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:96.032000pt;}
.we{width:106.272000pt;}
.wf{width:106.304000pt;}
.w10{width:106.592000pt;}
.w8{width:110.464000pt;}
.w3{width:127.744000pt;}
.w6{width:169.986667pt;}
.w4{width:205.826667pt;}
.wb{width:208.733333pt;}
.wa{width:257.053333pt;}
.w5{width:287.493333pt;}
.w7{width:341.573333pt;}
.w9{width:366.240000pt;}
.wc{width:416.160000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x22{left:0.960000pt;}
.x23{left:4.160000pt;}
.x39{left:6.080000pt;}
.x4f{left:7.360000pt;}
.x2f{left:8.986667pt;}
.x4d{left:11.520000pt;}
.x1d{left:12.480000pt;}
.x43{left:13.760000pt;}
.x4e{left:15.680000pt;}
.x49{left:19.200000pt;}
.x3a{left:20.480000pt;}
.x30{left:25.946667pt;}
.x24{left:32.346667pt;}
.x2a{left:34.914667pt;}
.x1b{left:40.674667pt;}
.x37{left:42.560000pt;}
.x40{left:44.160000pt;}
.x31{left:45.786667pt;}
.x41{left:48.000000pt;}
.x48{left:56.026667pt;}
.x2b{left:60.514667pt;}
.x20{left:70.426667pt;}
.x46{left:75.234667pt;}
.x35{left:77.794667pt;}
.x2d{left:82.920000pt;}
.x42{left:85.160000pt;}
.x38{left:91.880000pt;}
.x1f{left:93.146667pt;}
.x50{left:94.431988pt;}
.x3e{left:95.720000pt;}
.x3f{left:97.960000pt;}
.x3d{left:100.520000pt;}
.x3c{left:105.000000pt;}
.x3b{left:109.800000pt;}
.x45{left:111.072000pt;}
.x1a{left:112.352000pt;}
.x1{left:113.311988pt;}
.x21{left:114.946667pt;}
.x9{left:116.191988pt;}
.x51{left:122.271988pt;}
.xd{left:140.546655pt;}
.x25{left:141.826655pt;}
.x27{left:142.786655pt;}
.x26{left:144.066655pt;}
.x8{left:147.266655pt;}
.x18{left:163.586655pt;}
.xc{left:169.346655pt;}
.x10{left:187.906655pt;}
.xf{left:189.186655pt;}
.x16{left:190.146655pt;}
.x29{left:199.746655pt;}
.x44{left:208.733322pt;}
.x19{left:227.293322pt;}
.x5{left:240.093322pt;}
.x1c{left:241.053333pt;}
.x14{left:245.853322pt;}
.xe{left:268.893322pt;}
.x2c{left:282.653333pt;}
.x32{left:284.253322pt;}
.x4{left:288.093322pt;}
.x34{left:299.973322pt;}
.x6{left:306.053322pt;}
.x47{left:320.133333pt;}
.x2{left:324.293322pt;}
.x17{left:331.973322pt;}
.x3{left:339.973322pt;}
.x12{left:362.373322pt;}
.xa{left:388.319988pt;}
.x4a{left:416.480000pt;}
.x33{left:417.759988pt;}
.x7{left:421.599988pt;}
.xb{left:422.879988pt;}
.x11{left:436.639988pt;}
.x1e{left:447.520000pt;}
.x36{left:478.586667pt;}
.x4b{left:523.066667pt;}
.x28{left:623.906655pt;}
.x2e{left:624.866667pt;}
.x4c{left:629.693333pt;}
.x13{left:727.333322pt;}
.x15{left:745.253322pt;}
}




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