
    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_e5b3b95e7caba3bfbec040a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8b92fe6a2247ad20b81a95bd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_de6ed4aba78dfeb2fd29af71.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_26b7c4ab116155cf07b2a242.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_edbfd3680206e4a52e7cc1db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_52fba23c4896f99d6d947be4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213379;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_4c4ea58668dff287a7732f7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e0fea65775b606e3d008be99.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_76b7246984fe018619427e20.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c4c760db75ee276f12936abb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_098c952debabd40f0ffcb74d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-82.800000px;}
.v3{vertical-align:-24.120000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.000000px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.v6{vertical-align:27.000000px;}
.v2{vertical-align:29.880000px;}
.v9{vertical-align:72.480000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.005040px;}
.ls7{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078240px;}
.ls5{letter-spacing:0.078600px;}
.ls6{letter-spacing:0.091200px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192960px;}
.ls4{letter-spacing:0.201000px;}
.lsf{letter-spacing:0.264000px;}
.ls12{letter-spacing:19.944000px;}
.ls8{letter-spacing:152.400000px;}
.lsc{letter-spacing:266.520000px;}
.ls11{letter-spacing:846.120000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws5{word-spacing:-20.970000px;}
.wsb{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws13{word-spacing:-16.470000px;}
.ws0{word-spacing:-15.089880px;}
.ws1{word-spacing:-14.967480px;}
.ws3{word-spacing:-14.888880px;}
.ws4{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.150000px;}
.ws6{word-spacing:-11.970000px;}
.ws2{word-spacing:-9.610320px;}
.ws7{word-spacing:0.000000px;}
.ws12{word-spacing:94.524000px;}
.ws10{word-spacing:275.937000px;}
.ws11{word-spacing:317.937000px;}
._6{margin-left:-11.016000px;}
._e{margin-left:-4.200000px;}
._a{margin-left:-3.120000px;}
._2{margin-left:-1.080000px;}
._0{width:1.054080px;}
._1{width:2.061240px;}
._c{width:3.384000px;}
._b{width:4.536000px;}
._d{width:5.688000px;}
._5{width:40.824000px;}
._8{width:42.216000px;}
._9{width:194.400000px;}
._4{width:205.713000px;}
._3{width:266.400000px;}
._7{width:846.120000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(32,31,30);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:2.880000px;}
.fs8{font-size:15.120000px;}
.fs9{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:63.000000px;}
.fsc{font-size:63.120000px;}
.fs1{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.120000px;}
.fs3{font-size:83.880000px;}
.fs6{font-size:144.000000px;}
.y6b{bottom:-15.450000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.870000px;}
.y229{bottom:3.900000px;}
.y246{bottom:4.770000px;}
.ye9{bottom:6.450000px;}
.yed{bottom:7.620000px;}
.y210{bottom:7.740000px;}
.yf1{bottom:8.670000px;}
.y5d{bottom:9.210000px;}
.yef{bottom:9.960000px;}
.yf3{bottom:12.570000px;}
.y7b{bottom:12.870000px;}
.y114{bottom:14.220000px;}
.y19c{bottom:17.100000px;}
.y61{bottom:19.470000px;}
.y224{bottom:20.700000px;}
.y22b{bottom:22.050000px;}
.y1ea{bottom:23.310000px;}
.y133{bottom:24.480000px;}
.y77{bottom:24.570000px;}
.y7f{bottom:24.600000px;}
.y213{bottom:25.830000px;}
.y20f{bottom:28.440000px;}
.y7a{bottom:33.570000px;}
.y87{bottom:33.600000px;}
.y134{bottom:34.830000px;}
.y11f{bottom:34.920000px;}
.y139{bottom:34.950000px;}
.y126{bottom:36.000000px;}
.y1f8{bottom:41.400000px;}
.y1de{bottom:42.660000px;}
.y1f2{bottom:43.920000px;}
.y1e9{bottom:44.010000px;}
.y132{bottom:45.180000px;}
.y89{bottom:45.270000px;}
.y7e{bottom:45.300000px;}
.y221{bottom:46.530000px;}
.y212{bottom:46.620000px;}
.ye7{bottom:47.850000px;}
.y19b{bottom:48.270000px;}
.y20e{bottom:49.140000px;}
.y79{bottom:54.270000px;}
.y86{bottom:54.300000px;}
.y138{bottom:55.650000px;}
.y149{bottom:56.340000px;}
.y125{bottom:56.700000px;}
.y2{bottom:56.970000px;}
.y1f7{bottom:63.360000px;}
.y223{bottom:63.390000px;}
.y226{bottom:63.450000px;}
.y1dd{bottom:64.620000px;}
.y1e7{bottom:64.710000px;}
.y22a{bottom:64.740000px;}
.y12f{bottom:65.970000px;}
.y137{bottom:66.000000px;}
.y19a{bottom:66.390000px;}
.y211{bottom:68.580000px;}
.y20d{bottom:69.840000px;}
.y5a{bottom:71.340000px;}
.y82{bottom:74.970000px;}
.y85{bottom:75.000000px;}
.y124{bottom:77.400000px;}
.y1{bottom:77.670000px;}
.y11b{bottom:77.760000px;}
.y1f6{bottom:84.060000px;}
.y195{bottom:84.870000px;}
.y1dc{bottom:85.410000px;}
.y214{bottom:85.440000px;}
.y1db{bottom:86.670000px;}
.y136{bottom:86.700000px;}
.y84{bottom:95.700000px;}
.y123{bottom:98.100000px;}
.y11a{bottom:98.460000px;}
.y8f{bottom:104.670000px;}
.y21b{bottom:106.020000px;}
.y1ec{bottom:106.110000px;}
.y1f5{bottom:106.140000px;}
.y1e0{bottom:107.370000px;}
.y1f4{bottom:107.400000px;}
.y193{bottom:114.660000px;}
.y1d8{bottom:115.020000px;}
.y189{bottom:115.830000px;}
.y111{bottom:115.920000px;}
.y9e{bottom:118.170000px;}
.y122{bottom:118.800000px;}
.y4f{bottom:119.070000px;}
.y119{bottom:119.160000px;}
.ye5{bottom:119.970000px;}
.y81{bottom:120.510000px;}
.y22c{bottom:120.780000px;}
.y167{bottom:121.770000px;}
.y58{bottom:125.100000px;}
.y8e{bottom:125.370000px;}
.y1e1{bottom:126.810000px;}
.y1f1{bottom:127.980000px;}
.yab{bottom:128.070000px;}
.y217{bottom:128.100000px;}
.y1aa{bottom:130.770000px;}
.y20b{bottom:131.970000px;}
.ycb{bottom:133.920000px;}
.y1f{bottom:134.010000px;}
.y65{bottom:135.750000px;}
.y1f3{bottom:136.260000px;}
.yaf{bottom:137.070000px;}
.y215{bottom:138.330000px;}
.y118{bottom:139.860000px;}
.y115{bottom:144.000000px;}
.y16a{bottom:145.170000px;}
.y8d{bottom:146.070000px;}
.y196{bottom:146.880000px;}
.y171{bottom:148.320000px;}
.y1f0{bottom:148.680000px;}
.y206{bottom:148.770000px;}
.y1e5{bottom:148.800000px;}
.y12c{bottom:150.330000px;}
.y101{bottom:151.470000px;}
.y20a{bottom:152.670000px;}
.y242{bottom:152.820000px;}
.y164{bottom:155.700000px;}
.y192{bottom:156.060000px;}
.y188{bottom:157.230000px;}
.y110{bottom:157.320000px;}
.y9d{bottom:159.570000px;}
.y4e{bottom:160.470000px;}
.y25b{bottom:160.830000px;}
.ye4{bottom:161.370000px;}
.y1e{bottom:162.540000px;}
.y166{bottom:163.170000px;}
.y57{bottom:166.500000px;}
.y8c{bottom:166.770000px;}
.y207{bottom:168.210000px;}
.y1ef{bottom:169.380000px;}
.yaa{bottom:169.470000px;}
.y1e4{bottom:169.500000px;}
.y12b{bottom:171.030000px;}
.y1a9{bottom:172.170000px;}
.y163{bottom:173.250000px;}
.y209{bottom:173.370000px;}
.yca{bottom:175.320000px;}
.y1d7{bottom:177.120000px;}
.y63{bottom:177.180000px;}
.y14f{bottom:177.300000px;}
.yae{bottom:178.470000px;}
.y25a{bottom:183.330000px;}
.y241{bottom:183.870000px;}
.y169{bottom:186.570000px;}
.y170{bottom:189.720000px;}
.y1ee{bottom:190.080000px;}
.y1bd{bottom:190.170000px;}
.y1e3{bottom:190.200000px;}
.y1d{bottom:190.980000px;}
.y12a{bottom:191.730000px;}
.y100{bottom:192.870000px;}
.y162{bottom:193.950000px;}
.y21f{bottom:194.070000px;}
.y9c{bottom:195.120000px;}
.y37{bottom:196.110000px;}
.y191{bottom:197.460000px;}
.y187{bottom:198.630000px;}
.y10f{bottom:198.720000px;}
.y208{bottom:200.430000px;}
.y4d{bottom:201.870000px;}
.ye3{bottom:202.770000px;}
.y259{bottom:205.830000px;}
.y56{bottom:207.900000px;}
.y1d6{bottom:208.170000px;}
.y197{bottom:208.860000px;}
.y202{bottom:210.780000px;}
.ya9{bottom:210.870000px;}
.y7d{bottom:212.220000px;}
.y1a8{bottom:213.570000px;}
.y161{bottom:214.650000px;}
.y21e{bottom:214.770000px;}
.y240{bottom:214.920000px;}
.yd6{bottom:216.720000px;}
.y14e{bottom:218.700000px;}
.yad{bottom:219.870000px;}
.y1c{bottom:220.590000px;}
.y228{bottom:221.130000px;}
.y1bc{bottom:221.220000px;}
.yc9{bottom:225.750000px;}
.y131{bottom:227.640000px;}
.y168{bottom:228.000000px;}
.y258{bottom:229.050000px;}
.y201{bottom:231.510000px;}
.yff{bottom:234.300000px;}
.y160{bottom:235.380000px;}
.y21d{bottom:235.470000px;}
.y36{bottom:237.540000px;}
.y1d5{bottom:239.250000px;}
.y190{bottom:239.340000px;}
.y16f{bottom:240.150000px;}
.y186{bottom:240.510000px;}
.y4c{bottom:243.300000px;}
.ye2{bottom:244.200000px;}
.y23f{bottom:246.000000px;}
.y10e{bottom:249.150000px;}
.y55{bottom:249.330000px;}
.y200{bottom:249.690000px;}
.y1fc{bottom:252.210000px;}
.ya8{bottom:252.300000px;}
.y1a7{bottom:255.000000px;}
.y15f{bottom:256.080000px;}
.yd5{bottom:258.150000px;}
.y14d{bottom:260.130000px;}
.y1ed{bottom:260.490000px;}
.yac{bottom:261.300000px;}
.y9b{bottom:263.550000px;}
.y257{bottom:266.490000px;}
.yc8{bottom:267.150000px;}
.y1d4{bottom:270.300000px;}
.y1ff{bottom:270.390000px;}
.y198{bottom:270.870000px;}
.y1b{bottom:271.020000px;}
.y1fb{bottom:272.910000px;}
.y7c{bottom:274.350000px;}
.yfe{bottom:275.700000px;}
.y15e{bottom:276.780000px;}
.y23e{bottom:277.050000px;}
.y35{bottom:278.940000px;}
.ye1{bottom:279.750000px;}
.y18f{bottom:281.100000px;}
.y16e{bottom:281.550000px;}
.y185{bottom:282.270000px;}
.y1bb{bottom:283.350000px;}
.yb3{bottom:284.700000px;}
.y130{bottom:290.460000px;}
.y10d{bottom:290.550000px;}
.y54{bottom:290.730000px;}
.y1fe{bottom:292.350000px;}
.y1fa{bottom:293.610000px;}
.y4b{bottom:293.700000px;}
.y1a6{bottom:296.400000px;}
.y256{bottom:297.570000px;}
.yd4{bottom:299.550000px;}
.y1a{bottom:300.900000px;}
.y1d3{bottom:301.350000px;}
.ya7{bottom:302.700000px;}
.y20c{bottom:303.960000px;}
.y9a{bottom:304.950000px;}
.y23d{bottom:308.100000px;}
.yc7{bottom:308.550000px;}
.y14c{bottom:310.530000px;}
.y1ba{bottom:314.400000px;}
.y15d{bottom:318.900000px;}
.y34{bottom:320.340000px;}
.y18e{bottom:322.500000px;}
.y16d{bottom:322.950000px;}
.y184{bottom:323.670000px;}
.y227{bottom:324.660000px;}
.yfd{bottom:326.100000px;}
.y255{bottom:327.450000px;}
.y148{bottom:328.080000px;}
.y10c{bottom:331.950000px;}
.y53{bottom:332.040000px;}
.y1d2{bottom:332.400000px;}
.y199{bottom:332.880000px;}
.y4a{bottom:335.100000px;}
.y1a5{bottom:337.800000px;}
.y23c{bottom:339.150000px;}
.yfb{bottom:340.950000px;}
.y254{bottom:343.650000px;}
.ya6{bottom:344.100000px;}
.y78{bottom:345.450000px;}
.y99{bottom:346.350000px;}
.ye0{bottom:348.150000px;}
.y19{bottom:349.860000px;}
.yc6{bottom:349.950000px;}
.y12e{bottom:353.280000px;}
.y16c{bottom:358.500000px;}
.y15c{bottom:361.110000px;}
.y33{bottom:361.740000px;}
.y1d1{bottom:363.450000px;}
.y18d{bottom:363.900000px;}
.y1a0{bottom:364.350000px;}
.y253{bottom:366.150000px;}
.yfc{bottom:367.500000px;}
.y14b{bottom:370.200000px;}
.y116{bottom:371.010000px;}
.y10b{bottom:373.350000px;}
.y52{bottom:373.440000px;}
.y183{bottom:374.070000px;}
.yb2{bottom:376.500000px;}
.y1a4{bottom:379.200000px;}
.y18{bottom:379.740000px;}
.yfa{bottom:382.350000px;}
.y49{bottom:385.500000px;}
.y98{bottom:387.750000px;}
.y252{bottom:388.650000px;}
.ydf{bottom:389.550000px;}
.y205{bottom:390.630000px;}
.yc5{bottom:391.350000px;}
.y1d0{bottom:394.500000px;}
.y15b{bottom:396.750000px;}
.y1ab{bottom:399.900000px;}
.y23b{bottom:401.250000px;}
.y32{bottom:403.140000px;}
.y18c{bottom:405.300000px;}
.y19f{bottom:405.750000px;}
.y1b9{bottom:407.550000px;}
.y17{bottom:408.270000px;}
.y105{bottom:408.900000px;}
.y251{bottom:411.150000px;}
.y14a{bottom:412.410000px;}
.y10a{bottom:414.750000px;}
.y182{bottom:415.470000px;}
.y76{bottom:417.360000px;}
.yf8{bottom:417.900000px;}
.y1a3{bottom:420.600000px;}
.yf9{bottom:423.750000px;}
.y1cf{bottom:425.550000px;}
.y48{bottom:426.900000px;}
.y225{bottom:428.160000px;}
.y97{bottom:429.150000px;}
.yde{bottom:430.950000px;}
.y23a{bottom:432.300000px;}
.yc4{bottom:432.750000px;}
.y250{bottom:433.650000px;}
.y51{bottom:435.540000px;}
.y16{bottom:436.710000px;}
.y12d{bottom:436.800000px;}
.y1b8{bottom:438.600000px;}
.y31{bottom:444.540000px;}
.y18b{bottom:446.700000px;}
.y19e{bottom:447.150000px;}
.y147{bottom:454.530000px;}
.y109{bottom:456.150000px;}
.y1ce{bottom:456.600000px;}
.y181{bottom:457.320000px;}
.yf7{bottom:459.300000px;}
.y1a2{bottom:462.000000px;}
.y239{bottom:463.350000px;}
.y15{bottom:465.150000px;}
.y60{bottom:466.920000px;}
.y1eb{bottom:467.400000px;}
.ya5{bottom:468.300000px;}
.y1b7{bottom:469.650000px;}
.y96{bottom:470.550000px;}
.ydd{bottom:472.350000px;}
.y62{bottom:472.860000px;}
.y75{bottom:473.700000px;}
.yc3{bottom:474.150000px;}
.y47{bottom:477.300000px;}
.y24f{bottom:478.650000px;}
.y30{bottom:485.940000px;}
.y6a{bottom:487.110000px;}
.y1cd{bottom:487.650000px;}
.y19d{bottom:488.550000px;}
.y18a{bottom:493.230000px;}
.y14{bottom:493.590000px;}
.y238{bottom:494.400000px;}
.y194{bottom:494.460000px;}
.y108{bottom:497.550000px;}
.y180{bottom:499.080000px;}
.y121{bottom:499.710000px;}
.yf6{bottom:500.700000px;}
.y24e{bottom:501.150000px;}
.y1a1{bottom:503.400000px;}
.y5f{bottom:507.090000px;}
.y69{bottom:507.810000px;}
.ya4{bottom:509.700000px;}
.y146{bottom:510.870000px;}
.y95{bottom:511.950000px;}
.ydc{bottom:513.750000px;}
.yc2{bottom:515.550000px;}
.y46{bottom:518.700000px;}
.y13{bottom:522.030000px;}
.y24d{bottom:523.650000px;}
.y237{bottom:525.450000px;}
.y2f{bottom:527.340000px;}
.y5e{bottom:527.790000px;}
.y68{bottom:528.510000px;}
.y21c{bottom:531.660000px;}
.y1b6{bottom:531.750000px;}
.y74{bottom:533.100000px;}
.y107{bottom:538.950000px;}
.y17f{bottom:540.480000px;}
.y129{bottom:541.830000px;}
.yf5{bottom:542.100000px;}
.y24c{bottom:546.180000px;}
.y67{bottom:549.210000px;}
.ydb{bottom:549.300000px;}
.y1cc{bottom:549.750000px;}
.y12{bottom:550.560000px;}
.ya3{bottom:551.100000px;}
.y94{bottom:553.350000px;}
.y236{bottom:556.500000px;}
.yc1{bottom:556.950000px;}
.y45{bottom:560.100000px;}
.y1b5{bottom:562.800000px;}
.y165{bottom:565.950000px;}
.y24b{bottom:568.680000px;}
.y145{bottom:570.270000px;}
.y73{bottom:574.500000px;}
.y204{bottom:576.930000px;}
.y2e{bottom:577.740000px;}
.y66{bottom:578.910000px;}
.y11{bottom:579.000000px;}
.y106{bottom:580.350000px;}
.y1cb{bottom:580.800000px;}
.y17e{bottom:581.880000px;}
.y59{bottom:583.200000px;}
.y104{bottom:583.500000px;}
.y128{bottom:583.950000px;}
.y235{bottom:587.550000px;}
.y24a{bottom:591.180000px;}
.y1e2{bottom:591.600000px;}
.ya2{bottom:592.500000px;}
.y222{bottom:593.760000px;}
.y1b4{bottom:593.850000px;}
.y93{bottom:594.750000px;}
.yd3{bottom:598.350000px;}
.y44{bottom:601.500000px;}
.yc0{bottom:607.350000px;}
.y10{bottom:607.440000px;}
.y144{bottom:611.670000px;}
.y1ca{bottom:611.850000px;}
.y5c{bottom:613.110000px;}
.y249{bottom:613.680000px;}
.yda{bottom:613.830000px;}
.y72{bottom:615.900000px;}
.y2d{bottom:619.140000px;}
.y15a{bottom:621.750000px;}
.y17d{bottom:623.280000px;}
.y103{bottom:624.900000px;}
.yf0{bottom:625.950000px;}
.y127{bottom:626.070000px;}
.y234{bottom:627.600000px;}
.y64{bottom:629.310000px;}
.y5b{bottom:633.810000px;}
.ya1{bottom:633.900000px;}
.yf{bottom:635.880000px;}
.y92{bottom:636.150000px;}
.y248{bottom:636.180000px;}
.yd2{bottom:639.750000px;}
.y43{bottom:642.900000px;}
.ybf{bottom:648.780000px;}
.y143{bottom:653.100000px;}
.y1e8{bottom:653.730000px;}
.y233{bottom:654.810000px;}
.y1b3{bottom:655.980000px;}
.y71{bottom:657.330000px;}
.y247{bottom:658.680000px;}
.y2c{bottom:660.570000px;}
.y159{bottom:663.180000px;}
.ye{bottom:664.440000px;}
.y102{bottom:666.330000px;}
.y117{bottom:668.310000px;}
.ye6{bottom:672.660000px;}
.y17c{bottom:673.710000px;}
.y1c9{bottom:673.980000px;}
.ya0{bottom:675.330000px;}
.y91{bottom:677.580000px;}
.yd1{bottom:681.180000px;}
.y245{bottom:681.900000px;}
.y42{bottom:684.330000px;}
.y1b2{bottom:687.030000px;}
.yee{bottom:687.510000px;}
.yeb{bottom:688.110000px;}
.ybe{bottom:690.180000px;}
.y142{bottom:694.500000px;}
.y220{bottom:697.290000px;}
.ye8{bottom:699.810000px;}
.y203{bottom:701.160000px;}
.y2b{bottom:701.970000px;}
.y158{bottom:704.580000px;}
.y1c8{bottom:705.030000px;}
.y50{bottom:707.730000px;}
.yea{bottom:708.810000px;}
.y90{bottom:708.900000px;}
.y120{bottom:710.430000px;}
.y17b{bottom:715.110000px;}
.y1e6{bottom:715.830000px;}
.y9f{bottom:716.730000px;}
.y1b1{bottom:718.080000px;}
.y244{bottom:719.340000px;}
.yd{bottom:720.960000px;}
.yd0{bottom:722.580000px;}
.y41{bottom:725.730000px;}
.y8b{bottom:726.450000px;}
.ybd{bottom:731.580000px;}
.y141{bottom:735.900000px;}
.y1c7{bottom:736.080000px;}
.y2a{bottom:743.370000px;}
.y157{bottom:745.980000px;}
.y16b{bottom:749.130000px;}
.yc{bottom:752.010000px;}
.yec{bottom:752.310000px;}
.y11e{bottom:752.550000px;}
.y17a{bottom:756.510000px;}
.y70{bottom:758.130000px;}
.ycf{bottom:763.980000px;}
.y40{bottom:767.130000px;}
.y243{bottom:769.740000px;}
.ybc{bottom:772.980000px;}
.y140{bottom:777.300000px;}
.y1b0{bottom:780.180000px;}
.y219{bottom:783.960000px;}
.y29{bottom:784.770000px;}
.y156{bottom:787.380000px;}
.y1ad{bottom:790.530000px;}
.y1c6{bottom:798.180000px;}
.y179{bottom:798.360000px;}
.y1df{bottom:798.630000px;}
.y6f{bottom:799.530000px;}
.yb{bottom:801.060000px;}
.yce{bottom:805.380000px;}
.y3f{bottom:808.530000px;}
.y1af{bottom:811.230000px;}
.ybb{bottom:814.380000px;}
.y11d{bottom:815.460000px;}
.yf4{bottom:817.740000px;}
.yf2{bottom:817.830000px;}
.y13f{bottom:818.700000px;}
.yd9{bottom:822.930000px;}
.y28{bottom:826.170000px;}
.y155{bottom:828.780000px;}
.y1c5{bottom:829.230000px;}
.y1ac{bottom:831.930000px;}
.ya{bottom:838.140000px;}
.y178{bottom:840.120000px;}
.y6e{bottom:840.930000px;}
.y1ae{bottom:842.280000px;}
.y1f9{bottom:846.060000px;}
.ycd{bottom:846.780000px;}
.y3e{bottom:849.930000px;}
.yba{bottom:855.780000px;}
.y11c{bottom:857.580000px;}
.y13e{bottom:860.100000px;}
.y1c4{bottom:860.280000px;}
.y27{bottom:867.570000px;}
.y154{bottom:870.180000px;}
.yd8{bottom:873.330000px;}
.y177{bottom:881.520000px;}
.y6d{bottom:882.330000px;}
.y9{bottom:883.590000px;}
.ycc{bottom:888.180000px;}
.y3d{bottom:891.330000px;}
.y232{bottom:894.030000px;}
.yb9{bottom:897.180000px;}
.y113{bottom:899.700000px;}
.y13d{bottom:901.500000px;}
.y26{bottom:908.970000px;}
.y8a{bottom:910.050000px;}
.y153{bottom:911.580000px;}
.y8{bottom:919.770000px;}
.y1c3{bottom:922.380000px;}
.y6c{bottom:923.730000px;}
.y231{bottom:925.080000px;}
.y21a{bottom:928.860000px;}
.y176{bottom:931.920000px;}
.y3c{bottom:932.730000px;}
.yb8{bottom:938.580000px;}
.y13c{bottom:942.900000px;}
.y1da{bottom:943.530000px;}
.y25{bottom:950.370000px;}
.y152{bottom:952.890000px;}
.y1c2{bottom:953.430000px;}
.y112{bottom:956.040000px;}
.yb1{bottom:965.040000px;}
.y175{bottom:973.320000px;}
.y7{bottom:974.040000px;}
.yb7{bottom:979.890000px;}
.y88{bottom:981.150000px;}
.y13b{bottom:984.300000px;}
.y1c1{bottom:984.390000px;}
.y230{bottom:987.090000px;}
.y216{bottom:990.870000px;}
.y24{bottom:991.770000px;}
.y151{bottom:994.290000px;}
.yb0{bottom:1006.440000px;}
.y6{bottom:1010.220000px;}
.y174{bottom:1014.630000px;}
.y3b{bottom:1015.440000px;}
.y22f{bottom:1018.140000px;}
.yb6{bottom:1021.290000px;}
.y23{bottom:1027.320000px;}
.y150{bottom:1029.840000px;}
.y13a{bottom:1034.700000px;}
.y83{bottom:1043.250000px;}
.y1c0{bottom:1046.490000px;}
.y1d9{bottom:1047.750000px;}
.yd7{bottom:1047.840000px;}
.y22e{bottom:1049.190000px;}
.y135{bottom:1052.250000px;}
.y218{bottom:1052.970000px;}
.y173{bottom:1056.030000px;}
.y3a{bottom:1056.840000px;}
.y5{bottom:1062.330000px;}
.yb5{bottom:1062.690000px;}
.y1bf{bottom:1077.570000px;}
.y22{bottom:1084.230000px;}
.y22d{bottom:1089.270000px;}
.y4{bottom:1092.600000px;}
.y1fd{bottom:1094.400000px;}
.y172{bottom:1097.910000px;}
.y39{bottom:1098.270000px;}
.yb4{bottom:1104.120000px;}
.y1be{bottom:1108.620000px;}
.y21{bottom:1112.670000px;}
.y3{bottom:1122.750000px;}
.y38{bottom:1139.670000px;}
.y20{bottom:1141.110000px;}
.h27{height:20.700000px;}
.h29{height:20.730000px;}
.h3f{height:22.500000px;}
.h40{height:22.530000px;}
.h19{height:28.260000px;}
.h1c{height:29.430000px;}
.h1b{height:30.420000px;}
.h1a{height:32.760000px;}
.h11{height:41.400000px;}
.h20{height:41.430000px;}
.h7{height:46.968223px;}
.h2c{height:61.831055px;}
.h2d{height:61.948828px;}
.h23{height:62.010000px;}
.h16{height:62.100000px;}
.h13{height:62.130000px;}
.h9{height:64.657617px;}
.h18{height:64.800000px;}
.h3{height:65.526152px;}
.hc{height:65.531250px;}
.h4{height:66.013770px;}
.h41{height:66.394687px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h12{height:71.100000px;}
.hb{height:72.562500px;}
.he{height:72.683438px;}
.h28{height:73.991602px;}
.h30{height:74.004654px;}
.h2a{height:74.111602px;}
.h22{height:82.800000px;}
.h24{height:82.830000px;}
.h6{height:82.878047px;}
.hf{height:84.330000px;}
.h5{height:84.535312px;}
.h3a{height:86.670000px;}
.hd{height:88.200000px;}
.h14{height:91.710000px;}
.h2f{height:103.500000px;}
.h25{height:103.530000px;}
.h15{height:112.530000px;}
.h33{height:124.200000px;}
.h35{height:124.230000px;}
.h26{height:125.730000px;}
.h2e{height:134.311055px;}
.h31{height:144.900000px;}
.ha{height:145.125000px;}
.h3b{height:165.630000px;}
.h1f{height:167.790000px;}
.h17{height:183.600000px;}
.h38{height:186.300000px;}
.h39{height:190.200000px;}
.h10{height:193.950000px;}
.h34{height:206.910000px;}
.h32{height:207.030000px;}
.h1e{height:230.670000px;}
.h37{height:248.340000px;}
.h3c{height:252.300000px;}
.h36{height:310.440000px;}
.h2b{height:354.330000px;}
.h21{height:354.900000px;}
.h1d{height:754.980000px;}
.h3d{height:892.980000px;}
.h3e{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:38.250000px;}
.w17{width:53.190000px;}
.w2a{width:56.700000px;}
.w29{width:56.730000px;}
.w1f{width:58.590000px;}
.w16{width:64.980000px;}
.w14{width:84.600000px;}
.w11{width:85.050000px;}
.we{width:85.080000px;}
.w1e{width:85.140000px;}
.w15{width:85.440000px;}
.w1c{width:93.330000px;}
.w1b{width:107.220000px;}
.w2c{width:108.180000px;}
.w1d{width:112.080000px;}
.w21{width:117.030000px;}
.wf{width:138.150000px;}
.w2e{width:142.200000px;}
.w12{width:148.890000px;}
.w23{width:152.550000px;}
.w6{width:159.690000px;}
.wa{width:167.220000px;}
.wb{width:167.490000px;}
.w9{width:167.760000px;}
.w8{width:180.270000px;}
.w18{width:191.370000px;}
.w19{width:200.550000px;}
.w5{width:204.570000px;}
.w13{width:233.940000px;}
.w2b{width:239.700000px;}
.w2d{width:247.530000px;}
.w1a{width:255.810000px;}
.wd{width:286.470000px;}
.w10{width:297.690000px;}
.wc{width:319.230000px;}
.w3{width:362.340000px;}
.w4{width:363.960000px;}
.w22{width:425.310000px;}
.w24{width:436.020000px;}
.w7{width:520.620000px;}
.w20{width:657.360000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w27{width:1262.879981px;}
.w25{width:1262.880000px;}
.w26{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:8.130000px;}
.x21{left:9.540000px;}
.x7{left:10.830000px;}
.x20{left:12.510000px;}
.x37{left:14.850000px;}
.x25{left:16.290000px;}
.x2c{left:18.000000px;}
.x34{left:19.620000px;}
.x26{left:20.790000px;}
.x23{left:22.230000px;}
.x27{left:23.760000px;}
.x24{left:26.730000px;}
.x3c{left:29.340000px;}
.x11{left:31.860000px;}
.x38{left:37.800000px;}
.x39{left:40.230000px;}
.x15{left:41.730000px;}
.x3a{left:43.650000px;}
.x3b{left:46.620000px;}
.x32{left:48.960000px;}
.x17{left:51.270000px;}
.xe{left:53.460000px;}
.x57{left:59.670000px;}
.x30{left:69.060000px;}
.xa{left:73.080000px;}
.x5c{left:93.690000px;}
.x2e{left:95.700000px;}
.x1d{left:100.980000px;}
.x3{left:106.379987px;}
.x1a{left:109.620000px;}
.x4{left:111.870000px;}
.x6{left:122.699987px;}
.x40{left:127.379987px;}
.x59{left:134.190000px;}
.x46{left:144.630000px;}
.x2{left:148.979987px;}
.x5{left:163.200000px;}
.x1c{left:180.839987px;}
.x1e{left:186.060000px;}
.x5a{left:198.840000px;}
.x47{left:201.360000px;}
.x5b{left:207.840000px;}
.x41{left:212.700000px;}
.x53{left:227.100000px;}
.x3e{left:231.840000px;}
.x58{left:239.340000px;}
.x3f{left:249.930000px;}
.x28{left:255.270000px;}
.x48{left:258.060000px;}
.x10{left:266.070000px;}
.x8{left:275.789987px;}
.x2f{left:297.750000px;}
.x49{left:314.760000px;}
.x1f{left:324.300000px;}
.x54{left:346.080000px;}
.x14{left:354.240000px;}
.x16{left:371.759987px;}
.x33{left:404.970000px;}
.x4a{left:428.160000px;}
.x44{left:440.519987px;}
.x55{left:454.260000px;}
.x1b{left:480.690000px;}
.x4b{left:484.860000px;}
.x29{left:489.210000px;}
.x31{left:498.300000px;}
.x4c{left:541.560000px;}
.x9{left:549.630000px;}
.xb{left:560.489987px;}
.x2a{left:573.810000px;}
.x4d{left:598.260000px;}
.x18{left:607.589987px;}
.x35{left:610.380000px;}
.x19{left:616.589987px;}
.xd{left:622.709987px;}
.x42{left:638.010000px;}
.x43{left:648.720000px;}
.xc{left:651.959987px;}
.x4e{left:654.990000px;}
.x2b{left:659.250000px;}
.x36{left:695.520000px;}
.x56{left:701.790000px;}
.x22{left:707.040000px;}
.x4f{left:711.690000px;}
.x2d{left:724.230000px;}
.x13{left:756.719987px;}
.x3d{left:765.719987px;}
.x12{left:768.689987px;}
.x1{left:777.689987px;}
.x50{left:825.090000px;}
.x51{left:881.790000px;}
.x52{left:938.490000px;}
.x45{left:1138.589981px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v3{vertical-align:-21.440000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.000000pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.v6{vertical-align:24.000000pt;}
.v2{vertical-align:26.560000pt;}
.v9{vertical-align:64.426667pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.004480pt;}
.ls7{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069547pt;}
.ls5{letter-spacing:0.069867pt;}
.ls6{letter-spacing:0.081067pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.171520pt;}
.ls4{letter-spacing:0.178667pt;}
.lsf{letter-spacing:0.234667pt;}
.ls12{letter-spacing:17.728000pt;}
.ls8{letter-spacing:135.466667pt;}
.lsc{letter-spacing:236.906667pt;}
.ls11{letter-spacing:752.106667pt;}
.wse{word-spacing:-64.000000pt;}
.ws5{word-spacing:-18.640000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws13{word-spacing:-14.640000pt;}
.ws0{word-spacing:-13.413227pt;}
.ws1{word-spacing:-13.304427pt;}
.ws3{word-spacing:-13.234560pt;}
.ws4{word-spacing:-12.000000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws6{word-spacing:-10.640000pt;}
.ws2{word-spacing:-8.542507pt;}
.ws7{word-spacing:0.000000pt;}
.ws12{word-spacing:84.021333pt;}
.ws10{word-spacing:245.277333pt;}
.ws11{word-spacing:282.610667pt;}
._6{margin-left:-9.792000pt;}
._e{margin-left:-3.733333pt;}
._a{margin-left:-2.773333pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.936960pt;}
._1{width:1.832213pt;}
._c{width:3.008000pt;}
._b{width:4.032000pt;}
._d{width:5.056000pt;}
._5{width:36.288000pt;}
._8{width:37.525333pt;}
._9{width:172.800000pt;}
._4{width:182.856000pt;}
._3{width:236.800000pt;}
._7{width:752.106667pt;}
.fsd{font-size:2.560000pt;}
.fs8{font-size:13.440000pt;}
.fs9{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:56.000000pt;}
.fsc{font-size:56.106667pt;}
.fs1{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.106667pt;}
.fs3{font-size:74.560000pt;}
.fs6{font-size:128.000000pt;}
.y6b{bottom:-13.733333pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:3.440000pt;}
.y229{bottom:3.466667pt;}
.y246{bottom:4.240000pt;}
.ye9{bottom:5.733333pt;}
.yed{bottom:6.773333pt;}
.y210{bottom:6.880000pt;}
.yf1{bottom:7.706667pt;}
.y5d{bottom:8.186667pt;}
.yef{bottom:8.853333pt;}
.yf3{bottom:11.173333pt;}
.y7b{bottom:11.440000pt;}
.y114{bottom:12.640000pt;}
.y19c{bottom:15.200000pt;}
.y61{bottom:17.306667pt;}
.y224{bottom:18.400000pt;}
.y22b{bottom:19.600000pt;}
.y1ea{bottom:20.720000pt;}
.y133{bottom:21.760000pt;}
.y77{bottom:21.840000pt;}
.y7f{bottom:21.866667pt;}
.y213{bottom:22.960000pt;}
.y20f{bottom:25.280000pt;}
.y7a{bottom:29.840000pt;}
.y87{bottom:29.866667pt;}
.y134{bottom:30.960000pt;}
.y11f{bottom:31.040000pt;}
.y139{bottom:31.066667pt;}
.y126{bottom:32.000000pt;}
.y1f8{bottom:36.800000pt;}
.y1de{bottom:37.920000pt;}
.y1f2{bottom:39.040000pt;}
.y1e9{bottom:39.120000pt;}
.y132{bottom:40.160000pt;}
.y89{bottom:40.240000pt;}
.y7e{bottom:40.266667pt;}
.y221{bottom:41.360000pt;}
.y212{bottom:41.440000pt;}
.ye7{bottom:42.533333pt;}
.y19b{bottom:42.906667pt;}
.y20e{bottom:43.680000pt;}
.y79{bottom:48.240000pt;}
.y86{bottom:48.266667pt;}
.y138{bottom:49.466667pt;}
.y149{bottom:50.080000pt;}
.y125{bottom:50.400000pt;}
.y2{bottom:50.640000pt;}
.y1f7{bottom:56.320000pt;}
.y223{bottom:56.346667pt;}
.y226{bottom:56.400000pt;}
.y1dd{bottom:57.440000pt;}
.y1e7{bottom:57.520000pt;}
.y22a{bottom:57.546667pt;}
.y12f{bottom:58.640000pt;}
.y137{bottom:58.666667pt;}
.y19a{bottom:59.013333pt;}
.y211{bottom:60.960000pt;}
.y20d{bottom:62.080000pt;}
.y5a{bottom:63.413333pt;}
.y82{bottom:66.640000pt;}
.y85{bottom:66.666667pt;}
.y124{bottom:68.800000pt;}
.y1{bottom:69.040000pt;}
.y11b{bottom:69.120000pt;}
.y1f6{bottom:74.720000pt;}
.y195{bottom:75.440000pt;}
.y1dc{bottom:75.920000pt;}
.y214{bottom:75.946667pt;}
.y1db{bottom:77.040000pt;}
.y136{bottom:77.066667pt;}
.y84{bottom:85.066667pt;}
.y123{bottom:87.200000pt;}
.y11a{bottom:87.520000pt;}
.y8f{bottom:93.040000pt;}
.y21b{bottom:94.240000pt;}
.y1ec{bottom:94.320000pt;}
.y1f5{bottom:94.346667pt;}
.y1e0{bottom:95.440000pt;}
.y1f4{bottom:95.466667pt;}
.y193{bottom:101.920000pt;}
.y1d8{bottom:102.240000pt;}
.y189{bottom:102.960000pt;}
.y111{bottom:103.040000pt;}
.y9e{bottom:105.040000pt;}
.y122{bottom:105.600000pt;}
.y4f{bottom:105.840000pt;}
.y119{bottom:105.920000pt;}
.ye5{bottom:106.640000pt;}
.y81{bottom:107.120000pt;}
.y22c{bottom:107.360000pt;}
.y167{bottom:108.240000pt;}
.y58{bottom:111.200000pt;}
.y8e{bottom:111.440000pt;}
.y1e1{bottom:112.720000pt;}
.y1f1{bottom:113.760000pt;}
.yab{bottom:113.840000pt;}
.y217{bottom:113.866667pt;}
.y1aa{bottom:116.240000pt;}
.y20b{bottom:117.306667pt;}
.ycb{bottom:119.040000pt;}
.y1f{bottom:119.120000pt;}
.y65{bottom:120.666667pt;}
.y1f3{bottom:121.120000pt;}
.yaf{bottom:121.840000pt;}
.y215{bottom:122.960000pt;}
.y118{bottom:124.320000pt;}
.y115{bottom:128.000000pt;}
.y16a{bottom:129.040000pt;}
.y8d{bottom:129.840000pt;}
.y196{bottom:130.560000pt;}
.y171{bottom:131.840000pt;}
.y1f0{bottom:132.160000pt;}
.y206{bottom:132.240000pt;}
.y1e5{bottom:132.266667pt;}
.y12c{bottom:133.626667pt;}
.y101{bottom:134.640000pt;}
.y20a{bottom:135.706667pt;}
.y242{bottom:135.840000pt;}
.y164{bottom:138.400000pt;}
.y192{bottom:138.720000pt;}
.y188{bottom:139.760000pt;}
.y110{bottom:139.840000pt;}
.y9d{bottom:141.840000pt;}
.y4e{bottom:142.640000pt;}
.y25b{bottom:142.960000pt;}
.ye4{bottom:143.440000pt;}
.y1e{bottom:144.480000pt;}
.y166{bottom:145.040000pt;}
.y57{bottom:148.000000pt;}
.y8c{bottom:148.240000pt;}
.y207{bottom:149.520000pt;}
.y1ef{bottom:150.560000pt;}
.yaa{bottom:150.640000pt;}
.y1e4{bottom:150.666667pt;}
.y12b{bottom:152.026667pt;}
.y1a9{bottom:153.040000pt;}
.y163{bottom:154.000000pt;}
.y209{bottom:154.106667pt;}
.yca{bottom:155.840000pt;}
.y1d7{bottom:157.440000pt;}
.y63{bottom:157.493333pt;}
.y14f{bottom:157.600000pt;}
.yae{bottom:158.640000pt;}
.y25a{bottom:162.960000pt;}
.y241{bottom:163.440000pt;}
.y169{bottom:165.840000pt;}
.y170{bottom:168.640000pt;}
.y1ee{bottom:168.960000pt;}
.y1bd{bottom:169.040000pt;}
.y1e3{bottom:169.066667pt;}
.y1d{bottom:169.760000pt;}
.y12a{bottom:170.426667pt;}
.y100{bottom:171.440000pt;}
.y162{bottom:172.400000pt;}
.y21f{bottom:172.506667pt;}
.y9c{bottom:173.440000pt;}
.y37{bottom:174.320000pt;}
.y191{bottom:175.520000pt;}
.y187{bottom:176.560000pt;}
.y10f{bottom:176.640000pt;}
.y208{bottom:178.160000pt;}
.y4d{bottom:179.440000pt;}
.ye3{bottom:180.240000pt;}
.y259{bottom:182.960000pt;}
.y56{bottom:184.800000pt;}
.y1d6{bottom:185.040000pt;}
.y197{bottom:185.653333pt;}
.y202{bottom:187.360000pt;}
.ya9{bottom:187.440000pt;}
.y7d{bottom:188.640000pt;}
.y1a8{bottom:189.840000pt;}
.y161{bottom:190.800000pt;}
.y21e{bottom:190.906667pt;}
.y240{bottom:191.040000pt;}
.yd6{bottom:192.640000pt;}
.y14e{bottom:194.400000pt;}
.yad{bottom:195.440000pt;}
.y1c{bottom:196.080000pt;}
.y228{bottom:196.560000pt;}
.y1bc{bottom:196.640000pt;}
.yc9{bottom:200.666667pt;}
.y131{bottom:202.346667pt;}
.y168{bottom:202.666667pt;}
.y258{bottom:203.600000pt;}
.y201{bottom:205.786667pt;}
.yff{bottom:208.266667pt;}
.y160{bottom:209.226667pt;}
.y21d{bottom:209.306667pt;}
.y36{bottom:211.146667pt;}
.y1d5{bottom:212.666667pt;}
.y190{bottom:212.746667pt;}
.y16f{bottom:213.466667pt;}
.y186{bottom:213.786667pt;}
.y4c{bottom:216.266667pt;}
.ye2{bottom:217.066667pt;}
.y23f{bottom:218.666667pt;}
.y10e{bottom:221.466667pt;}
.y55{bottom:221.626667pt;}
.y200{bottom:221.946667pt;}
.y1fc{bottom:224.186667pt;}
.ya8{bottom:224.266667pt;}
.y1a7{bottom:226.666667pt;}
.y15f{bottom:227.626667pt;}
.yd5{bottom:229.466667pt;}
.y14d{bottom:231.226667pt;}
.y1ed{bottom:231.546667pt;}
.yac{bottom:232.266667pt;}
.y9b{bottom:234.266667pt;}
.y257{bottom:236.880000pt;}
.yc8{bottom:237.466667pt;}
.y1d4{bottom:240.266667pt;}
.y1ff{bottom:240.346667pt;}
.y198{bottom:240.773333pt;}
.y1b{bottom:240.906667pt;}
.y1fb{bottom:242.586667pt;}
.y7c{bottom:243.866667pt;}
.yfe{bottom:245.066667pt;}
.y15e{bottom:246.026667pt;}
.y23e{bottom:246.266667pt;}
.y35{bottom:247.946667pt;}
.ye1{bottom:248.666667pt;}
.y18f{bottom:249.866667pt;}
.y16e{bottom:250.266667pt;}
.y185{bottom:250.906667pt;}
.y1bb{bottom:251.866667pt;}
.yb3{bottom:253.066667pt;}
.y130{bottom:258.186667pt;}
.y10d{bottom:258.266667pt;}
.y54{bottom:258.426667pt;}
.y1fe{bottom:259.866667pt;}
.y1fa{bottom:260.986667pt;}
.y4b{bottom:261.066667pt;}
.y1a6{bottom:263.466667pt;}
.y256{bottom:264.506667pt;}
.yd4{bottom:266.266667pt;}
.y1a{bottom:267.466667pt;}
.y1d3{bottom:267.866667pt;}
.ya7{bottom:269.066667pt;}
.y20c{bottom:270.186667pt;}
.y9a{bottom:271.066667pt;}
.y23d{bottom:273.866667pt;}
.yc7{bottom:274.266667pt;}
.y14c{bottom:276.026667pt;}
.y1ba{bottom:279.466667pt;}
.y15d{bottom:283.466667pt;}
.y34{bottom:284.746667pt;}
.y18e{bottom:286.666667pt;}
.y16d{bottom:287.066667pt;}
.y184{bottom:287.706667pt;}
.y227{bottom:288.586667pt;}
.yfd{bottom:289.866667pt;}
.y255{bottom:291.066667pt;}
.y148{bottom:291.626667pt;}
.y10c{bottom:295.066667pt;}
.y53{bottom:295.146667pt;}
.y1d2{bottom:295.466667pt;}
.y199{bottom:295.893333pt;}
.y4a{bottom:297.866667pt;}
.y1a5{bottom:300.266667pt;}
.y23c{bottom:301.466667pt;}
.yfb{bottom:303.066667pt;}
.y254{bottom:305.466667pt;}
.ya6{bottom:305.866667pt;}
.y78{bottom:307.066667pt;}
.y99{bottom:307.866667pt;}
.ye0{bottom:309.466667pt;}
.y19{bottom:310.986667pt;}
.yc6{bottom:311.066667pt;}
.y12e{bottom:314.026667pt;}
.y16c{bottom:318.666667pt;}
.y15c{bottom:320.986667pt;}
.y33{bottom:321.546667pt;}
.y1d1{bottom:323.066667pt;}
.y18d{bottom:323.466667pt;}
.y1a0{bottom:323.866667pt;}
.y253{bottom:325.466667pt;}
.yfc{bottom:326.666667pt;}
.y14b{bottom:329.066667pt;}
.y116{bottom:329.786667pt;}
.y10b{bottom:331.866667pt;}
.y52{bottom:331.946667pt;}
.y183{bottom:332.506667pt;}
.yb2{bottom:334.666667pt;}
.y1a4{bottom:337.066667pt;}
.y18{bottom:337.546667pt;}
.yfa{bottom:339.866667pt;}
.y49{bottom:342.666667pt;}
.y98{bottom:344.666667pt;}
.y252{bottom:345.466667pt;}
.ydf{bottom:346.266667pt;}
.y205{bottom:347.226667pt;}
.yc5{bottom:347.866667pt;}
.y1d0{bottom:350.666667pt;}
.y15b{bottom:352.666667pt;}
.y1ab{bottom:355.466667pt;}
.y23b{bottom:356.666667pt;}
.y32{bottom:358.346667pt;}
.y18c{bottom:360.266667pt;}
.y19f{bottom:360.666667pt;}
.y1b9{bottom:362.266667pt;}
.y17{bottom:362.906667pt;}
.y105{bottom:363.466667pt;}
.y251{bottom:365.466667pt;}
.y14a{bottom:366.586667pt;}
.y10a{bottom:368.666667pt;}
.y182{bottom:369.306667pt;}
.y76{bottom:370.986667pt;}
.yf8{bottom:371.466667pt;}
.y1a3{bottom:373.866667pt;}
.yf9{bottom:376.666667pt;}
.y1cf{bottom:378.266667pt;}
.y48{bottom:379.466667pt;}
.y225{bottom:380.586667pt;}
.y97{bottom:381.466667pt;}
.yde{bottom:383.066667pt;}
.y23a{bottom:384.266667pt;}
.yc4{bottom:384.666667pt;}
.y250{bottom:385.466667pt;}
.y51{bottom:387.146667pt;}
.y16{bottom:388.186667pt;}
.y12d{bottom:388.266667pt;}
.y1b8{bottom:389.866667pt;}
.y31{bottom:395.146667pt;}
.y18b{bottom:397.066667pt;}
.y19e{bottom:397.466667pt;}
.y147{bottom:404.026667pt;}
.y109{bottom:405.466667pt;}
.y1ce{bottom:405.866667pt;}
.y181{bottom:406.506667pt;}
.yf7{bottom:408.266667pt;}
.y1a2{bottom:410.666667pt;}
.y239{bottom:411.866667pt;}
.y15{bottom:413.466667pt;}
.y60{bottom:415.040000pt;}
.y1eb{bottom:415.466667pt;}
.ya5{bottom:416.266667pt;}
.y1b7{bottom:417.466667pt;}
.y96{bottom:418.266667pt;}
.ydd{bottom:419.866667pt;}
.y62{bottom:420.320000pt;}
.y75{bottom:421.066667pt;}
.yc3{bottom:421.466667pt;}
.y47{bottom:424.266667pt;}
.y24f{bottom:425.466667pt;}
.y30{bottom:431.946667pt;}
.y6a{bottom:432.986667pt;}
.y1cd{bottom:433.466667pt;}
.y19d{bottom:434.266667pt;}
.y18a{bottom:438.426667pt;}
.y14{bottom:438.746667pt;}
.y238{bottom:439.466667pt;}
.y194{bottom:439.520000pt;}
.y108{bottom:442.266667pt;}
.y180{bottom:443.626667pt;}
.y121{bottom:444.186667pt;}
.yf6{bottom:445.066667pt;}
.y24e{bottom:445.466667pt;}
.y1a1{bottom:447.466667pt;}
.y5f{bottom:450.746667pt;}
.y69{bottom:451.386667pt;}
.ya4{bottom:453.066667pt;}
.y146{bottom:454.106667pt;}
.y95{bottom:455.066667pt;}
.ydc{bottom:456.666667pt;}
.yc2{bottom:458.266667pt;}
.y46{bottom:461.066667pt;}
.y13{bottom:464.026667pt;}
.y24d{bottom:465.466667pt;}
.y237{bottom:467.066667pt;}
.y2f{bottom:468.746667pt;}
.y5e{bottom:469.146667pt;}
.y68{bottom:469.786667pt;}
.y21c{bottom:472.586667pt;}
.y1b6{bottom:472.666667pt;}
.y74{bottom:473.866667pt;}
.y107{bottom:479.066667pt;}
.y17f{bottom:480.426667pt;}
.y129{bottom:481.626667pt;}
.yf5{bottom:481.866667pt;}
.y24c{bottom:485.493333pt;}
.y67{bottom:488.186667pt;}
.ydb{bottom:488.266667pt;}
.y1cc{bottom:488.666667pt;}
.y12{bottom:489.386667pt;}
.ya3{bottom:489.866667pt;}
.y94{bottom:491.866667pt;}
.y236{bottom:494.666667pt;}
.yc1{bottom:495.066667pt;}
.y45{bottom:497.866667pt;}
.y1b5{bottom:500.266667pt;}
.y165{bottom:503.066667pt;}
.y24b{bottom:505.493333pt;}
.y145{bottom:506.906667pt;}
.y73{bottom:510.666667pt;}
.y204{bottom:512.826667pt;}
.y2e{bottom:513.546667pt;}
.y66{bottom:514.586667pt;}
.y11{bottom:514.666667pt;}
.y106{bottom:515.866667pt;}
.y1cb{bottom:516.266667pt;}
.y17e{bottom:517.226667pt;}
.y59{bottom:518.400000pt;}
.y104{bottom:518.666667pt;}
.y128{bottom:519.066667pt;}
.y235{bottom:522.266667pt;}
.y24a{bottom:525.493333pt;}
.y1e2{bottom:525.866667pt;}
.ya2{bottom:526.666667pt;}
.y222{bottom:527.786667pt;}
.y1b4{bottom:527.866667pt;}
.y93{bottom:528.666667pt;}
.yd3{bottom:531.866667pt;}
.y44{bottom:534.666667pt;}
.yc0{bottom:539.866667pt;}
.y10{bottom:539.946667pt;}
.y144{bottom:543.706667pt;}
.y1ca{bottom:543.866667pt;}
.y5c{bottom:544.986667pt;}
.y249{bottom:545.493333pt;}
.yda{bottom:545.626667pt;}
.y72{bottom:547.466667pt;}
.y2d{bottom:550.346667pt;}
.y15a{bottom:552.666667pt;}
.y17d{bottom:554.026667pt;}
.y103{bottom:555.466667pt;}
.yf0{bottom:556.400000pt;}
.y127{bottom:556.506667pt;}
.y234{bottom:557.866667pt;}
.y64{bottom:559.386667pt;}
.y5b{bottom:563.386667pt;}
.ya1{bottom:563.466667pt;}
.yf{bottom:565.226667pt;}
.y92{bottom:565.466667pt;}
.y248{bottom:565.493333pt;}
.yd2{bottom:568.666667pt;}
.y43{bottom:571.466667pt;}
.ybf{bottom:576.693333pt;}
.y143{bottom:580.533333pt;}
.y1e8{bottom:581.093333pt;}
.y233{bottom:582.053333pt;}
.y1b3{bottom:583.093333pt;}
.y71{bottom:584.293333pt;}
.y247{bottom:585.493333pt;}
.y2c{bottom:587.173333pt;}
.y159{bottom:589.493333pt;}
.ye{bottom:590.613333pt;}
.y102{bottom:592.293333pt;}
.y117{bottom:594.053333pt;}
.ye6{bottom:597.920000pt;}
.y17c{bottom:598.853333pt;}
.y1c9{bottom:599.093333pt;}
.ya0{bottom:600.293333pt;}
.y91{bottom:602.293333pt;}
.yd1{bottom:605.493333pt;}
.y245{bottom:606.133333pt;}
.y42{bottom:608.293333pt;}
.y1b2{bottom:610.693333pt;}
.yee{bottom:611.120000pt;}
.yeb{bottom:611.653333pt;}
.ybe{bottom:613.493333pt;}
.y142{bottom:617.333333pt;}
.y220{bottom:619.813333pt;}
.ye8{bottom:622.053333pt;}
.y203{bottom:623.253333pt;}
.y2b{bottom:623.973333pt;}
.y158{bottom:626.293333pt;}
.y1c8{bottom:626.693333pt;}
.y50{bottom:629.093333pt;}
.yea{bottom:630.053333pt;}
.y90{bottom:630.133333pt;}
.y120{bottom:631.493333pt;}
.y17b{bottom:635.653333pt;}
.y1e6{bottom:636.293333pt;}
.y9f{bottom:637.093333pt;}
.y1b1{bottom:638.293333pt;}
.y244{bottom:639.413333pt;}
.yd{bottom:640.853333pt;}
.yd0{bottom:642.293333pt;}
.y41{bottom:645.093333pt;}
.y8b{bottom:645.733333pt;}
.ybd{bottom:650.293333pt;}
.y141{bottom:654.133333pt;}
.y1c7{bottom:654.293333pt;}
.y2a{bottom:660.773333pt;}
.y157{bottom:663.093333pt;}
.y16b{bottom:665.893333pt;}
.yc{bottom:668.453333pt;}
.yec{bottom:668.720000pt;}
.y11e{bottom:668.933333pt;}
.y17a{bottom:672.453333pt;}
.y70{bottom:673.893333pt;}
.ycf{bottom:679.093333pt;}
.y40{bottom:681.893333pt;}
.y243{bottom:684.213333pt;}
.ybc{bottom:687.093333pt;}
.y140{bottom:690.933333pt;}
.y1b0{bottom:693.493333pt;}
.y219{bottom:696.853333pt;}
.y29{bottom:697.573333pt;}
.y156{bottom:699.893333pt;}
.y1ad{bottom:702.693333pt;}
.y1c6{bottom:709.493333pt;}
.y179{bottom:709.653333pt;}
.y1df{bottom:709.893333pt;}
.y6f{bottom:710.693333pt;}
.yb{bottom:712.053333pt;}
.yce{bottom:715.893333pt;}
.y3f{bottom:718.693333pt;}
.y1af{bottom:721.093333pt;}
.ybb{bottom:723.893333pt;}
.y11d{bottom:724.853333pt;}
.yf4{bottom:726.880000pt;}
.yf2{bottom:726.960000pt;}
.y13f{bottom:727.733333pt;}
.yd9{bottom:731.493333pt;}
.y28{bottom:734.373333pt;}
.y155{bottom:736.693333pt;}
.y1c5{bottom:737.093333pt;}
.y1ac{bottom:739.493333pt;}
.ya{bottom:745.013333pt;}
.y178{bottom:746.773333pt;}
.y6e{bottom:747.493333pt;}
.y1ae{bottom:748.693333pt;}
.y1f9{bottom:752.053333pt;}
.ycd{bottom:752.693333pt;}
.y3e{bottom:755.493333pt;}
.yba{bottom:760.693333pt;}
.y11c{bottom:762.293333pt;}
.y13e{bottom:764.533333pt;}
.y1c4{bottom:764.693333pt;}
.y27{bottom:771.173333pt;}
.y154{bottom:773.493333pt;}
.yd8{bottom:776.293333pt;}
.y177{bottom:783.573333pt;}
.y6d{bottom:784.293333pt;}
.y9{bottom:785.413333pt;}
.ycc{bottom:789.493333pt;}
.y3d{bottom:792.293333pt;}
.y232{bottom:794.693333pt;}
.yb9{bottom:797.493333pt;}
.y113{bottom:799.733333pt;}
.y13d{bottom:801.333333pt;}
.y26{bottom:807.973333pt;}
.y8a{bottom:808.933333pt;}
.y153{bottom:810.293333pt;}
.y8{bottom:817.573333pt;}
.y1c3{bottom:819.893333pt;}
.y6c{bottom:821.093333pt;}
.y231{bottom:822.293333pt;}
.y21a{bottom:825.653333pt;}
.y176{bottom:828.373333pt;}
.y3c{bottom:829.093333pt;}
.yb8{bottom:834.293333pt;}
.y13c{bottom:838.133333pt;}
.y1da{bottom:838.693333pt;}
.y25{bottom:844.773333pt;}
.y152{bottom:847.013333pt;}
.y1c2{bottom:847.493333pt;}
.y112{bottom:849.813333pt;}
.yb1{bottom:857.813333pt;}
.y175{bottom:865.173333pt;}
.y7{bottom:865.813333pt;}
.yb7{bottom:871.013333pt;}
.y88{bottom:872.133333pt;}
.y13b{bottom:874.933333pt;}
.y1c1{bottom:875.013333pt;}
.y230{bottom:877.413333pt;}
.y216{bottom:880.773333pt;}
.y24{bottom:881.573333pt;}
.y151{bottom:883.813333pt;}
.yb0{bottom:894.613333pt;}
.y6{bottom:897.973333pt;}
.y174{bottom:901.893333pt;}
.y3b{bottom:902.613333pt;}
.y22f{bottom:905.013333pt;}
.yb6{bottom:907.813333pt;}
.y23{bottom:913.173333pt;}
.y150{bottom:915.413333pt;}
.y13a{bottom:919.733333pt;}
.y83{bottom:927.333333pt;}
.y1c0{bottom:930.213333pt;}
.y1d9{bottom:931.333333pt;}
.yd7{bottom:931.413333pt;}
.y22e{bottom:932.613333pt;}
.y135{bottom:935.333333pt;}
.y218{bottom:935.973333pt;}
.y173{bottom:938.693333pt;}
.y3a{bottom:939.413333pt;}
.y5{bottom:944.293333pt;}
.yb5{bottom:944.613333pt;}
.y1bf{bottom:957.840000pt;}
.y22{bottom:963.760000pt;}
.y22d{bottom:968.240000pt;}
.y4{bottom:971.200000pt;}
.y1fd{bottom:972.800000pt;}
.y172{bottom:975.920000pt;}
.y39{bottom:976.240000pt;}
.yb4{bottom:981.440000pt;}
.y1be{bottom:985.440000pt;}
.y21{bottom:989.040000pt;}
.y3{bottom:998.000000pt;}
.y38{bottom:1013.040000pt;}
.y20{bottom:1014.320000pt;}
.h27{height:18.400000pt;}
.h29{height:18.426667pt;}
.h3f{height:20.000000pt;}
.h40{height:20.026667pt;}
.h19{height:25.120000pt;}
.h1c{height:26.160000pt;}
.h1b{height:27.040000pt;}
.h1a{height:29.120000pt;}
.h11{height:36.800000pt;}
.h20{height:36.826667pt;}
.h7{height:41.749531pt;}
.h2c{height:54.960938pt;}
.h2d{height:55.065625pt;}
.h23{height:55.120000pt;}
.h16{height:55.200000pt;}
.h13{height:55.226667pt;}
.h9{height:57.473437pt;}
.h18{height:57.600000pt;}
.h3{height:58.245469pt;}
.hc{height:58.250000pt;}
.h4{height:58.678906pt;}
.h41{height:59.017500pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h12{height:63.200000pt;}
.hb{height:64.500000pt;}
.he{height:64.607500pt;}
.h28{height:65.770312pt;}
.h30{height:65.781915pt;}
.h2a{height:65.876979pt;}
.h22{height:73.600000pt;}
.h24{height:73.626667pt;}
.h6{height:73.669375pt;}
.hf{height:74.960000pt;}
.h5{height:75.142500pt;}
.h3a{height:77.040000pt;}
.hd{height:78.400000pt;}
.h14{height:81.520000pt;}
.h2f{height:92.000000pt;}
.h25{height:92.026667pt;}
.h15{height:100.026667pt;}
.h33{height:110.400000pt;}
.h35{height:110.426667pt;}
.h26{height:111.760000pt;}
.h2e{height:119.387604pt;}
.h31{height:128.800000pt;}
.ha{height:129.000000pt;}
.h3b{height:147.226667pt;}
.h1f{height:149.146667pt;}
.h17{height:163.200000pt;}
.h38{height:165.600000pt;}
.h39{height:169.066667pt;}
.h10{height:172.400000pt;}
.h34{height:183.920000pt;}
.h32{height:184.026667pt;}
.h1e{height:205.040000pt;}
.h37{height:220.746667pt;}
.h3c{height:224.266667pt;}
.h36{height:275.946667pt;}
.h2b{height:314.960000pt;}
.h21{height:315.466667pt;}
.h1d{height:671.093333pt;}
.h3d{height:793.760000pt;}
.h3e{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:34.000000pt;}
.w17{width:47.280000pt;}
.w2a{width:50.400000pt;}
.w29{width:50.426667pt;}
.w1f{width:52.080000pt;}
.w16{width:57.760000pt;}
.w14{width:75.200000pt;}
.w11{width:75.600000pt;}
.we{width:75.626667pt;}
.w1e{width:75.680000pt;}
.w15{width:75.946667pt;}
.w1c{width:82.960000pt;}
.w1b{width:95.306667pt;}
.w2c{width:96.160000pt;}
.w1d{width:99.626667pt;}
.w21{width:104.026667pt;}
.wf{width:122.800000pt;}
.w2e{width:126.400000pt;}
.w12{width:132.346667pt;}
.w23{width:135.600000pt;}
.w6{width:141.946667pt;}
.wa{width:148.640000pt;}
.wb{width:148.880000pt;}
.w9{width:149.120000pt;}
.w8{width:160.240000pt;}
.w18{width:170.106667pt;}
.w19{width:178.266667pt;}
.w5{width:181.840000pt;}
.w13{width:207.946667pt;}
.w2b{width:213.066667pt;}
.w2d{width:220.026667pt;}
.w1a{width:227.386667pt;}
.wd{width:254.640000pt;}
.w10{width:264.613333pt;}
.wc{width:283.760000pt;}
.w3{width:322.080000pt;}
.w4{width:323.520000pt;}
.w22{width:378.053333pt;}
.w24{width:387.573333pt;}
.w7{width:462.773333pt;}
.w20{width:584.320000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w27{width:1122.559983pt;}
.w25{width:1122.560000pt;}
.w26{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:7.226667pt;}
.x21{left:8.480000pt;}
.x7{left:9.626667pt;}
.x20{left:11.120000pt;}
.x37{left:13.200000pt;}
.x25{left:14.480000pt;}
.x2c{left:16.000000pt;}
.x34{left:17.440000pt;}
.x26{left:18.480000pt;}
.x23{left:19.760000pt;}
.x27{left:21.120000pt;}
.x24{left:23.760000pt;}
.x3c{left:26.080000pt;}
.x11{left:28.320000pt;}
.x38{left:33.600000pt;}
.x39{left:35.760000pt;}
.x15{left:37.093333pt;}
.x3a{left:38.800000pt;}
.x3b{left:41.440000pt;}
.x32{left:43.520000pt;}
.x17{left:45.573333pt;}
.xe{left:47.520000pt;}
.x57{left:53.040000pt;}
.x30{left:61.386667pt;}
.xa{left:64.960000pt;}
.x5c{left:83.280000pt;}
.x2e{left:85.066667pt;}
.x1d{left:89.760000pt;}
.x3{left:94.559988pt;}
.x1a{left:97.440000pt;}
.x4{left:99.440000pt;}
.x6{left:109.066655pt;}
.x40{left:113.226655pt;}
.x59{left:119.280000pt;}
.x46{left:128.560000pt;}
.x2{left:132.426655pt;}
.x5{left:145.066667pt;}
.x1c{left:160.746655pt;}
.x1e{left:165.386667pt;}
.x5a{left:176.746667pt;}
.x47{left:178.986667pt;}
.x5b{left:184.746667pt;}
.x41{left:189.066667pt;}
.x53{left:201.866667pt;}
.x3e{left:206.080000pt;}
.x58{left:212.746667pt;}
.x3f{left:222.160000pt;}
.x28{left:226.906667pt;}
.x48{left:229.386667pt;}
.x10{left:236.506667pt;}
.x8{left:245.146655pt;}
.x2f{left:264.666667pt;}
.x49{left:279.786667pt;}
.x1f{left:288.266667pt;}
.x54{left:307.626667pt;}
.x14{left:314.880000pt;}
.x16{left:330.453322pt;}
.x33{left:359.973333pt;}
.x4a{left:380.586667pt;}
.x44{left:391.573322pt;}
.x55{left:403.786667pt;}
.x1b{left:427.280000pt;}
.x4b{left:430.986667pt;}
.x29{left:434.853333pt;}
.x31{left:442.933333pt;}
.x4c{left:481.386667pt;}
.x9{left:488.560000pt;}
.xb{left:498.213322pt;}
.x2a{left:510.053333pt;}
.x4d{left:531.786667pt;}
.x18{left:540.079988pt;}
.x35{left:542.560000pt;}
.x19{left:548.079988pt;}
.xd{left:553.519988pt;}
.x42{left:567.120000pt;}
.x43{left:576.640000pt;}
.xc{left:579.519988pt;}
.x4e{left:582.213333pt;}
.x2b{left:586.000000pt;}
.x36{left:618.240000pt;}
.x56{left:623.813333pt;}
.x22{left:628.480000pt;}
.x4f{left:632.613333pt;}
.x2d{left:643.760000pt;}
.x13{left:672.639988pt;}
.x3d{left:680.639988pt;}
.x12{left:683.279988pt;}
.x1{left:691.279988pt;}
.x50{left:733.413333pt;}
.x51{left:783.813333pt;}
.x52{left:834.213333pt;}
.x45{left:1012.079983pt;}
}




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