
    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_c15864d82cc3593ce1022050.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4f4378dae9a65f19822ca653.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a658e351ad85117e03d6d25e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bb5a69b1c775804d4280d26f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_734c937b650858918a513603.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0b1d16d0301b40ce943875c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_33aa6e1ac282a40b5e905028.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_39ec757e4cb3e12f2ce344f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.656000px;}
.ls2{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.224000px;}
.ls7{letter-spacing:-1.152000px;}
.lsa{letter-spacing:-0.936000px;}
.ls1{letter-spacing:-0.864000px;}
.ls3{letter-spacing:-0.726000px;}
.ls5{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8c{word-spacing:-24.000000px;}
.ws8e{word-spacing:-21.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws8d{word-spacing:-16.344000px;}
.ws97{word-spacing:-16.200000px;}
.ws6{word-spacing:-16.128000px;}
.ws92{word-spacing:-15.984000px;}
.ws95{word-spacing:-15.552000px;}
.ws96{word-spacing:-15.264000px;}
.ws94{word-spacing:-14.832000px;}
.ws84{word-spacing:-14.388000px;}
.wsb{word-spacing:-12.816000px;}
.ws9{word-spacing:-12.096000px;}
.ws5{word-spacing:-8.856000px;}
.ws7{word-spacing:-6.048000px;}
.ws3{word-spacing:-6.000000px;}
.ws8{word-spacing:-5.976000px;}
.ws8f{word-spacing:-3.960000px;}
.ws6a{word-spacing:-3.600000px;}
.wsd{word-spacing:-3.456000px;}
.ws79{word-spacing:-3.312000px;}
.ws21{word-spacing:-3.240000px;}
.ws71{word-spacing:-3.096000px;}
.ws2c{word-spacing:-2.952000px;}
.ws15{word-spacing:-2.592000px;}
.ws17{word-spacing:-2.520000px;}
.wse{word-spacing:-2.376000px;}
.ws27{word-spacing:-2.232000px;}
.ws31{word-spacing:-2.160000px;}
.ws33{word-spacing:-2.088000px;}
.ws22{word-spacing:-2.016000px;}
.ws5f{word-spacing:-1.944000px;}
.ws2b{word-spacing:-1.872000px;}
.ws10{word-spacing:-1.800000px;}
.ws58{word-spacing:-1.728000px;}
.ws76{word-spacing:-1.656000px;}
.wsc{word-spacing:-1.584000px;}
.ws78{word-spacing:-1.512000px;}
.ws82{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.368000px;}
.wsa{word-spacing:-1.296000px;}
.ws8b{word-spacing:-1.080000px;}
.ws1c{word-spacing:-1.008000px;}
.ws4{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.792000px;}
.ws87{word-spacing:-0.720000px;}
.ws54{word-spacing:-0.648000px;}
.ws81{word-spacing:-0.504000px;}
.ws2a{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.144000px;}
.ws59{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.072000px;}
.ws12{word-spacing:0.216000px;}
.ws29{word-spacing:0.288000px;}
.ws93{word-spacing:0.360000px;}
.ws91{word-spacing:0.504000px;}
.ws3b{word-spacing:0.576000px;}
.ws2f{word-spacing:0.648000px;}
.ws77{word-spacing:0.720000px;}
.ws1{word-spacing:0.864000px;}
.ws86{word-spacing:0.936000px;}
.ws61{word-spacing:1.008000px;}
.ws39{word-spacing:1.152000px;}
.ws68{word-spacing:1.224000px;}
.ws34{word-spacing:1.296000px;}
.ws1f{word-spacing:1.368000px;}
.ws30{word-spacing:1.440000px;}
.ws6f{word-spacing:1.512000px;}
.ws25{word-spacing:1.584000px;}
.ws80{word-spacing:1.656000px;}
.ws37{word-spacing:1.728000px;}
.ws56{word-spacing:1.800000px;}
.ws5a{word-spacing:1.872000px;}
.ws28{word-spacing:1.944000px;}
.ws13{word-spacing:2.016000px;}
.ws2e{word-spacing:2.088000px;}
.ws1a{word-spacing:2.160000px;}
.ws14{word-spacing:2.232000px;}
.ws45{word-spacing:2.376000px;}
.ws6d{word-spacing:2.448000px;}
.ws60{word-spacing:2.592000px;}
.ws3c{word-spacing:2.664000px;}
.ws89{word-spacing:2.808000px;}
.ws2d{word-spacing:2.880000px;}
.ws3f{word-spacing:2.952000px;}
.ws69{word-spacing:3.024000px;}
.ws5d{word-spacing:3.096000px;}
.ws18{word-spacing:3.240000px;}
.ws11{word-spacing:3.384000px;}
.ws3d{word-spacing:3.456000px;}
.ws4f{word-spacing:3.528000px;}
.ws32{word-spacing:3.600000px;}
.ws20{word-spacing:3.672000px;}
.ws3a{word-spacing:3.816000px;}
.ws4a{word-spacing:3.888000px;}
.ws75{word-spacing:4.032000px;}
.ws83{word-spacing:4.104000px;}
.ws16{word-spacing:4.176000px;}
.ws66{word-spacing:4.248000px;}
.ws35{word-spacing:4.320000px;}
.ws8a{word-spacing:4.392000px;}
.ws57{word-spacing:4.536000px;}
.ws70{word-spacing:4.608000px;}
.ws90{word-spacing:4.680000px;}
.ws1b{word-spacing:4.824000px;}
.ws85{word-spacing:4.896000px;}
.ws1e{word-spacing:4.968000px;}
.ws38{word-spacing:5.040000px;}
.ws5c{word-spacing:5.184000px;}
.ws53{word-spacing:5.328000px;}
.ws19{word-spacing:5.400000px;}
.ws5b{word-spacing:5.472000px;}
.ws24{word-spacing:5.544000px;}
.ws4d{word-spacing:5.688000px;}
.ws88{word-spacing:5.760000px;}
.ws7d{word-spacing:6.120000px;}
.ws73{word-spacing:6.264000px;}
.ws47{word-spacing:6.336000px;}
.ws48{word-spacing:6.480000px;}
.ws5e{word-spacing:6.552000px;}
.ws4e{word-spacing:6.984000px;}
.ws42{word-spacing:7.200000px;}
.ws51{word-spacing:7.272000px;}
.ws6b{word-spacing:7.560000px;}
.ws6e{word-spacing:7.704000px;}
.ws72{word-spacing:7.776000px;}
.ws65{word-spacing:7.848000px;}
.ws52{word-spacing:8.208000px;}
.ws44{word-spacing:8.352000px;}
.ws63{word-spacing:8.424000px;}
.ws3e{word-spacing:8.712000px;}
.ws64{word-spacing:9.288000px;}
.ws49{word-spacing:9.504000px;}
.ws67{word-spacing:10.080000px;}
.ws74{word-spacing:10.584000px;}
.ws4b{word-spacing:10.800000px;}
.ws7f{word-spacing:11.088000px;}
.ws55{word-spacing:12.240000px;}
.ws7b{word-spacing:12.744000px;}
.ws6c{word-spacing:13.320000px;}
.ws50{word-spacing:13.392000px;}
.ws7a{word-spacing:14.040000px;}
.ws7e{word-spacing:14.184000px;}
.ws40{word-spacing:14.976000px;}
.ws46{word-spacing:15.336000px;}
.ws41{word-spacing:15.552000px;}
.ws4c{word-spacing:25.920000px;}
.ws7c{word-spacing:27.288000px;}
.ws43{word-spacing:28.440000px;}
._f{margin-left:-23.565600px;}
._11{margin-left:-17.179200px;}
._7{margin-left:-13.089600px;}
._4{margin-left:-9.936000px;}
._12{margin-left:-8.179200px;}
._8{margin-left:-7.017600px;}
._3{margin-left:-5.976000px;}
._a{margin-left:-4.924800px;}
._6{margin-left:-3.700800px;}
._0{margin-left:-2.620800px;}
._2{margin-left:-1.200000px;}
._1{width:1.363200px;}
._b{width:2.424000px;}
._c{width:3.816000px;}
._9{width:4.953600px;}
._d{width:6.321600px;}
._e{width:9.057600px;}
._5{width:11.985600px;}
._10{width:184.212000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:50.693700px;}
.y5{bottom:71.273250px;}
.y9a{bottom:74.831400px;}
.yfc{bottom:81.419700px;}
.y49{bottom:84.889650px;}
.y124{bottom:84.974700px;}
.y6f{bottom:88.613700px;}
.y122{bottom:90.247050px;}
.y99{bottom:92.831400px;}
.y4{bottom:92.873250px;}
.y18c{bottom:98.570850px;}
.yfb{bottom:99.419700px;}
.y1a0{bottom:100.696950px;}
.yc8{bottom:102.492900px;}
.yeb{bottom:103.317900px;}
.y38{bottom:104.005800px;}
.ydb{bottom:104.618700px;}
.y87{bottom:107.101050px;}
.y153{bottom:109.873500px;}
.y48{bottom:111.889650px;}
.y3{bottom:114.473250px;}
.y167{bottom:117.357000px;}
.yfa{bottom:117.374550px;}
.yae{bottom:117.374700px;}
.yde{bottom:117.705450px;}
.y18b{bottom:120.170850px;}
.y125{bottom:121.652700px;}
.y19f{bottom:122.296950px;}
.y121{bottom:122.647200px;}
.y84{bottom:128.174700px;}
.y37{bottom:131.005800px;}
.yc7{bottom:134.892750px;}
.ydd{bottom:135.705450px;}
.yda{bottom:137.018700px;}
.y47{bottom:138.889650px;}
.y18a{bottom:141.770850px;}
.y19e{bottom:143.896950px;}
.y97{bottom:149.774550px;}
.yad{bottom:149.774700px;}
.y6e{bottom:153.413700px;}
.y184{bottom:153.506250px;}
.y1e2{bottom:154.434300px;}
.y120{bottom:155.047050px;}
.y36{bottom:158.005800px;}
.y1ac{bottom:160.224450px;}
.y83{bottom:160.574700px;}
.y189{bottom:163.370850px;}
.y19d{bottom:165.496950px;}
.y46{bottom:165.889650px;}
.yc6{bottom:167.292900px;}
.yd9{bottom:169.418700px;}
.y16f{bottom:170.854350px;}
.y19c{bottom:172.980300px;}
.y183{bottom:175.106250px;}
.y1e1{bottom:176.034300px;}
.y1c8{bottom:177.232350px;}
.y1ab{bottom:181.824450px;}
.y166{bottom:182.157000px;}
.y96{bottom:182.174550px;}
.yac{bottom:182.174700px;}
.y35{bottom:185.005800px;}
.y6d{bottom:185.813700px;}
.y11f{bottom:187.447050px;}
.y16e{bottom:192.454350px;}
.y45{bottom:192.889650px;}
.y82{bottom:192.974700px;}
.y19b{bottom:194.580300px;}
.y1d4{bottom:196.366200px;}
.y182{bottom:196.706250px;}
.y1e0{bottom:197.634300px;}
.y1a8{bottom:198.492150px;}
.y1c7{bottom:198.832350px;}
.y1b4{bottom:200.618100px;}
.yd8{bottom:201.818700px;}
.y1aa{bottom:203.424450px;}
.y188{bottom:204.870150px;}
.y152{bottom:207.073500px;}
.y34{bottom:212.005800px;}
.y1b8{bottom:213.373950px;}
.y16d{bottom:214.054350px;}
.y95{bottom:214.574550px;}
.yab{bottom:214.574700px;}
.y19a{bottom:216.180300px;}
.y1d3{bottom:217.966200px;}
.y6c{bottom:218.213700px;}
.y181{bottom:218.306250px;}
.y1df{bottom:219.234300px;}
.y11e{bottom:219.847200px;}
.y1a7{bottom:220.092150px;}
.y1c6{bottom:220.432350px;}
.yb2{bottom:221.453400px;}
.y1b3{bottom:222.218100px;}
.y1a9{bottom:225.024450px;}
.y81{bottom:225.374700px;}
.y187{bottom:226.470150px;}
.yc5{bottom:232.092750px;}
.yd7{bottom:234.218700px;}
.y1b7{bottom:234.973950px;}
.y16c{bottom:235.654350px;}
.y199{bottom:237.780300px;}
.y33{bottom:239.005800px;}
.y1d2{bottom:239.566200px;}
.y180{bottom:239.906250px;}
.y12f{bottom:240.596550px;}
.y1a6{bottom:241.692150px;}
.y1c5{bottom:242.032350px;}
.y1b2{bottom:243.818100px;}
.y44{bottom:246.889650px;}
.y165{bottom:246.956850px;}
.y94{bottom:246.974550px;}
.yaa{bottom:246.974700px;}
.y186{bottom:248.070150px;}
.y198{bottom:249.515850px;}
.y6b{bottom:250.613700px;}
.y11d{bottom:252.247050px;}
.y1b6{bottom:256.573950px;}
.y80{bottom:257.774700px;}
.y1d1{bottom:261.166200px;}
.y1a5{bottom:263.292150px;}
.yc4{bottom:264.492900px;}
.y1b1{bottom:265.418100px;}
.yd6{bottom:266.618700px;}
.y185{bottom:269.670150px;}
.y197{bottom:271.115850px;}
.y151{bottom:271.873500px;}
.y12e{bottom:272.996550px;}
.y1e6{bottom:275.027550px;}
.y1b5{bottom:278.173950px;}
.y164{bottom:279.357000px;}
.y93{bottom:279.374550px;}
.ya9{bottom:279.374700px;}
.y1a4{bottom:281.405550px;}
.y6a{bottom:283.013700px;}
.y11c{bottom:284.647200px;}
.y7f{bottom:290.174700px;}
.y1b0{bottom:292.035450px;}
.y196{bottom:292.715850px;}
.y1e5{bottom:296.627550px;}
.yc3{bottom:296.892750px;}
.yd5{bottom:299.018700px;}
.y1ee{bottom:300.539400px;}
.y1a3{bottom:303.005550px;}
.y150{bottom:304.273500px;}
.y12d{bottom:305.396550px;}
.y1ea{bottom:306.917400px;}
.y163{bottom:311.757000px;}
.y92{bottom:311.774550px;}
.ya8{bottom:311.774700px;}
.y1af{bottom:313.635450px;}
.y195{bottom:314.315850px;}
.y69{bottom:315.413700px;}
.y11b{bottom:317.047050px;}
.y1e4{bottom:318.227550px;}
.y1ed{bottom:322.139400px;}
.y7e{bottom:322.574700px;}
.y32{bottom:324.275550px;}
.y1a2{bottom:324.605550px;}
.y1d8{bottom:326.051250px;}
.y1e9{bottom:328.517400px;}
.yd4{bottom:331.418700px;}
.y1ae{bottom:335.235450px;}
.y12c{bottom:337.796700px;}
.yaf{bottom:338.251950px;}
.y1dc{bottom:338.807100px;}
.y1e3{bottom:339.827550px;}
.y1ec{bottom:343.739400px;}
.y91{bottom:344.174550px;}
.ya7{bottom:344.174700px;}
.y1a1{bottom:346.205550px;}
.y190{bottom:347.311050px;}
.y1d7{bottom:347.651250px;}
.y68{bottom:347.813700px;}
.y1c0{bottom:349.437000px;}
.y11a{bottom:349.447050px;}
.y1e8{bottom:350.117400px;}
.y31{bottom:351.275550px;}
.y1cc{bottom:351.562950px;}
.y1de{bottom:351.563100px;}
.yc9{bottom:353.430750px;}
.y1ad{bottom:356.835450px;}
.y1c4{bottom:357.940950px;}
.y1db{bottom:360.407100px;}
.yd3{bottom:363.818700px;}
.y1eb{bottom:365.339400px;}
.y18f{bottom:368.911050px;}
.y14f{bottom:369.073500px;}
.y1d6{bottom:369.251250px;}
.y12b{bottom:370.196550px;}
.y1bf{bottom:371.037000px;}
.y1e7{bottom:371.717400px;}
.y1cb{bottom:373.162950px;}
.y162{bottom:376.557000px;}
.y90{bottom:376.574550px;}
.ya6{bottom:376.574700px;}
.y17f{bottom:377.074800px;}
.y30{bottom:378.275550px;}
.y194{bottom:379.200900px;}
.y1c3{bottom:379.540950px;}
.y123{bottom:380.166150px;}
.y67{bottom:380.213700px;}
.y119{bottom:381.847200px;}
.y1da{bottom:382.007100px;}
.y86{bottom:385.523550px;}
.y17b{bottom:385.578750px;}
.y1d0{bottom:389.830650px;}
.y18e{bottom:390.511050px;}
.y1d5{bottom:390.851250px;}
.y1be{bottom:392.637000px;}
.y1ca{bottom:394.762950px;}
.y1dd{bottom:394.763100px;}
.yd2{bottom:396.218700px;}
.y177{bottom:398.334600px;}
.y17e{bottom:398.674800px;}
.y193{bottom:400.800900px;}
.y1c2{bottom:401.140950px;}
.y14e{bottom:401.473500px;}
.y12a{bottom:402.596550px;}
.y1d9{bottom:403.607100px;}
.y2f{bottom:405.275550px;}
.y85{bottom:405.323550px;}
.y17a{bottom:407.178750px;}
.y1bc{bottom:408.964500px;}
.y8f{bottom:408.974550px;}
.ya5{bottom:408.974700px;}
.y1cf{bottom:411.430800px;}
.y18d{bottom:412.111050px;}
.y66{bottom:412.613700px;}
.y1bd{bottom:414.237000px;}
.y118{bottom:414.247050px;}
.y1c9{bottom:416.362950px;}
.y176{bottom:419.934750px;}
.y17d{bottom:420.274800px;}
.y192{bottom:422.400900px;}
.y1c1{bottom:422.740950px;}
.yd1{bottom:428.618700px;}
.y179{bottom:428.778750px;}
.y1bb{bottom:430.564650px;}
.y2e{bottom:432.275550px;}
.y1ce{bottom:433.030800px;}
.y129{bottom:434.996550px;}
.y161{bottom:441.357000px;}
.yf9{bottom:441.374550px;}
.ya4{bottom:441.374700px;}
.y175{bottom:441.534600px;}
.y17c{bottom:441.874800px;}
.y191{bottom:444.000750px;}
.y117{bottom:446.647050px;}
.y70{bottom:449.868000px;}
.y178{bottom:450.378750px;}
.y1ba{bottom:452.164650px;}
.y173{bottom:453.610200px;}
.y1cd{bottom:454.630800px;}
.yd0{bottom:461.018700px;}
.y174{bottom:463.134600px;}
.y14d{bottom:466.273500px;}
.y160{bottom:473.757000px;}
.y1b9{bottom:473.764500px;}
.ya3{bottom:473.774700px;}
.y172{bottom:475.210350px;}
.y116{bottom:479.047050px;}
.y103{bottom:480.832950px;}
.y2d{bottom:486.275550px;}
.ycf{bottom:493.418700px;}
.y130{bottom:496.740900px;}
.y171{bottom:496.810200px;}
.yf8{bottom:506.174550px;}
.ya2{bottom:506.174700px;}
.y98{bottom:509.001600px;}
.y115{bottom:511.447200px;}
.y102{bottom:513.232950px;}
.y2c{bottom:513.275550px;}
.y4f{bottom:516.248850px;}
.y170{bottom:518.410200px;}
.y14c{bottom:531.073500px;}
.y15f{bottom:538.557000px;}
.yf7{bottom:538.574550px;}
.ya1{bottom:538.574700px;}
.y2b{bottom:540.275550px;}
.y4e{bottom:543.248850px;}
.y114{bottom:543.847200px;}
.y101{bottom:545.632950px;}
.y4d{bottom:570.248850px;}
.yf6{bottom:570.974550px;}
.ya0{bottom:570.974700px;}
.y113{bottom:576.247050px;}
.y100{bottom:578.032950px;}
.y2a{bottom:594.275550px;}
.y14b{bottom:595.873500px;}
.y4c{bottom:597.248850px;}
.yf{bottom:603.201300px;}
.y15e{bottom:603.357000px;}
.yf5{bottom:603.374550px;}
.y9f{bottom:603.374700px;}
.y112{bottom:608.647050px;}
.yff{bottom:610.432950px;}
.ydc{bottom:617.773950px;}
.yc2{bottom:620.892750px;}
.y29{bottom:621.275550px;}
.y4b{bottom:624.248850px;}
.yf4{bottom:635.774550px;}
.y9e{bottom:635.774700px;}
.y111{bottom:641.047050px;}
.y13b{bottom:647.840250px;}
.y28{bottom:648.275550px;}
.y141{bottom:649.626000px;}
.yc1{bottom:653.292750px;}
.y14a{bottom:660.673500px;}
.ye{bottom:668.001300px;}
.y2{bottom:668.004750px;}
.y15d{bottom:668.157000px;}
.yf3{bottom:668.174550px;}
.y9d{bottom:668.174700px;}
.y4a{bottom:672.848850px;}
.y110{bottom:673.447200px;}
.y27{bottom:675.275550px;}
.yc0{bottom:685.692750px;}
.yfe{bottom:689.496750px;}
.y149{bottom:693.073500px;}
.yf2{bottom:700.574550px;}
.y9c{bottom:700.574700px;}
.y13a{bottom:701.840250px;}
.y26{bottom:702.275550px;}
.ybf{bottom:718.092750px;}
.y25{bottom:729.275550px;}
.yd{bottom:732.801300px;}
.y15c{bottom:732.957000px;}
.yf1{bottom:732.974550px;}
.y7d{bottom:732.974700px;}
.y139{bottom:734.240250px;}
.y140{bottom:736.026000px;}
.y10f{bottom:738.247050px;}
.y1{bottom:740.004750px;}
.ybe{bottom:750.492900px;}
.y148{bottom:757.873500px;}
.yf0{bottom:765.374550px;}
.y7c{bottom:765.374700px;}
.y10e{bottom:770.647200px;}
.ybd{bottom:782.892750px;}
.y24{bottom:783.275550px;}
.yea{bottom:792.459750px;}
.yc{bottom:797.601300px;}
.y15b{bottom:797.757000px;}
.yef{bottom:797.774550px;}
.y7b{bottom:797.774700px;}
.y138{bottom:799.040250px;}
.y13f{bottom:800.826000px;}
.y65{bottom:801.413700px;}
.y10d{bottom:803.047050px;}
.y23{bottom:810.275550px;}
.ybc{bottom:815.292900px;}
.y147{bottom:822.673500px;}
.ye9{bottom:824.859750px;}
.y127{bottom:827.728200px;}
.y15a{bottom:830.157000px;}
.yee{bottom:830.174550px;}
.y7a{bottom:830.174700px;}
.y64{bottom:833.813700px;}
.y10c{bottom:835.447050px;}
.y22{bottom:837.275550px;}
.yb0{bottom:837.335400px;}
.y43{bottom:840.889650px;}
.y128{bottom:846.028350px;}
.y126{bottom:847.528350px;}
.ybb{bottom:847.692750px;}
.y137{bottom:853.040250px;}
.y13e{bottom:853.337700px;}
.y146{bottom:855.073500px;}
.y5a{bottom:855.471000px;}
.ye8{bottom:857.259750px;}
.yb{bottom:862.401300px;}
.yed{bottom:862.574550px;}
.y79{bottom:862.574700px;}
.y21{bottom:864.275550px;}
.y63{bottom:866.213700px;}
.y42{bottom:867.889650px;}
.y59{bottom:882.471000px;}
.ye7{bottom:889.659600px;}
.y20{bottom:891.275550px;}
.y18{bottom:894.531900px;}
.y41{bottom:894.889650px;}
.y159{bottom:894.956850px;}
.y78{bottom:894.974700px;}
.y136{bottom:896.240250px;}
.y62{bottom:898.613700px;}
.y10b{bottom:900.247050px;}
.y58{bottom:909.471000px;}
.yba{bottom:912.492900px;}
.y135{bottom:917.840250px;}
.y1f{bottom:918.275550px;}
.yb1{bottom:919.811700px;}
.y145{bottom:919.873500px;}
.y17{bottom:921.531900px;}
.ye6{bottom:922.059750px;}
.ya{bottom:927.201300px;}
.y158{bottom:927.357000px;}
.yec{bottom:927.374550px;}
.y9b{bottom:927.374700px;}
.yfd{bottom:930.769800px;}
.y61{bottom:931.013700px;}
.y10a{bottom:932.647200px;}
.y57{bottom:936.471000px;}
.y134{bottom:939.440250px;}
.y13d{bottom:939.737850px;}
.yb9{bottom:944.892750px;}
.y40{bottom:948.889650px;}
.ye5{bottom:954.459750px;}
.y8e{bottom:959.774550px;}
.y77{bottom:959.774700px;}
.y60{bottom:963.413700px;}
.y109{bottom:965.047050px;}
.y16{bottom:970.131900px;}
.y1e{bottom:972.275550px;}
.y3f{bottom:975.889650px;}
.yb8{bottom:977.292900px;}
.y16b{bottom:981.527100px;}
.y133{bottom:982.640250px;}
.y13c{bottom:982.937850px;}
.y144{bottom:984.673500px;}
.ye4{bottom:986.859750px;}
.y56{bottom:990.471000px;}
.y9{bottom:992.001300px;}
.y157{bottom:992.157000px;}
.y8d{bottom:992.174550px;}
.y76{bottom:992.174700px;}
.y5f{bottom:995.813850px;}
.y15{bottom:997.131900px;}
.y108{bottom:997.447050px;}
.y1d{bottom:999.275550px;}
.y3e{bottom:1002.889650px;}
.yce{bottom:1011.818700px;}
.y55{bottom:1017.471000px;}
.ye3{bottom:1019.259750px;}
.y14{bottom:1024.131900px;}
.y8c{bottom:1024.574550px;}
.y75{bottom:1024.574700px;}
.y1c{bottom:1026.275550px;}
.y5e{bottom:1028.213700px;}
.y107{bottom:1029.847200px;}
.y132{bottom:1036.640250px;}
.yb7{bottom:1042.092750px;}
.ycd{bottom:1044.218700px;}
.y54{bottom:1044.471000px;}
.y16a{bottom:1046.327100px;}
.y143{bottom:1049.473500px;}
.y13{bottom:1051.131900px;}
.y1b{bottom:1053.275550px;}
.y8{bottom:1056.801300px;}
.y3d{bottom:1056.889650px;}
.y156{bottom:1056.957000px;}
.y8b{bottom:1056.974550px;}
.y74{bottom:1056.974700px;}
.y5d{bottom:1060.613850px;}
.y106{bottom:1062.247050px;}
.y53{bottom:1071.471000px;}
.yb6{bottom:1074.492900px;}
.ycc{bottom:1076.618700px;}
.y12{bottom:1078.131900px;}
.y1a{bottom:1080.275550px;}
.ye2{bottom:1084.059750px;}
.y8a{bottom:1089.374700px;}
.y5c{bottom:1093.013700px;}
.y105{bottom:1094.647200px;}
.y52{bottom:1098.471000px;}
.yb5{bottom:1106.892750px;}
.y3a{bottom:1107.310950px;}
.ycb{bottom:1109.018700px;}
.y169{bottom:1111.127100px;}
.y142{bottom:1114.273650px;}
.ye1{bottom:1116.459750px;}
.y7{bottom:1121.601300px;}
.y155{bottom:1121.757000px;}
.y89{bottom:1121.774550px;}
.y73{bottom:1121.774700px;}
.y51{bottom:1125.471000px;}
.y104{bottom:1127.047050px;}
.y39{bottom:1134.310950px;}
.yb4{bottom:1139.292900px;}
.yca{bottom:1141.418850px;}
.ye0{bottom:1148.859750px;}
.y72{bottom:1154.174700px;}
.y19{bottom:1160.478300px;}
.y3c{bottom:1170.045300px;}
.yb3{bottom:1171.692750px;}
.y5b{bottom:1172.171400px;}
.y131{bottom:1174.297200px;}
.y168{bottom:1175.927100px;}
.y50{bottom:1179.471000px;}
.y3b{bottom:1180.179150px;}
.ydf{bottom:1181.259750px;}
.y11{bottom:1182.801150px;}
.y6{bottom:1182.801300px;}
.y154{bottom:1186.557000px;}
.y88{bottom:1186.574550px;}
.y71{bottom:1186.574700px;}
.hc{height:42.720000px;}
.hd{height:46.992000px;}
.ha{height:48.761719px;}
.h9{height:49.992188px;}
.h8{height:50.027344px;}
.h4{height:51.264000px;}
.hb{height:52.825195px;}
.h6{height:63.175781px;}
.h7{height:63.949219px;}
.he{height:74.607422px;}
.h5{height:85.265625px;}
.h3{height:85.440000px;}
.h2{height:138.556641px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:82.913400px;}
.x17{left:83.976300px;}
.x6{left:85.039350px;}
.x20{left:86.102400px;}
.xc{left:87.618900px;}
.x19{left:93.543300px;}
.x1c{left:99.921300px;}
.x1d{left:115.255800px;}
.xa{left:116.929050px;}
.x1{left:129.891600px;}
.x11{left:144.567000px;}
.x25{left:146.692950px;}
.x24{left:149.881800px;}
.x28{left:153.070800px;}
.x26{left:157.772700px;}
.x15{left:159.448800px;}
.x21{left:168.402600px;}
.x29{left:170.078700px;}
.x27{left:172.204650px;}
.x7{left:176.456700px;}
.x10{left:178.582650px;}
.x23{left:180.708600px;}
.x12{left:188.101800px;}
.x1f{left:191.338650px;}
.x13{left:204.094500px;}
.x22{left:220.033350px;}
.x2{left:303.306750px;}
.x3{left:338.543550px;}
.x18{left:365.669250px;}
.xd{left:380.551200px;}
.x4{left:396.664200px;}
.xe{left:431.574750px;}
.x9{left:437.816700px;}
.x5{left:441.870750px;}
.xb{left:446.456700px;}
.x1a{left:470.905500px;}
.x16{left:480.472350px;}
.xf{left:486.850350px;}
.x1b{left:495.354300px;}
.x1e{left:550.629900px;}
.x14{left:586.771650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.472000pt;}
.ls2{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.088000pt;}
.ls7{letter-spacing:-1.024000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls1{letter-spacing:-0.768000pt;}
.ls3{letter-spacing:-0.645333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8c{word-spacing:-21.333333pt;}
.ws8e{word-spacing:-18.666667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8d{word-spacing:-14.528000pt;}
.ws97{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.336000pt;}
.ws92{word-spacing:-14.208000pt;}
.ws95{word-spacing:-13.824000pt;}
.ws96{word-spacing:-13.568000pt;}
.ws94{word-spacing:-13.184000pt;}
.ws84{word-spacing:-12.789333pt;}
.wsb{word-spacing:-11.392000pt;}
.ws9{word-spacing:-10.752000pt;}
.ws5{word-spacing:-7.872000pt;}
.ws7{word-spacing:-5.376000pt;}
.ws3{word-spacing:-5.333333pt;}
.ws8{word-spacing:-5.312000pt;}
.ws8f{word-spacing:-3.520000pt;}
.ws6a{word-spacing:-3.200000pt;}
.wsd{word-spacing:-3.072000pt;}
.ws79{word-spacing:-2.944000pt;}
.ws21{word-spacing:-2.880000pt;}
.ws71{word-spacing:-2.752000pt;}
.ws2c{word-spacing:-2.624000pt;}
.ws15{word-spacing:-2.304000pt;}
.ws17{word-spacing:-2.240000pt;}
.wse{word-spacing:-2.112000pt;}
.ws27{word-spacing:-1.984000pt;}
.ws31{word-spacing:-1.920000pt;}
.ws33{word-spacing:-1.856000pt;}
.ws22{word-spacing:-1.792000pt;}
.ws5f{word-spacing:-1.728000pt;}
.ws2b{word-spacing:-1.664000pt;}
.ws10{word-spacing:-1.600000pt;}
.ws58{word-spacing:-1.536000pt;}
.ws76{word-spacing:-1.472000pt;}
.wsc{word-spacing:-1.408000pt;}
.ws78{word-spacing:-1.344000pt;}
.ws82{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.216000pt;}
.wsa{word-spacing:-1.152000pt;}
.ws8b{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws4{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.704000pt;}
.ws87{word-spacing:-0.640000pt;}
.ws54{word-spacing:-0.576000pt;}
.ws81{word-spacing:-0.448000pt;}
.ws2a{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.128000pt;}
.ws59{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.064000pt;}
.ws12{word-spacing:0.192000pt;}
.ws29{word-spacing:0.256000pt;}
.ws93{word-spacing:0.320000pt;}
.ws91{word-spacing:0.448000pt;}
.ws3b{word-spacing:0.512000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws77{word-spacing:0.640000pt;}
.ws1{word-spacing:0.768000pt;}
.ws86{word-spacing:0.832000pt;}
.ws61{word-spacing:0.896000pt;}
.ws39{word-spacing:1.024000pt;}
.ws68{word-spacing:1.088000pt;}
.ws34{word-spacing:1.152000pt;}
.ws1f{word-spacing:1.216000pt;}
.ws30{word-spacing:1.280000pt;}
.ws6f{word-spacing:1.344000pt;}
.ws25{word-spacing:1.408000pt;}
.ws80{word-spacing:1.472000pt;}
.ws37{word-spacing:1.536000pt;}
.ws56{word-spacing:1.600000pt;}
.ws5a{word-spacing:1.664000pt;}
.ws28{word-spacing:1.728000pt;}
.ws13{word-spacing:1.792000pt;}
.ws2e{word-spacing:1.856000pt;}
.ws1a{word-spacing:1.920000pt;}
.ws14{word-spacing:1.984000pt;}
.ws45{word-spacing:2.112000pt;}
.ws6d{word-spacing:2.176000pt;}
.ws60{word-spacing:2.304000pt;}
.ws3c{word-spacing:2.368000pt;}
.ws89{word-spacing:2.496000pt;}
.ws2d{word-spacing:2.560000pt;}
.ws3f{word-spacing:2.624000pt;}
.ws69{word-spacing:2.688000pt;}
.ws5d{word-spacing:2.752000pt;}
.ws18{word-spacing:2.880000pt;}
.ws11{word-spacing:3.008000pt;}
.ws3d{word-spacing:3.072000pt;}
.ws4f{word-spacing:3.136000pt;}
.ws32{word-spacing:3.200000pt;}
.ws20{word-spacing:3.264000pt;}
.ws3a{word-spacing:3.392000pt;}
.ws4a{word-spacing:3.456000pt;}
.ws75{word-spacing:3.584000pt;}
.ws83{word-spacing:3.648000pt;}
.ws16{word-spacing:3.712000pt;}
.ws66{word-spacing:3.776000pt;}
.ws35{word-spacing:3.840000pt;}
.ws8a{word-spacing:3.904000pt;}
.ws57{word-spacing:4.032000pt;}
.ws70{word-spacing:4.096000pt;}
.ws90{word-spacing:4.160000pt;}
.ws1b{word-spacing:4.288000pt;}
.ws85{word-spacing:4.352000pt;}
.ws1e{word-spacing:4.416000pt;}
.ws38{word-spacing:4.480000pt;}
.ws5c{word-spacing:4.608000pt;}
.ws53{word-spacing:4.736000pt;}
.ws19{word-spacing:4.800000pt;}
.ws5b{word-spacing:4.864000pt;}
.ws24{word-spacing:4.928000pt;}
.ws4d{word-spacing:5.056000pt;}
.ws88{word-spacing:5.120000pt;}
.ws7d{word-spacing:5.440000pt;}
.ws73{word-spacing:5.568000pt;}
.ws47{word-spacing:5.632000pt;}
.ws48{word-spacing:5.760000pt;}
.ws5e{word-spacing:5.824000pt;}
.ws4e{word-spacing:6.208000pt;}
.ws42{word-spacing:6.400000pt;}
.ws51{word-spacing:6.464000pt;}
.ws6b{word-spacing:6.720000pt;}
.ws6e{word-spacing:6.848000pt;}
.ws72{word-spacing:6.912000pt;}
.ws65{word-spacing:6.976000pt;}
.ws52{word-spacing:7.296000pt;}
.ws44{word-spacing:7.424000pt;}
.ws63{word-spacing:7.488000pt;}
.ws3e{word-spacing:7.744000pt;}
.ws64{word-spacing:8.256000pt;}
.ws49{word-spacing:8.448000pt;}
.ws67{word-spacing:8.960000pt;}
.ws74{word-spacing:9.408000pt;}
.ws4b{word-spacing:9.600000pt;}
.ws7f{word-spacing:9.856000pt;}
.ws55{word-spacing:10.880000pt;}
.ws7b{word-spacing:11.328000pt;}
.ws6c{word-spacing:11.840000pt;}
.ws50{word-spacing:11.904000pt;}
.ws7a{word-spacing:12.480000pt;}
.ws7e{word-spacing:12.608000pt;}
.ws40{word-spacing:13.312000pt;}
.ws46{word-spacing:13.632000pt;}
.ws41{word-spacing:13.824000pt;}
.ws4c{word-spacing:23.040000pt;}
.ws7c{word-spacing:24.256000pt;}
.ws43{word-spacing:25.280000pt;}
._f{margin-left:-20.947200pt;}
._11{margin-left:-15.270400pt;}
._7{margin-left:-11.635200pt;}
._4{margin-left:-8.832000pt;}
._12{margin-left:-7.270400pt;}
._8{margin-left:-6.237867pt;}
._3{margin-left:-5.312000pt;}
._a{margin-left:-4.377600pt;}
._6{margin-left:-3.289600pt;}
._0{margin-left:-2.329600pt;}
._2{margin-left:-1.066667pt;}
._1{width:1.211733pt;}
._b{width:2.154667pt;}
._c{width:3.392000pt;}
._9{width:4.403200pt;}
._d{width:5.619200pt;}
._e{width:8.051200pt;}
._5{width:10.653867pt;}
._10{width:163.744000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:45.061067pt;}
.y5{bottom:63.354000pt;}
.y9a{bottom:66.516800pt;}
.yfc{bottom:72.373067pt;}
.y49{bottom:75.457467pt;}
.y124{bottom:75.533067pt;}
.y6f{bottom:78.767733pt;}
.y122{bottom:80.219600pt;}
.y99{bottom:82.516800pt;}
.y4{bottom:82.554000pt;}
.y18c{bottom:87.618533pt;}
.yfb{bottom:88.373067pt;}
.y1a0{bottom:89.508400pt;}
.yc8{bottom:91.104800pt;}
.yeb{bottom:91.838133pt;}
.y38{bottom:92.449600pt;}
.ydb{bottom:92.994400pt;}
.y87{bottom:95.200933pt;}
.y153{bottom:97.665333pt;}
.y48{bottom:99.457467pt;}
.y3{bottom:101.754000pt;}
.y167{bottom:104.317333pt;}
.yfa{bottom:104.332933pt;}
.yae{bottom:104.333067pt;}
.yde{bottom:104.627067pt;}
.y18b{bottom:106.818533pt;}
.y125{bottom:108.135733pt;}
.y19f{bottom:108.708400pt;}
.y121{bottom:109.019733pt;}
.y84{bottom:113.933067pt;}
.y37{bottom:116.449600pt;}
.yc7{bottom:119.904667pt;}
.ydd{bottom:120.627067pt;}
.yda{bottom:121.794400pt;}
.y47{bottom:123.457467pt;}
.y18a{bottom:126.018533pt;}
.y19e{bottom:127.908400pt;}
.y97{bottom:133.132933pt;}
.yad{bottom:133.133067pt;}
.y6e{bottom:136.367733pt;}
.y184{bottom:136.450000pt;}
.y1e2{bottom:137.274933pt;}
.y120{bottom:137.819600pt;}
.y36{bottom:140.449600pt;}
.y1ac{bottom:142.421733pt;}
.y83{bottom:142.733067pt;}
.y189{bottom:145.218533pt;}
.y19d{bottom:147.108400pt;}
.y46{bottom:147.457467pt;}
.yc6{bottom:148.704800pt;}
.yd9{bottom:150.594400pt;}
.y16f{bottom:151.870533pt;}
.y19c{bottom:153.760267pt;}
.y183{bottom:155.650000pt;}
.y1e1{bottom:156.474933pt;}
.y1c8{bottom:157.539867pt;}
.y1ab{bottom:161.621733pt;}
.y166{bottom:161.917333pt;}
.y96{bottom:161.932933pt;}
.yac{bottom:161.933067pt;}
.y35{bottom:164.449600pt;}
.y6d{bottom:165.167733pt;}
.y11f{bottom:166.619600pt;}
.y16e{bottom:171.070533pt;}
.y45{bottom:171.457467pt;}
.y82{bottom:171.533067pt;}
.y19b{bottom:172.960267pt;}
.y1d4{bottom:174.547733pt;}
.y182{bottom:174.850000pt;}
.y1e0{bottom:175.674933pt;}
.y1a8{bottom:176.437467pt;}
.y1c7{bottom:176.739867pt;}
.y1b4{bottom:178.327200pt;}
.yd8{bottom:179.394400pt;}
.y1aa{bottom:180.821733pt;}
.y188{bottom:182.106800pt;}
.y152{bottom:184.065333pt;}
.y34{bottom:188.449600pt;}
.y1b8{bottom:189.665733pt;}
.y16d{bottom:190.270533pt;}
.y95{bottom:190.732933pt;}
.yab{bottom:190.733067pt;}
.y19a{bottom:192.160267pt;}
.y1d3{bottom:193.747733pt;}
.y6c{bottom:193.967733pt;}
.y181{bottom:194.050000pt;}
.y1df{bottom:194.874933pt;}
.y11e{bottom:195.419733pt;}
.y1a7{bottom:195.637467pt;}
.y1c6{bottom:195.939867pt;}
.yb2{bottom:196.847467pt;}
.y1b3{bottom:197.527200pt;}
.y1a9{bottom:200.021733pt;}
.y81{bottom:200.333067pt;}
.y187{bottom:201.306800pt;}
.yc5{bottom:206.304667pt;}
.yd7{bottom:208.194400pt;}
.y1b7{bottom:208.865733pt;}
.y16c{bottom:209.470533pt;}
.y199{bottom:211.360267pt;}
.y33{bottom:212.449600pt;}
.y1d2{bottom:212.947733pt;}
.y180{bottom:213.250000pt;}
.y12f{bottom:213.863600pt;}
.y1a6{bottom:214.837467pt;}
.y1c5{bottom:215.139867pt;}
.y1b2{bottom:216.727200pt;}
.y44{bottom:219.457467pt;}
.y165{bottom:219.517200pt;}
.y94{bottom:219.532933pt;}
.yaa{bottom:219.533067pt;}
.y186{bottom:220.506800pt;}
.y198{bottom:221.791867pt;}
.y6b{bottom:222.767733pt;}
.y11d{bottom:224.219600pt;}
.y1b6{bottom:228.065733pt;}
.y80{bottom:229.133067pt;}
.y1d1{bottom:232.147733pt;}
.y1a5{bottom:234.037467pt;}
.yc4{bottom:235.104800pt;}
.y1b1{bottom:235.927200pt;}
.yd6{bottom:236.994400pt;}
.y185{bottom:239.706800pt;}
.y197{bottom:240.991867pt;}
.y151{bottom:241.665333pt;}
.y12e{bottom:242.663600pt;}
.y1e6{bottom:244.468933pt;}
.y1b5{bottom:247.265733pt;}
.y164{bottom:248.317333pt;}
.y93{bottom:248.332933pt;}
.ya9{bottom:248.333067pt;}
.y1a4{bottom:250.138267pt;}
.y6a{bottom:251.567733pt;}
.y11c{bottom:253.019733pt;}
.y7f{bottom:257.933067pt;}
.y1b0{bottom:259.587067pt;}
.y196{bottom:260.191867pt;}
.y1e5{bottom:263.668933pt;}
.yc3{bottom:263.904667pt;}
.yd5{bottom:265.794400pt;}
.y1ee{bottom:267.146133pt;}
.y1a3{bottom:269.338267pt;}
.y150{bottom:270.465333pt;}
.y12d{bottom:271.463600pt;}
.y1ea{bottom:272.815467pt;}
.y163{bottom:277.117333pt;}
.y92{bottom:277.132933pt;}
.ya8{bottom:277.133067pt;}
.y1af{bottom:278.787067pt;}
.y195{bottom:279.391867pt;}
.y69{bottom:280.367733pt;}
.y11b{bottom:281.819600pt;}
.y1e4{bottom:282.868933pt;}
.y1ed{bottom:286.346133pt;}
.y7e{bottom:286.733067pt;}
.y32{bottom:288.244933pt;}
.y1a2{bottom:288.538267pt;}
.y1d8{bottom:289.823333pt;}
.y1e9{bottom:292.015467pt;}
.yd4{bottom:294.594400pt;}
.y1ae{bottom:297.987067pt;}
.y12c{bottom:300.263733pt;}
.yaf{bottom:300.668400pt;}
.y1dc{bottom:301.161867pt;}
.y1e3{bottom:302.068933pt;}
.y1ec{bottom:305.546133pt;}
.y91{bottom:305.932933pt;}
.ya7{bottom:305.933067pt;}
.y1a1{bottom:307.738267pt;}
.y190{bottom:308.720933pt;}
.y1d7{bottom:309.023333pt;}
.y68{bottom:309.167733pt;}
.y1c0{bottom:310.610667pt;}
.y11a{bottom:310.619600pt;}
.y1e8{bottom:311.215467pt;}
.y31{bottom:312.244933pt;}
.y1cc{bottom:312.500400pt;}
.y1de{bottom:312.500533pt;}
.yc9{bottom:314.160667pt;}
.y1ad{bottom:317.187067pt;}
.y1c4{bottom:318.169733pt;}
.y1db{bottom:320.361867pt;}
.yd3{bottom:323.394400pt;}
.y1eb{bottom:324.746133pt;}
.y18f{bottom:327.920933pt;}
.y14f{bottom:328.065333pt;}
.y1d6{bottom:328.223333pt;}
.y12b{bottom:329.063600pt;}
.y1bf{bottom:329.810667pt;}
.y1e7{bottom:330.415467pt;}
.y1cb{bottom:331.700400pt;}
.y162{bottom:334.717333pt;}
.y90{bottom:334.732933pt;}
.ya6{bottom:334.733067pt;}
.y17f{bottom:335.177600pt;}
.y30{bottom:336.244933pt;}
.y194{bottom:337.067467pt;}
.y1c3{bottom:337.369733pt;}
.y123{bottom:337.925467pt;}
.y67{bottom:337.967733pt;}
.y119{bottom:339.419733pt;}
.y1da{bottom:339.561867pt;}
.y86{bottom:342.687600pt;}
.y17b{bottom:342.736667pt;}
.y1d0{bottom:346.516133pt;}
.y18e{bottom:347.120933pt;}
.y1d5{bottom:347.423333pt;}
.y1be{bottom:349.010667pt;}
.y1ca{bottom:350.900400pt;}
.y1dd{bottom:350.900533pt;}
.yd2{bottom:352.194400pt;}
.y177{bottom:354.075200pt;}
.y17e{bottom:354.377600pt;}
.y193{bottom:356.267467pt;}
.y1c2{bottom:356.569733pt;}
.y14e{bottom:356.865333pt;}
.y12a{bottom:357.863600pt;}
.y1d9{bottom:358.761867pt;}
.y2f{bottom:360.244933pt;}
.y85{bottom:360.287600pt;}
.y17a{bottom:361.936667pt;}
.y1bc{bottom:363.524000pt;}
.y8f{bottom:363.532933pt;}
.ya5{bottom:363.533067pt;}
.y1cf{bottom:365.716267pt;}
.y18d{bottom:366.320933pt;}
.y66{bottom:366.767733pt;}
.y1bd{bottom:368.210667pt;}
.y118{bottom:368.219600pt;}
.y1c9{bottom:370.100400pt;}
.y176{bottom:373.275333pt;}
.y17d{bottom:373.577600pt;}
.y192{bottom:375.467467pt;}
.y1c1{bottom:375.769733pt;}
.yd1{bottom:380.994400pt;}
.y179{bottom:381.136667pt;}
.y1bb{bottom:382.724133pt;}
.y2e{bottom:384.244933pt;}
.y1ce{bottom:384.916267pt;}
.y129{bottom:386.663600pt;}
.y161{bottom:392.317333pt;}
.yf9{bottom:392.332933pt;}
.ya4{bottom:392.333067pt;}
.y175{bottom:392.475200pt;}
.y17c{bottom:392.777600pt;}
.y191{bottom:394.667333pt;}
.y117{bottom:397.019600pt;}
.y70{bottom:399.882667pt;}
.y178{bottom:400.336667pt;}
.y1ba{bottom:401.924133pt;}
.y173{bottom:403.209067pt;}
.y1cd{bottom:404.116267pt;}
.yd0{bottom:409.794400pt;}
.y174{bottom:411.675200pt;}
.y14d{bottom:414.465333pt;}
.y160{bottom:421.117333pt;}
.y1b9{bottom:421.124000pt;}
.ya3{bottom:421.133067pt;}
.y172{bottom:422.409200pt;}
.y116{bottom:425.819600pt;}
.y103{bottom:427.407067pt;}
.y2d{bottom:432.244933pt;}
.ycf{bottom:438.594400pt;}
.y130{bottom:441.547467pt;}
.y171{bottom:441.609067pt;}
.yf8{bottom:449.932933pt;}
.ya2{bottom:449.933067pt;}
.y98{bottom:452.445867pt;}
.y115{bottom:454.619733pt;}
.y102{bottom:456.207067pt;}
.y2c{bottom:456.244933pt;}
.y4f{bottom:458.887867pt;}
.y170{bottom:460.809067pt;}
.y14c{bottom:472.065333pt;}
.y15f{bottom:478.717333pt;}
.yf7{bottom:478.732933pt;}
.ya1{bottom:478.733067pt;}
.y2b{bottom:480.244933pt;}
.y4e{bottom:482.887867pt;}
.y114{bottom:483.419733pt;}
.y101{bottom:485.007067pt;}
.y4d{bottom:506.887867pt;}
.yf6{bottom:507.532933pt;}
.ya0{bottom:507.533067pt;}
.y113{bottom:512.219600pt;}
.y100{bottom:513.807067pt;}
.y2a{bottom:528.244933pt;}
.y14b{bottom:529.665333pt;}
.y4c{bottom:530.887867pt;}
.yf{bottom:536.178933pt;}
.y15e{bottom:536.317333pt;}
.yf5{bottom:536.332933pt;}
.y9f{bottom:536.333067pt;}
.y112{bottom:541.019600pt;}
.yff{bottom:542.607067pt;}
.ydc{bottom:549.132400pt;}
.yc2{bottom:551.904667pt;}
.y29{bottom:552.244933pt;}
.y4b{bottom:554.887867pt;}
.yf4{bottom:565.132933pt;}
.y9e{bottom:565.133067pt;}
.y111{bottom:569.819600pt;}
.y13b{bottom:575.858000pt;}
.y28{bottom:576.244933pt;}
.y141{bottom:577.445333pt;}
.yc1{bottom:580.704667pt;}
.y14a{bottom:587.265333pt;}
.ye{bottom:593.778933pt;}
.y2{bottom:593.782000pt;}
.y15d{bottom:593.917333pt;}
.yf3{bottom:593.932933pt;}
.y9d{bottom:593.933067pt;}
.y4a{bottom:598.087867pt;}
.y110{bottom:598.619733pt;}
.y27{bottom:600.244933pt;}
.yc0{bottom:609.504667pt;}
.yfe{bottom:612.886000pt;}
.y149{bottom:616.065333pt;}
.yf2{bottom:622.732933pt;}
.y9c{bottom:622.733067pt;}
.y13a{bottom:623.858000pt;}
.y26{bottom:624.244933pt;}
.ybf{bottom:638.304667pt;}
.y25{bottom:648.244933pt;}
.yd{bottom:651.378933pt;}
.y15c{bottom:651.517333pt;}
.yf1{bottom:651.532933pt;}
.y7d{bottom:651.533067pt;}
.y139{bottom:652.658000pt;}
.y140{bottom:654.245333pt;}
.y10f{bottom:656.219600pt;}
.y1{bottom:657.782000pt;}
.ybe{bottom:667.104800pt;}
.y148{bottom:673.665333pt;}
.yf0{bottom:680.332933pt;}
.y7c{bottom:680.333067pt;}
.y10e{bottom:685.019733pt;}
.ybd{bottom:695.904667pt;}
.y24{bottom:696.244933pt;}
.yea{bottom:704.408667pt;}
.yc{bottom:708.978933pt;}
.y15b{bottom:709.117333pt;}
.yef{bottom:709.132933pt;}
.y7b{bottom:709.133067pt;}
.y138{bottom:710.258000pt;}
.y13f{bottom:711.845333pt;}
.y65{bottom:712.367733pt;}
.y10d{bottom:713.819600pt;}
.y23{bottom:720.244933pt;}
.ybc{bottom:724.704800pt;}
.y147{bottom:731.265333pt;}
.ye9{bottom:733.208667pt;}
.y127{bottom:735.758400pt;}
.y15a{bottom:737.917333pt;}
.yee{bottom:737.932933pt;}
.y7a{bottom:737.933067pt;}
.y64{bottom:741.167733pt;}
.y10c{bottom:742.619600pt;}
.y22{bottom:744.244933pt;}
.yb0{bottom:744.298133pt;}
.y43{bottom:747.457467pt;}
.y128{bottom:752.025200pt;}
.y126{bottom:753.358533pt;}
.ybb{bottom:753.504667pt;}
.y137{bottom:758.258000pt;}
.y13e{bottom:758.522400pt;}
.y146{bottom:760.065333pt;}
.y5a{bottom:760.418667pt;}
.ye8{bottom:762.008667pt;}
.yb{bottom:766.578933pt;}
.yed{bottom:766.732933pt;}
.y79{bottom:766.733067pt;}
.y21{bottom:768.244933pt;}
.y63{bottom:769.967733pt;}
.y42{bottom:771.457467pt;}
.y59{bottom:784.418667pt;}
.ye7{bottom:790.808533pt;}
.y20{bottom:792.244933pt;}
.y18{bottom:795.139467pt;}
.y41{bottom:795.457467pt;}
.y159{bottom:795.517200pt;}
.y78{bottom:795.533067pt;}
.y136{bottom:796.658000pt;}
.y62{bottom:798.767733pt;}
.y10b{bottom:800.219600pt;}
.y58{bottom:808.418667pt;}
.yba{bottom:811.104800pt;}
.y135{bottom:815.858000pt;}
.y1f{bottom:816.244933pt;}
.yb1{bottom:817.610400pt;}
.y145{bottom:817.665333pt;}
.y17{bottom:819.139467pt;}
.ye6{bottom:819.608667pt;}
.ya{bottom:824.178933pt;}
.y158{bottom:824.317333pt;}
.yec{bottom:824.332933pt;}
.y9b{bottom:824.333067pt;}
.yfd{bottom:827.350933pt;}
.y61{bottom:827.567733pt;}
.y10a{bottom:829.019733pt;}
.y57{bottom:832.418667pt;}
.y134{bottom:835.058000pt;}
.y13d{bottom:835.322533pt;}
.yb9{bottom:839.904667pt;}
.y40{bottom:843.457467pt;}
.ye5{bottom:848.408667pt;}
.y8e{bottom:853.132933pt;}
.y77{bottom:853.133067pt;}
.y60{bottom:856.367733pt;}
.y109{bottom:857.819600pt;}
.y16{bottom:862.339467pt;}
.y1e{bottom:864.244933pt;}
.y3f{bottom:867.457467pt;}
.yb8{bottom:868.704800pt;}
.y16b{bottom:872.468533pt;}
.y133{bottom:873.458000pt;}
.y13c{bottom:873.722533pt;}
.y144{bottom:875.265333pt;}
.ye4{bottom:877.208667pt;}
.y56{bottom:880.418667pt;}
.y9{bottom:881.778933pt;}
.y157{bottom:881.917333pt;}
.y8d{bottom:881.932933pt;}
.y76{bottom:881.933067pt;}
.y5f{bottom:885.167867pt;}
.y15{bottom:886.339467pt;}
.y108{bottom:886.619600pt;}
.y1d{bottom:888.244933pt;}
.y3e{bottom:891.457467pt;}
.yce{bottom:899.394400pt;}
.y55{bottom:904.418667pt;}
.ye3{bottom:906.008667pt;}
.y14{bottom:910.339467pt;}
.y8c{bottom:910.732933pt;}
.y75{bottom:910.733067pt;}
.y1c{bottom:912.244933pt;}
.y5e{bottom:913.967733pt;}
.y107{bottom:915.419733pt;}
.y132{bottom:921.458000pt;}
.yb7{bottom:926.304667pt;}
.ycd{bottom:928.194400pt;}
.y54{bottom:928.418667pt;}
.y16a{bottom:930.068533pt;}
.y143{bottom:932.865333pt;}
.y13{bottom:934.339467pt;}
.y1b{bottom:936.244933pt;}
.y8{bottom:939.378933pt;}
.y3d{bottom:939.457467pt;}
.y156{bottom:939.517333pt;}
.y8b{bottom:939.532933pt;}
.y74{bottom:939.533067pt;}
.y5d{bottom:942.767867pt;}
.y106{bottom:944.219600pt;}
.y53{bottom:952.418667pt;}
.yb6{bottom:955.104800pt;}
.ycc{bottom:956.994400pt;}
.y12{bottom:958.339467pt;}
.y1a{bottom:960.244933pt;}
.ye2{bottom:963.608667pt;}
.y8a{bottom:968.333067pt;}
.y5c{bottom:971.567733pt;}
.y105{bottom:973.019733pt;}
.y52{bottom:976.418667pt;}
.yb5{bottom:983.904667pt;}
.y3a{bottom:984.276400pt;}
.ycb{bottom:985.794400pt;}
.y169{bottom:987.668533pt;}
.y142{bottom:990.465467pt;}
.ye1{bottom:992.408667pt;}
.y7{bottom:996.978933pt;}
.y155{bottom:997.117333pt;}
.y89{bottom:997.132933pt;}
.y73{bottom:997.133067pt;}
.y51{bottom:1000.418667pt;}
.y104{bottom:1001.819600pt;}
.y39{bottom:1008.276400pt;}
.yb4{bottom:1012.704800pt;}
.yca{bottom:1014.594533pt;}
.ye0{bottom:1021.208667pt;}
.y72{bottom:1025.933067pt;}
.y19{bottom:1031.536267pt;}
.y3c{bottom:1040.040267pt;}
.yb3{bottom:1041.504667pt;}
.y5b{bottom:1041.930133pt;}
.y131{bottom:1043.819733pt;}
.y168{bottom:1045.268533pt;}
.y50{bottom:1048.418667pt;}
.y3b{bottom:1049.048133pt;}
.ydf{bottom:1050.008667pt;}
.y11{bottom:1051.378800pt;}
.y6{bottom:1051.378933pt;}
.y154{bottom:1054.717333pt;}
.y88{bottom:1054.732933pt;}
.y71{bottom:1054.733067pt;}
.hc{height:37.973333pt;}
.hd{height:41.770667pt;}
.ha{height:43.343750pt;}
.h9{height:44.437500pt;}
.h8{height:44.468750pt;}
.h4{height:45.568000pt;}
.hb{height:46.955729pt;}
.h6{height:56.156250pt;}
.h7{height:56.843750pt;}
.he{height:66.317708pt;}
.h5{height:75.791667pt;}
.h3{height:75.946667pt;}
.h2{height:123.161458pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:73.700800pt;}
.x17{left:74.645600pt;}
.x6{left:75.590533pt;}
.x20{left:76.535467pt;}
.xc{left:77.883467pt;}
.x19{left:83.149600pt;}
.x1c{left:88.818933pt;}
.x1d{left:102.449600pt;}
.xa{left:103.936933pt;}
.x1{left:115.459200pt;}
.x11{left:128.504000pt;}
.x25{left:130.393733pt;}
.x24{left:133.228267pt;}
.x28{left:136.062933pt;}
.x26{left:140.242400pt;}
.x15{left:141.732267pt;}
.x21{left:149.691200pt;}
.x29{left:151.181067pt;}
.x27{left:153.070800pt;}
.x7{left:156.850400pt;}
.x10{left:158.740133pt;}
.x23{left:160.629867pt;}
.x12{left:167.201600pt;}
.x1f{left:170.078800pt;}
.x13{left:181.417333pt;}
.x22{left:195.585200pt;}
.x2{left:269.606000pt;}
.x3{left:300.927600pt;}
.x18{left:325.039333pt;}
.xd{left:338.267733pt;}
.x4{left:352.590400pt;}
.xe{left:383.622000pt;}
.x9{left:389.170400pt;}
.x5{left:392.774000pt;}
.xb{left:396.850400pt;}
.x1a{left:418.582667pt;}
.x16{left:427.086533pt;}
.xf{left:432.755867pt;}
.x1b{left:440.314933pt;}
.x1e{left:489.448800pt;}
.x14{left:521.574800pt;}
}




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