
    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_0a9b5606466aaca8c1f0d9bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_f8db31534cc6e198fb8b06cb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_ee491be9829d7daea18bf5b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_441f3d649381ca2bcfe25d46.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_04eba7b98fb32723a8bf7833.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_99c0611ac87a26d922496513.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f181147029160c9e95707e88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8da47d8f470e88b02f5bfb32.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ab257829d0049258196288d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.523926;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);}
.v7{vertical-align:-106.560000px;}
.v3{vertical-align:-100.200000px;}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-81.360000px;}
.v9{vertical-align:-79.920000px;}
.v8{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.120000px;}
.v5{vertical-align:36.000000px;}
.v4{vertical-align:42.600000px;}
.ls37{letter-spacing:-1.872000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.684000px;}
.ls38{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.414600px;}
.ls10{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.288000px;}
.ls3d{letter-spacing:-0.262200px;}
.ls29{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.ls3e{letter-spacing:-0.109200px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls3{letter-spacing:0.034560px;}
.ls18{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262080px;}
.ls3c{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.442080px;}
.lse{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.880000px;}
.lsc{letter-spacing:4.320000px;}
.ls2a{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.760000px;}
.ls1c{letter-spacing:7.920000px;}
.ls30{letter-spacing:10.080000px;}
.lsf{letter-spacing:11.520000px;}
.ls31{letter-spacing:13.140000px;}
.ls2c{letter-spacing:13.312800px;}
.ls27{letter-spacing:16.560000px;}
.ls23{letter-spacing:17.280000px;}
.ls28{letter-spacing:18.720000px;}
.ls22{letter-spacing:20.880000px;}
.ls1b{letter-spacing:23.760000px;}
.ls33{letter-spacing:24.480000px;}
.lsb{letter-spacing:26.640000px;}
.ls36{letter-spacing:34.841280px;}
.ls25{letter-spacing:42.624000px;}
.ls1a{letter-spacing:54.720000px;}
.ls26{letter-spacing:56.280000px;}
.ls2f{letter-spacing:62.040000px;}
.ls35{letter-spacing:67.961280px;}
.ls2d{letter-spacing:84.240000px;}
.ls24{letter-spacing:534.936000px;}
.ls2e{letter-spacing:851.196000px;}
.ls34{letter-spacing:862.896000px;}
.ls2b{letter-spacing:954.876000px;}
.ls32{letter-spacing:1166.700000px;}
.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;}
}
.ws3{word-spacing:-80.280000px;}
.ws5{word-spacing:-72.000000px;}
.ws6{word-spacing:-51.120000px;}
.ws0{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.280000px;}
.wse{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.450800px;}
.wsf{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:60.696000px;}
._20{margin-left:-93.640560px;}
._29{margin-left:-8.631360px;}
._28{margin-left:-7.539840px;}
._26{margin-left:-5.040000px;}
._22{margin-left:-3.504960px;}
._13{margin-left:-2.148480px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._7{width:3.047040px;}
._9{width:4.552320px;}
._8{width:5.630400px;}
._e{width:7.574400px;}
._a{width:8.772480px;}
._6{width:9.869760px;}
._d{width:10.877760px;}
._16{width:12.058560px;}
._19{width:13.340160px;}
._11{width:15.027840px;}
._12{width:16.272000px;}
._f{width:20.016000px;}
._10{width:21.600000px;}
._1a{width:22.968000px;}
._18{width:23.976000px;}
._1b{width:24.984000px;}
._27{width:26.092320px;}
._17{width:27.360000px;}
._23{width:28.797120px;}
._b{width:30.669120px;}
._c{width:32.619840px;}
._14{width:34.248000px;}
._15{width:35.319840px;}
._25{width:43.128000px;}
._1c{width:46.008000px;}
._24{width:47.016000px;}
._21{width:48.270720px;}
._1e{width:52.128000px;}
._1f{width:83.386560px;}
._1d{width:84.744000px;}
._2b{width:151.090680px;}
._2a{width:152.264640px;}
._2c{width:213.491520px;}
._2d{width:215.043840px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._2f{width:846.300000px;}
._2{width:854.940000px;}
._2e{width:1315.615680px;}
.fc3{color:rgb(163,21,21);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:321.120000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y9e{bottom:4.140000px;}
.yf7{bottom:4.485000px;}
.ya5{bottom:4.500000px;}
.y6a{bottom:5.040000px;}
.yb0{bottom:5.220000px;}
.y14b{bottom:14.940000px;}
.ya9{bottom:15.480000px;}
.y9{bottom:21.240000px;}
.yb6{bottom:24.480000px;}
.ye4{bottom:24.840000px;}
.ya4{bottom:25.020000px;}
.yf6{bottom:25.185000px;}
.ye6{bottom:25.200000px;}
.yed{bottom:25.245000px;}
.yaf{bottom:25.920000px;}
.yab{bottom:26.460000px;}
.ya{bottom:31.140000px;}
.ya8{bottom:36.180000px;}
.ya0{bottom:36.900000px;}
.y8{bottom:41.940000px;}
.yf5{bottom:45.525000px;}
.yef{bottom:45.540000px;}
.yfc{bottom:45.885000px;}
.yec{bottom:45.945000px;}
.yb5{bottom:46.620000px;}
.ya3{bottom:47.160000px;}
.yac{bottom:56.700000px;}
.ya7{bottom:56.880000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.yfb{bottom:66.585000px;}
.yeb{bottom:66.645000px;}
.yb4{bottom:67.140000px;}
.yad{bottom:67.680000px;}
.ya2{bottom:67.860000px;}
.ya6{bottom:77.400000px;}
.y4{bottom:86.940000px;}
.yfa{bottom:87.285000px;}
.yea{bottom:87.345000px;}
.ya1{bottom:88.380000px;}
.yb2{bottom:88.560000px;}
.yb3{bottom:89.100000px;}
.ye9{bottom:108.045000px;}
.yb7{bottom:109.080000px;}
.y3{bottom:119.880000px;}
.ye8{bottom:128.745000px;}
.y11a{bottom:143.676000px;}
.y13a{bottom:143.856000px;}
.y108{bottom:144.216000px;}
.y38{bottom:144.396000px;}
.yc8{bottom:145.296000px;}
.ye2{bottom:145.476000px;}
.y9a{bottom:146.016000px;}
.y68{bottom:149.436000px;}
.yf9{bottom:162.225000px;}
.y139{bottom:162.750000px;}
.y37{bottom:163.470000px;}
.y119{bottom:164.370000px;}
.y107{bottom:164.550000px;}
.yc7{bottom:165.990000px;}
.ye1{bottom:166.170000px;}
.y99{bottom:166.710000px;}
.y67{bottom:170.130000px;}
.y106{bottom:179.670000px;}
.y138{bottom:181.830000px;}
.y36{bottom:182.370000px;}
.y118{bottom:185.070000px;}
.yc6{bottom:186.690000px;}
.ye0{bottom:186.870000px;}
.y98{bottom:187.410000px;}
.y66{bottom:190.830000px;}
.y137{bottom:200.730000px;}
.y35{bottom:201.270000px;}
.y117{bottom:205.770000px;}
.yc5{bottom:207.390000px;}
.ydf{bottom:207.570000px;}
.y97{bottom:208.110000px;}
.y65{bottom:211.530000px;}
.y136{bottom:219.810000px;}
.y34{bottom:220.350000px;}
.y116{bottom:226.470000px;}
.yc4{bottom:228.090000px;}
.yde{bottom:228.270000px;}
.y96{bottom:228.810000px;}
.y64{bottom:232.230000px;}
.y135{bottom:238.710000px;}
.y33{bottom:239.250000px;}
.y115{bottom:247.170000px;}
.ydd{bottom:248.970000px;}
.y95{bottom:249.510000px;}
.y63{bottom:252.930000px;}
.y134{bottom:257.610000px;}
.y32{bottom:258.330000px;}
.y114{bottom:263.370000px;}
.yf8{bottom:265.725000px;}
.yc3{bottom:269.490000px;}
.ydc{bottom:269.670000px;}
.y94{bottom:270.210000px;}
.y62{bottom:273.630000px;}
.y133{bottom:276.690000px;}
.y31{bottom:277.230000px;}
.yc2{bottom:290.190000px;}
.ydb{bottom:290.370000px;}
.y93{bottom:290.910000px;}
.y61{bottom:294.330000px;}
.y132{bottom:295.590000px;}
.y30{bottom:296.130000px;}
.yf4{bottom:307.125000px;}
.yc1{bottom:310.890000px;}
.yda{bottom:311.070000px;}
.y92{bottom:311.610000px;}
.y131{bottom:314.670000px;}
.y60{bottom:315.030000px;}
.y2f{bottom:315.210000px;}
.yc0{bottom:331.590000px;}
.yd9{bottom:331.770000px;}
.y91{bottom:332.310000px;}
.y130{bottom:333.570000px;}
.y2e{bottom:334.110000px;}
.y5f{bottom:335.730000px;}
.ybf{bottom:352.290000px;}
.yd8{bottom:352.470000px;}
.y90{bottom:353.010000px;}
.y2d{bottom:353.190000px;}
.y5e{bottom:356.430000px;}
.y12f{bottom:371.550000px;}
.y2c{bottom:372.090000px;}
.ybe{bottom:372.990000px;}
.yd7{bottom:373.170000px;}
.y8f{bottom:373.710000px;}
.y5d{bottom:377.130000px;}
.y12e{bottom:390.495000px;}
.y2b{bottom:391.215000px;}
.ybd{bottom:393.735000px;}
.y8e{bottom:394.455000px;}
.y5c{bottom:397.875000px;}
.y12d{bottom:409.575000px;}
.y2a{bottom:410.115000px;}
.ybc{bottom:414.435000px;}
.y8d{bottom:415.155000px;}
.y5b{bottom:418.575000px;}
.yd6{bottom:426.855000px;}
.y12c{bottom:428.475000px;}
.y29{bottom:429.015000px;}
.ybb{bottom:435.135000px;}
.y8c{bottom:435.855000px;}
.y5a{bottom:439.275000px;}
.y12b{bottom:447.375000px;}
.yd5{bottom:447.555000px;}
.y28{bottom:448.095000px;}
.yba{bottom:455.835000px;}
.y8b{bottom:456.555000px;}
.y105{bottom:457.275000px;}
.y59{bottom:459.975000px;}
.y12a{bottom:466.455000px;}
.y27{bottom:466.995000px;}
.yd4{bottom:468.255000px;}
.yf3{bottom:472.755000px;}
.yb9{bottom:476.535000px;}
.y8a{bottom:477.255000px;}
.y104{bottom:477.975000px;}
.y58{bottom:480.675000px;}
.y129{bottom:485.355000px;}
.y26{bottom:486.075000px;}
.yd3{bottom:488.415000px;}
.yb8{bottom:496.875000px;}
.y89{bottom:497.955000px;}
.y103{bottom:498.675000px;}
.y57{bottom:501.375000px;}
.yd2{bottom:503.715000px;}
.y128{bottom:504.435000px;}
.y25{bottom:504.975000px;}
.yb1{bottom:513.615000px;}
.yf2{bottom:514.155000px;}
.y88{bottom:518.655000px;}
.y102{bottom:519.375000px;}
.y56{bottom:522.075000px;}
.y127{bottom:523.335000px;}
.y24{bottom:523.875000px;}
.y113{bottom:531.435000px;}
.yd1{bottom:537.915000px;}
.y87{bottom:539.355000px;}
.y101{bottom:539.895000px;}
.y126{bottom:542.235000px;}
.y55{bottom:542.775000px;}
.y23{bottom:542.955000px;}
.y112{bottom:552.135000px;}
.yd0{bottom:557.355000px;}
.y100{bottom:559.875000px;}
.y86{bottom:560.055000px;}
.y125{bottom:561.315000px;}
.y22{bottom:561.855000px;}
.y54{bottom:563.475000px;}
.y111{bottom:572.835000px;}
.ycf{bottom:577.875000px;}
.y124{bottom:580.215000px;}
.y85{bottom:580.755000px;}
.y21{bottom:581.295000px;}
.y53{bottom:584.175000px;}
.y110{bottom:593.535000px;}
.yff{bottom:597.855000px;}
.yce{bottom:598.215000px;}
.y123{bottom:599.295000px;}
.y84{bottom:601.455000px;}
.y20{bottom:602.355000px;}
.y52{bottom:604.875000px;}
.yfe{bottom:611.535000px;}
.ycd{bottom:613.515000px;}
.y10f{bottom:614.235000px;}
.y122{bottom:618.195000px;}
.y83{bottom:622.155000px;}
.y1f{bottom:624.675000px;}
.y51{bottom:625.575000px;}
.y10e{bottom:634.965000px;}
.y121{bottom:637.305000px;}
.y82{bottom:642.885000px;}
.yae{bottom:643.425000px;}
.y50{bottom:646.305000px;}
.y1e{bottom:646.665000px;}
.ycc{bottom:647.565000px;}
.y10d{bottom:655.665000px;}
.y120{bottom:656.205000px;}
.yf1{bottom:659.085000px;}
.y81{bottom:663.585000px;}
.y4f{bottom:667.005000px;}
.y1d{bottom:669.525000px;}
.y11f{bottom:675.105000px;}
.y10c{bottom:676.365000px;}
.yf0{bottom:679.785000px;}
.y80{bottom:684.285000px;}
.y4e{bottom:687.705000px;}
.yaa{bottom:689.145000px;}
.y1c{bottom:691.485000px;}
.y11e{bottom:694.185000px;}
.y10b{bottom:697.065000px;}
.yee{bottom:700.485000px;}
.y7f{bottom:704.985000px;}
.y4d{bottom:708.405000px;}
.y11d{bottom:713.085000px;}
.y1b{bottom:714.525000px;}
.y10a{bottom:717.765000px;}
.y7e{bottom:725.685000px;}
.y4c{bottom:729.105000px;}
.y11c{bottom:732.165000px;}
.y109{bottom:734.145000px;}
.y1a{bottom:736.845000px;}
.y7d{bottom:746.385000px;}
.y4b{bottom:749.805000px;}
.y11b{bottom:751.065000px;}
.y14d{bottom:753.225000px;}
.y19{bottom:759.345000px;}
.y7c{bottom:767.085000px;}
.y4a{bottom:770.505000px;}
.y14c{bottom:773.925000px;}
.y9f{bottom:777.525000px;}
.y18{bottom:781.125000px;}
.y7b{bottom:787.785000px;}
.y14a{bottom:790.125000px;}
.y49{bottom:791.205000px;}
.y17{bottom:804.165000px;}
.y7a{bottom:808.485000px;}
.y149{bottom:810.825000px;}
.ycb{bottom:811.185000px;}
.y48{bottom:811.905000px;}
.y16{bottom:826.485000px;}
.y79{bottom:829.185000px;}
.y47{bottom:832.605000px;}
.y15{bottom:848.445000px;}
.yca{bottom:849.165000px;}
.y78{bottom:849.885000px;}
.y46{bottom:853.305000px;}
.y148{bottom:856.185000px;}
.yc9{bottom:862.845000px;}
.ye7{bottom:866.085000px;}
.y77{bottom:870.585000px;}
.y14{bottom:871.125000px;}
.y45{bottom:874.005000px;}
.y147{bottom:875.265000px;}
.y9d{bottom:886.650000px;}
.y76{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.y146{bottom:894.210000px;}
.y44{bottom:894.750000px;}
.y75{bottom:912.030000px;}
.y145{bottom:913.290000px;}
.y43{bottom:915.450000px;}
.y12{bottom:916.170000px;}
.y144{bottom:932.190000px;}
.y74{bottom:932.730000px;}
.y9c{bottom:933.990000px;}
.yfd{bottom:935.430000px;}
.y42{bottom:936.150000px;}
.y11{bottom:940.470000px;}
.y143{bottom:951.270000px;}
.y73{bottom:953.430000px;}
.y41{bottom:956.850000px;}
.y10{bottom:964.590000px;}
.y142{bottom:970.170000px;}
.y72{bottom:974.130000px;}
.y40{bottom:977.550000px;}
.yf{bottom:988.710000px;}
.y141{bottom:989.070000px;}
.y71{bottom:994.830000px;}
.y3f{bottom:998.250000px;}
.y140{bottom:1008.150000px;}
.ye5{bottom:1011.030000px;}
.ye{bottom:1012.830000px;}
.y70{bottom:1015.530000px;}
.y3e{bottom:1018.950000px;}
.y13f{bottom:1027.050000px;}
.y69{bottom:1035.150000px;}
.y6f{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y3d{bottom:1039.650000px;}
.y13e{bottom:1046.130000px;}
.ye3{bottom:1052.430000px;}
.y9b{bottom:1056.930000px;}
.y3c{bottom:1060.350000px;}
.yc{bottom:1060.890000px;}
.y13d{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y6e{bottom:1077.630000px;}
.y13c{bottom:1083.930000px;}
.y6d{bottom:1098.330000px;}
.y3b{bottom:1101.750000px;}
.y13b{bottom:1103.010000px;}
.y6c{bottom:1119.030000px;}
.y3a{bottom:1121.910000px;}
.y6b{bottom:1139.760000px;}
.y39{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h12{height:20.685000px;}
.h1f{height:20.700000px;}
.h1c{height:41.385000px;}
.h23{height:41.400000px;}
.h17{height:42.660000px;}
.h3{height:45.184219px;}
.he{height:56.278125px;}
.h19{height:58.621992px;}
.h1a{height:58.651172px;}
.h22{height:59.383125px;}
.h10{height:62.085000px;}
.h1e{height:62.100000px;}
.hf{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.hb{height:66.065625px;}
.h21{height:68.084282px;}
.hc{height:70.628906px;}
.h7{height:70.664062px;}
.h13{height:72.562500px;}
.h8{height:72.846211px;}
.h15{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h16{height:85.320000px;}
.h20{height:103.485000px;}
.h14{height:106.020000px;}
.h1b{height:106.664062px;}
.h18{height:126.750000px;}
.h1d{height:144.922500px;}
.h11{height:315.161719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.674500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w11{width:185.068500px;}
.w6{width:198.253500px;}
.wa{width:212.293500px;}
.w8{width:233.160000px;}
.wd{width:241.453500px;}
.wf{width:258.373500px;}
.w7{width:289.110000px;}
.w13{width:337.753500px;}
.w14{width:401.325000px;}
.w2{width:475.843500px;}
.w10{width:480.705000px;}
.we{width:497.625000px;}
.wb{width:509.835000px;}
.w12{width:553.995000px;}
.w9{width:722.115000px;}
.wc{width:739.078500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x2a{left:29.194500px;}
.x26{left:50.434500px;}
.x1b{left:60.154500px;}
.x1f{left:68.970000px;}
.x2{left:77.041500px;}
.x35{left:82.470000px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x1d{left:92.700000px;}
.xa{left:100.116000px;}
.xf{left:127.476000px;}
.xd{left:138.276000px;}
.xc{left:161.670000px;}
.x5{left:172.650000px;}
.x9{left:183.810000px;}
.x17{left:195.870000px;}
.x11{left:219.630000px;}
.xe{left:229.890000px;}
.x33{left:231.150000px;}
.x2b{left:262.125000px;}
.x2f{left:282.675000px;}
.x1c{left:284.475000px;}
.x27{left:289.335000px;}
.x28{left:318.495000px;}
.x21{left:331.095000px;}
.x29{left:335.415000px;}
.x31{left:338.475000px;}
.x2d{left:340.995000px;}
.x15{left:390.315000px;}
.x25{left:398.235000px;}
.x19{left:408.675000px;}
.x34{left:414.795000px;}
.x24{left:426.135000px;}
.x13{left:430.815000px;}
.x18{left:433.515000px;}
.x23{left:438.195000px;}
.xb{left:446.505000px;}
.x22{left:467.745000px;}
.x10{left:470.085000px;}
.x14{left:471.165000px;}
.x16{left:493.305000px;}
.x4{left:552.900000px;}
.x1e{left:574.320000px;}
.x1a{left:588.525000px;}
.x2e{left:618.045000px;}
.x20{left:646.530000px;}
.x12{left:694.770000px;}
.x30{left:695.850000px;}
.x6{left:733.650000px;}
.x32{left:737.250000px;}
.x8{left:808.020000px;}
.x2c{left:818.100000px;}
@media print{
.v7{vertical-align:-94.720000pt;}
.v3{vertical-align:-89.066667pt;}
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-72.320000pt;}
.v9{vertical-align:-71.040000pt;}
.v8{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.440000pt;}
.v5{vertical-align:32.000000pt;}
.v4{vertical-align:37.866667pt;}
.ls37{letter-spacing:-1.664000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.608000pt;}
.ls38{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls3d{letter-spacing:-0.233067pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls3e{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls3{letter-spacing:0.030720pt;}
.ls18{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls3c{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.392960pt;}
.lse{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls14{letter-spacing:0.896000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:2.560000pt;}
.lsc{letter-spacing:3.840000pt;}
.ls2a{letter-spacing:4.480000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls30{letter-spacing:8.960000pt;}
.lsf{letter-spacing:10.240000pt;}
.ls31{letter-spacing:11.680000pt;}
.ls2c{letter-spacing:11.833600pt;}
.ls27{letter-spacing:14.720000pt;}
.ls23{letter-spacing:15.360000pt;}
.ls28{letter-spacing:16.640000pt;}
.ls22{letter-spacing:18.560000pt;}
.ls1b{letter-spacing:21.120000pt;}
.ls33{letter-spacing:21.760000pt;}
.lsb{letter-spacing:23.680000pt;}
.ls36{letter-spacing:30.970027pt;}
.ls25{letter-spacing:37.888000pt;}
.ls1a{letter-spacing:48.640000pt;}
.ls26{letter-spacing:50.026667pt;}
.ls2f{letter-spacing:55.146667pt;}
.ls35{letter-spacing:60.410027pt;}
.ls2d{letter-spacing:74.880000pt;}
.ls24{letter-spacing:475.498667pt;}
.ls2e{letter-spacing:756.618667pt;}
.ls34{letter-spacing:767.018667pt;}
.ls2b{letter-spacing:848.778667pt;}
.ls32{letter-spacing:1037.066667pt;}
.ws3{word-spacing:-71.360000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws6{word-spacing:-45.440000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.360000pt;}
.wse{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.622933pt;}
.wsf{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:53.952000pt;}
._20{margin-left:-83.236053pt;}
._29{margin-left:-7.672320pt;}
._28{margin-left:-6.702080pt;}
._26{margin-left:-4.480000pt;}
._22{margin-left:-3.115520pt;}
._13{margin-left:-1.909760pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._7{width:2.708480pt;}
._9{width:4.046507pt;}
._8{width:5.004800pt;}
._e{width:6.732800pt;}
._a{width:7.797760pt;}
._6{width:8.773120pt;}
._d{width:9.669120pt;}
._16{width:10.718720pt;}
._19{width:11.857920pt;}
._11{width:13.358080pt;}
._12{width:14.464000pt;}
._f{width:17.792000pt;}
._10{width:19.200000pt;}
._1a{width:20.416000pt;}
._18{width:21.312000pt;}
._1b{width:22.208000pt;}
._27{width:23.193173pt;}
._17{width:24.320000pt;}
._23{width:25.597440pt;}
._b{width:27.261440pt;}
._c{width:28.995413pt;}
._14{width:30.442667pt;}
._15{width:31.395413pt;}
._25{width:38.336000pt;}
._1c{width:40.896000pt;}
._24{width:41.792000pt;}
._21{width:42.907307pt;}
._1e{width:46.336000pt;}
._1f{width:74.121387pt;}
._1d{width:75.328000pt;}
._2b{width:134.302827pt;}
._2a{width:135.346347pt;}
._2c{width:189.770240pt;}
._2d{width:191.150080pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._2f{width:752.266667pt;}
._2{width:759.946667pt;}
._2e{width:1169.436160pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:285.440000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y9e{bottom:3.680000pt;}
.yf7{bottom:3.986667pt;}
.ya5{bottom:4.000000pt;}
.y6a{bottom:4.480000pt;}
.yb0{bottom:4.640000pt;}
.y14b{bottom:13.280000pt;}
.ya9{bottom:13.760000pt;}
.y9{bottom:18.880000pt;}
.yb6{bottom:21.760000pt;}
.ye4{bottom:22.080000pt;}
.ya4{bottom:22.240000pt;}
.yf6{bottom:22.386667pt;}
.ye6{bottom:22.400000pt;}
.yed{bottom:22.440000pt;}
.yaf{bottom:23.040000pt;}
.yab{bottom:23.520000pt;}
.ya{bottom:27.680000pt;}
.ya8{bottom:32.160000pt;}
.ya0{bottom:32.800000pt;}
.y8{bottom:37.280000pt;}
.yf5{bottom:40.466667pt;}
.yef{bottom:40.480000pt;}
.yfc{bottom:40.786667pt;}
.yec{bottom:40.840000pt;}
.yb5{bottom:41.440000pt;}
.ya3{bottom:41.920000pt;}
.yac{bottom:50.400000pt;}
.ya7{bottom:50.560000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.yfb{bottom:59.186667pt;}
.yeb{bottom:59.240000pt;}
.yb4{bottom:59.680000pt;}
.yad{bottom:60.160000pt;}
.ya2{bottom:60.320000pt;}
.ya6{bottom:68.800000pt;}
.y4{bottom:77.280000pt;}
.yfa{bottom:77.586667pt;}
.yea{bottom:77.640000pt;}
.ya1{bottom:78.560000pt;}
.yb2{bottom:78.720000pt;}
.yb3{bottom:79.200000pt;}
.ye9{bottom:96.040000pt;}
.yb7{bottom:96.960000pt;}
.y3{bottom:106.560000pt;}
.ye8{bottom:114.440000pt;}
.y11a{bottom:127.712000pt;}
.y13a{bottom:127.872000pt;}
.y108{bottom:128.192000pt;}
.y38{bottom:128.352000pt;}
.yc8{bottom:129.152000pt;}
.ye2{bottom:129.312000pt;}
.y9a{bottom:129.792000pt;}
.y68{bottom:132.832000pt;}
.yf9{bottom:144.200000pt;}
.y139{bottom:144.666667pt;}
.y37{bottom:145.306667pt;}
.y119{bottom:146.106667pt;}
.y107{bottom:146.266667pt;}
.yc7{bottom:147.546667pt;}
.ye1{bottom:147.706667pt;}
.y99{bottom:148.186667pt;}
.y67{bottom:151.226667pt;}
.y106{bottom:159.706667pt;}
.y138{bottom:161.626667pt;}
.y36{bottom:162.106667pt;}
.y118{bottom:164.506667pt;}
.yc6{bottom:165.946667pt;}
.ye0{bottom:166.106667pt;}
.y98{bottom:166.586667pt;}
.y66{bottom:169.626667pt;}
.y137{bottom:178.426667pt;}
.y35{bottom:178.906667pt;}
.y117{bottom:182.906667pt;}
.yc5{bottom:184.346667pt;}
.ydf{bottom:184.506667pt;}
.y97{bottom:184.986667pt;}
.y65{bottom:188.026667pt;}
.y136{bottom:195.386667pt;}
.y34{bottom:195.866667pt;}
.y116{bottom:201.306667pt;}
.yc4{bottom:202.746667pt;}
.yde{bottom:202.906667pt;}
.y96{bottom:203.386667pt;}
.y64{bottom:206.426667pt;}
.y135{bottom:212.186667pt;}
.y33{bottom:212.666667pt;}
.y115{bottom:219.706667pt;}
.ydd{bottom:221.306667pt;}
.y95{bottom:221.786667pt;}
.y63{bottom:224.826667pt;}
.y134{bottom:228.986667pt;}
.y32{bottom:229.626667pt;}
.y114{bottom:234.106667pt;}
.yf8{bottom:236.200000pt;}
.yc3{bottom:239.546667pt;}
.ydc{bottom:239.706667pt;}
.y94{bottom:240.186667pt;}
.y62{bottom:243.226667pt;}
.y133{bottom:245.946667pt;}
.y31{bottom:246.426667pt;}
.yc2{bottom:257.946667pt;}
.ydb{bottom:258.106667pt;}
.y93{bottom:258.586667pt;}
.y61{bottom:261.626667pt;}
.y132{bottom:262.746667pt;}
.y30{bottom:263.226667pt;}
.yf4{bottom:273.000000pt;}
.yc1{bottom:276.346667pt;}
.yda{bottom:276.506667pt;}
.y92{bottom:276.986667pt;}
.y131{bottom:279.706667pt;}
.y60{bottom:280.026667pt;}
.y2f{bottom:280.186667pt;}
.yc0{bottom:294.746667pt;}
.yd9{bottom:294.906667pt;}
.y91{bottom:295.386667pt;}
.y130{bottom:296.506667pt;}
.y2e{bottom:296.986667pt;}
.y5f{bottom:298.426667pt;}
.ybf{bottom:313.146667pt;}
.yd8{bottom:313.306667pt;}
.y90{bottom:313.786667pt;}
.y2d{bottom:313.946667pt;}
.y5e{bottom:316.826667pt;}
.y12f{bottom:330.266667pt;}
.y2c{bottom:330.746667pt;}
.ybe{bottom:331.546667pt;}
.yd7{bottom:331.706667pt;}
.y8f{bottom:332.186667pt;}
.y5d{bottom:335.226667pt;}
.y12e{bottom:347.106667pt;}
.y2b{bottom:347.746667pt;}
.ybd{bottom:349.986667pt;}
.y8e{bottom:350.626667pt;}
.y5c{bottom:353.666667pt;}
.y12d{bottom:364.066667pt;}
.y2a{bottom:364.546667pt;}
.ybc{bottom:368.386667pt;}
.y8d{bottom:369.026667pt;}
.y5b{bottom:372.066667pt;}
.yd6{bottom:379.426667pt;}
.y12c{bottom:380.866667pt;}
.y29{bottom:381.346667pt;}
.ybb{bottom:386.786667pt;}
.y8c{bottom:387.426667pt;}
.y5a{bottom:390.466667pt;}
.y12b{bottom:397.666667pt;}
.yd5{bottom:397.826667pt;}
.y28{bottom:398.306667pt;}
.yba{bottom:405.186667pt;}
.y8b{bottom:405.826667pt;}
.y105{bottom:406.466667pt;}
.y59{bottom:408.866667pt;}
.y12a{bottom:414.626667pt;}
.y27{bottom:415.106667pt;}
.yd4{bottom:416.226667pt;}
.yf3{bottom:420.226667pt;}
.yb9{bottom:423.586667pt;}
.y8a{bottom:424.226667pt;}
.y104{bottom:424.866667pt;}
.y58{bottom:427.266667pt;}
.y129{bottom:431.426667pt;}
.y26{bottom:432.066667pt;}
.yd3{bottom:434.146667pt;}
.yb8{bottom:441.666667pt;}
.y89{bottom:442.626667pt;}
.y103{bottom:443.266667pt;}
.y57{bottom:445.666667pt;}
.yd2{bottom:447.746667pt;}
.y128{bottom:448.386667pt;}
.y25{bottom:448.866667pt;}
.yb1{bottom:456.546667pt;}
.yf2{bottom:457.026667pt;}
.y88{bottom:461.026667pt;}
.y102{bottom:461.666667pt;}
.y56{bottom:464.066667pt;}
.y127{bottom:465.186667pt;}
.y24{bottom:465.666667pt;}
.y113{bottom:472.386667pt;}
.yd1{bottom:478.146667pt;}
.y87{bottom:479.426667pt;}
.y101{bottom:479.906667pt;}
.y126{bottom:481.986667pt;}
.y55{bottom:482.466667pt;}
.y23{bottom:482.626667pt;}
.y112{bottom:490.786667pt;}
.yd0{bottom:495.426667pt;}
.y100{bottom:497.666667pt;}
.y86{bottom:497.826667pt;}
.y125{bottom:498.946667pt;}
.y22{bottom:499.426667pt;}
.y54{bottom:500.866667pt;}
.y111{bottom:509.186667pt;}
.ycf{bottom:513.666667pt;}
.y124{bottom:515.746667pt;}
.y85{bottom:516.226667pt;}
.y21{bottom:516.706667pt;}
.y53{bottom:519.266667pt;}
.y110{bottom:527.586667pt;}
.yff{bottom:531.426667pt;}
.yce{bottom:531.746667pt;}
.y123{bottom:532.706667pt;}
.y84{bottom:534.626667pt;}
.y20{bottom:535.426667pt;}
.y52{bottom:537.666667pt;}
.yfe{bottom:543.586667pt;}
.ycd{bottom:545.346667pt;}
.y10f{bottom:545.986667pt;}
.y122{bottom:549.506667pt;}
.y83{bottom:553.026667pt;}
.y1f{bottom:555.266667pt;}
.y51{bottom:556.066667pt;}
.y10e{bottom:564.413333pt;}
.y121{bottom:566.493333pt;}
.y82{bottom:571.453333pt;}
.yae{bottom:571.933333pt;}
.y50{bottom:574.493333pt;}
.y1e{bottom:574.813333pt;}
.ycc{bottom:575.613333pt;}
.y10d{bottom:582.813333pt;}
.y120{bottom:583.293333pt;}
.yf1{bottom:585.853333pt;}
.y81{bottom:589.853333pt;}
.y4f{bottom:592.893333pt;}
.y1d{bottom:595.133333pt;}
.y11f{bottom:600.093333pt;}
.y10c{bottom:601.213333pt;}
.yf0{bottom:604.253333pt;}
.y80{bottom:608.253333pt;}
.y4e{bottom:611.293333pt;}
.yaa{bottom:612.573333pt;}
.y1c{bottom:614.653333pt;}
.y11e{bottom:617.053333pt;}
.y10b{bottom:619.613333pt;}
.yee{bottom:622.653333pt;}
.y7f{bottom:626.653333pt;}
.y4d{bottom:629.693333pt;}
.y11d{bottom:633.853333pt;}
.y1b{bottom:635.133333pt;}
.y10a{bottom:638.013333pt;}
.y7e{bottom:645.053333pt;}
.y4c{bottom:648.093333pt;}
.y11c{bottom:650.813333pt;}
.y109{bottom:652.573333pt;}
.y1a{bottom:654.973333pt;}
.y7d{bottom:663.453333pt;}
.y4b{bottom:666.493333pt;}
.y11b{bottom:667.613333pt;}
.y14d{bottom:669.533333pt;}
.y19{bottom:674.973333pt;}
.y7c{bottom:681.853333pt;}
.y4a{bottom:684.893333pt;}
.y14c{bottom:687.933333pt;}
.y9f{bottom:691.133333pt;}
.y18{bottom:694.333333pt;}
.y7b{bottom:700.253333pt;}
.y14a{bottom:702.333333pt;}
.y49{bottom:703.293333pt;}
.y17{bottom:714.813333pt;}
.y7a{bottom:718.653333pt;}
.y149{bottom:720.733333pt;}
.ycb{bottom:721.053333pt;}
.y48{bottom:721.693333pt;}
.y16{bottom:734.653333pt;}
.y79{bottom:737.053333pt;}
.y47{bottom:740.093333pt;}
.y15{bottom:754.173333pt;}
.yca{bottom:754.813333pt;}
.y78{bottom:755.453333pt;}
.y46{bottom:758.493333pt;}
.y148{bottom:761.053333pt;}
.yc9{bottom:766.973333pt;}
.ye7{bottom:769.853333pt;}
.y77{bottom:773.853333pt;}
.y14{bottom:774.333333pt;}
.y45{bottom:776.893333pt;}
.y147{bottom:778.013333pt;}
.y9d{bottom:788.133333pt;}
.y76{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.y146{bottom:794.853333pt;}
.y44{bottom:795.333333pt;}
.y75{bottom:810.693333pt;}
.y145{bottom:811.813333pt;}
.y43{bottom:813.733333pt;}
.y12{bottom:814.373333pt;}
.y144{bottom:828.613333pt;}
.y74{bottom:829.093333pt;}
.y9c{bottom:830.213333pt;}
.yfd{bottom:831.493333pt;}
.y42{bottom:832.133333pt;}
.y11{bottom:835.973333pt;}
.y143{bottom:845.573333pt;}
.y73{bottom:847.493333pt;}
.y41{bottom:850.533333pt;}
.y10{bottom:857.413333pt;}
.y142{bottom:862.373333pt;}
.y72{bottom:865.893333pt;}
.y40{bottom:868.933333pt;}
.yf{bottom:878.853333pt;}
.y141{bottom:879.173333pt;}
.y71{bottom:884.293333pt;}
.y3f{bottom:887.333333pt;}
.y140{bottom:896.133333pt;}
.ye5{bottom:898.693333pt;}
.ye{bottom:900.293333pt;}
.y70{bottom:902.693333pt;}
.y3e{bottom:905.733333pt;}
.y13f{bottom:912.933333pt;}
.y69{bottom:920.133333pt;}
.y6f{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y3d{bottom:924.133333pt;}
.y13e{bottom:929.893333pt;}
.ye3{bottom:935.493333pt;}
.y9b{bottom:939.493333pt;}
.y3c{bottom:942.533333pt;}
.yc{bottom:943.013333pt;}
.y13d{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y6e{bottom:957.893333pt;}
.y13c{bottom:963.493333pt;}
.y6d{bottom:976.293333pt;}
.y3b{bottom:979.333333pt;}
.y13b{bottom:980.453333pt;}
.y6c{bottom:994.693333pt;}
.y3a{bottom:997.253333pt;}
.y6b{bottom:1013.120000pt;}
.y39{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h12{height:18.386667pt;}
.h1f{height:18.400000pt;}
.h1c{height:36.786667pt;}
.h23{height:36.800000pt;}
.h17{height:37.920000pt;}
.h3{height:40.163750pt;}
.he{height:50.025000pt;}
.h19{height:52.108438pt;}
.h1a{height:52.134375pt;}
.h22{height:52.785000pt;}
.h10{height:55.186667pt;}
.h1e{height:55.200000pt;}
.hf{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.hb{height:58.725000pt;}
.h21{height:60.519362pt;}
.hc{height:62.781250pt;}
.h7{height:62.812500pt;}
.h13{height:64.500000pt;}
.h8{height:64.752187pt;}
.h15{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h16{height:75.840000pt;}
.h20{height:91.986667pt;}
.h14{height:94.240000pt;}
.h1b{height:94.812500pt;}
.h18{height:112.666667pt;}
.h1d{height:128.820000pt;}
.h11{height:280.143750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.710667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w11{width:164.505333pt;}
.w6{width:176.225333pt;}
.wa{width:188.705333pt;}
.w8{width:207.253333pt;}
.wd{width:214.625333pt;}
.wf{width:229.665333pt;}
.w7{width:256.986667pt;}
.w13{width:300.225333pt;}
.w14{width:356.733333pt;}
.w2{width:422.972000pt;}
.w10{width:427.293333pt;}
.we{width:442.333333pt;}
.wb{width:453.186667pt;}
.w12{width:492.440000pt;}
.w9{width:641.880000pt;}
.wc{width:656.958667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x2a{left:25.950667pt;}
.x26{left:44.830667pt;}
.x1b{left:53.470667pt;}
.x1f{left:61.306667pt;}
.x2{left:68.481333pt;}
.x35{left:73.306667pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x1d{left:82.400000pt;}
.xa{left:88.992000pt;}
.xf{left:113.312000pt;}
.xd{left:122.912000pt;}
.xc{left:143.706667pt;}
.x5{left:153.466667pt;}
.x9{left:163.386667pt;}
.x17{left:174.106667pt;}
.x11{left:195.226667pt;}
.xe{left:204.346667pt;}
.x33{left:205.466667pt;}
.x2b{left:233.000000pt;}
.x2f{left:251.266667pt;}
.x1c{left:252.866667pt;}
.x27{left:257.186667pt;}
.x28{left:283.106667pt;}
.x21{left:294.306667pt;}
.x29{left:298.146667pt;}
.x31{left:300.866667pt;}
.x2d{left:303.106667pt;}
.x15{left:346.946667pt;}
.x25{left:353.986667pt;}
.x19{left:363.266667pt;}
.x34{left:368.706667pt;}
.x24{left:378.786667pt;}
.x13{left:382.946667pt;}
.x18{left:385.346667pt;}
.x23{left:389.506667pt;}
.xb{left:396.893333pt;}
.x22{left:415.773333pt;}
.x10{left:417.853333pt;}
.x14{left:418.813333pt;}
.x16{left:438.493333pt;}
.x4{left:491.466667pt;}
.x1e{left:510.506667pt;}
.x1a{left:523.133333pt;}
.x2e{left:549.373333pt;}
.x20{left:574.693333pt;}
.x12{left:617.573333pt;}
.x30{left:618.533333pt;}
.x6{left:652.133333pt;}
.x32{left:655.333333pt;}
.x8{left:718.240000pt;}
.x2c{left:727.200000pt;}
}




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