
    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_7b9b844ecc1479fd7fff88b0.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_683e1772a174c5520bcabcd9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a9f30e1c6bdfa3b62248ea4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9c0f6aeac2ad54e7fb03688c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0c2523d4c01ed863318fda8b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_82612e240accc7e53518b0c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894043;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_336fce95fdc28dc160477772.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3e8ae558aac183d9ba0f201a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_361925f26f2f36fc6263cf65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_9c297d3ed977067d77b55fd9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120605;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_ab5d4b7adc7f54c145c3c5e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120605;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_6a865c919415bb8ea6d0c42d.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_0ff181cb0a3e7fc2d4ad97dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.859375;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m5{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);}
.vf{vertical-align:-61.920000px;}
.va{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.ve{vertical-align:-18.120000px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:14.400000px;}
.vc{vertical-align:16.560000px;}
.v4{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v8{vertical-align:33.120000px;}
.v7{vertical-align:38.880000px;}
.vd{vertical-align:53.520000px;}
.v9{vertical-align:72.000000px;}
.ls1c{letter-spacing:-0.846000px;}
.ls43{letter-spacing:-0.702000px;}
.ls28{letter-spacing:-0.666000px;}
.ls16{letter-spacing:-0.630000px;}
.ls21{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.538800px;}
.ls36{letter-spacing:-0.513600px;}
.ls3a{letter-spacing:-0.413400px;}
.ls1a{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.315600px;}
.ls3f{letter-spacing:-0.269400px;}
.ls2e{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.223800px;}
.ls34{letter-spacing:-0.206400px;}
.ls3b{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.053280px;}
.ls1e{letter-spacing:-0.018000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls45{letter-spacing:0.018000px;}
.ls3d{letter-spacing:0.053280px;}
.ls30{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.135600px;}
.ls37{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.156240px;}
.ls3c{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.206640px;}
.ls44{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.223800px;}
.ls10{letter-spacing:0.259920px;}
.ls33{letter-spacing:0.276240px;}
.lse{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls17{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.365040px;}
.ls18{letter-spacing:0.493800px;}
.ls42{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.612000px;}
.ls24{letter-spacing:0.828000px;}
.ls12{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.062000px;}
.ls38{letter-spacing:1.620000px;}
.ls25{letter-spacing:2.340000px;}
.ls41{letter-spacing:2.880000px;}
.ls46{letter-spacing:3.060000px;}
.ls2f{letter-spacing:3.780000px;}
.ls7{letter-spacing:3.960000px;}
.lsd{letter-spacing:4.500000px;}
.lsb{letter-spacing:5.220000px;}
.ls26{letter-spacing:5.400000px;}
.ls8{letter-spacing:6.120000px;}
.lsa{letter-spacing:6.660000px;}
.ls9{letter-spacing:8.100000px;}
.ls2c{letter-spacing:9.720000px;}
.ls3e{letter-spacing:10.260000px;}
.ls13{letter-spacing:12.420000px;}
.lsf{letter-spacing:13.140000px;}
.ls29{letter-spacing:14.007600px;}
.ls2a{letter-spacing:16.784640px;}
.ls31{letter-spacing:18.900000px;}
.ls4{letter-spacing:24.660000px;}
.ls6{letter-spacing:62.640000px;}
.ls5{letter-spacing:66.960000px;}
.ls39{letter-spacing:743.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws29{word-spacing:-54.000000px;}
.ws1c{word-spacing:-51.912000px;}
.ws23{word-spacing:-48.240000px;}
.ws9{word-spacing:-31.500000px;}
.ws7{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.865400px;}
.ws15{word-spacing:-15.768000px;}
.ws27{word-spacing:-15.453600px;}
.ws16{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.046800px;}
.ws26{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.886720px;}
.ws1f{word-spacing:-14.733600px;}
.ws1e{word-spacing:-14.580000px;}
.ws21{word-spacing:-14.526600px;}
.ws19{word-spacing:-14.274000px;}
.ws0{word-spacing:-13.860000px;}
.ws28{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws22{word-spacing:-13.374000px;}
.wsd{word-spacing:-13.140000px;}
.wse{word-spacing:-12.654000px;}
.ws6{word-spacing:-12.420000px;}
.ws25{word-spacing:-12.283800px;}
.ws1a{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.836200px;}
.ws1b{word-spacing:-11.521200px;}
.ws5{word-spacing:-10.933800px;}
.ws24{word-spacing:-10.902240px;}
.ws3{word-spacing:-10.755600px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-10.124400px;}
.ws2{word-spacing:-9.810000px;}
.ws13{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.000000px;}
.ws20{word-spacing:-7.920000px;}
.wsa{word-spacing:-7.560000px;}
.ws17{word-spacing:0.000000px;}
._1d{margin-left:-2.291520px;}
._1{margin-left:-1.102560px;}
._0{width:1.586880px;}
._2{width:2.769120px;}
._6{width:4.575840px;}
._c{width:6.492000px;}
._d{width:7.570560px;}
._10{width:8.852880px;}
._b{width:10.034083px;}
._5{width:11.356239px;}
._7{width:12.368725px;}
._11{width:13.373899px;}
._8{width:14.527680px;}
._e{width:16.199597px;}
._14{width:17.509680px;}
._13{width:19.069200px;}
._12{width:20.126160px;}
._9{width:21.168000px;}
._a{width:22.308240px;}
._4{width:24.444000px;}
._21{width:28.600560px;}
._20{width:29.964000px;}
._24{width:31.056000px;}
._25{width:32.099520px;}
._23{width:33.823200px;}
._22{width:34.938000px;}
._34{width:38.325840px;}
._33{width:39.420000px;}
._35{width:47.874000px;}
._2e{width:73.170000px;}
._2d{width:74.272560px;}
._26{width:78.924000px;}
._32{width:79.972560px;}
._31{width:81.216000px;}
._28{width:91.706640px;}
._27{width:92.934000px;}
._30{width:95.958000px;}
._2f{width:97.086000px;}
._2a{width:99.661440px;}
._29{width:101.329200px;}
._2c{width:104.547120px;}
._2b{width:105.996000px;}
._1e{width:190.031520px;}
._18{width:219.396000px;}
._1f{width:230.676000px;}
._19{width:259.896000px;}
._1c{width:659.592000px;}
._1b{width:674.710320px;}
._16{width:717.366000px;}
._15{width:730.806000px;}
._17{width:812.873760px;}
._1a{width:814.788480px;}
._f{width:1834.296000px;}
._3{width:2055.231840px;}
.fc9{color:transparent;}
.fc8{color:rgb(0,112,192);}
.fc7{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fcb{color:rgb(34,34,34);}
.fca{color:rgb(17,17,17);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fsf{font-size:31.680000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:50.848916px;}
.fs0{font-size:54.000000px;}
.fs10{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs12{font-size:59.904000px;}
.fs11{font-size:64.800000px;}
.fsd{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs13{font-size:84.240000px;}
.fse{font-size:95.760000px;}
.fs8{font-size:126.000000px;}
.y136{bottom:-655.530000px;}
.y10c{bottom:-462.090000px;}
.y16b{bottom:-0.465000px;}
.y0{bottom:0.000000px;}
.y168{bottom:0.465000px;}
.y16a{bottom:0.795000px;}
.y170{bottom:1.290000px;}
.y16d{bottom:1.335000px;}
.y46{bottom:4.320000px;}
.y14f{bottom:5.220000px;}
.y2a{bottom:5.580000px;}
.y154{bottom:6.120000px;}
.y119{bottom:6.660000px;}
.ybf{bottom:7.200000px;}
.yc5{bottom:7.380000px;}
.yc1{bottom:8.100000px;}
.yc8{bottom:8.685000px;}
.y148{bottom:12.030000px;}
.y45{bottom:18.180000px;}
.y84{bottom:18.900000px;}
.y49{bottom:19.260000px;}
.y29{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.y10e{bottom:22.500000px;}
.y28{bottom:29.340000px;}
.y13d{bottom:31.500000px;}
.y2{bottom:33.840000px;}
.y107{bottom:38.955000px;}
.y105{bottom:40.470000px;}
.y1{bottom:46.620000px;}
.y27{bottom:47.160000px;}
.y109{bottom:47.340000px;}
.y13a{bottom:49.140000px;}
.y10f{bottom:52.485000px;}
.y26{bottom:64.980000px;}
.y13b{bottom:66.570000px;}
.y138{bottom:69.915000px;}
.y13e{bottom:70.845000px;}
.y135{bottom:72.900000px;}
.y1e3{bottom:73.260000px;}
.y81{bottom:74.520000px;}
.ybd{bottom:74.700000px;}
.ydf{bottom:77.580000px;}
.y1a6{bottom:80.100000px;}
.y103{bottom:80.280000px;}
.y110{bottom:82.470000px;}
.y25{bottom:82.800000px;}
.y21c{bottom:85.860000px;}
.y1e2{bottom:88.920000px;}
.y166{bottom:89.460000px;}
.y134{bottom:90.180000px;}
.y80{bottom:91.800000px;}
.y139{bottom:93.270000px;}
.ybc{bottom:94.500000px;}
.y43{bottom:95.220000px;}
.yde{bottom:97.560000px;}
.y102{bottom:100.080000px;}
.y24{bottom:100.800000px;}
.y21b{bottom:101.340000px;}
.y106{bottom:106.560000px;}
.y133{bottom:107.100000px;}
.y1e1{bottom:108.900000px;}
.y7f{bottom:109.080000px;}
.y165{bottom:109.260000px;}
.y13f{bottom:110.190000px;}
.y111{bottom:112.425000px;}
.ybb{bottom:114.300000px;}
.y42{bottom:115.020000px;}
.y1a5{bottom:115.560000px;}
.y21a{bottom:116.820000px;}
.ydd{bottom:117.360000px;}
.y23{bottom:118.650000px;}
.y101{bottom:119.880000px;}
.y132{bottom:124.380000px;}
.y10a{bottom:124.815000px;}
.y7e{bottom:128.340000px;}
.y164{bottom:129.060000px;}
.y1a4{bottom:131.040000px;}
.y219{bottom:132.480000px;}
.yba{bottom:134.280000px;}
.y41{bottom:135.000000px;}
.y22{bottom:136.470000px;}
.ydc{bottom:137.160000px;}
.y11a{bottom:138.090000px;}
.y100{bottom:139.680000px;}
.y1e0{bottom:139.860000px;}
.y112{bottom:142.410000px;}
.y131{bottom:144.360000px;}
.y218{bottom:147.960000px;}
.y7d{bottom:148.140000px;}
.y163{bottom:148.860000px;}
.y140{bottom:149.580000px;}
.y1a3{bottom:151.230000px;}
.yb9{bottom:154.110000px;}
.y21{bottom:154.290000px;}
.y40{bottom:154.830000px;}
.y2c{bottom:156.990000px;}
.y108{bottom:158.040000px;}
.yff{bottom:159.690000px;}
.y1df{bottom:160.050000px;}
.y217{bottom:163.470000px;}
.y130{bottom:164.190000px;}
.y1a2{bottom:166.710000px;}
.y7c{bottom:168.330000px;}
.y162{bottom:168.690000px;}
.y20{bottom:172.110000px;}
.y113{bottom:172.410000px;}
.yb8{bottom:173.910000px;}
.y3f{bottom:174.630000px;}
.y1de{bottom:175.530000px;}
.ydb{bottom:176.790000px;}
.y216{bottom:178.950000px;}
.yfe{bottom:179.490000px;}
.y1a1{bottom:182.190000px;}
.y12f{bottom:183.990000px;}
.y7b{bottom:188.310000px;}
.y161{bottom:188.670000px;}
.y141{bottom:188.925000px;}
.y1f{bottom:190.110000px;}
.yb7{bottom:193.710000px;}
.y149{bottom:193.965000px;}
.y3e{bottom:194.430000px;}
.y215{bottom:194.610000px;}
.y1dd{bottom:195.510000px;}
.yda{bottom:196.770000px;}
.yfd{bottom:199.290000px;}
.y1a0{bottom:202.170000px;}
.y114{bottom:202.395000px;}
.y12e{bottom:203.790000px;}
.y1e{bottom:207.930000px;}
.y7a{bottom:208.110000px;}
.y160{bottom:208.470000px;}
.y214{bottom:210.090000px;}
.y1dc{bottom:210.990000px;}
.yb6{bottom:213.510000px;}
.y3d{bottom:214.230000px;}
.yd9{bottom:216.570000px;}
.y19f{bottom:217.830000px;}
.yfc{bottom:219.090000px;}
.y12d{bottom:223.770000px;}
.y1d{bottom:225.750000px;}
.y1db{bottom:227.370000px;}
.y79{bottom:227.910000px;}
.y142{bottom:228.270000px;}
.y115{bottom:232.350000px;}
.y19e{bottom:233.310000px;}
.yb5{bottom:233.490000px;}
.y3c{bottom:234.210000px;}
.yd8{bottom:236.010000px;}
.yfb{bottom:238.890000px;}
.y213{bottom:241.050000px;}
.y1c{bottom:243.570000px;}
.y78{bottom:247.710000px;}
.y1da{bottom:248.610000px;}
.y19d{bottom:248.790000px;}
.y15f{bottom:249.330000px;}
.yb4{bottom:252.930000px;}
.y3b{bottom:254.010000px;}
.yd7{bottom:256.170000px;}
.y212{bottom:256.710000px;}
.yfa{bottom:258.870000px;}
.y1b{bottom:261.390000px;}
.y116{bottom:262.335000px;}
.y12c{bottom:263.370000px;}
.y1d9{bottom:264.090000px;}
.y77{bottom:267.510000px;}
.y143{bottom:267.630000px;}
.y19c{bottom:268.770000px;}
.y15e{bottom:270.570000px;}
.yb3{bottom:272.730000px;}
.y3a{bottom:273.810000px;}
.yd6{bottom:274.710000px;}
.y211{bottom:278.130000px;}
.yf9{bottom:278.670000px;}
.y1a{bottom:279.210000px;}
.y1d8{bottom:279.570000px;}
.y12b{bottom:283.170000px;}
.y19b{bottom:284.430000px;}
.y76{bottom:287.490000px;}
.y15d{bottom:287.850000px;}
.yd5{bottom:291.450000px;}
.y117{bottom:292.320000px;}
.yb2{bottom:292.530000px;}
.y39{bottom:293.610000px;}
.yf8{bottom:298.470000px;}
.y1d7{bottom:299.730000px;}
.y19a{bottom:299.910000px;}
.y19{bottom:301.350000px;}
.y12a{bottom:302.970000px;}
.y10d{bottom:303.840000px;}
.y15c{bottom:304.050000px;}
.y144{bottom:306.975000px;}
.y75{bottom:307.290000px;}
.yd4{bottom:309.450000px;}
.yb1{bottom:312.690000px;}
.y38{bottom:313.410000px;}
.y2b{bottom:313.950000px;}
.y1d6{bottom:315.210000px;}
.yf7{bottom:318.270000px;}
.y199{bottom:319.890000px;}
.y210{bottom:321.150000px;}
.y16f{bottom:321.300000px;}
.y118{bottom:322.275000px;}
.y171{bottom:322.920000px;}
.y129{bottom:322.950000px;}
.yd3{bottom:326.010000px;}
.y74{bottom:327.090000px;}
.y1d5{bottom:330.690000px;}
.yb0{bottom:332.670000px;}
.y37{bottom:333.390000px;}
.y198{bottom:335.370000px;}
.yf6{bottom:338.070000px;}
.y128{bottom:342.750000px;}
.y145{bottom:346.320000px;}
.y73{bottom:346.890000px;}
.y11c{bottom:349.050000px;}
.y1d4{bottom:350.670000px;}
.y197{bottom:351.030000px;}
.yaf{bottom:352.470000px;}
.y36{bottom:353.190000px;}
.yf5{bottom:358.050000px;}
.y11b{bottom:358.530000px;}
.y127{bottom:362.550000px;}
.y20f{bottom:364.170000px;}
.y1d3{bottom:366.330000px;}
.y72{bottom:366.690000px;}
.y196{bottom:371.010000px;}
.yae{bottom:372.270000px;}
.y35{bottom:372.990000px;}
.yf4{bottom:377.850000px;}
.y1d2{bottom:381.810000px;}
.y126{bottom:382.350000px;}
.y146{bottom:385.665000px;}
.y20e{bottom:385.770000px;}
.y71{bottom:386.310000px;}
.y195{bottom:386.490000px;}
.yad{bottom:392.070000px;}
.y34{bottom:392.790000px;}
.yf3{bottom:397.650000px;}
.y1d1{bottom:401.835000px;}
.y194{bottom:402.015000px;}
.y125{bottom:402.195000px;}
.y70{bottom:406.155000px;}
.y20d{bottom:407.415000px;}
.y13c{bottom:411.150000px;}
.yac{bottom:411.915000px;}
.y33{bottom:412.635000px;}
.y1d0{bottom:417.315000px;}
.yf2{bottom:417.495000px;}
.y124{bottom:422.175000px;}
.y147{bottom:425.010000px;}
.y6f{bottom:426.315000px;}
.y20c{bottom:428.835000px;}
.yab{bottom:431.895000px;}
.y32{bottom:432.615000px;}
.y1cf{bottom:432.795000px;}
.yf1{bottom:437.295000px;}
.y193{bottom:437.655000px;}
.y123{bottom:441.975000px;}
.y6e{bottom:446.115000px;}
.y20b{bottom:450.435000px;}
.yaa{bottom:451.335000px;}
.y31{bottom:452.415000px;}
.y1ce{bottom:452.955000px;}
.y192{bottom:453.135000px;}
.yf0{bottom:457.275000px;}
.y122{bottom:461.775000px;}
.y14b{bottom:462.270000px;}
.y6d{bottom:465.915000px;}
.y1cd{bottom:468.435000px;}
.y191{bottom:468.615000px;}
.ya9{bottom:471.495000px;}
.y20a{bottom:471.855000px;}
.y30{bottom:472.215000px;}
.y14a{bottom:474.015000px;}
.yef{bottom:477.075000px;}
.y121{bottom:481.575000px;}
.y1cc{bottom:483.915000px;}
.y6c{bottom:485.895000px;}
.y190{bottom:488.595000px;}
.ya8{bottom:491.295000px;}
.y2f{bottom:492.015000px;}
.y209{bottom:493.455000px;}
.yee{bottom:496.875000px;}
.y120{bottom:501.375000px;}
.y1cb{bottom:503.895000px;}
.y18f{bottom:504.255000px;}
.y6b{bottom:505.695000px;}
.ya7{bottom:511.095000px;}
.y2e{bottom:511.455000px;}
.y208{bottom:511.815000px;}
.yed{bottom:516.675000px;}
.y1ca{bottom:519.555000px;}
.y18e{bottom:519.735000px;}
.y11f{bottom:520.815000px;}
.y6a{bottom:525.495000px;}
.y169{bottom:528.480000px;}
.ya6{bottom:531.075000px;}
.y2d{bottom:531.795000px;}
.y207{bottom:533.235000px;}
.y1c9{bottom:535.035000px;}
.yec{bottom:536.475000px;}
.y11e{bottom:538.635000px;}
.y18d{bottom:541.335000px;}
.y69{bottom:544.935000px;}
.y18{bottom:545.475000px;}
.y206{bottom:548.895000px;}
.ya5{bottom:550.875000px;}
.y11d{bottom:553.215000px;}
.y1c8{bottom:555.015000px;}
.y137{bottom:555.480000px;}
.yeb{bottom:556.455000px;}
.y18c{bottom:559.335000px;}
.y205{bottom:564.375000px;}
.y68{bottom:564.735000px;}
.y1c7{bottom:570.495000px;}
.ya4{bottom:570.675000px;}
.yea{bottom:576.255000px;}
.y16c{bottom:576.540000px;}
.y16e{bottom:577.980000px;}
.y18b{bottom:581.655000px;}
.y204{bottom:584.355000px;}
.y67{bottom:585.075000px;}
.ya3{bottom:590.475000px;}
.y1c6{bottom:590.655000px;}
.ye9{bottom:596.055000px;}
.y203{bottom:599.835000px;}
.y66{bottom:604.875000px;}
.y1c5{bottom:606.135000px;}
.ya2{bottom:609.915000px;}
.y202{bottom:615.495000px;}
.ye8{bottom:615.855000px;}
.y1c4{bottom:621.615000px;}
.y18a{bottom:622.155000px;}
.y65{bottom:624.675000px;}
.ya1{bottom:630.255000px;}
.y201{bottom:635.475000px;}
.ye7{bottom:635.655000px;}
.y189{bottom:638.895000px;}
.y1c3{bottom:641.595000px;}
.y64{bottom:644.475000px;}
.ya0{bottom:650.085000px;}
.y200{bottom:650.985000px;}
.ye6{bottom:655.665000px;}
.y188{bottom:656.205000px;}
.y1c2{bottom:657.285000px;}
.y63{bottom:664.305000px;}
.y1ff{bottom:666.465000px;}
.y9f{bottom:669.885000px;}
.y1c1{bottom:672.765000px;}
.y187{bottom:673.845000px;}
.ye5{bottom:675.465000px;}
.y62{bottom:684.285000px;}
.y1fe{bottom:686.625000px;}
.y9e{bottom:686.985000px;}
.y186{bottom:690.765000px;}
.y1c0{bottom:692.745000px;}
.y9d{bottom:695.265000px;}
.ye4{bottom:699.045000px;}
.yd2{bottom:702.105000px;}
.y61{bottom:704.085000px;}
.y185{bottom:708.045000px;}
.y1bf{bottom:708.225000px;}
.y1fd{bottom:717.585000px;}
.y9c{bottom:721.005000px;}
.yd1{bottom:721.905000px;}
.y60{bottom:723.885000px;}
.ye3{bottom:725.685000px;}
.y1fc{bottom:737.565000px;}
.y9b{bottom:740.805000px;}
.yd0{bottom:741.885000px;}
.ye2{bottom:742.245000px;}
.y184{bottom:742.785000px;}
.y5f{bottom:743.685000px;}
.y1be{bottom:743.865000px;}
.y1fb{bottom:753.225000px;}
.ye1{bottom:757.185000px;}
.y104{bottom:757.260000px;}
.y1bd{bottom:759.345000px;}
.y183{bottom:760.065000px;}
.y9a{bottom:760.605000px;}
.ycf{bottom:761.685000px;}
.y5e{bottom:763.485000px;}
.y1fa{bottom:768.705000px;}
.y1bc{bottom:774.825000px;}
.y182{bottom:777.345000px;}
.y99{bottom:780.405000px;}
.yce{bottom:781.485000px;}
.y167{bottom:782.820000px;}
.y5d{bottom:783.465000px;}
.y1f9{bottom:788.685000px;}
.y181{bottom:794.265000px;}
.y1bb{bottom:794.985000px;}
.y98{bottom:800.205000px;}
.ycd{bottom:801.285000px;}
.y5c{bottom:803.265000px;}
.y1f8{bottom:804.165000px;}
.y1ba{bottom:810.465000px;}
.y180{bottom:811.905000px;}
.y15b{bottom:819.285000px;}
.y1f7{bottom:819.645000px;}
.y97{bottom:820.185000px;}
.ycc{bottom:821.085000px;}
.y5b{bottom:823.065000px;}
.y1b9{bottom:826.305000px;}
.y17f{bottom:829.185000px;}
.y15a{bottom:838.545000px;}
.y1f6{bottom:839.805000px;}
.y96{bottom:839.985000px;}
.ycb{bottom:841.065000px;}
.y5a{bottom:842.505000px;}
.y17e{bottom:846.285000px;}
.y159{bottom:852.405000px;}
.y1f5{bottom:855.285000px;}
.y95{bottom:859.785000px;}
.yca{bottom:860.505000px;}
.y1b8{bottom:861.765000px;}
.y59{bottom:862.305000px;}
.y17d{bottom:863.205000px;}
.y17{bottom:865.185000px;}
.y158{bottom:866.085000px;}
.y1f4{bottom:870.765000px;}
.y1b7{bottom:877.245000px;}
.y94{bottom:879.585000px;}
.y157{bottom:879.945000px;}
.yc9{bottom:880.665000px;}
.y17c{bottom:880.845000px;}
.y58{bottom:882.645000px;}
.y16{bottom:884.085000px;}
.y1f3{bottom:890.745000px;}
.y156{bottom:893.805000px;}
.yc7{bottom:895.065000px;}
.y15{bottom:896.325000px;}
.y1b6{bottom:897.450000px;}
.y17b{bottom:898.170000px;}
.y93{bottom:899.430000px;}
.y14{bottom:902.130000px;}
.y57{bottom:902.490000px;}
.y1f2{bottom:906.450000px;}
.y13{bottom:907.350000px;}
.y155{bottom:907.530000px;}
.y1b5{bottom:912.930000px;}
.y17a{bottom:915.090000px;}
.y12{bottom:915.810000px;}
.yc6{bottom:919.050000px;}
.y153{bottom:919.230000px;}
.y92{bottom:919.410000px;}
.y1f1{bottom:921.930000px;}
.y56{bottom:922.290000px;}
.y1b4{bottom:928.410000px;}
.y179{bottom:932.190000px;}
.y11{bottom:934.890000px;}
.y91{bottom:939.210000px;}
.y152{bottom:940.470000px;}
.yc4{bottom:941.910000px;}
.y55{bottom:942.090000px;}
.y10{bottom:943.530000px;}
.y1b3{bottom:948.390000px;}
.y178{bottom:949.470000px;}
.yf{bottom:956.130000px;}
.y1f0{bottom:957.390000px;}
.y90{bottom:958.650000px;}
.y151{bottom:960.450000px;}
.y54{bottom:961.530000px;}
.yc3{bottom:963.510000px;}
.y1b2{bottom:964.050000px;}
.y177{bottom:968.010000px;}
.y1ef{bottom:973.050000px;}
.yd{bottom:978.090000px;}
.y8f{bottom:978.810000px;}
.y150{bottom:980.430000px;}
.y53{bottom:981.510000px;}
.y1b1{bottom:984.030000px;}
.ye{bottom:984.930000px;}
.yc2{bottom:986.190000px;}
.y1ee{bottom:988.530000px;}
.y176{bottom:993.750000px;}
.y8e{bottom:996.270000px;}
.y1b0{bottom:999.510000px;}
.yc{bottom:1000.410000px;}
.y14e{bottom:1001.130000px;}
.y52{bottom:1001.310000px;}
.y1ed{bottom:1008.510000px;}
.yc0{bottom:1009.050000px;}
.y8d{bottom:1013.550000px;}
.y1af{bottom:1014.990000px;}
.y51{bottom:1021.110000px;}
.y1ec{bottom:1023.990000px;}
.yb{bottom:1026.690000px;}
.y14d{bottom:1027.950000px;}
.y8c{bottom:1030.830000px;}
.ybe{bottom:1032.630000px;}
.y175{bottom:1033.350000px;}
.y1ae{bottom:1035.150000px;}
.y1eb{bottom:1039.650000px;}
.y50{bottom:1041.270000px;}
.y14c{bottom:1047.390000px;}
.y8b{bottom:1047.930000px;}
.y1ad{bottom:1050.630000px;}
.y174{bottom:1053.150000px;}
.y1ea{bottom:1059.630000px;}
.y4f{bottom:1061.070000px;}
.y8a{bottom:1065.210000px;}
.y1ac{bottom:1066.110000px;}
.ya{bottom:1068.450000px;}
.y173{bottom:1072.590000px;}
.y1e9{bottom:1075.110000px;}
.y4e{bottom:1081.050000px;}
.y89{bottom:1082.490000px;}
.y1ab{bottom:1086.090000px;}
.y1e8{bottom:1090.590000px;}
.y172{bottom:1095.090000px;}
.y88{bottom:1099.770000px;}
.y4d{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y1aa{bottom:1101.750000px;}
.y1e7{bottom:1110.750000px;}
.y44{bottom:1112.730000px;}
.y87{bottom:1117.050000px;}
.y1a9{bottom:1117.230000px;}
.y8{bottom:1117.950000px;}
.y4c{bottom:1120.650000px;}
.y1e6{bottom:1126.230000px;}
.y86{bottom:1134.330000px;}
.y1a8{bottom:1137.210000px;}
.y4b{bottom:1140.450000px;}
.y1e5{bottom:1141.710000px;}
.ye0{bottom:1151.280000px;}
.y85{bottom:1151.460000px;}
.y1a7{bottom:1152.720000px;}
.y7{bottom:1155.960000px;}
.y4a{bottom:1160.280000px;}
.y1e4{bottom:1161.720000px;}
.y6{bottom:1167.480000px;}
.y83{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y48{bottom:1178.460000px;}
.y82{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y47{bottom:1197.720000px;}
.y10b{bottom:1262.520000px;}
.h2b{height:0.000000px;}
.h6{height:5.650313px;}
.h11{height:12.012891px;}
.h37{height:13.140000px;}
.h38{height:13.500000px;}
.h39{height:15.300000px;}
.h14{height:18.140625px;}
.h35{height:19.965000px;}
.h36{height:21.225000px;}
.h21{height:21.585000px;}
.h23{height:22.665000px;}
.h22{height:22.845000px;}
.h24{height:23.962500px;}
.h1a{height:27.705000px;}
.he{height:29.664141px;}
.hd{height:29.678906px;}
.h10{height:35.504859px;}
.hb{height:39.183750px;}
.h3{height:40.985156px;}
.h1b{height:42.922699px;}
.h25{height:43.215117px;}
.hf{height:47.321367px;}
.h7{height:47.344922px;}
.h31{height:47.980898px;}
.h4{height:48.616875px;}
.h2{height:52.998047px;}
.h2c{height:53.139375px;}
.h8{height:54.421875px;}
.h16{height:55.503472px;}
.h1d{height:58.621992px;}
.h17{height:58.651172px;}
.h13{height:59.092031px;}
.h2f{height:59.439023px;}
.h33{height:59.582250px;}
.h9{height:60.226875px;}
.h3b{height:61.423863px;}
.h19{height:65.518594px;}
.h2e{height:65.638594px;}
.h18{height:65.698594px;}
.hc{height:66.543750px;}
.h15{height:66.757500px;}
.h1c{height:70.664062px;}
.h5{height:72.562500px;}
.h1e{height:79.535391px;}
.h3a{height:84.898125px;}
.h20{height:91.771172px;}
.h34{height:91.998047px;}
.h26{height:93.983203px;}
.h2d{height:106.518047px;}
.h1f{height:112.655391px;}
.ha{height:126.984375px;}
.h29{height:140.940000px;}
.h27{height:142.380000px;}
.h2a{height:149.220000px;}
.h32{height:179.280000px;}
.h12{height:313.950000px;}
.h28{height:387.900000px;}
.h30{height:499.500000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:0.000000px;}
.w8{width:0.180000px;}
.w10{width:28.440000px;}
.w12{width:32.040000px;}
.wf{width:32.580000px;}
.w11{width:35.280000px;}
.w13{width:83.700000px;}
.w15{width:83.880000px;}
.w14{width:91.800000px;}
.w3{width:101.730000px;}
.w7{width:122.250000px;}
.wc{width:183.090000px;}
.wd{width:183.255000px;}
.wb{width:183.259500px;}
.we{width:183.270000px;}
.w4{width:232.050000px;}
.w6{width:302.835000px;}
.w5{width:306.919500px;}
.w2{width:640.890000px;}
.w9{width:729.540000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x18{left:-36.900000px;}
.x17{left:-19.800000px;}
.x16{left:-5.040000px;}
.x0{left:0.000000px;}
.x21{left:8.089500px;}
.x15{left:10.650000px;}
.x4c{left:12.816000px;}
.x32{left:14.868000px;}
.x30{left:16.668000px;}
.x3f{left:21.564000px;}
.x2f{left:23.436000px;}
.x2e{left:25.668000px;}
.x14{left:26.850000px;}
.x3d{left:28.980000px;}
.x3c{left:36.576000px;}
.x13{left:42.510000px;}
.x3b{left:44.208000px;}
.x33{left:50.076000px;}
.x44{left:52.020000px;}
.x43{left:55.065000px;}
.x12{left:58.710000px;}
.x45{left:60.840000px;}
.x47{left:68.760000px;}
.x46{left:76.305000px;}
.x11{left:78.150000px;}
.x48{left:79.725000px;}
.x2{left:81.036000px;}
.x4a{left:94.140000px;}
.x19{left:108.036000px;}
.x51{left:113.076000px;}
.x50{left:123.516000px;}
.x20{left:135.036000px;}
.x31{left:141.450000px;}
.x52{left:158.250000px;}
.x3e{left:162.435000px;}
.x1e{left:168.510000px;}
.x4{left:175.530000px;}
.x1f{left:195.150000px;}
.x5{left:201.450000px;}
.x36{left:205.095000px;}
.x6{left:211.170000px;}
.x28{left:221.220000px;}
.x41{left:264.315000px;}
.x7{left:277.995000px;}
.x38{left:281.520000px;}
.x8{left:301.575000px;}
.x9{left:311.115000px;}
.x4e{left:356.400000px;}
.x1b{left:359.715000px;}
.x22{left:387.975000px;}
.x1d{left:398.775000px;}
.x26{left:405.000000px;}
.xe{left:406.545000px;}
.xf{left:409.605000px;}
.xa{left:418.065000px;}
.xb{left:426.165000px;}
.x1c{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x42{left:447.420000px;}
.x4b{left:459.000000px;}
.x2a{left:486.720000px;}
.x37{left:504.975000px;}
.x27{left:511.020000px;}
.x2c{left:527.730000px;}
.x40{left:550.470000px;}
.x34{left:553.140000px;}
.x29{left:563.370000px;}
.xc{left:574.350000px;}
.x39{left:580.035000px;}
.xd{left:587.670000px;}
.x1a{left:590.370000px;}
.x2b{left:599.070000px;}
.x3a{left:630.645000px;}
.x2d{left:643.170000px;}
.x24{left:651.390000px;}
.x23{left:690.810000px;}
.x10{left:721.950000px;}
.x4f{left:729.720000px;}
.x4d{left:732.600000px;}
.x25{left:810.720000px;}
.x35{left:812.340000px;}
.x49{left:824.580000px;}
@media print{
.vf{vertical-align:-55.040000pt;}
.va{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.ve{vertical-align:-16.106667pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:12.800000pt;}
.vc{vertical-align:14.720000pt;}
.v4{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v8{vertical-align:29.440000pt;}
.v7{vertical-align:34.560000pt;}
.vd{vertical-align:47.573333pt;}
.v9{vertical-align:64.000000pt;}
.ls1c{letter-spacing:-0.752000pt;}
.ls43{letter-spacing:-0.624000pt;}
.ls28{letter-spacing:-0.592000pt;}
.ls16{letter-spacing:-0.560000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.478933pt;}
.ls36{letter-spacing:-0.456533pt;}
.ls3a{letter-spacing:-0.367467pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.280533pt;}
.ls3f{letter-spacing:-0.239467pt;}
.ls2e{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.198933pt;}
.ls34{letter-spacing:-0.183467pt;}
.ls3b{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.047360pt;}
.ls1e{letter-spacing:-0.016000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls45{letter-spacing:0.016000pt;}
.ls3d{letter-spacing:0.047360pt;}
.ls30{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.120533pt;}
.ls37{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.138880pt;}
.ls3c{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.183680pt;}
.ls44{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.198933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls33{letter-spacing:0.245547pt;}
.lse{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls17{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.324480pt;}
.ls18{letter-spacing:0.438933pt;}
.ls42{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.544000pt;}
.ls24{letter-spacing:0.736000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.944000pt;}
.ls38{letter-spacing:1.440000pt;}
.ls25{letter-spacing:2.080000pt;}
.ls41{letter-spacing:2.560000pt;}
.ls46{letter-spacing:2.720000pt;}
.ls2f{letter-spacing:3.360000pt;}
.ls7{letter-spacing:3.520000pt;}
.lsd{letter-spacing:4.000000pt;}
.lsb{letter-spacing:4.640000pt;}
.ls26{letter-spacing:4.800000pt;}
.ls8{letter-spacing:5.440000pt;}
.lsa{letter-spacing:5.920000pt;}
.ls9{letter-spacing:7.200000pt;}
.ls2c{letter-spacing:8.640000pt;}
.ls3e{letter-spacing:9.120000pt;}
.ls13{letter-spacing:11.040000pt;}
.lsf{letter-spacing:11.680000pt;}
.ls29{letter-spacing:12.451200pt;}
.ls2a{letter-spacing:14.919680pt;}
.ls31{letter-spacing:16.800000pt;}
.ls4{letter-spacing:21.920000pt;}
.ls6{letter-spacing:55.680000pt;}
.ls5{letter-spacing:59.520000pt;}
.ls39{letter-spacing:660.586667pt;}
.ws29{word-spacing:-48.000000pt;}
.ws1c{word-spacing:-46.144000pt;}
.ws23{word-spacing:-42.880000pt;}
.ws9{word-spacing:-28.000000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.991467pt;}
.ws15{word-spacing:-14.016000pt;}
.ws27{word-spacing:-13.736533pt;}
.ws16{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.374933pt;}
.ws26{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.232640pt;}
.ws1f{word-spacing:-13.096533pt;}
.ws1e{word-spacing:-12.960000pt;}
.ws21{word-spacing:-12.912533pt;}
.ws19{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws28{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws22{word-spacing:-11.888000pt;}
.wsd{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.248000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws25{word-spacing:-10.918933pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-10.241067pt;}
.ws5{word-spacing:-9.718933pt;}
.ws24{word-spacing:-9.690880pt;}
.ws3{word-spacing:-9.560533pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.999467pt;}
.ws2{word-spacing:-8.720000pt;}
.ws13{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws20{word-spacing:-7.040000pt;}
.wsa{word-spacing:-6.720000pt;}
.ws17{word-spacing:0.000000pt;}
._1d{margin-left:-2.036907pt;}
._1{margin-left:-0.980053pt;}
._0{width:1.410560pt;}
._2{width:2.461440pt;}
._6{width:4.067413pt;}
._c{width:5.770667pt;}
._d{width:6.729387pt;}
._10{width:7.869227pt;}
._b{width:8.919185pt;}
._5{width:10.094434pt;}
._7{width:10.994422pt;}
._11{width:11.887910pt;}
._8{width:12.913493pt;}
._e{width:14.399642pt;}
._14{width:15.564160pt;}
._13{width:16.950400pt;}
._12{width:17.889920pt;}
._9{width:18.816000pt;}
._a{width:19.829547pt;}
._4{width:21.728000pt;}
._21{width:25.422720pt;}
._20{width:26.634667pt;}
._24{width:27.605333pt;}
._25{width:28.532907pt;}
._23{width:30.065067pt;}
._22{width:31.056000pt;}
._34{width:34.067413pt;}
._33{width:35.040000pt;}
._35{width:42.554667pt;}
._2e{width:65.040000pt;}
._2d{width:66.020053pt;}
._26{width:70.154667pt;}
._32{width:71.086720pt;}
._31{width:72.192000pt;}
._28{width:81.517013pt;}
._27{width:82.608000pt;}
._30{width:85.296000pt;}
._2f{width:86.298667pt;}
._2a{width:88.587947pt;}
._29{width:90.070400pt;}
._2c{width:92.930773pt;}
._2b{width:94.218667pt;}
._1e{width:168.916907pt;}
._18{width:195.018667pt;}
._1f{width:205.045333pt;}
._19{width:231.018667pt;}
._1c{width:586.304000pt;}
._1b{width:599.742507pt;}
._16{width:637.658667pt;}
._15{width:649.605333pt;}
._17{width:722.554453pt;}
._1a{width:724.256427pt;}
._f{width:1630.485333pt;}
._3{width:1826.872747pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fsf{font-size:28.160000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.199037pt;}
.fs0{font-size:48.000000pt;}
.fs10{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs12{font-size:53.248000pt;}
.fs11{font-size:57.600000pt;}
.fsd{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs13{font-size:74.880000pt;}
.fse{font-size:85.120000pt;}
.fs8{font-size:112.000000pt;}
.y136{bottom:-582.693333pt;}
.y10c{bottom:-410.746667pt;}
.y16b{bottom:-0.413333pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:0.413333pt;}
.y16a{bottom:0.706667pt;}
.y170{bottom:1.146667pt;}
.y16d{bottom:1.186667pt;}
.y46{bottom:3.840000pt;}
.y14f{bottom:4.640000pt;}
.y2a{bottom:4.960000pt;}
.y154{bottom:5.440000pt;}
.y119{bottom:5.920000pt;}
.ybf{bottom:6.400000pt;}
.yc5{bottom:6.560000pt;}
.yc1{bottom:7.200000pt;}
.yc8{bottom:7.720000pt;}
.y148{bottom:10.693333pt;}
.y45{bottom:16.160000pt;}
.y84{bottom:16.800000pt;}
.y49{bottom:17.120000pt;}
.y29{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.y10e{bottom:20.000000pt;}
.y28{bottom:26.080000pt;}
.y13d{bottom:28.000000pt;}
.y2{bottom:30.080000pt;}
.y107{bottom:34.626667pt;}
.y105{bottom:35.973333pt;}
.y1{bottom:41.440000pt;}
.y27{bottom:41.920000pt;}
.y109{bottom:42.080000pt;}
.y13a{bottom:43.680000pt;}
.y10f{bottom:46.653333pt;}
.y26{bottom:57.760000pt;}
.y13b{bottom:59.173333pt;}
.y138{bottom:62.146667pt;}
.y13e{bottom:62.973333pt;}
.y135{bottom:64.800000pt;}
.y1e3{bottom:65.120000pt;}
.y81{bottom:66.240000pt;}
.ybd{bottom:66.400000pt;}
.ydf{bottom:68.960000pt;}
.y1a6{bottom:71.200000pt;}
.y103{bottom:71.360000pt;}
.y110{bottom:73.306667pt;}
.y25{bottom:73.600000pt;}
.y21c{bottom:76.320000pt;}
.y1e2{bottom:79.040000pt;}
.y166{bottom:79.520000pt;}
.y134{bottom:80.160000pt;}
.y80{bottom:81.600000pt;}
.y139{bottom:82.906667pt;}
.ybc{bottom:84.000000pt;}
.y43{bottom:84.640000pt;}
.yde{bottom:86.720000pt;}
.y102{bottom:88.960000pt;}
.y24{bottom:89.600000pt;}
.y21b{bottom:90.080000pt;}
.y106{bottom:94.720000pt;}
.y133{bottom:95.200000pt;}
.y1e1{bottom:96.800000pt;}
.y7f{bottom:96.960000pt;}
.y165{bottom:97.120000pt;}
.y13f{bottom:97.946667pt;}
.y111{bottom:99.933333pt;}
.ybb{bottom:101.600000pt;}
.y42{bottom:102.240000pt;}
.y1a5{bottom:102.720000pt;}
.y21a{bottom:103.840000pt;}
.ydd{bottom:104.320000pt;}
.y23{bottom:105.466667pt;}
.y101{bottom:106.560000pt;}
.y132{bottom:110.560000pt;}
.y10a{bottom:110.946667pt;}
.y7e{bottom:114.080000pt;}
.y164{bottom:114.720000pt;}
.y1a4{bottom:116.480000pt;}
.y219{bottom:117.760000pt;}
.yba{bottom:119.360000pt;}
.y41{bottom:120.000000pt;}
.y22{bottom:121.306667pt;}
.ydc{bottom:121.920000pt;}
.y11a{bottom:122.746667pt;}
.y100{bottom:124.160000pt;}
.y1e0{bottom:124.320000pt;}
.y112{bottom:126.586667pt;}
.y131{bottom:128.320000pt;}
.y218{bottom:131.520000pt;}
.y7d{bottom:131.680000pt;}
.y163{bottom:132.320000pt;}
.y140{bottom:132.960000pt;}
.y1a3{bottom:134.426667pt;}
.yb9{bottom:136.986667pt;}
.y21{bottom:137.146667pt;}
.y40{bottom:137.626667pt;}
.y2c{bottom:139.546667pt;}
.y108{bottom:140.480000pt;}
.yff{bottom:141.946667pt;}
.y1df{bottom:142.266667pt;}
.y217{bottom:145.306667pt;}
.y130{bottom:145.946667pt;}
.y1a2{bottom:148.186667pt;}
.y7c{bottom:149.626667pt;}
.y162{bottom:149.946667pt;}
.y20{bottom:152.986667pt;}
.y113{bottom:153.253333pt;}
.yb8{bottom:154.586667pt;}
.y3f{bottom:155.226667pt;}
.y1de{bottom:156.026667pt;}
.ydb{bottom:157.146667pt;}
.y216{bottom:159.066667pt;}
.yfe{bottom:159.546667pt;}
.y1a1{bottom:161.946667pt;}
.y12f{bottom:163.546667pt;}
.y7b{bottom:167.386667pt;}
.y161{bottom:167.706667pt;}
.y141{bottom:167.933333pt;}
.y1f{bottom:168.986667pt;}
.yb7{bottom:172.186667pt;}
.y149{bottom:172.413333pt;}
.y3e{bottom:172.826667pt;}
.y215{bottom:172.986667pt;}
.y1dd{bottom:173.786667pt;}
.yda{bottom:174.906667pt;}
.yfd{bottom:177.146667pt;}
.y1a0{bottom:179.706667pt;}
.y114{bottom:179.906667pt;}
.y12e{bottom:181.146667pt;}
.y1e{bottom:184.826667pt;}
.y7a{bottom:184.986667pt;}
.y160{bottom:185.306667pt;}
.y214{bottom:186.746667pt;}
.y1dc{bottom:187.546667pt;}
.yb6{bottom:189.786667pt;}
.y3d{bottom:190.426667pt;}
.yd9{bottom:192.506667pt;}
.y19f{bottom:193.626667pt;}
.yfc{bottom:194.746667pt;}
.y12d{bottom:198.906667pt;}
.y1d{bottom:200.666667pt;}
.y1db{bottom:202.106667pt;}
.y79{bottom:202.586667pt;}
.y142{bottom:202.906667pt;}
.y115{bottom:206.533333pt;}
.y19e{bottom:207.386667pt;}
.yb5{bottom:207.546667pt;}
.y3c{bottom:208.186667pt;}
.yd8{bottom:209.786667pt;}
.yfb{bottom:212.346667pt;}
.y213{bottom:214.266667pt;}
.y1c{bottom:216.506667pt;}
.y78{bottom:220.186667pt;}
.y1da{bottom:220.986667pt;}
.y19d{bottom:221.146667pt;}
.y15f{bottom:221.626667pt;}
.yb4{bottom:224.826667pt;}
.y3b{bottom:225.786667pt;}
.yd7{bottom:227.706667pt;}
.y212{bottom:228.186667pt;}
.yfa{bottom:230.106667pt;}
.y1b{bottom:232.346667pt;}
.y116{bottom:233.186667pt;}
.y12c{bottom:234.106667pt;}
.y1d9{bottom:234.746667pt;}
.y77{bottom:237.786667pt;}
.y143{bottom:237.893333pt;}
.y19c{bottom:238.906667pt;}
.y15e{bottom:240.506667pt;}
.yb3{bottom:242.426667pt;}
.y3a{bottom:243.386667pt;}
.yd6{bottom:244.186667pt;}
.y211{bottom:247.226667pt;}
.yf9{bottom:247.706667pt;}
.y1a{bottom:248.186667pt;}
.y1d8{bottom:248.506667pt;}
.y12b{bottom:251.706667pt;}
.y19b{bottom:252.826667pt;}
.y76{bottom:255.546667pt;}
.y15d{bottom:255.866667pt;}
.yd5{bottom:259.066667pt;}
.y117{bottom:259.840000pt;}
.yb2{bottom:260.026667pt;}
.y39{bottom:260.986667pt;}
.yf8{bottom:265.306667pt;}
.y1d7{bottom:266.426667pt;}
.y19a{bottom:266.586667pt;}
.y19{bottom:267.866667pt;}
.y12a{bottom:269.306667pt;}
.y10d{bottom:270.080000pt;}
.y15c{bottom:270.266667pt;}
.y144{bottom:272.866667pt;}
.y75{bottom:273.146667pt;}
.yd4{bottom:275.066667pt;}
.yb1{bottom:277.946667pt;}
.y38{bottom:278.586667pt;}
.y2b{bottom:279.066667pt;}
.y1d6{bottom:280.186667pt;}
.yf7{bottom:282.906667pt;}
.y199{bottom:284.346667pt;}
.y210{bottom:285.466667pt;}
.y16f{bottom:285.600000pt;}
.y118{bottom:286.466667pt;}
.y171{bottom:287.040000pt;}
.y129{bottom:287.066667pt;}
.yd3{bottom:289.786667pt;}
.y74{bottom:290.746667pt;}
.y1d5{bottom:293.946667pt;}
.yb0{bottom:295.706667pt;}
.y37{bottom:296.346667pt;}
.y198{bottom:298.106667pt;}
.yf6{bottom:300.506667pt;}
.y128{bottom:304.666667pt;}
.y145{bottom:307.840000pt;}
.y73{bottom:308.346667pt;}
.y11c{bottom:310.266667pt;}
.y1d4{bottom:311.706667pt;}
.y197{bottom:312.026667pt;}
.yaf{bottom:313.306667pt;}
.y36{bottom:313.946667pt;}
.yf5{bottom:318.266667pt;}
.y11b{bottom:318.693333pt;}
.y127{bottom:322.266667pt;}
.y20f{bottom:323.706667pt;}
.y1d3{bottom:325.626667pt;}
.y72{bottom:325.946667pt;}
.y196{bottom:329.786667pt;}
.yae{bottom:330.906667pt;}
.y35{bottom:331.546667pt;}
.yf4{bottom:335.866667pt;}
.y1d2{bottom:339.386667pt;}
.y126{bottom:339.866667pt;}
.y146{bottom:342.813333pt;}
.y20e{bottom:342.906667pt;}
.y71{bottom:343.386667pt;}
.y195{bottom:343.546667pt;}
.yad{bottom:348.506667pt;}
.y34{bottom:349.146667pt;}
.yf3{bottom:353.466667pt;}
.y1d1{bottom:357.186667pt;}
.y194{bottom:357.346667pt;}
.y125{bottom:357.506667pt;}
.y70{bottom:361.026667pt;}
.y20d{bottom:362.146667pt;}
.y13c{bottom:365.466667pt;}
.yac{bottom:366.146667pt;}
.y33{bottom:366.786667pt;}
.y1d0{bottom:370.946667pt;}
.yf2{bottom:371.106667pt;}
.y124{bottom:375.266667pt;}
.y147{bottom:377.786667pt;}
.y6f{bottom:378.946667pt;}
.y20c{bottom:381.186667pt;}
.yab{bottom:383.906667pt;}
.y32{bottom:384.546667pt;}
.y1cf{bottom:384.706667pt;}
.yf1{bottom:388.706667pt;}
.y193{bottom:389.026667pt;}
.y123{bottom:392.866667pt;}
.y6e{bottom:396.546667pt;}
.y20b{bottom:400.386667pt;}
.yaa{bottom:401.186667pt;}
.y31{bottom:402.146667pt;}
.y1ce{bottom:402.626667pt;}
.y192{bottom:402.786667pt;}
.yf0{bottom:406.466667pt;}
.y122{bottom:410.466667pt;}
.y14b{bottom:410.906667pt;}
.y6d{bottom:414.146667pt;}
.y1cd{bottom:416.386667pt;}
.y191{bottom:416.546667pt;}
.ya9{bottom:419.106667pt;}
.y20a{bottom:419.426667pt;}
.y30{bottom:419.746667pt;}
.y14a{bottom:421.346667pt;}
.yef{bottom:424.066667pt;}
.y121{bottom:428.066667pt;}
.y1cc{bottom:430.146667pt;}
.y6c{bottom:431.906667pt;}
.y190{bottom:434.306667pt;}
.ya8{bottom:436.706667pt;}
.y2f{bottom:437.346667pt;}
.y209{bottom:438.626667pt;}
.yee{bottom:441.666667pt;}
.y120{bottom:445.666667pt;}
.y1cb{bottom:447.906667pt;}
.y18f{bottom:448.226667pt;}
.y6b{bottom:449.506667pt;}
.ya7{bottom:454.306667pt;}
.y2e{bottom:454.626667pt;}
.y208{bottom:454.946667pt;}
.yed{bottom:459.266667pt;}
.y1ca{bottom:461.826667pt;}
.y18e{bottom:461.986667pt;}
.y11f{bottom:462.946667pt;}
.y6a{bottom:467.106667pt;}
.y169{bottom:469.760000pt;}
.ya6{bottom:472.066667pt;}
.y2d{bottom:472.706667pt;}
.y207{bottom:473.986667pt;}
.y1c9{bottom:475.586667pt;}
.yec{bottom:476.866667pt;}
.y11e{bottom:478.786667pt;}
.y18d{bottom:481.186667pt;}
.y69{bottom:484.386667pt;}
.y18{bottom:484.866667pt;}
.y206{bottom:487.906667pt;}
.ya5{bottom:489.666667pt;}
.y11d{bottom:491.746667pt;}
.y1c8{bottom:493.346667pt;}
.y137{bottom:493.760000pt;}
.yeb{bottom:494.626667pt;}
.y18c{bottom:497.186667pt;}
.y205{bottom:501.666667pt;}
.y68{bottom:501.986667pt;}
.y1c7{bottom:507.106667pt;}
.ya4{bottom:507.266667pt;}
.yea{bottom:512.226667pt;}
.y16c{bottom:512.480000pt;}
.y16e{bottom:513.760000pt;}
.y18b{bottom:517.026667pt;}
.y204{bottom:519.426667pt;}
.y67{bottom:520.066667pt;}
.ya3{bottom:524.866667pt;}
.y1c6{bottom:525.026667pt;}
.ye9{bottom:529.826667pt;}
.y203{bottom:533.186667pt;}
.y66{bottom:537.666667pt;}
.y1c5{bottom:538.786667pt;}
.ya2{bottom:542.146667pt;}
.y202{bottom:547.106667pt;}
.ye8{bottom:547.426667pt;}
.y1c4{bottom:552.546667pt;}
.y18a{bottom:553.026667pt;}
.y65{bottom:555.266667pt;}
.ya1{bottom:560.226667pt;}
.y201{bottom:564.866667pt;}
.ye7{bottom:565.026667pt;}
.y189{bottom:567.906667pt;}
.y1c3{bottom:570.306667pt;}
.y64{bottom:572.866667pt;}
.ya0{bottom:577.853333pt;}
.y200{bottom:578.653333pt;}
.ye6{bottom:582.813333pt;}
.y188{bottom:583.293333pt;}
.y1c2{bottom:584.253333pt;}
.y63{bottom:590.493333pt;}
.y1ff{bottom:592.413333pt;}
.y9f{bottom:595.453333pt;}
.y1c1{bottom:598.013333pt;}
.y187{bottom:598.973333pt;}
.ye5{bottom:600.413333pt;}
.y62{bottom:608.253333pt;}
.y1fe{bottom:610.333333pt;}
.y9e{bottom:610.653333pt;}
.y186{bottom:614.013333pt;}
.y1c0{bottom:615.773333pt;}
.y9d{bottom:618.013333pt;}
.ye4{bottom:621.373333pt;}
.yd2{bottom:624.093333pt;}
.y61{bottom:625.853333pt;}
.y185{bottom:629.373333pt;}
.y1bf{bottom:629.533333pt;}
.y1fd{bottom:637.853333pt;}
.y9c{bottom:640.893333pt;}
.yd1{bottom:641.693333pt;}
.y60{bottom:643.453333pt;}
.ye3{bottom:645.053333pt;}
.y1fc{bottom:655.613333pt;}
.y9b{bottom:658.493333pt;}
.yd0{bottom:659.453333pt;}
.ye2{bottom:659.773333pt;}
.y184{bottom:660.253333pt;}
.y5f{bottom:661.053333pt;}
.y1be{bottom:661.213333pt;}
.y1fb{bottom:669.533333pt;}
.ye1{bottom:673.053333pt;}
.y104{bottom:673.120000pt;}
.y1bd{bottom:674.973333pt;}
.y183{bottom:675.613333pt;}
.y9a{bottom:676.093333pt;}
.ycf{bottom:677.053333pt;}
.y5e{bottom:678.653333pt;}
.y1fa{bottom:683.293333pt;}
.y1bc{bottom:688.733333pt;}
.y182{bottom:690.973333pt;}
.y99{bottom:693.693333pt;}
.yce{bottom:694.653333pt;}
.y167{bottom:695.840000pt;}
.y5d{bottom:696.413333pt;}
.y1f9{bottom:701.053333pt;}
.y181{bottom:706.013333pt;}
.y1bb{bottom:706.653333pt;}
.y98{bottom:711.293333pt;}
.ycd{bottom:712.253333pt;}
.y5c{bottom:714.013333pt;}
.y1f8{bottom:714.813333pt;}
.y1ba{bottom:720.413333pt;}
.y180{bottom:721.693333pt;}
.y15b{bottom:728.253333pt;}
.y1f7{bottom:728.573333pt;}
.y97{bottom:729.053333pt;}
.ycc{bottom:729.853333pt;}
.y5b{bottom:731.613333pt;}
.y1b9{bottom:734.493333pt;}
.y17f{bottom:737.053333pt;}
.y15a{bottom:745.373333pt;}
.y1f6{bottom:746.493333pt;}
.y96{bottom:746.653333pt;}
.ycb{bottom:747.613333pt;}
.y5a{bottom:748.893333pt;}
.y17e{bottom:752.253333pt;}
.y159{bottom:757.693333pt;}
.y1f5{bottom:760.253333pt;}
.y95{bottom:764.253333pt;}
.yca{bottom:764.893333pt;}
.y1b8{bottom:766.013333pt;}
.y59{bottom:766.493333pt;}
.y17d{bottom:767.293333pt;}
.y17{bottom:769.053333pt;}
.y158{bottom:769.853333pt;}
.y1f4{bottom:774.013333pt;}
.y1b7{bottom:779.773333pt;}
.y94{bottom:781.853333pt;}
.y157{bottom:782.173333pt;}
.yc9{bottom:782.813333pt;}
.y17c{bottom:782.973333pt;}
.y58{bottom:784.573333pt;}
.y16{bottom:785.853333pt;}
.y1f3{bottom:791.773333pt;}
.y156{bottom:794.493333pt;}
.yc7{bottom:795.613333pt;}
.y15{bottom:796.733333pt;}
.y1b6{bottom:797.733333pt;}
.y17b{bottom:798.373333pt;}
.y93{bottom:799.493333pt;}
.y14{bottom:801.893333pt;}
.y57{bottom:802.213333pt;}
.y1f2{bottom:805.733333pt;}
.y13{bottom:806.533333pt;}
.y155{bottom:806.693333pt;}
.y1b5{bottom:811.493333pt;}
.y17a{bottom:813.413333pt;}
.y12{bottom:814.053333pt;}
.yc6{bottom:816.933333pt;}
.y153{bottom:817.093333pt;}
.y92{bottom:817.253333pt;}
.y1f1{bottom:819.493333pt;}
.y56{bottom:819.813333pt;}
.y1b4{bottom:825.253333pt;}
.y179{bottom:828.613333pt;}
.y11{bottom:831.013333pt;}
.y91{bottom:834.853333pt;}
.y152{bottom:835.973333pt;}
.yc4{bottom:837.253333pt;}
.y55{bottom:837.413333pt;}
.y10{bottom:838.693333pt;}
.y1b3{bottom:843.013333pt;}
.y178{bottom:843.973333pt;}
.yf{bottom:849.893333pt;}
.y1f0{bottom:851.013333pt;}
.y90{bottom:852.133333pt;}
.y151{bottom:853.733333pt;}
.y54{bottom:854.693333pt;}
.yc3{bottom:856.453333pt;}
.y1b2{bottom:856.933333pt;}
.y177{bottom:860.453333pt;}
.y1ef{bottom:864.933333pt;}
.yd{bottom:869.413333pt;}
.y8f{bottom:870.053333pt;}
.y150{bottom:871.493333pt;}
.y53{bottom:872.453333pt;}
.y1b1{bottom:874.693333pt;}
.ye{bottom:875.493333pt;}
.yc2{bottom:876.613333pt;}
.y1ee{bottom:878.693333pt;}
.y176{bottom:883.333333pt;}
.y8e{bottom:885.573333pt;}
.y1b0{bottom:888.453333pt;}
.yc{bottom:889.253333pt;}
.y14e{bottom:889.893333pt;}
.y52{bottom:890.053333pt;}
.y1ed{bottom:896.453333pt;}
.yc0{bottom:896.933333pt;}
.y8d{bottom:900.933333pt;}
.y1af{bottom:902.213333pt;}
.y51{bottom:907.653333pt;}
.y1ec{bottom:910.213333pt;}
.yb{bottom:912.613333pt;}
.y14d{bottom:913.733333pt;}
.y8c{bottom:916.293333pt;}
.ybe{bottom:917.893333pt;}
.y175{bottom:918.533333pt;}
.y1ae{bottom:920.133333pt;}
.y1eb{bottom:924.133333pt;}
.y50{bottom:925.573333pt;}
.y14c{bottom:931.013333pt;}
.y8b{bottom:931.493333pt;}
.y1ad{bottom:933.893333pt;}
.y174{bottom:936.133333pt;}
.y1ea{bottom:941.893333pt;}
.y4f{bottom:943.173333pt;}
.y8a{bottom:946.853333pt;}
.y1ac{bottom:947.653333pt;}
.ya{bottom:949.733333pt;}
.y173{bottom:953.413333pt;}
.y1e9{bottom:955.653333pt;}
.y4e{bottom:960.933333pt;}
.y89{bottom:962.213333pt;}
.y1ab{bottom:965.413333pt;}
.y1e8{bottom:969.413333pt;}
.y172{bottom:973.413333pt;}
.y88{bottom:977.573333pt;}
.y4d{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y1aa{bottom:979.333333pt;}
.y1e7{bottom:987.333333pt;}
.y44{bottom:989.093333pt;}
.y87{bottom:992.933333pt;}
.y1a9{bottom:993.093333pt;}
.y8{bottom:993.733333pt;}
.y4c{bottom:996.133333pt;}
.y1e6{bottom:1001.093333pt;}
.y86{bottom:1008.293333pt;}
.y1a8{bottom:1010.853333pt;}
.y4b{bottom:1013.733333pt;}
.y1e5{bottom:1014.853333pt;}
.ye0{bottom:1023.360000pt;}
.y85{bottom:1023.520000pt;}
.y1a7{bottom:1024.640000pt;}
.y7{bottom:1027.520000pt;}
.y4a{bottom:1031.360000pt;}
.y1e4{bottom:1032.640000pt;}
.y6{bottom:1037.760000pt;}
.y83{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y48{bottom:1047.520000pt;}
.y82{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y47{bottom:1064.640000pt;}
.y10b{bottom:1122.240000pt;}
.h2b{height:0.000000pt;}
.h6{height:5.022500pt;}
.h11{height:10.678125pt;}
.h37{height:11.680000pt;}
.h38{height:12.000000pt;}
.h39{height:13.600000pt;}
.h14{height:16.125000pt;}
.h35{height:17.746667pt;}
.h36{height:18.866667pt;}
.h21{height:19.186667pt;}
.h23{height:20.146667pt;}
.h22{height:20.306667pt;}
.h24{height:21.300000pt;}
.h1a{height:24.626667pt;}
.he{height:26.368125pt;}
.hd{height:26.381250pt;}
.h10{height:31.559874pt;}
.hb{height:34.830000pt;}
.h3{height:36.431250pt;}
.h1b{height:38.153511pt;}
.h25{height:38.413438pt;}
.hf{height:42.063437pt;}
.h7{height:42.084375pt;}
.h31{height:42.649687pt;}
.h4{height:43.215000pt;}
.h2{height:47.109375pt;}
.h2c{height:47.235000pt;}
.h8{height:48.375000pt;}
.h16{height:49.336419pt;}
.h1d{height:52.108438pt;}
.h17{height:52.134375pt;}
.h13{height:52.526250pt;}
.h2f{height:52.834688pt;}
.h33{height:52.962000pt;}
.h9{height:53.535000pt;}
.h3b{height:54.598989pt;}
.h19{height:58.238750pt;}
.h2e{height:58.345417pt;}
.h18{height:58.398750pt;}
.hc{height:59.150000pt;}
.h15{height:59.340000pt;}
.h1c{height:62.812500pt;}
.h5{height:64.500000pt;}
.h1e{height:70.698125pt;}
.h3a{height:75.465000pt;}
.h20{height:81.574375pt;}
.h34{height:81.776042pt;}
.h26{height:83.540625pt;}
.h2d{height:94.682708pt;}
.h1f{height:100.138125pt;}
.ha{height:112.875000pt;}
.h29{height:125.280000pt;}
.h27{height:126.560000pt;}
.h2a{height:132.640000pt;}
.h32{height:159.360000pt;}
.h12{height:279.066667pt;}
.h28{height:344.800000pt;}
.h30{height:444.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:0.000000pt;}
.w8{width:0.160000pt;}
.w10{width:25.280000pt;}
.w12{width:28.480000pt;}
.wf{width:28.960000pt;}
.w11{width:31.360000pt;}
.w13{width:74.400000pt;}
.w15{width:74.560000pt;}
.w14{width:81.600000pt;}
.w3{width:90.426667pt;}
.w7{width:108.666667pt;}
.wc{width:162.746667pt;}
.wd{width:162.893333pt;}
.wb{width:162.897333pt;}
.we{width:162.906667pt;}
.w4{width:206.266667pt;}
.w6{width:269.186667pt;}
.w5{width:272.817333pt;}
.w2{width:569.680000pt;}
.w9{width:648.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x18{left:-32.800000pt;}
.x17{left:-17.600000pt;}
.x16{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x21{left:7.190667pt;}
.x15{left:9.466667pt;}
.x4c{left:11.392000pt;}
.x32{left:13.216000pt;}
.x30{left:14.816000pt;}
.x3f{left:19.168000pt;}
.x2f{left:20.832000pt;}
.x2e{left:22.816000pt;}
.x14{left:23.866667pt;}
.x3d{left:25.760000pt;}
.x3c{left:32.512000pt;}
.x13{left:37.786667pt;}
.x3b{left:39.296000pt;}
.x33{left:44.512000pt;}
.x44{left:46.240000pt;}
.x43{left:48.946667pt;}
.x12{left:52.186667pt;}
.x45{left:54.080000pt;}
.x47{left:61.120000pt;}
.x46{left:67.826667pt;}
.x11{left:69.466667pt;}
.x48{left:70.866667pt;}
.x2{left:72.032000pt;}
.x4a{left:83.680000pt;}
.x19{left:96.032000pt;}
.x51{left:100.512000pt;}
.x50{left:109.792000pt;}
.x20{left:120.032000pt;}
.x31{left:125.733333pt;}
.x52{left:140.666667pt;}
.x3e{left:144.386667pt;}
.x1e{left:149.786667pt;}
.x4{left:156.026667pt;}
.x1f{left:173.466667pt;}
.x5{left:179.066667pt;}
.x36{left:182.306667pt;}
.x6{left:187.706667pt;}
.x28{left:196.640000pt;}
.x41{left:234.946667pt;}
.x7{left:247.106667pt;}
.x38{left:250.240000pt;}
.x8{left:268.066667pt;}
.x9{left:276.546667pt;}
.x4e{left:316.800000pt;}
.x1b{left:319.746667pt;}
.x22{left:344.866667pt;}
.x1d{left:354.466667pt;}
.x26{left:360.000000pt;}
.xe{left:361.373333pt;}
.xf{left:364.093333pt;}
.xa{left:371.613333pt;}
.xb{left:378.813333pt;}
.x1c{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x42{left:397.706667pt;}
.x4b{left:408.000000pt;}
.x2a{left:432.640000pt;}
.x37{left:448.866667pt;}
.x27{left:454.240000pt;}
.x2c{left:469.093333pt;}
.x40{left:489.306667pt;}
.x34{left:491.680000pt;}
.x29{left:500.773333pt;}
.xc{left:510.533333pt;}
.x39{left:515.586667pt;}
.xd{left:522.373333pt;}
.x1a{left:524.773333pt;}
.x2b{left:532.506667pt;}
.x3a{left:560.573333pt;}
.x2d{left:571.706667pt;}
.x24{left:579.013333pt;}
.x23{left:614.053333pt;}
.x10{left:641.733333pt;}
.x4f{left:648.640000pt;}
.x4d{left:651.200000pt;}
.x25{left:720.640000pt;}
.x35{left:722.080000pt;}
.x49{left:732.960000pt;}
}




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