
    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_f53c046cc140feb07a129ef2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_afd730137e16c9e12722ec7d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.707000;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_71f362d67a17f4e453458b4b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_218698db925f813ffeda2b9a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_de30697b875f43d277594435.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_bfc391613b6640eb550a203d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.410000;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_9ac360eba69933e604d4368e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432000;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_32dd0127af0dfd97d4236c48.woff')format("woff");}.ff8{font-family:ff8;line-height:1.430000;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_41ee7002f7eed675298e4d6d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432000;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_06c9c774d0bb878cd8a63564.woff')format("woff");}.ffa{font-family:ffa;line-height:0.854000;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_99b63466a998fe1e18fc9b31.woff')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_75efb5787fb64b485e0cf726.woff')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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_12ca8ba5da4ab6269d446e32.woff')format("woff");}.ffd{font-family:ffd;line-height:0.932129;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_b4d07d3bbb5a102e6865af27.woff')format("woff");}.ffe{font-family:ffe;line-height:0.932129;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_9f2d4ad57b8893abe9f58dd7.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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_709ae7df583b8b56118f3d42.woff')format("woff");}.ff10{font-family:ff10;line-height:0.959000;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_271d4a4f1a738e2a512530f8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.959000;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_57afa52b635d143f04bed47e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.984000;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_3b2b627160fbafb1a953531c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.959000;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_3264fa1f3c24a90e45d16ecf.woff')format("woff");}.ff14{font-family:ff14;line-height:0.931641;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:ff15;src:url('chunks/assets/font_6e59f2abb075b7f2325ac266.woff')format("woff");}.ff15{font-family:ff15;line-height:0.905762;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:ff16;src:url('chunks/assets/font_b8ad3fdb44a13930cc81ce7e.woff')format("woff");}.ff16{font-family:ff16;line-height:0.905762;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:ff17;src:url('chunks/assets/font_b7412a547c3babe147e609bc.woff')format("woff");}.ff17{font-family:ff17;line-height:0.901000;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;}
.m4{transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);-ms-transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);-webkit-transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232782,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);}
.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);}
.v9{vertical-align:-12.306000px;}
.v6{vertical-align:-11.021184px;}
.v1{vertical-align:-8.964000px;}
.v4{vertical-align:-7.470000px;}
.vb{vertical-align:-3.150966px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.629810px;}
.vd{vertical-align:4.020198px;}
.v3{vertical-align:5.852280px;}
.v2{vertical-align:8.778420px;}
.v7{vertical-align:14.286300px;}
.v5{vertical-align:18.368640px;}
.va{vertical-align:25.001760px;}
.v8{vertical-align:44.310000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000061px;}
.ls23{letter-spacing:0.000679px;}
.ls1d{letter-spacing:0.002700px;}
.ls19{letter-spacing:0.002706px;}
.ls28{letter-spacing:0.003239px;}
.ls10{letter-spacing:0.003242px;}
.ls20{letter-spacing:0.011042px;}
.lsb{letter-spacing:0.031863px;}
.lsc{letter-spacing:0.033198px;}
.lse{letter-spacing:0.054578px;}
.lsd{letter-spacing:0.073880px;}
.ls18{letter-spacing:1.402321px;}
.ls1e{letter-spacing:5.193462px;}
.ls1a{letter-spacing:5.887621px;}
.ls21{letter-spacing:5.893621px;}
.ls1b{letter-spacing:11.198706px;}
.ls1f{letter-spacing:16.269239px;}
.ls16{letter-spacing:18.275851px;}
.ls17{letter-spacing:18.276464px;}
.ls4{letter-spacing:22.063142px;}
.ls27{letter-spacing:23.864616px;}
.ls22{letter-spacing:31.983680px;}
.ls12{letter-spacing:32.718178px;}
.ls26{letter-spacing:32.723408px;}
.ls7{letter-spacing:32.724178px;}
.ls3{letter-spacing:32.724476px;}
.ls2a{letter-spacing:32.726131px;}
.ls2{letter-spacing:32.727236px;}
.ls1{letter-spacing:32.727777px;}
.ls29{letter-spacing:32.728326px;}
.ls25{letter-spacing:32.729408px;}
.ls24{letter-spacing:32.730476px;}
.ls15{letter-spacing:36.133726px;}
.ls14{letter-spacing:36.134339px;}
.ls13{letter-spacing:36.235771px;}
.ls1c{letter-spacing:52.216752px;}
.ls9{letter-spacing:53.017712px;}
.ls8{letter-spacing:53.018936px;}
.lsf{letter-spacing:117.512682px;}
.ls11{letter-spacing:117.518682px;}
.ls5{letter-spacing:143.603247px;}
.ls6{letter-spacing:163.922363px;}
.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;}
}
.ws3{word-spacing:-18.196379px;}
.wse{word-spacing:-16.051995px;}
.ws1a{word-spacing:-13.900979px;}
.ws8{word-spacing:-10.212964px;}
.ws9{word-spacing:-9.184320px;}
.ws16{word-spacing:-7.943183px;}
.ws17{word-spacing:-6.354546px;}
.ws4{word-spacing:-0.597756px;}
.ws1{word-spacing:-0.122200px;}
.ws19{word-spacing:-0.065455px;}
.wsa{word-spacing:-0.060218px;}
.ws6{word-spacing:-0.059776px;}
.wsc{word-spacing:-0.056125px;}
.ws1d{word-spacing:-0.047565px;}
.ws18{word-spacing:-0.045645px;}
.ws2{word-spacing:-0.044801px;}
.ws1f{word-spacing:-0.043462px;}
.wsd{word-spacing:-0.039299px;}
.ws5{word-spacing:-0.002568px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.146307px;}
.wsf{word-spacing:4.320004px;}
.ws1b{word-spacing:7.541959px;}
.ws1c{word-spacing:14.203500px;}
.wsb{word-spacing:14.530921px;}
.ws23{word-spacing:23.843384px;}
.ws11{word-spacing:57.732367px;}
.ws12{word-spacing:79.244594px;}
.ws14{word-spacing:83.185933px;}
.ws13{word-spacing:88.615397px;}
.ws15{word-spacing:90.450854px;}
.ws21{word-spacing:92.290708px;}
.ws20{word-spacing:102.938800px;}
.ws10{word-spacing:103.251718px;}
.ws1e{word-spacing:137.295194px;}
.ws22{word-spacing:140.272314px;}
._1a{margin-left:-6.993792px;}
._4{margin-left:-5.574081px;}
._5{margin-left:-4.303860px;}
._1{margin-left:-3.272730px;}
._0{margin-left:-2.151936px;}
._7{margin-left:-1.012444px;}
._3{width:1.306796px;}
._1b{width:3.133755px;}
._2{width:4.842881px;}
._1c{width:11.482132px;}
._1d{width:12.641859px;}
._6{width:19.666172px;}
._25{width:21.220352px;}
._19{width:22.495574px;}
._24{width:23.498201px;}
._1e{width:29.610557px;}
._15{width:68.358780px;}
._c{width:78.654643px;}
._9{width:90.312385px;}
._1f{width:101.382427px;}
._8{width:109.859000px;}
._14{width:113.791732px;}
._16{width:115.106758px;}
._21{width:119.574427px;}
._22{width:125.012533px;}
._23{width:126.841991px;}
._10{width:128.802831px;}
._20{width:137.772427px;}
._12{width:142.457423px;}
._f{width:146.602540px;}
._26{width:150.442328px;}
._11{width:152.276326px;}
._e{width:157.970594px;}
._17{width:164.115488px;}
._d{width:172.197487px;}
._13{width:178.474057px;}
._a{width:181.332896px;}
._b{width:182.479943px;}
._18{width:237.080012px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(1,0,0);}
.fc3{color:rgb(255,128,0);}
.fc2{color:transparent;}
.fc4{color:rgb(26,23,27);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(42,153,121);}
.fc0{color:rgb(0,51,255);}
.fsa{font-size:11.704560px;}
.fs9{font-size:14.630700px;}
.fsb{font-size:20.482980px;}
.fs15{font-size:22.858080px;}
.fsd{font-size:23.409120px;}
.fs14{font-size:28.572600px;}
.fs10{font-size:29.389824px;}
.fs5{font-size:35.865600px;}
.fsf{font-size:36.737280px;}
.fs12{font-size:39.298579px;}
.fs19{font-size:40.002816px;}
.fs1b{font-size:43.461600px;}
.fs6{font-size:44.800560px;}
.fs8{font-size:45.429600px;}
.fs17{font-size:45.645000px;}
.fs1a{font-size:47.564993px;}
.fs2{font-size:47.820600px;}
.fs16{font-size:49.614000px;}
.fsc{font-size:49.744380px;}
.fs18{font-size:50.003520px;}
.fs11{font-size:56.124590px;}
.fs13{font-size:57.949440px;}
.fs7{font-size:59.775600px;}
.fse{font-size:60.218400px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs3{font-size:122.200320px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.334402px;}
.y41{bottom:4.286016px;}
.ya9{bottom:5.835375px;}
.y32{bottom:7.388504px;}
.y5c{bottom:7.776294px;}
.y92{bottom:9.763257px;}
.y3e{bottom:11.633472px;}
.y8{bottom:11.774976px;}
.ybc{bottom:14.987045px;}
.ya7{bottom:17.086203px;}
.y8c{bottom:17.620722px;}
.y23{bottom:19.970906px;}
.y31{bottom:20.190366px;}
.y36{bottom:20.817792px;}
.y49{bottom:28.739268px;}
.ya2{bottom:29.587083px;}
.y30{bottom:32.992229px;}
.yf{bottom:33.529797px;}
.y95{bottom:36.830673px;}
.y8d{bottom:36.830694px;}
.y48{bottom:37.923588px;}
.yae{bottom:39.900309px;}
.yc0{bottom:42.211580px;}
.y2f{bottom:43.306872px;}
.y40{bottom:44.040498px;}
.y37{bottom:44.161272px;}
.y3f{bottom:45.079704px;}
.y47{bottom:47.107908px;}
.yad{bottom:52.401189px;}
.y66{bottom:53.208000px;}
.y99{bottom:55.078500px;}
.y11{bottom:55.657500px;}
.y8e{bottom:56.066074px;}
.y46{bottom:56.292228px;}
.y61{bottom:56.883000px;}
.ya1{bottom:57.384000px;}
.ycf{bottom:58.839000px;}
.ybb{bottom:59.509500px;}
.y22{bottom:60.424791px;}
.y65{bottom:60.645000px;}
.y1e{bottom:62.068500px;}
.y4a{bottom:63.154500px;}
.y21{bottom:64.082466px;}
.y7d{bottom:64.129500px;}
.yd3{bottom:64.486149px;}
.yac{bottom:64.902069px;}
.y4e{bottom:64.984500px;}
.y45{bottom:65.476548px;}
.y1d{bottom:66.441000px;}
.y38{bottom:67.504752px;}
.y20{bottom:67.740141px;}
.y93{bottom:70.456460px;}
.y98{bottom:70.639500px;}
.y62{bottom:71.106000px;}
.y64{bottom:71.395521px;}
.y1f{bottom:71.397816px;}
.ya3{bottom:72.581181px;}
.y58{bottom:73.307721px;}
.y44{bottom:74.660868px;}
.y8f{bottom:75.276045px;}
.yab{bottom:77.402949px;}
.yba{bottom:77.442000px;}
.y71{bottom:78.018000px;}
.y5d{bottom:78.956032px;}
.y88{bottom:81.520500px;}
.y60{bottom:81.690000px;}
.y2e{bottom:81.785613px;}
.y35{bottom:83.478000px;}
.y43{bottom:83.845188px;}
.y7c{bottom:85.051500px;}
.y4d{bottom:85.308000px;}
.y63{bottom:87.557982px;}
.yd0{bottom:89.938349px;}
.ya{bottom:90.606000px;}
.y39{bottom:90.848232px;}
.y2d{bottom:92.100257px;}
.y42{bottom:93.029508px;}
.ydd{bottom:93.127500px;}
.ye{bottom:93.923711px;}
.y90{bottom:94.486017px;}
.y59{bottom:96.179154px;}
.y70{bottom:98.343000px;}
.yb9{bottom:98.362500px;}
.y87{bottom:103.713000px;}
.y7b{bottom:105.972000px;}
.y5f{bottom:106.497000px;}
.y2b{bottom:108.706101px;}
.ya8{bottom:108.707652px;}
.yce{bottom:108.870000px;}
.yde{bottom:108.952799px;}
.y1c{bottom:108.979500px;}
.y97{bottom:111.706110px;}
.ydc{bottom:113.452500px;}
.y91{bottom:113.695988px;}
.yf3{bottom:113.883000px;}
.y3a{bottom:114.229980px;}
.ya4{bottom:115.619746px;}
.y96{bottom:118.134945px;}
.y5a{bottom:119.269140px;}
.yb8{bottom:120.778500px;}
.y2c{bottom:121.727424px;}
.y6f{bottom:123.150000px;}
.y86{bottom:126.652500px;}
.y7a{bottom:126.894000px;}
.y1b{bottom:126.913500px;}
.ycd{bottom:129.195000px;}
.y5e{bottom:131.304000px;}
.y7{bottom:132.844500px;}
.ydb{bottom:133.776000px;}
.y2a{bottom:134.309826px;}
.yfa{bottom:136.447500px;}
.y3b{bottom:137.573460px;}
.yf2{bottom:138.690000px;}
.ybf{bottom:139.608779px;}
.yea{bottom:140.731500px;}
.yb7{bottom:141.103500px;}
.y5b{bottom:143.403471px;}
.y6e{bottom:143.473500px;}
.y1a{bottom:144.846000px;}
.y6{bottom:147.042000px;}
.y29{bottom:147.111689px;}
.y79{bottom:147.816000px;}
.yff{bottom:148.258500px;}
.y85{bottom:148.843500px;}
.ycc{bottom:149.518500px;}
.y28{bottom:157.718946px;}
.ya5{bottom:158.613844px;}
.yaa{bottom:158.613987px;}
.yf1{bottom:159.013500px;}
.y3c{bottom:160.916940px;}
.y5{bottom:161.238000px;}
.yf9{bottom:161.254500px;}
.y19{bottom:162.778500px;}
.ye4{bottom:163.063500px;}
.y10{bottom:165.003574px;}
.yb6{bottom:165.910500px;}
.yda{bottom:167.548500px;}
.y6d{bottom:168.280500px;}
.yfe{bottom:168.582000px;}
.y78{bottom:168.736500px;}
.ycb{bottom:169.842000px;}
.y56{bottom:170.863500px;}
.y84{bottom:171.783000px;}
.y57{bottom:173.687323px;}
.y27{bottom:174.471098px;}
.ye9{bottom:177.082500px;}
.yf0{bottom:179.337000px;}
.y18{bottom:180.711000px;}
.yf8{bottom:181.578000px;}
.yb5{bottom:183.843000px;}
.y3d{bottom:184.260420px;}
.yd9{bottom:185.482500px;}
.y26{bottom:187.346114px;}
.ye3{bottom:187.870500px;}
.y6c{bottom:188.604000px;}
.y77{bottom:189.658500px;}
.yd{bottom:189.997500px;}
.yfd{bottom:193.389000px;}
.y55{bottom:195.670500px;}
.ye8{bottom:197.406000px;}
.y25{bottom:197.660757px;}
.y83{bottom:198.457500px;}
.y4{bottom:199.077000px;}
.yd2{bottom:200.412303px;}
.y8b{bottom:200.709000px;}
.ya6{bottom:201.607942px;}
.y17{bottom:201.633000px;}
.yb4{bottom:201.775500px;}
.yd8{bottom:203.415000px;}
.yca{bottom:203.614500px;}
.yef{bottom:204.144000px;}
.yf7{bottom:206.385000px;}
.y76{bottom:209.982000px;}
.yc{bottom:210.321000px;}
.y9e{bottom:212.626500px;}
.ye2{bottom:212.677500px;}
.y6b{bottom:213.411000px;}
.y54{bottom:215.994000px;}
.yfc{bottom:218.196000px;}
.y3{bottom:219.400500px;}
.y16{bottom:219.565500px;}
.yb3{bottom:219.708000px;}
.yd7{bottom:221.347500px;}
.ye7{bottom:222.213000px;}
.y82{bottom:223.264500px;}
.yee{bottom:224.467500px;}
.yc6{bottom:224.571000px;}
.y24{bottom:224.727552px;}
.yc9{bottom:225.807000px;}
.yf6{bottom:226.710000px;}
.yb{bottom:230.644500px;}
.ye1{bottom:233.001000px;}
.y9d{bottom:234.817500px;}
.y6a{bottom:238.218000px;}
.yb2{bottom:240.630000px;}
.y53{bottom:240.801000px;}
.y15{bottom:241.981500px;}
.ybe{bottom:243.906907px;}
.yd6{bottom:244.137000px;}
.y81{bottom:246.204000px;}
.yc5{bottom:246.763500px;}
.ye6{bottom:247.020000px;}
.yf5{bottom:247.033500px;}
.yc8{bottom:248.746500px;}
.yed{bottom:249.274500px;}
.y75{bottom:257.490000px;}
.ye0{bottom:257.808000px;}
.yd1{bottom:258.080414px;}
.y52{bottom:261.124500px;}
.y14{bottom:262.305000px;}
.y69{bottom:263.025000px;}
.yb1{bottom:263.046000px;}
.yd5{bottom:264.685500px;}
.y9c{bottom:265.618500px;}
.y80{bottom:266.527500px;}
.yec{bottom:269.598000px;}
.yc4{bottom:269.701500px;}
.yc7{bottom:270.937500px;}
.ye5{bottom:271.827000px;}
.yf4{bottom:271.840500px;}
.y9b{bottom:276.844500px;}
.y2{bottom:277.257000px;}
.y51{bottom:281.448000px;}
.y74{bottom:282.297000px;}
.ydf{bottom:282.615000px;}
.yfb{bottom:283.353000px;}
.yb0{bottom:283.369500px;}
.y8a{bottom:286.023000px;}
.yd4{bottom:286.876500px;}
.y13{bottom:287.112000px;}
.y68{bottom:287.832000px;}
.y7f{bottom:288.718500px;}
.yc3{bottom:291.894000px;}
.yeb{bottom:294.405000px;}
.y1{bottom:298.179000px;}
.y4c{bottom:298.846500px;}
.y34{bottom:300.064500px;}
.yaf{bottom:303.693000px;}
.y73{bottom:305.236500px;}
.ya0{bottom:305.269500px;}
.y50{bottom:306.255000px;}
.y67{bottom:308.155500px;}
.y89{bottom:308.215500px;}
.y7e{bottom:311.658000px;}
.y12{bottom:311.919000px;}
.yc2{bottom:316.701000px;}
.y9a{bottom:322.827000px;}
.y4b{bottom:323.653500px;}
.y33{bottom:324.871500px;}
.y72{bottom:327.427500px;}
.y9f{bottom:327.460500px;}
.ybd{bottom:329.428174px;}
.y4f{bottom:331.062000px;}
.yc1{bottom:341.508000px;}
.y9{bottom:378.105000px;}
.hf{height:13.179335px;}
.he{height:16.474168px;}
.h1f{height:21.172297px;}
.h13{height:23.063835px;}
.h10{height:23.514461px;}
.h12{height:26.335260px;}
.h9{height:26.576410px;}
.h17{height:27.222324px;}
.h1a{height:28.476119px;}
.h29{height:30.346723px;}
.h20{height:31.224137px;}
.hb{height:32.462906px;}
.h2a{height:34.366921px;}
.h27{height:34.466040px;}
.h5{height:35.435065px;}
.h25{height:37.052608px;}
.h16{height:40.146500px;}
.h19{height:40.668404px;}
.h1c{height:41.990708px;}
.h14{height:42.694846px;}
.hc{height:44.293720px;}
.h4{height:48.501859px;}
.h1d{height:49.090950px;}
.h3{height:49.485859px;}
.h2{height:53.152819px;}
.h24{height:54.643847px;}
.h11{height:55.862939px;}
.h2b{height:58.790728px;}
.h8{height:63.783205px;}
.h7{height:85.295823px;}
.h21{height:92.811859px;}
.h22{height:93.994950px;}
.h1e{height:128.576700px;}
.h18{height:163.152389px;}
.h15{height:192.870720px;}
.h23{height:225.015840px;}
.ha{height:262.973687px;}
.h1b{height:269.464896px;}
.h28{height:281.604005px;}
.hd{height:301.246113px;}
.h26{height:354.707010px;}
.h1{height:408.000000px;}
.h6{height:408.162264px;}
.h0{height:408.189000px;}
.wa{width:151.530480px;}
.w8{width:183.681000px;}
.w4{width:229.555683px;}
.wb{width:229.585902px;}
.w6{width:229.588542px;}
.w5{width:275.529600px;}
.w9{width:321.451200px;}
.w3{width:367.355570px;}
.w7{width:381.108114px;}
.w2{width:544.223700px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x3d{left:3.641921px;}
.x3e{left:5.169254px;}
.xa{left:12.756000px;}
.x30{left:13.809138px;}
.x17{left:15.801156px;}
.x2e{left:21.901000px;}
.x40{left:25.230000px;}
.x2f{left:26.584100px;}
.x21{left:28.347000px;}
.x22{left:31.080000px;}
.x43{left:34.959425px;}
.x42{left:36.480581px;}
.x47{left:39.048000px;}
.x11{left:40.537500px;}
.xb{left:42.519000px;}
.x1a{left:44.053662px;}
.x3f{left:45.766500px;}
.xc{left:47.865000px;}
.x31{left:52.323778px;}
.x7{left:55.387500px;}
.x18{left:56.739000px;}
.x45{left:57.892500px;}
.x12{left:61.074000px;}
.x6{left:64.497000px;}
.x3{left:65.521500px;}
.x1{left:67.933500px;}
.x13{left:73.201500px;}
.x24{left:74.759703px;}
.xd{left:76.165500px;}
.x46{left:78.493500px;}
.x1b{left:81.893520px;}
.xf{left:88.440000px;}
.x1c{left:90.100475px;}
.x3a{left:92.620806px;}
.x14{left:93.801000px;}
.x16{left:95.392164px;}
.xe{left:97.332000px;}
.x27{left:99.729301px;}
.x34{left:107.905444px;}
.x33{left:111.877036px;}
.x9{left:115.529550px;}
.x25{left:121.874568px;}
.x3b{left:123.184564px;}
.x32{left:126.852650px;}
.x4{left:128.209500px;}
.x39{left:130.135054px;}
.x19{left:134.361000px;}
.x2a{left:142.078500px;}
.x29{left:143.437500px;}
.x2c{left:146.628000px;}
.x2b{left:147.985500px;}
.x15{left:157.323000px;}
.x37{left:166.239381px;}
.x8{left:171.877500px;}
.x44{left:174.036545px;}
.x1f{left:176.638965px;}
.x1e{left:178.677119px;}
.x26{left:183.080569px;}
.x1d{left:186.851929px;}
.x2{left:188.677500px;}
.x35{left:194.736000px;}
.x20{left:196.917000px;}
.x5{left:215.287500px;}
.x38{left:218.319297px;}
.x28{left:229.896294px;}
.x36{left:244.792500px;}
.x23{left:286.299000px;}
.x49{left:297.001500px;}
.x48{left:299.766000px;}
.x41{left:301.608000px;}
.x4a{left:319.026000px;}
.x10{left:322.528876px;}
.x2d{left:332.223000px;}
.x3c{left:378.141000px;}
@media print{
.v9{vertical-align:-10.938667pt;}
.v6{vertical-align:-9.796608pt;}
.v1{vertical-align:-7.968000pt;}
.v4{vertical-align:-6.640000pt;}
.vb{vertical-align:-2.800859pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.448720pt;}
.vd{vertical-align:3.573509pt;}
.v3{vertical-align:5.202027pt;}
.v2{vertical-align:7.803040pt;}
.v7{vertical-align:12.698933pt;}
.v5{vertical-align:16.327680pt;}
.va{vertical-align:22.223787pt;}
.v8{vertical-align:39.386667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000054pt;}
.ls23{letter-spacing:0.000603pt;}
.ls1d{letter-spacing:0.002400pt;}
.ls19{letter-spacing:0.002405pt;}
.ls28{letter-spacing:0.002879pt;}
.ls10{letter-spacing:0.002882pt;}
.ls20{letter-spacing:0.009815pt;}
.lsb{letter-spacing:0.028322pt;}
.lsc{letter-spacing:0.029509pt;}
.lse{letter-spacing:0.048514pt;}
.lsd{letter-spacing:0.065672pt;}
.ls18{letter-spacing:1.246508pt;}
.ls1e{letter-spacing:4.616411pt;}
.ls1a{letter-spacing:5.233441pt;}
.ls21{letter-spacing:5.238774pt;}
.ls1b{letter-spacing:9.954405pt;}
.ls1f{letter-spacing:14.461546pt;}
.ls16{letter-spacing:16.245201pt;}
.ls17{letter-spacing:16.245745pt;}
.ls4{letter-spacing:19.611682pt;}
.ls27{letter-spacing:21.212992pt;}
.ls22{letter-spacing:28.429938pt;}
.ls12{letter-spacing:29.082825pt;}
.ls26{letter-spacing:29.087474pt;}
.ls7{letter-spacing:29.088158pt;}
.ls3{letter-spacing:29.088423pt;}
.ls2a{letter-spacing:29.089894pt;}
.ls2{letter-spacing:29.090876pt;}
.ls1{letter-spacing:29.091357pt;}
.ls29{letter-spacing:29.091845pt;}
.ls25{letter-spacing:29.092807pt;}
.ls24{letter-spacing:29.093757pt;}
.ls15{letter-spacing:32.118868pt;}
.ls14{letter-spacing:32.119412pt;}
.ls13{letter-spacing:32.209575pt;}
.ls1c{letter-spacing:46.414891pt;}
.ls9{letter-spacing:47.126855pt;}
.ls8{letter-spacing:47.127943pt;}
.lsf{letter-spacing:104.455717pt;}
.ls11{letter-spacing:104.461051pt;}
.ls5{letter-spacing:127.647330pt;}
.ls6{letter-spacing:145.708767pt;}
.ws3{word-spacing:-16.174559pt;}
.wse{word-spacing:-14.268440pt;}
.ws1a{word-spacing:-12.356425pt;}
.ws8{word-spacing:-9.078190pt;}
.ws9{word-spacing:-8.163840pt;}
.ws16{word-spacing:-7.060607pt;}
.ws17{word-spacing:-5.648486pt;}
.ws4{word-spacing:-0.531339pt;}
.ws1{word-spacing:-0.108623pt;}
.ws19{word-spacing:-0.058182pt;}
.wsa{word-spacing:-0.053527pt;}
.ws6{word-spacing:-0.053134pt;}
.wsc{word-spacing:-0.049889pt;}
.ws1d{word-spacing:-0.042280pt;}
.ws18{word-spacing:-0.040573pt;}
.ws2{word-spacing:-0.039823pt;}
.ws1f{word-spacing:-0.038633pt;}
.wsd{word-spacing:-0.034932pt;}
.ws5{word-spacing:-0.002283pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.130051pt;}
.wsf{word-spacing:3.840003pt;}
.ws1b{word-spacing:6.703964pt;}
.ws1c{word-spacing:12.625333pt;}
.wsb{word-spacing:12.916374pt;}
.ws23{word-spacing:21.194119pt;}
.ws11{word-spacing:51.317659pt;}
.ws12{word-spacing:70.439639pt;}
.ws14{word-spacing:73.943052pt;}
.ws13{word-spacing:78.769242pt;}
.ws15{word-spacing:80.400759pt;}
.ws21{word-spacing:82.036185pt;}
.ws20{word-spacing:91.501155pt;}
.ws10{word-spacing:91.779305pt;}
.ws1e{word-spacing:122.040173pt;}
.ws22{word-spacing:124.686501pt;}
._1a{margin-left:-6.216704pt;}
._4{margin-left:-4.954739pt;}
._5{margin-left:-3.825653pt;}
._1{margin-left:-2.909093pt;}
._0{margin-left:-1.912832pt;}
._7{margin-left:-0.899951pt;}
._3{width:1.161596pt;}
._1b{width:2.785560pt;}
._2{width:4.304783pt;}
._1c{width:10.206339pt;}
._1d{width:11.237208pt;}
._6{width:17.481042pt;}
._25{width:18.862535pt;}
._19{width:19.996066pt;}
._24{width:20.887290pt;}
._1e{width:26.320495pt;}
._15{width:60.763360pt;}
._c{width:69.915238pt;}
._9{width:80.277676pt;}
._1f{width:90.117713pt;}
._8{width:97.652445pt;}
._14{width:101.148207pt;}
._16{width:102.317118pt;}
._21{width:106.288380pt;}
._22{width:111.122252pt;}
._23{width:112.748436pt;}
._10{width:114.491405pt;}
._20{width:122.464380pt;}
._12{width:126.628820pt;}
._f{width:130.313369pt;}
._26{width:133.726514pt;}
._11{width:135.356734pt;}
._e{width:140.418306pt;}
._17{width:145.880434pt;}
._d{width:153.064433pt;}
._13{width:158.643606pt;}
._a{width:161.184796pt;}
._b{width:162.204393pt;}
._18{width:210.737788pt;}
.fsa{font-size:10.404053pt;}
.fs9{font-size:13.005067pt;}
.fsb{font-size:18.207093pt;}
.fs15{font-size:20.318293pt;}
.fsd{font-size:20.808107pt;}
.fs14{font-size:25.397867pt;}
.fs10{font-size:26.124288pt;}
.fs5{font-size:31.880533pt;}
.fsf{font-size:32.655360pt;}
.fs12{font-size:34.932071pt;}
.fs19{font-size:35.558059pt;}
.fs1b{font-size:38.632533pt;}
.fs6{font-size:39.822720pt;}
.fs8{font-size:40.381867pt;}
.fs17{font-size:40.573333pt;}
.fs1a{font-size:42.279994pt;}
.fs2{font-size:42.507200pt;}
.fs16{font-size:44.101333pt;}
.fsc{font-size:44.217227pt;}
.fs18{font-size:44.447573pt;}
.fs11{font-size:49.888525pt;}
.fs13{font-size:51.510613pt;}
.fs7{font-size:53.133867pt;}
.fse{font-size:53.527467pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs3{font-size:108.622507pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:2.963913pt;}
.y41{bottom:3.809792pt;}
.ya9{bottom:5.187000pt;}
.y32{bottom:6.567559pt;}
.y5c{bottom:6.912262pt;}
.y92{bottom:8.678451pt;}
.y3e{bottom:10.340864pt;}
.y8{bottom:10.466645pt;}
.ybc{bottom:13.321818pt;}
.ya7{bottom:15.187736pt;}
.y8c{bottom:15.662864pt;}
.y23{bottom:17.751916pt;}
.y31{bottom:17.946992pt;}
.y36{bottom:18.504704pt;}
.y49{bottom:25.546016pt;}
.ya2{bottom:26.299629pt;}
.y30{bottom:29.326425pt;}
.yf{bottom:29.804264pt;}
.y95{bottom:32.738376pt;}
.y8d{bottom:32.738394pt;}
.y48{bottom:33.709856pt;}
.yae{bottom:35.466941pt;}
.yc0{bottom:37.521404pt;}
.y2f{bottom:38.494997pt;}
.y40{bottom:39.147110pt;}
.y37{bottom:39.254464pt;}
.y3f{bottom:40.070848pt;}
.y47{bottom:41.873696pt;}
.yad{bottom:46.578834pt;}
.y66{bottom:47.296000pt;}
.y99{bottom:48.958667pt;}
.y11{bottom:49.473333pt;}
.y8e{bottom:49.836510pt;}
.y46{bottom:50.037536pt;}
.y61{bottom:50.562667pt;}
.ya1{bottom:51.008000pt;}
.ycf{bottom:52.301333pt;}
.ybb{bottom:52.897333pt;}
.y22{bottom:53.710925pt;}
.y65{bottom:53.906667pt;}
.y1e{bottom:55.172000pt;}
.y4a{bottom:56.137333pt;}
.y21{bottom:56.962192pt;}
.y7d{bottom:57.004000pt;}
.yd3{bottom:57.321021pt;}
.yac{bottom:57.690728pt;}
.y4e{bottom:57.764000pt;}
.y45{bottom:58.201376pt;}
.y1d{bottom:59.058667pt;}
.y38{bottom:60.004224pt;}
.y20{bottom:60.213459pt;}
.y93{bottom:62.627964pt;}
.y98{bottom:62.790667pt;}
.y62{bottom:63.205333pt;}
.y64{bottom:63.462685pt;}
.y1f{bottom:63.464725pt;}
.ya3{bottom:64.516605pt;}
.y58{bottom:65.162419pt;}
.y44{bottom:66.365216pt;}
.y8f{bottom:66.912040pt;}
.yab{bottom:68.802621pt;}
.yba{bottom:68.837333pt;}
.y71{bottom:69.349333pt;}
.y5d{bottom:70.183140pt;}
.y88{bottom:72.462667pt;}
.y60{bottom:72.613333pt;}
.y2e{bottom:72.698323pt;}
.y35{bottom:74.202667pt;}
.y43{bottom:74.529056pt;}
.y7c{bottom:75.601333pt;}
.y4d{bottom:75.829333pt;}
.y63{bottom:77.829317pt;}
.yd0{bottom:79.945199pt;}
.ya{bottom:80.538667pt;}
.y39{bottom:80.753984pt;}
.y2d{bottom:81.866895pt;}
.y42{bottom:82.692896pt;}
.ydd{bottom:82.780000pt;}
.ye{bottom:83.487743pt;}
.y90{bottom:83.987570pt;}
.y59{bottom:85.492582pt;}
.y70{bottom:87.416000pt;}
.yb9{bottom:87.433333pt;}
.y87{bottom:92.189333pt;}
.y7b{bottom:94.197333pt;}
.y5f{bottom:94.664000pt;}
.y2b{bottom:96.627645pt;}
.ya8{bottom:96.629024pt;}
.yce{bottom:96.773333pt;}
.yde{bottom:96.846932pt;}
.y1c{bottom:96.870667pt;}
.y97{bottom:99.294320pt;}
.ydc{bottom:100.846667pt;}
.y91{bottom:101.063100pt;}
.yf3{bottom:101.229333pt;}
.y3a{bottom:101.537760pt;}
.ya4{bottom:102.773108pt;}
.y96{bottom:105.008840pt;}
.y5a{bottom:106.017013pt;}
.yb8{bottom:107.358667pt;}
.y2c{bottom:108.202155pt;}
.y6f{bottom:109.466667pt;}
.y86{bottom:112.580000pt;}
.y7a{bottom:112.794667pt;}
.y1b{bottom:112.812000pt;}
.ycd{bottom:114.840000pt;}
.y5e{bottom:116.714667pt;}
.y7{bottom:118.084000pt;}
.ydb{bottom:118.912000pt;}
.y2a{bottom:119.386512pt;}
.yfa{bottom:121.286667pt;}
.y3b{bottom:122.287520pt;}
.yf2{bottom:123.280000pt;}
.ybf{bottom:124.096693pt;}
.yea{bottom:125.094667pt;}
.yb7{bottom:125.425333pt;}
.y5b{bottom:127.469752pt;}
.y6e{bottom:127.532000pt;}
.y1a{bottom:128.752000pt;}
.y6{bottom:130.704000pt;}
.y29{bottom:130.765945pt;}
.y79{bottom:131.392000pt;}
.yff{bottom:131.785333pt;}
.y85{bottom:132.305333pt;}
.ycc{bottom:132.905333pt;}
.y28{bottom:140.194619pt;}
.ya5{bottom:140.990084pt;}
.yaa{bottom:140.990211pt;}
.yf1{bottom:141.345333pt;}
.y3c{bottom:143.037280pt;}
.y5{bottom:143.322667pt;}
.yf9{bottom:143.337333pt;}
.y19{bottom:144.692000pt;}
.ye4{bottom:144.945333pt;}
.y10{bottom:146.669843pt;}
.yb6{bottom:147.476000pt;}
.yda{bottom:148.932000pt;}
.y6d{bottom:149.582667pt;}
.yfe{bottom:149.850667pt;}
.y78{bottom:149.988000pt;}
.ycb{bottom:150.970667pt;}
.y56{bottom:151.878667pt;}
.y84{bottom:152.696000pt;}
.y57{bottom:154.388731pt;}
.y27{bottom:155.085420pt;}
.ye9{bottom:157.406667pt;}
.yf0{bottom:159.410667pt;}
.y18{bottom:160.632000pt;}
.yf8{bottom:161.402667pt;}
.yb5{bottom:163.416000pt;}
.y3d{bottom:163.787040pt;}
.yd9{bottom:164.873333pt;}
.y26{bottom:166.529879pt;}
.ye3{bottom:166.996000pt;}
.y6c{bottom:167.648000pt;}
.y77{bottom:168.585333pt;}
.yd{bottom:168.886667pt;}
.yfd{bottom:171.901333pt;}
.y55{bottom:173.929333pt;}
.ye8{bottom:175.472000pt;}
.y25{bottom:175.698451pt;}
.y83{bottom:176.406667pt;}
.y4{bottom:176.957333pt;}
.yd2{bottom:178.144269pt;}
.y8b{bottom:178.408000pt;}
.ya6{bottom:179.207060pt;}
.y17{bottom:179.229333pt;}
.yb4{bottom:179.356000pt;}
.yd8{bottom:180.813333pt;}
.yca{bottom:180.990667pt;}
.yef{bottom:181.461333pt;}
.yf7{bottom:183.453333pt;}
.y76{bottom:186.650667pt;}
.yc{bottom:186.952000pt;}
.y9e{bottom:189.001333pt;}
.ye2{bottom:189.046667pt;}
.y6b{bottom:189.698667pt;}
.y54{bottom:191.994667pt;}
.yfc{bottom:193.952000pt;}
.y3{bottom:195.022667pt;}
.y16{bottom:195.169333pt;}
.yb3{bottom:195.296000pt;}
.yd7{bottom:196.753333pt;}
.ye7{bottom:197.522667pt;}
.y82{bottom:198.457333pt;}
.yee{bottom:199.526667pt;}
.yc6{bottom:199.618667pt;}
.y24{bottom:199.757824pt;}
.yc9{bottom:200.717333pt;}
.yf6{bottom:201.520000pt;}
.yb{bottom:205.017333pt;}
.ye1{bottom:207.112000pt;}
.y9d{bottom:208.726667pt;}
.y6a{bottom:211.749333pt;}
.yb2{bottom:213.893333pt;}
.y53{bottom:214.045333pt;}
.y15{bottom:215.094667pt;}
.ybe{bottom:216.806139pt;}
.yd6{bottom:217.010667pt;}
.y81{bottom:218.848000pt;}
.yc5{bottom:219.345333pt;}
.ye6{bottom:219.573333pt;}
.yf5{bottom:219.585333pt;}
.yc8{bottom:221.108000pt;}
.yed{bottom:221.577333pt;}
.y75{bottom:228.880000pt;}
.ye0{bottom:229.162667pt;}
.yd1{bottom:229.404812pt;}
.y52{bottom:232.110667pt;}
.y14{bottom:233.160000pt;}
.y69{bottom:233.800000pt;}
.yb1{bottom:233.818667pt;}
.yd5{bottom:235.276000pt;}
.y9c{bottom:236.105333pt;}
.y80{bottom:236.913333pt;}
.yec{bottom:239.642667pt;}
.yc4{bottom:239.734667pt;}
.yc7{bottom:240.833333pt;}
.ye5{bottom:241.624000pt;}
.yf4{bottom:241.636000pt;}
.y9b{bottom:246.084000pt;}
.y2{bottom:246.450667pt;}
.y51{bottom:250.176000pt;}
.y74{bottom:250.930667pt;}
.ydf{bottom:251.213333pt;}
.yfb{bottom:251.869333pt;}
.yb0{bottom:251.884000pt;}
.y8a{bottom:254.242667pt;}
.yd4{bottom:255.001333pt;}
.y13{bottom:255.210667pt;}
.y68{bottom:255.850667pt;}
.y7f{bottom:256.638667pt;}
.yc3{bottom:259.461333pt;}
.yeb{bottom:261.693333pt;}
.y1{bottom:265.048000pt;}
.y4c{bottom:265.641333pt;}
.y34{bottom:266.724000pt;}
.yaf{bottom:269.949333pt;}
.y73{bottom:271.321333pt;}
.ya0{bottom:271.350667pt;}
.y50{bottom:272.226667pt;}
.y67{bottom:273.916000pt;}
.y89{bottom:273.969333pt;}
.y7e{bottom:277.029333pt;}
.y12{bottom:277.261333pt;}
.yc2{bottom:281.512000pt;}
.y9a{bottom:286.957333pt;}
.y4b{bottom:287.692000pt;}
.y33{bottom:288.774667pt;}
.y72{bottom:291.046667pt;}
.y9f{bottom:291.076000pt;}
.ybd{bottom:292.825044pt;}
.y4f{bottom:294.277333pt;}
.yc1{bottom:303.562667pt;}
.y9{bottom:336.093333pt;}
.hf{height:11.714964pt;}
.he{height:14.643705pt;}
.h1f{height:18.819819pt;}
.h13{height:20.501187pt;}
.h10{height:20.901743pt;}
.h12{height:23.409120pt;}
.h9{height:23.623475pt;}
.h17{height:24.197622pt;}
.h1a{height:25.312106pt;}
.h29{height:26.974865pt;}
.h20{height:27.754789pt;}
.hb{height:28.855916pt;}
.h2a{height:30.548374pt;}
.h27{height:30.636480pt;}
.h5{height:31.497835pt;}
.h25{height:32.935652pt;}
.h16{height:35.685777pt;}
.h19{height:36.149693pt;}
.h1c{height:37.325073pt;}
.h14{height:37.950974pt;}
.hc{height:39.372195pt;}
.h4{height:43.112763pt;}
.h1d{height:43.636400pt;}
.h3{height:43.987430pt;}
.h2{height:47.246950pt;}
.h24{height:48.572308pt;}
.h11{height:49.655946pt;}
.h2b{height:52.258425pt;}
.h8{height:56.696182pt;}
.h7{height:75.818510pt;}
.h21{height:82.499430pt;}
.h22{height:83.551067pt;}
.h1e{height:114.290400pt;}
.h18{height:145.024346pt;}
.h15{height:171.440640pt;}
.h23{height:200.014080pt;}
.ha{height:233.754389pt;}
.h1b{height:239.524352pt;}
.h28{height:250.314671pt;}
.hd{height:267.774323pt;}
.h26{height:315.295120pt;}
.h1{height:362.666667pt;}
.h6{height:362.810901pt;}
.h0{height:362.834667pt;}
.wa{width:134.693760pt;}
.w8{width:163.272000pt;}
.w4{width:204.049496pt;}
.wb{width:204.076357pt;}
.w6{width:204.078704pt;}
.w5{width:244.915200pt;}
.w9{width:285.734400pt;}
.w3{width:326.538284pt;}
.w7{width:338.762768pt;}
.w2{width:483.754400pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:3.237263pt;}
.x3e{left:4.594892pt;}
.xa{left:11.338667pt;}
.x30{left:12.274789pt;}
.x17{left:14.045472pt;}
.x2e{left:19.467556pt;}
.x40{left:22.426667pt;}
.x2f{left:23.630311pt;}
.x21{left:25.197333pt;}
.x22{left:27.626667pt;}
.x43{left:31.075044pt;}
.x42{left:32.427183pt;}
.x47{left:34.709333pt;}
.x11{left:36.033333pt;}
.xb{left:37.794667pt;}
.x1a{left:39.158811pt;}
.x3f{left:40.681333pt;}
.xc{left:42.546667pt;}
.x31{left:46.510025pt;}
.x7{left:49.233333pt;}
.x18{left:50.434667pt;}
.x45{left:51.460000pt;}
.x12{left:54.288000pt;}
.x6{left:57.330667pt;}
.x3{left:58.241333pt;}
.x1{left:60.385333pt;}
.x13{left:65.068000pt;}
.x24{left:66.453069pt;}
.xd{left:67.702667pt;}
.x46{left:69.772000pt;}
.x1b{left:72.794240pt;}
.xf{left:78.613333pt;}
.x1c{left:80.089311pt;}
.x3a{left:82.329605pt;}
.x14{left:83.378667pt;}
.x16{left:84.793035pt;}
.xe{left:86.517333pt;}
.x27{left:88.648268pt;}
.x34{left:95.915951pt;}
.x33{left:99.446254pt;}
.x9{left:102.692933pt;}
.x25{left:108.332950pt;}
.x3b{left:109.497391pt;}
.x32{left:112.757911pt;}
.x4{left:113.964000pt;}
.x39{left:115.675603pt;}
.x19{left:119.432000pt;}
.x2a{left:126.292000pt;}
.x29{left:127.500000pt;}
.x2c{left:130.336000pt;}
.x2b{left:131.542667pt;}
.x15{left:139.842667pt;}
.x37{left:147.768339pt;}
.x8{left:152.780000pt;}
.x44{left:154.699151pt;}
.x1f{left:157.012413pt;}
.x1e{left:158.824106pt;}
.x26{left:162.738284pt;}
.x1d{left:166.090604pt;}
.x2{left:167.713333pt;}
.x35{left:173.098667pt;}
.x20{left:175.037333pt;}
.x5{left:191.366667pt;}
.x38{left:194.061597pt;}
.x28{left:204.352261pt;}
.x36{left:217.593333pt;}
.x23{left:254.488000pt;}
.x49{left:264.001333pt;}
.x48{left:266.458667pt;}
.x41{left:268.096000pt;}
.x4a{left:283.578667pt;}
.x10{left:286.692334pt;}
.x2d{left:295.309333pt;}
.x3c{left:336.125333pt;}
}




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