
    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_fdceb1e6586ebbd6d33c59e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aac2a912037f6d9bf27d8ec1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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_329551471f0cf557b79a79f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_a8e2f89d5e852947524623a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_b1b29457233381285f6df073.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e90126d7a0015795915acad8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_365b36a00c365c35f9b5606e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7799fdbabb4048ec363b294f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_87ce259459ee99a65d3eb6fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.642000px;}
.ls19{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.172800px;}
.ls16{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.070560px;}
.ls1d{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.440000px;}
.lsb{letter-spacing:6.480000px;}
.ls1{letter-spacing:10.080000px;}
.ls17{letter-spacing:25.200000px;}
.lsa{letter-spacing:37.001280px;}
.ls18{letter-spacing:39.881280px;}
.ls1b{letter-spacing:43.842720px;}
.lse{letter-spacing:55.386720px;}
.lsc{letter-spacing:64.002720px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.760000px;}
.wse{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws8{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.145400px;}
.wsa{word-spacing:-16.102200px;}
.ws4{word-spacing:-14.940000px;}
.wsf{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-5.299200px;}
._9{margin-left:-4.173120px;}
._8{margin-left:-2.980800px;}
._0{margin-left:-1.258560px;}
._1{width:1.314720px;}
._4{width:2.584560px;}
._3{width:3.617040px;}
._a{width:5.564160px;}
._5{width:6.690240px;}
._c{width:8.227680px;}
._b{width:9.273600px;}
._6{width:10.333440px;}
._7{width:11.721120px;}
._f{width:13.238880px;}
._10{width:14.307840px;}
._e{width:15.367680px;}
._1c{width:16.608000px;}
._d{width:18.557280px;}
._11{width:19.805760px;}
._12{width:21.000000px;}
._15{width:23.051520px;}
._13{width:24.177600px;}
._14{width:25.614240px;}
._17{width:26.763840px;}
._18{width:27.934560px;}
._1d{width:29.012160px;}
._1a{width:33.649920px;}
._2{width:286.451760px;}
._1b{width:846.156000px;}
._19{width:847.596000px;}
.fc8{color:rgb(238,0,0);}
.fc3{color:rgb(47,84,150);}
.fc5{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc7{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.780000px;}
.y3c{bottom:3.960000px;}
.y1b{bottom:4.860000px;}
.y1b3{bottom:5.040000px;}
.y1c2{bottom:5.400000px;}
.y1be{bottom:6.300000px;}
.y1b9{bottom:7.920000px;}
.yed{bottom:9.720000px;}
.y1e{bottom:9.900000px;}
.y43{bottom:9.945000px;}
.y1c0{bottom:14.760000px;}
.y1c4{bottom:14.940000px;}
.y3e{bottom:15.660000px;}
.yf3{bottom:17.460000px;}
.yf1{bottom:17.505000px;}
.y129{bottom:17.640000px;}
.yef{bottom:21.600000px;}
.y33{bottom:22.680000px;}
.y1c1{bottom:24.300000px;}
.y1c5{bottom:24.480000px;}
.y3b{bottom:24.660000px;}
.y1bd{bottom:25.200000px;}
.y1b8{bottom:27.000000px;}
.y1bb{bottom:34.740000px;}
.yff{bottom:40.500000px;}
.yfa{bottom:41.220000px;}
.yfc{bottom:41.265000px;}
.y32{bottom:41.760000px;}
.y122{bottom:42.660000px;}
.y11f{bottom:43.380000px;}
.y1bc{bottom:44.100000px;}
.y3a{bottom:45.354000px;}
.y1b5{bottom:45.900000px;}
.y9{bottom:56.340000px;}
.y31{bottom:60.660000px;}
.y1b7{bottom:65.025000px;}
.y39{bottom:66.054000px;}
.y8{bottom:71.316000px;}
.y30{bottom:79.560000px;}
.y40{bottom:79.920000px;}
.y1b6{bottom:83.925000px;}
.y38{bottom:86.394000px;}
.y2f{bottom:98.685000px;}
.y37{bottom:105.654000px;}
.y6b{bottom:111.816000px;}
.y35{bottom:112.176000px;}
.y2e{bottom:117.585000px;}
.y11d{bottom:121.536000px;}
.y9b{bottom:123.156000px;}
.y36{bottom:126.354000px;}
.y152{bottom:126.396000px;}
.y126{bottom:127.836000px;}
.yf8{bottom:128.376000px;}
.yc7{bottom:128.556000px;}
.yea{bottom:130.356000px;}
.y6a{bottom:130.716000px;}
.y1ae{bottom:135.936000px;}
.y2d{bottom:136.665000px;}
.y11c{bottom:140.436000px;}
.y9a{bottom:142.056000px;}
.y151{bottom:145.296000px;}
.y15e{bottom:146.376000px;}
.y125{bottom:147.096000px;}
.yf7{bottom:147.456000px;}
.yc6{bottom:147.636000px;}
.ye9{bottom:149.256000px;}
.y69{bottom:149.616000px;}
.y1ad{bottom:151.230000px;}
.y2c{bottom:155.565000px;}
.y11b{bottom:159.330000px;}
.y99{bottom:160.950000px;}
.y124{bottom:163.110000px;}
.y150{bottom:164.370000px;}
.y15d{bottom:165.450000px;}
.yf6{bottom:166.350000px;}
.yc5{bottom:166.530000px;}
.ye8{bottom:168.330000px;}
.y68{bottom:168.690000px;}
.y2b{bottom:174.645000px;}
.y11a{bottom:178.410000px;}
.y98{bottom:180.030000px;}
.yf5{bottom:182.370000px;}
.y14f{bottom:183.270000px;}
.y15c{bottom:184.350000px;}
.yc4{bottom:185.610000px;}
.ye7{bottom:187.230000px;}
.y67{bottom:187.590000px;}
.y1ac{bottom:189.930000px;}
.y2a{bottom:193.545000px;}
.y119{bottom:197.310000px;}
.y97{bottom:198.930000px;}
.y18c{bottom:200.730000px;}
.y14e{bottom:202.170000px;}
.y15b{bottom:203.250000px;}
.yc3{bottom:204.510000px;}
.ye6{bottom:206.310000px;}
.y66{bottom:206.670000px;}
.y1ab{bottom:210.630000px;}
.y29{bottom:212.445000px;}
.y118{bottom:216.390000px;}
.y96{bottom:218.010000px;}
.y14d{bottom:221.250000px;}
.y18b{bottom:221.430000px;}
.y15a{bottom:222.330000px;}
.y123{bottom:222.510000px;}
.yc2{bottom:223.410000px;}
.ye5{bottom:225.210000px;}
.y65{bottom:225.570000px;}
.yf4{bottom:229.710000px;}
.y28{bottom:231.525000px;}
.y117{bottom:235.290000px;}
.y95{bottom:236.910000px;}
.y14c{bottom:240.150000px;}
.y159{bottom:241.230000px;}
.yc1{bottom:242.490000px;}
.ye4{bottom:243.750000px;}
.y64{bottom:244.470000px;}
.y1aa{bottom:249.330000px;}
.y27{bottom:250.425000px;}
.y116{bottom:254.190000px;}
.y1f{bottom:255.270000px;}
.y94{bottom:255.810000px;}
.y14b{bottom:259.230000px;}
.y18a{bottom:260.130000px;}
.y158{bottom:261.030000px;}
.yc0{bottom:261.390000px;}
.y63{bottom:263.550000px;}
.y26{bottom:269.505000px;}
.y1a9{bottom:270.030000px;}
.y115{bottom:273.270000px;}
.y93{bottom:274.890000px;}
.y157{bottom:276.690000px;}
.yf2{bottom:276.870000px;}
.y14a{bottom:278.130000px;}
.ybf{bottom:280.470000px;}
.y189{bottom:280.830000px;}
.y121{bottom:281.910000px;}
.y62{bottom:282.450000px;}
.y25{bottom:288.405000px;}
.y1a8{bottom:290.730000px;}
.y114{bottom:292.170000px;}
.y92{bottom:293.790000px;}
.y149{bottom:297.030000px;}
.ybe{bottom:299.370000px;}
.y61{bottom:301.530000px;}
.y24{bottom:307.305000px;}
.y113{bottom:311.250000px;}
.y91{bottom:312.870000px;}
.y148{bottom:316.110000px;}
.ybd{bottom:318.270000px;}
.y60{bottom:320.430000px;}
.y188{bottom:322.230000px;}
.yf0{bottom:324.210000px;}
.y23{bottom:326.385000px;}
.y1a7{bottom:329.430000px;}
.y112{bottom:330.150000px;}
.y90{bottom:331.770000px;}
.y147{bottom:335.010000px;}
.ybc{bottom:337.395000px;}
.y5f{bottom:339.375000px;}
.y120{bottom:340.635000px;}
.y22{bottom:345.285000px;}
.y111{bottom:349.275000px;}
.y1a6{bottom:350.175000px;}
.y8f{bottom:350.715000px;}
.y146{bottom:354.135000px;}
.ybb{bottom:356.295000px;}
.y5e{bottom:358.455000px;}
.y187{bottom:360.975000px;}
.y21{bottom:364.395000px;}
.y110{bottom:368.175000px;}
.y8e{bottom:369.795000px;}
.y1a5{bottom:370.875000px;}
.yee{bottom:371.415000px;}
.y145{bottom:373.035000px;}
.yba{bottom:375.375000px;}
.y5d{bottom:377.355000px;}
.y186{bottom:381.675000px;}
.y20{bottom:383.295000px;}
.y10f{bottom:387.075000px;}
.y8d{bottom:388.695000px;}
.y144{bottom:391.935000px;}
.ye3{bottom:393.915000px;}
.yb9{bottom:394.275000px;}
.y5c{bottom:396.435000px;}
.y11e{bottom:401.475000px;}
.y185{bottom:402.375000px;}
.y10e{bottom:406.155000px;}
.y8c{bottom:407.775000px;}
.y1a4{bottom:409.575000px;}
.y143{bottom:411.015000px;}
.ye2{bottom:411.555000px;}
.yb8{bottom:413.175000px;}
.y5b{bottom:415.335000px;}
.y184{bottom:423.075000px;}
.y10d{bottom:425.055000px;}
.y8b{bottom:426.675000px;}
.y142{bottom:429.915000px;}
.y1a3{bottom:430.275000px;}
.ye1{bottom:430.455000px;}
.y16f{bottom:431.535000px;}
.yb7{bottom:432.255000px;}
.y5a{bottom:434.415000px;}
.y10c{bottom:444.135000px;}
.y8a{bottom:445.575000px;}
.y141{bottom:448.995000px;}
.ye0{bottom:449.535000px;}
.y1a2{bottom:450.975000px;}
.yb6{bottom:451.155000px;}
.y16e{bottom:451.875000px;}
.y59{bottom:453.315000px;}
.y183{bottom:461.775000px;}
.y10b{bottom:463.035000px;}
.y89{bottom:464.655000px;}
.y140{bottom:467.895000px;}
.ydf{bottom:468.435000px;}
.yb5{bottom:470.235000px;}
.y16d{bottom:471.135000px;}
.y58{bottom:472.215000px;}
.y10a{bottom:481.935000px;}
.y182{bottom:482.475000px;}
.y88{bottom:483.555000px;}
.y13f{bottom:486.975000px;}
.yde{bottom:487.335000px;}
.y16c{bottom:487.875000px;}
.yb4{bottom:489.135000px;}
.y1a1{bottom:489.675000px;}
.y57{bottom:491.295000px;}
.y109{bottom:501.015000px;}
.y87{bottom:502.635000px;}
.y13e{bottom:505.875000px;}
.ydd{bottom:506.415000px;}
.yb3{bottom:508.035000px;}
.y56{bottom:510.195000px;}
.y1a0{bottom:510.375000px;}
.y108{bottom:519.915000px;}
.y181{bottom:521.175000px;}
.y86{bottom:521.535000px;}
.y16b{bottom:524.235000px;}
.y13d{bottom:524.775000px;}
.ydc{bottom:525.315000px;}
.yb2{bottom:527.115000px;}
.y55{bottom:529.275000px;}
.y19f{bottom:531.075000px;}
.y107{bottom:538.995000px;}
.y85{bottom:540.435000px;}
.y180{bottom:541.875000px;}
.y13c{bottom:543.855000px;}
.ydb{bottom:544.395000px;}
.y16a{bottom:544.755000px;}
.yb1{bottom:546.015000px;}
.y54{bottom:548.175000px;}
.y106{bottom:557.895000px;}
.y84{bottom:559.515000px;}
.y17f{bottom:562.575000px;}
.y13b{bottom:562.755000px;}
.yda{bottom:563.295000px;}
.y169{bottom:563.655000px;}
.yb0{bottom:565.095000px;}
.y53{bottom:567.075000px;}
.y19e{bottom:569.775000px;}
.y105{bottom:576.795000px;}
.y83{bottom:578.415000px;}
.y13a{bottom:581.835000px;}
.yd9{bottom:582.375000px;}
.y168{bottom:582.735000px;}
.y17e{bottom:583.275000px;}
.yaf{bottom:583.995000px;}
.y52{bottom:586.155000px;}
.y19d{bottom:590.475000px;}
.y104{bottom:595.875000px;}
.y82{bottom:597.495000px;}
.y1c8{bottom:598.215000px;}
.y139{bottom:600.735000px;}
.yd8{bottom:601.275000px;}
.y167{bottom:601.995000px;}
.yae{bottom:603.075000px;}
.y51{bottom:605.085000px;}
.y19c{bottom:611.205000px;}
.y103{bottom:614.805000px;}
.y81{bottom:616.425000px;}
.y1c7{bottom:617.145000px;}
.y166{bottom:618.765000px;}
.y138{bottom:619.665000px;}
.yd7{bottom:620.205000px;}
.yad{bottom:622.005000px;}
.y50{bottom:624.165000px;}
.y1c6{bottom:633.165000px;}
.y102{bottom:633.885000px;}
.y80{bottom:635.505000px;}
.y137{bottom:638.745000px;}
.yd6{bottom:639.285000px;}
.yac{bottom:640.905000px;}
.y17d{bottom:642.705000px;}
.y4f{bottom:643.065000px;}
.y19b{bottom:649.905000px;}
.y101{bottom:652.785000px;}
.y1d{bottom:653.865000px;}
.y7f{bottom:654.405000px;}
.y165{bottom:655.125000px;}
.y136{bottom:657.645000px;}
.yd5{bottom:658.185000px;}
.yab{bottom:659.985000px;}
.y4e{bottom:661.965000px;}
.y100{bottom:668.805000px;}
.y19a{bottom:670.605000px;}
.y7e{bottom:673.305000px;}
.y1c3{bottom:675.285000px;}
.y164{bottom:675.465000px;}
.y135{bottom:676.725000px;}
.yd4{bottom:677.265000px;}
.yaa{bottom:678.885000px;}
.y4d{bottom:681.045000px;}
.y17c{bottom:681.405000px;}
.y1c{bottom:689.865000px;}
.y7d{bottom:692.385000px;}
.y163{bottom:694.365000px;}
.y134{bottom:695.625000px;}
.yd3{bottom:696.165000px;}
.ya9{bottom:697.965000px;}
.y4c{bottom:699.945000px;}
.y17b{bottom:702.105000px;}
.y1a{bottom:706.065000px;}
.y199{bottom:709.305000px;}
.y7c{bottom:711.285000px;}
.y162{bottom:713.445000px;}
.y133{bottom:714.525000px;}
.yd2{bottom:715.065000px;}
.ya8{bottom:716.865000px;}
.y1bf{bottom:717.585000px;}
.y4b{bottom:719.025000px;}
.yfe{bottom:726.045000px;}
.y198{bottom:730.005000px;}
.y7b{bottom:730.365000px;}
.y19{bottom:731.625000px;}
.y161{bottom:732.705000px;}
.y132{bottom:733.605000px;}
.yd1{bottom:734.145000px;}
.ya7{bottom:735.765000px;}
.y4a{bottom:737.925000px;}
.y17a{bottom:740.805000px;}
.y18{bottom:748.905000px;}
.y7a{bottom:749.265000px;}
.y160{bottom:749.445000px;}
.y197{bottom:750.705000px;}
.y131{bottom:752.505000px;}
.yd0{bottom:753.045000px;}
.ya6{bottom:754.845000px;}
.y49{bottom:756.825000px;}
.y1ba{bottom:759.705000px;}
.y179{bottom:761.505000px;}
.y17{bottom:766.005000px;}
.y79{bottom:768.165000px;}
.y130{bottom:771.585000px;}
.ycf{bottom:772.125000px;}
.ya5{bottom:773.745000px;}
.y48{bottom:775.905000px;}
.yfd{bottom:782.565000px;}
.y16{bottom:783.285000px;}
.y15f{bottom:785.805000px;}
.y78{bottom:787.245000px;}
.y196{bottom:789.405000px;}
.y12f{bottom:790.485000px;}
.yce{bottom:791.025000px;}
.ya4{bottom:792.825000px;}
.y47{bottom:794.805000px;}
.y178{bottom:800.205000px;}
.y15{bottom:805.785000px;}
.y77{bottom:806.145000px;}
.y12e{bottom:809.385000px;}
.ycd{bottom:809.925000px;}
.y195{bottom:810.105000px;}
.ya3{bottom:811.725000px;}
.y46{bottom:813.885000px;}
.y177{bottom:820.905000px;}
.y1b4{bottom:822.525000px;}
.y14{bottom:823.065000px;}
.y76{bottom:825.225000px;}
.y12d{bottom:828.465000px;}
.ycc{bottom:829.005000px;}
.ya2{bottom:830.625000px;}
.y194{bottom:830.805000px;}
.y45{bottom:832.785000px;}
.yfb{bottom:839.805000px;}
.y13{bottom:840.345000px;}
.y176{bottom:841.605000px;}
.y75{bottom:844.125000px;}
.yec{bottom:844.305000px;}
.y12c{bottom:844.485000px;}
.ycb{bottom:847.905000px;}
.ya1{bottom:849.705000px;}
.y193{bottom:851.505000px;}
.y44{bottom:851.685000px;}
.y12{bottom:857.625000px;}
.y74{bottom:863.025000px;}
.y42{bottom:866.985000px;}
.ya0{bottom:868.605000px;}
.y11{bottom:874.770000px;}
.y12b{bottom:878.370000px;}
.y175{bottom:880.350000px;}
.yeb{bottom:880.710000px;}
.y73{bottom:882.150000px;}
.yca{bottom:885.930000px;}
.y9f{bottom:887.730000px;}
.y192{bottom:890.250000px;}
.y10{bottom:892.050000px;}
.yf9{bottom:897.090000px;}
.y72{bottom:901.050000px;}
.y41{bottom:903.390000px;}
.yf{bottom:904.470000px;}
.yc9{bottom:905.190000px;}
.y9e{bottom:906.630000px;}
.y191{bottom:910.950000px;}
.y12a{bottom:912.030000px;}
.y3f{bottom:920.130000px;}
.y174{bottom:921.750000px;}
.yc8{bottom:921.930000px;}
.ye{bottom:923.550000px;}
.y9d{bottom:925.530000px;}
.y1b2{bottom:926.790000px;}
.y190{bottom:931.650000px;}
.y71{bottom:939.030000px;}
.y9c{bottom:940.830000px;}
.yd{bottom:942.090000px;}
.y173{bottom:942.450000px;}
.y156{bottom:944.610000px;}
.y128{bottom:945.870000px;}
.y18f{bottom:952.350000px;}
.y1b1{bottom:952.890000px;}
.y70{bottom:957.930000px;}
.yc{bottom:961.890000px;}
.y155{bottom:963.510000px;}
.y1b0{bottom:971.790000px;}
.y6f{bottom:977.010000px;}
.y127{bottom:979.530000px;}
.y172{bottom:980.790000px;}
.y154{bottom:982.590000px;}
.y1af{bottom:987.090000px;}
.y18e{bottom:991.050000px;}
.yb{bottom:993.030000px;}
.y6e{bottom:995.910000px;}
.y171{bottom:996.090000px;}
.y153{bottom:997.890000px;}
.y18d{bottom:1011.750000px;}
.y6d{bottom:1014.990000px;}
.y3d{bottom:1016.790000px;}
.ya{bottom:1023.990000px;}
.y170{bottom:1032.450000px;}
.y6c{bottom:1033.890000px;}
.y7{bottom:1053.690000px;}
.y6{bottom:1072.950000px;}
.y5{bottom:1092.030000px;}
.y4{bottom:1111.290000px;}
.y3{bottom:1136.850000px;}
.y2{bottom:1167.840000px;}
.y1{bottom:1193.580000px;}
.hb{height:21.600000px;}
.h1e{height:30.960000px;}
.hc{height:32.400000px;}
.ha{height:32.425313px;}
.h11{height:32.436000px;}
.h1f{height:32.940000px;}
.h20{height:32.976000px;}
.h23{height:41.400000px;}
.h17{height:44.860781px;}
.h16{height:46.440000px;}
.h14{height:46.476000px;}
.h15{height:46.620000px;}
.h2{height:46.736719px;}
.h8{height:49.838906px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h1b{height:54.596250px;}
.h13{height:54.720000px;}
.h5{height:55.243125px;}
.h1a{height:55.800000px;}
.h18{height:56.520000px;}
.h19{height:56.556000px;}
.h1d{height:57.996000px;}
.h1c{height:58.680000px;}
.hf{height:60.046875px;}
.h22{height:62.100000px;}
.h12{height:65.884219px;}
.h6{height:67.824844px;}
.h7{height:76.201172px;}
.h3{height:81.000000px;}
.h10{height:96.660000px;}
.h21{height:103.536000px;}
.he{height:143.100000px;}
.hd{height:398.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:83.736000px;}
.w12{width:84.816000px;}
.wd{width:84.960000px;}
.w11{width:86.040000px;}
.w5{width:103.320000px;}
.w8{width:105.876000px;}
.w10{width:122.616000px;}
.wc{width:125.676000px;}
.w6{width:141.516000px;}
.w9{width:144.720000px;}
.wa{width:144.756000px;}
.wb{width:144.936000px;}
.wf{width:166.890000px;}
.w13{width:169.050000px;}
.w14{width:179.310000px;}
.w7{width:196.410000px;}
.w15{width:512.715000px;}
.w3{width:675.645000px;}
.w4{width:676.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x23{left:10.440000px;}
.x32{left:11.700000px;}
.x22{left:12.780000px;}
.x1c{left:14.040000px;}
.x24{left:15.480000px;}
.x3b{left:16.560000px;}
.x2e{left:17.640000px;}
.x28{left:18.720000px;}
.x20{left:19.980000px;}
.x31{left:21.240000px;}
.x3c{left:23.580000px;}
.x37{left:25.200000px;}
.x1e{left:27.765000px;}
.x26{left:32.760000px;}
.x33{left:34.020000px;}
.x3d{left:36.720000px;}
.x29{left:38.880000px;}
.x3a{left:40.680000px;}
.x25{left:43.020000px;}
.x27{left:46.620000px;}
.x16{left:108.756000px;}
.x43{left:114.875987px;}
.x13{left:130.355987px;}
.xa{left:132.875987px;}
.x18{left:135.035987px;}
.x11{left:149.615987px;}
.x14{left:154.649987px;}
.x19{left:162.029987px;}
.xe{left:164.549987px;}
.xd{left:169.949987px;}
.xc{left:173.009987px;}
.x9{left:174.629987px;}
.x12{left:176.969987px;}
.x42{left:178.049987px;}
.x2{left:179.129987px;}
.x8{left:184.529987px;}
.x1a{left:189.029987px;}
.x2b{left:195.869987px;}
.xf{left:201.089987px;}
.x36{left:214.770000px;}
.x2a{left:218.549987px;}
.x34{left:225.209987px;}
.xb{left:230.969987px;}
.x3{left:232.769987px;}
.x10{left:252.929987px;}
.x1d{left:258.150000px;}
.x5{left:265.349987px;}
.x1{left:279.254987px;}
.x2d{left:281.955000px;}
.x44{left:288.435000px;}
.x2c{left:290.054987px;}
.x1b{left:302.294987px;}
.x6{left:310.034987px;}
.x3f{left:337.575000px;}
.x38{left:341.175000px;}
.x15{left:363.854987px;}
.x3e{left:368.534987px;}
.x4{left:373.214987px;}
.x35{left:377.534987px;}
.x1f{left:400.395000px;}
.x40{left:424.335000px;}
.x2f{left:427.395000px;}
.x7{left:446.474987px;}
.x41{left:509.865000px;}
.x39{left:511.305000px;}
.x21{left:542.625000px;}
.x30{left:572.865000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.570667pt;}
.ls19{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.153600pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.062720pt;}
.ls1d{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.280000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls1{letter-spacing:8.960000pt;}
.ls17{letter-spacing:22.400000pt;}
.lsa{letter-spacing:32.890027pt;}
.ls18{letter-spacing:35.450027pt;}
.ls1b{letter-spacing:38.971307pt;}
.lse{letter-spacing:49.232640pt;}
.lsc{letter-spacing:56.891307pt;}
.ws9{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.120000pt;}
.wse{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.351467pt;}
.wsa{word-spacing:-14.313067pt;}
.ws4{word-spacing:-13.280000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-4.710400pt;}
._9{margin-left:-3.709440pt;}
._8{margin-left:-2.649600pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.168640pt;}
._4{width:2.297387pt;}
._3{width:3.215147pt;}
._a{width:4.945920pt;}
._5{width:5.946880pt;}
._c{width:7.313493pt;}
._b{width:8.243200pt;}
._6{width:9.185280pt;}
._7{width:10.418773pt;}
._f{width:11.767893pt;}
._10{width:12.718080pt;}
._e{width:13.660160pt;}
._1c{width:14.762667pt;}
._d{width:16.495360pt;}
._11{width:17.605120pt;}
._12{width:18.666667pt;}
._15{width:20.490240pt;}
._13{width:21.491200pt;}
._14{width:22.768213pt;}
._17{width:23.790080pt;}
._18{width:24.830720pt;}
._1d{width:25.788587pt;}
._1a{width:29.911040pt;}
._2{width:254.623787pt;}
._1b{width:752.138667pt;}
._19{width:753.418667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.360000pt;}
.y3c{bottom:3.520000pt;}
.y1b{bottom:4.320000pt;}
.y1b3{bottom:4.480000pt;}
.y1c2{bottom:4.800000pt;}
.y1be{bottom:5.600000pt;}
.y1b9{bottom:7.040000pt;}
.yed{bottom:8.640000pt;}
.y1e{bottom:8.800000pt;}
.y43{bottom:8.840000pt;}
.y1c0{bottom:13.120000pt;}
.y1c4{bottom:13.280000pt;}
.y3e{bottom:13.920000pt;}
.yf3{bottom:15.520000pt;}
.yf1{bottom:15.560000pt;}
.y129{bottom:15.680000pt;}
.yef{bottom:19.200000pt;}
.y33{bottom:20.160000pt;}
.y1c1{bottom:21.600000pt;}
.y1c5{bottom:21.760000pt;}
.y3b{bottom:21.920000pt;}
.y1bd{bottom:22.400000pt;}
.y1b8{bottom:24.000000pt;}
.y1bb{bottom:30.880000pt;}
.yff{bottom:36.000000pt;}
.yfa{bottom:36.640000pt;}
.yfc{bottom:36.680000pt;}
.y32{bottom:37.120000pt;}
.y122{bottom:37.920000pt;}
.y11f{bottom:38.560000pt;}
.y1bc{bottom:39.200000pt;}
.y3a{bottom:40.314667pt;}
.y1b5{bottom:40.800000pt;}
.y9{bottom:50.080000pt;}
.y31{bottom:53.920000pt;}
.y1b7{bottom:57.800000pt;}
.y39{bottom:58.714667pt;}
.y8{bottom:63.392000pt;}
.y30{bottom:70.720000pt;}
.y40{bottom:71.040000pt;}
.y1b6{bottom:74.600000pt;}
.y38{bottom:76.794667pt;}
.y2f{bottom:87.720000pt;}
.y37{bottom:93.914667pt;}
.y6b{bottom:99.392000pt;}
.y35{bottom:99.712000pt;}
.y2e{bottom:104.520000pt;}
.y11d{bottom:108.032000pt;}
.y9b{bottom:109.472000pt;}
.y36{bottom:112.314667pt;}
.y152{bottom:112.352000pt;}
.y126{bottom:113.632000pt;}
.yf8{bottom:114.112000pt;}
.yc7{bottom:114.272000pt;}
.yea{bottom:115.872000pt;}
.y6a{bottom:116.192000pt;}
.y1ae{bottom:120.832000pt;}
.y2d{bottom:121.480000pt;}
.y11c{bottom:124.832000pt;}
.y9a{bottom:126.272000pt;}
.y151{bottom:129.152000pt;}
.y15e{bottom:130.112000pt;}
.y125{bottom:130.752000pt;}
.yf7{bottom:131.072000pt;}
.yc6{bottom:131.232000pt;}
.ye9{bottom:132.672000pt;}
.y69{bottom:132.992000pt;}
.y1ad{bottom:134.426667pt;}
.y2c{bottom:138.280000pt;}
.y11b{bottom:141.626667pt;}
.y99{bottom:143.066667pt;}
.y124{bottom:144.986667pt;}
.y150{bottom:146.106667pt;}
.y15d{bottom:147.066667pt;}
.yf6{bottom:147.866667pt;}
.yc5{bottom:148.026667pt;}
.ye8{bottom:149.626667pt;}
.y68{bottom:149.946667pt;}
.y2b{bottom:155.240000pt;}
.y11a{bottom:158.586667pt;}
.y98{bottom:160.026667pt;}
.yf5{bottom:162.106667pt;}
.y14f{bottom:162.906667pt;}
.y15c{bottom:163.866667pt;}
.yc4{bottom:164.986667pt;}
.ye7{bottom:166.426667pt;}
.y67{bottom:166.746667pt;}
.y1ac{bottom:168.826667pt;}
.y2a{bottom:172.040000pt;}
.y119{bottom:175.386667pt;}
.y97{bottom:176.826667pt;}
.y18c{bottom:178.426667pt;}
.y14e{bottom:179.706667pt;}
.y15b{bottom:180.666667pt;}
.yc3{bottom:181.786667pt;}
.ye6{bottom:183.386667pt;}
.y66{bottom:183.706667pt;}
.y1ab{bottom:187.226667pt;}
.y29{bottom:188.840000pt;}
.y118{bottom:192.346667pt;}
.y96{bottom:193.786667pt;}
.y14d{bottom:196.666667pt;}
.y18b{bottom:196.826667pt;}
.y15a{bottom:197.626667pt;}
.y123{bottom:197.786667pt;}
.yc2{bottom:198.586667pt;}
.ye5{bottom:200.186667pt;}
.y65{bottom:200.506667pt;}
.yf4{bottom:204.186667pt;}
.y28{bottom:205.800000pt;}
.y117{bottom:209.146667pt;}
.y95{bottom:210.586667pt;}
.y14c{bottom:213.466667pt;}
.y159{bottom:214.426667pt;}
.yc1{bottom:215.546667pt;}
.ye4{bottom:216.666667pt;}
.y64{bottom:217.306667pt;}
.y1aa{bottom:221.626667pt;}
.y27{bottom:222.600000pt;}
.y116{bottom:225.946667pt;}
.y1f{bottom:226.906667pt;}
.y94{bottom:227.386667pt;}
.y14b{bottom:230.426667pt;}
.y18a{bottom:231.226667pt;}
.y158{bottom:232.026667pt;}
.yc0{bottom:232.346667pt;}
.y63{bottom:234.266667pt;}
.y26{bottom:239.560000pt;}
.y1a9{bottom:240.026667pt;}
.y115{bottom:242.906667pt;}
.y93{bottom:244.346667pt;}
.y157{bottom:245.946667pt;}
.yf2{bottom:246.106667pt;}
.y14a{bottom:247.226667pt;}
.ybf{bottom:249.306667pt;}
.y189{bottom:249.626667pt;}
.y121{bottom:250.586667pt;}
.y62{bottom:251.066667pt;}
.y25{bottom:256.360000pt;}
.y1a8{bottom:258.426667pt;}
.y114{bottom:259.706667pt;}
.y92{bottom:261.146667pt;}
.y149{bottom:264.026667pt;}
.ybe{bottom:266.106667pt;}
.y61{bottom:268.026667pt;}
.y24{bottom:273.160000pt;}
.y113{bottom:276.666667pt;}
.y91{bottom:278.106667pt;}
.y148{bottom:280.986667pt;}
.ybd{bottom:282.906667pt;}
.y60{bottom:284.826667pt;}
.y188{bottom:286.426667pt;}
.yf0{bottom:288.186667pt;}
.y23{bottom:290.120000pt;}
.y1a7{bottom:292.826667pt;}
.y112{bottom:293.466667pt;}
.y90{bottom:294.906667pt;}
.y147{bottom:297.786667pt;}
.ybc{bottom:299.906667pt;}
.y5f{bottom:301.666667pt;}
.y120{bottom:302.786667pt;}
.y22{bottom:306.920000pt;}
.y111{bottom:310.466667pt;}
.y1a6{bottom:311.266667pt;}
.y8f{bottom:311.746667pt;}
.y146{bottom:314.786667pt;}
.ybb{bottom:316.706667pt;}
.y5e{bottom:318.626667pt;}
.y187{bottom:320.866667pt;}
.y21{bottom:323.906667pt;}
.y110{bottom:327.266667pt;}
.y8e{bottom:328.706667pt;}
.y1a5{bottom:329.666667pt;}
.yee{bottom:330.146667pt;}
.y145{bottom:331.586667pt;}
.yba{bottom:333.666667pt;}
.y5d{bottom:335.426667pt;}
.y186{bottom:339.266667pt;}
.y20{bottom:340.706667pt;}
.y10f{bottom:344.066667pt;}
.y8d{bottom:345.506667pt;}
.y144{bottom:348.386667pt;}
.ye3{bottom:350.146667pt;}
.yb9{bottom:350.466667pt;}
.y5c{bottom:352.386667pt;}
.y11e{bottom:356.866667pt;}
.y185{bottom:357.666667pt;}
.y10e{bottom:361.026667pt;}
.y8c{bottom:362.466667pt;}
.y1a4{bottom:364.066667pt;}
.y143{bottom:365.346667pt;}
.ye2{bottom:365.826667pt;}
.yb8{bottom:367.266667pt;}
.y5b{bottom:369.186667pt;}
.y184{bottom:376.066667pt;}
.y10d{bottom:377.826667pt;}
.y8b{bottom:379.266667pt;}
.y142{bottom:382.146667pt;}
.y1a3{bottom:382.466667pt;}
.ye1{bottom:382.626667pt;}
.y16f{bottom:383.586667pt;}
.yb7{bottom:384.226667pt;}
.y5a{bottom:386.146667pt;}
.y10c{bottom:394.786667pt;}
.y8a{bottom:396.066667pt;}
.y141{bottom:399.106667pt;}
.ye0{bottom:399.586667pt;}
.y1a2{bottom:400.866667pt;}
.yb6{bottom:401.026667pt;}
.y16e{bottom:401.666667pt;}
.y59{bottom:402.946667pt;}
.y183{bottom:410.466667pt;}
.y10b{bottom:411.586667pt;}
.y89{bottom:413.026667pt;}
.y140{bottom:415.906667pt;}
.ydf{bottom:416.386667pt;}
.yb5{bottom:417.986667pt;}
.y16d{bottom:418.786667pt;}
.y58{bottom:419.746667pt;}
.y10a{bottom:428.386667pt;}
.y182{bottom:428.866667pt;}
.y88{bottom:429.826667pt;}
.y13f{bottom:432.866667pt;}
.yde{bottom:433.186667pt;}
.y16c{bottom:433.666667pt;}
.yb4{bottom:434.786667pt;}
.y1a1{bottom:435.266667pt;}
.y57{bottom:436.706667pt;}
.y109{bottom:445.346667pt;}
.y87{bottom:446.786667pt;}
.y13e{bottom:449.666667pt;}
.ydd{bottom:450.146667pt;}
.yb3{bottom:451.586667pt;}
.y56{bottom:453.506667pt;}
.y1a0{bottom:453.666667pt;}
.y108{bottom:462.146667pt;}
.y181{bottom:463.266667pt;}
.y86{bottom:463.586667pt;}
.y16b{bottom:465.986667pt;}
.y13d{bottom:466.466667pt;}
.ydc{bottom:466.946667pt;}
.yb2{bottom:468.546667pt;}
.y55{bottom:470.466667pt;}
.y19f{bottom:472.066667pt;}
.y107{bottom:479.106667pt;}
.y85{bottom:480.386667pt;}
.y180{bottom:481.666667pt;}
.y13c{bottom:483.426667pt;}
.ydb{bottom:483.906667pt;}
.y16a{bottom:484.226667pt;}
.yb1{bottom:485.346667pt;}
.y54{bottom:487.266667pt;}
.y106{bottom:495.906667pt;}
.y84{bottom:497.346667pt;}
.y17f{bottom:500.066667pt;}
.y13b{bottom:500.226667pt;}
.yda{bottom:500.706667pt;}
.y169{bottom:501.026667pt;}
.yb0{bottom:502.306667pt;}
.y53{bottom:504.066667pt;}
.y19e{bottom:506.466667pt;}
.y105{bottom:512.706667pt;}
.y83{bottom:514.146667pt;}
.y13a{bottom:517.186667pt;}
.yd9{bottom:517.666667pt;}
.y168{bottom:517.986667pt;}
.y17e{bottom:518.466667pt;}
.yaf{bottom:519.106667pt;}
.y52{bottom:521.026667pt;}
.y19d{bottom:524.866667pt;}
.y104{bottom:529.666667pt;}
.y82{bottom:531.106667pt;}
.y1c8{bottom:531.746667pt;}
.y139{bottom:533.986667pt;}
.yd8{bottom:534.466667pt;}
.y167{bottom:535.106667pt;}
.yae{bottom:536.066667pt;}
.y51{bottom:537.853333pt;}
.y19c{bottom:543.293333pt;}
.y103{bottom:546.493333pt;}
.y81{bottom:547.933333pt;}
.y1c7{bottom:548.573333pt;}
.y166{bottom:550.013333pt;}
.y138{bottom:550.813333pt;}
.yd7{bottom:551.293333pt;}
.yad{bottom:552.893333pt;}
.y50{bottom:554.813333pt;}
.y1c6{bottom:562.813333pt;}
.y102{bottom:563.453333pt;}
.y80{bottom:564.893333pt;}
.y137{bottom:567.773333pt;}
.yd6{bottom:568.253333pt;}
.yac{bottom:569.693333pt;}
.y17d{bottom:571.293333pt;}
.y4f{bottom:571.613333pt;}
.y19b{bottom:577.693333pt;}
.y101{bottom:580.253333pt;}
.y1d{bottom:581.213333pt;}
.y7f{bottom:581.693333pt;}
.y165{bottom:582.333333pt;}
.y136{bottom:584.573333pt;}
.yd5{bottom:585.053333pt;}
.yab{bottom:586.653333pt;}
.y4e{bottom:588.413333pt;}
.y100{bottom:594.493333pt;}
.y19a{bottom:596.093333pt;}
.y7e{bottom:598.493333pt;}
.y1c3{bottom:600.253333pt;}
.y164{bottom:600.413333pt;}
.y135{bottom:601.533333pt;}
.yd4{bottom:602.013333pt;}
.yaa{bottom:603.453333pt;}
.y4d{bottom:605.373333pt;}
.y17c{bottom:605.693333pt;}
.y1c{bottom:613.213333pt;}
.y7d{bottom:615.453333pt;}
.y163{bottom:617.213333pt;}
.y134{bottom:618.333333pt;}
.yd3{bottom:618.813333pt;}
.ya9{bottom:620.413333pt;}
.y4c{bottom:622.173333pt;}
.y17b{bottom:624.093333pt;}
.y1a{bottom:627.613333pt;}
.y199{bottom:630.493333pt;}
.y7c{bottom:632.253333pt;}
.y162{bottom:634.173333pt;}
.y133{bottom:635.133333pt;}
.yd2{bottom:635.613333pt;}
.ya8{bottom:637.213333pt;}
.y1bf{bottom:637.853333pt;}
.y4b{bottom:639.133333pt;}
.yfe{bottom:645.373333pt;}
.y198{bottom:648.893333pt;}
.y7b{bottom:649.213333pt;}
.y19{bottom:650.333333pt;}
.y161{bottom:651.293333pt;}
.y132{bottom:652.093333pt;}
.yd1{bottom:652.573333pt;}
.ya7{bottom:654.013333pt;}
.y4a{bottom:655.933333pt;}
.y17a{bottom:658.493333pt;}
.y18{bottom:665.693333pt;}
.y7a{bottom:666.013333pt;}
.y160{bottom:666.173333pt;}
.y197{bottom:667.293333pt;}
.y131{bottom:668.893333pt;}
.yd0{bottom:669.373333pt;}
.ya6{bottom:670.973333pt;}
.y49{bottom:672.733333pt;}
.y1ba{bottom:675.293333pt;}
.y179{bottom:676.893333pt;}
.y17{bottom:680.893333pt;}
.y79{bottom:682.813333pt;}
.y130{bottom:685.853333pt;}
.ycf{bottom:686.333333pt;}
.ya5{bottom:687.773333pt;}
.y48{bottom:689.693333pt;}
.yfd{bottom:695.613333pt;}
.y16{bottom:696.253333pt;}
.y15f{bottom:698.493333pt;}
.y78{bottom:699.773333pt;}
.y196{bottom:701.693333pt;}
.y12f{bottom:702.653333pt;}
.yce{bottom:703.133333pt;}
.ya4{bottom:704.733333pt;}
.y47{bottom:706.493333pt;}
.y178{bottom:711.293333pt;}
.y15{bottom:716.253333pt;}
.y77{bottom:716.573333pt;}
.y12e{bottom:719.453333pt;}
.ycd{bottom:719.933333pt;}
.y195{bottom:720.093333pt;}
.ya3{bottom:721.533333pt;}
.y46{bottom:723.453333pt;}
.y177{bottom:729.693333pt;}
.y1b4{bottom:731.133333pt;}
.y14{bottom:731.613333pt;}
.y76{bottom:733.533333pt;}
.y12d{bottom:736.413333pt;}
.ycc{bottom:736.893333pt;}
.ya2{bottom:738.333333pt;}
.y194{bottom:738.493333pt;}
.y45{bottom:740.253333pt;}
.yfb{bottom:746.493333pt;}
.y13{bottom:746.973333pt;}
.y176{bottom:748.093333pt;}
.y75{bottom:750.333333pt;}
.yec{bottom:750.493333pt;}
.y12c{bottom:750.653333pt;}
.ycb{bottom:753.693333pt;}
.ya1{bottom:755.293333pt;}
.y193{bottom:756.893333pt;}
.y44{bottom:757.053333pt;}
.y12{bottom:762.333333pt;}
.y74{bottom:767.133333pt;}
.y42{bottom:770.653333pt;}
.ya0{bottom:772.093333pt;}
.y11{bottom:777.573333pt;}
.y12b{bottom:780.773333pt;}
.y175{bottom:782.533333pt;}
.yeb{bottom:782.853333pt;}
.y73{bottom:784.133333pt;}
.yca{bottom:787.493333pt;}
.y9f{bottom:789.093333pt;}
.y192{bottom:791.333333pt;}
.y10{bottom:792.933333pt;}
.yf9{bottom:797.413333pt;}
.y72{bottom:800.933333pt;}
.y41{bottom:803.013333pt;}
.yf{bottom:803.973333pt;}
.yc9{bottom:804.613333pt;}
.y9e{bottom:805.893333pt;}
.y191{bottom:809.733333pt;}
.y12a{bottom:810.693333pt;}
.y3f{bottom:817.893333pt;}
.y174{bottom:819.333333pt;}
.yc8{bottom:819.493333pt;}
.ye{bottom:820.933333pt;}
.y9d{bottom:822.693333pt;}
.y1b2{bottom:823.813333pt;}
.y190{bottom:828.133333pt;}
.y71{bottom:834.693333pt;}
.y9c{bottom:836.293333pt;}
.yd{bottom:837.413333pt;}
.y173{bottom:837.733333pt;}
.y156{bottom:839.653333pt;}
.y128{bottom:840.773333pt;}
.y18f{bottom:846.533333pt;}
.y1b1{bottom:847.013333pt;}
.y70{bottom:851.493333pt;}
.yc{bottom:855.013333pt;}
.y155{bottom:856.453333pt;}
.y1b0{bottom:863.813333pt;}
.y6f{bottom:868.453333pt;}
.y127{bottom:870.693333pt;}
.y172{bottom:871.813333pt;}
.y154{bottom:873.413333pt;}
.y1af{bottom:877.413333pt;}
.y18e{bottom:880.933333pt;}
.yb{bottom:882.693333pt;}
.y6e{bottom:885.253333pt;}
.y171{bottom:885.413333pt;}
.y153{bottom:887.013333pt;}
.y18d{bottom:899.333333pt;}
.y6d{bottom:902.213333pt;}
.y3d{bottom:903.813333pt;}
.ya{bottom:910.213333pt;}
.y170{bottom:917.733333pt;}
.y6c{bottom:919.013333pt;}
.y7{bottom:936.613333pt;}
.y6{bottom:953.733333pt;}
.y5{bottom:970.693333pt;}
.y4{bottom:987.813333pt;}
.y3{bottom:1010.533333pt;}
.y2{bottom:1038.080000pt;}
.y1{bottom:1060.960000pt;}
.hb{height:19.200000pt;}
.h1e{height:27.520000pt;}
.hc{height:28.800000pt;}
.ha{height:28.822500pt;}
.h11{height:28.832000pt;}
.h1f{height:29.280000pt;}
.h20{height:29.312000pt;}
.h23{height:36.800000pt;}
.h17{height:39.876250pt;}
.h16{height:41.280000pt;}
.h14{height:41.312000pt;}
.h15{height:41.440000pt;}
.h2{height:41.543750pt;}
.h8{height:44.301250pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h1b{height:48.530000pt;}
.h13{height:48.640000pt;}
.h5{height:49.105000pt;}
.h1a{height:49.600000pt;}
.h18{height:50.240000pt;}
.h19{height:50.272000pt;}
.h1d{height:51.552000pt;}
.h1c{height:52.160000pt;}
.hf{height:53.375000pt;}
.h22{height:55.200000pt;}
.h12{height:58.563750pt;}
.h6{height:60.288750pt;}
.h7{height:67.734375pt;}
.h3{height:72.000000pt;}
.h10{height:85.920000pt;}
.h21{height:92.032000pt;}
.he{height:127.200000pt;}
.hd{height:354.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:74.432000pt;}
.w12{width:75.392000pt;}
.wd{width:75.520000pt;}
.w11{width:76.480000pt;}
.w5{width:91.840000pt;}
.w8{width:94.112000pt;}
.w10{width:108.992000pt;}
.wc{width:111.712000pt;}
.w6{width:125.792000pt;}
.w9{width:128.640000pt;}
.wa{width:128.672000pt;}
.wb{width:128.832000pt;}
.wf{width:148.346667pt;}
.w13{width:150.266667pt;}
.w14{width:159.386667pt;}
.w7{width:174.586667pt;}
.w15{width:455.746667pt;}
.w3{width:600.573333pt;}
.w4{width:601.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x23{left:9.280000pt;}
.x32{left:10.400000pt;}
.x22{left:11.360000pt;}
.x1c{left:12.480000pt;}
.x24{left:13.760000pt;}
.x3b{left:14.720000pt;}
.x2e{left:15.680000pt;}
.x28{left:16.640000pt;}
.x20{left:17.760000pt;}
.x31{left:18.880000pt;}
.x3c{left:20.960000pt;}
.x37{left:22.400000pt;}
.x1e{left:24.680000pt;}
.x26{left:29.120000pt;}
.x33{left:30.240000pt;}
.x3d{left:32.640000pt;}
.x29{left:34.560000pt;}
.x3a{left:36.160000pt;}
.x25{left:38.240000pt;}
.x27{left:41.440000pt;}
.x16{left:96.672000pt;}
.x43{left:102.111988pt;}
.x13{left:115.871988pt;}
.xa{left:118.111988pt;}
.x18{left:120.031988pt;}
.x11{left:132.991988pt;}
.x14{left:137.466655pt;}
.x19{left:144.026655pt;}
.xe{left:146.266655pt;}
.xd{left:151.066655pt;}
.xc{left:153.786655pt;}
.x9{left:155.226655pt;}
.x12{left:157.306655pt;}
.x42{left:158.266655pt;}
.x2{left:159.226655pt;}
.x8{left:164.026655pt;}
.x1a{left:168.026655pt;}
.x2b{left:174.106655pt;}
.xf{left:178.746655pt;}
.x36{left:190.906667pt;}
.x2a{left:194.266655pt;}
.x34{left:200.186655pt;}
.xb{left:205.306655pt;}
.x3{left:206.906655pt;}
.x10{left:224.826655pt;}
.x1d{left:229.466667pt;}
.x5{left:235.866655pt;}
.x1{left:248.226655pt;}
.x2d{left:250.626667pt;}
.x44{left:256.386667pt;}
.x2c{left:257.826655pt;}
.x1b{left:268.706655pt;}
.x6{left:275.586655pt;}
.x3f{left:300.066667pt;}
.x38{left:303.266667pt;}
.x15{left:323.426655pt;}
.x3e{left:327.586655pt;}
.x4{left:331.746655pt;}
.x35{left:335.586655pt;}
.x1f{left:355.906667pt;}
.x40{left:377.186667pt;}
.x2f{left:379.906667pt;}
.x7{left:396.866655pt;}
.x41{left:453.213333pt;}
.x39{left:454.493333pt;}
.x21{left:482.333333pt;}
.x30{left:509.213333pt;}
}




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