
    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_4af9a4671a36c3ae3d45bc8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_30e9787f614775c232e3338f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d5dfbbb6aaa28f1ca4c6e726.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_14f2034bd502c18bb3cd9d67.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0c595caabb80ff20689a16c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_76a7658056fb7ef0970c9761.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4cbd3c40daaa416534c45650.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_de6cfb1184e6afa83f8fe7ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1aece547ec71afee35c6ce1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;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_5bfad89de340052d12661728.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940430;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_8c0e320afad8cb3d10b38daf.woff2')format("woff");}.fff{font-family:fff;line-height:0.946777;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_3e86602ef6e46cc3865e289c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740234;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_e3ab236c20a39e6a84ce230f.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:30.240000px;}
.v2{vertical-align:36.000000px;}
.ls2d{letter-spacing:-1.422000px;}
.ls6{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.498000px;}
.lsd{letter-spacing:-0.486600px;}
.ls5{letter-spacing:-0.466800px;}
.ls1d{letter-spacing:-0.385800px;}
.ls2a{letter-spacing:-0.250800px;}
.ls38{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls30{letter-spacing:0.075000px;}
.ls35{letter-spacing:0.213120px;}
.ls40{letter-spacing:0.300960px;}
.ls28{letter-spacing:0.452400px;}
.ls13{letter-spacing:0.466800px;}
.ls34{letter-spacing:0.486720px;}
.ls0{letter-spacing:0.498240px;}
.ls32{letter-spacing:0.506880px;}
.lse{letter-spacing:0.507000px;}
.ls29{letter-spacing:0.512400px;}
.ls7{letter-spacing:0.720000px;}
.ls39{letter-spacing:0.954000px;}
.ls3a{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.944000px;}
.ls31{letter-spacing:2.900160px;}
.ls44{letter-spacing:3.600000px;}
.ls36{letter-spacing:7.666560px;}
.ls2f{letter-spacing:13.426560px;}
.lsc{letter-spacing:13.680000px;}
.ls47{letter-spacing:16.306560px;}
.ls10{letter-spacing:17.746560px;}
.ls3c{letter-spacing:19.186560px;}
.ls23{letter-spacing:23.506560px;}
.ls2e{letter-spacing:23.650560px;}
.ls12{letter-spacing:24.946560px;}
.ls26{letter-spacing:27.838560px;}
.ls27{letter-spacing:30.718560px;}
.ls19{letter-spacing:36.466560px;}
.ls18{letter-spacing:37.906560px;}
.ls8{letter-spacing:37.918560px;}
.ls41{letter-spacing:39.346560px;}
.ls17{letter-spacing:40.786560px;}
.lsb{letter-spacing:40.798560px;}
.ls15{letter-spacing:42.238560px;}
.ls33{letter-spacing:43.666560px;}
.ls3f{letter-spacing:43.786560px;}
.ls45{letter-spacing:43.810560px;}
.lsa{letter-spacing:45.118560px;}
.ls2c{letter-spacing:46.546560px;}
.ls11{letter-spacing:46.558560px;}
.ls46{letter-spacing:46.690560px;}
.ls1b{letter-spacing:49.438560px;}
.ls42{letter-spacing:49.546560px;}
.lsf{letter-spacing:50.878560px;}
.ls1e{letter-spacing:55.186560px;}
.ls20{letter-spacing:55.198560px;}
.ls43{letter-spacing:59.506560px;}
.ls16{letter-spacing:60.946560px;}
.ls21{letter-spacing:61.090560px;}
.ls2b{letter-spacing:63.826560px;}
.ls22{letter-spacing:63.838560px;}
.ls25{letter-spacing:66.850560px;}
.ls1f{letter-spacing:67.997280px;}
.ls1a{letter-spacing:68.146560px;}
.ls24{letter-spacing:105.742560px;}
.ls3d{letter-spacing:114.238560px;}
.ls3e{letter-spacing:117.118560px;}
.ls3b{letter-spacing:137.278560px;}
.ls9{letter-spacing:146.062560px;}
.ls14{letter-spacing:160.462560px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.ws11{word-spacing:-17.064000px;}
.wsb{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.074000px;}
.ws6{word-spacing:-15.627000px;}
.ws7{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws12{word-spacing:-15.099840px;}
.ws2{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.633400px;}
.ws9{word-spacing:-14.613000px;}
.ws0{word-spacing:-13.182000px;}
.ws14{word-spacing:-9.720000px;}
.wse{word-spacing:-0.572880px;}
.wsd{word-spacing:-0.512880px;}
.ws10{word-spacing:-0.135480px;}
.ws8{word-spacing:-0.060480px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:0.190320px;}
.wsa{word-spacing:0.325320px;}
._e{margin-left:-3.957120px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._d{width:3.652320px;}
._10{width:4.777920px;}
._11{width:6.335520px;}
._13{width:7.649760px;}
._14{width:8.712480px;}
._18{width:9.725280px;}
._17{width:11.516160px;}
._16{width:12.720960px;}
._15{width:13.724880px;}
._12{width:16.130880px;}
._a{width:17.357760px;}
._b{width:19.180800px;}
._c{width:20.252160px;}
._9{width:21.885120px;}
._7{width:23.103360px;}
._8{width:24.563520px;}
._1c{width:26.619840px;}
._1b{width:28.252800px;}
._1a{width:29.393280px;}
._19{width:33.894240px;}
._f{width:34.932000px;}
._1d{width:36.752160px;}
._25{width:38.465280px;}
._26{width:39.994560px;}
._27{width:45.942240px;}
._28{width:47.046720px;}
._21{width:50.161440px;}
._1f{width:164.923200px;}
._23{width:179.898720px;}
._22{width:196.680000px;}
._20{width:198.007200px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._1e{width:849.336000px;}
._24{width:1579.680000px;}
._3{width:1591.176000px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc7{color:rgb(83,129,53);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y1fa{bottom:7.560000px;}
.y1fd{bottom:18.000000px;}
.y198{bottom:20.874000px;}
.y14d{bottom:21.240000px;}
.y150{bottom:21.270000px;}
.y25{bottom:23.790000px;}
.y1f9{bottom:25.200000px;}
.y1fc{bottom:25.560000px;}
.y16d{bottom:30.960000px;}
.y1f8{bottom:32.760000px;}
.y183{bottom:38.520000px;}
.ye{bottom:43.560000px;}
.y1f7{bottom:53.325000px;}
.y182{bottom:55.800000px;}
.y1a7{bottom:56.160000px;}
.y158{bottom:56.190000px;}
.y1c7{bottom:56.205000px;}
.y152{bottom:56.520000px;}
.y1d9{bottom:56.550000px;}
.y197{bottom:56.559000px;}
.y167{bottom:56.565000px;}
.y24{bottom:61.590000px;}
.yc{bottom:68.400000px;}
.y1f6{bottom:70.605000px;}
.y181{bottom:73.080000px;}
.y1c6{bottom:73.125000px;}
.y17a{bottom:73.800000px;}
.y1d8{bottom:74.190000px;}
.y23{bottom:81.390000px;}
.y1f5{bottom:84.645000px;}
.y180{bottom:90.360000px;}
.y17d{bottom:91.080000px;}
.y157{bottom:91.470000px;}
.y16a{bottom:91.800000px;}
.y196{bottom:91.839000px;}
.y166{bottom:91.845000px;}
.y1f4{bottom:92.205000px;}
.ya{bottom:94.716000px;}
.y22{bottom:101.190000px;}
.y17f{bottom:107.310000px;}
.y17c{bottom:108.405000px;}
.y1c5{bottom:108.765000px;}
.y179{bottom:109.125000px;}
.y1f3{bottom:109.845000px;}
.y191{bottom:110.199000px;}
.y1e5{bottom:110.550000px;}
.y1f2{bottom:117.405000px;}
.y21{bottom:120.990000px;}
.y17b{bottom:125.685000px;}
.y178{bottom:126.405000px;}
.y156{bottom:126.750000px;}
.y161{bottom:126.765000px;}
.y165{bottom:127.125000px;}
.y195{bottom:127.479000px;}
.y1e4{bottom:127.830000px;}
.y1c1{bottom:127.845000px;}
.yf8{bottom:133.236000px;}
.y2e{bottom:133.956000px;}
.y1f1{bottom:135.045000px;}
.y2d{bottom:139.356000px;}
.y218{bottom:142.236000px;}
.y1f0{bottom:142.605000px;}
.y78{bottom:143.676000px;}
.y177{bottom:143.685000px;}
.y11d{bottom:144.036000px;}
.y1c4{bottom:144.045000px;}
.y1e3{bottom:145.110000px;}
.y186{bottom:145.116000px;}
.y1c0{bottom:145.125000px;}
.y190{bottom:145.839000px;}
.y5b{bottom:149.076000px;}
.y1b8{bottom:150.150000px;}
.y2c{bottom:151.590000px;}
.y1e8{bottom:155.190000px;}
.y20{bottom:158.835000px;}
.y1ef{bottom:160.245000px;}
.y176{bottom:160.965000px;}
.y1c3{bottom:161.685000px;}
.y155{bottom:162.030000px;}
.y1d7{bottom:162.060000px;}
.y160{bottom:162.075000px;}
.y1e2{bottom:162.420000px;}
.y164{bottom:162.435000px;}
.y194{bottom:162.759000px;}
.y1bf{bottom:162.765000px;}
.y11c{bottom:163.830000px;}
.y147{bottom:164.910000px;}
.y1ee{bottom:167.805000px;}
.y5a{bottom:168.870000px;}
.y95{bottom:169.950000px;}
.yb5{bottom:170.310000px;}
.yf7{bottom:171.030000px;}
.y1f{bottom:178.635000px;}
.y1d6{bottom:179.340000px;}
.y1e1{bottom:179.700000px;}
.y1be{bottom:180.435000px;}
.y18f{bottom:181.149000px;}
.y77{bottom:181.830000px;}
.y11b{bottom:183.630000px;}
.y146{bottom:184.710000px;}
.y1ed{bottom:185.115000px;}
.y2b{bottom:187.590000px;}
.y59{bottom:188.670000px;}
.yf6{bottom:190.830000px;}
.y1ec{bottom:192.675000px;}
.y175{bottom:196.245000px;}
.y1d5{bottom:196.980000px;}
.y1c2{bottom:196.995000px;}
.y1a6{bottom:197.340000px;}
.y15f{bottom:197.355000px;}
.y163{bottom:197.715000px;}
.y193{bottom:198.069000px;}
.y1e{bottom:198.435000px;}
.y217{bottom:201.675000px;}
.y2a{bottom:207.435000px;}
.y94{bottom:207.795000px;}
.yb4{bottom:208.155000px;}
.y58{bottom:208.515000px;}
.y1eb{bottom:210.315000px;}
.y15a{bottom:213.915000px;}
.y1d4{bottom:214.260000px;}
.y1bd{bottom:214.995000px;}
.y1e0{bottom:215.340000px;}
.y18e{bottom:216.429000px;}
.y1ea{bottom:217.875000px;}
.y1d{bottom:218.595000px;}
.y76{bottom:219.675000px;}
.y11a{bottom:221.475000px;}
.y145{bottom:222.555000px;}
.y29{bottom:227.235000px;}
.y93{bottom:227.595000px;}
.yf5{bottom:228.675000px;}
.yb3{bottom:229.395000px;}
.yd7{bottom:230.475000px;}
.y174{bottom:231.555000px;}
.y1d3{bottom:231.900000px;}
.y1bc{bottom:232.275000px;}
.y1a5{bottom:232.620000px;}
.y15e{bottom:232.635000px;}
.y162{bottom:232.995000px;}
.y192{bottom:233.349000px;}
.y18d{bottom:233.709000px;}
.y1c{bottom:238.395000px;}
.y1e9{bottom:238.755000px;}
.y216{bottom:241.275000px;}
.y144{bottom:242.355000px;}
.y57{bottom:246.315000px;}
.y28{bottom:247.035000px;}
.y92{bottom:247.395000px;}
.yf4{bottom:248.475000px;}
.y1d2{bottom:249.180000px;}
.yb2{bottom:249.195000px;}
.y1bb{bottom:249.915000px;}
.y1df{bottom:250.260000px;}
.y18c{bottom:251.349000px;}
.y159{bottom:252.075000px;}
.y75{bottom:257.475000px;}
.y1b{bottom:258.225000px;}
.y171{bottom:258.555000px;}
.y119{bottom:259.275000px;}
.y215{bottom:261.075000px;}
.y56{bottom:266.115000px;}
.y12e{bottom:266.475000px;}
.y27{bottom:266.835000px;}
.y1ba{bottom:267.195000px;}
.y1a4{bottom:267.900000px;}
.yd6{bottom:268.275000px;}
.y18b{bottom:268.629000px;}
.yb1{bottom:270.435000px;}
.y1a{bottom:278.025000px;}
.y118{bottom:279.075000px;}
.y143{bottom:280.155000px;}
.y214{bottom:280.875000px;}
.y1d1{bottom:284.460000px;}
.y154{bottom:284.835000px;}
.y1de{bottom:285.180000px;}
.y91{bottom:285.195000px;}
.y18a{bottom:285.909000px;}
.y55{bottom:285.915000px;}
.y12d{bottom:286.275000px;}
.y26{bottom:286.635000px;}
.yd5{bottom:288.435000px;}
.yb0{bottom:291.675000px;}
.y74{bottom:295.275000px;}
.y170{bottom:296.355000px;}
.y19{bottom:297.825000px;}
.y117{bottom:298.875000px;}
.y142{bottom:300.315000px;}
.y213{bottom:301.035000px;}
.y173{bottom:302.115000px;}
.y1dd{bottom:302.505000px;}
.y1b9{bottom:302.880000px;}
.y1a3{bottom:303.180000px;}
.y189{bottom:303.189000px;}
.y54{bottom:305.715000px;}
.y12c{bottom:306.435000px;}
.y1b6{bottom:307.860000px;}
.yaf{bottom:311.475000px;}
.y18{bottom:317.625000px;}
.y116{bottom:318.675000px;}
.y1d0{bottom:319.785000px;}
.y212{bottom:320.835000px;}
.y16{bottom:321.195000px;}
.y90{bottom:324.465000px;}
.y1b5{bottom:325.185000px;}
.yd4{bottom:326.265000px;}
.y16f{bottom:329.145000px;}
.yae{bottom:332.745000px;}
.y73{bottom:333.105000px;}
.y141{bottom:338.145000px;}
.y115{bottom:338.505000px;}
.y188{bottom:338.874000px;}
.y211{bottom:340.665000px;}
.y1b4{bottom:342.465000px;}
.y53{bottom:343.905000px;}
.yf3{bottom:344.265000px;}
.yd3{bottom:346.065000px;}
.yad{bottom:352.545000px;}
.y1cf{bottom:355.065000px;}
.y17{bottom:355.425000px;}
.y1b3{bottom:359.745000px;}
.y210{bottom:360.465000px;}
.y8f{bottom:362.265000px;}
.y52{bottom:363.705000px;}
.yf2{bottom:364.065000px;}
.yd2{bottom:365.865000px;}
.y72{bottom:370.905000px;}
.yac{bottom:372.345000px;}
.y1a2{bottom:373.785000px;}
.y187{bottom:374.154000px;}
.y140{bottom:375.945000px;}
.y114{bottom:376.305000px;}
.y1b2{bottom:377.025000px;}
.y20f{bottom:380.265000px;}
.y8e{bottom:382.065000px;}
.y51{bottom:383.505000px;}
.yf1{bottom:383.865000px;}
.yd1{bottom:385.665000px;}
.y1ce{bottom:390.705000px;}
.yab{bottom:392.145000px;}
.y1b1{bottom:394.305000px;}
.y20e{bottom:400.065000px;}
.y12b{bottom:401.865000px;}
.y50{bottom:403.305000px;}
.yf0{bottom:403.665000px;}
.yd0{bottom:405.465000px;}
.y71{bottom:408.705000px;}
.y1a1{bottom:409.065000px;}
.y1b0{bottom:411.585000px;}
.yaa{bottom:411.945000px;}
.y13f{bottom:413.745000px;}
.y113{bottom:414.465000px;}
.y8d{bottom:419.865000px;}
.y102{bottom:421.665000px;}
.yef{bottom:423.465000px;}
.ycf{bottom:425.265000px;}
.y1cd{bottom:426.015000px;}
.y70{bottom:428.505000px;}
.y1af{bottom:428.865000px;}
.ya9{bottom:431.745000px;}
.y13e{bottom:433.545000px;}
.y112{bottom:434.265000px;}
.y8c{bottom:439.665000px;}
.y4f{bottom:441.105000px;}
.y12a{bottom:441.465000px;}
.yee{bottom:443.265000px;}
.y1a0{bottom:443.985000px;}
.yce{bottom:445.065000px;}
.y1ae{bottom:445.785000px;}
.y6f{bottom:448.305000px;}
.ya8{bottom:451.950000px;}
.y111{bottom:454.110000px;}
.y20d{bottom:459.510000px;}
.y101{bottom:460.590000px;}
.y1dc{bottom:460.935000px;}
.y4e{bottom:460.950000px;}
.y1cc{bottom:461.295000px;}
.y129{bottom:461.310000px;}
.y153{bottom:461.670000px;}
.y1ad{bottom:463.095000px;}
.ycd{bottom:464.910000px;}
.y220{bottom:466.350000px;}
.y1b7{bottom:467.790000px;}
.y6e{bottom:468.150000px;}
.y1e7{bottom:468.510000px;}
.y16e{bottom:471.030000px;}
.y13d{bottom:471.390000px;}
.ya7{bottom:471.750000px;}
.y110{bottom:473.910000px;}
.y8b{bottom:477.510000px;}
.y1db{bottom:478.575000px;}
.y19f{bottom:479.295000px;}
.y20c{bottom:479.310000px;}
.y1ac{bottom:480.375000px;}
.y4d{bottom:480.750000px;}
.yed{bottom:481.110000px;}
.ycc{bottom:484.710000px;}
.y6d{bottom:488.310000px;}
.ya6{bottom:491.550000px;}
.y10f{bottom:493.710000px;}
.y1cb{bottom:496.215000px;}
.y19e{bottom:496.575000px;}
.y1ab{bottom:497.655000px;}
.y151{bottom:497.670000px;}
.y100{bottom:499.470000px;}
.y4c{bottom:500.550000px;}
.y199{bottom:503.790000px;}
.y21f{bottom:504.150000px;}
.ycb{bottom:504.870000px;}
.y1e6{bottom:506.310000px;}
.y16c{bottom:507.030000px;}
.y13c{bottom:510.270000px;}
.ya5{bottom:511.350000px;}
.y10e{bottom:513.510000px;}
.y19d{bottom:513.855000px;}
.y1da{bottom:514.215000px;}
.y1aa{bottom:514.935000px;}
.y8a{bottom:516.390000px;}
.yec{bottom:518.910000px;}
.y20b{bottom:519.270000px;}
.y21e{bottom:524.310000px;}
.yca{bottom:524.670000px;}
.y6c{bottom:526.110000px;}
.y13b{bottom:530.070000px;}
.ya4{bottom:531.150000px;}
.y19c{bottom:531.495000px;}
.y1a9{bottom:532.215000px;}
.y185{bottom:534.030000px;}
.y4b{bottom:538.350000px;}
.y1c9{bottom:539.070000px;}
.yc9{bottom:544.470000px;}
.y1a8{bottom:549.495000px;}
.y1ca{bottom:549.540000px;}
.y13a{bottom:549.870000px;}
.y10d{bottom:551.310000px;}
.y16b{bottom:552.750000px;}
.y89{bottom:554.190000px;}
.yeb{bottom:557.070000px;}
.y128{bottom:557.790000px;}
.y4a{bottom:558.150000px;}
.y21d{bottom:562.110000px;}
.y6b{bottom:563.910000px;}
.yc8{bottom:564.270000px;}
.y19b{bottom:566.775000px;}
.ya3{bottom:568.950000px;}
.y184{bottom:570.030000px;}
.yea{bottom:576.900000px;}
.y127{bottom:577.980000px;}
.y49{bottom:578.340000px;}
.yc7{bottom:584.100000px;}
.y139{bottom:587.700000px;}
.y169{bottom:588.780000px;}
.y10c{bottom:589.140000px;}
.y88{bottom:592.020000px;}
.ye9{bottom:596.700000px;}
.y126{bottom:597.780000px;}
.yff{bottom:598.140000px;}
.y21c{bottom:599.940000px;}
.y6a{bottom:601.740000px;}
.y19a{bottom:602.100000px;}
.yc6{bottom:603.900000px;}
.y14f{bottom:604.980000px;}
.y17e{bottom:606.060000px;}
.ya2{bottom:606.780000px;}
.y10b{bottom:608.940000px;}
.y20a{bottom:614.700000px;}
.y48{bottom:616.140000px;}
.y125{bottom:617.580000px;}
.yfe{bottom:617.940000px;}
.y69{bottom:621.540000px;}
.yc5{bottom:623.700000px;}
.y138{bottom:626.940000px;}
.y10a{bottom:628.740000px;}
.y87{bottom:629.820000px;}
.ye8{bottom:634.500000px;}
.y124{bottom:637.380000px;}
.y21b{bottom:637.740000px;}
.y14e{bottom:640.980000px;}
.ya1{bottom:644.580000px;}
.y137{bottom:646.740000px;}
.y109{bottom:648.900000px;}
.y47{bottom:653.940000px;}
.ye7{bottom:654.300000px;}
.yfd{bottom:655.740000px;}
.y68{bottom:659.340000px;}
.yc4{bottom:661.500000px;}
.ya0{bottom:664.380000px;}
.y136{bottom:666.540000px;}
.y108{bottom:668.700000px;}
.y86{bottom:669.060000px;}
.y209{bottom:672.300000px;}
.y46{bottom:673.740000px;}
.y123{bottom:675.180000px;}
.y21a{bottom:675.540000px;}
.y14c{bottom:676.980000px;}
.y135{bottom:686.340000px;}
.y85{bottom:688.860000px;}
.ye6{bottom:692.100000px;}
.y45{bottom:693.540000px;}
.y67{bottom:697.140000px;}
.yc3{bottom:699.300000px;}
.y9f{bottom:702.210000px;}
.y107{bottom:706.530000px;}
.y84{bottom:708.690000px;}
.y208{bottom:710.130000px;}
.ye5{bottom:711.930000px;}
.y44{bottom:713.370000px;}
.y122{bottom:714.090000px;}
.y66{bottom:716.970000px;}
.yc2{bottom:719.130000px;}
.y134{bottom:724.170000px;}
.y172{bottom:728.130000px;}
.y83{bottom:728.490000px;}
.ye4{bottom:731.730000px;}
.y43{bottom:733.170000px;}
.y121{bottom:733.890000px;}
.y15{bottom:734.610000px;}
.y14b{bottom:736.770000px;}
.y9e{bottom:741.450000px;}
.y106{bottom:744.330000px;}
.y207{bottom:747.930000px;}
.y82{bottom:749.370000px;}
.y42{bottom:752.970000px;}
.y120{bottom:753.690000px;}
.y65{bottom:754.770000px;}
.yc1{bottom:757.290000px;}
.y133{bottom:763.050000px;}
.y168{bottom:765.570000px;}
.y206{bottom:767.730000px;}
.y81{bottom:769.170000px;}
.ye3{bottom:769.530000px;}
.y219{bottom:770.970000px;}
.y14{bottom:772.770000px;}
.y11f{bottom:773.490000px;}
.y64{bottom:774.570000px;}
.yc0{bottom:777.090000px;}
.y9d{bottom:779.250000px;}
.y105{bottom:782.130000px;}
.y132{bottom:782.850000px;}
.y205{bottom:787.890000px;}
.y80{bottom:788.970000px;}
.ye2{bottom:789.330000px;}
.y41{bottom:790.770000px;}
.y15d{bottom:801.570000px;}
.y204{bottom:807.690000px;}
.y7f{bottom:808.770000px;}
.ye1{bottom:809.490000px;}
.y12{bottom:810.570000px;}
.y11e{bottom:811.290000px;}
.y63{bottom:812.370000px;}
.ybf{bottom:814.890000px;}
.y13{bottom:816.690000px;}
.y9c{bottom:817.050000px;}
.y104{bottom:819.930000px;}
.y131{bottom:820.650000px;}
.y203{bottom:827.535000px;}
.y40{bottom:828.615000px;}
.yfc{bottom:830.415000px;}
.y62{bottom:832.575000px;}
.ye0{bottom:847.335000px;}
.y11{bottom:848.415000px;}
.yfb{bottom:850.575000px;}
.y61{bottom:852.375000px;}
.ybe{bottom:853.815000px;}
.y9b{bottom:854.895000px;}
.y103{bottom:857.775000px;}
.y130{bottom:858.495000px;}
.ydf{bottom:867.135000px;}
.y3f{bottom:868.575000px;}
.yfa{bottom:870.375000px;}
.y14a{bottom:872.175000px;}
.y10{bottom:886.215000px;}
.yde{bottom:886.935000px;}
.y3e{bottom:888.375000px;}
.y60{bottom:890.175000px;}
.ybd{bottom:891.615000px;}
.y12f{bottom:893.415000px;}
.y9a{bottom:893.775000px;}
.yf{bottom:906.015000px;}
.ydd{bottom:906.735000px;}
.y3d{bottom:908.175000px;}
.y149{bottom:909.975000px;}
.y3c{bottom:927.975000px;}
.ybc{bottom:929.415000px;}
.y148{bottom:929.775000px;}
.y99{bottom:931.575000px;}
.y9{bottom:941.295000px;}
.ydc{bottom:944.535000px;}
.yf9{bottom:945.975000px;}
.y5f{bottom:947.775000px;}
.y8{bottom:958.605000px;}
.y202{bottom:964.365000px;}
.y3b{bottom:965.805000px;}
.ybb{bottom:967.245000px;}
.y5e{bottom:967.605000px;}
.y98{bottom:969.405000px;}
.y7{bottom:972.645000px;}
.ydb{bottom:982.365000px;}
.y201{bottom:984.165000px;}
.y3a{bottom:985.605000px;}
.y7e{bottom:987.405000px;}
.y97{bottom:989.205000px;}
.y39{bottom:1005.405000px;}
.yba{bottom:1006.125000px;}
.y7d{bottom:1007.205000px;}
.yda{bottom:1020.165000px;}
.y200{bottom:1022.325000px;}
.y38{bottom:1025.205000px;}
.y7c{bottom:1027.005000px;}
.y6{bottom:1027.365000px;}
.yd9{bottom:1041.045000px;}
.y1ff{bottom:1042.125000px;}
.yb9{bottom:1043.925000px;}
.y37{bottom:1045.005000px;}
.y7b{bottom:1046.805000px;}
.y5{bottom:1052.205000px;}
.yd8{bottom:1061.925000px;}
.yb8{bottom:1063.725000px;}
.y36{bottom:1064.805000px;}
.y7a{bottom:1066.965000px;}
.y4{bottom:1072.725000px;}
.y1fe{bottom:1079.970000px;}
.y5d{bottom:1082.850000px;}
.yb7{bottom:1083.930000px;}
.y15c{bottom:1084.650000px;}
.y35{bottom:1085.010000px;}
.y3{bottom:1094.010000px;}
.y5c{bottom:1103.010000px;}
.y1c8{bottom:1103.370000px;}
.yb6{bottom:1103.730000px;}
.y79{bottom:1104.810000px;}
.y1fb{bottom:1112.730000px;}
.y2{bottom:1114.530000px;}
.y15b{bottom:1120.650000px;}
.y34{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y96{bottom:1142.250000px;}
.y33{bottom:1142.610000px;}
.y32{bottom:1166.370000px;}
.y31{bottom:1180.410000px;}
.y30{bottom:1201.290000px;}
.y2f{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h9{height:34.532578px;}
.h12{height:35.280000px;}
.h11{height:35.316000px;}
.hb{height:38.671172px;}
.h7{height:39.570469px;}
.h5{height:39.997969px;}
.h25{height:43.200000px;}
.h4{height:43.735781px;}
.hf{height:43.824375px;}
.hd{height:44.031094px;}
.h10{height:44.208281px;}
.h1d{height:44.798906px;}
.h17{height:45.000000px;}
.he{height:48.224531px;}
.h1f{height:52.560000px;}
.h2{height:53.717344px;}
.hc{height:60.155156px;}
.h3{height:63.949219px;}
.h13{height:70.560000px;}
.h22{height:71.194219px;}
.h24{height:71.314219px;}
.h23{height:73.975781px;}
.h1a{height:121.356000px;}
.h18{height:141.156000px;}
.h16{height:176.070000px;}
.h14{height:176.115000px;}
.h21{height:252.795000px;}
.h15{height:282.345000px;}
.h19{height:316.155000px;}
.h1e{height:316.905000px;}
.ha{height:387.510000px;}
.h1b{height:388.185000px;}
.h20{height:563.580000px;}
.h1c{height:616.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:138.636000px;}
.wa{width:161.715000px;}
.wc{width:191.595000px;}
.w9{width:249.585000px;}
.w8{width:339.270000px;}
.wd{width:339.630000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w11{width:371.310000px;}
.w12{width:382.140000px;}
.we{width:414.180000px;}
.w6{width:679.965000px;}
.w10{width:754.170000px;}
.wf{width:754.530000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2a{left:7.560000px;}
.x9{left:8.640000px;}
.x36{left:10.080000px;}
.x31{left:12.600000px;}
.x37{left:20.880000px;}
.x38{left:33.150000px;}
.x34{left:34.590000px;}
.x32{left:39.600000px;}
.x39{left:42.150000px;}
.x35{left:61.590000px;}
.x30{left:65.199000px;}
.x29{left:74.916000px;}
.x3a{left:99.759000px;}
.x2e{left:104.436000px;}
.x7{left:106.235987px;}
.x12{left:111.275987px;}
.x3d{left:117.035987px;}
.x3b{left:126.789000px;}
.x15{left:133.271987px;}
.x21{left:138.311987px;}
.x1d{left:142.991987px;}
.x3e{left:144.071987px;}
.xb{left:146.231987px;}
.x1a{left:148.751987px;}
.x24{left:150.914987px;}
.x23{left:155.234987px;}
.x22{left:159.194987px;}
.x16{left:160.274987px;}
.x19{left:164.594987px;}
.x18{left:168.554987px;}
.x1b{left:169.994987px;}
.x17{left:172.874987px;}
.x1e{left:176.474987px;}
.x13{left:180.794987px;}
.x28{left:186.194987px;}
.x20{left:187.274987px;}
.x26{left:191.234987px;}
.x3c{left:193.389000px;}
.x1f{left:202.034987px;}
.x25{left:214.274987px;}
.x2{left:254.264987px;}
.x1c{left:255.344987px;}
.x6{left:274.064987px;}
.xc{left:295.304987px;}
.x10{left:301.064987px;}
.xa{left:304.350000px;}
.x11{left:322.349987px;}
.x2b{left:325.230000px;}
.xd{left:334.229987px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x2f{left:444.780000px;}
.x8{left:446.579987px;}
.x14{left:447.660000px;}
.x33{left:478.980000px;}
.x2c{left:487.650000px;}
.xe{left:553.529973px;}
.xf{left:558.569987px;}
.x2d{left:627.015000px;}
.x27{left:730.004987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:26.880000pt;}
.v2{vertical-align:32.000000pt;}
.ls2d{letter-spacing:-1.264000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsd{letter-spacing:-0.432533pt;}
.ls5{letter-spacing:-0.414933pt;}
.ls1d{letter-spacing:-0.342933pt;}
.ls2a{letter-spacing:-0.222933pt;}
.ls38{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls30{letter-spacing:0.066667pt;}
.ls35{letter-spacing:0.189440pt;}
.ls40{letter-spacing:0.267520pt;}
.ls28{letter-spacing:0.402133pt;}
.ls13{letter-spacing:0.414933pt;}
.ls34{letter-spacing:0.432640pt;}
.ls0{letter-spacing:0.442880pt;}
.ls32{letter-spacing:0.450560pt;}
.lse{letter-spacing:0.450667pt;}
.ls29{letter-spacing:0.455467pt;}
.ls7{letter-spacing:0.640000pt;}
.ls39{letter-spacing:0.848000pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.728000pt;}
.ls31{letter-spacing:2.577920pt;}
.ls44{letter-spacing:3.200000pt;}
.ls36{letter-spacing:6.814720pt;}
.ls2f{letter-spacing:11.934720pt;}
.lsc{letter-spacing:12.160000pt;}
.ls47{letter-spacing:14.494720pt;}
.ls10{letter-spacing:15.774720pt;}
.ls3c{letter-spacing:17.054720pt;}
.ls23{letter-spacing:20.894720pt;}
.ls2e{letter-spacing:21.022720pt;}
.ls12{letter-spacing:22.174720pt;}
.ls26{letter-spacing:24.745387pt;}
.ls27{letter-spacing:27.305387pt;}
.ls19{letter-spacing:32.414720pt;}
.ls18{letter-spacing:33.694720pt;}
.ls8{letter-spacing:33.705387pt;}
.ls41{letter-spacing:34.974720pt;}
.ls17{letter-spacing:36.254720pt;}
.lsb{letter-spacing:36.265387pt;}
.ls15{letter-spacing:37.545387pt;}
.ls33{letter-spacing:38.814720pt;}
.ls3f{letter-spacing:38.921387pt;}
.ls45{letter-spacing:38.942720pt;}
.lsa{letter-spacing:40.105387pt;}
.ls2c{letter-spacing:41.374720pt;}
.ls11{letter-spacing:41.385387pt;}
.ls46{letter-spacing:41.502720pt;}
.ls1b{letter-spacing:43.945387pt;}
.ls42{letter-spacing:44.041387pt;}
.lsf{letter-spacing:45.225387pt;}
.ls1e{letter-spacing:49.054720pt;}
.ls20{letter-spacing:49.065387pt;}
.ls43{letter-spacing:52.894720pt;}
.ls16{letter-spacing:54.174720pt;}
.ls21{letter-spacing:54.302720pt;}
.ls2b{letter-spacing:56.734720pt;}
.ls22{letter-spacing:56.745387pt;}
.ls25{letter-spacing:59.422720pt;}
.ls1f{letter-spacing:60.442027pt;}
.ls1a{letter-spacing:60.574720pt;}
.ls24{letter-spacing:93.993387pt;}
.ls3d{letter-spacing:101.545387pt;}
.ls3e{letter-spacing:104.105387pt;}
.ls3b{letter-spacing:122.025387pt;}
.ls9{letter-spacing:129.833387pt;}
.ls14{letter-spacing:142.633387pt;}
.ws5{word-spacing:-53.760000pt;}
.ws11{word-spacing:-15.168000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.288000pt;}
.ws6{word-spacing:-13.890667pt;}
.ws7{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.422080pt;}
.ws2{word-spacing:-13.025067pt;}
.ws4{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.989333pt;}
.ws0{word-spacing:-11.717333pt;}
.ws14{word-spacing:-8.640000pt;}
.wse{word-spacing:-0.509227pt;}
.wsd{word-spacing:-0.455893pt;}
.ws10{word-spacing:-0.120427pt;}
.ws8{word-spacing:-0.053760pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:0.169173pt;}
.wsa{word-spacing:0.289173pt;}
._e{margin-left:-3.517440pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._d{width:3.246507pt;}
._10{width:4.247040pt;}
._11{width:5.631573pt;}
._13{width:6.799787pt;}
._14{width:7.744427pt;}
._18{width:8.644693pt;}
._17{width:10.236587pt;}
._16{width:11.307520pt;}
._15{width:12.199893pt;}
._12{width:14.338560pt;}
._a{width:15.429120pt;}
._b{width:17.049600pt;}
._c{width:18.001920pt;}
._9{width:19.453440pt;}
._7{width:20.536320pt;}
._8{width:21.834240pt;}
._1c{width:23.662080pt;}
._1b{width:25.113600pt;}
._1a{width:26.127360pt;}
._19{width:30.128213pt;}
._f{width:31.050667pt;}
._1d{width:32.668587pt;}
._25{width:34.191360pt;}
._26{width:35.550720pt;}
._27{width:40.837547pt;}
._28{width:41.819307pt;}
._21{width:44.587947pt;}
._1f{width:146.598400pt;}
._23{width:159.909973pt;}
._22{width:174.826667pt;}
._20{width:176.006400pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._1e{width:754.965333pt;}
._24{width:1404.160000pt;}
._3{width:1414.378667pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y1fa{bottom:6.720000pt;}
.y1fd{bottom:16.000000pt;}
.y198{bottom:18.554667pt;}
.y14d{bottom:18.880000pt;}
.y150{bottom:18.906667pt;}
.y25{bottom:21.146667pt;}
.y1f9{bottom:22.400000pt;}
.y1fc{bottom:22.720000pt;}
.y16d{bottom:27.520000pt;}
.y1f8{bottom:29.120000pt;}
.y183{bottom:34.240000pt;}
.ye{bottom:38.720000pt;}
.y1f7{bottom:47.400000pt;}
.y182{bottom:49.600000pt;}
.y1a7{bottom:49.920000pt;}
.y158{bottom:49.946667pt;}
.y1c7{bottom:49.960000pt;}
.y152{bottom:50.240000pt;}
.y1d9{bottom:50.266667pt;}
.y197{bottom:50.274667pt;}
.y167{bottom:50.280000pt;}
.y24{bottom:54.746667pt;}
.yc{bottom:60.800000pt;}
.y1f6{bottom:62.760000pt;}
.y181{bottom:64.960000pt;}
.y1c6{bottom:65.000000pt;}
.y17a{bottom:65.600000pt;}
.y1d8{bottom:65.946667pt;}
.y23{bottom:72.346667pt;}
.y1f5{bottom:75.240000pt;}
.y180{bottom:80.320000pt;}
.y17d{bottom:80.960000pt;}
.y157{bottom:81.306667pt;}
.y16a{bottom:81.600000pt;}
.y196{bottom:81.634667pt;}
.y166{bottom:81.640000pt;}
.y1f4{bottom:81.960000pt;}
.ya{bottom:84.192000pt;}
.y22{bottom:89.946667pt;}
.y17f{bottom:95.386667pt;}
.y17c{bottom:96.360000pt;}
.y1c5{bottom:96.680000pt;}
.y179{bottom:97.000000pt;}
.y1f3{bottom:97.640000pt;}
.y191{bottom:97.954667pt;}
.y1e5{bottom:98.266667pt;}
.y1f2{bottom:104.360000pt;}
.y21{bottom:107.546667pt;}
.y17b{bottom:111.720000pt;}
.y178{bottom:112.360000pt;}
.y156{bottom:112.666667pt;}
.y161{bottom:112.680000pt;}
.y165{bottom:113.000000pt;}
.y195{bottom:113.314667pt;}
.y1e4{bottom:113.626667pt;}
.y1c1{bottom:113.640000pt;}
.yf8{bottom:118.432000pt;}
.y2e{bottom:119.072000pt;}
.y1f1{bottom:120.040000pt;}
.y2d{bottom:123.872000pt;}
.y218{bottom:126.432000pt;}
.y1f0{bottom:126.760000pt;}
.y78{bottom:127.712000pt;}
.y177{bottom:127.720000pt;}
.y11d{bottom:128.032000pt;}
.y1c4{bottom:128.040000pt;}
.y1e3{bottom:128.986667pt;}
.y186{bottom:128.992000pt;}
.y1c0{bottom:129.000000pt;}
.y190{bottom:129.634667pt;}
.y5b{bottom:132.512000pt;}
.y1b8{bottom:133.466667pt;}
.y2c{bottom:134.746667pt;}
.y1e8{bottom:137.946667pt;}
.y20{bottom:141.186667pt;}
.y1ef{bottom:142.440000pt;}
.y176{bottom:143.080000pt;}
.y1c3{bottom:143.720000pt;}
.y155{bottom:144.026667pt;}
.y1d7{bottom:144.053333pt;}
.y160{bottom:144.066667pt;}
.y1e2{bottom:144.373333pt;}
.y164{bottom:144.386667pt;}
.y194{bottom:144.674667pt;}
.y1bf{bottom:144.680000pt;}
.y11c{bottom:145.626667pt;}
.y147{bottom:146.586667pt;}
.y1ee{bottom:149.160000pt;}
.y5a{bottom:150.106667pt;}
.y95{bottom:151.066667pt;}
.yb5{bottom:151.386667pt;}
.yf7{bottom:152.026667pt;}
.y1f{bottom:158.786667pt;}
.y1d6{bottom:159.413333pt;}
.y1e1{bottom:159.733333pt;}
.y1be{bottom:160.386667pt;}
.y18f{bottom:161.021333pt;}
.y77{bottom:161.626667pt;}
.y11b{bottom:163.226667pt;}
.y146{bottom:164.186667pt;}
.y1ed{bottom:164.546667pt;}
.y2b{bottom:166.746667pt;}
.y59{bottom:167.706667pt;}
.yf6{bottom:169.626667pt;}
.y1ec{bottom:171.266667pt;}
.y175{bottom:174.440000pt;}
.y1d5{bottom:175.093333pt;}
.y1c2{bottom:175.106667pt;}
.y1a6{bottom:175.413333pt;}
.y15f{bottom:175.426667pt;}
.y163{bottom:175.746667pt;}
.y193{bottom:176.061333pt;}
.y1e{bottom:176.386667pt;}
.y217{bottom:179.266667pt;}
.y2a{bottom:184.386667pt;}
.y94{bottom:184.706667pt;}
.yb4{bottom:185.026667pt;}
.y58{bottom:185.346667pt;}
.y1eb{bottom:186.946667pt;}
.y15a{bottom:190.146667pt;}
.y1d4{bottom:190.453333pt;}
.y1bd{bottom:191.106667pt;}
.y1e0{bottom:191.413333pt;}
.y18e{bottom:192.381333pt;}
.y1ea{bottom:193.666667pt;}
.y1d{bottom:194.306667pt;}
.y76{bottom:195.266667pt;}
.y11a{bottom:196.866667pt;}
.y145{bottom:197.826667pt;}
.y29{bottom:201.986667pt;}
.y93{bottom:202.306667pt;}
.yf5{bottom:203.266667pt;}
.yb3{bottom:203.906667pt;}
.yd7{bottom:204.866667pt;}
.y174{bottom:205.826667pt;}
.y1d3{bottom:206.133333pt;}
.y1bc{bottom:206.466667pt;}
.y1a5{bottom:206.773333pt;}
.y15e{bottom:206.786667pt;}
.y162{bottom:207.106667pt;}
.y192{bottom:207.421333pt;}
.y18d{bottom:207.741333pt;}
.y1c{bottom:211.906667pt;}
.y1e9{bottom:212.226667pt;}
.y216{bottom:214.466667pt;}
.y144{bottom:215.426667pt;}
.y57{bottom:218.946667pt;}
.y28{bottom:219.586667pt;}
.y92{bottom:219.906667pt;}
.yf4{bottom:220.866667pt;}
.y1d2{bottom:221.493333pt;}
.yb2{bottom:221.506667pt;}
.y1bb{bottom:222.146667pt;}
.y1df{bottom:222.453333pt;}
.y18c{bottom:223.421333pt;}
.y159{bottom:224.066667pt;}
.y75{bottom:228.866667pt;}
.y1b{bottom:229.533333pt;}
.y171{bottom:229.826667pt;}
.y119{bottom:230.466667pt;}
.y215{bottom:232.066667pt;}
.y56{bottom:236.546667pt;}
.y12e{bottom:236.866667pt;}
.y27{bottom:237.186667pt;}
.y1ba{bottom:237.506667pt;}
.y1a4{bottom:238.133333pt;}
.yd6{bottom:238.466667pt;}
.y18b{bottom:238.781333pt;}
.yb1{bottom:240.386667pt;}
.y1a{bottom:247.133333pt;}
.y118{bottom:248.066667pt;}
.y143{bottom:249.026667pt;}
.y214{bottom:249.666667pt;}
.y1d1{bottom:252.853333pt;}
.y154{bottom:253.186667pt;}
.y1de{bottom:253.493333pt;}
.y91{bottom:253.506667pt;}
.y18a{bottom:254.141333pt;}
.y55{bottom:254.146667pt;}
.y12d{bottom:254.466667pt;}
.y26{bottom:254.786667pt;}
.yd5{bottom:256.386667pt;}
.yb0{bottom:259.266667pt;}
.y74{bottom:262.466667pt;}
.y170{bottom:263.426667pt;}
.y19{bottom:264.733333pt;}
.y117{bottom:265.666667pt;}
.y142{bottom:266.946667pt;}
.y213{bottom:267.586667pt;}
.y173{bottom:268.546667pt;}
.y1dd{bottom:268.893333pt;}
.y1b9{bottom:269.226667pt;}
.y1a3{bottom:269.493333pt;}
.y189{bottom:269.501333pt;}
.y54{bottom:271.746667pt;}
.y12c{bottom:272.386667pt;}
.y1b6{bottom:273.653333pt;}
.yaf{bottom:276.866667pt;}
.y18{bottom:282.333333pt;}
.y116{bottom:283.266667pt;}
.y1d0{bottom:284.253333pt;}
.y212{bottom:285.186667pt;}
.y16{bottom:285.506667pt;}
.y90{bottom:288.413333pt;}
.y1b5{bottom:289.053333pt;}
.yd4{bottom:290.013333pt;}
.y16f{bottom:292.573333pt;}
.yae{bottom:295.773333pt;}
.y73{bottom:296.093333pt;}
.y141{bottom:300.573333pt;}
.y115{bottom:300.893333pt;}
.y188{bottom:301.221333pt;}
.y211{bottom:302.813333pt;}
.y1b4{bottom:304.413333pt;}
.y53{bottom:305.693333pt;}
.yf3{bottom:306.013333pt;}
.yd3{bottom:307.613333pt;}
.yad{bottom:313.373333pt;}
.y1cf{bottom:315.613333pt;}
.y17{bottom:315.933333pt;}
.y1b3{bottom:319.773333pt;}
.y210{bottom:320.413333pt;}
.y8f{bottom:322.013333pt;}
.y52{bottom:323.293333pt;}
.yf2{bottom:323.613333pt;}
.yd2{bottom:325.213333pt;}
.y72{bottom:329.693333pt;}
.yac{bottom:330.973333pt;}
.y1a2{bottom:332.253333pt;}
.y187{bottom:332.581333pt;}
.y140{bottom:334.173333pt;}
.y114{bottom:334.493333pt;}
.y1b2{bottom:335.133333pt;}
.y20f{bottom:338.013333pt;}
.y8e{bottom:339.613333pt;}
.y51{bottom:340.893333pt;}
.yf1{bottom:341.213333pt;}
.yd1{bottom:342.813333pt;}
.y1ce{bottom:347.293333pt;}
.yab{bottom:348.573333pt;}
.y1b1{bottom:350.493333pt;}
.y20e{bottom:355.613333pt;}
.y12b{bottom:357.213333pt;}
.y50{bottom:358.493333pt;}
.yf0{bottom:358.813333pt;}
.yd0{bottom:360.413333pt;}
.y71{bottom:363.293333pt;}
.y1a1{bottom:363.613333pt;}
.y1b0{bottom:365.853333pt;}
.yaa{bottom:366.173333pt;}
.y13f{bottom:367.773333pt;}
.y113{bottom:368.413333pt;}
.y8d{bottom:373.213333pt;}
.y102{bottom:374.813333pt;}
.yef{bottom:376.413333pt;}
.ycf{bottom:378.013333pt;}
.y1cd{bottom:378.680000pt;}
.y70{bottom:380.893333pt;}
.y1af{bottom:381.213333pt;}
.ya9{bottom:383.773333pt;}
.y13e{bottom:385.373333pt;}
.y112{bottom:386.013333pt;}
.y8c{bottom:390.813333pt;}
.y4f{bottom:392.093333pt;}
.y12a{bottom:392.413333pt;}
.yee{bottom:394.013333pt;}
.y1a0{bottom:394.653333pt;}
.yce{bottom:395.613333pt;}
.y1ae{bottom:396.253333pt;}
.y6f{bottom:398.493333pt;}
.ya8{bottom:401.733333pt;}
.y111{bottom:403.653333pt;}
.y20d{bottom:408.453333pt;}
.y101{bottom:409.413333pt;}
.y1dc{bottom:409.720000pt;}
.y4e{bottom:409.733333pt;}
.y1cc{bottom:410.040000pt;}
.y129{bottom:410.053333pt;}
.y153{bottom:410.373333pt;}
.y1ad{bottom:411.640000pt;}
.ycd{bottom:413.253333pt;}
.y220{bottom:414.533333pt;}
.y1b7{bottom:415.813333pt;}
.y6e{bottom:416.133333pt;}
.y1e7{bottom:416.453333pt;}
.y16e{bottom:418.693333pt;}
.y13d{bottom:419.013333pt;}
.ya7{bottom:419.333333pt;}
.y110{bottom:421.253333pt;}
.y8b{bottom:424.453333pt;}
.y1db{bottom:425.400000pt;}
.y19f{bottom:426.040000pt;}
.y20c{bottom:426.053333pt;}
.y1ac{bottom:427.000000pt;}
.y4d{bottom:427.333333pt;}
.yed{bottom:427.653333pt;}
.ycc{bottom:430.853333pt;}
.y6d{bottom:434.053333pt;}
.ya6{bottom:436.933333pt;}
.y10f{bottom:438.853333pt;}
.y1cb{bottom:441.080000pt;}
.y19e{bottom:441.400000pt;}
.y1ab{bottom:442.360000pt;}
.y151{bottom:442.373333pt;}
.y100{bottom:443.973333pt;}
.y4c{bottom:444.933333pt;}
.y199{bottom:447.813333pt;}
.y21f{bottom:448.133333pt;}
.ycb{bottom:448.773333pt;}
.y1e6{bottom:450.053333pt;}
.y16c{bottom:450.693333pt;}
.y13c{bottom:453.573333pt;}
.ya5{bottom:454.533333pt;}
.y10e{bottom:456.453333pt;}
.y19d{bottom:456.760000pt;}
.y1da{bottom:457.080000pt;}
.y1aa{bottom:457.720000pt;}
.y8a{bottom:459.013333pt;}
.yec{bottom:461.253333pt;}
.y20b{bottom:461.573333pt;}
.y21e{bottom:466.053333pt;}
.yca{bottom:466.373333pt;}
.y6c{bottom:467.653333pt;}
.y13b{bottom:471.173333pt;}
.ya4{bottom:472.133333pt;}
.y19c{bottom:472.440000pt;}
.y1a9{bottom:473.080000pt;}
.y185{bottom:474.693333pt;}
.y4b{bottom:478.533333pt;}
.y1c9{bottom:479.173333pt;}
.yc9{bottom:483.973333pt;}
.y1a8{bottom:488.440000pt;}
.y1ca{bottom:488.480000pt;}
.y13a{bottom:488.773333pt;}
.y10d{bottom:490.053333pt;}
.y16b{bottom:491.333333pt;}
.y89{bottom:492.613333pt;}
.yeb{bottom:495.173333pt;}
.y128{bottom:495.813333pt;}
.y4a{bottom:496.133333pt;}
.y21d{bottom:499.653333pt;}
.y6b{bottom:501.253333pt;}
.yc8{bottom:501.573333pt;}
.y19b{bottom:503.800000pt;}
.ya3{bottom:505.733333pt;}
.y184{bottom:506.693333pt;}
.yea{bottom:512.800000pt;}
.y127{bottom:513.760000pt;}
.y49{bottom:514.080000pt;}
.yc7{bottom:519.200000pt;}
.y139{bottom:522.400000pt;}
.y169{bottom:523.360000pt;}
.y10c{bottom:523.680000pt;}
.y88{bottom:526.240000pt;}
.ye9{bottom:530.400000pt;}
.y126{bottom:531.360000pt;}
.yff{bottom:531.680000pt;}
.y21c{bottom:533.280000pt;}
.y6a{bottom:534.880000pt;}
.y19a{bottom:535.200000pt;}
.yc6{bottom:536.800000pt;}
.y14f{bottom:537.760000pt;}
.y17e{bottom:538.720000pt;}
.ya2{bottom:539.360000pt;}
.y10b{bottom:541.280000pt;}
.y20a{bottom:546.400000pt;}
.y48{bottom:547.680000pt;}
.y125{bottom:548.960000pt;}
.yfe{bottom:549.280000pt;}
.y69{bottom:552.480000pt;}
.yc5{bottom:554.400000pt;}
.y138{bottom:557.280000pt;}
.y10a{bottom:558.880000pt;}
.y87{bottom:559.840000pt;}
.ye8{bottom:564.000000pt;}
.y124{bottom:566.560000pt;}
.y21b{bottom:566.880000pt;}
.y14e{bottom:569.760000pt;}
.ya1{bottom:572.960000pt;}
.y137{bottom:574.880000pt;}
.y109{bottom:576.800000pt;}
.y47{bottom:581.280000pt;}
.ye7{bottom:581.600000pt;}
.yfd{bottom:582.880000pt;}
.y68{bottom:586.080000pt;}
.yc4{bottom:588.000000pt;}
.ya0{bottom:590.560000pt;}
.y136{bottom:592.480000pt;}
.y108{bottom:594.400000pt;}
.y86{bottom:594.720000pt;}
.y209{bottom:597.600000pt;}
.y46{bottom:598.880000pt;}
.y123{bottom:600.160000pt;}
.y21a{bottom:600.480000pt;}
.y14c{bottom:601.760000pt;}
.y135{bottom:610.080000pt;}
.y85{bottom:612.320000pt;}
.ye6{bottom:615.200000pt;}
.y45{bottom:616.480000pt;}
.y67{bottom:619.680000pt;}
.yc3{bottom:621.600000pt;}
.y9f{bottom:624.186667pt;}
.y107{bottom:628.026667pt;}
.y84{bottom:629.946667pt;}
.y208{bottom:631.226667pt;}
.ye5{bottom:632.826667pt;}
.y44{bottom:634.106667pt;}
.y122{bottom:634.746667pt;}
.y66{bottom:637.306667pt;}
.yc2{bottom:639.226667pt;}
.y134{bottom:643.706667pt;}
.y172{bottom:647.226667pt;}
.y83{bottom:647.546667pt;}
.ye4{bottom:650.426667pt;}
.y43{bottom:651.706667pt;}
.y121{bottom:652.346667pt;}
.y15{bottom:652.986667pt;}
.y14b{bottom:654.906667pt;}
.y9e{bottom:659.066667pt;}
.y106{bottom:661.626667pt;}
.y207{bottom:664.826667pt;}
.y82{bottom:666.106667pt;}
.y42{bottom:669.306667pt;}
.y120{bottom:669.946667pt;}
.y65{bottom:670.906667pt;}
.yc1{bottom:673.146667pt;}
.y133{bottom:678.266667pt;}
.y168{bottom:680.506667pt;}
.y206{bottom:682.426667pt;}
.y81{bottom:683.706667pt;}
.ye3{bottom:684.026667pt;}
.y219{bottom:685.306667pt;}
.y14{bottom:686.906667pt;}
.y11f{bottom:687.546667pt;}
.y64{bottom:688.506667pt;}
.yc0{bottom:690.746667pt;}
.y9d{bottom:692.666667pt;}
.y105{bottom:695.226667pt;}
.y132{bottom:695.866667pt;}
.y205{bottom:700.346667pt;}
.y80{bottom:701.306667pt;}
.ye2{bottom:701.626667pt;}
.y41{bottom:702.906667pt;}
.y15d{bottom:712.506667pt;}
.y204{bottom:717.946667pt;}
.y7f{bottom:718.906667pt;}
.ye1{bottom:719.546667pt;}
.y12{bottom:720.506667pt;}
.y11e{bottom:721.146667pt;}
.y63{bottom:722.106667pt;}
.ybf{bottom:724.346667pt;}
.y13{bottom:725.946667pt;}
.y9c{bottom:726.266667pt;}
.y104{bottom:728.826667pt;}
.y131{bottom:729.466667pt;}
.y203{bottom:735.586667pt;}
.y40{bottom:736.546667pt;}
.yfc{bottom:738.146667pt;}
.y62{bottom:740.066667pt;}
.ye0{bottom:753.186667pt;}
.y11{bottom:754.146667pt;}
.yfb{bottom:756.066667pt;}
.y61{bottom:757.666667pt;}
.ybe{bottom:758.946667pt;}
.y9b{bottom:759.906667pt;}
.y103{bottom:762.466667pt;}
.y130{bottom:763.106667pt;}
.ydf{bottom:770.786667pt;}
.y3f{bottom:772.066667pt;}
.yfa{bottom:773.666667pt;}
.y14a{bottom:775.266667pt;}
.y10{bottom:787.746667pt;}
.yde{bottom:788.386667pt;}
.y3e{bottom:789.666667pt;}
.y60{bottom:791.266667pt;}
.ybd{bottom:792.546667pt;}
.y12f{bottom:794.146667pt;}
.y9a{bottom:794.466667pt;}
.yf{bottom:805.346667pt;}
.ydd{bottom:805.986667pt;}
.y3d{bottom:807.266667pt;}
.y149{bottom:808.866667pt;}
.y3c{bottom:824.866667pt;}
.ybc{bottom:826.146667pt;}
.y148{bottom:826.466667pt;}
.y99{bottom:828.066667pt;}
.y9{bottom:836.706667pt;}
.ydc{bottom:839.586667pt;}
.yf9{bottom:840.866667pt;}
.y5f{bottom:842.466667pt;}
.y8{bottom:852.093333pt;}
.y202{bottom:857.213333pt;}
.y3b{bottom:858.493333pt;}
.ybb{bottom:859.773333pt;}
.y5e{bottom:860.093333pt;}
.y98{bottom:861.693333pt;}
.y7{bottom:864.573333pt;}
.ydb{bottom:873.213333pt;}
.y201{bottom:874.813333pt;}
.y3a{bottom:876.093333pt;}
.y7e{bottom:877.693333pt;}
.y97{bottom:879.293333pt;}
.y39{bottom:893.693333pt;}
.yba{bottom:894.333333pt;}
.y7d{bottom:895.293333pt;}
.yda{bottom:906.813333pt;}
.y200{bottom:908.733333pt;}
.y38{bottom:911.293333pt;}
.y7c{bottom:912.893333pt;}
.y6{bottom:913.213333pt;}
.yd9{bottom:925.373333pt;}
.y1ff{bottom:926.333333pt;}
.yb9{bottom:927.933333pt;}
.y37{bottom:928.893333pt;}
.y7b{bottom:930.493333pt;}
.y5{bottom:935.293333pt;}
.yd8{bottom:943.933333pt;}
.yb8{bottom:945.533333pt;}
.y36{bottom:946.493333pt;}
.y7a{bottom:948.413333pt;}
.y4{bottom:953.533333pt;}
.y1fe{bottom:959.973333pt;}
.y5d{bottom:962.533333pt;}
.yb7{bottom:963.493333pt;}
.y15c{bottom:964.133333pt;}
.y35{bottom:964.453333pt;}
.y3{bottom:972.453333pt;}
.y5c{bottom:980.453333pt;}
.y1c8{bottom:980.773333pt;}
.yb6{bottom:981.093333pt;}
.y79{bottom:982.053333pt;}
.y1fb{bottom:989.093333pt;}
.y2{bottom:990.693333pt;}
.y15b{bottom:996.133333pt;}
.y34{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y96{bottom:1015.333333pt;}
.y33{bottom:1015.653333pt;}
.y32{bottom:1036.773333pt;}
.y31{bottom:1049.253333pt;}
.y30{bottom:1067.813333pt;}
.y2f{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h9{height:30.695625pt;}
.h12{height:31.360000pt;}
.h11{height:31.392000pt;}
.hb{height:34.374375pt;}
.h7{height:35.173750pt;}
.h5{height:35.553750pt;}
.h25{height:38.400000pt;}
.h4{height:38.876250pt;}
.hf{height:38.955000pt;}
.hd{height:39.138750pt;}
.h10{height:39.296250pt;}
.h1d{height:39.821250pt;}
.h17{height:40.000000pt;}
.he{height:42.866250pt;}
.h1f{height:46.720000pt;}
.h2{height:47.748750pt;}
.hc{height:53.471250pt;}
.h3{height:56.843750pt;}
.h13{height:62.720000pt;}
.h22{height:63.283750pt;}
.h24{height:63.390417pt;}
.h23{height:65.756250pt;}
.h1a{height:107.872000pt;}
.h18{height:125.472000pt;}
.h16{height:156.506667pt;}
.h14{height:156.546667pt;}
.h21{height:224.706667pt;}
.h15{height:250.973333pt;}
.h19{height:281.026667pt;}
.h1e{height:281.693333pt;}
.ha{height:344.453333pt;}
.h1b{height:345.053333pt;}
.h20{height:500.960000pt;}
.h1c{height:547.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:123.232000pt;}
.wa{width:143.746667pt;}
.wc{width:170.306667pt;}
.w9{width:221.853333pt;}
.w8{width:301.573333pt;}
.wd{width:301.893333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w11{width:330.053333pt;}
.w12{width:339.680000pt;}
.we{width:368.160000pt;}
.w6{width:604.413333pt;}
.w10{width:670.373333pt;}
.wf{width:670.693333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.720000pt;}
.x9{left:7.680000pt;}
.x36{left:8.960000pt;}
.x31{left:11.200000pt;}
.x37{left:18.560000pt;}
.x38{left:29.466667pt;}
.x34{left:30.746667pt;}
.x32{left:35.200000pt;}
.x39{left:37.466667pt;}
.x35{left:54.746667pt;}
.x30{left:57.954667pt;}
.x29{left:66.592000pt;}
.x3a{left:88.674667pt;}
.x2e{left:92.832000pt;}
.x7{left:94.431988pt;}
.x12{left:98.911988pt;}
.x3d{left:104.031988pt;}
.x3b{left:112.701333pt;}
.x15{left:118.463988pt;}
.x21{left:122.943988pt;}
.x1d{left:127.103988pt;}
.x3e{left:128.063988pt;}
.xb{left:129.983988pt;}
.x1a{left:132.223988pt;}
.x24{left:134.146655pt;}
.x23{left:137.986655pt;}
.x22{left:141.506655pt;}
.x16{left:142.466655pt;}
.x19{left:146.306655pt;}
.x18{left:149.826655pt;}
.x1b{left:151.106655pt;}
.x17{left:153.666655pt;}
.x1e{left:156.866655pt;}
.x13{left:160.706655pt;}
.x28{left:165.506655pt;}
.x20{left:166.466655pt;}
.x26{left:169.986655pt;}
.x3c{left:171.901333pt;}
.x1f{left:179.586655pt;}
.x25{left:190.466655pt;}
.x2{left:226.013322pt;}
.x1c{left:226.973322pt;}
.x6{left:243.613322pt;}
.xc{left:262.493322pt;}
.x10{left:267.613322pt;}
.xa{left:270.533333pt;}
.x11{left:286.533322pt;}
.x2b{left:289.093333pt;}
.xd{left:297.093322pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x2f{left:395.360000pt;}
.x8{left:396.959988pt;}
.x14{left:397.920000pt;}
.x33{left:425.760000pt;}
.x2c{left:433.466667pt;}
.xe{left:492.026643pt;}
.xf{left:496.506655pt;}
.x2d{left:557.346667pt;}
.x27{left:648.893322pt;}
.x1{left:699.493322pt;}
}




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