
    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_f4882f7f5c3bad48ed99f584.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_ee60e3f0cd13fafa9bee9a12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_424868011def220192c702fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_933205ee365ed69aef10f011.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.826000;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_1e78540e93fd180944adeede.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_eb60520b17fcae2698ed8414.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_deb51b9220590137a84eca07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.839000;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_bfc46ae1548f337c37a64851.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_275df781506f76d1c39b07db.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f8eaf38d8bff12238691e4d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937012;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_9798cb39afc5612d1817d7e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_935d9ea29f4d8a6d7f97f70e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.679688;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);}
.v2{vertical-align:-28.206000px;}
.v3{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.476000px;}
.v5{vertical-align:21.702000px;}
.v7{vertical-align:23.826922px;}
.v6{vertical-align:24.962956px;}
.v1{vertical-align:28.206000px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000098px;}
.ls0{letter-spacing:0.000976px;}
.ls6{letter-spacing:0.001037px;}
.ls14{letter-spacing:0.001261px;}
.ls11{letter-spacing:0.002640px;}
.ls2{letter-spacing:2.988000px;}
.ls10{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.989200px;}
.ls9{letter-spacing:2.991302px;}
.ls1{letter-spacing:2.992176px;}
.ls3{letter-spacing:6.488497px;}
.lse{letter-spacing:11.954471px;}
.lsb{letter-spacing:11.956643px;}
.ls5{letter-spacing:13.451779px;}
.ls8{letter-spacing:14.943900px;}
.ls7{letter-spacing:16.019861px;}
.ls13{letter-spacing:17.813129px;}
.ls12{letter-spacing:20.923200px;}
.lsf{letter-spacing:29.889527px;}
.lsd{letter-spacing:717.239700px;}
.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;}
}
.ws84{word-spacing:-34.604707px;}
.ws15{word-spacing:-16.617617px;}
.wsb{word-spacing:-14.955955px;}
.ws22{word-spacing:-14.943900px;}
.ws5{word-spacing:-13.599000px;}
.ws10{word-spacing:-13.449600px;}
.ws3{word-spacing:-13.294127px;}
.ws2{word-spacing:-11.955150px;}
.ws7d{word-spacing:-8.078596px;}
.ws32{word-spacing:-5.205432px;}
.ws25{word-spacing:-3.347434px;}
.ws69{word-spacing:-3.108331px;}
.ws1e{word-spacing:-2.869229px;}
.ws9c{word-spacing:-2.773595px;}
.ws6e{word-spacing:-2.689902px;}
.ws97{word-spacing:-2.630133px;}
.ws1d{word-spacing:-2.630126px;}
.ws68{word-spacing:-2.510575px;}
.ws54{word-spacing:-2.331248px;}
.ws8b{word-spacing:-2.211697px;}
.ws78{word-spacing:-2.151922px;}
.ws6b{word-spacing:-2.032370px;}
.ws1f{word-spacing:-1.972595px;}
.ws3b{word-spacing:-1.793268px;}
.ws4b{word-spacing:-1.733492px;}
.ws20{word-spacing:-1.673717px;}
.ws60{word-spacing:-1.554166px;}
.ws26{word-spacing:-1.434614px;}
.ws1c{word-spacing:-1.374839px;}
.ws5b{word-spacing:-1.315063px;}
.ws9f{word-spacing:-1.291156px;}
.ws3c{word-spacing:-1.255288px;}
.ws3d{word-spacing:-1.195512px;}
.ws21{word-spacing:-1.135736px;}
.wsd{word-spacing:-1.129766px;}
.ws5a{word-spacing:-1.075961px;}
.ws52{word-spacing:-1.016185px;}
.ws2f{word-spacing:-0.956410px;}
.wsf{word-spacing:-0.914573px;}
.ws2e{word-spacing:-0.896634px;}
.ws34{word-spacing:-0.836858px;}
.ws95{word-spacing:-0.765130px;}
.ws79{word-spacing:-0.717307px;}
.ws4{word-spacing:-0.711333px;}
.ws92{word-spacing:-0.621668px;}
.ws4f{word-spacing:-0.597756px;}
.wsc{word-spacing:-0.537984px;}
.ws8a{word-spacing:-0.537980px;}
.ws89{word-spacing:-0.478205px;}
.ws50{word-spacing:-0.418429px;}
.ws1a{word-spacing:-0.358654px;}
.ws29{word-spacing:-0.179327px;}
.ws8c{word-spacing:-0.119551px;}
.ws8e{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.054396px;}
.ws40{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws8d{word-spacing:0.059776px;}
.ws19{word-spacing:0.119551px;}
.ws77{word-spacing:0.179327px;}
.ws7a{word-spacing:0.239102px;}
.ws91{word-spacing:0.286924px;}
.ws23{word-spacing:0.358654px;}
.ws96{word-spacing:0.382565px;}
.ws71{word-spacing:0.418429px;}
.ws9e{word-spacing:0.478206px;}
.ws28{word-spacing:0.537980px;}
.ws7b{word-spacing:0.597756px;}
.ws75{word-spacing:0.657532px;}
.wsa0{word-spacing:0.669488px;}
.ws18{word-spacing:0.717307px;}
.ws49{word-spacing:0.777083px;}
.ws5e{word-spacing:0.896634px;}
.ws80{word-spacing:0.956410px;}
.ws17{word-spacing:1.075961px;}
.ws62{word-spacing:1.135736px;}
.ws42{word-spacing:1.195512px;}
.ws4d{word-spacing:1.255288px;}
.ws31{word-spacing:1.315063px;}
.ws30{word-spacing:1.374839px;}
.ws43{word-spacing:1.434614px;}
.ws9{word-spacing:1.452557px;}
.ws5f{word-spacing:1.494390px;}
.ws8f{word-spacing:1.530259px;}
.ws13{word-spacing:1.554166px;}
.ws6a{word-spacing:1.613941px;}
.ws3a{word-spacing:1.673717px;}
.ws88{word-spacing:1.733492px;}
.ws8{word-spacing:1.775347px;}
.ws16{word-spacing:1.793268px;}
.ws56{word-spacing:1.853044px;}
.ws35{word-spacing:1.912819px;}
.ws4e{word-spacing:2.032370px;}
.ws7c{word-spacing:2.151922px;}
.ws9a{word-spacing:2.151927px;}
.wsa{word-spacing:2.151936px;}
.ws38{word-spacing:2.211697px;}
.ws74{word-spacing:2.331248px;}
.ws98{word-spacing:2.343209px;}
.ws24{word-spacing:2.391024px;}
.ws57{word-spacing:2.450800px;}
.ws2c{word-spacing:2.510575px;}
.ws83{word-spacing:2.570351px;}
.ws61{word-spacing:2.630126px;}
.ws6c{word-spacing:2.809453px;}
.ws41{word-spacing:2.869229px;}
.ws86{word-spacing:2.929004px;}
.ws7f{word-spacing:2.988780px;}
.ws72{word-spacing:3.048556px;}
.ws58{word-spacing:3.108331px;}
.ws99{word-spacing:3.108339px;}
.ws5d{word-spacing:3.168107px;}
.ws37{word-spacing:3.227882px;}
.ws70{word-spacing:3.407209px;}
.ws2a{word-spacing:3.526760px;}
.ws81{word-spacing:3.646312px;}
.ws55{word-spacing:3.706087px;}
.ws14{word-spacing:3.765863px;}
.ws44{word-spacing:3.825638px;}
.ws39{word-spacing:3.885414px;}
.ws82{word-spacing:3.945190px;}
.ws6f{word-spacing:4.244068px;}
.ws2d{word-spacing:4.303843px;}
.ws5c{word-spacing:4.423394px;}
.ws46{word-spacing:4.722272px;}
.ws2b{word-spacing:4.841824px;}
.ws63{word-spacing:4.901599px;}
.ws53{word-spacing:5.021150px;}
.ws3e{word-spacing:5.080926px;}
.ws65{word-spacing:5.140702px;}
.ws59{word-spacing:5.200477px;}
.ws6d{word-spacing:5.260253px;}
.ws94{word-spacing:5.260266px;}
.ws67{word-spacing:5.263090px;}
.ws93{word-spacing:5.451548px;}
.ws45{word-spacing:5.499355px;}
.ws73{word-spacing:5.559131px;}
.ws64{word-spacing:5.738458px;}
.ws3f{word-spacing:5.798233px;}
.ws48{word-spacing:5.917784px;}
.ws76{word-spacing:5.977560px;}
.ws87{word-spacing:6.037336px;}
.ws47{word-spacing:6.097111px;}
.ws36{word-spacing:6.216662px;}
.wse{word-spacing:6.294413px;}
.ws9b{word-spacing:6.503602px;}
.ws7e{word-spacing:6.575316px;}
.ws4c{word-spacing:6.635092px;}
.ws9d{word-spacing:7.077449px;}
.ws4a{word-spacing:7.950155px;}
.ws66{word-spacing:8.416426px;}
.ws51{word-spacing:8.906564px;}
.ws1b{word-spacing:9.996190px;}
.ws7{word-spacing:11.907329px;}
.ws0{word-spacing:14.156916px;}
.ws27{word-spacing:14.884124px;}
.ws90{word-spacing:17.932725px;}
.ws11{word-spacing:25.351171px;}
.ws12{word-spacing:29.828024px;}
.ws33{word-spacing:116.755616px;}
.ws85{word-spacing:1101.872652px;}
._12{margin-left:-551.526345px;}
._5{margin-left:-19.893370px;}
._2{margin-left:-8.129520px;}
._3{margin-left:-5.582725px;}
._6{margin-left:-4.519066px;}
._1{margin-left:-3.322020px;}
._0{margin-left:-2.044320px;}
._7{margin-left:-1.022170px;}
._11{width:1.394094px;}
._a{width:2.928996px;}
._4{width:4.578812px;}
._f{width:13.461460px;}
._9{width:14.477645px;}
._14{width:15.661207px;}
._c{width:16.723704px;}
._15{width:17.750458px;}
._10{width:18.789337px;}
._e{width:22.173673px;}
._8{width:29.887800px;}
._13{width:79.361835px;}
._b{width:717.623449px;}
._d{width:867.749336px;}
.fc3{color:rgb(77,30,26);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:20.807280px;}
.fsa{font-size:20.821730px;}
.fsd{font-size:33.003342px;}
.fsc{font-size:35.746002px;}
.fs6{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fse{font-size:44.536302px;}
.fs1{font-size:47.820600px;}
.fs0{font-size:51.108000px;}
.fs7{font-size:53.798400px;}
.fs5{font-size:54.396000px;}
.fs8{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:77.708400px;}
.fs3{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.yea{bottom:2.004197px;}
.yed{bottom:2.449560px;}
.y50{bottom:5.428677px;}
.ye3{bottom:5.713875px;}
.yec{bottom:9.853720px;}
.y4f{bottom:11.672306px;}
.ye9{bottom:15.365087px;}
.y48{bottom:46.161818px;}
.y47{bottom:52.405447px;}
.yeb{bottom:57.229211px;}
.ye5{bottom:57.755849px;}
.y46{bottom:58.650520px;}
.ye7{bottom:68.772199px;}
.ye6{bottom:69.023610px;}
.y4b{bottom:72.196927px;}
.y4a{bottom:78.439111px;}
.y4d{bottom:84.570034px;}
.y49{bottom:84.684185px;}
.y4c{bottom:90.810773px;}
.y24{bottom:93.861000px;}
.yfa{bottom:94.926000px;}
.yae{bottom:97.525500px;}
.y5f{bottom:99.265500px;}
.y23{bottom:108.805500px;}
.y11f{bottom:109.869000px;}
.y91{bottom:110.169000px;}
.yf9{bottom:112.858500px;}
.ye2{bottom:121.885500px;}
.y11e{bottom:124.813500px;}
.y90{bottom:128.101500px;}
.yaf{bottom:128.634000px;}
.y4e{bottom:130.348940px;}
.yf8{bottom:130.791000px;}
.y22{bottom:138.007500px;}
.y11d{bottom:139.758000px;}
.ycf{bottom:140.245500px;}
.y8f{bottom:146.034000px;}
.yf7{bottom:148.723500px;}
.y11c{bottom:154.701000px;}
.y5e{bottom:155.001000px;}
.y21{bottom:157.515000px;}
.y8e{bottom:163.966500px;}
.yf6{bottom:166.657500px;}
.y11b{bottom:169.645500px;}
.y5d{bottom:172.933500px;}
.y8d{bottom:181.899000px;}
.yf5{bottom:184.590000px;}
.y5c{bottom:190.866000px;}
.y11a{bottom:199.533000px;}
.y8c{bottom:199.831500px;}
.yf4{bottom:202.522500px;}
.y20{bottom:202.602000px;}
.y51{bottom:203.227500px;}
.ye4{bottom:203.368239px;}
.y5b{bottom:208.798500px;}
.y119{bottom:214.477500px;}
.y8b{bottom:217.765500px;}
.yf3{bottom:220.455000px;}
.y1f{bottom:220.534500px;}
.y5a{bottom:226.731000px;}
.y45{bottom:227.586000px;}
.y118{bottom:229.422000px;}
.y8a{bottom:235.698000px;}
.yf2{bottom:238.387500px;}
.y1e{bottom:238.468500px;}
.y117{bottom:244.365000px;}
.y59{bottom:244.663500px;}
.y89{bottom:253.630500px;}
.yf1{bottom:256.320000px;}
.y1d{bottom:256.401000px;}
.y116{bottom:259.309500px;}
.y58{bottom:262.597500px;}
.y88{bottom:271.563000px;}
.y115{bottom:274.252500px;}
.yf0{bottom:274.254000px;}
.y1c{bottom:274.333500px;}
.y57{bottom:280.530000px;}
.y114{bottom:289.197000px;}
.y87{bottom:289.495500px;}
.y1b{bottom:292.266000px;}
.y56{bottom:298.462500px;}
.y113{bottom:304.141500px;}
.y86{bottom:307.428000px;}
.y1a{bottom:310.198500px;}
.yef{bottom:310.417500px;}
.y55{bottom:316.395000px;}
.y112{bottom:319.084500px;}
.y85{bottom:325.362000px;}
.y19{bottom:328.132500px;}
.yad{bottom:333.855000px;}
.y111{bottom:334.029000px;}
.yce{bottom:334.153500px;}
.y54{bottom:334.327500px;}
.y84{bottom:343.294500px;}
.y110{bottom:348.973500px;}
.yac{bottom:351.787500px;}
.ycd{bottom:352.086000px;}
.y53{bottom:352.261500px;}
.y83{bottom:361.227000px;}
.y10f{bottom:363.916500px;}
.y18{bottom:364.296000px;}
.yee{bottom:368.343000px;}
.yab{bottom:369.720000px;}
.ycc{bottom:370.018500px;}
.y52{bottom:370.194000px;}
.y10e{bottom:378.861000px;}
.y82{bottom:379.159500px;}
.ye1{bottom:379.458000px;}
.yaa{bottom:387.652500px;}
.ycb{bottom:387.952500px;}
.y44{bottom:388.126500px;}
.ye8{bottom:392.701500px;}
.y10d{bottom:393.805500px;}
.y81{bottom:397.092000px;}
.ye0{bottom:397.392000px;}
.ya9{bottom:405.585000px;}
.yca{bottom:405.885000px;}
.y43{bottom:406.059000px;}
.y10c{bottom:408.748500px;}
.y80{bottom:415.026000px;}
.ydf{bottom:415.324500px;}
.ya8{bottom:423.519000px;}
.y10b{bottom:423.693000px;}
.yc9{bottom:423.817500px;}
.y42{bottom:423.991500px;}
.y7f{bottom:432.958500px;}
.yde{bottom:433.257000px;}
.y10a{bottom:438.637500px;}
.ya7{bottom:441.451500px;}
.yc8{bottom:441.750000px;}
.y41{bottom:441.924000px;}
.y17{bottom:450.166500px;}
.y7e{bottom:450.891000px;}
.ydd{bottom:451.189500px;}
.y109{bottom:453.580500px;}
.ya6{bottom:459.384000px;}
.yc7{bottom:459.682500px;}
.y40{bottom:459.856500px;}
.y108{bottom:468.525000px;}
.y7d{bottom:468.823500px;}
.ydc{bottom:469.122000px;}
.y16{bottom:477.234000px;}
.ya5{bottom:477.316500px;}
.yc6{bottom:477.615000px;}
.y3f{bottom:477.790500px;}
.y107{bottom:483.468000px;}
.y7c{bottom:486.756000px;}
.ydb{bottom:487.054500px;}
.y15{bottom:493.374000px;}
.y14{bottom:493.789500px;}
.ya4{bottom:495.249000px;}
.yc5{bottom:495.549000px;}
.y3e{bottom:495.723000px;}
.y106{bottom:498.412500px;}
.y7b{bottom:504.688500px;}
.yda{bottom:504.988500px;}
.ya3{bottom:513.181500px;}
.y105{bottom:513.357000px;}
.yc4{bottom:513.481500px;}
.y3d{bottom:513.655500px;}
.y7a{bottom:522.622500px;}
.yd9{bottom:522.921000px;}
.y13{bottom:527.446500px;}
.y104{bottom:528.300000px;}
.ya2{bottom:531.115500px;}
.yc3{bottom:531.414000px;}
.y3c{bottom:531.588000px;}
.y79{bottom:540.555000px;}
.yd8{bottom:540.853500px;}
.y103{bottom:543.244500px;}
.y12{bottom:543.585000px;}
.ya1{bottom:549.048000px;}
.yc2{bottom:549.346500px;}
.y3b{bottom:549.520500px;}
.y102{bottom:558.189000px;}
.y78{bottom:558.487500px;}
.yd7{bottom:558.786000px;}
.y11{bottom:559.725000px;}
.ya0{bottom:566.980500px;}
.yc1{bottom:567.279000px;}
.y3a{bottom:567.453000px;}
.y101{bottom:573.132000px;}
.y10{bottom:575.865000px;}
.y77{bottom:576.420000px;}
.yd6{bottom:576.718500px;}
.y9f{bottom:584.913000px;}
.yc0{bottom:585.211500px;}
.y39{bottom:585.387000px;}
.y100{bottom:588.076500px;}
.yf{bottom:592.003500px;}
.y6a{bottom:593.617500px;}
.y76{bottom:594.352500px;}
.yd5{bottom:594.651000px;}
.y9e{bottom:602.845500px;}
.yff{bottom:603.021000px;}
.ybf{bottom:603.145500px;}
.ye{bottom:608.143500px;}
.y75{bottom:612.285000px;}
.yd4{bottom:612.585000px;}
.yfe{bottom:617.964000px;}
.y9d{bottom:620.779500px;}
.ybe{bottom:621.078000px;}
.y38{bottom:621.550500px;}
.yd{bottom:624.283500px;}
.y74{bottom:630.219000px;}
.yd3{bottom:630.517500px;}
.yfd{bottom:632.908500px;}
.y9c{bottom:638.712000px;}
.ybd{bottom:639.010500px;}
.y73{bottom:648.151500px;}
.yd2{bottom:648.450000px;}
.yc{bottom:650.584500px;}
.y9b{bottom:656.644500px;}
.ybc{bottom:656.943000px;}
.y72{bottom:666.084000px;}
.y37{bottom:666.382500px;}
.y9a{bottom:674.577000px;}
.ybb{bottom:674.875500px;}
.y71{bottom:684.016500px;}
.y36{bottom:684.315000px;}
.y99{bottom:692.509500px;}
.yba{bottom:692.808000px;}
.y70{bottom:701.949000px;}
.y35{bottom:702.247500px;}
.y98{bottom:710.442000px;}
.yb9{bottom:710.742000px;}
.yfc{bottom:710.766000px;}
.yb{bottom:714.057000px;}
.y6f{bottom:719.881500px;}
.y34{bottom:720.181500px;}
.y97{bottom:728.376000px;}
.yb8{bottom:728.674500px;}
.ya{bottom:729.748500px;}
.y6e{bottom:737.815500px;}
.y33{bottom:738.114000px;}
.y96{bottom:746.308500px;}
.yb7{bottom:746.607000px;}
.yfb{bottom:746.931000px;}
.y9{bottom:749.319000px;}
.y6d{bottom:755.748000px;}
.y32{bottom:756.046500px;}
.y95{bottom:764.241000px;}
.yb6{bottom:764.539500px;}
.y8{bottom:767.251500px;}
.y6c{bottom:773.680500px;}
.y31{bottom:773.979000px;}
.y94{bottom:782.173500px;}
.yb5{bottom:782.472000px;}
.y6b{bottom:791.613000px;}
.yd1{bottom:791.911500px;}
.y93{bottom:800.106000px;}
.yb4{bottom:800.406000px;}
.y7{bottom:804.387000px;}
.y69{bottom:809.545500px;}
.y30{bottom:809.845500px;}
.y68{bottom:827.478000px;}
.y2f{bottom:827.778000px;}
.y6{bottom:834.873000px;}
.y67{bottom:845.412000px;}
.y2e{bottom:845.710500px;}
.y92{bottom:848.251500px;}
.yb1{bottom:861.058500px;}
.y66{bottom:863.344500px;}
.y2d{bottom:863.643000px;}
.yb3{bottom:863.860500px;}
.y5{bottom:871.783500px;}
.yb2{bottom:878.805000px;}
.y65{bottom:881.277000px;}
.yd0{bottom:881.575500px;}
.y4{bottom:889.716000px;}
.y64{bottom:899.209500px;}
.y2c{bottom:899.508000px;}
.y63{bottom:917.142000px;}
.y2b{bottom:917.442000px;}
.y62{bottom:935.076000px;}
.y2a{bottom:935.374500px;}
.y3{bottom:940.890000px;}
.y61{bottom:953.008500px;}
.y29{bottom:953.307000px;}
.y2{bottom:955.071000px;}
.yb0{bottom:959.529000px;}
.y60{bottom:970.941000px;}
.y28{bottom:971.239500px;}
.y27{bottom:989.172000px;}
.y26{bottom:1007.104500px;}
.y1{bottom:1036.024500px;}
.y25{bottom:1036.993500px;}
.h13{height:20.969837px;}
.h12{height:20.984399px;}
.he{height:24.029952px;}
.h8{height:24.603802px;}
.h15{height:24.675533px;}
.h18{height:25.058690px;}
.h17{height:27.141129px;}
.h3{height:32.900573px;}
.h1d{height:33.140573px;}
.hf{height:34.376573px;}
.hb{height:36.905702px;}
.ha{height:37.013299px;}
.h9{height:37.228493px;}
.h2{height:37.257732px;}
.hd{height:41.125613px;}
.hc{height:41.364715px;}
.h1c{height:41.425613px;}
.h1a{height:44.884242px;}
.h14{height:45.932793px;}
.h4{height:49.351066px;}
.h10{height:50.489846px;}
.h7{height:53.847379px;}
.h6{height:65.630448px;}
.h1b{height:68.711164px;}
.h5{height:69.913872px;}
.h19{height:110.412960px;}
.h11{height:134.091360px;}
.h16{height:215.298810px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:244.774530px;}
.w3{width:279.751316px;}
.w4{width:559.487520px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x17{left:1.090937px;}
.x27{left:8.959352px;}
.x26{left:18.284396px;}
.x2d{left:27.603678px;}
.x28{left:35.197466px;}
.x19{left:50.251026px;}
.x6{left:55.275000px;}
.xd{left:58.086000px;}
.x12{left:61.725000px;}
.x8{left:70.570500px;}
.xf{left:71.824500px;}
.xe{left:73.209000px;}
.x10{left:76.795500px;}
.x13{left:79.657500px;}
.x31{left:82.647000px;}
.x14{left:84.186000px;}
.x11{left:110.065500px;}
.x4{left:115.413000px;}
.x23{left:125.520000px;}
.x25{left:127.990796px;}
.x18{left:129.373598px;}
.x2b{left:132.598011px;}
.xb{left:139.006500px;}
.xc{left:149.079000px;}
.x21{left:151.674000px;}
.x1a{left:154.722356px;}
.x32{left:159.231000px;}
.x16{left:201.018554px;}
.x1f{left:228.045000px;}
.x29{left:232.513568px;}
.x1c{left:234.585000px;}
.x1{left:262.809000px;}
.x2{left:268.512000px;}
.x7{left:303.700500px;}
.x2c{left:310.798890px;}
.x2f{left:330.082500px;}
.x5{left:343.437000px;}
.x9{left:346.797000px;}
.xa{left:359.755500px;}
.x22{left:410.217000px;}
.x30{left:422.517000px;}
.x2e{left:436.724820px;}
.x24{left:461.328004px;}
.x1e{left:480.603000px;}
.x2a{left:490.605000px;}
.x15{left:516.316500px;}
.x1d{left:525.798000px;}
.x1b{left:532.230000px;}
.x3{left:585.039000px;}
.x20{left:614.779500px;}
@media print{
.v2{vertical-align:-25.072000pt;}
.v3{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.312000pt;}
.v5{vertical-align:19.290667pt;}
.v7{vertical-align:21.179486pt;}
.v6{vertical-align:22.189294pt;}
.v1{vertical-align:25.072000pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000087pt;}
.ls0{letter-spacing:0.000868pt;}
.ls6{letter-spacing:0.000922pt;}
.ls14{letter-spacing:0.001121pt;}
.ls11{letter-spacing:0.002347pt;}
.ls2{letter-spacing:2.656000pt;}
.ls10{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.657067pt;}
.ls9{letter-spacing:2.658935pt;}
.ls1{letter-spacing:2.659712pt;}
.ls3{letter-spacing:5.767553pt;}
.lse{letter-spacing:10.626197pt;}
.lsb{letter-spacing:10.628127pt;}
.ls5{letter-spacing:11.957137pt;}
.ls8{letter-spacing:13.283467pt;}
.ls7{letter-spacing:14.239876pt;}
.ls13{letter-spacing:15.833892pt;}
.ls12{letter-spacing:18.598400pt;}
.lsf{letter-spacing:26.568468pt;}
.lsd{letter-spacing:637.546400pt;}
.ws84{word-spacing:-30.759739pt;}
.ws15{word-spacing:-14.771215pt;}
.wsb{word-spacing:-13.294182pt;}
.ws22{word-spacing:-13.283467pt;}
.ws5{word-spacing:-12.088000pt;}
.ws10{word-spacing:-11.955200pt;}
.ws3{word-spacing:-11.817002pt;}
.ws2{word-spacing:-10.626800pt;}
.ws7d{word-spacing:-7.180975pt;}
.ws32{word-spacing:-4.627051pt;}
.ws25{word-spacing:-2.975497pt;}
.ws69{word-spacing:-2.762961pt;}
.ws1e{word-spacing:-2.550426pt;}
.ws9c{word-spacing:-2.465418pt;}
.ws6e{word-spacing:-2.391024pt;}
.ws97{word-spacing:-2.337896pt;}
.ws1d{word-spacing:-2.337890pt;}
.ws68{word-spacing:-2.231622pt;}
.ws54{word-spacing:-2.072221pt;}
.ws8b{word-spacing:-1.965953pt;}
.ws78{word-spacing:-1.912819pt;}
.ws6b{word-spacing:-1.806551pt;}
.ws1f{word-spacing:-1.753418pt;}
.ws3b{word-spacing:-1.594016pt;}
.ws4b{word-spacing:-1.540882pt;}
.ws20{word-spacing:-1.487748pt;}
.ws60{word-spacing:-1.381481pt;}
.ws26{word-spacing:-1.275213pt;}
.ws1c{word-spacing:-1.222079pt;}
.ws5b{word-spacing:-1.168945pt;}
.ws9f{word-spacing:-1.147694pt;}
.ws3c{word-spacing:-1.115811pt;}
.ws3d{word-spacing:-1.062677pt;}
.ws21{word-spacing:-1.009543pt;}
.wsd{word-spacing:-1.004237pt;}
.ws5a{word-spacing:-0.956410pt;}
.ws52{word-spacing:-0.903276pt;}
.ws2f{word-spacing:-0.850142pt;}
.wsf{word-spacing:-0.812954pt;}
.ws2e{word-spacing:-0.797008pt;}
.ws34{word-spacing:-0.743874pt;}
.ws95{word-spacing:-0.680115pt;}
.ws79{word-spacing:-0.637606pt;}
.ws4{word-spacing:-0.632296pt;}
.ws92{word-spacing:-0.552594pt;}
.ws4f{word-spacing:-0.531339pt;}
.wsc{word-spacing:-0.478208pt;}
.ws8a{word-spacing:-0.478205pt;}
.ws89{word-spacing:-0.425071pt;}
.ws50{word-spacing:-0.371937pt;}
.ws1a{word-spacing:-0.318803pt;}
.ws29{word-spacing:-0.159402pt;}
.ws8c{word-spacing:-0.106268pt;}
.ws8e{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.048352pt;}
.ws40{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.053134pt;}
.ws19{word-spacing:0.106268pt;}
.ws77{word-spacing:0.159402pt;}
.ws7a{word-spacing:0.212535pt;}
.ws91{word-spacing:0.255043pt;}
.ws23{word-spacing:0.318803pt;}
.ws96{word-spacing:0.340058pt;}
.ws71{word-spacing:0.371937pt;}
.ws9e{word-spacing:0.425072pt;}
.ws28{word-spacing:0.478205pt;}
.ws7b{word-spacing:0.531339pt;}
.ws75{word-spacing:0.584473pt;}
.wsa0{word-spacing:0.595101pt;}
.ws18{word-spacing:0.637606pt;}
.ws49{word-spacing:0.690740pt;}
.ws5e{word-spacing:0.797008pt;}
.ws80{word-spacing:0.850142pt;}
.ws17{word-spacing:0.956410pt;}
.ws62{word-spacing:1.009543pt;}
.ws42{word-spacing:1.062677pt;}
.ws4d{word-spacing:1.115811pt;}
.ws31{word-spacing:1.168945pt;}
.ws30{word-spacing:1.222079pt;}
.ws43{word-spacing:1.275213pt;}
.ws9{word-spacing:1.291162pt;}
.ws5f{word-spacing:1.328347pt;}
.ws8f{word-spacing:1.360230pt;}
.ws13{word-spacing:1.381481pt;}
.ws6a{word-spacing:1.434614pt;}
.ws3a{word-spacing:1.487748pt;}
.ws88{word-spacing:1.540882pt;}
.ws8{word-spacing:1.578086pt;}
.ws16{word-spacing:1.594016pt;}
.ws56{word-spacing:1.647150pt;}
.ws35{word-spacing:1.700284pt;}
.ws4e{word-spacing:1.806551pt;}
.ws7c{word-spacing:1.912819pt;}
.ws9a{word-spacing:1.912824pt;}
.wsa{word-spacing:1.912832pt;}
.ws38{word-spacing:1.965953pt;}
.ws74{word-spacing:2.072221pt;}
.ws98{word-spacing:2.082853pt;}
.ws24{word-spacing:2.125355pt;}
.ws57{word-spacing:2.178489pt;}
.ws2c{word-spacing:2.231622pt;}
.ws83{word-spacing:2.284756pt;}
.ws61{word-spacing:2.337890pt;}
.ws6c{word-spacing:2.497292pt;}
.ws41{word-spacing:2.550426pt;}
.ws86{word-spacing:2.603559pt;}
.ws7f{word-spacing:2.656693pt;}
.ws72{word-spacing:2.709827pt;}
.ws58{word-spacing:2.762961pt;}
.ws99{word-spacing:2.762968pt;}
.ws5d{word-spacing:2.816095pt;}
.ws37{word-spacing:2.869229pt;}
.ws70{word-spacing:3.028630pt;}
.ws2a{word-spacing:3.134898pt;}
.ws81{word-spacing:3.241166pt;}
.ws55{word-spacing:3.294300pt;}
.ws14{word-spacing:3.347434pt;}
.ws44{word-spacing:3.400567pt;}
.ws39{word-spacing:3.453701pt;}
.ws82{word-spacing:3.506835pt;}
.ws6f{word-spacing:3.772505pt;}
.ws2d{word-spacing:3.825638pt;}
.ws5c{word-spacing:3.931906pt;}
.ws46{word-spacing:4.197575pt;}
.ws2b{word-spacing:4.303843pt;}
.ws63{word-spacing:4.356977pt;}
.ws53{word-spacing:4.463245pt;}
.ws3e{word-spacing:4.516379pt;}
.ws65{word-spacing:4.569513pt;}
.ws59{word-spacing:4.622646pt;}
.ws6d{word-spacing:4.675780pt;}
.ws94{word-spacing:4.675792pt;}
.ws67{word-spacing:4.678302pt;}
.ws93{word-spacing:4.845821pt;}
.ws45{word-spacing:4.888316pt;}
.ws73{word-spacing:4.941450pt;}
.ws64{word-spacing:5.100851pt;}
.ws3f{word-spacing:5.153985pt;}
.ws48{word-spacing:5.260253pt;}
.ws76{word-spacing:5.313387pt;}
.ws87{word-spacing:5.366521pt;}
.ws47{word-spacing:5.419654pt;}
.ws36{word-spacing:5.525922pt;}
.wse{word-spacing:5.595034pt;}
.ws9b{word-spacing:5.780979pt;}
.ws7e{word-spacing:5.844725pt;}
.ws4c{word-spacing:5.897859pt;}
.ws9d{word-spacing:6.291066pt;}
.ws4a{word-spacing:7.066804pt;}
.ws66{word-spacing:7.481267pt;}
.ws51{word-spacing:7.916946pt;}
.ws1b{word-spacing:8.885502pt;}
.ws7{word-spacing:10.584293pt;}
.ws0{word-spacing:12.583925pt;}
.ws27{word-spacing:13.230333pt;}
.ws90{word-spacing:15.940200pt;}
.ws11{word-spacing:22.534374pt;}
.ws12{word-spacing:26.513799pt;}
.ws33{word-spacing:103.782770pt;}
.ws85{word-spacing:979.442358pt;}
._12{margin-left:-490.245640pt;}
._5{margin-left:-17.682995pt;}
._2{margin-left:-7.226240pt;}
._3{margin-left:-4.962422pt;}
._6{margin-left:-4.016947pt;}
._1{margin-left:-2.952907pt;}
._0{margin-left:-1.817173pt;}
._7{margin-left:-0.908595pt;}
._11{width:1.239195pt;}
._a{width:2.603552pt;}
._4{width:4.070055pt;}
._f{width:11.965742pt;}
._9{width:12.869018pt;}
._14{width:13.921073pt;}
._c{width:14.865515pt;}
._15{width:15.778185pt;}
._10{width:16.701633pt;}
._e{width:19.709932pt;}
._8{width:26.566933pt;}
._13{width:70.543853pt;}
._b{width:637.887510pt;}
._d{width:771.332743pt;}
.fsb{font-size:18.495360pt;}
.fsa{font-size:18.508204pt;}
.fsd{font-size:29.336304pt;}
.fsc{font-size:31.774224pt;}
.fs6{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fse{font-size:39.587824pt;}
.fs1{font-size:42.507200pt;}
.fs0{font-size:45.429333pt;}
.fs7{font-size:47.820800pt;}
.fs5{font-size:48.352000pt;}
.fs8{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:69.074133pt;}
.fs3{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:1.781508pt;}
.yed{bottom:2.177386pt;}
.y50{bottom:4.825491pt;}
.ye3{bottom:5.079000pt;}
.yec{bottom:8.758862pt;}
.y4f{bottom:10.375383pt;}
.ye9{bottom:13.657855pt;}
.y48{bottom:41.032727pt;}
.y47{bottom:46.582619pt;}
.yeb{bottom:50.870410pt;}
.ye5{bottom:51.338532pt;}
.y46{bottom:52.133796pt;}
.ye7{bottom:61.130844pt;}
.ye6{bottom:61.354320pt;}
.y4b{bottom:64.175046pt;}
.y4a{bottom:69.723654pt;}
.y4d{bottom:75.173363pt;}
.y49{bottom:75.274831pt;}
.y4c{bottom:80.720687pt;}
.y24{bottom:83.432000pt;}
.yfa{bottom:84.378667pt;}
.yae{bottom:86.689333pt;}
.y5f{bottom:88.236000pt;}
.y23{bottom:96.716000pt;}
.y11f{bottom:97.661333pt;}
.y91{bottom:97.928000pt;}
.yf9{bottom:100.318667pt;}
.ye2{bottom:108.342667pt;}
.y11e{bottom:110.945333pt;}
.y90{bottom:113.868000pt;}
.yaf{bottom:114.341333pt;}
.y4e{bottom:115.865724pt;}
.yf8{bottom:116.258667pt;}
.y22{bottom:122.673333pt;}
.y11d{bottom:124.229333pt;}
.ycf{bottom:124.662667pt;}
.y8f{bottom:129.808000pt;}
.yf7{bottom:132.198667pt;}
.y11c{bottom:137.512000pt;}
.y5e{bottom:137.778667pt;}
.y21{bottom:140.013333pt;}
.y8e{bottom:145.748000pt;}
.yf6{bottom:148.140000pt;}
.y11b{bottom:150.796000pt;}
.y5d{bottom:153.718667pt;}
.y8d{bottom:161.688000pt;}
.yf5{bottom:164.080000pt;}
.y5c{bottom:169.658667pt;}
.y11a{bottom:177.362667pt;}
.y8c{bottom:177.628000pt;}
.yf4{bottom:180.020000pt;}
.y20{bottom:180.090667pt;}
.y51{bottom:180.646667pt;}
.ye4{bottom:180.771768pt;}
.y5b{bottom:185.598667pt;}
.y119{bottom:190.646667pt;}
.y8b{bottom:193.569333pt;}
.yf3{bottom:195.960000pt;}
.y1f{bottom:196.030667pt;}
.y5a{bottom:201.538667pt;}
.y45{bottom:202.298667pt;}
.y118{bottom:203.930667pt;}
.y8a{bottom:209.509333pt;}
.yf2{bottom:211.900000pt;}
.y1e{bottom:211.972000pt;}
.y117{bottom:217.213333pt;}
.y59{bottom:217.478667pt;}
.y89{bottom:225.449333pt;}
.yf1{bottom:227.840000pt;}
.y1d{bottom:227.912000pt;}
.y116{bottom:230.497333pt;}
.y58{bottom:233.420000pt;}
.y88{bottom:241.389333pt;}
.y115{bottom:243.780000pt;}
.yf0{bottom:243.781333pt;}
.y1c{bottom:243.852000pt;}
.y57{bottom:249.360000pt;}
.y114{bottom:257.064000pt;}
.y87{bottom:257.329333pt;}
.y1b{bottom:259.792000pt;}
.y56{bottom:265.300000pt;}
.y113{bottom:270.348000pt;}
.y86{bottom:273.269333pt;}
.y1a{bottom:275.732000pt;}
.yef{bottom:275.926667pt;}
.y55{bottom:281.240000pt;}
.y112{bottom:283.630667pt;}
.y85{bottom:289.210667pt;}
.y19{bottom:291.673333pt;}
.yad{bottom:296.760000pt;}
.y111{bottom:296.914667pt;}
.yce{bottom:297.025333pt;}
.y54{bottom:297.180000pt;}
.y84{bottom:305.150667pt;}
.y110{bottom:310.198667pt;}
.yac{bottom:312.700000pt;}
.ycd{bottom:312.965333pt;}
.y53{bottom:313.121333pt;}
.y83{bottom:321.090667pt;}
.y10f{bottom:323.481333pt;}
.y18{bottom:323.818667pt;}
.yee{bottom:327.416000pt;}
.yab{bottom:328.640000pt;}
.ycc{bottom:328.905333pt;}
.y52{bottom:329.061333pt;}
.y10e{bottom:336.765333pt;}
.y82{bottom:337.030667pt;}
.ye1{bottom:337.296000pt;}
.yaa{bottom:344.580000pt;}
.ycb{bottom:344.846667pt;}
.y44{bottom:345.001333pt;}
.ye8{bottom:349.068000pt;}
.y10d{bottom:350.049333pt;}
.y81{bottom:352.970667pt;}
.ye0{bottom:353.237333pt;}
.ya9{bottom:360.520000pt;}
.yca{bottom:360.786667pt;}
.y43{bottom:360.941333pt;}
.y10c{bottom:363.332000pt;}
.y80{bottom:368.912000pt;}
.ydf{bottom:369.177333pt;}
.ya8{bottom:376.461333pt;}
.y10b{bottom:376.616000pt;}
.yc9{bottom:376.726667pt;}
.y42{bottom:376.881333pt;}
.y7f{bottom:384.852000pt;}
.yde{bottom:385.117333pt;}
.y10a{bottom:389.900000pt;}
.ya7{bottom:392.401333pt;}
.yc8{bottom:392.666667pt;}
.y41{bottom:392.821333pt;}
.y17{bottom:400.148000pt;}
.y7e{bottom:400.792000pt;}
.ydd{bottom:401.057333pt;}
.y109{bottom:403.182667pt;}
.ya6{bottom:408.341333pt;}
.yc7{bottom:408.606667pt;}
.y40{bottom:408.761333pt;}
.y108{bottom:416.466667pt;}
.y7d{bottom:416.732000pt;}
.ydc{bottom:416.997333pt;}
.y16{bottom:424.208000pt;}
.ya5{bottom:424.281333pt;}
.yc6{bottom:424.546667pt;}
.y3f{bottom:424.702667pt;}
.y107{bottom:429.749333pt;}
.y7c{bottom:432.672000pt;}
.ydb{bottom:432.937333pt;}
.y15{bottom:438.554667pt;}
.y14{bottom:438.924000pt;}
.ya4{bottom:440.221333pt;}
.yc5{bottom:440.488000pt;}
.y3e{bottom:440.642667pt;}
.y106{bottom:443.033333pt;}
.y7b{bottom:448.612000pt;}
.yda{bottom:448.878667pt;}
.ya3{bottom:456.161333pt;}
.y105{bottom:456.317333pt;}
.yc4{bottom:456.428000pt;}
.y3d{bottom:456.582667pt;}
.y7a{bottom:464.553333pt;}
.yd9{bottom:464.818667pt;}
.y13{bottom:468.841333pt;}
.y104{bottom:469.600000pt;}
.ya2{bottom:472.102667pt;}
.yc3{bottom:472.368000pt;}
.y3c{bottom:472.522667pt;}
.y79{bottom:480.493333pt;}
.yd8{bottom:480.758667pt;}
.y103{bottom:482.884000pt;}
.y12{bottom:483.186667pt;}
.ya1{bottom:488.042667pt;}
.yc2{bottom:488.308000pt;}
.y3b{bottom:488.462667pt;}
.y102{bottom:496.168000pt;}
.y78{bottom:496.433333pt;}
.yd7{bottom:496.698667pt;}
.y11{bottom:497.533333pt;}
.ya0{bottom:503.982667pt;}
.yc1{bottom:504.248000pt;}
.y3a{bottom:504.402667pt;}
.y101{bottom:509.450667pt;}
.y10{bottom:511.880000pt;}
.y77{bottom:512.373333pt;}
.yd6{bottom:512.638667pt;}
.y9f{bottom:519.922667pt;}
.yc0{bottom:520.188000pt;}
.y39{bottom:520.344000pt;}
.y100{bottom:522.734667pt;}
.yf{bottom:526.225333pt;}
.y6a{bottom:527.660000pt;}
.y76{bottom:528.313333pt;}
.yd5{bottom:528.578667pt;}
.y9e{bottom:535.862667pt;}
.yff{bottom:536.018667pt;}
.ybf{bottom:536.129333pt;}
.ye{bottom:540.572000pt;}
.y75{bottom:544.253333pt;}
.yd4{bottom:544.520000pt;}
.yfe{bottom:549.301333pt;}
.y9d{bottom:551.804000pt;}
.ybe{bottom:552.069333pt;}
.y38{bottom:552.489333pt;}
.yd{bottom:554.918667pt;}
.y74{bottom:560.194667pt;}
.yd3{bottom:560.460000pt;}
.yfd{bottom:562.585333pt;}
.y9c{bottom:567.744000pt;}
.ybd{bottom:568.009333pt;}
.y73{bottom:576.134667pt;}
.yd2{bottom:576.400000pt;}
.yc{bottom:578.297333pt;}
.y9b{bottom:583.684000pt;}
.ybc{bottom:583.949333pt;}
.y72{bottom:592.074667pt;}
.y37{bottom:592.340000pt;}
.y9a{bottom:599.624000pt;}
.ybb{bottom:599.889333pt;}
.y71{bottom:608.014667pt;}
.y36{bottom:608.280000pt;}
.y99{bottom:615.564000pt;}
.yba{bottom:615.829333pt;}
.y70{bottom:623.954667pt;}
.y35{bottom:624.220000pt;}
.y98{bottom:631.504000pt;}
.yb9{bottom:631.770667pt;}
.yfc{bottom:631.792000pt;}
.yb{bottom:634.717333pt;}
.y6f{bottom:639.894667pt;}
.y34{bottom:640.161333pt;}
.y97{bottom:647.445333pt;}
.yb8{bottom:647.710667pt;}
.ya{bottom:648.665333pt;}
.y6e{bottom:655.836000pt;}
.y33{bottom:656.101333pt;}
.y96{bottom:663.385333pt;}
.yb7{bottom:663.650667pt;}
.yfb{bottom:663.938667pt;}
.y9{bottom:666.061333pt;}
.y6d{bottom:671.776000pt;}
.y32{bottom:672.041333pt;}
.y95{bottom:679.325333pt;}
.yb6{bottom:679.590667pt;}
.y8{bottom:682.001333pt;}
.y6c{bottom:687.716000pt;}
.y31{bottom:687.981333pt;}
.y94{bottom:695.265333pt;}
.yb5{bottom:695.530667pt;}
.y6b{bottom:703.656000pt;}
.yd1{bottom:703.921333pt;}
.y93{bottom:711.205333pt;}
.yb4{bottom:711.472000pt;}
.y7{bottom:715.010667pt;}
.y69{bottom:719.596000pt;}
.y30{bottom:719.862667pt;}
.y68{bottom:735.536000pt;}
.y2f{bottom:735.802667pt;}
.y6{bottom:742.109333pt;}
.y67{bottom:751.477333pt;}
.y2e{bottom:751.742667pt;}
.y92{bottom:754.001333pt;}
.yb1{bottom:765.385333pt;}
.y66{bottom:767.417333pt;}
.y2d{bottom:767.682667pt;}
.yb3{bottom:767.876000pt;}
.y5{bottom:774.918667pt;}
.yb2{bottom:781.160000pt;}
.y65{bottom:783.357333pt;}
.yd0{bottom:783.622667pt;}
.y4{bottom:790.858667pt;}
.y64{bottom:799.297333pt;}
.y2c{bottom:799.562667pt;}
.y63{bottom:815.237333pt;}
.y2b{bottom:815.504000pt;}
.y62{bottom:831.178667pt;}
.y2a{bottom:831.444000pt;}
.y3{bottom:836.346667pt;}
.y61{bottom:847.118667pt;}
.y29{bottom:847.384000pt;}
.y2{bottom:848.952000pt;}
.yb0{bottom:852.914667pt;}
.y60{bottom:863.058667pt;}
.y28{bottom:863.324000pt;}
.y27{bottom:879.264000pt;}
.y26{bottom:895.204000pt;}
.y1{bottom:920.910667pt;}
.y25{bottom:921.772000pt;}
.h13{height:18.639855pt;}
.h12{height:18.652799pt;}
.he{height:21.359957pt;}
.h8{height:21.870046pt;}
.h15{height:21.933807pt;}
.h18{height:22.274391pt;}
.h17{height:24.125448pt;}
.h3{height:29.244954pt;}
.h1d{height:29.458287pt;}
.hf{height:30.556954pt;}
.hb{height:32.805069pt;}
.ha{height:32.900710pt;}
.h9{height:33.091994pt;}
.h2{height:33.117984pt;}
.hd{height:36.556100pt;}
.hc{height:36.768636pt;}
.h1c{height:36.822767pt;}
.h1a{height:39.897104pt;}
.h14{height:40.829149pt;}
.h4{height:43.867614pt;}
.h10{height:44.879863pt;}
.h7{height:47.864337pt;}
.h6{height:58.338176pt;}
.h1b{height:61.076590pt;}
.h5{height:62.145664pt;}
.h19{height:98.144853pt;}
.h11{height:119.192320pt;}
.h16{height:191.376720pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:217.577360pt;}
.w3{width:248.667836pt;}
.w4{width:497.322240pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.969722pt;}
.x27{left:7.963868pt;}
.x26{left:16.252796pt;}
.x2d{left:24.536603pt;}
.x28{left:31.286636pt;}
.x19{left:44.667579pt;}
.x6{left:49.133333pt;}
.xd{left:51.632000pt;}
.x12{left:54.866667pt;}
.x8{left:62.729333pt;}
.xf{left:63.844000pt;}
.xe{left:65.074667pt;}
.x10{left:68.262667pt;}
.x13{left:70.806667pt;}
.x31{left:73.464000pt;}
.x14{left:74.832000pt;}
.x11{left:97.836000pt;}
.x4{left:102.589333pt;}
.x23{left:111.573333pt;}
.x25{left:113.769596pt;}
.x18{left:114.998754pt;}
.x2b{left:117.864898pt;}
.xb{left:123.561333pt;}
.xc{left:132.514667pt;}
.x21{left:134.821333pt;}
.x1a{left:137.530983pt;}
.x32{left:141.538667pt;}
.x16{left:178.683159pt;}
.x1f{left:202.706667pt;}
.x29{left:206.678727pt;}
.x1c{left:208.520000pt;}
.x1{left:233.608000pt;}
.x2{left:238.677333pt;}
.x7{left:269.956000pt;}
.x2c{left:276.265680pt;}
.x2f{left:293.406667pt;}
.x5{left:305.277333pt;}
.x9{left:308.264000pt;}
.xa{left:319.782667pt;}
.x22{left:364.637333pt;}
.x30{left:375.570667pt;}
.x2e{left:388.199840pt;}
.x24{left:410.069337pt;}
.x1e{left:427.202667pt;}
.x2a{left:436.093333pt;}
.x15{left:458.948000pt;}
.x1d{left:467.376000pt;}
.x1b{left:473.093333pt;}
.x3{left:520.034667pt;}
.x20{left:546.470667pt;}
}




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