
    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_d8504def383d86c0bb6759b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.048828;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_05fcc34b3fda2121ad99baf8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.808838;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_23a285127873e9f77220b388.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.021973;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_4d0778de55dacfd274410f95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.782227;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_5d9e461ea5d16902b5ad7dd7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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_eabcbb5e8c6be782ec707bf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.808838;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_5993a1a18895e3f26d6dcf16.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.782227;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_35ed1608a8e03a2bb63a0d94.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_3356e196cded8c82aa18200d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.792236;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_749e6fdd92f2a69fc79b64e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.785156;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_62a01c2251e537866661596e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.979492;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_e3d0fab9a13126e51d42ed0b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.048828;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_7efdf5cd559d955d3e85574b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021973;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_7444ec783e97c17a9e5ee2f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.765625;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_93ce458c7286cf31d39067ba.woff2')format("woff");}.fff{font-family:fff;line-height:0.808838;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_f7ed28dbe45a66ebf2f4b4e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936035;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_8180dac287680581c6d7cda4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.750000;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;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-ms-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-webkit-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-18.000000px;}
.ls13{letter-spacing:-3.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.950000px;}
.ls5{letter-spacing:3.000000px;}
.ls15{letter-spacing:3.480000px;}
.ls1{letter-spacing:3.840000px;}
.ls3{letter-spacing:5.280000px;}
.ls14{letter-spacing:5.766000px;}
.lsb{letter-spacing:6.000000px;}
.ls17{letter-spacing:6.240000px;}
.ls2{letter-spacing:6.480000px;}
.lsd{letter-spacing:6.840000px;}
.lsc{letter-spacing:6.966000px;}
.ls1b{letter-spacing:7.320000px;}
.ls4{letter-spacing:7.483200px;}
.ls7{letter-spacing:8.040000px;}
.ls6{letter-spacing:8.184000px;}
.lse{letter-spacing:8.280000px;}
.ls1a{letter-spacing:8.520000px;}
.ls1e{letter-spacing:8.715000px;}
.ls0{letter-spacing:8.766000px;}
.ls12{letter-spacing:9.000000px;}
.ls16{letter-spacing:9.283200px;}
.ls11{letter-spacing:9.984000px;}
.ls1d{letter-spacing:10.395000px;}
.ls20{letter-spacing:10.515000px;}
.lsa{letter-spacing:12.000000px;}
.ls19{letter-spacing:16.500000px;}
.lsf{letter-spacing:17.683200px;}
.ls9{letter-spacing:24.000000px;}
.ls1c{letter-spacing:55.281000px;}
.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;}
}
.wsa{word-spacing:-57.450000px;}
.ws14{word-spacing:-42.240000px;}
.ws13{word-spacing:-42.102774px;}
.wsd{word-spacing:-30.720000px;}
.wsb{word-spacing:-30.240000px;}
.ws9{word-spacing:-23.850000px;}
.ws0{word-spacing:-22.704000px;}
.wse{word-spacing:-18.315000px;}
.ws1{word-spacing:-14.850000px;}
.ws21{word-spacing:-12.510000px;}
.ws22{word-spacing:-12.375000px;}
.ws1d{word-spacing:-12.291000px;}
.ws18{word-spacing:-11.424000px;}
.ws5{word-spacing:-10.920000px;}
.ws20{word-spacing:-10.350000px;}
.ws3{word-spacing:-9.336000px;}
.ws7{word-spacing:-8.910000px;}
.ws1f{word-spacing:-8.820000px;}
.ws15{word-spacing:-8.592000px;}
.ws1e{word-spacing:-6.750000px;}
.ws1a{word-spacing:-5.018400px;}
.ws19{word-spacing:-4.855200px;}
.ws17{word-spacing:-4.651200px;}
.ws4{word-spacing:-4.574400px;}
.ws10{word-spacing:-4.536000px;}
.ws12{word-spacing:-3.998400px;}
.ws6{word-spacing:-3.960000px;}
.ws2{word-spacing:-3.691200px;}
.ws1c{word-spacing:-3.420000px;}
.wsf{word-spacing:-3.150000px;}
.ws11{word-spacing:-2.323200px;}
.wsc{word-spacing:-0.270000px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:0.676652px;}
.ws1b{word-spacing:2.690400px;}
._16{margin-left:-30.132000px;}
._2b{margin-left:-28.557000px;}
._21{margin-left:-26.982000px;}
._17{margin-left:-19.332000px;}
._2d{margin-left:-17.730000px;}
._18{margin-left:-16.446000px;}
._2c{margin-left:-15.030000px;}
._2e{margin-left:-13.590000px;}
._1a{margin-left:-12.204000px;}
._19{margin-left:-10.800000px;}
._a{margin-left:-9.600000px;}
._7{margin-left:-8.358000px;}
._8{margin-left:-6.882000px;}
._5{margin-left:-5.304000px;}
._4{margin-left:-3.672000px;}
._3{margin-left:-2.040000px;}
._25{margin-left:-1.008000px;}
._0{width:1.548000px;}
._f{width:2.664000px;}
._1{width:3.672000px;}
._d{width:5.106000px;}
._11{width:6.132000px;}
._e{width:7.314000px;}
._b{width:8.763000px;}
._c{width:10.005000px;}
._26{width:11.109000px;}
._6{width:12.114000px;}
._1f{width:13.407000px;}
._22{width:15.594000px;}
._14{width:17.556000px;}
._10{width:19.224000px;}
._29{width:20.319000px;}
._2{width:21.810000px;}
._20{width:23.022000px;}
._2a{width:24.720000px;}
._28{width:26.418000px;}
._15{width:28.386000px;}
._1e{width:29.919000px;}
._12{width:32.496000px;}
._13{width:40.623000px;}
._27{width:45.936000px;}
._24{width:49.575000px;}
._23{width:51.765000px;}
._9{width:64.998000px;}
._1d{width:69.300000px;}
._2f{width:73.440000px;}
._1c{width:109.200000px;}
._1b{width:150.990000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.400000px;}
.fs16{font-size:40.800000px;}
.fsc{font-size:45.000000px;}
.fs15{font-size:45.110115px;}
.fs17{font-size:45.600000px;}
.fsa{font-size:48.000000px;}
.fs13{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fs10{font-size:75.000000px;}
.fs12{font-size:84.205549px;}
.fs8{font-size:90.000000px;}
.fs14{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs11{font-size:111.000000px;}
.fse{font-size:117.000000px;}
.fs0{font-size:129.000000px;}
.fsf{font-size:168.000000px;}
.fs3{font-size:207.000000px;}
.fs7{font-size:210.000000px;}
.fsd{font-size:330.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:54.330000px;}
.y140{bottom:91.530000px;}
.y27{bottom:100.830000px;}
.y13{bottom:101.580000px;}
.y164{bottom:102.330000px;}
.y1b1{bottom:102.930000px;}
.yfa{bottom:103.230000px;}
.y11f{bottom:104.430000px;}
.y187{bottom:105.180000px;}
.y69{bottom:105.930000px;}
.y1a0{bottom:106.230000px;}
.y47{bottom:107.730000px;}
.y13f{bottom:109.080000px;}
.yd4{bottom:109.530000px;}
.y90{bottom:110.130000px;}
.yb3{bottom:110.580000px;}
.y26{bottom:114.480000px;}
.y163{bottom:120.330000px;}
.yf9{bottom:120.930000px;}
.y11e{bottom:121.380000px;}
.y186{bottom:123.030000px;}
.y68{bottom:123.480000px;}
.y19f{bottom:124.230000px;}
.y46{bottom:125.280000px;}
.yd3{bottom:126.630000px;}
.y25{bottom:127.080000px;}
.y8f{bottom:127.830000px;}
.yb2{bottom:128.130000px;}
.y162{bottom:137.580000px;}
.yf8{bottom:138.630000px;}
.y11d{bottom:139.680000px;}
.y185{bottom:140.730000px;}
.y24{bottom:141.480000px;}
.y45{bottom:143.280000px;}
.yd2{bottom:144.330000px;}
.y8e{bottom:145.080000px;}
.y1c2{bottom:148.680000px;}
.y161{bottom:155.130000px;}
.y1b0{bottom:156.180000px;}
.yf7{bottom:156.330000px;}
.y67{bottom:156.630000px;}
.y11c{bottom:158.430000px;}
.y44{bottom:160.530000px;}
.yd1{bottom:162.030000px;}
.y8d{bottom:162.330000px;}
.y12{bottom:163.830000px;}
.yb1{bottom:167.430000px;}
.yf6{bottom:173.880000px;}
.y11b{bottom:174.930000px;}
.y13e{bottom:176.130000px;}
.y66{bottom:176.730000px;}
.y11{bottom:177.180000px;}
.y43{bottom:177.930000px;}
.yd0{bottom:179.280000px;}
.y8c{bottom:180.330000px;}
.y10{bottom:190.080000px;}
.yf5{bottom:191.430000px;}
.y1af{bottom:191.580000px;}
.y11a{bottom:192.330000px;}
.y184{bottom:193.680000px;}
.y65{bottom:194.430000px;}
.y42{bottom:195.930000px;}
.ycf{bottom:196.980000px;}
.y8b{bottom:198.030000px;}
.yb0{bottom:202.380000px;}
.yf{bottom:204.180000px;}
.y1ae{bottom:208.830000px;}
.yf4{bottom:209.130000px;}
.y119{bottom:210.030000px;}
.y160{bottom:210.630000px;}
.y183{bottom:211.680000px;}
.y64{bottom:212.130000px;}
.y41{bottom:213.180000px;}
.yce{bottom:214.230000px;}
.y8a{bottom:215.730000px;}
.y13d{bottom:218.580000px;}
.yaf{bottom:219.630000px;}
.yf3{bottom:226.830000px;}
.y118{bottom:227.580000px;}
.y182{bottom:229.380000px;}
.y63{bottom:229.680000px;}
.y40{bottom:230.730000px;}
.ycd{bottom:231.480000px;}
.y23{bottom:231.930000px;}
.y89{bottom:232.980000px;}
.y13c{bottom:236.880000px;}
.yae{bottom:237.330000px;}
.yf2{bottom:244.080000px;}
.y1ad{bottom:244.530000px;}
.y117{bottom:245.130000px;}
.y181{bottom:246.930000px;}
.y62{bottom:247.680000px;}
.y3f{bottom:248.430000px;}
.ycc{bottom:249.180000px;}
.y88{bottom:250.530000px;}
.y13b{bottom:254.130000px;}
.yad{bottom:254.580000px;}
.y15f{bottom:257.730000px;}
.yf1{bottom:261.780000px;}
.y1ac{bottom:262.080000px;}
.y116{bottom:262.830000px;}
.y19e{bottom:264.630000px;}
.y180{bottom:264.930000px;}
.y61{bottom:265.380000px;}
.y3e{bottom:266.130000px;}
.ycb{bottom:266.430000px;}
.y87{bottom:267.930000px;}
.y13a{bottom:271.830000px;}
.yac{bottom:272.580000px;}
.y15e{bottom:277.230000px;}
.yf0{bottom:279.330000px;}
.y1ab{bottom:279.780000px;}
.y115{bottom:280.080000px;}
.y17f{bottom:282.330000px;}
.y60{bottom:282.630000px;}
.y3d{bottom:283.380000px;}
.yca{bottom:284.130000px;}
.y86{bottom:285.180000px;}
.y139{bottom:289.530000px;}
.yab{bottom:289.830000px;}
.y15d{bottom:294.480000px;}
.yef{bottom:297.030000px;}
.y1aa{bottom:297.330000px;}
.y114{bottom:297.780000px;}
.y17e{bottom:299.880000px;}
.y5f{bottom:300.630000px;}
.y3c{bottom:300.930000px;}
.yc9{bottom:301.380000px;}
.y85{bottom:303.180000px;}
.yaa{bottom:307.080000px;}
.y15c{bottom:312.180000px;}
.yee{bottom:315.030000px;}
.y113{bottom:316.530000px;}
.y17d{bottom:317.130000px;}
.y5e{bottom:318.330000px;}
.y3b{bottom:318.630000px;}
.yc8{bottom:319.380000px;}
.y84{bottom:321.180000px;}
.ya9{bottom:324.780000px;}
.y138{bottom:325.080000px;}
.y15b{bottom:329.730000px;}
.yed{bottom:332.280000px;}
.y1a9{bottom:332.730000px;}
.y112{bottom:333.030000px;}
.y19d{bottom:334.530000px;}
.y17c{bottom:335.130000px;}
.y5d{bottom:336.030000px;}
.y3a{bottom:336.330000px;}
.yc7{bottom:336.930000px;}
.y83{bottom:338.430000px;}
.ya8{bottom:342.330000px;}
.y137{bottom:342.780000px;}
.y15a{bottom:347.730000px;}
.ye{bottom:349.230000px;}
.y2d{bottom:349.530000px;}
.yec{bottom:350.280000px;}
.y111{bottom:350.730000px;}
.y19c{bottom:352.380000px;}
.y17b{bottom:352.530000px;}
.y39{bottom:353.580000px;}
.yc6{bottom:354.180000px;}
.y82{bottom:356.130000px;}
.ya7{bottom:360.330000px;}
.y136{bottom:360.780000px;}
.y159{bottom:365.130000px;}
.yeb{bottom:367.530000px;}
.y110{bottom:368.280000px;}
.y19b{bottom:370.080000px;}
.y17a{bottom:370.530000px;}
.y5c{bottom:371.130000px;}
.y38{bottom:371.580000px;}
.yc5{bottom:371.880000px;}
.y81{bottom:373.680000px;}
.yd{bottom:374.730000px;}
.ya6{bottom:378.030000px;}
.y135{bottom:378.330000px;}
.y158{bottom:382.680000px;}
.yea{bottom:385.530000px;}
.y1a8{bottom:385.980000px;}
.y10f{bottom:387.030000px;}
.y19a{bottom:387.780000px;}
.y179{bottom:388.080000px;}
.y5b{bottom:388.530000px;}
.y37{bottom:388.830000px;}
.yc4{bottom:389.580000px;}
.y80{bottom:391.380000px;}
.yc{bottom:392.730000px;}
.ya5{bottom:395.730000px;}
.y134{bottom:396.030000px;}
.y21{bottom:396.780000px;}
.y157{bottom:399.930000px;}
.ye9{bottom:403.230000px;}
.y10e{bottom:403.530000px;}
.y199{bottom:405.030000px;}
.y178{bottom:405.330000px;}
.y1c1{bottom:405.630000px;}
.y5a{bottom:406.080000px;}
.y36{bottom:406.530000px;}
.yc3{bottom:406.830000px;}
.y7f{bottom:408.930000px;}
.ya4{bottom:412.980000px;}
.y133{bottom:414.030000px;}
.y156{bottom:416.880000px;}
.ye8{bottom:420.930000px;}
.y10d{bottom:421.230000px;}
.y198{bottom:422.730000px;}
.y177{bottom:423.030000px;}
.y1c0{bottom:423.330000px;}
.y59{bottom:423.780000px;}
.y35{bottom:424.080000px;}
.yc2{bottom:424.530000px;}
.yb{bottom:426.330000px;}
.y7e{bottom:426.630000px;}
.y20{bottom:428.430000px;}
.y2c{bottom:428.730000px;}
.ya3{bottom:430.530000px;}
.y132{bottom:431.730000px;}
.y155{bottom:435.480000px;}
.ye7{bottom:438.480000px;}
.y1a7{bottom:438.930000px;}
.y10c{bottom:439.230000px;}
.y197{bottom:440.280000px;}
.y176{bottom:440.730000px;}
.y1bf{bottom:441.030000px;}
.y34{bottom:441.330000px;}
.yc1{bottom:441.630000px;}
.y58{bottom:441.780000px;}
.ya{bottom:443.880000px;}
.y7d{bottom:444.330000px;}
.ya2{bottom:447.930000px;}
.y1f{bottom:448.980000px;}
.y131{bottom:449.280000px;}
.y154{bottom:453.180000px;}
.ye6{bottom:456.480000px;}
.y196{bottom:457.530000px;}
.y175{bottom:458.280000px;}
.y33{bottom:459.030000px;}
.yc0{bottom:459.330000px;}
.y9{bottom:461.580000px;}
.y7c{bottom:461.880000px;}
.ya1{bottom:465.480000px;}
.y130{bottom:466.230000px;}
.y153{bottom:470.880000px;}
.ye5{bottom:473.730000px;}
.y10b{bottom:474.180000px;}
.y1e{bottom:474.480000px;}
.y195{bottom:475.230000px;}
.y174{bottom:475.530000px;}
.y1be{bottom:475.980000px;}
.y32{bottom:476.730000px;}
.ybf{bottom:477.030000px;}
.y8{bottom:479.130000px;}
.ya0{bottom:483.480000px;}
.y12f{bottom:484.980000px;}
.y152{bottom:488.580000px;}
.y1a6{bottom:490.680000px;}
.ye4{bottom:491.730000px;}
.y194{bottom:492.930000px;}
.y173{bottom:493.230000px;}
.y31{bottom:493.980000px;}
.ybe{bottom:494.280000px;}
.y57{bottom:494.730000px;}
.y7b{bottom:496.830000px;}
.y7{bottom:500.430000px;}
.y1d{bottom:501.480000px;}
.y12e{bottom:502.530000px;}
.y151{bottom:505.830000px;}
.ye3{bottom:509.430000px;}
.y172{bottom:510.480000px;}
.y1bd{bottom:510.930000px;}
.y30{bottom:511.530000px;}
.y56{bottom:511.980000px;}
.y7a{bottom:514.530000px;}
.y9f{bottom:518.430000px;}
.y12d{bottom:520.530000px;}
.y150{bottom:523.830000px;}
.y2b{bottom:525.630000px;}
.y1c{bottom:525.930000px;}
.ye2{bottom:527.130000px;}
.y193{bottom:527.730000px;}
.y171{bottom:528.180000px;}
.y1bc{bottom:528.930000px;}
.y2f{bottom:529.230000px;}
.y55{bottom:529.530000px;}
.y79{bottom:532.080000px;}
.y9e{bottom:536.130000px;}
.y6{bottom:536.730000px;}
.y12c{bottom:538.230000px;}
.y14f{bottom:541.830000px;}
.y10a{bottom:544.380000px;}
.ye1{bottom:544.680000px;}
.y1a5{bottom:545.130000px;}
.y192{bottom:545.430000px;}
.y170{bottom:545.730000px;}
.y1bb{bottom:546.180000px;}
.ybd{bottom:546.480000px;}
.y54{bottom:547.230000px;}
.y78{bottom:549.330000px;}
.y9d{bottom:554.130000px;}
.y5{bottom:555.930000px;}
.y14e{bottom:559.080000px;}
.y109{bottom:561.930000px;}
.ye0{bottom:562.380000px;}
.y191{bottom:563.130000px;}
.y16f{bottom:563.430000px;}
.y1ba{bottom:563.730000px;}
.ybc{bottom:564.180000px;}
.y1b{bottom:564.930000px;}
.y2a{bottom:565.230000px;}
.y77{bottom:566.730000px;}
.y9c{bottom:571.380000px;}
.y12b{bottom:573.480000px;}
.y14d{bottom:576.780000px;}
.y108{bottom:579.630000px;}
.ydf{bottom:579.930000px;}
.y190{bottom:580.380000px;}
.y16e{bottom:581.130000px;}
.ybb{bottom:581.430000px;}
.y76{bottom:584.430000px;}
.y1a{bottom:587.580000px;}
.y9b{bottom:588.930000px;}
.y12a{bottom:591.480000px;}
.y4{bottom:593.280000px;}
.y14c{bottom:594.330000px;}
.y52{bottom:595.530000px;}
.y107{bottom:596.880000px;}
.y1a4{bottom:597.330000px;}
.yde{bottom:597.930000px;}
.y16d{bottom:598.680000px;}
.yba{bottom:599.430000px;}
.y75{bottom:601.980000px;}
.y9a{bottom:606.630000px;}
.y129{bottom:608.730000px;}
.y14b{bottom:612.330000px;}
.y106{bottom:614.580000px;}
.y1a3{bottom:615.330000px;}
.ydd{bottom:615.630000px;}
.y16c{bottom:616.380000px;}
.y51{bottom:616.680000px;}
.y1b9{bottom:616.830000px;}
.yb9{bottom:617.130000px;}
.y74{bottom:619.530000px;}
.y99{bottom:624.330000px;}
.y2e{bottom:626.430000px;}
.y14a{bottom:630.030000px;}
.y105{bottom:632.130000px;}
.y22{bottom:632.580000px;}
.ydc{bottom:632.880000px;}
.y18f{bottom:633.030000px;}
.y16b{bottom:633.930000px;}
.y50{bottom:634.080000px;}
.y1b8{bottom:634.380000px;}
.yb8{bottom:634.680000px;}
.y73{bottom:637.230000px;}
.y18{bottom:640.080000px;}
.y19{bottom:641.130000px;}
.y98{bottom:641.580000px;}
.y128{bottom:644.130000px;}
.y149{bottom:646.980000px;}
.y3{bottom:647.730000px;}
.y104{bottom:649.830000px;}
.ydb{bottom:650.580000px;}
.y4f{bottom:651.630000px;}
.yb7{bottom:651.930000px;}
.y72{bottom:654.480000px;}
.y97{bottom:658.830000px;}
.y127{bottom:662.130000px;}
.y148{bottom:664.980000px;}
.y2{bottom:666.330000px;}
.y103{bottom:667.080000px;}
.y18e{bottom:668.130000px;}
.yda{bottom:668.580000px;}
.y4e{bottom:669.180000px;}
.y1b7{bottom:669.330000px;}
.yb6{bottom:669.630000px;}
.y71{bottom:672.030000px;}
.y96{bottom:676.830000px;}
.y126{bottom:679.680000px;}
.y147{bottom:682.530000px;}
.y102{bottom:685.080000px;}
.y18d{bottom:685.530000px;}
.y1a2{bottom:685.830000px;}
.yd9{bottom:686.130000px;}
.y4d{bottom:686.880000px;}
.y17{bottom:687.330000px;}
.y70{bottom:689.730000px;}
.y95{bottom:694.080000px;}
.y125{bottom:697.380000px;}
.y1{bottom:699.180000px;}
.y146{bottom:700.230000px;}
.y101{bottom:702.330000px;}
.y1a1{bottom:703.080000px;}
.y18c{bottom:703.530000px;}
.yd8{bottom:703.830000px;}
.y4c{bottom:704.580000px;}
.y16a{bottom:704.880000px;}
.y1b6{bottom:705.330000px;}
.y6f{bottom:707.430000px;}
.y16{bottom:708.930000px;}
.y94{bottom:712.080000px;}
.y124{bottom:715.380000px;}
.y145{bottom:717.930000px;}
.y100{bottom:720.030000px;}
.y18b{bottom:721.080000px;}
.yd7{bottom:721.530000px;}
.y4b{bottom:722.130000px;}
.y169{bottom:722.880000px;}
.y6e{bottom:725.130000px;}
.y93{bottom:729.330000px;}
.y123{bottom:732.930000px;}
.y144{bottom:735.480000px;}
.yff{bottom:737.730000px;}
.y18a{bottom:738.780000px;}
.yd6{bottom:739.080000px;}
.yb5{bottom:739.530000px;}
.y4a{bottom:739.830000px;}
.y168{bottom:740.130000px;}
.y1b5{bottom:740.430000px;}
.y6d{bottom:742.680000px;}
.y15{bottom:744.480000px;}
.y122{bottom:750.630000px;}
.y143{bottom:753.480000px;}
.yfe{bottom:754.980000px;}
.y189{bottom:756.330000px;}
.y49{bottom:757.080000px;}
.y167{bottom:757.830000px;}
.y1b4{bottom:758.130000px;}
.y6c{bottom:760.380000px;}
.y92{bottom:765.780000px;}
.y121{bottom:768.330000px;}
.y142{bottom:771.180000px;}
.yfd{bottom:772.530000px;}
.y188{bottom:774.030000px;}
.yd5{bottom:774.330000px;}
.y48{bottom:775.080000px;}
.y166{bottom:775.530000px;}
.y1b3{bottom:775.830000px;}
.y6b{bottom:777.930000px;}
.y120{bottom:792.030000px;}
.y141{bottom:794.880000px;}
.yfc{bottom:797.730000px;}
.yfb{bottom:798.180000px;}
.y53{bottom:798.480000px;}
.yb4{bottom:798.930000px;}
.y165{bottom:799.230000px;}
.y1b2{bottom:800.280000px;}
.y6a{bottom:800.730000px;}
.y91{bottom:801.330000px;}
.y14{bottom:849.930000px;}
.y29{bottom:850.380000px;}
.hb{height:31.992188px;}
.h3{height:37.990723px;}
.h18{height:38.250000px;}
.h15{height:42.753288px;}
.hd{height:43.439941px;}
.h9{height:43.989258px;}
.h16{height:48.335449px;}
.h17{height:49.231934px;}
.h6{height:49.253906px;}
.h19{height:49.987793px;}
.ha{height:54.021973px;}
.hc{height:55.023926px;}
.h10{height:55.517578px;}
.h8{height:59.985352px;}
.h12{height:64.798801px;}
.h13{height:65.395020px;}
.h11{height:73.981934px;}
.h14{height:74.062500px;}
.hf{height:77.980957px;}
.h2{height:96.670898px;}
.h5{height:104.255859px;}
.h1{height:122.260254px;}
.h7{height:139.965820px;}
.h4{height:196.185059px;}
.he{height:219.946289px;}
.h0{height:882.750000px;}
.w7{width:553.350000px;}
.w8{width:553.500000px;}
.w5{width:563.025000px;}
.w6{width:563.250000px;}
.w4{width:565.500000px;}
.w3{width:565.575000px;}
.w2{width:575.250000px;}
.w0{width:587.175000px;}
.w1{width:587.250000px;}
.x0{left:0.000000px;}
.x50{left:49.050000px;}
.x54{left:58.050000px;}
.x4f{left:59.400000px;}
.x4d{left:60.450000px;}
.x4e{left:61.650000px;}
.x5d{left:62.700000px;}
.x5f{left:64.050000px;}
.x32{left:65.850000px;}
.x42{left:67.650000px;}
.x33{left:68.850000px;}
.x27{left:70.200000px;}
.x31{left:71.250000px;}
.x30{left:72.450000px;}
.x2f{left:73.800000px;}
.x2e{left:75.600000px;}
.x5e{left:78.150000px;}
.x43{left:79.950000px;}
.x44{left:81.000000px;}
.x60{left:82.350000px;}
.x58{left:89.700000px;}
.x28{left:90.750000px;}
.x57{left:92.250000px;}
.x56{left:94.050000px;}
.x59{left:95.100000px;}
.x5a{left:96.150000px;}
.x1b{left:97.500000px;}
.x34{left:98.700000px;}
.x35{left:99.750000px;}
.x36{left:101.100000px;}
.x4a{left:102.600000px;}
.x39{left:103.650000px;}
.x3a{left:105.150000px;}
.x3b{left:106.200000px;}
.x3c{left:107.700000px;}
.x3d{left:109.050000px;}
.x3e{left:110.250000px;}
.x5b{left:112.050000px;}
.x52{left:114.150000px;}
.x4c{left:115.500000px;}
.x38{left:117.000000px;}
.x1a{left:119.850000px;}
.x49{left:122.700000px;}
.x3f{left:124.950000px;}
.x51{left:131.400000px;}
.x4{left:134.700000px;}
.x7{left:142.200000px;}
.x8{left:145.050000px;}
.x1e{left:147.600000px;}
.x2d{left:158.700000px;}
.x26{left:161.250000px;}
.x14{left:167.400000px;}
.x4b{left:169.200000px;}
.x17{left:171.000000px;}
.x19{left:172.350000px;}
.xf{left:181.050000px;}
.x22{left:186.750000px;}
.x5{left:191.250000px;}
.x1{left:199.050000px;}
.x1c{left:202.950000px;}
.xd{left:205.500000px;}
.x45{left:207.000000px;}
.x15{left:212.100000px;}
.x2c{left:213.150000px;}
.x2a{left:217.050000px;}
.x9{left:218.250000px;}
.x47{left:220.650000px;}
.x46{left:222.450000px;}
.x25{left:229.350000px;}
.x18{left:230.400000px;}
.x10{left:231.900000px;}
.x6{left:236.100000px;}
.x2{left:237.900000px;}
.xb{left:241.950000px;}
.x5c{left:245.550000px;}
.xe{left:247.350000px;}
.x1d{left:252.300000px;}
.x16{left:255.300000px;}
.x21{left:258.450000px;}
.x24{left:265.650000px;}
.x61{left:267.900000px;}
.xa{left:270.750000px;}
.x55{left:271.800000px;}
.x1f{left:272.850000px;}
.x3{left:274.350000px;}
.xc{left:275.850000px;}
.x11{left:276.900000px;}
.x37{left:280.050000px;}
.x48{left:289.350000px;}
.x2b{left:291.150000px;}
.x53{left:300.150000px;}
.x20{left:333.300000px;}
.x13{left:343.350000px;}
.x29{left:345.150000px;}
.x40{left:391.650000px;}
.x41{left:407.250000px;}
.x23{left:455.700000px;}
.x12{left:470.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-16.000000pt;}
.ls13{letter-spacing:-2.666667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.733333pt;}
.ls5{letter-spacing:2.666667pt;}
.ls15{letter-spacing:3.093333pt;}
.ls1{letter-spacing:3.413333pt;}
.ls3{letter-spacing:4.693333pt;}
.ls14{letter-spacing:5.125333pt;}
.lsb{letter-spacing:5.333333pt;}
.ls17{letter-spacing:5.546667pt;}
.ls2{letter-spacing:5.760000pt;}
.lsd{letter-spacing:6.080000pt;}
.lsc{letter-spacing:6.192000pt;}
.ls1b{letter-spacing:6.506667pt;}
.ls4{letter-spacing:6.651733pt;}
.ls7{letter-spacing:7.146667pt;}
.ls6{letter-spacing:7.274667pt;}
.lse{letter-spacing:7.360000pt;}
.ls1a{letter-spacing:7.573333pt;}
.ls1e{letter-spacing:7.746667pt;}
.ls0{letter-spacing:7.792000pt;}
.ls12{letter-spacing:8.000000pt;}
.ls16{letter-spacing:8.251733pt;}
.ls11{letter-spacing:8.874667pt;}
.ls1d{letter-spacing:9.240000pt;}
.ls20{letter-spacing:9.346667pt;}
.lsa{letter-spacing:10.666667pt;}
.ls19{letter-spacing:14.666667pt;}
.lsf{letter-spacing:15.718400pt;}
.ls9{letter-spacing:21.333333pt;}
.ls1c{letter-spacing:49.138667pt;}
.wsa{word-spacing:-51.066667pt;}
.ws14{word-spacing:-37.546667pt;}
.ws13{word-spacing:-37.424688pt;}
.wsd{word-spacing:-27.306667pt;}
.wsb{word-spacing:-26.880000pt;}
.ws9{word-spacing:-21.200000pt;}
.ws0{word-spacing:-20.181333pt;}
.wse{word-spacing:-16.280000pt;}
.ws1{word-spacing:-13.200000pt;}
.ws21{word-spacing:-11.120000pt;}
.ws22{word-spacing:-11.000000pt;}
.ws1d{word-spacing:-10.925333pt;}
.ws18{word-spacing:-10.154667pt;}
.ws5{word-spacing:-9.706667pt;}
.ws20{word-spacing:-9.200000pt;}
.ws3{word-spacing:-8.298667pt;}
.ws7{word-spacing:-7.920000pt;}
.ws1f{word-spacing:-7.840000pt;}
.ws15{word-spacing:-7.637333pt;}
.ws1e{word-spacing:-6.000000pt;}
.ws1a{word-spacing:-4.460800pt;}
.ws19{word-spacing:-4.315733pt;}
.ws17{word-spacing:-4.134400pt;}
.ws4{word-spacing:-4.066133pt;}
.ws10{word-spacing:-4.032000pt;}
.ws12{word-spacing:-3.554133pt;}
.ws6{word-spacing:-3.520000pt;}
.ws2{word-spacing:-3.281067pt;}
.ws1c{word-spacing:-3.040000pt;}
.wsf{word-spacing:-2.800000pt;}
.ws11{word-spacing:-2.065067pt;}
.wsc{word-spacing:-0.240000pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:0.601468pt;}
.ws1b{word-spacing:2.391467pt;}
._16{margin-left:-26.784000pt;}
._2b{margin-left:-25.384000pt;}
._21{margin-left:-23.984000pt;}
._17{margin-left:-17.184000pt;}
._2d{margin-left:-15.760000pt;}
._18{margin-left:-14.618667pt;}
._2c{margin-left:-13.360000pt;}
._2e{margin-left:-12.080000pt;}
._1a{margin-left:-10.848000pt;}
._19{margin-left:-9.600000pt;}
._a{margin-left:-8.533333pt;}
._7{margin-left:-7.429333pt;}
._8{margin-left:-6.117333pt;}
._5{margin-left:-4.714667pt;}
._4{margin-left:-3.264000pt;}
._3{margin-left:-1.813333pt;}
._25{margin-left:-0.896000pt;}
._0{width:1.376000pt;}
._f{width:2.368000pt;}
._1{width:3.264000pt;}
._d{width:4.538667pt;}
._11{width:5.450667pt;}
._e{width:6.501333pt;}
._b{width:7.789333pt;}
._c{width:8.893333pt;}
._26{width:9.874667pt;}
._6{width:10.768000pt;}
._1f{width:11.917333pt;}
._22{width:13.861333pt;}
._14{width:15.605333pt;}
._10{width:17.088000pt;}
._29{width:18.061333pt;}
._2{width:19.386667pt;}
._20{width:20.464000pt;}
._2a{width:21.973333pt;}
._28{width:23.482667pt;}
._15{width:25.232000pt;}
._1e{width:26.594667pt;}
._12{width:28.885333pt;}
._13{width:36.109333pt;}
._27{width:40.832000pt;}
._24{width:44.066667pt;}
._23{width:46.013333pt;}
._9{width:57.776000pt;}
._1d{width:61.600000pt;}
._2f{width:65.280000pt;}
._1c{width:97.066667pt;}
._1b{width:134.213333pt;}
.fsb{font-size:34.133333pt;}
.fs16{font-size:36.266667pt;}
.fsc{font-size:40.000000pt;}
.fs15{font-size:40.097880pt;}
.fs17{font-size:40.533333pt;}
.fsa{font-size:42.666667pt;}
.fs13{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fs10{font-size:66.666667pt;}
.fs12{font-size:74.849376pt;}
.fs8{font-size:80.000000pt;}
.fs14{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs11{font-size:98.666667pt;}
.fse{font-size:104.000000pt;}
.fs0{font-size:114.666667pt;}
.fsf{font-size:149.333333pt;}
.fs3{font-size:184.000000pt;}
.fs7{font-size:186.666667pt;}
.fsd{font-size:293.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:48.293333pt;}
.y140{bottom:81.360000pt;}
.y27{bottom:89.626667pt;}
.y13{bottom:90.293333pt;}
.y164{bottom:90.960000pt;}
.y1b1{bottom:91.493333pt;}
.yfa{bottom:91.760000pt;}
.y11f{bottom:92.826667pt;}
.y187{bottom:93.493333pt;}
.y69{bottom:94.160000pt;}
.y1a0{bottom:94.426667pt;}
.y47{bottom:95.760000pt;}
.y13f{bottom:96.960000pt;}
.yd4{bottom:97.360000pt;}
.y90{bottom:97.893333pt;}
.yb3{bottom:98.293333pt;}
.y26{bottom:101.760000pt;}
.y163{bottom:106.960000pt;}
.yf9{bottom:107.493333pt;}
.y11e{bottom:107.893333pt;}
.y186{bottom:109.360000pt;}
.y68{bottom:109.760000pt;}
.y19f{bottom:110.426667pt;}
.y46{bottom:111.360000pt;}
.yd3{bottom:112.560000pt;}
.y25{bottom:112.960000pt;}
.y8f{bottom:113.626667pt;}
.yb2{bottom:113.893333pt;}
.y162{bottom:122.293333pt;}
.yf8{bottom:123.226667pt;}
.y11d{bottom:124.160000pt;}
.y185{bottom:125.093333pt;}
.y24{bottom:125.760000pt;}
.y45{bottom:127.360000pt;}
.yd2{bottom:128.293333pt;}
.y8e{bottom:128.960000pt;}
.y1c2{bottom:132.160000pt;}
.y161{bottom:137.893333pt;}
.y1b0{bottom:138.826667pt;}
.yf7{bottom:138.960000pt;}
.y67{bottom:139.226667pt;}
.y11c{bottom:140.826667pt;}
.y44{bottom:142.693333pt;}
.yd1{bottom:144.026667pt;}
.y8d{bottom:144.293333pt;}
.y12{bottom:145.626667pt;}
.yb1{bottom:148.826667pt;}
.yf6{bottom:154.560000pt;}
.y11b{bottom:155.493333pt;}
.y13e{bottom:156.560000pt;}
.y66{bottom:157.093333pt;}
.y11{bottom:157.493333pt;}
.y43{bottom:158.160000pt;}
.yd0{bottom:159.360000pt;}
.y8c{bottom:160.293333pt;}
.y10{bottom:168.960000pt;}
.yf5{bottom:170.160000pt;}
.y1af{bottom:170.293333pt;}
.y11a{bottom:170.960000pt;}
.y184{bottom:172.160000pt;}
.y65{bottom:172.826667pt;}
.y42{bottom:174.160000pt;}
.ycf{bottom:175.093333pt;}
.y8b{bottom:176.026667pt;}
.yb0{bottom:179.893333pt;}
.yf{bottom:181.493333pt;}
.y1ae{bottom:185.626667pt;}
.yf4{bottom:185.893333pt;}
.y119{bottom:186.693333pt;}
.y160{bottom:187.226667pt;}
.y183{bottom:188.160000pt;}
.y64{bottom:188.560000pt;}
.y41{bottom:189.493333pt;}
.yce{bottom:190.426667pt;}
.y8a{bottom:191.760000pt;}
.y13d{bottom:194.293333pt;}
.yaf{bottom:195.226667pt;}
.yf3{bottom:201.626667pt;}
.y118{bottom:202.293333pt;}
.y182{bottom:203.893333pt;}
.y63{bottom:204.160000pt;}
.y40{bottom:205.093333pt;}
.ycd{bottom:205.760000pt;}
.y23{bottom:206.160000pt;}
.y89{bottom:207.093333pt;}
.y13c{bottom:210.560000pt;}
.yae{bottom:210.960000pt;}
.yf2{bottom:216.960000pt;}
.y1ad{bottom:217.360000pt;}
.y117{bottom:217.893333pt;}
.y181{bottom:219.493333pt;}
.y62{bottom:220.160000pt;}
.y3f{bottom:220.826667pt;}
.ycc{bottom:221.493333pt;}
.y88{bottom:222.693333pt;}
.y13b{bottom:225.893333pt;}
.yad{bottom:226.293333pt;}
.y15f{bottom:229.093333pt;}
.yf1{bottom:232.693333pt;}
.y1ac{bottom:232.960000pt;}
.y116{bottom:233.626667pt;}
.y19e{bottom:235.226667pt;}
.y180{bottom:235.493333pt;}
.y61{bottom:235.893333pt;}
.y3e{bottom:236.560000pt;}
.ycb{bottom:236.826667pt;}
.y87{bottom:238.160000pt;}
.y13a{bottom:241.626667pt;}
.yac{bottom:242.293333pt;}
.y15e{bottom:246.426667pt;}
.yf0{bottom:248.293333pt;}
.y1ab{bottom:248.693333pt;}
.y115{bottom:248.960000pt;}
.y17f{bottom:250.960000pt;}
.y60{bottom:251.226667pt;}
.y3d{bottom:251.893333pt;}
.yca{bottom:252.560000pt;}
.y86{bottom:253.493333pt;}
.y139{bottom:257.360000pt;}
.yab{bottom:257.626667pt;}
.y15d{bottom:261.760000pt;}
.yef{bottom:264.026667pt;}
.y1aa{bottom:264.293333pt;}
.y114{bottom:264.693333pt;}
.y17e{bottom:266.560000pt;}
.y5f{bottom:267.226667pt;}
.y3c{bottom:267.493333pt;}
.yc9{bottom:267.893333pt;}
.y85{bottom:269.493333pt;}
.yaa{bottom:272.960000pt;}
.y15c{bottom:277.493333pt;}
.yee{bottom:280.026667pt;}
.y113{bottom:281.360000pt;}
.y17d{bottom:281.893333pt;}
.y5e{bottom:282.960000pt;}
.y3b{bottom:283.226667pt;}
.yc8{bottom:283.893333pt;}
.y84{bottom:285.493333pt;}
.ya9{bottom:288.693333pt;}
.y138{bottom:288.960000pt;}
.y15b{bottom:293.093333pt;}
.yed{bottom:295.360000pt;}
.y1a9{bottom:295.760000pt;}
.y112{bottom:296.026667pt;}
.y19d{bottom:297.360000pt;}
.y17c{bottom:297.893333pt;}
.y5d{bottom:298.693333pt;}
.y3a{bottom:298.960000pt;}
.yc7{bottom:299.493333pt;}
.y83{bottom:300.826667pt;}
.ya8{bottom:304.293333pt;}
.y137{bottom:304.693333pt;}
.y15a{bottom:309.093333pt;}
.ye{bottom:310.426667pt;}
.y2d{bottom:310.693333pt;}
.yec{bottom:311.360000pt;}
.y111{bottom:311.760000pt;}
.y19c{bottom:313.226667pt;}
.y17b{bottom:313.360000pt;}
.y39{bottom:314.293333pt;}
.yc6{bottom:314.826667pt;}
.y82{bottom:316.560000pt;}
.ya7{bottom:320.293333pt;}
.y136{bottom:320.693333pt;}
.y159{bottom:324.560000pt;}
.yeb{bottom:326.693333pt;}
.y110{bottom:327.360000pt;}
.y19b{bottom:328.960000pt;}
.y17a{bottom:329.360000pt;}
.y5c{bottom:329.893333pt;}
.y38{bottom:330.293333pt;}
.yc5{bottom:330.560000pt;}
.y81{bottom:332.160000pt;}
.yd{bottom:333.093333pt;}
.ya6{bottom:336.026667pt;}
.y135{bottom:336.293333pt;}
.y158{bottom:340.160000pt;}
.yea{bottom:342.693333pt;}
.y1a8{bottom:343.093333pt;}
.y10f{bottom:344.026667pt;}
.y19a{bottom:344.693333pt;}
.y179{bottom:344.960000pt;}
.y5b{bottom:345.360000pt;}
.y37{bottom:345.626667pt;}
.yc4{bottom:346.293333pt;}
.y80{bottom:347.893333pt;}
.yc{bottom:349.093333pt;}
.ya5{bottom:351.760000pt;}
.y134{bottom:352.026667pt;}
.y21{bottom:352.693333pt;}
.y157{bottom:355.493333pt;}
.ye9{bottom:358.426667pt;}
.y10e{bottom:358.693333pt;}
.y199{bottom:360.026667pt;}
.y178{bottom:360.293333pt;}
.y1c1{bottom:360.560000pt;}
.y5a{bottom:360.960000pt;}
.y36{bottom:361.360000pt;}
.yc3{bottom:361.626667pt;}
.y7f{bottom:363.493333pt;}
.ya4{bottom:367.093333pt;}
.y133{bottom:368.026667pt;}
.y156{bottom:370.560000pt;}
.ye8{bottom:374.160000pt;}
.y10d{bottom:374.426667pt;}
.y198{bottom:375.760000pt;}
.y177{bottom:376.026667pt;}
.y1c0{bottom:376.293333pt;}
.y59{bottom:376.693333pt;}
.y35{bottom:376.960000pt;}
.yc2{bottom:377.360000pt;}
.yb{bottom:378.960000pt;}
.y7e{bottom:379.226667pt;}
.y20{bottom:380.826667pt;}
.y2c{bottom:381.093333pt;}
.ya3{bottom:382.693333pt;}
.y132{bottom:383.760000pt;}
.y155{bottom:387.093333pt;}
.ye7{bottom:389.760000pt;}
.y1a7{bottom:390.160000pt;}
.y10c{bottom:390.426667pt;}
.y197{bottom:391.360000pt;}
.y176{bottom:391.760000pt;}
.y1bf{bottom:392.026667pt;}
.y34{bottom:392.293333pt;}
.yc1{bottom:392.560000pt;}
.y58{bottom:392.693333pt;}
.ya{bottom:394.560000pt;}
.y7d{bottom:394.960000pt;}
.ya2{bottom:398.160000pt;}
.y1f{bottom:399.093333pt;}
.y131{bottom:399.360000pt;}
.y154{bottom:402.826667pt;}
.ye6{bottom:405.760000pt;}
.y196{bottom:406.693333pt;}
.y175{bottom:407.360000pt;}
.y33{bottom:408.026667pt;}
.yc0{bottom:408.293333pt;}
.y9{bottom:410.293333pt;}
.y7c{bottom:410.560000pt;}
.ya1{bottom:413.760000pt;}
.y130{bottom:414.426667pt;}
.y153{bottom:418.560000pt;}
.ye5{bottom:421.093333pt;}
.y10b{bottom:421.493333pt;}
.y1e{bottom:421.760000pt;}
.y195{bottom:422.426667pt;}
.y174{bottom:422.693333pt;}
.y1be{bottom:423.093333pt;}
.y32{bottom:423.760000pt;}
.ybf{bottom:424.026667pt;}
.y8{bottom:425.893333pt;}
.ya0{bottom:429.760000pt;}
.y12f{bottom:431.093333pt;}
.y152{bottom:434.293333pt;}
.y1a6{bottom:436.160000pt;}
.ye4{bottom:437.093333pt;}
.y194{bottom:438.160000pt;}
.y173{bottom:438.426667pt;}
.y31{bottom:439.093333pt;}
.ybe{bottom:439.360000pt;}
.y57{bottom:439.760000pt;}
.y7b{bottom:441.626667pt;}
.y7{bottom:444.826667pt;}
.y1d{bottom:445.760000pt;}
.y12e{bottom:446.693333pt;}
.y151{bottom:449.626667pt;}
.ye3{bottom:452.826667pt;}
.y172{bottom:453.760000pt;}
.y1bd{bottom:454.160000pt;}
.y30{bottom:454.693333pt;}
.y56{bottom:455.093333pt;}
.y7a{bottom:457.360000pt;}
.y9f{bottom:460.826667pt;}
.y12d{bottom:462.693333pt;}
.y150{bottom:465.626667pt;}
.y2b{bottom:467.226667pt;}
.y1c{bottom:467.493333pt;}
.ye2{bottom:468.560000pt;}
.y193{bottom:469.093333pt;}
.y171{bottom:469.493333pt;}
.y1bc{bottom:470.160000pt;}
.y2f{bottom:470.426667pt;}
.y55{bottom:470.693333pt;}
.y79{bottom:472.960000pt;}
.y9e{bottom:476.560000pt;}
.y6{bottom:477.093333pt;}
.y12c{bottom:478.426667pt;}
.y14f{bottom:481.626667pt;}
.y10a{bottom:483.893333pt;}
.ye1{bottom:484.160000pt;}
.y1a5{bottom:484.560000pt;}
.y192{bottom:484.826667pt;}
.y170{bottom:485.093333pt;}
.y1bb{bottom:485.493333pt;}
.ybd{bottom:485.760000pt;}
.y54{bottom:486.426667pt;}
.y78{bottom:488.293333pt;}
.y9d{bottom:492.560000pt;}
.y5{bottom:494.160000pt;}
.y14e{bottom:496.960000pt;}
.y109{bottom:499.493333pt;}
.ye0{bottom:499.893333pt;}
.y191{bottom:500.560000pt;}
.y16f{bottom:500.826667pt;}
.y1ba{bottom:501.093333pt;}
.ybc{bottom:501.493333pt;}
.y1b{bottom:502.160000pt;}
.y2a{bottom:502.426667pt;}
.y77{bottom:503.760000pt;}
.y9c{bottom:507.893333pt;}
.y12b{bottom:509.760000pt;}
.y14d{bottom:512.693333pt;}
.y108{bottom:515.226667pt;}
.ydf{bottom:515.493333pt;}
.y190{bottom:515.893333pt;}
.y16e{bottom:516.560000pt;}
.ybb{bottom:516.826667pt;}
.y76{bottom:519.493333pt;}
.y1a{bottom:522.293333pt;}
.y9b{bottom:523.493333pt;}
.y12a{bottom:525.760000pt;}
.y4{bottom:527.360000pt;}
.y14c{bottom:528.293333pt;}
.y52{bottom:529.360000pt;}
.y107{bottom:530.560000pt;}
.y1a4{bottom:530.960000pt;}
.yde{bottom:531.493333pt;}
.y16d{bottom:532.160000pt;}
.yba{bottom:532.826667pt;}
.y75{bottom:535.093333pt;}
.y9a{bottom:539.226667pt;}
.y129{bottom:541.093333pt;}
.y14b{bottom:544.293333pt;}
.y106{bottom:546.293333pt;}
.y1a3{bottom:546.960000pt;}
.ydd{bottom:547.226667pt;}
.y16c{bottom:547.893333pt;}
.y51{bottom:548.160000pt;}
.y1b9{bottom:548.293333pt;}
.yb9{bottom:548.560000pt;}
.y74{bottom:550.693333pt;}
.y99{bottom:554.960000pt;}
.y2e{bottom:556.826667pt;}
.y14a{bottom:560.026667pt;}
.y105{bottom:561.893333pt;}
.y22{bottom:562.293333pt;}
.ydc{bottom:562.560000pt;}
.y18f{bottom:562.693333pt;}
.y16b{bottom:563.493333pt;}
.y50{bottom:563.626667pt;}
.y1b8{bottom:563.893333pt;}
.yb8{bottom:564.160000pt;}
.y73{bottom:566.426667pt;}
.y18{bottom:568.960000pt;}
.y19{bottom:569.893333pt;}
.y98{bottom:570.293333pt;}
.y128{bottom:572.560000pt;}
.y149{bottom:575.093333pt;}
.y3{bottom:575.760000pt;}
.y104{bottom:577.626667pt;}
.ydb{bottom:578.293333pt;}
.y4f{bottom:579.226667pt;}
.yb7{bottom:579.493333pt;}
.y72{bottom:581.760000pt;}
.y97{bottom:585.626667pt;}
.y127{bottom:588.560000pt;}
.y148{bottom:591.093333pt;}
.y2{bottom:592.293333pt;}
.y103{bottom:592.960000pt;}
.y18e{bottom:593.893333pt;}
.yda{bottom:594.293333pt;}
.y4e{bottom:594.826667pt;}
.y1b7{bottom:594.960000pt;}
.yb6{bottom:595.226667pt;}
.y71{bottom:597.360000pt;}
.y96{bottom:601.626667pt;}
.y126{bottom:604.160000pt;}
.y147{bottom:606.693333pt;}
.y102{bottom:608.960000pt;}
.y18d{bottom:609.360000pt;}
.y1a2{bottom:609.626667pt;}
.yd9{bottom:609.893333pt;}
.y4d{bottom:610.560000pt;}
.y17{bottom:610.960000pt;}
.y70{bottom:613.093333pt;}
.y95{bottom:616.960000pt;}
.y125{bottom:619.893333pt;}
.y1{bottom:621.493333pt;}
.y146{bottom:622.426667pt;}
.y101{bottom:624.293333pt;}
.y1a1{bottom:624.960000pt;}
.y18c{bottom:625.360000pt;}
.yd8{bottom:625.626667pt;}
.y4c{bottom:626.293333pt;}
.y16a{bottom:626.560000pt;}
.y1b6{bottom:626.960000pt;}
.y6f{bottom:628.826667pt;}
.y16{bottom:630.160000pt;}
.y94{bottom:632.960000pt;}
.y124{bottom:635.893333pt;}
.y145{bottom:638.160000pt;}
.y100{bottom:640.026667pt;}
.y18b{bottom:640.960000pt;}
.yd7{bottom:641.360000pt;}
.y4b{bottom:641.893333pt;}
.y169{bottom:642.560000pt;}
.y6e{bottom:644.560000pt;}
.y93{bottom:648.293333pt;}
.y123{bottom:651.493333pt;}
.y144{bottom:653.760000pt;}
.yff{bottom:655.760000pt;}
.y18a{bottom:656.693333pt;}
.yd6{bottom:656.960000pt;}
.yb5{bottom:657.360000pt;}
.y4a{bottom:657.626667pt;}
.y168{bottom:657.893333pt;}
.y1b5{bottom:658.160000pt;}
.y6d{bottom:660.160000pt;}
.y15{bottom:661.760000pt;}
.y122{bottom:667.226667pt;}
.y143{bottom:669.760000pt;}
.yfe{bottom:671.093333pt;}
.y189{bottom:672.293333pt;}
.y49{bottom:672.960000pt;}
.y167{bottom:673.626667pt;}
.y1b4{bottom:673.893333pt;}
.y6c{bottom:675.893333pt;}
.y92{bottom:680.693333pt;}
.y121{bottom:682.960000pt;}
.y142{bottom:685.493333pt;}
.yfd{bottom:686.693333pt;}
.y188{bottom:688.026667pt;}
.yd5{bottom:688.293333pt;}
.y48{bottom:688.960000pt;}
.y166{bottom:689.360000pt;}
.y1b3{bottom:689.626667pt;}
.y6b{bottom:691.493333pt;}
.y120{bottom:704.026667pt;}
.y141{bottom:706.560000pt;}
.yfc{bottom:709.093333pt;}
.yfb{bottom:709.493333pt;}
.y53{bottom:709.760000pt;}
.yb4{bottom:710.160000pt;}
.y165{bottom:710.426667pt;}
.y1b2{bottom:711.360000pt;}
.y6a{bottom:711.760000pt;}
.y91{bottom:712.293333pt;}
.y14{bottom:755.493333pt;}
.y29{bottom:755.893333pt;}
.hb{height:28.437500pt;}
.h3{height:33.769531pt;}
.h18{height:34.000000pt;}
.h15{height:38.002923pt;}
.hd{height:38.613281pt;}
.h9{height:39.101562pt;}
.h16{height:42.964844pt;}
.h17{height:43.761719pt;}
.h6{height:43.781250pt;}
.h19{height:44.433594pt;}
.ha{height:48.019531pt;}
.hc{height:48.910156pt;}
.h10{height:49.348958pt;}
.h8{height:53.320312pt;}
.h12{height:57.598934pt;}
.h13{height:58.128906pt;}
.h11{height:65.761719pt;}
.h14{height:65.833333pt;}
.hf{height:69.316406pt;}
.h2{height:85.929688pt;}
.h5{height:92.671875pt;}
.h1{height:108.675781pt;}
.h7{height:124.414062pt;}
.h4{height:174.386719pt;}
.he{height:195.507812pt;}
.h0{height:784.666667pt;}
.w7{width:491.866667pt;}
.w8{width:492.000000pt;}
.w5{width:500.466667pt;}
.w6{width:500.666667pt;}
.w4{width:502.666667pt;}
.w3{width:502.733333pt;}
.w2{width:511.333333pt;}
.w0{width:521.933333pt;}
.w1{width:522.000000pt;}
.x0{left:0.000000pt;}
.x50{left:43.600000pt;}
.x54{left:51.600000pt;}
.x4f{left:52.800000pt;}
.x4d{left:53.733333pt;}
.x4e{left:54.800000pt;}
.x5d{left:55.733333pt;}
.x5f{left:56.933333pt;}
.x32{left:58.533333pt;}
.x42{left:60.133333pt;}
.x33{left:61.200000pt;}
.x27{left:62.400000pt;}
.x31{left:63.333333pt;}
.x30{left:64.400000pt;}
.x2f{left:65.600000pt;}
.x2e{left:67.200000pt;}
.x5e{left:69.466667pt;}
.x43{left:71.066667pt;}
.x44{left:72.000000pt;}
.x60{left:73.200000pt;}
.x58{left:79.733333pt;}
.x28{left:80.666667pt;}
.x57{left:82.000000pt;}
.x56{left:83.600000pt;}
.x59{left:84.533333pt;}
.x5a{left:85.466667pt;}
.x1b{left:86.666667pt;}
.x34{left:87.733333pt;}
.x35{left:88.666667pt;}
.x36{left:89.866667pt;}
.x4a{left:91.200000pt;}
.x39{left:92.133333pt;}
.x3a{left:93.466667pt;}
.x3b{left:94.400000pt;}
.x3c{left:95.733333pt;}
.x3d{left:96.933333pt;}
.x3e{left:98.000000pt;}
.x5b{left:99.600000pt;}
.x52{left:101.466667pt;}
.x4c{left:102.666667pt;}
.x38{left:104.000000pt;}
.x1a{left:106.533333pt;}
.x49{left:109.066667pt;}
.x3f{left:111.066667pt;}
.x51{left:116.800000pt;}
.x4{left:119.733333pt;}
.x7{left:126.400000pt;}
.x8{left:128.933333pt;}
.x1e{left:131.200000pt;}
.x2d{left:141.066667pt;}
.x26{left:143.333333pt;}
.x14{left:148.800000pt;}
.x4b{left:150.400000pt;}
.x17{left:152.000000pt;}
.x19{left:153.200000pt;}
.xf{left:160.933333pt;}
.x22{left:166.000000pt;}
.x5{left:170.000000pt;}
.x1{left:176.933333pt;}
.x1c{left:180.400000pt;}
.xd{left:182.666667pt;}
.x45{left:184.000000pt;}
.x15{left:188.533333pt;}
.x2c{left:189.466667pt;}
.x2a{left:192.933333pt;}
.x9{left:194.000000pt;}
.x47{left:196.133333pt;}
.x46{left:197.733333pt;}
.x25{left:203.866667pt;}
.x18{left:204.800000pt;}
.x10{left:206.133333pt;}
.x6{left:209.866667pt;}
.x2{left:211.466667pt;}
.xb{left:215.066667pt;}
.x5c{left:218.266667pt;}
.xe{left:219.866667pt;}
.x1d{left:224.266667pt;}
.x16{left:226.933333pt;}
.x21{left:229.733333pt;}
.x24{left:236.133333pt;}
.x61{left:238.133333pt;}
.xa{left:240.666667pt;}
.x55{left:241.600000pt;}
.x1f{left:242.533333pt;}
.x3{left:243.866667pt;}
.xc{left:245.200000pt;}
.x11{left:246.133333pt;}
.x37{left:248.933333pt;}
.x48{left:257.200000pt;}
.x2b{left:258.800000pt;}
.x53{left:266.800000pt;}
.x20{left:296.266667pt;}
.x13{left:305.200000pt;}
.x29{left:306.800000pt;}
.x40{left:348.133333pt;}
.x41{left:362.000000pt;}
.x23{left:405.066667pt;}
.x12{left:418.000000pt;}
}




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