
    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_b08c143f56cc26c25e653880.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_6ed32b52f110b01cb01905dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_dcf001b81e92534a367b62ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_d195182f1bcddaeed1c819ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_7b5897a7ccc9648d07b7a038.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_910e77b9352fbdd8f41d3f2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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_142965a2437374b6a5bb27e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_7160cc1f6c81e806cfa32b2b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_97ca4a658e37c6fd44744b93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_fdc333f7a9aa97c2761505f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117188;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_e0dfa50ec27df2c0d5e25597.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_7d6c14c3a3a5183630ce5cc1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.769531;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_3fd5cafec793dc2da0f43d00.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960449;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);}
.m2{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,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);}
.v5{vertical-align:-96.480000px;}
.v2{vertical-align:-95.160000px;}
.v1{vertical-align:-93.600000px;}
.v4{vertical-align:-72.000000px;}
.v3{vertical-align:-70.680000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.880000px;}
.ls13{letter-spacing:-2.736000px;}
.ls34{letter-spacing:-2.160000px;}
.ls2b{letter-spacing:-2.052000px;}
.lsa{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-1.296000px;}
.ls7{letter-spacing:-1.134000px;}
.ls4{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls2a{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.152400px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.164592px;}
.ls29{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.218880px;}
.ls21{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.305280px;}
.lsd{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.457800px;}
.ls6{letter-spacing:0.466800px;}
.ls1a{letter-spacing:0.486600px;}
.ls12{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.612000px;}
.lse{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.792000px;}
.ls10{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.584000px;}
.ls32{letter-spacing:1.620000px;}
.ls33{letter-spacing:1.745280px;}
.lsf{letter-spacing:2.160000px;}
.ls28{letter-spacing:3.600000px;}
.lsb{letter-spacing:5.040000px;}
.ls22{letter-spacing:6.480000px;}
.ls17{letter-spacing:7.920000px;}
.ls2d{letter-spacing:9.360000px;}
.ls37{letter-spacing:10.920000px;}
.ls1d{letter-spacing:13.680000px;}
.ls16{letter-spacing:15.120000px;}
.ls25{letter-spacing:16.560000px;}
.ls1f{letter-spacing:20.626560px;}
.ls2c{letter-spacing:20.880000px;}
.ls26{letter-spacing:23.760000px;}
.ls36{letter-spacing:32.400000px;}
.ls31{letter-spacing:33.840000px;}
.ls1e{letter-spacing:193.680000px;}
.ls20{letter-spacing:368.508000px;}
.ls27{letter-spacing:696.540000px;}
.ls15{letter-spacing:744.060000px;}
.ls8{letter-spacing:906.780000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-66.240000px;}
.ws15{word-spacing:-33.082992px;}
.ws16{word-spacing:-33.050880px;}
.ws14{word-spacing:-32.832000px;}
.ws1{word-spacing:-20.880000px;}
.wsb{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.648000px;}
.ws9{word-spacing:-18.504000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.352000px;}
.ws1d{word-spacing:-17.172000px;}
.ws1c{word-spacing:-17.017800px;}
.wse{word-spacing:-16.704000px;}
.ws5{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.254600px;}
.ws17{word-spacing:-15.948000px;}
.wsc{word-spacing:-15.606600px;}
.ws1b{word-spacing:-15.426000px;}
.wsa{word-spacing:-15.264000px;}
.wsf{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws19{word-spacing:-14.508000px;}
.ws3{word-spacing:-14.184000px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:19.140000px;}
.ws12{word-spacing:36.456000px;}
.ws10{word-spacing:324.708000px;}
.ws11{word-spacing:325.020000px;}
._35{margin-left:-6.290400px;}
._2b{margin-left:-5.220000px;}
._8{margin-left:-4.140000px;}
._2{margin-left:-2.880000px;}
._1{margin-left:-1.032000px;}
._0{width:1.368000px;}
._5{width:3.039360px;}
._b{width:4.052160px;}
._c{width:5.413440px;}
._d{width:6.418560px;}
._e{width:7.586880px;}
._f{width:8.807040px;}
._6{width:9.858240px;}
._7{width:11.431680px;}
._16{width:12.694080px;}
._10{width:13.930560px;}
._17{width:15.848640px;}
._14{width:17.338560px;}
._13{width:18.957120px;}
._12{width:20.446080px;}
._11{width:21.776640px;}
._15{width:23.086560px;}
._28{width:24.337440px;}
._1b{width:26.064000px;}
._1a{width:27.672000px;}
._23{width:29.448000px;}
._24{width:30.504000px;}
._26{width:32.136000px;}
._27{width:33.264000px;}
._1e{width:35.168640px;}
._1f{width:36.627360px;}
._22{width:38.832000px;}
._25{width:40.848000px;}
._1d{width:41.856000px;}
._1c{width:43.008000px;}
._18{width:44.592000px;}
._19{width:46.248000px;}
._2c{width:47.345280px;}
._20{width:49.536000px;}
._21{width:50.904000px;}
._34{width:52.589280px;}
._41{width:55.235520px;}
._40{width:56.307840px;}
._31{width:59.136000px;}
._2e{width:60.528000px;}
._2d{width:62.496000px;}
._32{width:69.288000px;}
._33{width:70.352640px;}
._42{width:77.888160px;}
._37{width:81.758400px;}
._36{width:83.377920px;}
._30{width:85.668000px;}
._4d{width:86.965920px;}
._3d{width:87.966720px;}
._3e{width:89.323200px;}
._39{width:91.146720px;}
._38{width:92.934720px;}
._3a{width:94.644480px;}
._53{width:96.336000px;}
._50{width:98.471040px;}
._4e{width:99.564480px;}
._4f{width:101.225760px;}
._4b{width:147.924480px;}
._4c{width:149.091360px;}
._43{width:165.661440px;}
._44{width:167.132640px;}
._29{width:175.680000px;}
._52{width:179.065440px;}
._51{width:180.498240px;}
._46{width:188.651520px;}
._45{width:190.932960px;}
._2a{width:193.680000px;}
._54{width:234.576000px;}
._49{width:247.228320px;}
._48{width:248.466240px;}
._4a{width:250.336320px;}
._3b{width:282.513600px;}
._3c{width:284.169600px;}
._3f{width:295.827840px;}
._2f{width:343.116000px;}
._47{width:503.092800px;}
._55{width:846.300000px;}
._4{width:855.888000px;}
._a{width:967.260000px;}
._3{width:1144.152000px;}
._9{width:1308.780000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.520000px;}
.fs8{font-size:54.720000px;}
.fs9{font-size:54.864000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:3.600000px;}
.ye1{bottom:3.630000px;}
.yd1{bottom:3.960000px;}
.y1fb{bottom:4.680000px;}
.ydf{bottom:18.030000px;}
.ycd{bottom:18.360000px;}
.yce{bottom:20.880000px;}
.ye0{bottom:20.910000px;}
.yd3{bottom:21.240000px;}
.y14b{bottom:21.630000px;}
.y1fa{bottom:28.440000px;}
.y13e{bottom:33.810000px;}
.y11a{bottom:44.925000px;}
.y1f9{bottom:47.160000px;}
.y1f8{bottom:66.240000px;}
.y1d{bottom:68.040000px;}
.y13f{bottom:69.990000px;}
.y11b{bottom:74.490000px;}
.y1c{bottom:88.596000px;}
.y11d{bottom:99.795000px;}
.y141{bottom:104.295000px;}
.y1f7{bottom:106.230000px;}
.y11c{bottom:113.400000px;}
.y140{bottom:119.625000px;}
.y1f6{bottom:128.190000px;}
.y11f{bottom:131.940000px;}
.y11e{bottom:145.515000px;}
.y1f5{bottom:149.790000px;}
.y1e9{bottom:153.750000px;}
.y142{bottom:153.930000px;}
.y120{bottom:170.850000px;}
.y1f4{bottom:171.750000px;}
.y133{bottom:175.350000px;}
.y17d{bottom:176.070000px;}
.y19a{bottom:177.150000px;}
.y67{bottom:179.670000px;}
.ydd{bottom:180.030000px;}
.y1bb{bottom:181.110000px;}
.y1cd{bottom:182.550000px;}
.ya6{bottom:184.710000px;}
.yc8{bottom:186.150000px;}
.y43{bottom:187.590000px;}
.y144{bottom:188.205000px;}
.y16{bottom:188.670000px;}
.y13c{bottom:189.390000px;}
.y118{bottom:189.750000px;}
.y132{bottom:192.270000px;}
.ya7{bottom:192.990000px;}
.y1f3{bottom:193.380000px;}
.y1e8{bottom:194.100000px;}
.y199{bottom:196.275000px;}
.y17c{bottom:196.995000px;}
.y66{bottom:200.235000px;}
.ydc{bottom:200.595000px;}
.y1cc{bottom:201.315000px;}
.y121{bottom:202.965000px;}
.y143{bottom:203.550000px;}
.ya5{bottom:205.635000px;}
.y15{bottom:205.995000px;}
.y42{bottom:206.715000px;}
.yff{bottom:209.235000px;}
.y131{bottom:209.595000px;}
.y13b{bottom:209.955000px;}
.y117{bottom:210.675000px;}
.y15d{bottom:212.115000px;}
.y8b{bottom:213.915000px;}
.y1f2{bottom:215.340000px;}
.y198{bottom:215.355000px;}
.y17b{bottom:217.515000px;}
.y1ba{bottom:219.315000px;}
.y1cb{bottom:220.395000px;}
.y65{bottom:221.115000px;}
.ydb{bottom:221.475000px;}
.y14{bottom:223.275000px;}
.y41{bottom:225.435000px;}
.ya4{bottom:226.155000px;}
.y130{bottom:226.875000px;}
.yc7{bottom:227.595000px;}
.yfe{bottom:229.755000px;}
.y13a{bottom:230.835000px;}
.y116{bottom:231.195000px;}
.y15c{bottom:232.995000px;}
.y197{bottom:234.075000px;}
.y8a{bottom:234.435000px;}
.y122{bottom:235.080000px;}
.y1f1{bottom:237.300000px;}
.y145{bottom:237.855000px;}
.y1b9{bottom:238.035000px;}
.y17a{bottom:238.395000px;}
.y1ca{bottom:239.475000px;}
.y13{bottom:240.555000px;}
.y64{bottom:241.635000px;}
.yda{bottom:241.995000px;}
.y12f{bottom:244.155000px;}
.ya3{bottom:247.035000px;}
.yc6{bottom:248.115000px;}
.yfd{bottom:250.635000px;}
.y139{bottom:251.355000px;}
.y115{bottom:252.075000px;}
.y196{bottom:253.155000px;}
.y15b{bottom:253.515000px;}
.y89{bottom:255.315000px;}
.y1b8{bottom:257.115000px;}
.y12{bottom:257.835000px;}
.y1c9{bottom:258.195000px;}
.y1f0{bottom:258.900000px;}
.y179{bottom:258.915000px;}
.y12e{bottom:261.435000px;}
.y63{bottom:262.515000px;}
.y40{bottom:262.875000px;}
.y123{bottom:267.195000px;}
.ya2{bottom:267.915000px;}
.yc5{bottom:268.995000px;}
.yfc{bottom:271.155000px;}
.y114{bottom:272.235000px;}
.y15a{bottom:274.395000px;}
.y11{bottom:275.115000px;}
.y88{bottom:275.835000px;}
.y1b7{bottom:276.195000px;}
.y1c8{bottom:277.275000px;}
.y12d{bottom:278.715000px;}
.y178{bottom:279.795000px;}
.y146{bottom:279.825000px;}
.y1ef{bottom:280.860000px;}
.y62{bottom:283.035000px;}
.y3f{bottom:283.395000px;}
.yc4{bottom:289.515000px;}
.y195{bottom:290.955000px;}
.ya1{bottom:292.035000px;}
.y138{bottom:292.755000px;}
.y159{bottom:294.915000px;}
.y12c{bottom:295.995000px;}
.y1c7{bottom:296.355000px;}
.y87{bottom:296.715000px;}
.y124{bottom:299.340000px;}
.y177{bottom:300.315000px;}
.y10{bottom:302.115000px;}
.y1ee{bottom:302.460000px;}
.y61{bottom:303.915000px;}
.yd9{bottom:304.275000px;}
.y194{bottom:310.035000px;}
.yc3{bottom:310.395000px;}
.yfb{bottom:312.585000px;}
.y12b{bottom:313.305000px;}
.y137{bottom:313.665000px;}
.y1b6{bottom:314.025000px;}
.y1c6{bottom:315.105000px;}
.ya0{bottom:315.465000px;}
.y158{bottom:315.825000px;}
.y86{bottom:317.265000px;}
.y3e{bottom:321.225000px;}
.y147{bottom:321.810000px;}
.y113{bottom:324.105000px;}
.y60{bottom:324.465000px;}
.yd8{bottom:324.825000px;}
.y193{bottom:329.145000px;}
.y12a{bottom:330.585000px;}
.yc2{bottom:330.945000px;}
.yfa{bottom:333.105000px;}
.y136{bottom:334.185000px;}
.y9f{bottom:336.345000px;}
.y85{bottom:338.145000px;}
.y176{bottom:342.105000px;}
.y112{bottom:344.985000px;}
.y5f{bottom:345.345000px;}
.yd7{bottom:345.705000px;}
.y1ed{bottom:346.425000px;}
.y129{bottom:347.865000px;}
.yc1{bottom:351.465000px;}
.y14f{bottom:351.825000px;}
.y1b5{bottom:352.185000px;}
.yf{bottom:352.905000px;}
.y1c5{bottom:353.265000px;}
.yf9{bottom:353.625000px;}
.y135{bottom:355.065000px;}
.y9e{bottom:357.225000px;}
.y3d{bottom:357.945000px;}
.y84{bottom:358.665000px;}
.y148{bottom:363.780000px;}
.y128{bottom:365.145000px;}
.y111{bottom:365.505000px;}
.y5e{bottom:365.865000px;}
.yd6{bottom:366.225000px;}
.y192{bottom:366.945000px;}
.y1ec{bottom:368.025000px;}
.y1b4{bottom:370.905000px;}
.yc0{bottom:371.985000px;}
.y14e{bottom:372.345000px;}
.yf8{bottom:374.865000px;}
.ye{bottom:375.225000px;}
.y157{bottom:377.745000px;}
.y9d{bottom:378.105000px;}
.y83{bottom:379.545000px;}
.y127{bottom:382.425000px;}
.y191{bottom:386.025000px;}
.y110{bottom:386.385000px;}
.y5d{bottom:386.745000px;}
.yd5{bottom:387.105000px;}
.y1fe{bottom:388.545000px;}
.y1e3{bottom:389.265000px;}
.y1b3{bottom:389.985000px;}
.y175{bottom:390.345000px;}
.y1c4{bottom:391.065000px;}
.y134{bottom:392.505000px;}
.ybf{bottom:392.865000px;}
.y14d{bottom:393.225000px;}
.yf7{bottom:395.385000px;}
.y9c{bottom:398.625000px;}
.y82{bottom:400.065000px;}
.y3c{bottom:401.505000px;}
.y190{bottom:405.105000px;}
.y149{bottom:405.720000px;}
.y13d{bottom:406.080000px;}
.y10f{bottom:406.905000px;}
.y5c{bottom:407.265000px;}
.y1b2{bottom:409.065000px;}
.y1fd{bottom:409.425000px;}
.y1c3{bottom:410.145000px;}
.y1e2{bottom:410.505000px;}
.y1eb{bottom:411.945000px;}
.ybe{bottom:413.745000px;}
.y174{bottom:414.465000px;}
.yf6{bottom:416.265000px;}
.y3b{bottom:418.785000px;}
.y156{bottom:419.145000px;}
.y9b{bottom:419.505000px;}
.yd{bottom:420.585000px;}
.y81{bottom:420.945000px;}
.y18f{bottom:423.825000px;}
.yd4{bottom:424.545000px;}
.y10e{bottom:427.785000px;}
.y5b{bottom:428.145000px;}
.y1c2{bottom:429.270000px;}
.y1e1{bottom:431.070000px;}
.y1e7{bottom:432.135000px;}
.y1ea{bottom:433.575000px;}
.y1fc{bottom:433.590000px;}
.ybd{bottom:434.670000px;}
.y173{bottom:435.030000px;}
.y3a{bottom:436.110000px;}
.yf5{bottom:436.830000px;}
.y9a{bottom:440.070000px;}
.y80{bottom:441.510000px;}
.y18e{bottom:442.950000px;}
.y1b1{bottom:446.910000px;}
.y14a{bottom:447.690000px;}
.y1c1{bottom:447.990000px;}
.y10d{bottom:448.350000px;}
.y5a{bottom:448.710000px;}
.yc{bottom:451.590000px;}
.y1e0{bottom:451.950000px;}
.y39{bottom:453.390000px;}
.ybc{bottom:455.190000px;}
.y172{bottom:455.910000px;}
.yf4{bottom:457.710000px;}
.y155{bottom:460.590000px;}
.y99{bottom:460.950000px;}
.y7f{bottom:462.030000px;}
.yd2{bottom:463.830000px;}
.y1b0{bottom:465.990000px;}
.y1c0{bottom:467.070000px;}
.y10c{bottom:469.230000px;}
.y59{bottom:469.590000px;}
.y38{bottom:470.310000px;}
.y1df{bottom:472.470000px;}
.ybb{bottom:476.070000px;}
.y171{bottom:476.430000px;}
.y1e6{bottom:477.870000px;}
.yf3{bottom:478.230000px;}
.y18d{bottom:480.750000px;}
.y98{bottom:481.470000px;}
.y126{bottom:482.550000px;}
.yb{bottom:482.910000px;}
.y1af{bottom:485.070000px;}
.y1bf{bottom:485.790000px;}
.y1ce{bottom:486.150000px;}
.y37{bottom:487.590000px;}
.y10b{bottom:489.750000px;}
.y58{bottom:490.110000px;}
.y1de{bottom:493.350000px;}
.yba{bottom:496.590000px;}
.y170{bottom:497.310000px;}
.yf2{bottom:499.110000px;}
.y18c{bottom:499.830000px;}
.y154{bottom:501.990000px;}
.y97{bottom:502.350000px;}
.y125{bottom:503.070000px;}
.y7e{bottom:503.430000px;}
.y1ae{bottom:503.790000px;}
.y36{bottom:504.870000px;}
.y10a{bottom:510.630000px;}
.y57{bottom:510.990000px;}
.y1dd{bottom:513.870000px;}
.yd0{bottom:514.950000px;}
.yb9{bottom:517.470000px;}
.y16f{bottom:517.830000px;}
.y18b{bottom:518.910000px;}
.yf1{bottom:519.630000px;}
.y35{bottom:522.150000px;}
.y96{bottom:522.870000px;}
.ya{bottom:523.950000px;}
.y7d{bottom:524.310000px;}
.y109{bottom:531.150000px;}
.y56{bottom:531.510000px;}
.y1dc{bottom:534.750000px;}
.yb8{bottom:537.990000px;}
.y16e{bottom:538.710000px;}
.y34{bottom:539.430000px;}
.yf0{bottom:540.510000px;}
.y1ad{bottom:541.950000px;}
.y1be{bottom:543.030000px;}
.y95{bottom:543.750000px;}
.y7c{bottom:544.830000px;}
.ycc{bottom:548.820000px;}
.y108{bottom:552.060000px;}
.y55{bottom:552.420000px;}
.y1db{bottom:555.300000px;}
.y33{bottom:556.740000px;}
.y9{bottom:558.180000px;}
.yb7{bottom:558.900000px;}
.y16d{bottom:559.260000px;}
.y1ac{bottom:560.700000px;}
.yef{bottom:561.060000px;}
.y1bd{bottom:562.140000px;}
.y94{bottom:564.300000px;}
.y7b{bottom:565.740000px;}
.y107{bottom:572.580000px;}
.y54{bottom:572.940000px;}
.y32{bottom:574.020000px;}
.y18a{bottom:575.820000px;}
.y1da{bottom:576.180000px;}
.y153{bottom:578.340000px;}
.y14c{bottom:579.060000px;}
.yb6{bottom:579.420000px;}
.y16c{bottom:580.140000px;}
.y1bc{bottom:580.860000px;}
.yee{bottom:581.940000px;}
.y93{bottom:585.180000px;}
.y7a{bottom:586.260000px;}
.y31{bottom:591.300000px;}
.y8{bottom:592.740000px;}
.y106{bottom:593.460000px;}
.y53{bottom:593.820000px;}
.y189{bottom:594.900000px;}
.y152{bottom:595.620000px;}
.ycb{bottom:596.340000px;}
.y1d9{bottom:596.700000px;}
.y1ab{bottom:599.940000px;}
.yb5{bottom:600.300000px;}
.y16b{bottom:600.660000px;}
.yed{bottom:602.460000px;}
.y92{bottom:605.700000px;}
.y79{bottom:607.140000px;}
.y119{bottom:607.680000px;}
.y30{bottom:608.580000px;}
.y151{bottom:612.540000px;}
.yca{bottom:613.620000px;}
.y105{bottom:613.980000px;}
.y52{bottom:614.340000px;}
.y1d8{bottom:617.580000px;}
.y1aa{bottom:619.020000px;}
.yb4{bottom:620.820000px;}
.yec{bottom:623.340000px;}
.y2f{bottom:625.860000px;}
.y91{bottom:626.580000px;}
.y7{bottom:627.300000px;}
.y78{bottom:627.660000px;}
.yc9{bottom:630.540000px;}
.y188{bottom:632.700000px;}
.y104{bottom:634.500000px;}
.y51{bottom:635.220000px;}
.y1a9{bottom:637.740000px;}
.y1d7{bottom:638.100000px;}
.y16a{bottom:638.820000px;}
.yb3{bottom:641.700000px;}
.y2e{bottom:643.140000px;}
.yeb{bottom:643.860000px;}
.y90{bottom:647.100000px;}
.y77{bottom:648.540000px;}
.y187{bottom:651.780000px;}
.y103{bottom:655.020000px;}
.y50{bottom:655.740000px;}
.y169{bottom:656.100000px;}
.y1a8{bottom:656.820000px;}
.y1d6{bottom:658.980000px;}
.y2d{bottom:660.420000px;}
.yb2{bottom:662.220000px;}
.yea{bottom:664.770000px;}
.y8f{bottom:668.010000px;}
.y76{bottom:669.090000px;}
.y186{bottom:670.530000px;}
.y168{bottom:673.410000px;}
.y102{bottom:675.930000px;}
.y4f{bottom:676.650000px;}
.y2c{bottom:677.370000px;}
.y6{bottom:677.730000px;}
.y1d5{bottom:679.530000px;}
.yb1{bottom:683.130000px;}
.ye9{bottom:685.290000px;}
.y8e{bottom:688.530000px;}
.y185{bottom:689.610000px;}
.y75{bottom:689.970000px;}
.y167{bottom:690.690000px;}
.y1a7{bottom:695.010000px;}
.y4e{bottom:697.170000px;}
.y5{bottom:698.250000px;}
.y1d4{bottom:700.410000px;}
.yb0{bottom:703.650000px;}
.y2b{bottom:704.730000px;}
.ye8{bottom:705.450000px;}
.y166{bottom:707.970000px;}
.y184{bottom:708.690000px;}
.y8d{bottom:709.410000px;}
.y74{bottom:710.490000px;}
.y1a6{bottom:713.730000px;}
.y4d{bottom:718.050000px;}
.y4{bottom:719.130000px;}
.y1d3{bottom:720.930000px;}
.y101{bottom:721.290000px;}
.ye7{bottom:722.730000px;}
.yaf{bottom:724.530000px;}
.y183{bottom:727.770000px;}
.y8c{bottom:729.930000px;}
.y73{bottom:731.370000px;}
.y1a5{bottom:732.810000px;}
.ye6{bottom:740.010000px;}
.y1d2{bottom:741.810000px;}
.y165{bottom:743.610000px;}
.y3{bottom:744.330000px;}
.yae{bottom:745.050000px;}
.y100{bottom:745.410000px;}
.y2a{bottom:745.770000px;}
.y182{bottom:746.490000px;}
.y72{bottom:751.890000px;}
.ye5{bottom:762.330000px;}
.y29{bottom:763.050000px;}
.y164{bottom:764.490000px;}
.y4c{bottom:765.570000px;}
.yad{bottom:765.930000px;}
.y2{bottom:769.530000px;}
.y1a4{bottom:770.610000px;}
.y150{bottom:772.410000px;}
.y71{bottom:772.770000px;}
.y1d1{bottom:783.255000px;}
.y181{bottom:784.695000px;}
.y163{bottom:785.055000px;}
.y1{bottom:785.775000px;}
.yac{bottom:786.495000px;}
.y28{bottom:789.375000px;}
.y1a3{bottom:789.735000px;}
.y4b{bottom:792.255000px;}
.y70{bottom:793.335000px;}
.ye4{bottom:795.855000px;}
.y1d0{bottom:803.775000px;}
.y180{bottom:804.135000px;}
.y162{bottom:805.935000px;}
.y27{bottom:806.655000px;}
.yab{bottom:807.375000px;}
.y1a2{bottom:808.815000px;}
.y4a{bottom:810.975000px;}
.y6f{bottom:814.215000px;}
.y26{bottom:823.935000px;}
.y49{bottom:824.655000px;}
.y161{bottom:826.455000px;}
.y1a1{bottom:827.535000px;}
.yaa{bottom:827.895000px;}
.y17f{bottom:828.255000px;}
.ye3{bottom:829.695000px;}
.y6e{bottom:834.735000px;}
.y25{bottom:841.215000px;}
.y1cf{bottom:845.175000px;}
.y1a0{bottom:846.615000px;}
.y160{bottom:847.335000px;}
.ya9{bottom:848.775000px;}
.y17e{bottom:852.375000px;}
.y6d{bottom:855.615000px;}
.y24{bottom:858.495000px;}
.ye2{bottom:863.535000px;}
.y19f{bottom:865.695000px;}
.ya8{bottom:869.655000px;}
.y23{bottom:875.775000px;}
.y6c{bottom:876.135000px;}
.y48{bottom:877.215000px;}
.y19e{bottom:884.775000px;}
.y15f{bottom:885.135000px;}
.y22{bottom:893.055000px;}
.y47{bottom:894.495000px;}
.y6b{bottom:897.015000px;}
.yde{bottom:897.375000px;}
.y15e{bottom:902.445000px;}
.y19d{bottom:903.525000px;}
.y21{bottom:910.365000px;}
.y46{bottom:913.605000px;}
.y6a{bottom:917.565000px;}
.y19c{bottom:922.605000px;}
.y20{bottom:927.645000px;}
.y1e5{bottom:931.605000px;}
.y45{bottom:932.685000px;}
.y69{bottom:938.445000px;}
.y19b{bottom:941.685000px;}
.y1f{bottom:944.565000px;}
.y1e4{bottom:955.725000px;}
.y68{bottom:958.965000px;}
.y44{bottom:960.405000px;}
.y1e{bottom:961.845000px;}
.y1b{bottom:1038.930000px;}
.y1a{bottom:1059.090000px;}
.y19{bottom:1076.370000px;}
.y18{bottom:1093.650000px;}
.y17{bottom:1110.930000px;}
.he{height:17.280000px;}
.h12{height:34.433437px;}
.hd{height:34.560000px;}
.hf{height:34.596000px;}
.h14{height:39.650625px;}
.h15{height:39.754969px;}
.h7{height:59.328281px;}
.h6{height:59.357813px;}
.h1c{height:59.383125px;}
.h10{height:60.155156px;}
.h8{height:60.952500px;}
.h16{height:62.163910px;}
.hb{height:64.546875px;}
.h18{height:64.978594px;}
.ha{height:65.010937px;}
.h9{height:66.757500px;}
.h17{height:67.824844px;}
.h1d{height:68.084282px;}
.h1a{height:70.628906px;}
.h1{height:70.664062px;}
.hc{height:72.562500px;}
.h5{height:84.172500px;}
.h19{height:91.863281px;}
.h4{height:94.642734px;}
.h3{height:105.943359px;}
.h2{height:120.453750px;}
.h11{height:344.520000px;}
.h1b{height:448.350000px;}
.h13{height:518.400000px;}
.h0{height:1188.000000px;}
.w9{width:54.396000px;}
.w7{width:126.756000px;}
.w8{width:128.196000px;}
.w3{width:183.675000px;}
.w5{width:185.475000px;}
.w2{width:186.195000px;}
.w4{width:189.795000px;}
.wa{width:224.385000px;}
.w6{width:225.465000px;}
.wd{width:232.635000px;}
.we{width:342.870000px;}
.wc{width:568.080000px;}
.wb{width:575.640000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:6.480000px;}
.x14{left:7.560000px;}
.x20{left:9.750000px;}
.x3b{left:12.630000px;}
.x1b{left:13.680000px;}
.x1d{left:15.840000px;}
.x24{left:19.470000px;}
.x3c{left:20.775000px;}
.x35{left:28.770000px;}
.x31{left:35.970000px;}
.x25{left:40.710000px;}
.x26{left:46.470000px;}
.x1e{left:49.005000px;}
.x23{left:55.800000px;}
.x3e{left:61.380000px;}
.x3d{left:69.510000px;}
.x22{left:72.390000px;}
.x32{left:86.370000px;}
.x36{left:93.570000px;}
.x27{left:94.710000px;}
.x40{left:102.030000px;}
.x37{left:107.970000px;}
.x3f{left:110.160000px;}
.x33{left:115.200000px;}
.x34{left:144.000000px;}
.x2{left:169.994986px;}
.x7{left:171.794986px;}
.x2f{left:172.800000px;}
.x2a{left:178.274986px;}
.x4{left:180.794986px;}
.x3a{left:182.520000px;}
.x9{left:186.194986px;}
.x13{left:188.355000px;}
.x21{left:189.795000px;}
.x39{left:191.880000px;}
.x8{left:203.114986px;}
.x5{left:204.554986px;}
.x38{left:209.234986px;}
.x41{left:210.525000px;}
.x10{left:212.474986px;}
.x11{left:221.474986px;}
.x12{left:223.274986px;}
.x2c{left:226.544986px;}
.x30{left:229.785000px;}
.x2e{left:249.944986px;}
.x28{left:254.984986px;}
.x29{left:265.784986px;}
.x43{left:276.224986px;}
.x2b{left:298.904986px;}
.xb{left:302.504986px;}
.xe{left:309.704986px;}
.xa{left:335.669986px;}
.x1{left:357.629986px;}
.x6{left:359.069986px;}
.x2d{left:374.549986px;}
.x15{left:375.990000px;}
.x44{left:390.389986px;}
.x19{left:403.349986px;}
.x45{left:404.430000px;}
.x42{left:406.589986px;}
.x1a{left:415.620000px;}
.xc{left:417.419986px;}
.xd{left:419.939986px;}
.xf{left:458.819986px;}
.x18{left:485.459986px;}
.x1c{left:543.810000px;}
.x16{left:561.450000px;}
.x1f{left:673.455000px;}
.x3{left:748.004986px;}
@media print{
.v5{vertical-align:-85.760000pt;}
.v2{vertical-align:-84.586667pt;}
.v1{vertical-align:-83.200000pt;}
.v4{vertical-align:-64.000000pt;}
.v3{vertical-align:-62.826667pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.560000pt;}
.ls13{letter-spacing:-2.432000pt;}
.ls34{letter-spacing:-1.920000pt;}
.ls2b{letter-spacing:-1.824000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-1.152000pt;}
.ls7{letter-spacing:-1.008000pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls2a{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.135467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.146304pt;}
.ls29{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.194560pt;}
.ls21{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.271360pt;}
.lsd{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.406933pt;}
.ls6{letter-spacing:0.414933pt;}
.ls1a{letter-spacing:0.432533pt;}
.ls12{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.704000pt;}
.ls10{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.408000pt;}
.ls32{letter-spacing:1.440000pt;}
.ls33{letter-spacing:1.551360pt;}
.lsf{letter-spacing:1.920000pt;}
.ls28{letter-spacing:3.200000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls22{letter-spacing:5.760000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls2d{letter-spacing:8.320000pt;}
.ls37{letter-spacing:9.706667pt;}
.ls1d{letter-spacing:12.160000pt;}
.ls16{letter-spacing:13.440000pt;}
.ls25{letter-spacing:14.720000pt;}
.ls1f{letter-spacing:18.334720pt;}
.ls2c{letter-spacing:18.560000pt;}
.ls26{letter-spacing:21.120000pt;}
.ls36{letter-spacing:28.800000pt;}
.ls31{letter-spacing:30.080000pt;}
.ls1e{letter-spacing:172.160000pt;}
.ls20{letter-spacing:327.562667pt;}
.ls27{letter-spacing:619.146667pt;}
.ls15{letter-spacing:661.386667pt;}
.ls8{letter-spacing:806.026667pt;}
.ws18{word-spacing:-58.880000pt;}
.ws15{word-spacing:-29.407104pt;}
.ws16{word-spacing:-29.378560pt;}
.ws14{word-spacing:-29.184000pt;}
.ws1{word-spacing:-18.560000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.576000pt;}
.ws9{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.424000pt;}
.ws1d{word-spacing:-15.264000pt;}
.ws1c{word-spacing:-15.126933pt;}
.wse{word-spacing:-14.848000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.448533pt;}
.ws17{word-spacing:-14.176000pt;}
.wsc{word-spacing:-13.872533pt;}
.ws1b{word-spacing:-13.712000pt;}
.wsa{word-spacing:-13.568000pt;}
.wsf{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws19{word-spacing:-12.896000pt;}
.ws3{word-spacing:-12.608000pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:17.013333pt;}
.ws12{word-spacing:32.405333pt;}
.ws10{word-spacing:288.629333pt;}
.ws11{word-spacing:288.906667pt;}
._35{margin-left:-5.591467pt;}
._2b{margin-left:-4.640000pt;}
._8{margin-left:-3.680000pt;}
._2{margin-left:-2.560000pt;}
._1{margin-left:-0.917333pt;}
._0{width:1.216000pt;}
._5{width:2.701653pt;}
._b{width:3.601920pt;}
._c{width:4.811947pt;}
._d{width:5.705387pt;}
._e{width:6.743893pt;}
._f{width:7.828480pt;}
._6{width:8.762880pt;}
._7{width:10.161493pt;}
._16{width:11.283627pt;}
._10{width:12.382720pt;}
._17{width:14.087680pt;}
._14{width:15.412053pt;}
._13{width:16.850773pt;}
._12{width:18.174293pt;}
._11{width:19.357013pt;}
._15{width:20.521387pt;}
._28{width:21.633280pt;}
._1b{width:23.168000pt;}
._1a{width:24.597333pt;}
._23{width:26.176000pt;}
._24{width:27.114667pt;}
._26{width:28.565333pt;}
._27{width:29.568000pt;}
._1e{width:31.261013pt;}
._1f{width:32.557653pt;}
._22{width:34.517333pt;}
._25{width:36.309333pt;}
._1d{width:37.205333pt;}
._1c{width:38.229333pt;}
._18{width:39.637333pt;}
._19{width:41.109333pt;}
._2c{width:42.084693pt;}
._20{width:44.032000pt;}
._21{width:45.248000pt;}
._34{width:46.746027pt;}
._41{width:49.098240pt;}
._40{width:50.051413pt;}
._31{width:52.565333pt;}
._2e{width:53.802667pt;}
._2d{width:55.552000pt;}
._32{width:61.589333pt;}
._33{width:62.535680pt;}
._42{width:69.233920pt;}
._37{width:72.674133pt;}
._36{width:74.113707pt;}
._30{width:76.149333pt;}
._4d{width:77.303040pt;}
._3d{width:78.192640pt;}
._3e{width:79.398400pt;}
._39{width:81.019307pt;}
._38{width:82.608640pt;}
._3a{width:84.128427pt;}
._53{width:85.632000pt;}
._50{width:87.529813pt;}
._4e{width:88.501760pt;}
._4f{width:89.978453pt;}
._4b{width:131.488427pt;}
._4c{width:132.525653pt;}
._43{width:147.254613pt;}
._44{width:148.562347pt;}
._29{width:156.160000pt;}
._52{width:159.169280pt;}
._51{width:160.442880pt;}
._46{width:167.690240pt;}
._45{width:169.718187pt;}
._2a{width:172.160000pt;}
._54{width:208.512000pt;}
._49{width:219.758507pt;}
._48{width:220.858880pt;}
._4a{width:222.521173pt;}
._3b{width:251.123200pt;}
._3c{width:252.595200pt;}
._3f{width:262.958080pt;}
._2f{width:304.992000pt;}
._47{width:447.193600pt;}
._55{width:752.266667pt;}
._4{width:760.789333pt;}
._a{width:859.786667pt;}
._3{width:1017.024000pt;}
._9{width:1163.360000pt;}
.fs7{font-size:42.240000pt;}
.fs8{font-size:48.640000pt;}
.fs9{font-size:48.768000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.200000pt;}
.ye1{bottom:3.226667pt;}
.yd1{bottom:3.520000pt;}
.y1fb{bottom:4.160000pt;}
.ydf{bottom:16.026667pt;}
.ycd{bottom:16.320000pt;}
.yce{bottom:18.560000pt;}
.ye0{bottom:18.586667pt;}
.yd3{bottom:18.880000pt;}
.y14b{bottom:19.226667pt;}
.y1fa{bottom:25.280000pt;}
.y13e{bottom:30.053333pt;}
.y11a{bottom:39.933333pt;}
.y1f9{bottom:41.920000pt;}
.y1f8{bottom:58.880000pt;}
.y1d{bottom:60.480000pt;}
.y13f{bottom:62.213333pt;}
.y11b{bottom:66.213333pt;}
.y1c{bottom:78.752000pt;}
.y11d{bottom:88.706667pt;}
.y141{bottom:92.706667pt;}
.y1f7{bottom:94.426667pt;}
.y11c{bottom:100.800000pt;}
.y140{bottom:106.333333pt;}
.y1f6{bottom:113.946667pt;}
.y11f{bottom:117.280000pt;}
.y11e{bottom:129.346667pt;}
.y1f5{bottom:133.146667pt;}
.y1e9{bottom:136.666667pt;}
.y142{bottom:136.826667pt;}
.y120{bottom:151.866667pt;}
.y1f4{bottom:152.666667pt;}
.y133{bottom:155.866667pt;}
.y17d{bottom:156.506667pt;}
.y19a{bottom:157.466667pt;}
.y67{bottom:159.706667pt;}
.ydd{bottom:160.026667pt;}
.y1bb{bottom:160.986667pt;}
.y1cd{bottom:162.266667pt;}
.ya6{bottom:164.186667pt;}
.yc8{bottom:165.466667pt;}
.y43{bottom:166.746667pt;}
.y144{bottom:167.293333pt;}
.y16{bottom:167.706667pt;}
.y13c{bottom:168.346667pt;}
.y118{bottom:168.666667pt;}
.y132{bottom:170.906667pt;}
.ya7{bottom:171.546667pt;}
.y1f3{bottom:171.893333pt;}
.y1e8{bottom:172.533333pt;}
.y199{bottom:174.466667pt;}
.y17c{bottom:175.106667pt;}
.y66{bottom:177.986667pt;}
.ydc{bottom:178.306667pt;}
.y1cc{bottom:178.946667pt;}
.y121{bottom:180.413333pt;}
.y143{bottom:180.933333pt;}
.ya5{bottom:182.786667pt;}
.y15{bottom:183.106667pt;}
.y42{bottom:183.746667pt;}
.yff{bottom:185.986667pt;}
.y131{bottom:186.306667pt;}
.y13b{bottom:186.626667pt;}
.y117{bottom:187.266667pt;}
.y15d{bottom:188.546667pt;}
.y8b{bottom:190.146667pt;}
.y1f2{bottom:191.413333pt;}
.y198{bottom:191.426667pt;}
.y17b{bottom:193.346667pt;}
.y1ba{bottom:194.946667pt;}
.y1cb{bottom:195.906667pt;}
.y65{bottom:196.546667pt;}
.ydb{bottom:196.866667pt;}
.y14{bottom:198.466667pt;}
.y41{bottom:200.386667pt;}
.ya4{bottom:201.026667pt;}
.y130{bottom:201.666667pt;}
.yc7{bottom:202.306667pt;}
.yfe{bottom:204.226667pt;}
.y13a{bottom:205.186667pt;}
.y116{bottom:205.506667pt;}
.y15c{bottom:207.106667pt;}
.y197{bottom:208.066667pt;}
.y8a{bottom:208.386667pt;}
.y122{bottom:208.960000pt;}
.y1f1{bottom:210.933333pt;}
.y145{bottom:211.426667pt;}
.y1b9{bottom:211.586667pt;}
.y17a{bottom:211.906667pt;}
.y1ca{bottom:212.866667pt;}
.y13{bottom:213.826667pt;}
.y64{bottom:214.786667pt;}
.yda{bottom:215.106667pt;}
.y12f{bottom:217.026667pt;}
.ya3{bottom:219.586667pt;}
.yc6{bottom:220.546667pt;}
.yfd{bottom:222.786667pt;}
.y139{bottom:223.426667pt;}
.y115{bottom:224.066667pt;}
.y196{bottom:225.026667pt;}
.y15b{bottom:225.346667pt;}
.y89{bottom:226.946667pt;}
.y1b8{bottom:228.546667pt;}
.y12{bottom:229.186667pt;}
.y1c9{bottom:229.506667pt;}
.y1f0{bottom:230.133333pt;}
.y179{bottom:230.146667pt;}
.y12e{bottom:232.386667pt;}
.y63{bottom:233.346667pt;}
.y40{bottom:233.666667pt;}
.y123{bottom:237.506667pt;}
.ya2{bottom:238.146667pt;}
.yc5{bottom:239.106667pt;}
.yfc{bottom:241.026667pt;}
.y114{bottom:241.986667pt;}
.y15a{bottom:243.906667pt;}
.y11{bottom:244.546667pt;}
.y88{bottom:245.186667pt;}
.y1b7{bottom:245.506667pt;}
.y1c8{bottom:246.466667pt;}
.y12d{bottom:247.746667pt;}
.y178{bottom:248.706667pt;}
.y146{bottom:248.733333pt;}
.y1ef{bottom:249.653333pt;}
.y62{bottom:251.586667pt;}
.y3f{bottom:251.906667pt;}
.yc4{bottom:257.346667pt;}
.y195{bottom:258.626667pt;}
.ya1{bottom:259.586667pt;}
.y138{bottom:260.226667pt;}
.y159{bottom:262.146667pt;}
.y12c{bottom:263.106667pt;}
.y1c7{bottom:263.426667pt;}
.y87{bottom:263.746667pt;}
.y124{bottom:266.080000pt;}
.y177{bottom:266.946667pt;}
.y10{bottom:268.546667pt;}
.y1ee{bottom:268.853333pt;}
.y61{bottom:270.146667pt;}
.yd9{bottom:270.466667pt;}
.y194{bottom:275.586667pt;}
.yc3{bottom:275.906667pt;}
.yfb{bottom:277.853333pt;}
.y12b{bottom:278.493333pt;}
.y137{bottom:278.813333pt;}
.y1b6{bottom:279.133333pt;}
.y1c6{bottom:280.093333pt;}
.ya0{bottom:280.413333pt;}
.y158{bottom:280.733333pt;}
.y86{bottom:282.013333pt;}
.y3e{bottom:285.533333pt;}
.y147{bottom:286.053333pt;}
.y113{bottom:288.093333pt;}
.y60{bottom:288.413333pt;}
.yd8{bottom:288.733333pt;}
.y193{bottom:292.573333pt;}
.y12a{bottom:293.853333pt;}
.yc2{bottom:294.173333pt;}
.yfa{bottom:296.093333pt;}
.y136{bottom:297.053333pt;}
.y9f{bottom:298.973333pt;}
.y85{bottom:300.573333pt;}
.y176{bottom:304.093333pt;}
.y112{bottom:306.653333pt;}
.y5f{bottom:306.973333pt;}
.yd7{bottom:307.293333pt;}
.y1ed{bottom:307.933333pt;}
.y129{bottom:309.213333pt;}
.yc1{bottom:312.413333pt;}
.y14f{bottom:312.733333pt;}
.y1b5{bottom:313.053333pt;}
.yf{bottom:313.693333pt;}
.y1c5{bottom:314.013333pt;}
.yf9{bottom:314.333333pt;}
.y135{bottom:315.613333pt;}
.y9e{bottom:317.533333pt;}
.y3d{bottom:318.173333pt;}
.y84{bottom:318.813333pt;}
.y148{bottom:323.360000pt;}
.y128{bottom:324.573333pt;}
.y111{bottom:324.893333pt;}
.y5e{bottom:325.213333pt;}
.yd6{bottom:325.533333pt;}
.y192{bottom:326.173333pt;}
.y1ec{bottom:327.133333pt;}
.y1b4{bottom:329.693333pt;}
.yc0{bottom:330.653333pt;}
.y14e{bottom:330.973333pt;}
.yf8{bottom:333.213333pt;}
.ye{bottom:333.533333pt;}
.y157{bottom:335.773333pt;}
.y9d{bottom:336.093333pt;}
.y83{bottom:337.373333pt;}
.y127{bottom:339.933333pt;}
.y191{bottom:343.133333pt;}
.y110{bottom:343.453333pt;}
.y5d{bottom:343.773333pt;}
.yd5{bottom:344.093333pt;}
.y1fe{bottom:345.373333pt;}
.y1e3{bottom:346.013333pt;}
.y1b3{bottom:346.653333pt;}
.y175{bottom:346.973333pt;}
.y1c4{bottom:347.613333pt;}
.y134{bottom:348.893333pt;}
.ybf{bottom:349.213333pt;}
.y14d{bottom:349.533333pt;}
.yf7{bottom:351.453333pt;}
.y9c{bottom:354.333333pt;}
.y82{bottom:355.613333pt;}
.y3c{bottom:356.893333pt;}
.y190{bottom:360.093333pt;}
.y149{bottom:360.640000pt;}
.y13d{bottom:360.960000pt;}
.y10f{bottom:361.693333pt;}
.y5c{bottom:362.013333pt;}
.y1b2{bottom:363.613333pt;}
.y1fd{bottom:363.933333pt;}
.y1c3{bottom:364.573333pt;}
.y1e2{bottom:364.893333pt;}
.y1eb{bottom:366.173333pt;}
.ybe{bottom:367.773333pt;}
.y174{bottom:368.413333pt;}
.yf6{bottom:370.013333pt;}
.y3b{bottom:372.253333pt;}
.y156{bottom:372.573333pt;}
.y9b{bottom:372.893333pt;}
.yd{bottom:373.853333pt;}
.y81{bottom:374.173333pt;}
.y18f{bottom:376.733333pt;}
.yd4{bottom:377.373333pt;}
.y10e{bottom:380.253333pt;}
.y5b{bottom:380.573333pt;}
.y1c2{bottom:381.573333pt;}
.y1e1{bottom:383.173333pt;}
.y1e7{bottom:384.120000pt;}
.y1ea{bottom:385.400000pt;}
.y1fc{bottom:385.413333pt;}
.ybd{bottom:386.373333pt;}
.y173{bottom:386.693333pt;}
.y3a{bottom:387.653333pt;}
.yf5{bottom:388.293333pt;}
.y9a{bottom:391.173333pt;}
.y80{bottom:392.453333pt;}
.y18e{bottom:393.733333pt;}
.y1b1{bottom:397.253333pt;}
.y14a{bottom:397.946667pt;}
.y1c1{bottom:398.213333pt;}
.y10d{bottom:398.533333pt;}
.y5a{bottom:398.853333pt;}
.yc{bottom:401.413333pt;}
.y1e0{bottom:401.733333pt;}
.y39{bottom:403.013333pt;}
.ybc{bottom:404.613333pt;}
.y172{bottom:405.253333pt;}
.yf4{bottom:406.853333pt;}
.y155{bottom:409.413333pt;}
.y99{bottom:409.733333pt;}
.y7f{bottom:410.693333pt;}
.yd2{bottom:412.293333pt;}
.y1b0{bottom:414.213333pt;}
.y1c0{bottom:415.173333pt;}
.y10c{bottom:417.093333pt;}
.y59{bottom:417.413333pt;}
.y38{bottom:418.053333pt;}
.y1df{bottom:419.973333pt;}
.ybb{bottom:423.173333pt;}
.y171{bottom:423.493333pt;}
.y1e6{bottom:424.773333pt;}
.yf3{bottom:425.093333pt;}
.y18d{bottom:427.333333pt;}
.y98{bottom:427.973333pt;}
.y126{bottom:428.933333pt;}
.yb{bottom:429.253333pt;}
.y1af{bottom:431.173333pt;}
.y1bf{bottom:431.813333pt;}
.y1ce{bottom:432.133333pt;}
.y37{bottom:433.413333pt;}
.y10b{bottom:435.333333pt;}
.y58{bottom:435.653333pt;}
.y1de{bottom:438.533333pt;}
.yba{bottom:441.413333pt;}
.y170{bottom:442.053333pt;}
.yf2{bottom:443.653333pt;}
.y18c{bottom:444.293333pt;}
.y154{bottom:446.213333pt;}
.y97{bottom:446.533333pt;}
.y125{bottom:447.173333pt;}
.y7e{bottom:447.493333pt;}
.y1ae{bottom:447.813333pt;}
.y36{bottom:448.773333pt;}
.y10a{bottom:453.893333pt;}
.y57{bottom:454.213333pt;}
.y1dd{bottom:456.773333pt;}
.yd0{bottom:457.733333pt;}
.yb9{bottom:459.973333pt;}
.y16f{bottom:460.293333pt;}
.y18b{bottom:461.253333pt;}
.yf1{bottom:461.893333pt;}
.y35{bottom:464.133333pt;}
.y96{bottom:464.773333pt;}
.ya{bottom:465.733333pt;}
.y7d{bottom:466.053333pt;}
.y109{bottom:472.133333pt;}
.y56{bottom:472.453333pt;}
.y1dc{bottom:475.333333pt;}
.yb8{bottom:478.213333pt;}
.y16e{bottom:478.853333pt;}
.y34{bottom:479.493333pt;}
.yf0{bottom:480.453333pt;}
.y1ad{bottom:481.733333pt;}
.y1be{bottom:482.693333pt;}
.y95{bottom:483.333333pt;}
.y7c{bottom:484.293333pt;}
.ycc{bottom:487.840000pt;}
.y108{bottom:490.720000pt;}
.y55{bottom:491.040000pt;}
.y1db{bottom:493.600000pt;}
.y33{bottom:494.880000pt;}
.y9{bottom:496.160000pt;}
.yb7{bottom:496.800000pt;}
.y16d{bottom:497.120000pt;}
.y1ac{bottom:498.400000pt;}
.yef{bottom:498.720000pt;}
.y1bd{bottom:499.680000pt;}
.y94{bottom:501.600000pt;}
.y7b{bottom:502.880000pt;}
.y107{bottom:508.960000pt;}
.y54{bottom:509.280000pt;}
.y32{bottom:510.240000pt;}
.y18a{bottom:511.840000pt;}
.y1da{bottom:512.160000pt;}
.y153{bottom:514.080000pt;}
.y14c{bottom:514.720000pt;}
.yb6{bottom:515.040000pt;}
.y16c{bottom:515.680000pt;}
.y1bc{bottom:516.320000pt;}
.yee{bottom:517.280000pt;}
.y93{bottom:520.160000pt;}
.y7a{bottom:521.120000pt;}
.y31{bottom:525.600000pt;}
.y8{bottom:526.880000pt;}
.y106{bottom:527.520000pt;}
.y53{bottom:527.840000pt;}
.y189{bottom:528.800000pt;}
.y152{bottom:529.440000pt;}
.ycb{bottom:530.080000pt;}
.y1d9{bottom:530.400000pt;}
.y1ab{bottom:533.280000pt;}
.yb5{bottom:533.600000pt;}
.y16b{bottom:533.920000pt;}
.yed{bottom:535.520000pt;}
.y92{bottom:538.400000pt;}
.y79{bottom:539.680000pt;}
.y119{bottom:540.160000pt;}
.y30{bottom:540.960000pt;}
.y151{bottom:544.480000pt;}
.yca{bottom:545.440000pt;}
.y105{bottom:545.760000pt;}
.y52{bottom:546.080000pt;}
.y1d8{bottom:548.960000pt;}
.y1aa{bottom:550.240000pt;}
.yb4{bottom:551.840000pt;}
.yec{bottom:554.080000pt;}
.y2f{bottom:556.320000pt;}
.y91{bottom:556.960000pt;}
.y7{bottom:557.600000pt;}
.y78{bottom:557.920000pt;}
.yc9{bottom:560.480000pt;}
.y188{bottom:562.400000pt;}
.y104{bottom:564.000000pt;}
.y51{bottom:564.640000pt;}
.y1a9{bottom:566.880000pt;}
.y1d7{bottom:567.200000pt;}
.y16a{bottom:567.840000pt;}
.yb3{bottom:570.400000pt;}
.y2e{bottom:571.680000pt;}
.yeb{bottom:572.320000pt;}
.y90{bottom:575.200000pt;}
.y77{bottom:576.480000pt;}
.y187{bottom:579.360000pt;}
.y103{bottom:582.240000pt;}
.y50{bottom:582.880000pt;}
.y169{bottom:583.200000pt;}
.y1a8{bottom:583.840000pt;}
.y1d6{bottom:585.760000pt;}
.y2d{bottom:587.040000pt;}
.yb2{bottom:588.640000pt;}
.yea{bottom:590.906667pt;}
.y8f{bottom:593.786667pt;}
.y76{bottom:594.746667pt;}
.y186{bottom:596.026667pt;}
.y168{bottom:598.586667pt;}
.y102{bottom:600.826667pt;}
.y4f{bottom:601.466667pt;}
.y2c{bottom:602.106667pt;}
.y6{bottom:602.426667pt;}
.y1d5{bottom:604.026667pt;}
.yb1{bottom:607.226667pt;}
.ye9{bottom:609.146667pt;}
.y8e{bottom:612.026667pt;}
.y185{bottom:612.986667pt;}
.y75{bottom:613.306667pt;}
.y167{bottom:613.946667pt;}
.y1a7{bottom:617.786667pt;}
.y4e{bottom:619.706667pt;}
.y5{bottom:620.666667pt;}
.y1d4{bottom:622.586667pt;}
.yb0{bottom:625.466667pt;}
.y2b{bottom:626.426667pt;}
.ye8{bottom:627.066667pt;}
.y166{bottom:629.306667pt;}
.y184{bottom:629.946667pt;}
.y8d{bottom:630.586667pt;}
.y74{bottom:631.546667pt;}
.y1a6{bottom:634.426667pt;}
.y4d{bottom:638.266667pt;}
.y4{bottom:639.226667pt;}
.y1d3{bottom:640.826667pt;}
.y101{bottom:641.146667pt;}
.ye7{bottom:642.426667pt;}
.yaf{bottom:644.026667pt;}
.y183{bottom:646.906667pt;}
.y8c{bottom:648.826667pt;}
.y73{bottom:650.106667pt;}
.y1a5{bottom:651.386667pt;}
.ye6{bottom:657.786667pt;}
.y1d2{bottom:659.386667pt;}
.y165{bottom:660.986667pt;}
.y3{bottom:661.626667pt;}
.yae{bottom:662.266667pt;}
.y100{bottom:662.586667pt;}
.y2a{bottom:662.906667pt;}
.y182{bottom:663.546667pt;}
.y72{bottom:668.346667pt;}
.ye5{bottom:677.626667pt;}
.y29{bottom:678.266667pt;}
.y164{bottom:679.546667pt;}
.y4c{bottom:680.506667pt;}
.yad{bottom:680.826667pt;}
.y2{bottom:684.026667pt;}
.y1a4{bottom:684.986667pt;}
.y150{bottom:686.586667pt;}
.y71{bottom:686.906667pt;}
.y1d1{bottom:696.226667pt;}
.y181{bottom:697.506667pt;}
.y163{bottom:697.826667pt;}
.y1{bottom:698.466667pt;}
.yac{bottom:699.106667pt;}
.y28{bottom:701.666667pt;}
.y1a3{bottom:701.986667pt;}
.y4b{bottom:704.226667pt;}
.y70{bottom:705.186667pt;}
.ye4{bottom:707.426667pt;}
.y1d0{bottom:714.466667pt;}
.y180{bottom:714.786667pt;}
.y162{bottom:716.386667pt;}
.y27{bottom:717.026667pt;}
.yab{bottom:717.666667pt;}
.y1a2{bottom:718.946667pt;}
.y4a{bottom:720.866667pt;}
.y6f{bottom:723.746667pt;}
.y26{bottom:732.386667pt;}
.y49{bottom:733.026667pt;}
.y161{bottom:734.626667pt;}
.y1a1{bottom:735.586667pt;}
.yaa{bottom:735.906667pt;}
.y17f{bottom:736.226667pt;}
.ye3{bottom:737.506667pt;}
.y6e{bottom:741.986667pt;}
.y25{bottom:747.746667pt;}
.y1cf{bottom:751.266667pt;}
.y1a0{bottom:752.546667pt;}
.y160{bottom:753.186667pt;}
.ya9{bottom:754.466667pt;}
.y17e{bottom:757.666667pt;}
.y6d{bottom:760.546667pt;}
.y24{bottom:763.106667pt;}
.ye2{bottom:767.586667pt;}
.y19f{bottom:769.506667pt;}
.ya8{bottom:773.026667pt;}
.y23{bottom:778.466667pt;}
.y6c{bottom:778.786667pt;}
.y48{bottom:779.746667pt;}
.y19e{bottom:786.466667pt;}
.y15f{bottom:786.786667pt;}
.y22{bottom:793.826667pt;}
.y47{bottom:795.106667pt;}
.y6b{bottom:797.346667pt;}
.yde{bottom:797.666667pt;}
.y15e{bottom:802.173333pt;}
.y19d{bottom:803.133333pt;}
.y21{bottom:809.213333pt;}
.y46{bottom:812.093333pt;}
.y6a{bottom:815.613333pt;}
.y19c{bottom:820.093333pt;}
.y20{bottom:824.573333pt;}
.y1e5{bottom:828.093333pt;}
.y45{bottom:829.053333pt;}
.y69{bottom:834.173333pt;}
.y19b{bottom:837.053333pt;}
.y1f{bottom:839.613333pt;}
.y1e4{bottom:849.533333pt;}
.y68{bottom:852.413333pt;}
.y44{bottom:853.693333pt;}
.y1e{bottom:854.973333pt;}
.y1b{bottom:923.493333pt;}
.y1a{bottom:941.413333pt;}
.y19{bottom:956.773333pt;}
.y18{bottom:972.133333pt;}
.y17{bottom:987.493333pt;}
.he{height:15.360000pt;}
.h12{height:30.607500pt;}
.hd{height:30.720000pt;}
.hf{height:30.752000pt;}
.h14{height:35.245000pt;}
.h15{height:35.337750pt;}
.h7{height:52.736250pt;}
.h6{height:52.762500pt;}
.h1c{height:52.785000pt;}
.h10{height:53.471250pt;}
.h8{height:54.180000pt;}
.h16{height:55.256809pt;}
.hb{height:57.375000pt;}
.h18{height:57.758750pt;}
.ha{height:57.787500pt;}
.h9{height:59.340000pt;}
.h17{height:60.288750pt;}
.h1d{height:60.519362pt;}
.h1a{height:62.781250pt;}
.h1{height:62.812500pt;}
.hc{height:64.500000pt;}
.h5{height:74.820000pt;}
.h19{height:81.656250pt;}
.h4{height:84.126875pt;}
.h3{height:94.171875pt;}
.h2{height:107.070000pt;}
.h11{height:306.240000pt;}
.h1b{height:398.533333pt;}
.h13{height:460.800000pt;}
.h0{height:1056.000000pt;}
.w9{width:48.352000pt;}
.w7{width:112.672000pt;}
.w8{width:113.952000pt;}
.w3{width:163.266667pt;}
.w5{width:164.866667pt;}
.w2{width:165.506667pt;}
.w4{width:168.706667pt;}
.wa{width:199.453333pt;}
.w6{width:200.413333pt;}
.wd{width:206.786667pt;}
.we{width:304.773333pt;}
.wc{width:504.960000pt;}
.wb{width:511.680000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.760000pt;}
.x14{left:6.720000pt;}
.x20{left:8.666667pt;}
.x3b{left:11.226667pt;}
.x1b{left:12.160000pt;}
.x1d{left:14.080000pt;}
.x24{left:17.306667pt;}
.x3c{left:18.466667pt;}
.x35{left:25.573333pt;}
.x31{left:31.973333pt;}
.x25{left:36.186667pt;}
.x26{left:41.306667pt;}
.x1e{left:43.560000pt;}
.x23{left:49.600000pt;}
.x3e{left:54.560000pt;}
.x3d{left:61.786667pt;}
.x22{left:64.346667pt;}
.x32{left:76.773333pt;}
.x36{left:83.173333pt;}
.x27{left:84.186667pt;}
.x40{left:90.693333pt;}
.x37{left:95.973333pt;}
.x3f{left:97.920000pt;}
.x33{left:102.400000pt;}
.x34{left:128.000000pt;}
.x2{left:151.106655pt;}
.x7{left:152.706655pt;}
.x2f{left:153.600000pt;}
.x2a{left:158.466655pt;}
.x4{left:160.706655pt;}
.x3a{left:162.240000pt;}
.x9{left:165.506655pt;}
.x13{left:167.426667pt;}
.x21{left:168.706667pt;}
.x39{left:170.560000pt;}
.x8{left:180.546655pt;}
.x5{left:181.826655pt;}
.x38{left:185.986655pt;}
.x41{left:187.133333pt;}
.x10{left:188.866655pt;}
.x11{left:196.866655pt;}
.x12{left:198.466655pt;}
.x2c{left:201.373321pt;}
.x30{left:204.253333pt;}
.x2e{left:222.173321pt;}
.x28{left:226.653321pt;}
.x29{left:236.253321pt;}
.x43{left:245.533321pt;}
.x2b{left:265.693321pt;}
.xb{left:268.893321pt;}
.xe{left:275.293321pt;}
.xa{left:298.373321pt;}
.x1{left:317.893321pt;}
.x6{left:319.173321pt;}
.x2d{left:332.933321pt;}
.x15{left:334.213333pt;}
.x44{left:347.013321pt;}
.x19{left:358.533321pt;}
.x45{left:359.493333pt;}
.x42{left:361.413321pt;}
.x1a{left:369.440000pt;}
.xc{left:371.039988pt;}
.xd{left:373.279988pt;}
.xf{left:407.839988pt;}
.x18{left:431.519988pt;}
.x1c{left:483.386667pt;}
.x16{left:499.066667pt;}
.x1f{left:598.626667pt;}
.x3{left:664.893321pt;}
}




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