
    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_cd458cb2400f939e644abd68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5089f8443f161b36d327274e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034180;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_27943128e6088ec5177132e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_10f2637995f48a63033facab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9d0febae7bd11d873e042ade.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_568e8cd3de146dba76748a21.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.530273;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_29e9db24cf149f253bf1ebd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.034180;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_f0ca9f3760831a99ad34f8ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_b122b292828cb41b43906166.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927734;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);}
.v12{vertical-align:-38.160000px;}
.v5{vertical-align:-36.720000px;}
.v7{vertical-align:-30.216000px;}
.v16{vertical-align:-28.800000px;}
.v21{vertical-align:-26.640000px;}
.v20{vertical-align:-23.760000px;}
.v3{vertical-align:-22.320000px;}
.v9{vertical-align:-17.280000px;}
.v2{vertical-align:-15.120000px;}
.v11{vertical-align:-11.520000px;}
.v1f{vertical-align:-10.080000px;}
.v1a{vertical-align:-8.640000px;}
.v15{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:2.880000px;}
.v23{vertical-align:12.960000px;}
.v8{vertical-align:14.376000px;}
.v6{vertical-align:15.840000px;}
.v14{vertical-align:17.280000px;}
.v1d{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.v24{vertical-align:31.680000px;}
.vf{vertical-align:33.120000px;}
.v22{vertical-align:34.560000px;}
.v1b{vertical-align:36.000000px;}
.vd{vertical-align:38.160000px;}
.v1c{vertical-align:42.480000px;}
.v19{vertical-align:45.360000px;}
.va{vertical-align:46.800000px;}
.v18{vertical-align:48.240000px;}
.ve{vertical-align:49.680000px;}
.vb{vertical-align:54.720000px;}
.v17{vertical-align:57.600000px;}
.v4{vertical-align:59.040000px;}
.v10{vertical-align:61.200000px;}
.vc{vertical-align:62.640000px;}
.v1e{vertical-align:92.280000px;}
.lsa{letter-spacing:-0.864000px;}
.ls4d{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.504000px;}
.ls49{letter-spacing:-0.321000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.210000px;}
.ls1e{letter-spacing:-0.161400px;}
.ls15{letter-spacing:-0.145200px;}
.ls40{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.005040px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.094800px;}
.ls4b{letter-spacing:0.146880px;}
.ls9{letter-spacing:0.166800px;}
.ls5{letter-spacing:0.168480px;}
.lsc{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.180480px;}
.ls34{letter-spacing:0.201600px;}
.lsb{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.217200px;}
.ls27{letter-spacing:0.233280px;}
.ls2b{letter-spacing:0.250800px;}
.ls3{letter-spacing:0.259920px;}
.ls2e{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.292320px;}
.ls20{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.574800px;}
.ls35{letter-spacing:1.620000px;}
.ls47{letter-spacing:1.728000px;}
.lsf{letter-spacing:1.800000px;}
.ls33{letter-spacing:2.340000px;}
.ls28{letter-spacing:2.460000px;}
.lse{letter-spacing:2.520000px;}
.ls39{letter-spacing:3.581280px;}
.ls37{letter-spacing:3.816000px;}
.ls45{letter-spacing:3.888000px;}
.ls41{letter-spacing:4.320000px;}
.ls12{letter-spacing:4.376880px;}
.ls44{letter-spacing:4.496880px;}
.ls2f{letter-spacing:4.556880px;}
.ls2a{letter-spacing:5.096880px;}
.lsd{letter-spacing:6.120000px;}
.ls31{letter-spacing:7.920000px;}
.ls46{letter-spacing:15.120000px;}
.ls3c{letter-spacing:15.480000px;}
.ls4a{letter-spacing:15.840000px;}
.ls3b{letter-spacing:16.176000px;}
.ls42{letter-spacing:16.200000px;}
.ls6{letter-spacing:18.720000px;}
.ls43{letter-spacing:19.440000px;}
.ls23{letter-spacing:19.496880px;}
.ls25{letter-spacing:19.656000px;}
.ls2c{letter-spacing:19.800000px;}
.ls1b{letter-spacing:20.216880px;}
.ls3d{letter-spacing:20.232000px;}
.ls19{letter-spacing:20.376000px;}
.ls21{letter-spacing:22.961520px;}
.ls18{letter-spacing:23.549760px;}
.ls22{letter-spacing:23.816880px;}
.ls1a{letter-spacing:24.269760px;}
.ls17{letter-spacing:24.536880px;}
.ls30{letter-spacing:24.840000px;}
.ls1f{letter-spacing:25.380000px;}
.ls48{letter-spacing:26.136000px;}
.ls24{letter-spacing:40.302720px;}
.ls7{letter-spacing:46.062720px;}
.ls36{letter-spacing:80.913600px;}
.ls29{letter-spacing:89.280000px;}
.ls32{letter-spacing:91.195920px;}
.ls38{letter-spacing:102.492000px;}
.ls26{letter-spacing:111.072000px;}
.ls3f{letter-spacing:182.880000px;}
.ls2d{letter-spacing:340.896000px;}
.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;}
}
.ws1b{word-spacing:-19.690800px;}
.ws6{word-spacing:-19.606800px;}
.ws1f{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.ws20{word-spacing:-17.856000px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.453200px;}
.ws23{word-spacing:-16.128000px;}
.ws18{word-spacing:-16.056000px;}
.ws11{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.624000px;}
.wsa{word-spacing:-15.157200px;}
.ws2{word-spacing:-15.034800px;}
.ws3{word-spacing:-14.992560px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.934960px;}
.ws12{word-spacing:-11.246400px;}
.ws13{word-spacing:-11.036400px;}
.ws10{word-spacing:-11.014800px;}
.ws2c{word-spacing:-10.925400px;}
.wsf{word-spacing:-10.440000px;}
.wse{word-spacing:-10.294800px;}
.ws9{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.187200px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:8.904960px;}
.ws27{word-spacing:9.023040px;}
.ws2a{word-spacing:9.201600px;}
.ws25{word-spacing:9.321600px;}
.ws29{word-spacing:9.381600px;}
.ws2b{word-spacing:10.010160px;}
.ws14{word-spacing:10.097760px;}
.ws28{word-spacing:10.130160px;}
.ws15{word-spacing:10.817760px;}
.ws1c{word-spacing:12.546000px;}
.ws19{word-spacing:12.584160px;}
.ws2f{word-spacing:12.890160px;}
.ws2e{word-spacing:13.101840px;}
.ws26{word-spacing:13.157280px;}
.ws1a{word-spacing:13.304160px;}
.ws24{word-spacing:13.521600px;}
.ws2d{word-spacing:13.610160px;}
.ws1e{word-spacing:13.944960px;}
.ws22{word-spacing:74.355120px;}
.ws21{word-spacing:142.755120px;}
._21{margin-left:-27.876000px;}
._15{margin-left:-24.756000px;}
._16{margin-left:-23.575200px;}
._22{margin-left:-15.576000px;}
._25{margin-left:-14.547120px;}
._1b{margin-left:-11.402640px;}
._13{margin-left:-10.140720px;}
._24{margin-left:-9.126240px;}
._1c{margin-left:-8.052000px;}
._1a{margin-left:-6.961680px;}
._1f{margin-left:-5.878320px;}
._f{margin-left:-3.960000px;}
._e{margin-left:-2.448000px;}
._1{margin-left:-1.296000px;}
._0{width:1.195200px;}
._d{width:3.096000px;}
._9{width:4.482000px;}
._8{width:6.095520px;}
._7{width:7.171200px;}
._14{width:8.202000px;}
._2{width:9.262800px;}
._3{width:10.936080px;}
._4{width:11.948880px;}
._6{width:13.804560px;}
._12{width:15.233760px;}
._5{width:16.374240px;}
._b{width:17.828640px;}
._a{width:18.991200px;}
._19{width:20.232000px;}
._c{width:22.104000px;}
._20{width:23.224800px;}
._11{width:25.200000px;}
._10{width:26.496000px;}
._1e{width:27.648000px;}
._18{width:31.348800px;}
._17{width:32.400000px;}
._27{width:34.632000px;}
._23{width:35.712000px;}
._26{width:37.200000px;}
._2a{width:38.949120px;}
._2b{width:40.374720px;}
._2f{width:42.975360px;}
._2e{width:43.983360px;}
._1d{width:47.644800px;}
._2d{width:60.626880px;}
._29{width:66.902400px;}
._28{width:67.933440px;}
._2c{width:75.646080px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.990000px;}
.y7b{bottom:4.680000px;}
.y57{bottom:4.860000px;}
.y23{bottom:12.270000px;}
.y26{bottom:20.910000px;}
.y25{bottom:38.550000px;}
.y28{bottom:50.970000px;}
.y2c{bottom:54.900000px;}
.y24{bottom:58.710000px;}
.y5{bottom:66.525004px;}
.y55{bottom:67.680000px;}
.y2b{bottom:71.676000px;}
.y79{bottom:72.396000px;}
.y2a{bottom:84.636000px;}
.y4{bottom:97.125005px;}
.yd3{bottom:133.956000px;}
.yf8{bottom:135.036000px;}
.y130{bottom:136.296000px;}
.y21{bottom:139.264499px;}
.y50{bottom:140.436000px;}
.y1e1{bottom:141.696000px;}
.y1b3{bottom:144.576000px;}
.y8a{bottom:151.950000px;}
.y13d{bottom:154.830000px;}
.y16d{bottom:156.450000px;}
.y77{bottom:156.630000px;}
.y18c{bottom:158.250000px;}
.y188{bottom:159.690000px;}
.y1e0{bottom:160.230000px;}
.y1b2{bottom:163.110000px;}
.yd2{bottom:164.910000px;}
.yf7{bottom:165.450000px;}
.y4f{bottom:166.170000px;}
.y12f{bottom:166.530000px;}
.yb4{bottom:167.070000px;}
.ya5{bottom:169.950000px;}
.y110{bottom:173.730000px;}
.y1b1{bottom:181.650000px;}
.y4e{bottom:183.090000px;}
.y1df{bottom:183.270000px;}
.y89{bottom:185.250000px;}
.y76{bottom:186.870000px;}
.y16c{bottom:187.230000px;}
.y18b{bottom:188.670000px;}
.y187{bottom:190.110000px;}
.yf6{bottom:195.690000px;}
.y18{bottom:196.933500px;}
.y12e{bottom:196.950000px;}
.yd1{bottom:197.310000px;}
.yb3{bottom:197.490000px;}
.y1de{bottom:201.810000px;}
.y10f{bottom:204.150000px;}
.y1b0{bottom:204.690000px;}
.ya4{bottom:205.050000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4d{bottom:212.790000px;}
.y13c{bottom:215.670000px;}
.y75{bottom:217.290000px;}
.y88{bottom:217.470000px;}
.y16b{bottom:219.090000px;}
.y1dd{bottom:220.530000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yb2{bottom:223.230000px;}
.yf5{bottom:226.110000px;}
.y4c{bottom:226.650000px;}
.y12d{bottom:227.370000px;}
.yd0{bottom:229.170000px;}
.y18a{bottom:229.350000px;}
.y186{bottom:230.790000px;}
.y10e{bottom:234.390000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ya3{bottom:237.090000px;}
.y1af{bottom:241.770000px;}
.y1dc{bottom:243.570000px;}
.y13b{bottom:246.090000px;}
.y74{bottom:247.710000px;}
.y151{bottom:248.610000px;}
.y87{bottom:252.390000px;}
.yf4{bottom:256.530000px;}
.y12c{bottom:257.790000px;}
.ycf{bottom:259.410000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y4b{bottom:260.130000px;}
.y1db{bottom:262.110000px;}
.y10d{bottom:264.810000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya2{bottom:272.730000px;}
.y13a{bottom:276.330000px;}
.y73{bottom:278.130000px;}
.y150{bottom:278.850000px;}
.y185{bottom:280.470000px;}
.y1ae{bottom:283.530000px;}
.y86{bottom:284.070000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1da{bottom:285.150000px;}
.y16a{bottom:285.870000px;}
.yf3{bottom:286.950000px;}
.y12b{bottom:288.570000px;}
.yce{bottom:289.830000px;}
.y4a{bottom:290.370000px;}
.y10c{bottom:295.230000px;}
.y169{bottom:297.210000px;}
.y1ad{bottom:302.070000px;}
.y1d9{bottom:303.690000px;}
.ya1{bottom:306.210000px;}
.y139{bottom:306.750000px;}
.y72{bottom:308.370000px;}
.y14f{bottom:309.270000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y184{bottom:310.710000px;}
.y85{bottom:317.010000px;}
.yf2{bottom:317.910000px;}
.y12a{bottom:320.430000px;}
.y49{bottom:320.790000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1ac{bottom:325.110000px;}
.y10b{bottom:325.650000px;}
.y1d8{bottom:326.730000px;}
.ya0{bottom:336.675000px;}
.y138{bottom:337.215000px;}
.y71{bottom:338.835000px;}
.y14e{bottom:339.735000px;}
.y183{bottom:341.175000px;}
.y1ab{bottom:343.695000px;}
.y1d7{bottom:345.315000px;}
.yf{bottom:348.133500px;}
.yf1{bottom:349.635000px;}
.y48{bottom:351.255000px;}
.y129{bottom:351.435000px;}
.ycd{bottom:355.935000px;}
.y84{bottom:357.735000px;}
.y1aa{bottom:362.235000px;}
.y1d6{bottom:363.855000px;}
.y137{bottom:367.635000px;}
.yca{bottom:367.995000px;}
.y9f{bottom:368.535000px;}
.y70{bottom:369.255000px;}
.y14d{bottom:370.155000px;}
.y182{bottom:371.595000px;}
.ycc{bottom:376.095000px;}
.y9e{bottom:379.515000px;}
.yf0{bottom:380.055000px;}
.y47{bottom:381.675000px;}
.y128{bottom:382.215000px;}
.y168{bottom:384.015000px;}
.y1a9{bottom:385.275000px;}
.y10a{bottom:386.355000px;}
.ye{bottom:386.785499px;}
.y1d5{bottom:387.075000px;}
.y83{bottom:388.155000px;}
.ycb{bottom:391.215000px;}
.y136{bottom:397.875000px;}
.y127{bottom:399.135000px;}
.y6f{bottom:399.675000px;}
.y14c{bottom:400.395000px;}
.y181{bottom:402.015000px;}
.y1a8{bottom:403.815000px;}
.y1d4{bottom:405.615000px;}
.yd{bottom:408.044999px;}
.yef{bottom:410.475000px;}
.y46{bottom:411.915000px;}
.y126{bottom:412.815000px;}
.y11a{bottom:415.875000px;}
.y109{bottom:416.775000px;}
.y82{bottom:418.395000px;}
.y9d{bottom:420.015000px;}
.y172{bottom:424.875000px;}
.y1a7{bottom:426.855000px;}
.y135{bottom:428.295000px;}
.y1d3{bottom:428.655000px;}
.y6e{bottom:429.915000px;}
.y14b{bottom:430.815000px;}
.y180{bottom:432.255000px;}
.y125{bottom:436.935000px;}
.yee{bottom:441.435000px;}
.y45{bottom:442.335000px;}
.yc9{bottom:443.595000px;}
.ye4{bottom:445.215000px;}
.y1a6{bottom:445.575000px;}
.y167{bottom:446.115000px;}
.y119{bottom:446.295000px;}
.y1d2{bottom:447.195000px;}
.y108{bottom:448.455000px;}
.y81{bottom:448.815000px;}
.y134{bottom:458.715000px;}
.y6d{bottom:460.335000px;}
.y14a{bottom:461.235000px;}
.y17f{bottom:462.675000px;}
.y124{bottom:467.355000px;}
.y1a5{bottom:468.615000px;}
.y1d1{bottom:470.235000px;}
.y44{bottom:472.755000px;}
.yed{bottom:473.295000px;}
.yc8{bottom:474.015000px;}
.ye3{bottom:475.995000px;}
.y166{bottom:476.535000px;}
.y118{bottom:476.715000px;}
.y80{bottom:479.235000px;}
.y1a4{bottom:487.155000px;}
.y9c{bottom:488.055000px;}
.y1d0{bottom:488.775000px;}
.y107{bottom:489.135000px;}
.y6c{bottom:490.755000px;}
.y149{bottom:491.655000px;}
.y17e{bottom:493.095000px;}
.y123{bottom:497.775000px;}
.y171{bottom:502.275000px;}
.yc{bottom:502.864502px;}
.y43{bottom:503.175000px;}
.yec{bottom:503.535000px;}
.y9b{bottom:503.715000px;}
.yc7{bottom:505.515000px;}
.y117{bottom:507.135000px;}
.y165{bottom:507.495000px;}
.y7f{bottom:509.655000px;}
.ye2{bottom:510.015000px;}
.y1a3{bottom:510.195000px;}
.y1cf{bottom:511.815000px;}
.y106{bottom:519.375000px;}
.yb{bottom:520.864502px;}
.y6b{bottom:521.175000px;}
.y148{bottom:521.895000px;}
.y17d{bottom:523.515000px;}
.y122{bottom:528.735000px;}
.y1ce{bottom:530.355000px;}
.y42{bottom:533.415000px;}
.yeb{bottom:534.495000px;}
.y116{bottom:537.375000px;}
.yb1{bottom:537.915000px;}
.yc6{bottom:538.635000px;}
.ya{bottom:538.864499px;}
.y164{bottom:539.535000px;}
.y7e{bottom:539.895000px;}
.ye1{bottom:543.495000px;}
.y105{bottom:549.795000px;}
.y6a{bottom:551.415000px;}
.yb0{bottom:551.775000px;}
.y147{bottom:552.315000px;}
.y1cd{bottom:553.575000px;}
.y17c{bottom:553.755000px;}
.y9{bottom:556.864499px;}
.y121{bottom:560.415000px;}
.y41{bottom:563.835000px;}
.y170{bottom:564.375000px;}
.yea{bottom:566.355000px;}
.y115{bottom:567.795000px;}
.y7d{bottom:570.315000px;}
.yc5{bottom:571.035000px;}
.y1cc{bottom:576.615000px;}
.y9a{bottom:580.215000px;}
.y69{bottom:581.835000px;}
.y146{bottom:582.735000px;}
.y17b{bottom:584.175000px;}
.y120{bottom:590.835000px;}
.y1a2{bottom:593.355000px;}
.y40{bottom:594.255000px;}
.y1cb{bottom:595.155000px;}
.y16f{bottom:595.335000px;}
.ye9{bottom:597.315000px;}
.y114{bottom:598.215000px;}
.y7c{bottom:601.995000px;}
.yc4{bottom:603.435000px;}
.y104{bottom:610.665000px;}
.ye0{bottom:611.745000px;}
.y1a1{bottom:612.105000px;}
.y68{bottom:612.285000px;}
.y162{bottom:613.005000px;}
.y145{bottom:613.185000px;}
.y99{bottom:613.725000px;}
.y17a{bottom:614.625000px;}
.y1ca{bottom:618.225000px;}
.y11f{bottom:621.285000px;}
.y3f{bottom:624.705000px;}
.y161{bottom:625.065000px;}
.y113{bottom:628.665000px;}
.ye8{bottom:629.205000px;}
.yaf{bottom:633.525000px;}
.y1a0{bottom:635.145000px;}
.yc3{bottom:635.865000px;}
.y1c9{bottom:636.765000px;}
.y103{bottom:640.905000px;}
.y67{bottom:642.705000px;}
.y144{bottom:643.425000px;}
.y179{bottom:645.045000px;}
.y8{bottom:645.510000px;}
.y98{bottom:650.625000px;}
.y11e{bottom:651.705000px;}
.y19f{bottom:653.685000px;}
.y163{bottom:654.585000px;}
.y3e{bottom:654.945000px;}
.y1c8{bottom:655.305000px;}
.ye7{bottom:659.445000px;}
.y112{bottom:660.165000px;}
.y16e{bottom:661.425000px;}
.yae{bottom:663.945000px;}
.y7{bottom:666.771000px;}
.yc2{bottom:667.545000px;}
.y102{bottom:671.325000px;}
.y66{bottom:672.945000px;}
.y143{bottom:673.845000px;}
.y178{bottom:675.285000px;}
.y19e{bottom:676.725000px;}
.y1c7{bottom:678.345000px;}
.ydf{bottom:680.865000px;}
.y11d{bottom:681.945000px;}
.y97{bottom:685.725000px;}
.ye6{bottom:689.865000px;}
.y111{bottom:693.105000px;}
.y19d{bottom:695.265000px;}
.y3d{bottom:695.625000px;}
.yad{bottom:696.165000px;}
.y1c6{bottom:696.885000px;}
.yc1{bottom:697.965000px;}
.y101{bottom:701.745000px;}
.y65{bottom:703.365000px;}
.y142{bottom:704.265000px;}
.y177{bottom:705.705000px;}
.yde{bottom:711.285000px;}
.y11c{bottom:712.365000px;}
.y19c{bottom:713.805000px;}
.ye5{bottom:715.605000px;}
.y160{bottom:715.785000px;}
.y96{bottom:715.965000px;}
.y6{bottom:726.298500px;}
.yc0{bottom:728.385000px;}
.y100{bottom:732.165000px;}
.yac{bottom:732.885000px;}
.y64{bottom:733.785000px;}
.y141{bottom:734.685000px;}
.y176{bottom:736.125000px;}
.y19b{bottom:736.845000px;}
.y11b{bottom:738.105000px;}
.y1c5{bottom:738.645000px;}
.ydd{bottom:742.245000px;}
.y3c{bottom:746.025000px;}
.y15f{bottom:746.205000px;}
.y95{bottom:748.185000px;}
.y3{bottom:752.599495px;}
.y19a{bottom:755.385000px;}
.y1c4{bottom:757.185000px;}
.ybf{bottom:758.805000px;}
.yff{bottom:762.405000px;}
.y63{bottom:764.205000px;}
.y3b{bottom:764.745000px;}
.y140{bottom:764.925000px;}
.y175{bottom:766.545000px;}
.yab{bottom:768.705000px;}
.y15c{bottom:773.205000px;}
.y189{bottom:775.185000px;}
.ydc{bottom:775.725000px;}
.y15e{bottom:776.805000px;}
.y199{bottom:778.605000px;}
.y15b{bottom:782.205000px;}
.y94{bottom:783.285000px;}
.ybe{bottom:789.045000px;}
.y15d{bottom:791.745000px;}
.y3a{bottom:791.925000px;}
.yfe{bottom:792.825000px;}
.y62{bottom:794.445000px;}
.y13f{bottom:795.345000px;}
.y198{bottom:797.145000px;}
.y174{bottom:797.505000px;}
.y1c3{bottom:798.765000px;}
.yaa{bottom:801.105000px;}
.y39{bottom:808.845000px;}
.ydb{bottom:810.645000px;}
.y93{bottom:814.245000px;}
.y197{bottom:815.685000px;}
.y1c2{bottom:817.305000px;}
.ybd{bottom:819.465000px;}
.y15a{bottom:821.445000px;}
.yfd{bottom:823.245000px;}
.y61{bottom:824.865000px;}
.y38{bottom:825.585000px;}
.y173{bottom:825.945000px;}
.ya9{bottom:833.505000px;}
.y1c1{bottom:835.845000px;}
.y13e{bottom:836.025000px;}
.y196{bottom:838.725000px;}
.y37{bottom:842.505000px;}
.yda{bottom:843.945000px;}
.y92{bottom:845.925000px;}
.y159{bottom:851.865000px;}
.yfc{bottom:853.665000px;}
.y60{bottom:855.285000px;}
.y195{bottom:857.265000px;}
.y1c0{bottom:858.885000px;}
.y36{bottom:859.425000px;}
.ybc{bottom:860.145000px;}
.yd9{bottom:874.950000px;}
.y35{bottom:876.390000px;}
.y1bf{bottom:877.650000px;}
.y2{bottom:879.369000px;}
.y194{bottom:880.350000px;}
.y158{bottom:882.330000px;}
.yfb{bottom:883.950000px;}
.y5f{bottom:885.750000px;}
.y34{bottom:893.130000px;}
.y1be{bottom:896.190000px;}
.y193{bottom:898.890000px;}
.ya8{bottom:902.850000px;}
.y91{bottom:906.810000px;}
.ybb{bottom:909.870000px;}
.y33{bottom:910.050000px;}
.y157{bottom:913.290000px;}
.y133{bottom:914.370000px;}
.y5e{bottom:915.990000px;}
.ya7{bottom:918.510000px;}
.y1bd{bottom:919.230000px;}
.y192{bottom:921.930000px;}
.yfa{bottom:924.630000px;}
.y32{bottom:926.970000px;}
.y90{bottom:937.230000px;}
.y1bc{bottom:937.770000px;}
.yba{bottom:940.110000px;}
.y191{bottom:940.650000px;}
.yd8{bottom:942.450000px;}
.y31{bottom:943.890000px;}
.y156{bottom:945.330000px;}
.y5d{bottom:946.410000px;}
.yd7{bottom:954.510000px;}
.y132{bottom:955.050000px;}
.yf9{bottom:957.570000px;}
.y190{bottom:959.190000px;}
.y1bb{bottom:960.810000px;}
.y1{bottom:966.726000px;}
.y8f{bottom:968.010000px;}
.yb9{bottom:970.530000px;}
.y155{bottom:976.290000px;}
.y5c{bottom:976.830000px;}
.y1ba{bottom:979.350000px;}
.y30{bottom:979.530000px;}
.y18f{bottom:982.230000px;}
.y131{bottom:987.990000px;}
.y1b9{bottom:997.890000px;}
.y8e{bottom:1000.770000px;}
.yb8{bottom:1000.950000px;}
.ya6{bottom:1004.190000px;}
.y5b{bottom:1007.250000px;}
.y154{bottom:1007.970000px;}
.y2f{bottom:1019.490000px;}
.y1b8{bottom:1020.930000px;}
.y18e{bottom:1023.810000px;}
.y8d{bottom:1031.190000px;}
.yb7{bottom:1031.370000px;}
.yd6{bottom:1033.530000px;}
.y5a{bottom:1037.490000px;}
.y153{bottom:1038.390000px;}
.y1b7{bottom:1039.650000px;}
.y18d{bottom:1052.070000px;}
.y2e{bottom:1060.170000px;}
.y8c{bottom:1061.430000px;}
.yb6{bottom:1061.970000px;}
.y1b6{bottom:1062.690000px;}
.yd5{bottom:1064.490000px;}
.y59{bottom:1067.910000px;}
.y1b5{bottom:1081.230000px;}
.y2d{bottom:1090.590000px;}
.y8b{bottom:1093.650000px;}
.yb5{bottom:1095.990000px;}
.yd4{bottom:1096.890000px;}
.y152{bottom:1097.070000px;}
.y58{bottom:1098.330000px;}
.y1b4{bottom:1099.770000px;}
.y29{bottom:1114.350000px;}
.y22{bottom:1134.510000px;}
.y54{bottom:1137.570000px;}
.y53{bottom:1157.940000px;}
.y52{bottom:1177.380000px;}
.y56{bottom:1188.540000px;}
.y7a{bottom:1190.160000px;}
.y51{bottom:1194.660000px;}
.y78{bottom:1195.920000px;}
.h15{height:18.720000px;}
.h14{height:20.340000px;}
.h13{height:30.954727px;}
.h7{height:32.130000px;}
.hc{height:40.472227px;}
.h10{height:44.860781px;}
.h6{height:45.900000px;}
.he{height:46.074727px;}
.h3{height:48.195000px;}
.hb{height:48.761719px;}
.h11{height:51.070781px;}
.h16{height:52.662656px;}
.h2{height:55.080000px;}
.ha{height:55.511719px;}
.hf{height:59.556797px;}
.h25{height:64.760625px;}
.hd{height:73.142578px;}
.h9{height:74.376000px;}
.h5{height:78.030000px;}
.h21{height:79.275937px;}
.h12{height:80.949375px;}
.h26{height:91.511719px;}
.h1c{height:99.431719px;}
.h19{height:111.656250px;}
.h22{height:114.536250px;}
.h17{height:115.995937px;}
.h1e{height:117.435937px;}
.h4{height:119.055004px;}
.h27{height:125.960625px;}
.h18{height:127.496250px;}
.h1b{height:130.280625px;}
.h28{height:133.256250px;}
.h24{height:133.995937px;}
.h2b{height:161.960625px;}
.h23{height:166.376250px;}
.h20{height:169.256250px;}
.h1a{height:170.715938px;}
.h1f{height:177.176250px;}
.h1d{height:182.216250px;}
.h2a{height:182.936250px;}
.h29{height:206.816250px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:23.220000px;}
.w9{width:25.380000px;}
.w6{width:77.760000px;}
.w4{width:113.040000px;}
.w5{width:425.805000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w8{width:892.979973px;}
.w7{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:21.645000px;}
.xd{left:38.880000px;}
.x1{left:102.045000px;}
.x6{left:104.934000px;}
.x2{left:106.297500px;}
.x9{left:116.865000px;}
.x5{left:148.896000px;}
.x37{left:159.509987px;}
.x17{left:161.669987px;}
.xa{left:164.025000px;}
.x1c{left:178.589987px;}
.x12{left:186.509987px;}
.x15{left:191.369987px;}
.x22{left:194.249987px;}
.x18{left:201.269987px;}
.x4{left:203.484001px;}
.xb{left:212.835000px;}
.x1d{left:219.449987px;}
.x33{left:235.829987px;}
.x13{left:242.669987px;}
.x20{left:245.189987px;}
.x23{left:253.829987px;}
.x29{left:255.449987px;}
.x7{left:261.930000px;}
.x1e{left:271.109987px;}
.x31{left:281.594987px;}
.x21{left:296.894987px;}
.x10{left:314.534987px;}
.x27{left:322.454987px;}
.x1a{left:335.594987px;}
.x11{left:341.174987px;}
.x16{left:364.934987px;}
.x2d{left:386.894987px;}
.x19{left:394.994987px;}
.x14{left:406.154987px;}
.x30{left:420.014987px;}
.x28{left:421.814987px;}
.x2f{left:425.234987px;}
.x32{left:443.774987px;}
.x2e{left:449.354987px;}
.x3{left:454.959000px;}
.x25{left:456.014987px;}
.x26{left:465.554987px;}
.x1f{left:533.624987px;}
.x34{left:586.904987px;}
.x2a{left:646.124987px;}
.xc{left:687.750000px;}
.x36{left:712.589987px;}
.x2b{left:717.089987px;}
.x24{left:720.509987px;}
.x35{left:721.769987px;}
.x2c{left:728.249987px;}
.x1b{left:742.290000px;}
.xf{left:756.509987px;}
.xe{left:758.669987px;}
@media print{
.v12{vertical-align:-33.920000pt;}
.v5{vertical-align:-32.640000pt;}
.v7{vertical-align:-26.858667pt;}
.v16{vertical-align:-25.600000pt;}
.v21{vertical-align:-23.680000pt;}
.v20{vertical-align:-21.120000pt;}
.v3{vertical-align:-19.840000pt;}
.v9{vertical-align:-15.360000pt;}
.v2{vertical-align:-13.440000pt;}
.v11{vertical-align:-10.240000pt;}
.v1f{vertical-align:-8.960000pt;}
.v1a{vertical-align:-7.680000pt;}
.v15{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:2.560000pt;}
.v23{vertical-align:11.520000pt;}
.v8{vertical-align:12.778667pt;}
.v6{vertical-align:14.080000pt;}
.v14{vertical-align:15.360000pt;}
.v1d{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.v24{vertical-align:28.160000pt;}
.vf{vertical-align:29.440000pt;}
.v22{vertical-align:30.720000pt;}
.v1b{vertical-align:32.000000pt;}
.vd{vertical-align:33.920000pt;}
.v1c{vertical-align:37.760000pt;}
.v19{vertical-align:40.320000pt;}
.va{vertical-align:41.600000pt;}
.v18{vertical-align:42.880000pt;}
.ve{vertical-align:44.160000pt;}
.vb{vertical-align:48.640000pt;}
.v17{vertical-align:51.200000pt;}
.v4{vertical-align:52.480000pt;}
.v10{vertical-align:54.400000pt;}
.vc{vertical-align:55.680000pt;}
.v1e{vertical-align:82.026667pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls4d{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls49{letter-spacing:-0.285333pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.186667pt;}
.ls1e{letter-spacing:-0.143467pt;}
.ls15{letter-spacing:-0.129067pt;}
.ls40{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.004480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.084267pt;}
.ls4b{letter-spacing:0.130560pt;}
.ls9{letter-spacing:0.148267pt;}
.ls5{letter-spacing:0.149760pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.160427pt;}
.ls34{letter-spacing:0.179200pt;}
.lsb{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.193067pt;}
.ls27{letter-spacing:0.207360pt;}
.ls2b{letter-spacing:0.222933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.259840pt;}
.ls20{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.510933pt;}
.ls35{letter-spacing:1.440000pt;}
.ls47{letter-spacing:1.536000pt;}
.lsf{letter-spacing:1.600000pt;}
.ls33{letter-spacing:2.080000pt;}
.ls28{letter-spacing:2.186667pt;}
.lse{letter-spacing:2.240000pt;}
.ls39{letter-spacing:3.183360pt;}
.ls37{letter-spacing:3.392000pt;}
.ls45{letter-spacing:3.456000pt;}
.ls41{letter-spacing:3.840000pt;}
.ls12{letter-spacing:3.890560pt;}
.ls44{letter-spacing:3.997227pt;}
.ls2f{letter-spacing:4.050560pt;}
.ls2a{letter-spacing:4.530560pt;}
.lsd{letter-spacing:5.440000pt;}
.ls31{letter-spacing:7.040000pt;}
.ls46{letter-spacing:13.440000pt;}
.ls3c{letter-spacing:13.760000pt;}
.ls4a{letter-spacing:14.080000pt;}
.ls3b{letter-spacing:14.378667pt;}
.ls42{letter-spacing:14.400000pt;}
.ls6{letter-spacing:16.640000pt;}
.ls43{letter-spacing:17.280000pt;}
.ls23{letter-spacing:17.330560pt;}
.ls25{letter-spacing:17.472000pt;}
.ls2c{letter-spacing:17.600000pt;}
.ls1b{letter-spacing:17.970560pt;}
.ls3d{letter-spacing:17.984000pt;}
.ls19{letter-spacing:18.112000pt;}
.ls21{letter-spacing:20.410240pt;}
.ls18{letter-spacing:20.933120pt;}
.ls22{letter-spacing:21.170560pt;}
.ls1a{letter-spacing:21.573120pt;}
.ls17{letter-spacing:21.810560pt;}
.ls30{letter-spacing:22.080000pt;}
.ls1f{letter-spacing:22.560000pt;}
.ls48{letter-spacing:23.232000pt;}
.ls24{letter-spacing:35.824640pt;}
.ls7{letter-spacing:40.944640pt;}
.ls36{letter-spacing:71.923200pt;}
.ls29{letter-spacing:79.360000pt;}
.ls32{letter-spacing:81.063040pt;}
.ls38{letter-spacing:91.104000pt;}
.ls26{letter-spacing:98.730667pt;}
.ls3f{letter-spacing:162.560000pt;}
.ls2d{letter-spacing:303.018667pt;}
.ws1b{word-spacing:-17.502933pt;}
.ws6{word-spacing:-17.428267pt;}
.ws1f{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws20{word-spacing:-15.872000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.625067pt;}
.ws23{word-spacing:-14.336000pt;}
.ws18{word-spacing:-14.272000pt;}
.ws11{word-spacing:-14.080000pt;}
.ws16{word-spacing:-13.888000pt;}
.wsa{word-spacing:-13.473067pt;}
.ws2{word-spacing:-13.364267pt;}
.ws3{word-spacing:-13.326720pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.275520pt;}
.ws12{word-spacing:-9.996800pt;}
.ws13{word-spacing:-9.810133pt;}
.ws10{word-spacing:-9.790933pt;}
.ws2c{word-spacing:-9.711467pt;}
.wsf{word-spacing:-9.280000pt;}
.wse{word-spacing:-9.150933pt;}
.ws9{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.166400pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:7.915520pt;}
.ws27{word-spacing:8.020480pt;}
.ws2a{word-spacing:8.179200pt;}
.ws25{word-spacing:8.285867pt;}
.ws29{word-spacing:8.339200pt;}
.ws2b{word-spacing:8.897920pt;}
.ws14{word-spacing:8.975787pt;}
.ws28{word-spacing:9.004587pt;}
.ws15{word-spacing:9.615787pt;}
.ws1c{word-spacing:11.152000pt;}
.ws19{word-spacing:11.185920pt;}
.ws2f{word-spacing:11.457920pt;}
.ws2e{word-spacing:11.646080pt;}
.ws26{word-spacing:11.695360pt;}
.ws1a{word-spacing:11.825920pt;}
.ws24{word-spacing:12.019200pt;}
.ws2d{word-spacing:12.097920pt;}
.ws1e{word-spacing:12.395520pt;}
.ws22{word-spacing:66.093440pt;}
.ws21{word-spacing:126.893440pt;}
._21{margin-left:-24.778667pt;}
._15{margin-left:-22.005333pt;}
._16{margin-left:-20.955733pt;}
._22{margin-left:-13.845333pt;}
._25{margin-left:-12.930773pt;}
._1b{margin-left:-10.135680pt;}
._13{margin-left:-9.013973pt;}
._24{margin-left:-8.112213pt;}
._1c{margin-left:-7.157333pt;}
._1a{margin-left:-6.188160pt;}
._1f{margin-left:-5.225173pt;}
._f{margin-left:-3.520000pt;}
._e{margin-left:-2.176000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.062400pt;}
._d{width:2.752000pt;}
._9{width:3.984000pt;}
._8{width:5.418240pt;}
._7{width:6.374400pt;}
._14{width:7.290667pt;}
._2{width:8.233600pt;}
._3{width:9.720960pt;}
._4{width:10.621227pt;}
._6{width:12.270720pt;}
._12{width:13.541120pt;}
._5{width:14.554880pt;}
._b{width:15.847680pt;}
._a{width:16.881067pt;}
._19{width:17.984000pt;}
._c{width:19.648000pt;}
._20{width:20.644267pt;}
._11{width:22.400000pt;}
._10{width:23.552000pt;}
._1e{width:24.576000pt;}
._18{width:27.865600pt;}
._17{width:28.800000pt;}
._27{width:30.784000pt;}
._23{width:31.744000pt;}
._26{width:33.066667pt;}
._2a{width:34.621440pt;}
._2b{width:35.888640pt;}
._2f{width:38.200320pt;}
._2e{width:39.096320pt;}
._1d{width:42.350933pt;}
._2d{width:53.890560pt;}
._29{width:59.468800pt;}
._28{width:60.385280pt;}
._2c{width:67.240960pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:3.546667pt;}
.y7b{bottom:4.160000pt;}
.y57{bottom:4.320000pt;}
.y23{bottom:10.906667pt;}
.y26{bottom:18.586667pt;}
.y25{bottom:34.266667pt;}
.y28{bottom:45.306667pt;}
.y2c{bottom:48.800000pt;}
.y24{bottom:52.186667pt;}
.y5{bottom:59.133337pt;}
.y55{bottom:60.160000pt;}
.y2b{bottom:63.712000pt;}
.y79{bottom:64.352000pt;}
.y2a{bottom:75.232000pt;}
.y4{bottom:86.333337pt;}
.yd3{bottom:119.072000pt;}
.yf8{bottom:120.032000pt;}
.y130{bottom:121.152000pt;}
.y21{bottom:123.790666pt;}
.y50{bottom:124.832000pt;}
.y1e1{bottom:125.952000pt;}
.y1b3{bottom:128.512000pt;}
.y8a{bottom:135.066667pt;}
.y13d{bottom:137.626667pt;}
.y16d{bottom:139.066667pt;}
.y77{bottom:139.226667pt;}
.y18c{bottom:140.666667pt;}
.y188{bottom:141.946667pt;}
.y1e0{bottom:142.426667pt;}
.y1b2{bottom:144.986667pt;}
.yd2{bottom:146.586667pt;}
.yf7{bottom:147.066667pt;}
.y4f{bottom:147.706667pt;}
.y12f{bottom:148.026667pt;}
.yb4{bottom:148.506667pt;}
.ya5{bottom:151.066667pt;}
.y110{bottom:154.426667pt;}
.y1b1{bottom:161.466667pt;}
.y4e{bottom:162.746667pt;}
.y1df{bottom:162.906667pt;}
.y89{bottom:164.666667pt;}
.y76{bottom:166.106667pt;}
.y16c{bottom:166.426667pt;}
.y18b{bottom:167.706667pt;}
.y187{bottom:168.986667pt;}
.yf6{bottom:173.946667pt;}
.y18{bottom:175.052000pt;}
.y12e{bottom:175.066667pt;}
.yd1{bottom:175.386667pt;}
.yb3{bottom:175.546667pt;}
.y1de{bottom:179.386667pt;}
.y10f{bottom:181.466667pt;}
.y1b0{bottom:181.946667pt;}
.ya4{bottom:182.266667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4d{bottom:189.146667pt;}
.y13c{bottom:191.706667pt;}
.y75{bottom:193.146667pt;}
.y88{bottom:193.306667pt;}
.y16b{bottom:194.746667pt;}
.y1dd{bottom:196.026667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yb2{bottom:198.426667pt;}
.yf5{bottom:200.986667pt;}
.y4c{bottom:201.466667pt;}
.y12d{bottom:202.106667pt;}
.yd0{bottom:203.706667pt;}
.y18a{bottom:203.866667pt;}
.y186{bottom:205.146667pt;}
.y10e{bottom:208.346667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ya3{bottom:210.746667pt;}
.y1af{bottom:214.906667pt;}
.y1dc{bottom:216.506667pt;}
.y13b{bottom:218.746667pt;}
.y74{bottom:220.186667pt;}
.y151{bottom:220.986667pt;}
.y87{bottom:224.346667pt;}
.yf4{bottom:228.026667pt;}
.y12c{bottom:229.146667pt;}
.ycf{bottom:230.586667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y4b{bottom:231.226667pt;}
.y1db{bottom:232.986667pt;}
.y10d{bottom:235.386667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya2{bottom:242.426667pt;}
.y13a{bottom:245.626667pt;}
.y73{bottom:247.226667pt;}
.y150{bottom:247.866667pt;}
.y185{bottom:249.306667pt;}
.y1ae{bottom:252.026667pt;}
.y86{bottom:252.506667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1da{bottom:253.466667pt;}
.y16a{bottom:254.106667pt;}
.yf3{bottom:255.066667pt;}
.y12b{bottom:256.506667pt;}
.yce{bottom:257.626667pt;}
.y4a{bottom:258.106667pt;}
.y10c{bottom:262.426667pt;}
.y169{bottom:264.186667pt;}
.y1ad{bottom:268.506667pt;}
.y1d9{bottom:269.946667pt;}
.ya1{bottom:272.186667pt;}
.y139{bottom:272.666667pt;}
.y72{bottom:274.106667pt;}
.y14f{bottom:274.906667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y184{bottom:276.186667pt;}
.y85{bottom:281.786667pt;}
.yf2{bottom:282.586667pt;}
.y12a{bottom:284.826667pt;}
.y49{bottom:285.146667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1ac{bottom:288.986667pt;}
.y10b{bottom:289.466667pt;}
.y1d8{bottom:290.426667pt;}
.ya0{bottom:299.266667pt;}
.y138{bottom:299.746667pt;}
.y71{bottom:301.186667pt;}
.y14e{bottom:301.986667pt;}
.y183{bottom:303.266667pt;}
.y1ab{bottom:305.506667pt;}
.y1d7{bottom:306.946667pt;}
.yf{bottom:309.452000pt;}
.yf1{bottom:310.786667pt;}
.y48{bottom:312.226667pt;}
.y129{bottom:312.386667pt;}
.ycd{bottom:316.386667pt;}
.y84{bottom:317.986667pt;}
.y1aa{bottom:321.986667pt;}
.y1d6{bottom:323.426667pt;}
.y137{bottom:326.786667pt;}
.yca{bottom:327.106667pt;}
.y9f{bottom:327.586667pt;}
.y70{bottom:328.226667pt;}
.y14d{bottom:329.026667pt;}
.y182{bottom:330.306667pt;}
.ycc{bottom:334.306667pt;}
.y9e{bottom:337.346667pt;}
.yf0{bottom:337.826667pt;}
.y47{bottom:339.266667pt;}
.y128{bottom:339.746667pt;}
.y168{bottom:341.346667pt;}
.y1a9{bottom:342.466667pt;}
.y10a{bottom:343.426667pt;}
.ye{bottom:343.809333pt;}
.y1d5{bottom:344.066667pt;}
.y83{bottom:345.026667pt;}
.ycb{bottom:347.746667pt;}
.y136{bottom:353.666667pt;}
.y127{bottom:354.786667pt;}
.y6f{bottom:355.266667pt;}
.y14c{bottom:355.906667pt;}
.y181{bottom:357.346667pt;}
.y1a8{bottom:358.946667pt;}
.y1d4{bottom:360.546667pt;}
.yd{bottom:362.706666pt;}
.yef{bottom:364.866667pt;}
.y46{bottom:366.146667pt;}
.y126{bottom:366.946667pt;}
.y11a{bottom:369.666667pt;}
.y109{bottom:370.466667pt;}
.y82{bottom:371.906667pt;}
.y9d{bottom:373.346667pt;}
.y172{bottom:377.666667pt;}
.y1a7{bottom:379.426667pt;}
.y135{bottom:380.706667pt;}
.y1d3{bottom:381.026667pt;}
.y6e{bottom:382.146667pt;}
.y14b{bottom:382.946667pt;}
.y180{bottom:384.226667pt;}
.y125{bottom:388.386667pt;}
.yee{bottom:392.386667pt;}
.y45{bottom:393.186667pt;}
.yc9{bottom:394.306667pt;}
.ye4{bottom:395.746667pt;}
.y1a6{bottom:396.066667pt;}
.y167{bottom:396.546667pt;}
.y119{bottom:396.706667pt;}
.y1d2{bottom:397.506667pt;}
.y108{bottom:398.626667pt;}
.y81{bottom:398.946667pt;}
.y134{bottom:407.746667pt;}
.y6d{bottom:409.186667pt;}
.y14a{bottom:409.986667pt;}
.y17f{bottom:411.266667pt;}
.y124{bottom:415.426667pt;}
.y1a5{bottom:416.546667pt;}
.y1d1{bottom:417.986667pt;}
.y44{bottom:420.226667pt;}
.yed{bottom:420.706667pt;}
.yc8{bottom:421.346667pt;}
.ye3{bottom:423.106667pt;}
.y166{bottom:423.586667pt;}
.y118{bottom:423.746667pt;}
.y80{bottom:425.986667pt;}
.y1a4{bottom:433.026667pt;}
.y9c{bottom:433.826667pt;}
.y1d0{bottom:434.466667pt;}
.y107{bottom:434.786667pt;}
.y6c{bottom:436.226667pt;}
.y149{bottom:437.026667pt;}
.y17e{bottom:438.306667pt;}
.y123{bottom:442.466667pt;}
.y171{bottom:446.466667pt;}
.yc{bottom:446.990669pt;}
.y43{bottom:447.266667pt;}
.yec{bottom:447.586667pt;}
.y9b{bottom:447.746667pt;}
.yc7{bottom:449.346667pt;}
.y117{bottom:450.786667pt;}
.y165{bottom:451.106667pt;}
.y7f{bottom:453.026667pt;}
.ye2{bottom:453.346667pt;}
.y1a3{bottom:453.506667pt;}
.y1cf{bottom:454.946667pt;}
.y106{bottom:461.666667pt;}
.yb{bottom:462.990669pt;}
.y6b{bottom:463.266667pt;}
.y148{bottom:463.906667pt;}
.y17d{bottom:465.346667pt;}
.y122{bottom:469.986667pt;}
.y1ce{bottom:471.426667pt;}
.y42{bottom:474.146667pt;}
.yeb{bottom:475.106667pt;}
.y116{bottom:477.666667pt;}
.yb1{bottom:478.146667pt;}
.yc6{bottom:478.786667pt;}
.ya{bottom:478.990666pt;}
.y164{bottom:479.586667pt;}
.y7e{bottom:479.906667pt;}
.ye1{bottom:483.106667pt;}
.y105{bottom:488.706667pt;}
.y6a{bottom:490.146667pt;}
.yb0{bottom:490.466667pt;}
.y147{bottom:490.946667pt;}
.y1cd{bottom:492.066667pt;}
.y17c{bottom:492.226667pt;}
.y9{bottom:494.990666pt;}
.y121{bottom:498.146667pt;}
.y41{bottom:501.186667pt;}
.y170{bottom:501.666667pt;}
.yea{bottom:503.426667pt;}
.y115{bottom:504.706667pt;}
.y7d{bottom:506.946667pt;}
.yc5{bottom:507.586667pt;}
.y1cc{bottom:512.546667pt;}
.y9a{bottom:515.746667pt;}
.y69{bottom:517.186667pt;}
.y146{bottom:517.986667pt;}
.y17b{bottom:519.266667pt;}
.y120{bottom:525.186667pt;}
.y1a2{bottom:527.426667pt;}
.y40{bottom:528.226667pt;}
.y1cb{bottom:529.026667pt;}
.y16f{bottom:529.186667pt;}
.ye9{bottom:530.946667pt;}
.y114{bottom:531.746667pt;}
.y7c{bottom:535.106667pt;}
.yc4{bottom:536.386667pt;}
.y104{bottom:542.813333pt;}
.ye0{bottom:543.773333pt;}
.y1a1{bottom:544.093333pt;}
.y68{bottom:544.253333pt;}
.y162{bottom:544.893333pt;}
.y145{bottom:545.053333pt;}
.y99{bottom:545.533333pt;}
.y17a{bottom:546.333333pt;}
.y1ca{bottom:549.533333pt;}
.y11f{bottom:552.253333pt;}
.y3f{bottom:555.293333pt;}
.y161{bottom:555.613333pt;}
.y113{bottom:558.813333pt;}
.ye8{bottom:559.293333pt;}
.yaf{bottom:563.133333pt;}
.y1a0{bottom:564.573333pt;}
.yc3{bottom:565.213333pt;}
.y1c9{bottom:566.013333pt;}
.y103{bottom:569.693333pt;}
.y67{bottom:571.293333pt;}
.y144{bottom:571.933333pt;}
.y179{bottom:573.373333pt;}
.y8{bottom:573.786667pt;}
.y98{bottom:578.333333pt;}
.y11e{bottom:579.293333pt;}
.y19f{bottom:581.053333pt;}
.y163{bottom:581.853333pt;}
.y3e{bottom:582.173333pt;}
.y1c8{bottom:582.493333pt;}
.ye7{bottom:586.173333pt;}
.y112{bottom:586.813333pt;}
.y16e{bottom:587.933333pt;}
.yae{bottom:590.173333pt;}
.y7{bottom:592.685334pt;}
.yc2{bottom:593.373333pt;}
.y102{bottom:596.733333pt;}
.y66{bottom:598.173333pt;}
.y143{bottom:598.973333pt;}
.y178{bottom:600.253333pt;}
.y19e{bottom:601.533333pt;}
.y1c7{bottom:602.973333pt;}
.ydf{bottom:605.213333pt;}
.y11d{bottom:606.173333pt;}
.y97{bottom:609.533333pt;}
.ye6{bottom:613.213333pt;}
.y111{bottom:616.093333pt;}
.y19d{bottom:618.013333pt;}
.y3d{bottom:618.333333pt;}
.yad{bottom:618.813333pt;}
.y1c6{bottom:619.453333pt;}
.yc1{bottom:620.413333pt;}
.y101{bottom:623.773333pt;}
.y65{bottom:625.213333pt;}
.y142{bottom:626.013333pt;}
.y177{bottom:627.293333pt;}
.yde{bottom:632.253333pt;}
.y11c{bottom:633.213333pt;}
.y19c{bottom:634.493333pt;}
.ye5{bottom:636.093333pt;}
.y160{bottom:636.253333pt;}
.y96{bottom:636.413333pt;}
.y6{bottom:645.598667pt;}
.yc0{bottom:647.453333pt;}
.y100{bottom:650.813333pt;}
.yac{bottom:651.453333pt;}
.y64{bottom:652.253333pt;}
.y141{bottom:653.053333pt;}
.y176{bottom:654.333333pt;}
.y19b{bottom:654.973333pt;}
.y11b{bottom:656.093333pt;}
.y1c5{bottom:656.573333pt;}
.ydd{bottom:659.773333pt;}
.y3c{bottom:663.133333pt;}
.y15f{bottom:663.293333pt;}
.y95{bottom:665.053333pt;}
.y3{bottom:668.977329pt;}
.y19a{bottom:671.453333pt;}
.y1c4{bottom:673.053333pt;}
.ybf{bottom:674.493333pt;}
.yff{bottom:677.693333pt;}
.y63{bottom:679.293333pt;}
.y3b{bottom:679.773333pt;}
.y140{bottom:679.933333pt;}
.y175{bottom:681.373333pt;}
.yab{bottom:683.293333pt;}
.y15c{bottom:687.293333pt;}
.y189{bottom:689.053333pt;}
.ydc{bottom:689.533333pt;}
.y15e{bottom:690.493333pt;}
.y199{bottom:692.093333pt;}
.y15b{bottom:695.293333pt;}
.y94{bottom:696.253333pt;}
.ybe{bottom:701.373333pt;}
.y15d{bottom:703.773333pt;}
.y3a{bottom:703.933333pt;}
.yfe{bottom:704.733333pt;}
.y62{bottom:706.173333pt;}
.y13f{bottom:706.973333pt;}
.y198{bottom:708.573333pt;}
.y174{bottom:708.893333pt;}
.y1c3{bottom:710.013333pt;}
.yaa{bottom:712.093333pt;}
.y39{bottom:718.973333pt;}
.ydb{bottom:720.573333pt;}
.y93{bottom:723.773333pt;}
.y197{bottom:725.053333pt;}
.y1c2{bottom:726.493333pt;}
.ybd{bottom:728.413333pt;}
.y15a{bottom:730.173333pt;}
.yfd{bottom:731.773333pt;}
.y61{bottom:733.213333pt;}
.y38{bottom:733.853333pt;}
.y173{bottom:734.173333pt;}
.ya9{bottom:740.893333pt;}
.y1c1{bottom:742.973333pt;}
.y13e{bottom:743.133333pt;}
.y196{bottom:745.533333pt;}
.y37{bottom:748.893333pt;}
.yda{bottom:750.173333pt;}
.y92{bottom:751.933333pt;}
.y159{bottom:757.213333pt;}
.yfc{bottom:758.813333pt;}
.y60{bottom:760.253333pt;}
.y195{bottom:762.013333pt;}
.y1c0{bottom:763.453333pt;}
.y36{bottom:763.933333pt;}
.ybc{bottom:764.573333pt;}
.yd9{bottom:777.733333pt;}
.y35{bottom:779.013333pt;}
.y1bf{bottom:780.133333pt;}
.y2{bottom:781.661334pt;}
.y194{bottom:782.533333pt;}
.y158{bottom:784.293333pt;}
.yfb{bottom:785.733333pt;}
.y5f{bottom:787.333333pt;}
.y34{bottom:793.893333pt;}
.y1be{bottom:796.613333pt;}
.y193{bottom:799.013333pt;}
.ya8{bottom:802.533333pt;}
.y91{bottom:806.053333pt;}
.ybb{bottom:808.773333pt;}
.y33{bottom:808.933333pt;}
.y157{bottom:811.813333pt;}
.y133{bottom:812.773333pt;}
.y5e{bottom:814.213333pt;}
.ya7{bottom:816.453333pt;}
.y1bd{bottom:817.093333pt;}
.y192{bottom:819.493333pt;}
.yfa{bottom:821.893333pt;}
.y32{bottom:823.973333pt;}
.y90{bottom:833.093333pt;}
.y1bc{bottom:833.573333pt;}
.yba{bottom:835.653333pt;}
.y191{bottom:836.133333pt;}
.yd8{bottom:837.733333pt;}
.y31{bottom:839.013333pt;}
.y156{bottom:840.293333pt;}
.y5d{bottom:841.253333pt;}
.yd7{bottom:848.453333pt;}
.y132{bottom:848.933333pt;}
.yf9{bottom:851.173333pt;}
.y190{bottom:852.613333pt;}
.y1bb{bottom:854.053333pt;}
.y1{bottom:859.312000pt;}
.y8f{bottom:860.453333pt;}
.yb9{bottom:862.693333pt;}
.y155{bottom:867.813333pt;}
.y5c{bottom:868.293333pt;}
.y1ba{bottom:870.533333pt;}
.y30{bottom:870.693333pt;}
.y18f{bottom:873.093333pt;}
.y131{bottom:878.213333pt;}
.y1b9{bottom:887.013333pt;}
.y8e{bottom:889.573333pt;}
.yb8{bottom:889.733333pt;}
.ya6{bottom:892.613333pt;}
.y5b{bottom:895.333333pt;}
.y154{bottom:895.973333pt;}
.y2f{bottom:906.213333pt;}
.y1b8{bottom:907.493333pt;}
.y18e{bottom:910.053333pt;}
.y8d{bottom:916.613333pt;}
.yb7{bottom:916.773333pt;}
.yd6{bottom:918.693333pt;}
.y5a{bottom:922.213333pt;}
.y153{bottom:923.013333pt;}
.y1b7{bottom:924.133333pt;}
.y18d{bottom:935.173333pt;}
.y2e{bottom:942.373333pt;}
.y8c{bottom:943.493333pt;}
.yb6{bottom:943.973333pt;}
.y1b6{bottom:944.613333pt;}
.yd5{bottom:946.213333pt;}
.y59{bottom:949.253333pt;}
.y1b5{bottom:961.093333pt;}
.y2d{bottom:969.413333pt;}
.y8b{bottom:972.133333pt;}
.yb5{bottom:974.213333pt;}
.yd4{bottom:975.013333pt;}
.y152{bottom:975.173333pt;}
.y58{bottom:976.293333pt;}
.y1b4{bottom:977.573333pt;}
.y29{bottom:990.533333pt;}
.y22{bottom:1008.453333pt;}
.y54{bottom:1011.173333pt;}
.y53{bottom:1029.280000pt;}
.y52{bottom:1046.560000pt;}
.y56{bottom:1056.480000pt;}
.y7a{bottom:1057.920000pt;}
.y51{bottom:1061.920000pt;}
.y78{bottom:1063.040000pt;}
.h15{height:16.640000pt;}
.h14{height:18.080000pt;}
.h13{height:27.515312pt;}
.h7{height:28.560000pt;}
.hc{height:35.975313pt;}
.h10{height:39.876250pt;}
.h6{height:40.800000pt;}
.he{height:40.955312pt;}
.h3{height:42.840000pt;}
.hb{height:43.343750pt;}
.h11{height:45.396250pt;}
.h16{height:46.811250pt;}
.h2{height:48.960000pt;}
.ha{height:49.343750pt;}
.hf{height:52.939375pt;}
.h25{height:57.565000pt;}
.hd{height:65.015625pt;}
.h9{height:66.112000pt;}
.h5{height:69.360000pt;}
.h21{height:70.467500pt;}
.h12{height:71.955000pt;}
.h26{height:81.343750pt;}
.h1c{height:88.383750pt;}
.h19{height:99.250000pt;}
.h22{height:101.810000pt;}
.h17{height:103.107500pt;}
.h1e{height:104.387500pt;}
.h4{height:105.826671pt;}
.h27{height:111.965000pt;}
.h18{height:113.330000pt;}
.h1b{height:115.805000pt;}
.h28{height:118.450000pt;}
.h24{height:119.107500pt;}
.h2b{height:143.965000pt;}
.h23{height:147.890000pt;}
.h20{height:150.450000pt;}
.h1a{height:151.747500pt;}
.h1f{height:157.490000pt;}
.h1d{height:161.970000pt;}
.h2a{height:162.610000pt;}
.h29{height:183.836667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:20.640000pt;}
.w9{width:22.560000pt;}
.w6{width:69.120000pt;}
.w4{width:100.480000pt;}
.w5{width:378.493333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w8{width:793.759976pt;}
.w7{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:19.240000pt;}
.xd{left:34.560000pt;}
.x1{left:90.706667pt;}
.x6{left:93.274667pt;}
.x2{left:94.486667pt;}
.x9{left:103.880000pt;}
.x5{left:132.352000pt;}
.x37{left:141.786655pt;}
.x17{left:143.706655pt;}
.xa{left:145.800000pt;}
.x1c{left:158.746655pt;}
.x12{left:165.786655pt;}
.x15{left:170.106655pt;}
.x22{left:172.666655pt;}
.x18{left:178.906655pt;}
.x4{left:180.874667pt;}
.xb{left:189.186667pt;}
.x1d{left:195.066655pt;}
.x33{left:209.626655pt;}
.x13{left:215.706655pt;}
.x20{left:217.946655pt;}
.x23{left:225.626655pt;}
.x29{left:227.066655pt;}
.x7{left:232.826667pt;}
.x1e{left:240.986655pt;}
.x31{left:250.306655pt;}
.x21{left:263.906655pt;}
.x10{left:279.586655pt;}
.x27{left:286.626655pt;}
.x1a{left:298.306655pt;}
.x11{left:303.266655pt;}
.x16{left:324.386655pt;}
.x2d{left:343.906655pt;}
.x19{left:351.106655pt;}
.x14{left:361.026655pt;}
.x30{left:373.346655pt;}
.x28{left:374.946655pt;}
.x2f{left:377.986655pt;}
.x32{left:394.466655pt;}
.x2e{left:399.426655pt;}
.x3{left:404.408000pt;}
.x25{left:405.346655pt;}
.x26{left:413.826655pt;}
.x1f{left:474.333322pt;}
.x34{left:521.693322pt;}
.x2a{left:574.333322pt;}
.xc{left:611.333333pt;}
.x36{left:633.413322pt;}
.x2b{left:637.413322pt;}
.x24{left:640.453322pt;}
.x35{left:641.573322pt;}
.x2c{left:647.333322pt;}
.x1b{left:659.813333pt;}
.xf{left:672.453322pt;}
.xe{left:674.373322pt;}
}




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