
    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_02b9afea3a239fd1c9ccad51.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_c3394ac45d249fc7496790a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_eabee8430bf6bfd4910dd37b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_1c4fe867bc3668ed97bb8ee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_baf406ccf71a9f84a4fe05cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_8adf33c1490edede17569f26.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ee3049520df8a9440d979a4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f26f2d2ecf071f4db2080332.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.768555;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_06678e1f16eba67dd58afc0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b74be1ee2bef8b8533b7c7fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.480000px;}
.v5{vertical-align:-18.720000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v2{vertical-align:27.360000px;}
.ls16{letter-spacing:-1.728000px;}
.ls1a{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.296000px;}
.ls1c{letter-spacing:-1.134000px;}
.ls13{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.020400px;}
.ls12{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.498240px;}
.ls11{letter-spacing:0.501120px;}
.ls1{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.507000px;}
.lse{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.900000px;}
.ls19{letter-spacing:25.287840px;}
.ls9{letter-spacing:27.504000px;}
.ls8{letter-spacing:31.824000px;}
.ls17{letter-spacing:52.647840px;}
.ls2{letter-spacing:847.716000px;}
.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;}
}
.ws9{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.648000px;}
.ws0{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.496000px;}
.ws4{word-spacing:-17.352000px;}
.ws15{word-spacing:-17.280000px;}
.wsb{word-spacing:-17.064000px;}
.ws16{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.102200px;}
.ws14{word-spacing:-15.627000px;}
.ws10{word-spacing:-14.400000px;}
.wse{word-spacing:-13.680000px;}
.ws13{word-spacing:-12.960000px;}
.ws12{word-spacing:-12.240000px;}
.ws7{word-spacing:-11.880000px;}
.ws18{word-spacing:-10.440000px;}
.ws17{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.000000px;}
.wsf{word-spacing:-8.280000px;}
.wsa{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-2.784072px;}
._1{margin-left:-1.499976px;}
._0{width:1.440000px;}
._2{width:2.471904px;}
._3{width:3.839856px;}
._5{width:5.100696px;}
._a{width:6.264000px;}
._b{width:8.195304px;}
._d{width:9.288000px;}
._e{width:10.347408px;}
._f{width:11.710368px;}
._6{width:13.392000px;}
._c{width:14.688024px;}
._7{width:15.911976px;}
._11{width:19.080000px;}
._10{width:20.232000px;}
._9{width:21.336072px;}
._8{width:22.692000px;}
._14{width:255.600000px;}
._12{width:846.276000px;}
._13{width:849.305760px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(1,2,5);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y186{bottom:2.880000px;}
.y1b0{bottom:2.910000px;}
.y18b{bottom:3.240000px;}
.y1b5{bottom:3.285000px;}
.y1c8{bottom:3.600000px;}
.y1e3{bottom:3.636000px;}
.y1d5{bottom:3.960000px;}
.y71{bottom:4.320000px;}
.y1e2{bottom:4.356000px;}
.ycc{bottom:6.480000px;}
.yd3{bottom:6.510000px;}
.yd1{bottom:6.840000px;}
.yf3{bottom:7.200000px;}
.ye9{bottom:7.560000px;}
.yfa{bottom:7.920000px;}
.yf6{bottom:7.965000px;}
.yea{bottom:8.280000px;}
.yca{bottom:8.640000px;}
.yf7{bottom:8.685000px;}
.y1a2{bottom:10.440000px;}
.y19e{bottom:10.800000px;}
.y1a4{bottom:10.830000px;}
.y1b6{bottom:10.845000px;}
.y1ca{bottom:11.160000px;}
.y1c5{bottom:11.520000px;}
.y1de{bottom:11.523000px;}
.y1db{bottom:11.550000px;}
.y1ce{bottom:11.565000px;}
.y1c2{bottom:11.880000px;}
.y10c{bottom:12.600000px;}
.y108{bottom:12.960000px;}
.y9e{bottom:15.480000px;}
.y9c{bottom:15.840000px;}
.y19d{bottom:18.360000px;}
.y1ac{bottom:18.390000px;}
.ye6{bottom:18.720000px;}
.y1bd{bottom:18.723000px;}
.y10a{bottom:18.750000px;}
.y1b4{bottom:18.765000px;}
.yed{bottom:19.080000px;}
.y1d0{bottom:20.160000px;}
.y1c3{bottom:20.520000px;}
.y1dd{bottom:20.523000px;}
.y1d7{bottom:20.550000px;}
.y1cd{bottom:20.565000px;}
.y70{bottom:26.640000px;}
.ye7{bottom:30.600000px;}
.yf1{bottom:30.630000px;}
.yec{bottom:30.960000px;}
.y1a7{bottom:33.840000px;}
.y1ab{bottom:33.870000px;}
.y1cf{bottom:37.800000px;}
.y6f{bottom:48.960000px;}
.y7b{bottom:49.005000px;}
.y7e{bottom:52.230000px;}
.yf0{bottom:54.390000px;}
.y11e{bottom:61.236000px;}
.y12f{bottom:62.676000px;}
.y110{bottom:64.116000px;}
.y75{bottom:70.230000px;}
.y47{bottom:70.236000px;}
.y6e{bottom:71.280000px;}
.y7a{bottom:71.325000px;}
.y1e4{bottom:72.756000px;}
.y123{bottom:73.116000px;}
.ybb{bottom:73.836000px;}
.y7d{bottom:74.550000px;}
.y73{bottom:74.880000px;}
.y78{bottom:74.910000px;}
.y158{bottom:76.716000px;}
.y180{bottom:77.436000px;}
.y51{bottom:85.716000px;}
.y12e{bottom:86.436000px;}
.y6c{bottom:87.156000px;}
.y1bf{bottom:88.596000px;}
.y1e1{bottom:88.956000px;}
.y99{bottom:90.036000px;}
.y11d{bottom:92.196000px;}
.y92{bottom:92.556000px;}
.y10f{bottom:95.076000px;}
.yba{bottom:100.476000px;}
.y17f{bottom:101.196000px;}
.y46{bottom:101.556000px;}
.y122{bottom:104.076000px;}
.y1be{bottom:106.272000px;}
.y1e0{bottom:108.072000px;}
.y12d{bottom:110.556000px;}
.y50{bottom:116.676000px;}
.y6b{bottom:118.116000px;}
.y11c{bottom:123.156000px;}
.y91{bottom:123.876000px;}
.y157{bottom:124.236000px;}
.y17e{bottom:124.956000px;}
.y1df{bottom:127.152000px;}
.y10e{bottom:131.112000px;}
.yb9{bottom:131.472000px;}
.y45{bottom:132.552000px;}
.y98{bottom:133.272000px;}
.y12c{bottom:134.352000px;}
.y1bc{bottom:137.232000px;}
.y1dc{bottom:145.872000px;}
.y121{bottom:146.952000px;}
.y4f{bottom:147.672000px;}
.y156{bottom:148.032000px;}
.y17d{bottom:148.752000px;}
.y6a{bottom:149.472000px;}
.y11b{bottom:154.515000px;}
.y90{bottom:154.875000px;}
.y12b{bottom:158.115000px;}
.yb8{bottom:162.435000px;}
.y44{bottom:163.515000px;}
.y97{bottom:164.235000px;}
.y1bb{bottom:168.555000px;}
.y155{bottom:171.795000px;}
.y17c{bottom:172.515000px;}
.y10d{bottom:173.235000px;}
.y120{bottom:178.275000px;}
.y4e{bottom:178.995000px;}
.y69{bottom:180.435000px;}
.y12a{bottom:181.875000px;}
.y1ba{bottom:184.035000px;}
.y11a{bottom:185.475000px;}
.y8f{bottom:185.835000px;}
.yb7{bottom:193.395000px;}
.y43{bottom:194.475000px;}
.y96{bottom:195.195000px;}
.y154{bottom:195.555000px;}
.y17b{bottom:196.275000px;}
.y11f{bottom:198.075000px;}
.y1b9{bottom:199.545000px;}
.y129{bottom:204.195000px;}
.y10b{bottom:209.235000px;}
.y4d{bottom:209.955000px;}
.y68{bottom:211.395000px;}
.y1b8{bottom:215.025000px;}
.y119{bottom:216.435000px;}
.y8e{bottom:216.795000px;}
.y153{bottom:219.315000px;}
.y17a{bottom:220.395000px;}
.yb6{bottom:224.355000px;}
.y42{bottom:225.795000px;}
.y128{bottom:226.515000px;}
.y95{bottom:230.115000px;}
.y4c{bottom:240.915000px;}
.y67{bottom:242.355000px;}
.y152{bottom:243.435000px;}
.y179{bottom:244.155000px;}
.y109{bottom:244.875000px;}
.y1b7{bottom:245.985000px;}
.y118{bottom:247.395000px;}
.y8d{bottom:248.115000px;}
.y127{bottom:248.835000px;}
.y1da{bottom:249.585000px;}
.yb5{bottom:255.675000px;}
.y41{bottom:256.755000px;}
.y94{bottom:259.995000px;}
.y151{bottom:267.225000px;}
.y178{bottom:267.945000px;}
.y126{bottom:271.185000px;}
.y4b{bottom:271.905000px;}
.y66{bottom:273.705000px;}
.y1b3{bottom:276.945000px;}
.y8c{bottom:279.105000px;}
.y107{bottom:280.545000px;}
.y117{bottom:283.425000px;}
.y1d9{bottom:284.190000px;}
.yb4{bottom:286.665000px;}
.y40{bottom:287.745000px;}
.y93{bottom:290.985000px;}
.y177{bottom:291.705000px;}
.y125{bottom:293.505000px;}
.y4a{bottom:303.225000px;}
.y65{bottom:304.665000px;}
.y1b2{bottom:308.310000px;}
.y8b{bottom:310.065000px;}
.y150{bottom:311.865000px;}
.y116{bottom:314.385000px;}
.y176{bottom:315.465000px;}
.y106{bottom:316.545000px;}
.yb3{bottom:317.625000px;}
.y1d8{bottom:318.390000px;}
.y3f{bottom:318.705000px;}
.y124{bottom:329.505000px;}
.y14f{bottom:332.745000px;}
.y49{bottom:334.185000px;}
.y64{bottom:335.625000px;}
.y175{bottom:339.225000px;}
.y1b1{bottom:339.270000px;}
.y8a{bottom:341.025000px;}
.y105{bottom:342.105000px;}
.y115{bottom:345.345000px;}
.yb2{bottom:348.585000px;}
.y3e{bottom:350.025000px;}
.y1d6{bottom:352.950000px;}
.y14e{bottom:356.145000px;}
.y174{bottom:362.985000px;}
.y48{bottom:365.145000px;}
.y63{bottom:366.585000px;}
.y104{bottom:367.665000px;}
.y1af{bottom:370.230000px;}
.y89{bottom:372.345000px;}
.y114{bottom:372.705000px;}
.yb1{bottom:379.905000px;}
.y3d{bottom:380.985000px;}
.y173{bottom:386.745000px;}
.y1d4{bottom:387.540000px;}
.y103{bottom:392.865000px;}
.y24{bottom:396.150000px;}
.y62{bottom:397.950000px;}
.y14d{bottom:400.830000px;}
.y1ae{bottom:401.220000px;}
.y88{bottom:403.350000px;}
.y1d3{bottom:406.620000px;}
.yb0{bottom:410.910000px;}
.y3c{bottom:411.990000px;}
.y102{bottom:418.470000px;}
.y14c{bottom:421.710000px;}
.y23{bottom:427.470000px;}
.y61{bottom:428.910000px;}
.y1ad{bottom:432.540000px;}
.y87{bottom:434.310000px;}
.y172{bottom:434.670000px;}
.y1d2{bottom:441.180000px;}
.y14b{bottom:442.230000px;}
.y3b{bottom:442.950000px;}
.yaf{bottom:445.830000px;}
.ye4{bottom:455.910000px;}
.y22{bottom:458.430000px;}
.y60{bottom:459.870000px;}
.y14a{bottom:463.110000px;}
.y1aa{bottom:463.500000px;}
.y86{bottom:465.270000px;}
.y101{bottom:465.990000px;}
.y199{bottom:470.010000px;}
.y3a{bottom:474.270000px;}
.y1d1{bottom:475.410000px;}
.yae{bottom:475.710000px;}
.y5f{bottom:480.390000px;}
.y171{bottom:482.190000px;}
.y149{bottom:486.510000px;}
.y21{bottom:489.390000px;}
.ye3{bottom:491.550000px;}
.y85{bottom:496.590000px;}
.y198{bottom:502.770000px;}
.y39{bottom:505.230000px;}
.y170{bottom:505.950000px;}
.y1a9{bottom:509.970000px;}
.y148{bottom:510.270000px;}
.y100{bottom:517.110000px;}
.y20{bottom:520.350000px;}
.y197{bottom:520.410000px;}
.y5e{bottom:521.790000px;}
.yad{bottom:524.670000px;}
.y84{bottom:527.550000px;}
.y16f{bottom:529.740000px;}
.y147{bottom:534.060000px;}
.y196{bottom:535.890000px;}
.y38{bottom:536.220000px;}
.y1a8{bottom:540.930000px;}
.yff{bottom:542.700000px;}
.ye2{bottom:545.220000px;}
.y1f{bottom:551.340000px;}
.y195{bottom:551.370000px;}
.y5d{bottom:553.140000px;}
.y16e{bottom:553.500000px;}
.yac{bottom:555.660000px;}
.y146{bottom:557.820000px;}
.y83{bottom:558.540000px;}
.y1cc{bottom:561.810000px;}
.y194{bottom:566.895000px;}
.y37{bottom:567.180000px;}
.yfe{bottom:568.260000px;}
.ye1{bottom:570.780000px;}
.y1a6{bottom:572.295000px;}
.y16d{bottom:577.260000px;}
.y145{bottom:581.940000px;}
.y193{bottom:582.375000px;}
.y1e{bottom:582.660000px;}
.yab{bottom:586.980000px;}
.y5c{bottom:587.700000px;}
.y82{bottom:589.500000px;}
.yfd{bottom:593.820000px;}
.ye0{bottom:596.340000px;}
.y1cb{bottom:596.415000px;}
.y192{bottom:598.215000px;}
.y36{bottom:598.500000px;}
.y16c{bottom:601.020000px;}
.y144{bottom:605.700000px;}
.y74{bottom:612.180000px;}
.y1d{bottom:613.620000px;}
.y191{bottom:613.695000px;}
.yaa{bottom:617.940000px;}
.y1a5{bottom:618.735000px;}
.yfc{bottom:619.020000px;}
.y81{bottom:620.820000px;}
.y5b{bottom:621.540000px;}
.ydf{bottom:621.900000px;}
.y16b{bottom:625.140000px;}
.y190{bottom:629.175000px;}
.y35{bottom:629.460000px;}
.y1c9{bottom:630.975000px;}
.y1c{bottom:644.580000px;}
.y18f{bottom:644.655000px;}
.yde{bottom:647.100000px;}
.ya9{bottom:648.900000px;}
.y77{bottom:649.260000px;}
.y1a3{bottom:649.695000px;}
.y80{bottom:651.780000px;}
.y143{bottom:653.220000px;}
.y5a{bottom:655.380000px;}
.y7c{bottom:657.180000px;}
.y18e{bottom:660.165000px;}
.y34{bottom:660.420000px;}
.y1c7{bottom:665.205000px;}
.yfb{bottom:670.170000px;}
.ydd{bottom:672.690000px;}
.y1b{bottom:675.570000px;}
.y18d{bottom:675.645000px;}
.y142{bottom:677.010000px;}
.ya8{bottom:679.890000px;}
.y1a1{bottom:681.045000px;}
.yc8{bottom:682.770000px;}
.y1c6{bottom:684.285000px;}
.y59{bottom:688.890000px;}
.y18c{bottom:691.125000px;}
.y33{bottom:691.410000px;}
.y7f{bottom:694.650000px;}
.y16a{bottom:696.450000px;}
.ydc{bottom:698.250000px;}
.y141{bottom:700.770000px;}
.y18a{bottom:706.605000px;}
.y1a{bottom:706.890000px;}
.ya7{bottom:710.850000px;}
.y1a0{bottom:712.005000px;}
.yc7{bottom:713.730000px;}
.y72{bottom:716.970000px;}
.yf9{bottom:717.690000px;}
.y1c4{bottom:718.845000px;}
.y169{bottom:720.210000px;}
.y32{bottom:722.370000px;}
.y189{bottom:722.445000px;}
.y58{bottom:722.730000px;}
.ydb{bottom:723.810000px;}
.y140{bottom:724.530000px;}
.y19f{bottom:727.485000px;}
.y19{bottom:737.850000px;}
.y188{bottom:737.925000px;}
.yf8{bottom:743.250000px;}
.y168{bottom:743.970000px;}
.yc6{bottom:745.050000px;}
.y13f{bottom:748.290000px;}
.yda{bottom:749.370000px;}
.y187{bottom:753.450000px;}
.y31{bottom:753.690000px;}
.y57{bottom:756.570000px;}
.y19c{bottom:758.490000px;}
.ya6{bottom:759.810000px;}
.y167{bottom:767.730000px;}
.y18{bottom:768.810000px;}
.y185{bottom:768.930000px;}
.y13e{bottom:772.410000px;}
.yd9{bottom:774.930000px;}
.yc5{bottom:776.010000px;}
.y6{bottom:776.227650px;}
.y79{bottom:779.610000px;}
.y30{bottom:784.650000px;}
.y19b{bottom:789.450000px;}
.y56{bottom:790.410000px;}
.yf5{bottom:790.770000px;}
.y166{bottom:791.490000px;}
.y76{bottom:795.495000px;}
.y13d{bottom:796.215000px;}
.y5{bottom:798.547650px;}
.y17{bottom:799.815000px;}
.yd8{bottom:800.175000px;}
.y184{bottom:800.970000px;}
.y1c1{bottom:804.210000px;}
.yc4{bottom:807.015000px;}
.ya5{bottom:809.175000px;}
.y2f{bottom:815.655000px;}
.yf4{bottom:816.375000px;}
.y13c{bottom:819.975000px;}
.y4{bottom:820.867500px;}
.y19a{bottom:821.490000px;}
.y183{bottom:821.850000px;}
.y1c0{bottom:823.290000px;}
.y55{bottom:823.935000px;}
.yd7{bottom:825.735000px;}
.y6d{bottom:827.175000px;}
.y16{bottom:831.135000px;}
.yc3{bottom:837.975000px;}
.y165{bottom:839.415000px;}
.ya4{bottom:840.135000px;}
.y182{bottom:842.730000px;}
.y13b{bottom:843.735000px;}
.y2e{bottom:846.615000px;}
.yd6{bottom:851.295000px;}
.y3{bottom:855.427500px;}
.y54{bottom:857.775000px;}
.y15{bottom:862.095000px;}
.y164{bottom:863.175000px;}
.yf2{bottom:863.895000px;}
.y13a{bottom:867.495000px;}
.yc2{bottom:868.935000px;}
.ya3{bottom:875.775000px;}
.yd5{bottom:876.855000px;}
.y2d{bottom:877.935000px;}
.y163{bottom:886.935000px;}
.y139{bottom:891.255000px;}
.y53{bottom:891.615000px;}
.y14{bottom:893.055000px;}
.yc1{bottom:900.255000px;}
.yd4{bottom:902.415000px;}
.y2c{bottom:908.895000px;}
.y162{bottom:910.695000px;}
.yef{bottom:911.775000px;}
.y138{bottom:915.015000px;}
.y13{bottom:924.015000px;}
.ya2{bottom:924.735000px;}
.y52{bottom:925.095000px;}
.y2{bottom:926.752500px;}
.yd2{bottom:927.975000px;}
.yc0{bottom:931.245000px;}
.y161{bottom:934.485000px;}
.y113{bottom:935.205000px;}
.y137{bottom:938.805000px;}
.y2b{bottom:939.885000px;}
.yd0{bottom:953.205000px;}
.y12{bottom:955.365000px;}
.y160{bottom:958.245000px;}
.ya1{bottom:960.765000px;}
.ybf{bottom:962.205000px;}
.y136{bottom:962.565000px;}
.y112{bottom:969.405000px;}
.y2a{bottom:970.845000px;}
.ya0{bottom:978.405000px;}
.ycf{bottom:978.765000px;}
.y15f{bottom:982.005000px;}
.yee{bottom:983.085000px;}
.y11{bottom:986.325000px;}
.y135{bottom:986.685000px;}
.ybe{bottom:993.165000px;}
.y1{bottom:998.392500px;}
.y29{bottom:1002.165000px;}
.yce{bottom:1004.325000px;}
.y111{bottom:1005.405000px;}
.y15e{bottom:1006.125000px;}
.y134{bottom:1010.445000px;}
.y9f{bottom:1011.165000px;}
.y10{bottom:1017.285000px;}
.ybd{bottom:1024.485000px;}
.ycd{bottom:1029.885000px;}
.yeb{bottom:1030.605000px;}
.y181{bottom:1030.965000px;}
.y28{bottom:1033.125000px;}
.y133{bottom:1034.205000px;}
.y9d{bottom:1044.645000px;}
.yf{bottom:1048.245000px;}
.y15d{bottom:1053.645000px;}
.ycb{bottom:1055.445000px;}
.y132{bottom:1057.965000px;}
.y27{bottom:1064.130000px;}
.ybc{bottom:1067.370000px;}
.y9b{bottom:1077.090000px;}
.y15c{bottom:1077.450000px;}
.ye8{bottom:1078.530000px;}
.ye{bottom:1079.610000px;}
.yc9{bottom:1081.770000px;}
.y26{bottom:1095.090000px;}
.y15b{bottom:1101.210000px;}
.ye5{bottom:1105.530000px;}
.yd{bottom:1110.570000px;}
.y9{bottom:1111.813500px;}
.y15a{bottom:1124.970000px;}
.y131{bottom:1127.850000px;}
.y9a{bottom:1129.650000px;}
.y8{bottom:1129.813500px;}
.y25{bottom:1138.290000px;}
.yc{bottom:1141.530000px;}
.y7{bottom:1147.813500px;}
.y159{bottom:1148.730000px;}
.y130{bottom:1150.170000px;}
.yb{bottom:1172.490000px;}
.ya{bottom:1193.730000px;}
.h24{height:15.480000px;}
.h27{height:15.516000px;}
.h28{height:15.840000px;}
.h37{height:18.720000px;}
.h33{height:19.080000px;}
.h38{height:19.116000px;}
.h17{height:25.200000px;}
.h16{height:25.236000px;}
.h15{height:25.560000px;}
.h14{height:25.596000px;}
.h13{height:29.520000px;}
.h29{height:30.960000px;}
.h2a{height:30.996000px;}
.h2e{height:31.320000px;}
.h2b{height:31.356000px;}
.h11{height:32.400000px;}
.h10{height:32.436000px;}
.hf{height:32.760000px;}
.h36{height:34.200000px;}
.h34{height:34.236000px;}
.h2f{height:34.560000px;}
.h31{height:34.596000px;}
.h1f{height:35.640000px;}
.h1e{height:35.676000px;}
.h1d{height:36.000000px;}
.h5{height:42.720000px;}
.h20{height:46.251562px;}
.h2c{height:46.440000px;}
.h2d{height:46.476000px;}
.h19{height:47.520000px;}
.h1c{height:47.880000px;}
.h1a{height:47.916000px;}
.h25{height:48.013594px;}
.h2{height:48.796875px;}
.h9{height:49.992188px;}
.h6{height:50.229844px;}
.h21{height:50.273438px;}
.h26{height:50.307891px;}
.h35{height:51.840000px;}
.h30{height:53.067656px;}
.h7{height:58.121719px;}
.h3{height:63.175781px;}
.h4{height:63.176381px;}
.h32{height:64.001953px;}
.h12{height:69.056016px;}
.h18{height:69.176016px;}
.h1b{height:71.316000px;}
.hb{height:87.156000px;}
.hc{height:88.191000px;}
.h8{height:88.200000px;}
.hd{height:88.236000px;}
.he{height:91.476000px;}
.ha{height:91.836000px;}
.h23{height:892.500000px;}
.h22{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:46.440000px;}
.w20{width:47.880000px;}
.w23{width:47.916000px;}
.w22{width:48.240000px;}
.w21{width:48.276000px;}
.w1a{width:50.760000px;}
.w19{width:51.120000px;}
.w1b{width:51.156000px;}
.w1d{width:55.440000px;}
.w1c{width:55.800000px;}
.w15{width:60.516000px;}
.w6{width:65.880000px;}
.w24{width:69.480000px;}
.w7{width:70.956000px;}
.w11{width:72.396000px;}
.w2b{width:73.440000px;}
.w2a{width:74.196000px;}
.w8{width:74.556000px;}
.w28{width:75.240000px;}
.w29{width:75.276000px;}
.w27{width:75.600000px;}
.w26{width:75.636000px;}
.wc{width:94.356000px;}
.w9{width:98.316000px;}
.wa{width:99.756000px;}
.wb{width:100.116000px;}
.w1f{width:100.836000px;}
.w25{width:120.276000px;}
.we{width:123.156000px;}
.wf{width:123.516000px;}
.w13{width:127.116000px;}
.w2{width:134.676000px;}
.w4{width:137.952000px;}
.w3{width:141.516000px;}
.w5{width:168.195000px;}
.w10{width:173.955000px;}
.w14{width:193.755000px;}
.w18{width:207.795000px;}
.wd{width:292.065000px;}
.w12{width:381.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w16{width:1262.880000px;}
.w17{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:2.880000px;}
.x1b{left:4.680000px;}
.xb{left:8.280000px;}
.x16{left:9.360000px;}
.x8{left:10.803000px;}
.x49{left:12.600000px;}
.x18{left:15.120000px;}
.x4a{left:16.920000px;}
.x2c{left:18.720000px;}
.x29{left:20.520000px;}
.x24{left:21.600000px;}
.x61{left:23.040000px;}
.x1f{left:24.840000px;}
.x1a{left:28.440000px;}
.x30{left:30.240000px;}
.x62{left:33.480000px;}
.x48{left:35.274000px;}
.x20{left:36.360000px;}
.x27{left:40.680000px;}
.x37{left:42.480000px;}
.x21{left:45.720000px;}
.x31{left:47.880000px;}
.x1c{left:50.400000px;}
.x2b{left:52.200000px;}
.x1{left:54.036000px;}
.x25{left:55.440000px;}
.x3{left:58.032000px;}
.x1d{left:61.590000px;}
.x2e{left:63.360000px;}
.x32{left:66.285000px;}
.x23{left:69.165000px;}
.x22{left:71.325000px;}
.x2{left:75.276000px;}
.x2d{left:79.965000px;}
.x5{left:81.036000px;}
.x33{left:82.845000px;}
.x2f{left:85.725000px;}
.x1e{left:86.805000px;}
.x35{left:90.036000px;}
.x36{left:94.716000px;}
.x4{left:96.516000px;}
.x6{left:108.036000px;}
.x38{left:142.236000px;}
.x4b{left:143.316000px;}
.x7{left:146.592000px;}
.x63{left:162.750000px;}
.x4c{left:191.190000px;}
.x64{left:238.395000px;}
.x4d{left:239.475000px;}
.xc{left:243.465000px;}
.x4e{left:287.715000px;}
.xd{left:309.345000px;}
.x65{left:313.995000px;}
.x4f{left:335.625000px;}
.x13{left:346.110000px;}
.x39{left:350.025000px;}
.x9{left:363.390000px;}
.xe{left:380.310000px;}
.x50{left:383.865000px;}
.x66{left:389.625000px;}
.x3a{left:401.145000px;}
.x51{left:431.745000px;}
.x26{left:435.060000px;}
.x3b{left:451.905000px;}
.xf{left:454.860000px;}
.x67{left:464.865000px;}
.x15{left:469.260000px;}
.x52{left:480.030000px;}
.x3c{left:503.070000px;}
.x53{left:527.910000px;}
.x68{left:540.510000px;}
.x10{left:553.170000px;}
.x3d{left:554.190000px;}
.x28{left:562.170000px;}
.xa{left:571.170000px;}
.x54{left:576.150000px;}
.x17{left:592.770000px;}
.x3e{left:605.340000px;}
.x69{left:615.780000px;}
.x55{left:624.060000px;}
.x11{left:652.935000px;}
.x3f{left:656.460000px;}
.x56{left:672.300000px;}
.x6a{left:691.020000px;}
.x40{left:707.580000px;}
.x57{left:720.180000px;}
.x12{left:753.045000px;}
.x2a{left:755.925000px;}
.x41{left:758.730000px;}
.x19{left:766.725000px;}
.x58{left:768.450000px;}
.x42{left:809.850000px;}
.x59{left:816.690000px;}
.x34{left:839.130000px;}
.x6b{left:841.530000px;}
.x43{left:860.610000px;}
.x5a{left:864.570000px;}
.x44{left:911.775000px;}
.x5b{left:912.855000px;}
.x6c{left:916.815000px;}
.x5c{left:960.735000px;}
.x45{left:967.575000px;}
.x6d{left:992.055000px;}
.x5d{left:1009.005000px;}
.x46{left:1018.725000px;}
.x5e{left:1056.885000px;}
.x6e{left:1067.325000px;}
.x47{left:1074.165000px;}
.x5f{left:1105.125000px;}
.x6f{left:1141.530000px;}
.x60{left:1153.410000px;}
@media print{
.v3{vertical-align:-24.426667pt;}
.v5{vertical-align:-16.640000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v2{vertical-align:24.320000pt;}
.ls16{letter-spacing:-1.536000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls1c{letter-spacing:-1.008000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.018133pt;}
.ls12{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.442880pt;}
.ls11{letter-spacing:0.445440pt;}
.ls1{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.450667pt;}
.lse{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls19{letter-spacing:22.478080pt;}
.ls9{letter-spacing:24.448000pt;}
.ls8{letter-spacing:28.288000pt;}
.ls17{letter-spacing:46.798080pt;}
.ls2{letter-spacing:753.525333pt;}
.ws9{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws0{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws15{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws16{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.313067pt;}
.ws14{word-spacing:-13.890667pt;}
.ws10{word-spacing:-12.800000pt;}
.wse{word-spacing:-12.160000pt;}
.ws13{word-spacing:-11.520000pt;}
.ws12{word-spacing:-10.880000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws18{word-spacing:-9.280000pt;}
.ws17{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.000000pt;}
.wsf{word-spacing:-7.360000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-2.474731pt;}
._1{margin-left:-1.333312pt;}
._0{width:1.280000pt;}
._2{width:2.197248pt;}
._3{width:3.413205pt;}
._5{width:4.533952pt;}
._a{width:5.568000pt;}
._b{width:7.284715pt;}
._d{width:8.256000pt;}
._e{width:9.197696pt;}
._f{width:10.409216pt;}
._6{width:11.904000pt;}
._c{width:13.056021pt;}
._7{width:14.143979pt;}
._11{width:16.960000pt;}
._10{width:17.984000pt;}
._9{width:18.965397pt;}
._8{width:20.170667pt;}
._14{width:227.200000pt;}
._12{width:752.245333pt;}
._13{width:754.938453pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y186{bottom:2.560000pt;}
.y1b0{bottom:2.586667pt;}
.y18b{bottom:2.880000pt;}
.y1b5{bottom:2.920000pt;}
.y1c8{bottom:3.200000pt;}
.y1e3{bottom:3.232000pt;}
.y1d5{bottom:3.520000pt;}
.y71{bottom:3.840000pt;}
.y1e2{bottom:3.872000pt;}
.ycc{bottom:5.760000pt;}
.yd3{bottom:5.786667pt;}
.yd1{bottom:6.080000pt;}
.yf3{bottom:6.400000pt;}
.ye9{bottom:6.720000pt;}
.yfa{bottom:7.040000pt;}
.yf6{bottom:7.080000pt;}
.yea{bottom:7.360000pt;}
.yca{bottom:7.680000pt;}
.yf7{bottom:7.720000pt;}
.y1a2{bottom:9.280000pt;}
.y19e{bottom:9.600000pt;}
.y1a4{bottom:9.626667pt;}
.y1b6{bottom:9.640000pt;}
.y1ca{bottom:9.920000pt;}
.y1c5{bottom:10.240000pt;}
.y1de{bottom:10.242667pt;}
.y1db{bottom:10.266667pt;}
.y1ce{bottom:10.280000pt;}
.y1c2{bottom:10.560000pt;}
.y10c{bottom:11.200000pt;}
.y108{bottom:11.520000pt;}
.y9e{bottom:13.760000pt;}
.y9c{bottom:14.080000pt;}
.y19d{bottom:16.320000pt;}
.y1ac{bottom:16.346667pt;}
.ye6{bottom:16.640000pt;}
.y1bd{bottom:16.642667pt;}
.y10a{bottom:16.666667pt;}
.y1b4{bottom:16.680000pt;}
.yed{bottom:16.960000pt;}
.y1d0{bottom:17.920000pt;}
.y1c3{bottom:18.240000pt;}
.y1dd{bottom:18.242667pt;}
.y1d7{bottom:18.266667pt;}
.y1cd{bottom:18.280000pt;}
.y70{bottom:23.680000pt;}
.ye7{bottom:27.200000pt;}
.yf1{bottom:27.226667pt;}
.yec{bottom:27.520000pt;}
.y1a7{bottom:30.080000pt;}
.y1ab{bottom:30.106667pt;}
.y1cf{bottom:33.600000pt;}
.y6f{bottom:43.520000pt;}
.y7b{bottom:43.560000pt;}
.y7e{bottom:46.426667pt;}
.yf0{bottom:48.346667pt;}
.y11e{bottom:54.432000pt;}
.y12f{bottom:55.712000pt;}
.y110{bottom:56.992000pt;}
.y75{bottom:62.426667pt;}
.y47{bottom:62.432000pt;}
.y6e{bottom:63.360000pt;}
.y7a{bottom:63.400000pt;}
.y1e4{bottom:64.672000pt;}
.y123{bottom:64.992000pt;}
.ybb{bottom:65.632000pt;}
.y7d{bottom:66.266667pt;}
.y73{bottom:66.560000pt;}
.y78{bottom:66.586667pt;}
.y158{bottom:68.192000pt;}
.y180{bottom:68.832000pt;}
.y51{bottom:76.192000pt;}
.y12e{bottom:76.832000pt;}
.y6c{bottom:77.472000pt;}
.y1bf{bottom:78.752000pt;}
.y1e1{bottom:79.072000pt;}
.y99{bottom:80.032000pt;}
.y11d{bottom:81.952000pt;}
.y92{bottom:82.272000pt;}
.y10f{bottom:84.512000pt;}
.yba{bottom:89.312000pt;}
.y17f{bottom:89.952000pt;}
.y46{bottom:90.272000pt;}
.y122{bottom:92.512000pt;}
.y1be{bottom:94.464000pt;}
.y1e0{bottom:96.064000pt;}
.y12d{bottom:98.272000pt;}
.y50{bottom:103.712000pt;}
.y6b{bottom:104.992000pt;}
.y11c{bottom:109.472000pt;}
.y91{bottom:110.112000pt;}
.y157{bottom:110.432000pt;}
.y17e{bottom:111.072000pt;}
.y1df{bottom:113.024000pt;}
.y10e{bottom:116.544000pt;}
.yb9{bottom:116.864000pt;}
.y45{bottom:117.824000pt;}
.y98{bottom:118.464000pt;}
.y12c{bottom:119.424000pt;}
.y1bc{bottom:121.984000pt;}
.y1dc{bottom:129.664000pt;}
.y121{bottom:130.624000pt;}
.y4f{bottom:131.264000pt;}
.y156{bottom:131.584000pt;}
.y17d{bottom:132.224000pt;}
.y6a{bottom:132.864000pt;}
.y11b{bottom:137.346667pt;}
.y90{bottom:137.666667pt;}
.y12b{bottom:140.546667pt;}
.yb8{bottom:144.386667pt;}
.y44{bottom:145.346667pt;}
.y97{bottom:145.986667pt;}
.y1bb{bottom:149.826667pt;}
.y155{bottom:152.706667pt;}
.y17c{bottom:153.346667pt;}
.y10d{bottom:153.986667pt;}
.y120{bottom:158.466667pt;}
.y4e{bottom:159.106667pt;}
.y69{bottom:160.386667pt;}
.y12a{bottom:161.666667pt;}
.y1ba{bottom:163.586667pt;}
.y11a{bottom:164.866667pt;}
.y8f{bottom:165.186667pt;}
.yb7{bottom:171.906667pt;}
.y43{bottom:172.866667pt;}
.y96{bottom:173.506667pt;}
.y154{bottom:173.826667pt;}
.y17b{bottom:174.466667pt;}
.y11f{bottom:176.066667pt;}
.y1b9{bottom:177.373333pt;}
.y129{bottom:181.506667pt;}
.y10b{bottom:185.986667pt;}
.y4d{bottom:186.626667pt;}
.y68{bottom:187.906667pt;}
.y1b8{bottom:191.133333pt;}
.y119{bottom:192.386667pt;}
.y8e{bottom:192.706667pt;}
.y153{bottom:194.946667pt;}
.y17a{bottom:195.906667pt;}
.yb6{bottom:199.426667pt;}
.y42{bottom:200.706667pt;}
.y128{bottom:201.346667pt;}
.y95{bottom:204.546667pt;}
.y4c{bottom:214.146667pt;}
.y67{bottom:215.426667pt;}
.y152{bottom:216.386667pt;}
.y179{bottom:217.026667pt;}
.y109{bottom:217.666667pt;}
.y1b7{bottom:218.653333pt;}
.y118{bottom:219.906667pt;}
.y8d{bottom:220.546667pt;}
.y127{bottom:221.186667pt;}
.y1da{bottom:221.853333pt;}
.yb5{bottom:227.266667pt;}
.y41{bottom:228.226667pt;}
.y94{bottom:231.106667pt;}
.y151{bottom:237.533333pt;}
.y178{bottom:238.173333pt;}
.y126{bottom:241.053333pt;}
.y4b{bottom:241.693333pt;}
.y66{bottom:243.293333pt;}
.y1b3{bottom:246.173333pt;}
.y8c{bottom:248.093333pt;}
.y107{bottom:249.373333pt;}
.y117{bottom:251.933333pt;}
.y1d9{bottom:252.613333pt;}
.yb4{bottom:254.813333pt;}
.y40{bottom:255.773333pt;}
.y93{bottom:258.653333pt;}
.y177{bottom:259.293333pt;}
.y125{bottom:260.893333pt;}
.y4a{bottom:269.533333pt;}
.y65{bottom:270.813333pt;}
.y1b2{bottom:274.053333pt;}
.y8b{bottom:275.613333pt;}
.y150{bottom:277.213333pt;}
.y116{bottom:279.453333pt;}
.y176{bottom:280.413333pt;}
.y106{bottom:281.373333pt;}
.yb3{bottom:282.333333pt;}
.y1d8{bottom:283.013333pt;}
.y3f{bottom:283.293333pt;}
.y124{bottom:292.893333pt;}
.y14f{bottom:295.773333pt;}
.y49{bottom:297.053333pt;}
.y64{bottom:298.333333pt;}
.y175{bottom:301.533333pt;}
.y1b1{bottom:301.573333pt;}
.y8a{bottom:303.133333pt;}
.y105{bottom:304.093333pt;}
.y115{bottom:306.973333pt;}
.yb2{bottom:309.853333pt;}
.y3e{bottom:311.133333pt;}
.y1d6{bottom:313.733333pt;}
.y14e{bottom:316.573333pt;}
.y174{bottom:322.653333pt;}
.y48{bottom:324.573333pt;}
.y63{bottom:325.853333pt;}
.y104{bottom:326.813333pt;}
.y1af{bottom:329.093333pt;}
.y89{bottom:330.973333pt;}
.y114{bottom:331.293333pt;}
.yb1{bottom:337.693333pt;}
.y3d{bottom:338.653333pt;}
.y173{bottom:343.773333pt;}
.y1d4{bottom:344.480000pt;}
.y103{bottom:349.213333pt;}
.y24{bottom:352.133333pt;}
.y62{bottom:353.733333pt;}
.y14d{bottom:356.293333pt;}
.y1ae{bottom:356.640000pt;}
.y88{bottom:358.533333pt;}
.y1d3{bottom:361.440000pt;}
.yb0{bottom:365.253333pt;}
.y3c{bottom:366.213333pt;}
.y102{bottom:371.973333pt;}
.y14c{bottom:374.853333pt;}
.y23{bottom:379.973333pt;}
.y61{bottom:381.253333pt;}
.y1ad{bottom:384.480000pt;}
.y87{bottom:386.053333pt;}
.y172{bottom:386.373333pt;}
.y1d2{bottom:392.160000pt;}
.y14b{bottom:393.093333pt;}
.y3b{bottom:393.733333pt;}
.yaf{bottom:396.293333pt;}
.ye4{bottom:405.253333pt;}
.y22{bottom:407.493333pt;}
.y60{bottom:408.773333pt;}
.y14a{bottom:411.653333pt;}
.y1aa{bottom:412.000000pt;}
.y86{bottom:413.573333pt;}
.y101{bottom:414.213333pt;}
.y199{bottom:417.786667pt;}
.y3a{bottom:421.573333pt;}
.y1d1{bottom:422.586667pt;}
.yae{bottom:422.853333pt;}
.y5f{bottom:427.013333pt;}
.y171{bottom:428.613333pt;}
.y149{bottom:432.453333pt;}
.y21{bottom:435.013333pt;}
.ye3{bottom:436.933333pt;}
.y85{bottom:441.413333pt;}
.y198{bottom:446.906667pt;}
.y39{bottom:449.093333pt;}
.y170{bottom:449.733333pt;}
.y1a9{bottom:453.306667pt;}
.y148{bottom:453.573333pt;}
.y100{bottom:459.653333pt;}
.y20{bottom:462.533333pt;}
.y197{bottom:462.586667pt;}
.y5e{bottom:463.813333pt;}
.yad{bottom:466.373333pt;}
.y84{bottom:468.933333pt;}
.y16f{bottom:470.880000pt;}
.y147{bottom:474.720000pt;}
.y196{bottom:476.346667pt;}
.y38{bottom:476.640000pt;}
.y1a8{bottom:480.826667pt;}
.yff{bottom:482.400000pt;}
.ye2{bottom:484.640000pt;}
.y1f{bottom:490.080000pt;}
.y195{bottom:490.106667pt;}
.y5d{bottom:491.680000pt;}
.y16e{bottom:492.000000pt;}
.yac{bottom:493.920000pt;}
.y146{bottom:495.840000pt;}
.y83{bottom:496.480000pt;}
.y1cc{bottom:499.386667pt;}
.y194{bottom:503.906667pt;}
.y37{bottom:504.160000pt;}
.yfe{bottom:505.120000pt;}
.ye1{bottom:507.360000pt;}
.y1a6{bottom:508.706667pt;}
.y16d{bottom:513.120000pt;}
.y145{bottom:517.280000pt;}
.y193{bottom:517.666667pt;}
.y1e{bottom:517.920000pt;}
.yab{bottom:521.760000pt;}
.y5c{bottom:522.400000pt;}
.y82{bottom:524.000000pt;}
.yfd{bottom:527.840000pt;}
.ye0{bottom:530.080000pt;}
.y1cb{bottom:530.146667pt;}
.y192{bottom:531.746667pt;}
.y36{bottom:532.000000pt;}
.y16c{bottom:534.240000pt;}
.y144{bottom:538.400000pt;}
.y74{bottom:544.160000pt;}
.y1d{bottom:545.440000pt;}
.y191{bottom:545.506667pt;}
.yaa{bottom:549.280000pt;}
.y1a5{bottom:549.986667pt;}
.yfc{bottom:550.240000pt;}
.y81{bottom:551.840000pt;}
.y5b{bottom:552.480000pt;}
.ydf{bottom:552.800000pt;}
.y16b{bottom:555.680000pt;}
.y190{bottom:559.266667pt;}
.y35{bottom:559.520000pt;}
.y1c9{bottom:560.866667pt;}
.y1c{bottom:572.960000pt;}
.y18f{bottom:573.026667pt;}
.yde{bottom:575.200000pt;}
.ya9{bottom:576.800000pt;}
.y77{bottom:577.120000pt;}
.y1a3{bottom:577.506667pt;}
.y80{bottom:579.360000pt;}
.y143{bottom:580.640000pt;}
.y5a{bottom:582.560000pt;}
.y7c{bottom:584.160000pt;}
.y18e{bottom:586.813333pt;}
.y34{bottom:587.040000pt;}
.y1c7{bottom:591.293333pt;}
.yfb{bottom:595.706667pt;}
.ydd{bottom:597.946667pt;}
.y1b{bottom:600.506667pt;}
.y18d{bottom:600.573333pt;}
.y142{bottom:601.786667pt;}
.ya8{bottom:604.346667pt;}
.y1a1{bottom:605.373333pt;}
.yc8{bottom:606.906667pt;}
.y1c6{bottom:608.253333pt;}
.y59{bottom:612.346667pt;}
.y18c{bottom:614.333333pt;}
.y33{bottom:614.586667pt;}
.y7f{bottom:617.466667pt;}
.y16a{bottom:619.066667pt;}
.ydc{bottom:620.666667pt;}
.y141{bottom:622.906667pt;}
.y18a{bottom:628.093333pt;}
.y1a{bottom:628.346667pt;}
.ya7{bottom:631.866667pt;}
.y1a0{bottom:632.893333pt;}
.yc7{bottom:634.426667pt;}
.y72{bottom:637.306667pt;}
.yf9{bottom:637.946667pt;}
.y1c4{bottom:638.973333pt;}
.y169{bottom:640.186667pt;}
.y32{bottom:642.106667pt;}
.y189{bottom:642.173333pt;}
.y58{bottom:642.426667pt;}
.ydb{bottom:643.386667pt;}
.y140{bottom:644.026667pt;}
.y19f{bottom:646.653333pt;}
.y19{bottom:655.866667pt;}
.y188{bottom:655.933333pt;}
.yf8{bottom:660.666667pt;}
.y168{bottom:661.306667pt;}
.yc6{bottom:662.266667pt;}
.y13f{bottom:665.146667pt;}
.yda{bottom:666.106667pt;}
.y187{bottom:669.733333pt;}
.y31{bottom:669.946667pt;}
.y57{bottom:672.506667pt;}
.y19c{bottom:674.213333pt;}
.ya6{bottom:675.386667pt;}
.y167{bottom:682.426667pt;}
.y18{bottom:683.386667pt;}
.y185{bottom:683.493333pt;}
.y13e{bottom:686.586667pt;}
.yd9{bottom:688.826667pt;}
.yc5{bottom:689.786667pt;}
.y6{bottom:689.980133pt;}
.y79{bottom:692.986667pt;}
.y30{bottom:697.466667pt;}
.y19b{bottom:701.733333pt;}
.y56{bottom:702.586667pt;}
.yf5{bottom:702.906667pt;}
.y166{bottom:703.546667pt;}
.y76{bottom:707.106667pt;}
.y13d{bottom:707.746667pt;}
.y5{bottom:709.820133pt;}
.y17{bottom:710.946667pt;}
.yd8{bottom:711.266667pt;}
.y184{bottom:711.973333pt;}
.y1c1{bottom:714.853333pt;}
.yc4{bottom:717.346667pt;}
.ya5{bottom:719.266667pt;}
.y2f{bottom:725.026667pt;}
.yf4{bottom:725.666667pt;}
.y13c{bottom:728.866667pt;}
.y4{bottom:729.660000pt;}
.y19a{bottom:730.213333pt;}
.y183{bottom:730.533333pt;}
.y1c0{bottom:731.813333pt;}
.y55{bottom:732.386667pt;}
.yd7{bottom:733.986667pt;}
.y6d{bottom:735.266667pt;}
.y16{bottom:738.786667pt;}
.yc3{bottom:744.866667pt;}
.y165{bottom:746.146667pt;}
.ya4{bottom:746.786667pt;}
.y182{bottom:749.093333pt;}
.y13b{bottom:749.986667pt;}
.y2e{bottom:752.546667pt;}
.yd6{bottom:756.706667pt;}
.y3{bottom:760.380000pt;}
.y54{bottom:762.466667pt;}
.y15{bottom:766.306667pt;}
.y164{bottom:767.266667pt;}
.yf2{bottom:767.906667pt;}
.y13a{bottom:771.106667pt;}
.yc2{bottom:772.386667pt;}
.ya3{bottom:778.466667pt;}
.yd5{bottom:779.426667pt;}
.y2d{bottom:780.386667pt;}
.y163{bottom:788.386667pt;}
.y139{bottom:792.226667pt;}
.y53{bottom:792.546667pt;}
.y14{bottom:793.826667pt;}
.yc1{bottom:800.226667pt;}
.yd4{bottom:802.146667pt;}
.y2c{bottom:807.906667pt;}
.y162{bottom:809.506667pt;}
.yef{bottom:810.466667pt;}
.y138{bottom:813.346667pt;}
.y13{bottom:821.346667pt;}
.ya2{bottom:821.986667pt;}
.y52{bottom:822.306667pt;}
.y2{bottom:823.780000pt;}
.yd2{bottom:824.866667pt;}
.yc0{bottom:827.773333pt;}
.y161{bottom:830.653333pt;}
.y113{bottom:831.293333pt;}
.y137{bottom:834.493333pt;}
.y2b{bottom:835.453333pt;}
.yd0{bottom:847.293333pt;}
.y12{bottom:849.213333pt;}
.y160{bottom:851.773333pt;}
.ya1{bottom:854.013333pt;}
.ybf{bottom:855.293333pt;}
.y136{bottom:855.613333pt;}
.y112{bottom:861.693333pt;}
.y2a{bottom:862.973333pt;}
.ya0{bottom:869.693333pt;}
.ycf{bottom:870.013333pt;}
.y15f{bottom:872.893333pt;}
.yee{bottom:873.853333pt;}
.y11{bottom:876.733333pt;}
.y135{bottom:877.053333pt;}
.ybe{bottom:882.813333pt;}
.y1{bottom:887.460000pt;}
.y29{bottom:890.813333pt;}
.yce{bottom:892.733333pt;}
.y111{bottom:893.693333pt;}
.y15e{bottom:894.333333pt;}
.y134{bottom:898.173333pt;}
.y9f{bottom:898.813333pt;}
.y10{bottom:904.253333pt;}
.ybd{bottom:910.653333pt;}
.ycd{bottom:915.453333pt;}
.yeb{bottom:916.093333pt;}
.y181{bottom:916.413333pt;}
.y28{bottom:918.333333pt;}
.y133{bottom:919.293333pt;}
.y9d{bottom:928.573333pt;}
.yf{bottom:931.773333pt;}
.y15d{bottom:936.573333pt;}
.ycb{bottom:938.173333pt;}
.y132{bottom:940.413333pt;}
.y27{bottom:945.893333pt;}
.ybc{bottom:948.773333pt;}
.y9b{bottom:957.413333pt;}
.y15c{bottom:957.733333pt;}
.ye8{bottom:958.693333pt;}
.ye{bottom:959.653333pt;}
.yc9{bottom:961.573333pt;}
.y26{bottom:973.413333pt;}
.y15b{bottom:978.853333pt;}
.ye5{bottom:982.693333pt;}
.yd{bottom:987.173333pt;}
.y9{bottom:988.278667pt;}
.y15a{bottom:999.973333pt;}
.y131{bottom:1002.533333pt;}
.y9a{bottom:1004.133333pt;}
.y8{bottom:1004.278667pt;}
.y25{bottom:1011.813333pt;}
.yc{bottom:1014.693333pt;}
.y7{bottom:1020.278667pt;}
.y159{bottom:1021.093333pt;}
.y130{bottom:1022.373333pt;}
.yb{bottom:1042.213333pt;}
.ya{bottom:1061.093333pt;}
.h24{height:13.760000pt;}
.h27{height:13.792000pt;}
.h28{height:14.080000pt;}
.h37{height:16.640000pt;}
.h33{height:16.960000pt;}
.h38{height:16.992000pt;}
.h17{height:22.400000pt;}
.h16{height:22.432000pt;}
.h15{height:22.720000pt;}
.h14{height:22.752000pt;}
.h13{height:26.240000pt;}
.h29{height:27.520000pt;}
.h2a{height:27.552000pt;}
.h2e{height:27.840000pt;}
.h2b{height:27.872000pt;}
.h11{height:28.800000pt;}
.h10{height:28.832000pt;}
.hf{height:29.120000pt;}
.h36{height:30.400000pt;}
.h34{height:30.432000pt;}
.h2f{height:30.720000pt;}
.h31{height:30.752000pt;}
.h1f{height:31.680000pt;}
.h1e{height:31.712000pt;}
.h1d{height:32.000000pt;}
.h5{height:37.973333pt;}
.h20{height:41.112500pt;}
.h2c{height:41.280000pt;}
.h2d{height:41.312000pt;}
.h19{height:42.240000pt;}
.h1c{height:42.560000pt;}
.h1a{height:42.592000pt;}
.h25{height:42.678750pt;}
.h2{height:43.375000pt;}
.h9{height:44.437500pt;}
.h6{height:44.648750pt;}
.h21{height:44.687500pt;}
.h26{height:44.718125pt;}
.h35{height:46.080000pt;}
.h30{height:47.171250pt;}
.h7{height:51.663750pt;}
.h3{height:56.156250pt;}
.h4{height:56.156783pt;}
.h32{height:56.890625pt;}
.h12{height:61.383125pt;}
.h18{height:61.489792pt;}
.h1b{height:63.392000pt;}
.hb{height:77.472000pt;}
.hc{height:78.392000pt;}
.h8{height:78.400000pt;}
.hd{height:78.432000pt;}
.he{height:81.312000pt;}
.ha{height:81.632000pt;}
.h23{height:793.333333pt;}
.h22{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:41.280000pt;}
.w20{width:42.560000pt;}
.w23{width:42.592000pt;}
.w22{width:42.880000pt;}
.w21{width:42.912000pt;}
.w1a{width:45.120000pt;}
.w19{width:45.440000pt;}
.w1b{width:45.472000pt;}
.w1d{width:49.280000pt;}
.w1c{width:49.600000pt;}
.w15{width:53.792000pt;}
.w6{width:58.560000pt;}
.w24{width:61.760000pt;}
.w7{width:63.072000pt;}
.w11{width:64.352000pt;}
.w2b{width:65.280000pt;}
.w2a{width:65.952000pt;}
.w8{width:66.272000pt;}
.w28{width:66.880000pt;}
.w29{width:66.912000pt;}
.w27{width:67.200000pt;}
.w26{width:67.232000pt;}
.wc{width:83.872000pt;}
.w9{width:87.392000pt;}
.wa{width:88.672000pt;}
.wb{width:88.992000pt;}
.w1f{width:89.632000pt;}
.w25{width:106.912000pt;}
.we{width:109.472000pt;}
.wf{width:109.792000pt;}
.w13{width:112.992000pt;}
.w2{width:119.712000pt;}
.w4{width:122.624000pt;}
.w3{width:125.792000pt;}
.w5{width:149.506667pt;}
.w10{width:154.626667pt;}
.w14{width:172.226667pt;}
.w18{width:184.706667pt;}
.wd{width:259.613333pt;}
.w12{width:338.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w16{width:1122.560000pt;}
.w17{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:2.560000pt;}
.x1b{left:4.160000pt;}
.xb{left:7.360000pt;}
.x16{left:8.320000pt;}
.x8{left:9.602667pt;}
.x49{left:11.200000pt;}
.x18{left:13.440000pt;}
.x4a{left:15.040000pt;}
.x2c{left:16.640000pt;}
.x29{left:18.240000pt;}
.x24{left:19.200000pt;}
.x61{left:20.480000pt;}
.x1f{left:22.080000pt;}
.x1a{left:25.280000pt;}
.x30{left:26.880000pt;}
.x62{left:29.760000pt;}
.x48{left:31.354667pt;}
.x20{left:32.320000pt;}
.x27{left:36.160000pt;}
.x37{left:37.760000pt;}
.x21{left:40.640000pt;}
.x31{left:42.560000pt;}
.x1c{left:44.800000pt;}
.x2b{left:46.400000pt;}
.x1{left:48.032000pt;}
.x25{left:49.280000pt;}
.x3{left:51.584000pt;}
.x1d{left:54.746667pt;}
.x2e{left:56.320000pt;}
.x32{left:58.920000pt;}
.x23{left:61.480000pt;}
.x22{left:63.400000pt;}
.x2{left:66.912000pt;}
.x2d{left:71.080000pt;}
.x5{left:72.032000pt;}
.x33{left:73.640000pt;}
.x2f{left:76.200000pt;}
.x1e{left:77.160000pt;}
.x35{left:80.032000pt;}
.x36{left:84.192000pt;}
.x4{left:85.792000pt;}
.x6{left:96.032000pt;}
.x38{left:126.432000pt;}
.x4b{left:127.392000pt;}
.x7{left:130.304000pt;}
.x63{left:144.666667pt;}
.x4c{left:169.946667pt;}
.x64{left:211.906667pt;}
.x4d{left:212.866667pt;}
.xc{left:216.413333pt;}
.x4e{left:255.746667pt;}
.xd{left:274.973333pt;}
.x65{left:279.106667pt;}
.x4f{left:298.333333pt;}
.x13{left:307.653333pt;}
.x39{left:311.133333pt;}
.x9{left:323.013333pt;}
.xe{left:338.053333pt;}
.x50{left:341.213333pt;}
.x66{left:346.333333pt;}
.x3a{left:356.573333pt;}
.x51{left:383.773333pt;}
.x26{left:386.720000pt;}
.x3b{left:401.693333pt;}
.xf{left:404.320000pt;}
.x67{left:413.213333pt;}
.x15{left:417.120000pt;}
.x52{left:426.693333pt;}
.x3c{left:447.173333pt;}
.x53{left:469.253333pt;}
.x68{left:480.453333pt;}
.x10{left:491.706667pt;}
.x3d{left:492.613333pt;}
.x28{left:499.706667pt;}
.xa{left:507.706667pt;}
.x54{left:512.133333pt;}
.x17{left:526.906667pt;}
.x3e{left:538.080000pt;}
.x69{left:547.360000pt;}
.x55{left:554.720000pt;}
.x11{left:580.386667pt;}
.x3f{left:583.520000pt;}
.x56{left:597.600000pt;}
.x6a{left:614.240000pt;}
.x40{left:628.960000pt;}
.x57{left:640.160000pt;}
.x12{left:669.373333pt;}
.x2a{left:671.933333pt;}
.x41{left:674.426667pt;}
.x19{left:681.533333pt;}
.x58{left:683.066667pt;}
.x42{left:719.866667pt;}
.x59{left:725.946667pt;}
.x34{left:745.893333pt;}
.x6b{left:748.026667pt;}
.x43{left:764.986667pt;}
.x5a{left:768.506667pt;}
.x44{left:810.466667pt;}
.x5b{left:811.426667pt;}
.x6c{left:814.946667pt;}
.x5c{left:853.986667pt;}
.x45{left:860.066667pt;}
.x6d{left:881.826667pt;}
.x5d{left:896.893333pt;}
.x46{left:905.533333pt;}
.x5e{left:939.453333pt;}
.x6e{left:948.733333pt;}
.x47{left:954.813333pt;}
.x5f{left:982.333333pt;}
.x6f{left:1014.693333pt;}
.x60{left:1025.253333pt;}
}




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