
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_1c87cea0bfa5f4f4cb4f981c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2d1b480a174cb38865152583.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f82a80823b99ba126205d92b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d1ba58668cdf7871af9f84bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f5d448fe27a4e2eacd9977a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7ecbc2f3df2444a0bada3777.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_a18c31f43e115bdc90ebac99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls21{letter-spacing:-0.774000px;}
.ls22{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.450600px;}
.ls1f{letter-spacing:-0.370200px;}
.ls17{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.269400px;}
.ls25{letter-spacing:-0.223800px;}
.ls7{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.166200px;}
.ls8{letter-spacing:-0.109200px;}
.ls1d{letter-spacing:-0.090600px;}
.lse{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.045360px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.033840px;}
.ls0{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.084720px;}
.ls1a{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.135360px;}
.ls19{letter-spacing:0.135600px;}
.ls23{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.153840px;}
.ls13{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.189360px;}
.ls16{letter-spacing:0.189600px;}
.ls6{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.264240px;}
.ls1e{letter-spacing:0.269400px;}
.ls11{letter-spacing:0.334800px;}
.lsc{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.355200px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.384240px;}
.ls27{letter-spacing:0.540000px;}
.ls28{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.lsb{letter-spacing:38.106720px;}
.ls3{letter-spacing:41.868000px;}
.ls9{letter-spacing:46.026720px;}
.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;}
}
.wsc{word-spacing:-59.949600px;}
.ws9{word-spacing:-59.760000px;}
.wse{word-spacing:-59.593800px;}
.ws7{word-spacing:-54.000000px;}
.ws3{word-spacing:-26.784000px;}
.ws4{word-spacing:-16.450800px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.ws12{word-spacing:-12.014640px;}
.ws13{word-spacing:-11.969400px;}
.ws1c{word-spacing:-11.836200px;}
.ws1b{word-spacing:-11.790600px;}
.ws17{word-spacing:-11.700000px;}
.ws18{word-spacing:-11.695200px;}
.ws11{word-spacing:-11.609400px;}
.ws15{word-spacing:-11.340000px;}
.ws16{word-spacing:-10.969800px;}
.ws5{word-spacing:-10.440000px;}
.ws1a{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-1.267200px;}
._0{width:1.135440px;}
._4{width:2.511600px;}
._c{width:3.821280px;}
._9{width:5.079600px;}
._8{width:6.095520px;}
._b{width:7.948080px;}
._a{width:9.008880px;}
._29{width:10.039680px;}
._15{width:11.055600px;}
._7{width:13.039920px;}
._e{width:15.174000px;}
._22{width:16.194960px;}
._25{width:17.210880px;}
._2e{width:18.346320px;}
._1c{width:19.362240px;}
._1f{width:20.676960px;}
._24{width:21.752640px;}
._1e{width:23.007600px;}
._1d{width:24.083280px;}
._28{width:26.093520px;}
._d{width:27.429840px;}
._f{width:28.620000px;}
._21{width:30.215520px;}
._17{width:31.613040px;}
._16{width:32.748480px;}
._13{width:33.937200px;}
._12{width:34.992000px;}
._2c{width:36.871920px;}
._19{width:38.848320px;}
._27{width:40.646880px;}
._26{width:41.799600px;}
._11{width:43.146000px;}
._18{width:44.580960px;}
._23{width:45.656640px;}
._1b{width:47.103120px;}
._1a{width:48.166560px;}
._2d{width:50.340000px;}
._2b{width:51.410160px;}
._2a{width:52.751520px;}
._20{width:54.919440px;}
._10{width:56.970000px;}
._2f{width:59.939280px;}
._5{width:62.364720px;}
._31{width:84.661680px;}
._14{width:125.928000px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._30{width:461.166960px;}
._6{width:857.100000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1be{bottom:0.720000px;}
.y10d{bottom:2.514000px;}
.y7{bottom:2.520000px;}
.y3d{bottom:2.880000px;}
.y3f{bottom:3.060000px;}
.y19{bottom:3.240000px;}
.y1bc{bottom:3.780000px;}
.y34{bottom:5.940000px;}
.y115{bottom:6.840000px;}
.y149{bottom:7.020000px;}
.y5{bottom:8.316000px;}
.y12a{bottom:13.680000px;}
.y126{bottom:13.860000px;}
.ya{bottom:14.040000px;}
.y1c4{bottom:15.480000px;}
.y1b4{bottom:16.020000px;}
.y143{bottom:16.200000px;}
.y6{bottom:16.236000px;}
.y13f{bottom:16.380000px;}
.y1bb{bottom:16.560000px;}
.y3c{bottom:18.405000px;}
.y32{bottom:19.440000px;}
.y1c3{bottom:28.440000px;}
.y1b3{bottom:28.980000px;}
.y1ba{bottom:29.520000px;}
.y1ac{bottom:30.060000px;}
.y3b{bottom:33.885000px;}
.y8{bottom:35.460000px;}
.y31{bottom:35.820000px;}
.y1c2{bottom:41.220000px;}
.y1b2{bottom:41.940000px;}
.y1b9{bottom:42.480000px;}
.y1ab{bottom:43.920000px;}
.y3a{bottom:49.545000px;}
.y30{bottom:51.300000px;}
.y1c1{bottom:54.180000px;}
.y1b1{bottom:54.720000px;}
.y1b8{bottom:55.440000px;}
.y4{bottom:58.140000px;}
.y39{bottom:65.025000px;}
.y2f{bottom:66.780000px;}
.y1c0{bottom:67.140000px;}
.y1b0{bottom:67.680000px;}
.y1b7{bottom:68.400000px;}
.y1bf{bottom:80.100000px;}
.y38{bottom:80.505000px;}
.y1af{bottom:80.640000px;}
.y1b6{bottom:81.390000px;}
.y2e{bottom:82.440000px;}
.y37{bottom:95.985000px;}
.y2d{bottom:97.920000px;}
.y3e{bottom:106.200000px;}
.y36{bottom:111.645000px;}
.y2c{bottom:113.400000px;}
.y3{bottom:113.616000px;}
.y2b{bottom:128.910000px;}
.y42{bottom:134.496000px;}
.y10e{bottom:135.576000px;}
.y1a8{bottom:139.356000px;}
.ya1{bottom:140.076000px;}
.y173{bottom:140.616000px;}
.y77{bottom:141.156000px;}
.yc6{bottom:142.236000px;}
.y10c{bottom:149.256000px;}
.y29{bottom:151.425000px;}
.y41{bottom:151.770000px;}
.y139{bottom:152.850000px;}
.yc5{bottom:156.090000px;}
.y1a7{bottom:156.630000px;}
.ya0{bottom:157.350000px;}
.y172{bottom:157.890000px;}
.y76{bottom:158.430000px;}
.y10b{bottom:162.930000px;}
.y40{bottom:168.690000px;}
.y28{bottom:168.705000px;}
.yc4{bottom:169.950000px;}
.y138{bottom:170.130000px;}
.y1a6{bottom:173.910000px;}
.y9f{bottom:174.630000px;}
.y171{bottom:174.990000px;}
.y75{bottom:175.710000px;}
.y10a{bottom:176.610000px;}
.y1a{bottom:182.010000px;}
.yc3{bottom:183.630000px;}
.y27{bottom:185.985000px;}
.y137{bottom:187.410000px;}
.y109{bottom:190.470000px;}
.y1a5{bottom:191.190000px;}
.y9e{bottom:191.910000px;}
.y170{bottom:192.270000px;}
.y74{bottom:192.990000px;}
.yc2{bottom:197.490000px;}
.y26{bottom:203.085000px;}
.y108{bottom:204.150000px;}
.y136{bottom:204.690000px;}
.y16f{bottom:207.030000px;}
.y1a4{bottom:208.290000px;}
.y9d{bottom:209.190000px;}
.y73{bottom:210.090000px;}
.yc1{bottom:211.350000px;}
.y107{bottom:217.830000px;}
.y25{bottom:220.365000px;}
.y16e{bottom:221.610000px;}
.y135{bottom:221.790000px;}
.yc0{bottom:225.030000px;}
.y1a3{bottom:225.570000px;}
.y9c{bottom:226.470000px;}
.y72{bottom:227.370000px;}
.y106{bottom:231.510000px;}
.y16d{bottom:236.190000px;}
.y24{bottom:237.645000px;}
.ybf{bottom:238.890000px;}
.y134{bottom:239.070000px;}
.y1a2{bottom:242.850000px;}
.y9b{bottom:243.570000px;}
.y71{bottom:244.650000px;}
.y105{bottom:245.190000px;}
.y16c{bottom:250.770000px;}
.ybe{bottom:253.470000px;}
.y23{bottom:254.925000px;}
.y133{bottom:256.350000px;}
.y104{bottom:258.870000px;}
.y1a1{bottom:260.130000px;}
.y9a{bottom:260.850000px;}
.y70{bottom:261.930000px;}
.y16b{bottom:265.350000px;}
.ybd{bottom:270.750000px;}
.y22{bottom:272.205000px;}
.y103{bottom:272.550000px;}
.y132{bottom:273.630000px;}
.y1a0{bottom:277.410000px;}
.y99{bottom:278.130000px;}
.y6f{bottom:279.210000px;}
.y16a{bottom:279.750000px;}
.y102{bottom:286.230000px;}
.ybc{bottom:287.850000px;}
.y21{bottom:289.485000px;}
.y131{bottom:290.910000px;}
.y19f{bottom:294.690000px;}
.y98{bottom:295.410000px;}
.y6e{bottom:296.490000px;}
.y169{bottom:297.570000px;}
.y101{bottom:299.910000px;}
.y35{bottom:301.710000px;}
.ybb{bottom:305.130000px;}
.y20{bottom:306.585000px;}
.y130{bottom:308.190000px;}
.y19e{bottom:311.790000px;}
.y97{bottom:312.690000px;}
.y6d{bottom:313.590000px;}
.y168{bottom:314.130000px;}
.y100{bottom:315.570000px;}
.yba{bottom:322.455000px;}
.y1f{bottom:323.865000px;}
.y12f{bottom:325.335000px;}
.y167{bottom:326.235000px;}
.yff{bottom:326.415000px;}
.y19d{bottom:329.115000px;}
.y96{bottom:330.015000px;}
.y6c{bottom:330.915000px;}
.yb9{bottom:339.735000px;}
.y166{bottom:340.815000px;}
.yf6{bottom:340.995000px;}
.y1e{bottom:341.145000px;}
.y12e{bottom:342.615000px;}
.y19c{bottom:346.395000px;}
.y95{bottom:347.115000px;}
.y6b{bottom:348.195000px;}
.yfe{bottom:354.855000px;}
.y165{bottom:355.395000px;}
.yb8{bottom:357.015000px;}
.yf5{bottom:358.275000px;}
.y1d{bottom:358.425000px;}
.y12d{bottom:359.895000px;}
.y19b{bottom:363.675000px;}
.y94{bottom:364.395000px;}
.y6a{bottom:365.475000px;}
.y164{bottom:369.795000px;}
.yfd{bottom:371.955000px;}
.yb7{bottom:374.115000px;}
.yf4{bottom:375.555000px;}
.y1c{bottom:375.705000px;}
.y12c{bottom:377.175000px;}
.y19a{bottom:380.955000px;}
.y93{bottom:381.675000px;}
.y69{bottom:382.755000px;}
.y163{bottom:384.375000px;}
.yfc{bottom:389.235000px;}
.yb6{bottom:391.395000px;}
.yf3{bottom:392.655000px;}
.y1b{bottom:393.015000px;}
.y12b{bottom:394.455000px;}
.y199{bottom:398.055000px;}
.y92{bottom:398.955000px;}
.y68{bottom:399.855000px;}
.y162{bottom:400.935000px;}
.y1bd{bottom:406.335000px;}
.yfb{bottom:406.515000px;}
.yb5{bottom:408.675000px;}
.y129{bottom:409.215000px;}
.yf2{bottom:409.935000px;}
.y161{bottom:411.735000px;}
.y198{bottom:415.335000px;}
.y91{bottom:416.235000px;}
.y67{bottom:417.135000px;}
.y128{bottom:423.615000px;}
.yfa{bottom:423.795000px;}
.yb4{bottom:425.955000px;}
.y160{bottom:426.315000px;}
.y33{bottom:426.675000px;}
.yf1{bottom:427.215000px;}
.y197{bottom:432.615000px;}
.y90{bottom:433.515000px;}
.y66{bottom:434.415000px;}
.y127{bottom:438.195000px;}
.yf9{bottom:441.075000px;}
.yb3{bottom:443.235000px;}
.y15f{bottom:443.595000px;}
.yf0{bottom:444.495000px;}
.y2a{bottom:447.375000px;}
.y196{bottom:449.895000px;}
.y8f{bottom:450.615000px;}
.y65{bottom:451.695000px;}
.y125{bottom:452.775000px;}
.yf8{bottom:458.355000px;}
.yb2{bottom:460.515000px;}
.y15e{bottom:460.875000px;}
.yef{bottom:461.775000px;}
.y195{bottom:467.175000px;}
.y124{bottom:467.355000px;}
.y8e{bottom:467.895000px;}
.y64{bottom:468.975000px;}
.yf7{bottom:475.455000px;}
.yb1{bottom:477.615000px;}
.y15d{bottom:478.155000px;}
.yee{bottom:478.335000px;}
.y123{bottom:483.915000px;}
.y194{bottom:484.455000px;}
.y8d{bottom:485.175000px;}
.y63{bottom:486.255000px;}
.yed{bottom:490.215000px;}
.y122{bottom:494.715000px;}
.yb0{bottom:494.895000px;}
.y15c{bottom:495.255000px;}
.y1b5{bottom:497.595000px;}
.y193{bottom:501.555000px;}
.y8c{bottom:502.455000px;}
.y62{bottom:503.355000px;}
.yec{bottom:504.795000px;}
.y121{bottom:509.295000px;}
.yaf{bottom:512.175000px;}
.y15b{bottom:512.535000px;}
.y192{bottom:518.835000px;}
.yeb{bottom:519.375000px;}
.y8b{bottom:519.735000px;}
.y61{bottom:520.635000px;}
.y120{bottom:526.575000px;}
.yae{bottom:529.455000px;}
.y15a{bottom:529.815000px;}
.yea{bottom:533.955000px;}
.y191{bottom:536.115000px;}
.y8a{bottom:536.835000px;}
.y60{bottom:537.915000px;}
.y11f{bottom:543.855000px;}
.yad{bottom:546.735000px;}
.y159{bottom:547.095000px;}
.ye9{bottom:548.535000px;}
.y190{bottom:553.395000px;}
.y89{bottom:554.295000px;}
.y5f{bottom:555.195000px;}
.y11e{bottom:560.955000px;}
.ye8{bottom:563.115000px;}
.yac{bottom:564.015000px;}
.y158{bottom:564.375000px;}
.y18f{bottom:570.705000px;}
.y88{bottom:571.785000px;}
.y5e{bottom:572.505000px;}
.ye7{bottom:577.545000px;}
.y11d{bottom:578.265000px;}
.yab{bottom:581.145000px;}
.y157{bottom:581.685000px;}
.y18e{bottom:587.985000px;}
.y87{bottom:589.065000px;}
.y18{bottom:589.785000px;}
.y1ae{bottom:590.145000px;}
.ye6{bottom:592.125000px;}
.y11c{bottom:595.545000px;}
.yaa{bottom:598.425000px;}
.y156{bottom:598.785000px;}
.y18d{bottom:605.085000px;}
.y86{bottom:606.345000px;}
.ye5{bottom:606.705000px;}
.y5d{bottom:606.885000px;}
.y11b{bottom:612.825000px;}
.ya9{bottom:615.705000px;}
.y155{bottom:616.065000px;}
.ye4{bottom:621.285000px;}
.y18c{bottom:622.365000px;}
.y85{bottom:623.445000px;}
.y17{bottom:624.165000px;}
.y11a{bottom:630.105000px;}
.ya8{bottom:632.985000px;}
.y154{bottom:633.345000px;}
.ye3{bottom:635.865000px;}
.y18b{bottom:639.645000px;}
.y84{bottom:640.725000px;}
.y5c{bottom:641.445000px;}
.y119{bottom:647.385000px;}
.y153{bottom:648.105000px;}
.y16{bottom:648.285000px;}
.ya7{bottom:650.265000px;}
.ye2{bottom:650.445000px;}
.y18a{bottom:656.925000px;}
.y83{bottom:658.005000px;}
.y5b{bottom:658.725000px;}
.y152{bottom:662.685000px;}
.y118{bottom:664.485000px;}
.ye1{bottom:664.845000px;}
.ya6{bottom:667.365000px;}
.y189{bottom:674.205000px;}
.y82{bottom:675.285000px;}
.y5a{bottom:676.005000px;}
.y151{bottom:677.265000px;}
.y15{bottom:677.985000px;}
.y117{bottom:679.245000px;}
.ye0{bottom:681.585000px;}
.y1ad{bottom:681.945000px;}
.ya5{bottom:684.645000px;}
.y188{bottom:691.485000px;}
.y150{bottom:691.845000px;}
.ydf{bottom:692.385000px;}
.y81{bottom:692.565000px;}
.y59{bottom:693.285000px;}
.y116{bottom:693.825000px;}
.y1aa{bottom:696.525000px;}
.y14{bottom:701.925000px;}
.yde{bottom:706.065000px;}
.y14f{bottom:706.245000px;}
.y114{bottom:708.405000px;}
.y187{bottom:708.585000px;}
.y80{bottom:709.845000px;}
.y58{bottom:710.385000px;}
.y13{bottom:715.245000px;}
.ya4{bottom:719.205000px;}
.ydd{bottom:720.645000px;}
.y14e{bottom:720.825000px;}
.y113{bottom:722.985000px;}
.y186{bottom:725.865000px;}
.y7f{bottom:726.945000px;}
.y57{bottom:727.665000px;}
.ya3{bottom:736.485000px;}
.y112{bottom:737.565000px;}
.ydc{bottom:737.925000px;}
.y14d{bottom:738.645000px;}
.y12{bottom:740.265000px;}
.y185{bottom:743.145000px;}
.y7e{bottom:744.225000px;}
.y56{bottom:744.945000px;}
.y1a9{bottom:752.505000px;}
.y11{bottom:753.405000px;}
.ya2{bottom:753.765000px;}
.y111{bottom:754.485000px;}
.ydb{bottom:755.205000px;}
.y14c{bottom:755.925000px;}
.y184{bottom:760.425000px;}
.y7d{bottom:761.505000px;}
.y55{bottom:762.225000px;}
.y110{bottom:768.345000px;}
.y14b{bottom:770.685000px;}
.yda{bottom:772.305000px;}
.y10{bottom:777.165000px;}
.y183{bottom:777.705000px;}
.y7c{bottom:778.785000px;}
.y54{bottom:779.505000px;}
.y10f{bottom:782.205000px;}
.y14a{bottom:785.265000px;}
.yd9{bottom:789.585000px;}
.y182{bottom:794.805000px;}
.y7b{bottom:796.065000px;}
.y53{bottom:796.605000px;}
.y148{bottom:799.665000px;}
.yd8{bottom:806.865000px;}
.yf{bottom:808.125000px;}
.y181{bottom:812.085000px;}
.y7a{bottom:813.345000px;}
.y52{bottom:813.885000px;}
.y147{bottom:814.245000px;}
.yd7{bottom:824.190000px;}
.y146{bottom:828.870000px;}
.y180{bottom:829.410000px;}
.y79{bottom:830.670000px;}
.y51{bottom:831.210000px;}
.ye{bottom:839.310000px;}
.yd6{bottom:841.470000px;}
.y145{bottom:846.690000px;}
.y78{bottom:848.310000px;}
.y50{bottom:848.490000px;}
.y144{bottom:863.970000px;}
.y4f{bottom:865.770000px;}
.yd{bottom:870.270000px;}
.yd5{bottom:873.510000px;}
.y142{bottom:878.730000px;}
.y17f{bottom:881.250000px;}
.y4e{bottom:883.050000px;}
.yd4{bottom:887.910000px;}
.y17e{bottom:898.350000px;}
.y4d{bottom:900.150000px;}
.yc{bottom:901.410000px;}
.yd3{bottom:902.490000px;}
.y141{bottom:906.990000px;}
.y17d{bottom:915.630000px;}
.yd2{bottom:917.070000px;}
.y4c{bottom:917.430000px;}
.y140{bottom:921.570000px;}
.yb{bottom:930.210000px;}
.yd1{bottom:931.650000px;}
.y17c{bottom:932.910000px;}
.y4b{bottom:934.710000px;}
.y13e{bottom:936.150000px;}
.y9{bottom:945.510000px;}
.yd0{bottom:946.230000px;}
.y17b{bottom:950.190000px;}
.y4a{bottom:951.990000px;}
.ycf{bottom:960.810000px;}
.y13d{bottom:964.410000px;}
.y17a{bottom:967.470000px;}
.y49{bottom:969.270000px;}
.yce{bottom:975.210000px;}
.y13c{bottom:978.990000px;}
.y179{bottom:982.230000px;}
.y48{bottom:986.550000px;}
.ycd{bottom:989.790000px;}
.y13b{bottom:995.730000px;}
.y178{bottom:996.810000px;}
.y47{bottom:1003.650000px;}
.ycc{bottom:1004.370000px;}
.y13a{bottom:1006.530000px;}
.y177{bottom:1011.210000px;}
.ycb{bottom:1018.950000px;}
.y46{bottom:1020.930000px;}
.y176{bottom:1025.790000px;}
.yca{bottom:1033.530000px;}
.y45{bottom:1038.210000px;}
.y175{bottom:1040.370000px;}
.yc9{bottom:1048.110000px;}
.y174{bottom:1054.950000px;}
.y44{bottom:1055.490000px;}
.yc8{bottom:1064.670000px;}
.y43{bottom:1072.800000px;}
.yc7{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h25{height:12.780000px;}
.h22{height:12.960000px;}
.h1f{height:13.680000px;}
.h21{height:13.716000px;}
.h20{height:13.860000px;}
.h2a{height:13.860150px;}
.h29{height:13.896000px;}
.h11{height:17.100000px;}
.h16{height:19.980000px;}
.h26{height:25.136719px;}
.h1e{height:25.400391px;}
.he{height:27.147656px;}
.h27{height:27.540000px;}
.h4{height:27.576000px;}
.hd{height:29.158594px;}
.h24{height:31.672266px;}
.h23{height:32.004492px;}
.h6{height:33.683203px;}
.h1d{height:34.036523px;}
.h28{height:36.344883px;}
.h18{height:37.705078px;}
.h19{height:38.100586px;}
.h7{height:39.336328px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.h10{height:42.164648px;}
.h1b{height:43.506914px;}
.h15{height:44.265586px;}
.h2{height:45.024258px;}
.h9{height:46.251562px;}
.ha{height:49.906406px;}
.h1c{height:50.364141px;}
.h1{height:50.800781px;}
.hc{height:53.224453px;}
.h2b{height:55.260000px;}
.h3{height:65.884219px;}
.hf{height:75.410156px;}
.hb{height:76.201172px;}
.h2e{height:90.540000px;}
.h2c{height:91.080000px;}
.h2d{height:91.836000px;}
.h1a{height:118.800000px;}
.h17{height:124.236000px;}
.h13{height:141.516000px;}
.h8{height:153.930000px;}
.h12{height:406.875000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w1d{width:60.840000px;}
.w11{width:70.200000px;}
.wc{width:70.740000px;}
.w38{width:71.316000px;}
.w1a{width:74.376000px;}
.w17{width:84.600000px;}
.w28{width:85.320000px;}
.w30{width:87.660000px;}
.w20{width:88.380000px;}
.w21{width:91.116000px;}
.w1f{width:91.476000px;}
.w1e{width:92.160000px;}
.w7{width:93.600000px;}
.w31{width:94.356000px;}
.w29{width:99.936000px;}
.w1b{width:107.640000px;}
.w27{width:119.916000px;}
.w2f{width:121.356000px;}
.w25{width:123.480000px;}
.w2d{width:124.740000px;}
.w19{width:127.080000px;}
.w18{width:128.196000px;}
.w2a{width:135.540000px;}
.w32{width:136.260000px;}
.w23{width:137.556000px;}
.w1c{width:138.096000px;}
.w22{width:145.620000px;}
.wd{width:147.456000px;}
.w12{width:149.076000px;}
.w26{width:149.436000px;}
.w2e{width:149.616000px;}
.wa{width:182.370000px;}
.w16{width:191.910000px;}
.w8{width:203.970000px;}
.wf{width:216.930000px;}
.w6{width:220.170000px;}
.wb{width:235.470000px;}
.w15{width:237.450000px;}
.w36{width:251.310000px;}
.w14{width:256.530000px;}
.w2c{width:262.110000px;}
.w10{width:280.110000px;}
.w39{width:310.170000px;}
.w34{width:326.190000px;}
.w37{width:382.215000px;}
.w33{width:390.675000px;}
.w9{width:418.575000px;}
.w24{width:435.135000px;}
.w2b{width:454.755000px;}
.w35{width:465.555000px;}
.w13{width:494.715000px;}
.we{width:497.775000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:6.480000px;}
.x4{left:8.460000px;}
.x43{left:10.260000px;}
.x42{left:12.240000px;}
.x75{left:13.500000px;}
.x3d{left:14.580000px;}
.x52{left:15.660000px;}
.x65{left:18.180000px;}
.x13{left:19.980000px;}
.x29{left:21.780000px;}
.x67{left:22.860000px;}
.x2b{left:25.020000px;}
.x23{left:26.100000px;}
.x17{left:27.360000px;}
.x88{left:28.440000px;}
.x4a{left:29.700000px;}
.x77{left:31.680000px;}
.x32{left:32.760000px;}
.x15{left:34.065000px;}
.x16{left:35.865000px;}
.x2d{left:37.440000px;}
.x30{left:38.700000px;}
.x79{left:39.960000px;}
.x35{left:41.040000px;}
.x38{left:42.480000px;}
.x6{left:45.540000px;}
.x68{left:47.520000px;}
.x7d{left:51.294000px;}
.x3a{left:52.560000px;}
.x2{left:53.999986px;}
.x69{left:55.974000px;}
.x48{left:57.240000px;}
.x3f{left:58.680000px;}
.x1{left:60.659986px;}
.x58{left:61.740000px;}
.x41{left:63.180000px;}
.x18{left:65.519986px;}
.x5a{left:67.500000px;}
.x56{left:68.760000px;}
.x9{left:71.819986px;}
.x4e{left:74.880000px;}
.x2a{left:77.400000px;}
.xa{left:78.659986px;}
.x3b{left:80.670000px;}
.x5e{left:82.620000px;}
.x19{left:86.759986px;}
.x1f{left:88.199986px;}
.x27{left:91.485000px;}
.x33{left:94.545000px;}
.x2e{left:95.985000px;}
.x4f{left:97.740000px;}
.x5{left:100.836000px;}
.x45{left:102.420000px;}
.x91{left:104.040000px;}
.x46{left:106.740000px;}
.x3{left:108.035986px;}
.x28{left:109.830000px;}
.xe{left:110.915986px;}
.x55{left:114.300000px;}
.x44{left:115.380000px;}
.x60{left:118.440000px;}
.x36{left:121.170000px;}
.x54{left:122.400000px;}
.x10{left:124.595986px;}
.x4c{left:128.160000px;}
.x50{left:129.420000px;}
.x61{left:133.055986px;}
.x5d{left:134.280000px;}
.x2c{left:136.290000px;}
.x37{left:138.270000px;}
.x6a{left:139.895986px;}
.x31{left:144.210000px;}
.x8c{left:146.520000px;}
.x8b{left:147.960000px;}
.x4b{left:149.220000px;}
.x34{left:152.670000px;}
.x5c{left:154.080000px;}
.x8d{left:155.514000px;}
.x2f{left:156.810000px;}
.x5b{left:160.770000px;}
.x3e{left:171.750000px;}
.x89{left:174.594000px;}
.x6b{left:176.070000px;}
.x26{left:179.490000px;}
.x49{left:183.810000px;}
.x81{left:185.259000px;}
.x59{left:186.510000px;}
.x74{left:187.950000px;}
.x94{left:190.659000px;}
.x92{left:191.739000px;}
.x76{left:193.530000px;}
.x24{left:194.610000px;}
.x47{left:196.230000px;}
.x57{left:198.210000px;}
.x7e{left:206.679000px;}
.x80{left:209.019000px;}
.x8e{left:212.079000px;}
.x93{left:214.419000px;}
.x82{left:216.399000px;}
.xd{left:217.649986px;}
.x90{left:222.699000px;}
.x78{left:224.490000px;}
.x85{left:225.750000px;}
.x72{left:246.630000px;}
.x62{left:292.935000px;}
.x51{left:303.194986px;}
.x6c{left:315.075000px;}
.x40{left:320.115000px;}
.x53{left:322.095000px;}
.x22{left:333.074986px;}
.x3c{left:342.434986px;}
.x71{left:356.294986px;}
.x84{left:360.614986px;}
.x7a{left:374.835000px;}
.x6d{left:376.635000px;}
.x63{left:378.255000px;}
.xf{left:380.054986px;}
.x73{left:384.915000px;}
.x25{left:399.315000px;}
.xb{left:420.734986px;}
.x8{left:459.074986px;}
.xc{left:464.294986px;}
.x11{left:465.374986px;}
.x6e{left:469.515000px;}
.x1b{left:475.634986px;}
.x20{left:478.334986px;}
.x1d{left:479.804986px;}
.x8a{left:491.685000px;}
.x7b{left:495.465000px;}
.x86{left:498.165000px;}
.x1c{left:502.664986px;}
.x1a{left:505.364986px;}
.x1e{left:506.804986px;}
.x83{left:526.604986px;}
.x4d{left:537.765000px;}
.x95{left:551.265000px;}
.x7f{left:555.765000px;}
.x6f{left:561.705000px;}
.x8f{left:566.565000px;}
.x5f{left:579.345000px;}
.x39{left:582.405000px;}
.x87{left:586.545000px;}
.x64{left:634.965000px;}
.x12{left:642.345000px;}
.x70{left:650.805000px;}
.x21{left:668.264986px;}
.x7c{left:682.350000px;}
.x66{left:710.250000px;}
.x7{left:812.490000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls21{letter-spacing:-0.688000pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.400533pt;}
.ls1f{letter-spacing:-0.329067pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.239467pt;}
.ls25{letter-spacing:-0.198933pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.147733pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls1d{letter-spacing:-0.080533pt;}
.lse{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.040320pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.030080pt;}
.ls0{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.075307pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.120320pt;}
.ls19{letter-spacing:0.120533pt;}
.ls23{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.136747pt;}
.ls13{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.168320pt;}
.ls16{letter-spacing:0.168533pt;}
.ls6{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.234880pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls11{letter-spacing:0.297600pt;}
.lsc{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.315733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.341547pt;}
.ls27{letter-spacing:0.480000pt;}
.ls28{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.lsb{letter-spacing:33.872640pt;}
.ls3{letter-spacing:37.216000pt;}
.ls9{letter-spacing:40.912640pt;}
.wsc{word-spacing:-53.288533pt;}
.ws9{word-spacing:-53.120000pt;}
.wse{word-spacing:-52.972267pt;}
.ws7{word-spacing:-48.000000pt;}
.ws3{word-spacing:-23.808000pt;}
.ws4{word-spacing:-14.622933pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.679680pt;}
.ws13{word-spacing:-10.639467pt;}
.ws1c{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-10.480533pt;}
.ws17{word-spacing:-10.400000pt;}
.ws18{word-spacing:-10.395733pt;}
.ws11{word-spacing:-10.319467pt;}
.ws15{word-spacing:-10.080000pt;}
.ws16{word-spacing:-9.750933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws1a{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-1.126400pt;}
._0{width:1.009280pt;}
._4{width:2.232533pt;}
._c{width:3.396693pt;}
._9{width:4.515200pt;}
._8{width:5.418240pt;}
._b{width:7.064960pt;}
._a{width:8.007893pt;}
._29{width:8.924160pt;}
._15{width:9.827200pt;}
._7{width:11.591040pt;}
._e{width:13.488000pt;}
._22{width:14.395520pt;}
._25{width:15.298560pt;}
._2e{width:16.307840pt;}
._1c{width:17.210880pt;}
._1f{width:18.379520pt;}
._24{width:19.335680pt;}
._1e{width:20.451200pt;}
._1d{width:21.407360pt;}
._28{width:23.194240pt;}
._d{width:24.382080pt;}
._f{width:25.440000pt;}
._21{width:26.858240pt;}
._17{width:28.100480pt;}
._16{width:29.109760pt;}
._13{width:30.166400pt;}
._12{width:31.104000pt;}
._2c{width:32.775040pt;}
._19{width:34.531840pt;}
._27{width:36.130560pt;}
._26{width:37.155200pt;}
._11{width:38.352000pt;}
._18{width:39.627520pt;}
._23{width:40.583680pt;}
._1b{width:41.869440pt;}
._1a{width:42.814720pt;}
._2d{width:44.746667pt;}
._2b{width:45.697920pt;}
._2a{width:46.890240pt;}
._20{width:48.817280pt;}
._10{width:50.640000pt;}
._2f{width:53.279360pt;}
._5{width:55.435307pt;}
._31{width:75.254827pt;}
._14{width:111.936000pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._30{width:409.926187pt;}
._6{width:761.866667pt;}
.fs4{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1be{bottom:0.640000pt;}
.y10d{bottom:2.234667pt;}
.y7{bottom:2.240000pt;}
.y3d{bottom:2.560000pt;}
.y3f{bottom:2.720000pt;}
.y19{bottom:2.880000pt;}
.y1bc{bottom:3.360000pt;}
.y34{bottom:5.280000pt;}
.y115{bottom:6.080000pt;}
.y149{bottom:6.240000pt;}
.y5{bottom:7.392000pt;}
.y12a{bottom:12.160000pt;}
.y126{bottom:12.320000pt;}
.ya{bottom:12.480000pt;}
.y1c4{bottom:13.760000pt;}
.y1b4{bottom:14.240000pt;}
.y143{bottom:14.400000pt;}
.y6{bottom:14.432000pt;}
.y13f{bottom:14.560000pt;}
.y1bb{bottom:14.720000pt;}
.y3c{bottom:16.360000pt;}
.y32{bottom:17.280000pt;}
.y1c3{bottom:25.280000pt;}
.y1b3{bottom:25.760000pt;}
.y1ba{bottom:26.240000pt;}
.y1ac{bottom:26.720000pt;}
.y3b{bottom:30.120000pt;}
.y8{bottom:31.520000pt;}
.y31{bottom:31.840000pt;}
.y1c2{bottom:36.640000pt;}
.y1b2{bottom:37.280000pt;}
.y1b9{bottom:37.760000pt;}
.y1ab{bottom:39.040000pt;}
.y3a{bottom:44.040000pt;}
.y30{bottom:45.600000pt;}
.y1c1{bottom:48.160000pt;}
.y1b1{bottom:48.640000pt;}
.y1b8{bottom:49.280000pt;}
.y4{bottom:51.680000pt;}
.y39{bottom:57.800000pt;}
.y2f{bottom:59.360000pt;}
.y1c0{bottom:59.680000pt;}
.y1b0{bottom:60.160000pt;}
.y1b7{bottom:60.800000pt;}
.y1bf{bottom:71.200000pt;}
.y38{bottom:71.560000pt;}
.y1af{bottom:71.680000pt;}
.y1b6{bottom:72.346667pt;}
.y2e{bottom:73.280000pt;}
.y37{bottom:85.320000pt;}
.y2d{bottom:87.040000pt;}
.y3e{bottom:94.400000pt;}
.y36{bottom:99.240000pt;}
.y2c{bottom:100.800000pt;}
.y3{bottom:100.992000pt;}
.y2b{bottom:114.586667pt;}
.y42{bottom:119.552000pt;}
.y10e{bottom:120.512000pt;}
.y1a8{bottom:123.872000pt;}
.ya1{bottom:124.512000pt;}
.y173{bottom:124.992000pt;}
.y77{bottom:125.472000pt;}
.yc6{bottom:126.432000pt;}
.y10c{bottom:132.672000pt;}
.y29{bottom:134.600000pt;}
.y41{bottom:134.906667pt;}
.y139{bottom:135.866667pt;}
.yc5{bottom:138.746667pt;}
.y1a7{bottom:139.226667pt;}
.ya0{bottom:139.866667pt;}
.y172{bottom:140.346667pt;}
.y76{bottom:140.826667pt;}
.y10b{bottom:144.826667pt;}
.y40{bottom:149.946667pt;}
.y28{bottom:149.960000pt;}
.yc4{bottom:151.066667pt;}
.y138{bottom:151.226667pt;}
.y1a6{bottom:154.586667pt;}
.y9f{bottom:155.226667pt;}
.y171{bottom:155.546667pt;}
.y75{bottom:156.186667pt;}
.y10a{bottom:156.986667pt;}
.y1a{bottom:161.786667pt;}
.yc3{bottom:163.226667pt;}
.y27{bottom:165.320000pt;}
.y137{bottom:166.586667pt;}
.y109{bottom:169.306667pt;}
.y1a5{bottom:169.946667pt;}
.y9e{bottom:170.586667pt;}
.y170{bottom:170.906667pt;}
.y74{bottom:171.546667pt;}
.yc2{bottom:175.546667pt;}
.y26{bottom:180.520000pt;}
.y108{bottom:181.466667pt;}
.y136{bottom:181.946667pt;}
.y16f{bottom:184.026667pt;}
.y1a4{bottom:185.146667pt;}
.y9d{bottom:185.946667pt;}
.y73{bottom:186.746667pt;}
.yc1{bottom:187.866667pt;}
.y107{bottom:193.626667pt;}
.y25{bottom:195.880000pt;}
.y16e{bottom:196.986667pt;}
.y135{bottom:197.146667pt;}
.yc0{bottom:200.026667pt;}
.y1a3{bottom:200.506667pt;}
.y9c{bottom:201.306667pt;}
.y72{bottom:202.106667pt;}
.y106{bottom:205.786667pt;}
.y16d{bottom:209.946667pt;}
.y24{bottom:211.240000pt;}
.ybf{bottom:212.346667pt;}
.y134{bottom:212.506667pt;}
.y1a2{bottom:215.866667pt;}
.y9b{bottom:216.506667pt;}
.y71{bottom:217.466667pt;}
.y105{bottom:217.946667pt;}
.y16c{bottom:222.906667pt;}
.ybe{bottom:225.306667pt;}
.y23{bottom:226.600000pt;}
.y133{bottom:227.866667pt;}
.y104{bottom:230.106667pt;}
.y1a1{bottom:231.226667pt;}
.y9a{bottom:231.866667pt;}
.y70{bottom:232.826667pt;}
.y16b{bottom:235.866667pt;}
.ybd{bottom:240.666667pt;}
.y22{bottom:241.960000pt;}
.y103{bottom:242.266667pt;}
.y132{bottom:243.226667pt;}
.y1a0{bottom:246.586667pt;}
.y99{bottom:247.226667pt;}
.y6f{bottom:248.186667pt;}
.y16a{bottom:248.666667pt;}
.y102{bottom:254.426667pt;}
.ybc{bottom:255.866667pt;}
.y21{bottom:257.320000pt;}
.y131{bottom:258.586667pt;}
.y19f{bottom:261.946667pt;}
.y98{bottom:262.586667pt;}
.y6e{bottom:263.546667pt;}
.y169{bottom:264.506667pt;}
.y101{bottom:266.586667pt;}
.y35{bottom:268.186667pt;}
.ybb{bottom:271.226667pt;}
.y20{bottom:272.520000pt;}
.y130{bottom:273.946667pt;}
.y19e{bottom:277.146667pt;}
.y97{bottom:277.946667pt;}
.y6d{bottom:278.746667pt;}
.y168{bottom:279.226667pt;}
.y100{bottom:280.506667pt;}
.yba{bottom:286.626667pt;}
.y1f{bottom:287.880000pt;}
.y12f{bottom:289.186667pt;}
.y167{bottom:289.986667pt;}
.yff{bottom:290.146667pt;}
.y19d{bottom:292.546667pt;}
.y96{bottom:293.346667pt;}
.y6c{bottom:294.146667pt;}
.yb9{bottom:301.986667pt;}
.y166{bottom:302.946667pt;}
.yf6{bottom:303.106667pt;}
.y1e{bottom:303.240000pt;}
.y12e{bottom:304.546667pt;}
.y19c{bottom:307.906667pt;}
.y95{bottom:308.546667pt;}
.y6b{bottom:309.506667pt;}
.yfe{bottom:315.426667pt;}
.y165{bottom:315.906667pt;}
.yb8{bottom:317.346667pt;}
.yf5{bottom:318.466667pt;}
.y1d{bottom:318.600000pt;}
.y12d{bottom:319.906667pt;}
.y19b{bottom:323.266667pt;}
.y94{bottom:323.906667pt;}
.y6a{bottom:324.866667pt;}
.y164{bottom:328.706667pt;}
.yfd{bottom:330.626667pt;}
.yb7{bottom:332.546667pt;}
.yf4{bottom:333.826667pt;}
.y1c{bottom:333.960000pt;}
.y12c{bottom:335.266667pt;}
.y19a{bottom:338.626667pt;}
.y93{bottom:339.266667pt;}
.y69{bottom:340.226667pt;}
.y163{bottom:341.666667pt;}
.yfc{bottom:345.986667pt;}
.yb6{bottom:347.906667pt;}
.yf3{bottom:349.026667pt;}
.y1b{bottom:349.346667pt;}
.y12b{bottom:350.626667pt;}
.y199{bottom:353.826667pt;}
.y92{bottom:354.626667pt;}
.y68{bottom:355.426667pt;}
.y162{bottom:356.386667pt;}
.y1bd{bottom:361.186667pt;}
.yfb{bottom:361.346667pt;}
.yb5{bottom:363.266667pt;}
.y129{bottom:363.746667pt;}
.yf2{bottom:364.386667pt;}
.y161{bottom:365.986667pt;}
.y198{bottom:369.186667pt;}
.y91{bottom:369.986667pt;}
.y67{bottom:370.786667pt;}
.y128{bottom:376.546667pt;}
.yfa{bottom:376.706667pt;}
.yb4{bottom:378.626667pt;}
.y160{bottom:378.946667pt;}
.y33{bottom:379.266667pt;}
.yf1{bottom:379.746667pt;}
.y197{bottom:384.546667pt;}
.y90{bottom:385.346667pt;}
.y66{bottom:386.146667pt;}
.y127{bottom:389.506667pt;}
.yf9{bottom:392.066667pt;}
.yb3{bottom:393.986667pt;}
.y15f{bottom:394.306667pt;}
.yf0{bottom:395.106667pt;}
.y2a{bottom:397.666667pt;}
.y196{bottom:399.906667pt;}
.y8f{bottom:400.546667pt;}
.y65{bottom:401.506667pt;}
.y125{bottom:402.466667pt;}
.yf8{bottom:407.426667pt;}
.yb2{bottom:409.346667pt;}
.y15e{bottom:409.666667pt;}
.yef{bottom:410.466667pt;}
.y195{bottom:415.266667pt;}
.y124{bottom:415.426667pt;}
.y8e{bottom:415.906667pt;}
.y64{bottom:416.866667pt;}
.yf7{bottom:422.626667pt;}
.yb1{bottom:424.546667pt;}
.y15d{bottom:425.026667pt;}
.yee{bottom:425.186667pt;}
.y123{bottom:430.146667pt;}
.y194{bottom:430.626667pt;}
.y8d{bottom:431.266667pt;}
.y63{bottom:432.226667pt;}
.yed{bottom:435.746667pt;}
.y122{bottom:439.746667pt;}
.yb0{bottom:439.906667pt;}
.y15c{bottom:440.226667pt;}
.y1b5{bottom:442.306667pt;}
.y193{bottom:445.826667pt;}
.y8c{bottom:446.626667pt;}
.y62{bottom:447.426667pt;}
.yec{bottom:448.706667pt;}
.y121{bottom:452.706667pt;}
.yaf{bottom:455.266667pt;}
.y15b{bottom:455.586667pt;}
.y192{bottom:461.186667pt;}
.yeb{bottom:461.666667pt;}
.y8b{bottom:461.986667pt;}
.y61{bottom:462.786667pt;}
.y120{bottom:468.066667pt;}
.yae{bottom:470.626667pt;}
.y15a{bottom:470.946667pt;}
.yea{bottom:474.626667pt;}
.y191{bottom:476.546667pt;}
.y8a{bottom:477.186667pt;}
.y60{bottom:478.146667pt;}
.y11f{bottom:483.426667pt;}
.yad{bottom:485.986667pt;}
.y159{bottom:486.306667pt;}
.ye9{bottom:487.586667pt;}
.y190{bottom:491.906667pt;}
.y89{bottom:492.706667pt;}
.y5f{bottom:493.506667pt;}
.y11e{bottom:498.626667pt;}
.ye8{bottom:500.546667pt;}
.yac{bottom:501.346667pt;}
.y158{bottom:501.666667pt;}
.y18f{bottom:507.293333pt;}
.y88{bottom:508.253333pt;}
.y5e{bottom:508.893333pt;}
.ye7{bottom:513.373333pt;}
.y11d{bottom:514.013333pt;}
.yab{bottom:516.573333pt;}
.y157{bottom:517.053333pt;}
.y18e{bottom:522.653333pt;}
.y87{bottom:523.613333pt;}
.y18{bottom:524.253333pt;}
.y1ae{bottom:524.573333pt;}
.ye6{bottom:526.333333pt;}
.y11c{bottom:529.373333pt;}
.yaa{bottom:531.933333pt;}
.y156{bottom:532.253333pt;}
.y18d{bottom:537.853333pt;}
.y86{bottom:538.973333pt;}
.ye5{bottom:539.293333pt;}
.y5d{bottom:539.453333pt;}
.y11b{bottom:544.733333pt;}
.ya9{bottom:547.293333pt;}
.y155{bottom:547.613333pt;}
.ye4{bottom:552.253333pt;}
.y18c{bottom:553.213333pt;}
.y85{bottom:554.173333pt;}
.y17{bottom:554.813333pt;}
.y11a{bottom:560.093333pt;}
.ya8{bottom:562.653333pt;}
.y154{bottom:562.973333pt;}
.ye3{bottom:565.213333pt;}
.y18b{bottom:568.573333pt;}
.y84{bottom:569.533333pt;}
.y5c{bottom:570.173333pt;}
.y119{bottom:575.453333pt;}
.y153{bottom:576.093333pt;}
.y16{bottom:576.253333pt;}
.ya7{bottom:578.013333pt;}
.ye2{bottom:578.173333pt;}
.y18a{bottom:583.933333pt;}
.y83{bottom:584.893333pt;}
.y5b{bottom:585.533333pt;}
.y152{bottom:589.053333pt;}
.y118{bottom:590.653333pt;}
.ye1{bottom:590.973333pt;}
.ya6{bottom:593.213333pt;}
.y189{bottom:599.293333pt;}
.y82{bottom:600.253333pt;}
.y5a{bottom:600.893333pt;}
.y151{bottom:602.013333pt;}
.y15{bottom:602.653333pt;}
.y117{bottom:603.773333pt;}
.ye0{bottom:605.853333pt;}
.y1ad{bottom:606.173333pt;}
.ya5{bottom:608.573333pt;}
.y188{bottom:614.653333pt;}
.y150{bottom:614.973333pt;}
.ydf{bottom:615.453333pt;}
.y81{bottom:615.613333pt;}
.y59{bottom:616.253333pt;}
.y116{bottom:616.733333pt;}
.y1aa{bottom:619.133333pt;}
.y14{bottom:623.933333pt;}
.yde{bottom:627.613333pt;}
.y14f{bottom:627.773333pt;}
.y114{bottom:629.693333pt;}
.y187{bottom:629.853333pt;}
.y80{bottom:630.973333pt;}
.y58{bottom:631.453333pt;}
.y13{bottom:635.773333pt;}
.ya4{bottom:639.293333pt;}
.ydd{bottom:640.573333pt;}
.y14e{bottom:640.733333pt;}
.y113{bottom:642.653333pt;}
.y186{bottom:645.213333pt;}
.y7f{bottom:646.173333pt;}
.y57{bottom:646.813333pt;}
.ya3{bottom:654.653333pt;}
.y112{bottom:655.613333pt;}
.ydc{bottom:655.933333pt;}
.y14d{bottom:656.573333pt;}
.y12{bottom:658.013333pt;}
.y185{bottom:660.573333pt;}
.y7e{bottom:661.533333pt;}
.y56{bottom:662.173333pt;}
.y1a9{bottom:668.893333pt;}
.y11{bottom:669.693333pt;}
.ya2{bottom:670.013333pt;}
.y111{bottom:670.653333pt;}
.ydb{bottom:671.293333pt;}
.y14c{bottom:671.933333pt;}
.y184{bottom:675.933333pt;}
.y7d{bottom:676.893333pt;}
.y55{bottom:677.533333pt;}
.y110{bottom:682.973333pt;}
.y14b{bottom:685.053333pt;}
.yda{bottom:686.493333pt;}
.y10{bottom:690.813333pt;}
.y183{bottom:691.293333pt;}
.y7c{bottom:692.253333pt;}
.y54{bottom:692.893333pt;}
.y10f{bottom:695.293333pt;}
.y14a{bottom:698.013333pt;}
.yd9{bottom:701.853333pt;}
.y182{bottom:706.493333pt;}
.y7b{bottom:707.613333pt;}
.y53{bottom:708.093333pt;}
.y148{bottom:710.813333pt;}
.yd8{bottom:717.213333pt;}
.yf{bottom:718.333333pt;}
.y181{bottom:721.853333pt;}
.y7a{bottom:722.973333pt;}
.y52{bottom:723.453333pt;}
.y147{bottom:723.773333pt;}
.yd7{bottom:732.613333pt;}
.y146{bottom:736.773333pt;}
.y180{bottom:737.253333pt;}
.y79{bottom:738.373333pt;}
.y51{bottom:738.853333pt;}
.ye{bottom:746.053333pt;}
.yd6{bottom:747.973333pt;}
.y145{bottom:752.613333pt;}
.y78{bottom:754.053333pt;}
.y50{bottom:754.213333pt;}
.y144{bottom:767.973333pt;}
.y4f{bottom:769.573333pt;}
.yd{bottom:773.573333pt;}
.yd5{bottom:776.453333pt;}
.y142{bottom:781.093333pt;}
.y17f{bottom:783.333333pt;}
.y4e{bottom:784.933333pt;}
.yd4{bottom:789.253333pt;}
.y17e{bottom:798.533333pt;}
.y4d{bottom:800.133333pt;}
.yc{bottom:801.253333pt;}
.yd3{bottom:802.213333pt;}
.y141{bottom:806.213333pt;}
.y17d{bottom:813.893333pt;}
.yd2{bottom:815.173333pt;}
.y4c{bottom:815.493333pt;}
.y140{bottom:819.173333pt;}
.yb{bottom:826.853333pt;}
.yd1{bottom:828.133333pt;}
.y17c{bottom:829.253333pt;}
.y4b{bottom:830.853333pt;}
.y13e{bottom:832.133333pt;}
.y9{bottom:840.453333pt;}
.yd0{bottom:841.093333pt;}
.y17b{bottom:844.613333pt;}
.y4a{bottom:846.213333pt;}
.ycf{bottom:854.053333pt;}
.y13d{bottom:857.253333pt;}
.y17a{bottom:859.973333pt;}
.y49{bottom:861.573333pt;}
.yce{bottom:866.853333pt;}
.y13c{bottom:870.213333pt;}
.y179{bottom:873.093333pt;}
.y48{bottom:876.933333pt;}
.ycd{bottom:879.813333pt;}
.y13b{bottom:885.093333pt;}
.y178{bottom:886.053333pt;}
.y47{bottom:892.133333pt;}
.ycc{bottom:892.773333pt;}
.y13a{bottom:894.693333pt;}
.y177{bottom:898.853333pt;}
.ycb{bottom:905.733333pt;}
.y46{bottom:907.493333pt;}
.y176{bottom:911.813333pt;}
.yca{bottom:918.693333pt;}
.y45{bottom:922.853333pt;}
.y175{bottom:924.773333pt;}
.yc9{bottom:931.653333pt;}
.y174{bottom:937.733333pt;}
.y44{bottom:938.213333pt;}
.yc8{bottom:946.373333pt;}
.y43{bottom:953.600000pt;}
.yc7{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h25{height:11.360000pt;}
.h22{height:11.520000pt;}
.h1f{height:12.160000pt;}
.h21{height:12.192000pt;}
.h20{height:12.320000pt;}
.h2a{height:12.320133pt;}
.h29{height:12.352000pt;}
.h11{height:15.200000pt;}
.h16{height:17.760000pt;}
.h26{height:22.343750pt;}
.h1e{height:22.578125pt;}
.he{height:24.131250pt;}
.h27{height:24.480000pt;}
.h4{height:24.512000pt;}
.hd{height:25.918750pt;}
.h24{height:28.153125pt;}
.h23{height:28.448437pt;}
.h6{height:29.940625pt;}
.h1d{height:30.254687pt;}
.h28{height:32.306562pt;}
.h18{height:33.515625pt;}
.h19{height:33.867188pt;}
.h7{height:34.965625pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.h10{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h15{height:39.347188pt;}
.h2{height:40.021563pt;}
.h9{height:41.112500pt;}
.ha{height:44.361250pt;}
.h1c{height:44.768125pt;}
.h1{height:45.156250pt;}
.hc{height:47.310625pt;}
.h2b{height:49.120000pt;}
.h3{height:58.563750pt;}
.hf{height:67.031250pt;}
.hb{height:67.734375pt;}
.h2e{height:80.480000pt;}
.h2c{height:80.960000pt;}
.h2d{height:81.632000pt;}
.h1a{height:105.600000pt;}
.h17{height:110.432000pt;}
.h13{height:125.792000pt;}
.h8{height:136.826667pt;}
.h12{height:361.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w1d{width:54.080000pt;}
.w11{width:62.400000pt;}
.wc{width:62.880000pt;}
.w38{width:63.392000pt;}
.w1a{width:66.112000pt;}
.w17{width:75.200000pt;}
.w28{width:75.840000pt;}
.w30{width:77.920000pt;}
.w20{width:78.560000pt;}
.w21{width:80.992000pt;}
.w1f{width:81.312000pt;}
.w1e{width:81.920000pt;}
.w7{width:83.200000pt;}
.w31{width:83.872000pt;}
.w29{width:88.832000pt;}
.w1b{width:95.680000pt;}
.w27{width:106.592000pt;}
.w2f{width:107.872000pt;}
.w25{width:109.760000pt;}
.w2d{width:110.880000pt;}
.w19{width:112.960000pt;}
.w18{width:113.952000pt;}
.w2a{width:120.480000pt;}
.w32{width:121.120000pt;}
.w23{width:122.272000pt;}
.w1c{width:122.752000pt;}
.w22{width:129.440000pt;}
.wd{width:131.072000pt;}
.w12{width:132.512000pt;}
.w26{width:132.832000pt;}
.w2e{width:132.992000pt;}
.wa{width:162.106667pt;}
.w16{width:170.586667pt;}
.w8{width:181.306667pt;}
.wf{width:192.826667pt;}
.w6{width:195.706667pt;}
.wb{width:209.306667pt;}
.w15{width:211.066667pt;}
.w36{width:223.386667pt;}
.w14{width:228.026667pt;}
.w2c{width:232.986667pt;}
.w10{width:248.986667pt;}
.w39{width:275.706667pt;}
.w34{width:289.946667pt;}
.w37{width:339.746667pt;}
.w33{width:347.266667pt;}
.w9{width:372.066667pt;}
.w24{width:386.786667pt;}
.w2b{width:404.226667pt;}
.w35{width:413.826667pt;}
.w13{width:439.746667pt;}
.we{width:442.466667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.760000pt;}
.x4{left:7.520000pt;}
.x43{left:9.120000pt;}
.x42{left:10.880000pt;}
.x75{left:12.000000pt;}
.x3d{left:12.960000pt;}
.x52{left:13.920000pt;}
.x65{left:16.160000pt;}
.x13{left:17.760000pt;}
.x29{left:19.360000pt;}
.x67{left:20.320000pt;}
.x2b{left:22.240000pt;}
.x23{left:23.200000pt;}
.x17{left:24.320000pt;}
.x88{left:25.280000pt;}
.x4a{left:26.400000pt;}
.x77{left:28.160000pt;}
.x32{left:29.120000pt;}
.x15{left:30.280000pt;}
.x16{left:31.880000pt;}
.x2d{left:33.280000pt;}
.x30{left:34.400000pt;}
.x79{left:35.520000pt;}
.x35{left:36.480000pt;}
.x38{left:37.760000pt;}
.x6{left:40.480000pt;}
.x68{left:42.240000pt;}
.x7d{left:45.594667pt;}
.x3a{left:46.720000pt;}
.x2{left:47.999988pt;}
.x69{left:49.754667pt;}
.x48{left:50.880000pt;}
.x3f{left:52.160000pt;}
.x1{left:53.919988pt;}
.x58{left:54.880000pt;}
.x41{left:56.160000pt;}
.x18{left:58.239988pt;}
.x5a{left:60.000000pt;}
.x56{left:61.120000pt;}
.x9{left:63.839988pt;}
.x4e{left:66.560000pt;}
.x2a{left:68.800000pt;}
.xa{left:69.919988pt;}
.x3b{left:71.706667pt;}
.x5e{left:73.440000pt;}
.x19{left:77.119988pt;}
.x1f{left:78.399988pt;}
.x27{left:81.320000pt;}
.x33{left:84.040000pt;}
.x2e{left:85.320000pt;}
.x4f{left:86.880000pt;}
.x5{left:89.632000pt;}
.x45{left:91.040000pt;}
.x91{left:92.480000pt;}
.x46{left:94.880000pt;}
.x3{left:96.031988pt;}
.x28{left:97.626667pt;}
.xe{left:98.591988pt;}
.x55{left:101.600000pt;}
.x44{left:102.560000pt;}
.x60{left:105.280000pt;}
.x36{left:107.706667pt;}
.x54{left:108.800000pt;}
.x10{left:110.751988pt;}
.x4c{left:113.920000pt;}
.x50{left:115.040000pt;}
.x61{left:118.271988pt;}
.x5d{left:119.360000pt;}
.x2c{left:121.146667pt;}
.x37{left:122.906667pt;}
.x6a{left:124.351988pt;}
.x31{left:128.186667pt;}
.x8c{left:130.240000pt;}
.x8b{left:131.520000pt;}
.x4b{left:132.640000pt;}
.x34{left:135.706667pt;}
.x5c{left:136.960000pt;}
.x8d{left:138.234667pt;}
.x2f{left:139.386667pt;}
.x5b{left:142.906667pt;}
.x3e{left:152.666667pt;}
.x89{left:155.194667pt;}
.x6b{left:156.506667pt;}
.x26{left:159.546667pt;}
.x49{left:163.386667pt;}
.x81{left:164.674667pt;}
.x59{left:165.786667pt;}
.x74{left:167.066667pt;}
.x94{left:169.474667pt;}
.x92{left:170.434667pt;}
.x76{left:172.026667pt;}
.x24{left:172.986667pt;}
.x47{left:174.426667pt;}
.x57{left:176.186667pt;}
.x7e{left:183.714667pt;}
.x80{left:185.794667pt;}
.x8e{left:188.514667pt;}
.x93{left:190.594667pt;}
.x82{left:192.354667pt;}
.xd{left:193.466655pt;}
.x90{left:197.954667pt;}
.x78{left:199.546667pt;}
.x85{left:200.666667pt;}
.x72{left:219.226667pt;}
.x62{left:260.386667pt;}
.x51{left:269.506655pt;}
.x6c{left:280.066667pt;}
.x40{left:284.546667pt;}
.x53{left:286.306667pt;}
.x22{left:296.066655pt;}
.x3c{left:304.386655pt;}
.x71{left:316.706655pt;}
.x84{left:320.546655pt;}
.x7a{left:333.186667pt;}
.x6d{left:334.786667pt;}
.x63{left:336.226667pt;}
.xf{left:337.826655pt;}
.x73{left:342.146667pt;}
.x25{left:354.946667pt;}
.xb{left:373.986655pt;}
.x8{left:408.066655pt;}
.xc{left:412.706655pt;}
.x11{left:413.666655pt;}
.x6e{left:417.346667pt;}
.x1b{left:422.786655pt;}
.x20{left:425.186655pt;}
.x1d{left:426.493321pt;}
.x8a{left:437.053333pt;}
.x7b{left:440.413333pt;}
.x86{left:442.813333pt;}
.x1c{left:446.813321pt;}
.x1a{left:449.213321pt;}
.x1e{left:450.493321pt;}
.x83{left:468.093321pt;}
.x4d{left:478.013333pt;}
.x95{left:490.013333pt;}
.x7f{left:494.013333pt;}
.x6f{left:499.293333pt;}
.x8f{left:503.613333pt;}
.x5f{left:514.973333pt;}
.x39{left:517.693333pt;}
.x87{left:521.373333pt;}
.x64{left:564.413333pt;}
.x12{left:570.973333pt;}
.x70{left:578.493333pt;}
.x21{left:594.013321pt;}
.x7c{left:606.533333pt;}
.x66{left:631.333333pt;}
.x7{left:722.213333pt;}
}




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