
    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_5b5c07318a7713b87741a9f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_54fbb386235274cc68aede40.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_d7cd48dc4b08868c7163c40f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_b6a04597341417175b11fd2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.714000;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_e4ea0547a79aeb41c76c8155.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_54a18f726b26aeae3fab6341.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_007c0aaca1c9eb2dcc4f50b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_196133ed8e705b4a63148069.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_fe9250ae4f6ee3075abda00b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_11f0b1430d99110396e1c9b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_6ffaf202d8d94877ce52f1de.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_1d5ba860ab93f18b56fe5a95.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_c761901d7e1a559cc1fb95d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.052000;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_a2d5969305c3910f1ba82791.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.452000;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_57abba644188a9f5e0e6255e.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_49c2a4a899d455bfc1fdaa7a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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;}
.m2{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);}
.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);}
.ve{vertical-align:-19.747338px;}
.v2{vertical-align:-16.878000px;}
.v4{vertical-align:-10.668000px;}
.v3{vertical-align:-4.668000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:18.009186px;}
.v1{vertical-align:23.754000px;}
.vc{vertical-align:30.162000px;}
.v7{vertical-align:34.824000px;}
.v6{vertical-align:45.486000px;}
.va{vertical-align:49.086000px;}
.v5{vertical-align:92.292000px;}
.v9{vertical-align:107.082000px;}
.vb{vertical-align:134.682000px;}
.v8{vertical-align:137.190000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001059px;}
.lsd{letter-spacing:0.001603px;}
.ls11{letter-spacing:0.002696px;}
.ls2c{letter-spacing:0.002700px;}
.ls14{letter-spacing:0.002706px;}
.ls1b{letter-spacing:0.003791px;}
.ls20{letter-spacing:0.004878px;}
.ls27{letter-spacing:0.005976px;}
.ls1e{letter-spacing:0.007603px;}
.ls24{letter-spacing:1.271644px;}
.ls29{letter-spacing:1.759052px;}
.lsc{letter-spacing:1.765052px;}
.ls18{letter-spacing:2.062335px;}
.ls34{letter-spacing:2.755488px;}
.ls28{letter-spacing:2.984915px;}
.ls21{letter-spacing:2.985543px;}
.ls2{letter-spacing:2.988532px;}
.ls2b{letter-spacing:2.990915px;}
.ls10{letter-spacing:2.991543px;}
.ls1{letter-spacing:2.994532px;}
.ls2d{letter-spacing:5.749488px;}
.ls30{letter-spacing:10.182532px;}
.ls31{letter-spacing:10.185427px;}
.ls1f{letter-spacing:10.904124px;}
.lsf{letter-spacing:10.913376px;}
.ls2e{letter-spacing:12.698400px;}
.ls33{letter-spacing:13.992419px;}
.ls1a{letter-spacing:14.540700px;}
.ls8{letter-spacing:14.543412px;}
.ls7{letter-spacing:14.546700px;}
.ls2a{letter-spacing:14.546706px;}
.ls25{letter-spacing:14.546712px;}
.ls26{letter-spacing:16.309052px;}
.ls15{letter-spacing:18.175059px;}
.ls9{letter-spacing:18.178869px;}
.ls16{letter-spacing:18.179412px;}
.lsa{letter-spacing:18.185412px;}
.lse{letter-spacing:18.809644px;}
.ls35{letter-spacing:20.099412px;}
.ls1d{letter-spacing:20.287488px;}
.lsb{letter-spacing:20.293488px;}
.ls13{letter-spacing:21.811059px;}
.ls19{letter-spacing:23.581052px;}
.ls23{letter-spacing:23.923488px;}
.ls12{letter-spacing:24.803447px;}
.ls22{letter-spacing:25.563796px;}
.ls17{letter-spacing:25.569796px;}
.ls4{letter-spacing:52.748915px;}
.ls6{letter-spacing:63.538869px;}
.ls2f{letter-spacing:71.736396px;}
.ls1c{letter-spacing:81.719412px;}
.ls0{letter-spacing:90.260915px;}
.ls32{letter-spacing:375.738298px;}
.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;}
}
.ws14{word-spacing:-42.637126px;}
.wsa{word-spacing:-19.823579px;}
.ws18{word-spacing:-18.183288px;}
.wsb{word-spacing:-15.637104px;}
.ws45{word-spacing:-9.167247px;}
.ws9{word-spacing:-9.091930px;}
.ws13{word-spacing:-6.384142px;}
.ws17{word-spacing:-3.652367px;}
.ws1d{word-spacing:-3.637176px;}
.ws1c{word-spacing:-0.065455px;}
.ws15{word-spacing:-0.047821px;}
.ws1f{word-spacing:-0.035866px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:3.604493px;}
.wsd{word-spacing:3.640358px;}
.ws3{word-spacing:4.805970px;}
.ws4{word-spacing:5.279394px;}
.ws5{word-spacing:5.327215px;}
.ws5e{word-spacing:5.373823px;}
.ws10{word-spacing:5.624884px;}
.ws11{word-spacing:5.684660px;}
.wsf{word-spacing:5.832005px;}
.ws2{word-spacing:6.159278px;}
.wse{word-spacing:6.182079px;}
.ws19{word-spacing:6.187491px;}
.ws8{word-spacing:6.224732px;}
.ws1{word-spacing:8.237588px;}
.ws0{word-spacing:8.323665px;}
.ws16{word-spacing:11.377006px;}
.ws1a{word-spacing:18.743717px;}
.wsc{word-spacing:21.730927px;}
.ws12{word-spacing:22.381006px;}
.ws27{word-spacing:62.639270px;}
.ws20{word-spacing:62.646958px;}
.ws3d{word-spacing:75.335693px;}
.ws36{word-spacing:78.025613px;}
.ws2d{word-spacing:79.065715px;}
.ws32{word-spacing:79.998221px;}
.ws39{word-spacing:81.504576px;}
.ws2a{word-spacing:81.827366px;}
.ws29{word-spacing:82.257754px;}
.ws2c{word-spacing:82.688141px;}
.ws3c{word-spacing:82.759872px;}
.ws28{word-spacing:84.804211px;}
.ws2b{word-spacing:85.413926px;}
.ws35{word-spacing:86.167104px;}
.ws31{word-spacing:86.597491px;}
.ws2e{word-spacing:87.350669px;}
.ws37{word-spacing:87.996250px;}
.ws2f{word-spacing:89.036352px;}
.ws34{word-spacing:89.466739px;}
.ws3b{word-spacing:93.340224px;}
.ws5c{word-spacing:94.209480px;}
.ws25{word-spacing:97.249574px;}
.ws33{word-spacing:99.616704px;}
.ws30{word-spacing:100.692672px;}
.ws38{word-spacing:101.302387px;}
.ws21{word-spacing:106.753958px;}
.ws23{word-spacing:106.789824px;}
.ws1e{word-spacing:110.815066px;}
.ws24{word-spacing:113.102170px;}
.ws22{word-spacing:113.138035px;}
.ws43{word-spacing:116.079014px;}
.ws44{word-spacing:116.114880px;}
.ws42{word-spacing:125.619264px;}
.ws26{word-spacing:128.433429px;}
.ws3e{word-spacing:131.429491px;}
.ws3f{word-spacing:131.465357px;}
.ws5a{word-spacing:133.167550px;}
.ws54{word-spacing:136.558272px;}
.ws4b{word-spacing:137.598374px;}
.ws50{word-spacing:138.530880px;}
.ws57{word-spacing:140.037235px;}
.ws48{word-spacing:140.360026px;}
.ws47{word-spacing:140.790413px;}
.ws4a{word-spacing:141.220800px;}
.ws46{word-spacing:143.336870px;}
.ws49{word-spacing:143.946586px;}
.ws53{word-spacing:144.699763px;}
.ws4f{word-spacing:145.130150px;}
.ws4c{word-spacing:145.883328px;}
.ws55{word-spacing:146.528909px;}
.ws4d{word-spacing:147.569011px;}
.ws52{word-spacing:148.035264px;}
.ws3a{word-spacing:150.509990px;}
.ws41{word-spacing:154.957325px;}
.ws51{word-spacing:158.149363px;}
.ws4e{word-spacing:159.225331px;}
.ws56{word-spacing:159.835046px;}
.ws40{word-spacing:161.090342px;}
.ws5b{word-spacing:206.574392px;}
.ws5d{word-spacing:230.878344px;}
.ws59{word-spacing:456.179634px;}
.ws58{word-spacing:693.888915px;}
.ws1b{word-spacing:1117.054749px;}
._4f{margin-left:-38.285509px;}
._4{margin-left:-30.960026px;}
._6{margin-left:-27.095155px;}
._5{margin-left:-25.392739px;}
._8{margin-left:-19.223881px;}
._7{margin-left:-7.871274px;}
._d{margin-left:-5.320577px;}
._1{margin-left:-2.410162px;}
._3{margin-left:-1.152258px;}
._a{width:1.040102px;}
._0{width:2.324084px;}
._12{width:3.765383px;}
._13{width:5.140483px;}
._4e{width:12.696422px;}
._50{width:17.040718px;}
._11{width:18.645889px;}
._c{width:22.805995px;}
._10{width:26.523613px;}
._e{width:29.192752px;}
._2{width:37.357505px;}
._f{width:63.791069px;}
._31{width:71.731200px;}
._2c{width:72.771302px;}
._9{width:75.428090px;}
._21{width:78.509798px;}
._22{width:81.271450px;}
._32{width:83.244058px;}
._25{width:85.503590px;}
._34{width:89.412941px;}
._26{width:90.775834px;}
._2f{width:92.282189px;}
._33{width:93.322291px;}
._30{width:94.398259px;}
._18{width:98.209569px;}
._23{width:101.607245px;}
._35{width:104.548224px;}
._2e{width:106.484966px;}
._4c{width:108.923827px;}
._27{width:111.147494px;}
._24{width:112.689715px;}
._4d{width:114.375398px;}
._2d{width:115.666560px;}
._2b{width:116.847392px;}
._14{width:118.841326px;}
._2a{width:122.334829px;}
._47{width:124.351941px;}
._29{width:125.422003px;}
._49{width:128.147789px;}
._28{width:131.734349px;}
._3c{width:134.285365px;}
._4b{width:135.598717px;}
._b{width:137.897326px;}
._4a{width:140.814251px;}
._48{width:142.416392px;}
._37{width:144.581400px;}
._3f{width:160.642022px;}
._36{width:161.717990px;}
._20{width:169.644288px;}
._3b{width:179.686656px;}
._3a{width:186.386357px;}
._42{width:190.267008px;}
._39{width:195.180595px;}
._38{width:204.111130px;}
._40{width:209.706163px;}
._1d{width:223.191629px;}
._1c{width:224.267597px;}
._46{width:238.255181px;}
._1f{width:249.122458px;}
._45{width:251.601742px;}
._1b{width:255.793459px;}
._43{width:259.451750px;}
._44{width:261.137434px;}
._51{width:267.026558px;}
._17{width:268.091005px;}
._1e{width:281.186304px;}
._19{width:296.884827px;}
._54{width:303.960960px;}
._3d{width:305.658368px;}
._52{width:351.518746px;}
._53{width:386.989824px;}
._41{width:389.356954px;}
._1a{width:442.617441px;}
._3e{width:487.604557px;}
._15{width:725.581851px;}
._16{width:727.856773px;}
.fc4{color:rgb(26,71,111);}
.fc3{color:rgb(13,128,51);}
.fc2{color:rgb(231,242,235);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:31.190172px;}
.fs3{font-size:35.865600px;}
.fs6{font-size:39.011856px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.985500px;}
.ye9{bottom:14.701869px;}
.ye8{bottom:25.432544px;}
.ye6{bottom:40.236626px;}
.yce{bottom:42.334500px;}
.y7d{bottom:44.008500px;}
.ycd{bottom:44.605500px;}
.ydd{bottom:49.295922px;}
.y8{bottom:54.189000px;}
.y7c{bottom:54.469500px;}
.ycc{bottom:55.066500px;}
.y1c{bottom:60.375000px;}
.yd2{bottom:61.318140px;}
.ya4{bottom:61.402500px;}
.y7b{bottom:64.930500px;}
.ycb{bottom:65.527500px;}
.y7{bottom:68.386500px;}
.ya3{bottom:71.863500px;}
.yf4{bottom:72.532500px;}
.y39{bottom:73.986000px;}
.y7a{bottom:75.390000px;}
.yca{bottom:75.988500px;}
.yb4{bottom:76.873500px;}
.yd1{bottom:80.486094px;}
.y1b{bottom:80.698500px;}
.ya2{bottom:82.324500px;}
.y44{bottom:83.508000px;}
.y26{bottom:85.126500px;}
.y79{bottom:85.851000px;}
.yc9{bottom:86.449500px;}
.yd5{bottom:89.551040px;}
.ya1{bottom:92.785500px;}
.yf3{bottom:92.856000px;}
.y38{bottom:94.309500px;}
.yd3{bottom:94.560297px;}
.y78{bottom:96.312000px;}
.yc8{bottom:96.910500px;}
.yb3{bottom:97.197000px;}
.yea{bottom:99.062594px;}
.y1a{bottom:101.022000px;}
.yd9{bottom:102.840660px;}
.ycf{bottom:102.937224px;}
.yde{bottom:103.130352px;}
.ya0{bottom:103.246500px;}
.y43{bottom:103.831500px;}
.y25{bottom:105.450000px;}
.y77{bottom:106.773000px;}
.yc7{bottom:107.370000px;}
.y5b{bottom:108.559500px;}
.yd4{bottom:110.879613px;}
.yf{bottom:111.994500px;}
.y2e{bottom:112.204500px;}
.y4c{bottom:113.097000px;}
.y9f{bottom:113.707500px;}
.yd0{bottom:114.271424px;}
.y37{bottom:114.633000px;}
.y76{bottom:117.234000px;}
.yb2{bottom:117.520500px;}
.yf2{bottom:117.663000px;}
.yc6{bottom:117.831000px;}
.y62{bottom:119.475000px;}
.ye1{bottom:121.079186px;}
.yd7{bottom:122.600069px;}
.ye7{bottom:123.721081px;}
.y9e{bottom:124.168500px;}
.y8c{bottom:124.885500px;}
.y52{bottom:125.592000px;}
.y19{bottom:125.829000px;}
.y75{bottom:127.695000px;}
.yc5{bottom:128.292000px;}
.y58{bottom:128.589000px;}
.y42{bottom:128.638500px;}
.y24{bottom:130.257000px;}
.y2d{bottom:132.529500px;}
.y6{bottom:132.700500px;}
.y36{bottom:134.958000px;}
.y9d{bottom:135.226500px;}
.y8b{bottom:135.943500px;}
.yd8{bottom:137.736476px;}
.y4b{bottom:137.904000px;}
.y74{bottom:138.156000px;}
.yc4{bottom:138.753000px;}
.y61{bottom:139.800000px;}
.yf1{bottom:140.982000px;}
.ye5{bottom:142.238772px;}
.ydb{bottom:143.361329px;}
.ye2{bottom:143.916572px;}
.y5a{bottom:144.133500px;}
.y51{bottom:145.915500px;}
.y18{bottom:146.152500px;}
.y9c{bottom:146.284500px;}
.y8a{bottom:146.404500px;}
.y41{bottom:146.571000px;}
.ye4{bottom:147.573933px;}
.y73{bottom:148.615500px;}
.y59{bottom:149.043000px;}
.yc3{bottom:149.214000px;}
.y23{bottom:150.582000px;}
.yb1{bottom:151.771500px;}
.y2c{bottom:152.853000px;}
.y35{bottom:155.281500px;}
.y9b{bottom:156.745500px;}
.ye3{bottom:156.856148px;}
.y89{bottom:157.462500px;}
.y4a{bottom:158.227500px;}
.y72{bottom:159.076500px;}
.yc2{bottom:159.675000px;}
.y60{bottom:160.123500px;}
.yae{bottom:160.177500px;}
.y57{bottom:163.525500px;}
.ydc{bottom:164.026025px;}
.y40{bottom:164.503500px;}
.y50{bottom:166.239000px;}
.y17{bottom:166.476000px;}
.ye{bottom:166.636500px;}
.y9a{bottom:167.206500px;}
.y88{bottom:167.923500px;}
.y71{bottom:169.537500px;}
.yc1{bottom:170.136000px;}
.ydf{bottom:170.568236px;}
.ya9{bottom:171.402000px;}
.y5{bottom:173.688000px;}
.yda{bottom:173.863482px;}
.y22{bottom:175.389000px;}
.yac{bottom:176.271000px;}
.y2b{bottom:177.660000px;}
.yd6{bottom:177.665690px;}
.y99{bottom:177.667500px;}
.y87{bottom:178.384500px;}
.y70{bottom:179.998500px;}
.y34{bottom:180.088500px;}
.yf0{bottom:180.219000px;}
.y5f{bottom:180.447000px;}
.yc0{bottom:180.595500px;}
.y3f{bottom:182.437500px;}
.yad{bottom:182.472000px;}
.y49{bottom:183.034500px;}
.y56{bottom:183.849000px;}
.yab{bottom:186.090000px;}
.y16{bottom:186.801000px;}
.yb0{bottom:186.948000px;}
.yd{bottom:186.960000px;}
.y98{bottom:188.128500px;}
.y86{bottom:188.845500px;}
.y6f{bottom:190.459500px;}
.ybf{bottom:191.056500px;}
.yaf{bottom:191.856000px;}
.y21{bottom:195.712500px;}
.yaa{bottom:195.907500px;}
.y2a{bottom:197.983500px;}
.y97{bottom:198.589500px;}
.y85{bottom:199.306500px;}
.y3e{bottom:200.370000px;}
.y33{bottom:200.412000px;}
.yef{bottom:200.542500px;}
.y4{bottom:200.587500px;}
.y5e{bottom:200.770500px;}
.y6e{bottom:200.920500px;}
.y4f{bottom:201.435000px;}
.ybe{bottom:201.517500px;}
.y48{bottom:207.841500px;}
.yc{bottom:208.452000px;}
.y96{bottom:209.049000px;}
.y84{bottom:209.767500px;}
.y6d{bottom:211.381500px;}
.y15{bottom:211.608000px;}
.ybd{bottom:211.978500px;}
.y4e{bottom:212.661000px;}
.y55{bottom:217.924500px;}
.y29{bottom:218.307000px;}
.y95{bottom:220.108500px;}
.y83{bottom:220.227000px;}
.y20{bottom:220.519500px;}
.y32{bottom:220.735500px;}
.y5d{bottom:221.094000px;}
.y3d{bottom:221.290500px;}
.y6c{bottom:221.841000px;}
.ybc{bottom:222.439500px;}
.yee{bottom:225.349500px;}
.y47{bottom:225.774000px;}
.yf5{bottom:228.054000px;}
.ya8{bottom:228.405000px;}
.y54{bottom:229.149000px;}
.y82{bottom:230.688000px;}
.y94{bottom:231.166500px;}
.y14{bottom:231.931500px;}
.y6b{bottom:232.302000px;}
.ybb{bottom:232.900500px;}
.y3{bottom:234.952500px;}
.y3c{bottom:239.224500px;}
.y1f{bottom:240.843000px;}
.y81{bottom:241.149000px;}
.y93{bottom:241.627500px;}
.y5c{bottom:242.016000px;}
.y6a{bottom:242.763000px;}
.y28{bottom:243.114000px;}
.yba{bottom:243.361500px;}
.y46{bottom:243.706500px;}
.y31{bottom:245.542500px;}
.yed{bottom:245.673000px;}
.ye0{bottom:247.288334px;}
.ya7{bottom:248.728500px;}
.y80{bottom:251.610000px;}
.y92{bottom:252.088500px;}
.y69{bottom:253.224000px;}
.yb9{bottom:253.821000px;}
.y13{bottom:256.738500px;}
.y4d{bottom:257.502000px;}
.y1e{bottom:261.166500px;}
.y3b{bottom:261.640500px;}
.y91{bottom:262.549500px;}
.y7f{bottom:262.668000px;}
.y27{bottom:263.437500px;}
.y68{bottom:263.685000px;}
.yb{bottom:264.261000px;}
.yb8{bottom:264.282000px;}
.y45{bottom:264.628500px;}
.y30{bottom:265.866000px;}
.yec{bottom:265.996500px;}
.ya6{bottom:269.052000px;}
.y90{bottom:273.009000px;}
.y53{bottom:273.697500px;}
.y67{bottom:274.146000px;}
.yb7{bottom:274.743000px;}
.y12{bottom:277.062000px;}
.y1d{bottom:281.490000px;}
.y3a{bottom:281.964000px;}
.y8f{bottom:283.470000px;}
.y66{bottom:284.607000px;}
.yb6{bottom:285.204000px;}
.y2f{bottom:286.191000px;}
.ya5{bottom:289.375500px;}
.yeb{bottom:290.256000px;}
.y2{bottom:292.294500px;}
.y8e{bottom:293.931000px;}
.y7e{bottom:295.066500px;}
.y65{bottom:295.665000px;}
.y11{bottom:297.385500px;}
.y8d{bottom:304.990500px;}
.y64{bottom:306.126000px;}
.yb5{bottom:306.723000px;}
.y63{bottom:316.587000px;}
.y1{bottom:319.194000px;}
.ya{bottom:361.560000px;}
.y10{bottom:397.629000px;}
.h10{height:2.618184px;}
.h16{height:22.722528px;}
.h4{height:25.608038px;}
.h11{height:25.679770px;}
.h7{height:26.899200px;}
.h18{height:28.420747px;}
.hf{height:33.187496px;}
.h6{height:34.239550px;}
.h17{height:40.731714px;}
.h9{height:44.416950px;}
.h8{height:44.422950px;}
.ha{height:44.831700px;}
.h13{height:46.538221px;}
.h5{height:49.090950px;}
.he{height:51.710184px;}
.h3{height:55.554699px;}
.h14{height:61.962699px;}
.h2{height:64.557900px;}
.hb{height:94.904184px;}
.hd{height:96.350184px;}
.h12{height:137.300184px;}
.hc{height:139.808184px;}
.h15{height:280.800000px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w2{width:386.100000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x8{left:12.756000px;}
.x9{left:16.824000px;}
.x39{left:18.612711px;}
.x16{left:25.330500px;}
.x1b{left:30.090000px;}
.x24{left:31.168500px;}
.x3a{left:37.525301px;}
.xb{left:49.090500px;}
.x4a{left:51.418444px;}
.x1{left:53.239500px;}
.x2b{left:57.024000px;}
.x1a{left:74.221500px;}
.x3{left:75.846000px;}
.xe{left:81.819000px;}
.x18{left:88.800000px;}
.x19{left:91.975500px;}
.x23{left:97.669500px;}
.x40{left:103.082070px;}
.x49{left:110.565780px;}
.x10{left:115.233000px;}
.x45{left:118.689227px;}
.x44{left:120.970551px;}
.x2d{left:125.967738px;}
.x31{left:127.150647px;}
.x7{left:128.541000px;}
.x1d{left:135.129000px;}
.x38{left:139.836743px;}
.x4b{left:143.763000px;}
.x32{left:149.432790px;}
.x1f{left:151.747500px;}
.x35{left:156.252623px;}
.x37{left:163.000032px;}
.x11{left:164.908500px;}
.x1c{left:167.790000px;}
.xf{left:169.215000px;}
.x3b{left:172.590775px;}
.x6{left:174.564000px;}
.x2{left:178.458000px;}
.xc{left:180.640500px;}
.xd{left:190.158000px;}
.x2f{left:193.212494px;}
.x26{left:194.772000px;}
.x42{left:196.906067px;}
.x12{left:206.731500px;}
.x4{left:210.775500px;}
.xa{left:215.400000px;}
.x3d{left:218.017371px;}
.x27{left:226.017000px;}
.x30{left:228.953244px;}
.x17{left:230.989500px;}
.x5{left:232.398000px;}
.x3c{left:235.072988px;}
.x14{left:243.355500px;}
.x20{left:246.021000px;}
.x48{left:247.095206px;}
.x13{left:249.396000px;}
.x41{left:253.214949px;}
.x1e{left:254.488500px;}
.x25{left:259.267500px;}
.x29{left:261.042000px;}
.x36{left:265.261308px;}
.x43{left:266.963249px;}
.x28{left:268.039500px;}
.x15{left:269.719500px;}
.x34{left:270.862020px;}
.x47{left:272.310480px;}
.x3e{left:276.824847px;}
.x2a{left:286.615500px;}
.x21{left:298.092000px;}
.x2e{left:301.303821px;}
.x2c{left:310.924010px;}
.x46{left:316.838555px;}
.x22{left:355.189500px;}
.x33{left:369.622851px;}
.x3f{left:374.318276px;}
@media print{
.ve{vertical-align:-17.553189pt;}
.v2{vertical-align:-15.002667pt;}
.v4{vertical-align:-9.482667pt;}
.v3{vertical-align:-4.149333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:16.008165pt;}
.v1{vertical-align:21.114667pt;}
.vc{vertical-align:26.810667pt;}
.v7{vertical-align:30.954667pt;}
.v6{vertical-align:40.432000pt;}
.va{vertical-align:43.632000pt;}
.v5{vertical-align:82.037333pt;}
.v9{vertical-align:95.184000pt;}
.vb{vertical-align:119.717333pt;}
.v8{vertical-align:121.946667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000942pt;}
.lsd{letter-spacing:0.001425pt;}
.ls11{letter-spacing:0.002397pt;}
.ls2c{letter-spacing:0.002400pt;}
.ls14{letter-spacing:0.002405pt;}
.ls1b{letter-spacing:0.003370pt;}
.ls20{letter-spacing:0.004336pt;}
.ls27{letter-spacing:0.005312pt;}
.ls1e{letter-spacing:0.006759pt;}
.ls24{letter-spacing:1.130350pt;}
.ls29{letter-spacing:1.563602pt;}
.lsc{letter-spacing:1.568935pt;}
.ls18{letter-spacing:1.833187pt;}
.ls34{letter-spacing:2.449323pt;}
.ls28{letter-spacing:2.653258pt;}
.ls21{letter-spacing:2.653816pt;}
.ls2{letter-spacing:2.656473pt;}
.ls2b{letter-spacing:2.658591pt;}
.ls10{letter-spacing:2.659149pt;}
.ls1{letter-spacing:2.661806pt;}
.ls2d{letter-spacing:5.110656pt;}
.ls30{letter-spacing:9.051139pt;}
.ls31{letter-spacing:9.053713pt;}
.ls1f{letter-spacing:9.692555pt;}
.lsf{letter-spacing:9.700778pt;}
.ls2e{letter-spacing:11.287467pt;}
.ls33{letter-spacing:12.437705pt;}
.ls1a{letter-spacing:12.925067pt;}
.ls8{letter-spacing:12.927477pt;}
.ls7{letter-spacing:12.930400pt;}
.ls2a{letter-spacing:12.930405pt;}
.ls25{letter-spacing:12.930411pt;}
.ls26{letter-spacing:14.496935pt;}
.ls15{letter-spacing:16.155608pt;}
.ls9{letter-spacing:16.158995pt;}
.ls16{letter-spacing:16.159477pt;}
.lsa{letter-spacing:16.164811pt;}
.lse{letter-spacing:16.719684pt;}
.ls35{letter-spacing:17.866144pt;}
.ls1d{letter-spacing:18.033323pt;}
.lsb{letter-spacing:18.038656pt;}
.ls13{letter-spacing:19.387608pt;}
.ls19{letter-spacing:20.960935pt;}
.ls23{letter-spacing:21.265323pt;}
.ls12{letter-spacing:22.047508pt;}
.ls22{letter-spacing:22.723374pt;}
.ls17{letter-spacing:22.728707pt;}
.ls4{letter-spacing:46.887925pt;}
.ls6{letter-spacing:56.478995pt;}
.ls2f{letter-spacing:63.765685pt;}
.ls1c{letter-spacing:72.639477pt;}
.ls0{letter-spacing:80.231925pt;}
.ls32{letter-spacing:333.989598pt;}
.ws14{word-spacing:-37.899668pt;}
.wsa{word-spacing:-17.620959pt;}
.ws18{word-spacing:-16.162923pt;}
.wsb{word-spacing:-13.899648pt;}
.ws45{word-spacing:-8.148664pt;}
.ws9{word-spacing:-8.081715pt;}
.ws13{word-spacing:-5.674793pt;}
.ws17{word-spacing:-3.246548pt;}
.ws1d{word-spacing:-3.233045pt;}
.ws1c{word-spacing:-0.058182pt;}
.ws15{word-spacing:-0.042507pt;}
.ws1f{word-spacing:-0.031881pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:3.203994pt;}
.wsd{word-spacing:3.235874pt;}
.ws3{word-spacing:4.271974pt;}
.ws4{word-spacing:4.692795pt;}
.ws5{word-spacing:4.735302pt;}
.ws5e{word-spacing:4.776731pt;}
.ws10{word-spacing:4.999897pt;}
.ws11{word-spacing:5.053031pt;}
.wsf{word-spacing:5.184004pt;}
.ws2{word-spacing:5.474914pt;}
.wse{word-spacing:5.495182pt;}
.ws19{word-spacing:5.499992pt;}
.ws8{word-spacing:5.533096pt;}
.ws1{word-spacing:7.322300pt;}
.ws0{word-spacing:7.398814pt;}
.ws16{word-spacing:10.112894pt;}
.ws1a{word-spacing:16.661082pt;}
.wsc{word-spacing:19.316380pt;}
.ws12{word-spacing:19.894227pt;}
.ws27{word-spacing:55.679351pt;}
.ws20{word-spacing:55.686185pt;}
.ws3d{word-spacing:66.965060pt;}
.ws36{word-spacing:69.356100pt;}
.ws2d{word-spacing:70.280636pt;}
.ws32{word-spacing:71.109530pt;}
.ws39{word-spacing:72.448512pt;}
.ws2a{word-spacing:72.735437pt;}
.ws29{word-spacing:73.118003pt;}
.ws2c{word-spacing:73.500570pt;}
.ws3c{word-spacing:73.564331pt;}
.ws28{word-spacing:75.381521pt;}
.ws2b{word-spacing:75.923490pt;}
.ws35{word-spacing:76.592981pt;}
.ws31{word-spacing:76.975548pt;}
.ws2e{word-spacing:77.645039pt;}
.ws37{word-spacing:78.218889pt;}
.ws2f{word-spacing:79.143424pt;}
.ws34{word-spacing:79.525990pt;}
.ws3b{word-spacing:82.969088pt;}
.ws5c{word-spacing:83.741760pt;}
.ws25{word-spacing:86.444066pt;}
.ws33{word-spacing:88.548181pt;}
.ws30{word-spacing:89.504597pt;}
.ws38{word-spacing:90.046566pt;}
.ws21{word-spacing:94.892407pt;}
.ws23{word-spacing:94.924288pt;}
.ws1e{word-spacing:98.502281pt;}
.ws24{word-spacing:100.535262pt;}
.ws22{word-spacing:100.567142pt;}
.ws43{word-spacing:103.181346pt;}
.ws44{word-spacing:103.213227pt;}
.ws42{word-spacing:111.661568pt;}
.ws26{word-spacing:114.163048pt;}
.ws3e{word-spacing:116.826214pt;}
.ws3f{word-spacing:116.858095pt;}
.ws5a{word-spacing:118.371155pt;}
.ws54{word-spacing:121.385131pt;}
.ws4b{word-spacing:122.309666pt;}
.ws50{word-spacing:123.138560pt;}
.ws57{word-spacing:124.477542pt;}
.ws48{word-spacing:124.764467pt;}
.ws47{word-spacing:125.147034pt;}
.ws4a{word-spacing:125.529600pt;}
.ws46{word-spacing:127.410551pt;}
.ws49{word-spacing:127.952521pt;}
.ws53{word-spacing:128.622012pt;}
.ws4f{word-spacing:129.004578pt;}
.ws4c{word-spacing:129.674069pt;}
.ws55{word-spacing:130.247919pt;}
.ws4d{word-spacing:131.172454pt;}
.ws52{word-spacing:131.586901pt;}
.ws3a{word-spacing:133.786658pt;}
.ws41{word-spacing:137.739844pt;}
.ws51{word-spacing:140.577212pt;}
.ws4e{word-spacing:141.533628pt;}
.ws56{word-spacing:142.075597pt;}
.ws40{word-spacing:143.191415pt;}
.ws5b{word-spacing:183.621682pt;}
.ws5d{word-spacing:205.225195pt;}
.ws59{word-spacing:405.493008pt;}
.ws58{word-spacing:616.790147pt;}
.ws1b{word-spacing:992.937555pt;}
._4f{margin-left:-34.031564pt;}
._4{margin-left:-27.520023pt;}
._6{margin-left:-24.084582pt;}
._5{margin-left:-22.571323pt;}
._8{margin-left:-17.087894pt;}
._7{margin-left:-6.996688pt;}
._d{margin-left:-4.729401pt;}
._1{margin-left:-2.142366pt;}
._3{margin-left:-1.024229pt;}
._a{width:0.924535pt;}
._0{width:2.065853pt;}
._12{width:3.347007pt;}
._13{width:4.569318pt;}
._4e{width:11.285709pt;}
._50{width:15.147305pt;}
._11{width:16.574124pt;}
._c{width:20.271995pt;}
._10{width:23.576545pt;}
._e{width:25.949113pt;}
._2{width:33.206671pt;}
._f{width:56.703172pt;}
._31{width:63.761067pt;}
._2c{width:64.685602pt;}
._9{width:67.047191pt;}
._21{width:69.786487pt;}
._22{width:72.241289pt;}
._32{width:73.994718pt;}
._25{width:76.003191pt;}
._34{width:79.478170pt;}
._26{width:80.689630pt;}
._2f{width:82.028612pt;}
._33{width:82.953148pt;}
._30{width:83.909564pt;}
._18{width:87.297395pt;}
._23{width:90.317551pt;}
._35{width:92.931755pt;}
._2e{width:94.653303pt;}
._4c{width:96.821180pt;}
._27{width:98.797773pt;}
._24{width:100.168636pt;}
._4d{width:101.667021pt;}
._2d{width:102.814720pt;}
._2b{width:103.864349pt;}
._14{width:105.636735pt;}
._2a{width:108.742070pt;}
._47{width:110.535059pt;}
._29{width:111.486225pt;}
._49{width:113.909146pt;}
._28{width:117.097199pt;}
._3c{width:119.364769pt;}
._4b{width:120.532193pt;}
._b{width:122.575401pt;}
._4a{width:125.168223pt;}
._48{width:126.592348pt;}
._37{width:128.516800pt;}
._3f{width:142.792909pt;}
._36{width:143.749325pt;}
._20{width:150.794923pt;}
._3b{width:159.721472pt;}
._3a{width:165.676762pt;}
._42{width:169.126229pt;}
._39{width:173.493862pt;}
._38{width:181.432115pt;}
._40{width:186.405478pt;}
._1d{width:198.392559pt;}
._1c{width:199.348975pt;}
._46{width:211.782383pt;}
._1f{width:221.442185pt;}
._45{width:223.645993pt;}
._1b{width:227.371964pt;}
._43{width:230.623778pt;}
._44{width:232.122163pt;}
._51{width:237.356941pt;}
._17{width:238.303115pt;}
._1e{width:249.943381pt;}
._19{width:263.897624pt;}
._54{width:270.187520pt;}
._3d{width:271.696327pt;}
._52{width:312.461107pt;}
._53{width:343.990955pt;}
._41{width:346.095070pt;}
._1a{width:393.437725pt;}
._3e{width:433.426273pt;}
._15{width:644.961645pt;}
._16{width:646.983798pt;}
.fs5{font-size:27.724597pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:34.677205pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.542667pt;}
.ye9{bottom:13.068328pt;}
.ye8{bottom:22.606705pt;}
.ye6{bottom:35.765890pt;}
.yce{bottom:37.630667pt;}
.y7d{bottom:39.118667pt;}
.ycd{bottom:39.649333pt;}
.ydd{bottom:43.818597pt;}
.y8{bottom:48.168000pt;}
.y7c{bottom:48.417333pt;}
.ycc{bottom:48.948000pt;}
.y1c{bottom:53.666667pt;}
.yd2{bottom:54.505013pt;}
.ya4{bottom:54.580000pt;}
.y7b{bottom:57.716000pt;}
.ycb{bottom:58.246667pt;}
.y7{bottom:60.788000pt;}
.ya3{bottom:63.878667pt;}
.yf4{bottom:64.473333pt;}
.y39{bottom:65.765333pt;}
.y7a{bottom:67.013333pt;}
.yca{bottom:67.545333pt;}
.yb4{bottom:68.332000pt;}
.yd1{bottom:71.543195pt;}
.y1b{bottom:71.732000pt;}
.ya2{bottom:73.177333pt;}
.y44{bottom:74.229333pt;}
.y26{bottom:75.668000pt;}
.y79{bottom:76.312000pt;}
.yc9{bottom:76.844000pt;}
.yd5{bottom:79.600924pt;}
.ya1{bottom:82.476000pt;}
.yf3{bottom:82.538667pt;}
.y38{bottom:83.830667pt;}
.yd3{bottom:84.053597pt;}
.y78{bottom:85.610667pt;}
.yc8{bottom:86.142667pt;}
.yb3{bottom:86.397333pt;}
.yea{bottom:88.055639pt;}
.y1a{bottom:89.797333pt;}
.yd9{bottom:91.413920pt;}
.ycf{bottom:91.499755pt;}
.yde{bottom:91.671424pt;}
.ya0{bottom:91.774667pt;}
.y43{bottom:92.294667pt;}
.y25{bottom:93.733333pt;}
.y77{bottom:94.909333pt;}
.yc7{bottom:95.440000pt;}
.y5b{bottom:96.497333pt;}
.yd4{bottom:98.559656pt;}
.yf{bottom:99.550667pt;}
.y2e{bottom:99.737333pt;}
.y4c{bottom:100.530667pt;}
.y9f{bottom:101.073333pt;}
.yd0{bottom:101.574599pt;}
.y37{bottom:101.896000pt;}
.y76{bottom:104.208000pt;}
.yb2{bottom:104.462667pt;}
.yf2{bottom:104.589333pt;}
.yc6{bottom:104.738667pt;}
.y62{bottom:106.200000pt;}
.ye1{bottom:107.625943pt;}
.yd7{bottom:108.977839pt;}
.ye7{bottom:109.974294pt;}
.y9e{bottom:110.372000pt;}
.y8c{bottom:111.009333pt;}
.y52{bottom:111.637333pt;}
.y19{bottom:111.848000pt;}
.y75{bottom:113.506667pt;}
.yc5{bottom:114.037333pt;}
.y58{bottom:114.301333pt;}
.y42{bottom:114.345333pt;}
.y24{bottom:115.784000pt;}
.y2d{bottom:117.804000pt;}
.y6{bottom:117.956000pt;}
.y36{bottom:119.962667pt;}
.y9d{bottom:120.201333pt;}
.y8b{bottom:120.838667pt;}
.yd8{bottom:122.432423pt;}
.y4b{bottom:122.581333pt;}
.y74{bottom:122.805333pt;}
.yc4{bottom:123.336000pt;}
.y61{bottom:124.266667pt;}
.yf1{bottom:125.317333pt;}
.ye5{bottom:126.434464pt;}
.ydb{bottom:127.432292pt;}
.ye2{bottom:127.925841pt;}
.y5a{bottom:128.118667pt;}
.y51{bottom:129.702667pt;}
.y18{bottom:129.913333pt;}
.y9c{bottom:130.030667pt;}
.y8a{bottom:130.137333pt;}
.y41{bottom:130.285333pt;}
.ye4{bottom:131.176829pt;}
.y73{bottom:132.102667pt;}
.y59{bottom:132.482667pt;}
.yc3{bottom:132.634667pt;}
.y23{bottom:133.850667pt;}
.yb1{bottom:134.908000pt;}
.y2c{bottom:135.869333pt;}
.y35{bottom:138.028000pt;}
.y9b{bottom:139.329333pt;}
.ye3{bottom:139.427687pt;}
.y89{bottom:139.966667pt;}
.y4a{bottom:140.646667pt;}
.y72{bottom:141.401333pt;}
.yc2{bottom:141.933333pt;}
.y60{bottom:142.332000pt;}
.yae{bottom:142.380000pt;}
.y57{bottom:145.356000pt;}
.ydc{bottom:145.800911pt;}
.y40{bottom:146.225333pt;}
.y50{bottom:147.768000pt;}
.y17{bottom:147.978667pt;}
.ye{bottom:148.121333pt;}
.y9a{bottom:148.628000pt;}
.y88{bottom:149.265333pt;}
.y71{bottom:150.700000pt;}
.yc1{bottom:151.232000pt;}
.ydf{bottom:151.616209pt;}
.ya9{bottom:152.357333pt;}
.y5{bottom:154.389333pt;}
.yda{bottom:154.545317pt;}
.y22{bottom:155.901333pt;}
.yac{bottom:156.685333pt;}
.y2b{bottom:157.920000pt;}
.yd6{bottom:157.925057pt;}
.y99{bottom:157.926667pt;}
.y87{bottom:158.564000pt;}
.y70{bottom:159.998667pt;}
.y34{bottom:160.078667pt;}
.yf0{bottom:160.194667pt;}
.y5f{bottom:160.397333pt;}
.yc0{bottom:160.529333pt;}
.y3f{bottom:162.166667pt;}
.yad{bottom:162.197333pt;}
.y49{bottom:162.697333pt;}
.y56{bottom:163.421333pt;}
.yab{bottom:165.413333pt;}
.y16{bottom:166.045333pt;}
.yb0{bottom:166.176000pt;}
.yd{bottom:166.186667pt;}
.y98{bottom:167.225333pt;}
.y86{bottom:167.862667pt;}
.y6f{bottom:169.297333pt;}
.ybf{bottom:169.828000pt;}
.yaf{bottom:170.538667pt;}
.y21{bottom:173.966667pt;}
.yaa{bottom:174.140000pt;}
.y2a{bottom:175.985333pt;}
.y97{bottom:176.524000pt;}
.y85{bottom:177.161333pt;}
.y3e{bottom:178.106667pt;}
.y33{bottom:178.144000pt;}
.yef{bottom:178.260000pt;}
.y4{bottom:178.300000pt;}
.y5e{bottom:178.462667pt;}
.y6e{bottom:178.596000pt;}
.y4f{bottom:179.053333pt;}
.ybe{bottom:179.126667pt;}
.y48{bottom:184.748000pt;}
.yc{bottom:185.290667pt;}
.y96{bottom:185.821333pt;}
.y84{bottom:186.460000pt;}
.y6d{bottom:187.894667pt;}
.y15{bottom:188.096000pt;}
.ybd{bottom:188.425333pt;}
.y4e{bottom:189.032000pt;}
.y55{bottom:193.710667pt;}
.y29{bottom:194.050667pt;}
.y95{bottom:195.652000pt;}
.y83{bottom:195.757333pt;}
.y20{bottom:196.017333pt;}
.y32{bottom:196.209333pt;}
.y5d{bottom:196.528000pt;}
.y3d{bottom:196.702667pt;}
.y6c{bottom:197.192000pt;}
.ybc{bottom:197.724000pt;}
.yee{bottom:200.310667pt;}
.y47{bottom:200.688000pt;}
.yf5{bottom:202.714667pt;}
.ya8{bottom:203.026667pt;}
.y54{bottom:203.688000pt;}
.y82{bottom:205.056000pt;}
.y94{bottom:205.481333pt;}
.y14{bottom:206.161333pt;}
.y6b{bottom:206.490667pt;}
.ybb{bottom:207.022667pt;}
.y3{bottom:208.846667pt;}
.y3c{bottom:212.644000pt;}
.y1f{bottom:214.082667pt;}
.y81{bottom:214.354667pt;}
.y93{bottom:214.780000pt;}
.y5c{bottom:215.125333pt;}
.y6a{bottom:215.789333pt;}
.y28{bottom:216.101333pt;}
.yba{bottom:216.321333pt;}
.y46{bottom:216.628000pt;}
.y31{bottom:218.260000pt;}
.yed{bottom:218.376000pt;}
.ye0{bottom:219.811852pt;}
.ya7{bottom:221.092000pt;}
.y80{bottom:223.653333pt;}
.y92{bottom:224.078667pt;}
.y69{bottom:225.088000pt;}
.yb9{bottom:225.618667pt;}
.y13{bottom:228.212000pt;}
.y4d{bottom:228.890667pt;}
.y1e{bottom:232.148000pt;}
.y3b{bottom:232.569333pt;}
.y91{bottom:233.377333pt;}
.y7f{bottom:233.482667pt;}
.y27{bottom:234.166667pt;}
.y68{bottom:234.386667pt;}
.yb{bottom:234.898667pt;}
.yb8{bottom:234.917333pt;}
.y45{bottom:235.225333pt;}
.y30{bottom:236.325333pt;}
.yec{bottom:236.441333pt;}
.ya6{bottom:239.157333pt;}
.y90{bottom:242.674667pt;}
.y53{bottom:243.286667pt;}
.y67{bottom:243.685333pt;}
.yb7{bottom:244.216000pt;}
.y12{bottom:246.277333pt;}
.y1d{bottom:250.213333pt;}
.y3a{bottom:250.634667pt;}
.y8f{bottom:251.973333pt;}
.y66{bottom:252.984000pt;}
.yb6{bottom:253.514667pt;}
.y2f{bottom:254.392000pt;}
.ya5{bottom:257.222667pt;}
.yeb{bottom:258.005333pt;}
.y2{bottom:259.817333pt;}
.y8e{bottom:261.272000pt;}
.y7e{bottom:262.281333pt;}
.y65{bottom:262.813333pt;}
.y11{bottom:264.342667pt;}
.y8d{bottom:271.102667pt;}
.y64{bottom:272.112000pt;}
.yb5{bottom:272.642667pt;}
.y63{bottom:281.410667pt;}
.y1{bottom:283.728000pt;}
.ya{bottom:321.386667pt;}
.y10{bottom:353.448000pt;}
.h10{height:2.327275pt;}
.h16{height:20.197802pt;}
.h4{height:22.762701pt;}
.h11{height:22.826462pt;}
.h7{height:23.910400pt;}
.h18{height:25.262886pt;}
.hf{height:29.499997pt;}
.h6{height:30.435155pt;}
.h17{height:36.205968pt;}
.h9{height:39.481733pt;}
.h8{height:39.487067pt;}
.ha{height:39.850400pt;}
.h13{height:41.367307pt;}
.h5{height:43.636400pt;}
.he{height:45.964608pt;}
.h3{height:49.381955pt;}
.h14{height:55.077955pt;}
.h2{height:57.384800pt;}
.hb{height:84.359275pt;}
.hd{height:85.644608pt;}
.h12{height:122.044608pt;}
.hc{height:124.273941pt;}
.h15{height:249.600000pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w2{width:343.200000pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x8{left:11.338667pt;}
.x9{left:14.954667pt;}
.x39{left:16.544632pt;}
.x16{left:22.516000pt;}
.x1b{left:26.746667pt;}
.x24{left:27.705333pt;}
.x3a{left:33.355823pt;}
.xb{left:43.636000pt;}
.x4a{left:45.705284pt;}
.x1{left:47.324000pt;}
.x2b{left:50.688000pt;}
.x1a{left:65.974667pt;}
.x3{left:67.418667pt;}
.xe{left:72.728000pt;}
.x18{left:78.933333pt;}
.x19{left:81.756000pt;}
.x23{left:86.817333pt;}
.x40{left:91.628507pt;}
.x49{left:98.280693pt;}
.x10{left:102.429333pt;}
.x45{left:105.501535pt;}
.x44{left:107.529379pt;}
.x2d{left:111.971323pt;}
.x31{left:113.022797pt;}
.x7{left:114.258667pt;}
.x1d{left:120.114667pt;}
.x38{left:124.299327pt;}
.x4b{left:127.789333pt;}
.x32{left:132.829147pt;}
.x1f{left:134.886667pt;}
.x35{left:138.891220pt;}
.x37{left:144.888917pt;}
.x11{left:146.585333pt;}
.x1c{left:149.146667pt;}
.xf{left:150.413333pt;}
.x3b{left:153.414022pt;}
.x6{left:155.168000pt;}
.x2{left:158.629333pt;}
.xc{left:160.569333pt;}
.xd{left:169.029333pt;}
.x2f{left:171.744439pt;}
.x26{left:173.130667pt;}
.x42{left:175.027615pt;}
.x12{left:183.761333pt;}
.x4{left:187.356000pt;}
.xa{left:191.466667pt;}
.x3d{left:193.793219pt;}
.x27{left:200.904000pt;}
.x30{left:203.513995pt;}
.x17{left:205.324000pt;}
.x5{left:206.576000pt;}
.x3c{left:208.953767pt;}
.x14{left:216.316000pt;}
.x20{left:218.685333pt;}
.x48{left:219.640183pt;}
.x13{left:221.685333pt;}
.x41{left:225.079955pt;}
.x1e{left:226.212000pt;}
.x25{left:230.460000pt;}
.x29{left:232.037333pt;}
.x36{left:235.787829pt;}
.x43{left:237.300665pt;}
.x28{left:238.257333pt;}
.x15{left:239.750667pt;}
.x34{left:240.766240pt;}
.x47{left:242.053760pt;}
.x3e{left:246.066531pt;}
.x2a{left:254.769333pt;}
.x21{left:264.970667pt;}
.x2e{left:267.825619pt;}
.x2c{left:276.376897pt;}
.x46{left:281.634271pt;}
.x22{left:315.724000pt;}
.x33{left:328.553645pt;}
.x3f{left:332.727356pt;}
}




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