
    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_3e5974dca0c02d5de9b23851.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6aed223376ef576b9f6eafa2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_8545a70217e951e9676b3643.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_396af23359310deccb4bda82.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2296a0eb82903de1e45e292f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2507d000a6e28bf4b4130f17.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_92a0304f5e9a5037debeb127.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bf6808a9a93491aae0f8aca1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773926;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);}
.v4{vertical-align:-69.120000px;}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls29{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.768000px;}
.lsc{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.045360px;}
.ls2a{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls9{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.153360px;}
.lsd{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.306720px;}
.ls11{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.900000px;}
.ls28{letter-spacing:2.520000px;}
.ls26{letter-spacing:5.400000px;}
.ls15{letter-spacing:6.660000px;}
.ls13{letter-spacing:6.840000px;}
.ls1f{letter-spacing:8.100000px;}
.ls24{letter-spacing:9.720000px;}
.ls17{letter-spacing:10.260000px;}
.ls22{letter-spacing:14.040000px;}
.ls27{letter-spacing:55.620000px;}
.ls25{letter-spacing:59.220000px;}
.ls1b{letter-spacing:59.940000px;}
.ls23{letter-spacing:63.540000px;}
.ls4{letter-spacing:66.162720px;}
.ls21{letter-spacing:67.860000px;}
.lsb{letter-spacing:112.476000px;}
.lse{letter-spacing:158.556000px;}
.lsf{letter-spacing:386.076000px;}
.ls10{letter-spacing:494.076000px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.093600px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.482000px;}
.ws19{word-spacing:-13.284000px;}
.ws10{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.374400px;}
.wsf{word-spacing:-12.060000px;}
.ws16{word-spacing:-12.014640px;}
.wse{word-spacing:-11.878800px;}
.ws15{word-spacing:-11.700000px;}
.ws17{word-spacing:-11.292000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-2.378160px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._13{width:4.320000px;}
._12{width:5.616000px;}
._4{width:6.840000px;}
._a{width:8.064000px;}
._9{width:9.180000px;}
._b{width:11.178000px;}
._c{width:12.237120px;}
._1e{width:13.620240px;}
._d{width:15.455280px;}
._17{width:16.695600px;}
._19{width:17.695920px;}
._18{width:18.764640px;}
._1c{width:19.780560px;}
._8{width:21.487440px;}
._7{width:23.106000px;}
._14{width:24.223920px;}
._2b{width:26.146080px;}
._f{width:27.499440px;}
._e{width:28.836000px;}
._22{width:30.136080px;}
._21{width:31.950240px;}
._1d{width:32.987520px;}
._11{width:34.549680px;}
._10{width:36.180000px;}
._29{width:37.193040px;}
._2a{width:38.352960px;}
._1b{width:40.098960px;}
._1a{width:41.114880px;}
._26{width:44.005440px;}
._27{width:45.783600px;}
._2e{width:48.924000px;}
._23{width:50.119920px;}
._25{width:58.609680px;}
._24{width:59.828160px;}
._2d{width:63.300720px;}
._2c{width:68.754000px;}
._28{width:70.444800px;}
._5{width:155.700000px;}
._15{width:509.086560px;}
._1f{width:735.660000px;}
._16{width:865.686720px;}
._20{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y190{bottom:0.720000px;}
.yd8{bottom:2.520000px;}
.yc7{bottom:2.700000px;}
.y37{bottom:2.880000px;}
.y19a{bottom:3.060000px;}
.y16{bottom:3.240000px;}
.y102{bottom:3.780000px;}
.y18a{bottom:4.680000px;}
.y41{bottom:9.000000px;}
.y47{bottom:12.240000px;}
.ye0{bottom:16.380000px;}
.ydf{bottom:16.560000px;}
.y36{bottom:18.360000px;}
.y199{bottom:18.540000px;}
.y1a6{bottom:18.585000px;}
.y1b{bottom:20.340000px;}
.yfd{bottom:20.520000px;}
.y109{bottom:20.565000px;}
.y100{bottom:20.880000px;}
.yfe{bottom:21.060000px;}
.y46{bottom:29.520000px;}
.yd4{bottom:30.270000px;}
.ydd{bottom:30.420000px;}
.y188{bottom:33.300000px;}
.y35{bottom:33.840000px;}
.y198{bottom:34.020000px;}
.y1a5{bottom:34.065000px;}
.y1a{bottom:37.620000px;}
.y108{bottom:37.845000px;}
.ycf{bottom:43.920000px;}
.y45{bottom:46.800000px;}
.y187{bottom:48.780000px;}
.y34{bottom:49.500000px;}
.y1a4{bottom:49.545000px;}
.y19{bottom:54.900000px;}
.y107{bottom:55.125000px;}
.yc9{bottom:57.960000px;}
.y44{bottom:63.900000px;}
.y186{bottom:64.260000px;}
.y33{bottom:64.980000px;}
.y197{bottom:65.160000px;}
.y1a3{bottom:65.205000px;}
.y40{bottom:65.925000px;}
.y106{bottom:72.225000px;}
.y185{bottom:79.740000px;}
.y32{bottom:80.460000px;}
.y196{bottom:80.670000px;}
.y1a2{bottom:80.685000px;}
.y18{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y43{bottom:90.180000px;}
.y184{bottom:95.400000px;}
.y31{bottom:95.940000px;}
.y195{bottom:96.150000px;}
.y1a1{bottom:96.165000px;}
.y183{bottom:110.880000px;}
.y30{bottom:111.600000px;}
.y194{bottom:111.630000px;}
.y1a0{bottom:111.645000px;}
.yfa{bottom:119.520000px;}
.y182{bottom:126.360000px;}
.y2f{bottom:127.080000px;}
.y193{bottom:127.110000px;}
.y19f{bottom:127.305000px;}
.yc1{bottom:128.160000px;}
.y86{bottom:128.880000px;}
.y4c{bottom:129.420000px;}
.y142{bottom:130.860000px;}
.yf9{bottom:136.836000px;}
.y181{bottom:141.840000px;}
.y18d{bottom:142.020000px;}
.y2e{bottom:142.560000px;}
.y192{bottom:142.770000px;}
.y19e{bottom:142.785000px;}
.y117{bottom:143.856000px;}
.y141{bottom:144.756000px;}
.yc0{bottom:145.476000px;}
.y85{bottom:146.196000px;}
.y4b{bottom:146.556000px;}
.yf8{bottom:154.110000px;}
.y180{bottom:157.320000px;}
.y18c{bottom:157.545000px;}
.y2d{bottom:158.040000px;}
.y191{bottom:158.250000px;}
.y19d{bottom:158.265000px;}
.y140{bottom:158.430000px;}
.y116{bottom:161.130000px;}
.ybf{bottom:162.750000px;}
.y84{bottom:163.470000px;}
.y4a{bottom:163.830000px;}
.yf7{bottom:171.390000px;}
.y13f{bottom:172.290000px;}
.y2c{bottom:173.700000px;}
.y115{bottom:178.410000px;}
.ybe{bottom:179.850000px;}
.y17e{bottom:180.030000px;}
.y49{bottom:180.390000px;}
.y83{bottom:180.750000px;}
.y13e{bottom:186.150000px;}
.yf6{bottom:188.670000px;}
.y2b{bottom:189.180000px;}
.y17d{bottom:193.710000px;}
.y48{bottom:194.250000px;}
.y114{bottom:195.690000px;}
.ybd{bottom:197.130000px;}
.y82{bottom:197.850000px;}
.y13d{bottom:199.830000px;}
.y2a{bottom:204.660000px;}
.yf5{bottom:205.950000px;}
.y17c{bottom:207.570000px;}
.y42{bottom:207.750000px;}
.y113{bottom:212.970000px;}
.y13c{bottom:213.690000px;}
.ybc{bottom:214.410000px;}
.y81{bottom:215.130000px;}
.y29{bottom:220.140000px;}
.y17b{bottom:221.430000px;}
.yf4{bottom:223.050000px;}
.y13b{bottom:227.550000px;}
.y3f{bottom:227.745000px;}
.y112{bottom:230.250000px;}
.ybb{bottom:231.690000px;}
.y80{bottom:232.410000px;}
.y17a{bottom:235.110000px;}
.y28{bottom:235.650000px;}
.yf3{bottom:240.330000px;}
.y13a{bottom:241.230000px;}
.y3e{bottom:245.025000px;}
.y111{bottom:247.350000px;}
.yba{bottom:248.970000px;}
.y7f{bottom:249.690000px;}
.y27{bottom:251.310000px;}
.yf2{bottom:255.090000px;}
.y3d{bottom:262.125000px;}
.y179{bottom:262.830000px;}
.y110{bottom:264.630000px;}
.yb9{bottom:266.250000px;}
.y26{bottom:266.790000px;}
.y7e{bottom:266.970000px;}
.yf1{bottom:268.950000px;}
.y178{bottom:276.510000px;}
.y3c{bottom:279.405000px;}
.y10f{bottom:281.910000px;}
.y25{bottom:282.270000px;}
.yf0{bottom:282.630000px;}
.yb8{bottom:283.350000px;}
.y7d{bottom:284.250000px;}
.y177{bottom:290.370000px;}
.yef{bottom:296.490000px;}
.y3b{bottom:296.685000px;}
.y24{bottom:297.750000px;}
.y10e{bottom:299.190000px;}
.yb7{bottom:300.630000px;}
.y7c{bottom:301.350000px;}
.y176{bottom:304.230000px;}
.yee{bottom:310.350000px;}
.y23{bottom:313.410000px;}
.y3a{bottom:313.965000px;}
.y10d{bottom:316.470000px;}
.yb6{bottom:317.910000px;}
.y7b{bottom:318.630000px;}
.y1c{bottom:321.690000px;}
.yed{bottom:324.030000px;}
.y22{bottom:328.890000px;}
.y39{bottom:331.275000px;}
.y175{bottom:331.770000px;}
.y10c{bottom:333.750000px;}
.yb5{bottom:335.190000px;}
.y7a{bottom:335.910000px;}
.yec{bottom:337.890000px;}
.y21{bottom:344.370000px;}
.y174{bottom:345.630000px;}
.y10b{bottom:350.850000px;}
.yeb{bottom:351.750000px;}
.yb4{bottom:352.470000px;}
.y79{bottom:353.190000px;}
.y1a7{bottom:356.970000px;}
.y38{bottom:357.375000px;}
.y173{bottom:359.310000px;}
.y20{bottom:359.850000px;}
.yea{bottom:365.430000px;}
.y10a{bottom:368.130000px;}
.yb3{bottom:369.750000px;}
.y78{bottom:370.470000px;}
.y19c{bottom:370.830000px;}
.y172{bottom:373.170000px;}
.y1f{bottom:375.510000px;}
.ye9{bottom:379.290000px;}
.y105{bottom:382.170000px;}
.yb2{bottom:386.850000px;}
.y171{bottom:387.030000px;}
.y77{bottom:387.795000px;}
.ye8{bottom:393.195000px;}
.y170{bottom:400.755000px;}
.yb1{bottom:404.175000px;}
.y76{bottom:404.895000px;}
.ye7{bottom:406.875000px;}
.y1e{bottom:410.115000px;}
.y16f{bottom:414.615000px;}
.ye6{bottom:420.735000px;}
.yb0{bottom:421.455000px;}
.y75{bottom:422.175000px;}
.y16e{bottom:428.475000px;}
.ye5{bottom:434.595000px;}
.yaf{bottom:438.735000px;}
.y74{bottom:439.455000px;}
.y16d{bottom:442.155000px;}
.ye4{bottom:448.275000px;}
.yae{bottom:456.015000px;}
.y73{bottom:456.735000px;}
.ye3{bottom:462.135000px;}
.y1d{bottom:462.495000px;}
.y16c{bottom:469.875000px;}
.y104{bottom:471.675000px;}
.yad{bottom:473.115000px;}
.y72{bottom:474.015000px;}
.ye2{bottom:475.995000px;}
.y16b{bottom:483.555000px;}
.y103{bottom:486.435000px;}
.ye1{bottom:489.675000px;}
.yac{bottom:490.395000px;}
.y71{bottom:491.115000px;}
.y16a{bottom:497.415000px;}
.y139{bottom:503.535000px;}
.ydc{bottom:504.255000px;}
.yab{bottom:507.675000px;}
.y70{bottom:508.395000px;}
.y169{bottom:511.095000px;}
.y138{bottom:517.395000px;}
.yde{bottom:518.115000px;}
.y101{bottom:520.995000px;}
.yaa{bottom:524.955000px;}
.y6f{bottom:525.675000px;}
.y137{bottom:531.075000px;}
.yff{bottom:538.275000px;}
.y168{bottom:538.815000px;}
.ya9{bottom:542.235000px;}
.y19b{bottom:542.595000px;}
.y6e{bottom:542.955000px;}
.y136{bottom:544.935000px;}
.y167{bottom:552.495000px;}
.y135{bottom:558.795000px;}
.ya8{bottom:559.515000px;}
.y18f{bottom:559.875000px;}
.y6d{bottom:560.235000px;}
.y166{bottom:566.355000px;}
.ydb{bottom:566.895000px;}
.y134{bottom:572.475000px;}
.yfc{bottom:572.655000px;}
.ya7{bottom:576.615000px;}
.y6c{bottom:577.515000px;}
.y165{bottom:580.215000px;}
.yda{bottom:584.175000px;}
.y133{bottom:586.335000px;}
.ya6{bottom:593.895000px;}
.y6b{bottom:594.615000px;}
.yd9{bottom:598.935000px;}
.y132{bottom:600.195000px;}
.y164{bottom:607.755000px;}
.yfb{bottom:607.935000px;}
.ya5{bottom:611.175000px;}
.y6a{bottom:611.895000px;}
.yd7{bottom:612.795000px;}
.y131{bottom:613.875000px;}
.y163{bottom:621.615000px;}
.yd3{bottom:626.475000px;}
.y130{bottom:627.735000px;}
.ya4{bottom:628.455000px;}
.y69{bottom:629.175000px;}
.y162{bottom:635.295000px;}
.yd6{bottom:640.365000px;}
.y12f{bottom:641.625000px;}
.ya3{bottom:645.765000px;}
.y68{bottom:646.485000px;}
.y161{bottom:649.185000px;}
.yd5{bottom:654.225000px;}
.y12e{bottom:655.305000px;}
.ya2{bottom:663.045000px;}
.y67{bottom:663.765000px;}
.yce{bottom:667.905000px;}
.y12d{bottom:669.165000px;}
.y160{bottom:676.725000px;}
.ya1{bottom:680.145000px;}
.y66{bottom:681.045000px;}
.yd2{bottom:681.765000px;}
.y12c{bottom:683.025000px;}
.y15f{bottom:690.585000px;}
.yd1{bottom:695.625000px;}
.y12b{bottom:696.705000px;}
.ya0{bottom:697.425000px;}
.y65{bottom:698.145000px;}
.y17{bottom:703.005000px;}
.y15e{bottom:704.445000px;}
.yd0{bottom:709.305000px;}
.y12a{bottom:710.565000px;}
.y9f{bottom:714.705000px;}
.y64{bottom:715.425000px;}
.y15d{bottom:718.125000px;}
.yc8{bottom:723.165000px;}
.y129{bottom:724.425000px;}
.y18e{bottom:731.625000px;}
.y9e{bottom:731.985000px;}
.y63{bottom:732.705000px;}
.ycd{bottom:737.025000px;}
.y128{bottom:738.105000px;}
.y15c{bottom:745.845000px;}
.y18b{bottom:748.905000px;}
.y9d{bottom:749.265000px;}
.y62{bottom:749.985000px;}
.ycc{bottom:750.705000px;}
.y127{bottom:751.965000px;}
.y15b{bottom:759.525000px;}
.ycb{bottom:764.565000px;}
.y126{bottom:765.825000px;}
.y9c{bottom:766.545000px;}
.y61{bottom:767.265000px;}
.y15a{bottom:773.385000px;}
.yca{bottom:778.425000px;}
.y125{bottom:779.505000px;}
.y9b{bottom:783.645000px;}
.y60{bottom:784.545000px;}
.y159{bottom:787.245000px;}
.yc6{bottom:792.825000px;}
.y124{bottom:793.365000px;}
.y9a{bottom:800.925000px;}
.y5f{bottom:801.645000px;}
.y123{bottom:807.225000px;}
.y15{bottom:807.945000px;}
.y158{bottom:814.785000px;}
.y99{bottom:818.205000px;}
.y5e{bottom:818.925000px;}
.y122{bottom:820.905000px;}
.yc5{bottom:827.925000px;}
.y157{bottom:828.645000px;}
.y121{bottom:834.765000px;}
.y98{bottom:835.485000px;}
.y5d{bottom:836.205000px;}
.y14{bottom:839.625000px;}
.y156{bottom:842.325000px;}
.yc4{bottom:845.205000px;}
.y120{bottom:848.445000px;}
.y97{bottom:852.765000px;}
.y5c{bottom:853.485000px;}
.y155{bottom:856.185000px;}
.y13{bottom:856.905000px;}
.y11f{bottom:862.305000px;}
.y96{bottom:869.865000px;}
.y154{bottom:870.045000px;}
.y5b{bottom:870.765000px;}
.y11e{bottom:876.165000px;}
.y12{bottom:879.405000px;}
.yc3{bottom:879.765000px;}
.y153{bottom:883.725000px;}
.y95{bottom:887.145000px;}
.y5a{bottom:887.865000px;}
.y11d{bottom:889.845000px;}
.yc2{bottom:893.670000px;}
.y11{bottom:895.290000px;}
.y152{bottom:897.630000px;}
.y11c{bottom:903.750000px;}
.y10{bottom:904.470000px;}
.y59{bottom:905.190000px;}
.y151{bottom:911.490000px;}
.y11b{bottom:917.610000px;}
.y189{bottom:919.950000px;}
.y94{bottom:921.750000px;}
.y58{bottom:922.470000px;}
.yf{bottom:922.830000px;}
.y150{bottom:925.170000px;}
.y11a{bottom:931.290000px;}
.ye{bottom:936.690000px;}
.y17f{bottom:937.230000px;}
.y93{bottom:939.030000px;}
.y57{bottom:939.750000px;}
.y119{bottom:945.150000px;}
.yd{bottom:950.370000px;}
.y14f{bottom:952.890000px;}
.y92{bottom:956.310000px;}
.y56{bottom:957.030000px;}
.y118{bottom:959.010000px;}
.yc{bottom:960.450000px;}
.y14e{bottom:966.570000px;}
.y91{bottom:973.410000px;}
.y55{bottom:974.310000px;}
.yb{bottom:977.730000px;}
.y14d{bottom:980.430000px;}
.y90{bottom:990.690000px;}
.y54{bottom:991.410000px;}
.y14c{bottom:994.290000px;}
.ya{bottom:995.010000px;}
.y8f{bottom:1007.970000px;}
.y53{bottom:1008.690000px;}
.y9{bottom:1012.110000px;}
.y14b{bottom:1021.830000px;}
.y8e{bottom:1025.250000px;}
.y52{bottom:1025.970000px;}
.y8{bottom:1031.550000px;}
.y14a{bottom:1035.690000px;}
.y8d{bottom:1042.530000px;}
.y51{bottom:1043.250000px;}
.y149{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y8c{bottom:1059.810000px;}
.y50{bottom:1060.530000px;}
.y148{bottom:1063.230000px;}
.y8b{bottom:1076.910000px;}
.y147{bottom:1077.090000px;}
.y4f{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y146{bottom:1090.770000px;}
.y8a{bottom:1094.190000px;}
.y4e{bottom:1094.910000px;}
.y145{bottom:1104.630000px;}
.y89{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y144{bottom:1118.490000px;}
.y88{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y143{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y4d{bottom:1160.640000px;}
.y87{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h1a{height:13.680000px;}
.h18{height:13.860000px;}
.h22{height:13.860150px;}
.h1e{height:13.896000px;}
.h17{height:17.100000px;}
.h16{height:17.280000px;}
.ha{height:26.280000px;}
.h20{height:27.540000px;}
.h6{height:29.678906px;}
.h26{height:34.380000px;}
.h25{height:34.560000px;}
.h9{height:38.158594px;}
.h8{height:40.471172px;}
.h1f{height:41.400000px;}
.h1d{height:41.436000px;}
.h1b{height:47.321367px;}
.h7{height:47.344922px;}
.h21{height:48.863118px;}
.h13{height:52.971680px;}
.hf{height:52.998047px;}
.h24{height:53.573906px;}
.h10{height:54.421875px;}
.h1c{height:55.260000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h23{height:59.038594px;}
.h2{height:60.226875px;}
.h15{height:62.211094px;}
.h19{height:68.940000px;}
.hb{height:70.664062px;}
.h27{height:86.256000px;}
.h12{height:87.516000px;}
.h5{height:96.508125px;}
.hc{height:104.220000px;}
.h14{height:113.220000px;}
.h28{height:171.000000px;}
.h29{height:171.030000px;}
.h2a{height:171.750000px;}
.h11{height:380.415000px;}
.he{height:397.110000px;}
.hd{height:485.535000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w18{width:33.660000px;}
.w1c{width:34.776000px;}
.w15{width:34.920000px;}
.w24{width:35.100000px;}
.w1f{width:35.280000px;}
.w23{width:35.316000px;}
.w19{width:35.496000px;}
.w20{width:35.640000px;}
.w25{width:36.036000px;}
.w21{width:36.180000px;}
.w26{width:36.360000px;}
.w14{width:36.396000px;}
.w27{width:36.540000px;}
.w22{width:36.720000px;}
.w1d{width:37.620000px;}
.w16{width:41.760000px;}
.w17{width:43.380000px;}
.w1a{width:47.880000px;}
.w1b{width:49.860000px;}
.w12{width:68.436000px;}
.w10{width:69.156000px;}
.we{width:71.316000px;}
.wf{width:85.140000px;}
.w13{width:87.480000px;}
.w11{width:97.740000px;}
.wb{width:99.036000px;}
.wd{width:99.180000px;}
.w9{width:106.236000px;}
.wa{width:115.200000px;}
.w2b{width:146.160000px;}
.w1e{width:158.070000px;}
.wc{width:161.130000px;}
.w2a{width:198.570000px;}
.w3{width:209.190000px;}
.w28{width:214.770000px;}
.w29{width:244.290000px;}
.w5{width:433.155000px;}
.w2c{width:529.125000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:4.500000px;}
.x2c{left:5.940000px;}
.xf{left:8.100000px;}
.x37{left:9.180000px;}
.x11{left:10.620000px;}
.x31{left:11.880000px;}
.x24{left:13.185000px;}
.x38{left:14.400000px;}
.x36{left:15.840000px;}
.x34{left:18.000000px;}
.x35{left:20.700000px;}
.x28{left:22.140000px;}
.x1b{left:23.220000px;}
.x26{left:30.240000px;}
.x20{left:35.820000px;}
.x1f{left:42.300000px;}
.x21{left:46.470000px;}
.x4c{left:73.074000px;}
.x13{left:106.560000px;}
.x49{left:119.556000px;}
.xe{left:125.496000px;}
.x1{left:127.655987px;}
.x2{left:129.995987px;}
.x4a{left:137.154000px;}
.x16{left:154.649987px;}
.x3{left:156.269987px;}
.x48{left:159.689987px;}
.x8{left:161.669987px;}
.x22{left:167.970000px;}
.x17{left:173.369987px;}
.x15{left:180.749987px;}
.x6{left:198.569987px;}
.xc{left:212.609987px;}
.x1a{left:216.390000px;}
.xd{left:227.009987px;}
.x4{left:250.589987px;}
.x9{left:258.509987px;}
.x4b{left:265.710000px;}
.x23{left:267.150000px;}
.xa{left:272.909987px;}
.x39{left:286.095000px;}
.x2d{left:303.555000px;}
.x3a{left:321.375000px;}
.x1c{left:322.635000px;}
.x10{left:334.695000px;}
.x25{left:338.475000px;}
.x46{left:343.155000px;}
.xb{left:344.594987px;}
.x12{left:355.755000px;}
.x3b{left:357.015000px;}
.x7{left:371.054987px;}
.x2f{left:380.235000px;}
.x3c{left:393.195000px;}
.x27{left:423.615000px;}
.x14{left:425.055000px;}
.x3d{left:429.915000px;}
.x1d{left:437.835000px;}
.x5{left:457.274987px;}
.x3e{left:466.095000px;}
.x29{left:492.765000px;}
.x3f{left:501.405000px;}
.x1e{left:536.865000px;}
.x30{left:540.645000px;}
.x40{left:571.965000px;}
.x47{left:587.445000px;}
.x2a{left:590.505000px;}
.x41{left:607.065000px;}
.x32{left:624.165000px;}
.x42{left:642.345000px;}
.x2b{left:658.950000px;}
.x43{left:678.390000px;}
.x19{left:692.429987px;}
.x33{left:708.810000px;}
.x44{left:714.750000px;}
.x45{left:749.850000px;}
.x18{left:756.870000px;}
@media print{
.v4{vertical-align:-61.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls29{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.682667pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.040320pt;}
.ls2a{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls9{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.136320pt;}
.lsd{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.272640pt;}
.ls11{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls28{letter-spacing:2.240000pt;}
.ls26{letter-spacing:4.800000pt;}
.ls15{letter-spacing:5.920000pt;}
.ls13{letter-spacing:6.080000pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls24{letter-spacing:8.640000pt;}
.ls17{letter-spacing:9.120000pt;}
.ls22{letter-spacing:12.480000pt;}
.ls27{letter-spacing:49.440000pt;}
.ls25{letter-spacing:52.640000pt;}
.ls1b{letter-spacing:53.280000pt;}
.ls23{letter-spacing:56.480000pt;}
.ls4{letter-spacing:58.811307pt;}
.ls21{letter-spacing:60.320000pt;}
.lsb{letter-spacing:99.978667pt;}
.lse{letter-spacing:140.938667pt;}
.lsf{letter-spacing:343.178667pt;}
.ls10{letter-spacing:439.178667pt;}
.ws13{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.984000pt;}
.ws19{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.999467pt;}
.wsf{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.679680pt;}
.wse{word-spacing:-10.558933pt;}
.ws15{word-spacing:-10.400000pt;}
.ws17{word-spacing:-10.037333pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-2.113920pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._13{width:3.840000pt;}
._12{width:4.992000pt;}
._4{width:6.080000pt;}
._a{width:7.168000pt;}
._9{width:8.160000pt;}
._b{width:9.936000pt;}
._c{width:10.877440pt;}
._1e{width:12.106880pt;}
._d{width:13.738027pt;}
._17{width:14.840533pt;}
._19{width:15.729707pt;}
._18{width:16.679680pt;}
._1c{width:17.582720pt;}
._8{width:19.099947pt;}
._7{width:20.538667pt;}
._14{width:21.532373pt;}
._2b{width:23.240960pt;}
._f{width:24.443947pt;}
._e{width:25.632000pt;}
._22{width:26.787627pt;}
._21{width:28.400213pt;}
._1d{width:29.322240pt;}
._11{width:30.710827pt;}
._10{width:32.160000pt;}
._29{width:33.060480pt;}
._2a{width:34.091520pt;}
._1b{width:35.643520pt;}
._1a{width:36.546560pt;}
._26{width:39.115947pt;}
._27{width:40.696533pt;}
._2e{width:43.488000pt;}
._23{width:44.551040pt;}
._25{width:52.097493pt;}
._24{width:53.180587pt;}
._2d{width:56.267307pt;}
._2c{width:61.114667pt;}
._28{width:62.617600pt;}
._5{width:138.400000pt;}
._15{width:452.521387pt;}
._1f{width:653.920000pt;}
._16{width:769.499307pt;}
._20{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:0.640000pt;}
.yd8{bottom:2.240000pt;}
.yc7{bottom:2.400000pt;}
.y37{bottom:2.560000pt;}
.y19a{bottom:2.720000pt;}
.y16{bottom:2.880000pt;}
.y102{bottom:3.360000pt;}
.y18a{bottom:4.160000pt;}
.y41{bottom:8.000000pt;}
.y47{bottom:10.880000pt;}
.ye0{bottom:14.560000pt;}
.ydf{bottom:14.720000pt;}
.y36{bottom:16.320000pt;}
.y199{bottom:16.480000pt;}
.y1a6{bottom:16.520000pt;}
.y1b{bottom:18.080000pt;}
.yfd{bottom:18.240000pt;}
.y109{bottom:18.280000pt;}
.y100{bottom:18.560000pt;}
.yfe{bottom:18.720000pt;}
.y46{bottom:26.240000pt;}
.yd4{bottom:26.906667pt;}
.ydd{bottom:27.040000pt;}
.y188{bottom:29.600000pt;}
.y35{bottom:30.080000pt;}
.y198{bottom:30.240000pt;}
.y1a5{bottom:30.280000pt;}
.y1a{bottom:33.440000pt;}
.y108{bottom:33.640000pt;}
.ycf{bottom:39.040000pt;}
.y45{bottom:41.600000pt;}
.y187{bottom:43.360000pt;}
.y34{bottom:44.000000pt;}
.y1a4{bottom:44.040000pt;}
.y19{bottom:48.800000pt;}
.y107{bottom:49.000000pt;}
.yc9{bottom:51.520000pt;}
.y44{bottom:56.800000pt;}
.y186{bottom:57.120000pt;}
.y33{bottom:57.760000pt;}
.y197{bottom:57.920000pt;}
.y1a3{bottom:57.960000pt;}
.y40{bottom:58.600000pt;}
.y106{bottom:64.200000pt;}
.y185{bottom:70.880000pt;}
.y32{bottom:71.520000pt;}
.y196{bottom:71.706667pt;}
.y1a2{bottom:71.720000pt;}
.y18{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y43{bottom:80.160000pt;}
.y184{bottom:84.800000pt;}
.y31{bottom:85.280000pt;}
.y195{bottom:85.466667pt;}
.y1a1{bottom:85.480000pt;}
.y183{bottom:98.560000pt;}
.y30{bottom:99.200000pt;}
.y194{bottom:99.226667pt;}
.y1a0{bottom:99.240000pt;}
.yfa{bottom:106.240000pt;}
.y182{bottom:112.320000pt;}
.y2f{bottom:112.960000pt;}
.y193{bottom:112.986667pt;}
.y19f{bottom:113.160000pt;}
.yc1{bottom:113.920000pt;}
.y86{bottom:114.560000pt;}
.y4c{bottom:115.040000pt;}
.y142{bottom:116.320000pt;}
.yf9{bottom:121.632000pt;}
.y181{bottom:126.080000pt;}
.y18d{bottom:126.240000pt;}
.y2e{bottom:126.720000pt;}
.y192{bottom:126.906667pt;}
.y19e{bottom:126.920000pt;}
.y117{bottom:127.872000pt;}
.y141{bottom:128.672000pt;}
.yc0{bottom:129.312000pt;}
.y85{bottom:129.952000pt;}
.y4b{bottom:130.272000pt;}
.yf8{bottom:136.986667pt;}
.y180{bottom:139.840000pt;}
.y18c{bottom:140.040000pt;}
.y2d{bottom:140.480000pt;}
.y191{bottom:140.666667pt;}
.y19d{bottom:140.680000pt;}
.y140{bottom:140.826667pt;}
.y116{bottom:143.226667pt;}
.ybf{bottom:144.666667pt;}
.y84{bottom:145.306667pt;}
.y4a{bottom:145.626667pt;}
.yf7{bottom:152.346667pt;}
.y13f{bottom:153.146667pt;}
.y2c{bottom:154.400000pt;}
.y115{bottom:158.586667pt;}
.ybe{bottom:159.866667pt;}
.y17e{bottom:160.026667pt;}
.y49{bottom:160.346667pt;}
.y83{bottom:160.666667pt;}
.y13e{bottom:165.466667pt;}
.yf6{bottom:167.706667pt;}
.y2b{bottom:168.160000pt;}
.y17d{bottom:172.186667pt;}
.y48{bottom:172.666667pt;}
.y114{bottom:173.946667pt;}
.ybd{bottom:175.226667pt;}
.y82{bottom:175.866667pt;}
.y13d{bottom:177.626667pt;}
.y2a{bottom:181.920000pt;}
.yf5{bottom:183.066667pt;}
.y17c{bottom:184.506667pt;}
.y42{bottom:184.666667pt;}
.y113{bottom:189.306667pt;}
.y13c{bottom:189.946667pt;}
.ybc{bottom:190.586667pt;}
.y81{bottom:191.226667pt;}
.y29{bottom:195.680000pt;}
.y17b{bottom:196.826667pt;}
.yf4{bottom:198.266667pt;}
.y13b{bottom:202.266667pt;}
.y3f{bottom:202.440000pt;}
.y112{bottom:204.666667pt;}
.ybb{bottom:205.946667pt;}
.y80{bottom:206.586667pt;}
.y17a{bottom:208.986667pt;}
.y28{bottom:209.466667pt;}
.yf3{bottom:213.626667pt;}
.y13a{bottom:214.426667pt;}
.y3e{bottom:217.800000pt;}
.y111{bottom:219.866667pt;}
.yba{bottom:221.306667pt;}
.y7f{bottom:221.946667pt;}
.y27{bottom:223.386667pt;}
.yf2{bottom:226.746667pt;}
.y3d{bottom:233.000000pt;}
.y179{bottom:233.626667pt;}
.y110{bottom:235.226667pt;}
.yb9{bottom:236.666667pt;}
.y26{bottom:237.146667pt;}
.y7e{bottom:237.306667pt;}
.yf1{bottom:239.066667pt;}
.y178{bottom:245.786667pt;}
.y3c{bottom:248.360000pt;}
.y10f{bottom:250.586667pt;}
.y25{bottom:250.906667pt;}
.yf0{bottom:251.226667pt;}
.yb8{bottom:251.866667pt;}
.y7d{bottom:252.666667pt;}
.y177{bottom:258.106667pt;}
.yef{bottom:263.546667pt;}
.y3b{bottom:263.720000pt;}
.y24{bottom:264.666667pt;}
.y10e{bottom:265.946667pt;}
.yb7{bottom:267.226667pt;}
.y7c{bottom:267.866667pt;}
.y176{bottom:270.426667pt;}
.yee{bottom:275.866667pt;}
.y23{bottom:278.586667pt;}
.y3a{bottom:279.080000pt;}
.y10d{bottom:281.306667pt;}
.yb6{bottom:282.586667pt;}
.y7b{bottom:283.226667pt;}
.y1c{bottom:285.946667pt;}
.yed{bottom:288.026667pt;}
.y22{bottom:292.346667pt;}
.y39{bottom:294.466667pt;}
.y175{bottom:294.906667pt;}
.y10c{bottom:296.666667pt;}
.yb5{bottom:297.946667pt;}
.y7a{bottom:298.586667pt;}
.yec{bottom:300.346667pt;}
.y21{bottom:306.106667pt;}
.y174{bottom:307.226667pt;}
.y10b{bottom:311.866667pt;}
.yeb{bottom:312.666667pt;}
.yb4{bottom:313.306667pt;}
.y79{bottom:313.946667pt;}
.y1a7{bottom:317.306667pt;}
.y38{bottom:317.666667pt;}
.y173{bottom:319.386667pt;}
.y20{bottom:319.866667pt;}
.yea{bottom:324.826667pt;}
.y10a{bottom:327.226667pt;}
.yb3{bottom:328.666667pt;}
.y78{bottom:329.306667pt;}
.y19c{bottom:329.626667pt;}
.y172{bottom:331.706667pt;}
.y1f{bottom:333.786667pt;}
.ye9{bottom:337.146667pt;}
.y105{bottom:339.706667pt;}
.yb2{bottom:343.866667pt;}
.y171{bottom:344.026667pt;}
.y77{bottom:344.706667pt;}
.ye8{bottom:349.506667pt;}
.y170{bottom:356.226667pt;}
.yb1{bottom:359.266667pt;}
.y76{bottom:359.906667pt;}
.ye7{bottom:361.666667pt;}
.y1e{bottom:364.546667pt;}
.y16f{bottom:368.546667pt;}
.ye6{bottom:373.986667pt;}
.yb0{bottom:374.626667pt;}
.y75{bottom:375.266667pt;}
.y16e{bottom:380.866667pt;}
.ye5{bottom:386.306667pt;}
.yaf{bottom:389.986667pt;}
.y74{bottom:390.626667pt;}
.y16d{bottom:393.026667pt;}
.ye4{bottom:398.466667pt;}
.yae{bottom:405.346667pt;}
.y73{bottom:405.986667pt;}
.ye3{bottom:410.786667pt;}
.y1d{bottom:411.106667pt;}
.y16c{bottom:417.666667pt;}
.y104{bottom:419.266667pt;}
.yad{bottom:420.546667pt;}
.y72{bottom:421.346667pt;}
.ye2{bottom:423.106667pt;}
.y16b{bottom:429.826667pt;}
.y103{bottom:432.386667pt;}
.ye1{bottom:435.266667pt;}
.yac{bottom:435.906667pt;}
.y71{bottom:436.546667pt;}
.y16a{bottom:442.146667pt;}
.y139{bottom:447.586667pt;}
.ydc{bottom:448.226667pt;}
.yab{bottom:451.266667pt;}
.y70{bottom:451.906667pt;}
.y169{bottom:454.306667pt;}
.y138{bottom:459.906667pt;}
.yde{bottom:460.546667pt;}
.y101{bottom:463.106667pt;}
.yaa{bottom:466.626667pt;}
.y6f{bottom:467.266667pt;}
.y137{bottom:472.066667pt;}
.yff{bottom:478.466667pt;}
.y168{bottom:478.946667pt;}
.ya9{bottom:481.986667pt;}
.y19b{bottom:482.306667pt;}
.y6e{bottom:482.626667pt;}
.y136{bottom:484.386667pt;}
.y167{bottom:491.106667pt;}
.y135{bottom:496.706667pt;}
.ya8{bottom:497.346667pt;}
.y18f{bottom:497.666667pt;}
.y6d{bottom:497.986667pt;}
.y166{bottom:503.426667pt;}
.ydb{bottom:503.906667pt;}
.y134{bottom:508.866667pt;}
.yfc{bottom:509.026667pt;}
.ya7{bottom:512.546667pt;}
.y6c{bottom:513.346667pt;}
.y165{bottom:515.746667pt;}
.yda{bottom:519.266667pt;}
.y133{bottom:521.186667pt;}
.ya6{bottom:527.906667pt;}
.y6b{bottom:528.546667pt;}
.yd9{bottom:532.386667pt;}
.y132{bottom:533.506667pt;}
.y164{bottom:540.226667pt;}
.yfb{bottom:540.386667pt;}
.ya5{bottom:543.266667pt;}
.y6a{bottom:543.906667pt;}
.yd7{bottom:544.706667pt;}
.y131{bottom:545.666667pt;}
.y163{bottom:552.546667pt;}
.yd3{bottom:556.866667pt;}
.y130{bottom:557.986667pt;}
.ya4{bottom:558.626667pt;}
.y69{bottom:559.266667pt;}
.y162{bottom:564.706667pt;}
.yd6{bottom:569.213333pt;}
.y12f{bottom:570.333333pt;}
.ya3{bottom:574.013333pt;}
.y68{bottom:574.653333pt;}
.y161{bottom:577.053333pt;}
.yd5{bottom:581.533333pt;}
.y12e{bottom:582.493333pt;}
.ya2{bottom:589.373333pt;}
.y67{bottom:590.013333pt;}
.yce{bottom:593.693333pt;}
.y12d{bottom:594.813333pt;}
.y160{bottom:601.533333pt;}
.ya1{bottom:604.573333pt;}
.y66{bottom:605.373333pt;}
.yd2{bottom:606.013333pt;}
.y12c{bottom:607.133333pt;}
.y15f{bottom:613.853333pt;}
.yd1{bottom:618.333333pt;}
.y12b{bottom:619.293333pt;}
.ya0{bottom:619.933333pt;}
.y65{bottom:620.573333pt;}
.y17{bottom:624.893333pt;}
.y15e{bottom:626.173333pt;}
.yd0{bottom:630.493333pt;}
.y12a{bottom:631.613333pt;}
.y9f{bottom:635.293333pt;}
.y64{bottom:635.933333pt;}
.y15d{bottom:638.333333pt;}
.yc8{bottom:642.813333pt;}
.y129{bottom:643.933333pt;}
.y18e{bottom:650.333333pt;}
.y9e{bottom:650.653333pt;}
.y63{bottom:651.293333pt;}
.ycd{bottom:655.133333pt;}
.y128{bottom:656.093333pt;}
.y15c{bottom:662.973333pt;}
.y18b{bottom:665.693333pt;}
.y9d{bottom:666.013333pt;}
.y62{bottom:666.653333pt;}
.ycc{bottom:667.293333pt;}
.y127{bottom:668.413333pt;}
.y15b{bottom:675.133333pt;}
.ycb{bottom:679.613333pt;}
.y126{bottom:680.733333pt;}
.y9c{bottom:681.373333pt;}
.y61{bottom:682.013333pt;}
.y15a{bottom:687.453333pt;}
.yca{bottom:691.933333pt;}
.y125{bottom:692.893333pt;}
.y9b{bottom:696.573333pt;}
.y60{bottom:697.373333pt;}
.y159{bottom:699.773333pt;}
.yc6{bottom:704.733333pt;}
.y124{bottom:705.213333pt;}
.y9a{bottom:711.933333pt;}
.y5f{bottom:712.573333pt;}
.y123{bottom:717.533333pt;}
.y15{bottom:718.173333pt;}
.y158{bottom:724.253333pt;}
.y99{bottom:727.293333pt;}
.y5e{bottom:727.933333pt;}
.y122{bottom:729.693333pt;}
.yc5{bottom:735.933333pt;}
.y157{bottom:736.573333pt;}
.y121{bottom:742.013333pt;}
.y98{bottom:742.653333pt;}
.y5d{bottom:743.293333pt;}
.y14{bottom:746.333333pt;}
.y156{bottom:748.733333pt;}
.yc4{bottom:751.293333pt;}
.y120{bottom:754.173333pt;}
.y97{bottom:758.013333pt;}
.y5c{bottom:758.653333pt;}
.y155{bottom:761.053333pt;}
.y13{bottom:761.693333pt;}
.y11f{bottom:766.493333pt;}
.y96{bottom:773.213333pt;}
.y154{bottom:773.373333pt;}
.y5b{bottom:774.013333pt;}
.y11e{bottom:778.813333pt;}
.y12{bottom:781.693333pt;}
.yc3{bottom:782.013333pt;}
.y153{bottom:785.533333pt;}
.y95{bottom:788.573333pt;}
.y5a{bottom:789.213333pt;}
.y11d{bottom:790.973333pt;}
.yc2{bottom:794.373333pt;}
.y11{bottom:795.813333pt;}
.y152{bottom:797.893333pt;}
.y11c{bottom:803.333333pt;}
.y10{bottom:803.973333pt;}
.y59{bottom:804.613333pt;}
.y151{bottom:810.213333pt;}
.y11b{bottom:815.653333pt;}
.y189{bottom:817.733333pt;}
.y94{bottom:819.333333pt;}
.y58{bottom:819.973333pt;}
.yf{bottom:820.293333pt;}
.y150{bottom:822.373333pt;}
.y11a{bottom:827.813333pt;}
.ye{bottom:832.613333pt;}
.y17f{bottom:833.093333pt;}
.y93{bottom:834.693333pt;}
.y57{bottom:835.333333pt;}
.y119{bottom:840.133333pt;}
.yd{bottom:844.773333pt;}
.y14f{bottom:847.013333pt;}
.y92{bottom:850.053333pt;}
.y56{bottom:850.693333pt;}
.y118{bottom:852.453333pt;}
.yc{bottom:853.733333pt;}
.y14e{bottom:859.173333pt;}
.y91{bottom:865.253333pt;}
.y55{bottom:866.053333pt;}
.yb{bottom:869.093333pt;}
.y14d{bottom:871.493333pt;}
.y90{bottom:880.613333pt;}
.y54{bottom:881.253333pt;}
.y14c{bottom:883.813333pt;}
.ya{bottom:884.453333pt;}
.y8f{bottom:895.973333pt;}
.y53{bottom:896.613333pt;}
.y9{bottom:899.653333pt;}
.y14b{bottom:908.293333pt;}
.y8e{bottom:911.333333pt;}
.y52{bottom:911.973333pt;}
.y8{bottom:916.933333pt;}
.y14a{bottom:920.613333pt;}
.y8d{bottom:926.693333pt;}
.y51{bottom:927.333333pt;}
.y149{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y8c{bottom:942.053333pt;}
.y50{bottom:942.693333pt;}
.y148{bottom:945.093333pt;}
.y8b{bottom:957.253333pt;}
.y147{bottom:957.413333pt;}
.y4f{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y146{bottom:969.573333pt;}
.y8a{bottom:972.613333pt;}
.y4e{bottom:973.253333pt;}
.y145{bottom:981.893333pt;}
.y89{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y144{bottom:994.213333pt;}
.y88{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y143{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y4d{bottom:1031.680000pt;}
.y87{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h1a{height:12.160000pt;}
.h18{height:12.320000pt;}
.h22{height:12.320133pt;}
.h1e{height:12.352000pt;}
.h17{height:15.200000pt;}
.h16{height:15.360000pt;}
.ha{height:23.360000pt;}
.h20{height:24.480000pt;}
.h6{height:26.381250pt;}
.h26{height:30.560000pt;}
.h25{height:30.720000pt;}
.h9{height:33.918750pt;}
.h8{height:35.974375pt;}
.h1f{height:36.800000pt;}
.h1d{height:36.832000pt;}
.h1b{height:42.063437pt;}
.h7{height:42.084375pt;}
.h21{height:43.433883pt;}
.h13{height:47.085938pt;}
.hf{height:47.109375pt;}
.h24{height:47.621250pt;}
.h10{height:48.375000pt;}
.h1c{height:49.120000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h23{height:52.478750pt;}
.h2{height:53.535000pt;}
.h15{height:55.298750pt;}
.h19{height:61.280000pt;}
.hb{height:62.812500pt;}
.h27{height:76.672000pt;}
.h12{height:77.792000pt;}
.h5{height:85.785000pt;}
.hc{height:92.640000pt;}
.h14{height:100.640000pt;}
.h28{height:152.000000pt;}
.h29{height:152.026667pt;}
.h2a{height:152.666667pt;}
.h11{height:338.146667pt;}
.he{height:352.986667pt;}
.hd{height:431.586667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w18{width:29.920000pt;}
.w1c{width:30.912000pt;}
.w15{width:31.040000pt;}
.w24{width:31.200000pt;}
.w1f{width:31.360000pt;}
.w23{width:31.392000pt;}
.w19{width:31.552000pt;}
.w20{width:31.680000pt;}
.w25{width:32.032000pt;}
.w21{width:32.160000pt;}
.w26{width:32.320000pt;}
.w14{width:32.352000pt;}
.w27{width:32.480000pt;}
.w22{width:32.640000pt;}
.w1d{width:33.440000pt;}
.w16{width:37.120000pt;}
.w17{width:38.560000pt;}
.w1a{width:42.560000pt;}
.w1b{width:44.320000pt;}
.w12{width:60.832000pt;}
.w10{width:61.472000pt;}
.we{width:63.392000pt;}
.wf{width:75.680000pt;}
.w13{width:77.760000pt;}
.w11{width:86.880000pt;}
.wb{width:88.032000pt;}
.wd{width:88.160000pt;}
.w9{width:94.432000pt;}
.wa{width:102.400000pt;}
.w2b{width:129.920000pt;}
.w1e{width:140.506667pt;}
.wc{width:143.226667pt;}
.w2a{width:176.506667pt;}
.w3{width:185.946667pt;}
.w28{width:190.906667pt;}
.w29{width:217.146667pt;}
.w5{width:385.026667pt;}
.w2c{width:470.333333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:4.000000pt;}
.x2c{left:5.280000pt;}
.xf{left:7.200000pt;}
.x37{left:8.160000pt;}
.x11{left:9.440000pt;}
.x31{left:10.560000pt;}
.x24{left:11.720000pt;}
.x38{left:12.800000pt;}
.x36{left:14.080000pt;}
.x34{left:16.000000pt;}
.x35{left:18.400000pt;}
.x28{left:19.680000pt;}
.x1b{left:20.640000pt;}
.x26{left:26.880000pt;}
.x20{left:31.840000pt;}
.x1f{left:37.600000pt;}
.x21{left:41.306667pt;}
.x4c{left:64.954667pt;}
.x13{left:94.720000pt;}
.x49{left:106.272000pt;}
.xe{left:111.552000pt;}
.x1{left:113.471988pt;}
.x2{left:115.551988pt;}
.x4a{left:121.914667pt;}
.x16{left:137.466655pt;}
.x3{left:138.906655pt;}
.x48{left:141.946655pt;}
.x8{left:143.706655pt;}
.x22{left:149.306667pt;}
.x17{left:154.106655pt;}
.x15{left:160.666655pt;}
.x6{left:176.506655pt;}
.xc{left:188.986655pt;}
.x1a{left:192.346667pt;}
.xd{left:201.786655pt;}
.x4{left:222.746655pt;}
.x9{left:229.786655pt;}
.x4b{left:236.186667pt;}
.x23{left:237.466667pt;}
.xa{left:242.586655pt;}
.x39{left:254.306667pt;}
.x2d{left:269.826667pt;}
.x3a{left:285.666667pt;}
.x1c{left:286.786667pt;}
.x10{left:297.506667pt;}
.x25{left:300.866667pt;}
.x46{left:305.026667pt;}
.xb{left:306.306655pt;}
.x12{left:316.226667pt;}
.x3b{left:317.346667pt;}
.x7{left:329.826655pt;}
.x2f{left:337.986667pt;}
.x3c{left:349.506667pt;}
.x27{left:376.546667pt;}
.x14{left:377.826667pt;}
.x3d{left:382.146667pt;}
.x1d{left:389.186667pt;}
.x5{left:406.466655pt;}
.x3e{left:414.306667pt;}
.x29{left:438.013333pt;}
.x3f{left:445.693333pt;}
.x1e{left:477.213333pt;}
.x30{left:480.573333pt;}
.x40{left:508.413333pt;}
.x47{left:522.173333pt;}
.x2a{left:524.893333pt;}
.x41{left:539.613333pt;}
.x32{left:554.813333pt;}
.x42{left:570.973333pt;}
.x2b{left:585.733333pt;}
.x43{left:603.013333pt;}
.x19{left:615.493322pt;}
.x33{left:630.053333pt;}
.x44{left:635.333333pt;}
.x45{left:666.533333pt;}
.x18{left:672.773333pt;}
}




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