
    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_2ee890ffc144bdca80f921f7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_d891a7135e2b4bac92643b45.woff')format("woff");}.ff2{font-family:ff2;line-height:0.722000;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_bbc2087e0cac429759574f48.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_d186de30c651016e393ddafa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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_c1961de36977e9aaaa8b67dc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030762;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_3979ae054dfdce105f02f81a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.905762;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_533a25107fa10ac0572874be.woff')format("woff");}.ff7{font-family:ff7;line-height:0.905762;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_5f1c6921f0a370722bc5df0e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_ee91ef926143a8888f73b6d8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_02866457438e267fd1cbb03a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_e081d3aacd662c422f4c02e7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_74770664d08788908fa825ce.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls8{letter-spacing:0.006600px;}
.lse{letter-spacing:0.250800px;}
.lsc{letter-spacing:0.759000px;}
.ls9{letter-spacing:1.194600px;}
.lsa{letter-spacing:1.201200px;}
.ls5{letter-spacing:3.261600px;}
.ls4{letter-spacing:6.121800px;}
.ls6{letter-spacing:9.088200px;}
.ls7{letter-spacing:19.569000px;}
.lsd{letter-spacing:122.680800px;}
.ls3{letter-spacing:195.984000px;}
.lsb{letter-spacing:197.650200px;}
.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;}
}
.ws8{word-spacing:-40.801200px;}
.ws7{word-spacing:-39.606600px;}
.wsa{word-spacing:-32.405400px;}
.ws6{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.107000px;}
.wsc{word-spacing:-18.598800px;}
.ws5{word-spacing:-18.348000px;}
.ws0{word-spacing:-16.680000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.999500px;}
.ws4{word-spacing:-0.066000px;}
.ws9{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:34.608000px;}
._0{margin-left:-7.056000px;}
._4{margin-left:-6.006000px;}
._2{margin-left:-4.416000px;}
._3{margin-left:-3.294000px;}
._1{margin-left:-1.728000px;}
._5{width:1.007964px;}
._d{width:2.377744px;}
._7{width:4.037456px;}
._6{width:5.179815px;}
._b{width:6.705600px;}
._10{width:8.225400px;}
._f{width:9.419400px;}
._e{width:10.499400px;}
._13{width:12.058200px;}
._c{width:13.726800px;}
._a{width:14.810400px;}
._11{width:15.853200px;}
._8{width:17.008200px;}
._14{width:19.773600px;}
._12{width:21.186000px;}
._9{width:22.255200px;}
._17{width:23.641200px;}
._1a{width:25.034400px;}
._15{width:27.046800px;}
._18{width:28.512000px;}
._19{width:29.898000px;}
._16{width:31.239360px;}
._1b{width:32.662800px;}
._1c{width:52.956000px;}
.fc4{color:rgb(211,24,118);}
.fc3{color:rgb(238,34,12);}
.fc5{color:rgb(242,114,0);}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:55.998000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:79.998000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:7.185315px;}
.ye2{bottom:9.194850px;}
.y211{bottom:9.194955px;}
.ye8{bottom:9.194970px;}
.y10a{bottom:9.194985px;}
.ybe{bottom:9.195000px;}
.y241{bottom:9.254850px;}
.y1fb{bottom:9.505200px;}
.yda{bottom:9.514350px;}
.y148{bottom:9.514500px;}
.y1fe{bottom:9.569850px;}
.y25{bottom:9.905850px;}
.y1c{bottom:9.906000px;}
.y2f{bottom:10.153350px;}
.y20{bottom:10.153500px;}
.y1d{bottom:10.177350px;}
.y2e{bottom:11.291850px;}
.y1f{bottom:11.292000px;}
.yd5{bottom:12.285000px;}
.yd0{bottom:12.397500px;}
.yde{bottom:12.584850px;}
.y10d{bottom:12.584970px;}
.yd2{bottom:12.585000px;}
.y175{bottom:12.960000px;}
.yce{bottom:13.035000px;}
.y174{bottom:13.321500px;}
.ydd{bottom:13.472100px;}
.y10c{bottom:13.472205px;}
.yf7{bottom:13.472250px;}
.y150{bottom:13.709955px;}
.y14b{bottom:13.710000px;}
.y14f{bottom:14.071455px;}
.y14a{bottom:14.071500px;}
.y1ca{bottom:17.551050px;}
.yaa{bottom:17.551875px;}
.y247{bottom:18.194850px;}
.y195{bottom:20.780985px;}
.y237{bottom:22.040400px;}
.y18{bottom:22.325220px;}
.ye1{bottom:27.194850px;}
.ye7{bottom:27.194970px;}
.y109{bottom:27.194985px;}
.yf1{bottom:27.195000px;}
.yd9{bottom:27.514350px;}
.y1e2{bottom:27.514500px;}
.ye0{bottom:28.082100px;}
.y128{bottom:28.082205px;}
.y108{bottom:28.082235px;}
.yf3{bottom:28.082250px;}
.y146{bottom:35.922000px;}
.y147{bottom:36.283500px;}
.y171{bottom:42.783000px;}
.y61{bottom:44.320050px;}
.ya9{bottom:44.320875px;}
.ydb{bottom:45.152850px;}
.ye6{bottom:45.194910px;}
.yf0{bottom:45.195000px;}
.yd8{bottom:45.514350px;}
.yd7{bottom:46.040100px;}
.ye5{bottom:46.082160px;}
.yef{bottom:46.082250px;}
.y1f4{bottom:46.920375px;}
.y236{bottom:48.809400px;}
.y86{bottom:55.502580px;}
.ybc{bottom:55.642515px;}
.y1b5{bottom:57.771030px;}
.y39{bottom:59.469675px;}
.yfd{bottom:63.195000px;}
.y17{bottom:64.028190px;}
.yfc{bottom:64.082250px;}
.y1b6{bottom:70.857645px;}
.y1c9{bottom:71.089050px;}
.ya8{bottom:71.089950px;}
.y60{bottom:71.839020px;}
.y176{bottom:74.791740px;}
.y235{bottom:75.578400px;}
.y10e{bottom:78.617550px;}
.y1{bottom:78.749130px;}
.y210{bottom:78.950160px;}
.y85{bottom:82.271550px;}
.ybb{bottom:82.411500px;}
.y16{bottom:84.028020px;}
.y3b{bottom:84.268380px;}
.y19{bottom:84.295650px;}
.y1b4{bottom:84.540000px;}
.y194{bottom:85.087260px;}
.y127{bottom:91.511550px;}
.y141{bottom:97.263930px;}
.y170{bottom:97.738350px;}
.y1c8{bottom:97.858005px;}
.ya7{bottom:97.858950px;}
.y151{bottom:99.636930px;}
.y15{bottom:100.528020px;}
.y5f{bottom:100.858020px;}
.y1f3{bottom:101.875800px;}
.y234{bottom:102.347400px;}
.ye4{bottom:108.807240px;}
.y84{bottom:109.040550px;}
.yba{bottom:109.180500px;}
.y1b3{bottom:111.309000px;}
.y193{bottom:111.856260px;}
.y10b{bottom:115.404465px;}
.y16f{bottom:124.507350px;}
.y1c7{bottom:124.627005px;}
.ya6{bottom:124.627950px;}
.y1f2{bottom:128.644800px;}
.y233{bottom:129.116400px;}
.y5e{bottom:129.127020px;}
.y197{bottom:129.834000px;}
.y1e0{bottom:132.354750px;}
.y14e{bottom:133.731930px;}
.y83{bottom:135.809550px;}
.yb9{bottom:135.949500px;}
.y14{bottom:136.028220px;}
.y1b2{bottom:138.078000px;}
.y192{bottom:138.625260px;}
.y126{bottom:140.216550px;}
.y107{bottom:149.499465px;}
.y16e{bottom:151.276350px;}
.y1c6{bottom:151.396005px;}
.ya5{bottom:151.396950px;}
.y1f1{bottom:155.413800px;}
.y5d{bottom:155.896020px;}
.y232{bottom:156.709650px;}
.y1df{bottom:159.123750px;}
.yb8{bottom:162.718500px;}
.y82{bottom:163.402800px;}
.y1b1{bottom:164.847000px;}
.y191{bottom:165.394410px;}
.y14d{bottom:167.826900px;}
.ye3{bottom:175.512300px;}
.y16d{bottom:178.045500px;}
.y1c5{bottom:178.165005px;}
.ya4{bottom:178.165950px;}
.y1f0{bottom:182.182800px;}
.y5c{bottom:182.665020px;}
.y1de{bottom:185.892750px;}
.y125{bottom:188.921550px;}
.y81{bottom:191.589300px;}
.y1b0{bottom:191.616000px;}
.yb7{bottom:192.159000px;}
.y190{bottom:192.163410px;}
.y106{bottom:198.204450px;}
.y14c{bottom:201.921900px;}
.y16c{bottom:204.814500px;}
.y1c4{bottom:204.934005px;}
.ya3{bottom:204.934950px;}
.y5b{bottom:209.434020px;}
.y1ef{bottom:209.701800px;}
.y231{bottom:211.665150px;}
.y1dd{bottom:212.661750px;}
.y80{bottom:218.358300px;}
.y1af{bottom:218.385000px;}
.y18f{bottom:218.932410px;}
.y124{bottom:223.016550px;}
.ydf{bottom:224.217300px;}
.y38{bottom:226.386000px;}
.y16b{bottom:231.583500px;}
.ya2{bottom:231.703950px;}
.y105{bottom:232.299450px;}
.y1c3{bottom:232.527405px;}
.y149{bottom:236.016900px;}
.y5a{bottom:236.953020px;}
.y1ee{bottom:237.970800px;}
.y13{bottom:238.030320px;}
.y230{bottom:238.434150px;}
.y1dc{bottom:239.430750px;}
.y7f{bottom:245.127300px;}
.y1ae{bottom:245.154000px;}
.y18e{bottom:245.701410px;}
.y16a{bottom:258.352500px;}
.ya1{bottom:259.297200px;}
.y37{bottom:260.340000px;}
.y1ed{bottom:264.739800px;}
.y22f{bottom:265.203150px;}
.y59{bottom:265.972020px;}
.y1db{bottom:266.199750px;}
.y104{bottom:266.394450px;}
.y145{bottom:270.111900px;}
.y123{bottom:271.721550px;}
.y7e{bottom:271.896300px;}
.y1ad{bottom:271.923000px;}
.y18d{bottom:272.470410px;}
.ydc{bottom:272.922300px;}
.y12{bottom:280.528020px;}
.y1c2{bottom:281.713755px;}
.y169{bottom:285.121500px;}
.y1ec{bottom:291.508800px;}
.y22e{bottom:291.972150px;}
.y1da{bottom:292.968750px;}
.y143{bottom:293.055120px;}
.y58{bottom:294.241020px;}
.y36{bottom:295.442850px;}
.y18c{bottom:299.239410px;}
.y7d{bottom:299.489550px;}
.y1ac{bottom:299.516250px;}
.yd6{bottom:307.017300px;}
.y1c1{bottom:308.482755px;}
.y168{bottom:311.890500px;}
.y142{bottom:314.562720px;}
.y103{bottom:315.099450px;}
.y1eb{bottom:318.277800px;}
.y22d{bottom:318.741150px;}
.y1d9{bottom:319.737750px;}
.y57{bottom:321.010020px;}
.y18b{bottom:326.008410px;}
.y7c{bottom:327.676050px;}
.y1ab{bottom:327.702750px;}
.y144{bottom:327.918900px;}
.y1c0{bottom:335.251755px;}
.y122{bottom:338.426550px;}
.y167{bottom:338.659500px;}
.ybd{bottom:339.404550px;}
.ya0{bottom:343.263300px;}
.y1ea{bottom:345.046800px;}
.y22c{bottom:345.510150px;}
.y1d8{bottom:347.331000px;}
.y56{bottom:347.779020px;}
.y102{bottom:349.194450px;}
.y18a{bottom:352.777410px;}
.y7b{bottom:354.445050px;}
.y1aa{bottom:354.471750px;}
.y11{bottom:355.028220px;}
.y1bf{bottom:362.020755px;}
.y35{bottom:363.374850px;}
.y166{bottom:365.428500px;}
.ycc{bottom:368.187450px;}
.y9f{bottom:370.032300px;}
.y1e9{bottom:371.815800px;}
.y22b{bottom:372.279150px;}
.yd4{bottom:374.055300px;}
.y55{bottom:374.548020px;}
.y1d7{bottom:375.517500px;}
.y189{bottom:379.546410px;}
.y7a{bottom:381.214050px;}
.y1a9{bottom:381.240750px;}
.y13f{bottom:381.963750px;}
.y101{bottom:383.289450px;}
.y10{bottom:384.278220px;}
.y121{bottom:387.131550px;}
.y1be{bottom:388.789755px;}
.y165{bottom:392.197500px;}
.y9e{bottom:396.801300px;}
.y34{bottom:397.328850px;}
.y1e8{bottom:398.584800px;}
.y22a{bottom:399.048150px;}
.ycb{bottom:401.248650px;}
.y54{bottom:401.317020px;}
.y1d6{bottom:402.286500px;}
.y188{bottom:407.065410px;}
.y1a8{bottom:408.009750px;}
.y13e{bottom:408.732750px;}
.y79{bottom:408.733050px;}
.y1f9{bottom:412.768350px;}
.yf{bottom:413.528220px;}
.y1bd{bottom:415.558755px;}
.y164{bottom:418.966500px;}
.y9d{bottom:423.570300px;}
.y1e7{bottom:425.353800px;}
.y229{bottom:425.817150px;}
.y53{bottom:428.086020px;}
.y1d5{bottom:429.055500px;}
.y33{bottom:431.282850px;}
.yca{bottom:431.815650px;}
.y100{bottom:431.994450px;}
.y1f8{bottom:434.275950px;}
.y1a7{bottom:434.778750px;}
.y13d{bottom:435.501750px;}
.y120{bottom:435.836550px;}
.y78{bottom:437.826300px;}
.y1bc{bottom:442.327755px;}
.ye{bottom:442.778220px;}
.y163{bottom:445.735500px;}
.y9c{bottom:450.339300px;}
.y1e6{bottom:452.122800px;}
.y228{bottom:452.586150px;}
.y52{bottom:454.855020px;}
.y23c{bottom:454.900500px;}
.y1f7{bottom:455.783550px;}
.y1d4{bottom:455.824500px;}
.y23f{bottom:458.046150px;}
.yc9{bottom:460.826400px;}
.y1a6{bottom:461.547750px;}
.y187{bottom:462.103410px;}
.y13c{bottom:462.270750px;}
.y32{bottom:465.236850px;}
.y77{bottom:466.012650px;}
.yff{bottom:466.089450px;}
.y1bb{bottom:469.096755px;}
.y11f{bottom:469.931550px;}
.yd{bottom:472.028220px;}
.y162{bottom:472.504500px;}
.y23e{bottom:476.046150px;}
.y9b{bottom:477.108300px;}
.y1f6{bottom:477.291150px;}
.y1e5{bottom:478.891800px;}
.y227{bottom:479.355150px;}
.y51{bottom:481.624020px;}
.y23b{bottom:481.669500px;}
.y1d3{bottom:482.593500px;}
.y1a5{bottom:488.316750px;}
.y186{bottom:488.872410px;}
.y13b{bottom:489.039750px;}
.y76{bottom:492.781650px;}
.y1ba{bottom:495.865755px;}
.y31{bottom:499.190850px;}
.y161{bottom:499.273500px;}
.yfe{bottom:500.184450px;}
.yc{bottom:501.278220px;}
.y11e{bottom:504.026550px;}
.y9a{bottom:504.701550px;}
.y1e4{bottom:505.660800px;}
.y226{bottom:506.124150px;}
.y50{bottom:508.393020px;}
.y23a{bottom:508.438500px;}
.y1d2{bottom:509.362500px;}
.y1a4{bottom:515.085750px;}
.y185{bottom:515.641410px;}
.y13a{bottom:515.808750px;}
.y75{bottom:519.550650px;}
.y1b9{bottom:522.634755px;}
.y160{bottom:526.042500px;}
.yb{bottom:530.528220px;}
.y99{bottom:532.887900px;}
.y225{bottom:532.893150px;}
.y30{bottom:533.144850px;}
.y1e3{bottom:533.254050px;}
.yfb{bottom:534.279450px;}
.y4f{bottom:535.162020px;}
.y239{bottom:535.207500px;}
.y1d1{bottom:536.131500px;}
.y1a3{bottom:541.854750px;}
.y184{bottom:542.410410px;}
.y139{bottom:542.577750px;}
.y20f{bottom:542.679000px;}
.y74{bottom:546.319650px;}
.y1b8{bottom:549.403755px;}
.y11d{bottom:552.731550px;}
.y15f{bottom:552.811500px;}
.y98{bottom:559.657050px;}
.y224{bottom:559.662150px;}
.ya{bottom:559.778220px;}
.y4e{bottom:561.931020px;}
.y238{bottom:561.976500px;}
.y1d0{bottom:562.900500px;}
.y2d{bottom:567.098850px;}
.y1a2{bottom:568.623750px;}
.y183{bottom:569.179410px;}
.y138{bottom:569.346750px;}
.y20e{bottom:570.865500px;}
.y73{bottom:573.912900px;}
.y1b7{bottom:576.997005px;}
.y15e{bottom:579.580500px;}
.y9{bottom:580.530570px;}
.y97{bottom:586.426050px;}
.y223{bottom:586.431150px;}
.y11c{bottom:586.826550px;}
.y4d{bottom:588.700020px;}
.y1cf{bottom:589.669500px;}
.y1a1{bottom:595.392750px;}
.y182{bottom:595.948410px;}
.y137{bottom:596.115750px;}
.y20d{bottom:597.634500px;}
.y72{bottom:602.099400px;}
.y2c{bottom:602.177850px;}
.y15d{bottom:606.349500px;}
.yd3{bottom:607.674150px;}
.y222{bottom:613.200150px;}
.y96{bottom:614.019300px;}
.y4c{bottom:615.469020px;}
.y1ce{bottom:616.438500px;}
.yfa{bottom:618.984450px;}
.y1a0{bottom:622.161750px;}
.y181{bottom:622.717410px;}
.y136{bottom:622.884750px;}
.y20c{bottom:624.403500px;}
.y71{bottom:628.868400px;}
.y15c{bottom:633.118500px;}
.y11b{bottom:635.531550px;}
.y221{bottom:639.969150px;}
.yd1{bottom:641.769150px;}
.y95{bottom:642.205650px;}
.y4b{bottom:642.238020px;}
.y1cd{bottom:643.207500px;}
.y19f{bottom:648.930750px;}
.y180{bottom:649.486410px;}
.y135{bottom:649.653750px;}
.y20b{bottom:651.172500px;}
.y70{bottom:655.637400px;}
.y15b{bottom:659.887500px;}
.yed{bottom:662.196600px;}
.y8{bottom:662.618220px;}
.y220{bottom:666.738150px;}
.yf9{bottom:668.064450px;}
.y94{bottom:668.974650px;}
.y4a{bottom:669.007020px;}
.y11a{bottom:669.626550px;}
.y1cc{bottom:669.976500px;}
.y1f5{bottom:670.045650px;}
.y2b{bottom:670.109700px;}
.yc8{bottom:673.441500px;}
.y208{bottom:673.770450px;}
.ycf{bottom:675.864150px;}
.y17f{bottom:676.255410px;}
.y134{bottom:676.422750px;}
.y19e{bottom:676.524000px;}
.y20a{bottom:677.941500px;}
.y23d{bottom:678.295650px;}
.y1cb{bottom:681.355800px;}
.y24e{bottom:681.520800px;}
.y6f{bottom:682.406400px;}
.y15a{bottom:686.656500px;}
.y7{bottom:689.513220px;}
.y21f{bottom:693.507150px;}
.yec{bottom:695.257800px;}
.y93{bottom:695.743650px;}
.y49{bottom:695.776020px;}
.y17e{bottom:703.024410px;}
.y133{bottom:703.191750px;}
.y207{bottom:703.350450px;}
.y2a{bottom:704.063700px;}
.y209{bottom:704.710500px;}
.y6e{bottom:709.175400px;}
.ycd{bottom:710.146650px;}
.y24d{bottom:712.600800px;}
.y159{bottom:713.425500px;}
.y119{bottom:718.331550px;}
.y21e{bottom:720.276150px;}
.y48{bottom:722.545020px;}
.y92{bottom:723.336900px;}
.yc7{bottom:726.979500px;}
.yeb{bottom:728.319000px;}
.y132{bottom:729.960750px;}
.y19d{bottom:731.479500px;}
.y206{bottom:732.930450px;}
.y6d{bottom:736.768650px;}
.y29{bottom:738.017700px;}
.y158{bottom:740.194500px;}
.y24c{bottom:743.680800px;}
.y21d{bottom:747.045150px;}
.y47{bottom:750.138420px;}
.y91{bottom:751.523400px;}
.yc6{bottom:753.748500px;}
.y131{bottom:756.729750px;}
.yb6{bottom:756.831000px;}
.y19c{bottom:758.248500px;}
.yea{bottom:758.886000px;}
.y205{bottom:763.260450px;}
.y6c{bottom:764.955000px;}
.y157{bottom:766.963500px;}
.y6{bottom:771.770970px;}
.y28{bottom:771.971700px;}
.y21c{bottom:773.814150px;}
.y24b{bottom:774.760800px;}
.y90{bottom:778.292400px;}
.yc5{bottom:780.517500px;}
.y130{bottom:783.498750px;}
.y19b{bottom:785.017500px;}
.y118{bottom:785.036550px;}
.y1e1{bottom:786.804450px;}
.ye9{bottom:787.072500px;}
.y204{bottom:792.840450px;}
.y156{bottom:793.732500px;}
.y6b{bottom:794.440650px;}
.y21b{bottom:800.583150px;}
.y8f{bottom:805.061400px;}
.y46{bottom:805.093770px;}
.y24a{bottom:805.840800px;}
.y27{bottom:805.925700px;}
.yc4{bottom:807.286500px;}
.y12f{bottom:810.267750px;}
.yb5{bottom:811.786500px;}
.y117{bottom:819.131550px;}
.y155{bottom:820.501500px;}
.y203{bottom:822.420450px;}
.y196{bottom:826.162650px;}
.y6a{bottom:826.402650px;}
.y21a{bottom:827.352150px;}
.y19a{bottom:828.877650px;}
.y45{bottom:831.862770px;}
.y8e{bottom:832.654650px;}
.yc3{bottom:834.055500px;}
.y249{bottom:836.920800px;}
.y12e{bottom:837.036750px;}
.yb4{bottom:838.555500px;}
.y26{bottom:839.879700px;}
.y154{bottom:847.270500px;}
.y202{bottom:852.000450px;}
.y116{bottom:853.226550px;}
.y219{bottom:854.121150px;}
.y69{bottom:855.648000px;}
.y44{bottom:858.631770px;}
.yc2{bottom:860.824500px;}
.y8d{bottom:860.841000px;}
.y199{bottom:862.972650px;}
.y12d{bottom:863.805750px;}
.yb3{bottom:865.324500px;}
.y153{bottom:874.039500px;}
.y24{bottom:874.958700px;}
.y218{bottom:880.890150px;}
.y201{bottom:882.330450px;}
.y68{bottom:884.008650px;}
.y43{bottom:885.400770px;}
.y248{bottom:886.000800px;}
.yc1{bottom:887.593500px;}
.y8c{bottom:887.610000px;}
.y12c{bottom:890.574750px;}
.yb2{bottom:892.093500px;}
.yf8{bottom:896.785650px;}
.y198{bottom:897.817650px;}
.y152{bottom:901.558500px;}
.y115{bottom:901.931550px;}
.y217{bottom:907.659150px;}
.y200{bottom:911.910450px;}
.y42{bottom:912.169770px;}
.y67{bottom:912.879000px;}
.y8b{bottom:914.379000px;}
.yc0{bottom:915.112500px;}
.y246{bottom:917.080800px;}
.y5{bottom:917.191170px;}
.y12b{bottom:917.343750px;}
.yb1{bottom:918.862500px;}
.y112{bottom:920.734500px;}
.y17d{bottom:928.366410px;}
.yf6{bottom:930.880650px;}
.y216{bottom:934.428150px;}
.y41{bottom:938.938770px;}
.y8a{bottom:941.148000px;}
.y1ff{bottom:941.490450px;}
.y66{bottom:941.972400px;}
.y23{bottom:942.890550px;}
.y12a{bottom:944.112750px;}
.ybf{bottom:944.131500px;}
.yb0{bottom:945.631500px;}
.y111{bottom:948.168750px;}
.y114{bottom:951.011550px;}
.y17c{bottom:955.135410px;}
.y215{bottom:961.197150px;}
.yf5{bottom:964.975650px;}
.y40{bottom:965.707770px;}
.y245{bottom:966.160800px;}
.y4{bottom:968.549520px;}
.y89{bottom:968.741400px;}
.y65{bottom:970.158750px;}
.y1fd{bottom:971.070450px;}
.y129{bottom:971.706000px;}
.yaf{bottom:972.400500px;}
.y110{bottom:974.937750px;}
.y22{bottom:976.844550px;}
.y17b{bottom:981.904410px;}
.y214{bottom:987.966150px;}
.y3f{bottom:992.476770px;}
.y64{bottom:996.927750px;}
.y244{bottom:997.240800px;}
.yae{bottom:999.169500px;}
.y1fc{bottom:1001.400450px;}
.y10f{bottom:1002.531000px;}
.y17a{bottom:1008.673410px;}
.y21{bottom:1010.798550px;}
.yf4{bottom:1013.680650px;}
.y213{bottom:1015.559400px;}
.y3e{bottom:1019.245770px;}
.y63{bottom:1023.696750px;}
.yad{bottom:1025.938500px;}
.y243{bottom:1028.320800px;}
.y1fa{bottom:1032.480450px;}
.y179{bottom:1035.442410px;}
.y173{bottom:1042.165650px;}
.y1e{bottom:1044.752550px;}
.y3d{bottom:1046.014770px;}
.y212{bottom:1046.417400px;}
.y88{bottom:1050.465750px;}
.y62{bottom:1051.290000px;}
.yac{bottom:1052.707500px;}
.y242{bottom:1059.400800px;}
.y3{bottom:1060.169520px;}
.y178{bottom:1062.211410px;}
.yf2{bottom:1062.385650px;}
.y1a{bottom:1074.297000px;}
.y3c{bottom:1075.455270px;}
.y172{bottom:1075.510650px;}
.y87{bottom:1078.059000px;}
.yab{bottom:1079.476500px;}
.y1b{bottom:1079.831550px;}
.y2{bottom:1085.023020px;}
.y177{bottom:1088.980410px;}
.y240{bottom:1090.480800px;}
.y140{bottom:1109.605650px;}
.yee{bottom:1111.090650px;}
.y113{bottom:1143.700650px;}
.h15{height:24.363705px;}
.h31{height:29.564895px;}
.h1c{height:29.580000px;}
.h36{height:29.815230px;}
.h38{height:29.955000px;}
.h22{height:32.595000px;}
.h20{height:32.782500px;}
.h21{height:32.970000px;}
.h1e{height:33.345000px;}
.h13{height:33.954000px;}
.h10{height:33.977880px;}
.h2b{height:34.095000px;}
.h4{height:38.256000px;}
.hd{height:38.471282px;}
.h9{height:41.220703px;}
.h32{height:42.840000px;}
.h16{height:43.038000px;}
.hb{height:43.374023px;}
.h1f{height:47.100000px;}
.h34{height:47.538000px;}
.h24{height:47.580000px;}
.h37{height:47.640000px;}
.h2f{height:47.652000px;}
.h7{height:47.820000px;}
.h8{height:48.193359px;}
.hc{height:49.464844px;}
.h18{height:51.810000px;}
.h2c{height:52.404000px;}
.h3{height:52.602000px;}
.h11{height:52.632000px;}
.h1d{height:53.012695px;}
.he{height:54.444000px;}
.ha{height:55.897040px;}
.h2a{height:56.307000px;}
.h1b{height:56.520000px;}
.h14{height:57.384000px;}
.h6{height:61.230000px;}
.h12{height:62.166000px;}
.h23{height:65.538000px;}
.h25{height:65.580000px;}
.h27{height:83.580000px;}
.h5{height:84.780000px;}
.h2e{height:165.000000px;}
.h29{height:357.000000px;}
.h39{height:502.500000px;}
.h35{height:510.000000px;}
.h33{height:1093.500000px;}
.h26{height:1095.000000px;}
.h19{height:1098.305550px;}
.h1a{height:1098.417000px;}
.h17{height:1098.891300px;}
.hf{height:1099.311000px;}
.h28{height:1100.678100px;}
.h2{height:1103.852100px;}
.h30{height:1106.938050px;}
.h2d{height:1107.809550px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:24.363705px;}
.w16{width:24.375705px;}
.w23{width:75.000000px;}
.w12{width:137.674185px;}
.wf{width:144.040170px;}
.wd{width:163.121100px;}
.w5{width:163.241700px;}
.w14{width:175.997100px;}
.w17{width:180.579000px;}
.wb{width:197.080200px;}
.w24{width:276.000000px;}
.w1d{width:278.181300px;}
.w21{width:352.500000px;}
.w22{width:397.500000px;}
.we{width:415.155150px;}
.w11{width:421.521000px;}
.w1e{width:443.160000px;}
.wc{width:525.236100px;}
.w15{width:546.319200px;}
.w4{width:553.599600px;}
.w1f{width:704.812500px;}
.w1c{width:724.500000px;}
.w13{width:726.000000px;}
.w9{width:732.675300px;}
.w8{width:732.945300px;}
.w10{width:733.153800px;}
.w7{width:733.569300px;}
.w18{width:734.086050px;}
.w3{width:734.463300px;}
.w19{width:736.792050px;}
.w2{width:745.152300px;}
.w1a{width:748.606950px;}
.w20{width:759.000000px;}
.w1b{width:812.067600px;}
.wa{width:823.879050px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:1.500000px;}
.x42{left:3.000000px;}
.x14{left:5.811015px;}
.x2{left:8.046015px;}
.x4a{left:10.552500px;}
.x6{left:14.806650px;}
.x4c{left:20.137500px;}
.x48{left:21.810000px;}
.x45{left:23.197500px;}
.x26{left:32.364015px;}
.x1d{left:34.522530px;}
.x2d{left:40.428780px;}
.x3d{left:44.355000px;}
.x1b{left:60.000000px;}
.x41{left:66.960015px;}
.x2a{left:70.977000px;}
.x2c{left:72.156540px;}
.x10{left:73.346085px;}
.x28{left:75.147000px;}
.x1{left:76.993365px;}
.x13{left:79.228365px;}
.x37{left:82.431270px;}
.x22{left:83.539380px;}
.x15{left:85.039380px;}
.x11{left:89.971185px;}
.x1a{left:95.446200px;}
.x30{left:99.933120px;}
.x19{left:106.288200px;}
.x49{left:113.827500px;}
.x17{left:117.130200px;}
.x2e{left:121.305720px;}
.x4b{left:124.762500px;}
.x3e{left:128.826270px;}
.x7{left:134.761635px;}
.x3a{left:137.691270px;}
.x4{left:140.520135px;}
.x43{left:145.274985px;}
.x18{left:146.399700px;}
.x38{left:151.110000px;}
.x47{left:158.707500px;}
.x46{left:159.817500px;}
.x39{left:161.122500px;}
.x2f{left:167.406720px;}
.x8{left:170.046015px;}
.x32{left:190.770000px;}
.x36{left:191.992500px;}
.x34{left:193.237500px;}
.x3b{left:197.122500px;}
.x3f{left:202.815000px;}
.x35{left:205.791270px;}
.x33{left:208.551270px;}
.xe{left:217.159485px;}
.x5{left:227.204385px;}
.x40{left:238.856220px;}
.xa{left:240.531135px;}
.x3c{left:244.671270px;}
.x1f{left:248.160450px;}
.x1e{left:258.834420px;}
.x24{left:261.036450px;}
.x27{left:265.618500px;}
.xf{left:281.363685px;}
.xb{left:285.582435px;}
.x12{left:287.222985px;}
.x9{left:289.076085px;}
.xc{left:300.098985px;}
.xd{left:306.976485px;}
.x3{left:316.779285px;}
.x31{left:363.220650px;}
.x44{left:424.710000px;}
.x29{left:446.197500px;}
.x2b{left:626.776650px;}
.x16{left:638.638950px;}
.x20{left:663.315450px;}
.x21{left:669.681450px;}
.x25{left:787.436850px;}
.x1c{left:794.942850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls8{letter-spacing:0.005867pt;}
.lse{letter-spacing:0.222933pt;}
.lsc{letter-spacing:0.674667pt;}
.ls9{letter-spacing:1.061867pt;}
.lsa{letter-spacing:1.067733pt;}
.ls5{letter-spacing:2.899200pt;}
.ls4{letter-spacing:5.441600pt;}
.ls6{letter-spacing:8.078400pt;}
.ls7{letter-spacing:17.394667pt;}
.lsd{letter-spacing:109.049600pt;}
.ls3{letter-spacing:174.208000pt;}
.lsb{letter-spacing:175.689067pt;}
.ws8{word-spacing:-36.267733pt;}
.ws7{word-spacing:-35.205867pt;}
.wsa{word-spacing:-28.804800pt;}
.ws6{word-spacing:-17.792000pt;}
.wsb{word-spacing:-16.984000pt;}
.wsc{word-spacing:-16.532267pt;}
.ws5{word-spacing:-16.309333pt;}
.ws0{word-spacing:-14.826667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.444000pt;}
.ws4{word-spacing:-0.058667pt;}
.ws9{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:30.762667pt;}
._0{margin-left:-6.272000pt;}
._4{margin-left:-5.338667pt;}
._2{margin-left:-3.925333pt;}
._3{margin-left:-2.928000pt;}
._1{margin-left:-1.536000pt;}
._5{width:0.895968pt;}
._d{width:2.113550pt;}
._7{width:3.588850pt;}
._6{width:4.604280pt;}
._b{width:5.960533pt;}
._10{width:7.311467pt;}
._f{width:8.372800pt;}
._e{width:9.332800pt;}
._13{width:10.718400pt;}
._c{width:12.201600pt;}
._a{width:13.164800pt;}
._11{width:14.091733pt;}
._8{width:15.118400pt;}
._14{width:17.576533pt;}
._12{width:18.832000pt;}
._9{width:19.782400pt;}
._17{width:21.014400pt;}
._1a{width:22.252800pt;}
._15{width:24.041600pt;}
._18{width:25.344000pt;}
._19{width:26.576000pt;}
._16{width:27.768320pt;}
._1b{width:29.033600pt;}
._1c{width:47.072000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:49.776000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:71.109333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:6.386947pt;}
.ye2{bottom:8.173200pt;}
.y211{bottom:8.173293pt;}
.ye8{bottom:8.173307pt;}
.y10a{bottom:8.173320pt;}
.ybe{bottom:8.173333pt;}
.y241{bottom:8.226533pt;}
.y1fb{bottom:8.449067pt;}
.yda{bottom:8.457200pt;}
.y148{bottom:8.457333pt;}
.y1fe{bottom:8.506533pt;}
.y25{bottom:8.805200pt;}
.y1c{bottom:8.805333pt;}
.y2f{bottom:9.025200pt;}
.y20{bottom:9.025333pt;}
.y1d{bottom:9.046533pt;}
.y2e{bottom:10.037200pt;}
.y1f{bottom:10.037333pt;}
.yd5{bottom:10.920000pt;}
.yd0{bottom:11.020000pt;}
.yde{bottom:11.186533pt;}
.y10d{bottom:11.186640pt;}
.yd2{bottom:11.186667pt;}
.y175{bottom:11.520000pt;}
.yce{bottom:11.586667pt;}
.y174{bottom:11.841333pt;}
.ydd{bottom:11.975200pt;}
.y10c{bottom:11.975293pt;}
.yf7{bottom:11.975333pt;}
.y150{bottom:12.186627pt;}
.y14b{bottom:12.186667pt;}
.y14f{bottom:12.507960pt;}
.y14a{bottom:12.508000pt;}
.y1ca{bottom:15.600933pt;}
.yaa{bottom:15.601667pt;}
.y247{bottom:16.173200pt;}
.y195{bottom:18.471987pt;}
.y237{bottom:19.591467pt;}
.y18{bottom:19.844640pt;}
.ye1{bottom:24.173200pt;}
.ye7{bottom:24.173307pt;}
.y109{bottom:24.173320pt;}
.yf1{bottom:24.173333pt;}
.yd9{bottom:24.457200pt;}
.y1e2{bottom:24.457333pt;}
.ye0{bottom:24.961867pt;}
.y128{bottom:24.961960pt;}
.y108{bottom:24.961987pt;}
.yf3{bottom:24.962000pt;}
.y146{bottom:31.930667pt;}
.y147{bottom:32.252000pt;}
.y171{bottom:38.029333pt;}
.y61{bottom:39.395600pt;}
.ya9{bottom:39.396333pt;}
.ydb{bottom:40.135867pt;}
.ye6{bottom:40.173253pt;}
.yf0{bottom:40.173333pt;}
.yd8{bottom:40.457200pt;}
.yd7{bottom:40.924533pt;}
.ye5{bottom:40.961920pt;}
.yef{bottom:40.962000pt;}
.y1f4{bottom:41.707000pt;}
.y236{bottom:43.386133pt;}
.y86{bottom:49.335627pt;}
.ybc{bottom:49.460013pt;}
.y1b5{bottom:51.352027pt;}
.y39{bottom:52.861933pt;}
.yfd{bottom:56.173333pt;}
.y17{bottom:56.913947pt;}
.yfc{bottom:56.962000pt;}
.y1b6{bottom:62.984573pt;}
.y1c9{bottom:63.190267pt;}
.ya8{bottom:63.191067pt;}
.y60{bottom:63.856907pt;}
.y176{bottom:66.481547pt;}
.y235{bottom:67.180800pt;}
.y10e{bottom:69.882267pt;}
.y1{bottom:69.999227pt;}
.y210{bottom:70.177920pt;}
.y85{bottom:73.130267pt;}
.ybb{bottom:73.254667pt;}
.y16{bottom:74.691573pt;}
.y3b{bottom:74.905227pt;}
.y19{bottom:74.929467pt;}
.y1b4{bottom:75.146667pt;}
.y194{bottom:75.633120pt;}
.y127{bottom:81.343600pt;}
.y141{bottom:86.456827pt;}
.y170{bottom:86.878533pt;}
.y1c8{bottom:86.984893pt;}
.ya7{bottom:86.985733pt;}
.y151{bottom:88.566160pt;}
.y15{bottom:89.358240pt;}
.y5f{bottom:89.651573pt;}
.y1f3{bottom:90.556267pt;}
.y234{bottom:90.975467pt;}
.ye4{bottom:96.717547pt;}
.y84{bottom:96.924933pt;}
.yba{bottom:97.049333pt;}
.y1b3{bottom:98.941333pt;}
.y193{bottom:99.427787pt;}
.y10b{bottom:102.581747pt;}
.y16f{bottom:110.673200pt;}
.y1c7{bottom:110.779560pt;}
.ya6{bottom:110.780400pt;}
.y1f2{bottom:114.350933pt;}
.y233{bottom:114.770133pt;}
.y5e{bottom:114.779573pt;}
.y197{bottom:115.408000pt;}
.y1e0{bottom:117.648667pt;}
.y14e{bottom:118.872827pt;}
.y83{bottom:120.719600pt;}
.yb9{bottom:120.844000pt;}
.y14{bottom:120.913973pt;}
.y1b2{bottom:122.736000pt;}
.y192{bottom:123.222453pt;}
.y126{bottom:124.636933pt;}
.y107{bottom:132.888413pt;}
.y16e{bottom:134.467867pt;}
.y1c6{bottom:134.574227pt;}
.ya5{bottom:134.575067pt;}
.y1f1{bottom:138.145600pt;}
.y5d{bottom:138.574240pt;}
.y232{bottom:139.297467pt;}
.y1df{bottom:141.443333pt;}
.yb8{bottom:144.638667pt;}
.y82{bottom:145.246933pt;}
.y1b1{bottom:146.530667pt;}
.y191{bottom:147.017253pt;}
.y14d{bottom:149.179467pt;}
.ye3{bottom:156.010933pt;}
.y16d{bottom:158.262667pt;}
.y1c5{bottom:158.368893pt;}
.ya4{bottom:158.369733pt;}
.y1f0{bottom:161.940267pt;}
.y5c{bottom:162.368907pt;}
.y1de{bottom:165.238000pt;}
.y125{bottom:167.930267pt;}
.y81{bottom:170.301600pt;}
.y1b0{bottom:170.325333pt;}
.yb7{bottom:170.808000pt;}
.y190{bottom:170.811920pt;}
.y106{bottom:176.181733pt;}
.y14c{bottom:179.486133pt;}
.y16c{bottom:182.057333pt;}
.y1c4{bottom:182.163560pt;}
.ya3{bottom:182.164400pt;}
.y5b{bottom:186.163573pt;}
.y1ef{bottom:186.401600pt;}
.y231{bottom:188.146800pt;}
.y1dd{bottom:189.032667pt;}
.y80{bottom:194.096267pt;}
.y1af{bottom:194.120000pt;}
.y18f{bottom:194.606587pt;}
.y124{bottom:198.236933pt;}
.ydf{bottom:199.304267pt;}
.y38{bottom:201.232000pt;}
.y16b{bottom:205.852000pt;}
.ya2{bottom:205.959067pt;}
.y105{bottom:206.488400pt;}
.y1c3{bottom:206.691027pt;}
.y149{bottom:209.792800pt;}
.y5a{bottom:210.624907pt;}
.y1ee{bottom:211.529600pt;}
.y13{bottom:211.582507pt;}
.y230{bottom:211.941467pt;}
.y1dc{bottom:212.827333pt;}
.y7f{bottom:217.890933pt;}
.y1ae{bottom:217.914667pt;}
.y18e{bottom:218.401253pt;}
.y16a{bottom:229.646667pt;}
.ya1{bottom:230.486400pt;}
.y37{bottom:231.413333pt;}
.y1ed{bottom:235.324267pt;}
.y22f{bottom:235.736133pt;}
.y59{bottom:236.419573pt;}
.y1db{bottom:236.622000pt;}
.y104{bottom:236.795067pt;}
.y145{bottom:240.099467pt;}
.y123{bottom:241.530267pt;}
.y7e{bottom:241.685600pt;}
.y1ad{bottom:241.709333pt;}
.y18d{bottom:242.195920pt;}
.ydc{bottom:242.597600pt;}
.y12{bottom:249.358240pt;}
.y1c2{bottom:250.412227pt;}
.y169{bottom:253.441333pt;}
.y1ec{bottom:259.118933pt;}
.y22e{bottom:259.530800pt;}
.y1da{bottom:260.416667pt;}
.y143{bottom:260.493440pt;}
.y58{bottom:261.547573pt;}
.y36{bottom:262.615867pt;}
.y18c{bottom:265.990587pt;}
.y7d{bottom:266.212933pt;}
.y1ac{bottom:266.236667pt;}
.yd6{bottom:272.904267pt;}
.y1c1{bottom:274.206893pt;}
.y168{bottom:277.236000pt;}
.y142{bottom:279.611307pt;}
.y103{bottom:280.088400pt;}
.y1eb{bottom:282.913600pt;}
.y22d{bottom:283.325467pt;}
.y1d9{bottom:284.211333pt;}
.y57{bottom:285.342240pt;}
.y18b{bottom:289.785253pt;}
.y7c{bottom:291.267600pt;}
.y1ab{bottom:291.291333pt;}
.y144{bottom:291.483467pt;}
.y1c0{bottom:298.001560pt;}
.y122{bottom:300.823600pt;}
.y167{bottom:301.030667pt;}
.ybd{bottom:301.692933pt;}
.ya0{bottom:305.122933pt;}
.y1ea{bottom:306.708267pt;}
.y22c{bottom:307.120133pt;}
.y1d8{bottom:308.738667pt;}
.y56{bottom:309.136907pt;}
.y102{bottom:310.395067pt;}
.y18a{bottom:313.579920pt;}
.y7b{bottom:315.062267pt;}
.y1aa{bottom:315.086000pt;}
.y11{bottom:315.580640pt;}
.y1bf{bottom:321.796227pt;}
.y35{bottom:322.999867pt;}
.y166{bottom:324.825333pt;}
.ycc{bottom:327.277733pt;}
.y9f{bottom:328.917600pt;}
.y1e9{bottom:330.502933pt;}
.y22b{bottom:330.914800pt;}
.yd4{bottom:332.493600pt;}
.y55{bottom:332.931573pt;}
.y1d7{bottom:333.793333pt;}
.y189{bottom:337.374587pt;}
.y7a{bottom:338.856933pt;}
.y1a9{bottom:338.880667pt;}
.y13f{bottom:339.523333pt;}
.y101{bottom:340.701733pt;}
.y10{bottom:341.580640pt;}
.y121{bottom:344.116933pt;}
.y1be{bottom:345.590893pt;}
.y165{bottom:348.620000pt;}
.y9e{bottom:352.712267pt;}
.y34{bottom:353.181200pt;}
.y1e8{bottom:354.297600pt;}
.y22a{bottom:354.709467pt;}
.ycb{bottom:356.665467pt;}
.y54{bottom:356.726240pt;}
.y1d6{bottom:357.588000pt;}
.y188{bottom:361.835920pt;}
.y1a8{bottom:362.675333pt;}
.y13e{bottom:363.318000pt;}
.y79{bottom:363.318267pt;}
.y1f9{bottom:366.905200pt;}
.yf{bottom:367.580640pt;}
.y1bd{bottom:369.385560pt;}
.y164{bottom:372.414667pt;}
.y9d{bottom:376.506933pt;}
.y1e7{bottom:378.092267pt;}
.y229{bottom:378.504133pt;}
.y53{bottom:380.520907pt;}
.y1d5{bottom:381.382667pt;}
.y33{bottom:383.362533pt;}
.yca{bottom:383.836133pt;}
.y100{bottom:383.995067pt;}
.y1f8{bottom:386.023067pt;}
.y1a7{bottom:386.470000pt;}
.y13d{bottom:387.112667pt;}
.y120{bottom:387.410267pt;}
.y78{bottom:389.178933pt;}
.y1bc{bottom:393.180227pt;}
.ye{bottom:393.580640pt;}
.y163{bottom:396.209333pt;}
.y9c{bottom:400.301600pt;}
.y1e6{bottom:401.886933pt;}
.y228{bottom:402.298800pt;}
.y52{bottom:404.315573pt;}
.y23c{bottom:404.356000pt;}
.y1f7{bottom:405.140933pt;}
.y1d4{bottom:405.177333pt;}
.y23f{bottom:407.152133pt;}
.yc9{bottom:409.623467pt;}
.y1a6{bottom:410.264667pt;}
.y187{bottom:410.758587pt;}
.y13c{bottom:410.907333pt;}
.y32{bottom:413.543867pt;}
.y77{bottom:414.233467pt;}
.yff{bottom:414.301733pt;}
.y1bb{bottom:416.974893pt;}
.y11f{bottom:417.716933pt;}
.yd{bottom:419.580640pt;}
.y162{bottom:420.004000pt;}
.y23e{bottom:423.152133pt;}
.y9b{bottom:424.096267pt;}
.y1f6{bottom:424.258800pt;}
.y1e5{bottom:425.681600pt;}
.y227{bottom:426.093467pt;}
.y51{bottom:428.110240pt;}
.y23b{bottom:428.150667pt;}
.y1d3{bottom:428.972000pt;}
.y1a5{bottom:434.059333pt;}
.y186{bottom:434.553253pt;}
.y13b{bottom:434.702000pt;}
.y76{bottom:438.028133pt;}
.y1ba{bottom:440.769560pt;}
.y31{bottom:443.725200pt;}
.y161{bottom:443.798667pt;}
.yfe{bottom:444.608400pt;}
.yc{bottom:445.580640pt;}
.y11e{bottom:448.023600pt;}
.y9a{bottom:448.623600pt;}
.y1e4{bottom:449.476267pt;}
.y226{bottom:449.888133pt;}
.y50{bottom:451.904907pt;}
.y23a{bottom:451.945333pt;}
.y1d2{bottom:452.766667pt;}
.y1a4{bottom:457.854000pt;}
.y185{bottom:458.347920pt;}
.y13a{bottom:458.496667pt;}
.y75{bottom:461.822800pt;}
.y1b9{bottom:464.564227pt;}
.y160{bottom:467.593333pt;}
.yb{bottom:471.580640pt;}
.y99{bottom:473.678133pt;}
.y225{bottom:473.682800pt;}
.y30{bottom:473.906533pt;}
.y1e3{bottom:474.003600pt;}
.yfb{bottom:474.915067pt;}
.y4f{bottom:475.699573pt;}
.y239{bottom:475.740000pt;}
.y1d1{bottom:476.561333pt;}
.y1a3{bottom:481.648667pt;}
.y184{bottom:482.142587pt;}
.y139{bottom:482.291333pt;}
.y20f{bottom:482.381333pt;}
.y74{bottom:485.617467pt;}
.y1b8{bottom:488.358893pt;}
.y11d{bottom:491.316933pt;}
.y15f{bottom:491.388000pt;}
.y98{bottom:497.472933pt;}
.y224{bottom:497.477467pt;}
.ya{bottom:497.580640pt;}
.y4e{bottom:499.494240pt;}
.y238{bottom:499.534667pt;}
.y1d0{bottom:500.356000pt;}
.y2d{bottom:504.087867pt;}
.y1a2{bottom:505.443333pt;}
.y183{bottom:505.937253pt;}
.y138{bottom:506.086000pt;}
.y20e{bottom:507.436000pt;}
.y73{bottom:510.144800pt;}
.y1b7{bottom:512.886227pt;}
.y15e{bottom:515.182667pt;}
.y9{bottom:516.027173pt;}
.y97{bottom:521.267600pt;}
.y223{bottom:521.272133pt;}
.y11c{bottom:521.623600pt;}
.y4d{bottom:523.288907pt;}
.y1cf{bottom:524.150667pt;}
.y1a1{bottom:529.238000pt;}
.y182{bottom:529.731920pt;}
.y137{bottom:529.880667pt;}
.y20d{bottom:531.230667pt;}
.y72{bottom:535.199467pt;}
.y2c{bottom:535.269200pt;}
.y15d{bottom:538.977333pt;}
.yd3{bottom:540.154800pt;}
.y222{bottom:545.066800pt;}
.y96{bottom:545.794933pt;}
.y4c{bottom:547.083573pt;}
.y1ce{bottom:547.945333pt;}
.yfa{bottom:550.208400pt;}
.y1a0{bottom:553.032667pt;}
.y181{bottom:553.526587pt;}
.y136{bottom:553.675333pt;}
.y20c{bottom:555.025333pt;}
.y71{bottom:558.994133pt;}
.y15c{bottom:562.772000pt;}
.y11b{bottom:564.916933pt;}
.y221{bottom:568.861467pt;}
.yd1{bottom:570.461467pt;}
.y95{bottom:570.849467pt;}
.y4b{bottom:570.878240pt;}
.y1cd{bottom:571.740000pt;}
.y19f{bottom:576.827333pt;}
.y180{bottom:577.321253pt;}
.y135{bottom:577.470000pt;}
.y20b{bottom:578.820000pt;}
.y70{bottom:582.788800pt;}
.y15b{bottom:586.566667pt;}
.yed{bottom:588.619200pt;}
.y8{bottom:588.993973pt;}
.y220{bottom:592.656133pt;}
.yf9{bottom:593.835067pt;}
.y94{bottom:594.644133pt;}
.y4a{bottom:594.672907pt;}
.y11a{bottom:595.223600pt;}
.y1cc{bottom:595.534667pt;}
.y1f5{bottom:595.596133pt;}
.y2b{bottom:595.653067pt;}
.yc8{bottom:598.614667pt;}
.y208{bottom:598.907067pt;}
.ycf{bottom:600.768133pt;}
.y17f{bottom:601.115920pt;}
.y134{bottom:601.264667pt;}
.y19e{bottom:601.354667pt;}
.y20a{bottom:602.614667pt;}
.y23d{bottom:602.929467pt;}
.y1cb{bottom:605.649600pt;}
.y24e{bottom:605.796267pt;}
.y6f{bottom:606.583467pt;}
.y15a{bottom:610.361333pt;}
.y7{bottom:612.900640pt;}
.y21f{bottom:616.450800pt;}
.yec{bottom:618.006933pt;}
.y93{bottom:618.438800pt;}
.y49{bottom:618.467573pt;}
.y17e{bottom:624.910587pt;}
.y133{bottom:625.059333pt;}
.y207{bottom:625.200400pt;}
.y2a{bottom:625.834400pt;}
.y209{bottom:626.409333pt;}
.y6e{bottom:630.378133pt;}
.ycd{bottom:631.241467pt;}
.y24d{bottom:633.422933pt;}
.y159{bottom:634.156000pt;}
.y119{bottom:638.516933pt;}
.y21e{bottom:640.245467pt;}
.y48{bottom:642.262240pt;}
.y92{bottom:642.966133pt;}
.yc7{bottom:646.204000pt;}
.yeb{bottom:647.394667pt;}
.y132{bottom:648.854000pt;}
.y19d{bottom:650.204000pt;}
.y206{bottom:651.493733pt;}
.y6d{bottom:654.905467pt;}
.y29{bottom:656.015733pt;}
.y158{bottom:657.950667pt;}
.y24c{bottom:661.049600pt;}
.y21d{bottom:664.040133pt;}
.y47{bottom:666.789707pt;}
.y91{bottom:668.020800pt;}
.yc6{bottom:669.998667pt;}
.y131{bottom:672.648667pt;}
.yb6{bottom:672.738667pt;}
.y19c{bottom:673.998667pt;}
.yea{bottom:674.565333pt;}
.y205{bottom:678.453733pt;}
.y6c{bottom:679.960000pt;}
.y157{bottom:681.745333pt;}
.y6{bottom:686.018640pt;}
.y28{bottom:686.197067pt;}
.y21c{bottom:687.834800pt;}
.y24b{bottom:688.676267pt;}
.y90{bottom:691.815467pt;}
.yc5{bottom:693.793333pt;}
.y130{bottom:696.443333pt;}
.y19b{bottom:697.793333pt;}
.y118{bottom:697.810267pt;}
.y1e1{bottom:699.381733pt;}
.ye9{bottom:699.620000pt;}
.y204{bottom:704.747067pt;}
.y156{bottom:705.540000pt;}
.y6b{bottom:706.169467pt;}
.y21b{bottom:711.629467pt;}
.y8f{bottom:715.610133pt;}
.y46{bottom:715.638907pt;}
.y24a{bottom:716.302933pt;}
.y27{bottom:716.378400pt;}
.yc4{bottom:717.588000pt;}
.y12f{bottom:720.238000pt;}
.yb5{bottom:721.588000pt;}
.y117{bottom:728.116933pt;}
.y155{bottom:729.334667pt;}
.y203{bottom:731.040400pt;}
.y196{bottom:734.366800pt;}
.y6a{bottom:734.580133pt;}
.y21a{bottom:735.424133pt;}
.y19a{bottom:736.780133pt;}
.y45{bottom:739.433573pt;}
.y8e{bottom:740.137467pt;}
.yc3{bottom:741.382667pt;}
.y249{bottom:743.929600pt;}
.y12e{bottom:744.032667pt;}
.yb4{bottom:745.382667pt;}
.y26{bottom:746.559733pt;}
.y154{bottom:753.129333pt;}
.y202{bottom:757.333733pt;}
.y116{bottom:758.423600pt;}
.y219{bottom:759.218800pt;}
.y69{bottom:760.576000pt;}
.y44{bottom:763.228240pt;}
.yc2{bottom:765.177333pt;}
.y8d{bottom:765.192000pt;}
.y199{bottom:767.086800pt;}
.y12d{bottom:767.827333pt;}
.yb3{bottom:769.177333pt;}
.y153{bottom:776.924000pt;}
.y24{bottom:777.741067pt;}
.y218{bottom:783.013467pt;}
.y201{bottom:784.293733pt;}
.y68{bottom:785.785467pt;}
.y43{bottom:787.022907pt;}
.y248{bottom:787.556267pt;}
.yc1{bottom:788.972000pt;}
.y8c{bottom:788.986667pt;}
.y12c{bottom:791.622000pt;}
.yb2{bottom:792.972000pt;}
.yf8{bottom:797.142800pt;}
.y198{bottom:798.060133pt;}
.y152{bottom:801.385333pt;}
.y115{bottom:801.716933pt;}
.y217{bottom:806.808133pt;}
.y200{bottom:810.587067pt;}
.y42{bottom:810.817573pt;}
.y67{bottom:811.448000pt;}
.y8b{bottom:812.781333pt;}
.yc0{bottom:813.433333pt;}
.y246{bottom:815.182933pt;}
.y5{bottom:815.281040pt;}
.y12b{bottom:815.416667pt;}
.yb1{bottom:816.766667pt;}
.y112{bottom:818.430667pt;}
.y17d{bottom:825.214587pt;}
.yf6{bottom:827.449467pt;}
.y216{bottom:830.602800pt;}
.y41{bottom:834.612240pt;}
.y8a{bottom:836.576000pt;}
.y1ff{bottom:836.880400pt;}
.y66{bottom:837.308800pt;}
.y23{bottom:838.124933pt;}
.y12a{bottom:839.211333pt;}
.ybf{bottom:839.228000pt;}
.yb0{bottom:840.561333pt;}
.y111{bottom:842.816667pt;}
.y114{bottom:845.343600pt;}
.y17c{bottom:849.009253pt;}
.y215{bottom:854.397467pt;}
.yf5{bottom:857.756133pt;}
.y40{bottom:858.406907pt;}
.y245{bottom:858.809600pt;}
.y4{bottom:860.932907pt;}
.y89{bottom:861.103467pt;}
.y65{bottom:862.363333pt;}
.y1fd{bottom:863.173733pt;}
.y129{bottom:863.738667pt;}
.yaf{bottom:864.356000pt;}
.y110{bottom:866.611333pt;}
.y22{bottom:868.306267pt;}
.y17b{bottom:872.803920pt;}
.y214{bottom:878.192133pt;}
.y3f{bottom:882.201573pt;}
.y64{bottom:886.158000pt;}
.y244{bottom:886.436267pt;}
.yae{bottom:888.150667pt;}
.y1fc{bottom:890.133733pt;}
.y10f{bottom:891.138667pt;}
.y17a{bottom:896.598587pt;}
.y21{bottom:898.487600pt;}
.yf4{bottom:901.049467pt;}
.y213{bottom:902.719467pt;}
.y3e{bottom:905.996240pt;}
.y63{bottom:909.952667pt;}
.yad{bottom:911.945333pt;}
.y243{bottom:914.062933pt;}
.y1fa{bottom:917.760400pt;}
.y179{bottom:920.393253pt;}
.y173{bottom:926.369467pt;}
.y1e{bottom:928.668933pt;}
.y3d{bottom:929.790907pt;}
.y212{bottom:930.148800pt;}
.y88{bottom:933.747333pt;}
.y62{bottom:934.480000pt;}
.yac{bottom:935.740000pt;}
.y242{bottom:941.689600pt;}
.y3{bottom:942.372907pt;}
.y178{bottom:944.187920pt;}
.yf2{bottom:944.342800pt;}
.y1a{bottom:954.930667pt;}
.y3c{bottom:955.960240pt;}
.y172{bottom:956.009467pt;}
.y87{bottom:958.274667pt;}
.yab{bottom:959.534667pt;}
.y1b{bottom:959.850267pt;}
.y2{bottom:964.464907pt;}
.y177{bottom:967.982587pt;}
.y240{bottom:969.316267pt;}
.y140{bottom:986.316133pt;}
.yee{bottom:987.636133pt;}
.y113{bottom:1016.622800pt;}
.h15{height:21.656627pt;}
.h31{height:26.279907pt;}
.h1c{height:26.293333pt;}
.h36{height:26.502427pt;}
.h38{height:26.626667pt;}
.h22{height:28.973333pt;}
.h20{height:29.140000pt;}
.h21{height:29.306667pt;}
.h1e{height:29.640000pt;}
.h13{height:30.181333pt;}
.h10{height:30.202560pt;}
.h2b{height:30.306667pt;}
.h4{height:34.005333pt;}
.hd{height:34.196695pt;}
.h9{height:36.640625pt;}
.h32{height:38.080000pt;}
.h16{height:38.256000pt;}
.hb{height:38.554688pt;}
.h1f{height:41.866667pt;}
.h34{height:42.256000pt;}
.h24{height:42.293333pt;}
.h37{height:42.346667pt;}
.h2f{height:42.357333pt;}
.h7{height:42.506667pt;}
.h8{height:42.838542pt;}
.hc{height:43.968750pt;}
.h18{height:46.053333pt;}
.h2c{height:46.581333pt;}
.h3{height:46.757333pt;}
.h11{height:46.784000pt;}
.h1d{height:47.122396pt;}
.he{height:48.394667pt;}
.ha{height:49.686258pt;}
.h2a{height:50.050667pt;}
.h1b{height:50.240000pt;}
.h14{height:51.008000pt;}
.h6{height:54.426667pt;}
.h12{height:55.258667pt;}
.h23{height:58.256000pt;}
.h25{height:58.293333pt;}
.h27{height:74.293333pt;}
.h5{height:75.360000pt;}
.h2e{height:146.666667pt;}
.h29{height:317.333333pt;}
.h39{height:446.666667pt;}
.h35{height:453.333333pt;}
.h33{height:972.000000pt;}
.h26{height:973.333333pt;}
.h19{height:976.271600pt;}
.h1a{height:976.370667pt;}
.h17{height:976.792267pt;}
.hf{height:977.165333pt;}
.h28{height:978.380533pt;}
.h2{height:981.201867pt;}
.h30{height:983.944933pt;}
.h2d{height:984.719600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:21.656627pt;}
.w16{width:21.667293pt;}
.w23{width:66.666667pt;}
.w12{width:122.377053pt;}
.wf{width:128.035707pt;}
.wd{width:144.996533pt;}
.w5{width:145.103733pt;}
.w14{width:156.441867pt;}
.w17{width:160.514667pt;}
.wb{width:175.182400pt;}
.w24{width:245.333333pt;}
.w1d{width:247.272267pt;}
.w21{width:313.333333pt;}
.w22{width:353.333333pt;}
.we{width:369.026800pt;}
.w11{width:374.685333pt;}
.w1e{width:393.920000pt;}
.wc{width:466.876533pt;}
.w15{width:485.617067pt;}
.w4{width:492.088533pt;}
.w1f{width:626.500000pt;}
.w1c{width:644.000000pt;}
.w13{width:645.333333pt;}
.w9{width:651.266933pt;}
.w8{width:651.506933pt;}
.w10{width:651.692267pt;}
.w7{width:652.061600pt;}
.w18{width:652.520933pt;}
.w3{width:652.856267pt;}
.w19{width:654.926267pt;}
.w2{width:662.357600pt;}
.w1a{width:665.428400pt;}
.w20{width:674.666667pt;}
.w1b{width:721.837867pt;}
.wa{width:732.336933pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:1.333333pt;}
.x42{left:2.666667pt;}
.x14{left:5.165347pt;}
.x2{left:7.152013pt;}
.x4a{left:9.380000pt;}
.x6{left:13.161467pt;}
.x4c{left:17.900000pt;}
.x48{left:19.386667pt;}
.x45{left:20.620000pt;}
.x26{left:28.768013pt;}
.x1d{left:30.686693pt;}
.x2d{left:35.936693pt;}
.x3d{left:39.426667pt;}
.x1b{left:53.333333pt;}
.x41{left:59.520013pt;}
.x2a{left:63.090667pt;}
.x2c{left:64.139147pt;}
.x10{left:65.196520pt;}
.x28{left:66.797333pt;}
.x1{left:68.438547pt;}
.x13{left:70.425213pt;}
.x37{left:73.272240pt;}
.x22{left:74.257227pt;}
.x15{left:75.590560pt;}
.x11{left:79.974387pt;}
.x1a{left:84.841067pt;}
.x30{left:88.829440pt;}
.x19{left:94.478400pt;}
.x49{left:101.180000pt;}
.x17{left:104.115733pt;}
.x2e{left:107.827307pt;}
.x4b{left:110.900000pt;}
.x3e{left:114.512240pt;}
.x7{left:119.788120pt;}
.x3a{left:122.392240pt;}
.x4{left:124.906787pt;}
.x43{left:129.133320pt;}
.x18{left:130.133067pt;}
.x38{left:134.320000pt;}
.x47{left:141.073333pt;}
.x46{left:142.060000pt;}
.x39{left:143.220000pt;}
.x2f{left:148.805973pt;}
.x8{left:151.152013pt;}
.x32{left:169.573333pt;}
.x36{left:170.660000pt;}
.x34{left:171.766667pt;}
.x3b{left:175.220000pt;}
.x3f{left:180.280000pt;}
.x35{left:182.925573pt;}
.x33{left:185.378907pt;}
.xe{left:193.030653pt;}
.x5{left:201.959453pt;}
.x40{left:212.316640pt;}
.xa{left:213.805453pt;}
.x3c{left:217.485573pt;}
.x1f{left:220.587067pt;}
.x1e{left:230.075040pt;}
.x24{left:232.032400pt;}
.x27{left:236.105333pt;}
.xf{left:250.101053pt;}
.xb{left:253.851053pt;}
.x12{left:255.309320pt;}
.x9{left:256.956520pt;}
.xc{left:266.754653pt;}
.xd{left:272.867987pt;}
.x3{left:281.581587pt;}
.x31{left:322.862800pt;}
.x44{left:377.520000pt;}
.x29{left:396.620000pt;}
.x2b{left:557.134800pt;}
.x16{left:567.679067pt;}
.x20{left:589.613733pt;}
.x21{left:595.272400pt;}
.x25{left:699.943867pt;}
.x1c{left:706.615867pt;}
}




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