
    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_d1e6d05fe991a46d70a3efd4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.187988;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_d8781ebf16f6536c9f839f1f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_456405ba3e4bf410f78fbde3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.187988;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_4be1775910cf9264f39e49a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_40c5a39c0e4c16b637c34029.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_b40e44ee5a65ea19ecdbf23a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_d3ccef6352c19698fd1a1720.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_32fd87feba9b5136036e640c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v3{vertical-align:23.760000px;}
.v4{vertical-align:30.240000px;}
.ls39{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.325200px;}
.lse{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.249000px;}
.ls21{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.207600px;}
.ls49{letter-spacing:-0.188400px;}
.ls2b{letter-spacing:-0.072000px;}
.ls2c{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.015840px;}
.ls20{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.063360px;}
.ls6{letter-spacing:0.063600px;}
.ls37{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.072600px;}
.ls2a{letter-spacing:0.108720px;}
.ls48{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.154800px;}
.lsa{letter-spacing:0.160800px;}
.ls3b{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.264000px;}
.ls44{letter-spacing:0.265200px;}
.lsc{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.298800px;}
.ls32{letter-spacing:0.314640px;}
.ls2e{letter-spacing:0.359280px;}
.ls2{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.487440px;}
.ls40{letter-spacing:0.504000px;}
.ls38{letter-spacing:0.505440px;}
.ls4b{letter-spacing:0.552960px;}
.ls46{letter-spacing:0.648000px;}
.ls30{letter-spacing:0.720000px;}
.ls43{letter-spacing:1.368000px;}
.ls1a{letter-spacing:1.656000px;}
.ls3a{letter-spacing:2.088000px;}
.ls3f{letter-spacing:2.376000px;}
.ls35{letter-spacing:2.808000px;}
.lsb{letter-spacing:3.528000px;}
.lsd{letter-spacing:3.816000px;}
.ls31{letter-spacing:4.105440px;}
.ls2d{letter-spacing:4.248000px;}
.ls27{letter-spacing:4.536000px;}
.ls17{letter-spacing:5.688000px;}
.ls16{letter-spacing:6.696000px;}
.ls29{letter-spacing:7.128000px;}
.ls3e{letter-spacing:7.416000px;}
.ls1{letter-spacing:8.407440px;}
.ls15{letter-spacing:8.568000px;}
.ls36{letter-spacing:8.856000px;}
.ls42{letter-spacing:9.288000px;}
.ls24{letter-spacing:10.728000px;}
.ls25{letter-spacing:11.448000px;}
.ls13{letter-spacing:12.168000px;}
.ls22{letter-spacing:13.068000px;}
.ls1e{letter-spacing:13.608000px;}
.ls4c{letter-spacing:14.328000px;}
.ls28{letter-spacing:15.048000px;}
.ls1c{letter-spacing:15.336000px;}
.ls26{letter-spacing:15.768000px;}
.ls1b{letter-spacing:16.488000px;}
.ls1f{letter-spacing:17.208000px;}
.ls3c{letter-spacing:19.368000px;}
.ls47{letter-spacing:23.688000px;}
.ls2f{letter-spacing:25.848000px;}
.ls41{letter-spacing:28.008000px;}
.ls45{letter-spacing:32.328000px;}
.ls12{letter-spacing:35.496000px;}
.ls10{letter-spacing:35.676000px;}
.ls11{letter-spacing:36.648000px;}
.ls4a{letter-spacing:243.288000px;}
.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;}
}
.ws17{word-spacing:-20.736000px;}
.ws1a{word-spacing:-20.448000px;}
.ws15{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.wsf{word-spacing:-20.231997px;}
.ws12{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.152000px;}
.ws3{word-spacing:-18.613440px;}
.ws4{word-spacing:-18.288240px;}
.wse{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.152560px;}
.ws7{word-spacing:-16.953360px;}
.ws6{word-spacing:-16.947360px;}
.ws14{word-spacing:-16.865160px;}
.ws0{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.432560px;}
.ws9{word-spacing:-16.135200px;}
.wsd{word-spacing:-14.760720px;}
.ws16{word-spacing:-14.328000px;}
.ws18{word-spacing:-11.999760px;}
.ws10{word-spacing:-11.734560px;}
.ws19{word-spacing:-11.546160px;}
.ws11{word-spacing:-10.314720px;}
.ws13{word-spacing:-10.116000px;}
.ws8{word-spacing:0.000000px;}
._d{margin-left:-5.079600px;}
._c{margin-left:-3.406320px;}
._8{margin-left:-2.390400px;}
._6{margin-left:-1.195200px;}
._0{width:1.314720px;}
._9{width:2.824080px;}
._b{width:4.063680px;}
._2{width:5.123520px;}
._1{width:6.215040px;}
._a{width:7.231440px;}
._7{width:8.270400px;}
._4{width:9.740880px;}
._5{width:11.095680px;}
._e{width:12.960000px;}
._3{width:13.983840px;}
._13{width:15.536160px;}
._18{width:16.646880px;}
._11{width:18.288000px;}
._20{width:19.368960px;}
._10{width:21.581280px;}
._28{width:22.597920px;}
._14{width:23.630400px;}
._f{width:25.128000px;}
._1a{width:27.072000px;}
._1b{width:28.205280px;}
._21{width:29.533920px;}
._19{width:31.296000px;}
._1c{width:32.568480px;}
._17{width:33.624000px;}
._1d{width:34.824480px;}
._12{width:35.832000px;}
._2d{width:36.888000px;}
._15{width:40.104000px;}
._16{width:41.328000px;}
._1f{width:42.408000px;}
._2a{width:43.416000px;}
._29{width:44.712000px;}
._22{width:47.088000px;}
._1e{width:58.824000px;}
._25{width:75.653280px;}
._26{width:77.365440px;}
._27{width:78.596640px;}
._23{width:111.600000px;}
._24{width:112.788000px;}
._2c{width:242.976000px;}
._2b{width:244.188000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.170000px;}
.y105{bottom:19.254000px;}
.yb2{bottom:19.260000px;}
.ydc{bottom:19.290000px;}
.yff{bottom:19.305000px;}
.yb0{bottom:19.440000px;}
.y4{bottom:25.590000px;}
.yaf{bottom:44.280000px;}
.y3{bottom:47.190000px;}
.y2{bottom:68.610000px;}
.yae{bottom:69.120000px;}
.y34{bottom:76.176000px;}
.y11{bottom:93.456000px;}
.y33{bottom:95.256000px;}
.y10{bottom:113.616000px;}
.yb9{bottom:113.976000px;}
.y8b{bottom:116.136000px;}
.y93{bottom:116.496000px;}
.y95{bottom:120.816000px;}
.y92{bottom:121.716000px;}
.yf2{bottom:122.256000px;}
.y5e{bottom:125.676000px;}
.y8f{bottom:128.196000px;}
.yf{bottom:132.696000px;}
.y8a{bottom:137.736000px;}
.y104{bottom:138.996000px;}
.y91{bottom:139.176000px;}
.y157{bottom:142.416000px;}
.yf1{bottom:147.996000px;}
.y126{bottom:149.796000px;}
.yda{bottom:151.410000px;}
.y5d{bottom:151.590000px;}
.y137{bottom:152.850000px;}
.ye{bottom:153.570000px;}
.y8e{bottom:154.110000px;}
.y94{bottom:156.450000px;}
.y89{bottom:159.150000px;}
.y88{bottom:165.090000px;}
.y156{bottom:168.150000px;}
.y125{bottom:171.210000px;}
.yf0{bottom:173.910000px;}
.yd{bottom:175.170000px;}
.y103{bottom:176.790000px;}
.yd9{bottom:177.150000px;}
.y5c{bottom:177.330000px;}
.y136{bottom:178.770000px;}
.y8d{bottom:179.850000px;}
.y87{bottom:180.750000px;}
.y86{bottom:186.690000px;}
.yb8{bottom:189.390000px;}
.y124{bottom:193.890000px;}
.yc{bottom:196.590000px;}
.yef{bottom:199.650000px;}
.yd8{bottom:203.070000px;}
.y5b{bottom:203.250000px;}
.y85{bottom:203.430000px;}
.y8c{bottom:205.770000px;}
.y135{bottom:209.010000px;}
.y102{bottom:214.410000px;}
.yb{bottom:218.190000px;}
.y155{bottom:224.310000px;}
.yee{bottom:225.570000px;}
.yb7{bottom:227.010000px;}
.yd7{bottom:228.810000px;}
.y5a{bottom:228.990000px;}
.y84{bottom:231.510000px;}
.y123{bottom:233.130000px;}
.y134{bottom:234.930000px;}
.ya{bottom:239.790000px;}
.y154{bottom:250.050000px;}
.yed{bottom:251.310000px;}
.y101{bottom:252.030000px;}
.yd6{bottom:254.730000px;}
.y59{bottom:254.910000px;}
.y83{bottom:257.430000px;}
.y122{bottom:258.870000px;}
.y133{bottom:260.670000px;}
.y9{bottom:261.210000px;}
.yb6{bottom:264.630000px;}
.y153{bottom:275.970000px;}
.yec{bottom:277.230000px;}
.yd5{bottom:280.470000px;}
.y58{bottom:280.650000px;}
.y8{bottom:282.810000px;}
.y82{bottom:283.170000px;}
.y121{bottom:284.790000px;}
.y100{bottom:289.650000px;}
.y132{bottom:291.090000px;}
.y152{bottom:301.710000px;}
.yb5{bottom:302.430000px;}
.yd4{bottom:306.390000px;}
.y57{bottom:306.570000px;}
.y81{bottom:309.090000px;}
.y120{bottom:310.530000px;}
.yeb{bottom:314.130000px;}
.y131{bottom:316.830000px;}
.y7{bottom:321.510000px;}
.yfe{bottom:327.450000px;}
.ye1{bottom:327.630000px;}
.yd3{bottom:332.130000px;}
.y56{bottom:332.310000px;}
.y80{bottom:334.830000px;}
.y11f{bottom:336.495000px;}
.yb4{bottom:340.095000px;}
.y130{bottom:342.615000px;}
.y32{bottom:350.715000px;}
.y151{bottom:357.915000px;}
.yd2{bottom:358.095000px;}
.y55{bottom:358.275000px;}
.y7f{bottom:360.615000px;}
.ye0{bottom:361.155000px;}
.y11e{bottom:362.235000px;}
.yfd{bottom:365.115000px;}
.y167{bottom:371.775000px;}
.y31{bottom:372.135000px;}
.y12f{bottom:373.035000px;}
.yb3{bottom:377.715000px;}
.yd1{bottom:383.835000px;}
.y54{bottom:384.015000px;}
.y7e{bottom:386.535000px;}
.y11d{bottom:388.155000px;}
.y30{bottom:393.735000px;}
.ydf{bottom:396.795000px;}
.y12e{bottom:398.775000px;}
.y166{bottom:402.195000px;}
.yfc{bottom:402.735000px;}
.yd0{bottom:409.755000px;}
.y53{bottom:409.935000px;}
.y7d{bottom:412.275000px;}
.y11c{bottom:413.895000px;}
.y150{bottom:414.075000px;}
.y2f{bottom:415.155000px;}
.y12d{bottom:424.695000px;}
.y165{bottom:427.935000px;}
.ycf{bottom:435.495000px;}
.y52{bottom:435.675000px;}
.y2e{bottom:436.755000px;}
.y7c{bottom:438.195000px;}
.y11b{bottom:439.815000px;}
.y14f{bottom:439.995000px;}
.yb1{bottom:440.355000px;}
.yfb{bottom:440.535000px;}
.y12c{bottom:454.935000px;}
.y2d{bottom:458.175000px;}
.y164{bottom:458.355000px;}
.yce{bottom:461.235000px;}
.y51{bottom:461.415000px;}
.y7b{bottom:463.935000px;}
.y11a{bottom:465.555000px;}
.y14e{bottom:470.235000px;}
.yad{bottom:477.975000px;}
.yfa{bottom:478.155000px;}
.y2c{bottom:479.775000px;}
.y12b{bottom:480.855000px;}
.y163{bottom:484.095000px;}
.ycd{bottom:487.155000px;}
.y50{bottom:487.335000px;}
.y7a{bottom:489.855000px;}
.y119{bottom:491.295000px;}
.y14d{bottom:500.655000px;}
.y2b{bottom:501.195000px;}
.y12a{bottom:506.595000px;}
.y162{bottom:510.015000px;}
.ycc{bottom:512.895000px;}
.y4f{bottom:513.075000px;}
.y79{bottom:515.595000px;}
.yf9{bottom:515.775000px;}
.y118{bottom:517.215000px;}
.y2a{bottom:522.795000px;}
.y14c{bottom:530.895000px;}
.y129{bottom:537.015000px;}
.ycb{bottom:538.815000px;}
.y4e{bottom:538.995000px;}
.y161{bottom:540.255000px;}
.y78{bottom:541.515000px;}
.y117{bottom:542.955000px;}
.y29{bottom:544.395000px;}
.y14b{bottom:556.635000px;}
.y128{bottom:562.755000px;}
.yca{bottom:564.555000px;}
.y4d{bottom:564.735000px;}
.y28{bottom:565.815000px;}
.y160{bottom:566.175000px;}
.y77{bottom:567.255000px;}
.y116{bottom:568.875000px;}
.yf8{bottom:578.415000px;}
.yac{bottom:581.115000px;}
.y14a{bottom:587.055000px;}
.y27{bottom:587.415000px;}
.y127{bottom:588.675000px;}
.yc9{bottom:590.475000px;}
.y4c{bottom:590.655000px;}
.y15f{bottom:591.915000px;}
.y76{bottom:593.175000px;}
.y115{bottom:594.615000px;}
.yab{bottom:603.435000px;}
.y26{bottom:608.865000px;}
.y149{bottom:612.825000px;}
.yf7{bottom:616.065000px;}
.yc8{bottom:616.245000px;}
.y4b{bottom:616.425000px;}
.y75{bottom:618.945000px;}
.y114{bottom:620.565000px;}
.y15e{bottom:622.185000px;}
.yaa{bottom:629.385000px;}
.y25{bottom:630.465000px;}
.yc7{bottom:642.165000px;}
.y4a{bottom:642.345000px;}
.y148{bottom:643.425000px;}
.y74{bottom:644.685000px;}
.y113{bottom:646.305000px;}
.yea{bottom:646.845000px;}
.y15d{bottom:648.105000px;}
.y24{bottom:651.885000px;}
.ya9{bottom:655.125000px;}
.yc6{bottom:667.905000px;}
.y49{bottom:668.085000px;}
.y147{bottom:669.345000px;}
.y73{bottom:670.605000px;}
.y111{bottom:672.225000px;}
.ye9{bottom:672.585000px;}
.y23{bottom:673.485000px;}
.y15c{bottom:673.845000px;}
.y112{bottom:679.785000px;}
.ya8{bottom:681.045000px;}
.yf6{bottom:683.565000px;}
.yc5{bottom:693.825000px;}
.y48{bottom:694.005000px;}
.y22{bottom:694.905000px;}
.y146{bottom:695.265000px;}
.y72{bottom:696.345000px;}
.y110{bottom:697.965000px;}
.ye8{bottom:698.505000px;}
.y15b{bottom:704.265000px;}
.ya7{bottom:706.785000px;}
.yf5{bottom:708.585000px;}
.y21{bottom:716.505000px;}
.yc4{bottom:719.565000px;}
.y47{bottom:719.745000px;}
.y145{bottom:721.005000px;}
.y71{bottom:722.265000px;}
.y10f{bottom:723.885000px;}
.ye7{bottom:724.245000px;}
.yf4{bottom:730.005000px;}
.ya6{bottom:732.525000px;}
.y20{bottom:738.105000px;}
.y46{bottom:745.485000px;}
.y70{bottom:748.005000px;}
.y10e{bottom:749.625000px;}
.ye6{bottom:750.165000px;}
.y144{bottom:751.425000px;}
.yf3{bottom:751.605000px;}
.y15a{bottom:755.925000px;}
.ya5{bottom:758.445000px;}
.y1f{bottom:760.425000px;}
.yc3{bottom:771.225000px;}
.y45{bottom:771.405000px;}
.y6f{bottom:773.925000px;}
.y10d{bottom:775.365000px;}
.ye5{bottom:775.905000px;}
.y143{bottom:781.665000px;}
.ya4{bottom:784.185000px;}
.y1e{bottom:785.805000px;}
.y159{bottom:786.165000px;}
.yc2{bottom:796.965000px;}
.y44{bottom:797.145000px;}
.y6e{bottom:799.665000px;}
.y10c{bottom:801.285000px;}
.y142{bottom:807.585000px;}
.y1d{bottom:809.385000px;}
.ya3{bottom:810.105000px;}
.y158{bottom:812.085000px;}
.ye4{bottom:812.985000px;}
.yc1{bottom:822.885000px;}
.y6d{bottom:825.585000px;}
.y10b{bottom:827.025000px;}
.y1c{bottom:833.145000px;}
.ya2{bottom:835.845000px;}
.y43{bottom:837.645000px;}
.y141{bottom:837.825000px;}
.yc0{bottom:848.625000px;}
.ye3{bottom:849.705000px;}
.y6c{bottom:851.325000px;}
.y1b{bottom:856.725000px;}
.y42{bottom:859.245000px;}
.ya1{bottom:861.765000px;}
.y10a{bottom:861.945000px;}
.y140{bottom:863.745000px;}
.ye2{bottom:872.970000px;}
.ybf{bottom:874.590000px;}
.y6b{bottom:877.290000px;}
.y1a{bottom:880.530000px;}
.y41{bottom:880.710000px;}
.ya0{bottom:887.550000px;}
.y13f{bottom:889.530000px;}
.y109{bottom:892.770000px;}
.ybe{bottom:900.330000px;}
.y40{bottom:902.310000px;}
.y6a{bottom:903.030000px;}
.y19{bottom:904.110000px;}
.y9f{bottom:913.470000px;}
.y13e{bottom:919.950000px;}
.y3f{bottom:923.730000px;}
.ybd{bottom:926.250000px;}
.y18{bottom:927.510000px;}
.y69{bottom:928.950000px;}
.y108{bottom:930.390000px;}
.y9e{bottom:939.210000px;}
.y3e{bottom:945.330000px;}
.y13d{bottom:945.690000px;}
.y17{bottom:949.830000px;}
.ybc{bottom:951.990000px;}
.y67{bottom:954.690000px;}
.y68{bottom:962.250000px;}
.y9d{bottom:965.130000px;}
.y3d{bottom:966.750000px;}
.y107{bottom:968.190000px;}
.y13c{bottom:971.430000px;}
.y16{bottom:975.570000px;}
.ybb{bottom:977.910000px;}
.y66{bottom:980.430000px;}
.y3c{bottom:988.350000px;}
.y9c{bottom:990.870000px;}
.y13b{bottom:997.350000px;}
.y15{bottom:1002.030000px;}
.y106{bottom:1005.810000px;}
.y65{bottom:1006.350000px;}
.y3b{bottom:1009.770000px;}
.yba{bottom:1012.650000px;}
.y9b{bottom:1016.610000px;}
.y13a{bottom:1027.590000px;}
.y3a{bottom:1031.370000px;}
.y64{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.y90{bottom:1039.650000px;}
.y9a{bottom:1042.530000px;}
.yde{bottom:1043.430000px;}
.y39{bottom:1052.790000px;}
.y139{bottom:1053.510000px;}
.y62{bottom:1058.010000px;}
.y13{bottom:1062.330000px;}
.y63{bottom:1065.570000px;}
.y99{bottom:1068.270000px;}
.y38{bottom:1074.390000px;}
.y138{bottom:1079.250000px;}
.ydd{bottom:1081.230000px;}
.y61{bottom:1083.750000px;}
.y12{bottom:1091.310000px;}
.y98{bottom:1094.190000px;}
.y37{bottom:1095.990000px;}
.y60{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.y36{bottom:1117.410000px;}
.ydb{bottom:1118.850000px;}
.y97{bottom:1119.930000px;}
.y1{bottom:1134.150000px;}
.y5f{bottom:1135.410000px;}
.y35{bottom:1139.040000px;}
.y96{bottom:1151.280000px;}
.h15{height:15.547852px;}
.hf{height:17.191406px;}
.he{height:31.201172px;}
.hd{height:34.382812px;}
.h11{height:36.900000px;}
.h13{height:36.936000px;}
.h14{height:37.080000px;}
.hc{height:39.884062px;}
.h7{height:43.506914px;}
.h6{height:51.574219px;}
.h4{height:51.618867px;}
.h3{height:57.075469px;}
.h16{height:58.142812px;}
.h12{height:61.920000px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h8{height:63.264375px;}
.hb{height:68.765625px;}
.h18{height:70.124063px;}
.h19{height:70.244063px;}
.h9{height:72.763945px;}
.h2{height:86.256000px;}
.h10{height:86.760000px;}
.h17{height:91.458281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.wb{width:59.760000px;}
.wc{width:59.940000px;}
.wa{width:69.696000px;}
.w11{width:73.800000px;}
.w9{width:89.640000px;}
.w8{width:89.676000px;}
.we{width:95.076000px;}
.w10{width:105.516000px;}
.wf{width:126.720000px;}
.w7{width:316.830000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.wd{width:339.195000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x25{left:74.880000px;}
.x14{left:96.696000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.xf{left:110.915987px;}
.x15{left:134.994000px;}
.x26{left:146.190000px;}
.x9{left:159.509987px;}
.x23{left:171.029987px;}
.x2{left:185.799000px;}
.x21{left:219.809987px;}
.x1f{left:240.869987px;}
.x1d{left:277.634987px;}
.x13{left:289.154987px;}
.xe{left:322.454987px;}
.xc{left:341.354973px;}
.xd{left:346.574987px;}
.x24{left:375.734987px;}
.x2a{left:377.174973px;}
.x2b{left:382.394987px;}
.x10{left:384.914973px;}
.x11{left:390.674987px;}
.x16{left:414.255000px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.xa{left:464.834973px;}
.xb{left:471.704987px;}
.x22{left:473.144987px;}
.x5{left:489.165000px;}
.x17{left:504.645000px;}
.x27{left:510.585000px;}
.x18{left:595.005000px;}
.x28{left:638.205000px;}
.x19{left:665.610000px;}
.x1a{left:726.090000px;}
.x29{left:744.450000px;}
.x1e{left:757.049987px;}
.x20{left:763.529987px;}
.x1b{left:767.489987px;}
.x1c{left:775.049987px;}
.x6{left:777.209987px;}
.x12{left:780.089987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v3{vertical-align:21.120000pt;}
.v4{vertical-align:26.880000pt;}
.ls39{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.289067pt;}
.lse{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.221333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.184533pt;}
.ls49{letter-spacing:-0.167467pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls2c{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.014080pt;}
.ls20{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.056320pt;}
.ls6{letter-spacing:0.056533pt;}
.ls37{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.064533pt;}
.ls2a{letter-spacing:0.096640pt;}
.ls48{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.137600pt;}
.lsa{letter-spacing:0.142933pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.234667pt;}
.ls44{letter-spacing:0.235733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.265600pt;}
.ls32{letter-spacing:0.279680pt;}
.ls2e{letter-spacing:0.319360pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.433280pt;}
.ls40{letter-spacing:0.448000pt;}
.ls38{letter-spacing:0.449280pt;}
.ls4b{letter-spacing:0.491520pt;}
.ls46{letter-spacing:0.576000pt;}
.ls30{letter-spacing:0.640000pt;}
.ls43{letter-spacing:1.216000pt;}
.ls1a{letter-spacing:1.472000pt;}
.ls3a{letter-spacing:1.856000pt;}
.ls3f{letter-spacing:2.112000pt;}
.ls35{letter-spacing:2.496000pt;}
.lsb{letter-spacing:3.136000pt;}
.lsd{letter-spacing:3.392000pt;}
.ls31{letter-spacing:3.649280pt;}
.ls2d{letter-spacing:3.776000pt;}
.ls27{letter-spacing:4.032000pt;}
.ls17{letter-spacing:5.056000pt;}
.ls16{letter-spacing:5.952000pt;}
.ls29{letter-spacing:6.336000pt;}
.ls3e{letter-spacing:6.592000pt;}
.ls1{letter-spacing:7.473280pt;}
.ls15{letter-spacing:7.616000pt;}
.ls36{letter-spacing:7.872000pt;}
.ls42{letter-spacing:8.256000pt;}
.ls24{letter-spacing:9.536000pt;}
.ls25{letter-spacing:10.176000pt;}
.ls13{letter-spacing:10.816000pt;}
.ls22{letter-spacing:11.616000pt;}
.ls1e{letter-spacing:12.096000pt;}
.ls4c{letter-spacing:12.736000pt;}
.ls28{letter-spacing:13.376000pt;}
.ls1c{letter-spacing:13.632000pt;}
.ls26{letter-spacing:14.016000pt;}
.ls1b{letter-spacing:14.656000pt;}
.ls1f{letter-spacing:15.296000pt;}
.ls3c{letter-spacing:17.216000pt;}
.ls47{letter-spacing:21.056000pt;}
.ls2f{letter-spacing:22.976000pt;}
.ls41{letter-spacing:24.896000pt;}
.ls45{letter-spacing:28.736000pt;}
.ls12{letter-spacing:31.552000pt;}
.ls10{letter-spacing:31.712000pt;}
.ls11{letter-spacing:32.576000pt;}
.ls4a{letter-spacing:216.256000pt;}
.ws17{word-spacing:-18.432000pt;}
.ws1a{word-spacing:-18.176000pt;}
.ws15{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.wsf{word-spacing:-17.983997pt;}
.ws12{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.545280pt;}
.ws4{word-spacing:-16.256213pt;}
.wse{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.246720pt;}
.ws7{word-spacing:-15.069653pt;}
.ws6{word-spacing:-15.064320pt;}
.ws14{word-spacing:-14.991253pt;}
.ws0{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.606720pt;}
.ws9{word-spacing:-14.342400pt;}
.wsd{word-spacing:-13.120640pt;}
.ws16{word-spacing:-12.736000pt;}
.ws18{word-spacing:-10.666453pt;}
.ws10{word-spacing:-10.430720pt;}
.ws19{word-spacing:-10.263253pt;}
.ws11{word-spacing:-9.168640pt;}
.ws13{word-spacing:-8.992000pt;}
.ws8{word-spacing:0.000000pt;}
._d{margin-left:-4.515200pt;}
._c{margin-left:-3.027840pt;}
._8{margin-left:-2.124800pt;}
._6{margin-left:-1.062400pt;}
._0{width:1.168640pt;}
._9{width:2.510293pt;}
._b{width:3.612160pt;}
._2{width:4.554240pt;}
._1{width:5.524480pt;}
._a{width:6.427947pt;}
._7{width:7.351467pt;}
._4{width:8.658560pt;}
._5{width:9.862827pt;}
._e{width:11.520000pt;}
._3{width:12.430080pt;}
._13{width:13.809920pt;}
._18{width:14.797227pt;}
._11{width:16.256000pt;}
._20{width:17.216853pt;}
._10{width:19.183360pt;}
._28{width:20.087040pt;}
._14{width:21.004800pt;}
._f{width:22.336000pt;}
._1a{width:24.064000pt;}
._1b{width:25.071360pt;}
._21{width:26.252373pt;}
._19{width:27.818667pt;}
._1c{width:28.949760pt;}
._17{width:29.888000pt;}
._1d{width:30.955093pt;}
._12{width:31.850667pt;}
._2d{width:32.789333pt;}
._15{width:35.648000pt;}
._16{width:36.736000pt;}
._1f{width:37.696000pt;}
._2a{width:38.592000pt;}
._29{width:39.744000pt;}
._22{width:41.856000pt;}
._1e{width:52.288000pt;}
._25{width:67.247360pt;}
._26{width:68.769280pt;}
._27{width:69.863680pt;}
._23{width:99.200000pt;}
._24{width:100.256000pt;}
._2c{width:215.978667pt;}
._2b{width:217.056000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.706667pt;}
.y105{bottom:17.114667pt;}
.yb2{bottom:17.120000pt;}
.ydc{bottom:17.146667pt;}
.yff{bottom:17.160000pt;}
.yb0{bottom:17.280000pt;}
.y4{bottom:22.746667pt;}
.yaf{bottom:39.360000pt;}
.y3{bottom:41.946667pt;}
.y2{bottom:60.986667pt;}
.yae{bottom:61.440000pt;}
.y34{bottom:67.712000pt;}
.y11{bottom:83.072000pt;}
.y33{bottom:84.672000pt;}
.y10{bottom:100.992000pt;}
.yb9{bottom:101.312000pt;}
.y8b{bottom:103.232000pt;}
.y93{bottom:103.552000pt;}
.y95{bottom:107.392000pt;}
.y92{bottom:108.192000pt;}
.yf2{bottom:108.672000pt;}
.y5e{bottom:111.712000pt;}
.y8f{bottom:113.952000pt;}
.yf{bottom:117.952000pt;}
.y8a{bottom:122.432000pt;}
.y104{bottom:123.552000pt;}
.y91{bottom:123.712000pt;}
.y157{bottom:126.592000pt;}
.yf1{bottom:131.552000pt;}
.y126{bottom:133.152000pt;}
.yda{bottom:134.586667pt;}
.y5d{bottom:134.746667pt;}
.y137{bottom:135.866667pt;}
.ye{bottom:136.506667pt;}
.y8e{bottom:136.986667pt;}
.y94{bottom:139.066667pt;}
.y89{bottom:141.466667pt;}
.y88{bottom:146.746667pt;}
.y156{bottom:149.466667pt;}
.y125{bottom:152.186667pt;}
.yf0{bottom:154.586667pt;}
.yd{bottom:155.706667pt;}
.y103{bottom:157.146667pt;}
.yd9{bottom:157.466667pt;}
.y5c{bottom:157.626667pt;}
.y136{bottom:158.906667pt;}
.y8d{bottom:159.866667pt;}
.y87{bottom:160.666667pt;}
.y86{bottom:165.946667pt;}
.yb8{bottom:168.346667pt;}
.y124{bottom:172.346667pt;}
.yc{bottom:174.746667pt;}
.yef{bottom:177.466667pt;}
.yd8{bottom:180.506667pt;}
.y5b{bottom:180.666667pt;}
.y85{bottom:180.826667pt;}
.y8c{bottom:182.906667pt;}
.y135{bottom:185.786667pt;}
.y102{bottom:190.586667pt;}
.yb{bottom:193.946667pt;}
.y155{bottom:199.386667pt;}
.yee{bottom:200.506667pt;}
.yb7{bottom:201.786667pt;}
.yd7{bottom:203.386667pt;}
.y5a{bottom:203.546667pt;}
.y84{bottom:205.786667pt;}
.y123{bottom:207.226667pt;}
.y134{bottom:208.826667pt;}
.ya{bottom:213.146667pt;}
.y154{bottom:222.266667pt;}
.yed{bottom:223.386667pt;}
.y101{bottom:224.026667pt;}
.yd6{bottom:226.426667pt;}
.y59{bottom:226.586667pt;}
.y83{bottom:228.826667pt;}
.y122{bottom:230.106667pt;}
.y133{bottom:231.706667pt;}
.y9{bottom:232.186667pt;}
.yb6{bottom:235.226667pt;}
.y153{bottom:245.306667pt;}
.yec{bottom:246.426667pt;}
.yd5{bottom:249.306667pt;}
.y58{bottom:249.466667pt;}
.y8{bottom:251.386667pt;}
.y82{bottom:251.706667pt;}
.y121{bottom:253.146667pt;}
.y100{bottom:257.466667pt;}
.y132{bottom:258.746667pt;}
.y152{bottom:268.186667pt;}
.yb5{bottom:268.826667pt;}
.yd4{bottom:272.346667pt;}
.y57{bottom:272.506667pt;}
.y81{bottom:274.746667pt;}
.y120{bottom:276.026667pt;}
.yeb{bottom:279.226667pt;}
.y131{bottom:281.626667pt;}
.y7{bottom:285.786667pt;}
.yfe{bottom:291.066667pt;}
.ye1{bottom:291.226667pt;}
.yd3{bottom:295.226667pt;}
.y56{bottom:295.386667pt;}
.y80{bottom:297.626667pt;}
.y11f{bottom:299.106667pt;}
.yb4{bottom:302.306667pt;}
.y130{bottom:304.546667pt;}
.y32{bottom:311.746667pt;}
.y151{bottom:318.146667pt;}
.yd2{bottom:318.306667pt;}
.y55{bottom:318.466667pt;}
.y7f{bottom:320.546667pt;}
.ye0{bottom:321.026667pt;}
.y11e{bottom:321.986667pt;}
.yfd{bottom:324.546667pt;}
.y167{bottom:330.466667pt;}
.y31{bottom:330.786667pt;}
.y12f{bottom:331.586667pt;}
.yb3{bottom:335.746667pt;}
.yd1{bottom:341.186667pt;}
.y54{bottom:341.346667pt;}
.y7e{bottom:343.586667pt;}
.y11d{bottom:345.026667pt;}
.y30{bottom:349.986667pt;}
.ydf{bottom:352.706667pt;}
.y12e{bottom:354.466667pt;}
.y166{bottom:357.506667pt;}
.yfc{bottom:357.986667pt;}
.yd0{bottom:364.226667pt;}
.y53{bottom:364.386667pt;}
.y7d{bottom:366.466667pt;}
.y11c{bottom:367.906667pt;}
.y150{bottom:368.066667pt;}
.y2f{bottom:369.026667pt;}
.y12d{bottom:377.506667pt;}
.y165{bottom:380.386667pt;}
.ycf{bottom:387.106667pt;}
.y52{bottom:387.266667pt;}
.y2e{bottom:388.226667pt;}
.y7c{bottom:389.506667pt;}
.y11b{bottom:390.946667pt;}
.y14f{bottom:391.106667pt;}
.yb1{bottom:391.426667pt;}
.yfb{bottom:391.586667pt;}
.y12c{bottom:404.386667pt;}
.y2d{bottom:407.266667pt;}
.y164{bottom:407.426667pt;}
.yce{bottom:409.986667pt;}
.y51{bottom:410.146667pt;}
.y7b{bottom:412.386667pt;}
.y11a{bottom:413.826667pt;}
.y14e{bottom:417.986667pt;}
.yad{bottom:424.866667pt;}
.yfa{bottom:425.026667pt;}
.y2c{bottom:426.466667pt;}
.y12b{bottom:427.426667pt;}
.y163{bottom:430.306667pt;}
.ycd{bottom:433.026667pt;}
.y50{bottom:433.186667pt;}
.y7a{bottom:435.426667pt;}
.y119{bottom:436.706667pt;}
.y14d{bottom:445.026667pt;}
.y2b{bottom:445.506667pt;}
.y12a{bottom:450.306667pt;}
.y162{bottom:453.346667pt;}
.ycc{bottom:455.906667pt;}
.y4f{bottom:456.066667pt;}
.y79{bottom:458.306667pt;}
.yf9{bottom:458.466667pt;}
.y118{bottom:459.746667pt;}
.y2a{bottom:464.706667pt;}
.y14c{bottom:471.906667pt;}
.y129{bottom:477.346667pt;}
.ycb{bottom:478.946667pt;}
.y4e{bottom:479.106667pt;}
.y161{bottom:480.226667pt;}
.y78{bottom:481.346667pt;}
.y117{bottom:482.626667pt;}
.y29{bottom:483.906667pt;}
.y14b{bottom:494.786667pt;}
.y128{bottom:500.226667pt;}
.yca{bottom:501.826667pt;}
.y4d{bottom:501.986667pt;}
.y28{bottom:502.946667pt;}
.y160{bottom:503.266667pt;}
.y77{bottom:504.226667pt;}
.y116{bottom:505.666667pt;}
.yf8{bottom:514.146667pt;}
.yac{bottom:516.546667pt;}
.y14a{bottom:521.826667pt;}
.y27{bottom:522.146667pt;}
.y127{bottom:523.266667pt;}
.yc9{bottom:524.866667pt;}
.y4c{bottom:525.026667pt;}
.y15f{bottom:526.146667pt;}
.y76{bottom:527.266667pt;}
.y115{bottom:528.546667pt;}
.yab{bottom:536.386667pt;}
.y26{bottom:541.213333pt;}
.y149{bottom:544.733333pt;}
.yf7{bottom:547.613333pt;}
.yc8{bottom:547.773333pt;}
.y4b{bottom:547.933333pt;}
.y75{bottom:550.173333pt;}
.y114{bottom:551.613333pt;}
.y15e{bottom:553.053333pt;}
.yaa{bottom:559.453333pt;}
.y25{bottom:560.413333pt;}
.yc7{bottom:570.813333pt;}
.y4a{bottom:570.973333pt;}
.y148{bottom:571.933333pt;}
.y74{bottom:573.053333pt;}
.y113{bottom:574.493333pt;}
.yea{bottom:574.973333pt;}
.y15d{bottom:576.093333pt;}
.y24{bottom:579.453333pt;}
.ya9{bottom:582.333333pt;}
.yc6{bottom:593.693333pt;}
.y49{bottom:593.853333pt;}
.y147{bottom:594.973333pt;}
.y73{bottom:596.093333pt;}
.y111{bottom:597.533333pt;}
.ye9{bottom:597.853333pt;}
.y23{bottom:598.653333pt;}
.y15c{bottom:598.973333pt;}
.y112{bottom:604.253333pt;}
.ya8{bottom:605.373333pt;}
.yf6{bottom:607.613333pt;}
.yc5{bottom:616.733333pt;}
.y48{bottom:616.893333pt;}
.y22{bottom:617.693333pt;}
.y146{bottom:618.013333pt;}
.y72{bottom:618.973333pt;}
.y110{bottom:620.413333pt;}
.ye8{bottom:620.893333pt;}
.y15b{bottom:626.013333pt;}
.ya7{bottom:628.253333pt;}
.yf5{bottom:629.853333pt;}
.y21{bottom:636.893333pt;}
.yc4{bottom:639.613333pt;}
.y47{bottom:639.773333pt;}
.y145{bottom:640.893333pt;}
.y71{bottom:642.013333pt;}
.y10f{bottom:643.453333pt;}
.ye7{bottom:643.773333pt;}
.yf4{bottom:648.893333pt;}
.ya6{bottom:651.133333pt;}
.y20{bottom:656.093333pt;}
.y46{bottom:662.653333pt;}
.y70{bottom:664.893333pt;}
.y10e{bottom:666.333333pt;}
.ye6{bottom:666.813333pt;}
.y144{bottom:667.933333pt;}
.yf3{bottom:668.093333pt;}
.y15a{bottom:671.933333pt;}
.ya5{bottom:674.173333pt;}
.y1f{bottom:675.933333pt;}
.yc3{bottom:685.533333pt;}
.y45{bottom:685.693333pt;}
.y6f{bottom:687.933333pt;}
.y10d{bottom:689.213333pt;}
.ye5{bottom:689.693333pt;}
.y143{bottom:694.813333pt;}
.ya4{bottom:697.053333pt;}
.y1e{bottom:698.493333pt;}
.y159{bottom:698.813333pt;}
.yc2{bottom:708.413333pt;}
.y44{bottom:708.573333pt;}
.y6e{bottom:710.813333pt;}
.y10c{bottom:712.253333pt;}
.y142{bottom:717.853333pt;}
.y1d{bottom:719.453333pt;}
.ya3{bottom:720.093333pt;}
.y158{bottom:721.853333pt;}
.ye4{bottom:722.653333pt;}
.yc1{bottom:731.453333pt;}
.y6d{bottom:733.853333pt;}
.y10b{bottom:735.133333pt;}
.y1c{bottom:740.573333pt;}
.ya2{bottom:742.973333pt;}
.y43{bottom:744.573333pt;}
.y141{bottom:744.733333pt;}
.yc0{bottom:754.333333pt;}
.ye3{bottom:755.293333pt;}
.y6c{bottom:756.733333pt;}
.y1b{bottom:761.533333pt;}
.y42{bottom:763.773333pt;}
.ya1{bottom:766.013333pt;}
.y10a{bottom:766.173333pt;}
.y140{bottom:767.773333pt;}
.ye2{bottom:775.973333pt;}
.ybf{bottom:777.413333pt;}
.y6b{bottom:779.813333pt;}
.y1a{bottom:782.693333pt;}
.y41{bottom:782.853333pt;}
.ya0{bottom:788.933333pt;}
.y13f{bottom:790.693333pt;}
.y109{bottom:793.573333pt;}
.ybe{bottom:800.293333pt;}
.y40{bottom:802.053333pt;}
.y6a{bottom:802.693333pt;}
.y19{bottom:803.653333pt;}
.y9f{bottom:811.973333pt;}
.y13e{bottom:817.733333pt;}
.y3f{bottom:821.093333pt;}
.ybd{bottom:823.333333pt;}
.y18{bottom:824.453333pt;}
.y69{bottom:825.733333pt;}
.y108{bottom:827.013333pt;}
.y9e{bottom:834.853333pt;}
.y3e{bottom:840.293333pt;}
.y13d{bottom:840.613333pt;}
.y17{bottom:844.293333pt;}
.ybc{bottom:846.213333pt;}
.y67{bottom:848.613333pt;}
.y68{bottom:855.333333pt;}
.y9d{bottom:857.893333pt;}
.y3d{bottom:859.333333pt;}
.y107{bottom:860.613333pt;}
.y13c{bottom:863.493333pt;}
.y16{bottom:867.173333pt;}
.ybb{bottom:869.253333pt;}
.y66{bottom:871.493333pt;}
.y3c{bottom:878.533333pt;}
.y9c{bottom:880.773333pt;}
.y13b{bottom:886.533333pt;}
.y15{bottom:890.693333pt;}
.y106{bottom:894.053333pt;}
.y65{bottom:894.533333pt;}
.y3b{bottom:897.573333pt;}
.yba{bottom:900.133333pt;}
.y9b{bottom:903.653333pt;}
.y13a{bottom:913.413333pt;}
.y3a{bottom:916.773333pt;}
.y64{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.y90{bottom:924.133333pt;}
.y9a{bottom:926.693333pt;}
.yde{bottom:927.493333pt;}
.y39{bottom:935.813333pt;}
.y139{bottom:936.453333pt;}
.y62{bottom:940.453333pt;}
.y13{bottom:944.293333pt;}
.y63{bottom:947.173333pt;}
.y99{bottom:949.573333pt;}
.y38{bottom:955.013333pt;}
.y138{bottom:959.333333pt;}
.ydd{bottom:961.093333pt;}
.y61{bottom:963.333333pt;}
.y12{bottom:970.053333pt;}
.y98{bottom:972.613333pt;}
.y37{bottom:974.213333pt;}
.y60{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.y36{bottom:993.253333pt;}
.ydb{bottom:994.533333pt;}
.y97{bottom:995.493333pt;}
.y1{bottom:1008.133333pt;}
.y5f{bottom:1009.253333pt;}
.y35{bottom:1012.480000pt;}
.y96{bottom:1023.360000pt;}
.h15{height:13.820312pt;}
.hf{height:15.281250pt;}
.he{height:27.734375pt;}
.hd{height:30.562500pt;}
.h11{height:32.800000pt;}
.h13{height:32.832000pt;}
.h14{height:32.960000pt;}
.hc{height:35.452500pt;}
.h7{height:38.672812pt;}
.h6{height:45.843750pt;}
.h4{height:45.883437pt;}
.h3{height:50.733750pt;}
.h16{height:51.682500pt;}
.h12{height:55.040000pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h8{height:56.235000pt;}
.hb{height:61.125000pt;}
.h18{height:62.332500pt;}
.h19{height:62.439167pt;}
.h9{height:64.679063pt;}
.h2{height:76.672000pt;}
.h10{height:77.120000pt;}
.h17{height:81.296250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.wb{width:53.120000pt;}
.wc{width:53.280000pt;}
.wa{width:61.952000pt;}
.w11{width:65.600000pt;}
.w9{width:79.680000pt;}
.w8{width:79.712000pt;}
.we{width:84.512000pt;}
.w10{width:93.792000pt;}
.wf{width:112.640000pt;}
.w7{width:281.626667pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.wd{width:301.506667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x25{left:66.560000pt;}
.x14{left:85.952000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.xf{left:98.591988pt;}
.x15{left:119.994667pt;}
.x26{left:129.946667pt;}
.x9{left:141.786655pt;}
.x23{left:152.026655pt;}
.x2{left:165.154667pt;}
.x21{left:195.386655pt;}
.x1f{left:214.106655pt;}
.x1d{left:246.786655pt;}
.x13{left:257.026655pt;}
.xe{left:286.626655pt;}
.xc{left:303.426643pt;}
.xd{left:308.066655pt;}
.x24{left:333.986655pt;}
.x2a{left:335.266643pt;}
.x2b{left:339.906655pt;}
.x10{left:342.146643pt;}
.x11{left:347.266655pt;}
.x16{left:368.226667pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.xa{left:413.186643pt;}
.xb{left:419.293322pt;}
.x22{left:420.573322pt;}
.x5{left:434.813333pt;}
.x17{left:448.573333pt;}
.x27{left:453.853333pt;}
.x18{left:528.893333pt;}
.x28{left:567.293333pt;}
.x19{left:591.653333pt;}
.x1a{left:645.413333pt;}
.x29{left:661.733333pt;}
.x1e{left:672.933322pt;}
.x20{left:678.693322pt;}
.x1b{left:682.213322pt;}
.x1c{left:688.933322pt;}
.x6{left:690.853322pt;}
.x12{left:693.413322pt;}
}




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