
    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_1ab40772e221fdd85649eb1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.759766;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_1ac1b4a81a39c5875a7b077f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759766;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_7855c1cb884be7a3f9e31284.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.759803;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_2bc8404770d70a177b26d9d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e4803fcc13d7c0747d62937d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_647310029f1e216f33e9a204.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_920d2fe90ed938778e5b4403.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_ce514e1c198fbd7ffb79ff5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5daea8635782768386f8dfac.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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_f523fe2fb6a9d1819fa2f789.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_3cfe33d8de3d6bc4db432161.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3a714b520456f13f55f08ba7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_60f551ad8d4687e7aee07396.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e84659794c928cefac2d8a1c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7938426fdd40ccf37a5e4378.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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;}
.ls29{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.310800px;}
.ls19{letter-spacing:-0.306000px;}
.ls1f{letter-spacing:-0.270000px;}
.ls22{letter-spacing:-0.253200px;}
.ls1c{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.193200px;}
.ls4{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.164400px;}
.ls3{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.132600px;}
.ls1e{letter-spacing:-0.115200px;}
.ls21{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.037440px;}
.ls18{letter-spacing:-0.036000px;}
.ls5{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000003px;}
.ls16{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.045120px;}
.lsb{letter-spacing:0.075000px;}
.ls12{letter-spacing:0.086400px;}
.ls1d{letter-spacing:0.132600px;}
.ls14{letter-spacing:0.141000px;}
.ls1a{letter-spacing:0.141120px;}
.ls0{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.149760px;}
.ls20{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.244800px;}
.ls13{letter-spacing:0.256320px;}
.ls1b{letter-spacing:0.261120px;}
.ls25{letter-spacing:0.264000px;}
.ls23{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.306000px;}
.ls24{letter-spacing:0.401760px;}
.ls27{letter-spacing:0.432000px;}
.ls26{letter-spacing:1.008000px;}
.ls8{letter-spacing:4.608000px;}
.ls7{letter-spacing:16.848000px;}
.ls28{letter-spacing:384.660000px;}
.ls15{letter-spacing:2871.384000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-84.240000px;}
.ws1b{word-spacing:-72.000000px;}
.ws10{word-spacing:-38.160000px;}
.ws0{word-spacing:-35.856000px;}
.ws1{word-spacing:-28.800000px;}
.ws17{word-spacing:-20.340000px;}
.ws18{word-spacing:-20.160000px;}
.ws1a{word-spacing:-19.038240px;}
.ws4{word-spacing:-16.416000px;}
.ws5{word-spacing:-16.272000px;}
.ws1d{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.215040px;}
.wsf{word-spacing:-15.111240px;}
.ws15{word-spacing:-15.102840px;}
.wsd{word-spacing:-15.056640px;}
.ws7{word-spacing:-15.045240px;}
.wse{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.932800px;}
.ws16{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.837640px;}
.wsc{word-spacing:-14.805840px;}
.ws6{word-spacing:-14.777040px;}
.ws14{word-spacing:-14.754240px;}
.wsb{word-spacing:-14.659440px;}
.ws11{word-spacing:-12.204000px;}
.ws12{word-spacing:-12.168000px;}
.ws2{word-spacing:-12.024000px;}
.ws13{word-spacing:-11.898000px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:710.760000px;}
._8{margin-left:-15.480000px;}
._4{margin-left:-12.960000px;}
._b{margin-left:-11.634000px;}
._5{margin-left:-10.296000px;}
._9{margin-left:-7.368000px;}
._a{margin-left:-5.814000px;}
._2{margin-left:-3.408000px;}
._0{margin-left:-1.026000px;}
._c{width:1.038000px;}
._6{width:2.316000px;}
._3{width:5.088000px;}
._d{width:11.064000px;}
._7{width:13.680000px;}
._e{width:1186.134240px;}
._f{width:1417.980000px;}
._1{width:2908.104000px;}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(75,75,77);}
.fc7{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(0,132,117);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(68,68,68);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs9{font-size:2.880000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs8{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fsa{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:1.080000px;}
.yc4{bottom:1.620000px;}
.yc6{bottom:1.800000px;}
.y111{bottom:3.240000px;}
.y4f{bottom:4.500000px;}
.y93{bottom:4.536000px;}
.y8a{bottom:4.545000px;}
.yc7{bottom:4.680000px;}
.y139{bottom:4.854000px;}
.yc8{bottom:4.860000px;}
.y188{bottom:4.905000px;}
.y173{bottom:5.040000px;}
.y157{bottom:5.220000px;}
.y131{bottom:5.580000px;}
.y13a{bottom:5.934000px;}
.y13c{bottom:5.940000px;}
.y130{bottom:6.120000px;}
.ye{bottom:6.480000px;}
.y149{bottom:7.560000px;}
.yc{bottom:8.100000px;}
.y23{bottom:8.280000px;}
.yc9{bottom:8.460000px;}
.y186{bottom:10.620000px;}
.y57{bottom:13.500000px;}
.y12{bottom:14.940000px;}
.ycd{bottom:16.920000px;}
.y176{bottom:22.680000px;}
.y5{bottom:23.400000px;}
.y70{bottom:24.480000px;}
.y95{bottom:24.510000px;}
.y61{bottom:24.660000px;}
.y67{bottom:24.690000px;}
.yec{bottom:24.696000px;}
.y89{bottom:24.705000px;}
.y1b{bottom:26.100000px;}
.yc0{bottom:26.496000px;}
.y10d{bottom:28.440000px;}
.ya{bottom:29.160000px;}
.y154{bottom:30.060000px;}
.y114{bottom:30.420000px;}
.y1d{bottom:31.680000px;}
.y1f{bottom:31.860000px;}
.y112{bottom:34.560000px;}
.y18{bottom:35.100000px;}
.y10{bottom:36.180000px;}
.yb{bottom:38.520000px;}
.y25{bottom:39.600000px;}
.y22{bottom:40.500000px;}
.y14{bottom:40.680000px;}
.y16{bottom:41.625000px;}
.y6f{bottom:44.640000px;}
.y60{bottom:44.820000px;}
.y66{bottom:44.850000px;}
.y9{bottom:45.540000px;}
.y17c{bottom:47.700000px;}
.y16b{bottom:47.745000px;}
.y172{bottom:47.880000px;}
.y10c{bottom:48.600000px;}
.y197{bottom:48.780000px;}
.y182{bottom:50.400000px;}
.y113{bottom:50.580000px;}
.y14b{bottom:51.660000px;}
.y159{bottom:51.690000px;}
.y146{bottom:51.705000px;}
.y14e{bottom:52.560000px;}
.y151{bottom:52.605000px;}
.y185{bottom:53.640000px;}
.y134{bottom:55.080000px;}
.y135{bottom:55.980000px;}
.y184{bottom:58.320000px;}
.y7{bottom:62.100000px;}
.y6e{bottom:64.845000px;}
.y69{bottom:64.980000px;}
.y73{bottom:68.580000px;}
.y175{bottom:69.480000px;}
.y24{bottom:70.020000px;}
.y156{bottom:72.750000px;}
.y178{bottom:75.060000px;}
.y144{bottom:75.105000px;}
.y6{bottom:78.480000px;}
.y6d{bottom:85.005000px;}
.y8{bottom:85.500000px;}
.y17b{bottom:90.765000px;}
.y13d{bottom:92.700000px;}
.y7d{bottom:93.240000px;}
.y161{bottom:93.780000px;}
.yc3{bottom:94.860000px;}
.y14f{bottom:95.760000px;}
.y145{bottom:95.805000px;}
.y14a{bottom:95.940000px;}
.y152{bottom:95.985000px;}
.y43{bottom:97.200000px;}
.y155{bottom:102.420000px;}
.y78{bottom:107.820000px;}
.y7a{bottom:108.540000px;}
.y80{bottom:109.440000px;}
.yce{bottom:111.420000px;}
.y71{bottom:111.600000px;}
.y82{bottom:112.500000px;}
.y7c{bottom:112.860000px;}
.y79{bottom:113.220000px;}
.y174{bottom:113.760000px;}
.y76{bottom:115.020000px;}
.y77{bottom:115.920000px;}
.y181{bottom:116.820000px;}
.ybf{bottom:117.360000px;}
.y171{bottom:117.540000px;}
.y13b{bottom:119.160000px;}
.y7b{bottom:119.700000px;}
.y7e{bottom:120.600000px;}
.y7f{bottom:123.480000px;}
.y81{bottom:124.020000px;}
.y99{bottom:124.605000px;}
.y74{bottom:127.440000px;}
.y42{bottom:128.880000px;}
.y75{bottom:133.020000px;}
.y92{bottom:134.460000px;}
.y160{bottom:136.800000px;}
.y18e{bottom:138.636000px;}
.yc2{bottom:140.436000px;}
.y83{bottom:141.330000px;}
.y148{bottom:142.560000px;}
.y14d{bottom:142.590000px;}
.y143{bottom:142.605000px;}
.y138{bottom:145.476000px;}
.yeb{bottom:153.210000px;}
.y91{bottom:156.450000px;}
.y126{bottom:156.990000px;}
.y16f{bottom:160.050000px;}
.y170{bottom:160.380000px;}
.y41{bottom:160.410000px;}
.yc1{bottom:162.390000px;}
.ye3{bottom:164.190000px;}
.y137{bottom:171.930000px;}
.y84{bottom:173.730000px;}
.y125{bottom:178.050000px;}
.y90{bottom:178.230000px;}
.y15f{bottom:181.620000px;}
.y18d{bottom:183.630000px;}
.ye2{bottom:184.350000px;}
.y110{bottom:185.610000px;}
.y40{bottom:192.090000px;}
.yea{bottom:194.970000px;}
.y153{bottom:196.770000px;}
.yd2{bottom:198.390000px;}
.y16e{bottom:201.285000px;}
.ya4{bottom:203.430000px;}
.y117{bottom:209.010000px;}
.yd1{bottom:218.550000px;}
.y8f{bottom:219.270000px;}
.y136{bottom:223.230000px;}
.y3f{bottom:223.770000px;}
.ybe{bottom:225.390000px;}
.y18c{bottom:227.550000px;}
.y16a{bottom:227.745000px;}
.y116{bottom:232.410000px;}
.ye9{bottom:236.910000px;}
.y8e{bottom:241.230000px;}
.y164{bottom:243.945000px;}
.ybd{bottom:247.170000px;}
.y16d{bottom:248.085000px;}
.y15e{bottom:248.985000px;}
.y3e{bottom:255.450000px;}
.y115{bottom:255.810000px;}
.ye8{bottom:260.310000px;}
.y124{bottom:262.110000px;}
.y133{bottom:263.370000px;}
.ya5{bottom:268.245000px;}
.ybc{bottom:269.130000px;}
.y18b{bottom:272.370000px;}
.y169{bottom:272.385000px;}
.y10b{bottom:279.210000px;}
.y8d{bottom:282.270000px;}
.y3d{bottom:287.130000px;}
.y163{bottom:290.745000px;}
.ybb{bottom:291.090000px;}
.y16c{bottom:292.185000px;}
.y15d{bottom:293.805000px;}
.y167{bottom:295.965000px;}
.ye7{bottom:302.070000px;}
.y10f{bottom:303.690000px;}
.y123{bottom:304.050000px;}
.yba{bottom:312.870000px;}
.y168{bottom:316.515000px;}
.y18a{bottom:318.270000px;}
.y3c{bottom:318.810000px;}
.y8c{bottom:323.310000px;}
.y10e{bottom:327.090000px;}
.y6c{bottom:333.930000px;}
.yb9{bottom:334.830000px;}
.y162{bottom:335.025000px;}
.y15c{bottom:336.645000px;}
.y166{bottom:339.015000px;}
.y132{bottom:339.870000px;}
.y165{bottom:342.030000px;}
.y122{bottom:345.990000px;}
.ycf{bottom:346.215000px;}
.y3b{bottom:350.490000px;}
.yf2{bottom:353.055000px;}
.yb8{bottom:356.790000px;}
.y189{bottom:359.670000px;}
.y150{bottom:360.750000px;}
.ye6{bottom:363.990000px;}
.y8b{bottom:364.350000px;}
.y12f{bottom:366.330000px;}
.yf0{bottom:368.850000px;}
.yf1{bottom:373.215000px;}
.yb7{bottom:378.570000px;}
.y15b{bottom:381.645000px;}
.y3a{bottom:382.170000px;}
.y187{bottom:384.870000px;}
.y88{bottom:386.130000px;}
.ye5{bottom:387.390000px;}
.y10a{bottom:392.295000px;}
.yb6{bottom:400.575000px;}
.ye4{bottom:410.835000px;}
.y39{bottom:413.895000px;}
.y109{bottom:415.695000px;}
.y12e{bottom:420.915000px;}
.yb5{bottom:422.535000px;}
.y87{bottom:427.215000px;}
.y183{bottom:427.755000px;}
.y6b{bottom:435.675000px;}
.y108{bottom:439.095000px;}
.yb4{bottom:444.315000px;}
.y38{bottom:445.575000px;}
.y86{bottom:449.175000px;}
.y107{bottom:462.495000px;}
.yb3{bottom:466.275000px;}
.y85{bottom:471.135000px;}
.yd0{bottom:472.755000px;}
.y6a{bottom:477.075000px;}
.y37{bottom:477.255000px;}
.y106{bottom:485.895000px;}
.yb2{bottom:488.235000px;}
.y72{bottom:493.815000px;}
.y180{bottom:506.415000px;}
.y36{bottom:508.935000px;}
.y105{bottom:509.295000px;}
.yb1{bottom:510.015000px;}
.ye1{bottom:514.515000px;}
.y14c{bottom:524.955000px;}
.y21{bottom:529.635000px;}
.yb0{bottom:531.975000px;}
.y104{bottom:532.695000px;}
.ye0{bottom:537.915000px;}
.y68{bottom:538.635000px;}
.y35{bottom:540.615000px;}
.yaf{bottom:553.935000px;}
.y5e{bottom:554.295000px;}
.y103{bottom:556.095000px;}
.y20{bottom:563.475000px;}
.y34{bottom:572.295000px;}
.yae{bottom:575.715000px;}
.y5d{bottom:577.515000px;}
.y102{bottom:579.495000px;}
.ydf{bottom:579.675000px;}
.y1e{bottom:597.135000px;}
.yad{bottom:597.675000px;}
.y5c{bottom:600.735000px;}
.yde{bottom:603.075000px;}
.y33{bottom:603.975000px;}
.yac{bottom:619.635000px;}
.y65{bottom:620.355000px;}
.y101{bottom:621.255000px;}
.y5b{bottom:623.955000px;}
.ydd{bottom:626.475000px;}
.y32{bottom:635.655000px;}
.yab{bottom:641.445000px;}
.y5a{bottom:647.385000px;}
.y1c{bottom:647.925000px;}
.ydc{bottom:649.905000px;}
.yaa{bottom:663.405000px;}
.y31{bottom:667.365000px;}
.y19a{bottom:669.525000px;}
.y59{bottom:670.605000px;}
.ydb{bottom:673.305000px;}
.y64{bottom:681.945000px;}
.y100{bottom:683.205000px;}
.ya9{bottom:685.365000px;}
.y147{bottom:688.965000px;}
.y30{bottom:691.485000px;}
.y17f{bottom:692.025000px;}
.y58{bottom:693.825000px;}
.yda{bottom:696.705000px;}
.y1a{bottom:698.505000px;}
.y15a{bottom:702.645000px;}
.yff{bottom:706.605000px;}
.ya8{bottom:707.145000px;}
.y199{bottom:709.125000px;}
.y56{bottom:717.045000px;}
.yd9{bottom:720.105000px;}
.y63{bottom:723.345000px;}
.ya7{bottom:729.105000px;}
.yfe{bottom:730.005000px;}
.y19{bottom:743.505000px;}
.y55{bottom:746.925000px;}
.ya6{bottom:751.065000px;}
.yfd{bottom:753.405000px;}
.y17e{bottom:756.105000px;}
.yd8{bottom:761.865000px;}
.y198{bottom:762.945000px;}
.y54{bottom:770.145000px;}
.y4{bottom:772.485000px;}
.y121{bottom:772.665000px;}
.y98{bottom:772.845000px;}
.y17d{bottom:781.305000px;}
.y2f{bottom:781.485000px;}
.y62{bottom:784.905000px;}
.yd7{bottom:785.265000px;}
.y53{bottom:793.545000px;}
.ya3{bottom:794.805000px;}
.yfc{bottom:795.165000px;}
.y3{bottom:797.145000px;}
.y17{bottom:797.505000px;}
.y196{bottom:802.185000px;}
.y120{bottom:802.545000px;}
.yd6{bottom:808.665000px;}
.y2e{bottom:813.165000px;}
.y52{bottom:816.765000px;}
.y5f{bottom:826.305000px;}
.y11f{bottom:830.805000px;}
.yd5{bottom:832.065000px;}
.yfb{bottom:836.925000px;}
.y17a{bottom:837.645000px;}
.y51{bottom:839.985000px;}
.y2d{bottom:844.845000px;}
.y15{bottom:851.505000px;}
.y142{bottom:853.125000px;}
.yd4{bottom:855.465000px;}
.ya2{bottom:857.805000px;}
.y12d{bottom:860.685000px;}
.y11e{bottom:861.945000px;}
.y50{bottom:863.205000px;}
.y195{bottom:871.305000px;}
.y2c{bottom:876.525000px;}
.y4d{bottom:877.245000px;}
.yfa{bottom:878.685000px;}
.yd3{bottom:878.865000px;}
.ya1{bottom:879.585000px;}
.y12c{bottom:881.745000px;}
.y4e{bottom:887.145000px;}
.y11d{bottom:892.950000px;}
.ya0{bottom:901.590000px;}
.ycc{bottom:902.310000px;}
.y12b{bottom:902.670000px;}
.y2b{bottom:908.250000px;}
.y4c{bottom:909.330000px;}
.yf9{bottom:920.490000px;}
.y194{bottom:921.390000px;}
.y9f{bottom:923.550000px;}
.y11c{bottom:924.090000px;}
.y13{bottom:932.550000px;}
.y2a{bottom:939.750000px;}
.y4b{bottom:940.650000px;}
.yf8{bottom:943.890000px;}
.y9e{bottom:945.330000px;}
.y11b{bottom:953.970000px;}
.y193{bottom:964.410000px;}
.y9d{bottom:967.290000px;}
.y4a{bottom:970.890000px;}
.y29{bottom:971.430000px;}
.y179{bottom:974.850000px;}
.y11a{bottom:982.410000px;}
.y9c{bottom:989.250000px;}
.yf7{bottom:990.690000px;}
.y11{bottom:992.130000px;}
.y49{bottom:1002.570000px;}
.y28{bottom:1003.110000px;}
.y119{bottom:1004.190000px;}
.y192{bottom:1007.430000px;}
.y9b{bottom:1011.030000px;}
.yf6{bottom:1014.090000px;}
.y177{bottom:1014.990000px;}
.y141{bottom:1017.150000px;}
.yf{bottom:1025.970000px;}
.y9a{bottom:1032.990000px;}
.y48{bottom:1034.250000px;}
.y27{bottom:1034.790000px;}
.yf5{bottom:1037.490000px;}
.y118{bottom:1038.750000px;}
.y191{bottom:1050.270000px;}
.y97{bottom:1054.950000px;}
.yf4{bottom:1060.890000px;}
.y47{bottom:1065.930000px;}
.y26{bottom:1066.470000px;}
.y140{bottom:1068.270000px;}
.ycb{bottom:1074.030000px;}
.y12a{bottom:1076.730000px;}
.yd{bottom:1081.050000px;}
.yf3{bottom:1084.290000px;}
.y190{bottom:1093.290000px;}
.y96{bottom:1095.990000px;}
.y46{bottom:1097.610000px;}
.y129{bottom:1097.790000px;}
.y158{bottom:1105.890000px;}
.yef{bottom:1107.690000px;}
.y13f{bottom:1112.550000px;}
.yca{bottom:1115.070000px;}
.y128{bottom:1118.850000px;}
.y45{bottom:1129.290000px;}
.yee{bottom:1131.090000px;}
.y94{bottom:1137.030000px;}
.y18f{bottom:1137.390000px;}
.y13e{bottom:1152.720000px;}
.yed{bottom:1154.520000px;}
.y2{bottom:1159.200000px;}
.y127{bottom:1160.820000px;}
.y44{bottom:1161.000000px;}
.y1{bottom:1202.400000px;}
.h27{height:21.060000px;}
.h2a{height:21.096000px;}
.h28{height:21.240000px;}
.h2e{height:21.276000px;}
.h3b{height:21.780000px;}
.h3a{height:21.816000px;}
.h37{height:21.960000px;}
.h36{height:21.996000px;}
.h31{height:22.356000px;}
.h17{height:22.500000px;}
.h19{height:22.536000px;}
.h3e{height:22.860000px;}
.h48{height:23.040000px;}
.h4a{height:23.076000px;}
.h15{height:23.796000px;}
.h58{height:25.560000px;}
.h47{height:25.596000px;}
.h18{height:29.160000px;}
.h8{height:30.600000px;}
.hc{height:31.500000px;}
.h2c{height:40.140000px;}
.h2b{height:40.176000px;}
.h1b{height:40.320000px;}
.h29{height:40.356000px;}
.h55{height:40.536000px;}
.h11{height:42.660000px;}
.h2{height:44.820000px;}
.h33{height:45.000000px;}
.h6{height:47.520000px;}
.h12{height:48.240000px;}
.h13{height:48.456000px;}
.he{height:50.845430px;}
.h10{height:51.660000px;}
.ha{height:52.740000px;}
.h14{height:53.302500px;}
.h5{height:53.709961px;}
.h3{height:54.000000px;}
.h23{height:55.291992px;}
.hd{height:57.420000px;}
.h1f{height:59.439023px;}
.h39{height:60.300000px;}
.h1a{height:60.480000px;}
.h1c{height:60.516000px;}
.h56{height:60.679688px;}
.h22{height:61.423863px;}
.hb{height:65.884219px;}
.h44{height:66.082500px;}
.h57{height:66.960000px;}
.h16{height:67.824844px;}
.h26{height:67.824853px;}
.h42{height:69.086250px;}
.h4e{height:69.876000px;}
.h7{height:71.613281px;}
.h49{height:73.080000px;}
.h21{height:74.004654px;}
.h43{height:75.093750px;}
.h54{height:76.500000px;}
.hf{height:78.696000px;}
.h1d{height:80.640000px;}
.h46{height:83.787539px;}
.h30{height:85.356000px;}
.h45{height:87.859687px;}
.h3d{height:88.020000px;}
.h4d{height:90.936000px;}
.h4{height:91.620000px;}
.h32{height:92.153320px;}
.h40{height:92.153327px;}
.h25{height:92.153349px;}
.h3f{height:92.160000px;}
.h9{height:95.245664px;}
.h1e{height:100.656000px;}
.h52{height:108.936000px;}
.h41{height:125.406562px;}
.h20{height:148.536000px;}
.h53{height:157.530000px;}
.h4c{height:160.740000px;}
.h4b{height:160.770000px;}
.h51{height:178.560000px;}
.h2d{height:281.190000px;}
.h50{height:357.195000px;}
.h38{height:359.715000px;}
.h24{height:379.695000px;}
.h4f{height:399.810000px;}
.h35{height:428.115000px;}
.h2f{height:568.695000px;}
.h3c{height:737.385000px;}
.h34{height:789.450000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w17{width:10.440000px;}
.we{width:10.800000px;}
.w1f{width:10.980000px;}
.w16{width:26.100000px;}
.wd{width:26.820000px;}
.w1c{width:30.996000px;}
.w15{width:31.716000px;}
.wc{width:32.616000px;}
.w22{width:35.136000px;}
.w1d{width:36.576000px;}
.w23{width:39.780000px;}
.w1e{width:40.500000px;}
.w32{width:41.796000px;}
.w10{width:48.420000px;}
.w29{width:48.636000px;}
.w1b{width:48.960000px;}
.w19{width:49.140000px;}
.w18{width:49.176000px;}
.w14{width:49.320000px;}
.w1a{width:49.356000px;}
.w11{width:49.536000px;}
.w12{width:49.680000px;}
.w13{width:49.716000px;}
.w9{width:86.436000px;}
.w2d{width:99.000000px;}
.w2b{width:105.876000px;}
.w42{width:112.896000px;}
.w3e{width:113.076000px;}
.w34{width:113.760000px;}
.w31{width:114.120000px;}
.w39{width:118.620000px;}
.w41{width:131.760000px;}
.w7{width:133.416000px;}
.w3d{width:140.940000px;}
.wb{width:153.750000px;}
.w38{width:154.110000px;}
.w2e{width:185.790000px;}
.w44{width:205.770000px;}
.w26{width:205.950000px;}
.w5{width:212.610000px;}
.w40{width:234.210000px;}
.w37{width:234.390000px;}
.w36{width:243.075000px;}
.w3f{width:243.615000px;}
.w45{width:248.250000px;}
.w27{width:250.410000px;}
.w43{width:252.795000px;}
.w25{width:253.875000px;}
.w3c{width:254.010000px;}
.w8{width:265.530000px;}
.wf{width:293.250000px;}
.w3{width:299.700000px;}
.w2c{width:316.335000px;}
.w21{width:317.910000px;}
.w24{width:319.350000px;}
.w20{width:345.315000px;}
.w3b{width:477.465000px;}
.wa{width:509.835000px;}
.w6{width:544.605000px;}
.w33{width:593.565000px;}
.w2f{width:603.285000px;}
.w30{width:636.450000px;}
.w2a{width:660.705000px;}
.w28{width:710.250000px;}
.w3a{width:731.490000px;}
.w35{width:750.390000px;}
.w4{width:759.390000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4a{left:1.080000px;}
.x1d{left:4.500000px;}
.x5{left:6.225000px;}
.x40{left:8.280000px;}
.x2b{left:12.090000px;}
.x5e{left:14.400000px;}
.x41{left:16.020000px;}
.x28{left:19.800000px;}
.x33{left:21.060000px;}
.x67{left:23.580000px;}
.x32{left:26.460000px;}
.x2a{left:29.010000px;}
.xb{left:34.056000px;}
.x3a{left:41.580000px;}
.x4d{left:47.556000px;}
.x10{left:50.625000px;}
.x74{left:52.596000px;}
.x34{left:54.396000px;}
.x5b{left:57.054000px;}
.x3b{left:62.274000px;}
.x2{left:63.719987px;}
.x1f{left:64.800000px;}
.x8{left:66.060000px;}
.x58{left:68.040000px;}
.x57{left:70.200000px;}
.x15{left:72.225000px;}
.x70{left:73.980000px;}
.x44{left:76.319987px;}
.x68{left:77.574000px;}
.x35{left:82.476000px;}
.x13{left:84.990000px;}
.x7e{left:88.739987px;}
.x26{left:89.994000px;}
.x64{left:92.874000px;}
.x50{left:94.710000px;}
.x23{left:96.336000px;}
.x3c{left:100.296000px;}
.x59{left:102.954000px;}
.x78{left:104.085000px;}
.x55{left:107.676000px;}
.xa{left:108.750000px;}
.x36{left:110.730000px;}
.xd{left:115.230000px;}
.x17{left:120.825000px;}
.x24{left:123.156000px;}
.x66{left:127.794000px;}
.x76{left:131.760000px;}
.x25{left:134.676000px;}
.x37{left:138.810000px;}
.x3d{left:140.796000px;}
.x19{left:142.425000px;}
.xc{left:147.270000px;}
.x20{left:152.310000px;}
.x65{left:156.954000px;}
.x11{left:159.870000px;}
.x46{left:165.270000px;}
.x38{left:167.070000px;}
.x18{left:171.390000px;}
.x16{left:173.010000px;}
.x79{left:182.190000px;}
.xe{left:186.330000px;}
.x3{left:187.769987px;}
.x14{left:190.470000px;}
.x7a{left:192.450000px;}
.x39{left:195.150000px;}
.x48{left:196.410000px;}
.x83{left:199.290000px;}
.x1e{left:200.370000px;}
.x7d{left:203.249987px;}
.x6f{left:205.770000px;}
.x85{left:209.010000px;}
.x86{left:213.330000px;}
.x63{left:214.959000px;}
.x84{left:218.010000px;}
.x6c{left:225.210000px;}
.x9{left:226.515000px;}
.x6a{left:233.895000px;}
.x75{left:236.415000px;}
.x42{left:245.369987px;}
.x12{left:261.615000px;}
.x73{left:263.415000px;}
.x5a{left:275.799000px;}
.x1c{left:279.749987px;}
.xf{left:280.830000px;}
.x56{left:293.619000px;}
.x71{left:297.614987px;}
.x22{left:300.314987px;}
.x6b{left:307.875000px;}
.x87{left:317.595000px;}
.x47{left:318.675000px;}
.x5d{left:323.679000px;}
.x5c{left:333.039000px;}
.x1{left:342.614987px;}
.x5f{left:350.499000px;}
.x62{left:365.079000px;}
.x53{left:384.195000px;}
.x7c{left:391.394987px;}
.x72{left:408.675000px;}
.x61{left:409.749000px;}
.x4b{left:424.545000px;}
.x27{left:428.655000px;}
.x4c{left:438.405000px;}
.x51{left:442.154987px;}
.x81{left:444.134987px;}
.x43{left:446.294987px;}
.x29{left:477.975000px;}
.x4e{left:489.165000px;}
.x7f{left:493.124987px;}
.x3e{left:497.805000px;}
.x4{left:502.560000px;}
.x3f{left:509.505000px;}
.x88{left:523.365000px;}
.x49{left:524.625000px;}
.x2c{left:527.865000px;}
.x60{left:529.809000px;}
.x6d{left:542.265000px;}
.x2d{left:577.905000px;}
.x4f{left:589.245000px;}
.x6{left:597.524987px;}
.x52{left:618.044987px;}
.x2e{left:627.945000px;}
.x45{left:637.664987px;}
.x21{left:663.225000px;}
.x7b{left:664.484987px;}
.x80{left:670.604987px;}
.x82{left:673.305000px;}
.x2f{left:677.985000px;}
.x77{left:683.205000px;}
.x6e{left:696.390000px;}
.x54{left:701.790000px;}
.x30{left:728.070000px;}
.x69{left:730.410000px;}
.x31{left:778.110000px;}
.x1a{left:809.789987px;}
.x7{left:819.329987px;}
.x1b{left:828.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.276267pt;}
.ls19{letter-spacing:-0.272000pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls22{letter-spacing:-0.225067pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.171733pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.146133pt;}
.ls3{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.117867pt;}
.ls1e{letter-spacing:-0.102400pt;}
.ls21{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.033280pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000003pt;}
.ls16{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.040107pt;}
.lsb{letter-spacing:0.066667pt;}
.ls12{letter-spacing:0.076800pt;}
.ls1d{letter-spacing:0.117867pt;}
.ls14{letter-spacing:0.125333pt;}
.ls1a{letter-spacing:0.125440pt;}
.ls0{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133120pt;}
.ls20{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.217600pt;}
.ls13{letter-spacing:0.227840pt;}
.ls1b{letter-spacing:0.232107pt;}
.ls25{letter-spacing:0.234667pt;}
.ls23{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.272000pt;}
.ls24{letter-spacing:0.357120pt;}
.ls27{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.896000pt;}
.ls8{letter-spacing:4.096000pt;}
.ls7{letter-spacing:14.976000pt;}
.ls28{letter-spacing:341.920000pt;}
.ls15{letter-spacing:2552.341333pt;}
.ws19{word-spacing:-74.880000pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws10{word-spacing:-33.920000pt;}
.ws0{word-spacing:-31.872000pt;}
.ws1{word-spacing:-25.600000pt;}
.ws17{word-spacing:-18.080000pt;}
.ws18{word-spacing:-17.920000pt;}
.ws1a{word-spacing:-16.922880pt;}
.ws4{word-spacing:-14.592000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws1d{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.524480pt;}
.wsf{word-spacing:-13.432213pt;}
.ws15{word-spacing:-13.424747pt;}
.wsd{word-spacing:-13.383680pt;}
.ws7{word-spacing:-13.373547pt;}
.wse{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.273600pt;}
.ws16{word-spacing:-13.204480pt;}
.ws9{word-spacing:-13.189013pt;}
.wsc{word-spacing:-13.160747pt;}
.ws6{word-spacing:-13.135147pt;}
.ws14{word-spacing:-13.114880pt;}
.wsb{word-spacing:-13.030613pt;}
.ws11{word-spacing:-10.848000pt;}
.ws12{word-spacing:-10.816000pt;}
.ws2{word-spacing:-10.688000pt;}
.ws13{word-spacing:-10.576000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:631.786667pt;}
._8{margin-left:-13.760000pt;}
._4{margin-left:-11.520000pt;}
._b{margin-left:-10.341333pt;}
._5{margin-left:-9.152000pt;}
._9{margin-left:-6.549333pt;}
._a{margin-left:-5.168000pt;}
._2{margin-left:-3.029333pt;}
._0{margin-left:-0.912000pt;}
._c{width:0.922667pt;}
._6{width:2.058667pt;}
._3{width:4.522667pt;}
._d{width:9.834667pt;}
._7{width:12.160000pt;}
._e{width:1054.341547pt;}
._f{width:1260.426667pt;}
._1{width:2584.981333pt;}
.fs9{font-size:2.560000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs8{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fsa{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:0.960000pt;}
.yc4{bottom:1.440000pt;}
.yc6{bottom:1.600000pt;}
.y111{bottom:2.880000pt;}
.y4f{bottom:4.000000pt;}
.y93{bottom:4.032000pt;}
.y8a{bottom:4.040000pt;}
.yc7{bottom:4.160000pt;}
.y139{bottom:4.314667pt;}
.yc8{bottom:4.320000pt;}
.y188{bottom:4.360000pt;}
.y173{bottom:4.480000pt;}
.y157{bottom:4.640000pt;}
.y131{bottom:4.960000pt;}
.y13a{bottom:5.274667pt;}
.y13c{bottom:5.280000pt;}
.y130{bottom:5.440000pt;}
.ye{bottom:5.760000pt;}
.y149{bottom:6.720000pt;}
.yc{bottom:7.200000pt;}
.y23{bottom:7.360000pt;}
.yc9{bottom:7.520000pt;}
.y186{bottom:9.440000pt;}
.y57{bottom:12.000000pt;}
.y12{bottom:13.280000pt;}
.ycd{bottom:15.040000pt;}
.y176{bottom:20.160000pt;}
.y5{bottom:20.800000pt;}
.y70{bottom:21.760000pt;}
.y95{bottom:21.786667pt;}
.y61{bottom:21.920000pt;}
.y67{bottom:21.946667pt;}
.yec{bottom:21.952000pt;}
.y89{bottom:21.960000pt;}
.y1b{bottom:23.200000pt;}
.yc0{bottom:23.552000pt;}
.y10d{bottom:25.280000pt;}
.ya{bottom:25.920000pt;}
.y154{bottom:26.720000pt;}
.y114{bottom:27.040000pt;}
.y1d{bottom:28.160000pt;}
.y1f{bottom:28.320000pt;}
.y112{bottom:30.720000pt;}
.y18{bottom:31.200000pt;}
.y10{bottom:32.160000pt;}
.yb{bottom:34.240000pt;}
.y25{bottom:35.200000pt;}
.y22{bottom:36.000000pt;}
.y14{bottom:36.160000pt;}
.y16{bottom:37.000000pt;}
.y6f{bottom:39.680000pt;}
.y60{bottom:39.840000pt;}
.y66{bottom:39.866667pt;}
.y9{bottom:40.480000pt;}
.y17c{bottom:42.400000pt;}
.y16b{bottom:42.440000pt;}
.y172{bottom:42.560000pt;}
.y10c{bottom:43.200000pt;}
.y197{bottom:43.360000pt;}
.y182{bottom:44.800000pt;}
.y113{bottom:44.960000pt;}
.y14b{bottom:45.920000pt;}
.y159{bottom:45.946667pt;}
.y146{bottom:45.960000pt;}
.y14e{bottom:46.720000pt;}
.y151{bottom:46.760000pt;}
.y185{bottom:47.680000pt;}
.y134{bottom:48.960000pt;}
.y135{bottom:49.760000pt;}
.y184{bottom:51.840000pt;}
.y7{bottom:55.200000pt;}
.y6e{bottom:57.640000pt;}
.y69{bottom:57.760000pt;}
.y73{bottom:60.960000pt;}
.y175{bottom:61.760000pt;}
.y24{bottom:62.240000pt;}
.y156{bottom:64.666667pt;}
.y178{bottom:66.720000pt;}
.y144{bottom:66.760000pt;}
.y6{bottom:69.760000pt;}
.y6d{bottom:75.560000pt;}
.y8{bottom:76.000000pt;}
.y17b{bottom:80.680000pt;}
.y13d{bottom:82.400000pt;}
.y7d{bottom:82.880000pt;}
.y161{bottom:83.360000pt;}
.yc3{bottom:84.320000pt;}
.y14f{bottom:85.120000pt;}
.y145{bottom:85.160000pt;}
.y14a{bottom:85.280000pt;}
.y152{bottom:85.320000pt;}
.y43{bottom:86.400000pt;}
.y155{bottom:91.040000pt;}
.y78{bottom:95.840000pt;}
.y7a{bottom:96.480000pt;}
.y80{bottom:97.280000pt;}
.yce{bottom:99.040000pt;}
.y71{bottom:99.200000pt;}
.y82{bottom:100.000000pt;}
.y7c{bottom:100.320000pt;}
.y79{bottom:100.640000pt;}
.y174{bottom:101.120000pt;}
.y76{bottom:102.240000pt;}
.y77{bottom:103.040000pt;}
.y181{bottom:103.840000pt;}
.ybf{bottom:104.320000pt;}
.y171{bottom:104.480000pt;}
.y13b{bottom:105.920000pt;}
.y7b{bottom:106.400000pt;}
.y7e{bottom:107.200000pt;}
.y7f{bottom:109.760000pt;}
.y81{bottom:110.240000pt;}
.y99{bottom:110.760000pt;}
.y74{bottom:113.280000pt;}
.y42{bottom:114.560000pt;}
.y75{bottom:118.240000pt;}
.y92{bottom:119.520000pt;}
.y160{bottom:121.600000pt;}
.y18e{bottom:123.232000pt;}
.yc2{bottom:124.832000pt;}
.y83{bottom:125.626667pt;}
.y148{bottom:126.720000pt;}
.y14d{bottom:126.746667pt;}
.y143{bottom:126.760000pt;}
.y138{bottom:129.312000pt;}
.yeb{bottom:136.186667pt;}
.y91{bottom:139.066667pt;}
.y126{bottom:139.546667pt;}
.y16f{bottom:142.266667pt;}
.y170{bottom:142.560000pt;}
.y41{bottom:142.586667pt;}
.yc1{bottom:144.346667pt;}
.ye3{bottom:145.946667pt;}
.y137{bottom:152.826667pt;}
.y84{bottom:154.426667pt;}
.y125{bottom:158.266667pt;}
.y90{bottom:158.426667pt;}
.y15f{bottom:161.440000pt;}
.y18d{bottom:163.226667pt;}
.ye2{bottom:163.866667pt;}
.y110{bottom:164.986667pt;}
.y40{bottom:170.746667pt;}
.yea{bottom:173.306667pt;}
.y153{bottom:174.906667pt;}
.yd2{bottom:176.346667pt;}
.y16e{bottom:178.920000pt;}
.ya4{bottom:180.826667pt;}
.y117{bottom:185.786667pt;}
.yd1{bottom:194.266667pt;}
.y8f{bottom:194.906667pt;}
.y136{bottom:198.426667pt;}
.y3f{bottom:198.906667pt;}
.ybe{bottom:200.346667pt;}
.y18c{bottom:202.266667pt;}
.y16a{bottom:202.440000pt;}
.y116{bottom:206.586667pt;}
.ye9{bottom:210.586667pt;}
.y8e{bottom:214.426667pt;}
.y164{bottom:216.840000pt;}
.ybd{bottom:219.706667pt;}
.y16d{bottom:220.520000pt;}
.y15e{bottom:221.320000pt;}
.y3e{bottom:227.066667pt;}
.y115{bottom:227.386667pt;}
.ye8{bottom:231.386667pt;}
.y124{bottom:232.986667pt;}
.y133{bottom:234.106667pt;}
.ya5{bottom:238.440000pt;}
.ybc{bottom:239.226667pt;}
.y18b{bottom:242.106667pt;}
.y169{bottom:242.120000pt;}
.y10b{bottom:248.186667pt;}
.y8d{bottom:250.906667pt;}
.y3d{bottom:255.226667pt;}
.y163{bottom:258.440000pt;}
.ybb{bottom:258.746667pt;}
.y16c{bottom:259.720000pt;}
.y15d{bottom:261.160000pt;}
.y167{bottom:263.080000pt;}
.ye7{bottom:268.506667pt;}
.y10f{bottom:269.946667pt;}
.y123{bottom:270.266667pt;}
.yba{bottom:278.106667pt;}
.y168{bottom:281.346667pt;}
.y18a{bottom:282.906667pt;}
.y3c{bottom:283.386667pt;}
.y8c{bottom:287.386667pt;}
.y10e{bottom:290.746667pt;}
.y6c{bottom:296.826667pt;}
.yb9{bottom:297.626667pt;}
.y162{bottom:297.800000pt;}
.y15c{bottom:299.240000pt;}
.y166{bottom:301.346667pt;}
.y132{bottom:302.106667pt;}
.y165{bottom:304.026667pt;}
.y122{bottom:307.546667pt;}
.ycf{bottom:307.746667pt;}
.y3b{bottom:311.546667pt;}
.yf2{bottom:313.826667pt;}
.yb8{bottom:317.146667pt;}
.y189{bottom:319.706667pt;}
.y150{bottom:320.666667pt;}
.ye6{bottom:323.546667pt;}
.y8b{bottom:323.866667pt;}
.y12f{bottom:325.626667pt;}
.yf0{bottom:327.866667pt;}
.yf1{bottom:331.746667pt;}
.yb7{bottom:336.506667pt;}
.y15b{bottom:339.240000pt;}
.y3a{bottom:339.706667pt;}
.y187{bottom:342.106667pt;}
.y88{bottom:343.226667pt;}
.ye5{bottom:344.346667pt;}
.y10a{bottom:348.706667pt;}
.yb6{bottom:356.066667pt;}
.ye4{bottom:365.186667pt;}
.y39{bottom:367.906667pt;}
.y109{bottom:369.506667pt;}
.y12e{bottom:374.146667pt;}
.yb5{bottom:375.586667pt;}
.y87{bottom:379.746667pt;}
.y183{bottom:380.226667pt;}
.y6b{bottom:387.266667pt;}
.y108{bottom:390.306667pt;}
.yb4{bottom:394.946667pt;}
.y38{bottom:396.066667pt;}
.y86{bottom:399.266667pt;}
.y107{bottom:411.106667pt;}
.yb3{bottom:414.466667pt;}
.y85{bottom:418.786667pt;}
.yd0{bottom:420.226667pt;}
.y6a{bottom:424.066667pt;}
.y37{bottom:424.226667pt;}
.y106{bottom:431.906667pt;}
.yb2{bottom:433.986667pt;}
.y72{bottom:438.946667pt;}
.y180{bottom:450.146667pt;}
.y36{bottom:452.386667pt;}
.y105{bottom:452.706667pt;}
.yb1{bottom:453.346667pt;}
.ye1{bottom:457.346667pt;}
.y14c{bottom:466.626667pt;}
.y21{bottom:470.786667pt;}
.yb0{bottom:472.866667pt;}
.y104{bottom:473.506667pt;}
.ye0{bottom:478.146667pt;}
.y68{bottom:478.786667pt;}
.y35{bottom:480.546667pt;}
.yaf{bottom:492.386667pt;}
.y5e{bottom:492.706667pt;}
.y103{bottom:494.306667pt;}
.y20{bottom:500.866667pt;}
.y34{bottom:508.706667pt;}
.yae{bottom:511.746667pt;}
.y5d{bottom:513.346667pt;}
.y102{bottom:515.106667pt;}
.ydf{bottom:515.266667pt;}
.y1e{bottom:530.786667pt;}
.yad{bottom:531.266667pt;}
.y5c{bottom:533.986667pt;}
.yde{bottom:536.066667pt;}
.y33{bottom:536.866667pt;}
.yac{bottom:550.786667pt;}
.y65{bottom:551.426667pt;}
.y101{bottom:552.226667pt;}
.y5b{bottom:554.626667pt;}
.ydd{bottom:556.866667pt;}
.y32{bottom:565.026667pt;}
.yab{bottom:570.173333pt;}
.y5a{bottom:575.453333pt;}
.y1c{bottom:575.933333pt;}
.ydc{bottom:577.693333pt;}
.yaa{bottom:589.693333pt;}
.y31{bottom:593.213333pt;}
.y19a{bottom:595.133333pt;}
.y59{bottom:596.093333pt;}
.ydb{bottom:598.493333pt;}
.y64{bottom:606.173333pt;}
.y100{bottom:607.293333pt;}
.ya9{bottom:609.213333pt;}
.y147{bottom:612.413333pt;}
.y30{bottom:614.653333pt;}
.y17f{bottom:615.133333pt;}
.y58{bottom:616.733333pt;}
.yda{bottom:619.293333pt;}
.y1a{bottom:620.893333pt;}
.y15a{bottom:624.573333pt;}
.yff{bottom:628.093333pt;}
.ya8{bottom:628.573333pt;}
.y199{bottom:630.333333pt;}
.y56{bottom:637.373333pt;}
.yd9{bottom:640.093333pt;}
.y63{bottom:642.973333pt;}
.ya7{bottom:648.093333pt;}
.yfe{bottom:648.893333pt;}
.y19{bottom:660.893333pt;}
.y55{bottom:663.933333pt;}
.ya6{bottom:667.613333pt;}
.yfd{bottom:669.693333pt;}
.y17e{bottom:672.093333pt;}
.yd8{bottom:677.213333pt;}
.y198{bottom:678.173333pt;}
.y54{bottom:684.573333pt;}
.y4{bottom:686.653333pt;}
.y121{bottom:686.813333pt;}
.y98{bottom:686.973333pt;}
.y17d{bottom:694.493333pt;}
.y2f{bottom:694.653333pt;}
.y62{bottom:697.693333pt;}
.yd7{bottom:698.013333pt;}
.y53{bottom:705.373333pt;}
.ya3{bottom:706.493333pt;}
.yfc{bottom:706.813333pt;}
.y3{bottom:708.573333pt;}
.y17{bottom:708.893333pt;}
.y196{bottom:713.053333pt;}
.y120{bottom:713.373333pt;}
.yd6{bottom:718.813333pt;}
.y2e{bottom:722.813333pt;}
.y52{bottom:726.013333pt;}
.y5f{bottom:734.493333pt;}
.y11f{bottom:738.493333pt;}
.yd5{bottom:739.613333pt;}
.yfb{bottom:743.933333pt;}
.y17a{bottom:744.573333pt;}
.y51{bottom:746.653333pt;}
.y2d{bottom:750.973333pt;}
.y15{bottom:756.893333pt;}
.y142{bottom:758.333333pt;}
.yd4{bottom:760.413333pt;}
.ya2{bottom:762.493333pt;}
.y12d{bottom:765.053333pt;}
.y11e{bottom:766.173333pt;}
.y50{bottom:767.293333pt;}
.y195{bottom:774.493333pt;}
.y2c{bottom:779.133333pt;}
.y4d{bottom:779.773333pt;}
.yfa{bottom:781.053333pt;}
.yd3{bottom:781.213333pt;}
.ya1{bottom:781.853333pt;}
.y12c{bottom:783.773333pt;}
.y4e{bottom:788.573333pt;}
.y11d{bottom:793.733333pt;}
.ya0{bottom:801.413333pt;}
.ycc{bottom:802.053333pt;}
.y12b{bottom:802.373333pt;}
.y2b{bottom:807.333333pt;}
.y4c{bottom:808.293333pt;}
.yf9{bottom:818.213333pt;}
.y194{bottom:819.013333pt;}
.y9f{bottom:820.933333pt;}
.y11c{bottom:821.413333pt;}
.y13{bottom:828.933333pt;}
.y2a{bottom:835.333333pt;}
.y4b{bottom:836.133333pt;}
.yf8{bottom:839.013333pt;}
.y9e{bottom:840.293333pt;}
.y11b{bottom:847.973333pt;}
.y193{bottom:857.253333pt;}
.y9d{bottom:859.813333pt;}
.y4a{bottom:863.013333pt;}
.y29{bottom:863.493333pt;}
.y179{bottom:866.533333pt;}
.y11a{bottom:873.253333pt;}
.y9c{bottom:879.333333pt;}
.yf7{bottom:880.613333pt;}
.y11{bottom:881.893333pt;}
.y49{bottom:891.173333pt;}
.y28{bottom:891.653333pt;}
.y119{bottom:892.613333pt;}
.y192{bottom:895.493333pt;}
.y9b{bottom:898.693333pt;}
.yf6{bottom:901.413333pt;}
.y177{bottom:902.213333pt;}
.y141{bottom:904.133333pt;}
.yf{bottom:911.973333pt;}
.y9a{bottom:918.213333pt;}
.y48{bottom:919.333333pt;}
.y27{bottom:919.813333pt;}
.yf5{bottom:922.213333pt;}
.y118{bottom:923.333333pt;}
.y191{bottom:933.573333pt;}
.y97{bottom:937.733333pt;}
.yf4{bottom:943.013333pt;}
.y47{bottom:947.493333pt;}
.y26{bottom:947.973333pt;}
.y140{bottom:949.573333pt;}
.ycb{bottom:954.693333pt;}
.y12a{bottom:957.093333pt;}
.yd{bottom:960.933333pt;}
.yf3{bottom:963.813333pt;}
.y190{bottom:971.813333pt;}
.y96{bottom:974.213333pt;}
.y46{bottom:975.653333pt;}
.y129{bottom:975.813333pt;}
.y158{bottom:983.013333pt;}
.yef{bottom:984.613333pt;}
.y13f{bottom:988.933333pt;}
.yca{bottom:991.173333pt;}
.y128{bottom:994.533333pt;}
.y45{bottom:1003.813333pt;}
.yee{bottom:1005.413333pt;}
.y94{bottom:1010.693333pt;}
.y18f{bottom:1011.013333pt;}
.y13e{bottom:1024.640000pt;}
.yed{bottom:1026.240000pt;}
.y2{bottom:1030.400000pt;}
.y127{bottom:1031.840000pt;}
.y44{bottom:1032.000000pt;}
.y1{bottom:1068.800000pt;}
.h27{height:18.720000pt;}
.h2a{height:18.752000pt;}
.h28{height:18.880000pt;}
.h2e{height:18.912000pt;}
.h3b{height:19.360000pt;}
.h3a{height:19.392000pt;}
.h37{height:19.520000pt;}
.h36{height:19.552000pt;}
.h31{height:19.872000pt;}
.h17{height:20.000000pt;}
.h19{height:20.032000pt;}
.h3e{height:20.320000pt;}
.h48{height:20.480000pt;}
.h4a{height:20.512000pt;}
.h15{height:21.152000pt;}
.h58{height:22.720000pt;}
.h47{height:22.752000pt;}
.h18{height:25.920000pt;}
.h8{height:27.200000pt;}
.hc{height:28.000000pt;}
.h2c{height:35.680000pt;}
.h2b{height:35.712000pt;}
.h1b{height:35.840000pt;}
.h29{height:35.872000pt;}
.h55{height:36.032000pt;}
.h11{height:37.920000pt;}
.h2{height:39.840000pt;}
.h33{height:40.000000pt;}
.h6{height:42.240000pt;}
.h12{height:42.880000pt;}
.h13{height:43.072000pt;}
.he{height:45.195937pt;}
.h10{height:45.920000pt;}
.ha{height:46.880000pt;}
.h14{height:47.380000pt;}
.h5{height:47.742188pt;}
.h3{height:48.000000pt;}
.h23{height:49.148438pt;}
.hd{height:51.040000pt;}
.h1f{height:52.834688pt;}
.h39{height:53.600000pt;}
.h1a{height:53.760000pt;}
.h1c{height:53.792000pt;}
.h56{height:53.937500pt;}
.h22{height:54.598989pt;}
.hb{height:58.563750pt;}
.h44{height:58.740000pt;}
.h57{height:59.520000pt;}
.h16{height:60.288750pt;}
.h26{height:60.288759pt;}
.h42{height:61.410000pt;}
.h4e{height:62.112000pt;}
.h7{height:63.656250pt;}
.h49{height:64.960000pt;}
.h21{height:65.781915pt;}
.h43{height:66.750000pt;}
.h54{height:68.000000pt;}
.hf{height:69.952000pt;}
.h1d{height:71.680000pt;}
.h46{height:74.477812pt;}
.h30{height:75.872000pt;}
.h45{height:78.097500pt;}
.h3d{height:78.240000pt;}
.h4d{height:80.832000pt;}
.h4{height:81.440000pt;}
.h32{height:81.914063pt;}
.h40{height:81.914069pt;}
.h25{height:81.914088pt;}
.h3f{height:81.920000pt;}
.h9{height:84.662813pt;}
.h1e{height:89.472000pt;}
.h52{height:96.832000pt;}
.h41{height:111.472500pt;}
.h20{height:132.032000pt;}
.h53{height:140.026667pt;}
.h4c{height:142.880000pt;}
.h4b{height:142.906667pt;}
.h51{height:158.720000pt;}
.h2d{height:249.946667pt;}
.h50{height:317.506667pt;}
.h38{height:319.746667pt;}
.h24{height:337.506667pt;}
.h4f{height:355.386667pt;}
.h35{height:380.546667pt;}
.h2f{height:505.506667pt;}
.h3c{height:655.453333pt;}
.h34{height:701.733333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w17{width:9.280000pt;}
.we{width:9.600000pt;}
.w1f{width:9.760000pt;}
.w16{width:23.200000pt;}
.wd{width:23.840000pt;}
.w1c{width:27.552000pt;}
.w15{width:28.192000pt;}
.wc{width:28.992000pt;}
.w22{width:31.232000pt;}
.w1d{width:32.512000pt;}
.w23{width:35.360000pt;}
.w1e{width:36.000000pt;}
.w32{width:37.152000pt;}
.w10{width:43.040000pt;}
.w29{width:43.232000pt;}
.w1b{width:43.520000pt;}
.w19{width:43.680000pt;}
.w18{width:43.712000pt;}
.w14{width:43.840000pt;}
.w1a{width:43.872000pt;}
.w11{width:44.032000pt;}
.w12{width:44.160000pt;}
.w13{width:44.192000pt;}
.w9{width:76.832000pt;}
.w2d{width:88.000000pt;}
.w2b{width:94.112000pt;}
.w42{width:100.352000pt;}
.w3e{width:100.512000pt;}
.w34{width:101.120000pt;}
.w31{width:101.440000pt;}
.w39{width:105.440000pt;}
.w41{width:117.120000pt;}
.w7{width:118.592000pt;}
.w3d{width:125.280000pt;}
.wb{width:136.666667pt;}
.w38{width:136.986667pt;}
.w2e{width:165.146667pt;}
.w44{width:182.906667pt;}
.w26{width:183.066667pt;}
.w5{width:188.986667pt;}
.w40{width:208.186667pt;}
.w37{width:208.346667pt;}
.w36{width:216.066667pt;}
.w3f{width:216.546667pt;}
.w45{width:220.666667pt;}
.w27{width:222.586667pt;}
.w43{width:224.706667pt;}
.w25{width:225.666667pt;}
.w3c{width:225.786667pt;}
.w8{width:236.026667pt;}
.wf{width:260.666667pt;}
.w3{width:266.400000pt;}
.w2c{width:281.186667pt;}
.w21{width:282.586667pt;}
.w24{width:283.866667pt;}
.w20{width:306.946667pt;}
.w3b{width:424.413333pt;}
.wa{width:453.186667pt;}
.w6{width:484.093333pt;}
.w33{width:527.613333pt;}
.w2f{width:536.253333pt;}
.w30{width:565.733333pt;}
.w2a{width:587.293333pt;}
.w28{width:631.333333pt;}
.w3a{width:650.213333pt;}
.w35{width:667.013333pt;}
.w4{width:675.013333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4a{left:0.960000pt;}
.x1d{left:4.000000pt;}
.x5{left:5.533333pt;}
.x40{left:7.360000pt;}
.x2b{left:10.746667pt;}
.x5e{left:12.800000pt;}
.x41{left:14.240000pt;}
.x28{left:17.600000pt;}
.x33{left:18.720000pt;}
.x67{left:20.960000pt;}
.x32{left:23.520000pt;}
.x2a{left:25.786667pt;}
.xb{left:30.272000pt;}
.x3a{left:36.960000pt;}
.x4d{left:42.272000pt;}
.x10{left:45.000000pt;}
.x74{left:46.752000pt;}
.x34{left:48.352000pt;}
.x5b{left:50.714667pt;}
.x3b{left:55.354667pt;}
.x2{left:56.639988pt;}
.x1f{left:57.600000pt;}
.x8{left:58.720000pt;}
.x58{left:60.480000pt;}
.x57{left:62.400000pt;}
.x15{left:64.200000pt;}
.x70{left:65.760000pt;}
.x44{left:67.839988pt;}
.x68{left:68.954667pt;}
.x35{left:73.312000pt;}
.x13{left:75.546667pt;}
.x7e{left:78.879988pt;}
.x26{left:79.994667pt;}
.x64{left:82.554667pt;}
.x50{left:84.186667pt;}
.x23{left:85.632000pt;}
.x3c{left:89.152000pt;}
.x59{left:91.514667pt;}
.x78{left:92.520000pt;}
.x55{left:95.712000pt;}
.xa{left:96.666667pt;}
.x36{left:98.426667pt;}
.xd{left:102.426667pt;}
.x17{left:107.400000pt;}
.x24{left:109.472000pt;}
.x66{left:113.594667pt;}
.x76{left:117.120000pt;}
.x25{left:119.712000pt;}
.x37{left:123.386667pt;}
.x3d{left:125.152000pt;}
.x19{left:126.600000pt;}
.xc{left:130.906667pt;}
.x20{left:135.386667pt;}
.x65{left:139.514667pt;}
.x11{left:142.106667pt;}
.x46{left:146.906667pt;}
.x38{left:148.506667pt;}
.x18{left:152.346667pt;}
.x16{left:153.786667pt;}
.x79{left:161.946667pt;}
.xe{left:165.626667pt;}
.x3{left:166.906655pt;}
.x14{left:169.306667pt;}
.x7a{left:171.066667pt;}
.x39{left:173.466667pt;}
.x48{left:174.586667pt;}
.x83{left:177.146667pt;}
.x1e{left:178.106667pt;}
.x7d{left:180.666655pt;}
.x6f{left:182.906667pt;}
.x85{left:185.786667pt;}
.x86{left:189.626667pt;}
.x63{left:191.074667pt;}
.x84{left:193.786667pt;}
.x6c{left:200.186667pt;}
.x9{left:201.346667pt;}
.x6a{left:207.906667pt;}
.x75{left:210.146667pt;}
.x42{left:218.106655pt;}
.x12{left:232.546667pt;}
.x73{left:234.146667pt;}
.x5a{left:245.154667pt;}
.x1c{left:248.666655pt;}
.xf{left:249.626667pt;}
.x56{left:260.994667pt;}
.x71{left:264.546655pt;}
.x22{left:266.946655pt;}
.x6b{left:273.666667pt;}
.x87{left:282.306667pt;}
.x47{left:283.266667pt;}
.x5d{left:287.714667pt;}
.x5c{left:296.034667pt;}
.x1{left:304.546655pt;}
.x5f{left:311.554667pt;}
.x62{left:324.514667pt;}
.x53{left:341.506667pt;}
.x7c{left:347.906655pt;}
.x72{left:363.266667pt;}
.x61{left:364.221333pt;}
.x4b{left:377.373333pt;}
.x27{left:381.026667pt;}
.x4c{left:389.693333pt;}
.x51{left:393.026655pt;}
.x81{left:394.786655pt;}
.x43{left:396.706655pt;}
.x29{left:424.866667pt;}
.x4e{left:434.813333pt;}
.x7f{left:438.333322pt;}
.x3e{left:442.493333pt;}
.x4{left:446.720000pt;}
.x3f{left:452.893333pt;}
.x88{left:465.213333pt;}
.x49{left:466.333333pt;}
.x2c{left:469.213333pt;}
.x60{left:470.941333pt;}
.x6d{left:482.013333pt;}
.x2d{left:513.693333pt;}
.x4f{left:523.773333pt;}
.x6{left:531.133322pt;}
.x52{left:549.373322pt;}
.x2e{left:558.173333pt;}
.x45{left:566.813322pt;}
.x21{left:589.533333pt;}
.x7b{left:590.653322pt;}
.x80{left:596.093322pt;}
.x82{left:598.493333pt;}
.x2f{left:602.653333pt;}
.x77{left:607.293333pt;}
.x6e{left:619.013333pt;}
.x54{left:623.813333pt;}
.x30{left:647.173333pt;}
.x69{left:649.253333pt;}
.x31{left:691.653333pt;}
.x1a{left:719.813322pt;}
.x7{left:728.293322pt;}
.x1b{left:736.773322pt;}
}




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