
    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_3013d8bd9d34cf780f9c5c5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_10ffc054eab6907e015e03fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_b3687aeccda401b87dc921f2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5d20dbd6098acf2117e0a62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7ac86139a3634f65ddf45520.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_71996b8a2062a90bd7b3488f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57ff841453a1b123fe473688.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_4c48bb543193d988681c6e92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_0dd81a8d08d6383f763b05e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_d2dd2e9547c993bcafee2829.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_f574f11032e06a28a57d5383.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_c18d27715e6651029649e11d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_663f57a757fae2dc2df5e5e6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fe2e4c37f442ff855a21bb22.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f41154edf88429f5ac28ca61.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c620ed1c6b960fd9e59e5e03.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_11048479a8365cb3d28df80e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_da21f60b150e4ded845009ba.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3b121451e279fafdeb78f878.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-33.840000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.720000px;}
.v1{vertical-align:20.160000px;}
.ls2c{letter-spacing:-4.134000px;}
.ls2b{letter-spacing:-1.812000px;}
.ls1a{letter-spacing:-1.356000px;}
.ls6{letter-spacing:-1.152000px;}
.ls42{letter-spacing:-1.122000px;}
.ls1e{letter-spacing:-1.092000px;}
.ls4{letter-spacing:-1.008000px;}
.ls23{letter-spacing:-0.984000px;}
.ls8{letter-spacing:-0.936000px;}
.ls30{letter-spacing:-0.882000px;}
.ls19{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.714000px;}
.ls5{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.636000px;}
.ls1d{letter-spacing:-0.549600px;}
.ls49{letter-spacing:-0.515400px;}
.ls14{letter-spacing:-0.477600px;}
.ls9{letter-spacing:-0.432000px;}
.ls2a{letter-spacing:-0.409800px;}
.ls21{letter-spacing:-0.403200px;}
.ls24{letter-spacing:-0.385200px;}
.ls16{letter-spacing:-0.369600px;}
.ls29{letter-spacing:-0.363600px;}
.ls43{letter-spacing:-0.351600px;}
.ls3e{letter-spacing:-0.313200px;}
.lsb{letter-spacing:-0.277200px;}
.ls47{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.264000px;}
.ls3d{letter-spacing:-0.230400px;}
.ls17{letter-spacing:-0.225600px;}
.ls4a{letter-spacing:-0.224400px;}
.ls25{letter-spacing:-0.223800px;}
.ls7{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.202200px;}
.ls28{letter-spacing:-0.190200px;}
.ls48{letter-spacing:-0.181200px;}
.ls36{letter-spacing:-0.178800px;}
.ls3f{letter-spacing:-0.174000px;}
.ls15{letter-spacing:-0.159000px;}
.ls3{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.005760px;}
.ls2e{letter-spacing:0.007920px;}
.ls37{letter-spacing:0.051840px;}
.ls3c{letter-spacing:0.080400px;}
.ls3b{letter-spacing:0.132480px;}
.ls34{letter-spacing:0.150000px;}
.ls2d{letter-spacing:0.170400px;}
.ls35{letter-spacing:0.172800px;}
.lsa{letter-spacing:0.193800px;}
.ls26{letter-spacing:0.223200px;}
.ls20{letter-spacing:0.242400px;}
.ls3a{letter-spacing:0.256200px;}
.ls40{letter-spacing:0.276600px;}
.ls1f{letter-spacing:0.316800px;}
.ls22{letter-spacing:0.345000px;}
.ls2f{letter-spacing:0.350400px;}
.ls44{letter-spacing:0.432000px;}
.ls31{letter-spacing:0.442800px;}
.ls38{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.519600px;}
.ls39{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.627120px;}
.ls46{letter-spacing:0.684000px;}
.ls10{letter-spacing:9.159840px;}
.ls45{letter-spacing:10.349280px;}
.ls11{letter-spacing:12.039840px;}
.ls41{letter-spacing:13.680000px;}
.ls12{letter-spacing:17.259840px;}
.lsd{letter-spacing:20.679840px;}
.ls33{letter-spacing:25.084800px;}
.ls0{letter-spacing:25.704000px;}
.lsf{letter-spacing:34.359840px;}
.lse{letter-spacing:35.079840px;}
.lsc{letter-spacing:36.519840px;}
.ls2{letter-spacing:60.120000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-74.160000px;}
.ws3b{word-spacing:-19.468512px;}
.ws2e{word-spacing:-17.620320px;}
.ws2f{word-spacing:-17.572752px;}
.ws2c{word-spacing:-17.110560px;}
.ws1a{word-spacing:-17.105160px;}
.ws16{word-spacing:-17.076960px;}
.ws17{word-spacing:-17.002560px;}
.ws20{word-spacing:-16.983360px;}
.ws2a{word-spacing:-16.930560px;}
.ws7{word-spacing:-16.852752px;}
.ws34{word-spacing:-16.848000px;}
.ws2b{word-spacing:-16.768080px;}
.ws25{word-spacing:-16.760160px;}
.ws3a{word-spacing:-16.704000px;}
.wsa{word-spacing:-16.601160px;}
.ws22{word-spacing:-16.569960px;}
.ws21{word-spacing:-16.557960px;}
.ws1f{word-spacing:-16.536360px;}
.wsc{word-spacing:-16.534560px;}
.ws11{word-spacing:-16.496160px;}
.ws31{word-spacing:-16.473600px;}
.ws23{word-spacing:-16.396560px;}
.wsb{word-spacing:-16.390560px;}
.ws18{word-spacing:-16.356960px;}
.ws24{word-spacing:-16.350360px;}
.ws9{word-spacing:-16.282560px;}
.ws33{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.210560px;}
.ws12{word-spacing:-16.124160px;}
.wsd{word-spacing:-16.046160px;}
.wse{word-spacing:-16.040160px;}
.ws2d{word-spacing:-15.878160px;}
.ws1b{word-spacing:-15.776160px;}
.ws19{word-spacing:-15.668160px;}
.ws10{word-spacing:-15.404160px;}
.ws35{word-spacing:-15.226440px;}
.ws28{word-spacing:-14.948160px;}
.ws0{word-spacing:-14.616000px;}
.ws4{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.184000px;}
.ws3c{word-spacing:-14.094720px;}
.ws2{word-spacing:-13.968000px;}
.ws5{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.464000px;}
.ws3e{word-spacing:-13.229520px;}
.ws3d{word-spacing:-13.141320px;}
.ws32{word-spacing:-12.913920px;}
.ws29{word-spacing:-12.626160px;}
.ws36{word-spacing:-9.612720px;}
.ws37{word-spacing:-9.263760px;}
.ws38{word-spacing:-1.627200px;}
.ws39{word-spacing:-1.267200px;}
.ws30{word-spacing:-0.627840px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:1.636560px;}
.ws1d{word-spacing:2.711280px;}
.ws14{word-spacing:3.507840px;}
.ws1e{word-spacing:3.767040px;}
.ws1c{word-spacing:4.227840px;}
.ws27{word-spacing:16.531200px;}
.ws26{word-spacing:20.031840px;}
._11{margin-left:-12.616656px;}
._f{margin-left:-10.059504px;}
._12{margin-left:-6.972000px;}
._9{margin-left:-5.892000px;}
._10{margin-left:-4.872000px;}
._e{margin-left:-3.859920px;}
._0{margin-left:-2.088000px;}
._4{margin-left:-1.068000px;}
._1{width:1.200000px;}
._d{width:2.556000px;}
._2a{width:3.660000px;}
._1f{width:4.724880px;}
._19{width:5.867520px;}
._b{width:7.104000px;}
._a{width:8.496000px;}
._c{width:9.564000px;}
._1b{width:11.594400px;}
._22{width:12.673200px;}
._1d{width:13.742160px;}
._2c{width:14.895840px;}
._30{width:16.003920px;}
._6{width:17.100000px;}
._21{width:18.491760px;}
._18{width:19.666800px;}
._17{width:20.944080px;}
._15{width:22.051440px;}
._16{width:23.561760px;}
._3{width:24.840000px;}
._2{width:26.604000px;}
._1a{width:27.729120px;}
._25{width:28.771440px;}
._1e{width:30.322560px;}
._1c{width:34.096080px;}
._8{width:35.292000px;}
._14{width:36.779760px;}
._24{width:40.078320px;}
._23{width:41.108880px;}
._20{width:52.683840px;}
._7{width:63.456000px;}
._2e{width:100.419360px;}
._5{width:102.708000px;}
._13{width:134.424000px;}
._2d{width:152.379360px;}
._29{width:186.720480px;}
._2f{width:235.464000px;}
._27{width:241.284000px;}
._26{width:242.709600px;}
._28{width:389.802240px;}
._2b{width:447.893280px;}
.fc8{color:transparent;}
.fc7{color:rgb(166,206,57);}
.fc6{color:rgb(22,74,106);}
.fc4{color:rgb(255,255,45);}
.fc3{color:rgb(253,216,28);}
.fc1{color:rgb(0,83,159);}
.fca{color:rgb(0,0,0);}
.fc9{color:rgb(119,119,119);}
.fc5{color:rgb(237,125,49);}
.fc2{color:rgb(230,231,234);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:7.200000px;}
.fs13{font-size:41.760000px;}
.fs12{font-size:43.920000px;}
.fs4{font-size:48.240000px;}
.fs15{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fse{font-size:63.504000px;}
.fsf{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fsc{font-size:74.160000px;}
.fsb{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fsa{font-size:90.000000px;}
.fs11{font-size:95.760000px;}
.fs3{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs8{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs6{font-size:156.240000px;}
.fs7{font-size:156.384000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:17.100000px;}
.y9a{bottom:19.260000px;}
.ye4{bottom:22.500000px;}
.ydd{bottom:23.040000px;}
.y99{bottom:23.580000px;}
.ye3{bottom:26.820000px;}
.ydf{bottom:29.700000px;}
.y97{bottom:30.240000px;}
.y4b{bottom:31.356000px;}
.yb7{bottom:32.472000px;}
.y73{bottom:32.652000px;}
.yb6{bottom:33.192000px;}
.yde{bottom:34.020000px;}
.yce{bottom:35.136000px;}
.ydc{bottom:35.352000px;}
.yf{bottom:35.424000px;}
.y72{bottom:36.540000px;}
.y4e{bottom:36.900000px;}
.y88{bottom:37.476000px;}
.y95{bottom:41.400000px;}
.ydb{bottom:46.980000px;}
.yda{bottom:51.300000px;}
.y4f{bottom:75.996000px;}
.y4a{bottom:80.784000px;}
.y1e{bottom:86.472000px;}
.y8d{bottom:96.084000px;}
.y49{bottom:111.924000px;}
.y1d{bottom:117.072000px;}
.yba{bottom:122.508000px;}
.yd5{bottom:127.044000px;}
.y8c{bottom:127.764000px;}
.y77{bottom:136.044000px;}
.y87{bottom:138.204000px;}
.yd4{bottom:142.704000px;}
.y48{bottom:143.064000px;}
.yb9{bottom:144.108000px;}
.y81{bottom:155.235000px;}
.y8{bottom:156.780000px;}
.yd3{bottom:158.190000px;}
.y8b{bottom:159.630000px;}
.y76{bottom:165.600000px;}
.y86{bottom:169.560000px;}
.yd2{bottom:173.880000px;}
.y80{bottom:174.135000px;}
.y47{bottom:174.750000px;}
.y7{bottom:178.380000px;}
.y71{bottom:180.540000px;}
.yd1{bottom:189.360000px;}
.y8a{bottom:191.490000px;}
.y65{bottom:196.380000px;}
.y70{bottom:199.440000px;}
.y6{bottom:199.980000px;}
.y46{bottom:205.350000px;}
.yc1{bottom:207.750000px;}
.y6f{bottom:218.340000px;}
.y5{bottom:221.580000px;}
.y89{bottom:223.170000px;}
.y64{bottom:224.280000px;}
.yc0{bottom:232.230000px;}
.y45{bottom:233.430000px;}
.y6e{bottom:237.240000px;}
.y4{bottom:243.180000px;}
.y44{bottom:255.600000px;}
.y6d{bottom:256.140000px;}
.ybf{bottom:256.890000px;}
.y63{bottom:262.080000px;}
.y8e{bottom:263.985000px;}
.y3{bottom:264.780000px;}
.y15{bottom:269.355000px;}
.y6c{bottom:275.040000px;}
.y43{bottom:277.740000px;}
.y62{bottom:280.980000px;}
.ybe{bottom:281.370000px;}
.y2{bottom:286.380000px;}
.y6b{bottom:293.940000px;}
.y61{bottom:299.880000px;}
.y42{bottom:306.000000px;}
.ybd{bottom:306.030000px;}
.y68{bottom:307.050000px;}
.y1{bottom:307.980000px;}
.y14{bottom:312.555000px;}
.y6a{bottom:321.120000px;}
.y67{bottom:325.950000px;}
.y41{bottom:328.140000px;}
.y9d{bottom:328.350000px;}
.y94{bottom:334.470000px;}
.y9e{bottom:334.650000px;}
.y9f{bottom:336.810000px;}
.y96{bottom:340.590000px;}
.y69{bottom:340.920000px;}
.ybc{bottom:342.030000px;}
.y98{bottom:342.930000px;}
.y66{bottom:344.850000px;}
.y40{bottom:350.280000px;}
.yb{bottom:358.050000px;}
.ybb{bottom:374.430000px;}
.y3f{bottom:378.360000px;}
.ya4{bottom:388.620000px;}
.y3e{bottom:400.500000px;}
.ya3{bottom:407.520000px;}
.y82{bottom:408.060000px;}
.y93{bottom:409.830000px;}
.y3d{bottom:422.640000px;}
.ya2{bottom:431.385000px;}
.y1c{bottom:440.385000px;}
.y92{bottom:441.180000px;}
.y3c{bottom:444.780000px;}
.ya5{bottom:455.430000px;}
.ycd{bottom:459.975000px;}
.y1b{bottom:466.485000px;}
.yca{bottom:469.290000px;}
.y3b{bottom:472.890000px;}
.yb5{bottom:474.660000px;}
.y9c{bottom:477.435000px;}
.y7c{bottom:487.080000px;}
.y7f{bottom:487.545000px;}
.yc9{bottom:488.190000px;}
.y1a{bottom:492.630000px;}
.yb4{bottom:493.560000px;}
.y3a{bottom:495.030000px;}
.ycc{bottom:496.050000px;}
.yc8{bottom:507.090000px;}
.y91{bottom:508.110000px;}
.y7b{bottom:509.115000px;}
.y7e{bottom:509.610000px;}
.ya1{bottom:510.555000px;}
.y1f{bottom:512.025000px;}
.y74{bottom:514.005000px;}
.ycb{bottom:514.950000px;}
.y39{bottom:517.170000px;}
.y19{bottom:518.730000px;}
.y90{bottom:527.010000px;}
.y7a{bottom:528.015000px;}
.y7d{bottom:528.510000px;}
.ya0{bottom:529.455000px;}
.y38{bottom:545.430000px;}
.y18{bottom:547.710000px;}
.y37{bottom:567.570000px;}
.y8f{bottom:580.425000px;}
.y36{bottom:589.710000px;}
.y35{bottom:611.850000px;}
.y5e{bottom:616.035000px;}
.y55{bottom:617.865000px;}
.y34{bottom:633.990000px;}
.y5d{bottom:634.935000px;}
.y54{bottom:643.965000px;}
.y17{bottom:647.565000px;}
.y5c{bottom:653.835000px;}
.ya{bottom:656.535000px;}
.yac{bottom:658.155000px;}
.yb3{bottom:659.190000px;}
.y33{bottom:662.070000px;}
.y53{bottom:662.865000px;}
.yd0{bottom:668.010000px;}
.y5b{bottom:672.735000px;}
.yab{bottom:677.055000px;}
.y52{bottom:681.765000px;}
.y32{bottom:684.255000px;}
.y9{bottom:688.965000px;}
.y16{bottom:690.810000px;}
.y5a{bottom:691.635000px;}
.yaa{bottom:695.955000px;}
.yb2{bottom:696.090000px;}
.y51{bottom:700.665000px;}
.y31{bottom:706.395000px;}
.y59{bottom:710.565000px;}
.ya9{bottom:714.885000px;}
.yb1{bottom:714.990000px;}
.y50{bottom:719.565000px;}
.y30{bottom:728.535000px;}
.y58{bottom:729.465000px;}
.ya8{bottom:733.785000px;}
.yb0{bottom:733.890000px;}
.y57{bottom:747.435000px;}
.ye{bottom:747.690000px;}
.y2f{bottom:750.675000px;}
.y60{bottom:751.110000px;}
.ya7{bottom:752.685000px;}
.yaf{bottom:752.790000px;}
.yd{bottom:763.350000px;}
.y56{bottom:766.335000px;}
.yd9{bottom:767.085000px;}
.y5f{bottom:770.010000px;}
.y2e{bottom:772.815000px;}
.ye2{bottom:778.425000px;}
.yc{bottom:778.830000px;}
.yc4{bottom:784.590000px;}
.yc7{bottom:786.600000px;}
.yae{bottom:790.050000px;}
.y83{bottom:791.745000px;}
.y79{bottom:792.975000px;}
.y2d{bottom:794.955000px;}
.yc3{bottom:803.520000px;}
.yc6{bottom:805.500000px;}
.yad{bottom:808.950000px;}
.y85{bottom:811.410000px;}
.y2c{bottom:817.095000px;}
.y78{bottom:819.615000px;}
.yc2{bottom:822.420000px;}
.yc5{bottom:824.400000px;}
.y84{bottom:830.310000px;}
.y13{bottom:838.410000px;}
.ycf{bottom:840.855000px;}
.y2b{bottom:845.175000px;}
.y2a{bottom:867.315000px;}
.y12{bottom:885.240000px;}
.y29{bottom:889.485000px;}
.yd8{bottom:907.950000px;}
.y28{bottom:911.625000px;}
.y20{bottom:924.330000px;}
.y11{bottom:932.040000px;}
.y27{bottom:933.765000px;}
.yd7{bottom:947.550000px;}
.y26{bottom:962.025000px;}
.y25{bottom:984.165000px;}
.yd6{bottom:987.150000px;}
.y24{bottom:1006.305000px;}
.y4d{bottom:1023.555000px;}
.y23{bottom:1028.445000px;}
.ye1{bottom:1030.650000px;}
.ye0{bottom:1050.450000px;}
.y22{bottom:1050.585000px;}
.ya6{bottom:1056.315000px;}
.y75{bottom:1066.575000px;}
.yb8{bottom:1068.840000px;}
.y21{bottom:1079.385000px;}
.y4c{bottom:1130.790000px;}
.y10{bottom:1136.625000px;}
.h25{height:7.161328px;}
.h27{height:25.200000px;}
.h30{height:28.440000px;}
.h26{height:31.860000px;}
.h2b{height:35.261367px;}
.h2f{height:35.640000px;}
.h5{height:36.274219px;}
.hf{height:41.809570px;}
.h24{height:43.020000px;}
.h1b{height:48.479062px;}
.h28{height:48.589242px;}
.h1d{height:50.682656px;}
.h2e{height:51.793945px;}
.h2d{height:52.920000px;}
.h19{height:54.914062px;}
.h1a{height:55.006875px;}
.h1c{height:55.038867px;}
.h15{height:56.670117px;}
.h2c{height:57.410156px;}
.h29{height:57.507187px;}
.h1{height:62.402344px;}
.he{height:62.507812px;}
.h22{height:63.019687px;}
.h23{height:64.875938px;}
.h21{height:65.884219px;}
.h18{height:68.554688px;}
.h11{height:70.611328px;}
.h16{height:73.134141px;}
.h7{height:73.259156px;}
.h20{height:73.269492px;}
.h4{height:73.379672px;}
.h6{height:73.722656px;}
.h13{height:73.761680px;}
.h1e{height:73.870102px;}
.h12{height:75.934336px;}
.hd{height:78.134766px;}
.h10{height:80.208984px;}
.h17{height:82.634766px;}
.h1f{height:82.744945px;}
.h2a{height:83.260406px;}
.h14{height:83.787539px;}
.h3{height:93.761719px;}
.h2{height:93.886734px;}
.hb{height:143.226562px;}
.ha{height:147.445312px;}
.hc{height:147.592758px;}
.h8{height:159.978164px;}
.h9{height:160.125609px;}
.h0{height:1170.000000px;}
.w4{width:25.200000px;}
.w9{width:30.240000px;}
.w3{width:31.860000px;}
.w5{width:43.056000px;}
.w2{width:43.200000px;}
.w6{width:52.920000px;}
.w7{width:53.100000px;}
.w8{width:101.376000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x13{left:15.695988px;}
.x16{left:43.019988px;}
.x15{left:45.575988px;}
.x1f{left:50.039988px;}
.x14{left:52.379988px;}
.x26{left:55.151988px;}
.x10{left:57.059988px;}
.x23{left:58.175988px;}
.x24{left:59.975988px;}
.x3e{left:61.811988px;}
.x1c{left:64.727988px;}
.x4{left:65.987988px;}
.x1{left:68.255988px;}
.x11{left:69.515988px;}
.x6{left:73.223988px;}
.x5{left:74.663988px;}
.x34{left:76.499988px;}
.x35{left:77.939988px;}
.x2{left:79.847988px;}
.x2b{left:100.511988px;}
.x33{left:105.876000px;}
.x3a{left:120.923988px;}
.x2d{left:145.439988px;}
.x46{left:152.999988px;}
.x3d{left:160.199988px;}
.x3{left:166.829988px;}
.x32{left:175.710000px;}
.x1e{left:197.279988px;}
.x45{left:210.599988px;}
.x17{left:211.709988px;}
.x1a{left:237.029988px;}
.x8{left:240.629988px;}
.x21{left:254.669988px;}
.x49{left:272.129988px;}
.x41{left:282.269988px;}
.x36{left:285.584988px;}
.x27{left:289.799988px;}
.x2c{left:302.039988px;}
.x47{left:325.109988px;}
.x42{left:344.189988px;}
.x3c{left:357.839988px;}
.x43{left:376.709988px;}
.x44{left:379.589988px;}
.x48{left:422.025000px;}
.x37{left:426.029988px;}
.x39{left:427.394988px;}
.x2f{left:430.665000px;}
.x1b{left:432.719988px;}
.x29{left:434.849988px;}
.x1d{left:436.424988px;}
.x2a{left:437.474988px;}
.x25{left:439.634988px;}
.x28{left:440.639988px;}
.x3f{left:441.689988px;}
.x2e{left:459.254988px;}
.x31{left:480.525000px;}
.x4b{left:524.850000px;}
.x30{left:550.410000px;}
.x4a{left:649.590000px;}
.x38{left:659.729988px;}
.x40{left:664.229988px;}
.x7{left:752.789988px;}
.x3b{left:754.919988px;}
.x18{left:756.509988px;}
.xe{left:903.269988px;}
.x22{left:942.659988px;}
.x9{left:945.074988px;}
.xf{left:968.114988px;}
.xa{left:990.974988px;}
.x19{left:1004.789988px;}
.xb{left:1041.014988px;}
.xc{left:1051.529988px;}
.x12{left:1057.529988px;}
.xd{left:1124.099988px;}
.x20{left:1288.334988px;}
@media print{
.v3{vertical-align:-30.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.640000pt;}
.v1{vertical-align:17.920000pt;}
.ls2c{letter-spacing:-3.674667pt;}
.ls2b{letter-spacing:-1.610667pt;}
.ls1a{letter-spacing:-1.205333pt;}
.ls6{letter-spacing:-1.024000pt;}
.ls42{letter-spacing:-0.997333pt;}
.ls1e{letter-spacing:-0.970667pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls23{letter-spacing:-0.874667pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls30{letter-spacing:-0.784000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.634667pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.565333pt;}
.ls1d{letter-spacing:-0.488533pt;}
.ls49{letter-spacing:-0.458133pt;}
.ls14{letter-spacing:-0.424533pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls2a{letter-spacing:-0.364267pt;}
.ls21{letter-spacing:-0.358400pt;}
.ls24{letter-spacing:-0.342400pt;}
.ls16{letter-spacing:-0.328533pt;}
.ls29{letter-spacing:-0.323200pt;}
.ls43{letter-spacing:-0.312533pt;}
.ls3e{letter-spacing:-0.278400pt;}
.lsb{letter-spacing:-0.246400pt;}
.ls47{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.234667pt;}
.ls3d{letter-spacing:-0.204800pt;}
.ls17{letter-spacing:-0.200533pt;}
.ls4a{letter-spacing:-0.199467pt;}
.ls25{letter-spacing:-0.198933pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.179733pt;}
.ls28{letter-spacing:-0.169067pt;}
.ls48{letter-spacing:-0.161067pt;}
.ls36{letter-spacing:-0.158933pt;}
.ls3f{letter-spacing:-0.154667pt;}
.ls15{letter-spacing:-0.141333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.005120pt;}
.ls2e{letter-spacing:0.007040pt;}
.ls37{letter-spacing:0.046080pt;}
.ls3c{letter-spacing:0.071467pt;}
.ls3b{letter-spacing:0.117760pt;}
.ls34{letter-spacing:0.133333pt;}
.ls2d{letter-spacing:0.151467pt;}
.ls35{letter-spacing:0.153600pt;}
.lsa{letter-spacing:0.172267pt;}
.ls26{letter-spacing:0.198400pt;}
.ls20{letter-spacing:0.215467pt;}
.ls3a{letter-spacing:0.227733pt;}
.ls40{letter-spacing:0.245867pt;}
.ls1f{letter-spacing:0.281600pt;}
.ls22{letter-spacing:0.306667pt;}
.ls2f{letter-spacing:0.311467pt;}
.ls44{letter-spacing:0.384000pt;}
.ls31{letter-spacing:0.393600pt;}
.ls38{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.461867pt;}
.ls39{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.557440pt;}
.ls46{letter-spacing:0.608000pt;}
.ls10{letter-spacing:8.142080pt;}
.ls45{letter-spacing:9.199360pt;}
.ls11{letter-spacing:10.702080pt;}
.ls41{letter-spacing:12.160000pt;}
.ls12{letter-spacing:15.342080pt;}
.lsd{letter-spacing:18.382080pt;}
.ls33{letter-spacing:22.297600pt;}
.ls0{letter-spacing:22.848000pt;}
.lsf{letter-spacing:30.542080pt;}
.lse{letter-spacing:31.182080pt;}
.lsc{letter-spacing:32.462080pt;}
.ls2{letter-spacing:53.440000pt;}
.wsf{word-spacing:-65.920000pt;}
.ws3b{word-spacing:-17.305344pt;}
.ws2e{word-spacing:-15.662507pt;}
.ws2f{word-spacing:-15.620224pt;}
.ws2c{word-spacing:-15.209387pt;}
.ws1a{word-spacing:-15.204587pt;}
.ws16{word-spacing:-15.179520pt;}
.ws17{word-spacing:-15.113387pt;}
.ws20{word-spacing:-15.096320pt;}
.ws2a{word-spacing:-15.049387pt;}
.ws7{word-spacing:-14.980224pt;}
.ws34{word-spacing:-14.976000pt;}
.ws2b{word-spacing:-14.904960pt;}
.ws25{word-spacing:-14.897920pt;}
.ws3a{word-spacing:-14.848000pt;}
.wsa{word-spacing:-14.756587pt;}
.ws22{word-spacing:-14.728853pt;}
.ws21{word-spacing:-14.718187pt;}
.ws1f{word-spacing:-14.698987pt;}
.wsc{word-spacing:-14.697387pt;}
.ws11{word-spacing:-14.663253pt;}
.ws31{word-spacing:-14.643200pt;}
.ws23{word-spacing:-14.574720pt;}
.wsb{word-spacing:-14.569387pt;}
.ws18{word-spacing:-14.539520pt;}
.ws24{word-spacing:-14.533653pt;}
.ws9{word-spacing:-14.473387pt;}
.ws33{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.409387pt;}
.ws12{word-spacing:-14.332587pt;}
.wsd{word-spacing:-14.263253pt;}
.wse{word-spacing:-14.257920pt;}
.ws2d{word-spacing:-14.113920pt;}
.ws1b{word-spacing:-14.023253pt;}
.ws19{word-spacing:-13.927253pt;}
.ws10{word-spacing:-13.692587pt;}
.ws35{word-spacing:-13.534613pt;}
.ws28{word-spacing:-13.287253pt;}
.ws0{word-spacing:-12.992000pt;}
.ws4{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.608000pt;}
.ws3c{word-spacing:-12.528640pt;}
.ws2{word-spacing:-12.416000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws1{word-spacing:-12.096000pt;}
.ws3{word-spacing:-11.968000pt;}
.ws3e{word-spacing:-11.759573pt;}
.ws3d{word-spacing:-11.681173pt;}
.ws32{word-spacing:-11.479040pt;}
.ws29{word-spacing:-11.223253pt;}
.ws36{word-spacing:-8.544640pt;}
.ws37{word-spacing:-8.234453pt;}
.ws38{word-spacing:-1.446400pt;}
.ws39{word-spacing:-1.126400pt;}
.ws30{word-spacing:-0.558080pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:1.454720pt;}
.ws1d{word-spacing:2.410027pt;}
.ws14{word-spacing:3.118080pt;}
.ws1e{word-spacing:3.348480pt;}
.ws1c{word-spacing:3.758080pt;}
.ws27{word-spacing:14.694400pt;}
.ws26{word-spacing:17.806080pt;}
._11{margin-left:-11.214805pt;}
._f{margin-left:-8.941781pt;}
._12{margin-left:-6.197333pt;}
._9{margin-left:-5.237333pt;}
._10{margin-left:-4.330667pt;}
._e{margin-left:-3.431040pt;}
._0{margin-left:-1.856000pt;}
._4{margin-left:-0.949333pt;}
._1{width:1.066667pt;}
._d{width:2.272000pt;}
._2a{width:3.253333pt;}
._1f{width:4.199893pt;}
._19{width:5.215573pt;}
._b{width:6.314667pt;}
._a{width:7.552000pt;}
._c{width:8.501333pt;}
._1b{width:10.306133pt;}
._22{width:11.265067pt;}
._1d{width:12.215253pt;}
._2c{width:13.240747pt;}
._30{width:14.225707pt;}
._6{width:15.200000pt;}
._21{width:16.437120pt;}
._18{width:17.481600pt;}
._17{width:18.616960pt;}
._15{width:19.601280pt;}
._16{width:20.943787pt;}
._3{width:22.080000pt;}
._2{width:23.648000pt;}
._1a{width:24.648107pt;}
._25{width:25.574613pt;}
._1e{width:26.953387pt;}
._1c{width:30.307627pt;}
._8{width:31.370667pt;}
._14{width:32.693120pt;}
._24{width:35.625173pt;}
._23{width:36.541227pt;}
._20{width:46.830080pt;}
._7{width:56.405333pt;}
._2e{width:89.261653pt;}
._5{width:91.296000pt;}
._13{width:119.488000pt;}
._2d{width:135.448320pt;}
._29{width:165.973760pt;}
._2f{width:209.301333pt;}
._27{width:214.474667pt;}
._26{width:215.741867pt;}
._28{width:346.490880pt;}
._2b{width:398.127360pt;}
.fs14{font-size:6.400000pt;}
.fs13{font-size:37.120000pt;}
.fs12{font-size:39.040000pt;}
.fs4{font-size:42.880000pt;}
.fs15{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fse{font-size:56.448000pt;}
.fsf{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fsc{font-size:65.920000pt;}
.fsb{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fsa{font-size:80.000000pt;}
.fs11{font-size:85.120000pt;}
.fs3{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs8{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs6{font-size:138.880000pt;}
.fs7{font-size:139.008000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:15.200000pt;}
.y9a{bottom:17.120000pt;}
.ye4{bottom:20.000000pt;}
.ydd{bottom:20.480000pt;}
.y99{bottom:20.960000pt;}
.ye3{bottom:23.840000pt;}
.ydf{bottom:26.400000pt;}
.y97{bottom:26.880000pt;}
.y4b{bottom:27.872000pt;}
.yb7{bottom:28.864000pt;}
.y73{bottom:29.024000pt;}
.yb6{bottom:29.504000pt;}
.yde{bottom:30.240000pt;}
.yce{bottom:31.232000pt;}
.ydc{bottom:31.424000pt;}
.yf{bottom:31.488000pt;}
.y72{bottom:32.480000pt;}
.y4e{bottom:32.800000pt;}
.y88{bottom:33.312000pt;}
.y95{bottom:36.800000pt;}
.ydb{bottom:41.760000pt;}
.yda{bottom:45.600000pt;}
.y4f{bottom:67.552000pt;}
.y4a{bottom:71.808000pt;}
.y1e{bottom:76.864000pt;}
.y8d{bottom:85.408000pt;}
.y49{bottom:99.488000pt;}
.y1d{bottom:104.064000pt;}
.yba{bottom:108.896000pt;}
.yd5{bottom:112.928000pt;}
.y8c{bottom:113.568000pt;}
.y77{bottom:120.928000pt;}
.y87{bottom:122.848000pt;}
.yd4{bottom:126.848000pt;}
.y48{bottom:127.168000pt;}
.yb9{bottom:128.096000pt;}
.y81{bottom:137.986667pt;}
.y8{bottom:139.360000pt;}
.yd3{bottom:140.613333pt;}
.y8b{bottom:141.893333pt;}
.y76{bottom:147.200000pt;}
.y86{bottom:150.720000pt;}
.yd2{bottom:154.560000pt;}
.y80{bottom:154.786667pt;}
.y47{bottom:155.333333pt;}
.y7{bottom:158.560000pt;}
.y71{bottom:160.480000pt;}
.yd1{bottom:168.320000pt;}
.y8a{bottom:170.213333pt;}
.y65{bottom:174.560000pt;}
.y70{bottom:177.280000pt;}
.y6{bottom:177.760000pt;}
.y46{bottom:182.533333pt;}
.yc1{bottom:184.666667pt;}
.y6f{bottom:194.080000pt;}
.y5{bottom:196.960000pt;}
.y89{bottom:198.373333pt;}
.y64{bottom:199.360000pt;}
.yc0{bottom:206.426667pt;}
.y45{bottom:207.493333pt;}
.y6e{bottom:210.880000pt;}
.y4{bottom:216.160000pt;}
.y44{bottom:227.200000pt;}
.y6d{bottom:227.680000pt;}
.ybf{bottom:228.346667pt;}
.y63{bottom:232.960000pt;}
.y8e{bottom:234.653333pt;}
.y3{bottom:235.360000pt;}
.y15{bottom:239.426667pt;}
.y6c{bottom:244.480000pt;}
.y43{bottom:246.880000pt;}
.y62{bottom:249.760000pt;}
.ybe{bottom:250.106667pt;}
.y2{bottom:254.560000pt;}
.y6b{bottom:261.280000pt;}
.y61{bottom:266.560000pt;}
.y42{bottom:272.000000pt;}
.ybd{bottom:272.026667pt;}
.y68{bottom:272.933333pt;}
.y1{bottom:273.760000pt;}
.y14{bottom:277.826667pt;}
.y6a{bottom:285.440000pt;}
.y67{bottom:289.733333pt;}
.y41{bottom:291.680000pt;}
.y9d{bottom:291.866667pt;}
.y94{bottom:297.306667pt;}
.y9e{bottom:297.466667pt;}
.y9f{bottom:299.386667pt;}
.y96{bottom:302.746667pt;}
.y69{bottom:303.040000pt;}
.ybc{bottom:304.026667pt;}
.y98{bottom:304.826667pt;}
.y66{bottom:306.533333pt;}
.y40{bottom:311.360000pt;}
.yb{bottom:318.266667pt;}
.ybb{bottom:332.826667pt;}
.y3f{bottom:336.320000pt;}
.ya4{bottom:345.440000pt;}
.y3e{bottom:356.000000pt;}
.ya3{bottom:362.240000pt;}
.y82{bottom:362.720000pt;}
.y93{bottom:364.293333pt;}
.y3d{bottom:375.680000pt;}
.ya2{bottom:383.453333pt;}
.y1c{bottom:391.453333pt;}
.y92{bottom:392.160000pt;}
.y3c{bottom:395.360000pt;}
.ya5{bottom:404.826667pt;}
.ycd{bottom:408.866667pt;}
.y1b{bottom:414.653333pt;}
.yca{bottom:417.146667pt;}
.y3b{bottom:420.346667pt;}
.yb5{bottom:421.920000pt;}
.y9c{bottom:424.386667pt;}
.y7c{bottom:432.960000pt;}
.y7f{bottom:433.373333pt;}
.yc9{bottom:433.946667pt;}
.y1a{bottom:437.893333pt;}
.yb4{bottom:438.720000pt;}
.y3a{bottom:440.026667pt;}
.ycc{bottom:440.933333pt;}
.yc8{bottom:450.746667pt;}
.y91{bottom:451.653333pt;}
.y7b{bottom:452.546667pt;}
.y7e{bottom:452.986667pt;}
.ya1{bottom:453.826667pt;}
.y1f{bottom:455.133333pt;}
.y74{bottom:456.893333pt;}
.ycb{bottom:457.733333pt;}
.y39{bottom:459.706667pt;}
.y19{bottom:461.093333pt;}
.y90{bottom:468.453333pt;}
.y7a{bottom:469.346667pt;}
.y7d{bottom:469.786667pt;}
.ya0{bottom:470.626667pt;}
.y38{bottom:484.826667pt;}
.y18{bottom:486.853333pt;}
.y37{bottom:504.506667pt;}
.y8f{bottom:515.933333pt;}
.y36{bottom:524.186667pt;}
.y35{bottom:543.866667pt;}
.y5e{bottom:547.586667pt;}
.y55{bottom:549.213333pt;}
.y34{bottom:563.546667pt;}
.y5d{bottom:564.386667pt;}
.y54{bottom:572.413333pt;}
.y17{bottom:575.613333pt;}
.y5c{bottom:581.186667pt;}
.ya{bottom:583.586667pt;}
.yac{bottom:585.026667pt;}
.yb3{bottom:585.946667pt;}
.y33{bottom:588.506667pt;}
.y53{bottom:589.213333pt;}
.yd0{bottom:593.786667pt;}
.y5b{bottom:597.986667pt;}
.yab{bottom:601.826667pt;}
.y52{bottom:606.013333pt;}
.y32{bottom:608.226667pt;}
.y9{bottom:612.413333pt;}
.y16{bottom:614.053333pt;}
.y5a{bottom:614.786667pt;}
.yaa{bottom:618.626667pt;}
.yb2{bottom:618.746667pt;}
.y51{bottom:622.813333pt;}
.y31{bottom:627.906667pt;}
.y59{bottom:631.613333pt;}
.ya9{bottom:635.453333pt;}
.yb1{bottom:635.546667pt;}
.y50{bottom:639.613333pt;}
.y30{bottom:647.586667pt;}
.y58{bottom:648.413333pt;}
.ya8{bottom:652.253333pt;}
.yb0{bottom:652.346667pt;}
.y57{bottom:664.386667pt;}
.ye{bottom:664.613333pt;}
.y2f{bottom:667.266667pt;}
.y60{bottom:667.653333pt;}
.ya7{bottom:669.053333pt;}
.yaf{bottom:669.146667pt;}
.yd{bottom:678.533333pt;}
.y56{bottom:681.186667pt;}
.yd9{bottom:681.853333pt;}
.y5f{bottom:684.453333pt;}
.y2e{bottom:686.946667pt;}
.ye2{bottom:691.933333pt;}
.yc{bottom:692.293333pt;}
.yc4{bottom:697.413333pt;}
.yc7{bottom:699.200000pt;}
.yae{bottom:702.266667pt;}
.y83{bottom:703.773333pt;}
.y79{bottom:704.866667pt;}
.y2d{bottom:706.626667pt;}
.yc3{bottom:714.240000pt;}
.yc6{bottom:716.000000pt;}
.yad{bottom:719.066667pt;}
.y85{bottom:721.253333pt;}
.y2c{bottom:726.306667pt;}
.y78{bottom:728.546667pt;}
.yc2{bottom:731.040000pt;}
.yc5{bottom:732.800000pt;}
.y84{bottom:738.053333pt;}
.y13{bottom:745.253333pt;}
.ycf{bottom:747.426667pt;}
.y2b{bottom:751.266667pt;}
.y2a{bottom:770.946667pt;}
.y12{bottom:786.880000pt;}
.y29{bottom:790.653333pt;}
.yd8{bottom:807.066667pt;}
.y28{bottom:810.333333pt;}
.y20{bottom:821.626667pt;}
.y11{bottom:828.480000pt;}
.y27{bottom:830.013333pt;}
.yd7{bottom:842.266667pt;}
.y26{bottom:855.133333pt;}
.y25{bottom:874.813333pt;}
.yd6{bottom:877.466667pt;}
.y24{bottom:894.493333pt;}
.y4d{bottom:909.826667pt;}
.y23{bottom:914.173333pt;}
.ye1{bottom:916.133333pt;}
.ye0{bottom:933.733333pt;}
.y22{bottom:933.853333pt;}
.ya6{bottom:938.946667pt;}
.y75{bottom:948.066667pt;}
.yb8{bottom:950.080000pt;}
.y21{bottom:959.453333pt;}
.y4c{bottom:1005.146667pt;}
.y10{bottom:1010.333333pt;}
.h25{height:6.365625pt;}
.h27{height:22.400000pt;}
.h30{height:25.280000pt;}
.h26{height:28.320000pt;}
.h2b{height:31.343437pt;}
.h2f{height:31.680000pt;}
.h5{height:32.243750pt;}
.hf{height:37.164063pt;}
.h24{height:38.240000pt;}
.h1b{height:43.092500pt;}
.h28{height:43.190437pt;}
.h1d{height:45.051250pt;}
.h2e{height:46.039063pt;}
.h2d{height:47.040000pt;}
.h19{height:48.812500pt;}
.h1a{height:48.895000pt;}
.h1c{height:48.923437pt;}
.h15{height:50.373438pt;}
.h2c{height:51.031250pt;}
.h29{height:51.117500pt;}
.h1{height:55.468750pt;}
.he{height:55.562500pt;}
.h22{height:56.017500pt;}
.h23{height:57.667500pt;}
.h21{height:58.563750pt;}
.h18{height:60.937500pt;}
.h11{height:62.765625pt;}
.h16{height:65.008125pt;}
.h7{height:65.119250pt;}
.h20{height:65.128438pt;}
.h4{height:65.226375pt;}
.h6{height:65.531250pt;}
.h13{height:65.565938pt;}
.h1e{height:65.662312pt;}
.h12{height:67.497188pt;}
.hd{height:69.453125pt;}
.h10{height:71.296875pt;}
.h17{height:73.453125pt;}
.h1f{height:73.551063pt;}
.h2a{height:74.009250pt;}
.h14{height:74.477812pt;}
.h3{height:83.343750pt;}
.h2{height:83.454875pt;}
.hb{height:127.312500pt;}
.ha{height:131.062500pt;}
.hc{height:131.193562pt;}
.h8{height:142.202812pt;}
.h9{height:142.333875pt;}
.h0{height:1040.000000pt;}
.w4{width:22.400000pt;}
.w9{width:26.880000pt;}
.w3{width:28.320000pt;}
.w5{width:38.272000pt;}
.w2{width:38.400000pt;}
.w6{width:47.040000pt;}
.w7{width:47.200000pt;}
.w8{width:90.112000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x13{left:13.951989pt;}
.x16{left:38.239989pt;}
.x15{left:40.511989pt;}
.x1f{left:44.479989pt;}
.x14{left:46.559989pt;}
.x26{left:49.023989pt;}
.x10{left:50.719989pt;}
.x23{left:51.711989pt;}
.x24{left:53.311989pt;}
.x3e{left:54.943989pt;}
.x1c{left:57.535989pt;}
.x4{left:58.655989pt;}
.x1{left:60.671989pt;}
.x11{left:61.791989pt;}
.x6{left:65.087989pt;}
.x5{left:66.367989pt;}
.x34{left:67.999989pt;}
.x35{left:69.279989pt;}
.x2{left:70.975989pt;}
.x2b{left:89.343989pt;}
.x33{left:94.112000pt;}
.x3a{left:107.487989pt;}
.x2d{left:129.279989pt;}
.x46{left:135.999989pt;}
.x3d{left:142.399989pt;}
.x3{left:148.293323pt;}
.x32{left:156.186667pt;}
.x1e{left:175.359989pt;}
.x45{left:187.199989pt;}
.x17{left:188.186656pt;}
.x1a{left:210.693323pt;}
.x8{left:213.893323pt;}
.x21{left:226.373323pt;}
.x49{left:241.893323pt;}
.x41{left:250.906656pt;}
.x36{left:253.853323pt;}
.x27{left:257.599989pt;}
.x2c{left:268.479989pt;}
.x47{left:288.986656pt;}
.x42{left:305.946656pt;}
.x3c{left:318.079989pt;}
.x43{left:334.853323pt;}
.x44{left:337.413323pt;}
.x48{left:375.133333pt;}
.x37{left:378.693323pt;}
.x39{left:379.906656pt;}
.x2f{left:382.813333pt;}
.x1b{left:384.639989pt;}
.x29{left:386.533323pt;}
.x1d{left:387.933323pt;}
.x2a{left:388.866656pt;}
.x25{left:390.786656pt;}
.x28{left:391.679989pt;}
.x3f{left:392.613323pt;}
.x2e{left:408.226656pt;}
.x31{left:427.133333pt;}
.x4b{left:466.533333pt;}
.x30{left:489.253333pt;}
.x4a{left:577.413333pt;}
.x38{left:586.426656pt;}
.x40{left:590.426656pt;}
.x7{left:669.146656pt;}
.x3b{left:671.039989pt;}
.x18{left:672.453323pt;}
.xe{left:802.906656pt;}
.x22{left:837.919989pt;}
.x9{left:840.066656pt;}
.xf{left:860.546656pt;}
.xa{left:880.866656pt;}
.x19{left:893.146656pt;}
.xb{left:925.346656pt;}
.xc{left:934.693323pt;}
.x12{left:940.026656pt;}
.xd{left:999.199989pt;}
.x20{left:1145.186656pt;}
}




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