
    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_a324ee6219c8fa5eaf476c6e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5525b7ed95a279dc00ab85f1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_05bea1372db65d1eb87b66f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_45a186c47b6c1c307cb383ad.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_6c0c216b7cfbd902727aea41.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_8e778d5dee60747ef4144685.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_7b9605e8195854a166b5a8b6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_51edb44f279d30a332bcba85.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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_d2ff96b5046c66e58c1ea9e8.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_08da32941ddd09402d4d97c3.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_98bc1d8ea5802ab9af984899.woff')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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:fff;src:url('chunks/assets/font_c96578948435b78a07d97016.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3edaf77ebdd6dc8e9dcd078b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.918945;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-2.076000px;}
.ls9{letter-spacing:-1.500000px;}
.ls14{letter-spacing:-1.332000px;}
.ls16{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.lsb{letter-spacing:-0.208800px;}
.ls7{letter-spacing:-0.127200px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lse{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls11{letter-spacing:0.540000px;}
.ls12{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws7{word-spacing:-84.240000px;}
.ws1{word-spacing:-54.000000px;}
.ws6{word-spacing:-22.087200px;}
.ws5{word-spacing:-21.511200px;}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.wsc{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.093600px;}
.ws11{word-spacing:-15.012000px;}
.wse{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.296960px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.186000px;}
.ws8{word-spacing:-8.786880px;}
.wsb{word-spacing:-8.136000px;}
.wsf{word-spacing:0.000000px;}
.ws12{word-spacing:68.112000px;}
._14{margin-left:-7.297200px;}
._17{margin-left:-6.104640px;}
._5{margin-left:-4.840560px;}
._4{margin-left:-3.341520px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.050000px;}
._1{width:1.026000px;}
._3{width:2.592000px;}
._b{width:4.093200px;}
._d{width:5.677200px;}
._c{width:7.290720px;}
._10{width:8.993520px;}
._a{width:10.949040px;}
._8{width:12.442320px;}
._7{width:13.734720px;}
._9{width:16.852320px;}
._15{width:18.216720px;}
._13{width:19.900080px;}
._12{width:21.025440px;}
._11{width:22.410000px;}
._e{width:24.252480px;}
._1c{width:26.522880px;}
._16{width:28.445760px;}
._1a{width:29.810160px;}
._1b{width:32.337600px;}
._6{width:33.860880px;}
._f{width:38.664720px;}
._19{width:93.355680px;}
._18{width:96.024240px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.240000px;}
.yb5{bottom:3.285000px;}
.y3{bottom:3.636000px;}
.y50{bottom:3.960000px;}
.y1e{bottom:4.860000px;}
.yc4{bottom:5.145000px;}
.yc6{bottom:5.190000px;}
.ye{bottom:9.540000px;}
.y4e{bottom:10.620000px;}
.y20{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.yc9{bottom:16.485000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.016000px;}
.y4f{bottom:22.320000px;}
.y4d{bottom:25.380000px;}
.y4a{bottom:27.900000px;}
.y1d{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y49{bottom:45.180000px;}
.y1c{bottom:45.900000px;}
.y5{bottom:46.440000px;}
.ya{bottom:46.650000px;}
.y1b{bottom:62.280000px;}
.y48{bottom:62.460000px;}
.y1{bottom:68.940000px;}
.y9{bottom:73.470000px;}
.y1a{bottom:78.840000px;}
.y47{bottom:79.785000px;}
.y8{bottom:93.090000px;}
.y19{bottom:95.445000px;}
.y46{bottom:104.445000px;}
.y7{bottom:111.450000px;}
.yc2{bottom:111.816000px;}
.y18{bottom:111.825000px;}
.y57{bottom:113.256000px;}
.y45{bottom:121.725000px;}
.y17{bottom:123.885000px;}
.yf3{bottom:127.476000px;}
.yc1{bottom:129.096000px;}
.y56{bottom:130.356000px;}
.y11e{bottom:132.156000px;}
.y9b{bottom:133.236000px;}
.y16{bottom:137.385000px;}
.y44{bottom:139.005000px;}
.yf2{bottom:144.756000px;}
.yc0{bottom:146.196000px;}
.y55{bottom:147.636000px;}
.y11d{bottom:149.256000px;}
.y9a{bottom:151.230000px;}
.y15{bottom:152.145000px;}
.y43{bottom:156.285000px;}
.yf1{bottom:162.030000px;}
.ybf{bottom:163.470000px;}
.y54{bottom:164.910000px;}
.y11c{bottom:166.530000px;}
.y14{bottom:167.445000px;}
.y99{bottom:169.230000px;}
.y42{bottom:173.385000px;}
.yf0{bottom:179.130000px;}
.ybe{bottom:180.750000px;}
.y53{bottom:182.190000px;}
.y11b{bottom:183.810000px;}
.y13{bottom:186.345000px;}
.y98{bottom:187.230000px;}
.y41{bottom:190.665000px;}
.yef{bottom:196.410000px;}
.ybd{bottom:198.030000px;}
.y52{bottom:199.470000px;}
.y11a{bottom:201.090000px;}
.y40{bottom:207.945000px;}
.y97{bottom:208.470000px;}
.y12{bottom:212.085000px;}
.y31{bottom:212.445000px;}
.yee{bottom:213.690000px;}
.ybc{bottom:215.310000px;}
.y51{bottom:217.290000px;}
.y119{bottom:218.370000px;}
.y96{bottom:225.750000px;}
.y30{bottom:227.745000px;}
.yed{bottom:230.970000px;}
.y4c{bottom:231.690000px;}
.ybb{bottom:232.590000px;}
.y3f{bottom:232.605000px;}
.y118{bottom:235.470000px;}
.y11{bottom:237.825000px;}
.y95{bottom:243.030000px;}
.y2f{bottom:245.385000px;}
.yec{bottom:248.250000px;}
.yba{bottom:249.690000px;}
.y3e{bottom:249.885000px;}
.y117{bottom:252.750000px;}
.y94{bottom:260.310000px;}
.y10{bottom:262.305000px;}
.y2e{bottom:262.665000px;}
.yeb{bottom:265.530000px;}
.yb9{bottom:266.970000px;}
.y3d{bottom:267.165000px;}
.y21{bottom:268.410000px;}
.y116{bottom:270.030000px;}
.y7b{bottom:270.750000px;}
.y2d{bottom:279.765000px;}
.yea{bottom:282.630000px;}
.y93{bottom:283.530000px;}
.yb8{bottom:284.250000px;}
.y3c{bottom:284.445000px;}
.y115{bottom:287.310000px;}
.y7a{bottom:288.030000px;}
.y2c{bottom:297.585000px;}
.ye9{bottom:299.910000px;}
.y92{bottom:300.810000px;}
.yb7{bottom:301.530000px;}
.y3b{bottom:301.725000px;}
.y114{bottom:304.590000px;}
.y79{bottom:305.310000px;}
.y2b{bottom:315.045000px;}
.yb6{bottom:316.290000px;}
.ye8{bottom:317.190000px;}
.y91{bottom:317.910000px;}
.y3a{bottom:319.005000px;}
.y113{bottom:321.870000px;}
.y78{bottom:322.590000px;}
.y2a{bottom:332.505000px;}
.yb4{bottom:334.290000px;}
.ye7{bottom:334.470000px;}
.y90{bottom:335.190000px;}
.y39{bottom:336.135000px;}
.y112{bottom:339.015000px;}
.y77{bottom:339.735000px;}
.y29{bottom:349.815000px;}
.ye6{bottom:351.795000px;}
.yb3{bottom:352.335000px;}
.y8f{bottom:352.515000px;}
.y111{bottom:356.295000px;}
.y76{bottom:357.015000px;}
.y38{bottom:360.975000px;}
.y28{bottom:367.275000px;}
.ye5{bottom:368.895000px;}
.y8e{bottom:369.795000px;}
.yb2{bottom:373.575000px;}
.y75{bottom:374.295000px;}
.y37{bottom:378.255000px;}
.y27{bottom:384.555000px;}
.ye4{bottom:386.175000px;}
.y8d{bottom:387.075000px;}
.yb1{bottom:390.855000px;}
.y74{bottom:391.575000px;}
.y26{bottom:402.015000px;}
.y36{bottom:402.915000px;}
.ye3{bottom:403.455000px;}
.y8c{bottom:404.355000px;}
.yb0{bottom:408.135000px;}
.y73{bottom:408.855000px;}
.y25{bottom:419.475000px;}
.y35{bottom:420.195000px;}
.ye2{bottom:420.735000px;}
.y8b{bottom:421.455000px;}
.yaf{bottom:425.235000px;}
.y110{bottom:425.415000px;}
.y72{bottom:426.135000px;}
.y8a{bottom:435.495000px;}
.y24{bottom:436.935000px;}
.y34{bottom:437.475000px;}
.ye1{bottom:438.015000px;}
.yae{bottom:439.995000px;}
.y10f{bottom:442.515000px;}
.y71{bottom:443.235000px;}
.y33{bottom:454.755000px;}
.ye0{bottom:455.295000px;}
.yad{bottom:457.995000px;}
.y10e{bottom:459.795000px;}
.y70{bottom:460.515000px;}
.y23{bottom:464.475000px;}
.y32{bottom:472.035000px;}
.ydf{bottom:472.395000px;}
.yac{bottom:475.995000px;}
.y10d{bottom:477.075000px;}
.y6f{bottom:477.795000px;}
.y22{bottom:482.115000px;}
.yde{bottom:489.675000px;}
.yab{bottom:493.995000px;}
.y10c{bottom:494.355000px;}
.y6e{bottom:495.075000px;}
.ydd{bottom:506.955000px;}
.y10b{bottom:511.635000px;}
.yaa{bottom:511.995000px;}
.y6d{bottom:512.355000px;}
.ydc{bottom:524.235000px;}
.y10a{bottom:528.735000px;}
.y6c{bottom:529.455000px;}
.ya9{bottom:533.235000px;}
.ydb{bottom:541.515000px;}
.y109{bottom:546.015000px;}
.y6b{bottom:546.735000px;}
.ya8{bottom:550.515000px;}
.yda{bottom:555.555000px;}
.y108{bottom:563.295000px;}
.y6a{bottom:564.015000px;}
.ya7{bottom:567.795000px;}
.y69{bottom:578.055000px;}
.y107{bottom:580.575000px;}
.ya6{bottom:585.075000px;}
.y106{bottom:597.855000px;}
.ya5{bottom:602.355000px;}
.y105{bottom:615.165000px;}
.ya4{bottom:619.485000px;}
.y104{bottom:632.265000px;}
.ya3{bottom:633.525000px;}
.yc8{bottom:634.860000px;}
.y103{bottom:649.545000px;}
.y102{bottom:666.825000px;}
.y101{bottom:684.105000px;}
.y100{bottom:701.385000px;}
.y89{bottom:704.265000px;}
.yff{bottom:718.665000px;}
.y88{bottom:721.545000px;}
.yc3{bottom:727.200000px;}
.yfe{bottom:735.765000px;}
.y87{bottom:738.825000px;}
.yc5{bottom:746.280000px;}
.yfd{bottom:753.045000px;}
.y86{bottom:756.105000px;}
.y1f{bottom:761.865000px;}
.yfc{bottom:770.325000px;}
.y85{bottom:773.385000px;}
.yfb{bottom:787.605000px;}
.y84{bottom:790.485000px;}
.yf{bottom:791.385000px;}
.yfa{bottom:804.885000px;}
.y83{bottom:807.765000px;}
.yc7{bottom:808.200000px;}
.yf9{bottom:822.165000px;}
.y82{bottom:825.045000px;}
.yf8{bottom:839.265000px;}
.ya2{bottom:841.605000px;}
.y81{bottom:842.325000px;}
.yf7{bottom:856.545000px;}
.ya1{bottom:858.885000px;}
.y80{bottom:859.605000px;}
.yf6{bottom:873.870000px;}
.ya0{bottom:876.030000px;}
.y7f{bottom:876.930000px;}
.yf5{bottom:891.150000px;}
.y9f{bottom:893.310000px;}
.y7e{bottom:894.030000px;}
.yf4{bottom:908.430000px;}
.y9e{bottom:910.590000px;}
.y7d{bottom:911.310000px;}
.yd9{bottom:919.590000px;}
.y7c{bottom:925.350000px;}
.y68{bottom:925.530000px;}
.y9d{bottom:927.870000px;}
.yd8{bottom:936.870000px;}
.y9c{bottom:941.910000px;}
.y67{bottom:942.810000px;}
.yd7{bottom:951.630000px;}
.y66{bottom:960.090000px;}
.yd6{bottom:969.630000px;}
.y65{bottom:977.370000px;}
.yd5{bottom:987.630000px;}
.y64{bottom:994.650000px;}
.yd4{bottom:1008.870000px;}
.y63{bottom:1011.930000px;}
.yd3{bottom:1026.150000px;}
.y62{bottom:1029.030000px;}
.yd2{bottom:1043.430000px;}
.y61{bottom:1046.310000px;}
.yd1{bottom:1060.530000px;}
.y60{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.yd0{bottom:1077.810000px;}
.y5f{bottom:1080.870000px;}
.y6{bottom:1094.010000px;}
.ycf{bottom:1095.090000px;}
.y5e{bottom:1098.150000px;}
.yce{bottom:1112.370000px;}
.y5d{bottom:1115.430000px;}
.ycd{bottom:1129.650000px;}
.y5c{bottom:1132.530000px;}
.ycc{bottom:1144.440000px;}
.y5b{bottom:1149.840000px;}
.ycb{bottom:1162.440000px;}
.y5a{bottom:1167.120000px;}
.yca{bottom:1180.440000px;}
.y59{bottom:1184.400000px;}
.y58{bottom:1201.680000px;}
.h1e{height:17.280000px;}
.h1f{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h23{height:30.240000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1c{height:36.720000px;}
.h19{height:38.818125px;}
.h21{height:39.471680px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h25{height:43.681992px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.461953px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h22{height:92.160000px;}
.h20{height:101.880000px;}
.h7{height:121.536000px;}
.h24{height:203.580000px;}
.hc{height:277.410000px;}
.h14{height:493.455000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w16{width:115.560000px;}
.w14{width:129.996000px;}
.wc{width:137.736000px;}
.wf{width:148.680000px;}
.wd{width:149.256000px;}
.w5{width:152.130000px;}
.wb{width:153.750000px;}
.we{width:154.290000px;}
.w15{width:164.190000px;}
.w9{width:223.455000px;}
.w17{width:236.520000px;}
.w18{width:236.700000px;}
.w12{width:248.250000px;}
.w11{width:248.430000px;}
.w10{width:248.475000px;}
.w13{width:334.695000px;}
.w19{width:408.420000px;}
.wa{width:523.875000px;}
.w6{width:595.185000px;}
.w2{width:673.530000px;}
.w8{width:744.270000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.xc{left:17.676000px;}
.xe{left:32.616000px;}
.x10{left:37.836000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x2a{left:101.235000px;}
.x32{left:113.435987px;}
.x20{left:135.035987px;}
.x2e{left:138.420000px;}
.x33{left:140.435987px;}
.x19{left:191.189987px;}
.x31{left:207.029987px;}
.x25{left:213.869987px;}
.x11{left:215.175000px;}
.x2f{left:222.869987px;}
.x6{left:225.030000px;}
.x1a{left:227.730000px;}
.x1f{left:239.249987px;}
.x2d{left:241.560000px;}
.x16{left:257.249987px;}
.x22{left:284.654987px;}
.xd{left:285.735000px;}
.x9{left:288.255000px;}
.x2b{left:292.140000px;}
.x12{left:296.355000px;}
.x2c{left:303.480000px;}
.x23{left:322.455000px;}
.xf{left:343.695000px;}
.x7{left:348.015000px;}
.x29{left:357.480000px;}
.x1b{left:366.195000px;}
.x8{left:367.275000px;}
.xb{left:372.135000px;}
.x26{left:408.675000px;}
.x17{left:446.474987px;}
.xa{left:455.520000px;}
.x1c{left:516.165000px;}
.x27{left:539.385000px;}
.x24{left:571.605000px;}
.x1e{left:650.084987px;}
.x21{left:651.344987px;}
.x1d{left:671.190000px;}
.x15{left:672.629987px;}
.x28{left:704.310000px;}
.x30{left:710.969987px;}
.x18{left:742.469987px;}
.x3{left:745.890000px;}
.x14{left:748.769987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-1.845333pt;}
.ls9{letter-spacing:-1.333333pt;}
.ls14{letter-spacing:-1.184000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.lsb{letter-spacing:-0.185600pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls11{letter-spacing:0.480000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws7{word-spacing:-74.880000pt;}
.ws1{word-spacing:-48.000000pt;}
.ws6{word-spacing:-19.633067pt;}
.ws5{word-spacing:-19.121067pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.wsc{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.416533pt;}
.ws11{word-spacing:-13.344000pt;}
.wse{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.819520pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws8{word-spacing:-7.810560pt;}
.wsb{word-spacing:-7.232000pt;}
.wsf{word-spacing:0.000000pt;}
.ws12{word-spacing:60.544000pt;}
._14{margin-left:-6.486400pt;}
._17{margin-left:-5.426347pt;}
._5{margin-left:-4.302720pt;}
._4{margin-left:-2.970240pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.912000pt;}
._3{width:2.304000pt;}
._b{width:3.638400pt;}
._d{width:5.046400pt;}
._c{width:6.480640pt;}
._10{width:7.994240pt;}
._a{width:9.732480pt;}
._8{width:11.059840pt;}
._7{width:12.208640pt;}
._9{width:14.979840pt;}
._15{width:16.192640pt;}
._13{width:17.688960pt;}
._12{width:18.689280pt;}
._11{width:19.920000pt;}
._e{width:21.557760pt;}
._1c{width:23.575893pt;}
._16{width:25.285120pt;}
._1a{width:26.497920pt;}
._1b{width:28.744533pt;}
._6{width:30.098560pt;}
._f{width:34.368640pt;}
._19{width:82.982827pt;}
._18{width:85.354880pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.880000pt;}
.yb5{bottom:2.920000pt;}
.y3{bottom:3.232000pt;}
.y50{bottom:3.520000pt;}
.y1e{bottom:4.320000pt;}
.yc4{bottom:4.573333pt;}
.yc6{bottom:4.613333pt;}
.ye{bottom:8.480000pt;}
.y4e{bottom:9.440000pt;}
.y20{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.yc9{bottom:14.653333pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.792000pt;}
.y4f{bottom:19.840000pt;}
.y4d{bottom:22.560000pt;}
.y4a{bottom:24.800000pt;}
.y1d{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y49{bottom:40.160000pt;}
.y1c{bottom:40.800000pt;}
.y5{bottom:41.280000pt;}
.ya{bottom:41.466667pt;}
.y1b{bottom:55.360000pt;}
.y48{bottom:55.520000pt;}
.y1{bottom:61.280000pt;}
.y9{bottom:65.306667pt;}
.y1a{bottom:70.080000pt;}
.y47{bottom:70.920000pt;}
.y8{bottom:82.746667pt;}
.y19{bottom:84.840000pt;}
.y46{bottom:92.840000pt;}
.y7{bottom:99.066667pt;}
.yc2{bottom:99.392000pt;}
.y18{bottom:99.400000pt;}
.y57{bottom:100.672000pt;}
.y45{bottom:108.200000pt;}
.y17{bottom:110.120000pt;}
.yf3{bottom:113.312000pt;}
.yc1{bottom:114.752000pt;}
.y56{bottom:115.872000pt;}
.y11e{bottom:117.472000pt;}
.y9b{bottom:118.432000pt;}
.y16{bottom:122.120000pt;}
.y44{bottom:123.560000pt;}
.yf2{bottom:128.672000pt;}
.yc0{bottom:129.952000pt;}
.y55{bottom:131.232000pt;}
.y11d{bottom:132.672000pt;}
.y9a{bottom:134.426667pt;}
.y15{bottom:135.240000pt;}
.y43{bottom:138.920000pt;}
.yf1{bottom:144.026667pt;}
.ybf{bottom:145.306667pt;}
.y54{bottom:146.586667pt;}
.y11c{bottom:148.026667pt;}
.y14{bottom:148.840000pt;}
.y99{bottom:150.426667pt;}
.y42{bottom:154.120000pt;}
.yf0{bottom:159.226667pt;}
.ybe{bottom:160.666667pt;}
.y53{bottom:161.946667pt;}
.y11b{bottom:163.386667pt;}
.y13{bottom:165.640000pt;}
.y98{bottom:166.426667pt;}
.y41{bottom:169.480000pt;}
.yef{bottom:174.586667pt;}
.ybd{bottom:176.026667pt;}
.y52{bottom:177.306667pt;}
.y11a{bottom:178.746667pt;}
.y40{bottom:184.840000pt;}
.y97{bottom:185.306667pt;}
.y12{bottom:188.520000pt;}
.y31{bottom:188.840000pt;}
.yee{bottom:189.946667pt;}
.ybc{bottom:191.386667pt;}
.y51{bottom:193.146667pt;}
.y119{bottom:194.106667pt;}
.y96{bottom:200.666667pt;}
.y30{bottom:202.440000pt;}
.yed{bottom:205.306667pt;}
.y4c{bottom:205.946667pt;}
.ybb{bottom:206.746667pt;}
.y3f{bottom:206.760000pt;}
.y118{bottom:209.306667pt;}
.y11{bottom:211.400000pt;}
.y95{bottom:216.026667pt;}
.y2f{bottom:218.120000pt;}
.yec{bottom:220.666667pt;}
.yba{bottom:221.946667pt;}
.y3e{bottom:222.120000pt;}
.y117{bottom:224.666667pt;}
.y94{bottom:231.386667pt;}
.y10{bottom:233.160000pt;}
.y2e{bottom:233.480000pt;}
.yeb{bottom:236.026667pt;}
.yb9{bottom:237.306667pt;}
.y3d{bottom:237.480000pt;}
.y21{bottom:238.586667pt;}
.y116{bottom:240.026667pt;}
.y7b{bottom:240.666667pt;}
.y2d{bottom:248.680000pt;}
.yea{bottom:251.226667pt;}
.y93{bottom:252.026667pt;}
.yb8{bottom:252.666667pt;}
.y3c{bottom:252.840000pt;}
.y115{bottom:255.386667pt;}
.y7a{bottom:256.026667pt;}
.y2c{bottom:264.520000pt;}
.ye9{bottom:266.586667pt;}
.y92{bottom:267.386667pt;}
.yb7{bottom:268.026667pt;}
.y3b{bottom:268.200000pt;}
.y114{bottom:270.746667pt;}
.y79{bottom:271.386667pt;}
.y2b{bottom:280.040000pt;}
.yb6{bottom:281.146667pt;}
.ye8{bottom:281.946667pt;}
.y91{bottom:282.586667pt;}
.y3a{bottom:283.560000pt;}
.y113{bottom:286.106667pt;}
.y78{bottom:286.746667pt;}
.y2a{bottom:295.560000pt;}
.yb4{bottom:297.146667pt;}
.ye7{bottom:297.306667pt;}
.y90{bottom:297.946667pt;}
.y39{bottom:298.786667pt;}
.y112{bottom:301.346667pt;}
.y77{bottom:301.986667pt;}
.y29{bottom:310.946667pt;}
.ye6{bottom:312.706667pt;}
.yb3{bottom:313.186667pt;}
.y8f{bottom:313.346667pt;}
.y111{bottom:316.706667pt;}
.y76{bottom:317.346667pt;}
.y38{bottom:320.866667pt;}
.y28{bottom:326.466667pt;}
.ye5{bottom:327.906667pt;}
.y8e{bottom:328.706667pt;}
.yb2{bottom:332.066667pt;}
.y75{bottom:332.706667pt;}
.y37{bottom:336.226667pt;}
.y27{bottom:341.826667pt;}
.ye4{bottom:343.266667pt;}
.y8d{bottom:344.066667pt;}
.yb1{bottom:347.426667pt;}
.y74{bottom:348.066667pt;}
.y26{bottom:357.346667pt;}
.y36{bottom:358.146667pt;}
.ye3{bottom:358.626667pt;}
.y8c{bottom:359.426667pt;}
.yb0{bottom:362.786667pt;}
.y73{bottom:363.426667pt;}
.y25{bottom:372.866667pt;}
.y35{bottom:373.506667pt;}
.ye2{bottom:373.986667pt;}
.y8b{bottom:374.626667pt;}
.yaf{bottom:377.986667pt;}
.y110{bottom:378.146667pt;}
.y72{bottom:378.786667pt;}
.y8a{bottom:387.106667pt;}
.y24{bottom:388.386667pt;}
.y34{bottom:388.866667pt;}
.ye1{bottom:389.346667pt;}
.yae{bottom:391.106667pt;}
.y10f{bottom:393.346667pt;}
.y71{bottom:393.986667pt;}
.y33{bottom:404.226667pt;}
.ye0{bottom:404.706667pt;}
.yad{bottom:407.106667pt;}
.y10e{bottom:408.706667pt;}
.y70{bottom:409.346667pt;}
.y23{bottom:412.866667pt;}
.y32{bottom:419.586667pt;}
.ydf{bottom:419.906667pt;}
.yac{bottom:423.106667pt;}
.y10d{bottom:424.066667pt;}
.y6f{bottom:424.706667pt;}
.y22{bottom:428.546667pt;}
.yde{bottom:435.266667pt;}
.yab{bottom:439.106667pt;}
.y10c{bottom:439.426667pt;}
.y6e{bottom:440.066667pt;}
.ydd{bottom:450.626667pt;}
.y10b{bottom:454.786667pt;}
.yaa{bottom:455.106667pt;}
.y6d{bottom:455.426667pt;}
.ydc{bottom:465.986667pt;}
.y10a{bottom:469.986667pt;}
.y6c{bottom:470.626667pt;}
.ya9{bottom:473.986667pt;}
.ydb{bottom:481.346667pt;}
.y109{bottom:485.346667pt;}
.y6b{bottom:485.986667pt;}
.ya8{bottom:489.346667pt;}
.yda{bottom:493.826667pt;}
.y108{bottom:500.706667pt;}
.y6a{bottom:501.346667pt;}
.ya7{bottom:504.706667pt;}
.y69{bottom:513.826667pt;}
.y107{bottom:516.066667pt;}
.ya6{bottom:520.066667pt;}
.y106{bottom:531.426667pt;}
.ya5{bottom:535.426667pt;}
.y105{bottom:546.813333pt;}
.ya4{bottom:550.653333pt;}
.y104{bottom:562.013333pt;}
.ya3{bottom:563.133333pt;}
.yc8{bottom:564.320000pt;}
.y103{bottom:577.373333pt;}
.y102{bottom:592.733333pt;}
.y101{bottom:608.093333pt;}
.y100{bottom:623.453333pt;}
.y89{bottom:626.013333pt;}
.yff{bottom:638.813333pt;}
.y88{bottom:641.373333pt;}
.yc3{bottom:646.400000pt;}
.yfe{bottom:654.013333pt;}
.y87{bottom:656.733333pt;}
.yc5{bottom:663.360000pt;}
.yfd{bottom:669.373333pt;}
.y86{bottom:672.093333pt;}
.y1f{bottom:677.213333pt;}
.yfc{bottom:684.733333pt;}
.y85{bottom:687.453333pt;}
.yfb{bottom:700.093333pt;}
.y84{bottom:702.653333pt;}
.yf{bottom:703.453333pt;}
.yfa{bottom:715.453333pt;}
.y83{bottom:718.013333pt;}
.yc7{bottom:718.400000pt;}
.yf9{bottom:730.813333pt;}
.y82{bottom:733.373333pt;}
.yf8{bottom:746.013333pt;}
.ya2{bottom:748.093333pt;}
.y81{bottom:748.733333pt;}
.yf7{bottom:761.373333pt;}
.ya1{bottom:763.453333pt;}
.y80{bottom:764.093333pt;}
.yf6{bottom:776.773333pt;}
.ya0{bottom:778.693333pt;}
.y7f{bottom:779.493333pt;}
.yf5{bottom:792.133333pt;}
.y9f{bottom:794.053333pt;}
.y7e{bottom:794.693333pt;}
.yf4{bottom:807.493333pt;}
.y9e{bottom:809.413333pt;}
.y7d{bottom:810.053333pt;}
.yd9{bottom:817.413333pt;}
.y7c{bottom:822.533333pt;}
.y68{bottom:822.693333pt;}
.y9d{bottom:824.773333pt;}
.yd8{bottom:832.773333pt;}
.y9c{bottom:837.253333pt;}
.y67{bottom:838.053333pt;}
.yd7{bottom:845.893333pt;}
.y66{bottom:853.413333pt;}
.yd6{bottom:861.893333pt;}
.y65{bottom:868.773333pt;}
.yd5{bottom:877.893333pt;}
.y64{bottom:884.133333pt;}
.yd4{bottom:896.773333pt;}
.y63{bottom:899.493333pt;}
.yd3{bottom:912.133333pt;}
.y62{bottom:914.693333pt;}
.yd2{bottom:927.493333pt;}
.y61{bottom:930.053333pt;}
.yd1{bottom:942.693333pt;}
.y60{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.yd0{bottom:958.053333pt;}
.y5f{bottom:960.773333pt;}
.y6{bottom:972.453333pt;}
.ycf{bottom:973.413333pt;}
.y5e{bottom:976.133333pt;}
.yce{bottom:988.773333pt;}
.y5d{bottom:991.493333pt;}
.ycd{bottom:1004.133333pt;}
.y5c{bottom:1006.693333pt;}
.ycc{bottom:1017.280000pt;}
.y5b{bottom:1022.080000pt;}
.ycb{bottom:1033.280000pt;}
.y5a{bottom:1037.440000pt;}
.yca{bottom:1049.280000pt;}
.y59{bottom:1052.800000pt;}
.y58{bottom:1068.160000pt;}
.h1e{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h23{height:26.880000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.640000pt;}
.h19{height:34.505000pt;}
.h21{height:35.085938pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h25{height:38.828437pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.410625pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h22{height:81.920000pt;}
.h20{height:90.560000pt;}
.h7{height:108.032000pt;}
.h24{height:180.960000pt;}
.hc{height:246.586667pt;}
.h14{height:438.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w16{width:102.720000pt;}
.w14{width:115.552000pt;}
.wc{width:122.432000pt;}
.wf{width:132.160000pt;}
.wd{width:132.672000pt;}
.w5{width:135.226667pt;}
.wb{width:136.666667pt;}
.we{width:137.146667pt;}
.w15{width:145.946667pt;}
.w9{width:198.626667pt;}
.w17{width:210.240000pt;}
.w18{width:210.400000pt;}
.w12{width:220.666667pt;}
.w11{width:220.826667pt;}
.w10{width:220.866667pt;}
.w13{width:297.506667pt;}
.w19{width:363.040000pt;}
.wa{width:465.666667pt;}
.w6{width:529.053333pt;}
.w2{width:598.693333pt;}
.w8{width:661.573333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.xc{left:15.712000pt;}
.xe{left:28.992000pt;}
.x10{left:33.632000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x2a{left:89.986667pt;}
.x32{left:100.831988pt;}
.x20{left:120.031988pt;}
.x2e{left:123.040000pt;}
.x33{left:124.831988pt;}
.x19{left:169.946655pt;}
.x31{left:184.026655pt;}
.x25{left:190.106655pt;}
.x11{left:191.266667pt;}
.x2f{left:198.106655pt;}
.x6{left:200.026667pt;}
.x1a{left:202.426667pt;}
.x1f{left:212.666655pt;}
.x2d{left:214.720000pt;}
.x16{left:228.666655pt;}
.x22{left:253.026655pt;}
.xd{left:253.986667pt;}
.x9{left:256.226667pt;}
.x2b{left:259.680000pt;}
.x12{left:263.426667pt;}
.x2c{left:269.760000pt;}
.x23{left:286.626667pt;}
.xf{left:305.506667pt;}
.x7{left:309.346667pt;}
.x29{left:317.760000pt;}
.x1b{left:325.506667pt;}
.x8{left:326.466667pt;}
.xb{left:330.786667pt;}
.x26{left:363.266667pt;}
.x17{left:396.866655pt;}
.xa{left:404.906667pt;}
.x1c{left:458.813333pt;}
.x27{left:479.453333pt;}
.x24{left:508.093333pt;}
.x1e{left:577.853322pt;}
.x21{left:578.973322pt;}
.x1d{left:596.613333pt;}
.x15{left:597.893322pt;}
.x28{left:626.053333pt;}
.x30{left:631.973322pt;}
.x18{left:659.973322pt;}
.x3{left:663.013333pt;}
.x14{left:665.573322pt;}
}




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