
    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_dc3510b9a538b4e05d45f6b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f83e1fe51bf263c80826e2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_076dca71751a3240f6aae36f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b449beb48272293823e79121.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_56b22ab1ec787798f26ab0e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d4ed197dbe1118ebcaba19b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-1.332000px;}
.ls29{letter-spacing:-1.260000px;}
.ls2a{letter-spacing:-0.990000px;}
.ls7{letter-spacing:-0.942000px;}
.ls6{letter-spacing:-0.612000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.269400px;}
.ls17{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.181200px;}
.ls1e{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.223800px;}
.lsa{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.269400px;}
.ls1f{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:6.660000px;}
.ls1d{letter-spacing:7.146720px;}
.ls1c{letter-spacing:7.290720px;}
.ls12{letter-spacing:10.746720px;}
.ls18{letter-spacing:10.890720px;}
.ls28{letter-spacing:11.933280px;}
.ls13{letter-spacing:13.626720px;}
.ls19{letter-spacing:13.770720px;}
.ls1a{letter-spacing:17.370720px;}
.ls21{letter-spacing:23.706720px;}
.ls1b{letter-spacing:25.866720px;}
.ls10{letter-spacing:26.586720px;}
.ls25{letter-spacing:29.825280px;}
.ls20{letter-spacing:31.050720px;}
.ls24{letter-spacing:34.506720px;}
.ls26{letter-spacing:35.669280px;}
.ls27{letter-spacing:35.693280px;}
.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;}
}
.ws1e{word-spacing:-66.240000px;}
.ws1d{word-spacing:-59.760000px;}
.ws10{word-spacing:-30.060000px;}
.ws0{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.146400px;}
.ws17{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.479800px;}
.ws7{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.734000px;}
.ws4{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsd{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.888000px;}
.ws1c{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.283800px;}
.ws1f{word-spacing:-12.241200px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.ws3{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.118000px;}
.ws13{word-spacing:0.000000px;}
.wsa{word-spacing:23.251825px;}
.wsf{word-spacing:28.852560px;}
.ws12{word-spacing:29.572320px;}
._22{margin-left:-3.616321px;}
._5{margin-left:-2.360880px;}
._1{margin-left:-1.257120px;}
._0{width:1.314600px;}
._13{width:2.322000px;}
._3{width:3.456000px;}
._4{width:4.904520px;}
._f{width:5.962681px;}
._9{width:7.217400px;}
._8{width:8.478000px;}
._10{width:9.882000px;}
._1a{width:10.884936px;}
._2{width:11.988000px;}
._19{width:13.376160px;}
._d{width:14.865120px;}
._c{width:16.416000px;}
._11{width:18.036000px;}
._a{width:19.062000px;}
._2a{width:20.300091px;}
._1c{width:21.338927px;}
._12{width:22.518000px;}
._6{width:23.598000px;}
._7{width:24.678000px;}
._b{width:25.701598px;}
._15{width:27.324000px;}
._16{width:28.847400px;}
._2e{width:29.852040px;}
._e{width:30.888000px;}
._1e{width:32.618760px;}
._18{width:34.182000px;}
._17{width:35.910000px;}
._23{width:37.051200px;}
._1b{width:38.124000px;}
._1d{width:39.205799px;}
._20{width:41.855880px;}
._21{width:42.981480px;}
._2b{width:45.297841px;}
._25{width:46.553160px;}
._30{width:48.123840px;}
._31{width:49.559520px;}
._14{width:54.282000px;}
._26{width:57.718680px;}
._24{width:64.720080px;}
._1f{width:81.572340px;}
._28{width:84.022560px;}
._32{width:87.121440px;}
._2d{width:101.542320px;}
._2c{width:103.195440px;}
._29{width:179.698440px;}
._27{width:253.853280px;}
._2f{width:314.484480px;}
.fc5{color:transparent;}
.fc4{color:rgb(39,59,104);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.y1e9{bottom:-60.840000px;}
.y1e3{bottom:-50.400000px;}
.y1e8{bottom:-43.560000px;}
.y1e2{bottom:-34.020000px;}
.y1e7{bottom:-27.180000px;}
.y1e1{bottom:-20.160000px;}
.y1e6{bottom:-13.320000px;}
.y1ec{bottom:-11.700000px;}
.y1e0{bottom:-8.820000px;}
.y1e5{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y1eb{bottom:2.340000px;}
.y128{bottom:2.514000px;}
.y8{bottom:2.520000px;}
.y126{bottom:3.240000px;}
.y9{bottom:3.960000px;}
.y1de{bottom:6.300000px;}
.y4{bottom:6.840000px;}
.y7b{bottom:7.380000px;}
.y7e{bottom:7.740000px;}
.yc{bottom:8.460000px;}
.y123{bottom:9.540000px;}
.y3{bottom:13.680000px;}
.y7{bottom:16.200000px;}
.y124{bottom:16.380000px;}
.yb{bottom:22.140000px;}
.y6{bottom:30.060000px;}
.ya{bottom:36.000000px;}
.y5{bottom:43.920000px;}
.y7d{bottom:49.170000px;}
.y178{bottom:76.716000px;}
.y12d{bottom:81.756000px;}
.yf0{bottom:86.256000px;}
.y79{bottom:87.516000px;}
.y177{bottom:91.296000px;}
.y46{bottom:91.656000px;}
.y12c{bottom:92.196000px;}
.y1ab{bottom:94.356000px;}
.y233{bottom:97.596000px;}
.yba{bottom:100.836000px;}
.y12b{bottom:101.196000px;}
.y1dc{bottom:101.556000px;}
.yef{bottom:103.356000px;}
.y45{bottom:105.516000px;}
.y153{bottom:105.696000px;}
.y232{bottom:111.276000px;}
.y1aa{bottom:112.536000px;}
.y176{bottom:115.056000px;}
.y1db{bottom:115.416000px;}
.y12a{bottom:117.216000px;}
.yb9{bottom:118.836000px;}
.y44{bottom:119.376000px;}
.yee{bottom:120.636000px;}
.y78{bottom:123.696000px;}
.y231{bottom:125.136000px;}
.y1da{bottom:129.096000px;}
.y129{bottom:133.236000px;}
.y152{bottom:135.036000px;}
.y175{bottom:135.756000px;}
.yb8{bottom:137.016000px;}
.yed{bottom:137.916000px;}
.y1a9{bottom:138.636000px;}
.y230{bottom:138.816000px;}
.y77{bottom:141.696000px;}
.y1d9{bottom:142.956000px;}
.y1ed{bottom:144.396000px;}
.y43{bottom:146.916000px;}
.y127{bottom:149.256000px;}
.y174{bottom:150.330000px;}
.y22f{bottom:152.670000px;}
.yb7{bottom:155.010000px;}
.yec{bottom:155.190000px;}
.y1d8{bottom:156.810000px;}
.y42{bottom:160.590000px;}
.y151{bottom:164.190000px;}
.y173{bottom:164.910000px;}
.y125{bottom:165.270000px;}
.y22e{bottom:166.530000px;}
.y76{bottom:167.970000px;}
.y18a{bottom:169.950000px;}
.y1d7{bottom:170.490000px;}
.y1a8{bottom:171.390000px;}
.yeb{bottom:172.290000px;}
.yb6{bottom:173.190000px;}
.y41{bottom:174.450000px;}
.y172{bottom:179.310000px;}
.y22d{bottom:180.210000px;}
.y150{bottom:181.470000px;}
.y122{bottom:182.550000px;}
.y1d6{bottom:184.350000px;}
.y1a7{bottom:186.330000px;}
.y189{bottom:187.950000px;}
.y40{bottom:188.310000px;}
.yea{bottom:189.570000px;}
.yb5{bottom:190.470000px;}
.y171{bottom:193.890000px;}
.y22c{bottom:194.070000px;}
.y1d5{bottom:198.030000px;}
.y1a6{bottom:201.090000px;}
.y14f{bottom:201.450000px;}
.y3f{bottom:201.990000px;}
.y75{bottom:203.250000px;}
.y188{bottom:206.130000px;}
.ye9{bottom:207.570000px;}
.yb4{bottom:207.750000px;}
.y170{bottom:208.470000px;}
.y1d4{bottom:211.890000px;}
.y3e{bottom:215.850000px;}
.y74{bottom:220.530000px;}
.y121{bottom:221.610000px;}
.y16f{bottom:223.050000px;}
.yb3{bottom:224.850000px;}
.ye8{bottom:225.750000px;}
.y187{bottom:229.350000px;}
.y3d{bottom:229.530000px;}
.y1a5{bottom:230.610000px;}
.y22b{bottom:235.470000px;}
.y16e{bottom:237.450000px;}
.y73{bottom:237.630000px;}
.y120{bottom:238.890000px;}
.y1d3{bottom:239.430000px;}
.yb2{bottom:242.130000px;}
.y3c{bottom:243.390000px;}
.ye7{bottom:243.930000px;}
.y1a4{bottom:245.370000px;}
.y22a{bottom:249.150000px;}
.y16d{bottom:252.030000px;}
.y186{bottom:252.210000px;}
.y1d2{bottom:253.290000px;}
.y72{bottom:254.910000px;}
.y3b{bottom:257.250000px;}
.yb1{bottom:260.130000px;}
.ye6{bottom:261.930000px;}
.y11f{bottom:262.110000px;}
.y229{bottom:263.010000px;}
.y185{bottom:264.990000px;}
.y16c{bottom:266.610000px;}
.y1d1{bottom:266.970000px;}
.y3a{bottom:270.930000px;}
.y71{bottom:272.190000px;}
.y1a3{bottom:274.710000px;}
.y228{bottom:276.690000px;}
.yb0{bottom:278.310000px;}
.y11e{bottom:279.390000px;}
.ye5{bottom:280.110000px;}
.y1d0{bottom:280.830000px;}
.y16b{bottom:281.190000px;}
.y39{bottom:285.510000px;}
.y70{bottom:289.470000px;}
.y227{bottom:290.550000px;}
.y1cf{bottom:294.690000px;}
.yaf{bottom:296.490000px;}
.y11d{bottom:296.670000px;}
.ye4{bottom:298.110000px;}
.y38{bottom:302.070000px;}
.y1a2{bottom:304.230000px;}
.y226{bottom:304.410000px;}
.y16a{bottom:304.950000px;}
.y6f{bottom:306.570000px;}
.y1ce{bottom:308.370000px;}
.y11c{bottom:313.950000px;}
.yae{bottom:314.490000px;}
.y37{bottom:315.750000px;}
.y225{bottom:318.090000px;}
.y1a1{bottom:318.990000px;}
.ye3{bottom:319.890000px;}
.y1cd{bottom:322.230000px;}
.y6e{bottom:323.850000px;}
.y169{bottom:328.890000px;}
.y36{bottom:329.610000px;}
.y11b{bottom:331.050000px;}
.y224{bottom:331.950000px;}
.yad{bottom:332.670000px;}
.y1a0{bottom:333.750000px;}
.y1cc{bottom:335.910000px;}
.y6d{bottom:341.175000px;}
.y35{bottom:343.335000px;}
.y223{bottom:345.675000px;}
.ye2{bottom:346.935000px;}
.y168{bottom:347.115000px;}
.y11a{bottom:348.375000px;}
.y19f{bottom:348.555000px;}
.y1cb{bottom:349.815000px;}
.yac{bottom:350.715000px;}
.y34{bottom:357.195000px;}
.y6c{bottom:358.455000px;}
.y222{bottom:359.535000px;}
.y19e{bottom:363.315000px;}
.y1ca{bottom:363.675000px;}
.ye1{bottom:365.115000px;}
.y119{bottom:365.655000px;}
.yab{bottom:368.895000px;}
.y167{bottom:370.335000px;}
.y33{bottom:371.055000px;}
.y221{bottom:373.395000px;}
.y6b{bottom:375.555000px;}
.y1c9{bottom:377.355000px;}
.y19d{bottom:377.895000px;}
.y118{bottom:382.935000px;}
.ye0{bottom:383.115000px;}
.y32{bottom:384.735000px;}
.yaa{bottom:386.895000px;}
.y220{bottom:387.075000px;}
.y1dd{bottom:387.795000px;}
.y166{bottom:390.315000px;}
.y1c8{bottom:391.215000px;}
.y19c{bottom:392.655000px;}
.y6a{bottom:392.835000px;}
.y31{bottom:398.955000px;}
.y117{bottom:400.035000px;}
.y21f{bottom:400.935000px;}
.ydf{bottom:401.295000px;}
.y1c7{bottom:404.895000px;}
.ya9{bottom:405.075000px;}
.y19b{bottom:407.415000px;}
.y69{bottom:410.115000px;}
.y30{bottom:414.435000px;}
.y21e{bottom:414.615000px;}
.y116{bottom:417.315000px;}
.y1c6{bottom:418.755000px;}
.yde{bottom:419.475000px;}
.ya8{bottom:423.075000px;}
.y68{bottom:427.395000px;}
.y21d{bottom:428.475000px;}
.y2f{bottom:429.915000px;}
.y115{bottom:434.595000px;}
.ydd{bottom:441.075000px;}
.ya7{bottom:441.255000px;}
.y1c5{bottom:442.155000px;}
.y21c{bottom:442.335000px;}
.y67{bottom:444.495000px;}
.y19a{bottom:445.035000px;}
.y2e{bottom:445.395000px;}
.y114{bottom:451.875000px;}
.ya6{bottom:459.255000px;}
.y66{bottom:461.775000px;}
.y21b{bottom:465.735000px;}
.ydc{bottom:468.255000px;}
.y113{bottom:468.975000px;}
.y199{bottom:469.155000px;}
.ya5{bottom:477.435000px;}
.y1c4{bottom:478.335000px;}
.y65{bottom:479.055000px;}
.ydb{bottom:486.255000px;}
.y198{bottom:487.155000px;}
.ya4{bottom:495.435000px;}
.y64{bottom:496.335000px;}
.y21a{bottom:500.295000px;}
.yda{bottom:504.435000px;}
.y197{bottom:505.335000px;}
.y112{bottom:508.035000px;}
.y63{bottom:513.435000px;}
.ya3{bottom:513.615000px;}
.y219{bottom:514.155000px;}
.y1c3{bottom:514.515000px;}
.y2d{bottom:520.275000px;}
.yd9{bottom:522.435000px;}
.y196{bottom:523.335000px;}
.y218{bottom:527.835000px;}
.y62{bottom:530.715000px;}
.ya2{bottom:531.795000px;}
.y1c2{bottom:532.515000px;}
.y111{bottom:535.035000px;}
.y2c{bottom:535.755000px;}
.yd8{bottom:540.615000px;}
.y217{bottom:541.695000px;}
.y195{bottom:545.115000px;}
.y61{bottom:547.995000px;}
.ya1{bottom:549.795000px;}
.y1c1{bottom:550.695000px;}
.y2b{bottom:551.235000px;}
.y110{bottom:553.215000px;}
.y216{bottom:555.375000px;}
.yd7{bottom:557.895000px;}
.y184{bottom:558.435000px;}
.y240{bottom:562.395000px;}
.y60{bottom:565.275000px;}
.y2a{bottom:566.715000px;}
.ya0{bottom:567.975000px;}
.y1c0{bottom:568.875000px;}
.y215{bottom:569.235000px;}
.y10f{bottom:571.215000px;}
.y194{bottom:572.295000px;}
.yd6{bottom:575.175000px;}
.y23f{bottom:576.075000px;}
.y183{bottom:576.435000px;}
.y14e{bottom:576.795000px;}
.y5f{bottom:582.375000px;}
.y214{bottom:583.095000px;}
.y9f{bottom:585.975000px;}
.y1bf{bottom:586.875000px;}
.y29{bottom:588.315000px;}
.y10e{bottom:589.395000px;}
.y23e{bottom:589.935000px;}
.y193{bottom:590.295000px;}
.yd5{bottom:592.275000px;}
.y182{bottom:594.615000px;}
.y14d{bottom:594.975000px;}
.y213{bottom:596.775000px;}
.y5e{bottom:599.655000px;}
.y28{bottom:603.825000px;}
.y9e{bottom:604.185000px;}
.y23d{bottom:604.365000px;}
.y1be{bottom:605.085000px;}
.yd4{bottom:609.585000px;}
.y212{bottom:610.665000px;}
.y10d{bottom:611.205000px;}
.y14c{bottom:613.005000px;}
.y192{bottom:613.725000px;}
.y5d{bottom:616.965000px;}
.y181{bottom:617.865000px;}
.y165{bottom:618.585000px;}
.y27{bottom:619.305000px;}
.y23c{bottom:621.645000px;}
.y9d{bottom:622.185000px;}
.y1bd{bottom:623.985000px;}
.y211{bottom:624.345000px;}
.yd3{bottom:627.765000px;}
.y10c{bottom:628.485000px;}
.y14b{bottom:631.185000px;}
.y191{bottom:633.705000px;}
.y5c{bottom:634.245000px;}
.y26{bottom:634.785000px;}
.y164{bottom:635.865000px;}
.y180{bottom:637.845000px;}
.y210{bottom:638.205000px;}
.y23b{bottom:638.925000px;}
.y9c{bottom:640.365000px;}
.y1bc{bottom:641.985000px;}
.yd2{bottom:645.765000px;}
.y14a{bottom:649.185000px;}
.y10b{bottom:650.085000px;}
.y25{bottom:650.265000px;}
.y5b{bottom:651.345000px;}
.y20f{bottom:652.065000px;}
.y23a{bottom:656.205000px;}
.y9b{bottom:658.365000px;}
.y163{bottom:659.085000px;}
.y1bb{bottom:660.165000px;}
.yd1{bottom:663.945000px;}
.y24{bottom:665.745000px;}
.y10a{bottom:667.365000px;}
.y5a{bottom:668.625000px;}
.y239{bottom:673.305000px;}
.y9a{bottom:676.545000px;}
.y1ba{bottom:678.165000px;}
.y162{bottom:679.065000px;}
.y20e{bottom:679.605000px;}
.y23{bottom:681.405000px;}
.yd0{bottom:681.945000px;}
.y109{bottom:684.645000px;}
.y149{bottom:685.365000px;}
.y59{bottom:685.905000px;}
.y238{bottom:690.585000px;}
.y20d{bottom:693.285000px;}
.y99{bottom:694.545000px;}
.y1b9{bottom:696.345000px;}
.y22{bottom:696.885000px;}
.ycf{bottom:700.125000px;}
.y58{bottom:703.185000px;}
.y148{bottom:703.545000px;}
.y108{bottom:706.245000px;}
.y20c{bottom:707.145000px;}
.y237{bottom:707.865000px;}
.y21{bottom:712.365000px;}
.y98{bottom:712.725000px;}
.y1b8{bottom:714.345000px;}
.yce{bottom:718.125000px;}
.y57{bottom:720.285000px;}
.y20b{bottom:721.005000px;}
.y147{bottom:721.545000px;}
.y236{bottom:725.145000px;}
.y17f{bottom:725.325000px;}
.y20{bottom:727.845000px;}
.y97{bottom:730.725000px;}
.y107{bottom:732.525000px;}
.y20a{bottom:734.685000px;}
.ycd{bottom:736.305000px;}
.y56{bottom:737.565000px;}
.y146{bottom:739.725000px;}
.y235{bottom:742.245000px;}
.y1f{bottom:743.325000px;}
.y17e{bottom:743.505000px;}
.y209{bottom:748.545000px;}
.y96{bottom:748.905000px;}
.y106{bottom:749.805000px;}
.y1b7{bottom:750.705000px;}
.ycc{bottom:754.305000px;}
.y55{bottom:754.845000px;}
.y234{bottom:756.285000px;}
.y145{bottom:757.725000px;}
.y1e{bottom:758.985000px;}
.y17d{bottom:761.505000px;}
.y208{bottom:762.225000px;}
.y95{bottom:767.085000px;}
.y1b6{bottom:768.705000px;}
.y54{bottom:772.125000px;}
.y1d{bottom:774.465000px;}
.y144{bottom:775.905000px;}
.ycb{bottom:776.085000px;}
.y17c{bottom:779.685000px;}
.y105{bottom:784.365000px;}
.y94{bottom:785.085000px;}
.y1b5{bottom:786.885000px;}
.y1c{bottom:789.945000px;}
.y53{bottom:792.645000px;}
.y143{bottom:793.905000px;}
.y104{bottom:801.465000px;}
.y17b{bottom:802.905000px;}
.y93{bottom:803.265000px;}
.y207{bottom:803.625000px;}
.y1b4{bottom:804.885000px;}
.y1b{bottom:805.425000px;}
.yca{bottom:811.365000px;}
.y142{bottom:812.085000px;}
.y206{bottom:817.485000px;}
.y103{bottom:818.745000px;}
.y1a{bottom:820.905000px;}
.y92{bottom:821.265000px;}
.y17a{bottom:822.885000px;}
.y1b3{bottom:823.065000px;}
.y141{bottom:830.085000px;}
.y205{bottom:831.165000px;}
.y52{bottom:832.785000px;}
.y1ea{bottom:835.845000px;}
.y102{bottom:836.025000px;}
.y19{bottom:836.385000px;}
.y91{bottom:839.445000px;}
.y1b2{bottom:841.065000px;}
.y204{bottom:845.025000px;}
.yc9{bottom:847.365000px;}
.y140{bottom:848.265000px;}
.y18{bottom:852.045000px;}
.y90{bottom:857.445000px;}
.y101{bottom:857.625000px;}
.y203{bottom:858.885000px;}
.y1b1{bottom:859.245000px;}
.y190{bottom:864.645000px;}
.yc8{bottom:865.545000px;}
.y13f{bottom:866.445000px;}
.y17{bottom:867.525000px;}
.y51{bottom:867.705000px;}
.y202{bottom:872.610000px;}
.y8f{bottom:875.670000px;}
.y1b0{bottom:877.290000px;}
.y18f{bottom:882.870000px;}
.y16{bottom:883.050000px;}
.y50{bottom:883.230000px;}
.yc7{bottom:883.590000px;}
.y100{bottom:883.950000px;}
.y13e{bottom:884.490000px;}
.y201{bottom:886.470000px;}
.y8e{bottom:893.670000px;}
.y1af{bottom:895.470000px;}
.y15{bottom:898.530000px;}
.y4f{bottom:898.710000px;}
.y200{bottom:900.150000px;}
.y18e{bottom:900.870000px;}
.yff{bottom:901.230000px;}
.yc6{bottom:901.770000px;}
.y13d{bottom:902.670000px;}
.y8d{bottom:911.850000px;}
.y161{bottom:913.110000px;}
.y1ae{bottom:913.470000px;}
.y14{bottom:914.010000px;}
.y4e{bottom:914.190000px;}
.yfe{bottom:918.510000px;}
.yc5{bottom:919.770000px;}
.y13c{bottom:920.670000px;}
.y18d{bottom:924.270000px;}
.y1ff{bottom:927.870000px;}
.y13{bottom:929.490000px;}
.y4d{bottom:929.850000px;}
.y1ad{bottom:930.750000px;}
.y160{bottom:934.350000px;}
.yfd{bottom:935.790000px;}
.yc4{bottom:937.950000px;}
.y13b{bottom:938.850000px;}
.y1fe{bottom:941.550000px;}
.y12{bottom:945.150000px;}
.y4c{bottom:945.330000px;}
.y18c{bottom:947.130000px;}
.y8c{bottom:948.030000px;}
.y15f{bottom:952.350000px;}
.yfc{bottom:952.890000px;}
.y1e4{bottom:953.790000px;}
.y1fd{bottom:955.410000px;}
.yc3{bottom:956.130000px;}
.y13a{bottom:956.850000px;}
.y18b{bottom:959.730000px;}
.y11{bottom:960.630000px;}
.y4b{bottom:960.810000px;}
.y8b{bottom:966.030000px;}
.y1fc{bottom:969.090000px;}
.yfb{bottom:970.170000px;}
.y15e{bottom:970.530000px;}
.yc2{bottom:974.130000px;}
.y1ac{bottom:974.310000px;}
.y139{bottom:975.030000px;}
.y10{bottom:976.110000px;}
.y4a{bottom:976.290000px;}
.y1fb{bottom:982.950000px;}
.y8a{bottom:984.210000px;}
.yfa{bottom:987.450000px;}
.y15d{bottom:988.530000px;}
.yf{bottom:991.590000px;}
.y49{bottom:991.770000px;}
.yc1{bottom:992.310000px;}
.y138{bottom:993.030000px;}
.y1fa{bottom:996.810000px;}
.y89{bottom:1002.210000px;}
.yf9{bottom:1004.730000px;}
.y15c{bottom:1006.710000px;}
.ye{bottom:1007.070000px;}
.y48{bottom:1007.430000px;}
.yc0{bottom:1010.310000px;}
.y1f9{bottom:1010.490000px;}
.y137{bottom:1011.210000px;}
.y88{bottom:1020.390000px;}
.yf8{bottom:1021.830000px;}
.yd{bottom:1022.730000px;}
.y47{bottom:1023.270000px;}
.y1f8{bottom:1024.350000px;}
.y15b{bottom:1024.710000px;}
.ybf{bottom:1028.490000px;}
.y136{bottom:1029.210000px;}
.y1f7{bottom:1038.030000px;}
.y87{bottom:1038.570000px;}
.yf7{bottom:1039.110000px;}
.y179{bottom:1040.190000px;}
.y15a{bottom:1042.890000px;}
.ybe{bottom:1046.490000px;}
.y135{bottom:1047.390000px;}
.y7a{bottom:1051.170000px;}
.y1f6{bottom:1051.890000px;}
.yf6{bottom:1056.390000px;}
.y86{bottom:1056.570000px;}
.y159{bottom:1061.070000px;}
.ybd{bottom:1064.670000px;}
.y134{bottom:1065.390000px;}
.y1f5{bottom:1065.750000px;}
.yf5{bottom:1073.670000px;}
.y158{bottom:1079.070000px;}
.y1df{bottom:1079.430000px;}
.ybc{bottom:1082.670000px;}
.y85{bottom:1082.850000px;}
.y133{bottom:1083.570000px;}
.y1f4{bottom:1093.290000px;}
.yf4{bottom:1095.270000px;}
.y157{bottom:1097.250000px;}
.ybb{bottom:1100.850000px;}
.y7c{bottom:1102.470000px;}
.y132{bottom:1105.350000px;}
.y1f3{bottom:1106.970000px;}
.y156{bottom:1115.250000px;}
.y84{bottom:1118.850000px;}
.y1f2{bottom:1120.830000px;}
.yf3{bottom:1121.550000px;}
.y131{bottom:1129.110000px;}
.y155{bottom:1133.430000px;}
.y1f1{bottom:1134.690000px;}
.y83{bottom:1137.030000px;}
.yf2{bottom:1138.860000px;}
.y130{bottom:1143.720000px;}
.y1f0{bottom:1148.400000px;}
.y154{bottom:1151.460000px;}
.y82{bottom:1155.060000px;}
.yf1{bottom:1156.140000px;}
.y12f{bottom:1158.120000px;}
.y1ef{bottom:1162.260000px;}
.y12e{bottom:1172.700000px;}
.y81{bottom:1173.240000px;}
.y1ee{bottom:1175.940000px;}
.y80{bottom:1214.640000px;}
.y2{bottom:1217.700000px;}
.y7f{bottom:1233.540000px;}
.y1{bottom:1234.800000px;}
.h19{height:13.680000px;}
.h1e{height:13.680150px;}
.h18{height:13.860000px;}
.h1d{height:13.860150px;}
.h1a{height:13.896000px;}
.h22{height:14.040000px;}
.h23{height:14.076000px;}
.h16{height:15.300000px;}
.h15{height:16.560000px;}
.he{height:22.680000px;}
.h17{height:25.136719px;}
.h21{height:27.720000px;}
.h14{height:29.160000px;}
.hb{height:33.683203px;}
.ha{height:34.036523px;}
.h27{height:35.120039px;}
.h5{height:36.698203px;}
.h9{height:37.705078px;}
.h8{height:38.100586px;}
.h20{height:41.080078px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h12{height:43.506914px;}
.h7{height:43.822266px;}
.h24{height:44.265586px;}
.h13{height:45.461953px;}
.hf{height:46.736719px;}
.h6{height:47.160000px;}
.hc{height:48.496641px;}
.h25{height:49.065469px;}
.h2b{height:50.040000px;}
.h1b{height:50.273438px;}
.h1f{height:50.800781px;}
.h2a{height:52.056000px;}
.h28{height:54.360000px;}
.h29{height:54.540000px;}
.h4{height:55.080000px;}
.h26{height:65.884219px;}
.h1c{height:71.613281px;}
.h10{height:82.836000px;}
.hd{height:83.956641px;}
.h11{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:32.760000px;}
.w9{width:35.640000px;}
.w15{width:41.580000px;}
.wc{width:44.820000px;}
.w7{width:44.856000px;}
.w17{width:49.536000px;}
.w11{width:52.380000px;}
.wd{width:52.920000px;}
.w8{width:54.180000px;}
.w10{width:58.500000px;}
.wa{width:60.840000px;}
.w1b{width:64.296000px;}
.w19{width:69.696000px;}
.w18{width:69.876000px;}
.w1a{width:71.856000px;}
.w12{width:73.836000px;}
.wb{width:74.196000px;}
.w14{width:84.276000px;}
.w13{width:93.600000px;}
.we{width:189.930000px;}
.wf{width:190.110000px;}
.w2{width:194.430000px;}
.w3{width:242.535000px;}
.w4{width:708.585000px;}
.w5{width:730.230000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x35{left:9.720000px;}
.x5{left:10.800000px;}
.x20{left:12.780000px;}
.x32{left:14.400000px;}
.x36{left:15.480000px;}
.x34{left:18.540000px;}
.x4a{left:20.370000px;}
.x4c{left:21.810000px;}
.xe{left:43.560000px;}
.x4e{left:53.496000px;}
.x47{left:59.076000px;}
.x49{left:61.230000px;}
.x1a{left:62.460000px;}
.x6{left:70.200000px;}
.x23{left:71.850000px;}
.x4d{left:72.900000px;}
.x16{left:75.239987px;}
.x3f{left:77.039987px;}
.x26{left:79.590000px;}
.x8{left:80.820000px;}
.x25{left:84.285000px;}
.x7{left:85.500000px;}
.x40{left:87.479987px;}
.x19{left:90.035987px;}
.x4f{left:91.475987px;}
.xd{left:93.456000px;}
.x2f{left:99.755987px;}
.x17{left:102.275987px;}
.x2c{left:104.795987px;}
.x1c{left:108.036000px;}
.x18{left:112.715987px;}
.xf{left:116.490000px;}
.x2a{left:124.235987px;}
.x37{left:137.735987px;}
.x52{left:154.829987px;}
.x41{left:156.629987px;}
.x51{left:157.709987px;}
.x30{left:159.870000px;}
.x12{left:161.129987px;}
.x1d{left:162.930000px;}
.x11{left:167.969987px;}
.x2e{left:170.129987px;}
.x50{left:178.409987px;}
.x42{left:190.290000px;}
.x1e{left:199.290000px;}
.x31{left:219.090000px;}
.x43{left:232.590000px;}
.x38{left:257.970000px;}
.x1f{left:260.850000px;}
.x44{left:266.070000px;}
.x33{left:272.190000px;}
.x21{left:335.775000px;}
.x1{left:380.955000px;}
.x2d{left:402.914987px;}
.x2b{left:405.254987px;}
.x2{left:425.235000px;}
.x3e{left:435.314987px;}
.x3d{left:439.094987px;}
.x3{left:442.695000px;}
.x10{left:446.474987px;}
.x22{left:449.715000px;}
.x9{left:457.275000px;}
.x48{left:460.335000px;}
.x4b{left:461.415000px;}
.x15{left:466.484987px;}
.xb{left:467.925000px;}
.x4{left:469.905000px;}
.x46{left:478.544987px;}
.x14{left:489.344987px;}
.x3b{left:522.464987px;}
.x3a{left:525.164987px;}
.x45{left:534.704987px;}
.x55{left:538.304987px;}
.x29{left:546.764987px;}
.xc{left:547.845000px;}
.x54{left:550.364987px;}
.x53{left:551.624987px;}
.x13{left:552.704987px;}
.x28{left:559.364987px;}
.xa{left:569.805000px;}
.x24{left:640.545000px;}
.x27{left:807.089987px;}
.x56{left:819.509987px;}
.x39{left:822.389987px;}
.x3c{left:833.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-1.184000pt;}
.ls29{letter-spacing:-1.120000pt;}
.ls2a{letter-spacing:-0.880000pt;}
.ls7{letter-spacing:-0.837333pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.239467pt;}
.ls17{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.161067pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.198933pt;}
.lsa{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.239467pt;}
.ls1f{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:5.920000pt;}
.ls1d{letter-spacing:6.352640pt;}
.ls1c{letter-spacing:6.480640pt;}
.ls12{letter-spacing:9.552640pt;}
.ls18{letter-spacing:9.680640pt;}
.ls28{letter-spacing:10.607360pt;}
.ls13{letter-spacing:12.112640pt;}
.ls19{letter-spacing:12.240640pt;}
.ls1a{letter-spacing:15.440640pt;}
.ls21{letter-spacing:21.072640pt;}
.ls1b{letter-spacing:22.992640pt;}
.ls10{letter-spacing:23.632640pt;}
.ls25{letter-spacing:26.511360pt;}
.ls20{letter-spacing:27.600640pt;}
.ls24{letter-spacing:30.672640pt;}
.ls26{letter-spacing:31.706027pt;}
.ls27{letter-spacing:31.727360pt;}
.ws1e{word-spacing:-58.880000pt;}
.ws1d{word-spacing:-53.120000pt;}
.ws10{word-spacing:-26.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.463467pt;}
.ws17{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.208000pt;}
.ws4{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.456000pt;}
.ws1c{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws1f{word-spacing:-10.881067pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws3{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.882667pt;}
.ws13{word-spacing:0.000000pt;}
.wsa{word-spacing:20.668289pt;}
.wsf{word-spacing:25.646720pt;}
.ws12{word-spacing:26.286507pt;}
._22{margin-left:-3.214508pt;}
._5{margin-left:-2.098560pt;}
._1{margin-left:-1.117440pt;}
._0{width:1.168534pt;}
._13{width:2.064000pt;}
._3{width:3.072000pt;}
._4{width:4.359573pt;}
._f{width:5.300161pt;}
._9{width:6.415466pt;}
._8{width:7.536000pt;}
._10{width:8.784000pt;}
._1a{width:9.675499pt;}
._2{width:10.656000pt;}
._19{width:11.889920pt;}
._d{width:13.213440pt;}
._c{width:14.592000pt;}
._11{width:16.032000pt;}
._a{width:16.944000pt;}
._2a{width:18.044526pt;}
._1c{width:18.967935pt;}
._12{width:20.016000pt;}
._6{width:20.976000pt;}
._7{width:21.936000pt;}
._b{width:22.845865pt;}
._15{width:24.288000pt;}
._16{width:25.642133pt;}
._2e{width:26.535146pt;}
._e{width:27.456000pt;}
._1e{width:28.994453pt;}
._18{width:30.384000pt;}
._17{width:31.920000pt;}
._23{width:32.934400pt;}
._1b{width:33.888000pt;}
._1d{width:34.849599pt;}
._20{width:37.205226pt;}
._21{width:38.205760pt;}
._2b{width:40.264748pt;}
._25{width:41.380586pt;}
._30{width:42.776747pt;}
._31{width:44.052907pt;}
._14{width:48.250667pt;}
._26{width:51.305493pt;}
._24{width:57.528960pt;}
._1f{width:72.508747pt;}
._28{width:74.686720pt;}
._32{width:77.441280pt;}
._2d{width:90.259840pt;}
._2c{width:91.729280pt;}
._29{width:159.731946pt;}
._27{width:225.647360pt;}
._2f{width:279.541760pt;}
.fs6{font-size:32.000000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.y1e9{bottom:-54.080000pt;}
.y1e3{bottom:-44.800000pt;}
.y1e8{bottom:-38.720000pt;}
.y1e2{bottom:-30.240000pt;}
.y1e7{bottom:-24.160000pt;}
.y1e1{bottom:-17.920000pt;}
.y1e6{bottom:-11.840000pt;}
.y1ec{bottom:-10.400000pt;}
.y1e0{bottom:-7.840000pt;}
.y1e5{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y1eb{bottom:2.080000pt;}
.y128{bottom:2.234667pt;}
.y8{bottom:2.240000pt;}
.y126{bottom:2.880000pt;}
.y9{bottom:3.520000pt;}
.y1de{bottom:5.600000pt;}
.y4{bottom:6.080000pt;}
.y7b{bottom:6.560000pt;}
.y7e{bottom:6.880000pt;}
.yc{bottom:7.520000pt;}
.y123{bottom:8.480000pt;}
.y3{bottom:12.160000pt;}
.y7{bottom:14.400000pt;}
.y124{bottom:14.560000pt;}
.yb{bottom:19.680000pt;}
.y6{bottom:26.720000pt;}
.ya{bottom:32.000000pt;}
.y5{bottom:39.040000pt;}
.y7d{bottom:43.706667pt;}
.y178{bottom:68.192000pt;}
.y12d{bottom:72.672000pt;}
.yf0{bottom:76.672000pt;}
.y79{bottom:77.792000pt;}
.y177{bottom:81.152000pt;}
.y46{bottom:81.472000pt;}
.y12c{bottom:81.952000pt;}
.y1ab{bottom:83.872000pt;}
.y233{bottom:86.752000pt;}
.yba{bottom:89.632000pt;}
.y12b{bottom:89.952000pt;}
.y1dc{bottom:90.272000pt;}
.yef{bottom:91.872000pt;}
.y45{bottom:93.792000pt;}
.y153{bottom:93.952000pt;}
.y232{bottom:98.912000pt;}
.y1aa{bottom:100.032000pt;}
.y176{bottom:102.272000pt;}
.y1db{bottom:102.592000pt;}
.y12a{bottom:104.192000pt;}
.yb9{bottom:105.632000pt;}
.y44{bottom:106.112000pt;}
.yee{bottom:107.232000pt;}
.y78{bottom:109.952000pt;}
.y231{bottom:111.232000pt;}
.y1da{bottom:114.752000pt;}
.y129{bottom:118.432000pt;}
.y152{bottom:120.032000pt;}
.y175{bottom:120.672000pt;}
.yb8{bottom:121.792000pt;}
.yed{bottom:122.592000pt;}
.y1a9{bottom:123.232000pt;}
.y230{bottom:123.392000pt;}
.y77{bottom:125.952000pt;}
.y1d9{bottom:127.072000pt;}
.y1ed{bottom:128.352000pt;}
.y43{bottom:130.592000pt;}
.y127{bottom:132.672000pt;}
.y174{bottom:133.626667pt;}
.y22f{bottom:135.706667pt;}
.yb7{bottom:137.786667pt;}
.yec{bottom:137.946667pt;}
.y1d8{bottom:139.386667pt;}
.y42{bottom:142.746667pt;}
.y151{bottom:145.946667pt;}
.y173{bottom:146.586667pt;}
.y125{bottom:146.906667pt;}
.y22e{bottom:148.026667pt;}
.y76{bottom:149.306667pt;}
.y18a{bottom:151.066667pt;}
.y1d7{bottom:151.546667pt;}
.y1a8{bottom:152.346667pt;}
.yeb{bottom:153.146667pt;}
.yb6{bottom:153.946667pt;}
.y41{bottom:155.066667pt;}
.y172{bottom:159.386667pt;}
.y22d{bottom:160.186667pt;}
.y150{bottom:161.306667pt;}
.y122{bottom:162.266667pt;}
.y1d6{bottom:163.866667pt;}
.y1a7{bottom:165.626667pt;}
.y189{bottom:167.066667pt;}
.y40{bottom:167.386667pt;}
.yea{bottom:168.506667pt;}
.yb5{bottom:169.306667pt;}
.y171{bottom:172.346667pt;}
.y22c{bottom:172.506667pt;}
.y1d5{bottom:176.026667pt;}
.y1a6{bottom:178.746667pt;}
.y14f{bottom:179.066667pt;}
.y3f{bottom:179.546667pt;}
.y75{bottom:180.666667pt;}
.y188{bottom:183.226667pt;}
.ye9{bottom:184.506667pt;}
.yb4{bottom:184.666667pt;}
.y170{bottom:185.306667pt;}
.y1d4{bottom:188.346667pt;}
.y3e{bottom:191.866667pt;}
.y74{bottom:196.026667pt;}
.y121{bottom:196.986667pt;}
.y16f{bottom:198.266667pt;}
.yb3{bottom:199.866667pt;}
.ye8{bottom:200.666667pt;}
.y187{bottom:203.866667pt;}
.y3d{bottom:204.026667pt;}
.y1a5{bottom:204.986667pt;}
.y22b{bottom:209.306667pt;}
.y16e{bottom:211.066667pt;}
.y73{bottom:211.226667pt;}
.y120{bottom:212.346667pt;}
.y1d3{bottom:212.826667pt;}
.yb2{bottom:215.226667pt;}
.y3c{bottom:216.346667pt;}
.ye7{bottom:216.826667pt;}
.y1a4{bottom:218.106667pt;}
.y22a{bottom:221.466667pt;}
.y16d{bottom:224.026667pt;}
.y186{bottom:224.186667pt;}
.y1d2{bottom:225.146667pt;}
.y72{bottom:226.586667pt;}
.y3b{bottom:228.666667pt;}
.yb1{bottom:231.226667pt;}
.ye6{bottom:232.826667pt;}
.y11f{bottom:232.986667pt;}
.y229{bottom:233.786667pt;}
.y185{bottom:235.546667pt;}
.y16c{bottom:236.986667pt;}
.y1d1{bottom:237.306667pt;}
.y3a{bottom:240.826667pt;}
.y71{bottom:241.946667pt;}
.y1a3{bottom:244.186667pt;}
.y228{bottom:245.946667pt;}
.yb0{bottom:247.386667pt;}
.y11e{bottom:248.346667pt;}
.ye5{bottom:248.986667pt;}
.y1d0{bottom:249.626667pt;}
.y16b{bottom:249.946667pt;}
.y39{bottom:253.786667pt;}
.y70{bottom:257.306667pt;}
.y227{bottom:258.266667pt;}
.y1cf{bottom:261.946667pt;}
.yaf{bottom:263.546667pt;}
.y11d{bottom:263.706667pt;}
.ye4{bottom:264.986667pt;}
.y38{bottom:268.506667pt;}
.y1a2{bottom:270.426667pt;}
.y226{bottom:270.586667pt;}
.y16a{bottom:271.066667pt;}
.y6f{bottom:272.506667pt;}
.y1ce{bottom:274.106667pt;}
.y11c{bottom:279.066667pt;}
.yae{bottom:279.546667pt;}
.y37{bottom:280.666667pt;}
.y225{bottom:282.746667pt;}
.y1a1{bottom:283.546667pt;}
.ye3{bottom:284.346667pt;}
.y1cd{bottom:286.426667pt;}
.y6e{bottom:287.866667pt;}
.y169{bottom:292.346667pt;}
.y36{bottom:292.986667pt;}
.y11b{bottom:294.266667pt;}
.y224{bottom:295.066667pt;}
.yad{bottom:295.706667pt;}
.y1a0{bottom:296.666667pt;}
.y1cc{bottom:298.586667pt;}
.y6d{bottom:303.266667pt;}
.y35{bottom:305.186667pt;}
.y223{bottom:307.266667pt;}
.ye2{bottom:308.386667pt;}
.y168{bottom:308.546667pt;}
.y11a{bottom:309.666667pt;}
.y19f{bottom:309.826667pt;}
.y1cb{bottom:310.946667pt;}
.yac{bottom:311.746667pt;}
.y34{bottom:317.506667pt;}
.y6c{bottom:318.626667pt;}
.y222{bottom:319.586667pt;}
.y19e{bottom:322.946667pt;}
.y1ca{bottom:323.266667pt;}
.ye1{bottom:324.546667pt;}
.y119{bottom:325.026667pt;}
.yab{bottom:327.906667pt;}
.y167{bottom:329.186667pt;}
.y33{bottom:329.826667pt;}
.y221{bottom:331.906667pt;}
.y6b{bottom:333.826667pt;}
.y1c9{bottom:335.426667pt;}
.y19d{bottom:335.906667pt;}
.y118{bottom:340.386667pt;}
.ye0{bottom:340.546667pt;}
.y32{bottom:341.986667pt;}
.yaa{bottom:343.906667pt;}
.y220{bottom:344.066667pt;}
.y1dd{bottom:344.706667pt;}
.y166{bottom:346.946667pt;}
.y1c8{bottom:347.746667pt;}
.y19c{bottom:349.026667pt;}
.y6a{bottom:349.186667pt;}
.y31{bottom:354.626667pt;}
.y117{bottom:355.586667pt;}
.y21f{bottom:356.386667pt;}
.ydf{bottom:356.706667pt;}
.y1c7{bottom:359.906667pt;}
.ya9{bottom:360.066667pt;}
.y19b{bottom:362.146667pt;}
.y69{bottom:364.546667pt;}
.y30{bottom:368.386667pt;}
.y21e{bottom:368.546667pt;}
.y116{bottom:370.946667pt;}
.y1c6{bottom:372.226667pt;}
.yde{bottom:372.866667pt;}
.ya8{bottom:376.066667pt;}
.y68{bottom:379.906667pt;}
.y21d{bottom:380.866667pt;}
.y2f{bottom:382.146667pt;}
.y115{bottom:386.306667pt;}
.ydd{bottom:392.066667pt;}
.ya7{bottom:392.226667pt;}
.y1c5{bottom:393.026667pt;}
.y21c{bottom:393.186667pt;}
.y67{bottom:395.106667pt;}
.y19a{bottom:395.586667pt;}
.y2e{bottom:395.906667pt;}
.y114{bottom:401.666667pt;}
.ya6{bottom:408.226667pt;}
.y66{bottom:410.466667pt;}
.y21b{bottom:413.986667pt;}
.ydc{bottom:416.226667pt;}
.y113{bottom:416.866667pt;}
.y199{bottom:417.026667pt;}
.ya5{bottom:424.386667pt;}
.y1c4{bottom:425.186667pt;}
.y65{bottom:425.826667pt;}
.ydb{bottom:432.226667pt;}
.y198{bottom:433.026667pt;}
.ya4{bottom:440.386667pt;}
.y64{bottom:441.186667pt;}
.y21a{bottom:444.706667pt;}
.yda{bottom:448.386667pt;}
.y197{bottom:449.186667pt;}
.y112{bottom:451.586667pt;}
.y63{bottom:456.386667pt;}
.ya3{bottom:456.546667pt;}
.y219{bottom:457.026667pt;}
.y1c3{bottom:457.346667pt;}
.y2d{bottom:462.466667pt;}
.yd9{bottom:464.386667pt;}
.y196{bottom:465.186667pt;}
.y218{bottom:469.186667pt;}
.y62{bottom:471.746667pt;}
.ya2{bottom:472.706667pt;}
.y1c2{bottom:473.346667pt;}
.y111{bottom:475.586667pt;}
.y2c{bottom:476.226667pt;}
.yd8{bottom:480.546667pt;}
.y217{bottom:481.506667pt;}
.y195{bottom:484.546667pt;}
.y61{bottom:487.106667pt;}
.ya1{bottom:488.706667pt;}
.y1c1{bottom:489.506667pt;}
.y2b{bottom:489.986667pt;}
.y110{bottom:491.746667pt;}
.y216{bottom:493.666667pt;}
.yd7{bottom:495.906667pt;}
.y184{bottom:496.386667pt;}
.y240{bottom:499.906667pt;}
.y60{bottom:502.466667pt;}
.y2a{bottom:503.746667pt;}
.ya0{bottom:504.866667pt;}
.y1c0{bottom:505.666667pt;}
.y215{bottom:505.986667pt;}
.y10f{bottom:507.746667pt;}
.y194{bottom:508.706667pt;}
.yd6{bottom:511.266667pt;}
.y23f{bottom:512.066667pt;}
.y183{bottom:512.386667pt;}
.y14e{bottom:512.706667pt;}
.y5f{bottom:517.666667pt;}
.y214{bottom:518.306667pt;}
.y9f{bottom:520.866667pt;}
.y1bf{bottom:521.666667pt;}
.y29{bottom:522.946667pt;}
.y10e{bottom:523.906667pt;}
.y23e{bottom:524.386667pt;}
.y193{bottom:524.706667pt;}
.yd5{bottom:526.466667pt;}
.y182{bottom:528.546667pt;}
.y14d{bottom:528.866667pt;}
.y213{bottom:530.466667pt;}
.y5e{bottom:533.026667pt;}
.y28{bottom:536.733333pt;}
.y9e{bottom:537.053333pt;}
.y23d{bottom:537.213333pt;}
.y1be{bottom:537.853333pt;}
.yd4{bottom:541.853333pt;}
.y212{bottom:542.813333pt;}
.y10d{bottom:543.293333pt;}
.y14c{bottom:544.893333pt;}
.y192{bottom:545.533333pt;}
.y5d{bottom:548.413333pt;}
.y181{bottom:549.213333pt;}
.y165{bottom:549.853333pt;}
.y27{bottom:550.493333pt;}
.y23c{bottom:552.573333pt;}
.y9d{bottom:553.053333pt;}
.y1bd{bottom:554.653333pt;}
.y211{bottom:554.973333pt;}
.yd3{bottom:558.013333pt;}
.y10c{bottom:558.653333pt;}
.y14b{bottom:561.053333pt;}
.y191{bottom:563.293333pt;}
.y5c{bottom:563.773333pt;}
.y26{bottom:564.253333pt;}
.y164{bottom:565.213333pt;}
.y180{bottom:566.973333pt;}
.y210{bottom:567.293333pt;}
.y23b{bottom:567.933333pt;}
.y9c{bottom:569.213333pt;}
.y1bc{bottom:570.653333pt;}
.yd2{bottom:574.013333pt;}
.y14a{bottom:577.053333pt;}
.y10b{bottom:577.853333pt;}
.y25{bottom:578.013333pt;}
.y5b{bottom:578.973333pt;}
.y20f{bottom:579.613333pt;}
.y23a{bottom:583.293333pt;}
.y9b{bottom:585.213333pt;}
.y163{bottom:585.853333pt;}
.y1bb{bottom:586.813333pt;}
.yd1{bottom:590.173333pt;}
.y24{bottom:591.773333pt;}
.y10a{bottom:593.213333pt;}
.y5a{bottom:594.333333pt;}
.y239{bottom:598.493333pt;}
.y9a{bottom:601.373333pt;}
.y1ba{bottom:602.813333pt;}
.y162{bottom:603.613333pt;}
.y20e{bottom:604.093333pt;}
.y23{bottom:605.693333pt;}
.yd0{bottom:606.173333pt;}
.y109{bottom:608.573333pt;}
.y149{bottom:609.213333pt;}
.y59{bottom:609.693333pt;}
.y238{bottom:613.853333pt;}
.y20d{bottom:616.253333pt;}
.y99{bottom:617.373333pt;}
.y1b9{bottom:618.973333pt;}
.y22{bottom:619.453333pt;}
.ycf{bottom:622.333333pt;}
.y58{bottom:625.053333pt;}
.y148{bottom:625.373333pt;}
.y108{bottom:627.773333pt;}
.y20c{bottom:628.573333pt;}
.y237{bottom:629.213333pt;}
.y21{bottom:633.213333pt;}
.y98{bottom:633.533333pt;}
.y1b8{bottom:634.973333pt;}
.yce{bottom:638.333333pt;}
.y57{bottom:640.253333pt;}
.y20b{bottom:640.893333pt;}
.y147{bottom:641.373333pt;}
.y236{bottom:644.573333pt;}
.y17f{bottom:644.733333pt;}
.y20{bottom:646.973333pt;}
.y97{bottom:649.533333pt;}
.y107{bottom:651.133333pt;}
.y20a{bottom:653.053333pt;}
.ycd{bottom:654.493333pt;}
.y56{bottom:655.613333pt;}
.y146{bottom:657.533333pt;}
.y235{bottom:659.773333pt;}
.y1f{bottom:660.733333pt;}
.y17e{bottom:660.893333pt;}
.y209{bottom:665.373333pt;}
.y96{bottom:665.693333pt;}
.y106{bottom:666.493333pt;}
.y1b7{bottom:667.293333pt;}
.ycc{bottom:670.493333pt;}
.y55{bottom:670.973333pt;}
.y234{bottom:672.253333pt;}
.y145{bottom:673.533333pt;}
.y1e{bottom:674.653333pt;}
.y17d{bottom:676.893333pt;}
.y208{bottom:677.533333pt;}
.y95{bottom:681.853333pt;}
.y1b6{bottom:683.293333pt;}
.y54{bottom:686.333333pt;}
.y1d{bottom:688.413333pt;}
.y144{bottom:689.693333pt;}
.ycb{bottom:689.853333pt;}
.y17c{bottom:693.053333pt;}
.y105{bottom:697.213333pt;}
.y94{bottom:697.853333pt;}
.y1b5{bottom:699.453333pt;}
.y1c{bottom:702.173333pt;}
.y53{bottom:704.573333pt;}
.y143{bottom:705.693333pt;}
.y104{bottom:712.413333pt;}
.y17b{bottom:713.693333pt;}
.y93{bottom:714.013333pt;}
.y207{bottom:714.333333pt;}
.y1b4{bottom:715.453333pt;}
.y1b{bottom:715.933333pt;}
.yca{bottom:721.213333pt;}
.y142{bottom:721.853333pt;}
.y206{bottom:726.653333pt;}
.y103{bottom:727.773333pt;}
.y1a{bottom:729.693333pt;}
.y92{bottom:730.013333pt;}
.y17a{bottom:731.453333pt;}
.y1b3{bottom:731.613333pt;}
.y141{bottom:737.853333pt;}
.y205{bottom:738.813333pt;}
.y52{bottom:740.253333pt;}
.y1ea{bottom:742.973333pt;}
.y102{bottom:743.133333pt;}
.y19{bottom:743.453333pt;}
.y91{bottom:746.173333pt;}
.y1b2{bottom:747.613333pt;}
.y204{bottom:751.133333pt;}
.yc9{bottom:753.213333pt;}
.y140{bottom:754.013333pt;}
.y18{bottom:757.373333pt;}
.y90{bottom:762.173333pt;}
.y101{bottom:762.333333pt;}
.y203{bottom:763.453333pt;}
.y1b1{bottom:763.773333pt;}
.y190{bottom:768.573333pt;}
.yc8{bottom:769.373333pt;}
.y13f{bottom:770.173333pt;}
.y17{bottom:771.133333pt;}
.y51{bottom:771.293333pt;}
.y202{bottom:775.653333pt;}
.y8f{bottom:778.373333pt;}
.y1b0{bottom:779.813333pt;}
.y18f{bottom:784.773333pt;}
.y16{bottom:784.933333pt;}
.y50{bottom:785.093333pt;}
.yc7{bottom:785.413333pt;}
.y100{bottom:785.733333pt;}
.y13e{bottom:786.213333pt;}
.y201{bottom:787.973333pt;}
.y8e{bottom:794.373333pt;}
.y1af{bottom:795.973333pt;}
.y15{bottom:798.693333pt;}
.y4f{bottom:798.853333pt;}
.y200{bottom:800.133333pt;}
.y18e{bottom:800.773333pt;}
.yff{bottom:801.093333pt;}
.yc6{bottom:801.573333pt;}
.y13d{bottom:802.373333pt;}
.y8d{bottom:810.533333pt;}
.y161{bottom:811.653333pt;}
.y1ae{bottom:811.973333pt;}
.y14{bottom:812.453333pt;}
.y4e{bottom:812.613333pt;}
.yfe{bottom:816.453333pt;}
.yc5{bottom:817.573333pt;}
.y13c{bottom:818.373333pt;}
.y18d{bottom:821.573333pt;}
.y1ff{bottom:824.773333pt;}
.y13{bottom:826.213333pt;}
.y4d{bottom:826.533333pt;}
.y1ad{bottom:827.333333pt;}
.y160{bottom:830.533333pt;}
.yfd{bottom:831.813333pt;}
.yc4{bottom:833.733333pt;}
.y13b{bottom:834.533333pt;}
.y1fe{bottom:836.933333pt;}
.y12{bottom:840.133333pt;}
.y4c{bottom:840.293333pt;}
.y18c{bottom:841.893333pt;}
.y8c{bottom:842.693333pt;}
.y15f{bottom:846.533333pt;}
.yfc{bottom:847.013333pt;}
.y1e4{bottom:847.813333pt;}
.y1fd{bottom:849.253333pt;}
.yc3{bottom:849.893333pt;}
.y13a{bottom:850.533333pt;}
.y18b{bottom:853.093333pt;}
.y11{bottom:853.893333pt;}
.y4b{bottom:854.053333pt;}
.y8b{bottom:858.693333pt;}
.y1fc{bottom:861.413333pt;}
.yfb{bottom:862.373333pt;}
.y15e{bottom:862.693333pt;}
.yc2{bottom:865.893333pt;}
.y1ac{bottom:866.053333pt;}
.y139{bottom:866.693333pt;}
.y10{bottom:867.653333pt;}
.y4a{bottom:867.813333pt;}
.y1fb{bottom:873.733333pt;}
.y8a{bottom:874.853333pt;}
.yfa{bottom:877.733333pt;}
.y15d{bottom:878.693333pt;}
.yf{bottom:881.413333pt;}
.y49{bottom:881.573333pt;}
.yc1{bottom:882.053333pt;}
.y138{bottom:882.693333pt;}
.y1fa{bottom:886.053333pt;}
.y89{bottom:890.853333pt;}
.yf9{bottom:893.093333pt;}
.y15c{bottom:894.853333pt;}
.ye{bottom:895.173333pt;}
.y48{bottom:895.493333pt;}
.yc0{bottom:898.053333pt;}
.y1f9{bottom:898.213333pt;}
.y137{bottom:898.853333pt;}
.y88{bottom:907.013333pt;}
.yf8{bottom:908.293333pt;}
.yd{bottom:909.093333pt;}
.y47{bottom:909.573333pt;}
.y1f8{bottom:910.533333pt;}
.y15b{bottom:910.853333pt;}
.ybf{bottom:914.213333pt;}
.y136{bottom:914.853333pt;}
.y1f7{bottom:922.693333pt;}
.y87{bottom:923.173333pt;}
.yf7{bottom:923.653333pt;}
.y179{bottom:924.613333pt;}
.y15a{bottom:927.013333pt;}
.ybe{bottom:930.213333pt;}
.y135{bottom:931.013333pt;}
.y7a{bottom:934.373333pt;}
.y1f6{bottom:935.013333pt;}
.yf6{bottom:939.013333pt;}
.y86{bottom:939.173333pt;}
.y159{bottom:943.173333pt;}
.ybd{bottom:946.373333pt;}
.y134{bottom:947.013333pt;}
.y1f5{bottom:947.333333pt;}
.yf5{bottom:954.373333pt;}
.y158{bottom:959.173333pt;}
.y1df{bottom:959.493333pt;}
.ybc{bottom:962.373333pt;}
.y85{bottom:962.533333pt;}
.y133{bottom:963.173333pt;}
.y1f4{bottom:971.813333pt;}
.yf4{bottom:973.573333pt;}
.y157{bottom:975.333333pt;}
.ybb{bottom:978.533333pt;}
.y7c{bottom:979.973333pt;}
.y132{bottom:982.533333pt;}
.y1f3{bottom:983.973333pt;}
.y156{bottom:991.333333pt;}
.y84{bottom:994.533333pt;}
.y1f2{bottom:996.293333pt;}
.yf3{bottom:996.933333pt;}
.y131{bottom:1003.653333pt;}
.y155{bottom:1007.493333pt;}
.y1f1{bottom:1008.613333pt;}
.y83{bottom:1010.693333pt;}
.yf2{bottom:1012.320000pt;}
.y130{bottom:1016.640000pt;}
.y1f0{bottom:1020.800000pt;}
.y154{bottom:1023.520000pt;}
.y82{bottom:1026.720000pt;}
.yf1{bottom:1027.680000pt;}
.y12f{bottom:1029.440000pt;}
.y1ef{bottom:1033.120000pt;}
.y12e{bottom:1042.400000pt;}
.y81{bottom:1042.880000pt;}
.y1ee{bottom:1045.280000pt;}
.y80{bottom:1079.680000pt;}
.y2{bottom:1082.400000pt;}
.y7f{bottom:1096.480000pt;}
.y1{bottom:1097.600000pt;}
.h19{height:12.160000pt;}
.h1e{height:12.160133pt;}
.h18{height:12.320000pt;}
.h1d{height:12.320133pt;}
.h1a{height:12.352000pt;}
.h22{height:12.480000pt;}
.h23{height:12.512000pt;}
.h16{height:13.600000pt;}
.h15{height:14.720000pt;}
.he{height:20.160000pt;}
.h17{height:22.343750pt;}
.h21{height:24.640000pt;}
.h14{height:25.920000pt;}
.hb{height:29.940625pt;}
.ha{height:30.254687pt;}
.h27{height:31.217812pt;}
.h5{height:32.620625pt;}
.h9{height:33.515625pt;}
.h8{height:33.867188pt;}
.h20{height:36.515625pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h12{height:38.672812pt;}
.h7{height:38.953125pt;}
.h24{height:39.347188pt;}
.h13{height:40.410625pt;}
.hf{height:41.543750pt;}
.h6{height:41.920000pt;}
.hc{height:43.108125pt;}
.h25{height:43.613750pt;}
.h2b{height:44.480000pt;}
.h1b{height:44.687500pt;}
.h1f{height:45.156250pt;}
.h2a{height:46.272000pt;}
.h28{height:48.320000pt;}
.h29{height:48.480000pt;}
.h4{height:48.960000pt;}
.h26{height:58.563750pt;}
.h1c{height:63.656250pt;}
.h10{height:73.632000pt;}
.hd{height:74.628125pt;}
.h11{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:29.120000pt;}
.w9{width:31.680000pt;}
.w15{width:36.960000pt;}
.wc{width:39.840000pt;}
.w7{width:39.872000pt;}
.w17{width:44.032000pt;}
.w11{width:46.560000pt;}
.wd{width:47.040000pt;}
.w8{width:48.160000pt;}
.w10{width:52.000000pt;}
.wa{width:54.080000pt;}
.w1b{width:57.152000pt;}
.w19{width:61.952000pt;}
.w18{width:62.112000pt;}
.w1a{width:63.872000pt;}
.w12{width:65.632000pt;}
.wb{width:65.952000pt;}
.w14{width:74.912000pt;}
.w13{width:83.200000pt;}
.we{width:168.826667pt;}
.wf{width:168.986667pt;}
.w2{width:172.826667pt;}
.w3{width:215.586667pt;}
.w4{width:629.853333pt;}
.w5{width:649.093333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x35{left:8.640000pt;}
.x5{left:9.600000pt;}
.x20{left:11.360000pt;}
.x32{left:12.800000pt;}
.x36{left:13.760000pt;}
.x34{left:16.480000pt;}
.x4a{left:18.106667pt;}
.x4c{left:19.386667pt;}
.xe{left:38.720000pt;}
.x4e{left:47.552000pt;}
.x47{left:52.512000pt;}
.x49{left:54.426667pt;}
.x1a{left:55.520000pt;}
.x6{left:62.400000pt;}
.x23{left:63.866667pt;}
.x4d{left:64.800000pt;}
.x16{left:66.879988pt;}
.x3f{left:68.479988pt;}
.x26{left:70.746667pt;}
.x8{left:71.840000pt;}
.x25{left:74.920000pt;}
.x7{left:76.000000pt;}
.x40{left:77.759988pt;}
.x19{left:80.031988pt;}
.x4f{left:81.311988pt;}
.xd{left:83.072000pt;}
.x2f{left:88.671988pt;}
.x17{left:90.911988pt;}
.x2c{left:93.151988pt;}
.x1c{left:96.032000pt;}
.x18{left:100.191988pt;}
.xf{left:103.546667pt;}
.x2a{left:110.431988pt;}
.x37{left:122.431988pt;}
.x52{left:137.626655pt;}
.x41{left:139.226655pt;}
.x51{left:140.186655pt;}
.x30{left:142.106667pt;}
.x12{left:143.226655pt;}
.x1d{left:144.826667pt;}
.x11{left:149.306655pt;}
.x2e{left:151.226655pt;}
.x50{left:158.586655pt;}
.x42{left:169.146667pt;}
.x1e{left:177.146667pt;}
.x31{left:194.746667pt;}
.x43{left:206.746667pt;}
.x38{left:229.306667pt;}
.x1f{left:231.866667pt;}
.x44{left:236.506667pt;}
.x33{left:241.946667pt;}
.x21{left:298.466667pt;}
.x1{left:338.626667pt;}
.x2d{left:358.146655pt;}
.x2b{left:360.226655pt;}
.x2{left:377.986667pt;}
.x3e{left:386.946655pt;}
.x3d{left:390.306655pt;}
.x3{left:393.506667pt;}
.x10{left:396.866655pt;}
.x22{left:399.746667pt;}
.x9{left:406.466667pt;}
.x48{left:409.186667pt;}
.x4b{left:410.146667pt;}
.x15{left:414.653322pt;}
.xb{left:415.933333pt;}
.x4{left:417.693333pt;}
.x46{left:425.373322pt;}
.x14{left:434.973322pt;}
.x3b{left:464.413322pt;}
.x3a{left:466.813322pt;}
.x45{left:475.293322pt;}
.x55{left:478.493322pt;}
.x29{left:486.013322pt;}
.xc{left:486.973333pt;}
.x54{left:489.213322pt;}
.x53{left:490.333322pt;}
.x13{left:491.293322pt;}
.x28{left:497.213322pt;}
.xa{left:506.493333pt;}
.x24{left:569.373333pt;}
.x27{left:717.413322pt;}
.x56{left:728.453322pt;}
.x39{left:731.013322pt;}
.x3c{left:740.933322pt;}
}




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