
    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_2aae4db900c15c46310b5b54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_2aeed3bf87e5a97f10d72bc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e1c0789ab38583e1925dfde4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_383ac3ab05e0364356d8955f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5fc2eac948084a259cddd367.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957520;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_55414a1d742c0553024fd8bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_2271c522ef2ffe22e7c783a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.884766;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_3a06ccca4842e6bfb7ca3fbd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.884766;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_d9519f5f8e4f11aa445f9047.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_0d14f93b8bd03fdf0f14b884.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_bd77ba68f4aafe9857672c88.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_a1d2f6674694d3e7cbc4b34d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.fff{font-family:fff;line-height:0.758789;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:ff10;src:url('chunks/assets/font_8fc6b692dfa7638cc96f064a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls28{letter-spacing:-17.340000px;}
.ls27{letter-spacing:-15.660000px;}
.lsb{letter-spacing:-14.220000px;}
.ls1c{letter-spacing:-1.800000px;}
.ls1b{letter-spacing:-1.710000px;}
.ls25{letter-spacing:-1.440000px;}
.ls29{letter-spacing:-1.260000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-0.990000px;}
.lse{letter-spacing:-0.942000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls2f{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.496200px;}
.ls20{letter-spacing:-0.450600px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.269400px;}
.ls1f{letter-spacing:-0.259800px;}
.ls2e{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.108000px;}
.ls30{letter-spacing:-0.090600px;}
.ls15{letter-spacing:-0.053400px;}
.ls1a{letter-spacing:-0.053280px;}
.ls26{letter-spacing:-0.045360px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106560px;}
.ls0{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.223800px;}
.ls13{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.480000px;}
.ls2d{letter-spacing:1.080000px;}
.ls7{letter-spacing:12.499920px;}
.ls31{letter-spacing:13.140000px;}
.ls16{letter-spacing:26.586720px;}
.lsc{letter-spacing:26.820000px;}
.ls23{letter-spacing:37.025280px;}
.ls22{letter-spacing:41.706720px;}
.ls17{letter-spacing:53.370720px;}
.ls3{letter-spacing:54.000000px;}
.ls2c{letter-spacing:54.989280px;}
.ls2b{letter-spacing:55.133280px;}
.ls18{letter-spacing:56.970720px;}
.ls24{letter-spacing:78.869280px;}
.ls2a{letter-spacing:78.893280px;}
.ls21{letter-spacing:102.689280px;}
.ls1{letter-spacing:1460.640000px;}
.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;}
}
.ws1f{word-spacing:-66.240000px;}
.ws1e{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.ws13{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.733600px;}
.ws1a{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.329400px;}
.wsb{word-spacing:-12.283800px;}
.ws22{word-spacing:-12.241200px;}
.ws2{word-spacing:-12.060000px;}
.ws1d{word-spacing:-12.014640px;}
.ws21{word-spacing:-11.836200px;}
.ws1{word-spacing:-11.790600px;}
.ws3{word-spacing:-11.700000px;}
.ws1b{word-spacing:-11.609400px;}
.wsa{word-spacing:-11.563800px;}
.ws18{word-spacing:-11.160000px;}
.ws9{word-spacing:-11.118000px;}
.ws23{word-spacing:-11.070000px;}
.ws17{word-spacing:-10.980000px;}
.ws15{word-spacing:-10.350000px;}
.ws16{word-spacing:-10.260000px;}
.ws1c{word-spacing:-9.000000px;}
.ws20{word-spacing:-7.560000px;}
.ws11{word-spacing:0.000000px;}
.wsd{word-spacing:28.852560px;}
.ws4{word-spacing:108.486000px;}
._2a{margin-left:-1052.873280px;}
._29{margin-left:-474.192000px;}
._d{margin-left:-121.680000px;}
._18{margin-left:-107.280000px;}
._c{margin-left:-53.496000px;}
._13{margin-left:-25.604880px;}
._e{margin-left:-14.202000px;}
._34{margin-left:-6.300000px;}
._33{margin-left:-4.525920px;}
._3{margin-left:-3.116160px;}
._2{margin-left:-1.257120px;}
._0{width:1.314600px;}
._1{width:3.053158px;}
._2f{width:4.073040px;}
._9{width:5.130000px;}
._8{width:6.534000px;}
._1c{width:8.262000px;}
._7{width:9.720000px;}
._1e{width:10.902047px;}
._6{width:11.934000px;}
._24{width:13.804799px;}
._5{width:15.675120px;}
._4{width:16.848000px;}
._16{width:18.792000px;}
._a{width:20.736000px;}
._11{width:22.410000px;}
._b{width:23.814000px;}
._35{width:24.900240px;}
._30{width:26.051520px;}
._2e{width:27.190800px;}
._32{width:28.207200px;}
._1a{width:29.283120px;}
._10{width:30.294000px;}
._42{width:31.407120px;}
._23{width:33.047400px;}
._2d{width:34.643286px;}
._27{width:36.103797px;}
._1f{width:38.447521px;}
._12{width:39.744000px;}
._14{width:41.360520px;}
._15{width:42.381120px;}
._36{width:43.445640px;}
._1b{width:44.958000px;}
._31{width:46.367640px;}
._3e{width:47.838961px;}
._38{width:52.409520px;}
._41{width:54.193563px;}
._25{width:55.397938px;}
._37{width:57.907560px;}
._21{width:61.588560px;}
._20{width:62.785440px;}
._22{width:64.119360px;}
._1d{width:65.628431px;}
._f{width:67.842000px;}
._28{width:71.652539px;}
._17{width:72.786000px;}
._3f{width:83.744640px;}
._19{width:95.880000px;}
._3a{width:99.341280px;}
._39{width:101.044080px;}
._40{width:103.185360px;}
._26{width:111.912419px;}
._2c{width:135.595201px;}
._3b{width:175.690080px;}
._3c{width:176.703120px;}
._3d{width:405.360720px;}
._2b{width:1281.360000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.y74{bottom:-2.520150px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y10c{bottom:2.565000px;}
.y101{bottom:3.060000px;}
.y5{bottom:3.240000px;}
.y88{bottom:3.960000px;}
.y11b{bottom:3.990000px;}
.y8a{bottom:4.140000px;}
.ya{bottom:4.860000px;}
.y11a{bottom:4.890000px;}
.y117{bottom:5.040000px;}
.yd0{bottom:5.940000px;}
.ybc{bottom:6.120000px;}
.ycb{bottom:7.740000px;}
.y6c{bottom:8.460000px;}
.yc2{bottom:10.620000px;}
.ye2{bottom:10.800000px;}
.y6{bottom:11.340000px;}
.yd5{bottom:12.240000px;}
.yd8{bottom:12.420000px;}
.y3{bottom:13.680000px;}
.yc5{bottom:14.580000px;}
.y8{bottom:16.380000px;}
.y10b{bottom:16.425000px;}
.y71{bottom:16.740000px;}
.yd3{bottom:17.820000px;}
.ycf{bottom:19.800000px;}
.ybb{bottom:19.980000px;}
.yc0{bottom:20.700000px;}
.yca{bottom:21.600000px;}
.yc{bottom:25.200000px;}
.yd4{bottom:26.100000px;}
.yd7{bottom:26.280000px;}
.yc4{bottom:28.440000px;}
.y7{bottom:30.060000px;}
.y11e{bottom:31.680000px;}
.ybf{bottom:34.560000px;}
.yc9{bottom:35.460000px;}
.yba{bottom:36.720000px;}
.yb{bottom:38.880000px;}
.ydc{bottom:39.420000px;}
.ydb{bottom:53.280000px;}
.y70{bottom:58.140000px;}
.yda{bottom:70.020000px;}
.y135{bottom:81.936000px;}
.yae{bottom:85.176000px;}
.y3d{bottom:86.616000px;}
.y16b{bottom:89.136000px;}
.y22d{bottom:93.996000px;}
.y1fa{bottom:97.416000px;}
.y6f{bottom:99.540000px;}
.y134{bottom:99.936000px;}
.y3c{bottom:100.296000px;}
.y6a{bottom:102.636000px;}
.yf9{bottom:102.816000px;}
.y16a{bottom:102.996000px;}
.yad{bottom:103.176000px;}
.y22c{bottom:107.856000px;}
.y1b5{bottom:110.736000px;}
.y1f9{bottom:113.976000px;}
.y3b{bottom:114.156000px;}
.y169{bottom:116.676000px;}
.y133{bottom:118.116000px;}
.y69{bottom:120.636000px;}
.yf8{bottom:120.996000px;}
.y22b{bottom:121.536000px;}
.y1b4{bottom:124.596000px;}
.yac{bottom:126.396000px;}
.y1f8{bottom:127.656000px;}
.y168{bottom:130.536000px;}
.y22a{bottom:135.396000px;}
.y132{bottom:136.116000px;}
.y1b3{bottom:138.276000px;}
.y68{bottom:138.816000px;}
.yf7{bottom:139.176000px;}
.y6e{bottom:140.790000px;}
.y1f7{bottom:141.516000px;}
.y3a{bottom:141.696000px;}
.yab{bottom:143.676000px;}
.y167{bottom:144.396000px;}
.y229{bottom:149.076000px;}
.y1b2{bottom:152.130000px;}
.y131{bottom:154.290000px;}
.y39{bottom:155.550000px;}
.y1f6{bottom:156.090000px;}
.y67{bottom:156.810000px;}
.yf6{bottom:157.170000px;}
.y166{bottom:158.070000px;}
.y228{bottom:162.930000px;}
.y1b1{bottom:165.810000px;}
.y38{bottom:169.950000px;}
.y165{bottom:171.930000px;}
.y130{bottom:172.290000px;}
.yaa{bottom:172.470000px;}
.y66{bottom:174.990000px;}
.yf5{bottom:175.350000px;}
.y227{bottom:176.790000px;}
.y1b0{bottom:179.670000px;}
.y164{bottom:185.610000px;}
.y1f5{bottom:186.330000px;}
.y37{bottom:186.510000px;}
.y12f{bottom:190.470000px;}
.ya9{bottom:192.270000px;}
.y65{bottom:192.990000px;}
.yf4{bottom:193.350000px;}
.y1af{bottom:193.530000px;}
.y163{bottom:199.470000px;}
.y1f4{bottom:200.190000px;}
.y36{bottom:200.370000px;}
.y226{bottom:204.330000px;}
.y1ae{bottom:207.210000px;}
.y12e{bottom:208.470000px;}
.y64{bottom:211.170000px;}
.yf3{bottom:211.530000px;}
.ya8{bottom:212.070000px;}
.y162{bottom:213.330000px;}
.y1f3{bottom:213.870000px;}
.y35{bottom:214.050000px;}
.y225{bottom:218.010000px;}
.y1ad{bottom:221.070000px;}
.y12d{bottom:226.650000px;}
.y161{bottom:227.010000px;}
.y34{bottom:227.910000px;}
.y1f2{bottom:228.450000px;}
.y63{bottom:229.170000px;}
.yf2{bottom:229.530000px;}
.y224{bottom:231.870000px;}
.ya7{bottom:232.050000px;}
.y1ac{bottom:234.750000px;}
.y160{bottom:240.870000px;}
.y33{bottom:241.590000px;}
.y1f1{bottom:245.010000px;}
.y223{bottom:245.730000px;}
.y62{bottom:247.350000px;}
.yf1{bottom:247.710000px;}
.y1ab{bottom:248.610000px;}
.ya6{bottom:251.850000px;}
.y12c{bottom:252.930000px;}
.y15f{bottom:254.550000px;}
.y32{bottom:255.450000px;}
.y1f0{bottom:258.690000px;}
.y222{bottom:259.410000px;}
.y1aa{bottom:262.470000px;}
.y61{bottom:265.350000px;}
.yf0{bottom:265.710000px;}
.y15e{bottom:268.410000px;}
.y31{bottom:269.310000px;}
.ya5{bottom:271.650000px;}
.y1ef{bottom:272.550000px;}
.y221{bottom:273.270000px;}
.y1a9{bottom:276.150000px;}
.y15d{bottom:282.270000px;}
.y30{bottom:282.990000px;}
.y60{bottom:283.530000px;}
.yef{bottom:283.890000px;}
.y12b{bottom:285.690000px;}
.y1ee{bottom:286.410000px;}
.y220{bottom:286.950000px;}
.y1a8{bottom:290.010000px;}
.ya4{bottom:291.450000px;}
.y2f{bottom:296.850000px;}
.y1ed{bottom:300.810000px;}
.y5f{bottom:301.530000px;}
.yee{bottom:301.890000px;}
.y1a7{bottom:303.690000px;}
.y12a{bottom:304.050000px;}
.y15c{bottom:305.670000px;}
.y2e{bottom:310.530000px;}
.ya3{bottom:311.250000px;}
.y21f{bottom:314.670000px;}
.y1ec{bottom:317.370000px;}
.y1a6{bottom:317.550000px;}
.y5e{bottom:319.710000px;}
.yed{bottom:320.070000px;}
.y129{bottom:322.410000px;}
.y2d{bottom:324.750000px;}
.y21e{bottom:328.350000px;}
.ya2{bottom:331.050000px;}
.y1eb{bottom:331.230000px;}
.y1a5{bottom:331.410000px;}
.y5d{bottom:337.935000px;}
.yec{bottom:338.115000px;}
.y2c{bottom:340.275000px;}
.y128{bottom:340.995000px;}
.y15b{bottom:341.715000px;}
.y21d{bottom:342.255000px;}
.y1ea{bottom:344.955000px;}
.y1a4{bottom:345.135000px;}
.ya1{bottom:348.375000px;}
.y2b{bottom:355.935000px;}
.y21c{bottom:356.115000px;}
.yeb{bottom:356.295000px;}
.y127{bottom:358.455000px;}
.y1e9{bottom:358.815000px;}
.y1a3{bottom:358.995000px;}
.y15a{bottom:360.075000px;}
.ya0{bottom:363.135000px;}
.y21b{bottom:369.795000px;}
.y2a{bottom:371.415000px;}
.y1e8{bottom:372.495000px;}
.y1a2{bottom:372.675000px;}
.y5c{bottom:374.115000px;}
.yea{bottom:374.295000px;}
.y159{bottom:378.795000px;}
.y9f{bottom:380.775000px;}
.y21a{bottom:383.655000px;}
.y1e7{bottom:386.355000px;}
.y1a1{bottom:386.535000px;}
.y126{bottom:389.775000px;}
.y5b{bottom:392.115000px;}
.ye9{bottom:392.475000px;}
.y158{bottom:396.975000px;}
.y219{bottom:397.335000px;}
.y9e{bottom:398.235000px;}
.y1e6{bottom:400.215000px;}
.y1a0{bottom:400.395000px;}
.y125{bottom:408.135000px;}
.y5a{bottom:410.295000px;}
.ye8{bottom:410.655000px;}
.y218{bottom:411.195000px;}
.y19f{bottom:414.075000px;}
.y1e5{bottom:414.615000px;}
.y157{bottom:414.975000px;}
.y9d{bottom:415.875000px;}
.y217{bottom:425.055000px;}
.y124{bottom:426.675000px;}
.y19e{bottom:427.935000px;}
.y59{bottom:428.295000px;}
.ye7{bottom:428.655000px;}
.y1e4{bottom:431.175000px;}
.y156{bottom:433.155000px;}
.y9c{bottom:433.335000px;}
.y216{bottom:438.735000px;}
.y19d{bottom:441.615000px;}
.y123{bottom:445.035000px;}
.y58{bottom:446.475000px;}
.ye6{bottom:446.835000px;}
.y9b{bottom:450.975000px;}
.y155{bottom:451.155000px;}
.y215{bottom:452.595000px;}
.y19c{bottom:455.475000px;}
.y1e3{bottom:458.895000px;}
.y122{bottom:462.495000px;}
.y57{bottom:464.475000px;}
.ye5{bottom:464.835000px;}
.y214{bottom:466.275000px;}
.y9a{bottom:468.435000px;}
.y154{bottom:469.335000px;}
.y19b{bottom:470.055000px;}
.y1e2{bottom:472.575000px;}
.y213{bottom:480.135000px;}
.y121{bottom:480.855000px;}
.y56{bottom:482.655000px;}
.ye4{bottom:483.015000px;}
.y99{bottom:486.075000px;}
.y19a{bottom:486.435000px;}
.y153{bottom:487.335000px;}
.y212{bottom:493.995000px;}
.y1df{bottom:496.875000px;}
.y120{bottom:499.395000px;}
.ye3{bottom:500.295000px;}
.y55{bottom:500.655000px;}
.y98{bottom:503.535000px;}
.y152{bottom:505.515000px;}
.y211{bottom:507.675000px;}
.y1de{bottom:510.555000px;}
.y1e1{bottom:513.975000px;}
.y199{bottom:514.155000px;}
.y29{bottom:515.235000px;}
.y11f{bottom:517.755000px;}
.y54{bottom:518.835000px;}
.y97{bottom:521.175000px;}
.y210{bottom:521.535000px;}
.yd9{bottom:521.895000px;}
.y151{bottom:523.515000px;}
.y1dd{bottom:524.415000px;}
.y198{bottom:527.835000px;}
.y28{bottom:530.715000px;}
.y20f{bottom:535.215000px;}
.y11d{bottom:536.115000px;}
.y53{bottom:536.835000px;}
.y1dc{bottom:538.275000px;}
.y96{bottom:538.635000px;}
.y150{bottom:541.695000px;}
.y27{bottom:546.375000px;}
.y20e{bottom:549.075000px;}
.y1db{bottom:551.955000px;}
.ye1{bottom:553.215000px;}
.y52{bottom:555.015000px;}
.y197{bottom:555.375000px;}
.y95{bottom:556.095000px;}
.y14f{bottom:559.875000px;}
.y26{bottom:561.855000px;}
.y20d{bottom:562.935000px;}
.y1da{bottom:565.815000px;}
.y196{bottom:569.235000px;}
.ye0{bottom:570.675000px;}
.y51{bottom:573.195000px;}
.y94{bottom:573.735000px;}
.y20c{bottom:576.615000px;}
.y14e{bottom:577.875000px;}
.y1d9{bottom:579.495000px;}
.y11c{bottom:581.295000px;}
.y1e0{bottom:582.915000px;}
.y195{bottom:583.095000px;}
.y25{bottom:583.275000px;}
.ydf{bottom:588.315000px;}
.y20b{bottom:590.475000px;}
.y50{bottom:591.195000px;}
.y1d8{bottom:593.355000px;}
.y14d{bottom:596.055000px;}
.y194{bottom:596.775000px;}
.y24{bottom:598.755000px;}
.y119{bottom:599.655000px;}
.y20a{bottom:604.185000px;}
.yde{bottom:605.805000px;}
.y1d7{bottom:607.245000px;}
.y93{bottom:608.865000px;}
.y4f{bottom:609.405000px;}
.y193{bottom:610.665000px;}
.y14c{bottom:614.085000px;}
.y118{bottom:618.045000px;}
.y23{bottom:620.385000px;}
.y1d6{bottom:620.925000px;}
.ydd{bottom:623.445000px;}
.y192{bottom:624.345000px;}
.y92{bottom:626.325000px;}
.y4e{bottom:627.405000px;}
.y209{bottom:631.905000px;}
.y14b{bottom:632.265000px;}
.y1d5{bottom:634.785000px;}
.y22{bottom:635.865000px;}
.y116{bottom:636.405000px;}
.y191{bottom:638.205000px;}
.yd6{bottom:640.905000px;}
.y91{bottom:643.965000px;}
.y4d{bottom:645.585000px;}
.y1d4{bottom:648.465000px;}
.y14a{bottom:650.265000px;}
.y21{bottom:651.345000px;}
.y190{bottom:652.065000px;}
.y115{bottom:654.945000px;}
.y208{bottom:659.445000px;}
.y90{bottom:661.425000px;}
.y1d3{bottom:662.325000px;}
.y4c{bottom:663.585000px;}
.y18f{bottom:665.745000px;}
.y20{bottom:666.825000px;}
.y207{bottom:673.125000px;}
.y1d2{bottom:676.185000px;}
.y149{bottom:676.545000px;}
.y8f{bottom:679.065000px;}
.y18e{bottom:679.605000px;}
.y4b{bottom:681.765000px;}
.y1f{bottom:682.485000px;}
.y114{bottom:686.265000px;}
.y206{bottom:686.985000px;}
.yd2{bottom:689.145000px;}
.y1d1{bottom:689.865000px;}
.y18d{bottom:693.285000px;}
.y8e{bottom:696.525000px;}
.y1e{bottom:697.965000px;}
.y4a{bottom:699.765000px;}
.y205{bottom:700.845000px;}
.y1d0{bottom:703.725000px;}
.y113{bottom:704.625000px;}
.y18c{bottom:707.145000px;}
.y148{bottom:712.545000px;}
.y1d{bottom:713.445000px;}
.y8d{bottom:714.165000px;}
.y204{bottom:714.525000px;}
.y1cf{bottom:717.405000px;}
.y49{bottom:717.945000px;}
.y18b{bottom:721.005000px;}
.y112{bottom:722.985000px;}
.y203{bottom:728.385000px;}
.y1c{bottom:728.925000px;}
.y147{bottom:730.725000px;}
.y1ce{bottom:731.265000px;}
.y8c{bottom:731.625000px;}
.y18a{bottom:734.685000px;}
.y48{bottom:735.945000px;}
.yce{bottom:737.205000px;}
.y111{bottom:741.345000px;}
.y202{bottom:742.065000px;}
.y1b{bottom:744.405000px;}
.y1cd{bottom:745.125000px;}
.y189{bottom:748.545000px;}
.y146{bottom:748.905000px;}
.y8b{bottom:749.265000px;}
.y47{bottom:754.125000px;}
.yd1{bottom:754.845000px;}
.y201{bottom:755.925000px;}
.y1cc{bottom:758.805000px;}
.y110{bottom:759.885000px;}
.y1a{bottom:760.065000px;}
.y188{bottom:762.225000px;}
.y89{bottom:766.725000px;}
.y145{bottom:766.905000px;}
.y200{bottom:769.785000px;}
.y46{bottom:772.125000px;}
.yc8{bottom:772.305000px;}
.y1cb{bottom:772.665000px;}
.y19{bottom:775.545000px;}
.y187{bottom:776.085000px;}
.y87{bottom:784.365000px;}
.y144{bottom:785.085000px;}
.y1ca{bottom:786.345000px;}
.ycd{bottom:789.945000px;}
.y45{bottom:790.305000px;}
.y18{bottom:791.025000px;}
.y10f{bottom:791.205000px;}
.y1ff{bottom:793.185000px;}
.y237{bottom:797.505000px;}
.y1c9{bottom:800.205000px;}
.y143{bottom:803.085000px;}
.y186{bottom:803.625000px;}
.y17{bottom:806.505000px;}
.ycc{bottom:807.405000px;}
.y44{bottom:808.485000px;}
.y86{bottom:811.185000px;}
.y1c8{bottom:814.065000px;}
.y185{bottom:817.485000px;}
.y10e{bottom:817.845000px;}
.y16{bottom:821.985000px;}
.yc3{bottom:825.045000px;}
.y43{bottom:826.485000px;}
.y1c7{bottom:827.745000px;}
.y142{bottom:829.365000px;}
.y184{bottom:831.165000px;}
.y85{bottom:835.125000px;}
.y15{bottom:837.465000px;}
.y1c6{bottom:841.605000px;}
.y236{bottom:842.325000px;}
.yc7{bottom:842.505000px;}
.y42{bottom:844.665000px;}
.y183{bottom:845.025000px;}
.y14{bottom:853.125000px;}
.y84{bottom:853.305000px;}
.y1c5{bottom:855.285000px;}
.y10d{bottom:855.825000px;}
.y182{bottom:858.885000px;}
.y235{bottom:859.605000px;}
.yc6{bottom:860.145000px;}
.y41{bottom:862.665000px;}
.y141{bottom:865.365000px;}
.y13{bottom:868.605000px;}
.y1c4{bottom:869.145000px;}
.y10a{bottom:870.405000px;}
.y181{bottom:872.610000px;}
.y83{bottom:876.570000px;}
.y234{bottom:876.750000px;}
.ybe{bottom:877.650000px;}
.y40{bottom:880.890000px;}
.y1c3{bottom:883.050000px;}
.y140{bottom:883.590000px;}
.y12{bottom:884.130000px;}
.y180{bottom:886.470000px;}
.y233{bottom:894.030000px;}
.y1c2{bottom:896.730000px;}
.y109{bottom:898.890000px;}
.y11{bottom:899.610000px;}
.y17f{bottom:900.150000px;}
.y13f{bottom:901.770000px;}
.y3f{bottom:903.210000px;}
.yc1{bottom:908.250000px;}
.y1c1{bottom:910.590000px;}
.y232{bottom:911.310000px;}
.y82{bottom:911.850000px;}
.y108{bottom:913.470000px;}
.y17e{bottom:914.010000px;}
.y10{bottom:915.090000px;}
.y13e{bottom:919.770000px;}
.y1c0{bottom:924.270000px;}
.yb9{bottom:925.890000px;}
.y1fe{bottom:927.690000px;}
.y107{bottom:927.870000px;}
.y231{bottom:928.590000px;}
.yf{bottom:930.570000px;}
.y13d{bottom:937.950000px;}
.y1bf{bottom:938.130000px;}
.y17d{bottom:941.550000px;}
.y106{bottom:942.450000px;}
.y3e{bottom:943.350000px;}
.y230{bottom:945.690000px;}
.ye{bottom:946.230000px;}
.y81{bottom:947.850000px;}
.y1be{bottom:951.990000px;}
.y17c{bottom:955.410000px;}
.y13c{bottom:955.950000px;}
.ybd{bottom:960.990000px;}
.yd{bottom:961.710000px;}
.y22f{bottom:962.970000px;}
.y1bd{bottom:965.670000px;}
.y80{bottom:966.030000px;}
.y17b{bottom:969.090000px;}
.y105{bottom:970.890000px;}
.y13b{bottom:974.130000px;}
.y22e{bottom:977.010000px;}
.yb8{bottom:978.450000px;}
.y1bc{bottom:979.530000px;}
.y17a{bottom:982.950000px;}
.y7f{bottom:984.030000px;}
.y104{bottom:985.470000px;}
.y6b{bottom:989.250000px;}
.y13a{bottom:992.130000px;}
.y1bb{bottom:993.210000px;}
.y1fd{bottom:996.630000px;}
.y179{bottom:996.810000px;}
.y103{bottom:999.870000px;}
.y7e{bottom:1002.210000px;}
.yb7{bottom:1005.270000px;}
.y1ba{bottom:1007.070000px;}
.y139{bottom:1010.310000px;}
.y178{bottom:1010.490000px;}
.y102{bottom:1014.450000px;}
.y7d{bottom:1020.210000px;}
.y6d{bottom:1020.750000px;}
.y1b9{bottom:1020.930000px;}
.yb6{bottom:1022.550000px;}
.y177{bottom:1024.350000px;}
.y138{bottom:1028.310000px;}
.y1b8{bottom:1034.610000px;}
.y176{bottom:1038.030000px;}
.y7c{bottom:1038.390000px;}
.y100{bottom:1045.770000px;}
.yb5{bottom:1046.490000px;}
.y1b7{bottom:1048.470000px;}
.y175{bottom:1051.890000px;}
.y7b{bottom:1056.570000px;}
.yff{bottom:1060.170000px;}
.y1b6{bottom:1062.870000px;}
.y137{bottom:1064.490000px;}
.yb4{bottom:1064.670000px;}
.y1fc{bottom:1065.570000px;}
.y174{bottom:1065.750000px;}
.y7a{bottom:1074.570000px;}
.yfe{bottom:1074.750000px;}
.y173{bottom:1079.430000px;}
.yb3{bottom:1082.670000px;}
.yfd{bottom:1089.330000px;}
.y79{bottom:1092.750000px;}
.y172{bottom:1093.290000px;}
.y136{bottom:1100.670000px;}
.yb2{bottom:1100.850000px;}
.yfc{bottom:1103.910000px;}
.y171{bottom:1106.970000px;}
.y78{bottom:1110.750000px;}
.yb1{bottom:1118.850000px;}
.y170{bottom:1120.830000px;}
.y77{bottom:1128.930000px;}
.yfb{bottom:1132.170000px;}
.y1fb{bottom:1134.510000px;}
.y16f{bottom:1134.690000px;}
.yb0{bottom:1137.030000px;}
.y76{bottom:1146.960000px;}
.y16e{bottom:1148.400000px;}
.yaf{bottom:1155.060000px;}
.yfa{bottom:1155.960000px;}
.y16d{bottom:1162.260000px;}
.y75{bottom:1173.240000px;}
.y16c{bottom:1175.940000px;}
.y73{bottom:1197.360000px;}
.y72{bottom:1216.260000px;}
.y2{bottom:1217.700000px;}
.y4{bottom:1231.560000px;}
.y1{bottom:1234.800000px;}
.h23{height:13.680000px;}
.h22{height:13.860000px;}
.h20{height:13.896000px;}
.h15{height:16.740000px;}
.h1c{height:16.776000px;}
.h16{height:16.920000px;}
.h17{height:16.956000px;}
.h4{height:17.280000px;}
.h28{height:17.640000px;}
.h2b{height:17.676000px;}
.h2a{height:17.820000px;}
.hf{height:23.760000px;}
.h21{height:27.540000px;}
.h26{height:27.720000px;}
.h27{height:27.756000px;}
.h24{height:29.158594px;}
.h1a{height:29.880000px;}
.h25{height:30.420000px;}
.h1f{height:30.600000px;}
.hd{height:33.683203px;}
.hc{height:34.036523px;}
.h1d{height:34.380000px;}
.h29{height:35.120039px;}
.h6{height:36.698203px;}
.ha{height:37.705078px;}
.hb{height:38.100586px;}
.h9{height:39.128906px;}
.h30{height:39.336328px;}
.h8{height:39.521899px;}
.h5{height:41.400000px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h14{height:43.506914px;}
.h2d{height:44.265586px;}
.h2c{height:44.460000px;}
.h10{height:46.736719px;}
.h19{height:47.340000px;}
.h2e{height:49.065469px;}
.h7{height:50.220000px;}
.h18{height:51.840000px;}
.h1b{height:51.876000px;}
.h2f{height:67.824844px;}
.he{height:83.956641px;}
.h12{height:100.546875px;}
.h13{height:101.601562px;}
.h1e{height:118.296000px;}
.h11{height:174.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:6.840000px;}
.wd{width:85.860000px;}
.wc{width:102.276000px;}
.we{width:113.220000px;}
.w12{width:137.520000px;}
.w9{width:147.960000px;}
.wb{width:165.810000px;}
.wf{width:171.570000px;}
.wa{width:187.950000px;}
.w3{width:193.350000px;}
.w11{width:194.475000px;}
.w4{width:263.235000px;}
.w10{width:285.510000px;}
.w13{width:332.715000px;}
.w8{width:336.630000px;}
.w5{width:708.450000px;}
.w6{width:730.365000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x4f{left:-12.825000px;}
.x0{left:0.000000px;}
.x36{left:7.740000px;}
.x6{left:10.800000px;}
.x3b{left:12.450000px;}
.x3f{left:16.410000px;}
.x41{left:17.640000px;}
.x3a{left:19.620000px;}
.x39{left:21.990000px;}
.x3e{left:23.250000px;}
.x3c{left:24.870000px;}
.x3d{left:26.490000px;}
.x11{left:28.980000px;}
.x42{left:30.270000px;}
.x2c{left:31.680000px;}
.x37{left:34.050000px;}
.x12{left:35.460000px;}
.x1c{left:37.440000px;}
.x48{left:39.420000px;}
.x2d{left:41.220000px;}
.x38{left:42.525000px;}
.x29{left:44.280000px;}
.x28{left:45.360000px;}
.x2b{left:46.800000px;}
.x4a{left:47.874000px;}
.x27{left:50.394000px;}
.x26{left:53.454000px;}
.x47{left:54.585000px;}
.x54{left:56.556000px;}
.x1e{left:57.645000px;}
.x50{left:59.436000px;}
.x40{left:61.050000px;}
.x24{left:62.274000px;}
.x20{left:63.714000px;}
.xd{left:65.700000px;}
.x2f{left:66.774000px;}
.x22{left:68.214000px;}
.x3{left:70.200000px;}
.x15{left:72.359987px;}
.x7{left:73.800000px;}
.x10{left:75.414000px;}
.x19{left:76.859987px;}
.x4b{left:78.165000px;}
.x49{left:79.245000px;}
.x8{left:80.820000px;}
.x33{left:82.830000px;}
.x9{left:85.320000px;}
.x2e{left:87.474000px;}
.xf{left:89.316000px;}
.x4e{left:91.470000px;}
.x52{left:92.550000px;}
.x53{left:94.170000px;}
.x55{left:96.510000px;}
.x56{left:98.310000px;}
.x1a{left:100.656000px;}
.x44{left:101.735987px;}
.x25{left:106.014000px;}
.x45{left:110.196000px;}
.x23{left:139.674000px;}
.x4c{left:141.515987px;}
.x21{left:147.054000px;}
.x1f{left:150.654000px;}
.x2a{left:154.974000px;}
.x51{left:156.450000px;}
.x5e{left:158.069987px;}
.x1b{left:166.674000px;}
.x57{left:191.549987px;}
.x17{left:201.449987px;}
.x18{left:202.709987px;}
.xe{left:219.315000px;}
.x46{left:224.130000px;}
.x1d{left:249.330000px;}
.x1{left:277.815000px;}
.x4d{left:281.775000px;}
.x13{left:320.979000px;}
.x16{left:332.174987px;}
.x5f{left:435.674987px;}
.x2{left:443.055000px;}
.x14{left:446.474987px;}
.xc{left:457.275000px;}
.x32{left:463.215000px;}
.x5{left:466.665000px;}
.xb{left:467.925000px;}
.x30{left:472.424987px;}
.x5d{left:478.544987px;}
.x43{left:488.624987px;}
.x31{left:524.084987px;}
.x59{left:534.704987px;}
.x5c{left:541.904987px;}
.x5b{left:550.184987px;}
.x5a{left:565.484987px;}
.xa{left:569.805000px;}
.x58{left:576.464987px;}
.x34{left:629.745000px;}
.x35{left:732.750000px;}
.x4{left:816.090000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls28{letter-spacing:-15.413333pt;}
.ls27{letter-spacing:-13.920000pt;}
.lsb{letter-spacing:-12.640000pt;}
.ls1c{letter-spacing:-1.600000pt;}
.ls1b{letter-spacing:-1.520000pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls29{letter-spacing:-1.120000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.880000pt;}
.lse{letter-spacing:-0.837333pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls2f{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.441067pt;}
.ls20{letter-spacing:-0.400533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.239467pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls2e{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls30{letter-spacing:-0.080533pt;}
.ls15{letter-spacing:-0.047467pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls26{letter-spacing:-0.040320pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094720pt;}
.ls0{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.198933pt;}
.ls13{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls7{letter-spacing:11.111040pt;}
.ls31{letter-spacing:11.680000pt;}
.ls16{letter-spacing:23.632640pt;}
.lsc{letter-spacing:23.840000pt;}
.ls23{letter-spacing:32.911360pt;}
.ls22{letter-spacing:37.072640pt;}
.ls17{letter-spacing:47.440640pt;}
.ls3{letter-spacing:48.000000pt;}
.ls2c{letter-spacing:48.879360pt;}
.ls2b{letter-spacing:49.007360pt;}
.ls18{letter-spacing:50.640640pt;}
.ls24{letter-spacing:70.106027pt;}
.ls2a{letter-spacing:70.127360pt;}
.ls21{letter-spacing:91.279360pt;}
.ls1{letter-spacing:1298.346667pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.096533pt;}
.ws1a{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.959467pt;}
.wsb{word-spacing:-10.918933pt;}
.ws22{word-spacing:-10.881067pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.679680pt;}
.ws21{word-spacing:-10.521067pt;}
.ws1{word-spacing:-10.480533pt;}
.ws3{word-spacing:-10.400000pt;}
.ws1b{word-spacing:-10.319467pt;}
.wsa{word-spacing:-10.278933pt;}
.ws18{word-spacing:-9.920000pt;}
.ws9{word-spacing:-9.882667pt;}
.ws23{word-spacing:-9.840000pt;}
.ws17{word-spacing:-9.760000pt;}
.ws15{word-spacing:-9.200000pt;}
.ws16{word-spacing:-9.120000pt;}
.ws1c{word-spacing:-8.000000pt;}
.ws20{word-spacing:-6.720000pt;}
.ws11{word-spacing:0.000000pt;}
.wsd{word-spacing:25.646720pt;}
.ws4{word-spacing:96.432000pt;}
._2a{margin-left:-935.887360pt;}
._29{margin-left:-421.504000pt;}
._d{margin-left:-108.160000pt;}
._18{margin-left:-95.360000pt;}
._c{margin-left:-47.552000pt;}
._13{margin-left:-22.759893pt;}
._e{margin-left:-12.624000pt;}
._34{margin-left:-5.600000pt;}
._33{margin-left:-4.023040pt;}
._3{margin-left:-2.769920pt;}
._2{margin-left:-1.117440pt;}
._0{width:1.168534pt;}
._1{width:2.713918pt;}
._2f{width:3.620480pt;}
._9{width:4.560000pt;}
._8{width:5.808000pt;}
._1c{width:7.344000pt;}
._7{width:8.640000pt;}
._1e{width:9.690708pt;}
._6{width:10.608000pt;}
._24{width:12.270932pt;}
._5{width:13.933440pt;}
._4{width:14.976000pt;}
._16{width:16.704000pt;}
._a{width:18.432000pt;}
._11{width:19.920000pt;}
._b{width:21.168000pt;}
._35{width:22.133547pt;}
._30{width:23.156907pt;}
._2e{width:24.169600pt;}
._32{width:25.073067pt;}
._1a{width:26.029440pt;}
._10{width:26.928000pt;}
._42{width:27.917440pt;}
._23{width:29.375466pt;}
._2d{width:30.794032pt;}
._27{width:32.092264pt;}
._1f{width:34.175574pt;}
._12{width:35.328000pt;}
._14{width:36.764906pt;}
._15{width:37.672107pt;}
._36{width:38.618346pt;}
._1b{width:39.962667pt;}
._31{width:41.215680pt;}
._3e{width:42.523521pt;}
._38{width:46.586240pt;}
._41{width:48.172056pt;}
._25{width:49.242612pt;}
._37{width:51.473386pt;}
._21{width:54.745387pt;}
._20{width:55.809280pt;}
._22{width:56.994987pt;}
._1d{width:58.336383pt;}
._f{width:60.304000pt;}
._28{width:63.691146pt;}
._17{width:64.698667pt;}
._3f{width:74.439680pt;}
._19{width:85.226667pt;}
._3a{width:88.303360pt;}
._39{width:89.816960pt;}
._40{width:91.720320pt;}
._26{width:99.477706pt;}
._2c{width:120.529068pt;}
._3b{width:156.168960pt;}
._3c{width:157.069440pt;}
._3d{width:360.320640pt;}
._2b{width:1138.986667pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.y74{bottom:-2.240133pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y10c{bottom:2.280000pt;}
.y101{bottom:2.720000pt;}
.y5{bottom:2.880000pt;}
.y88{bottom:3.520000pt;}
.y11b{bottom:3.546667pt;}
.y8a{bottom:3.680000pt;}
.ya{bottom:4.320000pt;}
.y11a{bottom:4.346667pt;}
.y117{bottom:4.480000pt;}
.yd0{bottom:5.280000pt;}
.ybc{bottom:5.440000pt;}
.ycb{bottom:6.880000pt;}
.y6c{bottom:7.520000pt;}
.yc2{bottom:9.440000pt;}
.ye2{bottom:9.600000pt;}
.y6{bottom:10.080000pt;}
.yd5{bottom:10.880000pt;}
.yd8{bottom:11.040000pt;}
.y3{bottom:12.160000pt;}
.yc5{bottom:12.960000pt;}
.y8{bottom:14.560000pt;}
.y10b{bottom:14.600000pt;}
.y71{bottom:14.880000pt;}
.yd3{bottom:15.840000pt;}
.ycf{bottom:17.600000pt;}
.ybb{bottom:17.760000pt;}
.yc0{bottom:18.400000pt;}
.yca{bottom:19.200000pt;}
.yc{bottom:22.400000pt;}
.yd4{bottom:23.200000pt;}
.yd7{bottom:23.360000pt;}
.yc4{bottom:25.280000pt;}
.y7{bottom:26.720000pt;}
.y11e{bottom:28.160000pt;}
.ybf{bottom:30.720000pt;}
.yc9{bottom:31.520000pt;}
.yba{bottom:32.640000pt;}
.yb{bottom:34.560000pt;}
.ydc{bottom:35.040000pt;}
.ydb{bottom:47.360000pt;}
.y70{bottom:51.680000pt;}
.yda{bottom:62.240000pt;}
.y135{bottom:72.832000pt;}
.yae{bottom:75.712000pt;}
.y3d{bottom:76.992000pt;}
.y16b{bottom:79.232000pt;}
.y22d{bottom:83.552000pt;}
.y1fa{bottom:86.592000pt;}
.y6f{bottom:88.480000pt;}
.y134{bottom:88.832000pt;}
.y3c{bottom:89.152000pt;}
.y6a{bottom:91.232000pt;}
.yf9{bottom:91.392000pt;}
.y16a{bottom:91.552000pt;}
.yad{bottom:91.712000pt;}
.y22c{bottom:95.872000pt;}
.y1b5{bottom:98.432000pt;}
.y1f9{bottom:101.312000pt;}
.y3b{bottom:101.472000pt;}
.y169{bottom:103.712000pt;}
.y133{bottom:104.992000pt;}
.y69{bottom:107.232000pt;}
.yf8{bottom:107.552000pt;}
.y22b{bottom:108.032000pt;}
.y1b4{bottom:110.752000pt;}
.yac{bottom:112.352000pt;}
.y1f8{bottom:113.472000pt;}
.y168{bottom:116.032000pt;}
.y22a{bottom:120.352000pt;}
.y132{bottom:120.992000pt;}
.y1b3{bottom:122.912000pt;}
.y68{bottom:123.392000pt;}
.yf7{bottom:123.712000pt;}
.y6e{bottom:125.146667pt;}
.y1f7{bottom:125.792000pt;}
.y3a{bottom:125.952000pt;}
.yab{bottom:127.712000pt;}
.y167{bottom:128.352000pt;}
.y229{bottom:132.512000pt;}
.y1b2{bottom:135.226667pt;}
.y131{bottom:137.146667pt;}
.y39{bottom:138.266667pt;}
.y1f6{bottom:138.746667pt;}
.y67{bottom:139.386667pt;}
.yf6{bottom:139.706667pt;}
.y166{bottom:140.506667pt;}
.y228{bottom:144.826667pt;}
.y1b1{bottom:147.386667pt;}
.y38{bottom:151.066667pt;}
.y165{bottom:152.826667pt;}
.y130{bottom:153.146667pt;}
.yaa{bottom:153.306667pt;}
.y66{bottom:155.546667pt;}
.yf5{bottom:155.866667pt;}
.y227{bottom:157.146667pt;}
.y1b0{bottom:159.706667pt;}
.y164{bottom:164.986667pt;}
.y1f5{bottom:165.626667pt;}
.y37{bottom:165.786667pt;}
.y12f{bottom:169.306667pt;}
.ya9{bottom:170.906667pt;}
.y65{bottom:171.546667pt;}
.yf4{bottom:171.866667pt;}
.y1af{bottom:172.026667pt;}
.y163{bottom:177.306667pt;}
.y1f4{bottom:177.946667pt;}
.y36{bottom:178.106667pt;}
.y226{bottom:181.626667pt;}
.y1ae{bottom:184.186667pt;}
.y12e{bottom:185.306667pt;}
.y64{bottom:187.706667pt;}
.yf3{bottom:188.026667pt;}
.ya8{bottom:188.506667pt;}
.y162{bottom:189.626667pt;}
.y1f3{bottom:190.106667pt;}
.y35{bottom:190.266667pt;}
.y225{bottom:193.786667pt;}
.y1ad{bottom:196.506667pt;}
.y12d{bottom:201.466667pt;}
.y161{bottom:201.786667pt;}
.y34{bottom:202.586667pt;}
.y1f2{bottom:203.066667pt;}
.y63{bottom:203.706667pt;}
.yf2{bottom:204.026667pt;}
.y224{bottom:206.106667pt;}
.ya7{bottom:206.266667pt;}
.y1ac{bottom:208.666667pt;}
.y160{bottom:214.106667pt;}
.y33{bottom:214.746667pt;}
.y1f1{bottom:217.786667pt;}
.y223{bottom:218.426667pt;}
.y62{bottom:219.866667pt;}
.yf1{bottom:220.186667pt;}
.y1ab{bottom:220.986667pt;}
.ya6{bottom:223.866667pt;}
.y12c{bottom:224.826667pt;}
.y15f{bottom:226.266667pt;}
.y32{bottom:227.066667pt;}
.y1f0{bottom:229.946667pt;}
.y222{bottom:230.586667pt;}
.y1aa{bottom:233.306667pt;}
.y61{bottom:235.866667pt;}
.yf0{bottom:236.186667pt;}
.y15e{bottom:238.586667pt;}
.y31{bottom:239.386667pt;}
.ya5{bottom:241.466667pt;}
.y1ef{bottom:242.266667pt;}
.y221{bottom:242.906667pt;}
.y1a9{bottom:245.466667pt;}
.y15d{bottom:250.906667pt;}
.y30{bottom:251.546667pt;}
.y60{bottom:252.026667pt;}
.yef{bottom:252.346667pt;}
.y12b{bottom:253.946667pt;}
.y1ee{bottom:254.586667pt;}
.y220{bottom:255.066667pt;}
.y1a8{bottom:257.786667pt;}
.ya4{bottom:259.066667pt;}
.y2f{bottom:263.866667pt;}
.y1ed{bottom:267.386667pt;}
.y5f{bottom:268.026667pt;}
.yee{bottom:268.346667pt;}
.y1a7{bottom:269.946667pt;}
.y12a{bottom:270.266667pt;}
.y15c{bottom:271.706667pt;}
.y2e{bottom:276.026667pt;}
.ya3{bottom:276.666667pt;}
.y21f{bottom:279.706667pt;}
.y1ec{bottom:282.106667pt;}
.y1a6{bottom:282.266667pt;}
.y5e{bottom:284.186667pt;}
.yed{bottom:284.506667pt;}
.y129{bottom:286.586667pt;}
.y2d{bottom:288.666667pt;}
.y21e{bottom:291.866667pt;}
.ya2{bottom:294.266667pt;}
.y1eb{bottom:294.426667pt;}
.y1a5{bottom:294.586667pt;}
.y5d{bottom:300.386667pt;}
.yec{bottom:300.546667pt;}
.y2c{bottom:302.466667pt;}
.y128{bottom:303.106667pt;}
.y15b{bottom:303.746667pt;}
.y21d{bottom:304.226667pt;}
.y1ea{bottom:306.626667pt;}
.y1a4{bottom:306.786667pt;}
.ya1{bottom:309.666667pt;}
.y2b{bottom:316.386667pt;}
.y21c{bottom:316.546667pt;}
.yeb{bottom:316.706667pt;}
.y127{bottom:318.626667pt;}
.y1e9{bottom:318.946667pt;}
.y1a3{bottom:319.106667pt;}
.y15a{bottom:320.066667pt;}
.ya0{bottom:322.786667pt;}
.y21b{bottom:328.706667pt;}
.y2a{bottom:330.146667pt;}
.y1e8{bottom:331.106667pt;}
.y1a2{bottom:331.266667pt;}
.y5c{bottom:332.546667pt;}
.yea{bottom:332.706667pt;}
.y159{bottom:336.706667pt;}
.y9f{bottom:338.466667pt;}
.y21a{bottom:341.026667pt;}
.y1e7{bottom:343.426667pt;}
.y1a1{bottom:343.586667pt;}
.y126{bottom:346.466667pt;}
.y5b{bottom:348.546667pt;}
.ye9{bottom:348.866667pt;}
.y158{bottom:352.866667pt;}
.y219{bottom:353.186667pt;}
.y9e{bottom:353.986667pt;}
.y1e6{bottom:355.746667pt;}
.y1a0{bottom:355.906667pt;}
.y125{bottom:362.786667pt;}
.y5a{bottom:364.706667pt;}
.ye8{bottom:365.026667pt;}
.y218{bottom:365.506667pt;}
.y19f{bottom:368.066667pt;}
.y1e5{bottom:368.546667pt;}
.y157{bottom:368.866667pt;}
.y9d{bottom:369.666667pt;}
.y217{bottom:377.826667pt;}
.y124{bottom:379.266667pt;}
.y19e{bottom:380.386667pt;}
.y59{bottom:380.706667pt;}
.ye7{bottom:381.026667pt;}
.y1e4{bottom:383.266667pt;}
.y156{bottom:385.026667pt;}
.y9c{bottom:385.186667pt;}
.y216{bottom:389.986667pt;}
.y19d{bottom:392.546667pt;}
.y123{bottom:395.586667pt;}
.y58{bottom:396.866667pt;}
.ye6{bottom:397.186667pt;}
.y9b{bottom:400.866667pt;}
.y155{bottom:401.026667pt;}
.y215{bottom:402.306667pt;}
.y19c{bottom:404.866667pt;}
.y1e3{bottom:407.906667pt;}
.y122{bottom:411.106667pt;}
.y57{bottom:412.866667pt;}
.ye5{bottom:413.186667pt;}
.y214{bottom:414.466667pt;}
.y9a{bottom:416.386667pt;}
.y154{bottom:417.186667pt;}
.y19b{bottom:417.826667pt;}
.y1e2{bottom:420.066667pt;}
.y213{bottom:426.786667pt;}
.y121{bottom:427.426667pt;}
.y56{bottom:429.026667pt;}
.ye4{bottom:429.346667pt;}
.y99{bottom:432.066667pt;}
.y19a{bottom:432.386667pt;}
.y153{bottom:433.186667pt;}
.y212{bottom:439.106667pt;}
.y1df{bottom:441.666667pt;}
.y120{bottom:443.906667pt;}
.ye3{bottom:444.706667pt;}
.y55{bottom:445.026667pt;}
.y98{bottom:447.586667pt;}
.y152{bottom:449.346667pt;}
.y211{bottom:451.266667pt;}
.y1de{bottom:453.826667pt;}
.y1e1{bottom:456.866667pt;}
.y199{bottom:457.026667pt;}
.y29{bottom:457.986667pt;}
.y11f{bottom:460.226667pt;}
.y54{bottom:461.186667pt;}
.y97{bottom:463.266667pt;}
.y210{bottom:463.586667pt;}
.yd9{bottom:463.906667pt;}
.y151{bottom:465.346667pt;}
.y1dd{bottom:466.146667pt;}
.y198{bottom:469.186667pt;}
.y28{bottom:471.746667pt;}
.y20f{bottom:475.746667pt;}
.y11d{bottom:476.546667pt;}
.y53{bottom:477.186667pt;}
.y1dc{bottom:478.466667pt;}
.y96{bottom:478.786667pt;}
.y150{bottom:481.506667pt;}
.y27{bottom:485.666667pt;}
.y20e{bottom:488.066667pt;}
.y1db{bottom:490.626667pt;}
.ye1{bottom:491.746667pt;}
.y52{bottom:493.346667pt;}
.y197{bottom:493.666667pt;}
.y95{bottom:494.306667pt;}
.y14f{bottom:497.666667pt;}
.y26{bottom:499.426667pt;}
.y20d{bottom:500.386667pt;}
.y1da{bottom:502.946667pt;}
.y196{bottom:505.986667pt;}
.ye0{bottom:507.266667pt;}
.y51{bottom:509.506667pt;}
.y94{bottom:509.986667pt;}
.y20c{bottom:512.546667pt;}
.y14e{bottom:513.666667pt;}
.y1d9{bottom:515.106667pt;}
.y11c{bottom:516.706667pt;}
.y1e0{bottom:518.146667pt;}
.y195{bottom:518.306667pt;}
.y25{bottom:518.466667pt;}
.ydf{bottom:522.946667pt;}
.y20b{bottom:524.866667pt;}
.y50{bottom:525.506667pt;}
.y1d8{bottom:527.426667pt;}
.y14d{bottom:529.826667pt;}
.y194{bottom:530.466667pt;}
.y24{bottom:532.226667pt;}
.y119{bottom:533.026667pt;}
.y20a{bottom:537.053333pt;}
.yde{bottom:538.493333pt;}
.y1d7{bottom:539.773333pt;}
.y93{bottom:541.213333pt;}
.y4f{bottom:541.693333pt;}
.y193{bottom:542.813333pt;}
.y14c{bottom:545.853333pt;}
.y118{bottom:549.373333pt;}
.y23{bottom:551.453333pt;}
.y1d6{bottom:551.933333pt;}
.ydd{bottom:554.173333pt;}
.y192{bottom:554.973333pt;}
.y92{bottom:556.733333pt;}
.y4e{bottom:557.693333pt;}
.y209{bottom:561.693333pt;}
.y14b{bottom:562.013333pt;}
.y1d5{bottom:564.253333pt;}
.y22{bottom:565.213333pt;}
.y116{bottom:565.693333pt;}
.y191{bottom:567.293333pt;}
.yd6{bottom:569.693333pt;}
.y91{bottom:572.413333pt;}
.y4d{bottom:573.853333pt;}
.y1d4{bottom:576.413333pt;}
.y14a{bottom:578.013333pt;}
.y21{bottom:578.973333pt;}
.y190{bottom:579.613333pt;}
.y115{bottom:582.173333pt;}
.y208{bottom:586.173333pt;}
.y90{bottom:587.933333pt;}
.y1d3{bottom:588.733333pt;}
.y4c{bottom:589.853333pt;}
.y18f{bottom:591.773333pt;}
.y20{bottom:592.733333pt;}
.y207{bottom:598.333333pt;}
.y1d2{bottom:601.053333pt;}
.y149{bottom:601.373333pt;}
.y8f{bottom:603.613333pt;}
.y18e{bottom:604.093333pt;}
.y4b{bottom:606.013333pt;}
.y1f{bottom:606.653333pt;}
.y114{bottom:610.013333pt;}
.y206{bottom:610.653333pt;}
.yd2{bottom:612.573333pt;}
.y1d1{bottom:613.213333pt;}
.y18d{bottom:616.253333pt;}
.y8e{bottom:619.133333pt;}
.y1e{bottom:620.413333pt;}
.y4a{bottom:622.013333pt;}
.y205{bottom:622.973333pt;}
.y1d0{bottom:625.533333pt;}
.y113{bottom:626.333333pt;}
.y18c{bottom:628.573333pt;}
.y148{bottom:633.373333pt;}
.y1d{bottom:634.173333pt;}
.y8d{bottom:634.813333pt;}
.y204{bottom:635.133333pt;}
.y1cf{bottom:637.693333pt;}
.y49{bottom:638.173333pt;}
.y18b{bottom:640.893333pt;}
.y112{bottom:642.653333pt;}
.y203{bottom:647.453333pt;}
.y1c{bottom:647.933333pt;}
.y147{bottom:649.533333pt;}
.y1ce{bottom:650.013333pt;}
.y8c{bottom:650.333333pt;}
.y18a{bottom:653.053333pt;}
.y48{bottom:654.173333pt;}
.yce{bottom:655.293333pt;}
.y111{bottom:658.973333pt;}
.y202{bottom:659.613333pt;}
.y1b{bottom:661.693333pt;}
.y1cd{bottom:662.333333pt;}
.y189{bottom:665.373333pt;}
.y146{bottom:665.693333pt;}
.y8b{bottom:666.013333pt;}
.y47{bottom:670.333333pt;}
.yd1{bottom:670.973333pt;}
.y201{bottom:671.933333pt;}
.y1cc{bottom:674.493333pt;}
.y110{bottom:675.453333pt;}
.y1a{bottom:675.613333pt;}
.y188{bottom:677.533333pt;}
.y89{bottom:681.533333pt;}
.y145{bottom:681.693333pt;}
.y200{bottom:684.253333pt;}
.y46{bottom:686.333333pt;}
.yc8{bottom:686.493333pt;}
.y1cb{bottom:686.813333pt;}
.y19{bottom:689.373333pt;}
.y187{bottom:689.853333pt;}
.y87{bottom:697.213333pt;}
.y144{bottom:697.853333pt;}
.y1ca{bottom:698.973333pt;}
.ycd{bottom:702.173333pt;}
.y45{bottom:702.493333pt;}
.y18{bottom:703.133333pt;}
.y10f{bottom:703.293333pt;}
.y1ff{bottom:705.053333pt;}
.y237{bottom:708.893333pt;}
.y1c9{bottom:711.293333pt;}
.y143{bottom:713.853333pt;}
.y186{bottom:714.333333pt;}
.y17{bottom:716.893333pt;}
.ycc{bottom:717.693333pt;}
.y44{bottom:718.653333pt;}
.y86{bottom:721.053333pt;}
.y1c8{bottom:723.613333pt;}
.y185{bottom:726.653333pt;}
.y10e{bottom:726.973333pt;}
.y16{bottom:730.653333pt;}
.yc3{bottom:733.373333pt;}
.y43{bottom:734.653333pt;}
.y1c7{bottom:735.773333pt;}
.y142{bottom:737.213333pt;}
.y184{bottom:738.813333pt;}
.y85{bottom:742.333333pt;}
.y15{bottom:744.413333pt;}
.y1c6{bottom:748.093333pt;}
.y236{bottom:748.733333pt;}
.yc7{bottom:748.893333pt;}
.y42{bottom:750.813333pt;}
.y183{bottom:751.133333pt;}
.y14{bottom:758.333333pt;}
.y84{bottom:758.493333pt;}
.y1c5{bottom:760.253333pt;}
.y10d{bottom:760.733333pt;}
.y182{bottom:763.453333pt;}
.y235{bottom:764.093333pt;}
.yc6{bottom:764.573333pt;}
.y41{bottom:766.813333pt;}
.y141{bottom:769.213333pt;}
.y13{bottom:772.093333pt;}
.y1c4{bottom:772.573333pt;}
.y10a{bottom:773.693333pt;}
.y181{bottom:775.653333pt;}
.y83{bottom:779.173333pt;}
.y234{bottom:779.333333pt;}
.ybe{bottom:780.133333pt;}
.y40{bottom:783.013333pt;}
.y1c3{bottom:784.933333pt;}
.y140{bottom:785.413333pt;}
.y12{bottom:785.893333pt;}
.y180{bottom:787.973333pt;}
.y233{bottom:794.693333pt;}
.y1c2{bottom:797.093333pt;}
.y109{bottom:799.013333pt;}
.y11{bottom:799.653333pt;}
.y17f{bottom:800.133333pt;}
.y13f{bottom:801.573333pt;}
.y3f{bottom:802.853333pt;}
.yc1{bottom:807.333333pt;}
.y1c1{bottom:809.413333pt;}
.y232{bottom:810.053333pt;}
.y82{bottom:810.533333pt;}
.y108{bottom:811.973333pt;}
.y17e{bottom:812.453333pt;}
.y10{bottom:813.413333pt;}
.y13e{bottom:817.573333pt;}
.y1c0{bottom:821.573333pt;}
.yb9{bottom:823.013333pt;}
.y1fe{bottom:824.613333pt;}
.y107{bottom:824.773333pt;}
.y231{bottom:825.413333pt;}
.yf{bottom:827.173333pt;}
.y13d{bottom:833.733333pt;}
.y1bf{bottom:833.893333pt;}
.y17d{bottom:836.933333pt;}
.y106{bottom:837.733333pt;}
.y3e{bottom:838.533333pt;}
.y230{bottom:840.613333pt;}
.ye{bottom:841.093333pt;}
.y81{bottom:842.533333pt;}
.y1be{bottom:846.213333pt;}
.y17c{bottom:849.253333pt;}
.y13c{bottom:849.733333pt;}
.ybd{bottom:854.213333pt;}
.yd{bottom:854.853333pt;}
.y22f{bottom:855.973333pt;}
.y1bd{bottom:858.373333pt;}
.y80{bottom:858.693333pt;}
.y17b{bottom:861.413333pt;}
.y105{bottom:863.013333pt;}
.y13b{bottom:865.893333pt;}
.y22e{bottom:868.453333pt;}
.yb8{bottom:869.733333pt;}
.y1bc{bottom:870.693333pt;}
.y17a{bottom:873.733333pt;}
.y7f{bottom:874.693333pt;}
.y104{bottom:875.973333pt;}
.y6b{bottom:879.333333pt;}
.y13a{bottom:881.893333pt;}
.y1bb{bottom:882.853333pt;}
.y1fd{bottom:885.893333pt;}
.y179{bottom:886.053333pt;}
.y103{bottom:888.773333pt;}
.y7e{bottom:890.853333pt;}
.yb7{bottom:893.573333pt;}
.y1ba{bottom:895.173333pt;}
.y139{bottom:898.053333pt;}
.y178{bottom:898.213333pt;}
.y102{bottom:901.733333pt;}
.y7d{bottom:906.853333pt;}
.y6d{bottom:907.333333pt;}
.y1b9{bottom:907.493333pt;}
.yb6{bottom:908.933333pt;}
.y177{bottom:910.533333pt;}
.y138{bottom:914.053333pt;}
.y1b8{bottom:919.653333pt;}
.y176{bottom:922.693333pt;}
.y7c{bottom:923.013333pt;}
.y100{bottom:929.573333pt;}
.yb5{bottom:930.213333pt;}
.y1b7{bottom:931.973333pt;}
.y175{bottom:935.013333pt;}
.y7b{bottom:939.173333pt;}
.yff{bottom:942.373333pt;}
.y1b6{bottom:944.773333pt;}
.y137{bottom:946.213333pt;}
.yb4{bottom:946.373333pt;}
.y1fc{bottom:947.173333pt;}
.y174{bottom:947.333333pt;}
.y7a{bottom:955.173333pt;}
.yfe{bottom:955.333333pt;}
.y173{bottom:959.493333pt;}
.yb3{bottom:962.373333pt;}
.yfd{bottom:968.293333pt;}
.y79{bottom:971.333333pt;}
.y172{bottom:971.813333pt;}
.y136{bottom:978.373333pt;}
.yb2{bottom:978.533333pt;}
.yfc{bottom:981.253333pt;}
.y171{bottom:983.973333pt;}
.y78{bottom:987.333333pt;}
.yb1{bottom:994.533333pt;}
.y170{bottom:996.293333pt;}
.y77{bottom:1003.493333pt;}
.yfb{bottom:1006.373333pt;}
.y1fb{bottom:1008.453333pt;}
.y16f{bottom:1008.613333pt;}
.yb0{bottom:1010.693333pt;}
.y76{bottom:1019.520000pt;}
.y16e{bottom:1020.800000pt;}
.yaf{bottom:1026.720000pt;}
.yfa{bottom:1027.520000pt;}
.y16d{bottom:1033.120000pt;}
.y75{bottom:1042.880000pt;}
.y16c{bottom:1045.280000pt;}
.y73{bottom:1064.320000pt;}
.y72{bottom:1081.120000pt;}
.y2{bottom:1082.400000pt;}
.y4{bottom:1094.720000pt;}
.y1{bottom:1097.600000pt;}
.h23{height:12.160000pt;}
.h22{height:12.320000pt;}
.h20{height:12.352000pt;}
.h15{height:14.880000pt;}
.h1c{height:14.912000pt;}
.h16{height:15.040000pt;}
.h17{height:15.072000pt;}
.h4{height:15.360000pt;}
.h28{height:15.680000pt;}
.h2b{height:15.712000pt;}
.h2a{height:15.840000pt;}
.hf{height:21.120000pt;}
.h21{height:24.480000pt;}
.h26{height:24.640000pt;}
.h27{height:24.672000pt;}
.h24{height:25.918750pt;}
.h1a{height:26.560000pt;}
.h25{height:27.040000pt;}
.h1f{height:27.200000pt;}
.hd{height:29.940625pt;}
.hc{height:30.254687pt;}
.h1d{height:30.560000pt;}
.h29{height:31.217812pt;}
.h6{height:32.620625pt;}
.ha{height:33.515625pt;}
.hb{height:33.867188pt;}
.h9{height:34.781250pt;}
.h30{height:34.965625pt;}
.h8{height:35.130577pt;}
.h5{height:36.800000pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h14{height:38.672812pt;}
.h2d{height:39.347188pt;}
.h2c{height:39.520000pt;}
.h10{height:41.543750pt;}
.h19{height:42.080000pt;}
.h2e{height:43.613750pt;}
.h7{height:44.640000pt;}
.h18{height:46.080000pt;}
.h1b{height:46.112000pt;}
.h2f{height:60.288750pt;}
.he{height:74.628125pt;}
.h12{height:89.375000pt;}
.h13{height:90.312500pt;}
.h1e{height:105.152000pt;}
.h11{height:155.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.080000pt;}
.wd{width:76.320000pt;}
.wc{width:90.912000pt;}
.we{width:100.640000pt;}
.w12{width:122.240000pt;}
.w9{width:131.520000pt;}
.wb{width:147.386667pt;}
.wf{width:152.506667pt;}
.wa{width:167.066667pt;}
.w3{width:171.866667pt;}
.w11{width:172.866667pt;}
.w4{width:233.986667pt;}
.w10{width:253.786667pt;}
.w13{width:295.746667pt;}
.w8{width:299.226667pt;}
.w5{width:629.733333pt;}
.w6{width:649.213333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x4f{left:-11.400000pt;}
.x0{left:0.000000pt;}
.x36{left:6.880000pt;}
.x6{left:9.600000pt;}
.x3b{left:11.066667pt;}
.x3f{left:14.586667pt;}
.x41{left:15.680000pt;}
.x3a{left:17.440000pt;}
.x39{left:19.546667pt;}
.x3e{left:20.666667pt;}
.x3c{left:22.106667pt;}
.x3d{left:23.546667pt;}
.x11{left:25.760000pt;}
.x42{left:26.906667pt;}
.x2c{left:28.160000pt;}
.x37{left:30.266667pt;}
.x12{left:31.520000pt;}
.x1c{left:33.280000pt;}
.x48{left:35.040000pt;}
.x2d{left:36.640000pt;}
.x38{left:37.800000pt;}
.x29{left:39.360000pt;}
.x28{left:40.320000pt;}
.x2b{left:41.600000pt;}
.x4a{left:42.554667pt;}
.x27{left:44.794667pt;}
.x26{left:47.514667pt;}
.x47{left:48.520000pt;}
.x54{left:50.272000pt;}
.x1e{left:51.240000pt;}
.x50{left:52.832000pt;}
.x40{left:54.266667pt;}
.x24{left:55.354667pt;}
.x20{left:56.634667pt;}
.xd{left:58.400000pt;}
.x2f{left:59.354667pt;}
.x22{left:60.634667pt;}
.x3{left:62.400000pt;}
.x15{left:64.319988pt;}
.x7{left:65.600000pt;}
.x10{left:67.034667pt;}
.x19{left:68.319988pt;}
.x4b{left:69.480000pt;}
.x49{left:70.440000pt;}
.x8{left:71.840000pt;}
.x33{left:73.626667pt;}
.x9{left:75.840000pt;}
.x2e{left:77.754667pt;}
.xf{left:79.392000pt;}
.x4e{left:81.306667pt;}
.x52{left:82.266667pt;}
.x53{left:83.706667pt;}
.x55{left:85.786667pt;}
.x56{left:87.386667pt;}
.x1a{left:89.472000pt;}
.x44{left:90.431988pt;}
.x25{left:94.234667pt;}
.x45{left:97.952000pt;}
.x23{left:124.154667pt;}
.x4c{left:125.791988pt;}
.x21{left:130.714667pt;}
.x1f{left:133.914667pt;}
.x2a{left:137.754667pt;}
.x51{left:139.066667pt;}
.x5e{left:140.506655pt;}
.x1b{left:148.154667pt;}
.x57{left:170.266655pt;}
.x17{left:179.066655pt;}
.x18{left:180.186655pt;}
.xe{left:194.946667pt;}
.x46{left:199.226667pt;}
.x1d{left:221.626667pt;}
.x1{left:246.946667pt;}
.x4d{left:250.466667pt;}
.x13{left:285.314667pt;}
.x16{left:295.266655pt;}
.x5f{left:387.266655pt;}
.x2{left:393.826667pt;}
.x14{left:396.866655pt;}
.xc{left:406.466667pt;}
.x32{left:411.746667pt;}
.x5{left:414.813333pt;}
.xb{left:415.933333pt;}
.x30{left:419.933322pt;}
.x5d{left:425.373322pt;}
.x43{left:434.333322pt;}
.x31{left:465.853322pt;}
.x59{left:475.293322pt;}
.x5c{left:481.693322pt;}
.x5b{left:489.053322pt;}
.x5a{left:502.653322pt;}
.xa{left:506.493333pt;}
.x58{left:512.413322pt;}
.x34{left:559.773333pt;}
.x35{left:651.333333pt;}
.x4{left:725.413333pt;}
}




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