
    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_1d7774b19c2550f773f2b9a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_c02e507e00cfe0725bf5bdc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_264179b4a46bbf8c7b5d52aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_1a6a3ce8af006dba02daa1e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_2210510635cf485f304d6bd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_492a4f33ed3c20172bd41941.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_4c2857234cef4e59b6fcde1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.839844;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_7010d83e602c385a0882c968.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_492a4f33ed3c20172bd41941.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_0fb70b7ab742da247d1f726c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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_7cb505137482365b40c0c6a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.872559;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_492a4f33ed3c20172bd41941.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_08f1c0a6ad3fc3b8d91ad1d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.857910;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.249876,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249876,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249876,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249876,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249876,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249876,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249925,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249925,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249925,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);}
.m5{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-38.880000px;}
.v5{vertical-align:-30.240600px;}
.v1{vertical-align:-16.681204px;}
.v3{vertical-align:-13.274717px;}
.v2{vertical-align:-12.067925px;}
.v7{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.ls22{letter-spacing:-0.159917px;}
.ls1f{letter-spacing:-0.159885px;}
.ls24{letter-spacing:-0.010620px;}
.lsb{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.003958px;}
.ls1e{letter-spacing:0.005310px;}
.ls21{letter-spacing:0.009654px;}
.ls1b{letter-spacing:0.009792px;}
.ls23{letter-spacing:0.014160px;}
.ls25{letter-spacing:0.021240px;}
.ls37{letter-spacing:0.046080px;}
.ls38{letter-spacing:0.050040px;}
.ls4d{letter-spacing:0.059520px;}
.ls4c{letter-spacing:0.060120px;}
.ls57{letter-spacing:0.079344px;}
.ls3b{letter-spacing:0.100140px;}
.ls51{letter-spacing:0.100560px;}
.ls1{letter-spacing:0.116928px;}
.ls44{letter-spacing:0.120000px;}
.ls43{letter-spacing:0.121104px;}
.ls20{letter-spacing:0.170544px;}
.ls55{letter-spacing:0.179568px;}
.ls56{letter-spacing:0.200880px;}
.ls39{letter-spacing:0.221160px;}
.ls59{letter-spacing:0.252720px;}
.ls3f{letter-spacing:0.271584px;}
.ls12{letter-spacing:0.298080px;}
.ls13{letter-spacing:0.300000px;}
.ls42{letter-spacing:0.312912px;}
.ls14{letter-spacing:0.322200px;}
.lsf{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.330000px;}
.ls34{letter-spacing:0.331632px;}
.ls9{letter-spacing:0.377400px;}
.lsa{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.399600px;}
.ls29{letter-spacing:0.400080px;}
.ls4{letter-spacing:0.400200px;}
.ls10{letter-spacing:0.401760px;}
.ls41{letter-spacing:0.425088px;}
.ls40{letter-spacing:0.430992px;}
.ls3c{letter-spacing:0.454608px;}
.ls35{letter-spacing:0.466416px;}
.ls3a{letter-spacing:0.478224px;}
.ls2d{letter-spacing:0.479520px;}
.ls36{letter-spacing:0.484128px;}
.ls46{letter-spacing:0.492480px;}
.lsd{letter-spacing:0.524880px;}
.ls3e{letter-spacing:0.537264px;}
.ls45{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.602640px;}
.ls54{letter-spacing:0.622080px;}
.ls50{letter-spacing:0.641520px;}
.ls48{letter-spacing:0.641880px;}
.ls33{letter-spacing:0.663264px;}
.ls58{letter-spacing:0.673920px;}
.ls2e{letter-spacing:0.676980px;}
.ls26{letter-spacing:0.677040px;}
.ls2{letter-spacing:0.677520px;}
.lsc{letter-spacing:0.680400px;}
.ls17{letter-spacing:0.719280px;}
.ls2f{letter-spacing:0.725400px;}
.lse{letter-spacing:0.725760px;}
.ls30{letter-spacing:0.744480px;}
.ls32{letter-spacing:0.744720px;}
.ls5{letter-spacing:0.797040px;}
.ls47{letter-spacing:0.799800px;}
.ls49{letter-spacing:0.799860px;}
.ls2c{letter-spacing:0.809280px;}
.ls52{letter-spacing:0.835920px;}
.ls3d{letter-spacing:0.838368px;}
.ls4b{letter-spacing:0.868320px;}
.ls11{letter-spacing:0.874800px;}
.ls19{letter-spacing:1.121040px;}
.ls4f{letter-spacing:2.410800px;}
.ls53{letter-spacing:2.412600px;}
.ls18{letter-spacing:4.122000px;}
.ls8{letter-spacing:5.433000px;}
.ls4a{letter-spacing:5.727000px;}
.ls4e{letter-spacing:5.727600px;}
.ls2a{letter-spacing:10.249200px;}
.ls2b{letter-spacing:10.251000px;}
.ls16{letter-spacing:13.237800px;}
.ls27{letter-spacing:14.443020px;}
.ls28{letter-spacing:14.521200px;}
.ls6{letter-spacing:20.979000px;}
.ls3{letter-spacing:42.125400px;}
.ls1a{letter-spacing:95.827766px;}
.ls1c{letter-spacing:95.846701px;}
.ls0{letter-spacing:147.120000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-23.218560px;}
.ws1c{word-spacing:-17.583264px;}
.ws3{word-spacing:-17.321040px;}
.ws1d{word-spacing:-17.074800px;}
.ws5{word-spacing:-16.997040px;}
.ws4{word-spacing:-16.925760px;}
.ws0{word-spacing:-16.880400px;}
.ws2a{word-spacing:-16.802640px;}
.ws19{word-spacing:-16.724880px;}
.ws18{word-spacing:-16.679520px;}
.ws6{word-spacing:-16.601760px;}
.ws1{word-spacing:-16.524000px;}
.ws2c{word-spacing:-16.400880px;}
.ws1a{word-spacing:-16.200000px;}
.wsb{word-spacing:-11.858715px;}
.wsc{word-spacing:-11.852838px;}
.ws2b{word-spacing:-10.619568px;}
.ws29{word-spacing:-10.561104px;}
.ws2d{word-spacing:-10.519344px;}
.ws10{word-spacing:-8.891385px;}
.ws8{word-spacing:-8.889629px;}
.wsd{word-spacing:-7.085897px;}
.ws22{word-spacing:-0.897408px;}
.ws23{word-spacing:-0.596304px;}
.ws20{word-spacing:-0.543168px;}
.ws27{word-spacing:-0.537264px;}
.ws1e{word-spacing:-0.525456px;}
.ws21{word-spacing:-0.513648px;}
.ws25{word-spacing:-0.490032px;}
.ws26{word-spacing:-0.484128px;}
.ws28{word-spacing:-0.371952px;}
.ws24{word-spacing:-0.330624px;}
.ws15{word-spacing:-0.074338px;}
.ws1f{word-spacing:-0.059040px;}
.ws17{word-spacing:-0.058409px;}
.ws12{word-spacing:-0.053099px;}
.ws16{word-spacing:-0.049559px;}
.wse{word-spacing:-0.048272px;}
.ws14{word-spacing:-0.042479px;}
.wsa{word-spacing:-0.042194px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:50.753580px;}
.wsf{word-spacing:50.763608px;}
.ws13{word-spacing:58.960057px;}
.ws9{word-spacing:78.425571px;}
.ws11{word-spacing:78.441068px;}
._1{margin-left:-1.181400px;}
._2{width:1.107900px;}
._a{width:2.709000px;}
._7{width:3.952800px;}
._6{width:5.443200px;}
._11{width:6.998400px;}
._8{width:8.374200px;}
._9{width:9.381000px;}
._b{width:10.398000px;}
._e{width:12.571200px;}
._f{width:13.807680px;}
._10{width:15.034380px;}
._5{width:19.120140px;}
._4{width:20.347200px;}
._c{width:23.652000px;}
._d{width:25.012800px;}
._0{width:40.623300px;}
._3{width:41.802300px;}
._12{width:847.079940px;}
.fc3{color:rgb(0,0,10);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:25.025346px;}
.fse{font-size:25.030291px;}
.fs4{font-size:25.037755px;}
.fs9{font-size:25.488838px;}
.fs3{font-size:31.977081px;}
.fsc{font-size:31.983400px;}
.fsb{font-size:32.181081px;}
.fs10{font-size:35.399219px;}
.fs13{font-size:38.880000px;}
.fs15{font-size:41.760000px;}
.fs7{font-size:42.193528px;}
.fs5{font-size:42.636108px;}
.fsd{font-size:42.644533px;}
.fs6{font-size:42.657249px;}
.fsa{font-size:48.271698px;}
.fsf{font-size:53.098868px;}
.fs14{font-size:57.444322px;}
.fs11{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs12{font-size:67.680000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.960000px;}
.y9f{bottom:4.320000px;}
.yc4{bottom:5.760000px;}
.yc5{bottom:5.959459px;}
.yf7{bottom:6.480000px;}
.yc3{bottom:6.840000px;}
.yed{bottom:7.200000px;}
.yc7{bottom:8.280000px;}
.yc9{bottom:8.640000px;}
.yeb{bottom:11.520000px;}
.y7e{bottom:16.806512px;}
.y6c{bottom:17.728976px;}
.y1{bottom:18.000000px;}
.y69{bottom:20.050704px;}
.y6e{bottom:33.149441px;}
.y59{bottom:36.392014px;}
.y3{bottom:39.360030px;}
.y7f{bottom:52.621559px;}
.y4{bottom:53.040030px;}
.y6a{bottom:55.863503px;}
.y83{bottom:65.251183px;}
.y6f{bottom:65.605116px;}
.y5a{bottom:68.844496px;}
.y82{bottom:80.939533px;}
.y57{bottom:94.800030px;}
.y81{bottom:96.627733px;}
.y110{bottom:97.680030px;}
.y9d{bottom:100.560030px;}
.y37{bottom:107.040030px;}
.y27{bottom:108.120030px;}
.y7c{bottom:111.045959px;}
.y80{bottom:112.316083px;}
.y56{bottom:113.520030px;}
.y70{bottom:113.827460px;}
.y67{bottom:114.271534px;}
.y5b{bottom:117.052485px;}
.yaf{bottom:117.120030px;}
.y10f{bottom:118.200030px;}
.y9c{bottom:119.640030px;}
.y36{bottom:126.120030px;}
.y55{bottom:132.600000px;}
.y9b{bottom:138.360000px;}
.y10e{bottom:139.080000px;}
.y26{bottom:143.040000px;}
.y35{bottom:145.200000px;}
.yae{bottom:146.640000px;}
.y54{bottom:151.680000px;}
.y9a{bottom:157.440000px;}
.y71{bottom:162.049805px;}
.y10d{bottom:162.480000px;}
.y34{bottom:163.920000px;}
.y5c{bottom:165.265303px;}
.y53{bottom:170.400000px;}
.yad{bottom:175.080000px;}
.y99{bottom:176.520000px;}
.y25{bottom:180.120000px;}
.y33{bottom:183.000000px;}
.ye9{bottom:185.160000px;}
.y52{bottom:189.480000px;}
.y10c{bottom:191.640150px;}
.y98{bottom:195.240000px;}
.y7d{bottom:197.406096px;}
.y72{bottom:198.217367px;}
.y68{bottom:200.611391px;}
.y5d{bottom:201.422502px;}
.yac{bottom:203.520000px;}
.y24{bottom:208.560000px;}
.y32{bottom:211.080000px;}
.y97{bottom:214.320000px;}
.y10b{bottom:215.040000px;}
.ye8{bottom:219.360000px;}
.y7b{bottom:221.053685px;}
.y73{bottom:222.328539px;}
.y66{bottom:224.254308px;}
.y5e{bottom:225.528911px;}
.y51{bottom:227.640000px;}
.yab{bottom:231.960000px;}
.y96{bottom:233.400000px;}
.y10a{bottom:236.640000px;}
.y23{bottom:237.000000px;}
.y31{bottom:239.520000px;}
.ye7{bottom:245.640150px;}
.y50{bottom:246.360000px;}
.y74{bottom:246.436492px;}
.y5f{bottom:249.635319px;}
.y95{bottom:252.120000px;}
.y79{bottom:255.709772px;}
.y64{bottom:258.908377px;}
.yaa{bottom:260.400000px;}
.y22{bottom:265.440000px;}
.y109{bottom:266.160000px;}
.y30{bottom:267.960000px;}
.y75{bottom:270.547664px;}
.y94{bottom:271.200000px;}
.ye6{bottom:272.280000px;}
.y60{bottom:273.741728px;}
.y4f{bottom:284.520000px;}
.ya9{bottom:288.840000px;}
.y93{bottom:290.280000px;}
.y21{bottom:294.240000px;}
.y76{bottom:294.658836px;}
.y2f{bottom:296.400000px;}
.y108{bottom:297.120000px;}
.y61{bottom:297.843309px;}
.ye5{bottom:298.920150px;}
.y4e{bottom:303.240000px;}
.y92{bottom:309.360000px;}
.ya8{bottom:317.280000px;}
.y77{bottom:318.770008px;}
.y62{bottom:321.951327px;}
.y4d{bottom:322.320000px;}
.y20{bottom:322.680000px;}
.y2e{bottom:324.840000px;}
.y91{bottom:328.080000px;}
.y107{bottom:332.400000px;}
.ye4{bottom:332.760150px;}
.y78{bottom:339.172512px;}
.y4c{bottom:341.400000px;}
.y63{bottom:342.349800px;}
.ya7{bottom:345.720000px;}
.y90{bottom:347.160000px;}
.y1f{bottom:351.120000px;}
.y2d{bottom:353.280000px;}
.y7a{bottom:354.935961px;}
.y65{bottom:358.110135px;}
.y106{bottom:358.680000px;}
.y4b{bottom:360.120000px;}
.ye3{bottom:360.480000px;}
.ya6{bottom:374.160000px;}
.y8f{bottom:375.240000px;}
.y4a{bottom:379.200000px;}
.y1e{bottom:379.560000px;}
.y2c{bottom:381.720000px;}
.yb5{bottom:382.440000px;}
.ye2{bottom:384.960000px;}
.yba{bottom:387.120000px;}
.y49{bottom:398.280000px;}
.ya5{bottom:399.000000px;}
.y8e{bottom:403.680000px;}
.y2b{bottom:404.040000px;}
.y1d{bottom:408.000000px;}
.ye1{bottom:409.800000px;}
.y105{bottom:410.880000px;}
.yb4{bottom:411.960000px;}
.yb9{bottom:415.920000px;}
.y48{bottom:417.360000px;}
.y2a{bottom:431.400000px;}
.y8d{bottom:432.120000px;}
.ye0{bottom:434.280000px;}
.y47{bottom:436.080000px;}
.y1c{bottom:436.440000px;}
.y104{bottom:437.160000px;}
.yb3{bottom:449.760000px;}
.yb8{bottom:453.720000px;}
.y46{bottom:455.160000px;}
.y1b{bottom:458.400000px;}
.ydf{bottom:458.760000px;}
.y8c{bottom:460.560000px;}
.y103{bottom:463.440000px;}
.y45{bottom:474.240000px;}
.yde{bottom:483.600000px;}
.yb2{bottom:487.560000px;}
.yb7{bottom:487.920000px;}
.y8b{bottom:489.000000px;}
.y1a{bottom:489.360000px;}
.y102{bottom:489.720000px;}
.y44{bottom:492.960000px;}
.ydd{bottom:508.080000px;}
.y43{bottom:512.040000px;}
.y101{bottom:516.000000px;}
.y19{bottom:520.320000px;}
.yb1{bottom:521.400000px;}
.y8a{bottom:526.440000px;}
.ydc{bottom:532.560000px;}
.y42{bottom:540.120000px;}
.y100{bottom:542.280000px;}
.yc1{bottom:549.480000px;}
.y18{bottom:550.920000px;}
.y89{bottom:554.880000px;}
.ydb{bottom:557.400000px;}
.y41{bottom:568.560000px;}
.y88{bottom:573.960000px;}
.y17{bottom:581.880000px;}
.yc0{bottom:586.920000px;}
.y87{bottom:592.680000px;}
.yff{bottom:594.840000px;}
.y40{bottom:597.000000px;}
.yda{bottom:606.360000px;}
.y86{bottom:611.760000px;}
.y16{bottom:612.480000px;}
.yfe{bottom:621.120000px;}
.ybf{bottom:624.360000px;}
.y3f{bottom:625.440000px;}
.y85{bottom:626.880000px;}
.yd9{bottom:631.200000px;}
.y15{bottom:643.440000px;}
.y3e{bottom:644.880000px;}
.yfd{bottom:647.400000px;}
.yd8{bottom:655.680000px;}
.ybe{bottom:662.880000px;}
.y3d{bottom:663.960000px;}
.ya4{bottom:668.640000px;}
.yfc{bottom:673.680000px;}
.y14{bottom:674.400000px;}
.y3c{bottom:679.080000px;}
.yd7{bottom:680.160000px;}
.y6b{bottom:697.080000px;}
.y58{bottom:698.136000px;}
.yfb{bottom:699.960000px;}
.ybd{bottom:700.680000px;}
.ya3{bottom:701.040000px;}
.y6d{bottom:701.251950px;}
.y13{bottom:705.000000px;}
.ya2{bottom:725.880000px;}
.yd6{bottom:729.480000px;}
.y29{bottom:731.280000px;}
.y12{bottom:735.960000px;}
.ybc{bottom:738.120000px;}
.yfa{bottom:752.160000px;}
.yd5{bottom:753.960000px;}
.y28{bottom:763.320000px;}
.y11{bottom:768.000000px;}
.ybb{bottom:771.960000px;}
.yf9{bottom:778.440000px;}
.yd4{bottom:778.800000px;}
.yd3{bottom:803.280000px;}
.y10{bottom:803.640000px;}
.yf8{bottom:804.720000px;}
.yd2{bottom:827.760000px;}
.yf6{bottom:831.000000px;}
.yf{bottom:834.240000px;}
.yd1{bottom:852.600000px;}
.ya0{bottom:855.840000px;}
.yf5{bottom:857.280000px;}
.ye{bottom:865.200000px;}
.yd0{bottom:877.080000px;}
.yf4{bottom:883.560000px;}
.yd{bottom:895.800000px;}
.ycf{bottom:901.560000px;}
.yf3{bottom:909.840000px;}
.yce{bottom:926.400000px;}
.yc{bottom:926.760000px;}
.yf2{bottom:936.120000px;}
.ycd{bottom:950.880000px;}
.yb{bottom:957.720000px;}
.yf1{bottom:962.400000px;}
.ycc{bottom:975.360000px;}
.ya{bottom:988.320000px;}
.yf0{bottom:988.680000px;}
.ycb{bottom:1000.200000px;}
.yef{bottom:1014.960000px;}
.y9{bottom:1020.720000px;}
.yca{bottom:1024.680000px;}
.yee{bottom:1040.880000px;}
.yc8{bottom:1049.160000px;}
.y8{bottom:1056.000000px;}
.y3b{bottom:1066.800000px;}
.yec{bottom:1067.160000px;}
.yc6{bottom:1074.000000px;}
.y3a{bottom:1085.520000px;}
.yb6{bottom:1085.880000px;}
.y9e{bottom:1086.240000px;}
.y7{bottom:1086.960000px;}
.yea{bottom:1093.440000px;}
.yc2{bottom:1099.560000px;}
.y84{bottom:1101.720000px;}
.y39{bottom:1104.600000px;}
.y6{bottom:1119.000000px;}
.ya1{bottom:1119.360000px;}
.yb0{bottom:1123.320000px;}
.y38{bottom:1123.680000px;}
.y2{bottom:1175.520000px;}
.hd{height:18.231355px;}
.h13{height:18.234958px;}
.ha{height:18.240396px;}
.h3{height:20.520000px;}
.h17{height:20.879970px;}
.h1e{height:22.319910px;}
.h20{height:22.319955px;}
.h1b{height:22.320000px;}
.h1f{height:22.679895px;}
.h21{height:22.679940px;}
.h1d{height:22.680000px;}
.h9{height:23.295803px;}
.h11{height:23.300406px;}
.h15{height:24.120030px;}
.h2b{height:25.199940px;}
.h26{height:25.199985px;}
.h2c{height:25.200000px;}
.h25{height:25.559880px;}
.h29{height:25.559925px;}
.h24{height:25.559970px;}
.h2a{height:25.560015px;}
.hb{height:31.061071px;}
.h12{height:31.067209px;}
.hc{height:31.076473px;}
.hf{height:32.998231px;}
.h23{height:34.199985px;}
.h22{height:34.684453px;}
.h14{height:36.298054px;}
.h1c{height:40.157578px;}
.h1a{height:40.502735px;}
.h18{height:41.051250px;}
.h5{height:43.917188px;}
.h16{height:45.869063px;}
.h7{height:53.820703px;}
.h6{height:56.604375px;}
.h19{height:57.273750px;}
.h4{height:59.785313px;}
.h2{height:59.800781px;}
.h28{height:64.924453px;}
.h27{height:64.925053px;}
.h10{height:378.932850px;}
.h8{height:382.100700px;}
.he{height:383.760000px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w9{width:18.000000px;}
.w7{width:33.480000px;}
.w8{width:34.560015px;}
.wb{width:51.120000px;}
.wf{width:52.200000px;}
.we{width:82.799970px;}
.w12{width:83.879970px;}
.wd{width:93.599985px;}
.w11{width:94.680000px;}
.wa{width:95.760000px;}
.wc{width:104.040030px;}
.w10{width:105.120030px;}
.w14{width:210.960000px;}
.w15{width:212.040000px;}
.w13{width:229.320000px;}
.w6{width:262.782000px;}
.w4{width:262.782135px;}
.w5{width:637.560000px;}
.w3{width:856.499850px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1b{left:10.800000px;}
.x2c{left:12.067650px;}
.x26{left:13.841550px;}
.x33{left:16.991700px;}
.x1{left:18.000000px;}
.x28{left:21.662850px;}
.x2f{left:22.966200px;}
.x11{left:24.586914px;}
.x14{left:27.831356px;}
.x34{left:29.047800px;}
.x42{left:30.205350px;}
.x2a{left:31.647900px;}
.xd{left:32.935516px;}
.xa{left:35.138194px;}
.xb{left:39.546771px;}
.x3e{left:41.040000px;}
.xc{left:42.213171px;}
.x1d{left:56.265075px;}
.x9{left:58.333943px;}
.x43{left:60.295500px;}
.x4c{left:61.435500px;}
.xe{left:64.012925px;}
.x44{left:65.267850px;}
.x36{left:68.721600px;}
.x40{left:71.977500px;}
.x45{left:73.517850px;}
.x49{left:75.417750px;}
.x3b{left:76.669500px;}
.x41{left:78.468300px;}
.x48{left:80.798550px;}
.x3a{left:82.764300px;}
.x4a{left:84.352500px;}
.x50{left:86.415000px;}
.x13{left:87.672395px;}
.x39{left:89.056500px;}
.x15{left:90.179460px;}
.x47{left:91.578300px;}
.x4e{left:92.602650px;}
.x4b{left:94.342500px;}
.x3d{left:96.851400px;}
.x3f{left:98.793000px;}
.x35{left:100.080000px;}
.x4f{left:102.579600px;}
.x4d{left:104.977500px;}
.x2{left:109.440000px;}
.x17{left:115.619682px;}
.x10{left:118.981665px;}
.x3c{left:120.915150px;}
.x8{left:127.591065px;}
.x46{left:130.064850px;}
.x12{left:141.945553px;}
.x1a{left:166.360110px;}
.x4{left:170.190000px;}
.x25{left:228.240000px;}
.xf{left:246.780484px;}
.x2e{left:325.080000px;}
.x27{left:326.160000px;}
.x37{left:330.120000px;}
.x30{left:378.360000px;}
.x29{left:379.440000px;}
.x1e{left:401.527200px;}
.x21{left:406.852335px;}
.x1c{left:460.080000px;}
.x18{left:467.602860px;}
.x31{left:484.560000px;}
.x2b{left:485.640000px;}
.x16{left:501.574050px;}
.x19{left:515.528010px;}
.x38{left:541.800000px;}
.x32{left:580.320000px;}
.x2d{left:581.400000px;}
.x5{left:609.554850px;}
.x6{left:612.614835px;}
.x22{left:664.094700px;}
.x23{left:677.414850px;}
.x24{left:698.114850px;}
.x7{left:746.640135px;}
.x20{left:748.439985px;}
.x3{left:756.000000px;}
.x1f{left:779.144850px;}
@media print{
.v6{vertical-align:-34.560000pt;}
.v5{vertical-align:-26.880533pt;}
.v1{vertical-align:-14.827736pt;}
.v3{vertical-align:-11.799748pt;}
.v2{vertical-align:-10.727044pt;}
.v7{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.ls22{letter-spacing:-0.142148pt;}
.ls1f{letter-spacing:-0.142120pt;}
.ls24{letter-spacing:-0.009440pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.003518pt;}
.ls1e{letter-spacing:0.004720pt;}
.ls21{letter-spacing:0.008582pt;}
.ls1b{letter-spacing:0.008704pt;}
.ls23{letter-spacing:0.012586pt;}
.ls25{letter-spacing:0.018880pt;}
.ls37{letter-spacing:0.040960pt;}
.ls38{letter-spacing:0.044480pt;}
.ls4d{letter-spacing:0.052907pt;}
.ls4c{letter-spacing:0.053440pt;}
.ls57{letter-spacing:0.070528pt;}
.ls3b{letter-spacing:0.089013pt;}
.ls51{letter-spacing:0.089387pt;}
.ls1{letter-spacing:0.103936pt;}
.ls44{letter-spacing:0.106667pt;}
.ls43{letter-spacing:0.107648pt;}
.ls20{letter-spacing:0.151595pt;}
.ls55{letter-spacing:0.159616pt;}
.ls56{letter-spacing:0.178560pt;}
.ls39{letter-spacing:0.196587pt;}
.ls59{letter-spacing:0.224640pt;}
.ls3f{letter-spacing:0.241408pt;}
.ls12{letter-spacing:0.264960pt;}
.ls13{letter-spacing:0.266667pt;}
.ls42{letter-spacing:0.278144pt;}
.ls14{letter-spacing:0.286400pt;}
.lsf{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.293333pt;}
.ls34{letter-spacing:0.294784pt;}
.ls9{letter-spacing:0.335467pt;}
.lsa{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.355200pt;}
.ls29{letter-spacing:0.355627pt;}
.ls4{letter-spacing:0.355733pt;}
.ls10{letter-spacing:0.357120pt;}
.ls41{letter-spacing:0.377856pt;}
.ls40{letter-spacing:0.383104pt;}
.ls3c{letter-spacing:0.404096pt;}
.ls35{letter-spacing:0.414592pt;}
.ls3a{letter-spacing:0.425088pt;}
.ls2d{letter-spacing:0.426240pt;}
.ls36{letter-spacing:0.430336pt;}
.ls46{letter-spacing:0.437760pt;}
.lsd{letter-spacing:0.466560pt;}
.ls3e{letter-spacing:0.477568pt;}
.ls45{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.535680pt;}
.ls54{letter-spacing:0.552960pt;}
.ls50{letter-spacing:0.570240pt;}
.ls48{letter-spacing:0.570560pt;}
.ls33{letter-spacing:0.589568pt;}
.ls58{letter-spacing:0.599040pt;}
.ls2e{letter-spacing:0.601760pt;}
.ls26{letter-spacing:0.601813pt;}
.ls2{letter-spacing:0.602240pt;}
.lsc{letter-spacing:0.604800pt;}
.ls17{letter-spacing:0.639360pt;}
.ls2f{letter-spacing:0.644800pt;}
.lse{letter-spacing:0.645120pt;}
.ls30{letter-spacing:0.661760pt;}
.ls32{letter-spacing:0.661973pt;}
.ls5{letter-spacing:0.708480pt;}
.ls47{letter-spacing:0.710933pt;}
.ls49{letter-spacing:0.710987pt;}
.ls2c{letter-spacing:0.719360pt;}
.ls52{letter-spacing:0.743040pt;}
.ls3d{letter-spacing:0.745216pt;}
.ls4b{letter-spacing:0.771840pt;}
.ls11{letter-spacing:0.777600pt;}
.ls19{letter-spacing:0.996480pt;}
.ls4f{letter-spacing:2.142933pt;}
.ls53{letter-spacing:2.144533pt;}
.ls18{letter-spacing:3.664000pt;}
.ls8{letter-spacing:4.829333pt;}
.ls4a{letter-spacing:5.090667pt;}
.ls4e{letter-spacing:5.091200pt;}
.ls2a{letter-spacing:9.110400pt;}
.ls2b{letter-spacing:9.112000pt;}
.ls16{letter-spacing:11.766933pt;}
.ls27{letter-spacing:12.838240pt;}
.ls28{letter-spacing:12.907733pt;}
.ls6{letter-spacing:18.648000pt;}
.ls3{letter-spacing:37.444800pt;}
.ls1a{letter-spacing:85.180237pt;}
.ls1c{letter-spacing:85.197068pt;}
.ls0{letter-spacing:130.773333pt;}
.ws1b{word-spacing:-20.638720pt;}
.ws1c{word-spacing:-15.629568pt;}
.ws3{word-spacing:-15.396480pt;}
.ws1d{word-spacing:-15.177600pt;}
.ws5{word-spacing:-15.108480pt;}
.ws4{word-spacing:-15.045120pt;}
.ws0{word-spacing:-15.004800pt;}
.ws2a{word-spacing:-14.935680pt;}
.ws19{word-spacing:-14.866560pt;}
.ws18{word-spacing:-14.826240pt;}
.ws6{word-spacing:-14.757120pt;}
.ws1{word-spacing:-14.688000pt;}
.ws2c{word-spacing:-14.578560pt;}
.ws1a{word-spacing:-14.400000pt;}
.wsb{word-spacing:-10.541080pt;}
.wsc{word-spacing:-10.535856pt;}
.ws2b{word-spacing:-9.439616pt;}
.ws29{word-spacing:-9.387648pt;}
.ws2d{word-spacing:-9.350528pt;}
.ws10{word-spacing:-7.903453pt;}
.ws8{word-spacing:-7.901892pt;}
.wsd{word-spacing:-6.298575pt;}
.ws22{word-spacing:-0.797696pt;}
.ws23{word-spacing:-0.530048pt;}
.ws20{word-spacing:-0.482816pt;}
.ws27{word-spacing:-0.477568pt;}
.ws1e{word-spacing:-0.467072pt;}
.ws21{word-spacing:-0.456576pt;}
.ws25{word-spacing:-0.435584pt;}
.ws26{word-spacing:-0.430336pt;}
.ws28{word-spacing:-0.330624pt;}
.ws24{word-spacing:-0.293888pt;}
.ws15{word-spacing:-0.066079pt;}
.ws1f{word-spacing:-0.052480pt;}
.ws17{word-spacing:-0.051919pt;}
.ws12{word-spacing:-0.047199pt;}
.ws16{word-spacing:-0.044052pt;}
.wse{word-spacing:-0.042908pt;}
.ws14{word-spacing:-0.037759pt;}
.wsa{word-spacing:-0.037505pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:45.114293pt;}
.wsf{word-spacing:45.123208pt;}
.ws13{word-spacing:52.408939pt;}
.ws9{word-spacing:69.711619pt;}
.ws11{word-spacing:69.725394pt;}
._1{margin-left:-1.050133pt;}
._2{width:0.984800pt;}
._a{width:2.408000pt;}
._7{width:3.513600pt;}
._6{width:4.838400pt;}
._11{width:6.220800pt;}
._8{width:7.443733pt;}
._9{width:8.338667pt;}
._b{width:9.242667pt;}
._e{width:11.174400pt;}
._f{width:12.273493pt;}
._10{width:13.363893pt;}
._5{width:16.995680pt;}
._4{width:18.086400pt;}
._c{width:21.024000pt;}
._d{width:22.233600pt;}
._0{width:36.109600pt;}
._3{width:37.157600pt;}
._12{width:752.959947pt;}
.fs8{font-size:22.244752pt;}
.fse{font-size:22.249147pt;}
.fs4{font-size:22.255782pt;}
.fs9{font-size:22.656745pt;}
.fs3{font-size:28.424072pt;}
.fsc{font-size:28.429689pt;}
.fsb{font-size:28.605405pt;}
.fs10{font-size:31.465973pt;}
.fs13{font-size:34.560000pt;}
.fs15{font-size:37.120000pt;}
.fs7{font-size:37.505358pt;}
.fs5{font-size:37.898763pt;}
.fsd{font-size:37.906251pt;}
.fs6{font-size:37.917555pt;}
.fsa{font-size:42.908176pt;}
.fsf{font-size:47.198994pt;}
.fs14{font-size:51.061619pt;}
.fs11{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs12{font-size:60.160000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.520000pt;}
.y9f{bottom:3.840000pt;}
.yc4{bottom:5.120000pt;}
.yc5{bottom:5.297297pt;}
.yf7{bottom:5.760000pt;}
.yc3{bottom:6.080000pt;}
.yed{bottom:6.400000pt;}
.yc7{bottom:7.360000pt;}
.yc9{bottom:7.680000pt;}
.yeb{bottom:10.240000pt;}
.y7e{bottom:14.939122pt;}
.y6c{bottom:15.759089pt;}
.y1{bottom:16.000000pt;}
.y69{bottom:17.822848pt;}
.y6e{bottom:29.466170pt;}
.y59{bottom:32.348457pt;}
.y3{bottom:34.986693pt;}
.y7f{bottom:46.774719pt;}
.y4{bottom:47.146693pt;}
.y6a{bottom:49.656447pt;}
.y83{bottom:58.001052pt;}
.y6f{bottom:58.315659pt;}
.y5a{bottom:61.195108pt;}
.y82{bottom:71.946252pt;}
.y57{bottom:84.266693pt;}
.y81{bottom:85.891318pt;}
.y110{bottom:86.826693pt;}
.y9d{bottom:89.386693pt;}
.y37{bottom:95.146693pt;}
.y27{bottom:96.106693pt;}
.y7c{bottom:98.707519pt;}
.y80{bottom:99.836518pt;}
.y56{bottom:100.906693pt;}
.y70{bottom:101.179965pt;}
.y67{bottom:101.574697pt;}
.y5b{bottom:104.046654pt;}
.yaf{bottom:104.106693pt;}
.y10f{bottom:105.066693pt;}
.y9c{bottom:106.346693pt;}
.y36{bottom:112.106693pt;}
.y55{bottom:117.866667pt;}
.y9b{bottom:122.986667pt;}
.y10e{bottom:123.626667pt;}
.y26{bottom:127.146667pt;}
.y35{bottom:129.066667pt;}
.yae{bottom:130.346667pt;}
.y54{bottom:134.826667pt;}
.y9a{bottom:139.946667pt;}
.y71{bottom:144.044271pt;}
.y10d{bottom:144.426667pt;}
.y34{bottom:145.706667pt;}
.y5c{bottom:146.902491pt;}
.y53{bottom:151.466667pt;}
.yad{bottom:155.626667pt;}
.y99{bottom:156.906667pt;}
.y25{bottom:160.106667pt;}
.y33{bottom:162.666667pt;}
.ye9{bottom:164.586667pt;}
.y52{bottom:168.426667pt;}
.y10c{bottom:170.346800pt;}
.y98{bottom:173.546667pt;}
.y7d{bottom:175.472086pt;}
.y72{bottom:176.193215pt;}
.y68{bottom:178.321236pt;}
.y5d{bottom:179.042224pt;}
.yac{bottom:180.906667pt;}
.y24{bottom:185.386667pt;}
.y32{bottom:187.626667pt;}
.y97{bottom:190.506667pt;}
.y10b{bottom:191.146667pt;}
.ye8{bottom:194.986667pt;}
.y7b{bottom:196.492164pt;}
.y73{bottom:197.625368pt;}
.y66{bottom:199.337162pt;}
.y5e{bottom:200.470143pt;}
.y51{bottom:202.346667pt;}
.yab{bottom:206.186667pt;}
.y96{bottom:207.466667pt;}
.y10a{bottom:210.346667pt;}
.y23{bottom:210.666667pt;}
.y31{bottom:212.906667pt;}
.ye7{bottom:218.346800pt;}
.y50{bottom:218.986667pt;}
.y74{bottom:219.054660pt;}
.y5f{bottom:221.898062pt;}
.y95{bottom:224.106667pt;}
.y79{bottom:227.297575pt;}
.y64{bottom:230.140779pt;}
.yaa{bottom:231.466667pt;}
.y22{bottom:235.946667pt;}
.y109{bottom:236.586667pt;}
.y30{bottom:238.186667pt;}
.y75{bottom:240.486813pt;}
.y94{bottom:241.066667pt;}
.ye6{bottom:242.026667pt;}
.y60{bottom:243.325980pt;}
.y4f{bottom:252.906667pt;}
.ya9{bottom:256.746667pt;}
.y93{bottom:258.026667pt;}
.y21{bottom:261.546667pt;}
.y76{bottom:261.918966pt;}
.y2f{bottom:263.466667pt;}
.y108{bottom:264.106667pt;}
.y61{bottom:264.749608pt;}
.ye5{bottom:265.706800pt;}
.y4e{bottom:269.546667pt;}
.y92{bottom:274.986667pt;}
.ya8{bottom:282.026667pt;}
.y77{bottom:283.351118pt;}
.y62{bottom:286.178957pt;}
.y4d{bottom:286.506667pt;}
.y20{bottom:286.826667pt;}
.y2e{bottom:288.746667pt;}
.y91{bottom:291.626667pt;}
.y107{bottom:295.466667pt;}
.ye4{bottom:295.786800pt;}
.y78{bottom:301.486677pt;}
.y4c{bottom:303.466667pt;}
.y63{bottom:304.310933pt;}
.ya7{bottom:307.306667pt;}
.y90{bottom:308.586667pt;}
.y1f{bottom:312.106667pt;}
.y2d{bottom:314.026667pt;}
.y7a{bottom:315.498632pt;}
.y65{bottom:318.320120pt;}
.y106{bottom:318.826667pt;}
.y4b{bottom:320.106667pt;}
.ye3{bottom:320.426667pt;}
.ya6{bottom:332.586667pt;}
.y8f{bottom:333.546667pt;}
.y4a{bottom:337.066667pt;}
.y1e{bottom:337.386667pt;}
.y2c{bottom:339.306667pt;}
.yb5{bottom:339.946667pt;}
.ye2{bottom:342.186667pt;}
.yba{bottom:344.106667pt;}
.y49{bottom:354.026667pt;}
.ya5{bottom:354.666667pt;}
.y8e{bottom:358.826667pt;}
.y2b{bottom:359.146667pt;}
.y1d{bottom:362.666667pt;}
.ye1{bottom:364.266667pt;}
.y105{bottom:365.226667pt;}
.yb4{bottom:366.186667pt;}
.yb9{bottom:369.706667pt;}
.y48{bottom:370.986667pt;}
.y2a{bottom:383.466667pt;}
.y8d{bottom:384.106667pt;}
.ye0{bottom:386.026667pt;}
.y47{bottom:387.626667pt;}
.y1c{bottom:387.946667pt;}
.y104{bottom:388.586667pt;}
.yb3{bottom:399.786667pt;}
.yb8{bottom:403.306667pt;}
.y46{bottom:404.586667pt;}
.y1b{bottom:407.466667pt;}
.ydf{bottom:407.786667pt;}
.y8c{bottom:409.386667pt;}
.y103{bottom:411.946667pt;}
.y45{bottom:421.546667pt;}
.yde{bottom:429.866667pt;}
.yb2{bottom:433.386667pt;}
.yb7{bottom:433.706667pt;}
.y8b{bottom:434.666667pt;}
.y1a{bottom:434.986667pt;}
.y102{bottom:435.306667pt;}
.y44{bottom:438.186667pt;}
.ydd{bottom:451.626667pt;}
.y43{bottom:455.146667pt;}
.y101{bottom:458.666667pt;}
.y19{bottom:462.506667pt;}
.yb1{bottom:463.466667pt;}
.y8a{bottom:467.946667pt;}
.ydc{bottom:473.386667pt;}
.y42{bottom:480.106667pt;}
.y100{bottom:482.026667pt;}
.yc1{bottom:488.426667pt;}
.y18{bottom:489.706667pt;}
.y89{bottom:493.226667pt;}
.ydb{bottom:495.466667pt;}
.y41{bottom:505.386667pt;}
.y88{bottom:510.186667pt;}
.y17{bottom:517.226667pt;}
.yc0{bottom:521.706667pt;}
.y87{bottom:526.826667pt;}
.yff{bottom:528.746667pt;}
.y40{bottom:530.666667pt;}
.yda{bottom:538.986667pt;}
.y86{bottom:543.786667pt;}
.y16{bottom:544.426667pt;}
.yfe{bottom:552.106667pt;}
.ybf{bottom:554.986667pt;}
.y3f{bottom:555.946667pt;}
.y85{bottom:557.226667pt;}
.yd9{bottom:561.066667pt;}
.y15{bottom:571.946667pt;}
.y3e{bottom:573.226667pt;}
.yfd{bottom:575.466667pt;}
.yd8{bottom:582.826667pt;}
.ybe{bottom:589.226667pt;}
.y3d{bottom:590.186667pt;}
.ya4{bottom:594.346667pt;}
.yfc{bottom:598.826667pt;}
.y14{bottom:599.466667pt;}
.y3c{bottom:603.626667pt;}
.yd7{bottom:604.586667pt;}
.y6b{bottom:619.626667pt;}
.y58{bottom:620.565333pt;}
.yfb{bottom:622.186667pt;}
.ybd{bottom:622.826667pt;}
.ya3{bottom:623.146667pt;}
.y6d{bottom:623.335067pt;}
.y13{bottom:626.666667pt;}
.ya2{bottom:645.226667pt;}
.yd6{bottom:648.426667pt;}
.y29{bottom:650.026667pt;}
.y12{bottom:654.186667pt;}
.ybc{bottom:656.106667pt;}
.yfa{bottom:668.586667pt;}
.yd5{bottom:670.186667pt;}
.y28{bottom:678.506667pt;}
.y11{bottom:682.666667pt;}
.ybb{bottom:686.186667pt;}
.yf9{bottom:691.946667pt;}
.yd4{bottom:692.266667pt;}
.yd3{bottom:714.026667pt;}
.y10{bottom:714.346667pt;}
.yf8{bottom:715.306667pt;}
.yd2{bottom:735.786667pt;}
.yf6{bottom:738.666667pt;}
.yf{bottom:741.546667pt;}
.yd1{bottom:757.866667pt;}
.ya0{bottom:760.746667pt;}
.yf5{bottom:762.026667pt;}
.ye{bottom:769.066667pt;}
.yd0{bottom:779.626667pt;}
.yf4{bottom:785.386667pt;}
.yd{bottom:796.266667pt;}
.ycf{bottom:801.386667pt;}
.yf3{bottom:808.746667pt;}
.yce{bottom:823.466667pt;}
.yc{bottom:823.786667pt;}
.yf2{bottom:832.106667pt;}
.ycd{bottom:845.226667pt;}
.yb{bottom:851.306667pt;}
.yf1{bottom:855.466667pt;}
.ycc{bottom:866.986667pt;}
.ya{bottom:878.506667pt;}
.yf0{bottom:878.826667pt;}
.ycb{bottom:889.066667pt;}
.yef{bottom:902.186667pt;}
.y9{bottom:907.306667pt;}
.yca{bottom:910.826667pt;}
.yee{bottom:925.226667pt;}
.yc8{bottom:932.586667pt;}
.y8{bottom:938.666667pt;}
.y3b{bottom:948.266667pt;}
.yec{bottom:948.586667pt;}
.yc6{bottom:954.666667pt;}
.y3a{bottom:964.906667pt;}
.yb6{bottom:965.226667pt;}
.y9e{bottom:965.546667pt;}
.y7{bottom:966.186667pt;}
.yea{bottom:971.946667pt;}
.yc2{bottom:977.386667pt;}
.y84{bottom:979.306667pt;}
.y39{bottom:981.866667pt;}
.y6{bottom:994.666667pt;}
.ya1{bottom:994.986667pt;}
.yb0{bottom:998.506667pt;}
.y38{bottom:998.826667pt;}
.y2{bottom:1044.906667pt;}
.hd{height:16.205649pt;}
.h13{height:16.208851pt;}
.ha{height:16.213685pt;}
.h3{height:18.240000pt;}
.h17{height:18.559973pt;}
.h1e{height:19.839920pt;}
.h20{height:19.839960pt;}
.h1b{height:19.840000pt;}
.h1f{height:20.159907pt;}
.h21{height:20.159947pt;}
.h1d{height:20.160000pt;}
.h9{height:20.707381pt;}
.h11{height:20.711472pt;}
.h15{height:21.440027pt;}
.h2b{height:22.399947pt;}
.h26{height:22.399987pt;}
.h2c{height:22.400000pt;}
.h25{height:22.719893pt;}
.h29{height:22.719933pt;}
.h24{height:22.719973pt;}
.h2a{height:22.720013pt;}
.hb{height:27.609841pt;}
.h12{height:27.615296pt;}
.hc{height:27.623531pt;}
.hf{height:29.331761pt;}
.h23{height:30.399987pt;}
.h22{height:30.830625pt;}
.h14{height:32.264937pt;}
.h1c{height:35.695625pt;}
.h1a{height:36.002431pt;}
.h18{height:36.490000pt;}
.h5{height:39.037500pt;}
.h16{height:40.772500pt;}
.h7{height:47.840625pt;}
.h6{height:50.315000pt;}
.h19{height:50.910000pt;}
.h4{height:53.142500pt;}
.h2{height:53.156250pt;}
.h28{height:57.710625pt;}
.h27{height:57.711158pt;}
.h10{height:336.829200pt;}
.h8{height:339.645067pt;}
.he{height:341.120000pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w9{width:16.000000pt;}
.w7{width:29.760000pt;}
.w8{width:30.720013pt;}
.wb{width:45.440000pt;}
.wf{width:46.400000pt;}
.we{width:73.599973pt;}
.w12{width:74.559973pt;}
.wd{width:83.199987pt;}
.w11{width:84.160000pt;}
.wa{width:85.120000pt;}
.wc{width:92.480027pt;}
.w10{width:93.440027pt;}
.w14{width:187.520000pt;}
.w15{width:188.480000pt;}
.w13{width:203.840000pt;}
.w6{width:233.584000pt;}
.w4{width:233.584120pt;}
.w5{width:566.720000pt;}
.w3{width:761.333200pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1b{left:9.600000pt;}
.x2c{left:10.726800pt;}
.x26{left:12.303600pt;}
.x33{left:15.103733pt;}
.x1{left:16.000000pt;}
.x28{left:19.255867pt;}
.x2f{left:20.414400pt;}
.x11{left:21.855035pt;}
.x14{left:24.738983pt;}
.x34{left:25.820267pt;}
.x42{left:26.849200pt;}
.x2a{left:28.131467pt;}
.xd{left:29.276014pt;}
.xa{left:31.233951pt;}
.xb{left:35.152686pt;}
.x3e{left:36.480000pt;}
.xc{left:37.522819pt;}
.x1d{left:50.013400pt;}
.x9{left:51.852394pt;}
.x43{left:53.596000pt;}
.x4c{left:54.609333pt;}
.xe{left:56.900377pt;}
.x44{left:58.015867pt;}
.x36{left:61.085867pt;}
.x40{left:63.980000pt;}
.x45{left:65.349200pt;}
.x49{left:67.038000pt;}
.x3b{left:68.150667pt;}
.x41{left:69.749600pt;}
.x48{left:71.820933pt;}
.x3a{left:73.568267pt;}
.x4a{left:74.980000pt;}
.x50{left:76.813333pt;}
.x13{left:77.931018pt;}
.x39{left:79.161333pt;}
.x15{left:80.159520pt;}
.x47{left:81.402933pt;}
.x4e{left:82.313467pt;}
.x4b{left:83.860000pt;}
.x3d{left:86.090133pt;}
.x3f{left:87.816000pt;}
.x35{left:88.960000pt;}
.x4f{left:91.181867pt;}
.x4d{left:93.313333pt;}
.x2{left:97.280000pt;}
.x17{left:102.773051pt;}
.x10{left:105.761480pt;}
.x3c{left:107.480133pt;}
.x8{left:113.414280pt;}
.x46{left:115.613200pt;}
.x12{left:126.173825pt;}
.x1a{left:147.875653pt;}
.x4{left:151.280000pt;}
.x25{left:202.880000pt;}
.xf{left:219.360430pt;}
.x2e{left:288.960000pt;}
.x27{left:289.920000pt;}
.x37{left:293.440000pt;}
.x30{left:336.320000pt;}
.x29{left:337.280000pt;}
.x1e{left:356.913067pt;}
.x21{left:361.646520pt;}
.x1c{left:408.960000pt;}
.x18{left:415.646987pt;}
.x31{left:430.720000pt;}
.x2b{left:431.680000pt;}
.x16{left:445.843600pt;}
.x19{left:458.247120pt;}
.x38{left:481.600000pt;}
.x32{left:515.840000pt;}
.x2d{left:516.800000pt;}
.x5{left:541.826533pt;}
.x6{left:544.546520pt;}
.x22{left:590.306400pt;}
.x23{left:602.146533pt;}
.x24{left:620.546533pt;}
.x7{left:663.680120pt;}
.x20{left:665.279987pt;}
.x3{left:672.000000pt;}
.x1f{left:692.573200pt;}
}




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