
    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_942ea190667d19955a6ec5eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f8305aa39b0d767c8b1ac53.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7a455893b6b80a61a63e106c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_f43b75cf7116779efc2c6952.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_87b8b528a79ebfe3a41f005d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_63621c252a3c3bf447014277.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a22eb770f77b6f6a90fa0598.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_e782e7811ad940a0894b6165.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117188;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_3338ace1fb7607c66fa6303c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.180664;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_40fe850549d0ca8fcbe485ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.180664;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_ee4e074e38c9bfe47ea16999.woff2')format("woff");}.fff{font-family:fff;line-height:0.834473;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:ff10;src:url('chunks/assets/font_6ecbb8d1068b4cf62cebdbb1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1a31b0b5c57c7c85ab5fd22f.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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;}
.ls14{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.100800px;}
.ls22{letter-spacing:-0.029520px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004320px;}
.ls20{letter-spacing:0.061200px;}
.lsa{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.073200px;}
.ls26{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.153600px;}
.ls16{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.259800px;}
.lse{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.320400px;}
.ls1d{letter-spacing:0.355200px;}
.ls15{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.792000px;}
.lsc{letter-spacing:23.904000px;}
.ls3{letter-spacing:27.509760px;}
.lsb{letter-spacing:28.224000px;}
.lsd{letter-spacing:31.824000px;}
.ls1{letter-spacing:33.984000px;}
.ls5{letter-spacing:44.784000px;}
.ls4{letter-spacing:54.864000px;}
.ls27{letter-spacing:64.026720px;}
.ls9{letter-spacing:87.984000px;}
.ls18{letter-spacing:100.800000px;}
.ls8{letter-spacing:108.144000px;}
.ls17{letter-spacing:114.480000px;}
.ls19{letter-spacing:123.042720px;}
.ls7{letter-spacing:128.304000px;}
.ls1b{letter-spacing:145.386720px;}
.ls1c{letter-spacing:149.706720px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws19{word-spacing:-59.760000px;}
.wsa{word-spacing:-24.259200px;}
.wsc{word-spacing:-24.224400px;}
.ws10{word-spacing:-23.977200px;}
.wse{word-spacing:-23.965200px;}
.ws0{word-spacing:-23.940000px;}
.wsb{word-spacing:-23.908320px;}
.wsf{word-spacing:-23.874480px;}
.wsd{word-spacing:-23.803200px;}
.ws6{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws9{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.093600px;}
.ws14{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.976000px;}
.ws18{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.580000px;}
.ws4{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:56.832000px;}
.ws16{word-spacing:59.772000px;}
.ws12{word-spacing:59.880000px;}
._9{margin-left:-4.422240px;}
._8{margin-left:-3.240000px;}
._0{margin-left:-1.841760px;}
._1{width:1.053360px;}
._12{width:2.069280px;}
._1a{width:3.080160px;}
._e{width:4.104000px;}
._f{width:5.616000px;}
._c{width:7.200000px;}
._6{width:9.072000px;}
._7{width:10.164000px;}
._1c{width:11.321280px;}
._a{width:12.600000px;}
._b{width:13.716000px;}
._1d{width:14.760000px;}
._18{width:15.840000px;}
._1b{width:16.920000px;}
._4{width:19.937760px;}
._3{width:21.072000px;}
._d{width:22.320000px;}
._13{width:23.400000px;}
._5{width:24.480000px;}
._10{width:26.132400px;}
._11{width:27.283680px;}
._2{width:28.944000px;}
._19{width:30.240000px;}
._14{width:31.968000px;}
._15{width:33.192000px;}
._16{width:36.212400px;}
._17{width:37.261440px;}
._1e{width:39.024000px;}
._22{width:41.582640px;}
._24{width:43.056000px;}
._25{width:45.093360px;}
._1f{width:82.380000px;}
._21{width:100.812000px;}
._23{width:114.204000px;}
._20{width:194.400000px;}
._26{width:197.042160px;}
._27{width:846.156000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:3.060000px;}
.y174{bottom:3.240000px;}
.y19e{bottom:3.270000px;}
.y194{bottom:3.285000px;}
.yfd{bottom:3.600000px;}
.ya9{bottom:3.960000px;}
.y16e{bottom:5.220000px;}
.y177{bottom:5.400000px;}
.yb3{bottom:5.760000px;}
.ya6{bottom:5.940000px;}
.ye1{bottom:7.200000px;}
.y170{bottom:10.620000px;}
.ye4{bottom:14.580000px;}
.y14f{bottom:16.815000px;}
.y15e{bottom:16.920000px;}
.ye3{bottom:17.640000px;}
.yc4{bottom:19.980000px;}
.y1b8{bottom:20.340000px;}
.y18f{bottom:20.520000px;}
.y19d{bottom:20.550000px;}
.y1a9{bottom:20.565000px;}
.ya8{bottom:20.700000px;}
.yc3{bottom:21.420000px;}
.y176{bottom:22.500000px;}
.y18e{bottom:37.800000px;}
.y173{bottom:39.780000px;}
.y1{bottom:56.160000px;}
.y175{bottom:57.105000px;}
.y172{bottom:58.185000px;}
.y15d{bottom:107.280000px;}
.y14e{bottom:108.285000px;}
.y161{bottom:112.785000px;}
.y16b{bottom:112.890000px;}
.ya4{bottom:113.040000px;}
.y1e1{bottom:116.640000px;}
.ydf{bottom:117.000000px;}
.y2c{bottom:117.180000px;}
.yc1{bottom:117.360000px;}
.y56{bottom:123.840000px;}
.y1b4{bottom:125.100000px;}
.y108{bottom:126.900000px;}
.y72{bottom:127.620000px;}
.y146{bottom:129.780000px;}
.y1e0{bottom:134.100000px;}
.yde{bottom:136.980000px;}
.y11b{bottom:141.840000px;}
.y66{bottom:142.920000px;}
.y81{bottom:144.900000px;}
.y8d{bottom:146.160000px;}
.y1b3{bottom:148.320000px;}
.yf1{bottom:153.900000px;}
.yb1{bottom:156.060000px;}
.ydd{bottom:156.780000px;}
.y14{bottom:156.960000px;}
.y1df{bottom:157.500000px;}
.y2b{bottom:158.580000px;}
.yc0{bottom:158.760000px;}
.y138{bottom:159.660000px;}
.y16a{bottom:160.200000px;}
.y55{bottom:165.240000px;}
.ya3{bottom:166.320000px;}
.y11a{bottom:168.300000px;}
.y71{bottom:169.020000px;}
.y145{bottom:171.180000px;}
.y1b2{bottom:171.540000px;}
.ydc{bottom:176.580000px;}
.yfa{bottom:177.120000px;}
.y107{bottom:180.180000px;}
.y1de{bottom:180.720000px;}
.y50{bottom:180.900000px;}
.y188{bottom:183.780000px;}
.y65{bottom:184.320000px;}
.y80{bottom:186.300000px;}
.y43{bottom:187.560000px;}
.y8c{bottom:189.000000px;}
.y14b{bottom:189.540000px;}
.y119{bottom:194.760000px;}
.ydb{bottom:196.380000px;}
.yb0{bottom:197.280000px;}
.y15a{bottom:198.210000px;}
.y13{bottom:198.390000px;}
.y2a{bottom:199.830000px;}
.ybf{bottom:200.190000px;}
.y169{bottom:201.630000px;}
.y1dd{bottom:203.970000px;}
.y160{bottom:206.175000px;}
.y54{bottom:206.670000px;}
.yf0{bottom:207.210000px;}
.y15c{bottom:208.410000px;}
.y14d{bottom:209.955000px;}
.y144{bottom:212.610000px;}
.y137{bottom:213.150000px;}
.yda{bottom:216.210000px;}
.y1b1{bottom:218.010000px;}
.ya2{bottom:219.810000px;}
.y118{bottom:221.250000px;}
.y106{bottom:221.610000px;}
.y4f{bottom:222.330000px;}
.y187{bottom:225.210000px;}
.y64{bottom:225.750000px;}
.y1dc{bottom:227.190000px;}
.y7f{bottom:227.730000px;}
.y42{bottom:228.990000px;}
.y8b{bottom:230.430000px;}
.yf9{bottom:230.610000px;}
.y14a{bottom:230.970000px;}
.yd9{bottom:236.190000px;}
.yaf{bottom:238.710000px;}
.y12{bottom:239.790000px;}
.y1b0{bottom:241.410000px;}
.ybe{bottom:241.590000px;}
.y29{bottom:242.670000px;}
.y168{bottom:243.030000px;}
.y159{bottom:246.990000px;}
.y117{bottom:247.890000px;}
.y15f{bottom:248.580000px;}
.y1db{bottom:250.410000px;}
.y143{bottom:253.830000px;}
.y136{bottom:254.550000px;}
.yd8{bottom:255.990000px;}
.yef{bottom:260.670000px;}
.y105{bottom:263.010000px;}
.y4e{bottom:263.730000px;}
.y1af{bottom:264.630000px;}
.y186{bottom:266.610000px;}
.y63{bottom:267.150000px;}
.y7e{bottom:269.130000px;}
.y41{bottom:270.390000px;}
.yf8{bottom:272.010000px;}
.y149{bottom:272.370000px;}
.y8a{bottom:273.270000px;}
.y1da{bottom:273.630000px;}
.y53{bottom:275.790000px;}
.yae{bottom:280.110000px;}
.y11{bottom:281.190000px;}
.ybd{bottom:282.990000px;}
.y28{bottom:284.070000px;}
.y167{bottom:284.430000px;}
.y1ae{bottom:287.850000px;}
.y116{bottom:289.290000px;}
.y142{bottom:295.230000px;}
.yd7{bottom:295.590000px;}
.y135{bottom:295.950000px;}
.y1d9{bottom:297.030000px;}
.y104{bottom:297.930000px;}
.y4d{bottom:305.130000px;}
.y185{bottom:308.010000px;}
.y62{bottom:308.550000px;}
.y7d{bottom:310.530000px;}
.y1ad{bottom:311.070000px;}
.y40{bottom:311.790000px;}
.yf7{bottom:313.410000px;}
.yee{bottom:313.950000px;}
.y89{bottom:314.490000px;}
.yd6{bottom:315.390000px;}
.y1d8{bottom:320.250000px;}
.y148{bottom:321.150000px;}
.yad{bottom:321.510000px;}
.y10{bottom:322.590000px;}
.y14c{bottom:322.740000px;}
.ybc{bottom:324.390000px;}
.y166{bottom:325.830000px;}
.ya1{bottom:326.550000px;}
.y27{bottom:326.910000px;}
.y52{bottom:329.250000px;}
.y115{bottom:330.690000px;}
.y61{bottom:330.870000px;}
.y103{bottom:331.230000px;}
.y1ac{bottom:334.290000px;}
.yd5{bottom:335.190000px;}
.y141{bottom:336.630000px;}
.y134{bottom:337.350000px;}
.y1d7{bottom:343.470000px;}
.y4c{bottom:346.530000px;}
.y184{bottom:349.410000px;}
.y3f{bottom:353.190000px;}
.yd4{bottom:355.170000px;}
.y88{bottom:357.330000px;}
.yac{bottom:362.910000px;}
.yf{bottom:363.990000px;}
.y102{bottom:365.430000px;}
.ybb{bottom:365.790000px;}
.y1d6{bottom:366.690000px;}
.yf6{bottom:366.870000px;}
.y165{bottom:367.230000px;}
.yed{bottom:367.410000px;}
.ya0{bottom:367.950000px;}
.y26{bottom:368.310000px;}
.y1ab{bottom:369.570000px;}
.y18a{bottom:370.650000px;}
.y60{bottom:372.270000px;}
.yd3{bottom:374.970000px;}
.y140{bottom:378.030000px;}
.yab{bottom:379.650000px;}
.y51{bottom:382.530000px;}
.y4b{bottom:387.930000px;}
.y1d5{bottom:389.910000px;}
.y133{bottom:390.630000px;}
.y183{bottom:390.810000px;}
.y1aa{bottom:392.790000px;}
.y3e{bottom:394.590000px;}
.yd2{bottom:394.770000px;}
.y87{bottom:398.550000px;}
.y101{bottom:399.810000px;}
.ye{bottom:405.390000px;}
.yba{bottom:407.190000px;}
.yec{bottom:408.810000px;}
.y9f{bottom:409.350000px;}
.y25{bottom:409.530000px;}
.y189{bottom:412.050000px;}
.y1d4{bottom:413.130000px;}
.y5f{bottom:413.670000px;}
.yd1{bottom:414.570000px;}
.y1a8{bottom:416.010000px;}
.yf5{bottom:420.150000px;}
.y164{bottom:420.690000px;}
.y114{bottom:427.890000px;}
.y4a{bottom:429.330000px;}
.y13f{bottom:431.490000px;}
.y182{bottom:432.210000px;}
.y100{bottom:434.190000px;}
.yd0{bottom:434.370000px;}
.y3d{bottom:436.035000px;}
.y1d3{bottom:436.575000px;}
.yf4{bottom:436.935000px;}
.y132{bottom:444.135000px;}
.y7c{bottom:446.835000px;}
.yeb{bottom:450.255000px;}
.y9e{bottom:450.795000px;}
.y24{bottom:450.975000px;}
.y1a7{bottom:451.335000px;}
.y86{bottom:453.495000px;}
.ycf{bottom:454.395000px;}
.yd{bottom:454.935000px;}
.y5e{bottom:455.115000px;}
.y1d2{bottom:459.795000px;}
.yb9{bottom:460.515000px;}
.y163{bottom:462.135000px;}
.y113{bottom:469.335000px;}
.y70{bottom:470.775000px;}
.y181{bottom:473.655000px;}
.yce{bottom:474.195000px;}
.y1a6{bottom:474.555000px;}
.y3c{bottom:477.435000px;}
.y13e{bottom:480.855000px;}
.y49{bottom:482.835000px;}
.y1d1{bottom:483.015000px;}
.y131{bottom:485.535000px;}
.yff{bottom:487.695000px;}
.y7b{bottom:488.235000px;}
.yea{bottom:491.655000px;}
.y9d{bottom:492.195000px;}
.y23{bottom:493.815000px;}
.ycd{bottom:493.995000px;}
.y158{bottom:494.175000px;}
.y85{bottom:494.895000px;}
.y5d{bottom:496.515000px;}
.y1a5{bottom:497.955000px;}
.yb8{bottom:501.915000px;}
.y162{bottom:503.535000px;}
.yc{bottom:506.055000px;}
.y1d0{bottom:506.235000px;}
.y6f{bottom:512.175000px;}
.ycc{bottom:513.795000px;}
.y180{bottom:515.055000px;}
.y3b{bottom:518.835000px;}
.y1a4{bottom:521.175000px;}
.y112{bottom:522.795000px;}
.y48{bottom:524.235000px;}
.y130{bottom:526.935000px;}
.y1cf{bottom:529.455000px;}
.ye9{bottom:533.055000px;}
.y9c{bottom:533.595000px;}
.y22{bottom:535.035000px;}
.y84{bottom:536.295000px;}
.y5c{bottom:537.915000px;}
.yfe{bottom:540.975000px;}
.y7a{bottom:541.695000px;}
.yb7{bottom:543.315000px;}
.y1a3{bottom:544.395000px;}
.y157{bottom:544.755000px;}
.y1ce{bottom:552.675000px;}
.ycb{bottom:553.395000px;}
.y6e{bottom:553.575000px;}
.yb{bottom:554.295000px;}
.y17f{bottom:556.455000px;}
.yfc{bottom:557.715000px;}
.y3a{bottom:560.235000px;}
.y47{bottom:565.635000px;}
.y1a2{bottom:567.615000px;}
.y12f{bottom:568.335000px;}
.yca{bottom:573.375000px;}
.ye8{bottom:574.455000px;}
.y9b{bottom:574.995000px;}
.y1cd{bottom:576.075000px;}
.y111{bottom:576.255000px;}
.y21{bottom:577.695000px;}
.y5b{bottom:579.315000px;}
.y156{bottom:586.155000px;}
.y1a1{bottom:590.835000px;}
.yc9{bottom:593.175000px;}
.y79{bottom:594.975000px;}
.yb6{bottom:596.775000px;}
.y17e{bottom:597.855000px;}
.y1cc{bottom:599.295000px;}
.y39{bottom:601.635000px;}
.ya{bottom:602.535000px;}
.y46{bottom:607.035000px;}
.y110{bottom:610.455000px;}
.yb4{bottom:613.515000px;}
.ye7{bottom:615.855000px;}
.y9a{bottom:616.395000px;}
.yaa{bottom:618.195000px;}
.y83{bottom:618.915000px;}
.y20{bottom:620.355000px;}
.y5a{bottom:620.715000px;}
.y12e{bottom:621.615000px;}
.y1cb{bottom:622.515000px;}
.y1a0{bottom:626.115000px;}
.y155{bottom:627.555000px;}
.y17d{bottom:639.255000px;}
.y38{bottom:643.035000px;}
.yc8{bottom:643.755000px;}
.y10f{bottom:644.835000px;}
.y1ca{bottom:645.735000px;}
.y78{bottom:648.435000px;}
.y19f{bottom:649.335000px;}
.y9{bottom:650.955000px;}
.yf3{bottom:652.575000px;}
.y99{bottom:657.795000px;}
.y45{bottom:660.315000px;}
.y12d{bottom:660.855000px;}
.y59{bottom:662.115000px;}
.y1f{bottom:663.015000px;}
.y1c9{bottom:668.235000px;}
.y154{bottom:668.955000px;}
.ye6{bottom:669.315000px;}
.y19c{bottom:672.555000px;}
.y10e{bottom:679.245000px;}
.y17c{bottom:680.685000px;}
.y37{bottom:684.465000px;}
.yc7{bottom:685.185000px;}
.y12c{bottom:687.345000px;}
.y77{bottom:689.865000px;}
.y1c8{bottom:691.485000px;}
.ye5{bottom:691.845000px;}
.y98{bottom:699.225000px;}
.y82{bottom:701.745000px;}
.y58{bottom:703.545000px;}
.y1e{bottom:705.705000px;}
.ye2{bottom:705.885000px;}
.y19b{bottom:707.865000px;}
.y153{bottom:710.385000px;}
.y10d{bottom:713.625000px;}
.y44{bottom:713.805000px;}
.y1c7{bottom:714.705000px;}
.y8{bottom:715.425000px;}
.yc6{bottom:719.565000px;}
.y17b{bottom:722.085000px;}
.y36{bottom:725.865000px;}
.y19a{bottom:731.085000px;}
.y76{bottom:731.265000px;}
.y1c6{bottom:738.105000px;}
.y12b{bottom:740.265000px;}
.y97{bottom:740.625000px;}
.y147{bottom:743.145000px;}
.y57{bottom:744.945000px;}
.yc5{bottom:751.245000px;}
.y152{bottom:751.785000px;}
.y13d{bottom:752.865000px;}
.y6d{bottom:755.205000px;}
.y1d{bottom:760.605000px;}
.y1c5{bottom:761.325000px;}
.yc2{bottom:765.465000px;}
.y199{bottom:766.365000px;}
.y12a{bottom:766.725000px;}
.y10c{bottom:766.905000px;}
.y35{bottom:767.265000px;}
.y7{bottom:770.505000px;}
.y75{bottom:772.665000px;}
.y17a{bottom:775.545000px;}
.y96{bottom:782.025000px;}
.y1c4{bottom:784.545000px;}
.y129{bottom:793.185000px;}
.y6c{bottom:796.605000px;}
.y151{bottom:800.565000px;}
.y1c{bottom:802.005000px;}
.y15b{bottom:802.080000px;}
.y13c{bottom:803.625000px;}
.y1c3{bottom:807.765000px;}
.y10b{bottom:808.305000px;}
.y34{bottom:808.665000px;}
.y74{bottom:814.065000px;}
.y198{bottom:818.925000px;}
.y128{bottom:819.645000px;}
.y179{bottom:828.825000px;}
.y1c2{bottom:830.985000px;}
.yfb{bottom:831.345000px;}
.y95{bottom:835.485000px;}
.y6{bottom:837.825000px;}
.y6b{bottom:838.005000px;}
.y197{bottom:842.145000px;}
.y1b{bottom:843.405000px;}
.y13b{bottom:845.025000px;}
.y127{bottom:846.285000px;}
.y178{bottom:846.465000px;}
.y33{bottom:850.065000px;}
.y1c1{bottom:854.205000px;}
.y73{bottom:855.465000px;}
.y10a{bottom:861.765000px;}
.y196{bottom:865.365000px;}
.y171{bottom:868.425000px;}
.y126{bottom:872.745000px;}
.y94{bottom:876.885000px;}
.ya7{bottom:877.425000px;}
.y109{bottom:878.505000px;}
.y6a{bottom:879.405000px;}
.y195{bottom:888.585000px;}
.y1c0{bottom:889.485000px;}
.y32{bottom:891.465000px;}
.y13a{bottom:894.345000px;}
.y1a{bottom:896.865000px;}
.y125{bottom:899.205000px;}
.y193{bottom:911.805000px;}
.y1bf{bottom:912.750000px;}
.y5{bottom:913.110000px;}
.y93{bottom:918.330000px;}
.y69{bottom:920.850000px;}
.y124{bottom:925.710000px;}
.yf2{bottom:926.610000px;}
.y31{bottom:932.910000px;}
.y192{bottom:935.250000px;}
.y1be{bottom:936.150000px;}
.y19{bottom:938.310000px;}
.y16f{bottom:942.450000px;}
.y123{bottom:952.170000px;}
.y191{bottom:958.470000px;}
.y1bd{bottom:959.370000px;}
.y92{bottom:959.730000px;}
.y68{bottom:962.250000px;}
.y16d{bottom:964.410000px;}
.y30{bottom:974.310000px;}
.y122{bottom:978.630000px;}
.y190{bottom:981.690000px;}
.y1bc{bottom:982.590000px;}
.y16c{bottom:986.370000px;}
.y18{bottom:991.590000px;}
.y4{bottom:994.110000px;}
.y67{bottom:1003.650000px;}
.y18d{bottom:1004.910000px;}
.y121{bottom:1005.090000px;}
.y1bb{bottom:1005.810000px;}
.y91{bottom:1012.830000px;}
.y2f{bottom:1015.710000px;}
.y1ba{bottom:1029.030000px;}
.y120{bottom:1031.550000px;}
.yb2{bottom:1041.990000px;}
.y17{bottom:1045.050000px;}
.y150{bottom:1047.750000px;}
.y1b9{bottom:1052.250000px;}
.y90{bottom:1055.670000px;}
.y2e{bottom:1057.110000px;}
.y18c{bottom:1057.470000px;}
.y11f{bottom:1058.010000px;}
.y3{bottom:1067.010000px;}
.y1b7{bottom:1075.650000px;}
.y18b{bottom:1080.690000px;}
.y11e{bottom:1084.470000px;}
.y16{bottom:1086.450000px;}
.y8f{bottom:1097.070000px;}
.y2d{bottom:1098.510000px;}
.y1b6{bottom:1110.750000px;}
.y11d{bottom:1110.930000px;}
.y1b5{bottom:1134.150000px;}
.y2{bottom:1134.330000px;}
.ye0{bottom:1135.410000px;}
.ya5{bottom:1136.670000px;}
.y11c{bottom:1137.570000px;}
.y8e{bottom:1138.470000px;}
.y15{bottom:1139.910000px;}
.y139{bottom:1142.610000px;}
.h12{height:19.800000px;}
.he{height:20.016000px;}
.h24{height:21.240000px;}
.h17{height:21.276000px;}
.h27{height:22.500000px;}
.h29{height:22.536000px;}
.h2c{height:34.380000px;}
.h2a{height:34.560000px;}
.h2b{height:34.596000px;}
.h16{height:46.195312px;}
.h20{height:51.297891px;}
.h28{height:51.840000px;}
.h2{height:58.651172px;}
.h23{height:58.792500px;}
.hf{height:60.226875px;}
.h15{height:61.189805px;}
.h26{height:61.423863px;}
.h21{height:62.211094px;}
.hc{height:64.546875px;}
.h1e{height:67.824844px;}
.hd{height:70.628906px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.h25{height:73.296000px;}
.hb{height:74.004654px;}
.ha{height:74.953125px;}
.h6{height:82.676953px;}
.h5{height:85.052461px;}
.h7{height:93.983203px;}
.h3{height:96.508125px;}
.h4{height:121.179375px;}
.h19{height:210.060000px;}
.h1b{height:215.640000px;}
.h22{height:230.400000px;}
.h11{height:238.530000px;}
.h1f{height:258.150000px;}
.h10{height:259.230000px;}
.h1d{height:273.630000px;}
.h1a{height:274.035000px;}
.h14{height:276.510000px;}
.h1c{height:305.310000px;}
.h13{height:428.475000px;}
.h18{height:429.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:94.500000px;}
.wc{width:277.410000px;}
.w9{width:308.370000px;}
.w6{width:318.450000px;}
.w5{width:318.495000px;}
.w4{width:318.630000px;}
.w7{width:318.675000px;}
.wd{width:327.420000px;}
.wa{width:329.475000px;}
.wb{width:360.435000px;}
.we{width:541.185000px;}
.w3{width:637.125000px;}
.w8{width:637.845000px;}
.w10{width:662.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:5.220000px;}
.x39{left:7.740000px;}
.x3b{left:34.734000px;}
.x36{left:103.605000px;}
.x32{left:115.845000px;}
.x31{left:118.230000px;}
.xb{left:127.655987px;}
.x34{left:129.495000px;}
.x26{left:131.075987px;}
.x38{left:138.450000px;}
.x4{left:151.589987px;}
.xc{left:154.649987px;}
.x35{left:170.025000px;}
.x29{left:180.569987px;}
.xd{left:181.649987px;}
.x27{left:185.069987px;}
.x30{left:186.630000px;}
.x5{left:190.109987px;}
.x37{left:204.509987px;}
.xe{left:208.649987px;}
.x22{left:220.179000px;}
.x1b{left:225.399000px;}
.x13{left:229.899000px;}
.xf{left:235.649987px;}
.x28{left:237.989987px;}
.x3{left:248.429987px;}
.x16{left:255.999000px;}
.x17{left:268.599000px;}
.x19{left:275.259000px;}
.x33{left:276.869987px;}
.x2f{left:282.060000px;}
.x18{left:285.735000px;}
.x1a{left:287.535000px;}
.x14{left:289.119000px;}
.x15{left:303.555000px;}
.x20{left:306.039000px;}
.x12{left:318.459000px;}
.x7{left:322.634987px;}
.x8{left:327.674987px;}
.x2c{left:343.154987px;}
.x6{left:345.854987px;}
.x25{left:360.794987px;}
.x23{left:373.029000px;}
.x2a{left:384.014987px;}
.x21{left:436.035000px;}
.x10{left:439.094987px;}
.x1{left:442.694987px;}
.x2{left:446.474987px;}
.x3c{left:480.849000px;}
.x24{left:488.085000px;}
.x1c{left:502.269000px;}
.x1d{left:504.429000px;}
.x1e{left:507.489000px;}
.x1f{left:513.249000px;}
.x11{left:529.989000px;}
.x2b{left:560.084987px;}
.x2d{left:580.424987px;}
.xa{left:589.964987px;}
.x2e{left:610.844987px;}
.x3a{left:670.290000px;}
.x9{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.089600pt;}
.ls22{letter-spacing:-0.026240pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003840pt;}
.ls20{letter-spacing:0.054400pt;}
.lsa{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.065067pt;}
.ls26{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.136533pt;}
.ls16{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.284800pt;}
.ls1d{letter-spacing:0.315733pt;}
.ls15{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.704000pt;}
.lsc{letter-spacing:21.248000pt;}
.ls3{letter-spacing:24.453120pt;}
.lsb{letter-spacing:25.088000pt;}
.lsd{letter-spacing:28.288000pt;}
.ls1{letter-spacing:30.208000pt;}
.ls5{letter-spacing:39.808000pt;}
.ls4{letter-spacing:48.768000pt;}
.ls27{letter-spacing:56.912640pt;}
.ls9{letter-spacing:78.208000pt;}
.ls18{letter-spacing:89.600000pt;}
.ls8{letter-spacing:96.128000pt;}
.ls17{letter-spacing:101.760000pt;}
.ls19{letter-spacing:109.371307pt;}
.ls7{letter-spacing:114.048000pt;}
.ls1b{letter-spacing:129.232640pt;}
.ls1c{letter-spacing:133.072640pt;}
.ws3{word-spacing:-64.000000pt;}
.ws19{word-spacing:-53.120000pt;}
.wsa{word-spacing:-21.563733pt;}
.wsc{word-spacing:-21.532800pt;}
.ws10{word-spacing:-21.313067pt;}
.wse{word-spacing:-21.302400pt;}
.ws0{word-spacing:-21.280000pt;}
.wsb{word-spacing:-21.251840pt;}
.wsf{word-spacing:-21.221760pt;}
.wsd{word-spacing:-21.158400pt;}
.ws6{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.312000pt;}
.ws18{word-spacing:-13.280000pt;}
.ws13{word-spacing:-12.960000pt;}
.ws4{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:50.517333pt;}
.ws16{word-spacing:53.130667pt;}
.ws12{word-spacing:53.226667pt;}
._9{margin-left:-3.930880pt;}
._8{margin-left:-2.880000pt;}
._0{margin-left:-1.637120pt;}
._1{width:0.936320pt;}
._12{width:1.839360pt;}
._1a{width:2.737920pt;}
._e{width:3.648000pt;}
._f{width:4.992000pt;}
._c{width:6.400000pt;}
._6{width:8.064000pt;}
._7{width:9.034667pt;}
._1c{width:10.063360pt;}
._a{width:11.200000pt;}
._b{width:12.192000pt;}
._1d{width:13.120000pt;}
._18{width:14.080000pt;}
._1b{width:15.040000pt;}
._4{width:17.722453pt;}
._3{width:18.730667pt;}
._d{width:19.840000pt;}
._13{width:20.800000pt;}
._5{width:21.760000pt;}
._10{width:23.228800pt;}
._11{width:24.252160pt;}
._2{width:25.728000pt;}
._19{width:26.880000pt;}
._14{width:28.416000pt;}
._15{width:29.504000pt;}
._16{width:32.188800pt;}
._17{width:33.121280pt;}
._1e{width:34.688000pt;}
._22{width:36.962347pt;}
._24{width:38.272000pt;}
._25{width:40.082987pt;}
._1f{width:73.226667pt;}
._21{width:89.610667pt;}
._23{width:101.514667pt;}
._20{width:172.800000pt;}
._26{width:175.148587pt;}
._27{width:752.138667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:2.720000pt;}
.y174{bottom:2.880000pt;}
.y19e{bottom:2.906667pt;}
.y194{bottom:2.920000pt;}
.yfd{bottom:3.200000pt;}
.ya9{bottom:3.520000pt;}
.y16e{bottom:4.640000pt;}
.y177{bottom:4.800000pt;}
.yb3{bottom:5.120000pt;}
.ya6{bottom:5.280000pt;}
.ye1{bottom:6.400000pt;}
.y170{bottom:9.440000pt;}
.ye4{bottom:12.960000pt;}
.y14f{bottom:14.946667pt;}
.y15e{bottom:15.040000pt;}
.ye3{bottom:15.680000pt;}
.yc4{bottom:17.760000pt;}
.y1b8{bottom:18.080000pt;}
.y18f{bottom:18.240000pt;}
.y19d{bottom:18.266667pt;}
.y1a9{bottom:18.280000pt;}
.ya8{bottom:18.400000pt;}
.yc3{bottom:19.040000pt;}
.y176{bottom:20.000000pt;}
.y18e{bottom:33.600000pt;}
.y173{bottom:35.360000pt;}
.y1{bottom:49.920000pt;}
.y175{bottom:50.760000pt;}
.y172{bottom:51.720000pt;}
.y15d{bottom:95.360000pt;}
.y14e{bottom:96.253333pt;}
.y161{bottom:100.253333pt;}
.y16b{bottom:100.346667pt;}
.ya4{bottom:100.480000pt;}
.y1e1{bottom:103.680000pt;}
.ydf{bottom:104.000000pt;}
.y2c{bottom:104.160000pt;}
.yc1{bottom:104.320000pt;}
.y56{bottom:110.080000pt;}
.y1b4{bottom:111.200000pt;}
.y108{bottom:112.800000pt;}
.y72{bottom:113.440000pt;}
.y146{bottom:115.360000pt;}
.y1e0{bottom:119.200000pt;}
.yde{bottom:121.760000pt;}
.y11b{bottom:126.080000pt;}
.y66{bottom:127.040000pt;}
.y81{bottom:128.800000pt;}
.y8d{bottom:129.920000pt;}
.y1b3{bottom:131.840000pt;}
.yf1{bottom:136.800000pt;}
.yb1{bottom:138.720000pt;}
.ydd{bottom:139.360000pt;}
.y14{bottom:139.520000pt;}
.y1df{bottom:140.000000pt;}
.y2b{bottom:140.960000pt;}
.yc0{bottom:141.120000pt;}
.y138{bottom:141.920000pt;}
.y16a{bottom:142.400000pt;}
.y55{bottom:146.880000pt;}
.ya3{bottom:147.840000pt;}
.y11a{bottom:149.600000pt;}
.y71{bottom:150.240000pt;}
.y145{bottom:152.160000pt;}
.y1b2{bottom:152.480000pt;}
.ydc{bottom:156.960000pt;}
.yfa{bottom:157.440000pt;}
.y107{bottom:160.160000pt;}
.y1de{bottom:160.640000pt;}
.y50{bottom:160.800000pt;}
.y188{bottom:163.360000pt;}
.y65{bottom:163.840000pt;}
.y80{bottom:165.600000pt;}
.y43{bottom:166.720000pt;}
.y8c{bottom:168.000000pt;}
.y14b{bottom:168.480000pt;}
.y119{bottom:173.120000pt;}
.ydb{bottom:174.560000pt;}
.yb0{bottom:175.360000pt;}
.y15a{bottom:176.186667pt;}
.y13{bottom:176.346667pt;}
.y2a{bottom:177.626667pt;}
.ybf{bottom:177.946667pt;}
.y169{bottom:179.226667pt;}
.y1dd{bottom:181.306667pt;}
.y160{bottom:183.266667pt;}
.y54{bottom:183.706667pt;}
.yf0{bottom:184.186667pt;}
.y15c{bottom:185.253333pt;}
.y14d{bottom:186.626667pt;}
.y144{bottom:188.986667pt;}
.y137{bottom:189.466667pt;}
.yda{bottom:192.186667pt;}
.y1b1{bottom:193.786667pt;}
.ya2{bottom:195.386667pt;}
.y118{bottom:196.666667pt;}
.y106{bottom:196.986667pt;}
.y4f{bottom:197.626667pt;}
.y187{bottom:200.186667pt;}
.y64{bottom:200.666667pt;}
.y1dc{bottom:201.946667pt;}
.y7f{bottom:202.426667pt;}
.y42{bottom:203.546667pt;}
.y8b{bottom:204.826667pt;}
.yf9{bottom:204.986667pt;}
.y14a{bottom:205.306667pt;}
.yd9{bottom:209.946667pt;}
.yaf{bottom:212.186667pt;}
.y12{bottom:213.146667pt;}
.y1b0{bottom:214.586667pt;}
.ybe{bottom:214.746667pt;}
.y29{bottom:215.706667pt;}
.y168{bottom:216.026667pt;}
.y159{bottom:219.546667pt;}
.y117{bottom:220.346667pt;}
.y15f{bottom:220.960000pt;}
.y1db{bottom:222.586667pt;}
.y143{bottom:225.626667pt;}
.y136{bottom:226.266667pt;}
.yd8{bottom:227.546667pt;}
.yef{bottom:231.706667pt;}
.y105{bottom:233.786667pt;}
.y4e{bottom:234.426667pt;}
.y1af{bottom:235.226667pt;}
.y186{bottom:236.986667pt;}
.y63{bottom:237.466667pt;}
.y7e{bottom:239.226667pt;}
.y41{bottom:240.346667pt;}
.yf8{bottom:241.786667pt;}
.y149{bottom:242.106667pt;}
.y8a{bottom:242.906667pt;}
.y1da{bottom:243.226667pt;}
.y53{bottom:245.146667pt;}
.yae{bottom:248.986667pt;}
.y11{bottom:249.946667pt;}
.ybd{bottom:251.546667pt;}
.y28{bottom:252.506667pt;}
.y167{bottom:252.826667pt;}
.y1ae{bottom:255.866667pt;}
.y116{bottom:257.146667pt;}
.y142{bottom:262.426667pt;}
.yd7{bottom:262.746667pt;}
.y135{bottom:263.066667pt;}
.y1d9{bottom:264.026667pt;}
.y104{bottom:264.826667pt;}
.y4d{bottom:271.226667pt;}
.y185{bottom:273.786667pt;}
.y62{bottom:274.266667pt;}
.y7d{bottom:276.026667pt;}
.y1ad{bottom:276.506667pt;}
.y40{bottom:277.146667pt;}
.yf7{bottom:278.586667pt;}
.yee{bottom:279.066667pt;}
.y89{bottom:279.546667pt;}
.yd6{bottom:280.346667pt;}
.y1d8{bottom:284.666667pt;}
.y148{bottom:285.466667pt;}
.yad{bottom:285.786667pt;}
.y10{bottom:286.746667pt;}
.y14c{bottom:286.880000pt;}
.ybc{bottom:288.346667pt;}
.y166{bottom:289.626667pt;}
.ya1{bottom:290.266667pt;}
.y27{bottom:290.586667pt;}
.y52{bottom:292.666667pt;}
.y115{bottom:293.946667pt;}
.y61{bottom:294.106667pt;}
.y103{bottom:294.426667pt;}
.y1ac{bottom:297.146667pt;}
.yd5{bottom:297.946667pt;}
.y141{bottom:299.226667pt;}
.y134{bottom:299.866667pt;}
.y1d7{bottom:305.306667pt;}
.y4c{bottom:308.026667pt;}
.y184{bottom:310.586667pt;}
.y3f{bottom:313.946667pt;}
.yd4{bottom:315.706667pt;}
.y88{bottom:317.626667pt;}
.yac{bottom:322.586667pt;}
.yf{bottom:323.546667pt;}
.y102{bottom:324.826667pt;}
.ybb{bottom:325.146667pt;}
.y1d6{bottom:325.946667pt;}
.yf6{bottom:326.106667pt;}
.y165{bottom:326.426667pt;}
.yed{bottom:326.586667pt;}
.ya0{bottom:327.066667pt;}
.y26{bottom:327.386667pt;}
.y1ab{bottom:328.506667pt;}
.y18a{bottom:329.466667pt;}
.y60{bottom:330.906667pt;}
.yd3{bottom:333.306667pt;}
.y140{bottom:336.026667pt;}
.yab{bottom:337.466667pt;}
.y51{bottom:340.026667pt;}
.y4b{bottom:344.826667pt;}
.y1d5{bottom:346.586667pt;}
.y133{bottom:347.226667pt;}
.y183{bottom:347.386667pt;}
.y1aa{bottom:349.146667pt;}
.y3e{bottom:350.746667pt;}
.yd2{bottom:350.906667pt;}
.y87{bottom:354.266667pt;}
.y101{bottom:355.386667pt;}
.ye{bottom:360.346667pt;}
.yba{bottom:361.946667pt;}
.yec{bottom:363.386667pt;}
.y9f{bottom:363.866667pt;}
.y25{bottom:364.026667pt;}
.y189{bottom:366.266667pt;}
.y1d4{bottom:367.226667pt;}
.y5f{bottom:367.706667pt;}
.yd1{bottom:368.506667pt;}
.y1a8{bottom:369.786667pt;}
.yf5{bottom:373.466667pt;}
.y164{bottom:373.946667pt;}
.y114{bottom:380.346667pt;}
.y4a{bottom:381.626667pt;}
.y13f{bottom:383.546667pt;}
.y182{bottom:384.186667pt;}
.y100{bottom:385.946667pt;}
.yd0{bottom:386.106667pt;}
.y3d{bottom:387.586667pt;}
.y1d3{bottom:388.066667pt;}
.yf4{bottom:388.386667pt;}
.y132{bottom:394.786667pt;}
.y7c{bottom:397.186667pt;}
.yeb{bottom:400.226667pt;}
.y9e{bottom:400.706667pt;}
.y24{bottom:400.866667pt;}
.y1a7{bottom:401.186667pt;}
.y86{bottom:403.106667pt;}
.ycf{bottom:403.906667pt;}
.yd{bottom:404.386667pt;}
.y5e{bottom:404.546667pt;}
.y1d2{bottom:408.706667pt;}
.yb9{bottom:409.346667pt;}
.y163{bottom:410.786667pt;}
.y113{bottom:417.186667pt;}
.y70{bottom:418.466667pt;}
.y181{bottom:421.026667pt;}
.yce{bottom:421.506667pt;}
.y1a6{bottom:421.826667pt;}
.y3c{bottom:424.386667pt;}
.y13e{bottom:427.426667pt;}
.y49{bottom:429.186667pt;}
.y1d1{bottom:429.346667pt;}
.y131{bottom:431.586667pt;}
.yff{bottom:433.506667pt;}
.y7b{bottom:433.986667pt;}
.yea{bottom:437.026667pt;}
.y9d{bottom:437.506667pt;}
.y23{bottom:438.946667pt;}
.ycd{bottom:439.106667pt;}
.y158{bottom:439.266667pt;}
.y85{bottom:439.906667pt;}
.y5d{bottom:441.346667pt;}
.y1a5{bottom:442.626667pt;}
.yb8{bottom:446.146667pt;}
.y162{bottom:447.586667pt;}
.yc{bottom:449.826667pt;}
.y1d0{bottom:449.986667pt;}
.y6f{bottom:455.266667pt;}
.ycc{bottom:456.706667pt;}
.y180{bottom:457.826667pt;}
.y3b{bottom:461.186667pt;}
.y1a4{bottom:463.266667pt;}
.y112{bottom:464.706667pt;}
.y48{bottom:465.986667pt;}
.y130{bottom:468.386667pt;}
.y1cf{bottom:470.626667pt;}
.ye9{bottom:473.826667pt;}
.y9c{bottom:474.306667pt;}
.y22{bottom:475.586667pt;}
.y84{bottom:476.706667pt;}
.y5c{bottom:478.146667pt;}
.yfe{bottom:480.866667pt;}
.y7a{bottom:481.506667pt;}
.yb7{bottom:482.946667pt;}
.y1a3{bottom:483.906667pt;}
.y157{bottom:484.226667pt;}
.y1ce{bottom:491.266667pt;}
.ycb{bottom:491.906667pt;}
.y6e{bottom:492.066667pt;}
.yb{bottom:492.706667pt;}
.y17f{bottom:494.626667pt;}
.yfc{bottom:495.746667pt;}
.y3a{bottom:497.986667pt;}
.y47{bottom:502.786667pt;}
.y1a2{bottom:504.546667pt;}
.y12f{bottom:505.186667pt;}
.yca{bottom:509.666667pt;}
.ye8{bottom:510.626667pt;}
.y9b{bottom:511.106667pt;}
.y1cd{bottom:512.066667pt;}
.y111{bottom:512.226667pt;}
.y21{bottom:513.506667pt;}
.y5b{bottom:514.946667pt;}
.y156{bottom:521.026667pt;}
.y1a1{bottom:525.186667pt;}
.yc9{bottom:527.266667pt;}
.y79{bottom:528.866667pt;}
.yb6{bottom:530.466667pt;}
.y17e{bottom:531.426667pt;}
.y1cc{bottom:532.706667pt;}
.y39{bottom:534.786667pt;}
.ya{bottom:535.586667pt;}
.y46{bottom:539.586667pt;}
.y110{bottom:542.626667pt;}
.yb4{bottom:545.346667pt;}
.ye7{bottom:547.426667pt;}
.y9a{bottom:547.906667pt;}
.yaa{bottom:549.506667pt;}
.y83{bottom:550.146667pt;}
.y20{bottom:551.426667pt;}
.y5a{bottom:551.746667pt;}
.y12e{bottom:552.546667pt;}
.y1cb{bottom:553.346667pt;}
.y1a0{bottom:556.546667pt;}
.y155{bottom:557.826667pt;}
.y17d{bottom:568.226667pt;}
.y38{bottom:571.586667pt;}
.yc8{bottom:572.226667pt;}
.y10f{bottom:573.186667pt;}
.y1ca{bottom:573.986667pt;}
.y78{bottom:576.386667pt;}
.y19f{bottom:577.186667pt;}
.y9{bottom:578.626667pt;}
.yf3{bottom:580.066667pt;}
.y99{bottom:584.706667pt;}
.y45{bottom:586.946667pt;}
.y12d{bottom:587.426667pt;}
.y59{bottom:588.546667pt;}
.y1f{bottom:589.346667pt;}
.y1c9{bottom:593.986667pt;}
.y154{bottom:594.626667pt;}
.ye6{bottom:594.946667pt;}
.y19c{bottom:597.826667pt;}
.y10e{bottom:603.773333pt;}
.y17c{bottom:605.053333pt;}
.y37{bottom:608.413333pt;}
.yc7{bottom:609.053333pt;}
.y12c{bottom:610.973333pt;}
.y77{bottom:613.213333pt;}
.y1c8{bottom:614.653333pt;}
.ye5{bottom:614.973333pt;}
.y98{bottom:621.533333pt;}
.y82{bottom:623.773333pt;}
.y58{bottom:625.373333pt;}
.y1e{bottom:627.293333pt;}
.ye2{bottom:627.453333pt;}
.y19b{bottom:629.213333pt;}
.y153{bottom:631.453333pt;}
.y10d{bottom:634.333333pt;}
.y44{bottom:634.493333pt;}
.y1c7{bottom:635.293333pt;}
.y8{bottom:635.933333pt;}
.yc6{bottom:639.613333pt;}
.y17b{bottom:641.853333pt;}
.y36{bottom:645.213333pt;}
.y19a{bottom:649.853333pt;}
.y76{bottom:650.013333pt;}
.y1c6{bottom:656.093333pt;}
.y12b{bottom:658.013333pt;}
.y97{bottom:658.333333pt;}
.y147{bottom:660.573333pt;}
.y57{bottom:662.173333pt;}
.yc5{bottom:667.773333pt;}
.y152{bottom:668.253333pt;}
.y13d{bottom:669.213333pt;}
.y6d{bottom:671.293333pt;}
.y1d{bottom:676.093333pt;}
.y1c5{bottom:676.733333pt;}
.yc2{bottom:680.413333pt;}
.y199{bottom:681.213333pt;}
.y12a{bottom:681.533333pt;}
.y10c{bottom:681.693333pt;}
.y35{bottom:682.013333pt;}
.y7{bottom:684.893333pt;}
.y75{bottom:686.813333pt;}
.y17a{bottom:689.373333pt;}
.y96{bottom:695.133333pt;}
.y1c4{bottom:697.373333pt;}
.y129{bottom:705.053333pt;}
.y6c{bottom:708.093333pt;}
.y151{bottom:711.613333pt;}
.y1c{bottom:712.893333pt;}
.y15b{bottom:712.960000pt;}
.y13c{bottom:714.333333pt;}
.y1c3{bottom:718.013333pt;}
.y10b{bottom:718.493333pt;}
.y34{bottom:718.813333pt;}
.y74{bottom:723.613333pt;}
.y198{bottom:727.933333pt;}
.y128{bottom:728.573333pt;}
.y179{bottom:736.733333pt;}
.y1c2{bottom:738.653333pt;}
.yfb{bottom:738.973333pt;}
.y95{bottom:742.653333pt;}
.y6{bottom:744.733333pt;}
.y6b{bottom:744.893333pt;}
.y197{bottom:748.573333pt;}
.y1b{bottom:749.693333pt;}
.y13b{bottom:751.133333pt;}
.y127{bottom:752.253333pt;}
.y178{bottom:752.413333pt;}
.y33{bottom:755.613333pt;}
.y1c1{bottom:759.293333pt;}
.y73{bottom:760.413333pt;}
.y10a{bottom:766.013333pt;}
.y196{bottom:769.213333pt;}
.y171{bottom:771.933333pt;}
.y126{bottom:775.773333pt;}
.y94{bottom:779.453333pt;}
.ya7{bottom:779.933333pt;}
.y109{bottom:780.893333pt;}
.y6a{bottom:781.693333pt;}
.y195{bottom:789.853333pt;}
.y1c0{bottom:790.653333pt;}
.y32{bottom:792.413333pt;}
.y13a{bottom:794.973333pt;}
.y1a{bottom:797.213333pt;}
.y125{bottom:799.293333pt;}
.y193{bottom:810.493333pt;}
.y1bf{bottom:811.333333pt;}
.y5{bottom:811.653333pt;}
.y93{bottom:816.293333pt;}
.y69{bottom:818.533333pt;}
.y124{bottom:822.853333pt;}
.yf2{bottom:823.653333pt;}
.y31{bottom:829.253333pt;}
.y192{bottom:831.333333pt;}
.y1be{bottom:832.133333pt;}
.y19{bottom:834.053333pt;}
.y16f{bottom:837.733333pt;}
.y123{bottom:846.373333pt;}
.y191{bottom:851.973333pt;}
.y1bd{bottom:852.773333pt;}
.y92{bottom:853.093333pt;}
.y68{bottom:855.333333pt;}
.y16d{bottom:857.253333pt;}
.y30{bottom:866.053333pt;}
.y122{bottom:869.893333pt;}
.y190{bottom:872.613333pt;}
.y1bc{bottom:873.413333pt;}
.y16c{bottom:876.773333pt;}
.y18{bottom:881.413333pt;}
.y4{bottom:883.653333pt;}
.y67{bottom:892.133333pt;}
.y18d{bottom:893.253333pt;}
.y121{bottom:893.413333pt;}
.y1bb{bottom:894.053333pt;}
.y91{bottom:900.293333pt;}
.y2f{bottom:902.853333pt;}
.y1ba{bottom:914.693333pt;}
.y120{bottom:916.933333pt;}
.yb2{bottom:926.213333pt;}
.y17{bottom:928.933333pt;}
.y150{bottom:931.333333pt;}
.y1b9{bottom:935.333333pt;}
.y90{bottom:938.373333pt;}
.y2e{bottom:939.653333pt;}
.y18c{bottom:939.973333pt;}
.y11f{bottom:940.453333pt;}
.y3{bottom:948.453333pt;}
.y1b7{bottom:956.133333pt;}
.y18b{bottom:960.613333pt;}
.y11e{bottom:963.973333pt;}
.y16{bottom:965.733333pt;}
.y8f{bottom:975.173333pt;}
.y2d{bottom:976.453333pt;}
.y1b6{bottom:987.333333pt;}
.y11d{bottom:987.493333pt;}
.y1b5{bottom:1008.133333pt;}
.y2{bottom:1008.293333pt;}
.ye0{bottom:1009.253333pt;}
.ya5{bottom:1010.373333pt;}
.y11c{bottom:1011.173333pt;}
.y8e{bottom:1011.973333pt;}
.y15{bottom:1013.253333pt;}
.y139{bottom:1015.653333pt;}
.h12{height:17.600000pt;}
.he{height:17.792000pt;}
.h24{height:18.880000pt;}
.h17{height:18.912000pt;}
.h27{height:20.000000pt;}
.h29{height:20.032000pt;}
.h2c{height:30.560000pt;}
.h2a{height:30.720000pt;}
.h2b{height:30.752000pt;}
.h16{height:41.062500pt;}
.h20{height:45.598125pt;}
.h28{height:46.080000pt;}
.h2{height:52.134375pt;}
.h23{height:52.260000pt;}
.hf{height:53.535000pt;}
.h15{height:54.390938pt;}
.h26{height:54.598989pt;}
.h21{height:55.298750pt;}
.hc{height:57.375000pt;}
.h1e{height:60.288750pt;}
.hd{height:62.781250pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.h25{height:65.152000pt;}
.hb{height:65.781915pt;}
.ha{height:66.625000pt;}
.h6{height:73.490625pt;}
.h5{height:75.602187pt;}
.h7{height:83.540625pt;}
.h3{height:85.785000pt;}
.h4{height:107.715000pt;}
.h19{height:186.720000pt;}
.h1b{height:191.680000pt;}
.h22{height:204.800000pt;}
.h11{height:212.026667pt;}
.h1f{height:229.466667pt;}
.h10{height:230.426667pt;}
.h1d{height:243.226667pt;}
.h1a{height:243.586667pt;}
.h14{height:245.786667pt;}
.h1c{height:271.386667pt;}
.h13{height:380.866667pt;}
.h18{height:381.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:84.000000pt;}
.wc{width:246.586667pt;}
.w9{width:274.106667pt;}
.w6{width:283.066667pt;}
.w5{width:283.106667pt;}
.w4{width:283.226667pt;}
.w7{width:283.266667pt;}
.wd{width:291.040000pt;}
.wa{width:292.866667pt;}
.wb{width:320.386667pt;}
.we{width:481.053333pt;}
.w3{width:566.333333pt;}
.w8{width:566.973333pt;}
.w10{width:589.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:4.640000pt;}
.x39{left:6.880000pt;}
.x3b{left:30.874667pt;}
.x36{left:92.093333pt;}
.x32{left:102.973333pt;}
.x31{left:105.093333pt;}
.xb{left:113.471988pt;}
.x34{left:115.106667pt;}
.x26{left:116.511988pt;}
.x38{left:123.066667pt;}
.x4{left:134.746655pt;}
.xc{left:137.466655pt;}
.x35{left:151.133333pt;}
.x29{left:160.506655pt;}
.xd{left:161.466655pt;}
.x27{left:164.506655pt;}
.x30{left:165.893333pt;}
.x5{left:168.986655pt;}
.x37{left:181.786655pt;}
.xe{left:185.466655pt;}
.x22{left:195.714667pt;}
.x1b{left:200.354667pt;}
.x13{left:204.354667pt;}
.xf{left:209.466655pt;}
.x28{left:211.546655pt;}
.x3{left:220.826655pt;}
.x16{left:227.554667pt;}
.x17{left:238.754667pt;}
.x19{left:244.674667pt;}
.x33{left:246.106655pt;}
.x2f{left:250.720000pt;}
.x18{left:253.986667pt;}
.x1a{left:255.586667pt;}
.x14{left:256.994667pt;}
.x15{left:269.826667pt;}
.x20{left:272.034667pt;}
.x12{left:283.074667pt;}
.x7{left:286.786655pt;}
.x8{left:291.266655pt;}
.x2c{left:305.026655pt;}
.x6{left:307.426655pt;}
.x25{left:320.706655pt;}
.x23{left:331.581333pt;}
.x2a{left:341.346655pt;}
.x21{left:387.586667pt;}
.x10{left:390.306655pt;}
.x1{left:393.506655pt;}
.x2{left:396.866655pt;}
.x3c{left:427.421333pt;}
.x24{left:433.853333pt;}
.x1c{left:446.461333pt;}
.x1d{left:448.381333pt;}
.x1e{left:451.101333pt;}
.x1f{left:456.221333pt;}
.x11{left:471.101333pt;}
.x2b{left:497.853322pt;}
.x2d{left:515.933322pt;}
.xa{left:524.413322pt;}
.x2e{left:542.973322pt;}
.x3a{left:595.813333pt;}
.x9{left:680.453322pt;}
}




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