
    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_b97b514e43565968c72bd50b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.018000;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_38599c3c8956cca7ea19479a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_e7bc8e35128e0b61317b707b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.018000;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_bffe655f97a5ba62104fc431.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0525c13714bae9faaab65805.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_356509d0cbda347ebedabb46.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_cf79e341c2407ea34e92b83b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.068848;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_a12926c207225281a226b5d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_0aead6d5e21cd75f6e29cac0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_cb3c4c20e7daa9960b0fe009.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.115234;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_608a0b9d59eb9e437e5ececa.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104492;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_ec26a6af6e6dbbd7187224e6.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-82.071360px;}
.v1{vertical-align:-75.608640px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-3.705120px;}
.ls26{letter-spacing:-3.645360px;}
.ls3a{letter-spacing:-2.583360px;}
.ls2c{letter-spacing:-2.270880px;}
.ls35{letter-spacing:-2.232000px;}
.ls34{letter-spacing:-2.016000px;}
.ls41{letter-spacing:-1.722240px;}
.ls37{letter-spacing:-1.656000px;}
.ls21{letter-spacing:-1.553760px;}
.ls40{letter-spacing:-1.523520px;}
.ls24{letter-spacing:-1.494000px;}
.ls32{letter-spacing:-0.927360px;}
.ls33{letter-spacing:-0.861120px;}
.ls1e{letter-spacing:-0.836640px;}
.ls1f{letter-spacing:-0.776880px;}
.ls39{letter-spacing:-0.728640px;}
.ls23{letter-spacing:-0.657360px;}
.ls3b{letter-spacing:-0.463680px;}
.ls11{letter-spacing:-0.397440px;}
.lsf{letter-spacing:-0.331200px;}
.lse{letter-spacing:-0.298800px;}
.ls3d{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.264960px;}
.ls22{letter-spacing:-0.239040px;}
.ls36{letter-spacing:-0.198720px;}
.ls14{letter-spacing:-0.132480px;}
.ls20{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.077760px;}
.ls1d{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.059760px;}
.ls3e{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.179280px;}
.ls38{letter-spacing:0.198720px;}
.ls31{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.264960px;}
.ls10{letter-spacing:0.331200px;}
.ls18{letter-spacing:0.418320px;}
.ls2a{letter-spacing:0.478080px;}
.ls1a{letter-spacing:0.657360px;}
.ls7{letter-spacing:0.777600px;}
.ls3{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.936000px;}
.ls27{letter-spacing:1.254960px;}
.ls8{letter-spacing:1.340640px;}
.lsb{letter-spacing:1.347840px;}
.lsa{letter-spacing:1.432080px;}
.lsc{letter-spacing:1.656000px;}
.ls9{letter-spacing:2.010960px;}
.ls1{letter-spacing:4.608000px;}
.ls3f{letter-spacing:7.485120px;}
.ls2f{letter-spacing:10.802160px;}
.ls2b{letter-spacing:29.461680px;}
.ls2d{letter-spacing:29.606400px;}
.ls1b{letter-spacing:37.409760px;}
.ls1c{letter-spacing:42.429600px;}
.ls3c{letter-spacing:50.673600px;}
.ls5{letter-spacing:65.113920px;}
.ls28{letter-spacing:150.415920px;}
.ls29{letter-spacing:156.391920px;}
.ls16{letter-spacing:195.773760px;}
.ls4{letter-spacing:1068.223680px;}
.ls2{letter-spacing:1217.261280px;}
.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;}
}
.ws0{word-spacing:-84.000000px;}
.ws1{word-spacing:-60.000000px;}
.ws2{word-spacing:-48.000000px;}
.ws17{word-spacing:-26.621280px;}
.ws9{word-spacing:-21.539520px;}
.ws2a{word-spacing:-20.160000px;}
.ws3d{word-spacing:-20.088000px;}
.ws2b{word-spacing:-20.016000px;}
.ws3b{word-spacing:-18.679680px;}
.ws36{word-spacing:-18.613440px;}
.ws8{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.282240px;}
.ws3f{word-spacing:-18.216000px;}
.ws35{word-spacing:-18.149760px;}
.ws5{word-spacing:-18.083520px;}
.ws2c{word-spacing:-18.017280px;}
.ws31{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.553600px;}
.ws18{word-spacing:-16.792560px;}
.ws40{word-spacing:-16.692480px;}
.ws6{word-spacing:-16.673040px;}
.ws4{word-spacing:-16.613280px;}
.ws1b{word-spacing:-16.493760px;}
.ws27{word-spacing:-16.374240px;}
.ws19{word-spacing:-16.314480px;}
.ws1a{word-spacing:-15.955920px;}
.ws1c{word-spacing:-12.908160px;}
.wsa{word-spacing:-4.608000px;}
.wsc{word-spacing:-2.010960px;}
.wsf{word-spacing:-1.656000px;}
.wsd{word-spacing:-1.432080px;}
.wse{word-spacing:-1.347840px;}
.wsb{word-spacing:-1.340640px;}
.ws28{word-spacing:-1.254960px;}
.ws11{word-spacing:-0.936000px;}
.ws10{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.331200px;}
.ws34{word-spacing:-0.264960px;}
.ws25{word-spacing:-0.239040px;}
.ws2d{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.179280px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:0.059760px;}
.ws21{word-spacing:0.119520px;}
.ws16{word-spacing:0.132480px;}
.ws33{word-spacing:0.198720px;}
.ws23{word-spacing:0.239040px;}
.ws15{word-spacing:0.264960px;}
.ws3e{word-spacing:0.288000px;}
.ws12{word-spacing:0.298800px;}
.ws2f{word-spacing:0.331200px;}
.ws14{word-spacing:0.397440px;}
.ws3a{word-spacing:0.463680px;}
.ws38{word-spacing:0.728640px;}
.ws20{word-spacing:0.776880px;}
.ws1f{word-spacing:0.836640px;}
.ws30{word-spacing:0.861120px;}
.ws2e{word-spacing:0.927360px;}
.ws24{word-spacing:1.494000px;}
.ws41{word-spacing:1.523520px;}
.ws22{word-spacing:1.553760px;}
.ws37{word-spacing:1.656000px;}
.ws32{word-spacing:2.016000px;}
.ws29{word-spacing:2.270880px;}
.ws39{word-spacing:2.583360px;}
.ws26{word-spacing:3.645360px;}
._1c{margin-left:-203.904000px;}
._20{margin-left:-194.465760px;}
._e{margin-left:-187.772640px;}
._18{margin-left:-174.024000px;}
._1f{margin-left:-167.872560px;}
._30{margin-left:-161.179440px;}
._8{margin-left:-137.873040px;}
._2a{margin-left:-114.686160px;}
._2d{margin-left:-90.986880px;}
._21{margin-left:-86.725200px;}
._2f{margin-left:-14.588160px;}
._3{margin-left:-10.464000px;}
._15{margin-left:-8.492640px;}
._5{margin-left:-6.851040px;}
._16{margin-left:-5.774640px;}
._6{margin-left:-3.828480px;}
._b{margin-left:-2.371680px;}
._4{margin-left:-1.244880px;}
._0{width:1.680000px;}
._1{width:3.360000px;}
._37{width:4.373760px;}
._2{width:5.376000px;}
._34{width:7.376160px;}
._1d{width:8.818800px;}
._36{width:10.134720px;}
._1b{width:11.772720px;}
._14{width:12.860640px;}
._3b{width:13.974720px;}
._d{width:14.993040px;}
._3d{width:16.159200px;}
._3e{width:17.272320px;}
._35{width:19.739520px;}
._2c{width:20.849520px;}
._2b{width:22.170960px;}
._40{width:23.395920px;}
._f{width:24.614400px;}
._41{width:25.702800px;}
._3f{width:26.893440px;}
._43{width:29.355840px;}
._42{width:30.404160px;}
._3c{width:36.498240px;}
._11{width:40.271520px;}
._c{width:47.801280px;}
._27{width:59.690640px;}
._12{width:100.748640px;}
._1e{width:103.180080px;}
._26{width:110.788320px;}
._19{width:114.254400px;}
._9{width:117.348480px;}
._13{width:118.968720px;}
._17{width:120.708480px;}
._29{width:127.368000px;}
._10{width:133.377600px;}
._23{width:144.074640px;}
._22{width:147.664080px;}
._1a{width:165.521760px;}
._24{width:173.954640px;}
._2e{width:180.521520px;}
._25{width:187.281120px;}
._a{width:195.773760px;}
._32{width:564.086880px;}
._3a{width:733.409280px;}
._31{width:837.516960px;}
._7{width:842.685120px;}
._38{width:844.128000px;}
._28{width:847.516320px;}
._39{width:1147.475520px;}
._33{width:1298.767680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:43.200000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:37.079550px;}
.y11{bottom:57.607200px;}
.y37{bottom:110.550960px;}
.y122{bottom:112.269600px;}
.y104{bottom:112.958880px;}
.y5f{bottom:116.061900px;}
.ydf{bottom:128.862720px;}
.yc5{bottom:130.970400px;}
.y139{bottom:133.101480px;}
.y36{bottom:134.676000px;}
.yf4{bottom:134.774520px;}
.y88{bottom:136.968120px;}
.y5e{bottom:139.278660px;}
.y121{bottom:140.703120px;}
.y103{bottom:141.392400px;}
.y119{bottom:144.959040px;}
.yde{bottom:157.296240px;}
.y35{bottom:157.894320px;}
.yc4{bottom:159.403920px;}
.y138{bottom:161.535000px;}
.yf3{bottom:163.208040px;}
.y87{bottom:164.502540px;}
.y5d{bottom:166.813080px;}
.y120{bottom:169.136640px;}
.y102{bottom:169.825920px;}
.y118{bottom:173.392560px;}
.y34{bottom:178.230000px;}
.y86{bottom:183.222360px;}
.ydd{bottom:185.729760px;}
.yc3{bottom:187.837440px;}
.y5c{bottom:189.850560px;}
.y137{bottom:189.968520px;}
.yf2{bottom:191.641560px;}
.y11f{bottom:197.570160px;}
.y101{bottom:198.259440px;}
.y117{bottom:201.826080px;}
.y85{bottom:206.259840px;}
.y33{bottom:211.890000px;}
.ydc{bottom:214.163280px;}
.yc2{bottom:216.270960px;}
.y5b{bottom:217.564260px;}
.yb2{bottom:218.010000px;}
.y136{bottom:218.402040px;}
.yf1{bottom:220.075080px;}
.y11e{bottom:226.003680px;}
.y100{bottom:226.692960px;}
.y116{bottom:230.441760px;}
.y5a{bottom:240.601740px;}
.ydb{bottom:242.596800px;}
.y84{bottom:242.803080px;}
.yc1{bottom:244.704480px;}
.y135{bottom:246.835560px;}
.yf0{bottom:248.508600px;}
.y11d{bottom:254.437200px;}
.yff{bottom:255.126480px;}
.y115{bottom:258.875280px;}
.yb1{bottom:265.980840px;}
.y59{bottom:268.315440px;}
.yda{bottom:271.030320px;}
.yc0{bottom:273.320160px;}
.y134{bottom:275.269080px;}
.yef{bottom:277.124280px;}
.y83{bottom:279.525600px;}
.y32{bottom:279.769080px;}
.y11c{bottom:282.870720px;}
.yfe{bottom:283.560000px;}
.y114{bottom:287.308800px;}
.y58{bottom:291.352920px;}
.y82{bottom:298.066140px;}
.yd9{bottom:299.463840px;}
.y31{bottom:300.286920px;}
.y133{bottom:303.884760px;}
.yee{bottom:305.557800px;}
.y11b{bottom:311.304240px;}
.yfd{bottom:312.175680px;}
.yb0{bottom:312.597240px;}
.y113{bottom:315.742320px;}
.ybf{bottom:316.160880px;}
.y57{bottom:319.066620px;}
.y30{bottom:320.804760px;}
.y81{bottom:321.282900px;}
.yd8{bottom:327.897360px;}
.y132{bottom:332.318280px;}
.yed{bottom:333.991320px;}
.yfc{bottom:340.658880px;}
.yaf{bottom:341.080440px;}
.y56{bottom:342.148920px;}
.y112{bottom:344.225520px;}
.y80{bottom:348.862140px;}
.y2f{bottom:349.470120px;}
.y11a{bottom:354.376800px;}
.y131{bottom:360.801480px;}
.yec{bottom:362.474520px;}
.yfb{bottom:369.092400px;}
.yae{bottom:369.513960px;}
.y55{bottom:369.683340px;}
.yd7{bottom:370.969920px;}
.y7f{bottom:371.899620px;}
.y111{bottom:372.659040px;}
.y6{bottom:377.928150px;}
.y54{bottom:388.403160px;}
.y130{bottom:389.235000px;}
.y2e{bottom:390.323640px;}
.yeb{bottom:390.908040px;}
.yfa{bottom:397.525920px;}
.yad{bottom:397.947480px;}
.y7e{bottom:399.613320px;}
.y110{bottom:401.092560px;}
.y2d{bottom:410.659320px;}
.y53{bottom:411.440640px;}
.y7d{bottom:418.153860px;}
.yea{bottom:419.341560px;}
.yf9{bottom:425.959440px;}
.yac{bottom:426.381000px;}
.y10f{bottom:429.526080px;}
.y2c{bottom:431.177160px;}
.y12f{bottom:436.755000px;}
.y52{bottom:439.154340px;}
.y7c{bottom:441.370620px;}
.ye9{bottom:447.775080px;}
.y2b{bottom:451.695000px;}
.yf8{bottom:454.392960px;}
.yab{bottom:454.814520px;}
.y51{bottom:457.694880px;}
.y10e{bottom:457.959600px;}
.y7b{bottom:468.905040px;}
.y2a{bottom:473.835000px;}
.ye8{bottom:476.208600px;}
.y50{bottom:480.732360px;}
.y12e{bottom:481.292640px;}
.yaa{bottom:483.248040px;}
.y10d{bottom:486.575280px;}
.y7a{bottom:491.942520px;}
.yf7{bottom:497.233680px;}
.ye7{bottom:504.642120px;}
.y4f{bottom:508.446060px;}
.ya9{bottom:511.681560px;}
.y10c{bottom:515.008800px;}
.y29{bottom:516.135000px;}
.y79{bottom:519.656220px;}
.y4e{bottom:526.986600px;}
.ye6{bottom:533.257800px;}
.ya8{bottom:540.115080px;}
.y78{bottom:542.693700px;}
.y10b{bottom:543.442320px;}
.y28{bottom:543.675000px;}
.y4d{bottom:550.203360px;}
.ye5{bottom:561.691320px;}
.ya7{bottom:568.730760px;}
.y77{bottom:570.407400px;}
.y27{bottom:570.689160px;}
.y10a{bottom:571.875840px;}
.y4c{bottom:577.737780px;}
.ye4{bottom:590.124840px;}
.y26{bottom:591.024840px;}
.y76{bottom:593.444880px;}
.ya6{bottom:597.164280px;}
.y109{bottom:600.309360px;}
.y4b{bottom:600.775260px;}
.y146{bottom:610.634400px;}
.y25{bottom:611.575800px;}
.ye3{bottom:618.591480px;}
.y75{bottom:621.188460px;}
.ya5{bottom:625.630920px;}
.ye{bottom:626.864400px;}
.y4a{bottom:628.518840px;}
.y108{bottom:628.776000px;}
.y24{bottom:632.093640px;}
.y145{bottom:641.419440px;}
.y74{bottom:644.225940px;}
.ye2{bottom:647.025000px;}
.y49{bottom:647.059380px;}
.y23{bottom:652.429320px;}
.ya4{bottom:654.064440px;}
.yd{bottom:655.694400px;}
.y107{bottom:657.209520px;}
.y48{bottom:670.276140px;}
.y73{bottom:671.760360px;}
.y144{bottom:672.204480px;}
.y22{bottom:672.947160px;}
.yd6{bottom:674.299440px;}
.ya3{bottom:682.497960px;}
.y106{bottom:685.643040px;}
.yc{bottom:686.519400px;}
.y21{bottom:693.465000px;}
.ye1{bottom:694.545000px;}
.y72{bottom:694.977120px;}
.yd5{bottom:696.075840px;}
.y47{bottom:697.810560px;}
.y143{bottom:702.989520px;}
.ya2{bottom:710.931480px;}
.y20{bottom:713.982840px;}
.y105{bottom:714.076560px;}
.y46{bottom:721.027320px;}
.y71{bottom:722.511540px;}
.yd4{bottom:724.691520px;}
.y142{bottom:733.956720px;}
.y1f{bottom:734.318520px;}
.y12d{bottom:735.124320px;}
.ya1{bottom:739.365000px;}
.ye0{bottom:742.692240px;}
.yb{bottom:743.624400px;}
.y70{bottom:745.728300px;}
.y45{bottom:748.561740px;}
.y12c{bottom:763.557840px;}
.y1e{bottom:763.845000px;}
.y141{bottom:764.741760px;}
.y44{bottom:767.102280px;}
.yd3{bottom:771.125760px;}
.y6f{bottom:773.262720px;}
.ya{bottom:781.128150px;}
.y140{bottom:786.518160px;}
.ya0{bottom:787.065000px;}
.ybe{bottom:789.462240px;}
.y43{bottom:790.319040px;}
.y93{bottom:792.285000px;}
.y6e{bottom:796.300200px;}
.yd2{bottom:799.559280px;}
.y12b{bottom:809.992080px;}
.y1d{bottom:811.907160px;}
.y9f{bottom:816.945000px;}
.y13f{bottom:817.303200px;}
.y42{bottom:817.853460px;}
.ybd{bottom:817.895760px;}
.y9{bottom:818.628150px;}
.y6d{bottom:824.013900px;}
.yd1{bottom:827.992800px;}
.y92{bottom:828.476520px;}
.y1c{bottom:832.425000px;}
.y41{bottom:836.573280px;}
.y12a{bottom:838.425600px;}
.y9e{bottom:846.456000px;}
.y6c{bottom:847.051380px;}
.y13e{bottom:848.088240px;}
.y91{bottom:851.514000px;}
.y1b{bottom:853.485000px;}
.y8{bottom:856.128150px;}
.yd0{bottom:856.426320px;}
.y40{bottom:859.610760px;}
.ybc{bottom:864.330000px;}
.y129{bottom:866.859120px;}
.y9d{bottom:870.396000px;}
.y6b{bottom:874.809900px;}
.y13d{bottom:879.088560px;}
.y90{bottom:879.272520px;}
.ycf{bottom:884.909520px;}
.y3f{bottom:887.190000px;}
.ybb{bottom:892.813200px;}
.y5{bottom:893.624400px;}
.y7{bottom:893.628150px;}
.y128{bottom:895.342320px;}
.y6a{bottom:897.847380px;}
.y8f{bottom:902.318820px;}
.y1a{bottom:902.852160px;}
.y9c{bottom:903.210000px;}
.y13c{bottom:909.873600px;}
.y3e{bottom:910.406760px;}
.yce{bottom:913.343040px;}
.yba{bottom:921.246720px;}
.y19{bottom:923.370000px;}
.y127{bottom:923.775840px;}
.y69{bottom:925.381800px;}
.y9b{bottom:926.970000px;}
.y8e{bottom:929.853240px;}
.y13b{bottom:931.650000px;}
.ycd{bottom:941.776560px;}
.y4{bottom:943.551750px;}
.y3d{bottom:946.950000px;}
.y68{bottom:948.598560px;}
.yb9{bottom:949.680240px;}
.yf6{bottom:952.170000px;}
.y126{bottom:952.209360px;}
.y8d{bottom:953.095500px;}
.y18{bottom:954.510000px;}
.y9a{bottom:956.850000px;}
.ycc{bottom:970.210080px;}
.y67{bottom:976.132980px;}
.yb8{bottom:978.113760px;}
.y13a{bottom:979.350000px;}
.y8c{bottom:980.629920px;}
.yf5{bottom:980.825040px;}
.y17{bottom:981.332880px;}
.y3c{bottom:984.390000px;}
.y99{bottom:993.577380px;}
.y66{bottom:994.852800px;}
.ycb{bottom:998.825760px;}
.y8b{bottom:1003.846680px;}
.yb7{bottom:1006.547280px;}
.y125{bottom:1009.258560px;}
.y16{bottom:1011.210000px;}
.y3b{bottom:1017.669480px;}
.y65{bottom:1017.890280px;}
.y3{bottom:1018.979400px;}
.y98{bottom:1025.250000px;}
.yca{bottom:1027.259280px;}
.y8a{bottom:1031.381100px;}
.yb6{bottom:1034.980800px;}
.y124{bottom:1037.692080px;}
.y15{bottom:1040.023320px;}
.y64{bottom:1045.603980px;}
.y89{bottom:1050.100920px;}
.yc9{bottom:1055.692800px;}
.y3a{bottom:1056.380460px;}
.yb5{bottom:1063.596480px;}
.y97{bottom:1064.487840px;}
.y14{bottom:1066.116660px;}
.y123{bottom:1066.125600px;}
.y63{bottom:1073.138400px;}
.yc8{bottom:1084.126320px;}
.yb4{bottom:1092.030000px;}
.y13{bottom:1092.210000px;}
.y2{bottom:1093.056900px;}
.y39{bottom:1095.259020px;}
.y96{bottom:1100.668920px;}
.y62{bottom:1100.672820px;}
.yc7{bottom:1112.559840px;}
.y61{bottom:1119.392640px;}
.y12{bottom:1122.630000px;}
.y1{bottom:1133.406900px;}
.y38{bottom:1133.970000px;}
.y95{bottom:1136.850000px;}
.yb3{bottom:1139.580000px;}
.yc6{bottom:1141.026480px;}
.y60{bottom:1142.460000px;}
.y10{bottom:1194.120000px;}
.y94{bottom:1194.300000px;}
.h5{height:34.560000px;}
.h4{height:38.400000px;}
.h7{height:44.149219px;}
.h2{height:48.000000px;}
.hf{height:51.297891px;}
.h14{height:59.383125px;}
.hd{height:62.327813px;}
.h11{height:65.782219px;}
.h12{height:65.848939px;}
.h10{height:65.884219px;}
.h3{height:67.200000px;}
.hb{height:69.086250px;}
.hc{height:75.093750px;}
.he{height:81.101250px;}
.h13{height:86.642227px;}
.h9{height:87.859687px;}
.ha{height:99.874688px;}
.h8{height:150.187500px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.519750px;}
.x2{left:50.394750px;}
.x7{left:106.416000px;}
.x28{left:110.196000px;}
.x22{left:129.996000px;}
.x21{left:138.417480px;}
.xd{left:159.870000px;}
.x1b{left:174.107280px;}
.xb{left:196.757040px;}
.x25{left:203.619000px;}
.x8{left:210.450000px;}
.xf{left:214.764240px;}
.x6{left:217.983000px;}
.xe{left:234.570000px;}
.x3{left:236.193300px;}
.x14{left:245.731440px;}
.x18{left:247.170000px;}
.x10{left:250.600080px;}
.x15{left:272.177760px;}
.x11{left:275.787840px;}
.x12{left:276.864240px;}
.x13{left:283.753200px;}
.xc{left:285.375000px;}
.x23{left:293.817420px;}
.xa{left:307.695000px;}
.x1a{left:310.213920px;}
.x24{left:317.055000px;}
.x17{left:336.855000px;}
.x16{left:350.175000px;}
.x26{left:365.493000px;}
.x20{left:380.600820px;}
.x2a{left:398.055000px;}
.x19{left:407.951040px;}
.x27{left:409.935000px;}
.x1f{left:424.877160px;}
.x9{left:446.475000px;}
.x4{left:458.463300px;}
.x1e{left:602.383200px;}
.x5{left:638.939700px;}
.x1d{left:662.910000px;}
.x1c{left:697.110000px;}
.x29{left:786.783600px;}
@media print{
.v2{vertical-align:-72.952320pt;}
.v1{vertical-align:-67.207680pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-3.293440pt;}
.ls26{letter-spacing:-3.240320pt;}
.ls3a{letter-spacing:-2.296320pt;}
.ls2c{letter-spacing:-2.018560pt;}
.ls35{letter-spacing:-1.984000pt;}
.ls34{letter-spacing:-1.792000pt;}
.ls41{letter-spacing:-1.530880pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls21{letter-spacing:-1.381120pt;}
.ls40{letter-spacing:-1.354240pt;}
.ls24{letter-spacing:-1.328000pt;}
.ls32{letter-spacing:-0.824320pt;}
.ls33{letter-spacing:-0.765440pt;}
.ls1e{letter-spacing:-0.743680pt;}
.ls1f{letter-spacing:-0.690560pt;}
.ls39{letter-spacing:-0.647680pt;}
.ls23{letter-spacing:-0.584320pt;}
.ls3b{letter-spacing:-0.412160pt;}
.ls11{letter-spacing:-0.353280pt;}
.lsf{letter-spacing:-0.294400pt;}
.lse{letter-spacing:-0.265600pt;}
.ls3d{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.235520pt;}
.ls22{letter-spacing:-0.212480pt;}
.ls36{letter-spacing:-0.176640pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls20{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.069120pt;}
.ls1d{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053120pt;}
.ls3e{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.159360pt;}
.ls38{letter-spacing:0.176640pt;}
.ls31{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.235520pt;}
.ls10{letter-spacing:0.294400pt;}
.ls18{letter-spacing:0.371840pt;}
.ls2a{letter-spacing:0.424960pt;}
.ls1a{letter-spacing:0.584320pt;}
.ls7{letter-spacing:0.691200pt;}
.ls3{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.832000pt;}
.ls27{letter-spacing:1.115520pt;}
.ls8{letter-spacing:1.191680pt;}
.lsb{letter-spacing:1.198080pt;}
.lsa{letter-spacing:1.272960pt;}
.lsc{letter-spacing:1.472000pt;}
.ls9{letter-spacing:1.787520pt;}
.ls1{letter-spacing:4.096000pt;}
.ls3f{letter-spacing:6.653440pt;}
.ls2f{letter-spacing:9.601920pt;}
.ls2b{letter-spacing:26.188160pt;}
.ls2d{letter-spacing:26.316800pt;}
.ls1b{letter-spacing:33.253120pt;}
.ls1c{letter-spacing:37.715200pt;}
.ls3c{letter-spacing:45.043200pt;}
.ls5{letter-spacing:57.879040pt;}
.ls28{letter-spacing:133.703040pt;}
.ls29{letter-spacing:139.015040pt;}
.ls16{letter-spacing:174.021120pt;}
.ls4{letter-spacing:949.532160pt;}
.ls2{letter-spacing:1082.010027pt;}
.ws0{word-spacing:-74.666667pt;}
.ws1{word-spacing:-53.333333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws17{word-spacing:-23.663360pt;}
.ws9{word-spacing:-19.146240pt;}
.ws2a{word-spacing:-17.920000pt;}
.ws3d{word-spacing:-17.856000pt;}
.ws2b{word-spacing:-17.792000pt;}
.ws3b{word-spacing:-16.604160pt;}
.ws36{word-spacing:-16.545280pt;}
.ws8{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.250880pt;}
.ws3f{word-spacing:-16.192000pt;}
.ws35{word-spacing:-16.133120pt;}
.ws5{word-spacing:-16.074240pt;}
.ws2c{word-spacing:-16.015360pt;}
.ws31{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.603200pt;}
.ws18{word-spacing:-14.926720pt;}
.ws40{word-spacing:-14.837760pt;}
.ws6{word-spacing:-14.820480pt;}
.ws4{word-spacing:-14.767360pt;}
.ws1b{word-spacing:-14.661120pt;}
.ws27{word-spacing:-14.554880pt;}
.ws19{word-spacing:-14.501760pt;}
.ws1a{word-spacing:-14.183040pt;}
.ws1c{word-spacing:-11.473920pt;}
.wsa{word-spacing:-4.096000pt;}
.wsc{word-spacing:-1.787520pt;}
.wsf{word-spacing:-1.472000pt;}
.wsd{word-spacing:-1.272960pt;}
.wse{word-spacing:-1.198080pt;}
.wsb{word-spacing:-1.191680pt;}
.ws28{word-spacing:-1.115520pt;}
.ws11{word-spacing:-0.832000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.294400pt;}
.ws34{word-spacing:-0.235520pt;}
.ws25{word-spacing:-0.212480pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.159360pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.053120pt;}
.ws21{word-spacing:0.106240pt;}
.ws16{word-spacing:0.117760pt;}
.ws33{word-spacing:0.176640pt;}
.ws23{word-spacing:0.212480pt;}
.ws15{word-spacing:0.235520pt;}
.ws3e{word-spacing:0.256000pt;}
.ws12{word-spacing:0.265600pt;}
.ws2f{word-spacing:0.294400pt;}
.ws14{word-spacing:0.353280pt;}
.ws3a{word-spacing:0.412160pt;}
.ws38{word-spacing:0.647680pt;}
.ws20{word-spacing:0.690560pt;}
.ws1f{word-spacing:0.743680pt;}
.ws30{word-spacing:0.765440pt;}
.ws2e{word-spacing:0.824320pt;}
.ws24{word-spacing:1.328000pt;}
.ws41{word-spacing:1.354240pt;}
.ws22{word-spacing:1.381120pt;}
.ws37{word-spacing:1.472000pt;}
.ws32{word-spacing:1.792000pt;}
.ws29{word-spacing:2.018560pt;}
.ws39{word-spacing:2.296320pt;}
.ws26{word-spacing:3.240320pt;}
._1c{margin-left:-181.248000pt;}
._20{margin-left:-172.858453pt;}
._e{margin-left:-166.909013pt;}
._18{margin-left:-154.688000pt;}
._1f{margin-left:-149.220053pt;}
._30{margin-left:-143.270613pt;}
._8{margin-left:-122.553813pt;}
._2a{margin-left:-101.943253pt;}
._2d{margin-left:-80.877227pt;}
._21{margin-left:-77.089067pt;}
._2f{margin-left:-12.967253pt;}
._3{margin-left:-9.301333pt;}
._15{margin-left:-7.549013pt;}
._5{margin-left:-6.089813pt;}
._16{margin-left:-5.133013pt;}
._6{margin-left:-3.403093pt;}
._b{margin-left:-2.108160pt;}
._4{margin-left:-1.106560pt;}
._0{width:1.493333pt;}
._1{width:2.986667pt;}
._37{width:3.887787pt;}
._2{width:4.778667pt;}
._34{width:6.556587pt;}
._1d{width:7.838933pt;}
._36{width:9.008640pt;}
._1b{width:10.464640pt;}
._14{width:11.431680pt;}
._3b{width:12.421973pt;}
._d{width:13.327147pt;}
._3d{width:14.363733pt;}
._3e{width:15.353173pt;}
._35{width:17.546240pt;}
._2c{width:18.532907pt;}
._2b{width:19.707520pt;}
._40{width:20.796373pt;}
._f{width:21.879467pt;}
._41{width:22.846933pt;}
._3f{width:23.905280pt;}
._43{width:26.094080pt;}
._42{width:27.025920pt;}
._3c{width:32.442880pt;}
._11{width:35.796907pt;}
._c{width:42.490027pt;}
._27{width:53.058347pt;}
._12{width:89.554347pt;}
._1e{width:91.715627pt;}
._26{width:98.478507pt;}
._19{width:101.559467pt;}
._9{width:104.309760pt;}
._13{width:105.749973pt;}
._17{width:107.296427pt;}
._29{width:113.216000pt;}
._10{width:118.557867pt;}
._23{width:128.066347pt;}
._22{width:131.256960pt;}
._1a{width:147.130453pt;}
._24{width:154.626347pt;}
._2e{width:160.463573pt;}
._25{width:166.472107pt;}
._a{width:174.021120pt;}
._32{width:501.410560pt;}
._3a{width:651.919360pt;}
._31{width:744.459520pt;}
._7{width:749.053440pt;}
._38{width:750.336000pt;}
._28{width:753.347840pt;}
._39{width:1019.978240pt;}
._33{width:1154.460160pt;}
.fs3{font-size:38.400000pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:32.959600pt;}
.y11{bottom:51.206400pt;}
.y37{bottom:98.267520pt;}
.y122{bottom:99.795200pt;}
.y104{bottom:100.407893pt;}
.y5f{bottom:103.166133pt;}
.ydf{bottom:114.544640pt;}
.yc5{bottom:116.418133pt;}
.y139{bottom:118.312427pt;}
.y36{bottom:119.712000pt;}
.yf4{bottom:119.799573pt;}
.y88{bottom:121.749440pt;}
.y5e{bottom:123.803253pt;}
.y121{bottom:125.069440pt;}
.y103{bottom:125.682133pt;}
.y119{bottom:128.852480pt;}
.yde{bottom:139.818880pt;}
.y35{bottom:140.350507pt;}
.yc4{bottom:141.692373pt;}
.y138{bottom:143.586667pt;}
.yf3{bottom:145.073813pt;}
.y87{bottom:146.224480pt;}
.y5d{bottom:148.278293pt;}
.y120{bottom:150.343680pt;}
.y102{bottom:150.956373pt;}
.y118{bottom:154.126720pt;}
.y34{bottom:158.426667pt;}
.y86{bottom:162.864320pt;}
.ydd{bottom:165.093120pt;}
.yc3{bottom:166.966613pt;}
.y5c{bottom:168.756053pt;}
.y137{bottom:168.860907pt;}
.yf2{bottom:170.348053pt;}
.y11f{bottom:175.617920pt;}
.y101{bottom:176.230613pt;}
.y117{bottom:179.400960pt;}
.y85{bottom:183.342080pt;}
.y33{bottom:188.346667pt;}
.ydc{bottom:190.367360pt;}
.yc2{bottom:192.240853pt;}
.y5b{bottom:193.390453pt;}
.yb2{bottom:193.786667pt;}
.y136{bottom:194.135147pt;}
.yf1{bottom:195.622293pt;}
.y11e{bottom:200.892160pt;}
.y100{bottom:201.504853pt;}
.y116{bottom:204.837120pt;}
.y5a{bottom:213.868213pt;}
.ydb{bottom:215.641600pt;}
.y84{bottom:215.824960pt;}
.yc1{bottom:217.515093pt;}
.y135{bottom:219.409387pt;}
.yf0{bottom:220.896533pt;}
.y11d{bottom:226.166400pt;}
.yff{bottom:226.779093pt;}
.y115{bottom:230.111360pt;}
.yb1{bottom:236.427413pt;}
.y59{bottom:238.502613pt;}
.yda{bottom:240.915840pt;}
.yc0{bottom:242.951253pt;}
.y134{bottom:244.683627pt;}
.yef{bottom:246.332693pt;}
.y83{bottom:248.467200pt;}
.y32{bottom:248.683627pt;}
.y11c{bottom:251.440640pt;}
.yfe{bottom:252.053333pt;}
.y114{bottom:255.385600pt;}
.y58{bottom:258.980373pt;}
.y82{bottom:264.947680pt;}
.yd9{bottom:266.190080pt;}
.y31{bottom:266.921707pt;}
.y133{bottom:270.119787pt;}
.yee{bottom:271.606933pt;}
.y11b{bottom:276.714880pt;}
.yfd{bottom:277.489493pt;}
.yb0{bottom:277.864213pt;}
.y113{bottom:280.659840pt;}
.ybf{bottom:281.031893pt;}
.y57{bottom:283.614773pt;}
.y30{bottom:285.159787pt;}
.y81{bottom:285.584800pt;}
.yd8{bottom:291.464320pt;}
.y132{bottom:295.394027pt;}
.yed{bottom:296.881173pt;}
.yfc{bottom:302.807893pt;}
.yaf{bottom:303.182613pt;}
.y56{bottom:304.132373pt;}
.y112{bottom:305.978240pt;}
.y80{bottom:310.099680pt;}
.y2f{bottom:310.640107pt;}
.y11a{bottom:315.001600pt;}
.y131{bottom:320.712427pt;}
.yec{bottom:322.199573pt;}
.yfb{bottom:328.082133pt;}
.yae{bottom:328.456853pt;}
.y55{bottom:328.607413pt;}
.yd7{bottom:329.751040pt;}
.y7f{bottom:330.577440pt;}
.y111{bottom:331.252480pt;}
.y6{bottom:335.936133pt;}
.y54{bottom:345.247253pt;}
.y130{bottom:345.986667pt;}
.y2e{bottom:346.954347pt;}
.yeb{bottom:347.473813pt;}
.yfa{bottom:353.356373pt;}
.yad{bottom:353.731093pt;}
.y7e{bottom:355.211840pt;}
.y110{bottom:356.526720pt;}
.y2d{bottom:365.030507pt;}
.y53{bottom:365.725013pt;}
.y7d{bottom:371.692320pt;}
.yea{bottom:372.748053pt;}
.yf9{bottom:378.630613pt;}
.yac{bottom:379.005333pt;}
.y10f{bottom:381.800960pt;}
.y2c{bottom:383.268587pt;}
.y12f{bottom:388.226667pt;}
.y52{bottom:390.359413pt;}
.y7c{bottom:392.329440pt;}
.ye9{bottom:398.022293pt;}
.y2b{bottom:401.506667pt;}
.yf8{bottom:403.904853pt;}
.yab{bottom:404.279573pt;}
.y51{bottom:406.839893pt;}
.y10e{bottom:407.075200pt;}
.y7b{bottom:416.804480pt;}
.y2a{bottom:421.186667pt;}
.ye8{bottom:423.296533pt;}
.y50{bottom:427.317653pt;}
.y12e{bottom:427.815680pt;}
.yaa{bottom:429.553813pt;}
.y10d{bottom:432.511360pt;}
.y7a{bottom:437.282240pt;}
.yf7{bottom:441.985493pt;}
.ye7{bottom:448.570773pt;}
.y4f{bottom:451.952053pt;}
.ya9{bottom:454.828053pt;}
.y10c{bottom:457.785600pt;}
.y29{bottom:458.786667pt;}
.y79{bottom:461.916640pt;}
.y4e{bottom:468.432533pt;}
.ye6{bottom:474.006933pt;}
.ya8{bottom:480.102293pt;}
.y78{bottom:482.394400pt;}
.y10b{bottom:483.059840pt;}
.y28{bottom:483.266667pt;}
.y4d{bottom:489.069653pt;}
.ye5{bottom:499.281173pt;}
.ya7{bottom:505.538453pt;}
.y77{bottom:507.028800pt;}
.y27{bottom:507.279253pt;}
.y10a{bottom:508.334080pt;}
.y4c{bottom:513.544693pt;}
.ye4{bottom:524.555413pt;}
.y26{bottom:525.355413pt;}
.y76{bottom:527.506560pt;}
.ya6{bottom:530.812693pt;}
.y109{bottom:533.608320pt;}
.y4b{bottom:534.022453pt;}
.y146{bottom:542.786133pt;}
.y25{bottom:543.622933pt;}
.ye3{bottom:549.859093pt;}
.y75{bottom:552.167520pt;}
.ya5{bottom:556.116373pt;}
.ye{bottom:557.212800pt;}
.y4a{bottom:558.683413pt;}
.y108{bottom:558.912000pt;}
.y24{bottom:561.861013pt;}
.y145{bottom:570.150613pt;}
.y74{bottom:572.645280pt;}
.ye2{bottom:575.133333pt;}
.y49{bottom:575.163893pt;}
.y23{bottom:579.937173pt;}
.ya4{bottom:581.390613pt;}
.yd{bottom:582.839467pt;}
.y107{bottom:584.186240pt;}
.y48{bottom:595.801013pt;}
.y73{bottom:597.120320pt;}
.y144{bottom:597.515093pt;}
.y22{bottom:598.175253pt;}
.yd6{bottom:599.377280pt;}
.ya3{bottom:606.664853pt;}
.y106{bottom:609.460480pt;}
.yc{bottom:610.239467pt;}
.y21{bottom:616.413333pt;}
.ye1{bottom:617.373333pt;}
.y72{bottom:617.757440pt;}
.yd5{bottom:618.734080pt;}
.y47{bottom:620.276053pt;}
.y143{bottom:624.879573pt;}
.ya2{bottom:631.939093pt;}
.y20{bottom:634.651413pt;}
.y105{bottom:634.734720pt;}
.y46{bottom:640.913173pt;}
.y71{bottom:642.232480pt;}
.yd4{bottom:644.170240pt;}
.y142{bottom:652.405973pt;}
.y1f{bottom:652.727573pt;}
.y12d{bottom:653.443840pt;}
.ya1{bottom:657.213333pt;}
.ye0{bottom:660.170880pt;}
.yb{bottom:660.999467pt;}
.y70{bottom:662.869600pt;}
.y45{bottom:665.388213pt;}
.y12c{bottom:678.718080pt;}
.y1e{bottom:678.973333pt;}
.y141{bottom:679.770453pt;}
.y44{bottom:681.868693pt;}
.yd3{bottom:685.445120pt;}
.y6f{bottom:687.344640pt;}
.ya{bottom:694.336133pt;}
.y140{bottom:699.127253pt;}
.ya0{bottom:699.613333pt;}
.ybe{bottom:701.744213pt;}
.y43{bottom:702.505813pt;}
.y93{bottom:704.253333pt;}
.y6e{bottom:707.822400pt;}
.yd2{bottom:710.719360pt;}
.y12b{bottom:719.992960pt;}
.y1d{bottom:721.695253pt;}
.y9f{bottom:726.173333pt;}
.y13f{bottom:726.491733pt;}
.y42{bottom:726.980853pt;}
.ybd{bottom:727.018453pt;}
.y9{bottom:727.669467pt;}
.y6d{bottom:732.456800pt;}
.yd1{bottom:735.993600pt;}
.y92{bottom:736.423573pt;}
.y1c{bottom:739.933333pt;}
.y41{bottom:743.620693pt;}
.y12a{bottom:745.267200pt;}
.y9e{bottom:752.405333pt;}
.y6c{bottom:752.934560pt;}
.y13e{bottom:753.856213pt;}
.y91{bottom:756.901333pt;}
.y1b{bottom:758.653333pt;}
.y8{bottom:761.002800pt;}
.yd0{bottom:761.267840pt;}
.y40{bottom:764.098453pt;}
.ybc{bottom:768.293333pt;}
.y129{bottom:770.541440pt;}
.y9d{bottom:773.685333pt;}
.y6b{bottom:777.608800pt;}
.y13d{bottom:781.412053pt;}
.y90{bottom:781.575573pt;}
.ycf{bottom:786.586240pt;}
.y3f{bottom:788.613333pt;}
.ybb{bottom:793.611733pt;}
.y5{bottom:794.332800pt;}
.y7{bottom:794.336133pt;}
.y128{bottom:795.859840pt;}
.y6a{bottom:798.086560pt;}
.y8f{bottom:802.061173pt;}
.y1a{bottom:802.535253pt;}
.y9c{bottom:802.853333pt;}
.y13c{bottom:808.776533pt;}
.y3e{bottom:809.250453pt;}
.yce{bottom:811.860480pt;}
.yba{bottom:818.885973pt;}
.y19{bottom:820.773333pt;}
.y127{bottom:821.134080pt;}
.y69{bottom:822.561600pt;}
.y9b{bottom:823.973333pt;}
.y8e{bottom:826.536213pt;}
.y13b{bottom:828.133333pt;}
.ycd{bottom:837.134720pt;}
.y4{bottom:838.712667pt;}
.y3d{bottom:841.733333pt;}
.y68{bottom:843.198720pt;}
.yb9{bottom:844.160213pt;}
.yf6{bottom:846.373333pt;}
.y126{bottom:846.408320pt;}
.y8d{bottom:847.196000pt;}
.y18{bottom:848.453333pt;}
.y9a{bottom:850.533333pt;}
.ycc{bottom:862.408960pt;}
.y67{bottom:867.673760pt;}
.yb8{bottom:869.434453pt;}
.y13a{bottom:870.533333pt;}
.y8c{bottom:871.671040pt;}
.yf5{bottom:871.844480pt;}
.y17{bottom:872.295893pt;}
.y3c{bottom:875.013333pt;}
.y99{bottom:883.179893pt;}
.y66{bottom:884.313600pt;}
.ycb{bottom:887.845120pt;}
.y8b{bottom:892.308160pt;}
.yb7{bottom:894.708693pt;}
.y125{bottom:897.118720pt;}
.y16{bottom:898.853333pt;}
.y3b{bottom:904.595093pt;}
.y65{bottom:904.791360pt;}
.y3{bottom:905.759467pt;}
.y98{bottom:911.333333pt;}
.yca{bottom:913.119360pt;}
.y8a{bottom:916.783200pt;}
.yb6{bottom:919.982933pt;}
.y124{bottom:922.392960pt;}
.y15{bottom:924.465173pt;}
.y64{bottom:929.425760pt;}
.y89{bottom:933.423040pt;}
.yc9{bottom:938.393600pt;}
.y3a{bottom:939.004853pt;}
.yb5{bottom:945.419093pt;}
.y97{bottom:946.211413pt;}
.y14{bottom:947.659253pt;}
.y123{bottom:947.667200pt;}
.y63{bottom:953.900800pt;}
.yc8{bottom:963.667840pt;}
.yb4{bottom:970.693333pt;}
.y13{bottom:970.853333pt;}
.y2{bottom:971.606133pt;}
.y39{bottom:973.563573pt;}
.y96{bottom:978.372373pt;}
.y62{bottom:978.375840pt;}
.yc7{bottom:988.942080pt;}
.y61{bottom:995.015680pt;}
.y12{bottom:997.893333pt;}
.y1{bottom:1007.472800pt;}
.y38{bottom:1007.973333pt;}
.y95{bottom:1010.533333pt;}
.yb3{bottom:1012.960000pt;}
.yc6{bottom:1014.245760pt;}
.y60{bottom:1015.520000pt;}
.y10{bottom:1061.440000pt;}
.y94{bottom:1061.600000pt;}
.h5{height:30.720000pt;}
.h4{height:34.133333pt;}
.h7{height:39.243750pt;}
.h2{height:42.666667pt;}
.hf{height:45.598125pt;}
.h14{height:52.785000pt;}
.hd{height:55.402500pt;}
.h11{height:58.473083pt;}
.h12{height:58.532390pt;}
.h10{height:58.563750pt;}
.h3{height:59.733333pt;}
.hb{height:61.410000pt;}
.hc{height:66.750000pt;}
.he{height:72.090000pt;}
.h13{height:77.015312pt;}
.h9{height:78.097500pt;}
.ha{height:88.777500pt;}
.h8{height:133.500000pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.795333pt;}
.x2{left:44.795333pt;}
.x7{left:94.592000pt;}
.x28{left:97.952000pt;}
.x22{left:115.552000pt;}
.x21{left:123.037760pt;}
.xd{left:142.106667pt;}
.x1b{left:154.762027pt;}
.xb{left:174.895147pt;}
.x25{left:180.994667pt;}
.x8{left:187.066667pt;}
.xf{left:190.901547pt;}
.x6{left:193.762667pt;}
.xe{left:208.506667pt;}
.x3{left:209.949600pt;}
.x14{left:218.427947pt;}
.x18{left:219.706667pt;}
.x10{left:222.755627pt;}
.x15{left:241.935787pt;}
.x11{left:245.144747pt;}
.x12{left:246.101547pt;}
.x13{left:252.225067pt;}
.xc{left:253.666667pt;}
.x23{left:261.171040pt;}
.xa{left:273.506667pt;}
.x1a{left:275.745707pt;}
.x24{left:281.826667pt;}
.x17{left:299.426667pt;}
.x16{left:311.266667pt;}
.x26{left:324.882667pt;}
.x20{left:338.311840pt;}
.x2a{left:353.826667pt;}
.x19{left:362.623147pt;}
.x27{left:364.386667pt;}
.x1f{left:377.668587pt;}
.x9{left:396.866667pt;}
.x4{left:407.522933pt;}
.x1e{left:535.451733pt;}
.x5{left:567.946400pt;}
.x1d{left:589.253333pt;}
.x1c{left:619.653333pt;}
.x29{left:699.363200pt;}
}




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