
    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_7b706779bf0c72836224de62.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_9f00012bfc5405e546ff7e76.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_f4da06014d9303818e77d864.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_05041d992facb407986176c7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.182129;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_96fb08d2d48bdb72805cc9a1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_3c8fc4606ef627ad508e76bd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_8c77769328be3d63df0b8cf4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.070312;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);}
.v3{vertical-align:-11.982000px;}
.v4{vertical-align:-10.977000px;}
.v5{vertical-align:-9.327600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.962000px;}
.v2{vertical-align:17.047200px;}
.ls8{letter-spacing:-4.212000px;}
.lsf{letter-spacing:-3.420000px;}
.ls14{letter-spacing:-2.484000px;}
.ls1c{letter-spacing:-2.346000px;}
.ls27{letter-spacing:-2.277000px;}
.ls31{letter-spacing:-2.205000px;}
.ls1a{letter-spacing:-2.001000px;}
.ls22{letter-spacing:-1.932000px;}
.ls15{letter-spacing:-1.587000px;}
.ls1d{letter-spacing:-1.380000px;}
.ls17{letter-spacing:-1.104000px;}
.lsa{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.552000px;}
.ls26{letter-spacing:-0.414000px;}
.ls1e{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.120000px;}
.ls28{letter-spacing:-0.081000px;}
.ls10{letter-spacing:-0.069960px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.ls12{letter-spacing:0.001863px;}
.ls2b{letter-spacing:0.002301px;}
.ls11{letter-spacing:0.002463px;}
.ls9{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.743400px;}
.ls6{letter-spacing:1.260000px;}
.ls20{letter-spacing:2.145900px;}
.ls2d{letter-spacing:2.211300px;}
.ls19{letter-spacing:2.346000px;}
.ls5{letter-spacing:2.400000px;}
.ls1f{letter-spacing:2.504700px;}
.ls18{letter-spacing:3.519000px;}
.ls29{letter-spacing:3.906000px;}
.ls2a{letter-spacing:4.006800px;}
.ls1{letter-spacing:4.125000px;}
.ls0{letter-spacing:4.200000px;}
.ls25{letter-spacing:4.319400px;}
.ls13{letter-spacing:4.650000px;}
.ls3{letter-spacing:5.460000px;}
.ls30{letter-spacing:5.550000px;}
.lsb{letter-spacing:5.760000px;}
.lsc{letter-spacing:5.880000px;}
.ls21{letter-spacing:5.920200px;}
.ls2{letter-spacing:6.000000px;}
.ls2f{letter-spacing:6.300000px;}
.ls2c{letter-spacing:7.654500px;}
.ls16{letter-spacing:8.160156px;}
.ls1b{letter-spacing:8.160756px;}
.ls23{letter-spacing:9.039000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-30.456000px;}
.ws3d{word-spacing:-26.625000px;}
.ws18{word-spacing:-25.725000px;}
.ws0{word-spacing:-25.200000px;}
.ws3f{word-spacing:-22.860000px;}
.ws7{word-spacing:-22.740000px;}
.ws35{word-spacing:-22.680000px;}
.ws5{word-spacing:-22.620000px;}
.ws2{word-spacing:-22.464000px;}
.ws36{word-spacing:-21.609000px;}
.ws4{word-spacing:-19.824000px;}
.ws1c{word-spacing:-19.389000px;}
.ws39{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.262000px;}
.ws14{word-spacing:-17.043000px;}
.ws41{word-spacing:-16.860000px;}
.ws2f{word-spacing:-16.491000px;}
.ws1b{word-spacing:-15.939000px;}
.ws3b{word-spacing:-15.561000px;}
.ws22{word-spacing:-15.456000px;}
.ws1d{word-spacing:-15.174000px;}
.ws28{word-spacing:-15.111000px;}
.ws21{word-spacing:-15.042000px;}
.ws6{word-spacing:-14.820000px;}
.ws33{word-spacing:-14.766000px;}
.ws8{word-spacing:-14.700000px;}
.ws19{word-spacing:-14.559000px;}
.ws3e{word-spacing:-13.356000px;}
.ws15{word-spacing:-13.338000px;}
.ws13{word-spacing:-11.303787px;}
.ws3a{word-spacing:-10.320849px;}
.ws40{word-spacing:-9.829380px;}
.ws12{word-spacing:-9.759420px;}
.ws3c{word-spacing:-6.300000px;}
.ws9{word-spacing:-6.000000px;}
.wsf{word-spacing:-4.200000px;}
.ws38{word-spacing:-3.105000px;}
.ws44{word-spacing:-2.880000px;}
.wsb{word-spacing:-2.400000px;}
.ws42{word-spacing:-1.800000px;}
.ws37{word-spacing:-1.725000px;}
.ws31{word-spacing:-1.656000px;}
.wsc{word-spacing:-1.260000px;}
.ws20{word-spacing:-1.035000px;}
.ws16{word-spacing:-0.780000px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:0.120000px;}
.ws27{word-spacing:0.216000px;}
.ws34{word-spacing:0.414000px;}
.ws2d{word-spacing:0.552000px;}
.wsd{word-spacing:0.720000px;}
.ws24{word-spacing:1.104000px;}
.ws30{word-spacing:1.173000px;}
.ws1f{word-spacing:1.242000px;}
.ws26{word-spacing:1.380000px;}
.ws45{word-spacing:1.560000px;}
.ws1a{word-spacing:1.587000px;}
.ws2b{word-spacing:1.794000px;}
.wse{word-spacing:1.800000px;}
.ws1e{word-spacing:2.277000px;}
.ws23{word-spacing:2.346000px;}
.ws2a{word-spacing:2.553000px;}
.ws2c{word-spacing:3.105000px;}
.ws11{word-spacing:3.360000px;}
.ws43{word-spacing:3.720000px;}
.ws32{word-spacing:4.692000px;}
.ws29{word-spacing:5.451000px;}
.ws2e{word-spacing:6.555000px;}
.ws25{word-spacing:7.245000px;}
.ws17{word-spacing:256.410000px;}
._1c{margin-left:-17.341500px;}
._a{margin-left:-9.222000px;}
._f{margin-left:-6.840300px;}
._11{margin-left:-5.140500px;}
._7{margin-left:-4.104000px;}
._6{margin-left:-2.574000px;}
._5{margin-left:-1.434000px;}
._3{width:1.056000px;}
._0{width:2.280000px;}
._1{width:3.360000px;}
._8{width:4.692000px;}
._4{width:6.318000px;}
._9{width:7.548000px;}
._c{width:8.970000px;}
._16{width:10.488000px;}
._15{width:12.123300px;}
._18{width:13.537800px;}
._1e{width:15.057900px;}
._10{width:17.773800px;}
._17{width:27.704160px;}
._12{width:43.445160px;}
._b{width:85.554000px;}
._1d{width:454.920000px;}
._13{width:456.540000px;}
._1a{width:457.605000px;}
._2{width:459.180000px;}
._d{width:578.400000px;}
._e{width:955.831200px;}
._19{width:958.951200px;}
._1b{width:963.001200px;}
._14{width:964.981200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fsd{font-size:36.729000px;}
.fs8{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fsc{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1e1{bottom:106.287300px;}
.y15b{bottom:106.296300px;}
.y20{bottom:106.315200px;}
.y17e{bottom:106.343100px;}
.y1a0{bottom:106.369050px;}
.y1bf{bottom:106.481100px;}
.y46{bottom:109.294800px;}
.y117{bottom:109.294950px;}
.y1f{bottom:125.875200px;}
.y1e0{bottom:126.177300px;}
.y15a{bottom:126.544800px;}
.y19f{bottom:127.001550px;}
.y8e{bottom:127.798200px;}
.y116{bottom:127.798500px;}
.y17d{bottom:128.181600px;}
.y1be{bottom:128.562600px;}
.y45{bottom:130.796700px;}
.y206{bottom:144.942750px;}
.y159{bottom:145.048200px;}
.y1e{bottom:145.435200px;}
.y1df{bottom:146.067300px;}
.y8d{bottom:148.046700px;}
.y115{bottom:148.047000px;}
.y44{bottom:149.300250px;}
.y17c{bottom:150.020100px;}
.y6a{bottom:152.298750px;}
.y139{bottom:153.316950px;}
.y19e{bottom:154.012800px;}
.y1bd{bottom:157.022850px;}
.y1d{bottom:164.995200px;}
.y205{bottom:165.192750px;}
.y158{bottom:165.296700px;}
.y1de{bottom:165.957300px;}
.y43{bottom:169.548750px;}
.y114{bottom:169.549200px;}
.y17b{bottom:171.858600px;}
.y69{bottom:173.800650px;}
.y19d{bottom:174.645300px;}
.y138{bottom:174.732000px;}
.yb0{bottom:174.820950px;}
.y1bc{bottom:179.104350px;}
.y157{bottom:183.800250px;}
.y1c{bottom:184.555200px;}
.y204{bottom:185.442750px;}
.y1dd{bottom:185.847300px;}
.y113{bottom:188.052750px;}
.y8c{bottom:191.050650px;}
.y17a{bottom:193.697100px;}
.y19c{bottom:195.277800px;}
.yf1{bottom:195.302700px;}
.y137{bottom:196.139250px;}
.yaf{bottom:196.228200px;}
.y156{bottom:204.048750px;}
.y1b{bottom:204.115200px;}
.y203{bottom:205.692750px;}
.y1dc{bottom:205.737300px;}
.y1bb{bottom:207.564600px;}
.y112{bottom:208.301250px;}
.y8b{bottom:209.545200px;}
.yd0{bottom:212.552700px;}
.y42{bottom:213.561150px;}
.y179{bottom:215.535600px;}
.y136{bottom:217.634850px;}
.yae{bottom:217.635450px;}
.y68{bottom:217.825650px;}
.y19b{bottom:222.289050px;}
.y1a{bottom:223.675200px;}
.y1db{bottom:225.627300px;}
.y8a{bottom:226.798200px;}
.y1ba{bottom:229.646100px;}
.y41{bottom:233.938650px;}
.ycf{bottom:234.054600px;}
.y178{bottom:237.374100px;}
.y67{bottom:238.577400px;}
.y202{bottom:238.692750px;}
.y135{bottom:239.042100px;}
.yad{bottom:239.042700px;}
.yf0{bottom:239.313150px;}
.y19a{bottom:242.921550px;}
.y89{bottom:244.051200px;}
.y1da{bottom:245.517300px;}
.y155{bottom:248.079150px;}
.y1b9{bottom:251.727600px;}
.y111{bottom:252.366750px;}
.y40{bottom:254.345400px;}
.y19{bottom:255.985200px;}
.y177{bottom:259.212600px;}
.y66{bottom:259.329150px;}
.yef{bottom:260.047650px;}
.y134{bottom:260.449350px;}
.yac{bottom:260.449950px;}
.y88{bottom:261.304200px;}
.y1d9{bottom:265.407300px;}
.y199{bottom:269.932800px;}
.y154{bottom:271.452900px;}
.y110{bottom:272.687250px;}
.y3f{bottom:274.752150px;}
.yce{bottom:278.075100px;}
.y65{bottom:280.083300px;}
.y201{bottom:280.197750px;}
.yee{bottom:280.778250px;}
.y176{bottom:281.051100px;}
.y87{bottom:281.552700px;}
.y133{bottom:281.856600px;}
.yab{bottom:281.868900px;}
.y1b8{bottom:282.314100px;}
.y1d8{bottom:285.297300px;}
.y10f{bottom:293.007750px;}
.y153{bottom:294.983850px;}
.y3e{bottom:295.158900px;}
.y198{bottom:296.944050px;}
.ycd{bottom:298.895850px;}
.y200{bottom:299.697750px;}
.y64{bottom:300.841800px;}
.yed{bottom:301.505100px;}
.y175{bottom:302.889600px;}
.y132{bottom:303.263850px;}
.yaa{bottom:303.276150px;}
.y1b7{bottom:304.395600px;}
.y1d7{bottom:305.183700px;}
.y18{bottom:305.305200px;}
.y10e{bottom:313.328250px;}
.y3d{bottom:315.565650px;}
.y197{bottom:317.576550px;}
.y152{bottom:318.357600px;}
.y1ff{bottom:319.197750px;}
.ycc{bottom:319.716600px;}
.y63{bottom:321.593550px;}
.yec{bottom:322.239600px;}
.y131{bottom:324.671100px;}
.ya9{bottom:324.683400px;}
.y174{bottom:324.728100px;}
.y1d6{bottom:325.073700px;}
.y86{bottom:325.567050px;}
.y17{bottom:326.365200px;}
.y10d{bottom:333.648750px;}
.y1b6{bottom:334.982100px;}
.y3c{bottom:335.890500px;}
.y196{bottom:338.209050px;}
.y1fe{bottom:338.697750px;}
.ycb{bottom:340.537350px;}
.y151{bottom:341.731350px;}
.y62{bottom:342.345300px;}
.yeb{bottom:342.966450px;}
.y1d5{bottom:344.963700px;}
.y130{bottom:346.078350px;}
.ya8{bottom:346.090650px;}
.y85{bottom:346.180800px;}
.y173{bottom:346.566600px;}
.y16{bottom:347.440200px;}
.y10c{bottom:353.969250px;}
.y3b{bottom:356.297250px;}
.y1b5{bottom:357.063600px;}
.y1fd{bottom:358.197750px;}
.y195{bottom:358.854000px;}
.yca{bottom:361.358100px;}
.y61{bottom:363.099300px;}
.yea{bottom:363.700950px;}
.y1d4{bottom:364.843050px;}
.y150{bottom:365.105100px;}
.y84{bottom:366.788700px;}
.y15{bottom:367.000200px;}
.y12f{bottom:367.485600px;}
.ya7{bottom:367.497900px;}
.y172{bottom:368.405100px;}
.y10b{bottom:374.289750px;}
.y3a{bottom:376.704000px;}
.y1fc{bottom:377.697750px;}
.yc9{bottom:382.178850px;}
.y60{bottom:383.857800px;}
.ye9{bottom:384.427650px;}
.y1d3{bottom:384.733050px;}
.y194{bottom:385.865250px;}
.y14{bottom:386.560200px;}
.y83{bottom:387.402450px;}
.y1b4{bottom:387.650100px;}
.y14f{bottom:388.478850px;}
.y12e{bottom:388.892850px;}
.ya6{bottom:388.905150px;}
.y171{bottom:390.247350px;}
.y10a{bottom:394.610250px;}
.y39{bottom:397.110750px;}
.y1fb{bottom:397.197750px;}
.yc8{bottom:402.999600px;}
.y5f{bottom:404.609550px;}
.y1d2{bottom:404.623050px;}
.ye8{bottom:405.162150px;}
.y13{bottom:406.120200px;}
.y193{bottom:406.510200px;}
.y82{bottom:408.016200px;}
.y1b3{bottom:409.731600px;}
.y12d{bottom:410.300100px;}
.ya5{bottom:410.312400px;}
.y14e{bottom:411.852600px;}
.y109{bottom:414.930750px;}
.y1fa{bottom:416.697750px;}
.y38{bottom:417.517500px;}
.yc7{bottom:423.820350px;}
.y1d1{bottom:424.513050px;}
.y5e{bottom:425.361300px;}
.y12{bottom:425.680200px;}
.ye7{bottom:425.885100px;}
.y81{bottom:428.628000px;}
.y12c{bottom:431.707350px;}
.ya4{bottom:431.719650px;}
.y192{bottom:433.521450px;}
.y14d{bottom:435.226350px;}
.y108{bottom:435.251250px;}
.y1f9{bottom:436.197750px;}
.y37{bottom:437.924250px;}
.y1b2{bottom:440.318100px;}
.y170{bottom:442.672650px;}
.y1d0{bottom:444.403050px;}
.yc6{bottom:444.641100px;}
.y11{bottom:445.240200px;}
.y5d{bottom:446.115300px;}
.ye6{bottom:446.619600px;}
.y80{bottom:449.239800px;}
.y12b{bottom:453.114600px;}
.ya3{bottom:453.126900px;}
.y191{bottom:454.173000px;}
.y107{bottom:455.571750px;}
.y1f8{bottom:455.697750px;}
.y36{bottom:458.331000px;}
.y14c{bottom:458.600100px;}
.y1cf{bottom:464.293050px;}
.y16f{bottom:464.511150px;}
.y10{bottom:464.800200px;}
.yc5{bottom:465.461850px;}
.y5c{bottom:466.871550px;}
.ye5{bottom:467.354100px;}
.y7f{bottom:469.851600px;}
.y1b1{bottom:470.904600px;}
.y12a{bottom:474.521850px;}
.ya2{bottom:474.534150px;}
.y1f7{bottom:475.197750px;}
.y106{bottom:475.892250px;}
.y35{bottom:478.737750px;}
.y190{bottom:481.184250px;}
.y14b{bottom:481.973850px;}
.y1ce{bottom:484.183050px;}
.yf{bottom:484.360200px;}
.yc4{bottom:486.282600px;}
.y16e{bottom:486.349650px;}
.y5b{bottom:487.623300px;}
.ye4{bottom:488.084700px;}
.y7e{bottom:490.463400px;}
.y1b0{bottom:492.986100px;}
.y1f6{bottom:494.697750px;}
.y129{bottom:495.929100px;}
.ya1{bottom:495.943650px;}
.y105{bottom:496.228500px;}
.y34{bottom:499.144500px;}
.y18f{bottom:501.816750px;}
.ye{bottom:503.920200px;}
.y1cd{bottom:504.073050px;}
.y14a{bottom:505.347600px;}
.yc3{bottom:507.105000px;}
.y16d{bottom:508.188150px;}
.y5a{bottom:508.418100px;}
.ye3{bottom:508.811550px;}
.y7d{bottom:511.073250px;}
.y1f5{bottom:514.197750px;}
.y1af{bottom:515.067600px;}
.y104{bottom:516.549000px;}
.y128{bottom:517.336350px;}
.ya0{bottom:517.350900px;}
.y33{bottom:519.551250px;}
.y18e{bottom:522.461700px;}
.yd{bottom:523.480200px;}
.y1cc{bottom:523.963050px;}
.yc2{bottom:527.925750px;}
.y149{bottom:528.721350px;}
.y59{bottom:529.169850px;}
.ye2{bottom:529.546050px;}
.y16c{bottom:530.026650px;}
.y7c{bottom:531.687000px;}
.y1f4{bottom:533.697750px;}
.y103{bottom:536.869500px;}
.y127{bottom:538.743600px;}
.y9f{bottom:538.759350px;}
.y32{bottom:539.958000px;}
.yc{bottom:543.040200px;}
.y1ae{bottom:543.527850px;}
.y1cb{bottom:543.853050px;}
.yc1{bottom:548.746500px;}
.y18d{bottom:549.472950px;}
.y58{bottom:549.921600px;}
.ye1{bottom:550.272750px;}
.y16b{bottom:551.865150px;}
.y148{bottom:552.095100px;}
.y7b{bottom:552.292950px;}
.y1f3{bottom:553.197750px;}
.y102{bottom:557.190000px;}
.y126{bottom:560.150850px;}
.y9e{bottom:560.171250px;}
.y31{bottom:560.364750px;}
.yb{bottom:562.600200px;}
.y1ca{bottom:563.743050px;}
.y1ad{bottom:565.609350px;}
.yc0{bottom:569.567250px;}
.y18c{bottom:570.192600px;}
.y57{bottom:570.673350px;}
.ye0{bottom:571.007250px;}
.y1f2{bottom:572.697750px;}
.y7a{bottom:572.906700px;}
.y16a{bottom:573.703650px;}
.y147{bottom:575.468850px;}
.y101{bottom:577.530150px;}
.y30{bottom:580.771500px;}
.y125{bottom:581.558100px;}
.y9d{bottom:581.578500px;}
.y1c9{bottom:583.633050px;}
.ybf{bottom:590.388000px;}
.y56{bottom:591.425100px;}
.ydf{bottom:591.734100px;}
.y1f1{bottom:592.197750px;}
.y79{bottom:593.520450px;}
.y1ac{bottom:594.069600px;}
.ya{bottom:594.910200px;}
.y169{bottom:595.542150px;}
.y18b{bottom:597.203850px;}
.y100{bottom:597.850650px;}
.y146{bottom:598.842600px;}
.y2f{bottom:601.178250px;}
.y124{bottom:602.965350px;}
.y9c{bottom:602.985750px;}
.y1c8{bottom:603.523050px;}
.ybe{bottom:611.208750px;}
.y1f0{bottom:611.697750px;}
.y55{bottom:612.176850px;}
.yde{bottom:612.468600px;}
.y78{bottom:614.134200px;}
.y1ab{bottom:616.151100px;}
.y168{bottom:617.380650px;}
.y18a{bottom:617.836350px;}
.yff{bottom:618.171150px;}
.y2e{bottom:621.567450px;}
.y145{bottom:622.216350px;}
.y1c7{bottom:623.413050px;}
.y123{bottom:624.372600px;}
.y9b{bottom:624.393000px;}
.y1ef{bottom:631.197750px;}
.ybd{bottom:632.029500px;}
.y54{bottom:632.928600px;}
.ydd{bottom:633.195300px;}
.y77{bottom:634.738200px;}
.yfe{bottom:638.491650px;}
.y167{bottom:639.219150px;}
.y2d{bottom:641.974200px;}
.y1aa{bottom:644.611350px;}
.y189{bottom:644.847600px;}
.y144{bottom:645.590100px;}
.y122{bottom:645.779850px;}
.y9a{bottom:645.806100px;}
.y1ee{bottom:650.697750px;}
.y9{bottom:652.738650px;}
.ybc{bottom:652.850250px;}
.y53{bottom:653.680350px;}
.ydc{bottom:653.929800px;}
.y76{bottom:655.351950px;}
.y1c6{bottom:656.053050px;}
.yfd{bottom:658.812150px;}
.y166{bottom:661.057650px;}
.y2c{bottom:662.380950px;}
.y188{bottom:665.480100px;}
.y1a9{bottom:666.692850px;}
.y121{bottom:667.187100px;}
.y99{bottom:667.213350px;}
.y143{bottom:668.963850px;}
.y1ed{bottom:670.197750px;}
.ybb{bottom:673.671300px;}
.y52{bottom:674.432100px;}
.ydb{bottom:674.652750px;}
.y75{bottom:675.965700px;}
.yfc{bottom:679.136550px;}
.y2b{bottom:682.787700px;}
.y165{bottom:682.896150px;}
.y120{bottom:688.594350px;}
.y98{bottom:688.620600px;}
.y1a8{bottom:688.774350px;}
.y1ec{bottom:689.697750px;}
.y142{bottom:692.337600px;}
.y187{bottom:692.491350px;}
.yba{bottom:694.492050px;}
.y51{bottom:695.183850px;}
.yda{bottom:695.387250px;}
.y74{bottom:696.579450px;}
.yfb{bottom:699.460950px;}
.y8{bottom:701.056800px;}
.y164{bottom:704.734650px;}
.y1eb{bottom:709.197750px;}
.y97{bottom:710.027850px;}
.y11f{bottom:710.036100px;}
.y186{bottom:713.123850px;}
.y1c5{bottom:714.209550px;}
.yb9{bottom:715.313700px;}
.y141{bottom:715.711350px;}
.y50{bottom:715.935600px;}
.yd9{bottom:716.121750px;}
.y73{bottom:717.193200px;}
.y1a7{bottom:717.234600px;}
.yfa{bottom:719.793300px;}
.y163{bottom:726.573150px;}
.y1ea{bottom:728.697750px;}
.y96{bottom:731.435100px;}
.y11e{bottom:731.443350px;}
.y7{bottom:732.619800px;}
.yb8{bottom:736.134450px;}
.y4f{bottom:736.687350px;}
.yd8{bottom:736.852350px;}
.y72{bottom:737.805000px;}
.y140{bottom:739.085100px;}
.y1a6{bottom:739.316100px;}
.yf9{bottom:740.113800px;}
.y185{bottom:740.135100px;}
.y2a{bottom:743.991300px;}
.y1e9{bottom:748.197750px;}
.y162{bottom:748.411650px;}
.y95{bottom:752.843550px;}
.y11d{bottom:752.850600px;}
.yb7{bottom:756.955200px;}
.y4e{bottom:757.439100px;}
.yd7{bottom:757.559850px;}
.y71{bottom:758.412900px;}
.yf8{bottom:760.434300px;}
.y184{bottom:760.767600px;}
.y13f{bottom:762.458850px;}
.y29{bottom:765.141300px;}
.y1e8{bottom:767.697750px;}
.y1a5{bottom:767.776350px;}
.y161{bottom:770.250150px;}
.y94{bottom:774.253200px;}
.y11c{bottom:774.257850px;}
.yb6{bottom:777.775950px;}
.y4d{bottom:778.190850px;}
.yd6{bottom:778.294350px;}
.y70{bottom:779.026650px;}
.yf7{bottom:780.754800px;}
.y1c4{bottom:783.526350px;}
.y13e{bottom:785.832600px;}
.y28{bottom:786.293250px;}
.y1e7{bottom:787.197750px;}
.y183{bottom:787.778850px;}
.y1a4{bottom:789.857850px;}
.y160{bottom:792.088650px;}
.y6{bottom:793.943250px;}
.y93{bottom:795.660450px;}
.y11b{bottom:795.665100px;}
.yb5{bottom:798.597450px;}
.y4c{bottom:798.942600px;}
.yd5{bottom:799.028850px;}
.y6f{bottom:799.640400px;}
.yf6{bottom:801.087000px;}
.y27{bottom:805.947750px;}
.y1e6{bottom:806.697750px;}
.y182{bottom:808.411350px;}
.y13d{bottom:809.206350px;}
.y1c3{bottom:812.663850px;}
.y15f{bottom:813.927150px;}
.y92{bottom:817.068900px;}
.y11a{bottom:817.072350px;}
.yb4{bottom:819.418200px;}
.y4b{bottom:819.694350px;}
.yd4{bottom:819.763350px;}
.y6e{bottom:820.246350px;}
.y1a3{bottom:820.444350px;}
.yf5{bottom:821.407500px;}
.y5{bottom:823.508250px;}
.y26{bottom:825.597750px;}
.y1e5{bottom:826.197750px;}
.y13c{bottom:832.580100px;}
.y1c2{bottom:833.296350px;}
.y181{bottom:835.422600px;}
.y15e{bottom:835.765650px;}
.y91{bottom:838.477200px;}
.y119{bottom:838.479600px;}
.yb3{bottom:840.238950px;}
.y4a{bottom:840.446100px;}
.yd3{bottom:840.497850px;}
.y6d{bottom:840.860100px;}
.yf4{bottom:841.739850px;}
.y1a2{bottom:842.525850px;}
.y25{bottom:845.247750px;}
.y1e4{bottom:845.697750px;}
.y4{bottom:853.073250px;}
.y13b{bottom:855.953850px;}
.y180{bottom:856.055100px;}
.y15d{bottom:857.604150px;}
.y90{bottom:859.885650px;}
.y118{bottom:859.886850px;}
.yb2{bottom:861.059700px;}
.y49{bottom:861.197850px;}
.yd2{bottom:861.232350px;}
.y6c{bottom:861.473850px;}
.yf3{bottom:862.060350px;}
.y1c1{bottom:862.433850px;}
.y24{bottom:864.897750px;}
.y1e3{bottom:865.197750px;}
.y1a1{bottom:873.112350px;}
.y17f{bottom:876.687600px;}
.y13a{bottom:879.327600px;}
.y8f{bottom:881.294100px;}
.yb1{bottom:881.880600px;}
.y48{bottom:881.949600px;}
.yd1{bottom:881.966850px;}
.y6b{bottom:882.087600px;}
.yf2{bottom:882.380850px;}
.y3{bottom:882.638250px;}
.y1c0{bottom:883.066350px;}
.y23{bottom:884.547750px;}
.y1e2{bottom:884.697750px;}
.y15c{bottom:900.706200px;}
.y47{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.hd{height:37.983820px;}
.h10{height:44.414062px;}
.hf{height:48.530695px;}
.h16{height:49.965820px;}
.h4{height:55.517578px;}
.h23{height:55.531978px;}
.h22{height:55.560178px;}
.h3{height:58.293457px;}
.he{height:60.512695px;}
.h9{height:63.845215px;}
.h19{height:63.876415px;}
.ha{height:63.915415px;}
.hc{height:63.962215px;}
.h8{height:67.236328px;}
.h2{height:69.396973px;}
.h1f{height:70.249545px;}
.h21{height:70.521945px;}
.h20{height:70.548345px;}
.h1e{height:70.598145px;}
.h1d{height:74.948730px;}
.h1c{height:77.183777px;}
.h11{height:77.294777px;}
.h1b{height:77.306177px;}
.h17{height:77.318777px;}
.h18{height:77.320577px;}
.hb{height:77.321777px;}
.h15{height:77.329577px;}
.h14{height:77.337377px;}
.h12{height:77.345177px;}
.h1a{height:77.352377px;}
.h13{height:77.360777px;}
.h7{height:94.130859px;}
.h6{height:99.931641px;}
.h5{height:121.025391px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:82.214250px;}
.x6{left:83.627550px;}
.x4{left:85.215600px;}
.x5{left:103.206300px;}
.x7{left:105.053850px;}
.x3{left:106.125600px;}
.x2{left:233.415450px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v4{vertical-align:-9.757333pt;}
.v5{vertical-align:-8.291200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.410667pt;}
.v2{vertical-align:15.153067pt;}
.ls8{letter-spacing:-3.744000pt;}
.lsf{letter-spacing:-3.040000pt;}
.ls14{letter-spacing:-2.208000pt;}
.ls1c{letter-spacing:-2.085333pt;}
.ls27{letter-spacing:-2.024000pt;}
.ls31{letter-spacing:-1.960000pt;}
.ls1a{letter-spacing:-1.778667pt;}
.ls22{letter-spacing:-1.717333pt;}
.ls15{letter-spacing:-1.410667pt;}
.ls1d{letter-spacing:-1.226667pt;}
.ls17{letter-spacing:-0.981333pt;}
.lsa{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.490667pt;}
.ls26{letter-spacing:-0.368000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls28{letter-spacing:-0.072000pt;}
.ls10{letter-spacing:-0.062187pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.ls12{letter-spacing:0.001656pt;}
.ls2b{letter-spacing:0.002045pt;}
.ls11{letter-spacing:0.002189pt;}
.ls9{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.660800pt;}
.ls6{letter-spacing:1.120000pt;}
.ls20{letter-spacing:1.907467pt;}
.ls2d{letter-spacing:1.965600pt;}
.ls19{letter-spacing:2.085333pt;}
.ls5{letter-spacing:2.133333pt;}
.ls1f{letter-spacing:2.226400pt;}
.ls18{letter-spacing:3.128000pt;}
.ls29{letter-spacing:3.472000pt;}
.ls2a{letter-spacing:3.561600pt;}
.ls1{letter-spacing:3.666667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls25{letter-spacing:3.839467pt;}
.ls13{letter-spacing:4.133333pt;}
.ls3{letter-spacing:4.853333pt;}
.ls30{letter-spacing:4.933333pt;}
.lsb{letter-spacing:5.120000pt;}
.lsc{letter-spacing:5.226667pt;}
.ls21{letter-spacing:5.262400pt;}
.ls2{letter-spacing:5.333333pt;}
.ls2f{letter-spacing:5.600000pt;}
.ls2c{letter-spacing:6.804000pt;}
.ls16{letter-spacing:7.253472pt;}
.ls1b{letter-spacing:7.254005pt;}
.ls23{letter-spacing:8.034667pt;}
.ws3{word-spacing:-27.072000pt;}
.ws3d{word-spacing:-23.666667pt;}
.ws18{word-spacing:-22.866667pt;}
.ws0{word-spacing:-22.400000pt;}
.ws3f{word-spacing:-20.320000pt;}
.ws7{word-spacing:-20.213333pt;}
.ws35{word-spacing:-20.160000pt;}
.ws5{word-spacing:-20.106667pt;}
.ws2{word-spacing:-19.968000pt;}
.ws36{word-spacing:-19.208000pt;}
.ws4{word-spacing:-17.621333pt;}
.ws1c{word-spacing:-17.234667pt;}
.ws39{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.344000pt;}
.ws14{word-spacing:-15.149333pt;}
.ws41{word-spacing:-14.986667pt;}
.ws2f{word-spacing:-14.658667pt;}
.ws1b{word-spacing:-14.168000pt;}
.ws3b{word-spacing:-13.832000pt;}
.ws22{word-spacing:-13.738667pt;}
.ws1d{word-spacing:-13.488000pt;}
.ws28{word-spacing:-13.432000pt;}
.ws21{word-spacing:-13.370667pt;}
.ws6{word-spacing:-13.173333pt;}
.ws33{word-spacing:-13.125333pt;}
.ws8{word-spacing:-13.066667pt;}
.ws19{word-spacing:-12.941333pt;}
.ws3e{word-spacing:-11.872000pt;}
.ws15{word-spacing:-11.856000pt;}
.ws13{word-spacing:-10.047811pt;}
.ws3a{word-spacing:-9.174088pt;}
.ws40{word-spacing:-8.737227pt;}
.ws12{word-spacing:-8.675040pt;}
.ws3c{word-spacing:-5.600000pt;}
.ws9{word-spacing:-5.333333pt;}
.wsf{word-spacing:-3.733333pt;}
.ws38{word-spacing:-2.760000pt;}
.ws44{word-spacing:-2.560000pt;}
.wsb{word-spacing:-2.133333pt;}
.ws42{word-spacing:-1.600000pt;}
.ws37{word-spacing:-1.533333pt;}
.ws31{word-spacing:-1.472000pt;}
.wsc{word-spacing:-1.120000pt;}
.ws20{word-spacing:-0.920000pt;}
.ws16{word-spacing:-0.693333pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:0.106667pt;}
.ws27{word-spacing:0.192000pt;}
.ws34{word-spacing:0.368000pt;}
.ws2d{word-spacing:0.490667pt;}
.wsd{word-spacing:0.640000pt;}
.ws24{word-spacing:0.981333pt;}
.ws30{word-spacing:1.042667pt;}
.ws1f{word-spacing:1.104000pt;}
.ws26{word-spacing:1.226667pt;}
.ws45{word-spacing:1.386667pt;}
.ws1a{word-spacing:1.410667pt;}
.ws2b{word-spacing:1.594667pt;}
.wse{word-spacing:1.600000pt;}
.ws1e{word-spacing:2.024000pt;}
.ws23{word-spacing:2.085333pt;}
.ws2a{word-spacing:2.269333pt;}
.ws2c{word-spacing:2.760000pt;}
.ws11{word-spacing:2.986667pt;}
.ws43{word-spacing:3.306667pt;}
.ws32{word-spacing:4.170667pt;}
.ws29{word-spacing:4.845333pt;}
.ws2e{word-spacing:5.826667pt;}
.ws25{word-spacing:6.440000pt;}
.ws17{word-spacing:227.920000pt;}
._1c{margin-left:-15.414667pt;}
._a{margin-left:-8.197333pt;}
._f{margin-left:-6.080267pt;}
._11{margin-left:-4.569333pt;}
._7{margin-left:-3.648000pt;}
._6{margin-left:-2.288000pt;}
._5{margin-left:-1.274667pt;}
._3{width:0.938667pt;}
._0{width:2.026667pt;}
._1{width:2.986667pt;}
._8{width:4.170667pt;}
._4{width:5.616000pt;}
._9{width:6.709333pt;}
._c{width:7.973333pt;}
._16{width:9.322667pt;}
._15{width:10.776267pt;}
._18{width:12.033600pt;}
._1e{width:13.384800pt;}
._10{width:15.798933pt;}
._17{width:24.625920pt;}
._12{width:38.617920pt;}
._b{width:76.048000pt;}
._1d{width:404.373333pt;}
._13{width:405.813333pt;}
._1a{width:406.760000pt;}
._2{width:408.160000pt;}
._d{width:514.133333pt;}
._e{width:849.627733pt;}
._19{width:852.401067pt;}
._1b{width:856.001067pt;}
._14{width:857.761067pt;}
.fs9{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fsd{font-size:32.648000pt;}
.fs8{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fsc{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1e1{bottom:94.477600pt;}
.y15b{bottom:94.485600pt;}
.y20{bottom:94.502400pt;}
.y17e{bottom:94.527200pt;}
.y1a0{bottom:94.550267pt;}
.y1bf{bottom:94.649867pt;}
.y46{bottom:97.150933pt;}
.y117{bottom:97.151067pt;}
.y1f{bottom:111.889067pt;}
.y1e0{bottom:112.157600pt;}
.y15a{bottom:112.484267pt;}
.y19f{bottom:112.890267pt;}
.y8e{bottom:113.598400pt;}
.y116{bottom:113.598667pt;}
.y17d{bottom:113.939200pt;}
.y1be{bottom:114.277867pt;}
.y45{bottom:116.263733pt;}
.y206{bottom:128.838000pt;}
.y159{bottom:128.931733pt;}
.y1e{bottom:129.275733pt;}
.y1df{bottom:129.837600pt;}
.y8d{bottom:131.597067pt;}
.y115{bottom:131.597333pt;}
.y44{bottom:132.711333pt;}
.y17c{bottom:133.351200pt;}
.y6a{bottom:135.376667pt;}
.y139{bottom:136.281733pt;}
.y19e{bottom:136.900267pt;}
.y1bd{bottom:139.575867pt;}
.y1d{bottom:146.662400pt;}
.y205{bottom:146.838000pt;}
.y158{bottom:146.930400pt;}
.y1de{bottom:147.517600pt;}
.y43{bottom:150.710000pt;}
.y114{bottom:150.710400pt;}
.y17b{bottom:152.763200pt;}
.y69{bottom:154.489467pt;}
.y19d{bottom:155.240267pt;}
.y138{bottom:155.317333pt;}
.yb0{bottom:155.396400pt;}
.y1bc{bottom:159.203867pt;}
.y157{bottom:163.378000pt;}
.y1c{bottom:164.049067pt;}
.y204{bottom:164.838000pt;}
.y1dd{bottom:165.197600pt;}
.y113{bottom:167.158000pt;}
.y8c{bottom:169.822800pt;}
.y17a{bottom:172.175200pt;}
.y19c{bottom:173.580267pt;}
.yf1{bottom:173.602400pt;}
.y137{bottom:174.346000pt;}
.yaf{bottom:174.425067pt;}
.y156{bottom:181.376667pt;}
.y1b{bottom:181.435733pt;}
.y203{bottom:182.838000pt;}
.y1dc{bottom:182.877600pt;}
.y1bb{bottom:184.501867pt;}
.y112{bottom:185.156667pt;}
.y8b{bottom:186.262400pt;}
.yd0{bottom:188.935733pt;}
.y42{bottom:189.832133pt;}
.y179{bottom:191.587200pt;}
.y136{bottom:193.453200pt;}
.yae{bottom:193.453733pt;}
.y68{bottom:193.622800pt;}
.y19b{bottom:197.590267pt;}
.y1a{bottom:198.822400pt;}
.y1db{bottom:200.557600pt;}
.y8a{bottom:201.598400pt;}
.y1ba{bottom:204.129867pt;}
.y41{bottom:207.945467pt;}
.ycf{bottom:208.048533pt;}
.y178{bottom:210.999200pt;}
.y67{bottom:212.068800pt;}
.y202{bottom:212.171333pt;}
.y135{bottom:212.481867pt;}
.yad{bottom:212.482400pt;}
.yf0{bottom:212.722800pt;}
.y19a{bottom:215.930267pt;}
.y89{bottom:216.934400pt;}
.y1da{bottom:218.237600pt;}
.y155{bottom:220.514800pt;}
.y1b9{bottom:223.757867pt;}
.y111{bottom:224.326000pt;}
.y40{bottom:226.084800pt;}
.y19{bottom:227.542400pt;}
.y177{bottom:230.411200pt;}
.y66{bottom:230.514800pt;}
.yef{bottom:231.153467pt;}
.y134{bottom:231.510533pt;}
.yac{bottom:231.511067pt;}
.y88{bottom:232.270400pt;}
.y1d9{bottom:235.917600pt;}
.y199{bottom:239.940267pt;}
.y154{bottom:241.291467pt;}
.y110{bottom:242.388667pt;}
.y3f{bottom:244.224133pt;}
.yce{bottom:247.177867pt;}
.y65{bottom:248.962933pt;}
.y201{bottom:249.064667pt;}
.yee{bottom:249.580667pt;}
.y176{bottom:249.823200pt;}
.y87{bottom:250.269067pt;}
.y133{bottom:250.539200pt;}
.yab{bottom:250.550133pt;}
.y1b8{bottom:250.945867pt;}
.y1d8{bottom:253.597600pt;}
.y10f{bottom:260.451333pt;}
.y153{bottom:262.207867pt;}
.y3e{bottom:262.363467pt;}
.y198{bottom:263.950267pt;}
.ycd{bottom:265.685200pt;}
.y200{bottom:266.398000pt;}
.y64{bottom:267.414933pt;}
.yed{bottom:268.004533pt;}
.y175{bottom:269.235200pt;}
.y132{bottom:269.567867pt;}
.yaa{bottom:269.578800pt;}
.y1b7{bottom:270.573867pt;}
.y1d7{bottom:271.274400pt;}
.y18{bottom:271.382400pt;}
.y10e{bottom:278.514000pt;}
.y3d{bottom:280.502800pt;}
.y197{bottom:282.290267pt;}
.y152{bottom:282.984533pt;}
.y1ff{bottom:283.731333pt;}
.ycc{bottom:284.192533pt;}
.y63{bottom:285.860933pt;}
.yec{bottom:286.435200pt;}
.y131{bottom:288.596533pt;}
.ya9{bottom:288.607467pt;}
.y174{bottom:288.647200pt;}
.y1d6{bottom:288.954400pt;}
.y86{bottom:289.392933pt;}
.y17{bottom:290.102400pt;}
.y10d{bottom:296.576667pt;}
.y1b6{bottom:297.761867pt;}
.y3c{bottom:298.569333pt;}
.y196{bottom:300.630267pt;}
.y1fe{bottom:301.064667pt;}
.ycb{bottom:302.699867pt;}
.y151{bottom:303.761200pt;}
.y62{bottom:304.306933pt;}
.yeb{bottom:304.859067pt;}
.y1d5{bottom:306.634400pt;}
.y130{bottom:307.625200pt;}
.ya8{bottom:307.636133pt;}
.y85{bottom:307.716267pt;}
.y173{bottom:308.059200pt;}
.y16{bottom:308.835733pt;}
.y10c{bottom:314.639333pt;}
.y3b{bottom:316.708667pt;}
.y1b5{bottom:317.389867pt;}
.y1fd{bottom:318.398000pt;}
.y195{bottom:318.981333pt;}
.yca{bottom:321.207200pt;}
.y61{bottom:322.754933pt;}
.yea{bottom:323.289733pt;}
.y1d4{bottom:324.304933pt;}
.y150{bottom:324.537867pt;}
.y84{bottom:326.034400pt;}
.y15{bottom:326.222400pt;}
.y12f{bottom:326.653867pt;}
.ya7{bottom:326.664800pt;}
.y172{bottom:327.471200pt;}
.y10b{bottom:332.702000pt;}
.y3a{bottom:334.848000pt;}
.y1fc{bottom:335.731333pt;}
.yc9{bottom:339.714533pt;}
.y60{bottom:341.206933pt;}
.ye9{bottom:341.713467pt;}
.y1d3{bottom:341.984933pt;}
.y194{bottom:342.991333pt;}
.y14{bottom:343.609067pt;}
.y83{bottom:344.357733pt;}
.y1b4{bottom:344.577867pt;}
.y14f{bottom:345.314533pt;}
.y12e{bottom:345.682533pt;}
.ya6{bottom:345.693467pt;}
.y171{bottom:346.886533pt;}
.y10a{bottom:350.764667pt;}
.y39{bottom:352.987333pt;}
.y1fb{bottom:353.064667pt;}
.yc8{bottom:358.221867pt;}
.y5f{bottom:359.652933pt;}
.y1d2{bottom:359.664933pt;}
.ye8{bottom:360.144133pt;}
.y13{bottom:360.995733pt;}
.y193{bottom:361.342400pt;}
.y82{bottom:362.681067pt;}
.y1b3{bottom:364.205867pt;}
.y12d{bottom:364.711200pt;}
.ya5{bottom:364.722133pt;}
.y14e{bottom:366.091200pt;}
.y109{bottom:368.827333pt;}
.y1fa{bottom:370.398000pt;}
.y38{bottom:371.126667pt;}
.yc7{bottom:376.729200pt;}
.y1d1{bottom:377.344933pt;}
.y5e{bottom:378.098933pt;}
.y12{bottom:378.382400pt;}
.ye7{bottom:378.564533pt;}
.y81{bottom:381.002667pt;}
.y12c{bottom:383.739867pt;}
.ya4{bottom:383.750800pt;}
.y192{bottom:385.352400pt;}
.y14d{bottom:386.867867pt;}
.y108{bottom:386.890000pt;}
.y1f9{bottom:387.731333pt;}
.y37{bottom:389.266000pt;}
.y1b2{bottom:391.393867pt;}
.y170{bottom:393.486800pt;}
.y1d0{bottom:395.024933pt;}
.yc6{bottom:395.236533pt;}
.y11{bottom:395.769067pt;}
.y5d{bottom:396.546933pt;}
.ye6{bottom:396.995200pt;}
.y80{bottom:399.324267pt;}
.y12b{bottom:402.768533pt;}
.ya3{bottom:402.779467pt;}
.y191{bottom:403.709333pt;}
.y107{bottom:404.952667pt;}
.y1f8{bottom:405.064667pt;}
.y36{bottom:407.405333pt;}
.y14c{bottom:407.644533pt;}
.y1cf{bottom:412.704933pt;}
.y16f{bottom:412.898800pt;}
.y10{bottom:413.155733pt;}
.yc5{bottom:413.743867pt;}
.y5c{bottom:414.996933pt;}
.ye5{bottom:415.425867pt;}
.y7f{bottom:417.645867pt;}
.y1b1{bottom:418.581867pt;}
.y12a{bottom:421.797200pt;}
.ya2{bottom:421.808133pt;}
.y1f7{bottom:422.398000pt;}
.y106{bottom:423.015333pt;}
.y35{bottom:425.544667pt;}
.y190{bottom:427.719333pt;}
.y14b{bottom:428.421200pt;}
.y1ce{bottom:430.384933pt;}
.yf{bottom:430.542400pt;}
.yc4{bottom:432.251200pt;}
.y16e{bottom:432.310800pt;}
.y5b{bottom:433.442933pt;}
.ye4{bottom:433.853067pt;}
.y7e{bottom:435.967467pt;}
.y1b0{bottom:438.209867pt;}
.y1f6{bottom:439.731333pt;}
.y129{bottom:440.825867pt;}
.ya1{bottom:440.838800pt;}
.y105{bottom:441.092000pt;}
.y34{bottom:443.684000pt;}
.y18f{bottom:446.059333pt;}
.ye{bottom:447.929067pt;}
.y1cd{bottom:448.064933pt;}
.y14a{bottom:449.197867pt;}
.yc3{bottom:450.760000pt;}
.y16d{bottom:451.722800pt;}
.y5a{bottom:451.927200pt;}
.ye3{bottom:452.276933pt;}
.y7d{bottom:454.287333pt;}
.y1f5{bottom:457.064667pt;}
.y1af{bottom:457.837867pt;}
.y104{bottom:459.154667pt;}
.y128{bottom:459.854533pt;}
.ya0{bottom:459.867467pt;}
.y33{bottom:461.823333pt;}
.y18e{bottom:464.410400pt;}
.yd{bottom:465.315733pt;}
.y1cc{bottom:465.744933pt;}
.yc2{bottom:469.267333pt;}
.y149{bottom:469.974533pt;}
.y59{bottom:470.373200pt;}
.ye2{bottom:470.707600pt;}
.y16c{bottom:471.134800pt;}
.y7c{bottom:472.610667pt;}
.y1f4{bottom:474.398000pt;}
.y103{bottom:477.217333pt;}
.y127{bottom:478.883200pt;}
.y9f{bottom:478.897200pt;}
.y32{bottom:479.962667pt;}
.yc{bottom:482.702400pt;}
.y1ae{bottom:483.135867pt;}
.y1cb{bottom:483.424933pt;}
.yc1{bottom:487.774667pt;}
.y18d{bottom:488.420400pt;}
.y58{bottom:488.819200pt;}
.ye1{bottom:489.131333pt;}
.y16b{bottom:490.546800pt;}
.y148{bottom:490.751200pt;}
.y7b{bottom:490.927067pt;}
.y1f3{bottom:491.731333pt;}
.y102{bottom:495.280000pt;}
.y126{bottom:497.911867pt;}
.y9e{bottom:497.930000pt;}
.y31{bottom:498.102000pt;}
.yb{bottom:500.089067pt;}
.y1ca{bottom:501.104933pt;}
.y1ad{bottom:502.763867pt;}
.yc0{bottom:506.282000pt;}
.y18c{bottom:506.837867pt;}
.y57{bottom:507.265200pt;}
.ye0{bottom:507.562000pt;}
.y1f2{bottom:509.064667pt;}
.y7a{bottom:509.250400pt;}
.y16a{bottom:509.958800pt;}
.y147{bottom:511.527867pt;}
.y101{bottom:513.360133pt;}
.y30{bottom:516.241333pt;}
.y125{bottom:516.940533pt;}
.y9d{bottom:516.958667pt;}
.y1c9{bottom:518.784933pt;}
.ybf{bottom:524.789333pt;}
.y56{bottom:525.711200pt;}
.ydf{bottom:525.985867pt;}
.y1f1{bottom:526.398000pt;}
.y79{bottom:527.573733pt;}
.y1ac{bottom:528.061867pt;}
.ya{bottom:528.809067pt;}
.y169{bottom:529.370800pt;}
.y18b{bottom:530.847867pt;}
.y100{bottom:531.422800pt;}
.y146{bottom:532.304533pt;}
.y2f{bottom:534.380667pt;}
.y124{bottom:535.969200pt;}
.y9c{bottom:535.987333pt;}
.y1c8{bottom:536.464933pt;}
.ybe{bottom:543.296667pt;}
.y1f0{bottom:543.731333pt;}
.y55{bottom:544.157200pt;}
.yde{bottom:544.416533pt;}
.y78{bottom:545.897067pt;}
.y1ab{bottom:547.689867pt;}
.y168{bottom:548.782800pt;}
.y18a{bottom:549.187867pt;}
.yff{bottom:549.485467pt;}
.y2e{bottom:552.504400pt;}
.y145{bottom:553.081200pt;}
.y1c7{bottom:554.144933pt;}
.y123{bottom:554.997867pt;}
.y9b{bottom:555.016000pt;}
.y1ef{bottom:561.064667pt;}
.ybd{bottom:561.804000pt;}
.y54{bottom:562.603200pt;}
.ydd{bottom:562.840267pt;}
.y77{bottom:564.211733pt;}
.yfe{bottom:567.548133pt;}
.y167{bottom:568.194800pt;}
.y2d{bottom:570.643733pt;}
.y1aa{bottom:572.987867pt;}
.y189{bottom:573.197867pt;}
.y144{bottom:573.857867pt;}
.y122{bottom:574.026533pt;}
.y9a{bottom:574.049867pt;}
.y1ee{bottom:578.398000pt;}
.y9{bottom:580.212133pt;}
.ybc{bottom:580.311333pt;}
.y53{bottom:581.049200pt;}
.ydc{bottom:581.270933pt;}
.y76{bottom:582.535067pt;}
.y1c6{bottom:583.158267pt;}
.yfd{bottom:585.610800pt;}
.y166{bottom:587.606800pt;}
.y2c{bottom:588.783067pt;}
.y188{bottom:591.537867pt;}
.y1a9{bottom:592.615867pt;}
.y121{bottom:593.055200pt;}
.y99{bottom:593.078533pt;}
.y143{bottom:594.634533pt;}
.y1ed{bottom:595.731333pt;}
.ybb{bottom:598.818933pt;}
.y52{bottom:599.495200pt;}
.ydb{bottom:599.691333pt;}
.y75{bottom:600.858400pt;}
.yfc{bottom:603.676933pt;}
.y2b{bottom:606.922400pt;}
.y165{bottom:607.018800pt;}
.y120{bottom:612.083867pt;}
.y98{bottom:612.107200pt;}
.y1a8{bottom:612.243867pt;}
.y1ec{bottom:613.064667pt;}
.y142{bottom:615.411200pt;}
.y187{bottom:615.547867pt;}
.yba{bottom:617.326267pt;}
.y51{bottom:617.941200pt;}
.yda{bottom:618.122000pt;}
.y74{bottom:619.181733pt;}
.yfb{bottom:621.743067pt;}
.y8{bottom:623.161600pt;}
.y164{bottom:626.430800pt;}
.y1eb{bottom:630.398000pt;}
.y97{bottom:631.135867pt;}
.y11f{bottom:631.143200pt;}
.y186{bottom:633.887867pt;}
.y1c5{bottom:634.852933pt;}
.yb9{bottom:635.834400pt;}
.y141{bottom:636.187867pt;}
.y50{bottom:636.387200pt;}
.yd9{bottom:636.552667pt;}
.y73{bottom:637.505067pt;}
.y1a7{bottom:637.541867pt;}
.yfa{bottom:639.816267pt;}
.y163{bottom:645.842800pt;}
.y1ea{bottom:647.731333pt;}
.y96{bottom:650.164533pt;}
.y11e{bottom:650.171867pt;}
.y7{bottom:651.217600pt;}
.yb8{bottom:654.341733pt;}
.y4f{bottom:654.833200pt;}
.yd8{bottom:654.979867pt;}
.y72{bottom:655.826667pt;}
.y140{bottom:656.964533pt;}
.y1a6{bottom:657.169867pt;}
.yf9{bottom:657.878933pt;}
.y185{bottom:657.897867pt;}
.y2a{bottom:661.325600pt;}
.y1e9{bottom:665.064667pt;}
.y162{bottom:665.254800pt;}
.y95{bottom:669.194267pt;}
.y11d{bottom:669.200533pt;}
.yb7{bottom:672.849067pt;}
.y4e{bottom:673.279200pt;}
.yd7{bottom:673.386533pt;}
.y71{bottom:674.144800pt;}
.yf8{bottom:675.941600pt;}
.y184{bottom:676.237867pt;}
.y13f{bottom:677.741200pt;}
.y29{bottom:680.125600pt;}
.y1e8{bottom:682.398000pt;}
.y1a5{bottom:682.467867pt;}
.y161{bottom:684.666800pt;}
.y94{bottom:688.225067pt;}
.y11c{bottom:688.229200pt;}
.yb6{bottom:691.356400pt;}
.y4d{bottom:691.725200pt;}
.yd6{bottom:691.817200pt;}
.y70{bottom:692.468133pt;}
.yf7{bottom:694.004267pt;}
.y1c4{bottom:696.467867pt;}
.y13e{bottom:698.517867pt;}
.y28{bottom:698.927333pt;}
.y1e7{bottom:699.731333pt;}
.y183{bottom:700.247867pt;}
.y1a4{bottom:702.095867pt;}
.y160{bottom:704.078800pt;}
.y6{bottom:705.727333pt;}
.y93{bottom:707.253733pt;}
.y11b{bottom:707.257867pt;}
.yb5{bottom:709.864400pt;}
.y4c{bottom:710.171200pt;}
.yd5{bottom:710.247867pt;}
.y6f{bottom:710.791467pt;}
.yf6{bottom:712.077333pt;}
.y27{bottom:716.398000pt;}
.y1e6{bottom:717.064667pt;}
.y182{bottom:718.587867pt;}
.y13d{bottom:719.294533pt;}
.y1c3{bottom:722.367867pt;}
.y15f{bottom:723.490800pt;}
.y92{bottom:726.283467pt;}
.y11a{bottom:726.286533pt;}
.yb4{bottom:728.371733pt;}
.y4b{bottom:728.617200pt;}
.yd4{bottom:728.678533pt;}
.y6e{bottom:729.107867pt;}
.y1a3{bottom:729.283867pt;}
.yf5{bottom:730.140000pt;}
.y5{bottom:732.007333pt;}
.y26{bottom:733.864667pt;}
.y1e5{bottom:734.398000pt;}
.y13c{bottom:740.071200pt;}
.y1c2{bottom:740.707867pt;}
.y181{bottom:742.597867pt;}
.y15e{bottom:742.902800pt;}
.y91{bottom:745.313067pt;}
.y119{bottom:745.315200pt;}
.yb3{bottom:746.879067pt;}
.y4a{bottom:747.063200pt;}
.yd3{bottom:747.109200pt;}
.y6d{bottom:747.431200pt;}
.yf4{bottom:748.213200pt;}
.y1a2{bottom:748.911867pt;}
.y25{bottom:751.331333pt;}
.y1e4{bottom:751.731333pt;}
.y4{bottom:758.287333pt;}
.y13b{bottom:760.847867pt;}
.y180{bottom:760.937867pt;}
.y15d{bottom:762.314800pt;}
.y90{bottom:764.342800pt;}
.y118{bottom:764.343867pt;}
.yb2{bottom:765.386400pt;}
.y49{bottom:765.509200pt;}
.yd2{bottom:765.539867pt;}
.y6c{bottom:765.754533pt;}
.yf3{bottom:766.275867pt;}
.y1c1{bottom:766.607867pt;}
.y24{bottom:768.798000pt;}
.y1e3{bottom:769.064667pt;}
.y1a1{bottom:776.099867pt;}
.y17f{bottom:779.277867pt;}
.y13a{bottom:781.624533pt;}
.y8f{bottom:783.372533pt;}
.yb1{bottom:783.893867pt;}
.y48{bottom:783.955200pt;}
.yd1{bottom:783.970533pt;}
.y6b{bottom:784.077867pt;}
.yf2{bottom:784.338533pt;}
.y3{bottom:784.567333pt;}
.y1c0{bottom:784.947867pt;}
.y23{bottom:786.264667pt;}
.y1e2{bottom:786.398000pt;}
.y15c{bottom:800.627733pt;}
.y47{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.hd{height:33.763396pt;}
.h10{height:39.479167pt;}
.hf{height:43.138396pt;}
.h16{height:44.414062pt;}
.h4{height:49.348958pt;}
.h23{height:49.361758pt;}
.h22{height:49.386825pt;}
.h3{height:51.816406pt;}
.he{height:53.789062pt;}
.h9{height:56.751302pt;}
.h19{height:56.779035pt;}
.ha{height:56.813702pt;}
.hc{height:56.855302pt;}
.h8{height:59.765625pt;}
.h2{height:61.686198pt;}
.h1f{height:62.444040pt;}
.h21{height:62.686173pt;}
.h20{height:62.709640pt;}
.h1e{height:62.753906pt;}
.h1d{height:66.621094pt;}
.h1c{height:68.607802pt;}
.h11{height:68.706469pt;}
.h1b{height:68.716602pt;}
.h17{height:68.727802pt;}
.h18{height:68.729402pt;}
.hb{height:68.730469pt;}
.h15{height:68.737402pt;}
.h14{height:68.744335pt;}
.h12{height:68.751269pt;}
.h1a{height:68.757669pt;}
.h13{height:68.765135pt;}
.h7{height:83.671875pt;}
.h6{height:88.828125pt;}
.h5{height:107.578125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:73.079333pt;}
.x6{left:74.335600pt;}
.x4{left:75.747200pt;}
.x5{left:91.738933pt;}
.x7{left:93.381200pt;}
.x3{left:94.333867pt;}
.x2{left:207.480400pt;}
}




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