
    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_8f1c0655b48092a5b2a7d057.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_77163aa9c7882a8269a34f9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6d7b5f2595e7a1392e02680d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.111816;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.688477;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_dbd83cd5f99bf44343f96e8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5ad189b37a58e274b8a07206.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_e5afa5dfb33df551060832aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.111816;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_01ce8cbd34e42b9a86a59126.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_7b5abf886e1b247d9040487d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107422;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_d52c02531b84f88885b4bd05.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107422;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);}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-4.032000px;}
.ls12{letter-spacing:-0.792000px;}
.ls5{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.253200px;}
.lsc{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.034560px;}
.ls6{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.311760px;}
.ls3{letter-spacing:0.322560px;}
.lsd{letter-spacing:51.984000px;}
.lsb{letter-spacing:54.840000px;}
.ls17{letter-spacing:67.080000px;}
.lse{letter-spacing:199.584000px;}
.ls2{letter-spacing:840.737280px;}
.ls11{letter-spacing:844.104000px;}
.ls9{letter-spacing:844.140000px;}
.ls0{letter-spacing:844.164000px;}
.ls14{letter-spacing:844.284000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.wse{word-spacing:-19.206720px;}
.wsf{word-spacing:-18.953520px;}
.ws4{word-spacing:-16.704000px;}
.wsa{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.416000px;}
.wsd{word-spacing:-16.344000px;}
.ws10{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.200000px;}
.wsc{word-spacing:-15.984000px;}
.wsb{word-spacing:-15.624000px;}
.ws9{word-spacing:-15.137280px;}
.ws8{word-spacing:-15.102720px;}
.ws3{word-spacing:-12.384000px;}
.ws1{word-spacing:-10.998720px;}
.ws0{word-spacing:0.000000px;}
._28{margin-left:-199.128000px;}
._18{margin-left:-14.676000px;}
._17{margin-left:-13.488000px;}
._16{margin-left:-11.760000px;}
._15{margin-left:-9.384000px;}
._19{margin-left:-8.196000px;}
._7{margin-left:-6.216000px;}
._5{margin-left:-4.320000px;}
._8{margin-left:-2.952000px;}
._2{margin-left:-1.140000px;}
._1{width:1.800000px;}
._6{width:3.600000px;}
._10{width:4.752000px;}
._4{width:6.528000px;}
._3{width:7.632000px;}
._1c{width:8.940000px;}
._1b{width:10.008000px;}
._d{width:11.808000px;}
._22{width:13.596000px;}
._1a{width:15.192000px;}
._a{width:18.144000px;}
._b{width:20.016000px;}
._9{width:21.672000px;}
._1f{width:23.544000px;}
._23{width:24.624000px;}
._1e{width:25.716000px;}
._14{width:27.132000px;}
._13{width:28.296000px;}
._1d{width:29.952000px;}
._21{width:37.584000px;}
._20{width:38.592000px;}
._f{width:39.600000px;}
._e{width:40.896000px;}
._11{width:42.192000px;}
._25{width:51.462000px;}
._c{width:53.856000px;}
._26{width:56.106000px;}
._27{width:57.618000px;}
._12{width:118.440000px;}
._24{width:199.560000px;}
._0{width:1295.436000px;}
.fc2{color:transparent;}
.fc3{color:rgb(95,95,95);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:131.760000px;}
.yc{bottom:-215.865000px;}
.y9{bottom:-215.850000px;}
.yb{bottom:-141.705000px;}
.y8{bottom:-141.660000px;}
.ye{bottom:-67.365000px;}
.y7{bottom:-67.320000px;}
.y0{bottom:0.000000px;}
.yde{bottom:2.880000px;}
.ye0{bottom:3.060000px;}
.y131{bottom:3.420000px;}
.y129{bottom:3.600000px;}
.y3e{bottom:3.780000px;}
.y126{bottom:5.220000px;}
.y10{bottom:7.020000px;}
.ye4{bottom:10.620000px;}
.y144{bottom:12.780000px;}
.y12a{bottom:12.960000px;}
.y16e{bottom:14.040000px;}
.ye3{bottom:18.360000px;}
.yef{bottom:18.405000px;}
.y105{bottom:18.540000px;}
.y136{bottom:18.900000px;}
.y134{bottom:22.320000px;}
.y128{bottom:22.500000px;}
.y171{bottom:24.300000px;}
.y3d{bottom:24.474000px;}
.y1a6{bottom:24.480000px;}
.y10d{bottom:26.100000px;}
.y12d{bottom:31.860000px;}
.yf8{bottom:33.840000px;}
.ye2{bottom:34.020000px;}
.y16d{bottom:34.740000px;}
.y14a{bottom:37.800000px;}
.y148{bottom:37.980000px;}
.y150{bottom:38.025000px;}
.y146{bottom:41.220000px;}
.y130{bottom:41.400000px;}
.y190{bottom:45.000000px;}
.y170{bottom:45.030000px;}
.y3c{bottom:45.174000px;}
.y1af{bottom:45.180000px;}
.y132{bottom:47.340000px;}
.yf7{bottom:49.320000px;}
.y12c{bottom:50.760000px;}
.yf{bottom:52.596000px;}
.y16c{bottom:55.290000px;}
.y1d3{bottom:55.440000px;}
.y2{bottom:57.816000px;}
.y12f{bottom:60.300000px;}
.yf6{bottom:64.800000px;}
.y1c3{bottom:65.700000px;}
.y16f{bottom:65.730000px;}
.y3b{bottom:65.874000px;}
.y13f{bottom:69.840000px;}
.y12e{bottom:79.200000px;}
.y3a{bottom:86.394000px;}
.y13e{bottom:88.740000px;}
.y13b{bottom:98.100000px;}
.y39{bottom:107.094000px;}
.y13d{bottom:107.640000px;}
.ya7{bottom:113.436000px;}
.y13a{bottom:117.180000px;}
.y119{bottom:117.936000px;}
.y1ab{bottom:124.596000px;}
.y13c{bottom:126.540000px;}
.y38{bottom:127.794000px;}
.y201{bottom:129.816000px;}
.y8b{bottom:131.256000px;}
.ya6{bottom:133.956000px;}
.y139{bottom:136.080000px;}
.y118{bottom:138.456000px;}
.y1e{bottom:141.516000px;}
.y17f{bottom:145.296000px;}
.y124{bottom:147.096000px;}
.y1f8{bottom:147.816000px;}
.y43{bottom:148.359000px;}
.y37{bottom:148.539000px;}
.y200{bottom:150.510000px;}
.y140{bottom:151.560000px;}
.y8a{bottom:151.950000px;}
.ya5{bottom:154.650000px;}
.y227{bottom:156.810000px;}
.y1aa{bottom:165.990000px;}
.y123{bottom:167.790000px;}
.y19f{bottom:168.510000px;}
.y36{bottom:169.059000px;}
.y1ff{bottom:171.210000px;}
.y89{bottom:172.650000px;}
.y117{bottom:177.150000px;}
.y226{bottom:177.330000px;}
.y17e{bottom:183.810000px;}
.yc2{bottom:184.530000px;}
.y1a9{bottom:186.510000px;}
.y122{bottom:188.490000px;}
.y19e{bottom:189.210000px;}
.y35{bottom:189.759000px;}
.y1fe{bottom:191.910000px;}
.y88{bottom:193.350000px;}
.y116{bottom:197.850000px;}
.y225{bottom:198.030000px;}
.y17d{bottom:204.510000px;}
.y1a8{bottom:207.210000px;}
.y121{bottom:209.010000px;}
.y19d{bottom:209.910000px;}
.y42{bottom:210.459000px;}
.y87{bottom:214.050000px;}
.y34{bottom:214.959000px;}
.y115{bottom:218.370000px;}
.y224{bottom:218.730000px;}
.yc1{bottom:223.230000px;}
.y17c{bottom:225.210000px;}
.y1fd{bottom:230.430000px;}
.y1f7{bottom:230.610000px;}
.y33{bottom:231.159000px;}
.ya4{bottom:234.570000px;}
.y14f{bottom:235.650000px;}
.y223{bottom:239.430000px;}
.y1c0{bottom:243.210000px;}
.yc0{bottom:243.930000px;}
.y17b{bottom:245.910000px;}
.y19c{bottom:248.430000px;}
.y1fc{bottom:251.130000px;}
.y41{bottom:251.679000px;}
.y86{bottom:252.570000px;}
.ya3{bottom:255.270000px;}
.y32{bottom:256.179000px;}
.y114{bottom:257.070000px;}
.y222{bottom:259.950000px;}
.y24b{bottom:260.670000px;}
.y1bf{bottom:263.910000px;}
.ybf{bottom:264.630000px;}
.y203{bottom:266.430000px;}
.y17a{bottom:266.610000px;}
.y19b{bottom:269.130000px;}
.y1fb{bottom:271.830000px;}
.y40{bottom:272.379000px;}
.y85{bottom:273.315000px;}
.y14e{bottom:274.395000px;}
.ydb{bottom:276.015000px;}
.y31{bottom:276.879000px;}
.y113{bottom:277.815000px;}
.y221{bottom:280.695000px;}
.y24a{bottom:281.415000px;}
.y1be{bottom:284.655000px;}
.y179{bottom:287.175000px;}
.y19a{bottom:289.875000px;}
.y30{bottom:293.079000px;}
.y84{bottom:294.015000px;}
.y220{bottom:301.395000px;}
.y249{bottom:302.115000px;}
.ybe{bottom:303.195000px;}
.y112{bottom:303.735000px;}
.y1bd{bottom:305.175000px;}
.y1a7{bottom:307.875000px;}
.y1d5{bottom:310.575000px;}
.y14d{bottom:312.915000px;}
.y1e3{bottom:313.095000px;}
.y3f{bottom:313.779000px;}
.yda{bottom:314.535000px;}
.y83{bottom:314.715000px;}
.y2f{bottom:318.279000px;}
.y110{bottom:319.215000px;}
.y21f{bottom:322.095000px;}
.y248{bottom:322.815000px;}
.ybd{bottom:323.895000px;}
.y178{bottom:325.875000px;}
.y217{bottom:327.315000px;}
.y199{bottom:328.575000px;}
.y1f2{bottom:331.095000px;}
.y1d4{bottom:331.275000px;}
.y2e{bottom:334.299000px;}
.y111{bottom:334.695000px;}
.y82{bottom:335.235000px;}
.y21e{bottom:342.615000px;}
.y247{bottom:343.515000px;}
.y1bc{bottom:343.875000px;}
.ybc{bottom:344.595000px;}
.y177{bottom:346.575000px;}
.y198{bottom:349.275000px;}
.y10f{bottom:350.175000px;}
.y14c{bottom:351.615000px;}
.y1e2{bottom:351.795000px;}
.y2d{bottom:354.999000px;}
.y81{bottom:355.935000px;}
.y67{bottom:363.315000px;}
.y246{bottom:364.035000px;}
.y1bb{bottom:364.575000px;}
.ybb{bottom:365.295000px;}
.y10c{bottom:365.655000px;}
.y216{bottom:366.015000px;}
.y1c4{bottom:367.095000px;}
.y176{bottom:367.275000px;}
.y197{bottom:369.795000px;}
.y1e1{bottom:372.495000px;}
.y2c{bottom:375.699000px;}
.y80{bottom:376.635000px;}
.y10e{bottom:381.135000px;}
.y66{bottom:384.015000px;}
.y245{bottom:384.735000px;}
.y1ba{bottom:385.275000px;}
.yba{bottom:385.995000px;}
.y215{bottom:386.715000px;}
.y175{bottom:387.795000px;}
.y14b{bottom:390.135000px;}
.y1c7{bottom:390.495000px;}
.y1e0{bottom:393.195000px;}
.y2b{bottom:396.399000px;}
.y10a{bottom:396.615000px;}
.ya2{bottom:397.335000px;}
.y65{bottom:404.715000px;}
.y244{bottom:405.435000px;}
.y1b9{bottom:405.795000px;}
.yb9{bottom:406.515000px;}
.y214{bottom:407.235000px;}
.y174{bottom:408.495000px;}
.y1c6{bottom:411.195000px;}
.y10b{bottom:412.095000px;}
.y1e9{bottom:413.895000px;}
.y7f{bottom:415.155000px;}
.y2a{bottom:416.949000px;}
.ya1{bottom:417.855000px;}
.y64{bottom:425.235000px;}
.y243{bottom:426.135000px;}
.y1b8{bottom:426.495000px;}
.y109{bottom:427.575000px;}
.y213{bottom:427.935000px;}
.y149{bottom:428.835000px;}
.y196{bottom:429.195000px;}
.y1df{bottom:431.715000px;}
.y1f6{bottom:431.895000px;}
.y1d2{bottom:435.135000px;}
.y7e{bottom:435.855000px;}
.y29{bottom:437.649000px;}
.yd9{bottom:438.555000px;}
.y108{bottom:443.055000px;}
.yb8{bottom:445.215000px;}
.y63{bottom:445.935000px;}
.y242{bottom:446.655000px;}
.y173{bottom:447.195000px;}
.y212{bottom:448.635000px;}
.y1c5{bottom:449.715000px;}
.y195{bottom:449.895000px;}
.y1de{bottom:452.415000px;}
.y7d{bottom:456.555000px;}
.y28{bottom:458.349000px;}
.y107{bottom:458.535000px;}
.y1b7{bottom:465.195000px;}
.yb7{bottom:465.915000px;}
.y62{bottom:466.635000px;}
.y147{bottom:467.355000px;}
.y211{bottom:469.335000px;}
.y194{bottom:470.415000px;}
.y1dd{bottom:473.115000px;}
.y1a5{bottom:473.835000px;}
.y104{bottom:474.015000px;}
.y7c{bottom:477.255000px;}
.y27{bottom:479.049000px;}
.yd6{bottom:483.195000px;}
.y172{bottom:485.715000px;}
.y1b6{bottom:485.895000px;}
.y61{bottom:487.335000px;}
.y241{bottom:488.055000px;}
.y106{bottom:489.495000px;}
.y210{bottom:489.855000px;}
.y193{bottom:491.115000px;}
.y21d{bottom:492.555000px;}
.y1dc{bottom:493.815000px;}
.y7b{bottom:497.955000px;}
.y26{bottom:499.569000px;}
.y103{bottom:505.155000px;}
.yb6{bottom:505.695000px;}
.y145{bottom:506.055000px;}
.y1b5{bottom:506.415000px;}
.y60{bottom:507.855000px;}
.y240{bottom:508.755000px;}
.y1cc{bottom:509.115000px;}
.y20f{bottom:510.555000px;}
.y1e8{bottom:511.815000px;}
.y16b{bottom:512.535000px;}
.y21c{bottom:513.255000px;}
.y1db{bottom:514.515000px;}
.ya0{bottom:518.475000px;}
.y25{bottom:520.269000px;}
.y101{bottom:520.635000px;}
.yd5{bottom:521.895000px;}
.yb5{bottom:526.395000px;}
.y1b4{bottom:527.115000px;}
.y5f{bottom:528.555000px;}
.y23f{bottom:529.275000px;}
.y192{bottom:529.815000px;}
.y20e{bottom:531.255000px;}
.y1f1{bottom:532.515000px;}
.y21b{bottom:533.955000px;}
.y102{bottom:536.115000px;}
.y7a{bottom:536.475000px;}
.y9f{bottom:539.175000px;}
.y24{bottom:540.969000px;}
.yd4{bottom:542.595000px;}
.y1b3{bottom:547.815000px;}
.y5e{bottom:549.255000px;}
.y23e{bottom:549.975000px;}
.y1e7{bottom:550.335000px;}
.y100{bottom:551.595000px;}
.y20d{bottom:551.955000px;}
.y1da{bottom:553.035000px;}
.y21a{bottom:554.475000px;}
.y79{bottom:557.205000px;}
.y9e{bottom:559.905000px;}
.y23{bottom:561.669000px;}
.y1d1{bottom:561.705000px;}
.yd3{bottom:563.325000px;}
.y143{bottom:563.685000px;}
.yb4{bottom:566.385000px;}
.yfe{bottom:567.105000px;}
.y191{bottom:568.365000px;}
.y1b2{bottom:568.545000px;}
.y5d{bottom:569.985000px;}
.y23d{bottom:570.705000px;}
.y1f0{bottom:571.065000px;}
.y20c{bottom:572.505000px;}
.y1cb{bottom:574.485000px;}
.y219{bottom:575.205000px;}
.y1e6{bottom:577.185000px;}
.y78{bottom:577.905000px;}
.y1a4{bottom:579.705000px;}
.y9d{bottom:580.605000px;}
.y22{bottom:582.189000px;}
.yff{bottom:582.585000px;}
.yd2{bottom:584.025000px;}
.yb3{bottom:587.085000px;}
.y1b1{bottom:589.065000px;}
.y5c{bottom:590.505000px;}
.y23c{bottom:591.405000px;}
.y1d9{bottom:591.765000px;}
.y20b{bottom:593.205000px;}
.y18f{bottom:595.185000px;}
.y16a{bottom:595.905000px;}
.yfc{bottom:598.065000px;}
.yd8{bottom:598.425000px;}
.y77{bottom:598.605000px;}
.y1d0{bottom:600.405000px;}
.y142{bottom:602.205000px;}
.y21{bottom:602.889000px;}
.yd1{bottom:604.545000px;}
.y1f5{bottom:609.765000px;}
.y5b{bottom:611.205000px;}
.y23b{bottom:611.925000px;}
.y1ef{bottom:612.465000px;}
.yfd{bottom:613.545000px;}
.y20a{bottom:613.905000px;}
.y1a3{bottom:618.405000px;}
.y9c{bottom:619.125000px;}
.y1cf{bottom:621.105000px;}
.y20{bottom:623.589000px;}
.yd0{bottom:625.245000px;}
.yb2{bottom:626.865000px;}
.y1b0{bottom:627.765000px;}
.yfb{bottom:629.025000px;}
.y1fa{bottom:630.465000px;}
.y5a{bottom:631.905000px;}
.y23a{bottom:632.625000px;}
.y1ee{bottom:633.165000px;}
.y218{bottom:634.425000px;}
.y209{bottom:634.605000px;}
.y1f4{bottom:636.405000px;}
.y76{bottom:637.125000px;}
.y169{bottom:638.925000px;}
.y1a2{bottom:639.105000px;}
.y9b{bottom:639.825000px;}
.y141{bottom:640.905000px;}
.y1f{bottom:644.289000px;}
.yfa{bottom:644.505000px;}
.ycf{bottom:645.945000px;}
.yb1{bottom:647.565000px;}
.y59{bottom:652.605000px;}
.y239{bottom:653.325000px;}
.y1ae{bottom:654.405000px;}
.y208{bottom:655.125000px;}
.y1f9{bottom:657.105000px;}
.y75{bottom:657.825000px;}
.y1a1{bottom:659.625000px;}
.yf9{bottom:659.985000px;}
.y9a{bottom:660.525000px;}
.y1e5{bottom:662.325000px;}
.y1ed{bottom:671.685000px;}
.y58{bottom:673.125000px;}
.y238{bottom:674.025000px;}
.yf5{bottom:675.465000px;}
.y207{bottom:675.825000px;}
.y168{bottom:677.625000px;}
.y74{bottom:678.525000px;}
.y138{bottom:679.425000px;}
.y1a0{bottom:680.325000px;}
.y99{bottom:681.225000px;}
.y120{bottom:683.745000px;}
.yce{bottom:684.465000px;}
.yb0{bottom:687.345000px;}
.y57{bottom:693.825000px;}
.y237{bottom:694.545000px;}
.y206{bottom:696.525000px;}
.y167{bottom:698.325000px;}
.y1f3{bottom:699.045000px;}
.y73{bottom:699.225000px;}
.y18e{bottom:701.025000px;}
.y98{bottom:701.745000px;}
.y1d8{bottom:703.545000px;}
.y11f{bottom:704.445000px;}
.ycd{bottom:705.165000px;}
.yaf{bottom:708.045000px;}
.y1ec{bottom:710.385000px;}
.y56{bottom:714.525000px;}
.y236{bottom:715.245000px;}
.y1ad{bottom:717.045000px;}
.y205{bottom:717.225000px;}
.y166{bottom:719.025000px;}
.y72{bottom:719.745000px;}
.y1c2{bottom:721.545000px;}
.y1ce{bottom:721.725000px;}
.y97{bottom:722.445000px;}
.y11e{bottom:725.145000px;}
.ycc{bottom:725.865000px;}
.y1d{bottom:728.385000px;}
.y55{bottom:735.225000px;}
.y235{bottom:735.945000px;}
.y1eb{bottom:737.025000px;}
.yf4{bottom:737.385000px;}
.y204{bottom:737.745000px;}
.y18d{bottom:739.545000px;}
.y165{bottom:739.725000px;}
.yd7{bottom:740.445000px;}
.y1d7{bottom:742.245000px;}
.y11d{bottom:745.845000px;}
.ycb{bottom:746.565000px;}
.yae{bottom:748.005000px;}
.yf3{bottom:752.865000px;}
.y54{bottom:755.745000px;}
.y234{bottom:756.645000px;}
.y71{bottom:758.445000px;}
.y18c{bottom:760.245000px;}
.y96{bottom:761.145000px;}
.y1d6{bottom:762.945000px;}
.y11c{bottom:766.365000px;}
.yf2{bottom:768.525000px;}
.yad{bottom:768.705000px;}
.y6{bottom:771.405000px;}
.y1c{bottom:772.485000px;}
.y53{bottom:776.445000px;}
.y233{bottom:777.165000px;}
.y164{bottom:778.245000px;}
.y70{bottom:779.145000px;}
.y18b{bottom:780.945000px;}
.y157{bottom:781.665000px;}
.y95{bottom:781.845000px;}
.yca{bottom:785.085000px;}
.y52{bottom:797.145000px;}
.y232{bottom:797.865000px;}
.y163{bottom:798.945000px;}
.yf1{bottom:799.485000px;}
.y6f{bottom:799.845000px;}
.y18a{bottom:801.645000px;}
.y94{bottom:802.365000px;}
.yc9{bottom:805.785000px;}
.yac{bottom:808.485000px;}
.y1b{bottom:811.185000px;}
.yf0{bottom:814.965000px;}
.y51{bottom:817.845000px;}
.y231{bottom:818.565000px;}
.y162{bottom:819.645000px;}
.y6e{bottom:820.365000px;}
.y1ea{bottom:822.165000px;}
.y189{bottom:822.345000px;}
.y93{bottom:823.065000px;}
.yc8{bottom:826.485000px;}
.yab{bottom:829.185000px;}
.yee{bottom:830.445000px;}
.y137{bottom:831.705000px;}
.y50{bottom:838.365000px;}
.y230{bottom:839.310000px;}
.y1e4{bottom:840.210000px;}
.y161{bottom:840.390000px;}
.y6d{bottom:841.110000px;}
.y1cd{bottom:842.910000px;}
.y92{bottom:843.810000px;}
.y5{bottom:845.070000px;}
.yed{bottom:845.970000px;}
.yc7{bottom:847.230000px;}
.y1a{bottom:849.750000px;}
.y135{bottom:851.370000px;}
.y4f{bottom:859.110000px;}
.y22f{bottom:859.830000px;}
.y160{bottom:860.910000px;}
.yec{bottom:861.450000px;}
.y6c{bottom:861.810000px;}
.y156{bottom:864.330000px;}
.y186{bottom:865.230000px;}
.yaa{bottom:867.750000px;}
.yc6{bottom:867.930000px;}
.y1ca{bottom:870.450000px;}
.yeb{bottom:876.930000px;}
.y202{bottom:878.910000px;}
.y4e{bottom:879.810000px;}
.y22e{bottom:880.530000px;}
.y15f{bottom:881.610000px;}
.y6b{bottom:882.330000px;}
.y11b{bottom:885.750000px;}
.y4{bottom:886.470000px;}
.y19{bottom:888.450000px;}
.y133{bottom:890.070000px;}
.y1c9{bottom:891.150000px;}
.yea{bottom:892.410000px;}
.yd{bottom:896.190000px;}
.y1ac{bottom:899.610000px;}
.y4d{bottom:900.330000px;}
.y22d{bottom:901.230000px;}
.y188{bottom:902.310000px;}
.y6a{bottom:903.030000px;}
.y185{bottom:903.750000px;}
.y11a{bottom:906.450000px;}
.ye9{bottom:907.890000px;}
.y18{bottom:909.150000px;}
.y15e{bottom:920.310000px;}
.y4c{bottom:921.030000px;}
.y22c{bottom:921.930000px;}
.y1c1{bottom:923.010000px;}
.ye8{bottom:923.370000px;}
.y69{bottom:923.730000px;}
.y184{bottom:924.450000px;}
.yc5{bottom:927.150000px;}
.y3{bottom:927.690000px;}
.y12b{bottom:928.590000px;}
.y17{bottom:929.850000px;}
.ye7{bottom:938.850000px;}
.y187{bottom:940.830000px;}
.y15d{bottom:941.010000px;}
.y4b{bottom:941.730000px;}
.y22b{bottom:942.450000px;}
.y91{bottom:944.430000px;}
.y183{bottom:945.150000px;}
.ya9{bottom:947.850000px;}
.y16{bottom:950.550000px;}
.ya{bottom:952.170000px;}
.ye6{bottom:954.330000px;}
.y15c{bottom:961.530000px;}
.y68{bottom:962.250000px;}
.y4a{bottom:962.430000px;}
.y22a{bottom:963.150000px;}
.y155{bottom:964.950000px;}
.y182{bottom:965.850000px;}
.y90{bottom:968.370000px;}
.ya8{bottom:968.550000px;}
.ye5{bottom:969.810000px;}
.y15{bottom:971.070000px;}
.y15b{bottom:982.230000px;}
.y49{bottom:982.950000px;}
.y229{bottom:983.850000px;}
.ye1{bottom:985.290000px;}
.y154{bottom:985.650000px;}
.yc4{bottom:986.370000px;}
.y181{bottom:986.550000px;}
.y1c8{bottom:989.070000px;}
.y15a{bottom:1002.930000px;}
.y48{bottom:1003.650000px;}
.y228{bottom:1004.550000px;}
.y153{bottom:1006.350000px;}
.y8f{bottom:1007.070000px;}
.y14{bottom:1009.770000px;}
.ydf{bottom:1016.250000px;}
.y127{bottom:1023.990000px;}
.y47{bottom:1024.350000px;}
.y180{bottom:1025.070000px;}
.y152{bottom:1027.050000px;}
.yc3{bottom:1027.770000px;}
.ydd{bottom:1031.910000px;}
.y159{bottom:1041.450000px;}
.y46{bottom:1045.050000px;}
.y8e{bottom:1045.770000px;}
.y13{bottom:1048.470000px;}
.y125{bottom:1062.690000px;}
.y45{bottom:1065.570000px;}
.y151{bottom:1066.290000px;}
.y8d{bottom:1066.470000px;}
.ydc{bottom:1068.990000px;}
.y158{bottom:1080.870000px;}
.y12{bottom:1086.990000px;}
.y8c{bottom:1087.170000px;}
.y44{bottom:1104.990000px;}
.y11{bottom:1107.690000px;}
.y1{bottom:1192.140000px;}
.hc{height:15.480000px;}
.h13{height:15.516000px;}
.hf{height:15.660000px;}
.h1e{height:18.936000px;}
.h23{height:20.520000px;}
.h25{height:20.700000px;}
.h26{height:20.736000px;}
.h18{height:22.500000px;}
.h11{height:30.960000px;}
.h12{height:30.996000px;}
.h6{height:35.640000px;}
.h4{height:36.000000px;}
.h1d{height:37.800000px;}
.h1a{height:37.980000px;}
.h21{height:38.016000px;}
.he{height:39.313477px;}
.h28{height:41.220000px;}
.h29{height:41.400000px;}
.h16{height:46.440000px;}
.h17{height:46.476000px;}
.h10{height:46.620000px;}
.hb{height:46.898438px;}
.h19{height:48.224531px;}
.hd{height:48.673828px;}
.h2{height:49.992188px;}
.h7{height:52.417969px;}
.ha{height:53.120039px;}
.h20{height:56.736000px;}
.h1b{height:59.706562px;}
.h8{height:61.329023px;}
.h15{height:61.920000px;}
.h22{height:64.582031px;}
.h3{height:64.898438px;}
.h14{height:77.400000px;}
.h27{height:82.620000px;}
.h24{height:82.656000px;}
.h5{height:89.233945px;}
.h1c{height:94.680000px;}
.h1f{height:151.560000px;}
.h9{height:661.035000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:16.560000px;}
.wc{width:16.596000px;}
.w9{width:16.740000px;}
.wb{width:16.776000px;}
.w14{width:17.640000px;}
.w13{width:17.820000px;}
.w12{width:19.440000px;}
.w18{width:23.940000px;}
.w19{width:33.300000px;}
.w1f{width:59.220000px;}
.w32{width:61.200000px;}
.w27{width:63.180000px;}
.w23{width:63.360000px;}
.w35{width:63.396000px;}
.w2a{width:63.540000px;}
.w31{width:73.440000px;}
.w29{width:76.536000px;}
.w5{width:83.370000px;}
.w37{width:86.616000px;}
.w34{width:87.300000px;}
.w1b{width:88.560000px;}
.w3a{width:88.740000px;}
.w20{width:98.856000px;}
.w24{width:111.636000px;}
.w26{width:116.496000px;}
.w1e{width:120.600000px;}
.w3b{width:129.096000px;}
.w2b{width:151.950000px;}
.w1c{width:154.290000px;}
.w38{width:167.430000px;}
.w2d{width:172.830000px;}
.wa{width:183.090000px;}
.wd{width:183.240000px;}
.w15{width:187.410000px;}
.w22{width:196.410000px;}
.we{width:199.830000px;}
.w2f{width:202.710000px;}
.w17{width:208.110000px;}
.w11{width:213.690000px;}
.wf{width:216.570000px;}
.w10{width:218.550000px;}
.w16{width:232.050000px;}
.w33{width:260.130000px;}
.w3{width:282.135000px;}
.w2e{width:292.350000px;}
.w21{width:302.790000px;}
.w2c{width:324.390000px;}
.w7{width:339.015000px;}
.w6{width:347.115000px;}
.w36{width:355.890000px;}
.w28{width:384.870000px;}
.w25{width:394.050000px;}
.w1d{width:394.095000px;}
.w39{width:394.275000px;}
.w1a{width:440.355000px;}
.w30{width:442.515000px;}
.w4{width:504.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x63{left:4.860000px;}
.x65{left:6.300000px;}
.xf{left:8.100000px;}
.x43{left:9.720000px;}
.x5{left:10.800000px;}
.x3d{left:12.780000px;}
.x71{left:14.040000px;}
.x54{left:15.120000px;}
.x68{left:16.920000px;}
.x52{left:18.000000px;}
.x5d{left:19.080000px;}
.x64{left:20.340000px;}
.x2c{left:21.420000px;}
.x44{left:23.040000px;}
.x72{left:24.345000px;}
.x3b{left:26.100000px;}
.x2b{left:28.260000px;}
.x5b{left:30.060000px;}
.x73{left:31.500000px;}
.x79{left:32.760000px;}
.x53{left:34.020000px;}
.x48{left:36.360000px;}
.x5f{left:38.340000px;}
.xa6{left:39.420000px;}
.x6f{left:41.040000px;}
.x57{left:42.300000px;}
.x67{left:44.280000px;}
.x5e{left:45.360000px;}
.x94{left:47.025000px;}
.x3f{left:49.140000px;}
.x59{left:51.480000px;}
.x39{left:52.560000px;}
.x3e{left:54.900000px;}
.x3a{left:57.060000px;}
.x58{left:59.040000px;}
.x3c{left:61.380000px;}
.x14{left:63.540000px;}
.x2e{left:65.340000px;}
.x2d{left:66.420000px;}
.x40{left:71.280000px;}
.x5a{left:76.140000px;}
.x55{left:77.760000px;}
.x56{left:79.020000px;}
.xa0{left:81.180000px;}
.x5c{left:91.620000px;}
.x8{left:97.200000px;}
.x97{left:98.994000px;}
.x75{left:100.074000px;}
.x7c{left:102.636000px;}
.x9a{left:104.940000px;}
.x82{left:106.956000px;}
.x1{left:108.035987px;}
.x6c{left:109.116000px;}
.x9b{left:112.355987px;}
.x88{left:114.695987px;}
.x8e{left:118.115987px;}
.x6a{left:121.355987px;}
.x80{left:123.875987px;}
.xa1{left:126.215987px;}
.x85{left:129.635987px;}
.x7a{left:131.075987px;}
.x90{left:133.415987px;}
.xd{left:135.035987px;}
.x83{left:140.214000px;}
.x6d{left:144.894000px;}
.x9d{left:146.694000px;}
.x10{left:151.410000px;}
.x81{left:159.869987px;}
.x3{left:162.029987px;}
.x87{left:165.774000px;}
.x11{left:168.150000px;}
.x45{left:169.230000px;}
.xa2{left:183.269987px;}
.x12{left:184.710000px;}
.x46{left:186.870000px;}
.x66{left:187.914000px;}
.x92{left:190.074000px;}
.x60{left:191.154000px;}
.x13{left:201.450000px;}
.x47{left:204.510000px;}
.x6b{left:207.749987px;}
.x2f{left:218.010000px;}
.x7b{left:226.289987px;}
.x30{left:234.750000px;}
.x31{left:251.310000px;}
.x69{left:257.789987px;}
.x32{left:268.050000px;}
.x33{left:284.610000px;}
.xa8{left:291.809987px;}
.x91{left:295.769987px;}
.x34{left:301.395000px;}
.xa7{left:310.034987px;}
.x35{left:317.955000px;}
.xe{left:322.634987px;}
.x9c{left:329.654987px;}
.x36{left:334.695000px;}
.x86{left:338.474987px;}
.x89{left:339.914987px;}
.x37{left:351.255000px;}
.x38{left:367.995000px;}
.x8f{left:369.074987px;}
.x98{left:370.875000px;}
.xc{left:371.954987px;}
.x8c{left:376.094987px;}
.x74{left:380.054987px;}
.x15{left:384.555000px;}
.x6{left:388.335000px;}
.x49{left:391.935000px;}
.x96{left:394.814987px;}
.xb{left:396.254987px;}
.xa9{left:400.034987px;}
.x16{left:401.295000px;}
.x95{left:406.874987px;}
.x4a{left:408.675000px;}
.x76{left:411.915000px;}
.xa{left:414.074987px;}
.x17{left:417.855000px;}
.x4b{left:425.235000px;}
.x8a{left:432.075000px;}
.x18{left:434.595000px;}
.x4c{left:441.975000px;}
.x9{left:445.395000px;}
.x2{left:446.474987px;}
.x19{left:451.155000px;}
.x4d{left:458.535000px;}
.x9e{left:465.555000px;}
.x1a{left:467.895000px;}
.x4e{left:475.275000px;}
.x1b{left:484.455000px;}
.x4f{left:491.835000px;}
.x7d{left:497.415000px;}
.x1c{left:501.225000px;}
.xa3{left:502.845000px;}
.x6e{left:503.925000px;}
.x50{left:508.605000px;}
.x1d{left:517.785000px;}
.x99{left:523.005000px;}
.x51{left:526.245000px;}
.x1e{left:534.525000px;}
.x61{left:549.645000px;}
.x1f{left:551.085000px;}
.x9f{left:552.885000px;}
.x20{left:567.825000px;}
.x84{left:569.805000px;}
.x8d{left:582.405000px;}
.x21{left:584.385000px;}
.xa4{left:592.305000px;}
.x22{left:601.125000px;}
.x77{left:609.045000px;}
.x4{left:610.845000px;}
.x8b{left:613.365000px;}
.x7e{left:614.805000px;}
.x23{left:617.685000px;}
.x70{left:625.245000px;}
.x24{left:634.425000px;}
.x62{left:639.105000px;}
.x25{left:650.985000px;}
.xa5{left:656.205000px;}
.x26{left:667.725000px;}
.x78{left:673.125000px;}
.x7f{left:678.705000px;}
.x27{left:684.285000px;}
.x93{left:686.805000px;}
.x28{left:701.025000px;}
.x29{left:717.630000px;}
.x42{left:731.490000px;}
.x2a{left:734.370000px;}
.x41{left:736.350000px;}
.x7{left:809.610000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-3.584000pt;}
.ls12{letter-spacing:-0.704000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.225067pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.030720pt;}
.ls6{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.277120pt;}
.ls3{letter-spacing:0.286720pt;}
.lsd{letter-spacing:46.208000pt;}
.lsb{letter-spacing:48.746667pt;}
.ls17{letter-spacing:59.626667pt;}
.lse{letter-spacing:177.408000pt;}
.ls2{letter-spacing:747.322027pt;}
.ls11{letter-spacing:750.314667pt;}
.ls9{letter-spacing:750.346667pt;}
.ls0{letter-spacing:750.368000pt;}
.ls14{letter-spacing:750.474667pt;}
.ws6{word-spacing:-64.000000pt;}
.wse{word-spacing:-17.072640pt;}
.wsf{word-spacing:-16.847573pt;}
.ws4{word-spacing:-14.848000pt;}
.wsa{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.592000pt;}
.wsd{word-spacing:-14.528000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.208000pt;}
.wsb{word-spacing:-13.888000pt;}
.ws9{word-spacing:-13.455360pt;}
.ws8{word-spacing:-13.424640pt;}
.ws3{word-spacing:-11.008000pt;}
.ws1{word-spacing:-9.776640pt;}
.ws0{word-spacing:0.000000pt;}
._28{margin-left:-177.002667pt;}
._18{margin-left:-13.045333pt;}
._17{margin-left:-11.989333pt;}
._16{margin-left:-10.453333pt;}
._15{margin-left:-8.341333pt;}
._19{margin-left:-7.285333pt;}
._7{margin-left:-5.525333pt;}
._5{margin-left:-3.840000pt;}
._8{margin-left:-2.624000pt;}
._2{margin-left:-1.013333pt;}
._1{width:1.600000pt;}
._6{width:3.200000pt;}
._10{width:4.224000pt;}
._4{width:5.802667pt;}
._3{width:6.784000pt;}
._1c{width:7.946667pt;}
._1b{width:8.896000pt;}
._d{width:10.496000pt;}
._22{width:12.085333pt;}
._1a{width:13.504000pt;}
._a{width:16.128000pt;}
._b{width:17.792000pt;}
._9{width:19.264000pt;}
._1f{width:20.928000pt;}
._23{width:21.888000pt;}
._1e{width:22.858667pt;}
._14{width:24.117333pt;}
._13{width:25.152000pt;}
._1d{width:26.624000pt;}
._21{width:33.408000pt;}
._20{width:34.304000pt;}
._f{width:35.200000pt;}
._e{width:36.352000pt;}
._11{width:37.504000pt;}
._25{width:45.744000pt;}
._c{width:47.872000pt;}
._26{width:49.872000pt;}
._27{width:51.216000pt;}
._12{width:105.280000pt;}
._24{width:177.386667pt;}
._0{width:1151.498667pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:117.120000pt;}
.yc{bottom:-191.880000pt;}
.y9{bottom:-191.866667pt;}
.yb{bottom:-125.960000pt;}
.y8{bottom:-125.920000pt;}
.ye{bottom:-59.880000pt;}
.y7{bottom:-59.840000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.560000pt;}
.ye0{bottom:2.720000pt;}
.y131{bottom:3.040000pt;}
.y129{bottom:3.200000pt;}
.y3e{bottom:3.360000pt;}
.y126{bottom:4.640000pt;}
.y10{bottom:6.240000pt;}
.ye4{bottom:9.440000pt;}
.y144{bottom:11.360000pt;}
.y12a{bottom:11.520000pt;}
.y16e{bottom:12.480000pt;}
.ye3{bottom:16.320000pt;}
.yef{bottom:16.360000pt;}
.y105{bottom:16.480000pt;}
.y136{bottom:16.800000pt;}
.y134{bottom:19.840000pt;}
.y128{bottom:20.000000pt;}
.y171{bottom:21.600000pt;}
.y3d{bottom:21.754667pt;}
.y1a6{bottom:21.760000pt;}
.y10d{bottom:23.200000pt;}
.y12d{bottom:28.320000pt;}
.yf8{bottom:30.080000pt;}
.ye2{bottom:30.240000pt;}
.y16d{bottom:30.880000pt;}
.y14a{bottom:33.600000pt;}
.y148{bottom:33.760000pt;}
.y150{bottom:33.800000pt;}
.y146{bottom:36.640000pt;}
.y130{bottom:36.800000pt;}
.y190{bottom:40.000000pt;}
.y170{bottom:40.026667pt;}
.y3c{bottom:40.154667pt;}
.y1af{bottom:40.160000pt;}
.y132{bottom:42.080000pt;}
.yf7{bottom:43.840000pt;}
.y12c{bottom:45.120000pt;}
.yf{bottom:46.752000pt;}
.y16c{bottom:49.146667pt;}
.y1d3{bottom:49.280000pt;}
.y2{bottom:51.392000pt;}
.y12f{bottom:53.600000pt;}
.yf6{bottom:57.600000pt;}
.y1c3{bottom:58.400000pt;}
.y16f{bottom:58.426667pt;}
.y3b{bottom:58.554667pt;}
.y13f{bottom:62.080000pt;}
.y12e{bottom:70.400000pt;}
.y3a{bottom:76.794667pt;}
.y13e{bottom:78.880000pt;}
.y13b{bottom:87.200000pt;}
.y39{bottom:95.194667pt;}
.y13d{bottom:95.680000pt;}
.ya7{bottom:100.832000pt;}
.y13a{bottom:104.160000pt;}
.y119{bottom:104.832000pt;}
.y1ab{bottom:110.752000pt;}
.y13c{bottom:112.480000pt;}
.y38{bottom:113.594667pt;}
.y201{bottom:115.392000pt;}
.y8b{bottom:116.672000pt;}
.ya6{bottom:119.072000pt;}
.y139{bottom:120.960000pt;}
.y118{bottom:123.072000pt;}
.y1e{bottom:125.792000pt;}
.y17f{bottom:129.152000pt;}
.y124{bottom:130.752000pt;}
.y1f8{bottom:131.392000pt;}
.y43{bottom:131.874667pt;}
.y37{bottom:132.034667pt;}
.y200{bottom:133.786667pt;}
.y140{bottom:134.720000pt;}
.y8a{bottom:135.066667pt;}
.ya5{bottom:137.466667pt;}
.y227{bottom:139.386667pt;}
.y1aa{bottom:147.546667pt;}
.y123{bottom:149.146667pt;}
.y19f{bottom:149.786667pt;}
.y36{bottom:150.274667pt;}
.y1ff{bottom:152.186667pt;}
.y89{bottom:153.466667pt;}
.y117{bottom:157.466667pt;}
.y226{bottom:157.626667pt;}
.y17e{bottom:163.386667pt;}
.yc2{bottom:164.026667pt;}
.y1a9{bottom:165.786667pt;}
.y122{bottom:167.546667pt;}
.y19e{bottom:168.186667pt;}
.y35{bottom:168.674667pt;}
.y1fe{bottom:170.586667pt;}
.y88{bottom:171.866667pt;}
.y116{bottom:175.866667pt;}
.y225{bottom:176.026667pt;}
.y17d{bottom:181.786667pt;}
.y1a8{bottom:184.186667pt;}
.y121{bottom:185.786667pt;}
.y19d{bottom:186.586667pt;}
.y42{bottom:187.074667pt;}
.y87{bottom:190.266667pt;}
.y34{bottom:191.074667pt;}
.y115{bottom:194.106667pt;}
.y224{bottom:194.426667pt;}
.yc1{bottom:198.426667pt;}
.y17c{bottom:200.186667pt;}
.y1fd{bottom:204.826667pt;}
.y1f7{bottom:204.986667pt;}
.y33{bottom:205.474667pt;}
.ya4{bottom:208.506667pt;}
.y14f{bottom:209.466667pt;}
.y223{bottom:212.826667pt;}
.y1c0{bottom:216.186667pt;}
.yc0{bottom:216.826667pt;}
.y17b{bottom:218.586667pt;}
.y19c{bottom:220.826667pt;}
.y1fc{bottom:223.226667pt;}
.y41{bottom:223.714667pt;}
.y86{bottom:224.506667pt;}
.ya3{bottom:226.906667pt;}
.y32{bottom:227.714667pt;}
.y114{bottom:228.506667pt;}
.y222{bottom:231.066667pt;}
.y24b{bottom:231.706667pt;}
.y1bf{bottom:234.586667pt;}
.ybf{bottom:235.226667pt;}
.y203{bottom:236.826667pt;}
.y17a{bottom:236.986667pt;}
.y19b{bottom:239.226667pt;}
.y1fb{bottom:241.626667pt;}
.y40{bottom:242.114667pt;}
.y85{bottom:242.946667pt;}
.y14e{bottom:243.906667pt;}
.ydb{bottom:245.346667pt;}
.y31{bottom:246.114667pt;}
.y113{bottom:246.946667pt;}
.y221{bottom:249.506667pt;}
.y24a{bottom:250.146667pt;}
.y1be{bottom:253.026667pt;}
.y179{bottom:255.266667pt;}
.y19a{bottom:257.666667pt;}
.y30{bottom:260.514667pt;}
.y84{bottom:261.346667pt;}
.y220{bottom:267.906667pt;}
.y249{bottom:268.546667pt;}
.ybe{bottom:269.506667pt;}
.y112{bottom:269.986667pt;}
.y1bd{bottom:271.266667pt;}
.y1a7{bottom:273.666667pt;}
.y1d5{bottom:276.066667pt;}
.y14d{bottom:278.146667pt;}
.y1e3{bottom:278.306667pt;}
.y3f{bottom:278.914667pt;}
.yda{bottom:279.586667pt;}
.y83{bottom:279.746667pt;}
.y2f{bottom:282.914667pt;}
.y110{bottom:283.746667pt;}
.y21f{bottom:286.306667pt;}
.y248{bottom:286.946667pt;}
.ybd{bottom:287.906667pt;}
.y178{bottom:289.666667pt;}
.y217{bottom:290.946667pt;}
.y199{bottom:292.066667pt;}
.y1f2{bottom:294.306667pt;}
.y1d4{bottom:294.466667pt;}
.y2e{bottom:297.154667pt;}
.y111{bottom:297.506667pt;}
.y82{bottom:297.986667pt;}
.y21e{bottom:304.546667pt;}
.y247{bottom:305.346667pt;}
.y1bc{bottom:305.666667pt;}
.ybc{bottom:306.306667pt;}
.y177{bottom:308.066667pt;}
.y198{bottom:310.466667pt;}
.y10f{bottom:311.266667pt;}
.y14c{bottom:312.546667pt;}
.y1e2{bottom:312.706667pt;}
.y2d{bottom:315.554667pt;}
.y81{bottom:316.386667pt;}
.y67{bottom:322.946667pt;}
.y246{bottom:323.586667pt;}
.y1bb{bottom:324.066667pt;}
.ybb{bottom:324.706667pt;}
.y10c{bottom:325.026667pt;}
.y216{bottom:325.346667pt;}
.y1c4{bottom:326.306667pt;}
.y176{bottom:326.466667pt;}
.y197{bottom:328.706667pt;}
.y1e1{bottom:331.106667pt;}
.y2c{bottom:333.954667pt;}
.y80{bottom:334.786667pt;}
.y10e{bottom:338.786667pt;}
.y66{bottom:341.346667pt;}
.y245{bottom:341.986667pt;}
.y1ba{bottom:342.466667pt;}
.yba{bottom:343.106667pt;}
.y215{bottom:343.746667pt;}
.y175{bottom:344.706667pt;}
.y14b{bottom:346.786667pt;}
.y1c7{bottom:347.106667pt;}
.y1e0{bottom:349.506667pt;}
.y2b{bottom:352.354667pt;}
.y10a{bottom:352.546667pt;}
.ya2{bottom:353.186667pt;}
.y65{bottom:359.746667pt;}
.y244{bottom:360.386667pt;}
.y1b9{bottom:360.706667pt;}
.yb9{bottom:361.346667pt;}
.y214{bottom:361.986667pt;}
.y174{bottom:363.106667pt;}
.y1c6{bottom:365.506667pt;}
.y10b{bottom:366.306667pt;}
.y1e9{bottom:367.906667pt;}
.y7f{bottom:369.026667pt;}
.y2a{bottom:370.621333pt;}
.ya1{bottom:371.426667pt;}
.y64{bottom:377.986667pt;}
.y243{bottom:378.786667pt;}
.y1b8{bottom:379.106667pt;}
.y109{bottom:380.066667pt;}
.y213{bottom:380.386667pt;}
.y149{bottom:381.186667pt;}
.y196{bottom:381.506667pt;}
.y1df{bottom:383.746667pt;}
.y1f6{bottom:383.906667pt;}
.y1d2{bottom:386.786667pt;}
.y7e{bottom:387.426667pt;}
.y29{bottom:389.021333pt;}
.yd9{bottom:389.826667pt;}
.y108{bottom:393.826667pt;}
.yb8{bottom:395.746667pt;}
.y63{bottom:396.386667pt;}
.y242{bottom:397.026667pt;}
.y173{bottom:397.506667pt;}
.y212{bottom:398.786667pt;}
.y1c5{bottom:399.746667pt;}
.y195{bottom:399.906667pt;}
.y1de{bottom:402.146667pt;}
.y7d{bottom:405.826667pt;}
.y28{bottom:407.421333pt;}
.y107{bottom:407.586667pt;}
.y1b7{bottom:413.506667pt;}
.yb7{bottom:414.146667pt;}
.y62{bottom:414.786667pt;}
.y147{bottom:415.426667pt;}
.y211{bottom:417.186667pt;}
.y194{bottom:418.146667pt;}
.y1dd{bottom:420.546667pt;}
.y1a5{bottom:421.186667pt;}
.y104{bottom:421.346667pt;}
.y7c{bottom:424.226667pt;}
.y27{bottom:425.821333pt;}
.yd6{bottom:429.506667pt;}
.y172{bottom:431.746667pt;}
.y1b6{bottom:431.906667pt;}
.y61{bottom:433.186667pt;}
.y241{bottom:433.826667pt;}
.y106{bottom:435.106667pt;}
.y210{bottom:435.426667pt;}
.y193{bottom:436.546667pt;}
.y21d{bottom:437.826667pt;}
.y1dc{bottom:438.946667pt;}
.y7b{bottom:442.626667pt;}
.y26{bottom:444.061333pt;}
.y103{bottom:449.026667pt;}
.yb6{bottom:449.506667pt;}
.y145{bottom:449.826667pt;}
.y1b5{bottom:450.146667pt;}
.y60{bottom:451.426667pt;}
.y240{bottom:452.226667pt;}
.y1cc{bottom:452.546667pt;}
.y20f{bottom:453.826667pt;}
.y1e8{bottom:454.946667pt;}
.y16b{bottom:455.586667pt;}
.y21c{bottom:456.226667pt;}
.y1db{bottom:457.346667pt;}
.ya0{bottom:460.866667pt;}
.y25{bottom:462.461333pt;}
.y101{bottom:462.786667pt;}
.yd5{bottom:463.906667pt;}
.yb5{bottom:467.906667pt;}
.y1b4{bottom:468.546667pt;}
.y5f{bottom:469.826667pt;}
.y23f{bottom:470.466667pt;}
.y192{bottom:470.946667pt;}
.y20e{bottom:472.226667pt;}
.y1f1{bottom:473.346667pt;}
.y21b{bottom:474.626667pt;}
.y102{bottom:476.546667pt;}
.y7a{bottom:476.866667pt;}
.y9f{bottom:479.266667pt;}
.y24{bottom:480.861333pt;}
.yd4{bottom:482.306667pt;}
.y1b3{bottom:486.946667pt;}
.y5e{bottom:488.226667pt;}
.y23e{bottom:488.866667pt;}
.y1e7{bottom:489.186667pt;}
.y100{bottom:490.306667pt;}
.y20d{bottom:490.626667pt;}
.y1da{bottom:491.586667pt;}
.y21a{bottom:492.866667pt;}
.y79{bottom:495.293333pt;}
.y9e{bottom:497.693333pt;}
.y23{bottom:499.261333pt;}
.y1d1{bottom:499.293333pt;}
.yd3{bottom:500.733333pt;}
.y143{bottom:501.053333pt;}
.yb4{bottom:503.453333pt;}
.yfe{bottom:504.093333pt;}
.y191{bottom:505.213333pt;}
.y1b2{bottom:505.373333pt;}
.y5d{bottom:506.653333pt;}
.y23d{bottom:507.293333pt;}
.y1f0{bottom:507.613333pt;}
.y20c{bottom:508.893333pt;}
.y1cb{bottom:510.653333pt;}
.y219{bottom:511.293333pt;}
.y1e6{bottom:513.053333pt;}
.y78{bottom:513.693333pt;}
.y1a4{bottom:515.293333pt;}
.y9d{bottom:516.093333pt;}
.y22{bottom:517.501333pt;}
.yff{bottom:517.853333pt;}
.yd2{bottom:519.133333pt;}
.yb3{bottom:521.853333pt;}
.y1b1{bottom:523.613333pt;}
.y5c{bottom:524.893333pt;}
.y23c{bottom:525.693333pt;}
.y1d9{bottom:526.013333pt;}
.y20b{bottom:527.293333pt;}
.y18f{bottom:529.053333pt;}
.y16a{bottom:529.693333pt;}
.yfc{bottom:531.613333pt;}
.yd8{bottom:531.933333pt;}
.y77{bottom:532.093333pt;}
.y1d0{bottom:533.693333pt;}
.y142{bottom:535.293333pt;}
.y21{bottom:535.901333pt;}
.yd1{bottom:537.373333pt;}
.y1f5{bottom:542.013333pt;}
.y5b{bottom:543.293333pt;}
.y23b{bottom:543.933333pt;}
.y1ef{bottom:544.413333pt;}
.yfd{bottom:545.373333pt;}
.y20a{bottom:545.693333pt;}
.y1a3{bottom:549.693333pt;}
.y9c{bottom:550.333333pt;}
.y1cf{bottom:552.093333pt;}
.y20{bottom:554.301333pt;}
.yd0{bottom:555.773333pt;}
.yb2{bottom:557.213333pt;}
.y1b0{bottom:558.013333pt;}
.yfb{bottom:559.133333pt;}
.y1fa{bottom:560.413333pt;}
.y5a{bottom:561.693333pt;}
.y23a{bottom:562.333333pt;}
.y1ee{bottom:562.813333pt;}
.y218{bottom:563.933333pt;}
.y209{bottom:564.093333pt;}
.y1f4{bottom:565.693333pt;}
.y76{bottom:566.333333pt;}
.y169{bottom:567.933333pt;}
.y1a2{bottom:568.093333pt;}
.y9b{bottom:568.733333pt;}
.y141{bottom:569.693333pt;}
.y1f{bottom:572.701333pt;}
.yfa{bottom:572.893333pt;}
.ycf{bottom:574.173333pt;}
.yb1{bottom:575.613333pt;}
.y59{bottom:580.093333pt;}
.y239{bottom:580.733333pt;}
.y1ae{bottom:581.693333pt;}
.y208{bottom:582.333333pt;}
.y1f9{bottom:584.093333pt;}
.y75{bottom:584.733333pt;}
.y1a1{bottom:586.333333pt;}
.yf9{bottom:586.653333pt;}
.y9a{bottom:587.133333pt;}
.y1e5{bottom:588.733333pt;}
.y1ed{bottom:597.053333pt;}
.y58{bottom:598.333333pt;}
.y238{bottom:599.133333pt;}
.yf5{bottom:600.413333pt;}
.y207{bottom:600.733333pt;}
.y168{bottom:602.333333pt;}
.y74{bottom:603.133333pt;}
.y138{bottom:603.933333pt;}
.y1a0{bottom:604.733333pt;}
.y99{bottom:605.533333pt;}
.y120{bottom:607.773333pt;}
.yce{bottom:608.413333pt;}
.yb0{bottom:610.973333pt;}
.y57{bottom:616.733333pt;}
.y237{bottom:617.373333pt;}
.y206{bottom:619.133333pt;}
.y167{bottom:620.733333pt;}
.y1f3{bottom:621.373333pt;}
.y73{bottom:621.533333pt;}
.y18e{bottom:623.133333pt;}
.y98{bottom:623.773333pt;}
.y1d8{bottom:625.373333pt;}
.y11f{bottom:626.173333pt;}
.ycd{bottom:626.813333pt;}
.yaf{bottom:629.373333pt;}
.y1ec{bottom:631.453333pt;}
.y56{bottom:635.133333pt;}
.y236{bottom:635.773333pt;}
.y1ad{bottom:637.373333pt;}
.y205{bottom:637.533333pt;}
.y166{bottom:639.133333pt;}
.y72{bottom:639.773333pt;}
.y1c2{bottom:641.373333pt;}
.y1ce{bottom:641.533333pt;}
.y97{bottom:642.173333pt;}
.y11e{bottom:644.573333pt;}
.ycc{bottom:645.213333pt;}
.y1d{bottom:647.453333pt;}
.y55{bottom:653.533333pt;}
.y235{bottom:654.173333pt;}
.y1eb{bottom:655.133333pt;}
.yf4{bottom:655.453333pt;}
.y204{bottom:655.773333pt;}
.y18d{bottom:657.373333pt;}
.y165{bottom:657.533333pt;}
.yd7{bottom:658.173333pt;}
.y1d7{bottom:659.773333pt;}
.y11d{bottom:662.973333pt;}
.ycb{bottom:663.613333pt;}
.yae{bottom:664.893333pt;}
.yf3{bottom:669.213333pt;}
.y54{bottom:671.773333pt;}
.y234{bottom:672.573333pt;}
.y71{bottom:674.173333pt;}
.y18c{bottom:675.773333pt;}
.y96{bottom:676.573333pt;}
.y1d6{bottom:678.173333pt;}
.y11c{bottom:681.213333pt;}
.yf2{bottom:683.133333pt;}
.yad{bottom:683.293333pt;}
.y6{bottom:685.693333pt;}
.y1c{bottom:686.653333pt;}
.y53{bottom:690.173333pt;}
.y233{bottom:690.813333pt;}
.y164{bottom:691.773333pt;}
.y70{bottom:692.573333pt;}
.y18b{bottom:694.173333pt;}
.y157{bottom:694.813333pt;}
.y95{bottom:694.973333pt;}
.yca{bottom:697.853333pt;}
.y52{bottom:708.573333pt;}
.y232{bottom:709.213333pt;}
.y163{bottom:710.173333pt;}
.yf1{bottom:710.653333pt;}
.y6f{bottom:710.973333pt;}
.y18a{bottom:712.573333pt;}
.y94{bottom:713.213333pt;}
.yc9{bottom:716.253333pt;}
.yac{bottom:718.653333pt;}
.y1b{bottom:721.053333pt;}
.yf0{bottom:724.413333pt;}
.y51{bottom:726.973333pt;}
.y231{bottom:727.613333pt;}
.y162{bottom:728.573333pt;}
.y6e{bottom:729.213333pt;}
.y1ea{bottom:730.813333pt;}
.y189{bottom:730.973333pt;}
.y93{bottom:731.613333pt;}
.yc8{bottom:734.653333pt;}
.yab{bottom:737.053333pt;}
.yee{bottom:738.173333pt;}
.y137{bottom:739.293333pt;}
.y50{bottom:745.213333pt;}
.y230{bottom:746.053333pt;}
.y1e4{bottom:746.853333pt;}
.y161{bottom:747.013333pt;}
.y6d{bottom:747.653333pt;}
.y1cd{bottom:749.253333pt;}
.y92{bottom:750.053333pt;}
.y5{bottom:751.173333pt;}
.yed{bottom:751.973333pt;}
.yc7{bottom:753.093333pt;}
.y1a{bottom:755.333333pt;}
.y135{bottom:756.773333pt;}
.y4f{bottom:763.653333pt;}
.y22f{bottom:764.293333pt;}
.y160{bottom:765.253333pt;}
.yec{bottom:765.733333pt;}
.y6c{bottom:766.053333pt;}
.y156{bottom:768.293333pt;}
.y186{bottom:769.093333pt;}
.yaa{bottom:771.333333pt;}
.yc6{bottom:771.493333pt;}
.y1ca{bottom:773.733333pt;}
.yeb{bottom:779.493333pt;}
.y202{bottom:781.253333pt;}
.y4e{bottom:782.053333pt;}
.y22e{bottom:782.693333pt;}
.y15f{bottom:783.653333pt;}
.y6b{bottom:784.293333pt;}
.y11b{bottom:787.333333pt;}
.y4{bottom:787.973333pt;}
.y19{bottom:789.733333pt;}
.y133{bottom:791.173333pt;}
.y1c9{bottom:792.133333pt;}
.yea{bottom:793.253333pt;}
.yd{bottom:796.613333pt;}
.y1ac{bottom:799.653333pt;}
.y4d{bottom:800.293333pt;}
.y22d{bottom:801.093333pt;}
.y188{bottom:802.053333pt;}
.y6a{bottom:802.693333pt;}
.y185{bottom:803.333333pt;}
.y11a{bottom:805.733333pt;}
.ye9{bottom:807.013333pt;}
.y18{bottom:808.133333pt;}
.y15e{bottom:818.053333pt;}
.y4c{bottom:818.693333pt;}
.y22c{bottom:819.493333pt;}
.y1c1{bottom:820.453333pt;}
.ye8{bottom:820.773333pt;}
.y69{bottom:821.093333pt;}
.y184{bottom:821.733333pt;}
.yc5{bottom:824.133333pt;}
.y3{bottom:824.613333pt;}
.y12b{bottom:825.413333pt;}
.y17{bottom:826.533333pt;}
.ye7{bottom:834.533333pt;}
.y187{bottom:836.293333pt;}
.y15d{bottom:836.453333pt;}
.y4b{bottom:837.093333pt;}
.y22b{bottom:837.733333pt;}
.y91{bottom:839.493333pt;}
.y183{bottom:840.133333pt;}
.ya9{bottom:842.533333pt;}
.y16{bottom:844.933333pt;}
.ya{bottom:846.373333pt;}
.ye6{bottom:848.293333pt;}
.y15c{bottom:854.693333pt;}
.y68{bottom:855.333333pt;}
.y4a{bottom:855.493333pt;}
.y22a{bottom:856.133333pt;}
.y155{bottom:857.733333pt;}
.y182{bottom:858.533333pt;}
.y90{bottom:860.773333pt;}
.ya8{bottom:860.933333pt;}
.ye5{bottom:862.053333pt;}
.y15{bottom:863.173333pt;}
.y15b{bottom:873.093333pt;}
.y49{bottom:873.733333pt;}
.y229{bottom:874.533333pt;}
.ye1{bottom:875.813333pt;}
.y154{bottom:876.133333pt;}
.yc4{bottom:876.773333pt;}
.y181{bottom:876.933333pt;}
.y1c8{bottom:879.173333pt;}
.y15a{bottom:891.493333pt;}
.y48{bottom:892.133333pt;}
.y228{bottom:892.933333pt;}
.y153{bottom:894.533333pt;}
.y8f{bottom:895.173333pt;}
.y14{bottom:897.573333pt;}
.ydf{bottom:903.333333pt;}
.y127{bottom:910.213333pt;}
.y47{bottom:910.533333pt;}
.y180{bottom:911.173333pt;}
.y152{bottom:912.933333pt;}
.yc3{bottom:913.573333pt;}
.ydd{bottom:917.253333pt;}
.y159{bottom:925.733333pt;}
.y46{bottom:928.933333pt;}
.y8e{bottom:929.573333pt;}
.y13{bottom:931.973333pt;}
.y125{bottom:944.613333pt;}
.y45{bottom:947.173333pt;}
.y151{bottom:947.813333pt;}
.y8d{bottom:947.973333pt;}
.ydc{bottom:950.213333pt;}
.y158{bottom:960.773333pt;}
.y12{bottom:966.213333pt;}
.y8c{bottom:966.373333pt;}
.y44{bottom:982.213333pt;}
.y11{bottom:984.613333pt;}
.y1{bottom:1059.680000pt;}
.hc{height:13.760000pt;}
.h13{height:13.792000pt;}
.hf{height:13.920000pt;}
.h1e{height:16.832000pt;}
.h23{height:18.240000pt;}
.h25{height:18.400000pt;}
.h26{height:18.432000pt;}
.h18{height:20.000000pt;}
.h11{height:27.520000pt;}
.h12{height:27.552000pt;}
.h6{height:31.680000pt;}
.h4{height:32.000000pt;}
.h1d{height:33.600000pt;}
.h1a{height:33.760000pt;}
.h21{height:33.792000pt;}
.he{height:34.945312pt;}
.h28{height:36.640000pt;}
.h29{height:36.800000pt;}
.h16{height:41.280000pt;}
.h17{height:41.312000pt;}
.h10{height:41.440000pt;}
.hb{height:41.687500pt;}
.h19{height:42.866250pt;}
.hd{height:43.265625pt;}
.h2{height:44.437500pt;}
.h7{height:46.593750pt;}
.ha{height:47.217812pt;}
.h20{height:50.432000pt;}
.h1b{height:53.072500pt;}
.h8{height:54.514687pt;}
.h15{height:55.040000pt;}
.h22{height:57.406250pt;}
.h3{height:57.687500pt;}
.h14{height:68.800000pt;}
.h27{height:73.440000pt;}
.h24{height:73.472000pt;}
.h5{height:79.319062pt;}
.h1c{height:84.160000pt;}
.h1f{height:134.720000pt;}
.h9{height:587.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:14.720000pt;}
.wc{width:14.752000pt;}
.w9{width:14.880000pt;}
.wb{width:14.912000pt;}
.w14{width:15.680000pt;}
.w13{width:15.840000pt;}
.w12{width:17.280000pt;}
.w18{width:21.280000pt;}
.w19{width:29.600000pt;}
.w1f{width:52.640000pt;}
.w32{width:54.400000pt;}
.w27{width:56.160000pt;}
.w23{width:56.320000pt;}
.w35{width:56.352000pt;}
.w2a{width:56.480000pt;}
.w31{width:65.280000pt;}
.w29{width:68.032000pt;}
.w5{width:74.106667pt;}
.w37{width:76.992000pt;}
.w34{width:77.600000pt;}
.w1b{width:78.720000pt;}
.w3a{width:78.880000pt;}
.w20{width:87.872000pt;}
.w24{width:99.232000pt;}
.w26{width:103.552000pt;}
.w1e{width:107.200000pt;}
.w3b{width:114.752000pt;}
.w2b{width:135.066667pt;}
.w1c{width:137.146667pt;}
.w38{width:148.826667pt;}
.w2d{width:153.626667pt;}
.wa{width:162.746667pt;}
.wd{width:162.880000pt;}
.w15{width:166.586667pt;}
.w22{width:174.586667pt;}
.we{width:177.626667pt;}
.w2f{width:180.186667pt;}
.w17{width:184.986667pt;}
.w11{width:189.946667pt;}
.wf{width:192.506667pt;}
.w10{width:194.266667pt;}
.w16{width:206.266667pt;}
.w33{width:231.226667pt;}
.w3{width:250.786667pt;}
.w2e{width:259.866667pt;}
.w21{width:269.146667pt;}
.w2c{width:288.346667pt;}
.w7{width:301.346667pt;}
.w6{width:308.546667pt;}
.w36{width:316.346667pt;}
.w28{width:342.106667pt;}
.w25{width:350.266667pt;}
.w1d{width:350.306667pt;}
.w39{width:350.466667pt;}
.w1a{width:391.426667pt;}
.w30{width:393.346667pt;}
.w4{width:448.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x63{left:4.320000pt;}
.x65{left:5.600000pt;}
.xf{left:7.200000pt;}
.x43{left:8.640000pt;}
.x5{left:9.600000pt;}
.x3d{left:11.360000pt;}
.x71{left:12.480000pt;}
.x54{left:13.440000pt;}
.x68{left:15.040000pt;}
.x52{left:16.000000pt;}
.x5d{left:16.960000pt;}
.x64{left:18.080000pt;}
.x2c{left:19.040000pt;}
.x44{left:20.480000pt;}
.x72{left:21.640000pt;}
.x3b{left:23.200000pt;}
.x2b{left:25.120000pt;}
.x5b{left:26.720000pt;}
.x73{left:28.000000pt;}
.x79{left:29.120000pt;}
.x53{left:30.240000pt;}
.x48{left:32.320000pt;}
.x5f{left:34.080000pt;}
.xa6{left:35.040000pt;}
.x6f{left:36.480000pt;}
.x57{left:37.600000pt;}
.x67{left:39.360000pt;}
.x5e{left:40.320000pt;}
.x94{left:41.800000pt;}
.x3f{left:43.680000pt;}
.x59{left:45.760000pt;}
.x39{left:46.720000pt;}
.x3e{left:48.800000pt;}
.x3a{left:50.720000pt;}
.x58{left:52.480000pt;}
.x3c{left:54.560000pt;}
.x14{left:56.480000pt;}
.x2e{left:58.080000pt;}
.x2d{left:59.040000pt;}
.x40{left:63.360000pt;}
.x5a{left:67.680000pt;}
.x55{left:69.120000pt;}
.x56{left:70.240000pt;}
.xa0{left:72.160000pt;}
.x5c{left:81.440000pt;}
.x8{left:86.400000pt;}
.x97{left:87.994667pt;}
.x75{left:88.954667pt;}
.x7c{left:91.232000pt;}
.x9a{left:93.280000pt;}
.x82{left:95.072000pt;}
.x1{left:96.031988pt;}
.x6c{left:96.992000pt;}
.x9b{left:99.871988pt;}
.x88{left:101.951988pt;}
.x8e{left:104.991988pt;}
.x6a{left:107.871988pt;}
.x80{left:110.111988pt;}
.xa1{left:112.191988pt;}
.x85{left:115.231988pt;}
.x7a{left:116.511988pt;}
.x90{left:118.591988pt;}
.xd{left:120.031988pt;}
.x83{left:124.634667pt;}
.x6d{left:128.794667pt;}
.x9d{left:130.394667pt;}
.x10{left:134.586667pt;}
.x81{left:142.106655pt;}
.x3{left:144.026655pt;}
.x87{left:147.354667pt;}
.x11{left:149.466667pt;}
.x45{left:150.426667pt;}
.xa2{left:162.906655pt;}
.x12{left:164.186667pt;}
.x46{left:166.106667pt;}
.x66{left:167.034667pt;}
.x92{left:168.954667pt;}
.x60{left:169.914667pt;}
.x13{left:179.066667pt;}
.x47{left:181.786667pt;}
.x6b{left:184.666655pt;}
.x2f{left:193.786667pt;}
.x7b{left:201.146655pt;}
.x30{left:208.666667pt;}
.x31{left:223.386667pt;}
.x69{left:229.146655pt;}
.x32{left:238.266667pt;}
.x33{left:252.986667pt;}
.xa8{left:259.386655pt;}
.x91{left:262.906655pt;}
.x34{left:267.906667pt;}
.xa7{left:275.586655pt;}
.x35{left:282.626667pt;}
.xe{left:286.786655pt;}
.x9c{left:293.026655pt;}
.x36{left:297.506667pt;}
.x86{left:300.866655pt;}
.x89{left:302.146655pt;}
.x37{left:312.226667pt;}
.x38{left:327.106667pt;}
.x8f{left:328.066655pt;}
.x98{left:329.666667pt;}
.xc{left:330.626655pt;}
.x8c{left:334.306655pt;}
.x74{left:337.826655pt;}
.x15{left:341.826667pt;}
.x6{left:345.186667pt;}
.x49{left:348.386667pt;}
.x96{left:350.946655pt;}
.xb{left:352.226655pt;}
.xa9{left:355.586655pt;}
.x16{left:356.706667pt;}
.x95{left:361.666655pt;}
.x4a{left:363.266667pt;}
.x76{left:366.146667pt;}
.xa{left:368.066655pt;}
.x17{left:371.426667pt;}
.x4b{left:377.986667pt;}
.x8a{left:384.066667pt;}
.x18{left:386.306667pt;}
.x4c{left:392.866667pt;}
.x9{left:395.906667pt;}
.x2{left:396.866655pt;}
.x19{left:401.026667pt;}
.x4d{left:407.586667pt;}
.x9e{left:413.826667pt;}
.x1a{left:415.906667pt;}
.x4e{left:422.466667pt;}
.x1b{left:430.626667pt;}
.x4f{left:437.186667pt;}
.x7d{left:442.146667pt;}
.x1c{left:445.533333pt;}
.xa3{left:446.973333pt;}
.x6e{left:447.933333pt;}
.x50{left:452.093333pt;}
.x1d{left:460.253333pt;}
.x99{left:464.893333pt;}
.x51{left:467.773333pt;}
.x1e{left:475.133333pt;}
.x61{left:488.573333pt;}
.x1f{left:489.853333pt;}
.x9f{left:491.453333pt;}
.x20{left:504.733333pt;}
.x84{left:506.493333pt;}
.x8d{left:517.693333pt;}
.x21{left:519.453333pt;}
.xa4{left:526.493333pt;}
.x22{left:534.333333pt;}
.x77{left:541.373333pt;}
.x4{left:542.973333pt;}
.x8b{left:545.213333pt;}
.x7e{left:546.493333pt;}
.x23{left:549.053333pt;}
.x70{left:555.773333pt;}
.x24{left:563.933333pt;}
.x62{left:568.093333pt;}
.x25{left:578.653333pt;}
.xa5{left:583.293333pt;}
.x26{left:593.533333pt;}
.x78{left:598.333333pt;}
.x7f{left:603.293333pt;}
.x27{left:608.253333pt;}
.x93{left:610.493333pt;}
.x28{left:623.133333pt;}
.x29{left:637.893333pt;}
.x42{left:650.213333pt;}
.x2a{left:652.773333pt;}
.x41{left:654.533333pt;}
.x7{left:719.653333pt;}
}




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