
    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_2632dda03f2aae41a056ef9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_5fc40148d41c32de4fc38276.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_0461a4b93f02dc10e40fa202.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_0714269c47e0639c6dc263c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.783691;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_30d4ec8ebe122d8f934b31cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_827ee86b304cf9191cfb7b0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102051;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_d5be48199a1b555d8cc982e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_bb181c3537c7f3f7d96293cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_0967b71deb8b0ea1c827ddaf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dcad143d02fd67952483dc5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e67fbeb893c4dc38fabca8b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3db84039c0d0ebd5bcafbdcf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.769531;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_66924da09d25b6d3be6726e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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_b3102e377efb3ec9b37c03b6.woff2')format("woff");}.fff{font-family:fff;line-height:1.071777;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_f351eb7387acc1f323fb0724.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.071777;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_f2e60b30c994990b4c81900c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_3faba841ed7fd2edf5ed9012.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7f6f8313c676ff440a1e139d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.945312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b15f6bd32bf375e719248f44.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_55e66157849f763e300d889f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.853516;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:54.900000px;}
.ls10{letter-spacing:-1.620000px;}
.ls1f{letter-spacing:-1.026000px;}
.ls13{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.430800px;}
.lse{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.348600px;}
.ls28{letter-spacing:-0.213000px;}
.lsc{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.168600px;}
.ls1c{letter-spacing:-0.140400px;}
.ls27{letter-spacing:-0.123000px;}
.ls14{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.053280px;}
.ls29{letter-spacing:-0.045360px;}
.ls8{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.lsf{letter-spacing:0.036000px;}
.ls1e{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.069000px;}
.ls18{letter-spacing:0.070560px;}
.ls1a{letter-spacing:0.107400px;}
.ls15{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.147600px;}
.ls19{letter-spacing:0.157200px;}
.ls16{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.225600px;}
.ls1d{letter-spacing:0.245400px;}
.ls2{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.409824px;}
.ls2a{letter-spacing:0.524160px;}
.ls23{letter-spacing:24.534720px;}
.ls3{letter-spacing:30.147456px;}
.ls4{letter-spacing:30.260640px;}
.ls24{letter-spacing:36.540000px;}
.ls7{letter-spacing:38.646576px;}
.ls11{letter-spacing:68.205600px;}
.ls12{letter-spacing:68.256000px;}
.ls2d{letter-spacing:70.200000px;}
.ls33{letter-spacing:101.844000px;}
.ls32{letter-spacing:105.825600px;}
.ls31{letter-spacing:105.876000px;}
.ls2f{letter-spacing:111.549600px;}
.ls2e{letter-spacing:111.600000px;}
.ls2b{letter-spacing:121.491360px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(11,53,111),0 0.015em rgb(11,53,111),0.015em 0 rgb(11,53,111),0 -0.015em  rgb(11,53,111);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(11,53,111);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-192.240000px;}
.ws38{word-spacing:-144.000000px;}
.wsa{word-spacing:-108.144000px;}
.wsb{word-spacing:-108.000000px;}
.ws21{word-spacing:-84.384000px;}
.ws18{word-spacing:-84.240000px;}
.ws5{word-spacing:-44.984160px;}
.ws37{word-spacing:-32.544000px;}
.ws2a{word-spacing:-26.463840px;}
.ws29{word-spacing:-26.425296px;}
.ws2b{word-spacing:-26.277696px;}
.ws20{word-spacing:-25.709760px;}
.ws1e{word-spacing:-24.624000px;}
.ws15{word-spacing:-24.444000px;}
.ws1b{word-spacing:-24.440544px;}
.ws7{word-spacing:-24.408000px;}
.ws8{word-spacing:-24.372000px;}
.ws13{word-spacing:-24.336000px;}
.ws14{word-spacing:-24.048000px;}
.ws17{word-spacing:-23.508000px;}
.ws36{word-spacing:-23.036400px;}
.ws33{word-spacing:-22.998216px;}
.ws16{word-spacing:-22.788000px;}
.ws2f{word-spacing:-21.744000px;}
.ws12{word-spacing:-21.710760px;}
.ws10{word-spacing:-21.674304px;}
.wsf{word-spacing:-21.641760px;}
.ws2e{word-spacing:-21.564000px;}
.ws11{word-spacing:-21.473160px;}
.ws2d{word-spacing:-21.240000px;}
.ws30{word-spacing:-21.198000px;}
.ws26{word-spacing:-19.283640px;}
.ws22{word-spacing:-19.195440px;}
.ws23{word-spacing:-19.145640px;}
.ws27{word-spacing:-19.103040px;}
.ws19{word-spacing:-19.038240px;}
.ws25{word-spacing:-18.897840px;}
.ws24{word-spacing:-18.689640px;}
.ws28{word-spacing:-18.012240px;}
.ws1{word-spacing:-16.613280px;}
.ws2{word-spacing:-16.506480px;}
.ws1f{word-spacing:-16.272000px;}
.ws31{word-spacing:-16.200000px;}
.ws6{word-spacing:-5.291520px;}
.ws4{word-spacing:-1.037760px;}
.ws3{word-spacing:-0.666000px;}
.ws9{word-spacing:-0.084240px;}
.ws2c{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws34{word-spacing:0.322776px;}
.ws35{word-spacing:1.222776px;}
.ws1d{word-spacing:55.728000px;}
.ws1c{word-spacing:55.805760px;}
.ws32{word-spacing:425.403120px;}
.wsd{word-spacing:881.874960px;}
.wse{word-spacing:888.804000px;}
.wsc{word-spacing:926.525040px;}
._a{margin-left:-3286.129008px;}
._4{margin-left:-15.994656px;}
._e{margin-left:-12.303360px;}
._10{margin-left:-10.584000px;}
._f{margin-left:-7.695360px;}
._5{margin-left:-5.891760px;}
._1{margin-left:-4.500720px;}
._8{margin-left:-3.223872px;}
._0{margin-left:-1.627920px;}
._2{width:1.037520px;}
._3{width:2.154240px;}
._6{width:3.693840px;}
._d{width:4.903920px;}
._13{width:5.993136px;}
._12{width:6.994800px;}
._11{width:9.804480px;}
._17{width:12.484560px;}
._16{width:13.985040px;}
._18{width:24.875760px;}
._19{width:26.127360px;}
._1a{width:31.896000px;}
._1b{width:33.772080px;}
._9{width:36.731280px;}
._14{width:40.544640px;}
._15{width:41.755440px;}
._c{width:43.026000px;}
._b{width:44.100000px;}
._7{width:1897.146960px;}
.fc9{color:transparent;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(17,17,17);}
.fc6{color:rgb(61,65,51);}
.fc5{color:rgb(68,68,68);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(36,36,36);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(11,53,111);}
.fc0{color:rgb(60,144,197);}
.fs4{font-size:59.760000px;}
.fs14{font-size:66.240000px;}
.fs11{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fsa{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs16{font-size:90.000000px;}
.fs0{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs15{font-size:105.120000px;}
.fs9{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs10{font-size:113.760000px;}
.fsf{font-size:113.904000px;}
.fs3{font-size:120.240000px;}
.fse{font-size:131.760000px;}
.fs17{font-size:135.360000px;}
.fs18{font-size:135.504000px;}
.fs1a{font-size:144.000000px;}
.fs1b{font-size:144.144000px;}
.fs7{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs8{font-size:174.384000px;}
.fs19{font-size:180.000000px;}
.fs5{font-size:192.240000px;}
.fsd{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs1c{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:19.116000px;}
.y5e{bottom:54.504000px;}
.y52{bottom:64.080000px;}
.y4f{bottom:67.536000px;}
.ya8{bottom:67.644000px;}
.ya6{bottom:67.788000px;}
.y42{bottom:69.228000px;}
.y1{bottom:74.628000px;}
.yc2{bottom:74.880000px;}
.y5d{bottom:86.904000px;}
.y51{bottom:89.280000px;}
.y36{bottom:94.680000px;}
.y25{bottom:94.710000px;}
.y22{bottom:94.755000px;}
.y31{bottom:94.830000px;}
.ya5{bottom:96.588000px;}
.y106{bottom:98.208000px;}
.yc1{bottom:100.080000px;}
.y41{bottom:101.628000px;}
.y50{bottom:114.480000px;}
.yee{bottom:117.972000px;}
.yc0{bottom:125.280000px;}
.ya4{bottom:125.388000px;}
.y105{bottom:127.008000px;}
.y6d{bottom:129.492000px;}
.y40{bottom:134.064000px;}
.y4c{bottom:138.852000px;}
.y6c{bottom:149.292000px;}
.ybf{bottom:150.480000px;}
.yfb{bottom:151.095000px;}
.y5c{bottom:151.710000px;}
.ya3{bottom:154.185000px;}
.y104{bottom:155.805000px;}
.yed{bottom:158.145000px;}
.y90{bottom:165.315000px;}
.ya9{bottom:170.535000px;}
.y4b{bottom:171.285000px;}
.ybe{bottom:175.680000px;}
.y4e{bottom:177.045000px;}
.ya2{bottom:182.985000px;}
.yec{bottom:183.345000px;}
.y5b{bottom:184.140000px;}
.y103{bottom:184.605000px;}
.y35{bottom:185.400000px;}
.y34{bottom:187.095000px;}
.y2e{bottom:187.170000px;}
.y16{bottom:190.335000px;}
.y68{bottom:193.680000px;}
.yfa{bottom:194.325000px;}
.y8f{bottom:197.715000px;}
.ybd{bottom:200.910000px;}
.y32{bottom:201.600000px;}
.y3c{bottom:203.010000px;}
.yd7{bottom:204.405000px;}
.y4d{bottom:209.445000px;}
.ya1{bottom:211.785000px;}
.y102{bottom:213.405000px;}
.y33{bottom:218.055000px;}
.y2d{bottom:218.130000px;}
.yde{bottom:218.445000px;}
.y6{bottom:222.090000px;}
.yeb{bottom:223.485000px;}
.y67{bottom:225.000000px;}
.ycc{bottom:228.495000px;}
.y8e{bottom:230.115000px;}
.y3b{bottom:233.820000px;}
.y26{bottom:234.180000px;}
.yf9{bottom:237.525000px;}
.yb5{bottom:238.605000px;}
.ya0{bottom:240.630000px;}
.y101{bottom:242.205000px;}
.y6b{bottom:246.750000px;}
.yea{bottom:248.685000px;}
.y3f{bottom:249.150000px;}
.y66{bottom:256.350000px;}
.yd6{bottom:258.225000px;}
.y8d{bottom:262.545000px;}
.y60{bottom:263.310000px;}
.y2c{bottom:264.060000px;}
.y3a{bottom:264.600000px;}
.ydd{bottom:265.110000px;}
.y15{bottom:266.115000px;}
.y6a{bottom:266.550000px;}
.ycb{bottom:267.375000px;}
.y5{bottom:269.430000px;}
.y100{bottom:271.050000px;}
.yb4{bottom:276.450000px;}
.y29{bottom:279.615000px;}
.y3e{bottom:279.930000px;}
.yf8{bottom:280.725000px;}
.ye9{bottom:289.005000px;}
.y82{bottom:293.115000px;}
.y8c{bottom:294.945000px;}
.y39{bottom:295.380000px;}
.y5f{bottom:295.890000px;}
.y14{bottom:298.515000px;}
.yb3{bottom:299.130000px;}
.ydc{bottom:299.850000px;}
.y30{bottom:309.420000px;}
.y28{bottom:310.395000px;}
.y3d{bottom:310.890000px;}
.yd5{bottom:312.225000px;}
.y136{bottom:312.765000px;}
.y81{bottom:318.315000px;}
.yca{bottom:321.225000px;}
.yf7{bottom:323.925000px;}
.ye4{bottom:325.830000px;}
.y38{bottom:326.160000px;}
.y8b{bottom:327.345000px;}
.yff{bottom:328.650000px;}
.ydb{bottom:334.590000px;}
.y46{bottom:335.265000px;}
.yb2{bottom:336.030000px;}
.y27{bottom:341.355000px;}
.y80{bottom:343.545000px;}
.y4{bottom:356.835000px;}
.y5a{bottom:356.940000px;}
.y37{bottom:357.120000px;}
.yfe{bottom:357.450000px;}
.ye3{bottom:358.230000px;}
.y8a{bottom:359.745000px;}
.yc9{bottom:360.105000px;}
.ye6{bottom:360.360000px;}
.yb1{bottom:362.850000px;}
.y13{bottom:363.345000px;}
.yd4{bottom:366.090000px;}
.y69{bottom:366.690000px;}
.yf6{bottom:367.170000px;}
.y2b{bottom:372.060000px;}
.yfd{bottom:386.250000px;}
.yb0{bottom:390.570000px;}
.y89{bottom:392.145000px;}
.ye5{bottom:392.760000px;}
.y7f{bottom:393.945000px;}
.y11d{bottom:395.070000px;}
.y59{bottom:403.560000px;}
.yd3{bottom:404.970000px;}
.y1e{bottom:405.435000px;}
.y134{bottom:408.315000px;}
.ye8{bottom:408.675000px;}
.yf5{bottom:410.370000px;}
.yc{bottom:413.205000px;}
.yaf{bottom:413.250000px;}
.yc8{bottom:413.925000px;}
.yfc{bottom:415.050000px;}
.y3{bottom:415.155000px;}
.y12c{bottom:415.470000px;}
.y11c{bottom:423.870000px;}
.y88{bottom:424.590000px;}
.y135{bottom:427.575000px;}
.y12{bottom:428.145000px;}
.y9e{bottom:431.670000px;}
.y76{bottom:432.570000px;}
.y49{bottom:435.030000px;}
.y113{bottom:435.630000px;}
.y133{bottom:437.115000px;}
.y1d{bottom:437.835000px;}
.y12b{bottom:440.670000px;}
.ye7{bottom:441.075000px;}
.y4a{bottom:441.510000px;}
.yd2{bottom:443.850000px;}
.y7e{bottom:444.345000px;}
.y24{bottom:450.000000px;}
.y58{bottom:450.390000px;}
.y45{bottom:450.510000px;}
.yae{bottom:451.050000px;}
.y2f{bottom:451.230000px;}
.y75{bottom:452.370000px;}
.y11b{bottom:452.670000px;}
.yc7{bottom:452.850000px;}
.yf4{bottom:453.570000px;}
.y87{bottom:456.990000px;}
.y112{bottom:460.875000px;}
.y1c{bottom:470.235000px;}
.y2{bottom:473.475000px;}
.yb{bottom:473.505000px;}
.y71{bottom:481.110000px;}
.y11a{bottom:481.470000px;}
.ybb{bottom:481.575000px;}
.y9d{bottom:482.070000px;}
.y111{bottom:486.075000px;}
.y12a{bottom:491.070000px;}
.yb9{bottom:492.735000px;}
.y11{bottom:492.945000px;}
.yba{bottom:493.050000px;}
.y132{bottom:494.715000px;}
.y7d{bottom:494.745000px;}
.yf3{bottom:496.770000px;}
.yd1{bottom:497.670000px;}
.ye1{bottom:498.810000px;}
.y65{bottom:499.710000px;}
.y1b{bottom:502.635000px;}
.yc6{bottom:505.770000px;}
.y9c{bottom:507.270000px;}
.y96{bottom:509.400000px;}
.y119{bottom:510.300000px;}
.y110{bottom:511.275000px;}
.y70{bottom:512.430000px;}
.y21{bottom:512.460000px;}
.y57{bottom:515.910000px;}
.y129{bottom:516.270000px;}
.y7c{bottom:519.990000px;}
.yad{bottom:522.390000px;}
.y131{bottom:523.515000px;}
.yda{bottom:524.160000px;}
.ye0{bottom:531.210000px;}
.y9b{bottom:532.515000px;}
.ya{bottom:533.805000px;}
.y95{bottom:534.600000px;}
.y1a{bottom:535.035000px;}
.y10f{bottom:536.475000px;}
.y118{bottom:539.100000px;}
.yf2{bottom:540.000000px;}
.y128{bottom:541.515000px;}
.y6f{bottom:543.780000px;}
.y2a{bottom:544.575000px;}
.y64{bottom:546.330000px;}
.yc5{bottom:547.710000px;}
.y56{bottom:548.310000px;}
.yb7{bottom:548.970000px;}
.y74{bottom:549.870000px;}
.yd0{bottom:551.700000px;}
.y130{bottom:552.315000px;}
.y86{bottom:553.710000px;}
.y121{bottom:554.070000px;}
.yac{bottom:554.835000px;}
.y9a{bottom:557.715000px;}
.y10{bottom:557.790000px;}
.y94{bottom:559.800000px;}
.y10e{bottom:561.675000px;}
.y44{bottom:565.710000px;}
.y127{bottom:566.715000px;}
.y19{bottom:567.465000px;}
.y117{bottom:567.900000px;}
.y73{bottom:569.670000px;}
.y7b{bottom:570.390000px;}
.y78{bottom:570.930000px;}
.yb6{bottom:574.170000px;}
.y6e{bottom:575.100000px;}
.y12f{bottom:581.145000px;}
.y99{bottom:582.915000px;}
.yf1{bottom:583.200000px;}
.y93{bottom:585.030000px;}
.yd9{bottom:585.900000px;}
.y85{bottom:586.155000px;}
.y120{bottom:586.515000px;}
.y10d{bottom:586.875000px;}
.yab{bottom:587.235000px;}
.yc4{bottom:590.910000px;}
.y126{bottom:591.915000px;}
.y108{bottom:592.050000px;}
.y63{bottom:592.995000px;}
.ye2{bottom:594.030000px;}
.y9{bottom:594.330000px;}
.y7a{bottom:595.590000px;}
.y116{bottom:596.700000px;}
.y18{bottom:599.865000px;}
.y77{bottom:603.330000px;}
.ycf{bottom:605.520000px;}
.y23{bottom:607.215000px;}
.y98{bottom:608.115000px;}
.y12e{bottom:609.945000px;}
.y92{bottom:610.230000px;}
.y10c{bottom:612.075000px;}
.y55{bottom:613.110000px;}
.y125{bottom:617.115000px;}
.y84{bottom:618.555000px;}
.y11f{bottom:618.915000px;}
.yaa{bottom:619.635000px;}
.yb8{bottom:621.150000px;}
.yf{bottom:622.590000px;}
.y115{bottom:625.500000px;}
.yf0{bottom:626.400000px;}
.yc3{bottom:629.790000px;}
.y17{bottom:632.265000px;}
.y107{bottom:635.250000px;}
.y10b{bottom:637.305000px;}
.y12d{bottom:638.745000px;}
.y20{bottom:638.925000px;}
.y62{bottom:639.795000px;}
.y124{bottom:642.315000px;}
.yce{bottom:644.400000px;}
.y54{bottom:645.555000px;}
.y79{bottom:645.990000px;}
.yd8{bottom:647.640000px;}
.y83{bottom:650.955000px;}
.y11e{bottom:651.315000px;}
.y114{bottom:654.300000px;}
.ye{bottom:654.990000px;}
.ybc{bottom:659.190000px;}
.y91{bottom:660.630000px;}
.y97{bottom:660.855000px;}
.y10a{bottom:662.505000px;}
.y123{bottom:667.515000px;}
.y72{bottom:669.810000px;}
.y43{bottom:718.845000px;}
.y53{bottom:719.430000px;}
.ycd{bottom:720.285000px;}
.y8{bottom:721.545000px;}
.y9f{bottom:721.590000px;}
.y109{bottom:721.650000px;}
.y61{bottom:721.905000px;}
.yd{bottom:722.910000px;}
.ydf{bottom:723.810000px;}
.yef{bottom:723.885000px;}
.y1f{bottom:725.505000px;}
.y47{bottom:726.690000px;}
.y48{bottom:726.840000px;}
.ya7{bottom:728.490000px;}
.y122{bottom:740.490000px;}
.h5{height:44.936719px;}
.h28{height:48.871406px;}
.h1{height:69.996445px;}
.h1d{height:71.613281px;}
.h1e{height:71.756508px;}
.h2e{height:72.846211px;}
.h2d{height:72.970734px;}
.h29{height:82.107422px;}
.h2a{height:82.216898px;}
.h22{height:82.634766px;}
.h23{height:82.744945px;}
.h27{height:82.808086px;}
.h26{height:82.932609px;}
.h1f{height:83.787539px;}
.h21{height:83.930766px;}
.hc{height:86.255508px;}
.h20{height:86.402953px;}
.h15{height:86.906250px;}
.h4{height:87.890273px;}
.h24{height:89.806641px;}
.h10{height:95.245664px;}
.h12{height:95.388891px;}
.he{height:98.051133px;}
.h30{height:105.257812px;}
.hb{height:107.419922px;}
.hd{height:107.563148px;}
.ha{height:110.583984px;}
.h1a{height:110.731430px;}
.h1c{height:113.148984px;}
.h1b{height:113.292211px;}
.h25{height:123.116836px;}
.h35{height:127.467211px;}
.h19{height:128.478867px;}
.h2f{height:131.572266px;}
.h2c{height:138.687539px;}
.h2b{height:140.519180px;}
.h36{height:140.624437px;}
.h31{height:143.226562px;}
.h32{height:143.369789px;}
.h33{height:147.445312px;}
.h34{height:147.592758px;}
.h2{height:162.421875px;}
.h3{height:162.530156px;}
.h8{height:166.858945px;}
.h7{height:167.002172px;}
.h9{height:170.041430px;}
.h6{height:187.452773px;}
.h18{height:191.207461px;}
.h17{height:191.350688px;}
.h16{height:196.839492px;}
.h37{height:198.696094px;}
.hf{height:206.280000px;}
.h13{height:422.100000px;}
.h11{height:575.820000px;}
.h14{height:607.320000px;}
.h0{height:810.000000px;}
.w2{width:295.740000px;}
.w3{width:295.920000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x10{left:1.155000px;}
.x59{left:19.079979px;}
.x53{left:46.043979px;}
.x55{left:48.923979px;}
.x5a{left:52.919979px;}
.x27{left:59.291979px;}
.x5c{left:60.443979px;}
.x54{left:86.543979px;}
.x5d{left:91.259979px;}
.x7{left:101.951979px;}
.x23{left:115.595979px;}
.x26{left:133.163979px;}
.x1b{left:142.455000px;}
.x24{left:160.559979px;}
.x18{left:207.975000px;}
.x1e{left:217.799979px;}
.x46{left:222.449979px;}
.x3c{left:225.329979px;}
.xf{left:226.440000px;}
.x4a{left:228.809979px;}
.x2b{left:232.994979px;}
.x48{left:234.389979px;}
.x35{left:238.964979px;}
.x37{left:240.224979px;}
.x29{left:245.549979px;}
.xa{left:246.674979px;}
.x38{left:248.609979px;}
.x9{left:251.069979px;}
.x57{left:257.069979px;}
.x49{left:261.389979px;}
.x3e{left:266.219979px;}
.x47{left:272.189979px;}
.x56{left:280.469979px;}
.x36{left:292.964979px;}
.x20{left:315.929979px;}
.x4f{left:325.514979px;}
.x50{left:332.174979px;}
.xe{left:336.059979px;}
.x3f{left:347.249979px;}
.x4{left:412.994979px;}
.x2{left:420.014979px;}
.x44{left:440.249979px;}
.x52{left:459.389979px;}
.x5b{left:471.749979px;}
.x3{left:475.484979px;}
.x58{left:478.004979px;}
.x3d{left:496.364979px;}
.x11{left:522.000000px;}
.x21{left:532.289979px;}
.x8{left:534.494979px;}
.x4c{left:538.709979px;}
.x42{left:550.619979px;}
.x22{left:581.144979px;}
.xd{left:586.694979px;}
.x1f{left:609.629979px;}
.x1a{left:636.014979px;}
.x12{left:639.794979px;}
.x3a{left:656.534979px;}
.x3b{left:662.474979px;}
.x40{left:665.069979px;}
.x41{left:669.929979px;}
.x17{left:685.874979px;}
.x45{left:690.119979px;}
.x4b{left:691.664979px;}
.x19{left:693.974979px;}
.x51{left:716.039979px;}
.xb{left:734.609979px;}
.x1{left:736.664979px;}
.x28{left:739.334979px;}
.x2f{left:759.809979px;}
.x33{left:760.934979px;}
.x13{left:817.740000px;}
.x1c{left:862.409979px;}
.x39{left:896.939979px;}
.x5{left:906.119979px;}
.x43{left:924.449979px;}
.x2a{left:945.434979px;}
.xc{left:952.559979px;}
.x4d{left:1016.174979px;}
.x2d{left:1027.544979px;}
.x30{left:1030.244979px;}
.x4e{left:1033.274979px;}
.x6{left:1034.459979px;}
.x2c{left:1043.744979px;}
.x32{left:1048.244979px;}
.x2e{left:1064.804979px;}
.x31{left:1069.529979px;}
.x14{left:1113.300000px;}
.x34{left:1221.014979px;}
.x16{left:1230.659979px;}
.x15{left:1233.719979px;}
.x25{left:1251.149979px;}
.x1d{left:1274.759979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:48.800000pt;}
.ls10{letter-spacing:-1.440000pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls13{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.382933pt;}
.lse{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.309867pt;}
.ls28{letter-spacing:-0.189333pt;}
.lsc{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.149867pt;}
.ls1c{letter-spacing:-0.124800pt;}
.ls27{letter-spacing:-0.109333pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls29{letter-spacing:-0.040320pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.lsf{letter-spacing:0.032000pt;}
.ls1e{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.061333pt;}
.ls18{letter-spacing:0.062720pt;}
.ls1a{letter-spacing:0.095467pt;}
.ls15{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.131200pt;}
.ls19{letter-spacing:0.139733pt;}
.ls16{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.200533pt;}
.ls1d{letter-spacing:0.218133pt;}
.ls2{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.364288pt;}
.ls2a{letter-spacing:0.465920pt;}
.ls23{letter-spacing:21.808640pt;}
.ls3{letter-spacing:26.797739pt;}
.ls4{letter-spacing:26.898347pt;}
.ls24{letter-spacing:32.480000pt;}
.ls7{letter-spacing:34.352512pt;}
.ls11{letter-spacing:60.627200pt;}
.ls12{letter-spacing:60.672000pt;}
.ls2d{letter-spacing:62.400000pt;}
.ls33{letter-spacing:90.528000pt;}
.ls32{letter-spacing:94.067200pt;}
.ls31{letter-spacing:94.112000pt;}
.ls2f{letter-spacing:99.155200pt;}
.ls2e{letter-spacing:99.200000pt;}
.ls2b{letter-spacing:107.992320pt;}
.ws1a{word-spacing:-170.880000pt;}
.ws38{word-spacing:-128.000000pt;}
.wsa{word-spacing:-96.128000pt;}
.wsb{word-spacing:-96.000000pt;}
.ws21{word-spacing:-75.008000pt;}
.ws18{word-spacing:-74.880000pt;}
.ws5{word-spacing:-39.985920pt;}
.ws37{word-spacing:-28.928000pt;}
.ws2a{word-spacing:-23.523413pt;}
.ws29{word-spacing:-23.489152pt;}
.ws2b{word-spacing:-23.357952pt;}
.ws20{word-spacing:-22.853120pt;}
.ws1e{word-spacing:-21.888000pt;}
.ws15{word-spacing:-21.728000pt;}
.ws1b{word-spacing:-21.724928pt;}
.ws7{word-spacing:-21.696000pt;}
.ws8{word-spacing:-21.664000pt;}
.ws13{word-spacing:-21.632000pt;}
.ws14{word-spacing:-21.376000pt;}
.ws17{word-spacing:-20.896000pt;}
.ws36{word-spacing:-20.476800pt;}
.ws33{word-spacing:-20.442859pt;}
.ws16{word-spacing:-20.256000pt;}
.ws2f{word-spacing:-19.328000pt;}
.ws12{word-spacing:-19.298453pt;}
.ws10{word-spacing:-19.266048pt;}
.wsf{word-spacing:-19.237120pt;}
.ws2e{word-spacing:-19.168000pt;}
.ws11{word-spacing:-19.087253pt;}
.ws2d{word-spacing:-18.880000pt;}
.ws30{word-spacing:-18.842667pt;}
.ws26{word-spacing:-17.141013pt;}
.ws22{word-spacing:-17.062613pt;}
.ws23{word-spacing:-17.018347pt;}
.ws27{word-spacing:-16.980480pt;}
.ws19{word-spacing:-16.922880pt;}
.ws25{word-spacing:-16.798080pt;}
.ws24{word-spacing:-16.613013pt;}
.ws28{word-spacing:-16.010880pt;}
.ws1{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.672427pt;}
.ws1f{word-spacing:-14.464000pt;}
.ws31{word-spacing:-14.400000pt;}
.ws6{word-spacing:-4.703573pt;}
.ws4{word-spacing:-0.922453pt;}
.ws3{word-spacing:-0.592000pt;}
.ws9{word-spacing:-0.074880pt;}
.ws2c{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws34{word-spacing:0.286912pt;}
.ws35{word-spacing:1.086912pt;}
.ws1d{word-spacing:49.536000pt;}
.ws1c{word-spacing:49.605120pt;}
.ws32{word-spacing:378.136107pt;}
.wsd{word-spacing:783.888853pt;}
.wse{word-spacing:790.048000pt;}
.wsc{word-spacing:823.577813pt;}
._a{margin-left:-2921.003563pt;}
._4{margin-left:-14.217472pt;}
._e{margin-left:-10.936320pt;}
._10{margin-left:-9.408000pt;}
._f{margin-left:-6.840320pt;}
._5{margin-left:-5.237120pt;}
._1{margin-left:-4.000640pt;}
._8{margin-left:-2.865664pt;}
._0{margin-left:-1.447040pt;}
._2{width:0.922240pt;}
._3{width:1.914880pt;}
._6{width:3.283413pt;}
._d{width:4.359040pt;}
._13{width:5.327232pt;}
._12{width:6.217600pt;}
._11{width:8.715093pt;}
._17{width:11.097387pt;}
._16{width:12.431147pt;}
._18{width:22.111787pt;}
._19{width:23.224320pt;}
._1a{width:28.352000pt;}
._1b{width:30.019627pt;}
._9{width:32.650027pt;}
._14{width:36.039680pt;}
._15{width:37.115947pt;}
._c{width:38.245333pt;}
._b{width:39.200000pt;}
._7{width:1686.352853pt;}
.fs4{font-size:53.120000pt;}
.fs14{font-size:58.880000pt;}
.fs11{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fsa{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs16{font-size:80.000000pt;}
.fs0{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs15{font-size:93.440000pt;}
.fs9{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs10{font-size:101.120000pt;}
.fsf{font-size:101.248000pt;}
.fs3{font-size:106.880000pt;}
.fse{font-size:117.120000pt;}
.fs17{font-size:120.320000pt;}
.fs18{font-size:120.448000pt;}
.fs1a{font-size:128.000000pt;}
.fs1b{font-size:128.128000pt;}
.fs7{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs8{font-size:155.008000pt;}
.fs19{font-size:160.000000pt;}
.fs5{font-size:170.880000pt;}
.fsd{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs1c{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:16.992000pt;}
.y5e{bottom:48.448000pt;}
.y52{bottom:56.960000pt;}
.y4f{bottom:60.032000pt;}
.ya8{bottom:60.128000pt;}
.ya6{bottom:60.256000pt;}
.y42{bottom:61.536000pt;}
.y1{bottom:66.336000pt;}
.yc2{bottom:66.560000pt;}
.y5d{bottom:77.248000pt;}
.y51{bottom:79.360000pt;}
.y36{bottom:84.160000pt;}
.y25{bottom:84.186667pt;}
.y22{bottom:84.226667pt;}
.y31{bottom:84.293333pt;}
.ya5{bottom:85.856000pt;}
.y106{bottom:87.296000pt;}
.yc1{bottom:88.960000pt;}
.y41{bottom:90.336000pt;}
.y50{bottom:101.760000pt;}
.yee{bottom:104.864000pt;}
.yc0{bottom:111.360000pt;}
.ya4{bottom:111.456000pt;}
.y105{bottom:112.896000pt;}
.y6d{bottom:115.104000pt;}
.y40{bottom:119.168000pt;}
.y4c{bottom:123.424000pt;}
.y6c{bottom:132.704000pt;}
.ybf{bottom:133.760000pt;}
.yfb{bottom:134.306667pt;}
.y5c{bottom:134.853333pt;}
.ya3{bottom:137.053333pt;}
.y104{bottom:138.493333pt;}
.yed{bottom:140.573333pt;}
.y90{bottom:146.946667pt;}
.ya9{bottom:151.586667pt;}
.y4b{bottom:152.253333pt;}
.ybe{bottom:156.160000pt;}
.y4e{bottom:157.373333pt;}
.ya2{bottom:162.653333pt;}
.yec{bottom:162.973333pt;}
.y5b{bottom:163.680000pt;}
.y103{bottom:164.093333pt;}
.y35{bottom:164.800000pt;}
.y34{bottom:166.306667pt;}
.y2e{bottom:166.373333pt;}
.y16{bottom:169.186667pt;}
.y68{bottom:172.160000pt;}
.yfa{bottom:172.733333pt;}
.y8f{bottom:175.746667pt;}
.ybd{bottom:178.586667pt;}
.y32{bottom:179.200000pt;}
.y3c{bottom:180.453333pt;}
.yd7{bottom:181.693333pt;}
.y4d{bottom:186.173333pt;}
.ya1{bottom:188.253333pt;}
.y102{bottom:189.693333pt;}
.y33{bottom:193.826667pt;}
.y2d{bottom:193.893333pt;}
.yde{bottom:194.173333pt;}
.y6{bottom:197.413333pt;}
.yeb{bottom:198.653333pt;}
.y67{bottom:200.000000pt;}
.ycc{bottom:203.106667pt;}
.y8e{bottom:204.546667pt;}
.y3b{bottom:207.840000pt;}
.y26{bottom:208.160000pt;}
.yf9{bottom:211.133333pt;}
.yb5{bottom:212.093333pt;}
.ya0{bottom:213.893333pt;}
.y101{bottom:215.293333pt;}
.y6b{bottom:219.333333pt;}
.yea{bottom:221.053333pt;}
.y3f{bottom:221.466667pt;}
.y66{bottom:227.866667pt;}
.yd6{bottom:229.533333pt;}
.y8d{bottom:233.373333pt;}
.y60{bottom:234.053333pt;}
.y2c{bottom:234.720000pt;}
.y3a{bottom:235.200000pt;}
.ydd{bottom:235.653333pt;}
.y15{bottom:236.546667pt;}
.y6a{bottom:236.933333pt;}
.ycb{bottom:237.666667pt;}
.y5{bottom:239.493333pt;}
.y100{bottom:240.933333pt;}
.yb4{bottom:245.733333pt;}
.y29{bottom:248.546667pt;}
.y3e{bottom:248.826667pt;}
.yf8{bottom:249.533333pt;}
.ye9{bottom:256.893333pt;}
.y82{bottom:260.546667pt;}
.y8c{bottom:262.173333pt;}
.y39{bottom:262.560000pt;}
.y5f{bottom:263.013333pt;}
.y14{bottom:265.346667pt;}
.yb3{bottom:265.893333pt;}
.ydc{bottom:266.533333pt;}
.y30{bottom:275.040000pt;}
.y28{bottom:275.906667pt;}
.y3d{bottom:276.346667pt;}
.yd5{bottom:277.533333pt;}
.y136{bottom:278.013333pt;}
.y81{bottom:282.946667pt;}
.yca{bottom:285.533333pt;}
.yf7{bottom:287.933333pt;}
.ye4{bottom:289.626667pt;}
.y38{bottom:289.920000pt;}
.y8b{bottom:290.973333pt;}
.yff{bottom:292.133333pt;}
.ydb{bottom:297.413333pt;}
.y46{bottom:298.013333pt;}
.yb2{bottom:298.693333pt;}
.y27{bottom:303.426667pt;}
.y80{bottom:305.373333pt;}
.y4{bottom:317.186667pt;}
.y5a{bottom:317.280000pt;}
.y37{bottom:317.440000pt;}
.yfe{bottom:317.733333pt;}
.ye3{bottom:318.426667pt;}
.y8a{bottom:319.773333pt;}
.yc9{bottom:320.093333pt;}
.ye6{bottom:320.320000pt;}
.yb1{bottom:322.533333pt;}
.y13{bottom:322.973333pt;}
.yd4{bottom:325.413333pt;}
.y69{bottom:325.946667pt;}
.yf6{bottom:326.373333pt;}
.y2b{bottom:330.720000pt;}
.yfd{bottom:343.333333pt;}
.yb0{bottom:347.173333pt;}
.y89{bottom:348.573333pt;}
.ye5{bottom:349.120000pt;}
.y7f{bottom:350.173333pt;}
.y11d{bottom:351.173333pt;}
.y59{bottom:358.720000pt;}
.yd3{bottom:359.973333pt;}
.y1e{bottom:360.386667pt;}
.y134{bottom:362.946667pt;}
.ye8{bottom:363.266667pt;}
.yf5{bottom:364.773333pt;}
.yc{bottom:367.293333pt;}
.yaf{bottom:367.333333pt;}
.yc8{bottom:367.933333pt;}
.yfc{bottom:368.933333pt;}
.y3{bottom:369.026667pt;}
.y12c{bottom:369.306667pt;}
.y11c{bottom:376.773333pt;}
.y88{bottom:377.413333pt;}
.y135{bottom:380.066667pt;}
.y12{bottom:380.573333pt;}
.y9e{bottom:383.706667pt;}
.y76{bottom:384.506667pt;}
.y49{bottom:386.693333pt;}
.y113{bottom:387.226667pt;}
.y133{bottom:388.546667pt;}
.y1d{bottom:389.186667pt;}
.y12b{bottom:391.706667pt;}
.ye7{bottom:392.066667pt;}
.y4a{bottom:392.453333pt;}
.yd2{bottom:394.533333pt;}
.y7e{bottom:394.973333pt;}
.y24{bottom:400.000000pt;}
.y58{bottom:400.346667pt;}
.y45{bottom:400.453333pt;}
.yae{bottom:400.933333pt;}
.y2f{bottom:401.093333pt;}
.y75{bottom:402.106667pt;}
.y11b{bottom:402.373333pt;}
.yc7{bottom:402.533333pt;}
.yf4{bottom:403.173333pt;}
.y87{bottom:406.213333pt;}
.y112{bottom:409.666667pt;}
.y1c{bottom:417.986667pt;}
.y2{bottom:420.866667pt;}
.yb{bottom:420.893333pt;}
.y71{bottom:427.653333pt;}
.y11a{bottom:427.973333pt;}
.ybb{bottom:428.066667pt;}
.y9d{bottom:428.506667pt;}
.y111{bottom:432.066667pt;}
.y12a{bottom:436.506667pt;}
.yb9{bottom:437.986667pt;}
.y11{bottom:438.173333pt;}
.yba{bottom:438.266667pt;}
.y132{bottom:439.746667pt;}
.y7d{bottom:439.773333pt;}
.yf3{bottom:441.573333pt;}
.yd1{bottom:442.373333pt;}
.ye1{bottom:443.386667pt;}
.y65{bottom:444.186667pt;}
.y1b{bottom:446.786667pt;}
.yc6{bottom:449.573333pt;}
.y9c{bottom:450.906667pt;}
.y96{bottom:452.800000pt;}
.y119{bottom:453.600000pt;}
.y110{bottom:454.466667pt;}
.y70{bottom:455.493333pt;}
.y21{bottom:455.520000pt;}
.y57{bottom:458.586667pt;}
.y129{bottom:458.906667pt;}
.y7c{bottom:462.213333pt;}
.yad{bottom:464.346667pt;}
.y131{bottom:465.346667pt;}
.yda{bottom:465.920000pt;}
.ye0{bottom:472.186667pt;}
.y9b{bottom:473.346667pt;}
.ya{bottom:474.493333pt;}
.y95{bottom:475.200000pt;}
.y1a{bottom:475.586667pt;}
.y10f{bottom:476.866667pt;}
.y118{bottom:479.200000pt;}
.yf2{bottom:480.000000pt;}
.y128{bottom:481.346667pt;}
.y6f{bottom:483.360000pt;}
.y2a{bottom:484.066667pt;}
.y64{bottom:485.626667pt;}
.yc5{bottom:486.853333pt;}
.y56{bottom:487.386667pt;}
.yb7{bottom:487.973333pt;}
.y74{bottom:488.773333pt;}
.yd0{bottom:490.400000pt;}
.y130{bottom:490.946667pt;}
.y86{bottom:492.186667pt;}
.y121{bottom:492.506667pt;}
.yac{bottom:493.186667pt;}
.y9a{bottom:495.746667pt;}
.y10{bottom:495.813333pt;}
.y94{bottom:497.600000pt;}
.y10e{bottom:499.266667pt;}
.y44{bottom:502.853333pt;}
.y127{bottom:503.746667pt;}
.y19{bottom:504.413333pt;}
.y117{bottom:504.800000pt;}
.y73{bottom:506.373333pt;}
.y7b{bottom:507.013333pt;}
.y78{bottom:507.493333pt;}
.yb6{bottom:510.373333pt;}
.y6e{bottom:511.200000pt;}
.y12f{bottom:516.573333pt;}
.y99{bottom:518.146667pt;}
.yf1{bottom:518.400000pt;}
.y93{bottom:520.026667pt;}
.yd9{bottom:520.800000pt;}
.y85{bottom:521.026667pt;}
.y120{bottom:521.346667pt;}
.y10d{bottom:521.666667pt;}
.yab{bottom:521.986667pt;}
.yc4{bottom:525.253333pt;}
.y126{bottom:526.146667pt;}
.y108{bottom:526.266667pt;}
.y63{bottom:527.106667pt;}
.ye2{bottom:528.026667pt;}
.y9{bottom:528.293333pt;}
.y7a{bottom:529.413333pt;}
.y116{bottom:530.400000pt;}
.y18{bottom:533.213333pt;}
.y77{bottom:536.293333pt;}
.ycf{bottom:538.240000pt;}
.y23{bottom:539.746667pt;}
.y98{bottom:540.546667pt;}
.y12e{bottom:542.173333pt;}
.y92{bottom:542.426667pt;}
.y10c{bottom:544.066667pt;}
.y55{bottom:544.986667pt;}
.y125{bottom:548.546667pt;}
.y84{bottom:549.826667pt;}
.y11f{bottom:550.146667pt;}
.yaa{bottom:550.786667pt;}
.yb8{bottom:552.133333pt;}
.yf{bottom:553.413333pt;}
.y115{bottom:556.000000pt;}
.yf0{bottom:556.800000pt;}
.yc3{bottom:559.813333pt;}
.y17{bottom:562.013333pt;}
.y107{bottom:564.666667pt;}
.y10b{bottom:566.493333pt;}
.y12d{bottom:567.773333pt;}
.y20{bottom:567.933333pt;}
.y62{bottom:568.706667pt;}
.y124{bottom:570.946667pt;}
.yce{bottom:572.800000pt;}
.y54{bottom:573.826667pt;}
.y79{bottom:574.213333pt;}
.yd8{bottom:575.680000pt;}
.y83{bottom:578.626667pt;}
.y11e{bottom:578.946667pt;}
.y114{bottom:581.600000pt;}
.ye{bottom:582.213333pt;}
.ybc{bottom:585.946667pt;}
.y91{bottom:587.226667pt;}
.y97{bottom:587.426667pt;}
.y10a{bottom:588.893333pt;}
.y123{bottom:593.346667pt;}
.y72{bottom:595.386667pt;}
.y43{bottom:638.973333pt;}
.y53{bottom:639.493333pt;}
.ycd{bottom:640.253333pt;}
.y8{bottom:641.373333pt;}
.y9f{bottom:641.413333pt;}
.y109{bottom:641.466667pt;}
.y61{bottom:641.693333pt;}
.yd{bottom:642.586667pt;}
.ydf{bottom:643.386667pt;}
.yef{bottom:643.453333pt;}
.y1f{bottom:644.893333pt;}
.y47{bottom:645.946667pt;}
.y48{bottom:646.080000pt;}
.ya7{bottom:647.546667pt;}
.y122{bottom:658.213333pt;}
.h5{height:39.943750pt;}
.h28{height:43.441250pt;}
.h1{height:62.219062pt;}
.h1d{height:63.656250pt;}
.h1e{height:63.783562pt;}
.h2e{height:64.752187pt;}
.h2d{height:64.862875pt;}
.h29{height:72.984375pt;}
.h2a{height:73.081688pt;}
.h22{height:73.453125pt;}
.h23{height:73.551063pt;}
.h27{height:73.607188pt;}
.h26{height:73.717875pt;}
.h1f{height:74.477812pt;}
.h21{height:74.605125pt;}
.hc{height:76.671562pt;}
.h20{height:76.802625pt;}
.h15{height:77.250000pt;}
.h4{height:78.124687pt;}
.h24{height:79.828125pt;}
.h10{height:84.662813pt;}
.h12{height:84.790125pt;}
.he{height:87.156562pt;}
.h30{height:93.562500pt;}
.hb{height:95.484375pt;}
.hd{height:95.611688pt;}
.ha{height:98.296875pt;}
.h1a{height:98.427937pt;}
.h1c{height:100.576875pt;}
.h1b{height:100.704187pt;}
.h25{height:109.437187pt;}
.h35{height:113.304188pt;}
.h19{height:114.203437pt;}
.h2f{height:116.953125pt;}
.h2c{height:123.277813pt;}
.h2b{height:124.905938pt;}
.h36{height:124.999500pt;}
.h31{height:127.312500pt;}
.h32{height:127.439813pt;}
.h33{height:131.062500pt;}
.h34{height:131.193562pt;}
.h2{height:144.375000pt;}
.h3{height:144.471250pt;}
.h8{height:148.319063pt;}
.h7{height:148.446375pt;}
.h9{height:151.147938pt;}
.h6{height:166.624687pt;}
.h18{height:169.962187pt;}
.h17{height:170.089500pt;}
.h16{height:174.968437pt;}
.h37{height:176.618750pt;}
.hf{height:183.360000pt;}
.h13{height:375.200000pt;}
.h11{height:511.840000pt;}
.h14{height:539.840000pt;}
.h0{height:720.000000pt;}
.w2{width:262.880000pt;}
.w3{width:263.040000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.026667pt;}
.x59{left:16.959981pt;}
.x53{left:40.927981pt;}
.x55{left:43.487981pt;}
.x5a{left:47.039981pt;}
.x27{left:52.703981pt;}
.x5c{left:53.727981pt;}
.x54{left:76.927981pt;}
.x5d{left:81.119981pt;}
.x7{left:90.623981pt;}
.x23{left:102.751981pt;}
.x26{left:118.367981pt;}
.x1b{left:126.626667pt;}
.x24{left:142.719981pt;}
.x18{left:184.866667pt;}
.x1e{left:193.599981pt;}
.x46{left:197.733314pt;}
.x3c{left:200.293314pt;}
.xf{left:201.280000pt;}
.x4a{left:203.386648pt;}
.x2b{left:207.106648pt;}
.x48{left:208.346648pt;}
.x35{left:212.413314pt;}
.x37{left:213.533314pt;}
.x29{left:218.266648pt;}
.xa{left:219.266648pt;}
.x38{left:220.986648pt;}
.x9{left:223.173314pt;}
.x57{left:228.506648pt;}
.x49{left:232.346648pt;}
.x3e{left:236.639981pt;}
.x47{left:241.946648pt;}
.x56{left:249.306648pt;}
.x36{left:260.413314pt;}
.x20{left:280.826648pt;}
.x4f{left:289.346648pt;}
.x50{left:295.266648pt;}
.xe{left:298.719981pt;}
.x3f{left:308.666648pt;}
.x4{left:367.106648pt;}
.x2{left:373.346648pt;}
.x44{left:391.333314pt;}
.x52{left:408.346648pt;}
.x5b{left:419.333314pt;}
.x3{left:422.653314pt;}
.x58{left:424.893314pt;}
.x3d{left:441.213314pt;}
.x11{left:464.000000pt;}
.x21{left:473.146648pt;}
.x8{left:475.106648pt;}
.x4c{left:478.853314pt;}
.x42{left:489.439981pt;}
.x22{left:516.573314pt;}
.xd{left:521.506648pt;}
.x1f{left:541.893314pt;}
.x1a{left:565.346648pt;}
.x12{left:568.706648pt;}
.x3a{left:583.586648pt;}
.x3b{left:588.866648pt;}
.x40{left:591.173314pt;}
.x41{left:595.493314pt;}
.x17{left:609.666648pt;}
.x45{left:613.439981pt;}
.x4b{left:614.813314pt;}
.x19{left:616.866648pt;}
.x51{left:636.479981pt;}
.xb{left:652.986648pt;}
.x1{left:654.813314pt;}
.x28{left:657.186648pt;}
.x2f{left:675.386648pt;}
.x33{left:676.386648pt;}
.x13{left:726.880000pt;}
.x1c{left:766.586648pt;}
.x39{left:797.279981pt;}
.x5{left:805.439981pt;}
.x43{left:821.733314pt;}
.x2a{left:840.386648pt;}
.xc{left:846.719981pt;}
.x4d{left:903.266648pt;}
.x2d{left:913.373314pt;}
.x30{left:915.773314pt;}
.x4e{left:918.466648pt;}
.x6{left:919.519981pt;}
.x2c{left:927.773314pt;}
.x32{left:931.773314pt;}
.x2e{left:946.493314pt;}
.x31{left:950.693314pt;}
.x14{left:989.600000pt;}
.x34{left:1085.346648pt;}
.x16{left:1093.919981pt;}
.x15{left:1096.639981pt;}
.x25{left:1112.133314pt;}
.x1d{left:1133.119981pt;}
}




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