
    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_238f88894309bdc96d3c17cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985352;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_5f3894e460ea912a8e797d47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.878418;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_7865d9bb8866082292bc745b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953613;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_1012a79f50a299fc7997817c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a50a09f4ae8f76e3a702d6e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_5614bb801c2c487ad6173e7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0fcaf67d9e84a146c8aae949.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a8ef7dc74de876bdce372f6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_d69e1941dfbfd174ede88c4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_ed7517b49a94c49f66878247.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.283203;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_788e1be6ebab90359fa818fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_3ecfaa9bbe8828e791a61b2c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.283203;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_a1b55b4c6982ea44ad97719a.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_91e270288220da0ae57d4f69.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.953613;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_561beb69f423da4afc1493d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946777;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_c5f4a988e04b1b83df518718.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.091309;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v5{vertical-align:-29.520000px;}
.v2{vertical-align:-23.760000px;}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.200000px;}
.v3{vertical-align:23.760000px;}
.lsc{letter-spacing:-19.140000px;}
.ls17{letter-spacing:-16.380000px;}
.ls10{letter-spacing:-15.660000px;}
.ls11{letter-spacing:-14.220000px;}
.ls18{letter-spacing:-13.500000px;}
.lsf{letter-spacing:-9.900000px;}
.ls16{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.130200px;}
.ls1f{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.144720px;}
.lsa{letter-spacing:0.150000px;}
.ls22{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.645098px;}
.ls1b{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.978000px;}
.ls13{letter-spacing:3.780000px;}
.ls1d{letter-spacing:10.800000px;}
.ls6{letter-spacing:18.180000px;}
.ls5{letter-spacing:18.900000px;}
.ls1e{letter-spacing:21.600000px;}
.ls8{letter-spacing:254.340000px;}
.ls0{letter-spacing:2187.221280px;}
.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:-66.240000px;}
.ws9{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.414720px;}
.ws13{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.747985px;}
.wsb{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.226440px;}
.ws19{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.093600px;}
.ws17{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.809800px;}
.wse{word-spacing:-14.733600px;}
.wsa{word-spacing:-11.700000px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws10{word-spacing:0.000000px;}
._72{margin-left:-2562.936000px;}
._27{margin-left:-2526.646080px;}
._73{margin-left:-2456.691840px;}
._68{margin-left:-2381.459760px;}
._81{margin-left:-2213.460720px;}
._80{margin-left:-2197.896000px;}
._6f{margin-left:-2050.402320px;}
._70{margin-left:-2034.690480px;}
._3{margin-left:-1577.088000px;}
._1{margin-left:-1534.620480px;}
._78{margin-left:-1507.683600px;}
._1d{margin-left:-1495.490160px;}
._31{margin-left:-1441.675920px;}
._77{margin-left:-1352.904960px;}
._40{margin-left:-1321.706880px;}
._1a{margin-left:-1253.540160px;}
._3f{margin-left:-1217.640000px;}
._30{margin-left:-1161.502560px;}
._21{margin-left:-1082.786160px;}
._44{margin-left:-1066.652400px;}
._2f{margin-left:-1058.799360px;}
._63{margin-left:-921.036000px;}
._3c{margin-left:-835.611840px;}
._3b{margin-left:-820.980000px;}
._20{margin-left:-784.866240px;}
._1f{margin-left:-782.608320px;}
._43{margin-left:-754.560000px;}
._61{margin-left:-673.596000px;}
._45{margin-left:-653.101200px;}
._76{margin-left:-643.812960px;}
._2d{margin-left:-601.380000px;}
._74{margin-left:-564.801120px;}
._75{margin-left:-560.160000px;}
._7b{margin-left:-462.859680px;}
._57{margin-left:-460.413840px;}
._54{margin-left:-450.993840px;}
._66{margin-left:-438.577680px;}
._52{margin-left:-434.356560px;}
._2b{margin-left:-425.866320px;}
._29{margin-left:-424.864080px;}
._67{margin-left:-421.471440px;}
._65{margin-left:-408.393840px;}
._55{margin-left:-404.838960px;}
._62{margin-left:-391.993680px;}
._56{margin-left:-386.323200px;}
._22{margin-left:-376.736400px;}
._5d{margin-left:-372.933840px;}
._7f{margin-left:-362.800800px;}
._71{margin-left:-356.376000px;}
._79{margin-left:-343.711440px;}
._38{margin-left:-342.210240px;}
._5f{margin-left:-325.413840px;}
._4b{margin-left:-323.565840px;}
._37{margin-left:-312.173280px;}
._4a{margin-left:-309.720000px;}
._7a{margin-left:-296.978400px;}
._60{margin-left:-294.697680px;}
._6c{margin-left:-289.751760px;}
._7e{margin-left:-274.696560px;}
._35{margin-left:-271.986480px;}
._6d{margin-left:-269.046480px;}
._28{margin-left:-265.291920px;}
._15{margin-left:-256.052160px;}
._8{margin-left:-248.399760px;}
._5{margin-left:-243.943200px;}
._13{margin-left:-242.408640px;}
._14{margin-left:-240.996960px;}
._5e{margin-left:-235.750680px;}
._7c{margin-left:-226.776000px;}
._4e{margin-left:-220.886640px;}
._49{margin-left:-218.331360px;}
._48{margin-left:-217.148400px;}
._9{margin-left:-215.735040px;}
._5b{margin-left:-214.432320px;}
._5c{margin-left:-204.967440px;}
._4{margin-left:-201.818880px;}
._2c{margin-left:-199.018800px;}
._3d{margin-left:-194.272320px;}
._c{margin-left:-188.683440px;}
._7{margin-left:-183.533760px;}
._6a{margin-left:-177.816000px;}
._36{margin-left:-174.834480px;}
._4c{margin-left:-170.380080px;}
._64{margin-left:-166.532400px;}
._d{margin-left:-165.251520px;}
._12{margin-left:-156.384000px;}
._f{margin-left:-153.054720px;}
._16{margin-left:-151.200000px;}
._34{margin-left:-149.941440px;}
._6e{margin-left:-146.589120px;}
._69{margin-left:-143.564400px;}
._41{margin-left:-141.120000px;}
._3e{margin-left:-134.341200px;}
._e{margin-left:-132.445440px;}
._0{margin-left:-130.271040px;}
._46{margin-left:-124.361280px;}
._4d{margin-left:-122.922720px;}
._17{margin-left:-104.328000px;}
._53{margin-left:-97.200000px;}
._59{margin-left:-90.000000px;}
._39{margin-left:-84.919680px;}
._19{margin-left:-83.232000px;}
._11{margin-left:-79.344000px;}
._5a{margin-left:-77.664000px;}
._58{margin-left:-71.280000px;}
._7d{margin-left:-69.430560px;}
._50{margin-left:-67.600080px;}
._10{margin-left:-58.014720px;}
._4f{margin-left:-55.980000px;}
._33{margin-left:-54.869760px;}
._a{margin-left:-51.583680px;}
._b{margin-left:-39.589440px;}
._3a{margin-left:-35.100000px;}
._6b{margin-left:-31.680000px;}
._2a{margin-left:-27.462240px;}
._1e{margin-left:-25.945920px;}
._18{margin-left:-20.736000px;}
._6{margin-left:-19.143360px;}
._42{margin-left:-17.132880px;}
._47{margin-left:-15.511680px;}
._24{margin-left:-13.578480px;}
._26{margin-left:-11.826720px;}
._23{margin-left:-9.310320px;}
._25{margin-left:-5.304960px;}
._87{margin-left:-4.176000px;}
._82{margin-left:-2.183040px;}
._2{margin-left:-1.059840px;}
._1b{width:1.219680px;}
._1c{width:2.800560px;}
._2e{width:4.416480px;}
._32{width:5.843520px;}
._83{width:7.111440px;}
._88{width:8.889120px;}
._84{width:10.458000px;}
._85{width:11.882640px;}
._86{width:13.012800px;}
._98{width:14.078400px;}
._8a{width:15.120000px;}
._89{width:16.992000px;}
._51{width:19.047120px;}
._8b{width:20.153760px;}
._8e{width:21.750240px;}
._96{width:22.799520px;}
._93{width:23.832000px;}
._94{width:24.844320px;}
._8c{width:25.992000px;}
._8d{width:27.216000px;}
._95{width:28.632000px;}
._9b{width:29.952000px;}
._99{width:31.104000px;}
._8f{width:34.632000px;}
._97{width:35.712000px;}
._9a{width:36.720000px;}
._91{width:38.016000px;}
._92{width:39.096000px;}
._9c{width:47.329920px;}
._9d{width:48.439920px;}
._90{width:51.192000px;}
._9f{width:108.822960px;}
._9e{width:111.093840px;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fs8{font-size:18.000000px;}
.fs9{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.240000px;}
.y3f{bottom:7.380000px;}
.y14{bottom:8.460000px;}
.y6{bottom:12.060000px;}
.y7e{bottom:14.220000px;}
.y89{bottom:14.394000px;}
.y80{bottom:14.400000px;}
.y3c{bottom:20.520000px;}
.y3e{bottom:24.660000px;}
.y25{bottom:25.560000px;}
.y13{bottom:28.260000px;}
.y3{bottom:34.200000px;}
.y3b{bottom:37.830000px;}
.y24{bottom:42.840000px;}
.y5{bottom:44.490000px;}
.y2{bottom:54.360000px;}
.y3a{bottom:55.110000px;}
.y23{bottom:60.120000px;}
.y39{bottom:72.210000px;}
.y22{bottom:77.400000px;}
.y38{bottom:89.490000px;}
.y21{bottom:94.680000px;}
.y37{bottom:106.770000px;}
.y20{bottom:111.960000px;}
.y29{bottom:112.680000px;}
.y97{bottom:114.840000px;}
.ycf{bottom:115.380000px;}
.y5d{bottom:120.780000px;}
.y36{bottom:124.050000px;}
.y1f{bottom:129.060000px;}
.yce{bottom:132.660000px;}
.y35{bottom:141.330000px;}
.y96{bottom:145.836000px;}
.y1e{bottom:146.340000px;}
.y88{bottom:146.556000px;}
.ycd{bottom:149.976000px;}
.y5c{bottom:151.770000px;}
.y34{bottom:158.610000px;}
.yae{bottom:162.210000px;}
.y1d{bottom:163.650000px;}
.ycc{bottom:167.250000px;}
.y7a{bottom:169.230000px;}
.y33{bottom:175.710000px;}
.y87{bottom:178.410000px;}
.y1c{bottom:180.930000px;}
.y5b{bottom:182.910000px;}
.ycb{bottom:184.350000px;}
.y95{bottom:188.850000px;}
.y32{bottom:192.990000px;}
.yad{bottom:193.170000px;}
.y1b{bottom:198.210000px;}
.y79{bottom:200.190000px;}
.yca{bottom:201.630000px;}
.y31{bottom:210.270000px;}
.y5a{bottom:213.870000px;}
.y1a{bottom:215.490000px;}
.yc9{bottom:218.910000px;}
.yac{bottom:224.130000px;}
.y30{bottom:227.550000px;}
.y78{bottom:231.330000px;}
.y94{bottom:232.050000px;}
.y19{bottom:232.590000px;}
.yc8{bottom:236.190000px;}
.y86{bottom:241.950000px;}
.y2f{bottom:244.830000px;}
.y18{bottom:249.870000px;}
.yc7{bottom:253.470000px;}
.yab{bottom:255.270000px;}
.y59{bottom:256.890000px;}
.y2e{bottom:261.930000px;}
.y77{bottom:262.290000px;}
.y93{bottom:263.010000px;}
.y17{bottom:267.150000px;}
.yc6{bottom:270.750000px;}
.y85{bottom:273.810000px;}
.y2d{bottom:279.255000px;}
.yaa{bottom:286.230000px;}
.yc5{bottom:287.850000px;}
.y58{bottom:288.030000px;}
.y76{bottom:293.430000px;}
.y92{bottom:294.150000px;}
.y16{bottom:294.330000px;}
.y2c{bottom:296.535000px;}
.yc4{bottom:305.130000px;}
.y84{bottom:305.670000px;}
.y2b{bottom:313.815000px;}
.ya9{bottom:317.370000px;}
.y57{bottom:318.990000px;}
.yc3{bottom:322.410000px;}
.y91{bottom:325.110000px;}
.y75{bottom:336.450000px;}
.y2a{bottom:337.035000px;}
.y83{bottom:337.350000px;}
.yc2{bottom:339.690000px;}
.ya8{bottom:348.330000px;}
.y56{bottom:350.130000px;}
.y90{bottom:356.070000px;}
.yc1{bottom:356.970000px;}
.y74{bottom:367.410000px;}
.y82{bottom:369.210000px;}
.yc0{bottom:374.070000px;}
.ya7{bottom:379.470000px;}
.y55{bottom:381.090000px;}
.ybf{bottom:391.395000px;}
.y73{bottom:398.595000px;}
.y8f{bottom:399.315000px;}
.y81{bottom:401.115000px;}
.ybe{bottom:408.675000px;}
.yb2{bottom:410.475000px;}
.ya6{bottom:422.535000px;}
.y54{bottom:424.155000px;}
.ybd{bottom:425.955000px;}
.y72{bottom:429.555000px;}
.y8e{bottom:430.275000px;}
.y7f{bottom:432.795000px;}
.yb1{bottom:441.615000px;}
.ybc{bottom:443.235000px;}
.ya5{bottom:453.675000px;}
.y53{bottom:455.295000px;}
.ybb{bottom:460.515000px;}
.y71{bottom:460.695000px;}
.y8d{bottom:461.415000px;}
.y7d{bottom:464.655000px;}
.y28{bottom:468.075000px;}
.yb0{bottom:472.575000px;}
.yba{bottom:477.615000px;}
.y27{bottom:478.335000px;}
.ya4{bottom:484.635000px;}
.y52{bottom:486.255000px;}
.y15{bottom:488.955000px;}
.y70{bottom:491.655000px;}
.y8c{bottom:492.375000px;}
.yb9{bottom:494.895000px;}
.yaf{bottom:503.715000px;}
.yb8{bottom:512.175000px;}
.ya3{bottom:515.775000px;}
.y51{bottom:517.395000px;}
.y7c{bottom:522.795000px;}
.yb7{bottom:529.455000px;}
.y6f{bottom:534.675000px;}
.y8b{bottom:535.395000px;}
.ya2{bottom:546.735000px;}
.y50{bottom:548.355000px;}
.y7b{bottom:553.755000px;}
.yb6{bottom:564.015000px;}
.y6e{bottom:565.815000px;}
.y8a{bottom:574.455000px;}
.ya1{bottom:577.695000px;}
.yb5{bottom:581.115000px;}
.y4f{bottom:591.375000px;}
.y6d{bottom:596.775000px;}
.yb4{bottom:598.395000px;}
.ya0{bottom:608.835000px;}
.y4e{bottom:622.515000px;}
.y6c{bottom:627.915000px;}
.yb3{bottom:628.275000px;}
.y9f{bottom:639.795000px;}
.y4d{bottom:653.505000px;}
.y6b{bottom:658.905000px;}
.y9e{bottom:670.965000px;}
.y4c{bottom:684.645000px;}
.y6a{bottom:690.045000px;}
.y9d{bottom:701.925000px;}
.y4b{bottom:715.605000px;}
.y69{bottom:721.005000px;}
.y9c{bottom:733.065000px;}
.ye1{bottom:741.705000px;}
.y4a{bottom:746.745000px;}
.y68{bottom:764.025000px;}
.y49{bottom:777.705000px;}
.ye0{bottom:784.725000px;}
.y9b{bottom:795.165000px;}
.y12{bottom:803.265000px;}
.y67{bottom:807.225000px;}
.y48{bottom:808.845000px;}
.y9a{bottom:826.125000px;}
.ydf{bottom:827.925000px;}
.y66{bottom:838.185000px;}
.y47{bottom:839.805000px;}
.yde{bottom:847.905000px;}
.y11{bottom:855.285000px;}
.y99{bottom:857.265000px;}
.ydd{bottom:865.005000px;}
.y65{bottom:869.325000px;}
.y46{bottom:870.945000px;}
.ydc{bottom:882.285000px;}
.y98{bottom:888.225000px;}
.y10{bottom:890.205000px;}
.ydb{bottom:899.610000px;}
.y64{bottom:900.330000px;}
.y45{bottom:901.950000px;}
.yda{bottom:916.890000px;}
.yf{bottom:925.170000px;}
.y63{bottom:931.290000px;}
.y44{bottom:933.090000px;}
.yd9{bottom:934.170000px;}
.yd8{bottom:951.270000px;}
.ye{bottom:959.370000px;}
.y62{bottom:962.430000px;}
.y43{bottom:964.050000px;}
.yd7{bottom:968.550000px;}
.yd{bottom:971.970000px;}
.yd6{bottom:985.830000px;}
.y61{bottom:993.390000px;}
.yc{bottom:994.470000px;}
.y42{bottom:995.190000px;}
.yd5{bottom:1003.110000px;}
.yb{bottom:1011.750000px;}
.yd4{bottom:1020.390000px;}
.y60{bottom:1024.530000px;}
.ya{bottom:1029.030000px;}
.y41{bottom:1031.730000px;}
.yd3{bottom:1037.670000px;}
.y9{bottom:1046.310000px;}
.yd2{bottom:1054.770000px;}
.y5f{bottom:1055.490000px;}
.y40{bottom:1056.570000px;}
.y8{bottom:1059.630000px;}
.y3d{bottom:1062.510000px;}
.yd1{bottom:1072.050000px;}
.y7{bottom:1083.750000px;}
.y5e{bottom:1086.630000px;}
.yd0{bottom:1089.330000px;}
.y1{bottom:1115.430000px;}
.y4{bottom:1124.430000px;}
.h17{height:8.666016px;}
.h19{height:30.960000px;}
.h1c{height:30.996000px;}
.h1a{height:31.140000px;}
.h13{height:36.281250px;}
.h7{height:38.158594px;}
.h16{height:38.520000px;}
.hd{height:39.600000px;}
.he{height:47.344922px;}
.h9{height:50.244654px;}
.h11{height:52.581797px;}
.h12{height:55.425526px;}
.hf{height:57.075469px;}
.h8{height:58.651172px;}
.ha{height:59.642578px;}
.h15{height:60.226875px;}
.h3{height:61.416000px;}
.h2{height:65.884219px;}
.h1b{height:70.628906px;}
.h5{height:70.664062px;}
.h18{height:72.562500px;}
.h4{height:73.722656px;}
.h1d{height:74.004654px;}
.hc{height:82.635820px;}
.h6{height:84.898125px;}
.hb{height:87.655781px;}
.h10{height:312.150000px;}
.h14{height:351.075000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:139.356000px;}
.w6{width:140.076000px;}
.wa{width:160.590000px;}
.w7{width:160.950000px;}
.w8{width:181.650000px;}
.w5{width:182.010000px;}
.w3{width:400.935000px;}
.w4{width:654.765000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:3.240000px;}
.x14{left:7.380000px;}
.x23{left:11.700000px;}
.x20{left:20.520000px;}
.x4c{left:26.640000px;}
.x4a{left:28.800000px;}
.x47{left:31.500000px;}
.x21{left:32.760000px;}
.x22{left:36.540000px;}
.x4b{left:40.680000px;}
.x6{left:46.260000px;}
.x48{left:64.620000px;}
.x4d{left:66.600000px;}
.x49{left:75.240000px;}
.x36{left:84.594000px;}
.x2b{left:90.894000px;}
.x1{left:102.635987px;}
.x42{left:106.415987px;}
.x13{left:107.496000px;}
.x3a{left:115.554000px;}
.x39{left:119.154000px;}
.x1e{left:122.394000px;}
.x34{left:127.614000px;}
.x1f{left:130.674000px;}
.x7{left:132.155987px;}
.x4e{left:146.015987px;}
.x43{left:160.409987px;}
.xa{left:168.149987px;}
.x9{left:173.549987px;}
.x2c{left:176.079000px;}
.x10{left:189.749987px;}
.x44{left:194.430000px;}
.x38{left:198.399000px;}
.xc{left:202.889987px;}
.x35{left:205.059000px;}
.x8{left:215.849987px;}
.x4{left:229.350000px;}
.x32{left:240.339000px;}
.x1d{left:251.319000px;}
.x1c{left:255.099000px;}
.x37{left:258.699000px;}
.xb{left:278.534987px;}
.x3e{left:286.599000px;}
.x5{left:292.755000px;}
.xe{left:304.634987px;}
.x29{left:316.119000px;}
.x33{left:317.739000px;}
.x45{left:376.455000px;}
.x31{left:380.589000px;}
.x2a{left:385.269000px;}
.x2f{left:418.029000px;}
.x28{left:421.989000px;}
.x25{left:430.449000px;}
.x19{left:434.229000px;}
.xd{left:436.034987px;}
.x18{left:444.309000px;}
.x12{left:459.434987px;}
.x30{left:478.869000px;}
.x26{left:499.749000px;}
.x27{left:508.209000px;}
.x3c{left:510.549000px;}
.x1b{left:511.629000px;}
.x46{left:516.525000px;}
.x17{left:532.509000px;}
.x24{left:544.209000px;}
.x40{left:560.634000px;}
.x2d{left:561.894000px;}
.xf{left:576.284987px;}
.x3f{left:586.374000px;}
.x15{left:602.934000px;}
.x3b{left:607.614000px;}
.x1a{left:618.234000px;}
.x16{left:629.034000px;}
.x2e{left:631.014000px;}
.x11{left:655.229987px;}
.x2{left:740.309987px;}
.x3{left:755.969987px;}
.x41{left:764.609987px;}
.x4f{left:774.689987px;}
@media print{
.v5{vertical-align:-26.240000pt;}
.v2{vertical-align:-21.120000pt;}
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.400000pt;}
.v3{vertical-align:21.120000pt;}
.lsc{letter-spacing:-17.013333pt;}
.ls17{letter-spacing:-14.560000pt;}
.ls10{letter-spacing:-13.920000pt;}
.ls11{letter-spacing:-12.640000pt;}
.ls18{letter-spacing:-12.000000pt;}
.lsf{letter-spacing:-8.800000pt;}
.ls16{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.115733pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.128640pt;}
.lsa{letter-spacing:0.133333pt;}
.ls22{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.573421pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.869333pt;}
.ls13{letter-spacing:3.360000pt;}
.ls1d{letter-spacing:9.600000pt;}
.ls6{letter-spacing:16.160000pt;}
.ls5{letter-spacing:16.800000pt;}
.ls1e{letter-spacing:19.200000pt;}
.ls8{letter-spacing:226.080000pt;}
.ls0{letter-spacing:1944.196693pt;}
.ws2{word-spacing:-58.880000pt;}
.ws9{word-spacing:-18.720000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.368640pt;}
.ws13{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.998209pt;}
.wsb{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws19{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.416533pt;}
.ws17{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.164267pt;}
.wse{word-spacing:-13.096533pt;}
.wsa{word-spacing:-10.400000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws10{word-spacing:0.000000pt;}
._72{margin-left:-2278.165333pt;}
._27{margin-left:-2245.907627pt;}
._73{margin-left:-2183.726080pt;}
._68{margin-left:-2116.853120pt;}
._81{margin-left:-1967.520640pt;}
._80{margin-left:-1953.685333pt;}
._6f{margin-left:-1822.579840pt;}
._70{margin-left:-1808.613760pt;}
._3{margin-left:-1401.856000pt;}
._1{margin-left:-1364.107093pt;}
._78{margin-left:-1340.163200pt;}
._1d{margin-left:-1329.324587pt;}
._31{margin-left:-1281.489707pt;}
._77{margin-left:-1202.582187pt;}
._40{margin-left:-1174.850560pt;}
._1a{margin-left:-1114.257920pt;}
._3f{margin-left:-1082.346667pt;}
._30{margin-left:-1032.446720pt;}
._21{margin-left:-962.476587pt;}
._44{margin-left:-948.135467pt;}
._2f{margin-left:-941.154987pt;}
._63{margin-left:-818.698667pt;}
._3c{margin-left:-742.766080pt;}
._3b{margin-left:-729.760000pt;}
._20{margin-left:-697.658880pt;}
._1f{margin-left:-695.651840pt;}
._43{margin-left:-670.720000pt;}
._61{margin-left:-598.752000pt;}
._45{margin-left:-580.534400pt;}
._76{margin-left:-572.278187pt;}
._2d{margin-left:-534.560000pt;}
._74{margin-left:-502.045440pt;}
._75{margin-left:-497.920000pt;}
._7b{margin-left:-411.430827pt;}
._57{margin-left:-409.256747pt;}
._54{margin-left:-400.883413pt;}
._66{margin-left:-389.846827pt;}
._52{margin-left:-386.094720pt;}
._2b{margin-left:-378.547840pt;}
._29{margin-left:-377.656960pt;}
._67{margin-left:-374.641280pt;}
._65{margin-left:-363.016747pt;}
._55{margin-left:-359.856853pt;}
._62{margin-left:-348.438827pt;}
._56{margin-left:-343.398400pt;}
._22{margin-left:-334.876800pt;}
._5d{margin-left:-331.496747pt;}
._7f{margin-left:-322.489600pt;}
._71{margin-left:-316.778667pt;}
._79{margin-left:-305.521280pt;}
._38{margin-left:-304.186880pt;}
._5f{margin-left:-289.256747pt;}
._4b{margin-left:-287.614080pt;}
._37{margin-left:-277.487360pt;}
._4a{margin-left:-275.306667pt;}
._7a{margin-left:-263.980800pt;}
._60{margin-left:-261.953493pt;}
._6c{margin-left:-257.557120pt;}
._7e{margin-left:-244.174720pt;}
._35{margin-left:-241.765760pt;}
._6d{margin-left:-239.152427pt;}
._28{margin-left:-235.815040pt;}
._15{margin-left:-227.601920pt;}
._8{margin-left:-220.799787pt;}
._5{margin-left:-216.838400pt;}
._13{margin-left:-215.474347pt;}
._14{margin-left:-214.219520pt;}
._5e{margin-left:-209.556160pt;}
._7c{margin-left:-201.578667pt;}
._4e{margin-left:-196.343680pt;}
._49{margin-left:-194.072320pt;}
._48{margin-left:-193.020800pt;}
._9{margin-left:-191.764480pt;}
._5b{margin-left:-190.606507pt;}
._5c{margin-left:-182.193280pt;}
._4{margin-left:-179.394560pt;}
._2c{margin-left:-176.905600pt;}
._3d{margin-left:-172.686507pt;}
._c{margin-left:-167.718613pt;}
._7{margin-left:-163.141120pt;}
._6a{margin-left:-158.058667pt;}
._36{margin-left:-155.408427pt;}
._4c{margin-left:-151.448960pt;}
._64{margin-left:-148.028800pt;}
._d{margin-left:-146.890240pt;}
._12{margin-left:-139.008000pt;}
._f{margin-left:-136.048640pt;}
._16{margin-left:-134.400000pt;}
._34{margin-left:-133.281280pt;}
._6e{margin-left:-130.301440pt;}
._69{margin-left:-127.612800pt;}
._41{margin-left:-125.440000pt;}
._3e{margin-left:-119.414400pt;}
._e{margin-left:-117.729280pt;}
._0{margin-left:-115.796480pt;}
._46{margin-left:-110.543360pt;}
._4d{margin-left:-109.264640pt;}
._17{margin-left:-92.736000pt;}
._53{margin-left:-86.400000pt;}
._59{margin-left:-80.000000pt;}
._39{margin-left:-75.484160pt;}
._19{margin-left:-73.984000pt;}
._11{margin-left:-70.528000pt;}
._5a{margin-left:-69.034667pt;}
._58{margin-left:-63.360000pt;}
._7d{margin-left:-61.716053pt;}
._50{margin-left:-60.088960pt;}
._10{margin-left:-51.568640pt;}
._4f{margin-left:-49.760000pt;}
._33{margin-left:-48.773120pt;}
._a{margin-left:-45.852160pt;}
._b{margin-left:-35.190613pt;}
._3a{margin-left:-31.200000pt;}
._6b{margin-left:-28.160000pt;}
._2a{margin-left:-24.410880pt;}
._1e{margin-left:-23.063040pt;}
._18{margin-left:-18.432000pt;}
._6{margin-left:-17.016320pt;}
._42{margin-left:-15.229227pt;}
._47{margin-left:-13.788160pt;}
._24{margin-left:-12.069760pt;}
._26{margin-left:-10.512640pt;}
._23{margin-left:-8.275840pt;}
._25{margin-left:-4.715520pt;}
._87{margin-left:-3.712000pt;}
._82{margin-left:-1.940480pt;}
._2{margin-left:-0.942080pt;}
._1b{width:1.084160pt;}
._1c{width:2.489387pt;}
._2e{width:3.925760pt;}
._32{width:5.194240pt;}
._83{width:6.321280pt;}
._88{width:7.901440pt;}
._84{width:9.296000pt;}
._85{width:10.562347pt;}
._86{width:11.566933pt;}
._98{width:12.514133pt;}
._8a{width:13.440000pt;}
._89{width:15.104000pt;}
._51{width:16.930773pt;}
._8b{width:17.914453pt;}
._8e{width:19.333547pt;}
._96{width:20.266240pt;}
._93{width:21.184000pt;}
._94{width:22.083840pt;}
._8c{width:23.104000pt;}
._8d{width:24.192000pt;}
._95{width:25.450667pt;}
._9b{width:26.624000pt;}
._99{width:27.648000pt;}
._8f{width:30.784000pt;}
._97{width:31.744000pt;}
._9a{width:32.640000pt;}
._91{width:33.792000pt;}
._92{width:34.752000pt;}
._9c{width:42.071040pt;}
._9d{width:43.057707pt;}
._90{width:45.504000pt;}
._9f{width:96.731520pt;}
._9e{width:98.750080pt;}
.fsa{font-size:10.880000pt;}
.fs8{font-size:16.000000pt;}
.fs9{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:2.880000pt;}
.y3f{bottom:6.560000pt;}
.y14{bottom:7.520000pt;}
.y6{bottom:10.720000pt;}
.y7e{bottom:12.640000pt;}
.y89{bottom:12.794667pt;}
.y80{bottom:12.800000pt;}
.y3c{bottom:18.240000pt;}
.y3e{bottom:21.920000pt;}
.y25{bottom:22.720000pt;}
.y13{bottom:25.120000pt;}
.y3{bottom:30.400000pt;}
.y3b{bottom:33.626667pt;}
.y24{bottom:38.080000pt;}
.y5{bottom:39.546667pt;}
.y2{bottom:48.320000pt;}
.y3a{bottom:48.986667pt;}
.y23{bottom:53.440000pt;}
.y39{bottom:64.186667pt;}
.y22{bottom:68.800000pt;}
.y38{bottom:79.546667pt;}
.y21{bottom:84.160000pt;}
.y37{bottom:94.906667pt;}
.y20{bottom:99.520000pt;}
.y29{bottom:100.160000pt;}
.y97{bottom:102.080000pt;}
.ycf{bottom:102.560000pt;}
.y5d{bottom:107.360000pt;}
.y36{bottom:110.266667pt;}
.y1f{bottom:114.720000pt;}
.yce{bottom:117.920000pt;}
.y35{bottom:125.626667pt;}
.y96{bottom:129.632000pt;}
.y1e{bottom:130.080000pt;}
.y88{bottom:130.272000pt;}
.ycd{bottom:133.312000pt;}
.y5c{bottom:134.906667pt;}
.y34{bottom:140.986667pt;}
.yae{bottom:144.186667pt;}
.y1d{bottom:145.466667pt;}
.ycc{bottom:148.666667pt;}
.y7a{bottom:150.426667pt;}
.y33{bottom:156.186667pt;}
.y87{bottom:158.586667pt;}
.y1c{bottom:160.826667pt;}
.y5b{bottom:162.586667pt;}
.ycb{bottom:163.866667pt;}
.y95{bottom:167.866667pt;}
.y32{bottom:171.546667pt;}
.yad{bottom:171.706667pt;}
.y1b{bottom:176.186667pt;}
.y79{bottom:177.946667pt;}
.yca{bottom:179.226667pt;}
.y31{bottom:186.906667pt;}
.y5a{bottom:190.106667pt;}
.y1a{bottom:191.546667pt;}
.yc9{bottom:194.586667pt;}
.yac{bottom:199.226667pt;}
.y30{bottom:202.266667pt;}
.y78{bottom:205.626667pt;}
.y94{bottom:206.266667pt;}
.y19{bottom:206.746667pt;}
.yc8{bottom:209.946667pt;}
.y86{bottom:215.066667pt;}
.y2f{bottom:217.626667pt;}
.y18{bottom:222.106667pt;}
.yc7{bottom:225.306667pt;}
.yab{bottom:226.906667pt;}
.y59{bottom:228.346667pt;}
.y2e{bottom:232.826667pt;}
.y77{bottom:233.146667pt;}
.y93{bottom:233.786667pt;}
.y17{bottom:237.466667pt;}
.yc6{bottom:240.666667pt;}
.y85{bottom:243.386667pt;}
.y2d{bottom:248.226667pt;}
.yaa{bottom:254.426667pt;}
.yc5{bottom:255.866667pt;}
.y58{bottom:256.026667pt;}
.y76{bottom:260.826667pt;}
.y92{bottom:261.466667pt;}
.y16{bottom:261.626667pt;}
.y2c{bottom:263.586667pt;}
.yc4{bottom:271.226667pt;}
.y84{bottom:271.706667pt;}
.y2b{bottom:278.946667pt;}
.ya9{bottom:282.106667pt;}
.y57{bottom:283.546667pt;}
.yc3{bottom:286.586667pt;}
.y91{bottom:288.986667pt;}
.y75{bottom:299.066667pt;}
.y2a{bottom:299.586667pt;}
.y83{bottom:299.866667pt;}
.yc2{bottom:301.946667pt;}
.ya8{bottom:309.626667pt;}
.y56{bottom:311.226667pt;}
.y90{bottom:316.506667pt;}
.yc1{bottom:317.306667pt;}
.y74{bottom:326.586667pt;}
.y82{bottom:328.186667pt;}
.yc0{bottom:332.506667pt;}
.ya7{bottom:337.306667pt;}
.y55{bottom:338.746667pt;}
.ybf{bottom:347.906667pt;}
.y73{bottom:354.306667pt;}
.y8f{bottom:354.946667pt;}
.y81{bottom:356.546667pt;}
.ybe{bottom:363.266667pt;}
.yb2{bottom:364.866667pt;}
.ya6{bottom:375.586667pt;}
.y54{bottom:377.026667pt;}
.ybd{bottom:378.626667pt;}
.y72{bottom:381.826667pt;}
.y8e{bottom:382.466667pt;}
.y7f{bottom:384.706667pt;}
.yb1{bottom:392.546667pt;}
.ybc{bottom:393.986667pt;}
.ya5{bottom:403.266667pt;}
.y53{bottom:404.706667pt;}
.ybb{bottom:409.346667pt;}
.y71{bottom:409.506667pt;}
.y8d{bottom:410.146667pt;}
.y7d{bottom:413.026667pt;}
.y28{bottom:416.066667pt;}
.yb0{bottom:420.066667pt;}
.yba{bottom:424.546667pt;}
.y27{bottom:425.186667pt;}
.ya4{bottom:430.786667pt;}
.y52{bottom:432.226667pt;}
.y15{bottom:434.626667pt;}
.y70{bottom:437.026667pt;}
.y8c{bottom:437.666667pt;}
.yb9{bottom:439.906667pt;}
.yaf{bottom:447.746667pt;}
.yb8{bottom:455.266667pt;}
.ya3{bottom:458.466667pt;}
.y51{bottom:459.906667pt;}
.y7c{bottom:464.706667pt;}
.yb7{bottom:470.626667pt;}
.y6f{bottom:475.266667pt;}
.y8b{bottom:475.906667pt;}
.ya2{bottom:485.986667pt;}
.y50{bottom:487.426667pt;}
.y7b{bottom:492.226667pt;}
.yb6{bottom:501.346667pt;}
.y6e{bottom:502.946667pt;}
.y8a{bottom:510.626667pt;}
.ya1{bottom:513.506667pt;}
.yb5{bottom:516.546667pt;}
.y4f{bottom:525.666667pt;}
.y6d{bottom:530.466667pt;}
.yb4{bottom:531.906667pt;}
.ya0{bottom:541.186667pt;}
.y4e{bottom:553.346667pt;}
.y6c{bottom:558.146667pt;}
.yb3{bottom:558.466667pt;}
.y9f{bottom:568.706667pt;}
.y4d{bottom:580.893333pt;}
.y6b{bottom:585.693333pt;}
.y9e{bottom:596.413333pt;}
.y4c{bottom:608.573333pt;}
.y6a{bottom:613.373333pt;}
.y9d{bottom:623.933333pt;}
.y4b{bottom:636.093333pt;}
.y69{bottom:640.893333pt;}
.y9c{bottom:651.613333pt;}
.ye1{bottom:659.293333pt;}
.y4a{bottom:663.773333pt;}
.y68{bottom:679.133333pt;}
.y49{bottom:691.293333pt;}
.ye0{bottom:697.533333pt;}
.y9b{bottom:706.813333pt;}
.y12{bottom:714.013333pt;}
.y67{bottom:717.533333pt;}
.y48{bottom:718.973333pt;}
.y9a{bottom:734.333333pt;}
.ydf{bottom:735.933333pt;}
.y66{bottom:745.053333pt;}
.y47{bottom:746.493333pt;}
.yde{bottom:753.693333pt;}
.y11{bottom:760.253333pt;}
.y99{bottom:762.013333pt;}
.ydd{bottom:768.893333pt;}
.y65{bottom:772.733333pt;}
.y46{bottom:774.173333pt;}
.ydc{bottom:784.253333pt;}
.y98{bottom:789.533333pt;}
.y10{bottom:791.293333pt;}
.ydb{bottom:799.653333pt;}
.y64{bottom:800.293333pt;}
.y45{bottom:801.733333pt;}
.yda{bottom:815.013333pt;}
.yf{bottom:822.373333pt;}
.y63{bottom:827.813333pt;}
.y44{bottom:829.413333pt;}
.yd9{bottom:830.373333pt;}
.yd8{bottom:845.573333pt;}
.ye{bottom:852.773333pt;}
.y62{bottom:855.493333pt;}
.y43{bottom:856.933333pt;}
.yd7{bottom:860.933333pt;}
.yd{bottom:863.973333pt;}
.yd6{bottom:876.293333pt;}
.y61{bottom:883.013333pt;}
.yc{bottom:883.973333pt;}
.y42{bottom:884.613333pt;}
.yd5{bottom:891.653333pt;}
.yb{bottom:899.333333pt;}
.yd4{bottom:907.013333pt;}
.y60{bottom:910.693333pt;}
.ya{bottom:914.693333pt;}
.y41{bottom:917.093333pt;}
.yd3{bottom:922.373333pt;}
.y9{bottom:930.053333pt;}
.yd2{bottom:937.573333pt;}
.y5f{bottom:938.213333pt;}
.y40{bottom:939.173333pt;}
.y8{bottom:941.893333pt;}
.y3d{bottom:944.453333pt;}
.yd1{bottom:952.933333pt;}
.y7{bottom:963.333333pt;}
.y5e{bottom:965.893333pt;}
.yd0{bottom:968.293333pt;}
.y1{bottom:991.493333pt;}
.y4{bottom:999.493333pt;}
.h17{height:7.703125pt;}
.h19{height:27.520000pt;}
.h1c{height:27.552000pt;}
.h1a{height:27.680000pt;}
.h13{height:32.250000pt;}
.h7{height:33.918750pt;}
.h16{height:34.240000pt;}
.hd{height:35.200000pt;}
.he{height:42.084375pt;}
.h9{height:44.661915pt;}
.h11{height:46.739375pt;}
.h12{height:49.267134pt;}
.hf{height:50.733750pt;}
.h8{height:52.134375pt;}
.ha{height:53.015625pt;}
.h15{height:53.535000pt;}
.h3{height:54.592000pt;}
.h2{height:58.563750pt;}
.h1b{height:62.781250pt;}
.h5{height:62.812500pt;}
.h18{height:64.500000pt;}
.h4{height:65.531250pt;}
.h1d{height:65.781915pt;}
.hc{height:73.454062pt;}
.h6{height:75.465000pt;}
.hb{height:77.916250pt;}
.h10{height:277.466667pt;}
.h14{height:312.066667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:123.872000pt;}
.w6{width:124.512000pt;}
.wa{width:142.746667pt;}
.w7{width:143.066667pt;}
.w8{width:161.466667pt;}
.w5{width:161.786667pt;}
.w3{width:356.386667pt;}
.w4{width:582.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:2.880000pt;}
.x14{left:6.560000pt;}
.x23{left:10.400000pt;}
.x20{left:18.240000pt;}
.x4c{left:23.680000pt;}
.x4a{left:25.600000pt;}
.x47{left:28.000000pt;}
.x21{left:29.120000pt;}
.x22{left:32.480000pt;}
.x4b{left:36.160000pt;}
.x6{left:41.120000pt;}
.x48{left:57.440000pt;}
.x4d{left:59.200000pt;}
.x49{left:66.880000pt;}
.x36{left:75.194667pt;}
.x2b{left:80.794667pt;}
.x1{left:91.231988pt;}
.x42{left:94.591988pt;}
.x13{left:95.552000pt;}
.x3a{left:102.714667pt;}
.x39{left:105.914667pt;}
.x1e{left:108.794667pt;}
.x34{left:113.434667pt;}
.x1f{left:116.154667pt;}
.x7{left:117.471988pt;}
.x4e{left:129.791988pt;}
.x43{left:142.586655pt;}
.xa{left:149.466655pt;}
.x9{left:154.266655pt;}
.x2c{left:156.514667pt;}
.x10{left:168.666655pt;}
.x44{left:172.826667pt;}
.x38{left:176.354667pt;}
.xc{left:180.346655pt;}
.x35{left:182.274667pt;}
.x8{left:191.866655pt;}
.x4{left:203.866667pt;}
.x32{left:213.634667pt;}
.x1d{left:223.394667pt;}
.x1c{left:226.754667pt;}
.x37{left:229.954667pt;}
.xb{left:247.586655pt;}
.x3e{left:254.754667pt;}
.x5{left:260.226667pt;}
.xe{left:270.786655pt;}
.x29{left:280.994667pt;}
.x33{left:282.434667pt;}
.x45{left:334.626667pt;}
.x31{left:338.301333pt;}
.x2a{left:342.461333pt;}
.x2f{left:371.581333pt;}
.x28{left:375.101333pt;}
.x25{left:382.621333pt;}
.x19{left:385.981333pt;}
.xd{left:387.586655pt;}
.x18{left:394.941333pt;}
.x12{left:408.386655pt;}
.x30{left:425.661333pt;}
.x26{left:444.221333pt;}
.x27{left:451.741333pt;}
.x3c{left:453.821333pt;}
.x1b{left:454.781333pt;}
.x46{left:459.133333pt;}
.x17{left:473.341333pt;}
.x24{left:483.741333pt;}
.x40{left:498.341333pt;}
.x2d{left:499.461333pt;}
.xf{left:512.253322pt;}
.x3f{left:521.221333pt;}
.x15{left:535.941333pt;}
.x3b{left:540.101333pt;}
.x1a{left:549.541333pt;}
.x16{left:559.141333pt;}
.x2e{left:560.901333pt;}
.x11{left:582.426655pt;}
.x2{left:658.053322pt;}
.x3{left:671.973322pt;}
.x41{left:679.653322pt;}
.x4f{left:688.613322pt;}
}




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