
    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_a33cb65dadca2cbb430caad5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_a6f91d821d6190b4c6747182.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_c084d9b42ef543dbbedc3f87.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_8091c8eede282819a0bcd348.woff')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_0ad4524ec814d68de3d8c972.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_60c9e07a9d1f3906f302c4a2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_dd93b0de7ab4f4f73805ce0c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_c6f33a836acb9238412a0229.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_c60afd94f890e27bd7685773.woff')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_f1de886dfa0d106edefd6309.woff')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_5f8aefa4674604dadd9495d3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_f46c3bae8f540b99c643947c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_7e6ad86aee080dd9351e83aa.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_a0d0f401a152facd0fc64ba3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsf{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.328032px;}
.ls17{letter-spacing:-0.320544px;}
.ls12{letter-spacing:-0.260064px;}
.ls19{letter-spacing:-0.241920px;}
.lsd{letter-spacing:-0.241200px;}
.ls1b{letter-spacing:-0.223776px;}
.ls1a{letter-spacing:-0.175392px;}
.ls16{letter-spacing:-0.158976px;}
.ls13{letter-spacing:-0.157248px;}
.ls14{letter-spacing:-0.125856px;}
.ls18{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.079488px;}
.ls11{letter-spacing:-0.028800px;}
.ls1f{letter-spacing:-0.021600px;}
.lse{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000720px;}
.ls1e{letter-spacing:0.011520px;}
.ls7{letter-spacing:0.014400px;}
.ls10{letter-spacing:0.028800px;}
.ls1d{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.186000px;}
.ls8{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.239904px;}
.lsa{letter-spacing:0.240048px;}
.ls9{letter-spacing:0.240480px;}
.ls5{letter-spacing:0.522000px;}
.ls1{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.804000px;}
.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;}
}
.ws2{word-spacing:-19.152000px;}
.ws0{word-spacing:-18.348000px;}
.ws8{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.985600px;}
.ws12{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.480512px;}
.ws11{word-spacing:-16.440768px;}
.wse{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.257600px;}
.wsd{word-spacing:-16.243200px;}
.ws9{word-spacing:-15.768000px;}
.wsf{word-spacing:-14.962752px;}
.ws6{word-spacing:-0.870000px;}
.ws5{word-spacing:-0.198000px;}
.wsa{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.828000px;}
._97{margin-left:-3135.312000px;}
._3f{margin-left:-2785.697856px;}
._40{margin-left:-2784.339984px;}
._98{margin-left:-2782.512000px;}
._8a{margin-left:-2775.959712px;}
._63{margin-left:-2767.002912px;}
._2d{margin-left:-2750.039712px;}
._11{margin-left:-2748.976560px;}
._89{margin-left:-2738.447712px;}
._95{margin-left:-2730.290112px;}
._49{margin-left:-2725.343712px;}
._54{margin-left:-2715.695712px;}
._8d{margin-left:-2706.983712px;}
._45{margin-left:-2705.687712px;}
._a{margin-left:-2695.535136px;}
._5b{margin-left:-2693.591712px;}
._8e{margin-left:-2685.340512px;}
._25{margin-left:-2680.757088px;}
._13{margin-left:-2665.223712px;}
._4{margin-left:-2644.757088px;}
._92{margin-left:-2629.065312px;}
._1a{margin-left:-2625.695712px;}
._51{margin-left:-2595.959712px;}
._90{margin-left:-2567.778912px;}
._9a{margin-left:-2554.700832px;}
._71{margin-left:-2545.991712px;}
._84{margin-left:-2541.671712px;}
._20{margin-left:-2517.551712px;}
._65{margin-left:-2493.575712px;}
._74{margin-left:-2467.871712px;}
._83{margin-left:-2447.711712px;}
._17{margin-left:-2440.857312px;}
._62{margin-left:-2439.719712px;}
._94{margin-left:-2392.272000px;}
._50{margin-left:-2363.471712px;}
._8f{margin-left:-2356.775712px;}
._f{margin-left:-2347.727760px;}
._80{margin-left:-2329.775712px;}
._53{margin-left:-2327.543712px;}
._2a{margin-left:-2295.575712px;}
._18{margin-left:-2249.639712px;}
._81{margin-left:-2209.751712px;}
._69{margin-left:-2135.807712px;}
._26{margin-left:-2119.698528px;}
._44{margin-left:-2089.727712px;}
._7d{margin-left:-2087.999712px;}
._5{margin-left:-2083.698528px;}
._7e{margin-left:-2061.719712px;}
._7f{margin-left:-2033.783712px;}
._88{margin-left:-2023.775712px;}
._7a{margin-left:-1995.767712px;}
._79{margin-left:-1973.951712px;}
._99{margin-left:-1969.682112px;}
._4e{margin-left:-1955.807712px;}
._77{margin-left:-1951.991712px;}
._1e{margin-left:-1921.679712px;}
._7c{margin-left:-1797.983712px;}
._78{margin-left:-1795.967712px;}
._82{margin-left:-1721.807712px;}
._47{margin-left:-1699.631712px;}
._37{margin-left:-1685.807712px;}
._6f{margin-left:-1680.047712px;}
._68{margin-left:-1672.055712px;}
._70{margin-left:-1615.895712px;}
._72{margin-left:-1609.991712px;}
._76{margin-left:-1594.036512px;}
._4f{margin-left:-1577.663712px;}
._6e{margin-left:-1565.927712px;}
._4a{margin-left:-1543.607712px;}
._5d{margin-left:-1521.719712px;}
._91{margin-left:-1500.767712px;}
._30{margin-left:-1487.807712px;}
._96{margin-left:-1469.015712px;}
._1d{margin-left:-1433.807712px;}
._56{margin-left:-1431.719712px;}
._55{margin-left:-1353.815712px;}
._5c{margin-left:-1352.375712px;}
._86{margin-left:-1317.887712px;}
._6a{margin-left:-1265.903712px;}
._c{margin-left:-1244.021040px;}
._4d{margin-left:-1207.583712px;}
._66{margin-left:-1181.879712px;}
._93{margin-left:-1171.511712px;}
._1f{margin-left:-1169.927712px;}
._41{margin-left:-1167.767712px;}
._35{margin-left:-1127.879712px;}
._87{margin-left:-1097.999712px;}
._7{margin-left:-1087.991712px;}
._24{margin-left:-1068.119712px;}
._39{margin-left:-1061.999712px;}
._6c{margin-left:-1057.967712px;}
._59{margin-left:-1044.431712px;}
._52{margin-left:-1034.855712px;}
._12{margin-left:-1015.991712px;}
._61{margin-left:-995.975712px;}
._58{margin-left:-971.711712px;}
._60{margin-left:-963.863712px;}
._85{margin-left:-946.079712px;}
._19{margin-left:-943.991712px;}
._46{margin-left:-935.999712px;}
._14{margin-left:-930.023712px;}
._64{margin-left:-871.847712px;}
._6b{margin-left:-868.031712px;}
._3a{margin-left:-824.039712px;}
._57{margin-left:-788.039712px;}
._5e{margin-left:-774.071712px;}
._43{margin-left:-745.919712px;}
._34{margin-left:-709.991712px;}
._67{margin-left:-593.783712px;}
._6d{margin-left:-542.015712px;}
._48{margin-left:-526.031712px;}
._e{margin-left:-514.007712px;}
._8b{margin-left:-510.191712px;}
._27{margin-left:-489.887712px;}
._73{margin-left:-467.999712px;}
._8{margin-left:-451.986912px;}
._5f{margin-left:-449.999712px;}
._5a{margin-left:-446.039712px;}
._4c{margin-left:-431.927712px;}
._21{margin-left:-415.943712px;}
._42{margin-left:-233.999712px;}
._8c{margin-left:-232.271712px;}
._d{margin-left:-197.999712px;}
._22{margin-left:-196.271712px;}
._6{margin-left:-161.999712px;}
._2c{margin-left:-4.219200px;}
._3d{margin-left:-3.160800px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.056000px;}
._1{width:1.320000px;}
._2{width:2.994000px;}
._28{width:4.666896px;}
._b{width:5.689152px;}
._2f{width:6.882048px;}
._9{width:8.236800px;}
._29{width:9.403200px;}
._33{width:10.518048px;}
._3b{width:11.601504px;}
._10{width:12.607200px;}
._32{width:14.061600px;}
._2b{width:15.694272px;}
._31{width:16.963200px;}
._3e{width:19.108800px;}
._1b{width:20.937600px;}
._2e{width:22.651200px;}
._3c{width:23.803200px;}
._16{width:24.825600px;}
._1c{width:26.532000px;}
._15{width:28.216800px;}
._4b{width:30.924000px;}
._75{width:35.457120px;}
._36{width:37.977264px;}
._7b{width:45.338400px;}
._23{width:839.880000px;}
._38{width:846.000000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(28,29,30);}
.fc3{color:rgb(77,81,86);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y19{bottom:4.680000px;}
.y133{bottom:7.440000px;}
.y13a{bottom:9.540000px;}
.y142{bottom:9.660000px;}
.y149{bottom:9.780000px;}
.y13d{bottom:10.200000px;}
.y139{bottom:10.260000px;}
.y144{bottom:10.320000px;}
.y141{bottom:10.380000px;}
.y14c{bottom:10.440000px;}
.y148{bottom:10.500000px;}
.y135{bottom:10.680000px;}
.y138{bottom:10.740000px;}
.y14b{bottom:10.800000px;}
.y13f{bottom:10.860000px;}
.y13c{bottom:10.920000px;}
.y146{bottom:10.980000px;}
.y11b{bottom:11.040000px;}
.y137{bottom:11.100000px;}
.y11e{bottom:11.220000px;}
.y124{bottom:11.340000px;}
.y11c{bottom:11.400000px;}
.y129{bottom:11.460000px;}
.y120{bottom:12.000000px;}
.y126{bottom:12.120000px;}
.y122{bottom:12.420000px;}
.y130{bottom:20.040000px;}
.y132{bottom:26.520000px;}
.y131{bottom:29.400000px;}
.y134{bottom:29.760000px;}
.y108{bottom:111.240000px;}
.yf9{bottom:112.320000px;}
.ye0{bottom:115.200000px;}
.ybc{bottom:116.280000px;}
.y94{bottom:117.360000px;}
.y77{bottom:122.040000px;}
.y111{bottom:123.120000px;}
.yea{bottom:129.240000px;}
.ya8{bottom:141.120000px;}
.y35{bottom:145.440000px;}
.ydf{bottom:146.160000px;}
.yd0{bottom:147.240000px;}
.y93{bottom:148.320000px;}
.yf8{bottom:149.400000px;}
.y158{bottom:153.000000px;}
.y76{bottom:153.360000px;}
.y110{bottom:154.440000px;}
.y57{bottom:158.760000px;}
.ye9{bottom:160.200000px;}
.ya7{bottom:172.440000px;}
.yde{bottom:177.120000px;}
.ycf{bottom:178.200000px;}
.y92{bottom:179.280000px;}
.yf7{bottom:180.360000px;}
.y34{bottom:182.160000px;}
.y75{bottom:184.320000px;}
.ye8{bottom:191.160000px;}
.y56{bottom:195.840000px;}
.y153{bottom:197.280000px;}
.ya6{bottom:203.400000px;}
.ydd{bottom:208.440000px;}
.yce{bottom:209.160000px;}
.y91{bottom:210.240000px;}
.y118{bottom:210.600000px;}
.yf6{bottom:211.320000px;}
.y74{bottom:215.280000px;}
.y10f{bottom:222.480000px;}
.y33{bottom:226.800000px;}
.ye7{bottom:228.240000px;}
.ya5{bottom:234.360000px;}
.ydc{bottom:239.400000px;}
.ycd{bottom:240.480000px;}
.y90{bottom:241.560000px;}
.yf5{bottom:242.640000px;}
.y73{bottom:246.240000px;}
.y107{bottom:247.320000px;}
.y10e{bottom:253.440000px;}
.y55{bottom:257.760000px;}
.y17{bottom:264.450000px;}
.ya4{bottom:265.320000px;}
.y32{bottom:265.680000px;}
.ydb{bottom:270.360000px;}
.ycc{bottom:271.440000px;}
.y8f{bottom:272.520000px;}
.y72{bottom:277.560000px;}
.y106{bottom:278.280000px;}
.yf4{bottom:279.720000px;}
.y16{bottom:284.325000px;}
.y10d{bottom:284.400000px;}
.y54{bottom:288.720000px;}
.ya3{bottom:296.280000px;}
.yda{bottom:301.320000px;}
.ycb{bottom:302.400000px;}
.y31{bottom:302.760000px;}
.y8e{bottom:303.480000px;}
.y15{bottom:304.230000px;}
.y71{bottom:308.520000px;}
.y105{bottom:309.600000px;}
.yf3{bottom:316.800000px;}
.y10c{bottom:321.480000px;}
.y14{bottom:324.105000px;}
.y53{bottom:325.800000px;}
.ya2{bottom:327.600000px;}
.yd9{bottom:332.280000px;}
.yca{bottom:333.360000px;}
.y8d{bottom:334.440000px;}
.y70{bottom:339.480000px;}
.y30{bottom:339.840000px;}
.y13{bottom:343.995000px;}
.ybb{bottom:345.600000px;}
.y104{bottom:346.680000px;}
.yf2{bottom:347.760000px;}
.y10b{bottom:352.440000px;}
.ya1{bottom:358.560000px;}
.y52{bottom:362.880000px;}
.yd8{bottom:363.600000px;}
.y12{bottom:364.245000px;}
.yc9{bottom:364.680000px;}
.y8c{bottom:365.760000px;}
.y6f{bottom:370.440000px;}
.y2f{bottom:376.920000px;}
.y103{bottom:377.640000px;}
.yf1{bottom:378.720000px;}
.yba{bottom:382.680000px;}
.y10a{bottom:383.760000px;}
.y11{bottom:384.120000px;}
.ya0{bottom:389.520000px;}
.y51{bottom:393.840000px;}
.yd7{bottom:394.560000px;}
.yc8{bottom:395.640000px;}
.y6e{bottom:401.760000px;}
.y8b{bottom:402.480000px;}
.y10{bottom:403.995000px;}
.y102{bottom:408.600000px;}
.yf0{bottom:409.680000px;}
.yb9{bottom:413.640000px;}
.y2e{bottom:414.000000px;}
.y15b{bottom:415.080000px;}
.y9f{bottom:420.480000px;}
.yf{bottom:423.870000px;}
.y50{bottom:425.160000px;}
.yd6{bottom:425.520000px;}
.yc7{bottom:426.600000px;}
.y6d{bottom:432.720000px;}
.y8a{bottom:439.560000px;}
.yef{bottom:440.640000px;}
.ye{bottom:443.775000px;}
.yb8{bottom:444.600000px;}
.y101{bottom:445.680000px;}
.y2d{bottom:451.080000px;}
.y9e{bottom:451.800000px;}
.y4f{bottom:456.120000px;}
.yd5{bottom:456.480000px;}
.yc6{bottom:457.560000px;}
.yd{bottom:463.650000px;}
.y6c{bottom:463.680000px;}
.y15a{bottom:464.400000px;}
.y117{bottom:470.880000px;}
.yee{bottom:473.400000px;}
.yb7{bottom:475.560000px;}
.y89{bottom:476.640000px;}
.y2c{bottom:482.040000px;}
.y9d{bottom:482.760000px;}
.yc{bottom:483.525000px;}
.y4e{bottom:487.080000px;}
.yd4{bottom:487.800000px;}
.yc5{bottom:488.880000px;}
.y6b{bottom:494.640000px;}
.yb{bottom:503.400000px;}
.yed{bottom:506.520000px;}
.yb6{bottom:506.880000px;}
.y88{bottom:507.960000px;}
.y2b{bottom:513.360000px;}
.y9c{bottom:513.720000px;}
.y4d{bottom:518.040000px;}
.yd3{bottom:518.760000px;}
.yc4{bottom:519.840000px;}
.ya{bottom:523.275000px;}
.y6a{bottom:525.960000px;}
.yb5{bottom:537.840000px;}
.y87{bottom:538.920000px;}
.y9b{bottom:544.680000px;}
.yd2{bottom:549.720000px;}
.y2a{bottom:550.080000px;}
.yc3{bottom:550.800000px;}
.y4c{bottom:555.120000px;}
.y69{bottom:556.920000px;}
.yec{bottom:568.800000px;}
.y116{bottom:569.880000px;}
.yb4{bottom:574.920000px;}
.y86{bottom:576.000000px;}
.y157{bottom:579.600000px;}
.yd1{bottom:580.680000px;}
.y9a{bottom:581.760000px;}
.y9{bottom:587.070000px;}
.y29{bottom:587.160000px;}
.ye6{bottom:587.880000px;}
.y152{bottom:588.240000px;}
.y4b{bottom:592.200000px;}
.y68{bottom:594.000000px;}
.yeb{bottom:605.880000px;}
.y100{bottom:606.960000px;}
.yb3{bottom:612.000000px;}
.y156{bottom:612.360000px;}
.y85{bottom:613.080000px;}
.ye5{bottom:618.840000px;}
.y8{bottom:618.945000px;}
.y151{bottom:621.000000px;}
.y4a{bottom:623.160000px;}
.y28{bottom:630.360000px;}
.y67{bottom:631.080000px;}
.yff{bottom:637.920000px;}
.yb2{bottom:642.960000px;}
.y84{bottom:644.040000px;}
.ye4{bottom:649.800000px;}
.y7{bottom:650.820000px;}
.y150{bottom:654.120000px;}
.y49{bottom:654.480000px;}
.y27{bottom:661.320000px;}
.y155{bottom:661.680000px;}
.y66{bottom:662.040000px;}
.y115{bottom:668.880000px;}
.yb1{bottom:673.920000px;}
.y83{bottom:675.000000px;}
.yc2{bottom:681.120000px;}
.y6{bottom:682.695000px;}
.y48{bottom:685.440000px;}
.y65{bottom:693.000000px;}
.y26{bottom:698.400000px;}
.y14f{bottom:703.080000px;}
.yb0{bottom:704.880000px;}
.y82{bottom:705.960000px;}
.ye3{bottom:712.080000px;}
.y5{bottom:714.600000px;}
.y47{bottom:716.400000px;}
.yc1{bottom:718.200000px;}
.y64{bottom:723.960000px;}
.y25{bottom:735.480000px;}
.yaf{bottom:736.200000px;}
.y81{bottom:737.280000px;}
.y14d{bottom:738.720000px;}
.y99{bottom:743.040000px;}
.y4{bottom:746.475000px;}
.y46{bottom:747.360000px;}
.y109{bottom:749.160000px;}
.y63{bottom:755.280000px;}
.y40{bottom:765.720000px;}
.y3{bottom:766.350000px;}
.y24{bottom:766.440000px;}
.yae{bottom:767.160000px;}
.y80{bottom:768.240000px;}
.ye2{bottom:774.000000px;}
.y45{bottom:778.680000px;}
.y98{bottom:780.120000px;}
.y14a{bottom:783.000000px;}
.y62{bottom:786.240000px;}
.yc0{bottom:792.000000px;}
.yad{bottom:798.120000px;}
.y114{bottom:799.200000px;}
.y23{bottom:803.520000px;}
.y7f{bottom:805.320000px;}
.y147{bottom:808.500000px;}
.y44{bottom:809.640000px;}
.y3f{bottom:810.360000px;}
.y97{bottom:811.080000px;}
.y61{bottom:817.200000px;}
.ybf{bottom:823.320000px;}
.y159{bottom:828.000000px;}
.yac{bottom:829.080000px;}
.y2{bottom:830.130000px;}
.y145{bottom:832.500000px;}
.yfe{bottom:836.280000px;}
.y22{bottom:840.600000px;}
.y7e{bottom:842.400000px;}
.y3e{bottom:847.800000px;}
.y60{bottom:848.160000px;}
.ybe{bottom:854.280000px;}
.y12a{bottom:857.160000px;}
.y143{bottom:858.000000px;}
.yab{bottom:860.400000px;}
.yfd{bottom:867.240000px;}
.y21{bottom:871.560000px;}
.y96{bottom:873.360000px;}
.y128{bottom:874.500000px;}
.y43{bottom:877.680000px;}
.y3d{bottom:878.760000px;}
.y5f{bottom:879.480000px;}
.y140{bottom:883.500000px;}
.ybd{bottom:885.240000px;}
.yaa{bottom:891.360000px;}
.y1{bottom:893.880000px;}
.y113{bottom:898.200000px;}
.y20{bottom:902.880000px;}
.y127{bottom:903.000000px;}
.yfc{bottom:904.320000px;}
.y13e{bottom:907.500000px;}
.y5e{bottom:910.440000px;}
.y42{bottom:914.760000px;}
.y3c{bottom:915.840000px;}
.y7d{bottom:916.200000px;}
.ya9{bottom:922.320000px;}
.y125{bottom:930.000000px;}
.y13b{bottom:933.000000px;}
.yfb{bottom:935.280000px;}
.y1f{bottom:939.600000px;}
.y5d{bottom:941.400000px;}
.y41{bottom:945.720000px;}
.y95{bottom:947.520000px;}
.y7c{bottom:953.280000px;}
.y3b{bottom:958.320000px;}
.y123{bottom:958.500000px;}
.y112{bottom:966.600000px;}
.y5c{bottom:972.360000px;}
.y1e{bottom:976.680000px;}
.y136{bottom:982.500000px;}
.y7b{bottom:984.600000px;}
.y121{bottom:985.500000px;}
.y3a{bottom:997.560000px;}
.y5b{bottom:1003.320000px;}
.ye1{bottom:1009.440000px;}
.y12f{bottom:1011.000000px;}
.y1d{bottom:1013.760000px;}
.y11f{bottom:1014.000000px;}
.y7a{bottom:1015.560000px;}
.y39{bottom:1034.640000px;}
.yfa{bottom:1040.400000px;}
.y11d{bottom:1042.500000px;}
.y79{bottom:1046.520000px;}
.y1c{bottom:1050.840000px;}
.y5a{bottom:1065.600000px;}
.y12e{bottom:1067.400000px;}
.y38{bottom:1071.720000px;}
.y58{bottom:1072.080000px;}
.y154{bottom:1073.520000px;}
.y11a{bottom:1074.000000px;}
.y78{bottom:1077.480000px;}
.y1b{bottom:1092.600000px;}
.y12d{bottom:1095.480000px;}
.y59{bottom:1102.680000px;}
.y14e{bottom:1106.280000px;}
.y37{bottom:1108.800000px;}
.y119{bottom:1113.120000px;}
.y12c{bottom:1117.440000px;}
.y1a{bottom:1134.000000px;}
.y12b{bottom:1139.400000px;}
.y36{bottom:1139.760000px;}
.y18{bottom:1245.600000px;}
.h4{height:22.500000px;}
.h12{height:25.500000px;}
.h11{height:27.000000px;}
.hb{height:28.500000px;}
.hd{height:30.000000px;}
.h8{height:32.113125px;}
.h10{height:41.993438px;}
.he{height:45.000000px;}
.hf{height:45.992813px;}
.hc{height:47.988281px;}
.h3{height:49.886719px;}
.ha{height:49.992188px;}
.h6{height:50.027344px;}
.h7{height:56.593125px;}
.h1{height:59.167969px;}
.h9{height:61.910156px;}
.h5{height:66.989531px;}
.h2{height:1262.880000px;}
.h0{height:1263.000000px;}
.w4{width:10.500000px;}
.w5{width:19.500000px;}
.wa{width:126.000000px;}
.wb{width:127.500000px;}
.w8{width:139.500000px;}
.w7{width:141.000000px;}
.w6{width:178.500000px;}
.w9{width:300.000000px;}
.w3{width:892.500000px;}
.w2{width:892.800000px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.219964px;}
.xc{left:9.420036px;}
.x12{left:11.619480px;}
.x1b{left:14.737320px;}
.x20{left:16.800120px;}
.x21{left:18.705240px;}
.x23{left:21.452760px;}
.x1d{left:22.987440px;}
.x16{left:25.284600px;}
.x1c{left:27.593040px;}
.x1e{left:29.655480px;}
.x18{left:30.858840px;}
.x15{left:39.706200px;}
.x13{left:44.318640px;}
.x22{left:45.659880px;}
.x1a{left:53.910000px;}
.x1f{left:55.980360px;}
.x19{left:64.072440px;}
.xe{left:73.440000px;}
.x3{left:127.537500px;}
.xf{left:135.000000px;}
.x6{left:146.122920px;}
.x10{left:149.414796px;}
.x1{left:174.450000px;}
.x8{left:181.439928px;}
.x2{left:278.611500px;}
.x7{left:286.390512px;}
.xb{left:304.500000px;}
.x11{left:433.500000px;}
.x9{left:436.500000px;}
.x5{left:441.000000px;}
.xd{left:444.000000px;}
.x14{left:558.000000px;}
.x24{left:658.440000px;}
.x25{left:667.440000px;}
.x17{left:684.000000px;}
.x4{left:765.239760px;}
.x26{left:853.200000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsf{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.291584pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls12{letter-spacing:-0.231168pt;}
.ls19{letter-spacing:-0.215040pt;}
.lsd{letter-spacing:-0.214400pt;}
.ls1b{letter-spacing:-0.198912pt;}
.ls1a{letter-spacing:-0.155904pt;}
.ls16{letter-spacing:-0.141312pt;}
.ls13{letter-spacing:-0.139776pt;}
.ls14{letter-spacing:-0.111872pt;}
.ls18{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.070656pt;}
.ls11{letter-spacing:-0.025600pt;}
.ls1f{letter-spacing:-0.019200pt;}
.lse{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000640pt;}
.ls1e{letter-spacing:0.010240pt;}
.ls7{letter-spacing:0.012800pt;}
.ls10{letter-spacing:0.025600pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.165333pt;}
.ls8{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.213248pt;}
.lsa{letter-spacing:0.213376pt;}
.ls9{letter-spacing:0.213760pt;}
.ls5{letter-spacing:0.464000pt;}
.ls1{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.714667pt;}
.ws2{word-spacing:-17.024000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws8{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.987200pt;}
.ws12{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.649344pt;}
.ws11{word-spacing:-14.614016pt;}
.wse{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.451200pt;}
.wsd{word-spacing:-14.438400pt;}
.ws9{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.300224pt;}
.ws6{word-spacing:-0.773333pt;}
.ws5{word-spacing:-0.176000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.736000pt;}
._97{margin-left:-2786.944000pt;}
._3f{margin-left:-2476.175872pt;}
._40{margin-left:-2474.968875pt;}
._98{margin-left:-2473.344000pt;}
._8a{margin-left:-2467.519744pt;}
._63{margin-left:-2459.558144pt;}
._2d{margin-left:-2444.479744pt;}
._11{margin-left:-2443.534720pt;}
._89{margin-left:-2434.175744pt;}
._95{margin-left:-2426.924544pt;}
._49{margin-left:-2422.527744pt;}
._54{margin-left:-2413.951744pt;}
._8d{margin-left:-2406.207744pt;}
._45{margin-left:-2405.055744pt;}
._a{margin-left:-2396.031232pt;}
._5b{margin-left:-2394.303744pt;}
._8e{margin-left:-2386.969344pt;}
._25{margin-left:-2382.895189pt;}
._13{margin-left:-2369.087744pt;}
._4{margin-left:-2350.895189pt;}
._92{margin-left:-2336.946944pt;}
._1a{margin-left:-2333.951744pt;}
._51{margin-left:-2307.519744pt;}
._90{margin-left:-2282.470144pt;}
._9a{margin-left:-2270.845184pt;}
._71{margin-left:-2263.103744pt;}
._84{margin-left:-2259.263744pt;}
._20{margin-left:-2237.823744pt;}
._65{margin-left:-2216.511744pt;}
._74{margin-left:-2193.663744pt;}
._83{margin-left:-2175.743744pt;}
._17{margin-left:-2169.650944pt;}
._62{margin-left:-2168.639744pt;}
._94{margin-left:-2126.464000pt;}
._50{margin-left:-2100.863744pt;}
._8f{margin-left:-2094.911744pt;}
._f{margin-left:-2086.869120pt;}
._80{margin-left:-2070.911744pt;}
._53{margin-left:-2068.927744pt;}
._2a{margin-left:-2040.511744pt;}
._18{margin-left:-1999.679744pt;}
._81{margin-left:-1964.223744pt;}
._69{margin-left:-1898.495744pt;}
._26{margin-left:-1884.176469pt;}
._44{margin-left:-1857.535744pt;}
._7d{margin-left:-1855.999744pt;}
._5{margin-left:-1852.176469pt;}
._7e{margin-left:-1832.639744pt;}
._7f{margin-left:-1807.807744pt;}
._88{margin-left:-1798.911744pt;}
._7a{margin-left:-1774.015744pt;}
._79{margin-left:-1754.623744pt;}
._99{margin-left:-1750.828544pt;}
._4e{margin-left:-1738.495744pt;}
._77{margin-left:-1735.103744pt;}
._1e{margin-left:-1708.159744pt;}
._7c{margin-left:-1598.207744pt;}
._78{margin-left:-1596.415744pt;}
._82{margin-left:-1530.495744pt;}
._47{margin-left:-1510.783744pt;}
._37{margin-left:-1498.495744pt;}
._6f{margin-left:-1493.375744pt;}
._68{margin-left:-1486.271744pt;}
._70{margin-left:-1436.351744pt;}
._72{margin-left:-1431.103744pt;}
._76{margin-left:-1416.921344pt;}
._4f{margin-left:-1402.367744pt;}
._6e{margin-left:-1391.935744pt;}
._4a{margin-left:-1372.095744pt;}
._5d{margin-left:-1352.639744pt;}
._91{margin-left:-1334.015744pt;}
._30{margin-left:-1322.495744pt;}
._96{margin-left:-1305.791744pt;}
._1d{margin-left:-1274.495744pt;}
._56{margin-left:-1272.639744pt;}
._55{margin-left:-1203.391744pt;}
._5c{margin-left:-1202.111744pt;}
._86{margin-left:-1171.455744pt;}
._6a{margin-left:-1125.247744pt;}
._c{margin-left:-1105.796480pt;}
._4d{margin-left:-1073.407744pt;}
._66{margin-left:-1050.559744pt;}
._93{margin-left:-1041.343744pt;}
._1f{margin-left:-1039.935744pt;}
._41{margin-left:-1038.015744pt;}
._35{margin-left:-1002.559744pt;}
._87{margin-left:-975.999744pt;}
._7{margin-left:-967.103744pt;}
._24{margin-left:-949.439744pt;}
._39{margin-left:-943.999744pt;}
._6c{margin-left:-940.415744pt;}
._59{margin-left:-928.383744pt;}
._52{margin-left:-919.871744pt;}
._12{margin-left:-903.103744pt;}
._61{margin-left:-885.311744pt;}
._58{margin-left:-863.743744pt;}
._60{margin-left:-856.767744pt;}
._85{margin-left:-840.959744pt;}
._19{margin-left:-839.103744pt;}
._46{margin-left:-831.999744pt;}
._14{margin-left:-826.687744pt;}
._64{margin-left:-774.975744pt;}
._6b{margin-left:-771.583744pt;}
._3a{margin-left:-732.479744pt;}
._57{margin-left:-700.479744pt;}
._5e{margin-left:-688.063744pt;}
._43{margin-left:-663.039744pt;}
._34{margin-left:-631.103744pt;}
._67{margin-left:-527.807744pt;}
._6d{margin-left:-481.791744pt;}
._48{margin-left:-467.583744pt;}
._e{margin-left:-456.895744pt;}
._8b{margin-left:-453.503744pt;}
._27{margin-left:-435.455744pt;}
._73{margin-left:-415.999744pt;}
._8{margin-left:-401.766144pt;}
._5f{margin-left:-399.999744pt;}
._5a{margin-left:-396.479744pt;}
._4c{margin-left:-383.935744pt;}
._21{margin-left:-369.727744pt;}
._42{margin-left:-207.999744pt;}
._8c{margin-left:-206.463744pt;}
._d{margin-left:-175.999744pt;}
._22{margin-left:-174.463744pt;}
._6{margin-left:-143.999744pt;}
._2c{margin-left:-3.750400pt;}
._3d{margin-left:-2.809600pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.173333pt;}
._2{width:2.661333pt;}
._28{width:4.148352pt;}
._b{width:5.057024pt;}
._2f{width:6.117376pt;}
._9{width:7.321600pt;}
._29{width:8.358400pt;}
._33{width:9.349376pt;}
._3b{width:10.312448pt;}
._10{width:11.206400pt;}
._32{width:12.499200pt;}
._2b{width:13.950464pt;}
._31{width:15.078400pt;}
._3e{width:16.985600pt;}
._1b{width:18.611200pt;}
._2e{width:20.134400pt;}
._3c{width:21.158400pt;}
._16{width:22.067200pt;}
._1c{width:23.584000pt;}
._15{width:25.081600pt;}
._4b{width:27.488000pt;}
._75{width:31.517440pt;}
._36{width:33.757568pt;}
._7b{width:40.300800pt;}
._23{width:746.560000pt;}
._38{width:752.000000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:4.160000pt;}
.y133{bottom:6.613333pt;}
.y13a{bottom:8.480000pt;}
.y142{bottom:8.586667pt;}
.y149{bottom:8.693333pt;}
.y13d{bottom:9.066667pt;}
.y139{bottom:9.120000pt;}
.y144{bottom:9.173333pt;}
.y141{bottom:9.226667pt;}
.y14c{bottom:9.280000pt;}
.y148{bottom:9.333333pt;}
.y135{bottom:9.493333pt;}
.y138{bottom:9.546667pt;}
.y14b{bottom:9.600000pt;}
.y13f{bottom:9.653333pt;}
.y13c{bottom:9.706667pt;}
.y146{bottom:9.760000pt;}
.y11b{bottom:9.813333pt;}
.y137{bottom:9.866667pt;}
.y11e{bottom:9.973333pt;}
.y124{bottom:10.080000pt;}
.y11c{bottom:10.133333pt;}
.y129{bottom:10.186667pt;}
.y120{bottom:10.666667pt;}
.y126{bottom:10.773333pt;}
.y122{bottom:11.040000pt;}
.y130{bottom:17.813333pt;}
.y132{bottom:23.573333pt;}
.y131{bottom:26.133333pt;}
.y134{bottom:26.453333pt;}
.y108{bottom:98.880000pt;}
.yf9{bottom:99.840000pt;}
.ye0{bottom:102.400000pt;}
.ybc{bottom:103.360000pt;}
.y94{bottom:104.320000pt;}
.y77{bottom:108.480000pt;}
.y111{bottom:109.440000pt;}
.yea{bottom:114.880000pt;}
.ya8{bottom:125.440000pt;}
.y35{bottom:129.280000pt;}
.ydf{bottom:129.920000pt;}
.yd0{bottom:130.880000pt;}
.y93{bottom:131.840000pt;}
.yf8{bottom:132.800000pt;}
.y158{bottom:136.000000pt;}
.y76{bottom:136.320000pt;}
.y110{bottom:137.280000pt;}
.y57{bottom:141.120000pt;}
.ye9{bottom:142.400000pt;}
.ya7{bottom:153.280000pt;}
.yde{bottom:157.440000pt;}
.ycf{bottom:158.400000pt;}
.y92{bottom:159.360000pt;}
.yf7{bottom:160.320000pt;}
.y34{bottom:161.920000pt;}
.y75{bottom:163.840000pt;}
.ye8{bottom:169.920000pt;}
.y56{bottom:174.080000pt;}
.y153{bottom:175.360000pt;}
.ya6{bottom:180.800000pt;}
.ydd{bottom:185.280000pt;}
.yce{bottom:185.920000pt;}
.y91{bottom:186.880000pt;}
.y118{bottom:187.200000pt;}
.yf6{bottom:187.840000pt;}
.y74{bottom:191.360000pt;}
.y10f{bottom:197.760000pt;}
.y33{bottom:201.600000pt;}
.ye7{bottom:202.880000pt;}
.ya5{bottom:208.320000pt;}
.ydc{bottom:212.800000pt;}
.ycd{bottom:213.760000pt;}
.y90{bottom:214.720000pt;}
.yf5{bottom:215.680000pt;}
.y73{bottom:218.880000pt;}
.y107{bottom:219.840000pt;}
.y10e{bottom:225.280000pt;}
.y55{bottom:229.120000pt;}
.y17{bottom:235.066667pt;}
.ya4{bottom:235.840000pt;}
.y32{bottom:236.160000pt;}
.ydb{bottom:240.320000pt;}
.ycc{bottom:241.280000pt;}
.y8f{bottom:242.240000pt;}
.y72{bottom:246.720000pt;}
.y106{bottom:247.360000pt;}
.yf4{bottom:248.640000pt;}
.y16{bottom:252.733333pt;}
.y10d{bottom:252.800000pt;}
.y54{bottom:256.640000pt;}
.ya3{bottom:263.360000pt;}
.yda{bottom:267.840000pt;}
.ycb{bottom:268.800000pt;}
.y31{bottom:269.120000pt;}
.y8e{bottom:269.760000pt;}
.y15{bottom:270.426667pt;}
.y71{bottom:274.240000pt;}
.y105{bottom:275.200000pt;}
.yf3{bottom:281.600000pt;}
.y10c{bottom:285.760000pt;}
.y14{bottom:288.093333pt;}
.y53{bottom:289.600000pt;}
.ya2{bottom:291.200000pt;}
.yd9{bottom:295.360000pt;}
.yca{bottom:296.320000pt;}
.y8d{bottom:297.280000pt;}
.y70{bottom:301.760000pt;}
.y30{bottom:302.080000pt;}
.y13{bottom:305.773333pt;}
.ybb{bottom:307.200000pt;}
.y104{bottom:308.160000pt;}
.yf2{bottom:309.120000pt;}
.y10b{bottom:313.280000pt;}
.ya1{bottom:318.720000pt;}
.y52{bottom:322.560000pt;}
.yd8{bottom:323.200000pt;}
.y12{bottom:323.773333pt;}
.yc9{bottom:324.160000pt;}
.y8c{bottom:325.120000pt;}
.y6f{bottom:329.280000pt;}
.y2f{bottom:335.040000pt;}
.y103{bottom:335.680000pt;}
.yf1{bottom:336.640000pt;}
.yba{bottom:340.160000pt;}
.y10a{bottom:341.120000pt;}
.y11{bottom:341.440000pt;}
.ya0{bottom:346.240000pt;}
.y51{bottom:350.080000pt;}
.yd7{bottom:350.720000pt;}
.yc8{bottom:351.680000pt;}
.y6e{bottom:357.120000pt;}
.y8b{bottom:357.760000pt;}
.y10{bottom:359.106667pt;}
.y102{bottom:363.200000pt;}
.yf0{bottom:364.160000pt;}
.yb9{bottom:367.680000pt;}
.y2e{bottom:368.000000pt;}
.y15b{bottom:368.960000pt;}
.y9f{bottom:373.760000pt;}
.yf{bottom:376.773333pt;}
.y50{bottom:377.920000pt;}
.yd6{bottom:378.240000pt;}
.yc7{bottom:379.200000pt;}
.y6d{bottom:384.640000pt;}
.y8a{bottom:390.720000pt;}
.yef{bottom:391.680000pt;}
.ye{bottom:394.466667pt;}
.yb8{bottom:395.200000pt;}
.y101{bottom:396.160000pt;}
.y2d{bottom:400.960000pt;}
.y9e{bottom:401.600000pt;}
.y4f{bottom:405.440000pt;}
.yd5{bottom:405.760000pt;}
.yc6{bottom:406.720000pt;}
.yd{bottom:412.133333pt;}
.y6c{bottom:412.160000pt;}
.y15a{bottom:412.800000pt;}
.y117{bottom:418.560000pt;}
.yee{bottom:420.800000pt;}
.yb7{bottom:422.720000pt;}
.y89{bottom:423.680000pt;}
.y2c{bottom:428.480000pt;}
.y9d{bottom:429.120000pt;}
.yc{bottom:429.800000pt;}
.y4e{bottom:432.960000pt;}
.yd4{bottom:433.600000pt;}
.yc5{bottom:434.560000pt;}
.y6b{bottom:439.680000pt;}
.yb{bottom:447.466667pt;}
.yed{bottom:450.240000pt;}
.yb6{bottom:450.560000pt;}
.y88{bottom:451.520000pt;}
.y2b{bottom:456.320000pt;}
.y9c{bottom:456.640000pt;}
.y4d{bottom:460.480000pt;}
.yd3{bottom:461.120000pt;}
.yc4{bottom:462.080000pt;}
.ya{bottom:465.133333pt;}
.y6a{bottom:467.520000pt;}
.yb5{bottom:478.080000pt;}
.y87{bottom:479.040000pt;}
.y9b{bottom:484.160000pt;}
.yd2{bottom:488.640000pt;}
.y2a{bottom:488.960000pt;}
.yc3{bottom:489.600000pt;}
.y4c{bottom:493.440000pt;}
.y69{bottom:495.040000pt;}
.yec{bottom:505.600000pt;}
.y116{bottom:506.560000pt;}
.yb4{bottom:511.040000pt;}
.y86{bottom:512.000000pt;}
.y157{bottom:515.200000pt;}
.yd1{bottom:516.160000pt;}
.y9a{bottom:517.120000pt;}
.y9{bottom:521.840000pt;}
.y29{bottom:521.920000pt;}
.ye6{bottom:522.560000pt;}
.y152{bottom:522.880000pt;}
.y4b{bottom:526.400000pt;}
.y68{bottom:528.000000pt;}
.yeb{bottom:538.560000pt;}
.y100{bottom:539.520000pt;}
.yb3{bottom:544.000000pt;}
.y156{bottom:544.320000pt;}
.y85{bottom:544.960000pt;}
.ye5{bottom:550.080000pt;}
.y8{bottom:550.173333pt;}
.y151{bottom:552.000000pt;}
.y4a{bottom:553.920000pt;}
.y28{bottom:560.320000pt;}
.y67{bottom:560.960000pt;}
.yff{bottom:567.040000pt;}
.yb2{bottom:571.520000pt;}
.y84{bottom:572.480000pt;}
.ye4{bottom:577.600000pt;}
.y7{bottom:578.506667pt;}
.y150{bottom:581.440000pt;}
.y49{bottom:581.760000pt;}
.y27{bottom:587.840000pt;}
.y155{bottom:588.160000pt;}
.y66{bottom:588.480000pt;}
.y115{bottom:594.560000pt;}
.yb1{bottom:599.040000pt;}
.y83{bottom:600.000000pt;}
.yc2{bottom:605.440000pt;}
.y6{bottom:606.840000pt;}
.y48{bottom:609.280000pt;}
.y65{bottom:616.000000pt;}
.y26{bottom:620.800000pt;}
.y14f{bottom:624.960000pt;}
.yb0{bottom:626.560000pt;}
.y82{bottom:627.520000pt;}
.ye3{bottom:632.960000pt;}
.y5{bottom:635.200000pt;}
.y47{bottom:636.800000pt;}
.yc1{bottom:638.400000pt;}
.y64{bottom:643.520000pt;}
.y25{bottom:653.760000pt;}
.yaf{bottom:654.400000pt;}
.y81{bottom:655.360000pt;}
.y14d{bottom:656.640000pt;}
.y99{bottom:660.480000pt;}
.y4{bottom:663.533333pt;}
.y46{bottom:664.320000pt;}
.y109{bottom:665.920000pt;}
.y63{bottom:671.360000pt;}
.y40{bottom:680.640000pt;}
.y3{bottom:681.200000pt;}
.y24{bottom:681.280000pt;}
.yae{bottom:681.920000pt;}
.y80{bottom:682.880000pt;}
.ye2{bottom:688.000000pt;}
.y45{bottom:692.160000pt;}
.y98{bottom:693.440000pt;}
.y14a{bottom:696.000000pt;}
.y62{bottom:698.880000pt;}
.yc0{bottom:704.000000pt;}
.yad{bottom:709.440000pt;}
.y114{bottom:710.400000pt;}
.y23{bottom:714.240000pt;}
.y7f{bottom:715.840000pt;}
.y147{bottom:718.666667pt;}
.y44{bottom:719.680000pt;}
.y3f{bottom:720.320000pt;}
.y97{bottom:720.960000pt;}
.y61{bottom:726.400000pt;}
.ybf{bottom:731.840000pt;}
.y159{bottom:736.000000pt;}
.yac{bottom:736.960000pt;}
.y2{bottom:737.893333pt;}
.y145{bottom:740.000000pt;}
.yfe{bottom:743.360000pt;}
.y22{bottom:747.200000pt;}
.y7e{bottom:748.800000pt;}
.y3e{bottom:753.600000pt;}
.y60{bottom:753.920000pt;}
.ybe{bottom:759.360000pt;}
.y12a{bottom:761.920000pt;}
.y143{bottom:762.666667pt;}
.yab{bottom:764.800000pt;}
.yfd{bottom:770.880000pt;}
.y21{bottom:774.720000pt;}
.y96{bottom:776.320000pt;}
.y128{bottom:777.333333pt;}
.y43{bottom:780.160000pt;}
.y3d{bottom:781.120000pt;}
.y5f{bottom:781.760000pt;}
.y140{bottom:785.333333pt;}
.ybd{bottom:786.880000pt;}
.yaa{bottom:792.320000pt;}
.y1{bottom:794.560000pt;}
.y113{bottom:798.400000pt;}
.y20{bottom:802.560000pt;}
.y127{bottom:802.666667pt;}
.yfc{bottom:803.840000pt;}
.y13e{bottom:806.666667pt;}
.y5e{bottom:809.280000pt;}
.y42{bottom:813.120000pt;}
.y3c{bottom:814.080000pt;}
.y7d{bottom:814.400000pt;}
.ya9{bottom:819.840000pt;}
.y125{bottom:826.666667pt;}
.y13b{bottom:829.333333pt;}
.yfb{bottom:831.360000pt;}
.y1f{bottom:835.200000pt;}
.y5d{bottom:836.800000pt;}
.y41{bottom:840.640000pt;}
.y95{bottom:842.240000pt;}
.y7c{bottom:847.360000pt;}
.y3b{bottom:851.840000pt;}
.y123{bottom:852.000000pt;}
.y112{bottom:859.200000pt;}
.y5c{bottom:864.320000pt;}
.y1e{bottom:868.160000pt;}
.y136{bottom:873.333333pt;}
.y7b{bottom:875.200000pt;}
.y121{bottom:876.000000pt;}
.y3a{bottom:886.720000pt;}
.y5b{bottom:891.840000pt;}
.ye1{bottom:897.280000pt;}
.y12f{bottom:898.666667pt;}
.y1d{bottom:901.120000pt;}
.y11f{bottom:901.333333pt;}
.y7a{bottom:902.720000pt;}
.y39{bottom:919.680000pt;}
.yfa{bottom:924.800000pt;}
.y11d{bottom:926.666667pt;}
.y79{bottom:930.240000pt;}
.y1c{bottom:934.080000pt;}
.y5a{bottom:947.200000pt;}
.y12e{bottom:948.800000pt;}
.y38{bottom:952.640000pt;}
.y58{bottom:952.960000pt;}
.y154{bottom:954.240000pt;}
.y11a{bottom:954.666667pt;}
.y78{bottom:957.760000pt;}
.y1b{bottom:971.200000pt;}
.y12d{bottom:973.760000pt;}
.y59{bottom:980.160000pt;}
.y14e{bottom:983.360000pt;}
.y37{bottom:985.600000pt;}
.y119{bottom:989.440000pt;}
.y12c{bottom:993.280000pt;}
.y1a{bottom:1008.000000pt;}
.y12b{bottom:1012.800000pt;}
.y36{bottom:1013.120000pt;}
.y18{bottom:1107.200000pt;}
.h4{height:20.000000pt;}
.h12{height:22.666667pt;}
.h11{height:24.000000pt;}
.hb{height:25.333333pt;}
.hd{height:26.666667pt;}
.h8{height:28.545000pt;}
.h10{height:37.327500pt;}
.he{height:40.000000pt;}
.hf{height:40.882500pt;}
.hc{height:42.656250pt;}
.h3{height:44.343750pt;}
.ha{height:44.437500pt;}
.h6{height:44.468750pt;}
.h7{height:50.305000pt;}
.h1{height:52.593750pt;}
.h9{height:55.031250pt;}
.h5{height:59.546250pt;}
.h2{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w4{width:9.333333pt;}
.w5{width:17.333333pt;}
.wa{width:112.000000pt;}
.wb{width:113.333333pt;}
.w8{width:124.000000pt;}
.w7{width:125.333333pt;}
.w6{width:158.666667pt;}
.w9{width:266.666667pt;}
.w3{width:793.333333pt;}
.w2{width:793.600000pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.306635pt;}
.xc{left:8.373365pt;}
.x12{left:10.328427pt;}
.x1b{left:13.099840pt;}
.x20{left:14.933440pt;}
.x21{left:16.626880pt;}
.x23{left:19.069120pt;}
.x1d{left:20.433280pt;}
.x16{left:22.475200pt;}
.x1c{left:24.527147pt;}
.x1e{left:26.360427pt;}
.x18{left:27.430080pt;}
.x15{left:35.294400pt;}
.x13{left:39.394347pt;}
.x22{left:40.586560pt;}
.x1a{left:47.920000pt;}
.x1f{left:49.760320pt;}
.x19{left:56.953280pt;}
.xe{left:65.280000pt;}
.x3{left:113.366667pt;}
.xf{left:120.000000pt;}
.x6{left:129.887040pt;}
.x10{left:132.813152pt;}
.x1{left:155.066667pt;}
.x8{left:161.279936pt;}
.x2{left:247.654667pt;}
.x7{left:254.569344pt;}
.xb{left:270.666667pt;}
.x11{left:385.333333pt;}
.x9{left:388.000000pt;}
.x5{left:392.000000pt;}
.xd{left:394.666667pt;}
.x14{left:496.000000pt;}
.x24{left:585.280000pt;}
.x25{left:593.280000pt;}
.x17{left:608.000000pt;}
.x4{left:680.213120pt;}
.x26{left:758.400000pt;}
}




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