
    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_2e48304d0ce52498d72c3e55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042222;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_f8f2985068280ffc7f168e69.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.844000;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_1c360a78ce731262313793c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_adf7fbe2b6c3b2d3e34fcdb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914667;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666667;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_3feb60fb049553106c682153.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941778;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_fa1b95d301be53391bd81605.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914667;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666667;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_193664a6602872c4194c998b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12b4c468b50b1e53ebd27219.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666667;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_193664a6602872c4194c998b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_20937fc29a16b4da9097cfe1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_84cd2a4193e8a2749ab9f158.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7d317b1869a5c5d747f0f4f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908444;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_5e71bcdedc2b61be8fd74742.woff2')format("woff");}.fff{font-family:fff;line-height:0.926270;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_12b4c468b50b1e53ebd27219.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666667;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_2a40076d9a113cd43c952159.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914667;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.999993px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.159999px;}
.v1{vertical-align:20.879992px;}
.ls42{letter-spacing:-6.719997px;}
.ls46{letter-spacing:-5.010010px;}
.ls45{letter-spacing:-4.746010px;}
.ls43{letter-spacing:-2.051999px;}
.ls19{letter-spacing:-0.648000px;}
.ls3d{letter-spacing:-0.465000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.349200px;}
.ls35{letter-spacing:-0.342600px;}
.ls3f{letter-spacing:-0.319800px;}
.ls1{letter-spacing:-0.306000px;}
.ls30{letter-spacing:-0.285600px;}
.ls44{letter-spacing:-0.265800px;}
.ls1f{letter-spacing:-0.258000px;}
.ls21{letter-spacing:-0.223200px;}
.ls3{letter-spacing:-0.220200px;}
.ls38{letter-spacing:-0.180000px;}
.ls47{letter-spacing:-0.160800px;}
.ls18{letter-spacing:-0.154800px;}
.ls3b{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.129600px;}
.ls10{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.069600px;}
.ls2{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000003px;}
.ls34{letter-spacing:0.012960px;}
.ls25{letter-spacing:0.038880px;}
.lsa{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.060480px;}
.ls2f{letter-spacing:0.084000px;}
.ls5{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.129600px;}
.ls27{letter-spacing:0.140350px;}
.ls17{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.149766px;}
.ls3c{letter-spacing:0.151874px;}
.ls7{letter-spacing:0.154080px;}
.ls8{letter-spacing:0.158400px;}
.ls37{letter-spacing:0.194400px;}
.ls41{letter-spacing:0.208800px;}
.ls4{letter-spacing:0.229800px;}
.ls36{letter-spacing:0.253200px;}
.ls15{letter-spacing:0.294600px;}
.ls22{letter-spacing:0.314400px;}
.lse{letter-spacing:0.315360px;}
.ls2c{letter-spacing:0.370764px;}
.lsd{letter-spacing:0.370800px;}
.ls40{letter-spacing:0.400200px;}
.ls16{letter-spacing:0.462000px;}
.ls13{letter-spacing:0.562201px;}
.ls3e{letter-spacing:0.732000px;}
.ls3a{letter-spacing:0.828000px;}
.ls0{letter-spacing:0.846000px;}
.ls11{letter-spacing:0.899970px;}
.ls28{letter-spacing:1.696255px;}
.ls33{letter-spacing:3.379609px;}
.ls2e{letter-spacing:3.531564px;}
.lsf{letter-spacing:4.971564px;}
.lsc{letter-spacing:6.008363px;}
.ls29{letter-spacing:12.380345px;}
.ls32{letter-spacing:16.181274px;}
.ls23{letter-spacing:28.943988px;}
.ls14{letter-spacing:30.383988px;}
.ls1b{letter-spacing:31.103988px;}
.ls26{letter-spacing:32.543987px;}
.ls39{letter-spacing:33.263987px;}
.ls2b{letter-spacing:37.386672px;}
.ls1d{letter-spacing:39.546671px;}
.ls12{letter-spacing:39.743984px;}
.ls1e{letter-spacing:40.266671px;}
.ls31{letter-spacing:40.986670px;}
.ls1c{letter-spacing:46.026668px;}
.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;}
}
.ws22{word-spacing:-34.631986px;}
.ws21{word-spacing:-24.261590px;}
.wse{word-spacing:-20.663992px;}
.ws15{word-spacing:-20.519995px;}
.ws5{word-spacing:-20.519992px;}
.wsb{word-spacing:-20.447992px;}
.ws25{word-spacing:-20.375992px;}
.ws18{word-spacing:-20.159992px;}
.ws27{word-spacing:-17.763627px;}
.wsc{word-spacing:-17.593828px;}
.wsd{word-spacing:-17.493628px;}
.ws29{word-spacing:-17.431827px;}
.ws14{word-spacing:-17.346027px;}
.ws17{word-spacing:-17.326227px;}
.ws4{word-spacing:-17.261427px;}
.ws2a{word-spacing:-17.240427px;}
.ws23{word-spacing:-17.226027px;}
.ws1e{word-spacing:-17.175627px;}
.ws7{word-spacing:-17.161227px;}
.ws1c{word-spacing:-17.115627px;}
.ws16{word-spacing:-17.070507px;}
.ws1f{word-spacing:-17.044587px;}
.ws2{word-spacing:-17.031627px;}
.ws12{word-spacing:-16.962027px;}
.wsf{word-spacing:-16.876827px;}
.ws30{word-spacing:-16.870827px;}
.ws3{word-spacing:-16.811427px;}
.ws13{word-spacing:-16.808427px;}
.ws11{word-spacing:-16.773627px;}
.ws2d{word-spacing:-16.765827px;}
.ws1d{word-spacing:-16.746028px;}
.ws28{word-spacing:-16.711828px;}
.ws20{word-spacing:-16.689028px;}
.ws26{word-spacing:-16.566627px;}
.ws1{word-spacing:-15.390028px;}
.ws24{word-spacing:-15.210028px;}
.ws0{word-spacing:-15.084028px;}
.ws2c{word-spacing:-14.979628px;}
.ws9{word-spacing:-13.748429px;}
.ws10{word-spacing:-13.618829px;}
.ws1b{word-spacing:-12.628824px;}
.ws2e{word-spacing:-12.285617px;}
.ws2f{word-spacing:-12.021617px;}
.ws19{word-spacing:-11.908841px;}
.wsa{word-spacing:-11.080796px;}
.ws2b{word-spacing:-10.311630px;}
.ws8{word-spacing:-8.618397px;}
.ws1a{word-spacing:-6.444781px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-12.692180px;}
._5{margin-left:-8.005324px;}
._44{margin-left:-6.926775px;}
._16{margin-left:-5.548406px;}
._4{margin-left:-4.460439px;}
._2{margin-left:-3.453839px;}
._3{margin-left:-2.276231px;}
._0{margin-left:-1.027618px;}
._1{width:1.114275px;}
._6{width:2.591592px;}
._7{width:3.928487px;}
._a{width:5.795027px;}
._b{width:7.023889px;}
._1a{width:8.126130px;}
._9{width:9.206373px;}
._8{width:10.521469px;}
._f{width:12.056926px;}
._17{width:13.135804px;}
._18{width:14.659493px;}
._c{width:15.839440px;}
._28{width:17.521147px;}
._12{width:18.655736px;}
._13{width:20.160521px;}
._14{width:21.297612px;}
._1c{width:22.366294px;}
._21{width:23.952602px;}
._2d{width:25.115494px;}
._20{width:26.309488px;}
._10{width:27.327558px;}
._11{width:29.334218px;}
._2b{width:30.402547px;}
._1e{width:31.708428px;}
._43{width:33.245671px;}
._33{width:34.503608px;}
._35{width:36.343261px;}
._3c{width:38.871719px;}
._3d{width:40.179377px;}
._31{width:41.420140px;}
._24{width:45.516138px;}
._37{width:46.982005px;}
._29{width:48.003765px;}
._2a{width:49.142108px;}
._25{width:52.161484px;}
._3f{width:53.242711px;}
._38{width:57.399523px;}
._3b{width:59.832006px;}
._3e{width:60.883633px;}
._2f{width:63.585599px;}
._2e{width:68.562501px;}
._26{width:69.816318px;}
._40{width:75.980345px;}
._2c{width:79.164055px;}
._36{width:82.072484px;}
._30{width:85.160345px;}
._41{width:87.857561px;}
._23{width:91.906775px;}
._32{width:95.685122px;}
._22{width:97.191915px;}
._3a{width:98.879153px;}
._27{width:105.526285px;}
._42{width:107.299381px;}
._34{width:126.525809px;}
._39{width:152.827690px;}
._1b{width:200.609494px;}
._1f{width:202.769493px;}
._1d{width:204.209493px;}
._19{width:207.809491px;}
._e{width:209.249491px;}
._d{width:241.784094px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fs9{font-size:41.759983px;}
.fs7{font-size:48.240101px;}
.fs8{font-size:51.120100px;}
.fs0{font-size:54.000098px;}
.fs3{font-size:59.760096px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.600374px;}
.y13e{bottom:5.806107px;}
.y12e{bottom:5.938345px;}
.y149{bottom:5.938514px;}
.y125{bottom:5.940376px;}
.y144{bottom:5.940463px;}
.y119{bottom:5.940464px;}
.y15c{bottom:5.941272px;}
.y150{bottom:5.969229px;}
.y114{bottom:6.481115px;}
.yd{bottom:22.320367px;}
.y136{bottom:23.938338px;}
.y13d{bottom:25.246099px;}
.y12d{bottom:25.378337px;}
.y148{bottom:25.378506px;}
.y124{bottom:25.380368px;}
.y143{bottom:25.380455px;}
.y118{bottom:25.380456px;}
.y15b{bottom:25.381264px;}
.y14f{bottom:25.409222px;}
.yc{bottom:41.220359px;}
.y135{bottom:43.409230px;}
.y147{bottom:44.638499px;}
.y13c{bottom:44.686091px;}
.y15a{bottom:44.686257px;}
.y142{bottom:44.813397px;}
.y117{bottom:44.813398px;}
.y123{bottom:44.820360px;}
.y14e{bottom:44.849214px;}
.y12c{bottom:44.849229px;}
.y3{bottom:56.374477px;}
.y23{bottom:57.635977px;}
.yb{bottom:59.985352px;}
.y134{bottom:62.849222px;}
.y116{bottom:64.073390px;}
.y146{bottom:64.078491px;}
.y14d{bottom:64.109206px;}
.y122{bottom:64.125352px;}
.y13b{bottom:64.126083px;}
.y159{bottom:64.126249px;}
.y141{bottom:64.253389px;}
.y12b{bottom:64.289222px;}
.y15e{bottom:67.006248px;}
.y2{bottom:73.294471px;}
.ya{bottom:78.705344px;}
.y133{bottom:82.289214px;}
.y14c{bottom:83.549198px;}
.y121{bottom:83.565345px;}
.y13a{bottom:83.566075px;}
.y158{bottom:83.566241px;}
.y140{bottom:83.693381px;}
.y12a{bottom:83.729214px;}
.y9{bottom:97.425337px;}
.y132{bottom:101.729207px;}
.y14b{bottom:102.989191px;}
.y129{bottom:102.989206px;}
.y120{bottom:103.005337px;}
.y139{bottom:103.006068px;}
.y157{bottom:103.006233px;}
.y15d{bottom:104.446233px;}
.y5b{bottom:109.116556px;}
.y42{bottom:109.116991px;}
.y115{bottom:109.836540px;}
.ya9{bottom:111.816855px;}
.y13f{bottom:112.716540px;}
.y168{bottom:117.217453px;}
.yb7{bottom:120.278352px;}
.y131{bottom:120.989199px;}
.y138{bottom:122.266060px;}
.y128{bottom:122.429198px;}
.y11f{bottom:122.445329px;}
.y156{bottom:122.446225px;}
.y77{bottom:123.696851px;}
.y162{bottom:123.697001px;}
.yfc{bottom:124.236550px;}
.y41{bottom:124.236985px;}
.y22{bottom:128.376099px;}
.y5a{bottom:128.736549px;}
.yd3{bottom:129.276848px;}
.ya8{bottom:133.416847px;}
.y8b{bottom:139.176979px;}
.y130{bottom:140.429191px;}
.y59{bottom:140.976244px;}
.y161{bottom:140.976994px;}
.y127{bottom:141.869191px;}
.yb6{bottom:141.878343px;}
.y11e{bottom:141.885321px;}
.y155{bottom:141.886218px;}
.y167{bottom:143.137443px;}
.yfb{bottom:143.676543px;}
.y40{bottom:143.676978px;}
.y76{bottom:145.296842px;}
.yc0{bottom:146.196842px;}
.y21{bottom:149.976090px;}
.yd2{bottom:150.869040px;}
.y3f{bottom:154.109938px;}
.ya7{bottom:155.009788px;}
.yfa{bottom:155.909938px;}
.y160{bottom:158.249937px;}
.y12f{bottom:159.869183px;}
.y184{bottom:161.129036px;}
.y154{bottom:161.146210px;}
.y11d{bottom:161.325313px;}
.yb5{bottom:163.291285px;}
.y75{bottom:166.889783px;}
.ybf{bottom:167.609783px;}
.y166{bottom:168.870382px;}
.y3e{bottom:169.229932px;}
.y20{bottom:171.569031px;}
.yd1{bottom:172.469031px;}
.y15f{bottom:175.529930px;}
.ya6{bottom:176.429779px;}
.y11c{bottom:180.585306px;}
.y153{bottom:180.587552px;}
.y183{bottom:182.729027px;}
.y8a{bottom:184.169926px;}
.y81{bottom:184.890526px;}
.y74{bottom:188.489775px;}
.y3d{bottom:188.669925px;}
.y151{bottom:189.028800px;}
.ybe{bottom:189.209774px;}
.y1f{bottom:193.169023px;}
.yd0{bottom:193.889022px;}
.y165{bottom:194.790372px;}
.ya5{bottom:198.029771px;}
.y89{bottom:199.109920px;}
.y11b{bottom:200.025298px;}
.y152{bottom:200.027544px;}
.y3c{bottom:200.909920px;}
.y182{bottom:204.329018px;}
.y113{bottom:206.308800px;}
.yb4{bottom:206.489767px;}
.y80{bottom:206.490517px;}
.y73{bottom:209.909016px;}
.ybd{bottom:210.809766px;}
.y58{bottom:210.809916px;}
.y88{bottom:214.229914px;}
.y1e{bottom:214.769014px;}
.ycf{bottom:215.489014px;}
.ye2{bottom:218.729913px;}
.ya4{bottom:219.629762px;}
.yf9{bottom:220.349912px;}
.y164{bottom:220.710362px;}
.y181{bottom:225.929010px;}
.y137{bottom:227.908800px;}
.yb3{bottom:228.089009px;}
.y7f{bottom:228.090509px;}
.ye1{bottom:230.970358px;}
.y72{bottom:231.509007px;}
.ybc{bottom:232.409007px;}
.y57{bottom:232.409907px;}
.y87{bottom:233.714907px;}
.y3b{bottom:236.054906px;}
.y1d{bottom:236.414005px;}
.yce{bottom:237.134005px;}
.ya3{bottom:241.274003px;}
.yf8{bottom:241.994003px;}
.y86{bottom:244.154902px;}
.y163{bottom:246.675351px;}
.y180{bottom:247.574001px;}
.yb2{bottom:249.734000px;}
.y7e{bottom:249.735500px;}
.y112{bottom:252.433999px;}
.y71{bottom:253.153999px;}
.ybb{bottom:254.053998px;}
.y56{bottom:254.054898px;}
.y3a{bottom:257.474897px;}
.y1c{bottom:257.833997px;}
.ycd{bottom:258.733997px;}
.y85{bottom:259.274896px;}
.ya2{bottom:262.873995px;}
.yf7{bottom:263.593995px;}
.y17f{bottom:269.173992px;}
.yb1{bottom:271.333991px;}
.y7d{bottom:271.335491px;}
.y111{bottom:274.033990px;}
.y70{bottom:274.753990px;}
.yba{bottom:275.473990px;}
.y55{bottom:275.474890px;}
.y84{bottom:276.014890px;}
.y39{bottom:279.074888px;}
.y1b{bottom:279.433988px;}
.ycc{bottom:280.333988px;}
.yf6{bottom:285.193986px;}
.y17e{bottom:290.593984px;}
.yb0{bottom:292.753983px;}
.y7c{bottom:292.755483px;}
.y6f{bottom:296.353981px;}
.yb9{bottom:297.073981px;}
.y54{bottom:297.074881px;}
.y38{bottom:300.674880px;}
.y1a{bottom:301.033980px;}
.ycb{bottom:301.753979px;}
.ya1{bottom:302.293979px;}
.yf5{bottom:306.613977px;}
.ye0{bottom:310.033976px;}
.y17d{bottom:312.193975px;}
.y110{bottom:313.633975px;}
.yaf{bottom:314.353974px;}
.y7b{bottom:314.354724px;}
.y6e{bottom:317.773973px;}
.yb8{bottom:318.673973px;}
.y53{bottom:318.674873px;}
.y37{bottom:322.274871px;}
.y19{bottom:322.633971px;}
.yca{bottom:323.353971px;}
.ya0{bottom:323.893970px;}
.yf4{bottom:328.213969px;}
.ydf{bottom:331.633967px;}
.y17c{bottom:333.793966px;}
.y10f{bottom:335.233966px;}
.yae{bottom:335.953966px;}
.y7a{bottom:335.954716px;}
.y6d{bottom:339.373964px;}
.y83{bottom:340.273964px;}
.y52{bottom:340.274864px;}
.y36{bottom:343.874862px;}
.y18{bottom:344.233962px;}
.y9f{bottom:345.493962px;}
.yf3{bottom:349.813960px;}
.yde{bottom:353.233959px;}
.y17b{bottom:355.393958px;}
.y10e{bottom:356.833957px;}
.yad{bottom:357.553957px;}
.y79{bottom:357.554707px;}
.y6c{bottom:360.973956px;}
.y82{bottom:361.873955px;}
.y51{bottom:361.874855px;}
.yc9{bottom:362.953955px;}
.y35{bottom:365.473954px;}
.y17{bottom:365.653954px;}
.y9e{bottom:367.093953px;}
.yf2{bottom:371.413951px;}
.ydd{bottom:374.833950px;}
.y17a{bottom:376.993949px;}
.y10d{bottom:378.253949px;}
.yac{bottom:379.153948px;}
.y78{bottom:380.414698px;}
.y126{bottom:381.675600px;}
.y6b{bottom:382.573947px;}
.y50{bottom:383.473947px;}
.yc8{bottom:384.553946px;}
.y34{bottom:386.893945px;}
.y16{bottom:387.253945px;}
.y9d{bottom:388.693945px;}
.yf1{bottom:393.013943px;}
.ydc{bottom:396.253941px;}
.y179{bottom:398.413941px;}
.y10c{bottom:399.853940px;}
.yab{bottom:400.573940px;}
.y6a{bottom:404.173938px;}
.y4f{bottom:404.893938px;}
.yc7{bottom:406.153938px;}
.y33{bottom:408.493937px;}
.y15{bottom:408.853936px;}
.yf0{bottom:414.613934px;}
.ydb{bottom:417.853933px;}
.y178{bottom:420.013932px;}
.y14a{bottom:420.555600px;}
.y10b{bottom:421.453931px;}
.y9c{bottom:422.173931px;}
.y69{bottom:425.624830px;}
.y4e{bottom:426.524829px;}
.y32{bottom:430.124828px;}
.y14{bottom:430.484828px;}
.yef{bottom:436.064826px;}
.yda{bottom:439.484824px;}
.yc6{bottom:439.664824px;}
.y177{bottom:441.644823px;}
.y10a{bottom:443.084823px;}
.y9b{bottom:443.804822px;}
.y68{bottom:447.224821px;}
.y4d{bottom:448.124821px;}
.y31{bottom:451.724819px;}
.y13{bottom:452.084819px;}
.yee{bottom:457.664817px;}
.yd9{bottom:461.084816px;}
.yc5{bottom:461.264815px;}
.y176{bottom:463.244815px;}
.y109{bottom:464.684814px;}
.y9a{bottom:465.404814px;}
.y67{bottom:468.824812px;}
.y4c{bottom:469.724812px;}
.y30{bottom:473.324811px;}
.y12{bottom:473.504811px;}
.yed{bottom:479.264808px;}
.yd8{bottom:482.684807px;}
.yc4{bottom:482.864807px;}
.y175{bottom:484.844806px;}
.y108{bottom:486.104806px;}
.y99{bottom:487.004805px;}
.y66{bottom:490.424804px;}
.y4b{bottom:491.324803px;}
.y11{bottom:494.744802px;}
.yec{bottom:500.864800px;}
.yd7{bottom:504.104798px;}
.yc3{bottom:504.464798px;}
.y174{bottom:506.264797px;}
.y107{bottom:507.704797px;}
.y98{bottom:508.424797px;}
.y65{bottom:512.024795px;}
.y4a{bottom:512.744795px;}
.y2f{bottom:516.344793px;}
.y10{bottom:519.584792px;}
.yeb{bottom:522.464791px;}
.yd6{bottom:525.704790px;}
.yc2{bottom:525.884790px;}
.y173{bottom:527.864789px;}
.y106{bottom:529.304788px;}
.y97{bottom:530.024788px;}
.y64{bottom:533.444787px;}
.y49{bottom:534.344786px;}
.y2e{bottom:537.944785px;}
.yf{bottom:543.344783px;}
.yea{bottom:543.884782px;}
.yc1{bottom:547.484781px;}
.yd5{bottom:548.564781px;}
.y172{bottom:549.464780px;}
.y105{bottom:550.904780px;}
.y96{bottom:551.624779px;}
.y11a{bottom:555.044400px;}
.y63{bottom:555.044778px;}
.y48{bottom:555.944778px;}
.y2d{bottom:559.544776px;}
.y8{bottom:560.984400px;}
.ye9{bottom:565.484774px;}
.y171{bottom:571.064772px;}
.y104{bottom:572.504771px;}
.y95{bottom:573.224771px;}
.yd4{bottom:574.484770px;}
.y62{bottom:576.644769px;}
.y47{bottom:577.544769px;}
.y2c{bottom:581.144768px;}
.ye8{bottom:587.084765px;}
.y170{bottom:592.664763px;}
.y94{bottom:594.824762px;}
.y61{bottom:598.244761px;}
.y46{bottom:599.144760px;}
.y2b{bottom:602.564759px;}
.ye7{bottom:608.684757px;}
.y103{bottom:609.764756px;}
.y16f{bottom:614.309754px;}
.y93{bottom:616.469753px;}
.y60{bottom:619.889752px;}
.y45{bottom:620.609752px;}
.y2a{bottom:624.209750px;}
.ye6{bottom:630.329748px;}
.y102{bottom:634.649746px;}
.y16e{bottom:635.729746px;}
.y92{bottom:637.889745px;}
.y5f{bottom:641.489743px;}
.y44{bottom:642.209743px;}
.y29{bottom:645.809742px;}
.ye5{bottom:651.749739px;}
.y101{bottom:653.369739px;}
.y16d{bottom:657.329737px;}
.y91{bottom:659.489736px;}
.yaa{bottom:660.749736px;}
.y43{bottom:663.809734px;}
.y5e{bottom:664.169734px;}
.y100{bottom:672.089731px;}
.ye4{bottom:673.349731px;}
.y16c{bottom:678.929728px;}
.y7{bottom:680.549728px;}
.y90{bottom:681.089728px;}
.y28{bottom:685.409726px;}
.y5d{bottom:688.469725px;}
.yff{bottom:690.809724px;}
.ye3{bottom:694.949722px;}
.y16b{bottom:700.529720px;}
.y6{bottom:702.329719px;}
.y8f{bottom:702.689719px;}
.y27{bottom:707.009717px;}
.y5c{bottom:708.269717px;}
.y145{bottom:708.991200px;}
.yfe{bottom:709.529716px;}
.y16a{bottom:722.129711px;}
.y8e{bottom:724.289710px;}
.yfd{bottom:728.429709px;}
.y26{bottom:728.609709px;}
.y5{bottom:734.909706px;}
.y169{bottom:744.089702px;}
.y8d{bottom:745.709702px;}
.y25{bottom:750.029700px;}
.y4{bottom:759.389696px;}
.y8c{bottom:768.569693px;}
.y24{bottom:771.629691px;}
.y1{bottom:826.379669px;}
.h12{height:21.505530px;}
.he{height:21.685530px;}
.h16{height:36.384066px;}
.h14{height:39.456540px;}
.hf{height:39.685523px;}
.h10{height:39.830337px;}
.ha{height:39.840064px;}
.h11{height:40.265025px;}
.h6{height:41.539907px;}
.hb{height:43.160069px;}
.h4{height:44.149201px;}
.h20{height:44.159982px;}
.h2{height:44.424081px;}
.hc{height:47.076461px;}
.h8{height:47.988262px;}
.h1f{height:47.999981px;}
.h7{height:49.162639px;}
.hd{height:49.166239px;}
.h9{height:50.047980px;}
.h13{height:56.159978px;}
.h3{height:58.556137px;}
.h1b{height:77.578560px;}
.h15{height:95.580000px;}
.h5{height:112.535820px;}
.h1a{height:115.200000px;}
.h1d{height:134.497260px;}
.h19{height:153.750960px;}
.h1c{height:153.929520px;}
.h18{height:173.370960px;}
.h17{height:231.508800px;}
.h1e{height:231.510600px;}
.h0{height:892.979700px;}
.h1{height:893.250000px;}
.w5{width:131.075820px;}
.w4{width:138.636540px;}
.w3{width:142.235100px;}
.w2{width:413.564400px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x5{left:7.740014px;}
.xb{left:17.461093px;}
.xd{left:23.625434px;}
.x9{left:47.873398px;}
.x4{left:106.416557px;}
.x6{left:127.656549px;}
.x8{left:133.416997px;}
.x3{left:160.046936px;}
.x2{left:187.451925px;}
.x7{left:212.654915px;}
.xa{left:250.993800px;}
.xc{left:391.964400px;}
.x1{left:503.429799px;}
@media print{
.v2{vertical-align:-15.999994pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.919999pt;}
.v1{vertical-align:18.559993pt;}
.ls42{letter-spacing:-5.973331pt;}
.ls46{letter-spacing:-4.453342pt;}
.ls45{letter-spacing:-4.218676pt;}
.ls43{letter-spacing:-1.823999pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls3d{letter-spacing:-0.413334pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.310400pt;}
.ls35{letter-spacing:-0.304533pt;}
.ls3f{letter-spacing:-0.284267pt;}
.ls1{letter-spacing:-0.272000pt;}
.ls30{letter-spacing:-0.253867pt;}
.ls44{letter-spacing:-0.236267pt;}
.ls1f{letter-spacing:-0.229333pt;}
.ls21{letter-spacing:-0.198400pt;}
.ls3{letter-spacing:-0.195733pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls47{letter-spacing:-0.142933pt;}
.ls18{letter-spacing:-0.137600pt;}
.ls3b{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.115200pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.061867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000003pt;}
.ls34{letter-spacing:0.011520pt;}
.ls25{letter-spacing:0.034560pt;}
.lsa{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.053760pt;}
.ls2f{letter-spacing:0.074667pt;}
.ls5{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.115200pt;}
.ls27{letter-spacing:0.124756pt;}
.ls17{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133125pt;}
.ls3c{letter-spacing:0.134999pt;}
.ls7{letter-spacing:0.136960pt;}
.ls8{letter-spacing:0.140800pt;}
.ls37{letter-spacing:0.172800pt;}
.ls41{letter-spacing:0.185600pt;}
.ls4{letter-spacing:0.204267pt;}
.ls36{letter-spacing:0.225067pt;}
.ls15{letter-spacing:0.261867pt;}
.ls22{letter-spacing:0.279467pt;}
.lse{letter-spacing:0.280320pt;}
.ls2c{letter-spacing:0.329568pt;}
.lsd{letter-spacing:0.329600pt;}
.ls40{letter-spacing:0.355733pt;}
.ls16{letter-spacing:0.410667pt;}
.ls13{letter-spacing:0.499734pt;}
.ls3e{letter-spacing:0.650666pt;}
.ls3a{letter-spacing:0.736000pt;}
.ls0{letter-spacing:0.752000pt;}
.ls11{letter-spacing:0.799973pt;}
.ls28{letter-spacing:1.507783pt;}
.ls33{letter-spacing:3.004097pt;}
.ls2e{letter-spacing:3.139168pt;}
.lsf{letter-spacing:4.419168pt;}
.lsc{letter-spacing:5.340767pt;}
.ls29{letter-spacing:11.004751pt;}
.ls32{letter-spacing:14.383354pt;}
.ls23{letter-spacing:25.727990pt;}
.ls14{letter-spacing:27.007989pt;}
.ls1b{letter-spacing:27.647989pt;}
.ls26{letter-spacing:28.927988pt;}
.ls39{letter-spacing:29.567988pt;}
.ls2b{letter-spacing:33.232597pt;}
.ls1d{letter-spacing:35.152596pt;}
.ls12{letter-spacing:35.327986pt;}
.ls1e{letter-spacing:35.792596pt;}
.ls31{letter-spacing:36.432596pt;}
.ls1c{letter-spacing:40.912594pt;}
.ws22{word-spacing:-30.783988pt;}
.ws21{word-spacing:-21.565858pt;}
.wse{word-spacing:-18.367993pt;}
.ws15{word-spacing:-18.239995pt;}
.ws5{word-spacing:-18.239993pt;}
.wsb{word-spacing:-18.175993pt;}
.ws25{word-spacing:-18.111993pt;}
.ws18{word-spacing:-17.919993pt;}
.ws27{word-spacing:-15.789891pt;}
.wsc{word-spacing:-15.638959pt;}
.wsd{word-spacing:-15.549891pt;}
.ws29{word-spacing:-15.494958pt;}
.ws14{word-spacing:-15.418691pt;}
.ws17{word-spacing:-15.401091pt;}
.ws4{word-spacing:-15.343491pt;}
.ws2a{word-spacing:-15.324824pt;}
.ws23{word-spacing:-15.312024pt;}
.ws1e{word-spacing:-15.267224pt;}
.ws7{word-spacing:-15.254424pt;}
.ws1c{word-spacing:-15.213891pt;}
.ws16{word-spacing:-15.173784pt;}
.ws1f{word-spacing:-15.150744pt;}
.ws2{word-spacing:-15.139224pt;}
.ws12{word-spacing:-15.077358pt;}
.wsf{word-spacing:-15.001624pt;}
.ws30{word-spacing:-14.996291pt;}
.ws3{word-spacing:-14.943491pt;}
.ws13{word-spacing:-14.940824pt;}
.ws11{word-spacing:-14.909891pt;}
.ws2d{word-spacing:-14.902958pt;}
.ws1d{word-spacing:-14.885358pt;}
.ws28{word-spacing:-14.854958pt;}
.ws20{word-spacing:-14.834691pt;}
.ws26{word-spacing:-14.725891pt;}
.ws1{word-spacing:-13.680025pt;}
.ws24{word-spacing:-13.520025pt;}
.ws0{word-spacing:-13.408025pt;}
.ws2c{word-spacing:-13.315225pt;}
.ws9{word-spacing:-12.220826pt;}
.ws10{word-spacing:-12.105626pt;}
.ws1b{word-spacing:-11.225622pt;}
.ws2e{word-spacing:-10.920549pt;}
.ws2f{word-spacing:-10.685882pt;}
.ws19{word-spacing:-10.585636pt;}
.wsa{word-spacing:-9.849596pt;}
.ws2b{word-spacing:-9.165893pt;}
.ws8{word-spacing:-7.660797pt;}
.ws1a{word-spacing:-5.728694pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-11.281938pt;}
._5{margin-left:-7.115844pt;}
._44{margin-left:-6.157133pt;}
._16{margin-left:-4.931916pt;}
._4{margin-left:-3.964835pt;}
._2{margin-left:-3.070079pt;}
._3{margin-left:-2.023317pt;}
._0{margin-left:-0.913438pt;}
._1{width:0.990466pt;}
._6{width:2.303638pt;}
._7{width:3.491989pt;}
._a{width:5.151135pt;}
._b{width:6.243457pt;}
._1a{width:7.223227pt;}
._9{width:8.183442pt;}
._8{width:9.352417pt;}
._f{width:10.717267pt;}
._17{width:11.676270pt;}
._18{width:13.030660pt;}
._c{width:14.079503pt;}
._28{width:15.574353pt;}
._12{width:16.582876pt;}
._13{width:17.920464pt;}
._14{width:18.931211pt;}
._1c{width:19.881150pt;}
._21{width:21.291202pt;}
._2d{width:22.324883pt;}
._20{width:23.386211pt;}
._10{width:24.291163pt;}
._11{width:26.074860pt;}
._2b{width:27.024486pt;}
._1e{width:28.185270pt;}
._43{width:29.551708pt;}
._33{width:30.669874pt;}
._35{width:32.305121pt;}
._3c{width:34.552639pt;}
._3d{width:35.715002pt;}
._31{width:36.817902pt;}
._24{width:40.458789pt;}
._37{width:41.761782pt;}
._29{width:42.670014pt;}
._2a{width:43.681874pt;}
._25{width:46.365763pt;}
._3f{width:47.326855pt;}
._38{width:51.021798pt;}
._3b{width:53.184006pt;}
._3e{width:54.118785pt;}
._2f{width:56.520533pt;}
._2e{width:60.944445pt;}
._26{width:62.058949pt;}
._40{width:67.538085pt;}
._2c{width:70.368049pt;}
._36{width:72.953319pt;}
._30{width:75.698084pt;}
._41{width:78.095610pt;}
._23{width:81.694911pt;}
._32{width:85.053442pt;}
._22{width:86.392813pt;}
._3a{width:87.892580pt;}
._27{width:93.801142pt;}
._42{width:95.377227pt;}
._34{width:112.467385pt;}
._39{width:135.846835pt;}
._1b{width:178.319550pt;}
._1f{width:180.239549pt;}
._1d{width:181.519549pt;}
._19{width:184.719548pt;}
._e{width:185.999547pt;}
._d{width:214.919195pt;}
.fs6{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fs9{font-size:37.119985pt;}
.fs7{font-size:42.880090pt;}
.fs8{font-size:45.440088pt;}
.fs0{font-size:48.000087pt;}
.fs3{font-size:53.120085pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.200333pt;}
.y13e{bottom:5.160984pt;}
.y12e{bottom:5.278529pt;}
.y149{bottom:5.278679pt;}
.y125{bottom:5.280334pt;}
.y144{bottom:5.280411pt;}
.y119{bottom:5.280412pt;}
.y15c{bottom:5.281131pt;}
.y150{bottom:5.305982pt;}
.y114{bottom:5.760991pt;}
.yd{bottom:19.840326pt;}
.y136{bottom:21.278522pt;}
.y13d{bottom:22.440977pt;}
.y12d{bottom:22.558522pt;}
.y148{bottom:22.558672pt;}
.y124{bottom:22.560327pt;}
.y143{bottom:22.560404pt;}
.y118{bottom:22.560405pt;}
.y15b{bottom:22.561124pt;}
.y14f{bottom:22.585975pt;}
.yc{bottom:36.640319pt;}
.y135{bottom:38.585982pt;}
.y147{bottom:39.678665pt;}
.y13c{bottom:39.720970pt;}
.y15a{bottom:39.721117pt;}
.y142{bottom:39.834131pt;}
.y117{bottom:39.834132pt;}
.y123{bottom:39.840320pt;}
.y14e{bottom:39.865968pt;}
.y12c{bottom:39.865982pt;}
.y3{bottom:50.110647pt;}
.y23{bottom:51.231980pt;}
.yb{bottom:53.320313pt;}
.y134{bottom:55.865975pt;}
.y116{bottom:56.954125pt;}
.y146{bottom:56.958658pt;}
.y14d{bottom:56.985961pt;}
.y122{bottom:57.000313pt;}
.y13b{bottom:57.000963pt;}
.y159{bottom:57.001110pt;}
.y141{bottom:57.114124pt;}
.y12b{bottom:57.145975pt;}
.y15e{bottom:59.561109pt;}
.y2{bottom:65.150641pt;}
.ya{bottom:69.960306pt;}
.y133{bottom:73.145968pt;}
.y14c{bottom:74.265954pt;}
.y121{bottom:74.280306pt;}
.y13a{bottom:74.280956pt;}
.y158{bottom:74.281103pt;}
.y140{bottom:74.394117pt;}
.y12a{bottom:74.425968pt;}
.y9{bottom:86.600299pt;}
.y132{bottom:90.425961pt;}
.y14b{bottom:91.545947pt;}
.y129{bottom:91.545961pt;}
.y120{bottom:91.560299pt;}
.y139{bottom:91.560949pt;}
.y157{bottom:91.561096pt;}
.y15d{bottom:92.841096pt;}
.y5b{bottom:96.992495pt;}
.y42{bottom:96.992881pt;}
.y115{bottom:97.632480pt;}
.ya9{bottom:99.392760pt;}
.y13f{bottom:100.192480pt;}
.y168{bottom:104.193292pt;}
.yb7{bottom:106.914091pt;}
.y131{bottom:107.545955pt;}
.y138{bottom:108.680942pt;}
.y128{bottom:108.825954pt;}
.y11f{bottom:108.840292pt;}
.y156{bottom:108.841089pt;}
.y77{bottom:109.952756pt;}
.y162{bottom:109.952889pt;}
.yfc{bottom:110.432489pt;}
.y41{bottom:110.432876pt;}
.y22{bottom:114.112088pt;}
.y5a{bottom:114.432488pt;}
.yd3{bottom:114.912754pt;}
.ya8{bottom:118.592753pt;}
.y8b{bottom:123.712871pt;}
.y130{bottom:124.825948pt;}
.y59{bottom:125.312217pt;}
.y161{bottom:125.312883pt;}
.y127{bottom:126.105947pt;}
.yb6{bottom:126.114083pt;}
.y11e{bottom:126.120286pt;}
.y155{bottom:126.121082pt;}
.y167{bottom:127.233282pt;}
.yfb{bottom:127.712482pt;}
.y40{bottom:127.712869pt;}
.y76{bottom:129.152748pt;}
.yc0{bottom:129.952748pt;}
.y21{bottom:133.312080pt;}
.yd2{bottom:134.105813pt;}
.y3f{bottom:136.986612pt;}
.ya7{bottom:137.786478pt;}
.yfa{bottom:138.586611pt;}
.y160{bottom:140.666610pt;}
.y12f{bottom:142.105941pt;}
.y184{bottom:143.225809pt;}
.y154{bottom:143.241075pt;}
.y11d{bottom:143.400279pt;}
.yb5{bottom:145.147809pt;}
.y75{bottom:148.346474pt;}
.ybf{bottom:148.986474pt;}
.y166{bottom:150.107007pt;}
.y3e{bottom:150.426606pt;}
.y20{bottom:152.505806pt;}
.yd1{bottom:153.305805pt;}
.y15f{bottom:156.026604pt;}
.ya6{bottom:156.826471pt;}
.y11c{bottom:160.520272pt;}
.y153{bottom:160.522269pt;}
.y183{bottom:162.425802pt;}
.y8a{bottom:163.706601pt;}
.y81{bottom:164.347134pt;}
.y74{bottom:167.546466pt;}
.y3d{bottom:167.706600pt;}
.y151{bottom:168.025600pt;}
.ybe{bottom:168.186466pt;}
.y1f{bottom:171.705798pt;}
.yd0{bottom:172.345798pt;}
.y165{bottom:173.146997pt;}
.ya5{bottom:176.026463pt;}
.y89{bottom:176.986596pt;}
.y11b{bottom:177.800265pt;}
.y152{bottom:177.802262pt;}
.y3c{bottom:178.586595pt;}
.y182{bottom:181.625794pt;}
.y113{bottom:183.385600pt;}
.yb4{bottom:183.546460pt;}
.y80{bottom:183.547127pt;}
.y73{bottom:186.585792pt;}
.ybd{bottom:187.386458pt;}
.y58{bottom:187.386592pt;}
.y88{bottom:190.426590pt;}
.y1e{bottom:190.905790pt;}
.ycf{bottom:191.545790pt;}
.ye2{bottom:194.426589pt;}
.ya4{bottom:195.226455pt;}
.yf9{bottom:195.866588pt;}
.y164{bottom:196.186988pt;}
.y181{bottom:200.825786pt;}
.y137{bottom:202.585600pt;}
.yb3{bottom:202.745786pt;}
.y7f{bottom:202.747119pt;}
.ye1{bottom:205.306985pt;}
.y72{bottom:205.785784pt;}
.ybc{bottom:206.585784pt;}
.y57{bottom:206.586584pt;}
.y87{bottom:207.746584pt;}
.y3b{bottom:209.826583pt;}
.y1d{bottom:210.145783pt;}
.yce{bottom:210.785782pt;}
.ya3{bottom:214.465781pt;}
.yf8{bottom:215.105781pt;}
.y86{bottom:217.026580pt;}
.y163{bottom:219.266979pt;}
.y180{bottom:220.065779pt;}
.yb2{bottom:221.985778pt;}
.y7e{bottom:221.987111pt;}
.y112{bottom:224.385777pt;}
.y71{bottom:225.025777pt;}
.ybb{bottom:225.825776pt;}
.y56{bottom:225.826576pt;}
.y3a{bottom:228.866575pt;}
.y1c{bottom:229.185775pt;}
.ycd{bottom:229.985775pt;}
.y85{bottom:230.466574pt;}
.ya2{bottom:233.665773pt;}
.yf7{bottom:234.305773pt;}
.y17f{bottom:239.265771pt;}
.yb1{bottom:241.185770pt;}
.y7d{bottom:241.187104pt;}
.y111{bottom:243.585769pt;}
.y70{bottom:244.225769pt;}
.yba{bottom:244.865769pt;}
.y55{bottom:244.866569pt;}
.y84{bottom:245.346569pt;}
.y39{bottom:248.066567pt;}
.y1b{bottom:248.385767pt;}
.ycc{bottom:249.185767pt;}
.yf6{bottom:253.505765pt;}
.y17e{bottom:258.305763pt;}
.yb0{bottom:260.225763pt;}
.y7c{bottom:260.227096pt;}
.y6f{bottom:263.425761pt;}
.yb9{bottom:264.065761pt;}
.y54{bottom:264.066561pt;}
.y38{bottom:267.266560pt;}
.y1a{bottom:267.585760pt;}
.ycb{bottom:268.225759pt;}
.ya1{bottom:268.705759pt;}
.yf5{bottom:272.545758pt;}
.ye0{bottom:275.585756pt;}
.y17d{bottom:277.505756pt;}
.y110{bottom:278.785755pt;}
.yaf{bottom:279.425755pt;}
.y7b{bottom:279.426422pt;}
.y6e{bottom:282.465754pt;}
.yb8{bottom:283.265753pt;}
.y53{bottom:283.266553pt;}
.y37{bottom:286.466552pt;}
.y19{bottom:286.785752pt;}
.yca{bottom:287.425752pt;}
.ya0{bottom:287.905752pt;}
.yf4{bottom:291.745750pt;}
.ydf{bottom:294.785749pt;}
.y17c{bottom:296.705748pt;}
.y10f{bottom:297.985747pt;}
.yae{bottom:298.625747pt;}
.y7a{bottom:298.626414pt;}
.y6d{bottom:301.665746pt;}
.y83{bottom:302.465746pt;}
.y52{bottom:302.466546pt;}
.y36{bottom:305.666544pt;}
.y18{bottom:305.985744pt;}
.y9f{bottom:307.105744pt;}
.yf3{bottom:310.945742pt;}
.yde{bottom:313.985741pt;}
.y17b{bottom:315.905740pt;}
.y10e{bottom:317.185740pt;}
.yad{bottom:317.825740pt;}
.y79{bottom:317.826406pt;}
.y6c{bottom:320.865738pt;}
.y82{bottom:321.665738pt;}
.y51{bottom:321.666538pt;}
.yc9{bottom:322.625738pt;}
.y35{bottom:324.865737pt;}
.y17{bottom:325.025737pt;}
.y9e{bottom:326.305736pt;}
.yf2{bottom:330.145735pt;}
.ydd{bottom:333.185733pt;}
.y17a{bottom:335.105733pt;}
.y10d{bottom:336.225732pt;}
.yac{bottom:337.025732pt;}
.y78{bottom:338.146398pt;}
.y126{bottom:339.267200pt;}
.y6b{bottom:340.065731pt;}
.y50{bottom:340.865730pt;}
.yc8{bottom:341.825730pt;}
.y34{bottom:343.905729pt;}
.y16{bottom:344.225729pt;}
.y9d{bottom:345.505728pt;}
.yf1{bottom:349.345727pt;}
.ydc{bottom:352.225726pt;}
.y179{bottom:354.145725pt;}
.y10c{bottom:355.425724pt;}
.yab{bottom:356.065724pt;}
.y6a{bottom:359.265723pt;}
.y4f{bottom:359.905723pt;}
.yc7{bottom:361.025722pt;}
.y33{bottom:363.105721pt;}
.y15{bottom:363.425721pt;}
.yf0{bottom:368.545719pt;}
.ydb{bottom:371.425718pt;}
.y178{bottom:373.345717pt;}
.y14a{bottom:373.827200pt;}
.y10b{bottom:374.625717pt;}
.y9c{bottom:375.265717pt;}
.y69{bottom:378.333182pt;}
.y4e{bottom:379.133182pt;}
.y32{bottom:382.333180pt;}
.y14{bottom:382.653180pt;}
.yef{bottom:387.613178pt;}
.yda{bottom:390.653177pt;}
.yc6{bottom:390.813177pt;}
.y177{bottom:392.573176pt;}
.y10a{bottom:393.853176pt;}
.y9b{bottom:394.493176pt;}
.y68{bottom:397.533174pt;}
.y4d{bottom:398.333174pt;}
.y31{bottom:401.533173pt;}
.y13{bottom:401.853173pt;}
.yee{bottom:406.813171pt;}
.yd9{bottom:409.853169pt;}
.yc5{bottom:410.013169pt;}
.y176{bottom:411.773169pt;}
.y109{bottom:413.053168pt;}
.y9a{bottom:413.693168pt;}
.y67{bottom:416.733167pt;}
.y4c{bottom:417.533166pt;}
.y30{bottom:420.733165pt;}
.y12{bottom:420.893165pt;}
.yed{bottom:426.013163pt;}
.yd8{bottom:429.053162pt;}
.yc4{bottom:429.213162pt;}
.y175{bottom:430.973161pt;}
.y108{bottom:432.093160pt;}
.y99{bottom:432.893160pt;}
.y66{bottom:435.933159pt;}
.y4b{bottom:436.733159pt;}
.y11{bottom:439.773157pt;}
.yec{bottom:445.213155pt;}
.yd7{bottom:448.093154pt;}
.yc3{bottom:448.413154pt;}
.y174{bottom:450.013153pt;}
.y107{bottom:451.293153pt;}
.y98{bottom:451.933153pt;}
.y65{bottom:455.133151pt;}
.y4a{bottom:455.773151pt;}
.y2f{bottom:458.973150pt;}
.y10{bottom:461.853149pt;}
.yeb{bottom:464.413148pt;}
.yd6{bottom:467.293146pt;}
.yc2{bottom:467.453146pt;}
.y173{bottom:469.213146pt;}
.y106{bottom:470.493145pt;}
.y97{bottom:471.133145pt;}
.y64{bottom:474.173144pt;}
.y49{bottom:474.973143pt;}
.y2e{bottom:478.173142pt;}
.yf{bottom:482.973140pt;}
.yea{bottom:483.453140pt;}
.yc1{bottom:486.653139pt;}
.yd5{bottom:487.613138pt;}
.y172{bottom:488.413138pt;}
.y105{bottom:489.693137pt;}
.y96{bottom:490.333137pt;}
.y11a{bottom:493.372800pt;}
.y63{bottom:493.373136pt;}
.y48{bottom:494.173136pt;}
.y2d{bottom:497.373134pt;}
.y8{bottom:498.652800pt;}
.ye9{bottom:502.653132pt;}
.y171{bottom:507.613130pt;}
.y104{bottom:508.893130pt;}
.y95{bottom:509.533130pt;}
.yd4{bottom:510.653129pt;}
.y62{bottom:512.573128pt;}
.y47{bottom:513.373128pt;}
.y2c{bottom:516.573127pt;}
.ye8{bottom:521.853125pt;}
.y170{bottom:526.813123pt;}
.y94{bottom:528.733122pt;}
.y61{bottom:531.773121pt;}
.y46{bottom:532.573120pt;}
.y2b{bottom:535.613119pt;}
.ye7{bottom:541.053117pt;}
.y103{bottom:542.013117pt;}
.y16f{bottom:546.053115pt;}
.y93{bottom:547.973114pt;}
.y60{bottom:551.013113pt;}
.y45{bottom:551.653113pt;}
.y2a{bottom:554.853111pt;}
.ye6{bottom:560.293109pt;}
.y102{bottom:564.133108pt;}
.y16e{bottom:565.093107pt;}
.y92{bottom:567.013107pt;}
.y5f{bottom:570.213105pt;}
.y44{bottom:570.853105pt;}
.y29{bottom:574.053104pt;}
.ye5{bottom:579.333102pt;}
.y101{bottom:580.773101pt;}
.y16d{bottom:584.293100pt;}
.y91{bottom:586.213099pt;}
.yaa{bottom:587.333098pt;}
.y43{bottom:590.053097pt;}
.y5e{bottom:590.373097pt;}
.y100{bottom:597.413094pt;}
.ye4{bottom:598.533094pt;}
.y16c{bottom:603.493092pt;}
.y7{bottom:604.933091pt;}
.y90{bottom:605.413091pt;}
.y28{bottom:609.253090pt;}
.y5d{bottom:611.973089pt;}
.yff{bottom:614.053088pt;}
.ye3{bottom:617.733086pt;}
.y16b{bottom:622.693084pt;}
.y6{bottom:624.293084pt;}
.y8f{bottom:624.613083pt;}
.y27{bottom:628.453082pt;}
.y5c{bottom:629.573082pt;}
.y145{bottom:630.214400pt;}
.yfe{bottom:630.693081pt;}
.y16a{bottom:641.893077pt;}
.y8e{bottom:643.813076pt;}
.yfd{bottom:647.493074pt;}
.y26{bottom:647.653074pt;}
.y5{bottom:653.253072pt;}
.y169{bottom:661.413069pt;}
.y8d{bottom:662.853068pt;}
.y25{bottom:666.693067pt;}
.y4{bottom:675.013063pt;}
.y8c{bottom:683.173060pt;}
.y24{bottom:685.893059pt;}
.y1{bottom:734.559706pt;}
.h12{height:19.116027pt;}
.he{height:19.276027pt;}
.h16{height:32.341392pt;}
.h14{height:35.072480pt;}
.hf{height:35.276020pt;}
.h10{height:35.404744pt;}
.ha{height:35.413390pt;}
.h11{height:35.791133pt;}
.h6{height:36.924362pt;}
.hb{height:38.364506pt;}
.h4{height:39.243734pt;}
.h20{height:39.253318pt;}
.h2{height:39.488072pt;}
.hc{height:41.845743pt;}
.h8{height:42.656233pt;}
.h1f{height:42.666650pt;}
.h7{height:43.700124pt;}
.hd{height:43.703324pt;}
.h9{height:44.487093pt;}
.h13{height:49.919980pt;}
.h3{height:52.049899pt;}
.h1b{height:68.958720pt;}
.h15{height:84.960000pt;}
.h5{height:100.031840pt;}
.h1a{height:102.400000pt;}
.h1d{height:119.553120pt;}
.h19{height:136.667520pt;}
.h1c{height:136.826240pt;}
.h18{height:154.107520pt;}
.h17{height:205.785600pt;}
.h1e{height:205.787200pt;}
.h0{height:793.759733pt;}
.h1{height:794.000000pt;}
.w5{width:116.511840pt;}
.w4{width:123.232480pt;}
.w3{width:126.431200pt;}
.w2{width:367.612800pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880012pt;}
.xb{left:15.520971pt;}
.xd{left:21.000386pt;}
.x9{left:42.554132pt;}
.x4{left:94.592495pt;}
.x6{left:113.472488pt;}
.x8{left:118.592886pt;}
.x3{left:142.263943pt;}
.x2{left:166.623933pt;}
.x7{left:189.026591pt;}
.xa{left:223.105600pt;}
.xc{left:348.412800pt;}
.x1{left:447.493154pt;}
}




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