
    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_0356024acd307ef32ae8ccdc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_0b65186a07559df94843a72e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_3d6b60bbfb77619235c7f6cb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cde69546efee5e6282d90c75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.680176;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_8f7461279b46a83c2d470265.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_accbc42797ac6480cc3cbeac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_a7405bc00011a1314c63ce72.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_90d712ceeeeadefd8ed99f6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_c9e2f19da711b3857e7a3312.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_3ef348e5572e947005258257.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.842285;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_12d753499da4a4e0f7ca2aca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_c0abb37ded67c70a4ac6a144.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.896484;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_368514ba354421a5faf27aa2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_810dc74ab62ca0f28237221c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ee5fab908ff5347491f191f9.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);}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:27.360000px;}
.ls29{letter-spacing:-0.569088px;}
.ls1d{letter-spacing:-0.508896px;}
.ls1b{letter-spacing:-0.481536px;}
.ls1c{letter-spacing:-0.448704px;}
.ls2f{letter-spacing:-0.417312px;}
.ls2d{letter-spacing:-0.399168px;}
.ls22{letter-spacing:-0.393984px;}
.ls2c{letter-spacing:-0.381024px;}
.ls1e{letter-spacing:-0.361152px;}
.ls14{letter-spacing:-0.338688px;}
.ls20{letter-spacing:-0.328320px;}
.ls30{letter-spacing:-0.320544px;}
.ls19{letter-spacing:-0.302400px;}
.ls1f{letter-spacing:-0.273600px;}
.ls31{letter-spacing:-0.260064px;}
.ls15{letter-spacing:-0.241920px;}
.ls23{letter-spacing:-0.240768px;}
.ls18{letter-spacing:-0.223776px;}
.ls21{letter-spacing:-0.207936px;}
.ls12{letter-spacing:-0.205344px;}
.ls28{letter-spacing:-0.180576px;}
.ls1a{letter-spacing:-0.175392px;}
.lsb{letter-spacing:-0.164160px;}
.lsf{letter-spacing:-0.158976px;}
.ls2a{letter-spacing:-0.157248px;}
.ls16{letter-spacing:-0.145152px;}
.ls17{letter-spacing:-0.120960px;}
.ls10{letter-spacing:-0.119232px;}
.lse{letter-spacing:-0.079488px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.058320px;}
.ls11{letter-spacing:0.058464px;}
.ls0{letter-spacing:0.059904px;}
.ls4{letter-spacing:0.060048px;}
.ls1{letter-spacing:0.080352px;}
.ls2{letter-spacing:0.100224px;}
.ls4f{letter-spacing:0.118800px;}
.ls8{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.119952px;}
.ls25{letter-spacing:0.120096px;}
.ls37{letter-spacing:0.120960px;}
.ls5{letter-spacing:0.121104px;}
.ls59{letter-spacing:0.123552px;}
.lsc{letter-spacing:0.158688px;}
.ls4d{letter-spacing:0.159840px;}
.ls5e{letter-spacing:0.160128px;}
.ls60{letter-spacing:0.160272px;}
.ls69{letter-spacing:0.160416px;}
.ls51{letter-spacing:0.161280px;}
.ls57{letter-spacing:0.161568px;}
.lsd{letter-spacing:0.179568px;}
.ls5b{letter-spacing:0.194832px;}
.ls5a{letter-spacing:0.204336px;}
.ls61{letter-spacing:0.205776px;}
.ls63{letter-spacing:0.218592px;}
.ls50{letter-spacing:0.223344px;}
.ls4e{letter-spacing:0.237600px;}
.ls6{letter-spacing:0.239040px;}
.ls68{letter-spacing:0.239904px;}
.ls5f{letter-spacing:0.240336px;}
.ls52{letter-spacing:0.240480px;}
.ls5c{letter-spacing:0.242352px;}
.ls53{letter-spacing:0.261360px;}
.ls58{letter-spacing:0.275616px;}
.ls32{letter-spacing:0.285120px;}
.ls3d{letter-spacing:0.318384px;}
.ls2b{letter-spacing:0.356400px;}
.ls6b{letter-spacing:0.399168px;}
.ls64{letter-spacing:0.417312px;}
.ls38{letter-spacing:0.432432px;}
.ls6a{letter-spacing:0.446688px;}
.ls55{letter-spacing:0.479520px;}
.ls65{letter-spacing:0.479952px;}
.ls3c{letter-spacing:0.616320px;}
.ls9{letter-spacing:1.146240px;}
.ls40{letter-spacing:1.924992px;}
.ls27{letter-spacing:2.141280px;}
.ls66{letter-spacing:2.453472px;}
.ls67{letter-spacing:2.453760px;}
.ls34{letter-spacing:2.471328px;}
.ls44{letter-spacing:3.726720px;}
.ls42{letter-spacing:4.217472px;}
.ls62{letter-spacing:5.456592px;}
.ls56{letter-spacing:5.745600px;}
.ls41{letter-spacing:5.807520px;}
.ls35{letter-spacing:6.657840px;}
.ls39{letter-spacing:8.038080px;}
.ls4a{letter-spacing:8.755488px;}
.ls43{letter-spacing:9.053280px;}
.ls47{letter-spacing:9.219888px;}
.ls48{letter-spacing:9.221184px;}
.ls24{letter-spacing:10.851696px;}
.ls36{letter-spacing:11.443392px;}
.ls54{letter-spacing:14.820480px;}
.ls5d{letter-spacing:14.820768px;}
.ls45{letter-spacing:15.475680px;}
.ls3b{letter-spacing:15.962400px;}
.ls33{letter-spacing:21.656160px;}
.ls26{letter-spacing:21.896640px;}
.ls4b{letter-spacing:23.077440px;}
.ls3a{letter-spacing:29.772000px;}
.ls46{letter-spacing:34.155792px;}
.ls49{letter-spacing:36.017712px;}
.ls3e{letter-spacing:36.952272px;}
.ls3f{letter-spacing:36.953712px;}
.ls4c{letter-spacing:38.819520px;}
.ls7{letter-spacing:47.639520px;}
.ls2e{letter-spacing:92.880000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.480512px;}
.ws5{word-spacing:-16.440768px;}
.ws4{word-spacing:-16.401024px;}
.ws8{word-spacing:-16.354656px;}
.wsa{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.974848px;}
.ws15{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.wsb{word-spacing:-14.896224px;}
.wsd{word-spacing:-14.878080px;}
.ws19{word-spacing:-14.859936px;}
.wsf{word-spacing:-14.817600px;}
.ws1a{word-spacing:-14.799456px;}
.wse{word-spacing:-14.781312px;}
.ws17{word-spacing:-14.720832px;}
.ws12{word-spacing:-13.680000px;}
.ws13{word-spacing:-13.439232px;}
.ws11{word-spacing:-13.198464px;}
.ws25{word-spacing:-12.279168px;}
.ws1b{word-spacing:-12.236400px;}
.ws18{word-spacing:-12.198384px;}
.ws16{word-spacing:-12.165120px;}
.ws24{word-spacing:-12.155616px;}
.ws1f{word-spacing:-12.122352px;}
.ws1e{word-spacing:-12.117600px;}
.ws21{word-spacing:-12.098592px;}
.ws22{word-spacing:-12.084336px;}
.ws1c{word-spacing:-12.041568px;}
.ws1d{word-spacing:-12.003552px;}
.ws20{word-spacing:-11.998800px;}
.ws23{word-spacing:-11.880000px;}
.ws0{word-spacing:-10.561104px;}
.ws2{word-spacing:-10.540224px;}
.ws9{word-spacing:-0.097200px;}
.ws14{word-spacing:0.000000px;}
.ws1{word-spacing:0.136800px;}
.ws7{word-spacing:37.084608px;}
._1a{margin-left:-3.848832px;}
._2{margin-left:-2.780064px;}
._0{margin-left:-1.159776px;}
._1{width:1.092384px;}
._3{width:2.194848px;}
._6{width:3.502080px;}
._d{width:4.705920px;}
._14{width:5.987520px;}
._1d{width:7.015680px;}
._10{width:8.043840px;}
._11{width:9.797760px;}
._b{width:10.889280px;}
._c{width:12.215952px;}
._23{width:13.668480px;}
._35{width:15.123744px;}
._1e{width:16.269120px;}
._1f{width:17.720640px;}
._1c{width:18.809280px;}
._16{width:19.897920px;}
._12{width:21.833280px;}
._f{width:23.044464px;}
._4{width:24.492816px;}
._5{width:25.494336px;}
._9{width:27.305280px;}
._a{width:28.399680px;}
._19{width:29.605248px;}
._18{width:30.731328px;}
._17{width:31.929696px;}
._13{width:33.264000px;}
._7{width:35.294400px;}
._8{width:36.717120px;}
._20{width:37.730016px;}
._22{width:38.773008px;}
._1b{width:40.098240px;}
._21{width:41.183136px;}
._25{width:42.581664px;}
._2d{width:43.591104px;}
._27{width:46.206720px;}
._e{width:47.770560px;}
._15{width:49.109760px;}
._2c{width:50.198400px;}
._26{width:51.226560px;}
._2a{width:53.040960px;}
._24{width:54.673920px;}
._28{width:56.730240px;}
._2f{width:61.223040px;}
._2e{width:62.354880px;}
._30{width:63.383040px;}
._31{width:64.592640px;}
._34{width:68.176800px;}
._2b{width:73.301760px;}
._29{width:80.267616px;}
._32{width:90.871200px;}
._33{width:91.947456px;}
._3a{width:102.201264px;}
._36{width:128.322576px;}
._37{width:129.349440px;}
._38{width:175.153392px;}
._39{width:176.565600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.360000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs0{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:56.520000px;}
.y4{bottom:69.840000px;}
.y3{bottom:82.080000px;}
.y75{bottom:112.680000px;}
.y4d{bottom:119.160000px;}
.y74{bottom:129.960000px;}
.y4c{bottom:136.440000px;}
.y114{bottom:145.080000px;}
.y73{bottom:147.240000px;}
.y143{bottom:147.600000px;}
.ye7{bottom:150.840000px;}
.yae{bottom:151.560000px;}
.y4b{bottom:153.720000px;}
.yb4{bottom:159.840000px;}
.y142{bottom:161.280000px;}
.y113{bottom:162.360000px;}
.y72{bottom:164.520000px;}
.ye6{bottom:168.120000px;}
.yad{bottom:168.840000px;}
.y4a{bottom:171.000000px;}
.y141{bottom:175.320000px;}
.yb3{bottom:177.120000px;}
.yeb{bottom:177.840000px;}
.y112{bottom:179.640000px;}
.y71{bottom:181.800000px;}
.ye5{bottom:185.400000px;}
.yac{bottom:186.120000px;}
.y49{bottom:188.280000px;}
.y140{bottom:189.000000px;}
.yb2{bottom:194.400000px;}
.y111{bottom:196.920000px;}
.y70{bottom:199.080000px;}
.y166{bottom:201.960000px;}
.ye4{bottom:202.320000px;}
.y13f{bottom:202.680000px;}
.yab{bottom:203.400000px;}
.yea{bottom:204.120000px;}
.y48{bottom:205.560000px;}
.yb1{bottom:211.320000px;}
.y110{bottom:214.200000px;}
.y165{bottom:215.640000px;}
.y6f{bottom:216.360000px;}
.y13e{bottom:216.720000px;}
.ye9{bottom:218.160000px;}
.ye3{bottom:219.600000px;}
.yaa{bottom:220.320000px;}
.y47{bottom:222.840000px;}
.yb0{bottom:228.600000px;}
.y164{bottom:229.320000px;}
.y13d{bottom:230.400000px;}
.y10f{bottom:231.480000px;}
.y6e{bottom:233.280000px;}
.ye2{bottom:236.880000px;}
.ya9{bottom:237.600000px;}
.y46{bottom:240.120000px;}
.y163{bottom:243.000000px;}
.y13c{bottom:244.080000px;}
.yaf{bottom:245.880000px;}
.y10e{bottom:248.760000px;}
.y6d{bottom:250.560000px;}
.ye1{bottom:254.160000px;}
.ya8{bottom:254.880000px;}
.y45{bottom:257.040000px;}
.y162{bottom:257.400000px;}
.y13b{bottom:258.120000px;}
.y10d{bottom:266.040000px;}
.y6c{bottom:267.840000px;}
.ye0{bottom:271.440000px;}
.y13a{bottom:271.800000px;}
.ya7{bottom:272.160000px;}
.y44{bottom:274.320000px;}
.y10c{bottom:283.320000px;}
.y6b{bottom:285.120000px;}
.y139{bottom:285.480000px;}
.ydf{bottom:288.720000px;}
.ya6{bottom:289.440000px;}
.y43{bottom:291.600000px;}
.yf0{bottom:291.960000px;}
.y161{bottom:299.160000px;}
.y138{bottom:299.520000px;}
.y10b{bottom:300.600000px;}
.y6a{bottom:302.400000px;}
.yde{bottom:306.000000px;}
.ya5{bottom:306.720000px;}
.y42{bottom:308.880000px;}
.yef{bottom:309.240000px;}
.y137{bottom:313.200000px;}
.y10a{bottom:317.880000px;}
.y69{bottom:319.680000px;}
.ydd{bottom:323.280000px;}
.ya4{bottom:324.000000px;}
.y41{bottom:326.160000px;}
.yee{bottom:326.520000px;}
.y136{bottom:326.880000px;}
.y109{bottom:334.800000px;}
.y68{bottom:336.960000px;}
.ydc{bottom:340.560000px;}
.y135{bottom:340.920000px;}
.ya3{bottom:341.280000px;}
.y40{bottom:343.440000px;}
.yed{bottom:343.800000px;}
.y108{bottom:352.080000px;}
.y67{bottom:354.240000px;}
.y134{bottom:354.600000px;}
.ydb{bottom:357.840000px;}
.ya2{bottom:358.560000px;}
.y3f{bottom:360.720000px;}
.yec{bottom:361.080000px;}
.y133{bottom:368.280000px;}
.y107{bottom:369.360000px;}
.y66{bottom:371.520000px;}
.yda{bottom:375.120000px;}
.ya1{bottom:375.840000px;}
.y3e{bottom:378.000000px;}
.y160{bottom:381.960000px;}
.y132{bottom:382.320000px;}
.y106{bottom:386.640000px;}
.y65{bottom:388.800000px;}
.yd9{bottom:392.040000px;}
.ya0{bottom:393.120000px;}
.y3d{bottom:395.280000px;}
.y15f{bottom:395.640000px;}
.y131{bottom:396.000000px;}
.y105{bottom:403.920000px;}
.y64{bottom:406.080000px;}
.yd8{bottom:409.320000px;}
.y130{bottom:409.680000px;}
.y9f{bottom:410.040000px;}
.y3c{bottom:412.560000px;}
.y104{bottom:421.200000px;}
.y63{bottom:423.000000px;}
.y15e{bottom:423.360000px;}
.y12f{bottom:423.720000px;}
.yd7{bottom:426.600000px;}
.y9e{bottom:427.320000px;}
.y3b{bottom:429.840000px;}
.y15d{bottom:437.040000px;}
.y12e{bottom:437.400000px;}
.y103{bottom:438.480000px;}
.y62{bottom:440.280000px;}
.yd6{bottom:443.880000px;}
.y9d{bottom:444.600000px;}
.y3a{bottom:446.760000px;}
.y12d{bottom:451.080000px;}
.y102{bottom:455.760000px;}
.y61{bottom:457.560000px;}
.yd5{bottom:461.160000px;}
.y9c{bottom:461.880000px;}
.y39{bottom:464.040000px;}
.y12c{bottom:464.760000px;}
.y101{bottom:473.040000px;}
.y60{bottom:474.840000px;}
.yd4{bottom:478.440000px;}
.y12b{bottom:478.800000px;}
.y9b{bottom:479.160000px;}
.y38{bottom:490.320000px;}
.y5f{bottom:492.120000px;}
.y12a{bottom:492.480000px;}
.yd3{bottom:495.720000px;}
.y9a{bottom:496.440000px;}
.y129{bottom:506.160000px;}
.y37{bottom:507.240000px;}
.y100{bottom:507.600000px;}
.y5e{bottom:509.400000px;}
.yd2{bottom:513.000000px;}
.y99{bottom:513.720000px;}
.y15c{bottom:519.840000px;}
.y128{bottom:520.200000px;}
.y36{bottom:522.720000px;}
.yff{bottom:524.880000px;}
.y5d{bottom:526.680000px;}
.yd1{bottom:530.280000px;}
.y98{bottom:531.000000px;}
.y127{bottom:533.880000px;}
.y35{bottom:538.560000px;}
.yfe{bottom:541.800000px;}
.y5c{bottom:543.960000px;}
.yd0{bottom:547.560000px;}
.y97{bottom:548.280000px;}
.y34{bottom:554.040000px;}
.yfd{bottom:559.080000px;}
.y5b{bottom:561.240000px;}
.y126{bottom:561.600000px;}
.ycf{bottom:564.840000px;}
.y96{bottom:565.560000px;}
.y33{bottom:569.520000px;}
.y125{bottom:575.280000px;}
.yfc{bottom:576.360000px;}
.y5a{bottom:578.520000px;}
.yce{bottom:582.120000px;}
.y95{bottom:582.840000px;}
.y32{bottom:585.000000px;}
.y124{bottom:588.960000px;}
.yfb{bottom:593.640000px;}
.y59{bottom:595.800000px;}
.ycd{bottom:599.040000px;}
.y94{bottom:600.120000px;}
.y31{bottom:600.480000px;}
.y15b{bottom:602.640000px;}
.y123{bottom:603.000000px;}
.yfa{bottom:610.920000px;}
.y58{bottom:612.720000px;}
.y30{bottom:615.960000px;}
.ycc{bottom:616.320000px;}
.y122{bottom:616.680000px;}
.y93{bottom:617.040000px;}
.yf9{bottom:628.200000px;}
.y57{bottom:630.000000px;}
.y121{bottom:630.360000px;}
.y2f{bottom:631.440000px;}
.ycb{bottom:633.600000px;}
.y92{bottom:634.320000px;}
.y15a{bottom:644.040000px;}
.y120{bottom:644.400000px;}
.yf8{bottom:645.480000px;}
.y2e{bottom:646.920000px;}
.y56{bottom:647.280000px;}
.yca{bottom:650.880000px;}
.y91{bottom:651.600000px;}
.y1a{bottom:657.000000px;}
.y11f{bottom:658.080000px;}
.y2d{bottom:662.760000px;}
.y55{bottom:664.560000px;}
.yc9{bottom:668.160000px;}
.y90{bottom:668.880000px;}
.y11e{bottom:671.760000px;}
.y19{bottom:672.480000px;}
.y2c{bottom:678.240000px;}
.yf7{bottom:680.040000px;}
.y54{bottom:681.840000px;}
.yc8{bottom:685.440000px;}
.y11d{bottom:685.800000px;}
.y8f{bottom:686.160000px;}
.y18{bottom:687.960000px;}
.y2b{bottom:693.720000px;}
.yf6{bottom:697.320000px;}
.y53{bottom:699.120000px;}
.y11c{bottom:699.480000px;}
.yc7{bottom:702.720000px;}
.y8e{bottom:703.440000px;}
.y17{bottom:703.800000px;}
.y2a{bottom:709.200000px;}
.y11b{bottom:713.160000px;}
.yf5{bottom:714.600000px;}
.y52{bottom:716.400000px;}
.y16{bottom:719.280000px;}
.yc6{bottom:720.000000px;}
.y8d{bottom:720.720000px;}
.y29{bottom:724.680000px;}
.y159{bottom:726.840000px;}
.y11a{bottom:727.200000px;}
.yf4{bottom:731.520000px;}
.y51{bottom:733.680000px;}
.y15{bottom:734.760000px;}
.yc5{bottom:737.280000px;}
.y8c{bottom:738.000000px;}
.y28{bottom:740.160000px;}
.y119{bottom:740.880000px;}
.yf3{bottom:748.800000px;}
.y14{bottom:750.240000px;}
.y50{bottom:750.960000px;}
.yc4{bottom:754.560000px;}
.y8b{bottom:755.280000px;}
.y27{bottom:755.640000px;}
.y118{bottom:762.480000px;}
.y116{bottom:763.560000px;}
.y13{bottom:765.720000px;}
.yf2{bottom:766.080000px;}
.y4f{bottom:768.240000px;}
.y26{bottom:771.120000px;}
.yc3{bottom:771.840000px;}
.y8a{bottom:772.560000px;}
.yf1{bottom:780.120000px;}
.y12{bottom:781.200000px;}
.y158{bottom:782.280000px;}
.y4e{bottom:785.520000px;}
.y25{bottom:786.960000px;}
.yc2{bottom:788.760000px;}
.y89{bottom:789.840000px;}
.y157{bottom:795.960000px;}
.y11{bottom:797.040000px;}
.y24{bottom:802.800000px;}
.yc1{bottom:806.040000px;}
.y88{bottom:806.760000px;}
.y156{bottom:809.640000px;}
.y10{bottom:814.320000px;}
.y23{bottom:821.160000px;}
.yc0{bottom:823.320000px;}
.y155{bottom:823.680000px;}
.y87{bottom:824.040000px;}
.yf{bottom:837.000000px;}
.y154{bottom:837.360000px;}
.ybf{bottom:840.600000px;}
.y86{bottom:841.320000px;}
.y22{bottom:843.840000px;}
.y153{bottom:851.040000px;}
.ye{bottom:854.280000px;}
.ybe{bottom:857.880000px;}
.y85{bottom:858.600000px;}
.y21{bottom:861.120000px;}
.y152{bottom:865.080000px;}
.yd{bottom:866.160000px;}
.y20{bottom:873.000000px;}
.ybd{bottom:875.160000px;}
.y84{bottom:875.880000px;}
.y151{bottom:878.760000px;}
.yc{bottom:888.840000px;}
.ybc{bottom:892.440000px;}
.y83{bottom:893.160000px;}
.y1f{bottom:895.680000px;}
.yb{bottom:901.080000px;}
.y150{bottom:906.480000px;}
.y1e{bottom:907.920000px;}
.ybb{bottom:909.720000px;}
.y82{bottom:910.440000px;}
.ya{bottom:919.800000px;}
.y14f{bottom:920.160000px;}
.y1d{bottom:927.000000px;}
.y81{bottom:927.720000px;}
.y14e{bottom:933.840000px;}
.y117{bottom:936.000000px;}
.y9{bottom:943.200000px;}
.yba{bottom:944.280000px;}
.y80{bottom:945.000000px;}
.y1c{bottom:945.360000px;}
.y14d{bottom:947.880000px;}
.y115{bottom:953.280000px;}
.yb9{bottom:961.560000px;}
.y7f{bottom:962.280000px;}
.y1b{bottom:962.640000px;}
.y14c{bottom:975.240000px;}
.yb8{bottom:978.840000px;}
.y7e{bottom:979.560000px;}
.y8{bottom:984.600000px;}
.y14b{bottom:989.280000px;}
.yb7{bottom:995.760000px;}
.y7d{bottom:996.840000px;}
.y14a{bottom:1002.960000px;}
.yb6{bottom:1013.040000px;}
.y7c{bottom:1013.760000px;}
.y149{bottom:1016.640000px;}
.ye8{bottom:1022.040000px;}
.y7{bottom:1026.000000px;}
.y148{bottom:1030.680000px;}
.y7b{bottom:1031.040000px;}
.yb5{bottom:1039.320000px;}
.y147{bottom:1044.360000px;}
.y7a{bottom:1048.320000px;}
.y146{bottom:1058.040000px;}
.y79{bottom:1065.600000px;}
.y6{bottom:1067.400000px;}
.y145{bottom:1072.080000px;}
.y78{bottom:1082.880000px;}
.y144{bottom:1085.760000px;}
.y77{bottom:1100.160000px;}
.y2{bottom:1104.120000px;}
.y76{bottom:1119.960000px;}
.y1{bottom:1122.840000px;}
.h7{height:26.274375px;}
.h4{height:28.995469px;}
.ha{height:31.672266px;}
.h3{height:32.635547px;}
.h9{height:37.245938px;}
.h1{height:41.696016px;}
.h8{height:41.993438px;}
.h2{height:53.067656px;}
.h6{height:56.355469px;}
.h5{height:100.054688px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:67.680180px;}
.x7{left:72.844128px;}
.xf{left:77.761224px;}
.x3{left:89.301276px;}
.xd{left:94.680180px;}
.xe{left:103.354992px;}
.x4{left:132.745608px;}
.x9{left:162.774900px;}
.xb{left:189.262188px;}
.x1c{left:198.719964px;}
.x17{left:211.144032px;}
.x11{left:218.143044px;}
.xa{left:269.369388px;}
.xc{left:297.151596px;}
.x5{left:309.713364px;}
.x10{left:371.210400px;}
.x8{left:412.124760px;}
.x1a{left:439.200000px;}
.x18{left:443.160360px;}
.x6{left:459.180000px;}
.x12{left:472.680000px;}
.x13{left:499.680000px;}
.x14{left:521.535600px;}
.x1d{left:549.187560px;}
.x16{left:568.474920px;}
.x1b{left:575.799480px;}
.x15{left:613.677240px;}
.x1e{left:620.340840px;}
.x2{left:844.680240px;}
.x19{left:850.680000px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:24.320000pt;}
.ls29{letter-spacing:-0.505856pt;}
.ls1d{letter-spacing:-0.452352pt;}
.ls1b{letter-spacing:-0.428032pt;}
.ls1c{letter-spacing:-0.398848pt;}
.ls2f{letter-spacing:-0.370944pt;}
.ls2d{letter-spacing:-0.354816pt;}
.ls22{letter-spacing:-0.350208pt;}
.ls2c{letter-spacing:-0.338688pt;}
.ls1e{letter-spacing:-0.321024pt;}
.ls14{letter-spacing:-0.301056pt;}
.ls20{letter-spacing:-0.291840pt;}
.ls30{letter-spacing:-0.284928pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls1f{letter-spacing:-0.243200pt;}
.ls31{letter-spacing:-0.231168pt;}
.ls15{letter-spacing:-0.215040pt;}
.ls23{letter-spacing:-0.214016pt;}
.ls18{letter-spacing:-0.198912pt;}
.ls21{letter-spacing:-0.184832pt;}
.ls12{letter-spacing:-0.182528pt;}
.ls28{letter-spacing:-0.160512pt;}
.ls1a{letter-spacing:-0.155904pt;}
.lsb{letter-spacing:-0.145920pt;}
.lsf{letter-spacing:-0.141312pt;}
.ls2a{letter-spacing:-0.139776pt;}
.ls16{letter-spacing:-0.129024pt;}
.ls17{letter-spacing:-0.107520pt;}
.ls10{letter-spacing:-0.105984pt;}
.lse{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.051840pt;}
.ls11{letter-spacing:0.051968pt;}
.ls0{letter-spacing:0.053248pt;}
.ls4{letter-spacing:0.053376pt;}
.ls1{letter-spacing:0.071424pt;}
.ls2{letter-spacing:0.089088pt;}
.ls4f{letter-spacing:0.105600pt;}
.ls8{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.106624pt;}
.ls25{letter-spacing:0.106752pt;}
.ls37{letter-spacing:0.107520pt;}
.ls5{letter-spacing:0.107648pt;}
.ls59{letter-spacing:0.109824pt;}
.lsc{letter-spacing:0.141056pt;}
.ls4d{letter-spacing:0.142080pt;}
.ls5e{letter-spacing:0.142336pt;}
.ls60{letter-spacing:0.142464pt;}
.ls69{letter-spacing:0.142592pt;}
.ls51{letter-spacing:0.143360pt;}
.ls57{letter-spacing:0.143616pt;}
.lsd{letter-spacing:0.159616pt;}
.ls5b{letter-spacing:0.173184pt;}
.ls5a{letter-spacing:0.181632pt;}
.ls61{letter-spacing:0.182912pt;}
.ls63{letter-spacing:0.194304pt;}
.ls50{letter-spacing:0.198528pt;}
.ls4e{letter-spacing:0.211200pt;}
.ls6{letter-spacing:0.212480pt;}
.ls68{letter-spacing:0.213248pt;}
.ls5f{letter-spacing:0.213632pt;}
.ls52{letter-spacing:0.213760pt;}
.ls5c{letter-spacing:0.215424pt;}
.ls53{letter-spacing:0.232320pt;}
.ls58{letter-spacing:0.244992pt;}
.ls32{letter-spacing:0.253440pt;}
.ls3d{letter-spacing:0.283008pt;}
.ls2b{letter-spacing:0.316800pt;}
.ls6b{letter-spacing:0.354816pt;}
.ls64{letter-spacing:0.370944pt;}
.ls38{letter-spacing:0.384384pt;}
.ls6a{letter-spacing:0.397056pt;}
.ls55{letter-spacing:0.426240pt;}
.ls65{letter-spacing:0.426624pt;}
.ls3c{letter-spacing:0.547840pt;}
.ls9{letter-spacing:1.018880pt;}
.ls40{letter-spacing:1.711104pt;}
.ls27{letter-spacing:1.903360pt;}
.ls66{letter-spacing:2.180864pt;}
.ls67{letter-spacing:2.181120pt;}
.ls34{letter-spacing:2.196736pt;}
.ls44{letter-spacing:3.312640pt;}
.ls42{letter-spacing:3.748864pt;}
.ls62{letter-spacing:4.850304pt;}
.ls56{letter-spacing:5.107200pt;}
.ls41{letter-spacing:5.162240pt;}
.ls35{letter-spacing:5.918080pt;}
.ls39{letter-spacing:7.144960pt;}
.ls4a{letter-spacing:7.782656pt;}
.ls43{letter-spacing:8.047360pt;}
.ls47{letter-spacing:8.195456pt;}
.ls48{letter-spacing:8.196608pt;}
.ls24{letter-spacing:9.645952pt;}
.ls36{letter-spacing:10.171904pt;}
.ls54{letter-spacing:13.173760pt;}
.ls5d{letter-spacing:13.174016pt;}
.ls45{letter-spacing:13.756160pt;}
.ls3b{letter-spacing:14.188800pt;}
.ls33{letter-spacing:19.249920pt;}
.ls26{letter-spacing:19.463680pt;}
.ls4b{letter-spacing:20.513280pt;}
.ls3a{letter-spacing:26.464000pt;}
.ls46{letter-spacing:30.360704pt;}
.ls49{letter-spacing:32.015744pt;}
.ls3e{letter-spacing:32.846464pt;}
.ls3f{letter-spacing:32.847744pt;}
.ls4c{letter-spacing:34.506240pt;}
.ls7{letter-spacing:42.346240pt;}
.ls2e{letter-spacing:82.560000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.649344pt;}
.ws5{word-spacing:-14.614016pt;}
.ws4{word-spacing:-14.578688pt;}
.ws8{word-spacing:-14.537472pt;}
.wsa{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.310976pt;}
.ws15{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.wsb{word-spacing:-13.241088pt;}
.wsd{word-spacing:-13.224960pt;}
.ws19{word-spacing:-13.208832pt;}
.wsf{word-spacing:-13.171200pt;}
.ws1a{word-spacing:-13.155072pt;}
.wse{word-spacing:-13.138944pt;}
.ws17{word-spacing:-13.085184pt;}
.ws12{word-spacing:-12.160000pt;}
.ws13{word-spacing:-11.945984pt;}
.ws11{word-spacing:-11.731968pt;}
.ws25{word-spacing:-10.914816pt;}
.ws1b{word-spacing:-10.876800pt;}
.ws18{word-spacing:-10.843008pt;}
.ws16{word-spacing:-10.813440pt;}
.ws24{word-spacing:-10.804992pt;}
.ws1f{word-spacing:-10.775424pt;}
.ws1e{word-spacing:-10.771200pt;}
.ws21{word-spacing:-10.754304pt;}
.ws22{word-spacing:-10.741632pt;}
.ws1c{word-spacing:-10.703616pt;}
.ws1d{word-spacing:-10.669824pt;}
.ws20{word-spacing:-10.665600pt;}
.ws23{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.387648pt;}
.ws2{word-spacing:-9.369088pt;}
.ws9{word-spacing:-0.086400pt;}
.ws14{word-spacing:0.000000pt;}
.ws1{word-spacing:0.121600pt;}
.ws7{word-spacing:32.964096pt;}
._1a{margin-left:-3.421184pt;}
._2{margin-left:-2.471168pt;}
._0{margin-left:-1.030912pt;}
._1{width:0.971008pt;}
._3{width:1.950976pt;}
._6{width:3.112960pt;}
._d{width:4.183040pt;}
._14{width:5.322240pt;}
._1d{width:6.236160pt;}
._10{width:7.150080pt;}
._11{width:8.709120pt;}
._b{width:9.679360pt;}
._c{width:10.858624pt;}
._23{width:12.149760pt;}
._35{width:13.443328pt;}
._1e{width:14.461440pt;}
._1f{width:15.751680pt;}
._1c{width:16.719360pt;}
._16{width:17.687040pt;}
._12{width:19.407360pt;}
._f{width:20.483968pt;}
._4{width:21.771392pt;}
._5{width:22.661632pt;}
._9{width:24.271360pt;}
._a{width:25.244160pt;}
._19{width:26.315776pt;}
._18{width:27.316736pt;}
._17{width:28.381952pt;}
._13{width:29.568000pt;}
._7{width:31.372800pt;}
._8{width:32.637440pt;}
._20{width:33.537792pt;}
._22{width:34.464896pt;}
._1b{width:35.642880pt;}
._21{width:36.607232pt;}
._25{width:37.850368pt;}
._2d{width:38.747648pt;}
._27{width:41.072640pt;}
._e{width:42.462720pt;}
._15{width:43.653120pt;}
._2c{width:44.620800pt;}
._26{width:45.534720pt;}
._2a{width:47.147520pt;}
._24{width:48.599040pt;}
._28{width:50.426880pt;}
._2f{width:54.420480pt;}
._2e{width:55.426560pt;}
._30{width:56.340480pt;}
._31{width:57.415680pt;}
._34{width:60.601600pt;}
._2b{width:65.157120pt;}
._29{width:71.348992pt;}
._32{width:80.774400pt;}
._33{width:81.731072pt;}
._3a{width:90.845568pt;}
._36{width:114.064512pt;}
._37{width:114.977280pt;}
._38{width:155.691904pt;}
._39{width:156.947200pt;}
.fs3{font-size:24.320000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.240000pt;}
.y4{bottom:62.080000pt;}
.y3{bottom:72.960000pt;}
.y75{bottom:100.160000pt;}
.y4d{bottom:105.920000pt;}
.y74{bottom:115.520000pt;}
.y4c{bottom:121.280000pt;}
.y114{bottom:128.960000pt;}
.y73{bottom:130.880000pt;}
.y143{bottom:131.200000pt;}
.ye7{bottom:134.080000pt;}
.yae{bottom:134.720000pt;}
.y4b{bottom:136.640000pt;}
.yb4{bottom:142.080000pt;}
.y142{bottom:143.360000pt;}
.y113{bottom:144.320000pt;}
.y72{bottom:146.240000pt;}
.ye6{bottom:149.440000pt;}
.yad{bottom:150.080000pt;}
.y4a{bottom:152.000000pt;}
.y141{bottom:155.840000pt;}
.yb3{bottom:157.440000pt;}
.yeb{bottom:158.080000pt;}
.y112{bottom:159.680000pt;}
.y71{bottom:161.600000pt;}
.ye5{bottom:164.800000pt;}
.yac{bottom:165.440000pt;}
.y49{bottom:167.360000pt;}
.y140{bottom:168.000000pt;}
.yb2{bottom:172.800000pt;}
.y111{bottom:175.040000pt;}
.y70{bottom:176.960000pt;}
.y166{bottom:179.520000pt;}
.ye4{bottom:179.840000pt;}
.y13f{bottom:180.160000pt;}
.yab{bottom:180.800000pt;}
.yea{bottom:181.440000pt;}
.y48{bottom:182.720000pt;}
.yb1{bottom:187.840000pt;}
.y110{bottom:190.400000pt;}
.y165{bottom:191.680000pt;}
.y6f{bottom:192.320000pt;}
.y13e{bottom:192.640000pt;}
.ye9{bottom:193.920000pt;}
.ye3{bottom:195.200000pt;}
.yaa{bottom:195.840000pt;}
.y47{bottom:198.080000pt;}
.yb0{bottom:203.200000pt;}
.y164{bottom:203.840000pt;}
.y13d{bottom:204.800000pt;}
.y10f{bottom:205.760000pt;}
.y6e{bottom:207.360000pt;}
.ye2{bottom:210.560000pt;}
.ya9{bottom:211.200000pt;}
.y46{bottom:213.440000pt;}
.y163{bottom:216.000000pt;}
.y13c{bottom:216.960000pt;}
.yaf{bottom:218.560000pt;}
.y10e{bottom:221.120000pt;}
.y6d{bottom:222.720000pt;}
.ye1{bottom:225.920000pt;}
.ya8{bottom:226.560000pt;}
.y45{bottom:228.480000pt;}
.y162{bottom:228.800000pt;}
.y13b{bottom:229.440000pt;}
.y10d{bottom:236.480000pt;}
.y6c{bottom:238.080000pt;}
.ye0{bottom:241.280000pt;}
.y13a{bottom:241.600000pt;}
.ya7{bottom:241.920000pt;}
.y44{bottom:243.840000pt;}
.y10c{bottom:251.840000pt;}
.y6b{bottom:253.440000pt;}
.y139{bottom:253.760000pt;}
.ydf{bottom:256.640000pt;}
.ya6{bottom:257.280000pt;}
.y43{bottom:259.200000pt;}
.yf0{bottom:259.520000pt;}
.y161{bottom:265.920000pt;}
.y138{bottom:266.240000pt;}
.y10b{bottom:267.200000pt;}
.y6a{bottom:268.800000pt;}
.yde{bottom:272.000000pt;}
.ya5{bottom:272.640000pt;}
.y42{bottom:274.560000pt;}
.yef{bottom:274.880000pt;}
.y137{bottom:278.400000pt;}
.y10a{bottom:282.560000pt;}
.y69{bottom:284.160000pt;}
.ydd{bottom:287.360000pt;}
.ya4{bottom:288.000000pt;}
.y41{bottom:289.920000pt;}
.yee{bottom:290.240000pt;}
.y136{bottom:290.560000pt;}
.y109{bottom:297.600000pt;}
.y68{bottom:299.520000pt;}
.ydc{bottom:302.720000pt;}
.y135{bottom:303.040000pt;}
.ya3{bottom:303.360000pt;}
.y40{bottom:305.280000pt;}
.yed{bottom:305.600000pt;}
.y108{bottom:312.960000pt;}
.y67{bottom:314.880000pt;}
.y134{bottom:315.200000pt;}
.ydb{bottom:318.080000pt;}
.ya2{bottom:318.720000pt;}
.y3f{bottom:320.640000pt;}
.yec{bottom:320.960000pt;}
.y133{bottom:327.360000pt;}
.y107{bottom:328.320000pt;}
.y66{bottom:330.240000pt;}
.yda{bottom:333.440000pt;}
.ya1{bottom:334.080000pt;}
.y3e{bottom:336.000000pt;}
.y160{bottom:339.520000pt;}
.y132{bottom:339.840000pt;}
.y106{bottom:343.680000pt;}
.y65{bottom:345.600000pt;}
.yd9{bottom:348.480000pt;}
.ya0{bottom:349.440000pt;}
.y3d{bottom:351.360000pt;}
.y15f{bottom:351.680000pt;}
.y131{bottom:352.000000pt;}
.y105{bottom:359.040000pt;}
.y64{bottom:360.960000pt;}
.yd8{bottom:363.840000pt;}
.y130{bottom:364.160000pt;}
.y9f{bottom:364.480000pt;}
.y3c{bottom:366.720000pt;}
.y104{bottom:374.400000pt;}
.y63{bottom:376.000000pt;}
.y15e{bottom:376.320000pt;}
.y12f{bottom:376.640000pt;}
.yd7{bottom:379.200000pt;}
.y9e{bottom:379.840000pt;}
.y3b{bottom:382.080000pt;}
.y15d{bottom:388.480000pt;}
.y12e{bottom:388.800000pt;}
.y103{bottom:389.760000pt;}
.y62{bottom:391.360000pt;}
.yd6{bottom:394.560000pt;}
.y9d{bottom:395.200000pt;}
.y3a{bottom:397.120000pt;}
.y12d{bottom:400.960000pt;}
.y102{bottom:405.120000pt;}
.y61{bottom:406.720000pt;}
.yd5{bottom:409.920000pt;}
.y9c{bottom:410.560000pt;}
.y39{bottom:412.480000pt;}
.y12c{bottom:413.120000pt;}
.y101{bottom:420.480000pt;}
.y60{bottom:422.080000pt;}
.yd4{bottom:425.280000pt;}
.y12b{bottom:425.600000pt;}
.y9b{bottom:425.920000pt;}
.y38{bottom:435.840000pt;}
.y5f{bottom:437.440000pt;}
.y12a{bottom:437.760000pt;}
.yd3{bottom:440.640000pt;}
.y9a{bottom:441.280000pt;}
.y129{bottom:449.920000pt;}
.y37{bottom:450.880000pt;}
.y100{bottom:451.200000pt;}
.y5e{bottom:452.800000pt;}
.yd2{bottom:456.000000pt;}
.y99{bottom:456.640000pt;}
.y15c{bottom:462.080000pt;}
.y128{bottom:462.400000pt;}
.y36{bottom:464.640000pt;}
.yff{bottom:466.560000pt;}
.y5d{bottom:468.160000pt;}
.yd1{bottom:471.360000pt;}
.y98{bottom:472.000000pt;}
.y127{bottom:474.560000pt;}
.y35{bottom:478.720000pt;}
.yfe{bottom:481.600000pt;}
.y5c{bottom:483.520000pt;}
.yd0{bottom:486.720000pt;}
.y97{bottom:487.360000pt;}
.y34{bottom:492.480000pt;}
.yfd{bottom:496.960000pt;}
.y5b{bottom:498.880000pt;}
.y126{bottom:499.200000pt;}
.ycf{bottom:502.080000pt;}
.y96{bottom:502.720000pt;}
.y33{bottom:506.240000pt;}
.y125{bottom:511.360000pt;}
.yfc{bottom:512.320000pt;}
.y5a{bottom:514.240000pt;}
.yce{bottom:517.440000pt;}
.y95{bottom:518.080000pt;}
.y32{bottom:520.000000pt;}
.y124{bottom:523.520000pt;}
.yfb{bottom:527.680000pt;}
.y59{bottom:529.600000pt;}
.ycd{bottom:532.480000pt;}
.y94{bottom:533.440000pt;}
.y31{bottom:533.760000pt;}
.y15b{bottom:535.680000pt;}
.y123{bottom:536.000000pt;}
.yfa{bottom:543.040000pt;}
.y58{bottom:544.640000pt;}
.y30{bottom:547.520000pt;}
.ycc{bottom:547.840000pt;}
.y122{bottom:548.160000pt;}
.y93{bottom:548.480000pt;}
.yf9{bottom:558.400000pt;}
.y57{bottom:560.000000pt;}
.y121{bottom:560.320000pt;}
.y2f{bottom:561.280000pt;}
.ycb{bottom:563.200000pt;}
.y92{bottom:563.840000pt;}
.y15a{bottom:572.480000pt;}
.y120{bottom:572.800000pt;}
.yf8{bottom:573.760000pt;}
.y2e{bottom:575.040000pt;}
.y56{bottom:575.360000pt;}
.yca{bottom:578.560000pt;}
.y91{bottom:579.200000pt;}
.y1a{bottom:584.000000pt;}
.y11f{bottom:584.960000pt;}
.y2d{bottom:589.120000pt;}
.y55{bottom:590.720000pt;}
.yc9{bottom:593.920000pt;}
.y90{bottom:594.560000pt;}
.y11e{bottom:597.120000pt;}
.y19{bottom:597.760000pt;}
.y2c{bottom:602.880000pt;}
.yf7{bottom:604.480000pt;}
.y54{bottom:606.080000pt;}
.yc8{bottom:609.280000pt;}
.y11d{bottom:609.600000pt;}
.y8f{bottom:609.920000pt;}
.y18{bottom:611.520000pt;}
.y2b{bottom:616.640000pt;}
.yf6{bottom:619.840000pt;}
.y53{bottom:621.440000pt;}
.y11c{bottom:621.760000pt;}
.yc7{bottom:624.640000pt;}
.y8e{bottom:625.280000pt;}
.y17{bottom:625.600000pt;}
.y2a{bottom:630.400000pt;}
.y11b{bottom:633.920000pt;}
.yf5{bottom:635.200000pt;}
.y52{bottom:636.800000pt;}
.y16{bottom:639.360000pt;}
.yc6{bottom:640.000000pt;}
.y8d{bottom:640.640000pt;}
.y29{bottom:644.160000pt;}
.y159{bottom:646.080000pt;}
.y11a{bottom:646.400000pt;}
.yf4{bottom:650.240000pt;}
.y51{bottom:652.160000pt;}
.y15{bottom:653.120000pt;}
.yc5{bottom:655.360000pt;}
.y8c{bottom:656.000000pt;}
.y28{bottom:657.920000pt;}
.y119{bottom:658.560000pt;}
.yf3{bottom:665.600000pt;}
.y14{bottom:666.880000pt;}
.y50{bottom:667.520000pt;}
.yc4{bottom:670.720000pt;}
.y8b{bottom:671.360000pt;}
.y27{bottom:671.680000pt;}
.y118{bottom:677.760000pt;}
.y116{bottom:678.720000pt;}
.y13{bottom:680.640000pt;}
.yf2{bottom:680.960000pt;}
.y4f{bottom:682.880000pt;}
.y26{bottom:685.440000pt;}
.yc3{bottom:686.080000pt;}
.y8a{bottom:686.720000pt;}
.yf1{bottom:693.440000pt;}
.y12{bottom:694.400000pt;}
.y158{bottom:695.360000pt;}
.y4e{bottom:698.240000pt;}
.y25{bottom:699.520000pt;}
.yc2{bottom:701.120000pt;}
.y89{bottom:702.080000pt;}
.y157{bottom:707.520000pt;}
.y11{bottom:708.480000pt;}
.y24{bottom:713.600000pt;}
.yc1{bottom:716.480000pt;}
.y88{bottom:717.120000pt;}
.y156{bottom:719.680000pt;}
.y10{bottom:723.840000pt;}
.y23{bottom:729.920000pt;}
.yc0{bottom:731.840000pt;}
.y155{bottom:732.160000pt;}
.y87{bottom:732.480000pt;}
.yf{bottom:744.000000pt;}
.y154{bottom:744.320000pt;}
.ybf{bottom:747.200000pt;}
.y86{bottom:747.840000pt;}
.y22{bottom:750.080000pt;}
.y153{bottom:756.480000pt;}
.ye{bottom:759.360000pt;}
.ybe{bottom:762.560000pt;}
.y85{bottom:763.200000pt;}
.y21{bottom:765.440000pt;}
.y152{bottom:768.960000pt;}
.yd{bottom:769.920000pt;}
.y20{bottom:776.000000pt;}
.ybd{bottom:777.920000pt;}
.y84{bottom:778.560000pt;}
.y151{bottom:781.120000pt;}
.yc{bottom:790.080000pt;}
.ybc{bottom:793.280000pt;}
.y83{bottom:793.920000pt;}
.y1f{bottom:796.160000pt;}
.yb{bottom:800.960000pt;}
.y150{bottom:805.760000pt;}
.y1e{bottom:807.040000pt;}
.ybb{bottom:808.640000pt;}
.y82{bottom:809.280000pt;}
.ya{bottom:817.600000pt;}
.y14f{bottom:817.920000pt;}
.y1d{bottom:824.000000pt;}
.y81{bottom:824.640000pt;}
.y14e{bottom:830.080000pt;}
.y117{bottom:832.000000pt;}
.y9{bottom:838.400000pt;}
.yba{bottom:839.360000pt;}
.y80{bottom:840.000000pt;}
.y1c{bottom:840.320000pt;}
.y14d{bottom:842.560000pt;}
.y115{bottom:847.360000pt;}
.yb9{bottom:854.720000pt;}
.y7f{bottom:855.360000pt;}
.y1b{bottom:855.680000pt;}
.y14c{bottom:866.880000pt;}
.yb8{bottom:870.080000pt;}
.y7e{bottom:870.720000pt;}
.y8{bottom:875.200000pt;}
.y14b{bottom:879.360000pt;}
.yb7{bottom:885.120000pt;}
.y7d{bottom:886.080000pt;}
.y14a{bottom:891.520000pt;}
.yb6{bottom:900.480000pt;}
.y7c{bottom:901.120000pt;}
.y149{bottom:903.680000pt;}
.ye8{bottom:908.480000pt;}
.y7{bottom:912.000000pt;}
.y148{bottom:916.160000pt;}
.y7b{bottom:916.480000pt;}
.yb5{bottom:923.840000pt;}
.y147{bottom:928.320000pt;}
.y7a{bottom:931.840000pt;}
.y146{bottom:940.480000pt;}
.y79{bottom:947.200000pt;}
.y6{bottom:948.800000pt;}
.y145{bottom:952.960000pt;}
.y78{bottom:962.560000pt;}
.y144{bottom:965.120000pt;}
.y77{bottom:977.920000pt;}
.y2{bottom:981.440000pt;}
.y76{bottom:995.520000pt;}
.y1{bottom:998.080000pt;}
.h7{height:23.355000pt;}
.h4{height:25.773750pt;}
.ha{height:28.153125pt;}
.h3{height:29.009375pt;}
.h9{height:33.107500pt;}
.h1{height:37.063125pt;}
.h8{height:37.327500pt;}
.h2{height:47.171250pt;}
.h6{height:50.093750pt;}
.h5{height:88.937500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.160160pt;}
.x7{left:64.750336pt;}
.xf{left:69.121088pt;}
.x3{left:79.378912pt;}
.xd{left:84.160160pt;}
.xe{left:91.871104pt;}
.x4{left:117.996096pt;}
.x9{left:144.688800pt;}
.xb{left:168.233056pt;}
.x1c{left:176.639968pt;}
.x17{left:187.683584pt;}
.x11{left:193.904928pt;}
.xa{left:239.439456pt;}
.xc{left:264.134752pt;}
.x5{left:275.300768pt;}
.x10{left:329.964800pt;}
.x8{left:366.333120pt;}
.x1a{left:390.400000pt;}
.x18{left:393.920320pt;}
.x6{left:408.160000pt;}
.x12{left:420.160000pt;}
.x13{left:444.160000pt;}
.x14{left:463.587200pt;}
.x1d{left:488.166720pt;}
.x16{left:505.311040pt;}
.x1b{left:511.821760pt;}
.x15{left:545.490880pt;}
.x1e{left:551.414080pt;}
.x2{left:750.826880pt;}
.x19{left:756.160000pt;}
}




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