
    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_08977c0cb5043a9abef1cb06.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979000;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_ec6cdf9d114f2c855297a4f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145000;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_ee97b84f6d42d7b6d8826505.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.955000;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_06c6c698114a7163fd95e5b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971000;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_e43f8752c6b3484b8e747e8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.955000;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_1773e50bdc382de9f8d5b230.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969571;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_1a406d482665d7969484451b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e767fe4a604bda2b604636f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_a4f9e085658ad333911ca92b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_20734a8bc69f37bc801ba4b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_5e4ed23d95568c382439828c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_2d34b88e16d98858514c2215.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_463945f3f3ae02f1c44f4171.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b069276122170ff3c30fabb4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_96835f44cf979005fbf80434.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_45d45d2ef110c4c86bade16b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.093262;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_604bd4b59c14f98cd17df963.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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:ff12;src:url('chunks/assets/font_e8134c0996ae744faf5ab905.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900391;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:ff13;src:url('chunks/assets/font_eb5c9fcc1e5662dd493d16ea.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959636;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls23{letter-spacing:-2.268000px;}
.ls25{letter-spacing:-1.915200px;}
.ls30{letter-spacing:-1.663200px;}
.ls21{letter-spacing:-1.209600px;}
.lsc{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.009018px;}
.ls13{letter-spacing:-0.008417px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.001080px;}
.ls12{letter-spacing:0.008417px;}
.lsb{letter-spacing:0.009018px;}
.ls3f{letter-spacing:0.028620px;}
.ls1e{letter-spacing:0.050400px;}
.ls7{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.907200px;}
.ls14{letter-spacing:2.923200px;}
.ls17{letter-spacing:3.729600px;}
.ls37{letter-spacing:8.920800px;}
.ls2c{letter-spacing:9.122400px;}
.ls8{letter-spacing:9.990000px;}
.lse{letter-spacing:11.556000px;}
.ls3c{letter-spacing:11.592000px;}
.ls32{letter-spacing:14.565600px;}
.ls28{letter-spacing:15.573600px;}
.ls39{letter-spacing:15.775200px;}
.ls34{letter-spacing:17.287200px;}
.ls2d{letter-spacing:17.438400px;}
.ls1d{letter-spacing:19.303200px;}
.ls2f{letter-spacing:20.210400px;}
.ls16{letter-spacing:23.990400px;}
.lsf{letter-spacing:25.758000px;}
.ls26{letter-spacing:26.913600px;}
.ls38{letter-spacing:34.120800px;}
.ls35{letter-spacing:34.221600px;}
.ls1f{letter-spacing:34.473600px;}
.ls3d{letter-spacing:35.330400px;}
.ls2a{letter-spacing:45.360000px;}
.ls31{letter-spacing:48.283200px;}
.lsa{letter-spacing:51.516000px;}
.ls20{letter-spacing:51.962400px;}
.ls2b{letter-spacing:53.776800px;}
.ls3{letter-spacing:57.996000px;}
.ls10{letter-spacing:59.018400px;}
.ls29{letter-spacing:62.193600px;}
.ls22{letter-spacing:62.244000px;}
.ls1b{letter-spacing:66.225600px;}
.lsd{letter-spacing:70.740000px;}
.ls1c{letter-spacing:81.748800px;}
.ls2e{letter-spacing:84.571200px;}
.ls27{letter-spacing:85.579200px;}
.ls36{letter-spacing:87.292800px;}
.ls33{letter-spacing:112.442400px;}
.ls3a{letter-spacing:122.169600px;}
.ls24{letter-spacing:123.631200px;}
.ls18{letter-spacing:140.001120px;}
.ls4{letter-spacing:154.602000px;}
.ls3b{letter-spacing:158.508000px;}
.ls15{letter-spacing:190.814400px;}
.ls1{letter-spacing:209.646000px;}
.ls1a{letter-spacing:226.800000px;}
.ls19{letter-spacing:246.289680px;}
.ls5{letter-spacing:252.774000px;}
.ls2{letter-spacing:1459.188000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.600000px;}
.ws5{word-spacing:-12.591583px;}
.ws1{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.988000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-203.634000px;}
._4b{margin-left:-190.814400px;}
._63{margin-left:-158.508000px;}
._53{margin-left:-123.631200px;}
._62{margin-left:-122.169600px;}
._5f{margin-left:-112.442400px;}
._11{margin-left:-104.976000px;}
._14{margin-left:-90.072000px;}
._61{margin-left:-87.292800px;}
._55{margin-left:-85.579200px;}
._5b{margin-left:-84.571200px;}
._4e{margin-left:-81.748800px;}
._46{margin-left:-70.740000px;}
._4d{margin-left:-66.225600px;}
._52{margin-left:-62.244000px;}
._49{margin-left:-59.018400px;}
._58{margin-left:-54.698400px;}
._51{margin-left:-52.855200px;}
._45{margin-left:-51.516000px;}
._5d{margin-left:-48.283200px;}
._57{margin-left:-45.360000px;}
._64{margin-left:-36.187200px;}
._50{margin-left:-34.473600px;}
._60{margin-left:-33.264000px;}
._54{margin-left:-26.913600px;}
._48{margin-left:-25.758000px;}
._4c{margin-left:-23.990400px;}
._5c{margin-left:-21.117600px;}
._4f{margin-left:-19.303200px;}
._5a{margin-left:-17.438400px;}
._56{margin-left:-15.573600px;}
._5e{margin-left:-14.565600px;}
._47{margin-left:-11.556000px;}
._44{margin-left:-9.990000px;}
._59{margin-left:-8.254800px;}
._9e{margin-left:-6.712200px;}
._15{margin-left:-5.616000px;}
._5{margin-left:-3.996000px;}
._4a{margin-left:-2.923200px;}
._1{margin-left:-1.749600px;}
._0{width:1.252800px;}
._3{width:2.802600px;}
._7{width:3.830220px;}
._2{width:5.853600px;}
._4{width:7.030800px;}
._8{width:8.098380px;}
._9{width:9.338220px;}
._9f{width:10.598580px;}
._9b{width:11.905920px;}
._9c{width:14.008140px;}
._9a{width:16.512660px;}
._9d{width:17.953380px;}
._98{width:22.367520px;}
._30{width:23.953200px;}
._3d{width:25.609800px;}
._1a{width:27.000000px;}
._87{width:28.425600px;}
._16{width:33.318000px;}
._6d{width:36.368640px;}
._32{width:38.965200px;}
._68{width:41.983200px;}
._86{width:43.621200px;}
._10{width:44.928000px;}
._70{width:47.567520px;}
._6a{width:49.676400px;}
._1e{width:50.967000px;}
._28{width:54.000000px;}
._80{width:55.984320px;}
._35{width:58.518000px;}
._6e{width:61.568640px;}
._d{width:63.018000px;}
._24{width:65.965800px;}
._66{width:73.042320px;}
._43{width:75.019500px;}
._97{width:76.069620px;}
._13{width:77.976000px;}
._99{width:79.783200px;}
._88{width:81.259920px;}
._2c{width:83.947800px;}
._3a{width:87.025800px;}
._84{width:89.326320px;}
._6b{width:92.734200px;}
._36{width:94.500000px;}
._33{width:95.967000px;}
._82{width:98.986560px;}
._b{width:101.520000px;}
._7d{width:104.448900px;}
._8b{width:106.689840px;}
._1f{width:108.000000px;}
._74{width:109.480320px;}
._1d{width:113.985000px;}
._92{width:115.279680px;}
._31{width:116.964000px;}
._7f{width:118.050360px;}
._2b{width:119.965800px;}
._f{width:122.526000px;}
._7e{width:123.679320px;}
._2e{width:125.928000px;}
._73{width:126.940920px;}
._2d{width:128.929200px;}
._6f{width:130.183200px;}
._22{width:131.935800px;}
._38{width:137.839200px;}
._29{width:139.482000px;}
._c{width:140.562000px;}
._89{width:142.783200px;}
._75{width:145.540080px;}
._7a{width:150.608760px;}
._25{width:152.982000px;}
._1b{width:154.480800px;}
._67{width:155.972160px;}
._2f{width:158.931000px;}
._77{width:159.984960px;}
._19{width:161.946000px;}
._2a{width:164.911200px;}
._71{width:168.776160px;}
._69{width:170.704800px;}
._18{width:175.554000px;}
._94{width:177.135600px;}
._79{width:179.138160px;}
._3b{width:181.431000px;}
._e{width:185.490000px;}
._78{width:187.518240px;}
._93{width:188.843760px;}
._6c{width:193.132800px;}
._27{width:196.434000px;}
._8f{width:198.691920px;}
._26{width:201.024000px;}
._8e{width:202.288320px;}
._72{width:206.652480px;}
._83{width:208.368600px;}
._3e{width:210.046800px;}
._20{width:215.986800px;}
._90{width:218.035320px;}
._8c{width:219.106800px;}
._96{width:221.103900px;}
._8d{width:223.861680px;}
._37{width:226.449600px;}
._34{width:236.929200px;}
._81{width:238.374720px;}
._76{width:240.695280px;}
._85{width:246.679080px;}
._95{width:251.457840px;}
._7c{width:258.307920px;}
._41{width:260.990640px;}
._21{width:264.321000px;}
._91{width:266.395080px;}
._23{width:278.914200px;}
._40{width:321.776400px;}
._39{width:335.933400px;}
._42{width:345.014640px;}
._3c{width:347.935800px;}
._7b{width:357.671280px;}
._8a{width:361.216800px;}
._65{width:365.691120px;}
._1c{width:392.818200px;}
._12{width:457.704000px;}
._3f{width:610.812000px;}
._6{width:654.781200px;}
._a{width:1848.960000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:24.000000px;}
.fs1{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.y69{bottom:-503.311665px;}
.y68{bottom:-474.421665px;}
.y67{bottom:-458.761665px;}
.y66{bottom:-443.371665px;}
.y65{bottom:-427.711665px;}
.y1d3{bottom:-422.084100px;}
.y1d2{bottom:-407.468100px;}
.y64{bottom:-401.791665px;}
.y1d1{bottom:-393.104100px;}
.y1d0{bottom:-378.488100px;}
.y1cf{bottom:-364.124100px;}
.y1ce{bottom:-349.508100px;}
.y1cd{bottom:-335.144100px;}
.y1cc{bottom:-320.780100px;}
.y1cb{bottom:-306.164100px;}
.y1ca{bottom:-291.800100px;}
.y1c9{bottom:-277.184100px;}
.y1c8{bottom:-262.820100px;}
.y1c7{bottom:-248.204100px;}
.y1c6{bottom:-233.840100px;}
.y1c5{bottom:-219.224100px;}
.y1c4{bottom:-204.860100px;}
.y1c3{bottom:-190.244100px;}
.y1c2{bottom:-175.880100px;}
.y63{bottom:-173.371665px;}
.y1c1{bottom:-161.264100px;}
.y1c0{bottom:-146.900100px;}
.y62{bottom:-144.481665px;}
.y1bf{bottom:-119.684100px;}
.y61{bottom:-115.321665px;}
.y1be{bottom:-105.320100px;}
.y88{bottom:-101.120250px;}
.y7a{bottom:-101.120115px;}
.y6c{bottom:-99.931800px;}
.y1bd{bottom:-90.704100px;}
.y6b{bottom:-84.271950px;}
.y60{bottom:-84.271800px;}
.y1bc{bottom:-76.340100px;}
.y79{bottom:-72.230115px;}
.y6a{bottom:-68.881800px;}
.y1bb{bottom:-61.724100px;}
.y87{bottom:-56.570250px;}
.y78{bottom:-56.570115px;}
.y5f{bottom:-53.221800px;}
.y1ba{bottom:-47.360100px;}
.y86{bottom:-41.180250px;}
.y77{bottom:-41.180115px;}
.y1b9{bottom:-32.744100px;}
.y85{bottom:-25.520250px;}
.y76{bottom:-25.520115px;}
.y5e{bottom:-24.331800px;}
.y1b8{bottom:-18.380100px;}
.y134{bottom:-10.036500px;}
.y1b7{bottom:-3.764100px;}
.y0{bottom:0.000000px;}
.y75{bottom:0.399885px;}
.y16c{bottom:1.760040px;}
.y15b{bottom:1.760166px;}
.y5d{bottom:1.858200px;}
.ye2{bottom:2.667000px;}
.y112{bottom:2.771718px;}
.y1b2{bottom:2.772000px;}
.yfc{bottom:2.970000px;}
.y11e{bottom:3.023748px;}
.y1a5{bottom:3.023874px;}
.y1a2{bottom:3.024000px;}
.y19d{bottom:3.024252px;}
.yb4{bottom:3.240000px;}
.ye4{bottom:3.240135px;}
.y133{bottom:4.327500px;}
.y16b{bottom:16.376040px;}
.y15a{bottom:16.376166px;}
.y111{bottom:17.387718px;}
.y11d{bottom:17.387748px;}
.y1a4{bottom:17.387874px;}
.y1a1{bottom:17.388000px;}
.y19c{bottom:17.388252px;}
.ye1{bottom:18.057000px;}
.yb3{bottom:18.630000px;}
.yf4{bottom:18.630135px;}
.y132{bottom:18.943500px;}
.y16a{bottom:30.740040px;}
.y159{bottom:30.740166px;}
.y110{bottom:31.751718px;}
.y1b1{bottom:31.752000px;}
.y11c{bottom:32.003748px;}
.y1a3{bottom:32.003874px;}
.y1a0{bottom:32.004000px;}
.y19b{bottom:32.004252px;}
.y131{bottom:33.307500px;}
.ye0{bottom:33.717000px;}
.yfb{bottom:34.020000px;}
.yc9{bottom:34.290000px;}
.yf3{bottom:34.290135px;}
.y169{bottom:45.356040px;}
.y158{bottom:45.356166px;}
.y10f{bottom:46.367718px;}
.y11b{bottom:46.367748px;}
.y19f{bottom:46.368000px;}
.y19a{bottom:46.368252px;}
.y130{bottom:47.923500px;}
.ydf{bottom:49.107000px;}
.yc8{bottom:49.680000px;}
.yf2{bottom:49.680135px;}
.y12{bottom:57.260700px;}
.y82{bottom:57.562950px;}
.y168{bottom:59.720040px;}
.y157{bottom:59.720166px;}
.y10e{bottom:60.731718px;}
.y1b0{bottom:60.732000px;}
.y180{bottom:60.983748px;}
.y11a{bottom:60.983874px;}
.y199{bottom:60.984252px;}
.y12f{bottom:62.287500px;}
.yde{bottom:64.767000px;}
.yf8{bottom:65.070000px;}
.yc7{bottom:65.340000px;}
.yf1{bottom:65.340135px;}
.y11{bottom:67.760700px;}
.y167{bottom:74.336040px;}
.y156{bottom:74.336166px;}
.y10d{bottom:75.347718px;}
.y17f{bottom:75.347748px;}
.y119{bottom:75.347874px;}
.y1af{bottom:75.348000px;}
.y198{bottom:75.348252px;}
.y12e{bottom:76.903500px;}
.ydd{bottom:80.157000px;}
.yc6{bottom:80.730000px;}
.yf0{bottom:80.730135px;}
.y81{bottom:86.452950px;}
.y166{bottom:88.700166px;}
.y155{bottom:88.700292px;}
.y10c{bottom:89.711718px;}
.y1ae{bottom:89.712000px;}
.y17e{bottom:89.963748px;}
.y118{bottom:89.963874px;}
.y197{bottom:89.964126px;}
.y12d{bottom:91.267500px;}
.ydc{bottom:95.817000px;}
.yf7{bottom:96.120000px;}
.yc5{bottom:96.390000px;}
.yef{bottom:96.390135px;}
.y165{bottom:103.316166px;}
.y154{bottom:103.316292px;}
.y10b{bottom:104.327718px;}
.y17d{bottom:104.327748px;}
.y117{bottom:104.327874px;}
.y1ad{bottom:104.328000px;}
.y196{bottom:104.328126px;}
.y12c{bottom:105.883500px;}
.ydb{bottom:111.207000px;}
.yc4{bottom:111.780000px;}
.yee{bottom:111.780135px;}
.y80{bottom:115.612950px;}
.y164{bottom:117.680166px;}
.y153{bottom:117.680292px;}
.y10a{bottom:118.691718px;}
.y1ac{bottom:118.692000px;}
.y17c{bottom:118.943748px;}
.y116{bottom:118.944000px;}
.y195{bottom:118.944126px;}
.y11f{bottom:119.302350px;}
.y12b{bottom:120.247500px;}
.yda{bottom:126.867000px;}
.yf6{bottom:127.170000px;}
.yc3{bottom:127.440000px;}
.yed{bottom:127.440135px;}
.y10{bottom:130.264050px;}
.y7f{bottom:131.002950px;}
.y163{bottom:132.296166px;}
.y152{bottom:132.296292px;}
.y109{bottom:133.307718px;}
.y17b{bottom:133.307748px;}
.y115{bottom:133.308000px;}
.y194{bottom:133.308126px;}
.y5b{bottom:134.289750px;}
.y12a{bottom:134.863500px;}
.yd9{bottom:142.257000px;}
.yc2{bottom:142.830000px;}
.yec{bottom:142.830135px;}
.y162{bottom:146.660292px;}
.y151{bottom:146.660418px;}
.y7e{bottom:146.662800px;}
.yf{bottom:146.763750px;}
.y108{bottom:147.671718px;}
.y1ab{bottom:147.672000px;}
.yaf{bottom:147.792583px;}
.y1dd{bottom:147.792853px;}
.y17a{bottom:147.923748px;}
.y114{bottom:147.924000px;}
.y193{bottom:147.924126px;}
.y129{bottom:149.227500px;}
.y1b6{bottom:150.517350px;}
.y5a{bottom:150.789450px;}
.yd8{bottom:157.917000px;}
.ye7{bottom:158.220000px;}
.yc1{bottom:158.490000px;}
.y161{bottom:161.276292px;}
.y150{bottom:161.276418px;}
.y7d{bottom:162.052950px;}
.y107{bottom:162.287718px;}
.y179{bottom:162.287748px;}
.y1aa{bottom:162.288000px;}
.y192{bottom:162.288126px;}
.ye{bottom:163.263450px;}
.y128{bottom:163.843500px;}
.yae{bottom:164.292283px;}
.y1dc{bottom:164.292553px;}
.y1a6{bottom:164.645250px;}
.y59{bottom:167.289150px;}
.y1e8{bottom:171.792883px;}
.yd7{bottom:173.307000px;}
.yf9{bottom:173.433450px;}
.yc0{bottom:173.880000px;}
.yeb{bottom:173.880135px;}
.y160{bottom:175.640292px;}
.y14f{bottom:175.640418px;}
.y106{bottom:176.651718px;}
.y1b5{bottom:176.651874px;}
.y1a9{bottom:176.652000px;}
.y178{bottom:176.903748px;}
.y191{bottom:176.904126px;}
.y7c{bottom:177.712950px;}
.y127{bottom:178.207500px;}
.yd{bottom:179.763150px;}
.yad{bottom:180.791983px;}
.y1db{bottom:180.792253px;}
.y58{bottom:183.788850px;}
.y1e7{bottom:188.292583px;}
.yd6{bottom:188.967000px;}
.ye6{bottom:189.270000px;}
.ybf{bottom:189.540000px;}
.yea{bottom:189.540135px;}
.y15f{bottom:190.256418px;}
.y14e{bottom:190.256544px;}
.y177{bottom:191.267748px;}
.y105{bottom:191.267844px;}
.y1b4{bottom:191.267874px;}
.y1a8{bottom:191.268000px;}
.y190{bottom:191.268126px;}
.y126{bottom:192.823500px;}
.yc{bottom:196.262850px;}
.y1da{bottom:197.291953px;}
.y57{bottom:200.288550px;}
.y171{bottom:203.199750px;}
.yd5{bottom:204.357000px;}
.y15e{bottom:204.620418px;}
.y14d{bottom:204.620544px;}
.y144{bottom:204.620700px;}
.y1e6{bottom:204.792283px;}
.ybe{bottom:204.930000px;}
.ye9{bottom:204.930135px;}
.y1b3{bottom:205.631874px;}
.y104{bottom:205.631970px;}
.y1a7{bottom:205.632000px;}
.y176{bottom:205.883874px;}
.y18b{bottom:205.884000px;}
.y18f{bottom:205.884126px;}
.y125{bottom:207.187500px;}
.yac{bottom:210.791683px;}
.yb{bottom:212.762550px;}
.y1d9{bottom:213.791653px;}
.y56{bottom:216.788250px;}
.y15d{bottom:219.236418px;}
.y14c{bottom:219.236544px;}
.y143{bottom:219.236700px;}
.yd4{bottom:220.017000px;}
.y175{bottom:220.247874px;}
.y103{bottom:220.247970px;}
.y18a{bottom:220.248000px;}
.y18e{bottom:220.248126px;}
.yfa{bottom:220.320000px;}
.ybd{bottom:220.590000px;}
.y1e5{bottom:221.291983px;}
.y124{bottom:221.803500px;}
.yab{bottom:227.291383px;}
.y74{bottom:228.819885px;}
.ya{bottom:229.262250px;}
.y1d8{bottom:230.291353px;}
.y15c{bottom:233.600418px;}
.y14b{bottom:233.600544px;}
.y142{bottom:233.600700px;}
.y102{bottom:234.612000px;}
.ye5{bottom:234.674850px;}
.y174{bottom:234.863874px;}
.y189{bottom:234.864000px;}
.y18d{bottom:234.864126px;}
.yd3{bottom:235.407000px;}
.ybc{bottom:235.980000px;}
.y123{bottom:236.167500px;}
.y1e4{bottom:237.791683px;}
.yaa{bottom:243.791083px;}
.y55{bottom:245.287650px;}
.y9{bottom:245.761950px;}
.y1d7{bottom:246.791053px;}
.y14a{bottom:248.216544px;}
.y141{bottom:248.216700px;}
.y173{bottom:249.227874px;}
.y101{bottom:249.228000px;}
.y18c{bottom:249.228126px;}
.y122{bottom:250.783500px;}
.yd2{bottom:251.067000px;}
.ybb{bottom:251.640000px;}
.y1e3{bottom:254.291383px;}
.y54{bottom:257.287650px;}
.y73{bottom:257.709885px;}
.ya9{bottom:260.290783px;}
.y8{bottom:262.261650px;}
.y149{bottom:262.580544px;}
.y170{bottom:262.580670px;}
.y140{bottom:262.580700px;}
.y1d6{bottom:263.290753px;}
.y100{bottom:263.592000px;}
.y172{bottom:263.844000px;}
.y121{bottom:265.147500px;}
.yd1{bottom:266.457000px;}
.yba{bottom:267.030000px;}
.y84{bottom:269.255250px;}
.y53{bottom:269.287650px;}
.y1e2{bottom:270.791083px;}
.y148{bottom:277.196544px;}
.y16f{bottom:277.196670px;}
.y13f{bottom:277.196700px;}
.yff{bottom:278.208000px;}
.y187{bottom:278.208126px;}
.y7{bottom:278.761350px;}
.y120{bottom:279.763500px;}
.y1d5{bottom:279.790453px;}
.y52{bottom:281.287650px;}
.yd0{bottom:282.117000px;}
.yb9{bottom:282.690000px;}
.y72{bottom:286.869885px;}
.y1e1{bottom:287.290783px;}
.ya8{bottom:290.290483px;}
.y147{bottom:291.560544px;}
.y16e{bottom:291.560670px;}
.y13e{bottom:291.560700px;}
.yfe{bottom:292.572000px;}
.y186{bottom:292.824000px;}
.y6{bottom:295.261050px;}
.y6d{bottom:296.047350px;}
.ycf{bottom:297.507000px;}
.yb8{bottom:298.080000px;}
.y1e0{bottom:303.790483px;}
.y146{bottom:306.176670px;}
.y13d{bottom:306.176700px;}
.y16d{bottom:306.176796px;}
.ya7{bottom:306.790183px;}
.y188{bottom:307.188000px;}
.y185{bottom:307.188126px;}
.y49{bottom:309.790153px;}
.y5{bottom:311.760750px;}
.yce{bottom:313.167000px;}
.yb7{bottom:313.740000px;}
.y71{bottom:317.919750px;}
.y1df{bottom:320.290183px;}
.y145{bottom:320.540670px;}
.y13c{bottom:320.540700px;}
.y184{bottom:321.804000px;}
.ya6{bottom:323.289883px;}
.y48{bottom:326.289853px;}
.y4{bottom:328.260450px;}
.ycd{bottom:328.557000px;}
.y83{bottom:329.051850px;}
.yb6{bottom:329.130000px;}
.y13a{bottom:335.156700px;}
.y183{bottom:336.168000px;}
.y1de{bottom:336.789883px;}
.y47{bottom:342.789553px;}
.ycc{bottom:343.947000px;}
.y3{bottom:344.760150px;}
.y70{bottom:348.969750px;}
.y13b{bottom:349.520700px;}
.y139{bottom:349.520826px;}
.y182{bottom:350.784000px;}
.ya5{bottom:353.289583px;}
.y46{bottom:359.289253px;}
.y2{bottom:361.259850px;}
.y138{bottom:364.136700px;}
.ya4{bottom:369.789283px;}
.yb0{bottom:371.935350px;}
.y45{bottom:375.788953px;}
.y1{bottom:377.759550px;}
.y6f{bottom:377.859750px;}
.y137{bottom:378.500700px;}
.yb5{bottom:379.204800px;}
.ya3{bottom:386.288983px;}
.y44{bottom:392.288923px;}
.y136{bottom:393.116700px;}
.ya2{bottom:402.788953px;}
.yb1{bottom:403.899300px;}
.y6e{bottom:404.049750px;}
.y43{bottom:408.788893px;}
.y113{bottom:410.544150px;}
.ya1{bottom:419.288923px;}
.yf5{bottom:422.658300px;}
.y42{bottom:425.288863px;}
.ya0{bottom:435.788893px;}
.y41{bottom:441.788833px;}
.ye3{bottom:448.784850px;}
.y27{bottom:451.699500px;}
.y9f{bottom:452.288863px;}
.y19e{bottom:453.819600px;}
.y40{bottom:458.288803px;}
.y26{bottom:463.699500px;}
.y7b{bottom:467.304150px;}
.y9e{bottom:468.788833px;}
.y1d4{bottom:474.788773px;}
.y25{bottom:475.699500px;}
.y135{bottom:482.449350px;}
.y9d{bottom:485.288803px;}
.y24{bottom:487.699500px;}
.y3f{bottom:488.288773px;}
.y23{bottom:499.699500px;}
.y9c{bottom:501.788773px;}
.y3e{bottom:504.788743px;}
.y51{bottom:515.663250px;}
.y9b{bottom:518.288743px;}
.y3d{bottom:521.288713px;}
.y181{bottom:523.371600px;}
.yca{bottom:528.403350px;}
.y9a{bottom:534.788713px;}
.y3c{bottom:537.788683px;}
.y50{bottom:544.538340px;}
.y99{bottom:551.288683px;}
.y3b{bottom:554.288653px;}
.y4f{bottom:561.038310px;}
.y22{bottom:564.199500px;}
.y98{bottom:567.788653px;}
.y3a{bottom:570.788623px;}
.y21{bottom:576.199500px;}
.y4e{bottom:577.538280px;}
.yfd{bottom:581.652150px;}
.y97{bottom:584.288623px;}
.y39{bottom:587.288593px;}
.y20{bottom:588.199500px;}
.y4d{bottom:594.038250px;}
.y1f{bottom:600.199500px;}
.y96{bottom:600.788593px;}
.y38{bottom:603.788563px;}
.y1e{bottom:612.199500px;}
.y95{bottom:617.288563px;}
.y37{bottom:620.288533px;}
.y4c{bottom:622.538250px;}
.y1d{bottom:624.199500px;}
.y94{bottom:633.788533px;}
.y5c{bottom:634.250850px;}
.y1c{bottom:636.199500px;}
.ye8{bottom:636.768300px;}
.y36{bottom:636.788503px;}
.y1b{bottom:648.199500px;}
.y93{bottom:650.288503px;}
.y35{bottom:653.288473px;}
.y1a{bottom:660.199500px;}
.y92{bottom:666.788473px;}
.y34{bottom:669.788443px;}
.y19{bottom:672.199500px;}
.y91{bottom:683.288443px;}
.y18{bottom:684.199500px;}
.y33{bottom:686.288413px;}
.y17{bottom:696.199500px;}
.y90{bottom:699.788413px;}
.y32{bottom:702.788383px;}
.y16{bottom:708.199500px;}
.y8f{bottom:716.288383px;}
.y31{bottom:719.288353px;}
.y8e{bottom:732.788353px;}
.yb2{bottom:733.174800px;}
.y15{bottom:735.012000px;}
.y30{bottom:735.788323px;}
.y14{bottom:749.262000px;}
.y8d{bottom:749.288323px;}
.y2f{bottom:752.288293px;}
.ycb{bottom:765.417000px;}
.y8c{bottom:765.788293px;}
.y2e{bottom:768.788398px;}
.y8b{bottom:782.288398px;}
.y2d{bottom:785.288368px;}
.y8a{bottom:798.788368px;}
.y2c{bottom:801.788338px;}
.y89{bottom:815.288338px;}
.y2b{bottom:831.788308px;}
.y2a{bottom:848.288278px;}
.y29{bottom:864.788248px;}
.y28{bottom:881.288250px;}
.y4b{bottom:882.413250px;}
.y4a{bottom:926.445150px;}
.y13{bottom:926.457150px;}
.h17{height:31.050000px;}
.h4{height:32.130000px;}
.h13{height:33.004500px;}
.h2d{height:34.502344px;}
.h21{height:35.019141px;}
.h22{height:35.019524px;}
.hc{height:36.597656px;}
.h8{height:36.720000px;}
.h16{height:36.966797px;}
.hb{height:37.494141px;}
.h19{height:37.520508px;}
.h7{height:37.536000px;}
.h10{height:43.603200px;}
.h25{height:44.223047px;}
.h27{height:44.223430px;}
.h6{height:44.574000px;}
.h5{height:45.264000px;}
.hd{height:45.572100px;}
.he{height:45.572250px;}
.h3{height:50.922000px;}
.h9{height:50.922410px;}
.h2{height:51.894000px;}
.h14{height:51.894410px;}
.h2a{height:57.960000px;}
.h1c{height:77.760000px;}
.h23{height:159.516000px;}
.h12{height:171.256800px;}
.h11{height:181.855500px;}
.h1d{height:201.690000px;}
.hf{height:214.860000px;}
.ha{height:244.297500px;}
.h1f{height:247.721400px;}
.h1e{height:248.400000px;}
.h28{height:275.436000px;}
.h2b{height:286.983600px;}
.h24{height:288.618000px;}
.h2c{height:301.111500px;}
.h20{height:304.164000px;}
.h18{height:341.550000px;}
.h1b{height:356.367000px;}
.h29{height:362.376000px;}
.h1a{height:364.510500px;}
.h26{height:404.708700px;}
.h15{height:415.998000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w8{width:35.941350px;}
.w6{width:44.704950px;}
.w19{width:58.464000px;}
.we{width:62.640000px;}
.w13{width:63.180000px;}
.w1b{width:65.268000px;}
.w1a{width:66.024000px;}
.w10{width:69.930000px;}
.w15{width:70.470000px;}
.wf{width:70.740000px;}
.w14{width:71.280000px;}
.w9{width:73.609200px;}
.w1c{width:73.836000px;}
.w11{width:79.110000px;}
.w16{width:79.650000px;}
.w17{width:79.920000px;}
.w18{width:102.564000px;}
.wd{width:109.890000px;}
.w5{width:138.252450px;}
.w4{width:138.253500px;}
.wa{width:174.193800px;}
.w3{width:203.097450px;}
.wb{width:276.505950px;}
.w2{width:524.308350px;}
.w7{width:524.310000px;}
.wc{width:531.495000px;}
.w12{width:531.496500px;}
.w1d{width:562.287000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x30{left:-59.365050px;}
.x37{left:-25.223700px;}
.x36{left:-23.284200px;}
.x34{left:-9.795450px;}
.x31{left:-6.872550px;}
.x4c{left:-5.112000px;}
.x49{left:-3.667500px;}
.x52{left:-2.171250px;}
.x0{left:0.000000px;}
.x48{left:1.948500px;}
.x4e{left:4.689000px;}
.x2e{left:6.919950px;}
.x4a{left:12.065700px;}
.x35{left:16.443000px;}
.x2f{left:18.259950px;}
.x4f{left:20.731500px;}
.x23{left:22.180380px;}
.x2d{left:26.404950px;}
.x3d{left:30.945630px;}
.x51{left:36.937650px;}
.x2c{left:41.395500px;}
.x28{left:45.429900px;}
.x2a{left:47.662950px;}
.x24{left:52.171980px;}
.x43{left:56.428200px;}
.x44{left:59.442000px;}
.x3e{left:60.937230px;}
.x27{left:62.672700px;}
.x68{left:66.914640px;}
.x45{left:69.941700px;}
.x6c{left:71.809740px;}
.x21{left:74.677560px;}
.x1{left:75.909900px;}
.x1a{left:77.891100px;}
.x19{left:79.787100px;}
.x3b{left:83.442810px;}
.x46{left:85.674900px;}
.x6b{left:87.204420px;}
.x53{left:89.620650px;}
.x29{left:91.921650px;}
.x6a{left:93.503160px;}
.x69{left:95.593500px;}
.x2{left:97.169700px;}
.x66{left:101.914920px;}
.x54{left:104.514150px;}
.x67{left:106.798680px;}
.x6f{left:108.204840px;}
.x25{left:110.668830px;}
.x32{left:113.028750px;}
.x64{left:115.904700px;}
.x59{left:117.898200px;}
.x3f{left:119.434080px;}
.x6d{left:122.912820px;}
.x6e{left:124.297560px;}
.x60{left:126.270000px;}
.x1f{left:127.879980px;}
.x65{left:131.318280px;}
.x26{left:134.879730px;}
.x3a{left:136.645230px;}
.x40{left:143.644980px;}
.x47{left:148.240200px;}
.x18{left:163.140300px;}
.x41{left:171.529230px;}
.x5{left:174.165248px;}
.x3{left:181.689900px;}
.x16{left:184.742550px;}
.x1e{left:192.407685px;}
.x39{left:201.172935px;}
.x50{left:213.604800px;}
.x55{left:215.484150px;}
.x8{left:220.079610px;}
.x5a{left:221.470200px;}
.x1b{left:222.470700px;}
.x7{left:229.313850px;}
.x4{left:230.802300px;}
.xc{left:261.359550px;}
.xe{left:267.689850px;}
.x17{left:269.571150px;}
.x6{left:270.659850px;}
.xd{left:274.691850px;}
.xf{left:277.038000px;}
.x1c{left:278.432700px;}
.x2b{left:280.507950px;}
.x10{left:282.131700px;}
.x4b{left:286.493700px;}
.x61{left:289.314000px;}
.xb{left:294.029970px;}
.xa{left:304.205850px;}
.x9{left:317.272770px;}
.x15{left:324.086850px;}
.x5b{left:347.974200px;}
.x5e{left:349.967250px;}
.x56{left:351.024150px;}
.x62{left:356.346000px;}
.x22{left:373.134480px;}
.x3c{left:381.899730px;}
.x5c{left:414.250200px;}
.x5f{left:416.243250px;}
.x14{left:418.659300px;}
.x57{left:422.034150px;}
.x4d{left:424.747200px;}
.x12{left:429.327780px;}
.x13{left:431.355540px;}
.x11{left:438.663900px;}
.x5d{left:489.346200px;}
.x20{left:491.926650px;}
.x63{left:497.718000px;}
.x1d{left:500.350650px;}
.x58{left:502.494150px;}
.x38{left:509.115900px;}
.x33{left:557.013900px;}
.x42{left:562.999650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls23{letter-spacing:-2.016000pt;}
.ls25{letter-spacing:-1.702400pt;}
.ls30{letter-spacing:-1.478400pt;}
.ls21{letter-spacing:-1.075200pt;}
.lsc{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.008016pt;}
.ls13{letter-spacing:-0.007482pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.000960pt;}
.ls12{letter-spacing:0.007482pt;}
.lsb{letter-spacing:0.008016pt;}
.ls3f{letter-spacing:0.025440pt;}
.ls1e{letter-spacing:0.044800pt;}
.ls7{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.806400pt;}
.ls14{letter-spacing:2.598400pt;}
.ls17{letter-spacing:3.315200pt;}
.ls37{letter-spacing:7.929600pt;}
.ls2c{letter-spacing:8.108800pt;}
.ls8{letter-spacing:8.880000pt;}
.lse{letter-spacing:10.272000pt;}
.ls3c{letter-spacing:10.304000pt;}
.ls32{letter-spacing:12.947200pt;}
.ls28{letter-spacing:13.843200pt;}
.ls39{letter-spacing:14.022400pt;}
.ls34{letter-spacing:15.366400pt;}
.ls2d{letter-spacing:15.500800pt;}
.ls1d{letter-spacing:17.158400pt;}
.ls2f{letter-spacing:17.964800pt;}
.ls16{letter-spacing:21.324800pt;}
.lsf{letter-spacing:22.896000pt;}
.ls26{letter-spacing:23.923200pt;}
.ls38{letter-spacing:30.329600pt;}
.ls35{letter-spacing:30.419200pt;}
.ls1f{letter-spacing:30.643200pt;}
.ls3d{letter-spacing:31.404800pt;}
.ls2a{letter-spacing:40.320000pt;}
.ls31{letter-spacing:42.918400pt;}
.lsa{letter-spacing:45.792000pt;}
.ls20{letter-spacing:46.188800pt;}
.ls2b{letter-spacing:47.801600pt;}
.ls3{letter-spacing:51.552000pt;}
.ls10{letter-spacing:52.460800pt;}
.ls29{letter-spacing:55.283200pt;}
.ls22{letter-spacing:55.328000pt;}
.ls1b{letter-spacing:58.867200pt;}
.lsd{letter-spacing:62.880000pt;}
.ls1c{letter-spacing:72.665600pt;}
.ls2e{letter-spacing:75.174400pt;}
.ls27{letter-spacing:76.070400pt;}
.ls36{letter-spacing:77.593600pt;}
.ls33{letter-spacing:99.948800pt;}
.ls3a{letter-spacing:108.595200pt;}
.ls24{letter-spacing:109.894400pt;}
.ls18{letter-spacing:124.445440pt;}
.ls4{letter-spacing:137.424000pt;}
.ls3b{letter-spacing:140.896000pt;}
.ls15{letter-spacing:169.612800pt;}
.ls1{letter-spacing:186.352000pt;}
.ls1a{letter-spacing:201.600000pt;}
.ls19{letter-spacing:218.924160pt;}
.ls5{letter-spacing:224.688000pt;}
.ls2{letter-spacing:1297.056000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.200000pt;}
.ws5{word-spacing:-11.192518pt;}
.ws1{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.656000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-181.008000pt;}
._4b{margin-left:-169.612800pt;}
._63{margin-left:-140.896000pt;}
._53{margin-left:-109.894400pt;}
._62{margin-left:-108.595200pt;}
._5f{margin-left:-99.948800pt;}
._11{margin-left:-93.312000pt;}
._14{margin-left:-80.064000pt;}
._61{margin-left:-77.593600pt;}
._55{margin-left:-76.070400pt;}
._5b{margin-left:-75.174400pt;}
._4e{margin-left:-72.665600pt;}
._46{margin-left:-62.880000pt;}
._4d{margin-left:-58.867200pt;}
._52{margin-left:-55.328000pt;}
._49{margin-left:-52.460800pt;}
._58{margin-left:-48.620800pt;}
._51{margin-left:-46.982400pt;}
._45{margin-left:-45.792000pt;}
._5d{margin-left:-42.918400pt;}
._57{margin-left:-40.320000pt;}
._64{margin-left:-32.166400pt;}
._50{margin-left:-30.643200pt;}
._60{margin-left:-29.568000pt;}
._54{margin-left:-23.923200pt;}
._48{margin-left:-22.896000pt;}
._4c{margin-left:-21.324800pt;}
._5c{margin-left:-18.771200pt;}
._4f{margin-left:-17.158400pt;}
._5a{margin-left:-15.500800pt;}
._56{margin-left:-13.843200pt;}
._5e{margin-left:-12.947200pt;}
._47{margin-left:-10.272000pt;}
._44{margin-left:-8.880000pt;}
._59{margin-left:-7.337600pt;}
._9e{margin-left:-5.966400pt;}
._15{margin-left:-4.992000pt;}
._5{margin-left:-3.552000pt;}
._4a{margin-left:-2.598400pt;}
._1{margin-left:-1.555200pt;}
._0{width:1.113600pt;}
._3{width:2.491200pt;}
._7{width:3.404640pt;}
._2{width:5.203200pt;}
._4{width:6.249600pt;}
._8{width:7.198560pt;}
._9{width:8.300640pt;}
._9f{width:9.420960pt;}
._9b{width:10.583040pt;}
._9c{width:12.451680pt;}
._9a{width:14.677920pt;}
._9d{width:15.958560pt;}
._98{width:19.882240pt;}
._30{width:21.291733pt;}
._3d{width:22.764267pt;}
._1a{width:24.000000pt;}
._87{width:25.267200pt;}
._16{width:29.616000pt;}
._6d{width:32.327680pt;}
._32{width:34.635733pt;}
._68{width:37.318400pt;}
._86{width:38.774400pt;}
._10{width:39.936000pt;}
._70{width:42.282240pt;}
._6a{width:44.156800pt;}
._1e{width:45.304000pt;}
._28{width:48.000000pt;}
._80{width:49.763840pt;}
._35{width:52.016000pt;}
._6e{width:54.727680pt;}
._d{width:56.016000pt;}
._24{width:58.636267pt;}
._66{width:64.926507pt;}
._43{width:66.684000pt;}
._97{width:67.617440pt;}
._13{width:69.312000pt;}
._99{width:70.918400pt;}
._88{width:72.231040pt;}
._2c{width:74.620267pt;}
._3a{width:77.356267pt;}
._84{width:79.401173pt;}
._6b{width:82.430400pt;}
._36{width:84.000000pt;}
._33{width:85.304000pt;}
._82{width:87.988053pt;}
._b{width:90.240000pt;}
._7d{width:92.843467pt;}
._8b{width:94.835413pt;}
._1f{width:96.000000pt;}
._74{width:97.315840pt;}
._1d{width:101.320000pt;}
._92{width:102.470827pt;}
._31{width:103.968000pt;}
._7f{width:104.933653pt;}
._2b{width:106.636267pt;}
._f{width:108.912000pt;}
._7e{width:109.937173pt;}
._2e{width:111.936000pt;}
._73{width:112.836373pt;}
._2d{width:114.603733pt;}
._6f{width:115.718400pt;}
._22{width:117.276267pt;}
._38{width:122.523733pt;}
._29{width:123.984000pt;}
._c{width:124.944000pt;}
._89{width:126.918400pt;}
._75{width:129.368960pt;}
._7a{width:133.874453pt;}
._25{width:135.984000pt;}
._1b{width:137.316267pt;}
._67{width:138.641920pt;}
._2f{width:141.272000pt;}
._77{width:142.208853pt;}
._19{width:143.952000pt;}
._2a{width:146.587733pt;}
._71{width:150.023253pt;}
._69{width:151.737600pt;}
._18{width:156.048000pt;}
._94{width:157.453867pt;}
._79{width:159.233920pt;}
._3b{width:161.272000pt;}
._e{width:164.880000pt;}
._78{width:166.682880pt;}
._93{width:167.861120pt;}
._6c{width:171.673600pt;}
._27{width:174.608000pt;}
._8f{width:176.615040pt;}
._26{width:178.688000pt;}
._8e{width:179.811840pt;}
._72{width:183.691093pt;}
._83{width:185.216533pt;}
._3e{width:186.708267pt;}
._20{width:191.988267pt;}
._90{width:193.809173pt;}
._8c{width:194.761600pt;}
._96{width:196.536800pt;}
._8d{width:198.988160pt;}
._37{width:201.288533pt;}
._34{width:210.603733pt;}
._81{width:211.888640pt;}
._76{width:213.951360pt;}
._85{width:219.270293pt;}
._95{width:223.518080pt;}
._7c{width:229.607040pt;}
._41{width:231.991680pt;}
._21{width:234.952000pt;}
._91{width:236.795627pt;}
._23{width:247.923733pt;}
._40{width:286.023467pt;}
._39{width:298.607467pt;}
._42{width:306.679680pt;}
._3c{width:309.276267pt;}
._7b{width:317.930027pt;}
._8a{width:321.081600pt;}
._65{width:325.058773pt;}
._1c{width:349.171733pt;}
._12{width:406.848000pt;}
._3f{width:542.944000pt;}
._6{width:582.027733pt;}
._a{width:1643.520000pt;}
.fs4{font-size:21.333333pt;}
.fs1{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.y69{bottom:-447.388147pt;}
.y68{bottom:-421.708147pt;}
.y67{bottom:-407.788147pt;}
.y66{bottom:-394.108147pt;}
.y65{bottom:-380.188147pt;}
.y1d3{bottom:-375.185867pt;}
.y1d2{bottom:-362.193867pt;}
.y64{bottom:-357.148147pt;}
.y1d1{bottom:-349.425867pt;}
.y1d0{bottom:-336.433867pt;}
.y1cf{bottom:-323.665867pt;}
.y1ce{bottom:-310.673867pt;}
.y1cd{bottom:-297.905867pt;}
.y1cc{bottom:-285.137867pt;}
.y1cb{bottom:-272.145867pt;}
.y1ca{bottom:-259.377867pt;}
.y1c9{bottom:-246.385867pt;}
.y1c8{bottom:-233.617867pt;}
.y1c7{bottom:-220.625867pt;}
.y1c6{bottom:-207.857867pt;}
.y1c5{bottom:-194.865867pt;}
.y1c4{bottom:-182.097867pt;}
.y1c3{bottom:-169.105867pt;}
.y1c2{bottom:-156.337867pt;}
.y63{bottom:-154.108147pt;}
.y1c1{bottom:-143.345867pt;}
.y1c0{bottom:-130.577867pt;}
.y62{bottom:-128.428147pt;}
.y1bf{bottom:-106.385867pt;}
.y61{bottom:-102.508147pt;}
.y1be{bottom:-93.617867pt;}
.y88{bottom:-89.884667pt;}
.y7a{bottom:-89.884547pt;}
.y6c{bottom:-88.828267pt;}
.y1bd{bottom:-80.625867pt;}
.y6b{bottom:-74.908400pt;}
.y60{bottom:-74.908267pt;}
.y1bc{bottom:-67.857867pt;}
.y79{bottom:-64.204547pt;}
.y6a{bottom:-61.228267pt;}
.y1bb{bottom:-54.865867pt;}
.y87{bottom:-50.284667pt;}
.y78{bottom:-50.284547pt;}
.y5f{bottom:-47.308267pt;}
.y1ba{bottom:-42.097867pt;}
.y86{bottom:-36.604667pt;}
.y77{bottom:-36.604547pt;}
.y1b9{bottom:-29.105867pt;}
.y85{bottom:-22.684667pt;}
.y76{bottom:-22.684547pt;}
.y5e{bottom:-21.628267pt;}
.y1b8{bottom:-16.337867pt;}
.y134{bottom:-8.921333pt;}
.y1b7{bottom:-3.345867pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:0.355453pt;}
.y16c{bottom:1.564480pt;}
.y15b{bottom:1.564592pt;}
.y5d{bottom:1.651733pt;}
.ye2{bottom:2.370667pt;}
.y112{bottom:2.463749pt;}
.y1b2{bottom:2.464000pt;}
.yfc{bottom:2.640000pt;}
.y11e{bottom:2.687776pt;}
.y1a5{bottom:2.687888pt;}
.y1a2{bottom:2.688000pt;}
.y19d{bottom:2.688224pt;}
.yb4{bottom:2.880000pt;}
.ye4{bottom:2.880120pt;}
.y133{bottom:3.846667pt;}
.y16b{bottom:14.556480pt;}
.y15a{bottom:14.556592pt;}
.y111{bottom:15.455749pt;}
.y11d{bottom:15.455776pt;}
.y1a4{bottom:15.455888pt;}
.y1a1{bottom:15.456000pt;}
.y19c{bottom:15.456224pt;}
.ye1{bottom:16.050667pt;}
.yb3{bottom:16.560000pt;}
.yf4{bottom:16.560120pt;}
.y132{bottom:16.838667pt;}
.y16a{bottom:27.324480pt;}
.y159{bottom:27.324592pt;}
.y110{bottom:28.223749pt;}
.y1b1{bottom:28.224000pt;}
.y11c{bottom:28.447776pt;}
.y1a3{bottom:28.447888pt;}
.y1a0{bottom:28.448000pt;}
.y19b{bottom:28.448224pt;}
.y131{bottom:29.606667pt;}
.ye0{bottom:29.970667pt;}
.yfb{bottom:30.240000pt;}
.yc9{bottom:30.480000pt;}
.yf3{bottom:30.480120pt;}
.y169{bottom:40.316480pt;}
.y158{bottom:40.316592pt;}
.y10f{bottom:41.215749pt;}
.y11b{bottom:41.215776pt;}
.y19f{bottom:41.216000pt;}
.y19a{bottom:41.216224pt;}
.y130{bottom:42.598667pt;}
.ydf{bottom:43.650667pt;}
.yc8{bottom:44.160000pt;}
.yf2{bottom:44.160120pt;}
.y12{bottom:50.898400pt;}
.y82{bottom:51.167067pt;}
.y168{bottom:53.084480pt;}
.y157{bottom:53.084592pt;}
.y10e{bottom:53.983749pt;}
.y1b0{bottom:53.984000pt;}
.y180{bottom:54.207776pt;}
.y11a{bottom:54.207888pt;}
.y199{bottom:54.208224pt;}
.y12f{bottom:55.366667pt;}
.yde{bottom:57.570667pt;}
.yf8{bottom:57.840000pt;}
.yc7{bottom:58.080000pt;}
.yf1{bottom:58.080120pt;}
.y11{bottom:60.231733pt;}
.y167{bottom:66.076480pt;}
.y156{bottom:66.076592pt;}
.y10d{bottom:66.975749pt;}
.y17f{bottom:66.975776pt;}
.y119{bottom:66.975888pt;}
.y1af{bottom:66.976000pt;}
.y198{bottom:66.976224pt;}
.y12e{bottom:68.358667pt;}
.ydd{bottom:71.250667pt;}
.yc6{bottom:71.760000pt;}
.yf0{bottom:71.760120pt;}
.y81{bottom:76.847067pt;}
.y166{bottom:78.844592pt;}
.y155{bottom:78.844704pt;}
.y10c{bottom:79.743749pt;}
.y1ae{bottom:79.744000pt;}
.y17e{bottom:79.967776pt;}
.y118{bottom:79.967888pt;}
.y197{bottom:79.968112pt;}
.y12d{bottom:81.126667pt;}
.ydc{bottom:85.170667pt;}
.yf7{bottom:85.440000pt;}
.yc5{bottom:85.680000pt;}
.yef{bottom:85.680120pt;}
.y165{bottom:91.836592pt;}
.y154{bottom:91.836704pt;}
.y10b{bottom:92.735749pt;}
.y17d{bottom:92.735776pt;}
.y117{bottom:92.735888pt;}
.y1ad{bottom:92.736000pt;}
.y196{bottom:92.736112pt;}
.y12c{bottom:94.118667pt;}
.ydb{bottom:98.850667pt;}
.yc4{bottom:99.360000pt;}
.yee{bottom:99.360120pt;}
.y80{bottom:102.767067pt;}
.y164{bottom:104.604592pt;}
.y153{bottom:104.604704pt;}
.y10a{bottom:105.503749pt;}
.y1ac{bottom:105.504000pt;}
.y17c{bottom:105.727776pt;}
.y116{bottom:105.728000pt;}
.y195{bottom:105.728112pt;}
.y11f{bottom:106.046533pt;}
.y12b{bottom:106.886667pt;}
.yda{bottom:112.770667pt;}
.yf6{bottom:113.040000pt;}
.yc3{bottom:113.280000pt;}
.yed{bottom:113.280120pt;}
.y10{bottom:115.790267pt;}
.y7f{bottom:116.447067pt;}
.y163{bottom:117.596592pt;}
.y152{bottom:117.596704pt;}
.y109{bottom:118.495749pt;}
.y17b{bottom:118.495776pt;}
.y115{bottom:118.496000pt;}
.y194{bottom:118.496112pt;}
.y5b{bottom:119.368667pt;}
.y12a{bottom:119.878667pt;}
.yd9{bottom:126.450667pt;}
.yc2{bottom:126.960000pt;}
.yec{bottom:126.960120pt;}
.y162{bottom:130.364704pt;}
.y151{bottom:130.364816pt;}
.y7e{bottom:130.366933pt;}
.yf{bottom:130.456667pt;}
.y108{bottom:131.263749pt;}
.y1ab{bottom:131.264000pt;}
.yaf{bottom:131.371185pt;}
.y1dd{bottom:131.371425pt;}
.y17a{bottom:131.487776pt;}
.y114{bottom:131.488000pt;}
.y193{bottom:131.488112pt;}
.y129{bottom:132.646667pt;}
.y1b6{bottom:133.793200pt;}
.y5a{bottom:134.035067pt;}
.yd8{bottom:140.370667pt;}
.ye7{bottom:140.640000pt;}
.yc1{bottom:140.880000pt;}
.y161{bottom:143.356704pt;}
.y150{bottom:143.356816pt;}
.y7d{bottom:144.047067pt;}
.y107{bottom:144.255749pt;}
.y179{bottom:144.255776pt;}
.y1aa{bottom:144.256000pt;}
.y192{bottom:144.256112pt;}
.ye{bottom:145.123067pt;}
.y128{bottom:145.638667pt;}
.yae{bottom:146.037585pt;}
.y1dc{bottom:146.037825pt;}
.y1a6{bottom:146.351333pt;}
.y59{bottom:148.701467pt;}
.y1e8{bottom:152.704785pt;}
.yd7{bottom:154.050667pt;}
.yf9{bottom:154.163067pt;}
.yc0{bottom:154.560000pt;}
.yeb{bottom:154.560120pt;}
.y160{bottom:156.124704pt;}
.y14f{bottom:156.124816pt;}
.y106{bottom:157.023749pt;}
.y1b5{bottom:157.023888pt;}
.y1a9{bottom:157.024000pt;}
.y178{bottom:157.247776pt;}
.y191{bottom:157.248112pt;}
.y7c{bottom:157.967067pt;}
.y127{bottom:158.406667pt;}
.yd{bottom:159.789467pt;}
.yad{bottom:160.703985pt;}
.y1db{bottom:160.704225pt;}
.y58{bottom:163.367867pt;}
.y1e7{bottom:167.371185pt;}
.yd6{bottom:167.970667pt;}
.ye6{bottom:168.240000pt;}
.ybf{bottom:168.480000pt;}
.yea{bottom:168.480120pt;}
.y15f{bottom:169.116816pt;}
.y14e{bottom:169.116928pt;}
.y177{bottom:170.015776pt;}
.y105{bottom:170.015861pt;}
.y1b4{bottom:170.015888pt;}
.y1a8{bottom:170.016000pt;}
.y190{bottom:170.016112pt;}
.y126{bottom:171.398667pt;}
.yc{bottom:174.455867pt;}
.y1da{bottom:175.370625pt;}
.y57{bottom:178.034267pt;}
.y171{bottom:180.622000pt;}
.yd5{bottom:181.650667pt;}
.y15e{bottom:181.884816pt;}
.y14d{bottom:181.884928pt;}
.y144{bottom:181.885067pt;}
.y1e6{bottom:182.037585pt;}
.ybe{bottom:182.160000pt;}
.ye9{bottom:182.160120pt;}
.y1b3{bottom:182.783888pt;}
.y104{bottom:182.783973pt;}
.y1a7{bottom:182.784000pt;}
.y176{bottom:183.007888pt;}
.y18b{bottom:183.008000pt;}
.y18f{bottom:183.008112pt;}
.y125{bottom:184.166667pt;}
.yac{bottom:187.370385pt;}
.yb{bottom:189.122267pt;}
.y1d9{bottom:190.037025pt;}
.y56{bottom:192.700667pt;}
.y15d{bottom:194.876816pt;}
.y14c{bottom:194.876928pt;}
.y143{bottom:194.877067pt;}
.yd4{bottom:195.570667pt;}
.y175{bottom:195.775888pt;}
.y103{bottom:195.775973pt;}
.y18a{bottom:195.776000pt;}
.y18e{bottom:195.776112pt;}
.yfa{bottom:195.840000pt;}
.ybd{bottom:196.080000pt;}
.y1e5{bottom:196.703985pt;}
.y124{bottom:197.158667pt;}
.yab{bottom:202.036785pt;}
.y74{bottom:203.395453pt;}
.ya{bottom:203.788667pt;}
.y1d8{bottom:204.703425pt;}
.y15c{bottom:207.644816pt;}
.y14b{bottom:207.644928pt;}
.y142{bottom:207.645067pt;}
.y102{bottom:208.544000pt;}
.ye5{bottom:208.599867pt;}
.y174{bottom:208.767888pt;}
.y189{bottom:208.768000pt;}
.y18d{bottom:208.768112pt;}
.yd3{bottom:209.250667pt;}
.ybc{bottom:209.760000pt;}
.y123{bottom:209.926667pt;}
.y1e4{bottom:211.370385pt;}
.yaa{bottom:216.703185pt;}
.y55{bottom:218.033467pt;}
.y9{bottom:218.455067pt;}
.y1d7{bottom:219.369825pt;}
.y14a{bottom:220.636928pt;}
.y141{bottom:220.637067pt;}
.y173{bottom:221.535888pt;}
.y101{bottom:221.536000pt;}
.y18c{bottom:221.536112pt;}
.y122{bottom:222.918667pt;}
.yd2{bottom:223.170667pt;}
.ybb{bottom:223.680000pt;}
.y1e3{bottom:226.036785pt;}
.y54{bottom:228.700133pt;}
.y73{bottom:229.075453pt;}
.ya9{bottom:231.369585pt;}
.y8{bottom:233.121467pt;}
.y149{bottom:233.404928pt;}
.y170{bottom:233.405040pt;}
.y140{bottom:233.405067pt;}
.y1d6{bottom:234.036225pt;}
.y100{bottom:234.304000pt;}
.y172{bottom:234.528000pt;}
.y121{bottom:235.686667pt;}
.yd1{bottom:236.850667pt;}
.yba{bottom:237.360000pt;}
.y84{bottom:239.338000pt;}
.y53{bottom:239.366800pt;}
.y1e2{bottom:240.703185pt;}
.y148{bottom:246.396928pt;}
.y16f{bottom:246.397040pt;}
.y13f{bottom:246.397067pt;}
.yff{bottom:247.296000pt;}
.y187{bottom:247.296112pt;}
.y7{bottom:247.787867pt;}
.y120{bottom:248.678667pt;}
.y1d5{bottom:248.702625pt;}
.y52{bottom:250.033467pt;}
.yd0{bottom:250.770667pt;}
.yb9{bottom:251.280000pt;}
.y72{bottom:254.995453pt;}
.y1e1{bottom:255.369585pt;}
.ya8{bottom:258.035985pt;}
.y147{bottom:259.164928pt;}
.y16e{bottom:259.165040pt;}
.y13e{bottom:259.165067pt;}
.yfe{bottom:260.064000pt;}
.y186{bottom:260.288000pt;}
.y6{bottom:262.454267pt;}
.y6d{bottom:263.153200pt;}
.ycf{bottom:264.450667pt;}
.yb8{bottom:264.960000pt;}
.y1e0{bottom:270.035985pt;}
.y146{bottom:272.157040pt;}
.y13d{bottom:272.157067pt;}
.y16d{bottom:272.157152pt;}
.ya7{bottom:272.702385pt;}
.y188{bottom:273.056000pt;}
.y185{bottom:273.056112pt;}
.y49{bottom:275.369025pt;}
.y5{bottom:277.120667pt;}
.yce{bottom:278.370667pt;}
.yb7{bottom:278.880000pt;}
.y71{bottom:282.595333pt;}
.y1df{bottom:284.702385pt;}
.y145{bottom:284.925040pt;}
.y13c{bottom:284.925067pt;}
.y184{bottom:286.048000pt;}
.ya6{bottom:287.368785pt;}
.y48{bottom:290.035425pt;}
.y4{bottom:291.787067pt;}
.ycd{bottom:292.050667pt;}
.y83{bottom:292.490533pt;}
.yb6{bottom:292.560000pt;}
.y13a{bottom:297.917067pt;}
.y183{bottom:298.816000pt;}
.y1de{bottom:299.368785pt;}
.y47{bottom:304.701825pt;}
.ycc{bottom:305.730667pt;}
.y3{bottom:306.453467pt;}
.y70{bottom:310.195333pt;}
.y13b{bottom:310.685067pt;}
.y139{bottom:310.685179pt;}
.y182{bottom:311.808000pt;}
.ya5{bottom:314.035185pt;}
.y46{bottom:319.368225pt;}
.y2{bottom:321.119867pt;}
.y138{bottom:323.677067pt;}
.ya4{bottom:328.701585pt;}
.yb0{bottom:330.609200pt;}
.y45{bottom:334.034625pt;}
.y1{bottom:335.786267pt;}
.y6f{bottom:335.875333pt;}
.y137{bottom:336.445067pt;}
.yb5{bottom:337.070933pt;}
.ya3{bottom:343.367985pt;}
.y44{bottom:348.701265pt;}
.y136{bottom:349.437067pt;}
.ya2{bottom:358.034625pt;}
.yb1{bottom:359.021600pt;}
.y6e{bottom:359.155333pt;}
.y43{bottom:363.367905pt;}
.y113{bottom:364.928133pt;}
.ya1{bottom:372.701265pt;}
.yf5{bottom:375.696267pt;}
.y42{bottom:378.034545pt;}
.ya0{bottom:387.367905pt;}
.y41{bottom:392.701185pt;}
.ye3{bottom:398.919867pt;}
.y27{bottom:401.510667pt;}
.y9f{bottom:402.034545pt;}
.y19e{bottom:403.395200pt;}
.y40{bottom:407.367825pt;}
.y26{bottom:412.177333pt;}
.y7b{bottom:415.381467pt;}
.y9e{bottom:416.701185pt;}
.y1d4{bottom:422.034465pt;}
.y25{bottom:422.844000pt;}
.y135{bottom:428.843867pt;}
.y9d{bottom:431.367825pt;}
.y24{bottom:433.510667pt;}
.y3f{bottom:434.034465pt;}
.y23{bottom:444.177333pt;}
.y9c{bottom:446.034465pt;}
.y3e{bottom:448.701105pt;}
.y51{bottom:458.367333pt;}
.y9b{bottom:460.701105pt;}
.y3d{bottom:463.367745pt;}
.y181{bottom:465.219200pt;}
.yca{bottom:469.691867pt;}
.y9a{bottom:475.367745pt;}
.y3c{bottom:478.034385pt;}
.y50{bottom:484.034080pt;}
.y99{bottom:490.034385pt;}
.y3b{bottom:492.701025pt;}
.y4f{bottom:498.700720pt;}
.y22{bottom:501.510667pt;}
.y98{bottom:504.701025pt;}
.y3a{bottom:507.367665pt;}
.y21{bottom:512.177333pt;}
.y4e{bottom:513.367360pt;}
.yfd{bottom:517.024133pt;}
.y97{bottom:519.367665pt;}
.y39{bottom:522.034305pt;}
.y20{bottom:522.844000pt;}
.y4d{bottom:528.034000pt;}
.y1f{bottom:533.510667pt;}
.y96{bottom:534.034305pt;}
.y38{bottom:536.700945pt;}
.y1e{bottom:544.177333pt;}
.y95{bottom:548.700945pt;}
.y37{bottom:551.367585pt;}
.y4c{bottom:553.367333pt;}
.y1d{bottom:554.844000pt;}
.y94{bottom:563.367585pt;}
.y5c{bottom:563.778533pt;}
.y1c{bottom:565.510667pt;}
.ye8{bottom:566.016267pt;}
.y36{bottom:566.034225pt;}
.y1b{bottom:576.177333pt;}
.y93{bottom:578.034225pt;}
.y35{bottom:580.700865pt;}
.y1a{bottom:586.844000pt;}
.y92{bottom:592.700865pt;}
.y34{bottom:595.367505pt;}
.y19{bottom:597.510667pt;}
.y91{bottom:607.367505pt;}
.y18{bottom:608.177333pt;}
.y33{bottom:610.034145pt;}
.y17{bottom:618.844000pt;}
.y90{bottom:622.034145pt;}
.y32{bottom:624.700785pt;}
.y16{bottom:629.510667pt;}
.y8f{bottom:636.700785pt;}
.y31{bottom:639.367425pt;}
.y8e{bottom:651.367425pt;}
.yb2{bottom:651.710933pt;}
.y15{bottom:653.344000pt;}
.y30{bottom:654.034065pt;}
.y14{bottom:666.010667pt;}
.y8d{bottom:666.034065pt;}
.y2f{bottom:668.700705pt;}
.ycb{bottom:680.370667pt;}
.y8c{bottom:680.700705pt;}
.y2e{bottom:683.367465pt;}
.y8b{bottom:695.367465pt;}
.y2d{bottom:698.034105pt;}
.y8a{bottom:710.034105pt;}
.y2c{bottom:712.700745pt;}
.y89{bottom:724.700745pt;}
.y2b{bottom:739.367385pt;}
.y2a{bottom:754.034025pt;}
.y29{bottom:768.700665pt;}
.y28{bottom:783.367333pt;}
.y4b{bottom:784.367333pt;}
.y4a{bottom:823.506800pt;}
.y13{bottom:823.517467pt;}
.h17{height:27.600000pt;}
.h4{height:28.560000pt;}
.h13{height:29.337333pt;}
.h2d{height:30.668750pt;}
.h21{height:31.128125pt;}
.h22{height:31.128465pt;}
.hc{height:32.531250pt;}
.h8{height:32.640000pt;}
.h16{height:32.859375pt;}
.hb{height:33.328125pt;}
.h19{height:33.351562pt;}
.h7{height:33.365333pt;}
.h10{height:38.758400pt;}
.h25{height:39.309375pt;}
.h27{height:39.309715pt;}
.h6{height:39.621333pt;}
.h5{height:40.234667pt;}
.hd{height:40.508533pt;}
.he{height:40.508667pt;}
.h3{height:45.264000pt;}
.h9{height:45.264365pt;}
.h2{height:46.128000pt;}
.h14{height:46.128365pt;}
.h2a{height:51.520000pt;}
.h1c{height:69.120000pt;}
.h23{height:141.792000pt;}
.h12{height:152.228267pt;}
.h11{height:161.649333pt;}
.h1d{height:179.280000pt;}
.hf{height:190.986667pt;}
.ha{height:217.153333pt;}
.h1f{height:220.196800pt;}
.h1e{height:220.800000pt;}
.h28{height:244.832000pt;}
.h2b{height:255.096533pt;}
.h24{height:256.549333pt;}
.h2c{height:267.654667pt;}
.h20{height:270.368000pt;}
.h18{height:303.600000pt;}
.h1b{height:316.770667pt;}
.h29{height:322.112000pt;}
.h1a{height:324.009333pt;}
.h26{height:359.741067pt;}
.h15{height:369.776000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w8{width:31.947867pt;}
.w6{width:39.737733pt;}
.w19{width:51.968000pt;}
.we{width:55.680000pt;}
.w13{width:56.160000pt;}
.w1b{width:58.016000pt;}
.w1a{width:58.688000pt;}
.w10{width:62.160000pt;}
.w15{width:62.640000pt;}
.wf{width:62.880000pt;}
.w14{width:63.360000pt;}
.w9{width:65.430400pt;}
.w1c{width:65.632000pt;}
.w11{width:70.320000pt;}
.w16{width:70.800000pt;}
.w17{width:71.040000pt;}
.w18{width:91.168000pt;}
.wd{width:97.680000pt;}
.w5{width:122.891067pt;}
.w4{width:122.892000pt;}
.wa{width:154.838933pt;}
.w3{width:180.531067pt;}
.wb{width:245.783067pt;}
.w2{width:466.051867pt;}
.w7{width:466.053333pt;}
.wc{width:472.440000pt;}
.w12{width:472.441333pt;}
.w1d{width:499.810667pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x30{left:-52.768933pt;}
.x37{left:-22.421067pt;}
.x36{left:-20.697067pt;}
.x34{left:-8.707067pt;}
.x31{left:-6.108933pt;}
.x4c{left:-4.544000pt;}
.x49{left:-3.260000pt;}
.x52{left:-1.930000pt;}
.x0{left:0.000000pt;}
.x48{left:1.732000pt;}
.x4e{left:4.168000pt;}
.x2e{left:6.151067pt;}
.x4a{left:10.725067pt;}
.x35{left:14.616000pt;}
.x2f{left:16.231067pt;}
.x4f{left:18.428000pt;}
.x23{left:19.715893pt;}
.x2d{left:23.471067pt;}
.x3d{left:27.507227pt;}
.x51{left:32.833467pt;}
.x2c{left:36.796000pt;}
.x28{left:40.382133pt;}
.x2a{left:42.367067pt;}
.x24{left:46.375093pt;}
.x43{left:50.158400pt;}
.x44{left:52.837333pt;}
.x3e{left:54.166427pt;}
.x27{left:55.709067pt;}
.x68{left:59.479680pt;}
.x45{left:62.170400pt;}
.x6c{left:63.830880pt;}
.x21{left:66.380053pt;}
.x1{left:67.475467pt;}
.x1a{left:69.236533pt;}
.x19{left:70.921867pt;}
.x3b{left:74.171387pt;}
.x46{left:76.155467pt;}
.x6b{left:77.515040pt;}
.x53{left:79.662800pt;}
.x29{left:81.708133pt;}
.x6a{left:83.113920pt;}
.x69{left:84.972000pt;}
.x2{left:86.373067pt;}
.x66{left:90.591040pt;}
.x54{left:92.901467pt;}
.x67{left:94.932160pt;}
.x6f{left:96.182080pt;}
.x25{left:98.372293pt;}
.x32{left:100.470000pt;}
.x64{left:103.026400pt;}
.x59{left:104.798400pt;}
.x3f{left:106.163627pt;}
.x6d{left:109.255840pt;}
.x6e{left:110.486720pt;}
.x60{left:112.240000pt;}
.x1f{left:113.671093pt;}
.x65{left:116.727360pt;}
.x26{left:119.893093pt;}
.x3a{left:121.462427pt;}
.x40{left:127.684427pt;}
.x47{left:131.769067pt;}
.x18{left:145.013600pt;}
.x41{left:152.470427pt;}
.x5{left:154.813553pt;}
.x3{left:161.502133pt;}
.x16{left:164.215600pt;}
.x1e{left:171.029053pt;}
.x39{left:178.820387pt;}
.x50{left:189.870933pt;}
.x55{left:191.541467pt;}
.x8{left:195.626320pt;}
.x5a{left:196.862400pt;}
.x1b{left:197.751733pt;}
.x7{left:203.834533pt;}
.x4{left:205.157600pt;}
.xc{left:232.319600pt;}
.xe{left:237.946533pt;}
.x17{left:239.618800pt;}
.x6{left:240.586533pt;}
.xd{left:244.170533pt;}
.xf{left:246.256000pt;}
.x1c{left:247.495733pt;}
.x2b{left:249.340400pt;}
.x10{left:250.783733pt;}
.x4b{left:254.661067pt;}
.x61{left:257.168000pt;}
.xb{left:261.359973pt;}
.xa{left:270.405200pt;}
.x9{left:282.020240pt;}
.x15{left:288.077200pt;}
.x5b{left:309.310400pt;}
.x5e{left:311.082000pt;}
.x56{left:312.021467pt;}
.x62{left:316.752000pt;}
.x22{left:331.675093pt;}
.x3c{left:339.466427pt;}
.x5c{left:368.222400pt;}
.x5f{left:369.994000pt;}
.x14{left:372.141600pt;}
.x57{left:375.141467pt;}
.x4d{left:377.553067pt;}
.x12{left:381.624693pt;}
.x13{left:383.427147pt;}
.x11{left:389.923467pt;}
.x5d{left:434.974400pt;}
.x20{left:437.268133pt;}
.x63{left:442.416000pt;}
.x1d{left:444.756133pt;}
.x58{left:446.661467pt;}
.x38{left:452.547467pt;}
.x33{left:495.123467pt;}
.x42{left:500.444133pt;}
}




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