
    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_a2f1430fc87af73254b49c3d.woff2')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_30de5764141600ea70136892.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1a8d32f39e6a8188d4a0c9b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_bfd98f7fb399ae77910cd9eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_da499426f170ebac787d807c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c655788af93a8c543ce96dab.woff2')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_f6e0fbd31336bab014e3b053.woff2')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_91d0bc5d2df5eb1f49242e8a.woff2')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_1933bc82f2a93b62fa072469.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_75e8a4a6e76eaec32989a217.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cb73945c392f3d62a5a8f2db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_3735760fadf28e79b7f2fc02.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_5ddcad4e766fdb31cdd5e9f9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_19a7854fd358dcde7c9f5e7e.woff2')format("woff");}.fff{font-family:fff;line-height:0.933594;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_2f6561d9b16eae39725fc52e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_844e321edbaac856f06ab48c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0b0e1ddb26c747c2bef6a149.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1164dfb04448b3e9d3221f99.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3cc56aa41e0f550200df740b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-69.960000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-4.680000px;}
.lsc{letter-spacing:-3.960000px;}
.ls1d{letter-spacing:-1.800000px;}
.ls16{letter-spacing:-0.513600px;}
.ls1e{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.298200px;}
.ls7{letter-spacing:-0.127200px;}
.ls17{letter-spacing:-0.100200px;}
.ls18{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls14{letter-spacing:0.135600px;}
.ls1c{letter-spacing:0.153600px;}
.ls11{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls15{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.786240px;}
.ls5{letter-spacing:0.894240px;}
.ls20{letter-spacing:15.786720px;}
.ls12{letter-spacing:45.306720px;}
.lsf{letter-spacing:142.716000px;}
.ls10{letter-spacing:152.100000px;}
.lse{letter-spacing:201.204000px;}
.ls19{letter-spacing:958.080000px;}
.ls1f{letter-spacing:1245.360000px;}
.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;}
}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.wse{word-spacing:-15.552000px;}
.ws7{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.093600px;}
.wsf{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.839800px;}
.ws16{word-spacing:-14.526600px;}
.ws10{word-spacing:-14.426400px;}
.ws6{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.854880px;}
.wsa{word-spacing:-10.980000px;}
.ws9{word-spacing:-10.260000px;}
.wsc{word-spacing:-9.720000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.ws4{word-spacing:-7.776000px;}
.wsd{word-spacing:0.000000px;}
._19{margin-left:-7.171200px;}
._18{margin-left:-6.035760px;}
._4{margin-left:-4.840560px;}
._3{margin-left:-3.400080px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.026000px;}
._1{width:1.254000px;}
._a{width:2.389680px;}
._6{width:3.447840px;}
._b{width:4.598880px;}
._5{width:5.761440px;}
._13{width:6.792480px;}
._d{width:7.903200px;}
._c{width:9.681120px;}
._e{width:10.685520px;}
._17{width:11.832480px;}
._9{width:13.386240px;}
._14{width:16.072800px;}
._f{width:17.270640px;}
._11{width:18.406080px;}
._10{width:19.481760px;}
._15{width:28.864080px;}
._12{width:32.688720px;}
._7{width:34.488000px;}
._8{width:35.616960px;}
._16{width:201.204000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.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;}
.y97{bottom:3.420000px;}
.y42{bottom:3.600000px;}
.yeb{bottom:3.645000px;}
.y3{bottom:3.780000px;}
.y47{bottom:4.140000px;}
.ye{bottom:4.320000px;}
.y19{bottom:4.860000px;}
.y45{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:14.040000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y41{bottom:20.880000px;}
.y46{bottom:22.500000px;}
.y44{bottom:25.380000px;}
.y18{bottom:29.340000px;}
.yb{bottom:30.420000px;}
.y5{bottom:31.500000px;}
.y40{bottom:38.160000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.800000px;}
.y1{bottom:54.000000px;}
.y3f{bottom:55.440000px;}
.y16{bottom:62.325000px;}
.y3e{bottom:72.720000px;}
.y9{bottom:73.440000px;}
.y15{bottom:78.165000px;}
.y14{bottom:88.605000px;}
.y3d{bottom:89.820000px;}
.y8{bottom:93.270000px;}
.y57{bottom:99.396000px;}
.yf7{bottom:99.936000px;}
.y95{bottom:101.376000px;}
.yc1{bottom:103.536000px;}
.y13{bottom:106.965000px;}
.y3c{bottom:107.100000px;}
.y7{bottom:111.450000px;}
.y56{bottom:116.676000px;}
.y10d{bottom:117.036000px;}
.yf6{bottom:117.936000px;}
.y94{bottom:118.656000px;}
.yc0{bottom:120.456000px;}
.y3b{bottom:124.380000px;}
.y12{bottom:125.505000px;}
.y2b{bottom:130.320000px;}
.y55{bottom:133.776000px;}
.y10c{bottom:134.316000px;}
.ybf{bottom:134.496000px;}
.y93{bottom:135.936000px;}
.y3a{bottom:141.660000px;}
.y2a{bottom:145.800000px;}
.y54{bottom:151.050000px;}
.y11{bottom:151.245000px;}
.y10b{bottom:151.590000px;}
.y92{bottom:153.030000px;}
.yf5{bottom:153.930000px;}
.y39{bottom:158.940000px;}
.y29{bottom:163.620000px;}
.y53{bottom:168.330000px;}
.y10a{bottom:168.870000px;}
.y91{bottom:169.950000px;}
.yf4{bottom:171.930000px;}
.y10{bottom:175.725000px;}
.y38{bottom:176.220000px;}
.y28{bottom:180.900000px;}
.y52{bottom:185.610000px;}
.y109{bottom:185.970000px;}
.y90{bottom:187.230000px;}
.yf3{bottom:189.930000px;}
.y37{bottom:193.320000px;}
.y27{bottom:198.210000px;}
.y51{bottom:202.890000px;}
.y108{bottom:203.250000px;}
.y8f{bottom:204.870000px;}
.yf2{bottom:207.930000px;}
.y36{bottom:210.630000px;}
.y26{bottom:215.670000px;}
.y50{bottom:219.990000px;}
.y107{bottom:220.530000px;}
.y8e{bottom:222.150000px;}
.yf1{bottom:225.930000px;}
.y35{bottom:227.910000px;}
.y25{bottom:232.950000px;}
.y4f{bottom:237.270000px;}
.y106{bottom:237.810000px;}
.y8d{bottom:239.430000px;}
.yf0{bottom:243.930000px;}
.y34{bottom:245.190000px;}
.y24{bottom:250.410000px;}
.y4e{bottom:254.550000px;}
.y105{bottom:255.090000px;}
.y8c{bottom:256.530000px;}
.yef{bottom:261.930000px;}
.y33{bottom:262.470000px;}
.y23{bottom:267.870000px;}
.y4d{bottom:271.830000px;}
.y104{bottom:272.370000px;}
.y8b{bottom:273.450000px;}
.y114{bottom:273.810000px;}
.y32{bottom:279.750000px;}
.yee{bottom:279.930000px;}
.y22{bottom:285.150000px;}
.y4c{bottom:289.110000px;}
.y103{bottom:289.470000px;}
.y8a{bottom:290.730000px;}
.y113{bottom:291.090000px;}
.y31{bottom:296.850000px;}
.yed{bottom:297.930000px;}
.y21{bottom:302.610000px;}
.y4b{bottom:306.390000px;}
.y102{bottom:306.750000px;}
.y89{bottom:308.370000px;}
.y30{bottom:314.130000px;}
.yec{bottom:315.930000px;}
.y20{bottom:320.070000px;}
.y4a{bottom:323.490000px;}
.y101{bottom:323.670000px;}
.y88{bottom:325.650000px;}
.y2f{bottom:331.410000px;}
.yea{bottom:333.930000px;}
.y1f{bottom:340.410000px;}
.y49{bottom:340.455000px;}
.y100{bottom:341.355000px;}
.y87{bottom:342.975000px;}
.y2e{bottom:348.690000px;}
.ye9{bottom:351.975000px;}
.y48{bottom:358.095000px;}
.yff{bottom:358.275000px;}
.y86{bottom:360.075000px;}
.y2d{bottom:365.970000px;}
.y1e{bottom:367.770000px;}
.ye8{bottom:369.975000px;}
.y43{bottom:371.595000px;}
.yfe{bottom:372.135000px;}
.y85{bottom:377.355000px;}
.y2c{bottom:383.250000px;}
.y1d{bottom:385.410000px;}
.ye7{bottom:387.975000px;}
.y84{bottom:394.635000px;}
.ybe{bottom:405.975000px;}
.y1c{bottom:408.315000px;}
.y83{bottom:411.915000px;}
.ybd{bottom:423.075000px;}
.ye6{bottom:423.975000px;}
.y82{bottom:429.195000px;}
.ybc{bottom:440.355000px;}
.ye5{bottom:441.795000px;}
.y81{bottom:446.295000px;}
.ybb{bottom:457.635000px;}
.ye4{bottom:459.795000px;}
.y80{bottom:463.215000px;}
.y112{bottom:463.575000px;}
.yba{bottom:474.555000px;}
.ye3{bottom:477.795000px;}
.y7f{bottom:480.855000px;}
.yb9{bottom:491.835000px;}
.ye2{bottom:495.795000px;}
.y7e{bottom:498.135000px;}
.yb8{bottom:506.415000px;}
.ye1{bottom:513.795000px;}
.y7d{bottom:515.415000px;}
.yb7{bottom:524.415000px;}
.ye0{bottom:531.795000px;}
.y7c{bottom:532.695000px;}
.yb6{bottom:542.415000px;}
.y7b{bottom:549.795000px;}
.yb5{bottom:560.415000px;}
.y7a{bottom:567.075000px;}
.ydf{bottom:571.215000px;}
.yb4{bottom:578.415000px;}
.y79{bottom:584.355000px;}
.yde{bottom:588.495000px;}
.yb3{bottom:596.415000px;}
.y78{bottom:601.635000px;}
.ydd{bottom:606.165000px;}
.yb2{bottom:614.445000px;}
.y77{bottom:618.945000px;}
.ydc{bottom:623.445000px;}
.yb1{bottom:632.445000px;}
.y76{bottom:636.225000px;}
.ydb{bottom:640.725000px;}
.yb0{bottom:650.445000px;}
.y75{bottom:653.325000px;}
.yda{bottom:657.825000px;}
.yfd{bottom:664.665000px;}
.yaf{bottom:668.445000px;}
.y74{bottom:670.605000px;}
.yd9{bottom:675.105000px;}
.yfc{bottom:681.945000px;}
.yae{bottom:686.445000px;}
.y73{bottom:687.885000px;}
.yd8{bottom:692.385000px;}
.yfb{bottom:698.685000px;}
.yad{bottom:704.445000px;}
.y72{bottom:705.165000px;}
.yd7{bottom:709.665000px;}
.yfa{bottom:715.965000px;}
.y71{bottom:722.445000px;}
.yd6{bottom:726.945000px;}
.yf9{bottom:733.245000px;}
.y70{bottom:739.725000px;}
.yac{bottom:740.445000px;}
.yd5{bottom:743.865000px;}
.yf8{bottom:747.285000px;}
.y6f{bottom:756.825000px;}
.yab{bottom:758.445000px;}
.yd4{bottom:761.325000px;}
.y6e{bottom:774.105000px;}
.yd3{bottom:775.725000px;}
.yaa{bottom:776.445000px;}
.y6d{bottom:791.025000px;}
.y111{bottom:791.385000px;}
.yd2{bottom:793.725000px;}
.ya9{bottom:798.045000px;}
.y1a{bottom:805.065000px;}
.y110{bottom:808.305000px;}
.y6c{bottom:808.665000px;}
.yd1{bottom:811.545000px;}
.ya8{bottom:815.325000px;}
.y6b{bottom:825.945000px;}
.yd0{bottom:829.545000px;}
.ya7{bottom:832.605000px;}
.yf{bottom:834.585000px;}
.y6a{bottom:843.045000px;}
.ycf{bottom:847.545000px;}
.ya6{bottom:849.885000px;}
.y69{bottom:859.965000px;}
.y10f{bottom:860.325000px;}
.ya5{bottom:866.805000px;}
.yce{bottom:868.965000px;}
.y68{bottom:877.290000px;}
.y10e{bottom:877.650000px;}
.ya4{bottom:884.490000px;}
.ycd{bottom:886.290000px;}
.y67{bottom:894.930000px;}
.ya3{bottom:898.710000px;}
.ycc{bottom:900.870000px;}
.y66{bottom:912.210000px;}
.ya2{bottom:916.710000px;}
.ycb{bottom:918.870000px;}
.y65{bottom:929.490000px;}
.ya1{bottom:934.710000px;}
.yca{bottom:936.870000px;}
.y64{bottom:946.590000px;}
.ya0{bottom:952.710000px;}
.yc9{bottom:954.870000px;}
.y63{bottom:963.870000px;}
.y9f{bottom:970.710000px;}
.yc8{bottom:972.870000px;}
.y62{bottom:981.150000px;}
.y9e{bottom:988.710000px;}
.yc7{bottom:990.870000px;}
.y61{bottom:998.430000px;}
.y9d{bottom:1006.710000px;}
.yc6{bottom:1008.870000px;}
.y60{bottom:1015.710000px;}
.y9c{bottom:1024.710000px;}
.yd{bottom:1025.610000px;}
.yc5{bottom:1026.870000px;}
.y5f{bottom:1032.990000px;}
.y9b{bottom:1042.710000px;}
.yc4{bottom:1044.870000px;}
.y6{bottom:1045.590000px;}
.y5e{bottom:1050.090000px;}
.y9a{bottom:1060.710000px;}
.yc3{bottom:1062.870000px;}
.y5d{bottom:1067.370000px;}
.y99{bottom:1078.710000px;}
.y5c{bottom:1084.650000px;}
.y98{bottom:1096.710000px;}
.y5b{bottom:1101.930000px;}
.y96{bottom:1114.710000px;}
.y5a{bottom:1119.210000px;}
.y59{bottom:1136.490000px;}
.yc2{bottom:1153.260000px;}
.y58{bottom:1153.620000px;}
.h26{height:17.100000px;}
.h27{height:17.136000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:19.620000px;}
.h13{height:29.520000px;}
.h12{height:32.103633px;}
.h2{height:32.976000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1e{height:36.720000px;}
.h1b{height:42.186445px;}
.h1c{height:42.894141px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h4{height:47.223633px;}
.h16{height:47.980898px;}
.h19{height:49.742227px;}
.h1f{height:52.260820px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h18{height:56.741133px;}
.h1d{height:58.651172px;}
.h21{height:59.038594px;}
.hf{height:59.439023px;}
.h1a{height:59.614102px;}
.h20{height:60.226875px;}
.h10{height:61.189805px;}
.h22{height:61.423863px;}
.h25{height:62.211094px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:191.010000px;}
.h15{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:51.120000px;}
.w1c{width:64.620000px;}
.w1e{width:64.656000px;}
.w19{width:66.996000px;}
.w1a{width:71.820000px;}
.w3{width:73.080000px;}
.w1d{width:88.740000px;}
.w1b{width:101.736000px;}
.w1f{width:104.940000px;}
.w17{width:109.116000px;}
.w5{width:151.950000px;}
.w13{width:157.710000px;}
.wc{width:183.810000px;}
.w12{width:193.350000px;}
.w8{width:216.075000px;}
.w16{width:228.090000px;}
.we{width:232.995000px;}
.wf{width:233.670000px;}
.wb{width:237.090000px;}
.w15{width:239.250000px;}
.w14{width:260.895000px;}
.w10{width:261.390000px;}
.wa{width:307.155000px;}
.w11{width:377.175000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.wd{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.560000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xf{left:24.876000px;}
.xe{left:30.276000px;}
.xb{left:34.236000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x13{left:107.855987px;}
.xd{left:117.390000px;}
.x2c{left:123.875987px;}
.x21{left:191.730000px;}
.x10{left:215.175000px;}
.x1a{left:221.969987px;}
.x5{left:232.950000px;}
.x20{left:238.169987px;}
.x1d{left:240.329987px;}
.x22{left:243.570000px;}
.x2a{left:248.249987px;}
.x8{left:272.235000px;}
.xc{left:290.955000px;}
.x11{left:297.075000px;}
.x23{left:311.295000px;}
.x17{left:315.615000px;}
.x6{left:331.995000px;}
.x1e{left:343.335000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x24{left:383.835000px;}
.x14{left:389.775000px;}
.x9{left:439.500000px;}
.x1b{left:459.615000px;}
.x25{left:486.285000px;}
.x18{left:550.005000px;}
.x26{left:551.625000px;}
.x1f{left:583.305000px;}
.x16{left:627.585000px;}
.x27{left:641.085000px;}
.x1c{left:653.685000px;}
.x19{left:685.409987px;}
.x2b{left:695.669987px;}
.x28{left:706.470000px;}
.x29{left:716.909987px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-62.186667pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-4.160000pt;}
.lsc{letter-spacing:-3.520000pt;}
.ls1d{letter-spacing:-1.600000pt;}
.ls16{letter-spacing:-0.456533pt;}
.ls1e{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.265067pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls17{letter-spacing:-0.089067pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls14{letter-spacing:0.120533pt;}
.ls1c{letter-spacing:0.136533pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls15{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls5{letter-spacing:0.794880pt;}
.ls20{letter-spacing:14.032640pt;}
.ls12{letter-spacing:40.272640pt;}
.lsf{letter-spacing:126.858667pt;}
.ls10{letter-spacing:135.200000pt;}
.lse{letter-spacing:178.848000pt;}
.ls19{letter-spacing:851.626667pt;}
.ls1f{letter-spacing:1106.986667pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.wse{word-spacing:-13.824000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.190933pt;}
.ws16{word-spacing:-12.912533pt;}
.ws10{word-spacing:-12.823467pt;}
.ws6{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.426560pt;}
.wsa{word-spacing:-9.760000pt;}
.ws9{word-spacing:-9.120000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.ws4{word-spacing:-6.912000pt;}
.wsd{word-spacing:0.000000pt;}
._19{margin-left:-6.374400pt;}
._18{margin-left:-5.365120pt;}
._4{margin-left:-4.302720pt;}
._3{margin-left:-3.022293pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.114667pt;}
._a{width:2.124160pt;}
._6{width:3.064747pt;}
._b{width:4.087893pt;}
._5{width:5.121280pt;}
._13{width:6.037760pt;}
._d{width:7.025067pt;}
._c{width:8.605440pt;}
._e{width:9.498240pt;}
._17{width:10.517760pt;}
._9{width:11.898880pt;}
._14{width:14.286933pt;}
._f{width:15.351680pt;}
._11{width:16.360960pt;}
._10{width:17.317120pt;}
._15{width:25.656960pt;}
._12{width:29.056640pt;}
._7{width:30.656000pt;}
._8{width:31.659520pt;}
._16{width:178.848000pt;}
.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;}
.y97{bottom:3.040000pt;}
.y42{bottom:3.200000pt;}
.yeb{bottom:3.240000pt;}
.y3{bottom:3.360000pt;}
.y47{bottom:3.680000pt;}
.ye{bottom:3.840000pt;}
.y19{bottom:4.320000pt;}
.y45{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.480000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y41{bottom:18.560000pt;}
.y46{bottom:20.000000pt;}
.y44{bottom:22.560000pt;}
.y18{bottom:26.080000pt;}
.yb{bottom:27.040000pt;}
.y5{bottom:28.000000pt;}
.y40{bottom:33.920000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.600000pt;}
.y1{bottom:48.000000pt;}
.y3f{bottom:49.280000pt;}
.y16{bottom:55.400000pt;}
.y3e{bottom:64.640000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.760000pt;}
.y3d{bottom:79.840000pt;}
.y8{bottom:82.906667pt;}
.y57{bottom:88.352000pt;}
.yf7{bottom:88.832000pt;}
.y95{bottom:90.112000pt;}
.yc1{bottom:92.032000pt;}
.y13{bottom:95.080000pt;}
.y3c{bottom:95.200000pt;}
.y7{bottom:99.066667pt;}
.y56{bottom:103.712000pt;}
.y10d{bottom:104.032000pt;}
.yf6{bottom:104.832000pt;}
.y94{bottom:105.472000pt;}
.yc0{bottom:107.072000pt;}
.y3b{bottom:110.560000pt;}
.y12{bottom:111.560000pt;}
.y2b{bottom:115.840000pt;}
.y55{bottom:118.912000pt;}
.y10c{bottom:119.392000pt;}
.ybf{bottom:119.552000pt;}
.y93{bottom:120.832000pt;}
.y3a{bottom:125.920000pt;}
.y2a{bottom:129.600000pt;}
.y54{bottom:134.266667pt;}
.y11{bottom:134.440000pt;}
.y10b{bottom:134.746667pt;}
.y92{bottom:136.026667pt;}
.yf5{bottom:136.826667pt;}
.y39{bottom:141.280000pt;}
.y29{bottom:145.440000pt;}
.y53{bottom:149.626667pt;}
.y10a{bottom:150.106667pt;}
.y91{bottom:151.066667pt;}
.yf4{bottom:152.826667pt;}
.y10{bottom:156.200000pt;}
.y38{bottom:156.640000pt;}
.y28{bottom:160.800000pt;}
.y52{bottom:164.986667pt;}
.y109{bottom:165.306667pt;}
.y90{bottom:166.426667pt;}
.yf3{bottom:168.826667pt;}
.y37{bottom:171.840000pt;}
.y27{bottom:176.186667pt;}
.y51{bottom:180.346667pt;}
.y108{bottom:180.666667pt;}
.y8f{bottom:182.106667pt;}
.yf2{bottom:184.826667pt;}
.y36{bottom:187.226667pt;}
.y26{bottom:191.706667pt;}
.y50{bottom:195.546667pt;}
.y107{bottom:196.026667pt;}
.y8e{bottom:197.466667pt;}
.yf1{bottom:200.826667pt;}
.y35{bottom:202.586667pt;}
.y25{bottom:207.066667pt;}
.y4f{bottom:210.906667pt;}
.y106{bottom:211.386667pt;}
.y8d{bottom:212.826667pt;}
.yf0{bottom:216.826667pt;}
.y34{bottom:217.946667pt;}
.y24{bottom:222.586667pt;}
.y4e{bottom:226.266667pt;}
.y105{bottom:226.746667pt;}
.y8c{bottom:228.026667pt;}
.yef{bottom:232.826667pt;}
.y33{bottom:233.306667pt;}
.y23{bottom:238.106667pt;}
.y4d{bottom:241.626667pt;}
.y104{bottom:242.106667pt;}
.y8b{bottom:243.066667pt;}
.y114{bottom:243.386667pt;}
.y32{bottom:248.666667pt;}
.yee{bottom:248.826667pt;}
.y22{bottom:253.466667pt;}
.y4c{bottom:256.986667pt;}
.y103{bottom:257.306667pt;}
.y8a{bottom:258.426667pt;}
.y113{bottom:258.746667pt;}
.y31{bottom:263.866667pt;}
.yed{bottom:264.826667pt;}
.y21{bottom:268.986667pt;}
.y4b{bottom:272.346667pt;}
.y102{bottom:272.666667pt;}
.y89{bottom:274.106667pt;}
.y30{bottom:279.226667pt;}
.yec{bottom:280.826667pt;}
.y20{bottom:284.506667pt;}
.y4a{bottom:287.546667pt;}
.y101{bottom:287.706667pt;}
.y88{bottom:289.466667pt;}
.y2f{bottom:294.586667pt;}
.yea{bottom:296.826667pt;}
.y1f{bottom:302.586667pt;}
.y49{bottom:302.626667pt;}
.y100{bottom:303.426667pt;}
.y87{bottom:304.866667pt;}
.y2e{bottom:309.946667pt;}
.ye9{bottom:312.866667pt;}
.y48{bottom:318.306667pt;}
.yff{bottom:318.466667pt;}
.y86{bottom:320.066667pt;}
.y2d{bottom:325.306667pt;}
.y1e{bottom:326.906667pt;}
.ye8{bottom:328.866667pt;}
.y43{bottom:330.306667pt;}
.yfe{bottom:330.786667pt;}
.y85{bottom:335.426667pt;}
.y2c{bottom:340.666667pt;}
.y1d{bottom:342.586667pt;}
.ye7{bottom:344.866667pt;}
.y84{bottom:350.786667pt;}
.ybe{bottom:360.866667pt;}
.y1c{bottom:362.946667pt;}
.y83{bottom:366.146667pt;}
.ybd{bottom:376.066667pt;}
.ye6{bottom:376.866667pt;}
.y82{bottom:381.506667pt;}
.ybc{bottom:391.426667pt;}
.ye5{bottom:392.706667pt;}
.y81{bottom:396.706667pt;}
.ybb{bottom:406.786667pt;}
.ye4{bottom:408.706667pt;}
.y80{bottom:411.746667pt;}
.y112{bottom:412.066667pt;}
.yba{bottom:421.826667pt;}
.ye3{bottom:424.706667pt;}
.y7f{bottom:427.426667pt;}
.yb9{bottom:437.186667pt;}
.ye2{bottom:440.706667pt;}
.y7e{bottom:442.786667pt;}
.yb8{bottom:450.146667pt;}
.ye1{bottom:456.706667pt;}
.y7d{bottom:458.146667pt;}
.yb7{bottom:466.146667pt;}
.ye0{bottom:472.706667pt;}
.y7c{bottom:473.506667pt;}
.yb6{bottom:482.146667pt;}
.y7b{bottom:488.706667pt;}
.yb5{bottom:498.146667pt;}
.y7a{bottom:504.066667pt;}
.ydf{bottom:507.746667pt;}
.yb4{bottom:514.146667pt;}
.y79{bottom:519.426667pt;}
.yde{bottom:523.106667pt;}
.yb3{bottom:530.146667pt;}
.y78{bottom:534.786667pt;}
.ydd{bottom:538.813333pt;}
.yb2{bottom:546.173333pt;}
.y77{bottom:550.173333pt;}
.ydc{bottom:554.173333pt;}
.yb1{bottom:562.173333pt;}
.y76{bottom:565.533333pt;}
.ydb{bottom:569.533333pt;}
.yb0{bottom:578.173333pt;}
.y75{bottom:580.733333pt;}
.yda{bottom:584.733333pt;}
.yfd{bottom:590.813333pt;}
.yaf{bottom:594.173333pt;}
.y74{bottom:596.093333pt;}
.yd9{bottom:600.093333pt;}
.yfc{bottom:606.173333pt;}
.yae{bottom:610.173333pt;}
.y73{bottom:611.453333pt;}
.yd8{bottom:615.453333pt;}
.yfb{bottom:621.053333pt;}
.yad{bottom:626.173333pt;}
.y72{bottom:626.813333pt;}
.yd7{bottom:630.813333pt;}
.yfa{bottom:636.413333pt;}
.y71{bottom:642.173333pt;}
.yd6{bottom:646.173333pt;}
.yf9{bottom:651.773333pt;}
.y70{bottom:657.533333pt;}
.yac{bottom:658.173333pt;}
.yd5{bottom:661.213333pt;}
.yf8{bottom:664.253333pt;}
.y6f{bottom:672.733333pt;}
.yab{bottom:674.173333pt;}
.yd4{bottom:676.733333pt;}
.y6e{bottom:688.093333pt;}
.yd3{bottom:689.533333pt;}
.yaa{bottom:690.173333pt;}
.y6d{bottom:703.133333pt;}
.y111{bottom:703.453333pt;}
.yd2{bottom:705.533333pt;}
.ya9{bottom:709.373333pt;}
.y1a{bottom:715.613333pt;}
.y110{bottom:718.493333pt;}
.y6c{bottom:718.813333pt;}
.yd1{bottom:721.373333pt;}
.ya8{bottom:724.733333pt;}
.y6b{bottom:734.173333pt;}
.yd0{bottom:737.373333pt;}
.ya7{bottom:740.093333pt;}
.yf{bottom:741.853333pt;}
.y6a{bottom:749.373333pt;}
.ycf{bottom:753.373333pt;}
.ya6{bottom:755.453333pt;}
.y69{bottom:764.413333pt;}
.y10f{bottom:764.733333pt;}
.ya5{bottom:770.493333pt;}
.yce{bottom:772.413333pt;}
.y68{bottom:779.813333pt;}
.y10e{bottom:780.133333pt;}
.ya4{bottom:786.213333pt;}
.ycd{bottom:787.813333pt;}
.y67{bottom:795.493333pt;}
.ya3{bottom:798.853333pt;}
.ycc{bottom:800.773333pt;}
.y66{bottom:810.853333pt;}
.ya2{bottom:814.853333pt;}
.ycb{bottom:816.773333pt;}
.y65{bottom:826.213333pt;}
.ya1{bottom:830.853333pt;}
.yca{bottom:832.773333pt;}
.y64{bottom:841.413333pt;}
.ya0{bottom:846.853333pt;}
.yc9{bottom:848.773333pt;}
.y63{bottom:856.773333pt;}
.y9f{bottom:862.853333pt;}
.yc8{bottom:864.773333pt;}
.y62{bottom:872.133333pt;}
.y9e{bottom:878.853333pt;}
.yc7{bottom:880.773333pt;}
.y61{bottom:887.493333pt;}
.y9d{bottom:894.853333pt;}
.yc6{bottom:896.773333pt;}
.y60{bottom:902.853333pt;}
.y9c{bottom:910.853333pt;}
.yd{bottom:911.653333pt;}
.yc5{bottom:912.773333pt;}
.y5f{bottom:918.213333pt;}
.y9b{bottom:926.853333pt;}
.yc4{bottom:928.773333pt;}
.y6{bottom:929.413333pt;}
.y5e{bottom:933.413333pt;}
.y9a{bottom:942.853333pt;}
.yc3{bottom:944.773333pt;}
.y5d{bottom:948.773333pt;}
.y99{bottom:958.853333pt;}
.y5c{bottom:964.133333pt;}
.y98{bottom:974.853333pt;}
.y5b{bottom:979.493333pt;}
.y96{bottom:990.853333pt;}
.y5a{bottom:994.853333pt;}
.y59{bottom:1010.213333pt;}
.yc2{bottom:1025.120000pt;}
.y58{bottom:1025.440000pt;}
.h26{height:15.200000pt;}
.h27{height:15.232000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:17.440000pt;}
.h13{height:26.240000pt;}
.h12{height:28.536563pt;}
.h2{height:29.312000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1b{height:37.499062pt;}
.h1c{height:38.128125pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h4{height:41.976562pt;}
.h16{height:42.649687pt;}
.h19{height:44.215312pt;}
.h1f{height:46.454062pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h18{height:50.436563pt;}
.h1d{height:52.134375pt;}
.h21{height:52.478750pt;}
.hf{height:52.834688pt;}
.h1a{height:52.990313pt;}
.h20{height:53.535000pt;}
.h10{height:54.390938pt;}
.h22{height:54.598989pt;}
.h25{height:55.298750pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.786667pt;}
.h15{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:45.440000pt;}
.w1c{width:57.440000pt;}
.w1e{width:57.472000pt;}
.w19{width:59.552000pt;}
.w1a{width:63.840000pt;}
.w3{width:64.960000pt;}
.w1d{width:78.880000pt;}
.w1b{width:90.432000pt;}
.w1f{width:93.280000pt;}
.w17{width:96.992000pt;}
.w5{width:135.066667pt;}
.w13{width:140.186667pt;}
.wc{width:163.386667pt;}
.w12{width:171.866667pt;}
.w8{width:192.066667pt;}
.w16{width:202.746667pt;}
.we{width:207.106667pt;}
.wf{width:207.706667pt;}
.wb{width:210.746667pt;}
.w15{width:212.666667pt;}
.w14{width:231.906667pt;}
.w10{width:232.346667pt;}
.wa{width:273.026667pt;}
.w11{width:335.266667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.wd{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.720000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xf{left:22.112000pt;}
.xe{left:26.912000pt;}
.xb{left:30.432000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x13{left:95.871988pt;}
.xd{left:104.346667pt;}
.x2c{left:110.111988pt;}
.x21{left:170.426667pt;}
.x10{left:191.266667pt;}
.x1a{left:197.306655pt;}
.x5{left:207.066667pt;}
.x20{left:211.706655pt;}
.x1d{left:213.626655pt;}
.x22{left:216.506667pt;}
.x2a{left:220.666655pt;}
.x8{left:241.986667pt;}
.xc{left:258.626667pt;}
.x11{left:264.066667pt;}
.x23{left:276.706667pt;}
.x17{left:280.546667pt;}
.x6{left:295.106667pt;}
.x1e{left:305.186667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x24{left:341.186667pt;}
.x14{left:346.466667pt;}
.x9{left:390.666667pt;}
.x1b{left:408.546667pt;}
.x25{left:432.253333pt;}
.x18{left:488.893333pt;}
.x26{left:490.333333pt;}
.x1f{left:518.493333pt;}
.x16{left:557.853333pt;}
.x27{left:569.853333pt;}
.x1c{left:581.053333pt;}
.x19{left:609.253322pt;}
.x2b{left:618.373322pt;}
.x28{left:627.973333pt;}
.x29{left:637.253322pt;}
.x3{left:656.933333pt;}
}




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