
    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_df673196a690955293880dfd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6f75dbd24cc54d05f2511d84.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_17b12b1f2cfc602a52203590.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_371e8839800872b8ebb575a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_02d2ea26051a66a5a60fa029.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_9af248782a6d75d167ff6826.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_36699e877d9ff4b2c889bbc9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_5cbf1283c091cac9270388c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_b2bedd9fe82035cd22cc81d7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708000;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_fef8918f37849a430fb03601.woff')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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_2e398523cfd2b702dc1026d1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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);}
.v5{vertical-align:-23.760000px;}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.812600px;}
.v2{vertical-align:24.192000px;}
.v1{vertical-align:184.800000px;}
.ls31{letter-spacing:-4.248000px;}
.ls28{letter-spacing:-4.104000px;}
.ls25{letter-spacing:-3.600000px;}
.ls22{letter-spacing:-3.000000px;}
.ls2d{letter-spacing:-2.808000px;}
.ls2b{letter-spacing:-2.376000px;}
.ls33{letter-spacing:-1.872000px;}
.ls2e{letter-spacing:-0.792000px;}
.ls27{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls34{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.151200px;}
.ls20{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.324000px;}
.lse{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.008000px;}
.ls2f{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.152000px;}
.ls2{letter-spacing:2.850000px;}
.ls32{letter-spacing:2.928000px;}
.ls1{letter-spacing:4.260000px;}
.ls4{letter-spacing:4.464000px;}
.ls9{letter-spacing:4.512000px;}
.ls26{letter-spacing:4.752000px;}
.ls1f{letter-spacing:5.040000px;}
.ls24{letter-spacing:7.200000px;}
.ls35{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls7{letter-spacing:8.460000px;}
.ls3{letter-spacing:10.740000px;}
.ls5{letter-spacing:10.813586px;}
.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;}
}
.ws38{word-spacing:-72.000000px;}
.ws3{word-spacing:-25.320000px;}
.ws52{word-spacing:-23.274000px;}
.ws46{word-spacing:-20.232000px;}
.ws49{word-spacing:-20.160000px;}
.ws2c{word-spacing:-20.088000px;}
.ws2{word-spacing:-18.867000px;}
.ws1e{word-spacing:-18.648000px;}
.ws1d{word-spacing:-18.576000px;}
.ws12{word-spacing:-18.360000px;}
.ws11{word-spacing:-18.144000px;}
.ws1f{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.784000px;}
.ws2e{word-spacing:-17.712000px;}
.ws47{word-spacing:-17.640000px;}
.ws1c{word-spacing:-17.496000px;}
.ws45{word-spacing:-17.424000px;}
.ws34{word-spacing:-16.860000px;}
.ws39{word-spacing:-16.632000px;}
.ws3b{word-spacing:-16.128000px;}
.ws1{word-spacing:-14.820000px;}
.ws53{word-spacing:-14.520000px;}
.ws2d{word-spacing:-14.162400px;}
.ws42{word-spacing:-14.011200px;}
.ws48{word-spacing:-13.536000px;}
.ws14{word-spacing:-13.488000px;}
.ws4f{word-spacing:-13.008000px;}
.ws13{word-spacing:-11.856000px;}
.ws35{word-spacing:-11.802000px;}
.ws4e{word-spacing:-11.376000px;}
.wsf{word-spacing:-8.496000px;}
.ws1b{word-spacing:-8.460000px;}
.ws36{word-spacing:-7.200000px;}
.wsc{word-spacing:-4.512000px;}
.ws26{word-spacing:-1.152000px;}
.ws27{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.936000px;}
.ws21{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.792000px;}
.ws2b{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.ws31{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.432000px;}
.ws18{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.072000px;}
.ws33{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws3a{word-spacing:0.072000px;}
.wsd{word-spacing:0.120000px;}
.ws2f{word-spacing:0.144000px;}
.ws20{word-spacing:0.216000px;}
.wsb{word-spacing:0.240000px;}
.ws29{word-spacing:0.288000px;}
.ws54{word-spacing:0.300000px;}
.wse{word-spacing:0.360000px;}
.ws3e{word-spacing:0.432000px;}
.ws51{word-spacing:0.480000px;}
.ws3f{word-spacing:0.504000px;}
.ws4c{word-spacing:0.576000px;}
.ws16{word-spacing:0.648000px;}
.ws3c{word-spacing:0.720000px;}
.ws44{word-spacing:0.792000px;}
.ws4d{word-spacing:1.440000px;}
.ws4b{word-spacing:1.512000px;}
.ws8{word-spacing:1.800000px;}
.ws50{word-spacing:1.872000px;}
.ws4a{word-spacing:1.944000px;}
.ws40{word-spacing:2.376000px;}
.ws37{word-spacing:2.400000px;}
.ws43{word-spacing:2.808000px;}
.ws30{word-spacing:3.000000px;}
.ws55{word-spacing:3.900000px;}
.ws9{word-spacing:3.990000px;}
.ws3d{word-spacing:4.104000px;}
.ws7{word-spacing:4.200000px;}
.ws28{word-spacing:4.536000px;}
.ws32{word-spacing:5.040000px;}
.ws41{word-spacing:7.200000px;}
.ws5{word-spacing:17.160000px;}
.ws6{word-spacing:73.140000px;}
.ws0{word-spacing:146.196000px;}
._b{margin-left:-948.820800px;}
._4{margin-left:-69.756000px;}
._12{margin-left:-68.160000px;}
._17{margin-left:-17.712000px;}
._19{margin-left:-13.887600px;}
._15{margin-left:-12.492000px;}
._13{margin-left:-10.599600px;}
._6{margin-left:-8.520000px;}
._d{margin-left:-6.782400px;}
._9{margin-left:-5.722800px;}
._16{margin-left:-4.680000px;}
._a{margin-left:-3.666000px;}
._8{margin-left:-2.664000px;}
._1{margin-left:-1.068000px;}
._2{width:1.944000px;}
._3{width:3.174000px;}
._0{width:4.284000px;}
._f{width:5.421600px;}
._e{width:6.984000px;}
._7{width:8.280000px;}
._c{width:9.446400px;}
._5{width:11.280000px;}
._10{width:12.600000px;}
._18{width:13.795500px;}
._11{width:31.645500px;}
._1a{width:46.032000px;}
._14{width:157.986000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.700000px;}
.fs9{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs5{font-size:432.730200px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y44{bottom:117.000000px;}
.y21{bottom:119.656500px;}
.y1cd{bottom:121.044000px;}
.yb3{bottom:121.207650px;}
.y19f{bottom:121.344000px;}
.y69{bottom:121.592100px;}
.y161{bottom:123.222000px;}
.y43{bottom:132.000000px;}
.y19e{bottom:135.744000px;}
.y1cc{bottom:136.188000px;}
.yf6{bottom:136.207500px;}
.yb2{bottom:139.500150px;}
.y1f4{bottom:140.988150px;}
.y1e{bottom:142.738500px;}
.y20{bottom:142.750500px;}
.y68{bottom:144.092100px;}
.y160{bottom:144.966000px;}
.y8d{bottom:147.000000px;}
.y19d{bottom:150.144000px;}
.y42{bottom:151.207500px;}
.y1cb{bottom:151.332000px;}
.yf5{bottom:154.500000px;}
.yb1{bottom:154.500150px;}
.y1f3{bottom:159.738150px;}
.y13b{bottom:162.000000px;}
.y19c{bottom:164.544000px;}
.y1f{bottom:165.844500px;}
.y8c{bottom:166.207500px;}
.y1ca{bottom:166.476000px;}
.y67{bottom:166.592100px;}
.y15f{bottom:166.710000px;}
.yf4{bottom:173.707500px;}
.yb0{bottom:173.707650px;}
.y13a{bottom:177.000000px;}
.y1f2{bottom:178.488150px;}
.y19b{bottom:178.944000px;}
.y179{bottom:181.207500px;}
.y1c9{bottom:181.620000px;}
.y118{bottom:182.994000px;}
.y15e{bottom:188.454000px;}
.y66{bottom:189.092100px;}
.yaf{bottom:192.000150px;}
.y19a{bottom:193.344000px;}
.y139{bottom:196.207500px;}
.y1c8{bottom:196.764000px;}
.y41{bottom:196.944000px;}
.y1f1{bottom:197.238150px;}
.y117{bottom:204.900000px;}
.y8b{bottom:205.820100px;}
.yd2{bottom:207.000000px;}
.y199{bottom:207.744000px;}
.y15d{bottom:210.198000px;}
.yae{bottom:211.207650px;}
.y65{bottom:211.592100px;}
.y1c7{bottom:211.908000px;}
.y138{bottom:214.500000px;}
.yf3{bottom:216.966000px;}
.y40{bottom:219.750000px;}
.y198{bottom:222.144000px;}
.y178{bottom:223.442100px;}
.y116{bottom:226.800000px;}
.y1c6{bottom:227.052000px;}
.y8a{bottom:227.564100px;}
.yd1{bottom:229.500000px;}
.y15c{bottom:231.942000px;}
.y64{bottom:234.092100px;}
.y1f0{bottom:234.738150px;}
.y1d{bottom:235.288650px;}
.y197{bottom:236.544000px;}
.yf2{bottom:239.160000px;}
.y1c5{bottom:242.196000px;}
.y3f{bottom:242.550000px;}
.y137{bottom:244.500000px;}
.y177{bottom:245.042100px;}
.y89{bottom:249.308100px;}
.yd0{bottom:252.000000px;}
.y15b{bottom:253.686000px;}
.y1c{bottom:254.788650px;}
.yad{bottom:256.296900px;}
.y63{bottom:256.592100px;}
.y196{bottom:257.316000px;}
.y1c4{bottom:257.340000px;}
.y136{bottom:259.500000px;}
.yf1{bottom:261.354000px;}
.y1ef{bottom:264.738150px;}
.y176{bottom:266.642100px;}
.y115{bottom:270.576000px;}
.y88{bottom:271.052100px;}
.y1c3{bottom:272.484000px;}
.yac{bottom:274.446900px;}
.ycf{bottom:274.500000px;}
.y15a{bottom:275.430000px;}
.y135{bottom:278.707500px;}
.y62{bottom:279.092100px;}
.y1b{bottom:282.791400px;}
.y1ee{bottom:283.488150px;}
.yf0{bottom:283.548000px;}
.y1c2{bottom:287.628000px;}
.y3e{bottom:288.090000px;}
.y175{bottom:288.242100px;}
.y114{bottom:292.482000px;}
.yab{bottom:292.596900px;}
.y87{bottom:292.796100px;}
.yce{bottom:297.000000px;}
.y159{bottom:297.174000px;}
.y195{bottom:301.116000px;}
.y61{bottom:301.592100px;}
.y1ed{bottom:302.238150px;}
.y1a{bottom:302.291400px;}
.y1c1{bottom:302.772000px;}
.yef{bottom:305.742000px;}
.y174{bottom:309.842100px;}
.y3d{bottom:310.896000px;}
.y113{bottom:314.388000px;}
.y86{bottom:314.540100px;}
.y194{bottom:315.516000px;}
.y1c0{bottom:317.916000px;}
.y158{bottom:318.918000px;}
.ycd{bottom:319.500000px;}
.yaa{bottom:319.581900px;}
.y1ec{bottom:320.988150px;}
.y19{bottom:321.791400px;}
.y134{bottom:323.596050px;}
.y60{bottom:324.092100px;}
.yee{bottom:327.936000px;}
.y173{bottom:331.442100px;}
.y1bf{bottom:333.060000px;}
.y3c{bottom:333.702000px;}
.y85{bottom:336.284100px;}
.y112{bottom:336.294000px;}
.y193{bottom:336.300000px;}
.ya9{bottom:337.731900px;}
.y1eb{bottom:339.738150px;}
.y157{bottom:340.662000px;}
.y18{bottom:341.291400px;}
.ycc{bottom:342.000000px;}
.y133{bottom:345.646050px;}
.y5f{bottom:346.592100px;}
.y1be{bottom:348.204000px;}
.yed{bottom:350.130000px;}
.y172{bottom:353.042100px;}
.ya8{bottom:355.881900px;}
.y3b{bottom:356.508000px;}
.y84{bottom:358.028100px;}
.y111{bottom:358.044000px;}
.y1ea{bottom:358.488150px;}
.y17{bottom:360.791400px;}
.y156{bottom:362.406000px;}
.y1bd{bottom:363.348000px;}
.ycb{bottom:364.500000px;}
.y132{bottom:367.696050px;}
.y5e{bottom:369.092100px;}
.yec{bottom:372.324000px;}
.y171{bottom:374.642100px;}
.y1e9{bottom:377.238150px;}
.y1bc{bottom:378.492000px;}
.y3a{bottom:379.314000px;}
.y83{bottom:379.772100px;}
.y110{bottom:379.950000px;}
.y192{bottom:379.956000px;}
.y16{bottom:380.291400px;}
.ya7{bottom:382.865400px;}
.y155{bottom:384.150000px;}
.yca{bottom:387.000000px;}
.y131{bottom:389.746050px;}
.y5d{bottom:391.592100px;}
.y1bb{bottom:393.636000px;}
.yeb{bottom:394.518000px;}
.y1e8{bottom:395.988150px;}
.y170{bottom:396.242100px;}
.y15{bottom:399.791400px;}
.ya6{bottom:401.015400px;}
.y82{bottom:401.516100px;}
.y10f{bottom:401.856000px;}
.y191{bottom:401.862000px;}
.y39{bottom:402.120000px;}
.y154{bottom:405.894000px;}
.y1ba{bottom:408.780000px;}
.yc9{bottom:409.500000px;}
.y130{bottom:411.796050px;}
.y5c{bottom:414.092100px;}
.y1e7{bottom:414.738150px;}
.yea{bottom:416.712000px;}
.ya5{bottom:419.165400px;}
.y14{bottom:419.291400px;}
.y81{bottom:423.260100px;}
.y10e{bottom:423.762000px;}
.y190{bottom:423.768000px;}
.y1b9{bottom:423.924000px;}
.y38{bottom:424.926000px;}
.y16f{bottom:426.346050px;}
.y153{bottom:427.638000px;}
.yc8{bottom:432.000000px;}
.y1e6{bottom:433.488150px;}
.y12f{bottom:433.846050px;}
.y5b{bottom:436.592100px;}
.ye9{bottom:438.906000px;}
.y1b8{bottom:439.068000px;}
.y80{bottom:445.004100px;}
.y10d{bottom:445.668000px;}
.y18f{bottom:445.674000px;}
.ya4{bottom:445.820400px;}
.y13{bottom:447.296400px;}
.y37{bottom:447.732000px;}
.y152{bottom:449.382000px;}
.y1e5{bottom:452.238150px;}
.y16e{bottom:452.700000px;}
.y1b7{bottom:454.212000px;}
.yc7{bottom:454.500000px;}
.y12e{bottom:455.896050px;}
.ye8{bottom:461.202000px;}
.ya3{bottom:463.970400px;}
.y7f{bottom:466.748100px;}
.y10c{bottom:467.574000px;}
.y18e{bottom:467.580000px;}
.y5a{bottom:467.596050px;}
.y1b6{bottom:469.356000px;}
.y36{bottom:470.538000px;}
.y1e4{bottom:470.988150px;}
.y151{bottom:471.126000px;}
.y16d{bottom:474.300000px;}
.yc6{bottom:477.000000px;}
.y12d{bottom:477.946050px;}
.ya2{bottom:482.120400px;}
.ye7{bottom:483.396000px;}
.y1b5{bottom:484.500000px;}
.y59{bottom:486.346050px;}
.y7e{bottom:488.492100px;}
.y10b{bottom:489.480000px;}
.y18d{bottom:489.486000px;}
.y1e3{bottom:489.738150px;}
.y150{bottom:492.870000px;}
.y35{bottom:493.344000px;}
.y12{bottom:493.796400px;}
.y16c{bottom:495.900000px;}
.yc5{bottom:499.500000px;}
.y12c{bottom:499.996050px;}
.ya1{bottom:500.270400px;}
.y58{bottom:505.096050px;}
.ye6{bottom:505.590000px;}
.y1e2{bottom:508.488150px;}
.y10a{bottom:511.386000px;}
.y18c{bottom:511.392000px;}
.y11{bottom:513.296400px;}
.y1b4{bottom:514.500000px;}
.y14f{bottom:514.614000px;}
.y34{bottom:516.042000px;}
.y16b{bottom:517.500000px;}
.y7d{bottom:518.746050px;}
.yc4{bottom:522.000000px;}
.y57{bottom:523.846050px;}
.y1e1{bottom:527.238150px;}
.ya0{bottom:527.252250px;}
.ye5{bottom:527.784000px;}
.y1b3{bottom:529.500000px;}
.y12b{bottom:530.550000px;}
.y109{bottom:533.292000px;}
.y18b{bottom:533.298000px;}
.y14e{bottom:536.358000px;}
.y7c{bottom:536.746050px;}
.y33{bottom:538.848000px;}
.y16a{bottom:539.100000px;}
.y10{bottom:541.299300px;}
.y56{bottom:542.596050px;}
.y1b2{bottom:544.500000px;}
.y9f{bottom:545.402250px;}
.y1e0{bottom:545.988150px;}
.ye4{bottom:549.978000px;}
.y12a{bottom:552.600000px;}
.y7b{bottom:554.746050px;}
.y108{bottom:555.198000px;}
.y18a{bottom:555.204000px;}
.y14d{bottom:558.102000px;}
.y1b1{bottom:559.500000px;}
.y169{bottom:560.700000px;}
.yf{bottom:560.799300px;}
.y55{bottom:561.346050px;}
.y32{bottom:561.654000px;}
.y1df{bottom:564.738150px;}
.yc3{bottom:567.000000px;}
.ye3{bottom:572.172000px;}
.y9e{bottom:572.387250px;}
.y1b0{bottom:574.500000px;}
.y129{bottom:574.650000px;}
.y107{bottom:577.104000px;}
.y189{bottom:577.110000px;}
.y14c{bottom:579.846000px;}
.ye{bottom:580.299300px;}
.y7a{bottom:581.292000px;}
.y168{bottom:582.300000px;}
.y1de{bottom:583.488150px;}
.y31{bottom:584.460000px;}
.y54{bottom:588.588000px;}
.yc2{bottom:589.500000px;}
.ye2{bottom:594.366000px;}
.y128{bottom:596.700000px;}
.y106{bottom:599.010000px;}
.y188{bottom:599.016000px;}
.y9c{bottom:599.369700px;}
.yd{bottom:599.799300px;}
.y14b{bottom:601.590000px;}
.y1dd{bottom:602.238150px;}
.y79{bottom:603.036000px;}
.y167{bottom:603.900000px;}
.y1af{bottom:604.500000px;}
.y30{bottom:607.266000px;}
.y53{bottom:611.088000px;}
.yc1{bottom:612.000000px;}
.ye1{bottom:616.560000px;}
.y127{bottom:618.750000px;}
.yc{bottom:619.299300px;}
.y1ae{bottom:619.500000px;}
.y105{bottom:620.916000px;}
.y187{bottom:620.922000px;}
.y1dc{bottom:620.988150px;}
.y14a{bottom:623.334000px;}
.y78{bottom:624.780000px;}
.y166{bottom:625.500000px;}
.y9b{bottom:626.024700px;}
.y2f{bottom:630.072000px;}
.y52{bottom:633.588000px;}
.yc0{bottom:634.500000px;}
.ye0{bottom:638.754000px;}
.yb{bottom:638.799300px;}
.y1db{bottom:639.738150px;}
.y126{bottom:640.800000px;}
.y104{bottom:642.822000px;}
.y186{bottom:642.828000px;}
.y9a{bottom:644.174700px;}
.y149{bottom:645.078000px;}
.y77{bottom:646.524000px;}
.y165{bottom:647.100000px;}
.y1ad{bottom:649.500000px;}
.y2e{bottom:652.878000px;}
.y51{bottom:656.088000px;}
.ybf{bottom:657.000000px;}
.ya{bottom:658.299300px;}
.y1da{bottom:658.488150px;}
.ydf{bottom:660.948000px;}
.y99{bottom:662.324700px;}
.y125{bottom:662.850000px;}
.y1ac{bottom:664.500000px;}
.y103{bottom:664.728000px;}
.y185{bottom:664.734000px;}
.y148{bottom:666.822000px;}
.y76{bottom:668.268000px;}
.y164{bottom:668.700000px;}
.y2d{bottom:675.684000px;}
.y1d9{bottom:677.238150px;}
.y50{bottom:678.588000px;}
.ybe{bottom:679.500000px;}
.y98{bottom:680.474700px;}
.yde{bottom:683.142000px;}
.y124{bottom:684.900000px;}
.y9{bottom:686.304300px;}
.y102{bottom:686.634000px;}
.y184{bottom:686.640000px;}
.y147{bottom:688.566000px;}
.y75{bottom:690.012000px;}
.y163{bottom:690.300000px;}
.y1ab{bottom:694.500000px;}
.y1d8{bottom:695.988150px;}
.y2c{bottom:698.490000px;}
.y97{bottom:698.624700px;}
.y9d{bottom:698.627250px;}
.y4f{bottom:701.088000px;}
.ybd{bottom:702.000000px;}
.ydd{bottom:705.336000px;}
.y123{bottom:706.950000px;}
.y101{bottom:708.540000px;}
.y183{bottom:708.546000px;}
.y1aa{bottom:709.500000px;}
.y146{bottom:710.310000px;}
.y74{bottom:711.756000px;}
.y162{bottom:711.900000px;}
.y1d7{bottom:714.738150px;}
.y2b{bottom:721.296000px;}
.y4e{bottom:723.588000px;}
.ybc{bottom:724.500000px;}
.y96{bottom:725.609700px;}
.ydc{bottom:727.530000px;}
.y122{bottom:729.000000px;}
.y100{bottom:730.446000px;}
.y182{bottom:730.452000px;}
.y145{bottom:732.054000px;}
.y8{bottom:732.804300px;}
.y1d6{bottom:733.488150px;}
.y73{bottom:733.500000px;}
.y1a9{bottom:739.500000px;}
.y95{bottom:743.759700px;}
.y2a{bottom:744.102000px;}
.y4d{bottom:746.088000px;}
.ybb{bottom:747.000000px;}
.ydb{bottom:749.724000px;}
.y121{bottom:751.050000px;}
.y1d5{bottom:752.238150px;}
.yff{bottom:752.352000px;}
.y181{bottom:752.358000px;}
.y7{bottom:752.454300px;}
.y144{bottom:753.798000px;}
.y1a8{bottom:754.500000px;}
.y72{bottom:755.100000px;}
.y29{bottom:766.908000px;}
.y4c{bottom:768.588000px;}
.yba{bottom:769.500000px;}
.y1d4{bottom:770.988150px;}
.yda{bottom:771.918000px;}
.y120{bottom:773.100000px;}
.yfe{bottom:774.258000px;}
.y180{bottom:774.264000px;}
.y143{bottom:775.542000px;}
.y6{bottom:775.704300px;}
.y71{bottom:776.700000px;}
.y94{bottom:783.495000px;}
.y1a7{bottom:784.500000px;}
.y28{bottom:789.714000px;}
.y1d3{bottom:789.738150px;}
.y4b{bottom:791.088000px;}
.yb9{bottom:792.000000px;}
.yd9{bottom:794.112000px;}
.y11f{bottom:795.150000px;}
.yfd{bottom:796.164000px;}
.y17f{bottom:796.170000px;}
.y142{bottom:797.286000px;}
.y70{bottom:798.300000px;}
.y1a6{bottom:799.500000px;}
.y1d2{bottom:808.488150px;}
.y27{bottom:812.520000px;}
.y4a{bottom:813.588000px;}
.yb8{bottom:814.500000px;}
.yd8{bottom:816.306000px;}
.y11e{bottom:817.200000px;}
.yfc{bottom:818.070000px;}
.y17e{bottom:818.076000px;}
.y141{bottom:819.030000px;}
.y6f{bottom:819.900000px;}
.y1d1{bottom:827.238150px;}
.y93{bottom:828.495000px;}
.y1a5{bottom:829.500000px;}
.y26{bottom:835.326000px;}
.y49{bottom:836.088000px;}
.yb7{bottom:837.000000px;}
.yd7{bottom:838.524000px;}
.y11d{bottom:839.250000px;}
.yfb{bottom:839.976000px;}
.y17d{bottom:839.982000px;}
.y140{bottom:840.774000px;}
.y6e{bottom:841.500000px;}
.y5{bottom:843.450000px;}
.y1a4{bottom:844.500000px;}
.y1d0{bottom:845.988150px;}
.y92{bottom:847.245000px;}
.y25{bottom:858.132000px;}
.y48{bottom:858.588000px;}
.yb6{bottom:859.500000px;}
.yd6{bottom:860.718000px;}
.y11c{bottom:861.300000px;}
.yfa{bottom:861.882000px;}
.y17c{bottom:861.888000px;}
.y13f{bottom:862.518000px;}
.y6d{bottom:863.100000px;}
.y1cf{bottom:864.738150px;}
.y91{bottom:865.995000px;}
.y4{bottom:874.050000px;}
.y1a3{bottom:874.500000px;}
.y24{bottom:880.938000px;}
.y47{bottom:881.088000px;}
.yb5{bottom:882.000000px;}
.yd5{bottom:882.912000px;}
.y11b{bottom:883.350000px;}
.yf9{bottom:883.788000px;}
.y17b{bottom:883.794000px;}
.y13e{bottom:884.262000px;}
.y6c{bottom:884.700000px;}
.y90{bottom:884.745000px;}
.y1a2{bottom:889.500000px;}
.y1ce{bottom:896.244150px;}
.y23{bottom:903.744000px;}
.y46{bottom:903.894000px;}
.yb4{bottom:904.500000px;}
.yd4{bottom:905.106000px;}
.y11a{bottom:905.400000px;}
.yf8{bottom:905.694000px;}
.y17a{bottom:905.700000px;}
.y13d{bottom:906.006000px;}
.y6b{bottom:906.300000px;}
.y8f{bottom:912.000000px;}
.y1a1{bottom:919.500000px;}
.y22{bottom:926.550000px;}
.y45{bottom:926.700000px;}
.y3{bottom:927.000000px;}
.yd3{bottom:927.300000px;}
.y119{bottom:927.450000px;}
.yf7{bottom:927.600000px;}
.y13c{bottom:927.750000px;}
.y6a{bottom:927.900000px;}
.y8e{bottom:930.750000px;}
.y1a0{bottom:934.500000px;}
.h9{height:24.630908px;}
.hf{height:30.313623px;}
.hb{height:33.117188px;}
.h13{height:39.072000px;}
.h2{height:39.326660px;}
.ha{height:40.757812px;}
.h6{height:41.396484px;}
.h14{height:45.852539px;}
.he{height:48.794339px;}
.hc{height:48.840000px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.hd{height:55.469086px;}
.h5{height:61.136719px;}
.h8{height:61.568719px;}
.h11{height:66.459703px;}
.h10{height:66.555703px;}
.h12{height:67.179703px;}
.h3{height:101.894531px;}
.h7{height:302.911140px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xa{left:73.827750px;}
.x8{left:82.368000px;}
.xe{left:84.501900px;}
.x3{left:97.263750px;}
.xf{left:107.883900px;}
.x6{left:112.500000px;}
.x4{left:115.748250px;}
.x7{left:127.404000px;}
.xc{left:129.523950px;}
.x2{left:135.000000px;}
.x9{left:142.263750px;}
.xd{left:152.887950px;}
.x10{left:180.526950px;}
.xb{left:335.112750px;}
.x5{left:625.781250px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.611200pt;}
.v2{vertical-align:21.504000pt;}
.v1{vertical-align:164.266667pt;}
.ls31{letter-spacing:-3.776000pt;}
.ls28{letter-spacing:-3.648000pt;}
.ls25{letter-spacing:-3.200000pt;}
.ls22{letter-spacing:-2.666667pt;}
.ls2d{letter-spacing:-2.496000pt;}
.ls2b{letter-spacing:-2.112000pt;}
.ls33{letter-spacing:-1.664000pt;}
.ls2e{letter-spacing:-0.704000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls34{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.134400pt;}
.ls20{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.024000pt;}
.ls2{letter-spacing:2.533333pt;}
.ls32{letter-spacing:2.602667pt;}
.ls1{letter-spacing:3.786667pt;}
.ls4{letter-spacing:3.968000pt;}
.ls9{letter-spacing:4.010667pt;}
.ls26{letter-spacing:4.224000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls24{letter-spacing:6.400000pt;}
.ls35{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls7{letter-spacing:7.520000pt;}
.ls3{letter-spacing:9.546667pt;}
.ls5{letter-spacing:9.612076pt;}
.ws38{word-spacing:-64.000000pt;}
.ws3{word-spacing:-22.506667pt;}
.ws52{word-spacing:-20.688000pt;}
.ws46{word-spacing:-17.984000pt;}
.ws49{word-spacing:-17.920000pt;}
.ws2c{word-spacing:-17.856000pt;}
.ws2{word-spacing:-16.770667pt;}
.ws1e{word-spacing:-16.576000pt;}
.ws1d{word-spacing:-16.512000pt;}
.ws12{word-spacing:-16.320000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws2e{word-spacing:-15.744000pt;}
.ws47{word-spacing:-15.680000pt;}
.ws1c{word-spacing:-15.552000pt;}
.ws45{word-spacing:-15.488000pt;}
.ws34{word-spacing:-14.986667pt;}
.ws39{word-spacing:-14.784000pt;}
.ws3b{word-spacing:-14.336000pt;}
.ws1{word-spacing:-13.173333pt;}
.ws53{word-spacing:-12.906667pt;}
.ws2d{word-spacing:-12.588800pt;}
.ws42{word-spacing:-12.454400pt;}
.ws48{word-spacing:-12.032000pt;}
.ws14{word-spacing:-11.989333pt;}
.ws4f{word-spacing:-11.562667pt;}
.ws13{word-spacing:-10.538667pt;}
.ws35{word-spacing:-10.490667pt;}
.ws4e{word-spacing:-10.112000pt;}
.wsf{word-spacing:-7.552000pt;}
.ws1b{word-spacing:-7.520000pt;}
.ws36{word-spacing:-6.400000pt;}
.wsc{word-spacing:-4.010667pt;}
.ws26{word-spacing:-1.024000pt;}
.ws27{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.832000pt;}
.ws21{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.704000pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws31{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.384000pt;}
.ws18{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws33{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.064000pt;}
.wsd{word-spacing:0.106667pt;}
.ws2f{word-spacing:0.128000pt;}
.ws20{word-spacing:0.192000pt;}
.wsb{word-spacing:0.213333pt;}
.ws29{word-spacing:0.256000pt;}
.ws54{word-spacing:0.266667pt;}
.wse{word-spacing:0.320000pt;}
.ws3e{word-spacing:0.384000pt;}
.ws51{word-spacing:0.426667pt;}
.ws3f{word-spacing:0.448000pt;}
.ws4c{word-spacing:0.512000pt;}
.ws16{word-spacing:0.576000pt;}
.ws3c{word-spacing:0.640000pt;}
.ws44{word-spacing:0.704000pt;}
.ws4d{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.344000pt;}
.ws8{word-spacing:1.600000pt;}
.ws50{word-spacing:1.664000pt;}
.ws4a{word-spacing:1.728000pt;}
.ws40{word-spacing:2.112000pt;}
.ws37{word-spacing:2.133333pt;}
.ws43{word-spacing:2.496000pt;}
.ws30{word-spacing:2.666667pt;}
.ws55{word-spacing:3.466667pt;}
.ws9{word-spacing:3.546667pt;}
.ws3d{word-spacing:3.648000pt;}
.ws7{word-spacing:3.733333pt;}
.ws28{word-spacing:4.032000pt;}
.ws32{word-spacing:4.480000pt;}
.ws41{word-spacing:6.400000pt;}
.ws5{word-spacing:15.253333pt;}
.ws6{word-spacing:65.013333pt;}
.ws0{word-spacing:129.952000pt;}
._b{margin-left:-843.396267pt;}
._4{margin-left:-62.005333pt;}
._12{margin-left:-60.586667pt;}
._17{margin-left:-15.744000pt;}
._19{margin-left:-12.344533pt;}
._15{margin-left:-11.104000pt;}
._13{margin-left:-9.421867pt;}
._6{margin-left:-7.573333pt;}
._d{margin-left:-6.028800pt;}
._9{margin-left:-5.086933pt;}
._16{margin-left:-4.160000pt;}
._a{margin-left:-3.258667pt;}
._8{margin-left:-2.368000pt;}
._1{margin-left:-0.949333pt;}
._2{width:1.728000pt;}
._3{width:2.821333pt;}
._0{width:3.808000pt;}
._f{width:4.819200pt;}
._e{width:6.208000pt;}
._7{width:7.360000pt;}
._c{width:8.396800pt;}
._5{width:10.026667pt;}
._10{width:11.200000pt;}
._18{width:12.262667pt;}
._11{width:28.129333pt;}
._1a{width:40.917333pt;}
._14{width:140.432000pt;}
.fs7{font-size:31.733333pt;}
.fs9{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:384.649067pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y44{bottom:104.000000pt;}
.y21{bottom:106.361333pt;}
.y1cd{bottom:107.594667pt;}
.yb3{bottom:107.740133pt;}
.y19f{bottom:107.861333pt;}
.y69{bottom:108.081867pt;}
.y161{bottom:109.530667pt;}
.y43{bottom:117.333333pt;}
.y19e{bottom:120.661333pt;}
.y1cc{bottom:121.056000pt;}
.yf6{bottom:121.073333pt;}
.yb2{bottom:124.000133pt;}
.y1f4{bottom:125.322800pt;}
.y1e{bottom:126.878667pt;}
.y20{bottom:126.889333pt;}
.y68{bottom:128.081867pt;}
.y160{bottom:128.858667pt;}
.y8d{bottom:130.666667pt;}
.y19d{bottom:133.461333pt;}
.y42{bottom:134.406667pt;}
.y1cb{bottom:134.517333pt;}
.yf5{bottom:137.333333pt;}
.yb1{bottom:137.333467pt;}
.y1f3{bottom:141.989467pt;}
.y13b{bottom:144.000000pt;}
.y19c{bottom:146.261333pt;}
.y1f{bottom:147.417333pt;}
.y8c{bottom:147.740000pt;}
.y1ca{bottom:147.978667pt;}
.y67{bottom:148.081867pt;}
.y15f{bottom:148.186667pt;}
.yf4{bottom:154.406667pt;}
.yb0{bottom:154.406800pt;}
.y13a{bottom:157.333333pt;}
.y1f2{bottom:158.656133pt;}
.y19b{bottom:159.061333pt;}
.y179{bottom:161.073333pt;}
.y1c9{bottom:161.440000pt;}
.y118{bottom:162.661333pt;}
.y15e{bottom:167.514667pt;}
.y66{bottom:168.081867pt;}
.yaf{bottom:170.666800pt;}
.y19a{bottom:171.861333pt;}
.y139{bottom:174.406667pt;}
.y1c8{bottom:174.901333pt;}
.y41{bottom:175.061333pt;}
.y1f1{bottom:175.322800pt;}
.y117{bottom:182.133333pt;}
.y8b{bottom:182.951200pt;}
.yd2{bottom:184.000000pt;}
.y199{bottom:184.661333pt;}
.y15d{bottom:186.842667pt;}
.yae{bottom:187.740133pt;}
.y65{bottom:188.081867pt;}
.y1c7{bottom:188.362667pt;}
.y138{bottom:190.666667pt;}
.yf3{bottom:192.858667pt;}
.y40{bottom:195.333333pt;}
.y198{bottom:197.461333pt;}
.y178{bottom:198.615200pt;}
.y116{bottom:201.600000pt;}
.y1c6{bottom:201.824000pt;}
.y8a{bottom:202.279200pt;}
.yd1{bottom:204.000000pt;}
.y15c{bottom:206.170667pt;}
.y64{bottom:208.081867pt;}
.y1f0{bottom:208.656133pt;}
.y1d{bottom:209.145467pt;}
.y197{bottom:210.261333pt;}
.yf2{bottom:212.586667pt;}
.y1c5{bottom:215.285333pt;}
.y3f{bottom:215.600000pt;}
.y137{bottom:217.333333pt;}
.y177{bottom:217.815200pt;}
.y89{bottom:221.607200pt;}
.yd0{bottom:224.000000pt;}
.y15b{bottom:225.498667pt;}
.y1c{bottom:226.478800pt;}
.yad{bottom:227.819467pt;}
.y63{bottom:228.081867pt;}
.y196{bottom:228.725333pt;}
.y1c4{bottom:228.746667pt;}
.y136{bottom:230.666667pt;}
.yf1{bottom:232.314667pt;}
.y1ef{bottom:235.322800pt;}
.y176{bottom:237.015200pt;}
.y115{bottom:240.512000pt;}
.y88{bottom:240.935200pt;}
.y1c3{bottom:242.208000pt;}
.yac{bottom:243.952800pt;}
.ycf{bottom:244.000000pt;}
.y15a{bottom:244.826667pt;}
.y135{bottom:247.740000pt;}
.y62{bottom:248.081867pt;}
.y1b{bottom:251.370133pt;}
.y1ee{bottom:251.989467pt;}
.yf0{bottom:252.042667pt;}
.y1c2{bottom:255.669333pt;}
.y3e{bottom:256.080000pt;}
.y175{bottom:256.215200pt;}
.y114{bottom:259.984000pt;}
.yab{bottom:260.086133pt;}
.y87{bottom:260.263200pt;}
.yce{bottom:264.000000pt;}
.y159{bottom:264.154667pt;}
.y195{bottom:267.658667pt;}
.y61{bottom:268.081867pt;}
.y1ed{bottom:268.656133pt;}
.y1a{bottom:268.703467pt;}
.y1c1{bottom:269.130667pt;}
.yef{bottom:271.770667pt;}
.y174{bottom:275.415200pt;}
.y3d{bottom:276.352000pt;}
.y113{bottom:279.456000pt;}
.y86{bottom:279.591200pt;}
.y194{bottom:280.458667pt;}
.y1c0{bottom:282.592000pt;}
.y158{bottom:283.482667pt;}
.ycd{bottom:284.000000pt;}
.yaa{bottom:284.072800pt;}
.y1ec{bottom:285.322800pt;}
.y19{bottom:286.036800pt;}
.y134{bottom:287.640933pt;}
.y60{bottom:288.081867pt;}
.yee{bottom:291.498667pt;}
.y173{bottom:294.615200pt;}
.y1bf{bottom:296.053333pt;}
.y3c{bottom:296.624000pt;}
.y85{bottom:298.919200pt;}
.y112{bottom:298.928000pt;}
.y193{bottom:298.933333pt;}
.ya9{bottom:300.206133pt;}
.y1eb{bottom:301.989467pt;}
.y157{bottom:302.810667pt;}
.y18{bottom:303.370133pt;}
.ycc{bottom:304.000000pt;}
.y133{bottom:307.240933pt;}
.y5f{bottom:308.081867pt;}
.y1be{bottom:309.514667pt;}
.yed{bottom:311.226667pt;}
.y172{bottom:313.815200pt;}
.ya8{bottom:316.339467pt;}
.y3b{bottom:316.896000pt;}
.y84{bottom:318.247200pt;}
.y111{bottom:318.261333pt;}
.y1ea{bottom:318.656133pt;}
.y17{bottom:320.703467pt;}
.y156{bottom:322.138667pt;}
.y1bd{bottom:322.976000pt;}
.ycb{bottom:324.000000pt;}
.y132{bottom:326.840933pt;}
.y5e{bottom:328.081867pt;}
.yec{bottom:330.954667pt;}
.y171{bottom:333.015200pt;}
.y1e9{bottom:335.322800pt;}
.y1bc{bottom:336.437333pt;}
.y3a{bottom:337.168000pt;}
.y83{bottom:337.575200pt;}
.y110{bottom:337.733333pt;}
.y192{bottom:337.738667pt;}
.y16{bottom:338.036800pt;}
.ya7{bottom:340.324800pt;}
.y155{bottom:341.466667pt;}
.yca{bottom:344.000000pt;}
.y131{bottom:346.440933pt;}
.y5d{bottom:348.081867pt;}
.y1bb{bottom:349.898667pt;}
.yeb{bottom:350.682667pt;}
.y1e8{bottom:351.989467pt;}
.y170{bottom:352.215200pt;}
.y15{bottom:355.370133pt;}
.ya6{bottom:356.458133pt;}
.y82{bottom:356.903200pt;}
.y10f{bottom:357.205333pt;}
.y191{bottom:357.210667pt;}
.y39{bottom:357.440000pt;}
.y154{bottom:360.794667pt;}
.y1ba{bottom:363.360000pt;}
.yc9{bottom:364.000000pt;}
.y130{bottom:366.040933pt;}
.y5c{bottom:368.081867pt;}
.y1e7{bottom:368.656133pt;}
.yea{bottom:370.410667pt;}
.ya5{bottom:372.591467pt;}
.y14{bottom:372.703467pt;}
.y81{bottom:376.231200pt;}
.y10e{bottom:376.677333pt;}
.y190{bottom:376.682667pt;}
.y1b9{bottom:376.821333pt;}
.y38{bottom:377.712000pt;}
.y16f{bottom:378.974267pt;}
.y153{bottom:380.122667pt;}
.yc8{bottom:384.000000pt;}
.y1e6{bottom:385.322800pt;}
.y12f{bottom:385.640933pt;}
.y5b{bottom:388.081867pt;}
.ye9{bottom:390.138667pt;}
.y1b8{bottom:390.282667pt;}
.y80{bottom:395.559200pt;}
.y10d{bottom:396.149333pt;}
.y18f{bottom:396.154667pt;}
.ya4{bottom:396.284800pt;}
.y13{bottom:397.596800pt;}
.y37{bottom:397.984000pt;}
.y152{bottom:399.450667pt;}
.y1e5{bottom:401.989467pt;}
.y16e{bottom:402.400000pt;}
.y1b7{bottom:403.744000pt;}
.yc7{bottom:404.000000pt;}
.y12e{bottom:405.240933pt;}
.ye8{bottom:409.957333pt;}
.ya3{bottom:412.418133pt;}
.y7f{bottom:414.887200pt;}
.y10c{bottom:415.621333pt;}
.y18e{bottom:415.626667pt;}
.y5a{bottom:415.640933pt;}
.y1b6{bottom:417.205333pt;}
.y36{bottom:418.256000pt;}
.y1e4{bottom:418.656133pt;}
.y151{bottom:418.778667pt;}
.y16d{bottom:421.600000pt;}
.yc6{bottom:424.000000pt;}
.y12d{bottom:424.840933pt;}
.ya2{bottom:428.551467pt;}
.ye7{bottom:429.685333pt;}
.y1b5{bottom:430.666667pt;}
.y59{bottom:432.307600pt;}
.y7e{bottom:434.215200pt;}
.y10b{bottom:435.093333pt;}
.y18d{bottom:435.098667pt;}
.y1e3{bottom:435.322800pt;}
.y150{bottom:438.106667pt;}
.y35{bottom:438.528000pt;}
.y12{bottom:438.930133pt;}
.y16c{bottom:440.800000pt;}
.yc5{bottom:444.000000pt;}
.y12c{bottom:444.440933pt;}
.ya1{bottom:444.684800pt;}
.y58{bottom:448.974267pt;}
.ye6{bottom:449.413333pt;}
.y1e2{bottom:451.989467pt;}
.y10a{bottom:454.565333pt;}
.y18c{bottom:454.570667pt;}
.y11{bottom:456.263467pt;}
.y1b4{bottom:457.333333pt;}
.y14f{bottom:457.434667pt;}
.y34{bottom:458.704000pt;}
.y16b{bottom:460.000000pt;}
.y7d{bottom:461.107600pt;}
.yc4{bottom:464.000000pt;}
.y57{bottom:465.640933pt;}
.y1e1{bottom:468.656133pt;}
.ya0{bottom:468.668667pt;}
.ye5{bottom:469.141333pt;}
.y1b3{bottom:470.666667pt;}
.y12b{bottom:471.600000pt;}
.y109{bottom:474.037333pt;}
.y18b{bottom:474.042667pt;}
.y14e{bottom:476.762667pt;}
.y7c{bottom:477.107600pt;}
.y33{bottom:478.976000pt;}
.y16a{bottom:479.200000pt;}
.y10{bottom:481.154933pt;}
.y56{bottom:482.307600pt;}
.y1b2{bottom:484.000000pt;}
.y9f{bottom:484.802000pt;}
.y1e0{bottom:485.322800pt;}
.ye4{bottom:488.869333pt;}
.y12a{bottom:491.200000pt;}
.y7b{bottom:493.107600pt;}
.y108{bottom:493.509333pt;}
.y18a{bottom:493.514667pt;}
.y14d{bottom:496.090667pt;}
.y1b1{bottom:497.333333pt;}
.y169{bottom:498.400000pt;}
.yf{bottom:498.488267pt;}
.y55{bottom:498.974267pt;}
.y32{bottom:499.248000pt;}
.y1df{bottom:501.989467pt;}
.yc3{bottom:504.000000pt;}
.ye3{bottom:508.597333pt;}
.y9e{bottom:508.788667pt;}
.y1b0{bottom:510.666667pt;}
.y129{bottom:510.800000pt;}
.y107{bottom:512.981333pt;}
.y189{bottom:512.986667pt;}
.y14c{bottom:515.418667pt;}
.ye{bottom:515.821600pt;}
.y7a{bottom:516.704000pt;}
.y168{bottom:517.600000pt;}
.y1de{bottom:518.656133pt;}
.y31{bottom:519.520000pt;}
.y54{bottom:523.189333pt;}
.yc2{bottom:524.000000pt;}
.ye2{bottom:528.325333pt;}
.y128{bottom:530.400000pt;}
.y106{bottom:532.453333pt;}
.y188{bottom:532.458667pt;}
.y9c{bottom:532.773067pt;}
.yd{bottom:533.154933pt;}
.y14b{bottom:534.746667pt;}
.y1dd{bottom:535.322800pt;}
.y79{bottom:536.032000pt;}
.y167{bottom:536.800000pt;}
.y1af{bottom:537.333333pt;}
.y30{bottom:539.792000pt;}
.y53{bottom:543.189333pt;}
.yc1{bottom:544.000000pt;}
.ye1{bottom:548.053333pt;}
.y127{bottom:550.000000pt;}
.yc{bottom:550.488267pt;}
.y1ae{bottom:550.666667pt;}
.y105{bottom:551.925333pt;}
.y187{bottom:551.930667pt;}
.y1dc{bottom:551.989467pt;}
.y14a{bottom:554.074667pt;}
.y78{bottom:555.360000pt;}
.y166{bottom:556.000000pt;}
.y9b{bottom:556.466400pt;}
.y2f{bottom:560.064000pt;}
.y52{bottom:563.189333pt;}
.yc0{bottom:564.000000pt;}
.ye0{bottom:567.781333pt;}
.yb{bottom:567.821600pt;}
.y1db{bottom:568.656133pt;}
.y126{bottom:569.600000pt;}
.y104{bottom:571.397333pt;}
.y186{bottom:571.402667pt;}
.y9a{bottom:572.599733pt;}
.y149{bottom:573.402667pt;}
.y77{bottom:574.688000pt;}
.y165{bottom:575.200000pt;}
.y1ad{bottom:577.333333pt;}
.y2e{bottom:580.336000pt;}
.y51{bottom:583.189333pt;}
.ybf{bottom:584.000000pt;}
.ya{bottom:585.154933pt;}
.y1da{bottom:585.322800pt;}
.ydf{bottom:587.509333pt;}
.y99{bottom:588.733067pt;}
.y125{bottom:589.200000pt;}
.y1ac{bottom:590.666667pt;}
.y103{bottom:590.869333pt;}
.y185{bottom:590.874667pt;}
.y148{bottom:592.730667pt;}
.y76{bottom:594.016000pt;}
.y164{bottom:594.400000pt;}
.y2d{bottom:600.608000pt;}
.y1d9{bottom:601.989467pt;}
.y50{bottom:603.189333pt;}
.ybe{bottom:604.000000pt;}
.y98{bottom:604.866400pt;}
.yde{bottom:607.237333pt;}
.y124{bottom:608.800000pt;}
.y9{bottom:610.048267pt;}
.y102{bottom:610.341333pt;}
.y184{bottom:610.346667pt;}
.y147{bottom:612.058667pt;}
.y75{bottom:613.344000pt;}
.y163{bottom:613.600000pt;}
.y1ab{bottom:617.333333pt;}
.y1d8{bottom:618.656133pt;}
.y2c{bottom:620.880000pt;}
.y97{bottom:620.999733pt;}
.y9d{bottom:621.002000pt;}
.y4f{bottom:623.189333pt;}
.ybd{bottom:624.000000pt;}
.ydd{bottom:626.965333pt;}
.y123{bottom:628.400000pt;}
.y101{bottom:629.813333pt;}
.y183{bottom:629.818667pt;}
.y1aa{bottom:630.666667pt;}
.y146{bottom:631.386667pt;}
.y74{bottom:632.672000pt;}
.y162{bottom:632.800000pt;}
.y1d7{bottom:635.322800pt;}
.y2b{bottom:641.152000pt;}
.y4e{bottom:643.189333pt;}
.ybc{bottom:644.000000pt;}
.y96{bottom:644.986400pt;}
.ydc{bottom:646.693333pt;}
.y122{bottom:648.000000pt;}
.y100{bottom:649.285333pt;}
.y182{bottom:649.290667pt;}
.y145{bottom:650.714667pt;}
.y8{bottom:651.381600pt;}
.y1d6{bottom:651.989467pt;}
.y73{bottom:652.000000pt;}
.y1a9{bottom:657.333333pt;}
.y95{bottom:661.119733pt;}
.y2a{bottom:661.424000pt;}
.y4d{bottom:663.189333pt;}
.ybb{bottom:664.000000pt;}
.ydb{bottom:666.421333pt;}
.y121{bottom:667.600000pt;}
.y1d5{bottom:668.656133pt;}
.yff{bottom:668.757333pt;}
.y181{bottom:668.762667pt;}
.y7{bottom:668.848267pt;}
.y144{bottom:670.042667pt;}
.y1a8{bottom:670.666667pt;}
.y72{bottom:671.200000pt;}
.y29{bottom:681.696000pt;}
.y4c{bottom:683.189333pt;}
.yba{bottom:684.000000pt;}
.y1d4{bottom:685.322800pt;}
.yda{bottom:686.149333pt;}
.y120{bottom:687.200000pt;}
.yfe{bottom:688.229333pt;}
.y180{bottom:688.234667pt;}
.y143{bottom:689.370667pt;}
.y6{bottom:689.514933pt;}
.y71{bottom:690.400000pt;}
.y94{bottom:696.440000pt;}
.y1a7{bottom:697.333333pt;}
.y28{bottom:701.968000pt;}
.y1d3{bottom:701.989467pt;}
.y4b{bottom:703.189333pt;}
.yb9{bottom:704.000000pt;}
.yd9{bottom:705.877333pt;}
.y11f{bottom:706.800000pt;}
.yfd{bottom:707.701333pt;}
.y17f{bottom:707.706667pt;}
.y142{bottom:708.698667pt;}
.y70{bottom:709.600000pt;}
.y1a6{bottom:710.666667pt;}
.y1d2{bottom:718.656133pt;}
.y27{bottom:722.240000pt;}
.y4a{bottom:723.189333pt;}
.yb8{bottom:724.000000pt;}
.yd8{bottom:725.605333pt;}
.y11e{bottom:726.400000pt;}
.yfc{bottom:727.173333pt;}
.y17e{bottom:727.178667pt;}
.y141{bottom:728.026667pt;}
.y6f{bottom:728.800000pt;}
.y1d1{bottom:735.322800pt;}
.y93{bottom:736.440000pt;}
.y1a5{bottom:737.333333pt;}
.y26{bottom:742.512000pt;}
.y49{bottom:743.189333pt;}
.yb7{bottom:744.000000pt;}
.yd7{bottom:745.354667pt;}
.y11d{bottom:746.000000pt;}
.yfb{bottom:746.645333pt;}
.y17d{bottom:746.650667pt;}
.y140{bottom:747.354667pt;}
.y6e{bottom:748.000000pt;}
.y5{bottom:749.733333pt;}
.y1a4{bottom:750.666667pt;}
.y1d0{bottom:751.989467pt;}
.y92{bottom:753.106667pt;}
.y25{bottom:762.784000pt;}
.y48{bottom:763.189333pt;}
.yb6{bottom:764.000000pt;}
.yd6{bottom:765.082667pt;}
.y11c{bottom:765.600000pt;}
.yfa{bottom:766.117333pt;}
.y17c{bottom:766.122667pt;}
.y13f{bottom:766.682667pt;}
.y6d{bottom:767.200000pt;}
.y1cf{bottom:768.656133pt;}
.y91{bottom:769.773333pt;}
.y4{bottom:776.933333pt;}
.y1a3{bottom:777.333333pt;}
.y24{bottom:783.056000pt;}
.y47{bottom:783.189333pt;}
.yb5{bottom:784.000000pt;}
.yd5{bottom:784.810667pt;}
.y11b{bottom:785.200000pt;}
.yf9{bottom:785.589333pt;}
.y17b{bottom:785.594667pt;}
.y13e{bottom:786.010667pt;}
.y6c{bottom:786.400000pt;}
.y90{bottom:786.440000pt;}
.y1a2{bottom:790.666667pt;}
.y1ce{bottom:796.661467pt;}
.y23{bottom:803.328000pt;}
.y46{bottom:803.461333pt;}
.yb4{bottom:804.000000pt;}
.yd4{bottom:804.538667pt;}
.y11a{bottom:804.800000pt;}
.yf8{bottom:805.061333pt;}
.y17a{bottom:805.066667pt;}
.y13d{bottom:805.338667pt;}
.y6b{bottom:805.600000pt;}
.y8f{bottom:810.666667pt;}
.y1a1{bottom:817.333333pt;}
.y22{bottom:823.600000pt;}
.y45{bottom:823.733333pt;}
.y3{bottom:824.000000pt;}
.yd3{bottom:824.266667pt;}
.y119{bottom:824.400000pt;}
.yf7{bottom:824.533333pt;}
.y13c{bottom:824.666667pt;}
.y6a{bottom:824.800000pt;}
.y8e{bottom:827.333333pt;}
.y1a0{bottom:830.666667pt;}
.h9{height:21.894141pt;}
.hf{height:26.945443pt;}
.hb{height:29.437500pt;}
.h13{height:34.730667pt;}
.h2{height:34.957031pt;}
.ha{height:36.229167pt;}
.h6{height:36.796875pt;}
.h14{height:40.757812pt;}
.he{height:43.372746pt;}
.hc{height:43.413333pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.hd{height:49.305854pt;}
.h5{height:54.343750pt;}
.h8{height:54.727750pt;}
.h11{height:59.075292pt;}
.h10{height:59.160625pt;}
.h12{height:59.715292pt;}
.h3{height:90.572917pt;}
.h7{height:269.254347pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xa{left:65.624667pt;}
.x8{left:73.216000pt;}
.xe{left:75.112800pt;}
.x3{left:86.456667pt;}
.xf{left:95.896800pt;}
.x6{left:100.000000pt;}
.x4{left:102.887333pt;}
.x7{left:113.248000pt;}
.xc{left:115.132400pt;}
.x2{left:120.000000pt;}
.x9{left:126.456667pt;}
.xd{left:135.900400pt;}
.x10{left:160.468400pt;}
.xb{left:297.878000pt;}
.x5{left:556.250000pt;}
}




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