
    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_68ec9a5d0fc743312f73a19d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990200;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_870a7ed476ad601565f09066.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_26feb7e89646df2611068d4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109000;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_6bf6599911db21000330049e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132000;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_170b2b98bcbc180c18a5d78e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_f89f9b9f4a6f8195019aac4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_3f88ee3b5ac32f89dead19c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_0be112bc9ca30f8c286c527a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4c3283fd80de784a4b20f6c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835800;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_63bcd3c879a893574a830975.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.044922;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_af28bfb55eb3d093ad60dbb9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.980000;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_0a10c3f2dad283970c622679.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.039062;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_35e1b4e2f41b40243343b638.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142000;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_6165bb19f4a87ad7421f2749.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-36.000000px;}
.v3{vertical-align:-17.550000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.150000px;}
.v4{vertical-align:63.948000px;}
.ls4{letter-spacing:-3.000000px;}
.ls37{letter-spacing:-0.994500px;}
.ls2a{letter-spacing:-0.836550px;}
.ls2c{letter-spacing:-0.585000px;}
.ls38{letter-spacing:-0.570375px;}
.ls2b{letter-spacing:-0.409500px;}
.ls33{letter-spacing:-0.380250px;}
.ls39{letter-spacing:-0.114075px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000300px;}
.ls2f{letter-spacing:0.000474px;}
.ls66{letter-spacing:0.010800px;}
.ls65{letter-spacing:0.011400px;}
.ls64{letter-spacing:0.026400px;}
.ls13{letter-spacing:0.058500px;}
.ls58{letter-spacing:0.064500px;}
.ls23{letter-spacing:0.070500px;}
.ls5c{letter-spacing:0.129000px;}
.ls24{letter-spacing:0.141000px;}
.ls43{letter-spacing:0.175500px;}
.ls61{letter-spacing:0.193500px;}
.ls3a{letter-spacing:0.211500px;}
.ls3f{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.258000px;}
.ls52{letter-spacing:0.266175px;}
.ls7{letter-spacing:0.282000px;}
.lsc{letter-spacing:0.292500px;}
.ls1{letter-spacing:0.322500px;}
.ls68{letter-spacing:0.333000px;}
.ls12{letter-spacing:0.351000px;}
.ls4b{letter-spacing:0.352500px;}
.ls2e{letter-spacing:0.423000px;}
.ls1b{letter-spacing:0.468000px;}
.ls35{letter-spacing:0.493500px;}
.ls5a{letter-spacing:0.516000px;}
.ls10{letter-spacing:0.526500px;}
.ls5b{letter-spacing:0.532200px;}
.ls55{letter-spacing:0.564000px;}
.ls0{letter-spacing:0.580500px;}
.lse{letter-spacing:0.585000px;}
.ls14{letter-spacing:0.624300px;}
.ls1c{letter-spacing:0.643500px;}
.ls48{letter-spacing:0.687375px;}
.ls16{letter-spacing:0.702000px;}
.ls21{letter-spacing:0.705000px;}
.ls1d{letter-spacing:0.712500px;}
.ls9{letter-spacing:0.720900px;}
.ls20{letter-spacing:0.775500px;}
.ls4a{letter-spacing:0.798525px;}
.lsd{letter-spacing:0.819000px;}
.ls22{letter-spacing:0.846000px;}
.ls5d{letter-spacing:0.850800px;}
.lsf{letter-spacing:0.877500px;}
.ls59{letter-spacing:0.903000px;}
.ls34{letter-spacing:0.916500px;}
.ls51{letter-spacing:0.936000px;}
.lsb{letter-spacing:0.994500px;}
.ls5e{letter-spacing:1.032000px;}
.ls25{letter-spacing:1.053000px;}
.ls27{letter-spacing:1.057500px;}
.ls11{letter-spacing:1.096200px;}
.ls60{letter-spacing:1.096500px;}
.ls3d{letter-spacing:1.128000px;}
.ls47{letter-spacing:1.170000px;}
.ls56{letter-spacing:1.198500px;}
.ls4d{letter-spacing:1.228500px;}
.ls3e{letter-spacing:1.269000px;}
.ls42{letter-spacing:1.287000px;}
.ls41{letter-spacing:1.345500px;}
.ls50{letter-spacing:1.404000px;}
.ls19{letter-spacing:1.410000px;}
.ls45{letter-spacing:1.462500px;}
.ls53{letter-spacing:1.559025px;}
.ls1e{letter-spacing:1.638000px;}
.ls3c{letter-spacing:1.692000px;}
.ls15{letter-spacing:1.813500px;}
.ls46{letter-spacing:1.930500px;}
.lsa{letter-spacing:1.989000px;}
.ls49{letter-spacing:2.015325px;}
.ls4f{letter-spacing:2.047500px;}
.ls44{letter-spacing:2.106000px;}
.ls62{letter-spacing:2.776800px;}
.ls57{letter-spacing:3.100500px;}
.ls4e{letter-spacing:3.276000px;}
.ls67{letter-spacing:3.588000px;}
.ls40{letter-spacing:3.919500px;}
.ls63{letter-spacing:4.398000px;}
.ls5f{letter-spacing:4.479600px;}
.ls4c{letter-spacing:6.312000px;}
.ls28{letter-spacing:6.838500px;}
.ls26{letter-spacing:8.366400px;}
.ls5{letter-spacing:10.656000px;}
.ls36{letter-spacing:37.224000px;}
.ls3b{letter-spacing:37.751842px;}
.ls54{letter-spacing:37.752474px;}
.ls2d{letter-spacing:52.875000px;}
.ls31{letter-spacing:108.429000px;}
.ls29{letter-spacing:125.631000px;}
.ls30{letter-spacing:126.304421px;}
.ls32{letter-spacing:126.336000px;}
.ls1f{letter-spacing:328.394526px;}
.ls1a{letter-spacing:328.395158px;}
.ls18{letter-spacing:615.396000px;}
.ls17{letter-spacing:716.646600px;}
.ls6{letter-spacing:1035.354600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.500000px;}
.wse{word-spacing:-19.035000px;}
.ws23{word-spacing:-18.823500px;}
.ws19{word-spacing:-18.682500px;}
.ws14{word-spacing:-18.048000px;}
.ws18{word-spacing:-17.907000px;}
.ws20{word-spacing:-17.695500px;}
.ws7{word-spacing:-17.625000px;}
.ws12{word-spacing:-16.920000px;}
.ws2{word-spacing:-16.705500px;}
.ws25{word-spacing:-16.555500px;}
.ws3{word-spacing:-16.447500px;}
.ws1f{word-spacing:-16.438500px;}
.ws4{word-spacing:-16.383000px;}
.ws1{word-spacing:-16.125000px;}
.wsa{word-spacing:-15.444000px;}
.ws24{word-spacing:-15.327000px;}
.ws10{word-spacing:-15.268500px;}
.ws1e{word-spacing:-15.210000px;}
.wsf{word-spacing:-14.976000px;}
.wsb{word-spacing:-14.917500px;}
.ws1c{word-spacing:-14.800500px;}
.wsd{word-spacing:-14.625000px;}
.ws15{word-spacing:-13.630500px;}
.ws1a{word-spacing:-12.143625px;}
.ws1b{word-spacing:-11.521575px;}
.ws9{word-spacing:-11.456250px;}
.ws22{word-spacing:-11.065275px;}
.ws5{word-spacing:-10.656000px;}
.ws1d{word-spacing:-10.304775px;}
.ws21{word-spacing:-9.772425px;}
.wsc{word-spacing:-9.506250px;}
.ws17{word-spacing:-9.392175px;}
.ws13{word-spacing:-9.126000px;}
.ws16{word-spacing:-8.935875px;}
.ws11{word-spacing:-8.669700px;}
.ws8{word-spacing:-0.051000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-125.701500px;}
._2d{margin-left:-108.489789px;}
._32{margin-left:-53.225763px;}
._37{margin-left:-34.595605px;}
._d{margin-left:-24.000000px;}
._38{margin-left:-18.682500px;}
._1b{margin-left:-17.625000px;}
._19{margin-left:-15.852000px;}
._39{margin-left:-14.558100px;}
._b{margin-left:-10.683600px;}
._1a{margin-left:-7.122300px;}
._3{margin-left:-4.440000px;}
._2{margin-left:-3.000000px;}
._4{margin-left:-1.950000px;}
._9{width:1.284900px;}
._5{width:3.026700px;}
._a{width:4.128000px;}
._7{width:5.160000px;}
._8{width:6.385500px;}
._6{width:8.062500px;}
._f{width:9.562500px;}
._3b{width:11.146500px;}
._c{width:13.117500px;}
._1{width:14.178000px;}
._e{width:15.348000px;}
._2c{width:17.907000px;}
._18{width:18.983368px;}
._20{width:22.983000px;}
._12{width:25.751368px;}
._2a{width:37.164474px;}
._23{width:38.287263px;}
._29{width:43.362000px;}
._11{width:45.261000px;}
._26{width:51.938684px;}
._25{width:53.343158px;}
._3a{width:57.396572px;}
._33{width:65.011974px;}
._16{width:71.910000px;}
._21{width:74.236500px;}
._2e{width:75.576000px;}
._34{width:76.694684px;}
._1d{width:85.944079px;}
._2b{width:87.348237px;}
._35{width:88.468342px;}
._28{width:92.077579px;}
._24{width:96.232500px;}
._1c{width:97.717579px;}
._15{width:125.631000px;}
._22{width:138.558000px;}
._36{width:143.467500px;}
._31{width:177.862421px;}
._2f{width:209.430000px;}
._17{width:213.702000px;}
._30{width:215.155026px;}
._27{width:224.946632px;}
._14{width:293.698500px;}
._13{width:335.157000px;}
._1f{width:473.951842px;}
._10{width:1435.476600px;}
._0{width:1975.179000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:38.025000px;}
.fsb{font-size:45.825000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsa{font-size:52.500000px;}
.fs7{font-size:58.500000px;}
.fsd{font-size:59.400000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:64.500000px;}
.fs9{font-size:69.000000px;}
.fs5{font-size:70.500000px;}
.fs3{font-size:78.000000px;}
.fs4{font-size:88.200000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:75.319350px;}
.yb9{bottom:76.777050px;}
.y7e{bottom:76.777200px;}
.y2c{bottom:76.777350px;}
.y130{bottom:76.777500px;}
.y1b8{bottom:76.778250px;}
.ye2{bottom:131.810700px;}
.y2a{bottom:131.811000px;}
.y159{bottom:131.811150px;}
.y1b6{bottom:132.214200px;}
.y115{bottom:132.508050px;}
.y29{bottom:144.604500px;}
.y12f{bottom:147.797700px;}
.yf9{bottom:147.797850px;}
.y58{bottom:147.798000px;}
.y158{bottom:147.798150px;}
.y1b5{bottom:149.810700px;}
.y114{bottom:151.697550px;}
.y12c{bottom:152.185200px;}
.ye1{bottom:152.185350px;}
.yb7{bottom:152.185500px;}
.y28{bottom:163.776000px;}
.yf8{bottom:163.784700px;}
.y57{bottom:163.785000px;}
.y157{bottom:163.785150px;}
.y1b4{bottom:167.407200px;}
.y113{bottom:170.887200px;}
.yf7{bottom:179.771700px;}
.y56{bottom:179.772000px;}
.y15b{bottom:179.772150px;}
.y27{bottom:182.947350px;}
.yfc{bottom:184.159200px;}
.y7c{bottom:184.159500px;}
.y156{bottom:184.159650px;}
.y1b3{bottom:185.003700px;}
.y112{bottom:190.076700px;}
.ye0{bottom:194.495550px;}
.yf6{bottom:195.758700px;}
.y7b{bottom:195.759000px;}
.y155{bottom:195.759150px;}
.yb6{bottom:199.674000px;}
.y55{bottom:200.146500px;}
.y175{bottom:200.146650px;}
.y26{bottom:202.118850px;}
.y1b2{bottom:202.600200px;}
.y111{bottom:209.266200px;}
.yf5{bottom:211.745700px;}
.y54{bottom:211.746000px;}
.y154{bottom:211.746150px;}
.ydf{bottom:213.685050px;}
.y25{bottom:214.912350px;}
.yb5{bottom:218.863500px;}
.y1b1{bottom:220.196700px;}
.y12b{bottom:227.732700px;}
.yfb{bottom:227.732850px;}
.y53{bottom:227.733000px;}
.y153{bottom:227.733150px;}
.y110{bottom:228.455700px;}
.yf4{bottom:232.120350px;}
.y174{bottom:232.120650px;}
.yde{bottom:232.874550px;}
.y24{bottom:234.083850px;}
.y1b0{bottom:237.793200px;}
.yb4{bottom:238.053000px;}
.y12a{bottom:243.719700px;}
.y52{bottom:243.720000px;}
.y15a{bottom:243.720150px;}
.y23{bottom:246.877350px;}
.y10f{bottom:247.645200px;}
.yfa{bottom:248.107200px;}
.y152{bottom:248.107650px;}
.ydd{bottom:252.064050px;}
.y1af{bottom:255.389700px;}
.yb3{bottom:257.242350px;}
.y129{bottom:259.706700px;}
.y51{bottom:259.707000px;}
.y5a{bottom:264.094500px;}
.y9e{bottom:264.759900px;}
.y10e{bottom:266.834700px;}
.ydc{bottom:271.253550px;}
.y1ae{bottom:272.986200px;}
.y128{bottom:275.693700px;}
.y50{bottom:275.694000px;}
.y173{bottom:276.427500px;}
.yb2{bottom:276.431850px;}
.y9d{bottom:283.949400px;}
.y22{bottom:284.882100px;}
.y10d{bottom:286.024200px;}
.y186{bottom:286.033800px;}
.y1ad{bottom:290.582700px;}
.y127{bottom:291.680700px;}
.y4f{bottom:291.681000px;}
.yf3{bottom:295.616550px;}
.y172{bottom:295.617000px;}
.yb1{bottom:295.621350px;}
.ydb{bottom:300.035550px;}
.y21{bottom:300.869100px;}
.y151{bottom:302.064450px;}
.y9c{bottom:303.138900px;}
.y185{bottom:305.223300px;}
.y126{bottom:307.667700px;}
.y4e{bottom:307.668000px;}
.y1ac{bottom:308.179200px;}
.yf2{bottom:314.806050px;}
.y171{bottom:314.806500px;}
.yb0{bottom:314.810850px;}
.y7a{bottom:314.820150px;}
.y20{bottom:316.856100px;}
.yda{bottom:319.225050px;}
.y150{bottom:321.253950px;}
.y9b{bottom:322.328400px;}
.y125{bottom:323.654700px;}
.y4d{bottom:323.655000px;}
.y184{bottom:324.412800px;}
.y1ab{bottom:325.775700px;}
.y1f{bottom:332.843100px;}
.yf1{bottom:333.995550px;}
.y170{bottom:333.996000px;}
.y79{bottom:334.009650px;}
.yd9{bottom:338.414550px;}
.y124{bottom:339.641700px;}
.y59{bottom:339.642000px;}
.y1aa{bottom:343.372200px;}
.yaf{bottom:343.592850px;}
.y183{bottom:343.602300px;}
.y9a{bottom:343.643850px;}
.y4c{bottom:344.029500px;}
.y14f{bottom:350.035950px;}
.y10c{bottom:353.185050px;}
.yf0{bottom:353.185200px;}
.y16f{bottom:353.185500px;}
.y78{bottom:353.199150px;}
.y12e{bottom:355.628700px;}
.yd8{bottom:357.604050px;}
.y123{bottom:360.016200px;}
.y1a9{bottom:360.968700px;}
.yae{bottom:362.782350px;}
.y182{bottom:362.791800px;}
.y99{bottom:362.833350px;}
.y1dd{bottom:363.552450px;}
.y14e{bottom:369.225450px;}
.y122{bottom:371.615700px;}
.y10b{bottom:372.374550px;}
.yef{bottom:372.374700px;}
.y16e{bottom:372.375000px;}
.y77{bottom:372.388650px;}
.yd7{bottom:376.793550px;}
.y1a8{bottom:378.565200px;}
.y1e{bottom:378.942150px;}
.y1dc{bottom:381.148950px;}
.yad{bottom:381.971850px;}
.y181{bottom:381.981300px;}
.y98{bottom:382.022850px;}
.y121{bottom:387.602700px;}
.y14d{bottom:388.414800px;}
.y10a{bottom:391.564050px;}
.yee{bottom:391.564200px;}
.y16d{bottom:391.564500px;}
.y76{bottom:391.578150px;}
.yd6{bottom:395.983050px;}
.y1a7{bottom:396.161700px;}
.y1db{bottom:398.745450px;}
.y4b{bottom:401.161350px;}
.y180{bottom:401.170800px;}
.y97{bottom:401.212350px;}
.y120{bottom:403.589700px;}
.y1d{bottom:405.336000px;}
.y14c{bottom:407.604450px;}
.y109{bottom:410.753550px;}
.yed{bottom:410.753700px;}
.y16c{bottom:410.754000px;}
.y75{bottom:410.767650px;}
.y1a6{bottom:413.758200px;}
.yd5{bottom:415.172550px;}
.y1da{bottom:416.341950px;}
.y11f{bottom:419.576700px;}
.y4a{bottom:420.350850px;}
.y17f{bottom:420.360300px;}
.y96{bottom:420.401850px;}
.y1c{bottom:422.932500px;}
.y14b{bottom:426.793800px;}
.y108{bottom:429.943050px;}
.yec{bottom:429.943200px;}
.y16b{bottom:429.943500px;}
.y74{bottom:429.957150px;}
.y1a5{bottom:431.354700px;}
.y1d9{bottom:433.938450px;}
.yd4{bottom:434.362050px;}
.y11e{bottom:435.563850px;}
.y49{bottom:439.540350px;}
.y17e{bottom:439.549800px;}
.y95{bottom:439.591350px;}
.y1b{bottom:440.529000px;}
.y14a{bottom:445.983450px;}
.y1a4{bottom:448.951200px;}
.y107{bottom:449.132550px;}
.yeb{bottom:449.132700px;}
.y16a{bottom:449.133000px;}
.y73{bottom:449.146650px;}
.y1d8{bottom:451.534950px;}
.y12d{bottom:451.550700px;}
.yd3{bottom:453.551550px;}
.y11d{bottom:455.938200px;}
.y1a{bottom:458.125500px;}
.y48{bottom:458.729850px;}
.y17d{bottom:458.739300px;}
.y94{bottom:458.780850px;}
.y149{bottom:465.172950px;}
.y1a3{bottom:466.547700px;}
.y106{bottom:468.322050px;}
.yea{bottom:468.322200px;}
.y169{bottom:468.322500px;}
.y72{bottom:468.336150px;}
.y1d7{bottom:469.131450px;}
.yd2{bottom:472.741050px;}
.y19{bottom:475.722000px;}
.y47{bottom:477.919350px;}
.y17c{bottom:477.928800px;}
.y93{bottom:477.970350px;}
.y1a2{bottom:484.144200px;}
.y148{bottom:484.362450px;}
.y1d6{bottom:486.727950px;}
.y105{bottom:487.511550px;}
.ye9{bottom:487.511700px;}
.y168{bottom:487.512000px;}
.y18{bottom:493.318500px;}
.y46{bottom:497.108850px;}
.y71{bottom:497.118150px;}
.y17b{bottom:497.118300px;}
.y92{bottom:497.159850px;}
.y1a1{bottom:501.740700px;}
.y147{bottom:503.551950px;}
.y1d5{bottom:504.324450px;}
.y104{bottom:506.701050px;}
.ye8{bottom:506.701200px;}
.y167{bottom:506.701500px;}
.yd1{bottom:508.938450px;}
.y17{bottom:510.915000px;}
.y11c{bottom:516.293550px;}
.y45{bottom:516.298350px;}
.y70{bottom:516.307650px;}
.y17a{bottom:516.307800px;}
.y91{bottom:516.349350px;}
.y1a0{bottom:519.337200px;}
.y1d4{bottom:521.920950px;}
.y146{bottom:522.741450px;}
.ye7{bottom:525.890550px;}
.y166{bottom:525.891000px;}
.y16{bottom:528.511500px;}
.y11b{bottom:535.483050px;}
.y44{bottom:535.487850px;}
.y6f{bottom:535.497150px;}
.y179{bottom:535.497300px;}
.y90{bottom:535.538850px;}
.y19f{bottom:536.933700px;}
.y1d3{bottom:539.517450px;}
.y145{bottom:541.930950px;}
.ye6{bottom:545.080050px;}
.y165{bottom:545.080500px;}
.y15{bottom:546.108000px;}
.y19e{bottom:554.530200px;}
.y11a{bottom:554.672550px;}
.y43{bottom:554.677350px;}
.y6e{bottom:554.686650px;}
.y178{bottom:554.686800px;}
.y8f{bottom:556.854300px;}
.y1d2{bottom:557.113950px;}
.y144{bottom:561.120450px;}
.yd0{bottom:564.269550px;}
.y164{bottom:564.270000px;}
.y19d{bottom:572.126700px;}
.y119{bottom:573.862050px;}
.y42{bottom:573.866850px;}
.y6d{bottom:573.876150px;}
.y177{bottom:573.876300px;}
.y1d1{bottom:574.710450px;}
.y8e{bottom:576.043800px;}
.y143{bottom:580.309950px;}
.y14{bottom:581.299050px;}
.ycf{bottom:583.459050px;}
.y163{bottom:583.459500px;}
.y19c{bottom:589.723200px;}
.y1d0{bottom:592.306950px;}
.y118{bottom:593.051550px;}
.y41{bottom:593.056200px;}
.yac{bottom:593.056350px;}
.y6c{bottom:593.065650px;}
.y8d{bottom:595.233300px;}
.y142{bottom:599.499450px;}
.yce{bottom:602.648550px;}
.y19b{bottom:607.319700px;}
.y13{bottom:607.692900px;}
.y1cf{bottom:609.903450px;}
.y117{bottom:612.241050px;}
.y162{bottom:612.241350px;}
.y40{bottom:612.245700px;}
.yab{bottom:612.245850px;}
.y176{bottom:612.250650px;}
.y6b{bottom:612.255150px;}
.y8c{bottom:614.422800px;}
.y141{bottom:618.688950px;}
.ycd{bottom:621.838050px;}
.y19a{bottom:624.916200px;}
.y12{bottom:625.289400px;}
.y1ce{bottom:627.499950px;}
.y116{bottom:631.430550px;}
.y161{bottom:631.430850px;}
.y3f{bottom:631.435200px;}
.yaa{bottom:631.435350px;}
.y8b{bottom:633.612450px;}
.y140{bottom:637.878450px;}
.ycc{bottom:641.027550px;}
.y199{bottom:642.512700px;}
.y11{bottom:642.885900px;}
.y1cd{bottom:645.096450px;}
.ye5{bottom:650.620050px;}
.y160{bottom:650.620350px;}
.y3e{bottom:650.624700px;}
.ya9{bottom:650.624850px;}
.y6a{bottom:650.629500px;}
.y8a{bottom:652.801800px;}
.y198{bottom:660.109200px;}
.ycb{bottom:660.217050px;}
.y10{bottom:660.482400px;}
.y1cc{bottom:662.692950px;}
.ye4{bottom:669.809550px;}
.y15f{bottom:669.809850px;}
.y3d{bottom:669.814200px;}
.ya8{bottom:669.814350px;}
.y89{bottom:671.991450px;}
.y197{bottom:677.705700px;}
.yf{bottom:678.078900px;}
.yca{bottom:679.406550px;}
.y1cb{bottom:680.289450px;}
.y13f{bottom:680.504700px;}
.ye3{bottom:688.999050px;}
.y15e{bottom:688.999350px;}
.y3c{bottom:689.003700px;}
.ya7{bottom:689.003850px;}
.y88{bottom:691.180800px;}
.y196{bottom:695.302200px;}
.ye{bottom:695.675400px;}
.y1ca{bottom:697.885950px;}
.y103{bottom:698.596050px;}
.yc9{bottom:708.188550px;}
.y69{bottom:708.188700px;}
.y15d{bottom:708.188850px;}
.y3b{bottom:708.193200px;}
.ya6{bottom:708.193350px;}
.y87{bottom:710.370450px;}
.y195{bottom:712.898700px;}
.yd{bottom:713.271900px;}
.y1c9{bottom:715.482450px;}
.y102{bottom:717.785550px;}
.yc8{bottom:727.378050px;}
.y68{bottom:727.378200px;}
.y15c{bottom:727.378350px;}
.y3a{bottom:727.382700px;}
.ya5{bottom:727.382850px;}
.y86{bottom:729.559800px;}
.y194{bottom:730.495200px;}
.yc{bottom:730.868400px;}
.y1c8{bottom:733.078950px;}
.y101{bottom:736.975050px;}
.yc7{bottom:746.567550px;}
.y67{bottom:746.567850px;}
.y13e{bottom:746.568000px;}
.y39{bottom:746.572200px;}
.ya4{bottom:746.572350px;}
.y193{bottom:748.091700px;}
.yb{bottom:748.464900px;}
.y85{bottom:748.749450px;}
.y1c7{bottom:750.675450px;}
.y100{bottom:756.164550px;}
.y192{bottom:765.688200px;}
.yc6{bottom:765.757050px;}
.y66{bottom:765.757200px;}
.y13d{bottom:765.757350px;}
.y38{bottom:765.761850px;}
.y84{bottom:767.938800px;}
.y1c6{bottom:768.271950px;}
.yff{bottom:775.354050px;}
.y191{bottom:783.284700px;}
.yc5{bottom:784.946550px;}
.y65{bottom:784.946850px;}
.y13c{bottom:784.947000px;}
.y37{bottom:784.951200px;}
.y1c5{bottom:785.868600px;}
.y83{bottom:787.128450px;}
.yfe{bottom:794.543550px;}
.ya3{bottom:794.543850px;}
.y190{bottom:800.881200px;}
.y1c4{bottom:803.464950px;}
.yc4{bottom:804.136050px;}
.y64{bottom:804.136200px;}
.y13b{bottom:804.136350px;}
.y36{bottom:804.140850px;}
.y82{bottom:806.317800px;}
.ya{bottom:813.419850px;}
.yfd{bottom:813.733200px;}
.ya2{bottom:813.733350px;}
.y18f{bottom:818.477850px;}
.y1c3{bottom:821.061450px;}
.yc3{bottom:823.325550px;}
.y63{bottom:823.325850px;}
.y13a{bottom:823.326000px;}
.y35{bottom:823.330200px;}
.y81{bottom:825.507450px;}
.y9{bottom:832.609350px;}
.ya1{bottom:832.922850px;}
.y18e{bottom:836.074350px;}
.y1c2{bottom:838.657950px;}
.yc2{bottom:842.515050px;}
.y62{bottom:842.515200px;}
.y139{bottom:842.515350px;}
.y34{bottom:842.519850px;}
.y80{bottom:844.696800px;}
.ya0{bottom:852.112350px;}
.y18d{bottom:853.670700px;}
.y1c1{bottom:856.254450px;}
.yc1{bottom:861.704550px;}
.y61{bottom:861.704700px;}
.y138{bottom:861.705000px;}
.y33{bottom:861.709200px;}
.y7f{bottom:863.886450px;}
.y18c{bottom:871.267200px;}
.y9f{bottom:871.301850px;}
.y8{bottom:873.058650px;}
.y1c0{bottom:873.850950px;}
.yc0{bottom:880.894050px;}
.y60{bottom:880.894200px;}
.y137{bottom:880.894350px;}
.y32{bottom:880.898850px;}
.y18b{bottom:888.863850px;}
.y1bf{bottom:891.447450px;}
.y7{bottom:900.058650px;}
.ybf{bottom:900.083550px;}
.y5f{bottom:900.083700px;}
.y136{bottom:900.084000px;}
.y31{bottom:900.088200px;}
.y18a{bottom:906.460350px;}
.y1be{bottom:909.043950px;}
.ybe{bottom:919.273050px;}
.y5e{bottom:919.273200px;}
.y135{bottom:919.273350px;}
.y30{bottom:919.277850px;}
.y189{bottom:924.056850px;}
.y1bd{bottom:926.640450px;}
.ybd{bottom:938.462550px;}
.y5d{bottom:938.462700px;}
.y134{bottom:938.462850px;}
.y2f{bottom:938.467350px;}
.y188{bottom:941.653350px;}
.y1bc{bottom:944.236950px;}
.ybc{bottom:957.652050px;}
.y5c{bottom:957.652200px;}
.y133{bottom:957.652350px;}
.y2e{bottom:957.656850px;}
.y187{bottom:959.249850px;}
.y1bb{bottom:961.833450px;}
.y6{bottom:966.442500px;}
.ybb{bottom:976.841550px;}
.y5b{bottom:976.841700px;}
.y132{bottom:976.841850px;}
.y1ba{bottom:979.429950px;}
.y5{bottom:987.826500px;}
.yba{bottom:996.030900px;}
.y2d{bottom:996.031200px;}
.y131{bottom:996.031350px;}
.y1b9{bottom:997.026450px;}
.yb8{bottom:1028.954100px;}
.y7d{bottom:1028.954250px;}
.y2b{bottom:1028.954400px;}
.y1b7{bottom:1028.955150px;}
.y2{bottom:1058.013000px;}
.y4{bottom:1082.780850px;}
.y3{bottom:1096.280850px;}
.he{height:32.935500px;}
.hc{height:35.328000px;}
.hd{height:36.567000px;}
.h4{height:37.536000px;}
.h2{height:42.792000px;}
.hb{height:43.872000px;}
.h3{height:46.614000px;}
.ha{height:50.485500px;}
.h11{height:53.922000px;}
.h9{height:55.663500px;}
.h8{height:60.841500px;}
.h10{height:61.546500px;}
.h6{height:67.560000px;}
.h7{height:76.116600px;}
.h5{height:103.560000px;}
.hf{height:114.433500px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.xd{left:85.039350px;}
.x2{left:93.883500px;}
.x10{left:102.047250px;}
.xf{left:106.299300px;}
.x1a{left:108.425250px;}
.x9{left:110.891250px;}
.x13{left:115.143300px;}
.x19{left:117.269250px;}
.xa{left:119.395200px;}
.x16{left:149.159100px;}
.xb{left:154.039800px;}
.x4{left:157.028700px;}
.xc{left:160.039800px;}
.x17{left:188.466600px;}
.x3{left:189.835500px;}
.x18{left:196.970550px;}
.x8{left:211.067700px;}
.x5{left:227.599050px;}
.x7{left:312.917250px;}
.x6{left:374.039400px;}
.x11{left:439.959600px;}
.x15{left:448.803750px;}
.x12{left:456.967500px;}
.x14{left:465.811650px;}
.xe{left:629.624850px;}
.x1{left:743.484750px;}
@media print{
.v1{vertical-align:-32.000000pt;}
.v3{vertical-align:-15.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.800000pt;}
.v4{vertical-align:56.842667pt;}
.ls4{letter-spacing:-2.666667pt;}
.ls37{letter-spacing:-0.884000pt;}
.ls2a{letter-spacing:-0.743600pt;}
.ls2c{letter-spacing:-0.520000pt;}
.ls38{letter-spacing:-0.507000pt;}
.ls2b{letter-spacing:-0.364000pt;}
.ls33{letter-spacing:-0.338000pt;}
.ls39{letter-spacing:-0.101400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000267pt;}
.ls2f{letter-spacing:0.000421pt;}
.ls66{letter-spacing:0.009600pt;}
.ls65{letter-spacing:0.010133pt;}
.ls64{letter-spacing:0.023467pt;}
.ls13{letter-spacing:0.052000pt;}
.ls58{letter-spacing:0.057333pt;}
.ls23{letter-spacing:0.062667pt;}
.ls5c{letter-spacing:0.114667pt;}
.ls24{letter-spacing:0.125333pt;}
.ls43{letter-spacing:0.156000pt;}
.ls61{letter-spacing:0.172000pt;}
.ls3a{letter-spacing:0.188000pt;}
.ls3f{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.229333pt;}
.ls52{letter-spacing:0.236600pt;}
.ls7{letter-spacing:0.250667pt;}
.lsc{letter-spacing:0.260000pt;}
.ls1{letter-spacing:0.286667pt;}
.ls68{letter-spacing:0.296000pt;}
.ls12{letter-spacing:0.312000pt;}
.ls4b{letter-spacing:0.313333pt;}
.ls2e{letter-spacing:0.376000pt;}
.ls1b{letter-spacing:0.416000pt;}
.ls35{letter-spacing:0.438667pt;}
.ls5a{letter-spacing:0.458667pt;}
.ls10{letter-spacing:0.468000pt;}
.ls5b{letter-spacing:0.473067pt;}
.ls55{letter-spacing:0.501333pt;}
.ls0{letter-spacing:0.516000pt;}
.lse{letter-spacing:0.520000pt;}
.ls14{letter-spacing:0.554933pt;}
.ls1c{letter-spacing:0.572000pt;}
.ls48{letter-spacing:0.611000pt;}
.ls16{letter-spacing:0.624000pt;}
.ls21{letter-spacing:0.626667pt;}
.ls1d{letter-spacing:0.633333pt;}
.ls9{letter-spacing:0.640800pt;}
.ls20{letter-spacing:0.689333pt;}
.ls4a{letter-spacing:0.709800pt;}
.lsd{letter-spacing:0.728000pt;}
.ls22{letter-spacing:0.752000pt;}
.ls5d{letter-spacing:0.756267pt;}
.lsf{letter-spacing:0.780000pt;}
.ls59{letter-spacing:0.802667pt;}
.ls34{letter-spacing:0.814667pt;}
.ls51{letter-spacing:0.832000pt;}
.lsb{letter-spacing:0.884000pt;}
.ls5e{letter-spacing:0.917333pt;}
.ls25{letter-spacing:0.936000pt;}
.ls27{letter-spacing:0.940000pt;}
.ls11{letter-spacing:0.974400pt;}
.ls60{letter-spacing:0.974667pt;}
.ls3d{letter-spacing:1.002667pt;}
.ls47{letter-spacing:1.040000pt;}
.ls56{letter-spacing:1.065333pt;}
.ls4d{letter-spacing:1.092000pt;}
.ls3e{letter-spacing:1.128000pt;}
.ls42{letter-spacing:1.144000pt;}
.ls41{letter-spacing:1.196000pt;}
.ls50{letter-spacing:1.248000pt;}
.ls19{letter-spacing:1.253333pt;}
.ls45{letter-spacing:1.300000pt;}
.ls53{letter-spacing:1.385800pt;}
.ls1e{letter-spacing:1.456000pt;}
.ls3c{letter-spacing:1.504000pt;}
.ls15{letter-spacing:1.612000pt;}
.ls46{letter-spacing:1.716000pt;}
.lsa{letter-spacing:1.768000pt;}
.ls49{letter-spacing:1.791400pt;}
.ls4f{letter-spacing:1.820000pt;}
.ls44{letter-spacing:1.872000pt;}
.ls62{letter-spacing:2.468267pt;}
.ls57{letter-spacing:2.756000pt;}
.ls4e{letter-spacing:2.912000pt;}
.ls67{letter-spacing:3.189333pt;}
.ls40{letter-spacing:3.484000pt;}
.ls63{letter-spacing:3.909333pt;}
.ls5f{letter-spacing:3.981867pt;}
.ls4c{letter-spacing:5.610667pt;}
.ls28{letter-spacing:6.078667pt;}
.ls26{letter-spacing:7.436800pt;}
.ls5{letter-spacing:9.472000pt;}
.ls36{letter-spacing:33.088000pt;}
.ls3b{letter-spacing:33.557193pt;}
.ls54{letter-spacing:33.557754pt;}
.ls2d{letter-spacing:47.000000pt;}
.ls31{letter-spacing:96.381333pt;}
.ls29{letter-spacing:111.672000pt;}
.ls30{letter-spacing:112.270596pt;}
.ls32{letter-spacing:112.298667pt;}
.ls1f{letter-spacing:291.906246pt;}
.ls1a{letter-spacing:291.906807pt;}
.ls18{letter-spacing:547.018667pt;}
.ls17{letter-spacing:637.019200pt;}
.ls6{letter-spacing:920.315200pt;}
.ws0{word-spacing:-17.333333pt;}
.wse{word-spacing:-16.920000pt;}
.ws23{word-spacing:-16.732000pt;}
.ws19{word-spacing:-16.606667pt;}
.ws14{word-spacing:-16.042667pt;}
.ws18{word-spacing:-15.917333pt;}
.ws20{word-spacing:-15.729333pt;}
.ws7{word-spacing:-15.666667pt;}
.ws12{word-spacing:-15.040000pt;}
.ws2{word-spacing:-14.849333pt;}
.ws25{word-spacing:-14.716000pt;}
.ws3{word-spacing:-14.620000pt;}
.ws1f{word-spacing:-14.612000pt;}
.ws4{word-spacing:-14.562667pt;}
.ws1{word-spacing:-14.333333pt;}
.wsa{word-spacing:-13.728000pt;}
.ws24{word-spacing:-13.624000pt;}
.ws10{word-spacing:-13.572000pt;}
.ws1e{word-spacing:-13.520000pt;}
.wsf{word-spacing:-13.312000pt;}
.wsb{word-spacing:-13.260000pt;}
.ws1c{word-spacing:-13.156000pt;}
.wsd{word-spacing:-13.000000pt;}
.ws15{word-spacing:-12.116000pt;}
.ws1a{word-spacing:-10.794333pt;}
.ws1b{word-spacing:-10.241400pt;}
.ws9{word-spacing:-10.183333pt;}
.ws22{word-spacing:-9.835800pt;}
.ws5{word-spacing:-9.472000pt;}
.ws1d{word-spacing:-9.159800pt;}
.ws21{word-spacing:-8.686600pt;}
.wsc{word-spacing:-8.450000pt;}
.ws17{word-spacing:-8.348600pt;}
.ws13{word-spacing:-8.112000pt;}
.ws16{word-spacing:-7.943000pt;}
.ws11{word-spacing:-7.706400pt;}
.ws8{word-spacing:-0.045333pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-111.734667pt;}
._2d{margin-left:-96.435368pt;}
._32{margin-left:-47.311789pt;}
._37{margin-left:-30.751649pt;}
._d{margin-left:-21.333333pt;}
._38{margin-left:-16.606667pt;}
._1b{margin-left:-15.666667pt;}
._19{margin-left:-14.090667pt;}
._39{margin-left:-12.940533pt;}
._b{margin-left:-9.496533pt;}
._1a{margin-left:-6.330933pt;}
._3{margin-left:-3.946667pt;}
._2{margin-left:-2.666667pt;}
._4{margin-left:-1.733333pt;}
._9{width:1.142133pt;}
._5{width:2.690400pt;}
._a{width:3.669333pt;}
._7{width:4.586667pt;}
._8{width:5.676000pt;}
._6{width:7.166667pt;}
._f{width:8.500000pt;}
._3b{width:9.908000pt;}
._c{width:11.660000pt;}
._1{width:12.602667pt;}
._e{width:13.642667pt;}
._2c{width:15.917333pt;}
._18{width:16.874105pt;}
._20{width:20.429333pt;}
._12{width:22.890105pt;}
._2a{width:33.035088pt;}
._23{width:34.033123pt;}
._29{width:38.544000pt;}
._11{width:40.232000pt;}
._26{width:46.167719pt;}
._25{width:47.416140pt;}
._3a{width:51.019175pt;}
._33{width:57.788421pt;}
._16{width:63.920000pt;}
._21{width:65.988000pt;}
._2e{width:67.178667pt;}
._34{width:68.173053pt;}
._1d{width:76.394737pt;}
._2b{width:77.642877pt;}
._35{width:78.638526pt;}
._28{width:81.846737pt;}
._24{width:85.540000pt;}
._1c{width:86.860070pt;}
._15{width:111.672000pt;}
._22{width:123.162667pt;}
._36{width:127.526667pt;}
._31{width:158.099930pt;}
._2f{width:186.160000pt;}
._17{width:189.957333pt;}
._30{width:191.248912pt;}
._27{width:199.952561pt;}
._14{width:261.065333pt;}
._13{width:297.917333pt;}
._1f{width:421.290526pt;}
._10{width:1275.979200pt;}
._0{width:1755.714667pt;}
.fsc{font-size:33.800000pt;}
.fsb{font-size:40.733333pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsa{font-size:46.666667pt;}
.fs7{font-size:52.000000pt;}
.fsd{font-size:52.800000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:57.333333pt;}
.fs9{font-size:61.333333pt;}
.fs5{font-size:62.666667pt;}
.fs3{font-size:69.333333pt;}
.fs4{font-size:78.400000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.950533pt;}
.yb9{bottom:68.246267pt;}
.y7e{bottom:68.246400pt;}
.y2c{bottom:68.246533pt;}
.y130{bottom:68.246667pt;}
.y1b8{bottom:68.247333pt;}
.ye2{bottom:117.165067pt;}
.y2a{bottom:117.165333pt;}
.y159{bottom:117.165467pt;}
.y1b6{bottom:117.523733pt;}
.y115{bottom:117.784933pt;}
.y29{bottom:128.537333pt;}
.y12f{bottom:131.375733pt;}
.yf9{bottom:131.375867pt;}
.y58{bottom:131.376000pt;}
.y158{bottom:131.376133pt;}
.y1b5{bottom:133.165067pt;}
.y114{bottom:134.842267pt;}
.y12c{bottom:135.275733pt;}
.ye1{bottom:135.275867pt;}
.yb7{bottom:135.276000pt;}
.y28{bottom:145.578667pt;}
.yf8{bottom:145.586400pt;}
.y57{bottom:145.586667pt;}
.y157{bottom:145.586800pt;}
.y1b4{bottom:148.806400pt;}
.y113{bottom:151.899733pt;}
.yf7{bottom:159.797067pt;}
.y56{bottom:159.797333pt;}
.y15b{bottom:159.797467pt;}
.y27{bottom:162.619867pt;}
.yfc{bottom:163.697067pt;}
.y7c{bottom:163.697333pt;}
.y156{bottom:163.697467pt;}
.y1b3{bottom:164.447733pt;}
.y112{bottom:168.957067pt;}
.ye0{bottom:172.884933pt;}
.yf6{bottom:174.007733pt;}
.y7b{bottom:174.008000pt;}
.y155{bottom:174.008133pt;}
.yb6{bottom:177.488000pt;}
.y55{bottom:177.908000pt;}
.y175{bottom:177.908133pt;}
.y26{bottom:179.661200pt;}
.y1b2{bottom:180.089067pt;}
.y111{bottom:186.014400pt;}
.yf5{bottom:188.218400pt;}
.y54{bottom:188.218667pt;}
.y154{bottom:188.218800pt;}
.ydf{bottom:189.942267pt;}
.y25{bottom:191.033200pt;}
.yb5{bottom:194.545333pt;}
.y1b1{bottom:195.730400pt;}
.y12b{bottom:202.429067pt;}
.yfb{bottom:202.429200pt;}
.y53{bottom:202.429333pt;}
.y153{bottom:202.429467pt;}
.y110{bottom:203.071733pt;}
.yf4{bottom:206.329200pt;}
.y174{bottom:206.329467pt;}
.yde{bottom:206.999600pt;}
.y24{bottom:208.074533pt;}
.y1b0{bottom:211.371733pt;}
.yb4{bottom:211.602667pt;}
.y12a{bottom:216.639733pt;}
.y52{bottom:216.640000pt;}
.y15a{bottom:216.640133pt;}
.y23{bottom:219.446533pt;}
.y10f{bottom:220.129067pt;}
.yfa{bottom:220.539733pt;}
.y152{bottom:220.540133pt;}
.ydd{bottom:224.056933pt;}
.y1af{bottom:227.013067pt;}
.yb3{bottom:228.659867pt;}
.y129{bottom:230.850400pt;}
.y51{bottom:230.850667pt;}
.y5a{bottom:234.750667pt;}
.y9e{bottom:235.342133pt;}
.y10e{bottom:237.186400pt;}
.ydc{bottom:241.114267pt;}
.y1ae{bottom:242.654400pt;}
.y128{bottom:245.061067pt;}
.y50{bottom:245.061333pt;}
.y173{bottom:245.713333pt;}
.yb2{bottom:245.717200pt;}
.y9d{bottom:252.399467pt;}
.y22{bottom:253.228533pt;}
.y10d{bottom:254.243733pt;}
.y186{bottom:254.252267pt;}
.y1ad{bottom:258.295733pt;}
.y127{bottom:259.271733pt;}
.y4f{bottom:259.272000pt;}
.yf3{bottom:262.770267pt;}
.y172{bottom:262.770667pt;}
.yb1{bottom:262.774533pt;}
.ydb{bottom:266.698267pt;}
.y21{bottom:267.439200pt;}
.y151{bottom:268.501733pt;}
.y9c{bottom:269.456800pt;}
.y185{bottom:271.309600pt;}
.y126{bottom:273.482400pt;}
.y4e{bottom:273.482667pt;}
.y1ac{bottom:273.937067pt;}
.yf2{bottom:279.827600pt;}
.y171{bottom:279.828000pt;}
.yb0{bottom:279.831867pt;}
.y7a{bottom:279.840133pt;}
.y20{bottom:281.649867pt;}
.yda{bottom:283.755600pt;}
.y150{bottom:285.559067pt;}
.y9b{bottom:286.514133pt;}
.y125{bottom:287.693067pt;}
.y4d{bottom:287.693333pt;}
.y184{bottom:288.366933pt;}
.y1ab{bottom:289.578400pt;}
.y1f{bottom:295.860533pt;}
.yf1{bottom:296.884933pt;}
.y170{bottom:296.885333pt;}
.y79{bottom:296.897467pt;}
.yd9{bottom:300.812933pt;}
.y124{bottom:301.903733pt;}
.y59{bottom:301.904000pt;}
.y1aa{bottom:305.219733pt;}
.yaf{bottom:305.415867pt;}
.y183{bottom:305.424267pt;}
.y9a{bottom:305.461200pt;}
.y4c{bottom:305.804000pt;}
.y14f{bottom:311.143067pt;}
.y10c{bottom:313.942267pt;}
.yf0{bottom:313.942400pt;}
.y16f{bottom:313.942667pt;}
.y78{bottom:313.954800pt;}
.y12e{bottom:316.114400pt;}
.yd8{bottom:317.870267pt;}
.y123{bottom:320.014400pt;}
.y1a9{bottom:320.861067pt;}
.yae{bottom:322.473200pt;}
.y182{bottom:322.481600pt;}
.y99{bottom:322.518533pt;}
.y1dd{bottom:323.157733pt;}
.y14e{bottom:328.200400pt;}
.y122{bottom:330.325067pt;}
.y10b{bottom:330.999600pt;}
.yef{bottom:330.999733pt;}
.y16e{bottom:331.000000pt;}
.y77{bottom:331.012133pt;}
.yd7{bottom:334.927600pt;}
.y1a8{bottom:336.502400pt;}
.y1e{bottom:336.837467pt;}
.y1dc{bottom:338.799067pt;}
.yad{bottom:339.530533pt;}
.y181{bottom:339.538933pt;}
.y98{bottom:339.575867pt;}
.y121{bottom:344.535733pt;}
.y14d{bottom:345.257600pt;}
.y10a{bottom:348.056933pt;}
.yee{bottom:348.057067pt;}
.y16d{bottom:348.057333pt;}
.y76{bottom:348.069467pt;}
.yd6{bottom:351.984933pt;}
.y1a7{bottom:352.143733pt;}
.y1db{bottom:354.440400pt;}
.y4b{bottom:356.587867pt;}
.y180{bottom:356.596267pt;}
.y97{bottom:356.633200pt;}
.y120{bottom:358.746400pt;}
.y1d{bottom:360.298667pt;}
.y14c{bottom:362.315067pt;}
.y109{bottom:365.114267pt;}
.yed{bottom:365.114400pt;}
.y16c{bottom:365.114667pt;}
.y75{bottom:365.126800pt;}
.y1a6{bottom:367.785067pt;}
.yd5{bottom:369.042267pt;}
.y1da{bottom:370.081733pt;}
.y11f{bottom:372.957067pt;}
.y4a{bottom:373.645200pt;}
.y17f{bottom:373.653600pt;}
.y96{bottom:373.690533pt;}
.y1c{bottom:375.940000pt;}
.y14b{bottom:379.372267pt;}
.y108{bottom:382.171600pt;}
.yec{bottom:382.171733pt;}
.y16b{bottom:382.172000pt;}
.y74{bottom:382.184133pt;}
.y1a5{bottom:383.426400pt;}
.y1d9{bottom:385.723067pt;}
.yd4{bottom:386.099600pt;}
.y11e{bottom:387.167867pt;}
.y49{bottom:390.702533pt;}
.y17e{bottom:390.710933pt;}
.y95{bottom:390.747867pt;}
.y1b{bottom:391.581333pt;}
.y14a{bottom:396.429733pt;}
.y1a4{bottom:399.067733pt;}
.y107{bottom:399.228933pt;}
.yeb{bottom:399.229067pt;}
.y16a{bottom:399.229333pt;}
.y73{bottom:399.241467pt;}
.y1d8{bottom:401.364400pt;}
.y12d{bottom:401.378400pt;}
.yd3{bottom:403.156933pt;}
.y11d{bottom:405.278400pt;}
.y1a{bottom:407.222667pt;}
.y48{bottom:407.759867pt;}
.y17d{bottom:407.768267pt;}
.y94{bottom:407.805200pt;}
.y149{bottom:413.487067pt;}
.y1a3{bottom:414.709067pt;}
.y106{bottom:416.286267pt;}
.yea{bottom:416.286400pt;}
.y169{bottom:416.286667pt;}
.y72{bottom:416.298800pt;}
.y1d7{bottom:417.005733pt;}
.yd2{bottom:420.214267pt;}
.y19{bottom:422.864000pt;}
.y47{bottom:424.817200pt;}
.y17c{bottom:424.825600pt;}
.y93{bottom:424.862533pt;}
.y1a2{bottom:430.350400pt;}
.y148{bottom:430.544400pt;}
.y1d6{bottom:432.647067pt;}
.y105{bottom:433.343600pt;}
.ye9{bottom:433.343733pt;}
.y168{bottom:433.344000pt;}
.y18{bottom:438.505333pt;}
.y46{bottom:441.874533pt;}
.y71{bottom:441.882800pt;}
.y17b{bottom:441.882933pt;}
.y92{bottom:441.919867pt;}
.y1a1{bottom:445.991733pt;}
.y147{bottom:447.601733pt;}
.y1d5{bottom:448.288400pt;}
.y104{bottom:450.400933pt;}
.ye8{bottom:450.401067pt;}
.y167{bottom:450.401333pt;}
.yd1{bottom:452.389733pt;}
.y17{bottom:454.146667pt;}
.y11c{bottom:458.927600pt;}
.y45{bottom:458.931867pt;}
.y70{bottom:458.940133pt;}
.y17a{bottom:458.940267pt;}
.y91{bottom:458.977200pt;}
.y1a0{bottom:461.633067pt;}
.y1d4{bottom:463.929733pt;}
.y146{bottom:464.659067pt;}
.ye7{bottom:467.458267pt;}
.y166{bottom:467.458667pt;}
.y16{bottom:469.788000pt;}
.y11b{bottom:475.984933pt;}
.y44{bottom:475.989200pt;}
.y6f{bottom:475.997467pt;}
.y179{bottom:475.997600pt;}
.y90{bottom:476.034533pt;}
.y19f{bottom:477.274400pt;}
.y1d3{bottom:479.571067pt;}
.y145{bottom:481.716400pt;}
.ye6{bottom:484.515600pt;}
.y165{bottom:484.516000pt;}
.y15{bottom:485.429333pt;}
.y19e{bottom:492.915733pt;}
.y11a{bottom:493.042267pt;}
.y43{bottom:493.046533pt;}
.y6e{bottom:493.054800pt;}
.y178{bottom:493.054933pt;}
.y8f{bottom:494.981600pt;}
.y1d2{bottom:495.212400pt;}
.y144{bottom:498.773733pt;}
.yd0{bottom:501.572933pt;}
.y164{bottom:501.573333pt;}
.y19d{bottom:508.557067pt;}
.y119{bottom:510.099600pt;}
.y42{bottom:510.103867pt;}
.y6d{bottom:510.112133pt;}
.y177{bottom:510.112267pt;}
.y1d1{bottom:510.853733pt;}
.y8e{bottom:512.038933pt;}
.y143{bottom:515.831067pt;}
.y14{bottom:516.710267pt;}
.ycf{bottom:518.630267pt;}
.y163{bottom:518.630667pt;}
.y19c{bottom:524.198400pt;}
.y1d0{bottom:526.495067pt;}
.y118{bottom:527.156933pt;}
.y41{bottom:527.161067pt;}
.yac{bottom:527.161200pt;}
.y6c{bottom:527.169467pt;}
.y8d{bottom:529.096267pt;}
.y142{bottom:532.888400pt;}
.yce{bottom:535.687600pt;}
.y19b{bottom:539.839733pt;}
.y13{bottom:540.171467pt;}
.y1cf{bottom:542.136400pt;}
.y117{bottom:544.214267pt;}
.y162{bottom:544.214533pt;}
.y40{bottom:544.218400pt;}
.yab{bottom:544.218533pt;}
.y176{bottom:544.222800pt;}
.y6b{bottom:544.226800pt;}
.y8c{bottom:546.153600pt;}
.y141{bottom:549.945733pt;}
.ycd{bottom:552.744933pt;}
.y19a{bottom:555.481067pt;}
.y12{bottom:555.812800pt;}
.y1ce{bottom:557.777733pt;}
.y116{bottom:561.271600pt;}
.y161{bottom:561.271867pt;}
.y3f{bottom:561.275733pt;}
.yaa{bottom:561.275867pt;}
.y8b{bottom:563.211067pt;}
.y140{bottom:567.003067pt;}
.ycc{bottom:569.802267pt;}
.y199{bottom:571.122400pt;}
.y11{bottom:571.454133pt;}
.y1cd{bottom:573.419067pt;}
.ye5{bottom:578.328933pt;}
.y160{bottom:578.329200pt;}
.y3e{bottom:578.333067pt;}
.ya9{bottom:578.333200pt;}
.y6a{bottom:578.337333pt;}
.y8a{bottom:580.268267pt;}
.y198{bottom:586.763733pt;}
.ycb{bottom:586.859600pt;}
.y10{bottom:587.095467pt;}
.y1cc{bottom:589.060400pt;}
.ye4{bottom:595.386267pt;}
.y15f{bottom:595.386533pt;}
.y3d{bottom:595.390400pt;}
.ya8{bottom:595.390533pt;}
.y89{bottom:597.325733pt;}
.y197{bottom:602.405067pt;}
.yf{bottom:602.736800pt;}
.yca{bottom:603.916933pt;}
.y1cb{bottom:604.701733pt;}
.y13f{bottom:604.893067pt;}
.ye3{bottom:612.443600pt;}
.y15e{bottom:612.443867pt;}
.y3c{bottom:612.447733pt;}
.ya7{bottom:612.447867pt;}
.y88{bottom:614.382933pt;}
.y196{bottom:618.046400pt;}
.ye{bottom:618.378133pt;}
.y1ca{bottom:620.343067pt;}
.y103{bottom:620.974267pt;}
.yc9{bottom:629.500933pt;}
.y69{bottom:629.501067pt;}
.y15d{bottom:629.501200pt;}
.y3b{bottom:629.505067pt;}
.ya6{bottom:629.505200pt;}
.y87{bottom:631.440400pt;}
.y195{bottom:633.687733pt;}
.yd{bottom:634.019467pt;}
.y1c9{bottom:635.984400pt;}
.y102{bottom:638.031600pt;}
.yc8{bottom:646.558267pt;}
.y68{bottom:646.558400pt;}
.y15c{bottom:646.558533pt;}
.y3a{bottom:646.562400pt;}
.ya5{bottom:646.562533pt;}
.y86{bottom:648.497600pt;}
.y194{bottom:649.329067pt;}
.yc{bottom:649.660800pt;}
.y1c8{bottom:651.625733pt;}
.y101{bottom:655.088933pt;}
.yc7{bottom:663.615600pt;}
.y67{bottom:663.615867pt;}
.y13e{bottom:663.616000pt;}
.y39{bottom:663.619733pt;}
.ya4{bottom:663.619867pt;}
.y193{bottom:664.970400pt;}
.yb{bottom:665.302133pt;}
.y85{bottom:665.555067pt;}
.y1c7{bottom:667.267067pt;}
.y100{bottom:672.146267pt;}
.y192{bottom:680.611733pt;}
.yc6{bottom:680.672933pt;}
.y66{bottom:680.673067pt;}
.y13d{bottom:680.673200pt;}
.y38{bottom:680.677200pt;}
.y84{bottom:682.612267pt;}
.y1c6{bottom:682.908400pt;}
.yff{bottom:689.203600pt;}
.y191{bottom:696.253067pt;}
.yc5{bottom:697.730267pt;}
.y65{bottom:697.730533pt;}
.y13c{bottom:697.730667pt;}
.y37{bottom:697.734400pt;}
.y1c5{bottom:698.549867pt;}
.y83{bottom:699.669733pt;}
.yfe{bottom:706.260933pt;}
.ya3{bottom:706.261200pt;}
.y190{bottom:711.894400pt;}
.y1c4{bottom:714.191067pt;}
.yc4{bottom:714.787600pt;}
.y64{bottom:714.787733pt;}
.y13b{bottom:714.787867pt;}
.y36{bottom:714.791867pt;}
.y82{bottom:716.726933pt;}
.ya{bottom:723.039867pt;}
.yfd{bottom:723.318400pt;}
.ya2{bottom:723.318533pt;}
.y18f{bottom:727.535867pt;}
.y1c3{bottom:729.832400pt;}
.yc3{bottom:731.844933pt;}
.y63{bottom:731.845200pt;}
.y13a{bottom:731.845333pt;}
.y35{bottom:731.849067pt;}
.y81{bottom:733.784400pt;}
.y9{bottom:740.097200pt;}
.ya1{bottom:740.375867pt;}
.y18e{bottom:743.177200pt;}
.y1c2{bottom:745.473733pt;}
.yc2{bottom:748.902267pt;}
.y62{bottom:748.902400pt;}
.y139{bottom:748.902533pt;}
.y34{bottom:748.906533pt;}
.y80{bottom:750.841600pt;}
.ya0{bottom:757.433200pt;}
.y18d{bottom:758.818400pt;}
.y1c1{bottom:761.115067pt;}
.yc1{bottom:765.959600pt;}
.y61{bottom:765.959733pt;}
.y138{bottom:765.960000pt;}
.y33{bottom:765.963733pt;}
.y7f{bottom:767.899067pt;}
.y18c{bottom:774.459733pt;}
.y9f{bottom:774.490533pt;}
.y8{bottom:776.052133pt;}
.y1c0{bottom:776.756400pt;}
.yc0{bottom:783.016933pt;}
.y60{bottom:783.017067pt;}
.y137{bottom:783.017200pt;}
.y32{bottom:783.021200pt;}
.y18b{bottom:790.101200pt;}
.y1bf{bottom:792.397733pt;}
.y7{bottom:800.052133pt;}
.ybf{bottom:800.074267pt;}
.y5f{bottom:800.074400pt;}
.y136{bottom:800.074667pt;}
.y31{bottom:800.078400pt;}
.y18a{bottom:805.742533pt;}
.y1be{bottom:808.039067pt;}
.ybe{bottom:817.131600pt;}
.y5e{bottom:817.131733pt;}
.y135{bottom:817.131867pt;}
.y30{bottom:817.135867pt;}
.y189{bottom:821.383867pt;}
.y1bd{bottom:823.680400pt;}
.ybd{bottom:834.188933pt;}
.y5d{bottom:834.189067pt;}
.y134{bottom:834.189200pt;}
.y2f{bottom:834.193200pt;}
.y188{bottom:837.025200pt;}
.y1bc{bottom:839.321733pt;}
.ybc{bottom:851.246267pt;}
.y5c{bottom:851.246400pt;}
.y133{bottom:851.246533pt;}
.y2e{bottom:851.250533pt;}
.y187{bottom:852.666533pt;}
.y1bb{bottom:854.963067pt;}
.y6{bottom:859.060000pt;}
.ybb{bottom:868.303600pt;}
.y5b{bottom:868.303733pt;}
.y132{bottom:868.303867pt;}
.y1ba{bottom:870.604400pt;}
.y5{bottom:878.068000pt;}
.yba{bottom:885.360800pt;}
.y2d{bottom:885.361067pt;}
.y131{bottom:885.361200pt;}
.y1b9{bottom:886.245733pt;}
.yb8{bottom:914.625867pt;}
.y7d{bottom:914.626000pt;}
.y2b{bottom:914.626133pt;}
.y1b7{bottom:914.626800pt;}
.y2{bottom:940.456000pt;}
.y4{bottom:962.471867pt;}
.y3{bottom:974.471867pt;}
.he{height:29.276000pt;}
.hc{height:31.402667pt;}
.hd{height:32.504000pt;}
.h4{height:33.365333pt;}
.h2{height:38.037333pt;}
.hb{height:38.997333pt;}
.h3{height:41.434667pt;}
.ha{height:44.876000pt;}
.h11{height:47.930667pt;}
.h9{height:49.478667pt;}
.h8{height:54.081333pt;}
.h10{height:54.708000pt;}
.h6{height:60.053333pt;}
.h7{height:67.659200pt;}
.h5{height:92.053333pt;}
.hf{height:101.718667pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.xd{left:75.590533pt;}
.x2{left:83.452000pt;}
.x10{left:90.708667pt;}
.xf{left:94.488267pt;}
.x1a{left:96.378000pt;}
.x9{left:98.570000pt;}
.x13{left:102.349600pt;}
.x19{left:104.239333pt;}
.xa{left:106.129067pt;}
.x16{left:132.585867pt;}
.xb{left:136.924267pt;}
.x4{left:139.581067pt;}
.xc{left:142.257600pt;}
.x17{left:167.525867pt;}
.x3{left:168.742667pt;}
.x18{left:175.084933pt;}
.x8{left:187.615733pt;}
.x5{left:202.310267pt;}
.x7{left:278.148667pt;}
.x6{left:332.479467pt;}
.x11{left:391.075200pt;}
.x15{left:398.936667pt;}
.x12{left:406.193333pt;}
.x14{left:414.054800pt;}
.xe{left:559.666533pt;}
.x1{left:660.875333pt;}
}




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