
    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_4904217cc615bc5b7bbd8e7e.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_51034a28c62289fce4a02890.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_967e47a6042e0dfd804e3488.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b41eb1d10a36044ac16afc04.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c0dc7bbe7f3a2f0add1fe0dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_34c276da706800dfdfe580fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_e52e3ca1d5280d0f89e4832d.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_287081c30b0ccfa7f013947a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_133bdcc8dbfc46644b5088e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.814941;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_a935044c26f0ec47f6952516.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v7{vertical-align:-9.360000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v8{vertical-align:9.360000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls3f{letter-spacing:-1.800000px;}
.ls3b{letter-spacing:-1.548000px;}
.ls35{letter-spacing:-1.506000px;}
.lsc{letter-spacing:-1.440000px;}
.ls38{letter-spacing:-1.236000px;}
.ls33{letter-spacing:-1.182000px;}
.lsb{letter-spacing:-1.134000px;}
.ls3e{letter-spacing:-1.080000px;}
.ls3d{letter-spacing:-0.978000px;}
.ls1e{letter-spacing:-0.774000px;}
.ls3a{letter-spacing:-0.612000px;}
.ls44{letter-spacing:-0.513600px;}
.lsd{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls36{letter-spacing:-0.267600px;}
.ls12{letter-spacing:-0.259800px;}
.ls46{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.106800px;}
.ls34{letter-spacing:-0.067200px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.039116px;}
.ls1{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.076800px;}
.ls22{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.126720px;}
.ls43{letter-spacing:0.153600px;}
.ls23{letter-spacing:0.174960px;}
.ls1f{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls1c{letter-spacing:0.206640px;}
.ls25{letter-spacing:0.246240px;}
.ls2e{letter-spacing:0.253876px;}
.ls31{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.365760px;}
.ls37{letter-spacing:0.498000px;}
.ls26{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.654000px;}
.ls29{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.731956px;}
.ls2f{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.236639px;}
.ls30{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.340000px;}
.ls28{letter-spacing:3.780000px;}
.ls20{letter-spacing:3.924000px;}
.ls15{letter-spacing:4.500000px;}
.ls1b{letter-spacing:5.220000px;}
.ls42{letter-spacing:7.380000px;}
.ls2b{letter-spacing:8.820070px;}
.ls17{letter-spacing:10.980000px;}
.ls41{letter-spacing:11.466720px;}
.ls16{letter-spacing:12.420000px;}
.ls1a{letter-spacing:16.506720px;}
.ls13{letter-spacing:16.650720px;}
.ls39{letter-spacing:27.450720px;}
.ls45{letter-spacing:30.420000px;}
.ls40{letter-spacing:41.706720px;}
.ls0{letter-spacing:42.300000px;}
.ls19{letter-spacing:44.010720px;}
.ls3{letter-spacing:46.170720px;}
.ls3c{letter-spacing:73.530720px;}
.ls14{letter-spacing:124.650720px;}
.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;}
}
.ws4{word-spacing:-95.760000px;}
.ws12{word-spacing:-59.760000px;}
.ws3{word-spacing:-25.020000px;}
.ws5{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws17{word-spacing:-15.594000px;}
.ws6{word-spacing:-15.426000px;}
.wsb{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws16{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws19{word-spacing:-14.872800px;}
.ws14{word-spacing:-14.833200px;}
.ws24{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.479800px;}
.ws23{word-spacing:-14.426400px;}
.ws21{word-spacing:-14.328000px;}
.ws15{word-spacing:-14.166000px;}
.ws1e{word-spacing:-13.962000px;}
.ws1f{word-spacing:-13.860000px;}
.ws18{word-spacing:-13.758000px;}
.ws1c{word-spacing:-13.704000px;}
.ws1a{word-spacing:-13.434000px;}
.ws1d{word-spacing:-13.392000px;}
.ws20{word-spacing:-13.140000px;}
.ws7{word-spacing:-10.440000px;}
.ws13{word-spacing:-9.720000px;}
.ws11{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._8{margin-left:-8.942400px;}
._10{margin-left:-6.173040px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._d{width:2.931840px;}
._c{width:4.114800px;}
._f{width:6.035760px;}
._e{width:7.230960px;}
._15{width:8.306640px;}
._11{width:9.382320px;}
._14{width:10.566720px;}
._12{width:11.766720px;}
._13{width:13.401600px;}
._19{width:16.470720px;}
._1a{width:17.801760px;}
._16{width:21.872160px;}
._1e{width:25.326000px;}
._18{width:28.006560px;}
._1c{width:29.747520px;}
._17{width:31.244400px;}
._1d{width:32.491440px;}
._a{width:41.932080px;}
._b{width:43.525200px;}
._1b{width:49.292880px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:7.560000px;}
.y170{bottom:10.620000px;}
.yd0{bottom:11.520000px;}
.yd2{bottom:11.700000px;}
.yca{bottom:11.880000px;}
.yf5{bottom:11.910000px;}
.y13b{bottom:11.925000px;}
.ye7{bottom:17.640000px;}
.y16f{bottom:30.600000px;}
.y16c{bottom:34.740000px;}
.y16e{bottom:50.400000px;}
.y7{bottom:60.300000px;}
.y16d{bottom:70.200000px;}
.y6b{bottom:87.480000px;}
.y124{bottom:93.240000px;}
.yc8{bottom:94.500000px;}
.y14c{bottom:95.940000px;}
.y34{bottom:96.120000px;}
.y95{bottom:96.660000px;}
.yfa{bottom:102.960000px;}
.y6a{bottom:107.280000px;}
.y123{bottom:113.220000px;}
.yc7{bottom:114.300000px;}
.y16b{bottom:114.480000px;}
.y14b{bottom:115.740000px;}
.y33{bottom:116.100000px;}
.y94{bottom:117.900000px;}
.yf9{bottom:122.760000px;}
.y69{bottom:127.080000px;}
.y122{bottom:133.020000px;}
.yc6{bottom:134.100000px;}
.y16a{bottom:134.280000px;}
.y14a{bottom:135.720000px;}
.y32{bottom:135.900000px;}
.y93{bottom:137.880000px;}
.yf8{bottom:142.560000px;}
.y68{bottom:146.880000px;}
.y121{bottom:152.820000px;}
.yc5{bottom:153.900000px;}
.y169{bottom:154.080000px;}
.y149{bottom:155.520000px;}
.y31{bottom:155.700000px;}
.y92{bottom:157.680000px;}
.yf7{bottom:162.360000px;}
.y67{bottom:166.680000px;}
.y120{bottom:172.620000px;}
.yc4{bottom:173.700000px;}
.y168{bottom:173.880000px;}
.y148{bottom:175.320000px;}
.y30{bottom:175.500000px;}
.yf6{bottom:177.120000px;}
.y91{bottom:177.660000px;}
.y66{bottom:186.660000px;}
.y11f{bottom:192.420000px;}
.yc3{bottom:193.680000px;}
.y147{bottom:195.120000px;}
.y2f{bottom:195.300000px;}
.y90{bottom:198.720000px;}
.yf4{bottom:203.760000px;}
.y65{bottom:206.460000px;}
.y11e{bottom:212.430000px;}
.yc2{bottom:213.510000px;}
.y167{bottom:213.690000px;}
.y146{bottom:214.950000px;}
.y2e{bottom:215.310000px;}
.y8f{bottom:218.730000px;}
.y64{bottom:226.290000px;}
.y11d{bottom:227.190000px;}
.yf3{bottom:230.430000px;}
.yc1{bottom:233.310000px;}
.y166{bottom:233.490000px;}
.y145{bottom:234.930000px;}
.y2d{bottom:235.110000px;}
.y8e{bottom:239.970000px;}
.yc0{bottom:253.110000px;}
.y165{bottom:253.290000px;}
.y11c{bottom:253.830000px;}
.y144{bottom:254.730000px;}
.y2c{bottom:254.910000px;}
.y63{bottom:255.090000px;}
.y8d{bottom:261.210000px;}
.yf2{bottom:262.830000px;}
.ybf{bottom:272.910000px;}
.y164{bottom:273.090000px;}
.y143{bottom:274.530000px;}
.y2b{bottom:274.710000px;}
.y62{bottom:274.890000px;}
.y11b{bottom:280.470000px;}
.y8c{bottom:282.630000px;}
.ybe{bottom:292.890000px;}
.y142{bottom:294.330000px;}
.y2a{bottom:294.510000px;}
.y61{bottom:294.870000px;}
.y8b{bottom:302.610000px;}
.y11a{bottom:306.930000px;}
.ybd{bottom:312.690000px;}
.y163{bottom:312.870000px;}
.y141{bottom:314.130000px;}
.y29{bottom:314.490000px;}
.y60{bottom:314.670000px;}
.yf1{bottom:322.410000px;}
.y8a{bottom:323.850000px;}
.ybc{bottom:332.490000px;}
.y162{bottom:332.670000px;}
.y119{bottom:333.570000px;}
.y140{bottom:334.110000px;}
.y28{bottom:334.290000px;}
.y5f{bottom:334.470000px;}
.yf0{bottom:342.210000px;}
.y89{bottom:343.650000px;}
.ybb{bottom:352.290000px;}
.y161{bottom:352.470000px;}
.y13f{bottom:353.910000px;}
.y27{bottom:354.090000px;}
.y5e{bottom:354.270000px;}
.y118{bottom:360.210000px;}
.yef{bottom:362.010000px;}
.y88{bottom:365.070000px;}
.yba{bottom:372.090000px;}
.y160{bottom:372.270000px;}
.y13e{bottom:373.710000px;}
.y26{bottom:373.890000px;}
.y5d{bottom:374.070000px;}
.yee{bottom:390.810000px;}
.yb9{bottom:392.070000px;}
.y117{bottom:392.610000px;}
.y13d{bottom:393.510000px;}
.y25{bottom:393.690000px;}
.y5c{bottom:394.050000px;}
.y13c{bottom:408.270000px;}
.yed{bottom:410.790000px;}
.yb8{bottom:411.870000px;}
.y15f{bottom:412.050000px;}
.y116{bottom:412.590000px;}
.y24{bottom:413.670000px;}
.y5b{bottom:413.850000px;}
.yec{bottom:430.590000px;}
.yb7{bottom:431.670000px;}
.y15e{bottom:431.850000px;}
.y115{bottom:432.390000px;}
.y23{bottom:433.470000px;}
.y5a{bottom:433.650000px;}
.y13a{bottom:434.910000px;}
.yeb{bottom:450.435000px;}
.yb6{bottom:451.515000px;}
.y15d{bottom:451.695000px;}
.y114{bottom:452.235000px;}
.y22{bottom:453.315000px;}
.y59{bottom:453.495000px;}
.y139{bottom:461.595000px;}
.yea{bottom:470.235000px;}
.yb5{bottom:471.315000px;}
.y15c{bottom:471.495000px;}
.y113{bottom:472.035000px;}
.y21{bottom:473.115000px;}
.y58{bottom:473.295000px;}
.ye8{bottom:484.995000px;}
.y138{bottom:488.235000px;}
.y15b{bottom:491.295000px;}
.yb4{bottom:491.475000px;}
.y112{bottom:491.835000px;}
.y20{bottom:492.915000px;}
.y57{bottom:493.275000px;}
.ye6{bottom:507.315000px;}
.y15a{bottom:511.275000px;}
.yb3{bottom:511.635000px;}
.y111{bottom:511.815000px;}
.y1f{bottom:512.895000px;}
.y56{bottom:513.075000px;}
.y137{bottom:514.875000px;}
.y159{bottom:531.075000px;}
.y110{bottom:531.615000px;}
.yb2{bottom:531.795000px;}
.y1e{bottom:532.695000px;}
.y55{bottom:532.875000px;}
.yb1{bottom:534.135000px;}
.ye5{bottom:539.715000px;}
.y136{bottom:541.515000px;}
.y158{bottom:550.875000px;}
.y10f{bottom:551.415000px;}
.y1d{bottom:552.495000px;}
.y87{bottom:552.675000px;}
.yb0{bottom:554.295000px;}
.y54{bottom:561.675000px;}
.y135{bottom:568.155000px;}
.y157{bottom:570.675000px;}
.ye4{bottom:572.115000px;}
.y1c{bottom:572.295000px;}
.y86{bottom:572.475000px;}
.yaf{bottom:574.455000px;}
.y10e{bottom:580.215000px;}
.y53{bottom:581.475000px;}
.y156{bottom:590.475000px;}
.ye3{bottom:591.915000px;}
.y1b{bottom:592.095000px;}
.y85{bottom:592.455000px;}
.yae{bottom:594.255000px;}
.y10d{bottom:600.015000px;}
.y134{bottom:600.375000px;}
.y52{bottom:601.455000px;}
.y155{bottom:610.455000px;}
.ye2{bottom:611.715000px;}
.y84{bottom:612.255000px;}
.yad{bottom:614.055000px;}
.y1a{bottom:614.235000px;}
.y10c{bottom:619.995000px;}
.y133{bottom:620.175000px;}
.y51{bottom:621.255000px;}
.y154{bottom:630.255000px;}
.ye1{bottom:631.515000px;}
.y83{bottom:632.055000px;}
.y19{bottom:634.035000px;}
.y10b{bottom:639.795000px;}
.y132{bottom:639.975000px;}
.y50{bottom:641.055000px;}
.yac{bottom:642.855000px;}
.y153{bottom:650.055000px;}
.ye0{bottom:651.495000px;}
.y82{bottom:651.855000px;}
.y10a{bottom:659.595000px;}
.y131{bottom:659.775000px;}
.y4f{bottom:660.855000px;}
.yab{bottom:662.655000px;}
.y18{bottom:662.835000px;}
.y152{bottom:669.855000px;}
.ydf{bottom:671.295000px;}
.y81{bottom:671.655000px;}
.y109{bottom:679.395000px;}
.y130{bottom:679.575000px;}
.y4e{bottom:680.655000px;}
.y17{bottom:682.845000px;}
.yaa{bottom:683.925000px;}
.y151{bottom:689.685000px;}
.yde{bottom:691.125000px;}
.y80{bottom:691.665000px;}
.y108{bottom:699.225000px;}
.y12f{bottom:699.585000px;}
.y4d{bottom:700.665000px;}
.y16{bottom:702.645000px;}
.ya9{bottom:705.165000px;}
.y150{bottom:709.665000px;}
.y7f{bottom:711.465000px;}
.y107{bottom:719.205000px;}
.y12e{bottom:719.385000px;}
.ydd{bottom:719.925000px;}
.y4c{bottom:720.465000px;}
.y15{bottom:722.445000px;}
.ya8{bottom:726.585000px;}
.y14f{bottom:729.465000px;}
.y7e{bottom:731.265000px;}
.y106{bottom:733.965000px;}
.y12d{bottom:739.185000px;}
.ydc{bottom:739.725000px;}
.y4b{bottom:740.265000px;}
.y14{bottom:742.245000px;}
.ya7{bottom:747.825000px;}
.y14e{bottom:749.265000px;}
.y7d{bottom:751.065000px;}
.y12c{bottom:758.985000px;}
.ydb{bottom:759.705000px;}
.y4a{bottom:760.065000px;}
.y105{bottom:760.605000px;}
.y13{bottom:762.045000px;}
.ya6{bottom:767.985000px;}
.y14d{bottom:769.065000px;}
.y7c{bottom:770.865000px;}
.y12b{bottom:778.785000px;}
.yda{bottom:779.505000px;}
.y12{bottom:782.025000px;}
.y104{bottom:787.245000px;}
.ya5{bottom:787.785000px;}
.y49{bottom:788.865000px;}
.y7b{bottom:790.845000px;}
.y12a{bottom:798.765000px;}
.yd9{bottom:799.305000px;}
.y11{bottom:801.825000px;}
.y48{bottom:808.845000px;}
.y7a{bottom:810.645000px;}
.yd8{bottom:814.065000px;}
.y129{bottom:818.565000px;}
.y103{bottom:819.645000px;}
.y10{bottom:821.625000px;}
.y47{bottom:828.645000px;}
.ya4{bottom:830.265000px;}
.y79{bottom:830.445000px;}
.y128{bottom:838.365000px;}
.y102{bottom:839.445000px;}
.yd7{bottom:840.705000px;}
.yf{bottom:841.425000px;}
.y46{bottom:848.445000px;}
.y78{bottom:850.245000px;}
.ya3{bottom:851.505000px;}
.y127{bottom:858.165000px;}
.y101{bottom:859.245000px;}
.ye{bottom:861.225000px;}
.yd6{bottom:867.345000px;}
.y45{bottom:868.245000px;}
.y77{bottom:870.045000px;}
.ya2{bottom:872.925000px;}
.y100{bottom:879.045000px;}
.yd{bottom:883.365000px;}
.y44{bottom:888.045000px;}
.y76{bottom:890.025000px;}
.ya1{bottom:892.905000px;}
.yd5{bottom:893.985000px;}
.yff{bottom:899.025000px;}
.y126{bottom:899.565000px;}
.y43{bottom:908.025000px;}
.yc{bottom:908.385000px;}
.y75{bottom:909.825000px;}
.ya0{bottom:912.705000px;}
.yfe{bottom:918.870000px;}
.yd4{bottom:920.670000px;}
.yb{bottom:923.730000px;}
.y125{bottom:926.250000px;}
.y42{bottom:927.870000px;}
.y74{bottom:929.670000px;}
.y9f{bottom:933.990000px;}
.yfd{bottom:938.670000px;}
.ya{bottom:944.970000px;}
.yd3{bottom:947.310000px;}
.y41{bottom:947.670000px;}
.y73{bottom:949.470000px;}
.y9e{bottom:955.230000px;}
.yfc{bottom:958.470000px;}
.y40{bottom:967.470000px;}
.y9{bottom:968.370000px;}
.y72{bottom:969.270000px;}
.yd1{bottom:973.950000px;}
.y9d{bottom:976.650000px;}
.yfb{bottom:978.270000px;}
.y3f{bottom:987.270000px;}
.y9c{bottom:996.630000px;}
.y71{bottom:998.250000px;}
.y8{bottom:1000.050000px;}
.ycf{bottom:1000.590000px;}
.y3e{bottom:1007.250000px;}
.y9b{bottom:1016.430000px;}
.y70{bottom:1018.050000px;}
.yce{bottom:1026.870000px;}
.y3d{bottom:1027.050000px;}
.y6{bottom:1028.850000px;}
.y9a{bottom:1036.410000px;}
.y6f{bottom:1037.850000px;}
.y3c{bottom:1046.850000px;}
.y5{bottom:1051.350000px;}
.ycd{bottom:1053.510000px;}
.y6e{bottom:1057.650000px;}
.y99{bottom:1065.210000px;}
.y3b{bottom:1066.650000px;}
.y6d{bottom:1077.450000px;}
.ycc{bottom:1080.150000px;}
.y4{bottom:1082.130000px;}
.y98{bottom:1085.010000px;}
.y3a{bottom:1086.450000px;}
.y6c{bottom:1097.430000px;}
.y97{bottom:1104.810000px;}
.y39{bottom:1106.430000px;}
.ycb{bottom:1106.790000px;}
.y3{bottom:1112.910000px;}
.y96{bottom:1126.050000px;}
.y38{bottom:1126.230000px;}
.yc9{bottom:1133.430000px;}
.y2{bottom:1143.870000px;}
.y37{bottom:1146.030000px;}
.y36{bottom:1165.860000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.400000px;}
.h19{height:2.010938px;}
.h17{height:21.600000px;}
.h14{height:25.560000px;}
.h15{height:25.740000px;}
.h13{height:25.920000px;}
.h11{height:25.956000px;}
.h7{height:27.147656px;}
.h16{height:31.680000px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.hd{height:43.495312px;}
.h9{height:43.506914px;}
.h12{height:45.024258px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.hc{height:47.486953px;}
.hb{height:48.027656px;}
.he{height:49.255313px;}
.hf{height:50.364141px;}
.h10{height:51.086953px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h18{height:84.240000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:116.100000px;}
.w2b{width:116.460000px;}
.w6{width:117.000000px;}
.w29{width:117.180000px;}
.w9{width:126.576000px;}
.w1e{width:126.756000px;}
.w1f{width:126.900000px;}
.wa{width:126.936000px;}
.w4{width:127.296000px;}
.w1b{width:127.476000px;}
.w1c{width:127.620000px;}
.w23{width:127.656000px;}
.w5{width:127.836000px;}
.w26{width:136.116000px;}
.w21{width:136.836000px;}
.w2a{width:137.196000px;}
.w27{width:137.520000px;}
.wc{width:137.556000px;}
.w7{width:137.916000px;}
.w28{width:138.096000px;}
.w22{width:138.240000px;}
.w10{width:138.276000px;}
.w13{width:147.996000px;}
.w19{width:148.140000px;}
.w14{width:148.176000px;}
.w24{width:148.536000px;}
.we{width:148.716000px;}
.w17{width:148.860000px;}
.wf{width:148.896000px;}
.w15{width:158.790000px;}
.w11{width:159.150000px;}
.w12{width:169.230000px;}
.wd{width:169.590000px;}
.w18{width:190.515000px;}
.w16{width:190.875000px;}
.w2c{width:210.855000px;}
.w25{width:213.015000px;}
.w20{width:213.375000px;}
.w1d{width:243.795000px;}
.w1a{width:244.155000px;}
.w8{width:254.415000px;}
.w3{width:254.775000px;}
.w2d{width:580.965000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3a{left:7.740000px;}
.x2d{left:51.299987px;}
.x1{left:54.179987px;}
.x1e{left:58.499987px;}
.x3{left:60.839987px;}
.x1f{left:62.099987px;}
.x7{left:63.899987px;}
.xa{left:65.879987px;}
.x20{left:68.039987px;}
.x37{left:75.239987px;}
.x4{left:83.735987px;}
.xb{left:85.535987px;}
.x6{left:87.875987px;}
.x5{left:94.535987px;}
.x38{left:102.275987px;}
.x2{left:108.035987px;}
.xc{left:111.275987px;}
.xd{left:115.955987px;}
.xe{left:142.955987px;}
.xf{left:163.109987px;}
.x10{left:178.049987px;}
.x11{left:182.189987px;}
.x12{left:188.309987px;}
.x39{left:191.415000px;}
.x13{left:207.389987px;}
.x14{left:222.149987px;}
.x25{left:235.830000px;}
.x15{left:246.674987px;}
.x29{left:255.135000px;}
.x16{left:261.614987px;}
.x17{left:265.754987px;}
.x18{left:271.874987px;}
.x30{left:279.615000px;}
.x19{left:290.774987px;}
.x1a{left:305.534987px;}
.x1b{left:310.754987px;}
.x1c{left:320.114987px;}
.x24{left:321.375000px;}
.x1d{left:325.334987px;}
.x26{left:384.555000px;}
.x2a{left:404.025000px;}
.x31{left:416.445000px;}
.x2e{left:437.865000px;}
.x21{left:448.305000px;}
.x34{left:459.105000px;}
.x27{left:533.445000px;}
.x2b{left:552.885000px;}
.x32{left:554.685000px;}
.x2f{left:565.350000px;}
.x22{left:576.150000px;}
.x8{left:583.529987px;}
.x35{left:586.770000px;}
.x9{left:590.729987px;}
.x28{left:671.730000px;}
.x33{left:682.350000px;}
.x2c{left:691.170000px;}
.x23{left:693.150000px;}
.x36{left:703.950000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v7{vertical-align:-8.320000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v8{vertical-align:8.320000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls3f{letter-spacing:-1.600000pt;}
.ls3b{letter-spacing:-1.376000pt;}
.ls35{letter-spacing:-1.338667pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls38{letter-spacing:-1.098667pt;}
.ls33{letter-spacing:-1.050667pt;}
.lsb{letter-spacing:-1.008000pt;}
.ls3e{letter-spacing:-0.960000pt;}
.ls3d{letter-spacing:-0.869333pt;}
.ls1e{letter-spacing:-0.688000pt;}
.ls3a{letter-spacing:-0.544000pt;}
.ls44{letter-spacing:-0.456533pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls36{letter-spacing:-0.237867pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls46{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls34{letter-spacing:-0.059733pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.034769pt;}
.ls1{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.068267pt;}
.ls22{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.112640pt;}
.ls43{letter-spacing:0.136533pt;}
.ls23{letter-spacing:0.155520pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls1c{letter-spacing:0.183680pt;}
.ls25{letter-spacing:0.218880pt;}
.ls2e{letter-spacing:0.225668pt;}
.ls31{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.325120pt;}
.ls37{letter-spacing:0.442667pt;}
.ls26{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.581333pt;}
.ls29{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.650628pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.099235pt;}
.ls30{letter-spacing:1.440000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls28{letter-spacing:3.360000pt;}
.ls20{letter-spacing:3.488000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls1b{letter-spacing:4.640000pt;}
.ls42{letter-spacing:6.560000pt;}
.ls2b{letter-spacing:7.840062pt;}
.ls17{letter-spacing:9.760000pt;}
.ls41{letter-spacing:10.192640pt;}
.ls16{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls13{letter-spacing:14.800640pt;}
.ls39{letter-spacing:24.400640pt;}
.ls45{letter-spacing:27.040000pt;}
.ls40{letter-spacing:37.072640pt;}
.ls0{letter-spacing:37.600000pt;}
.ls19{letter-spacing:39.120640pt;}
.ls3{letter-spacing:41.040640pt;}
.ls3c{letter-spacing:65.360640pt;}
.ls14{letter-spacing:110.800640pt;}
.ws4{word-spacing:-85.120000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws3{word-spacing:-22.240000pt;}
.ws5{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws17{word-spacing:-13.861333pt;}
.ws6{word-spacing:-13.712000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws16{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws19{word-spacing:-13.220267pt;}
.ws14{word-spacing:-13.185067pt;}
.ws24{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.870933pt;}
.ws23{word-spacing:-12.823467pt;}
.ws21{word-spacing:-12.736000pt;}
.ws15{word-spacing:-12.592000pt;}
.ws1e{word-spacing:-12.410667pt;}
.ws1f{word-spacing:-12.320000pt;}
.ws18{word-spacing:-12.229333pt;}
.ws1c{word-spacing:-12.181333pt;}
.ws1a{word-spacing:-11.941333pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws20{word-spacing:-11.680000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws13{word-spacing:-8.640000pt;}
.ws11{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._8{margin-left:-7.948800pt;}
._10{margin-left:-5.487147pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._d{width:2.606080pt;}
._c{width:3.657600pt;}
._f{width:5.365120pt;}
._e{width:6.427520pt;}
._15{width:7.383680pt;}
._11{width:8.339840pt;}
._14{width:9.392640pt;}
._12{width:10.459307pt;}
._13{width:11.912533pt;}
._19{width:14.640640pt;}
._1a{width:15.823787pt;}
._16{width:19.441920pt;}
._1e{width:22.512000pt;}
._18{width:24.894720pt;}
._1c{width:26.442240pt;}
._17{width:27.772800pt;}
._1d{width:28.881280pt;}
._a{width:37.272960pt;}
._b{width:38.689067pt;}
._1b{width:43.815893pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:6.720000pt;}
.y170{bottom:9.440000pt;}
.yd0{bottom:10.240000pt;}
.yd2{bottom:10.400000pt;}
.yca{bottom:10.560000pt;}
.yf5{bottom:10.586667pt;}
.y13b{bottom:10.600000pt;}
.ye7{bottom:15.680000pt;}
.y16f{bottom:27.200000pt;}
.y16c{bottom:30.880000pt;}
.y16e{bottom:44.800000pt;}
.y7{bottom:53.600000pt;}
.y16d{bottom:62.400000pt;}
.y6b{bottom:77.760000pt;}
.y124{bottom:82.880000pt;}
.yc8{bottom:84.000000pt;}
.y14c{bottom:85.280000pt;}
.y34{bottom:85.440000pt;}
.y95{bottom:85.920000pt;}
.yfa{bottom:91.520000pt;}
.y6a{bottom:95.360000pt;}
.y123{bottom:100.640000pt;}
.yc7{bottom:101.600000pt;}
.y16b{bottom:101.760000pt;}
.y14b{bottom:102.880000pt;}
.y33{bottom:103.200000pt;}
.y94{bottom:104.800000pt;}
.yf9{bottom:109.120000pt;}
.y69{bottom:112.960000pt;}
.y122{bottom:118.240000pt;}
.yc6{bottom:119.200000pt;}
.y16a{bottom:119.360000pt;}
.y14a{bottom:120.640000pt;}
.y32{bottom:120.800000pt;}
.y93{bottom:122.560000pt;}
.yf8{bottom:126.720000pt;}
.y68{bottom:130.560000pt;}
.y121{bottom:135.840000pt;}
.yc5{bottom:136.800000pt;}
.y169{bottom:136.960000pt;}
.y149{bottom:138.240000pt;}
.y31{bottom:138.400000pt;}
.y92{bottom:140.160000pt;}
.yf7{bottom:144.320000pt;}
.y67{bottom:148.160000pt;}
.y120{bottom:153.440000pt;}
.yc4{bottom:154.400000pt;}
.y168{bottom:154.560000pt;}
.y148{bottom:155.840000pt;}
.y30{bottom:156.000000pt;}
.yf6{bottom:157.440000pt;}
.y91{bottom:157.920000pt;}
.y66{bottom:165.920000pt;}
.y11f{bottom:171.040000pt;}
.yc3{bottom:172.160000pt;}
.y147{bottom:173.440000pt;}
.y2f{bottom:173.600000pt;}
.y90{bottom:176.640000pt;}
.yf4{bottom:181.120000pt;}
.y65{bottom:183.520000pt;}
.y11e{bottom:188.826667pt;}
.yc2{bottom:189.786667pt;}
.y167{bottom:189.946667pt;}
.y146{bottom:191.066667pt;}
.y2e{bottom:191.386667pt;}
.y8f{bottom:194.426667pt;}
.y64{bottom:201.146667pt;}
.y11d{bottom:201.946667pt;}
.yf3{bottom:204.826667pt;}
.yc1{bottom:207.386667pt;}
.y166{bottom:207.546667pt;}
.y145{bottom:208.826667pt;}
.y2d{bottom:208.986667pt;}
.y8e{bottom:213.306667pt;}
.yc0{bottom:224.986667pt;}
.y165{bottom:225.146667pt;}
.y11c{bottom:225.626667pt;}
.y144{bottom:226.426667pt;}
.y2c{bottom:226.586667pt;}
.y63{bottom:226.746667pt;}
.y8d{bottom:232.186667pt;}
.yf2{bottom:233.626667pt;}
.ybf{bottom:242.586667pt;}
.y164{bottom:242.746667pt;}
.y143{bottom:244.026667pt;}
.y2b{bottom:244.186667pt;}
.y62{bottom:244.346667pt;}
.y11b{bottom:249.306667pt;}
.y8c{bottom:251.226667pt;}
.ybe{bottom:260.346667pt;}
.y142{bottom:261.626667pt;}
.y2a{bottom:261.786667pt;}
.y61{bottom:262.106667pt;}
.y8b{bottom:268.986667pt;}
.y11a{bottom:272.826667pt;}
.ybd{bottom:277.946667pt;}
.y163{bottom:278.106667pt;}
.y141{bottom:279.226667pt;}
.y29{bottom:279.546667pt;}
.y60{bottom:279.706667pt;}
.yf1{bottom:286.586667pt;}
.y8a{bottom:287.866667pt;}
.ybc{bottom:295.546667pt;}
.y162{bottom:295.706667pt;}
.y119{bottom:296.506667pt;}
.y140{bottom:296.986667pt;}
.y28{bottom:297.146667pt;}
.y5f{bottom:297.306667pt;}
.yf0{bottom:304.186667pt;}
.y89{bottom:305.466667pt;}
.ybb{bottom:313.146667pt;}
.y161{bottom:313.306667pt;}
.y13f{bottom:314.586667pt;}
.y27{bottom:314.746667pt;}
.y5e{bottom:314.906667pt;}
.y118{bottom:320.186667pt;}
.yef{bottom:321.786667pt;}
.y88{bottom:324.506667pt;}
.yba{bottom:330.746667pt;}
.y160{bottom:330.906667pt;}
.y13e{bottom:332.186667pt;}
.y26{bottom:332.346667pt;}
.y5d{bottom:332.506667pt;}
.yee{bottom:347.386667pt;}
.yb9{bottom:348.506667pt;}
.y117{bottom:348.986667pt;}
.y13d{bottom:349.786667pt;}
.y25{bottom:349.946667pt;}
.y5c{bottom:350.266667pt;}
.y13c{bottom:362.906667pt;}
.yed{bottom:365.146667pt;}
.yb8{bottom:366.106667pt;}
.y15f{bottom:366.266667pt;}
.y116{bottom:366.746667pt;}
.y24{bottom:367.706667pt;}
.y5b{bottom:367.866667pt;}
.yec{bottom:382.746667pt;}
.yb7{bottom:383.706667pt;}
.y15e{bottom:383.866667pt;}
.y115{bottom:384.346667pt;}
.y23{bottom:385.306667pt;}
.y5a{bottom:385.466667pt;}
.y13a{bottom:386.586667pt;}
.yeb{bottom:400.386667pt;}
.yb6{bottom:401.346667pt;}
.y15d{bottom:401.506667pt;}
.y114{bottom:401.986667pt;}
.y22{bottom:402.946667pt;}
.y59{bottom:403.106667pt;}
.y139{bottom:410.306667pt;}
.yea{bottom:417.986667pt;}
.yb5{bottom:418.946667pt;}
.y15c{bottom:419.106667pt;}
.y113{bottom:419.586667pt;}
.y21{bottom:420.546667pt;}
.y58{bottom:420.706667pt;}
.ye8{bottom:431.106667pt;}
.y138{bottom:433.986667pt;}
.y15b{bottom:436.706667pt;}
.yb4{bottom:436.866667pt;}
.y112{bottom:437.186667pt;}
.y20{bottom:438.146667pt;}
.y57{bottom:438.466667pt;}
.ye6{bottom:450.946667pt;}
.y15a{bottom:454.466667pt;}
.yb3{bottom:454.786667pt;}
.y111{bottom:454.946667pt;}
.y1f{bottom:455.906667pt;}
.y56{bottom:456.066667pt;}
.y137{bottom:457.666667pt;}
.y159{bottom:472.066667pt;}
.y110{bottom:472.546667pt;}
.yb2{bottom:472.706667pt;}
.y1e{bottom:473.506667pt;}
.y55{bottom:473.666667pt;}
.yb1{bottom:474.786667pt;}
.ye5{bottom:479.746667pt;}
.y136{bottom:481.346667pt;}
.y158{bottom:489.666667pt;}
.y10f{bottom:490.146667pt;}
.y1d{bottom:491.106667pt;}
.y87{bottom:491.266667pt;}
.yb0{bottom:492.706667pt;}
.y54{bottom:499.266667pt;}
.y135{bottom:505.026667pt;}
.y157{bottom:507.266667pt;}
.ye4{bottom:508.546667pt;}
.y1c{bottom:508.706667pt;}
.y86{bottom:508.866667pt;}
.yaf{bottom:510.626667pt;}
.y10e{bottom:515.746667pt;}
.y53{bottom:516.866667pt;}
.y156{bottom:524.866667pt;}
.ye3{bottom:526.146667pt;}
.y1b{bottom:526.306667pt;}
.y85{bottom:526.626667pt;}
.yae{bottom:528.226667pt;}
.y10d{bottom:533.346667pt;}
.y134{bottom:533.666667pt;}
.y52{bottom:534.626667pt;}
.y155{bottom:542.626667pt;}
.ye2{bottom:543.746667pt;}
.y84{bottom:544.226667pt;}
.yad{bottom:545.826667pt;}
.y1a{bottom:545.986667pt;}
.y10c{bottom:551.106667pt;}
.y133{bottom:551.266667pt;}
.y51{bottom:552.226667pt;}
.y154{bottom:560.226667pt;}
.ye1{bottom:561.346667pt;}
.y83{bottom:561.826667pt;}
.y19{bottom:563.586667pt;}
.y10b{bottom:568.706667pt;}
.y132{bottom:568.866667pt;}
.y50{bottom:569.826667pt;}
.yac{bottom:571.426667pt;}
.y153{bottom:577.826667pt;}
.ye0{bottom:579.106667pt;}
.y82{bottom:579.426667pt;}
.y10a{bottom:586.306667pt;}
.y131{bottom:586.466667pt;}
.y4f{bottom:587.426667pt;}
.yab{bottom:589.026667pt;}
.y18{bottom:589.186667pt;}
.y152{bottom:595.426667pt;}
.ydf{bottom:596.706667pt;}
.y81{bottom:597.026667pt;}
.y109{bottom:603.906667pt;}
.y130{bottom:604.066667pt;}
.y4e{bottom:605.026667pt;}
.y17{bottom:606.973333pt;}
.yaa{bottom:607.933333pt;}
.y151{bottom:613.053333pt;}
.yde{bottom:614.333333pt;}
.y80{bottom:614.813333pt;}
.y108{bottom:621.533333pt;}
.y12f{bottom:621.853333pt;}
.y4d{bottom:622.813333pt;}
.y16{bottom:624.573333pt;}
.ya9{bottom:626.813333pt;}
.y150{bottom:630.813333pt;}
.y7f{bottom:632.413333pt;}
.y107{bottom:639.293333pt;}
.y12e{bottom:639.453333pt;}
.ydd{bottom:639.933333pt;}
.y4c{bottom:640.413333pt;}
.y15{bottom:642.173333pt;}
.ya8{bottom:645.853333pt;}
.y14f{bottom:648.413333pt;}
.y7e{bottom:650.013333pt;}
.y106{bottom:652.413333pt;}
.y12d{bottom:657.053333pt;}
.ydc{bottom:657.533333pt;}
.y4b{bottom:658.013333pt;}
.y14{bottom:659.773333pt;}
.ya7{bottom:664.733333pt;}
.y14e{bottom:666.013333pt;}
.y7d{bottom:667.613333pt;}
.y12c{bottom:674.653333pt;}
.ydb{bottom:675.293333pt;}
.y4a{bottom:675.613333pt;}
.y105{bottom:676.093333pt;}
.y13{bottom:677.373333pt;}
.ya6{bottom:682.653333pt;}
.y14d{bottom:683.613333pt;}
.y7c{bottom:685.213333pt;}
.y12b{bottom:692.253333pt;}
.yda{bottom:692.893333pt;}
.y12{bottom:695.133333pt;}
.y104{bottom:699.773333pt;}
.ya5{bottom:700.253333pt;}
.y49{bottom:701.213333pt;}
.y7b{bottom:702.973333pt;}
.y12a{bottom:710.013333pt;}
.yd9{bottom:710.493333pt;}
.y11{bottom:712.733333pt;}
.y48{bottom:718.973333pt;}
.y7a{bottom:720.573333pt;}
.yd8{bottom:723.613333pt;}
.y129{bottom:727.613333pt;}
.y103{bottom:728.573333pt;}
.y10{bottom:730.333333pt;}
.y47{bottom:736.573333pt;}
.ya4{bottom:738.013333pt;}
.y79{bottom:738.173333pt;}
.y128{bottom:745.213333pt;}
.y102{bottom:746.173333pt;}
.yd7{bottom:747.293333pt;}
.yf{bottom:747.933333pt;}
.y46{bottom:754.173333pt;}
.y78{bottom:755.773333pt;}
.ya3{bottom:756.893333pt;}
.y127{bottom:762.813333pt;}
.y101{bottom:763.773333pt;}
.ye{bottom:765.533333pt;}
.yd6{bottom:770.973333pt;}
.y45{bottom:771.773333pt;}
.y77{bottom:773.373333pt;}
.ya2{bottom:775.933333pt;}
.y100{bottom:781.373333pt;}
.yd{bottom:785.213333pt;}
.y44{bottom:789.373333pt;}
.y76{bottom:791.133333pt;}
.ya1{bottom:793.693333pt;}
.yd5{bottom:794.653333pt;}
.yff{bottom:799.133333pt;}
.y126{bottom:799.613333pt;}
.y43{bottom:807.133333pt;}
.yc{bottom:807.453333pt;}
.y75{bottom:808.733333pt;}
.ya0{bottom:811.293333pt;}
.yfe{bottom:816.773333pt;}
.yd4{bottom:818.373333pt;}
.yb{bottom:821.093333pt;}
.y125{bottom:823.333333pt;}
.y42{bottom:824.773333pt;}
.y74{bottom:826.373333pt;}
.y9f{bottom:830.213333pt;}
.yfd{bottom:834.373333pt;}
.ya{bottom:839.973333pt;}
.yd3{bottom:842.053333pt;}
.y41{bottom:842.373333pt;}
.y73{bottom:843.973333pt;}
.y9e{bottom:849.093333pt;}
.yfc{bottom:851.973333pt;}
.y40{bottom:859.973333pt;}
.y9{bottom:860.773333pt;}
.y72{bottom:861.573333pt;}
.yd1{bottom:865.733333pt;}
.y9d{bottom:868.133333pt;}
.yfb{bottom:869.573333pt;}
.y3f{bottom:877.573333pt;}
.y9c{bottom:885.893333pt;}
.y71{bottom:887.333333pt;}
.y8{bottom:888.933333pt;}
.ycf{bottom:889.413333pt;}
.y3e{bottom:895.333333pt;}
.y9b{bottom:903.493333pt;}
.y70{bottom:904.933333pt;}
.yce{bottom:912.773333pt;}
.y3d{bottom:912.933333pt;}
.y6{bottom:914.533333pt;}
.y9a{bottom:921.253333pt;}
.y6f{bottom:922.533333pt;}
.y3c{bottom:930.533333pt;}
.y5{bottom:934.533333pt;}
.ycd{bottom:936.453333pt;}
.y6e{bottom:940.133333pt;}
.y99{bottom:946.853333pt;}
.y3b{bottom:948.133333pt;}
.y6d{bottom:957.733333pt;}
.ycc{bottom:960.133333pt;}
.y4{bottom:961.893333pt;}
.y98{bottom:964.453333pt;}
.y3a{bottom:965.733333pt;}
.y6c{bottom:975.493333pt;}
.y97{bottom:982.053333pt;}
.y39{bottom:983.493333pt;}
.ycb{bottom:983.813333pt;}
.y3{bottom:989.253333pt;}
.y96{bottom:1000.933333pt;}
.y38{bottom:1001.093333pt;}
.yc9{bottom:1007.493333pt;}
.y2{bottom:1016.773333pt;}
.y37{bottom:1018.693333pt;}
.y36{bottom:1036.320000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.800000pt;}
.h19{height:1.787500pt;}
.h17{height:19.200000pt;}
.h14{height:22.720000pt;}
.h15{height:22.880000pt;}
.h13{height:23.040000pt;}
.h11{height:23.072000pt;}
.h7{height:24.131250pt;}
.h16{height:28.160000pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.hd{height:38.662500pt;}
.h9{height:38.672812pt;}
.h12{height:40.021563pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.hc{height:42.210625pt;}
.hb{height:42.691250pt;}
.he{height:43.782500pt;}
.hf{height:44.768125pt;}
.h10{height:45.410625pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h18{height:74.880000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:103.200000pt;}
.w2b{width:103.520000pt;}
.w6{width:104.000000pt;}
.w29{width:104.160000pt;}
.w9{width:112.512000pt;}
.w1e{width:112.672000pt;}
.w1f{width:112.800000pt;}
.wa{width:112.832000pt;}
.w4{width:113.152000pt;}
.w1b{width:113.312000pt;}
.w1c{width:113.440000pt;}
.w23{width:113.472000pt;}
.w5{width:113.632000pt;}
.w26{width:120.992000pt;}
.w21{width:121.632000pt;}
.w2a{width:121.952000pt;}
.w27{width:122.240000pt;}
.wc{width:122.272000pt;}
.w7{width:122.592000pt;}
.w28{width:122.752000pt;}
.w22{width:122.880000pt;}
.w10{width:122.912000pt;}
.w13{width:131.552000pt;}
.w19{width:131.680000pt;}
.w14{width:131.712000pt;}
.w24{width:132.032000pt;}
.we{width:132.192000pt;}
.w17{width:132.320000pt;}
.wf{width:132.352000pt;}
.w15{width:141.146667pt;}
.w11{width:141.466667pt;}
.w12{width:150.426667pt;}
.wd{width:150.746667pt;}
.w18{width:169.346667pt;}
.w16{width:169.666667pt;}
.w2c{width:187.426667pt;}
.w25{width:189.346667pt;}
.w20{width:189.666667pt;}
.w1d{width:216.706667pt;}
.w1a{width:217.026667pt;}
.w8{width:226.146667pt;}
.w3{width:226.466667pt;}
.w2d{width:516.413333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3a{left:6.880000pt;}
.x2d{left:45.599988pt;}
.x1{left:48.159988pt;}
.x1e{left:51.999988pt;}
.x3{left:54.079988pt;}
.x1f{left:55.199988pt;}
.x7{left:56.799988pt;}
.xa{left:58.559988pt;}
.x20{left:60.479988pt;}
.x37{left:66.879988pt;}
.x4{left:74.431988pt;}
.xb{left:76.031988pt;}
.x6{left:78.111988pt;}
.x5{left:84.031988pt;}
.x38{left:90.911988pt;}
.x2{left:96.031988pt;}
.xc{left:98.911988pt;}
.xd{left:103.071988pt;}
.xe{left:127.071988pt;}
.xf{left:144.986655pt;}
.x10{left:158.266655pt;}
.x11{left:161.946655pt;}
.x12{left:167.386655pt;}
.x39{left:170.146667pt;}
.x13{left:184.346655pt;}
.x14{left:197.466655pt;}
.x25{left:209.626667pt;}
.x15{left:219.266655pt;}
.x29{left:226.786667pt;}
.x16{left:232.546655pt;}
.x17{left:236.226655pt;}
.x18{left:241.666655pt;}
.x30{left:248.546667pt;}
.x19{left:258.466655pt;}
.x1a{left:271.586655pt;}
.x1b{left:276.226655pt;}
.x1c{left:284.546655pt;}
.x24{left:285.666667pt;}
.x1d{left:289.186655pt;}
.x26{left:341.826667pt;}
.x2a{left:359.133333pt;}
.x31{left:370.173333pt;}
.x2e{left:389.213333pt;}
.x21{left:398.493333pt;}
.x34{left:408.093333pt;}
.x27{left:474.173333pt;}
.x2b{left:491.453333pt;}
.x32{left:493.053333pt;}
.x2f{left:502.533333pt;}
.x22{left:512.133333pt;}
.x8{left:518.693322pt;}
.x35{left:521.573333pt;}
.x9{left:525.093322pt;}
.x28{left:597.093333pt;}
.x33{left:606.533333pt;}
.x2c{left:614.373333pt;}
.x23{left:616.133333pt;}
.x36{left:625.733333pt;}
}




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