
    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_2650f9ec4ebf65c07021fedf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5a77f434dbef6e5937d9898f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.744000;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_5222acd827f278fa09cca714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_b8e8300a6047e0ea51542187.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_2285aef07d42897199a6eaf8.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_a1a3712ebd6c88267a17a390.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d4c534ff907cc94bd9a30dd7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_2650f9ec4ebf65c07021fedf.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fd92686bedb5054eba4ffa7f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1d5b6ec3817ec9c31f1d5bab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896973;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;}
.v1{vertical-align:31.856400px;}
.ls5{letter-spacing:-2.664000px;}
.ls1{letter-spacing:-1.728000px;}
.ls6{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.330000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.330000px;}
.ls8{letter-spacing:3.696000px;}
.ls4{letter-spacing:559.275600px;}
.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;}
}
.ws40{word-spacing:-20.196000px;}
.ws24{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.ws41{word-spacing:-16.830000px;}
.ws3f{word-spacing:-16.170000px;}
.ws13{word-spacing:-7.416000px;}
.ws1d{word-spacing:-3.528000px;}
.wsd{word-spacing:-3.456000px;}
.ws3e{word-spacing:-3.432000px;}
.ws43{word-spacing:-2.376000px;}
.ws3b{word-spacing:-2.232000px;}
.ws1c{word-spacing:-1.872000px;}
.ws31{word-spacing:-1.584000px;}
.ws10{word-spacing:-0.792000px;}
.ws3{word-spacing:-0.483000px;}
.wsa{word-spacing:-0.360000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.144000px;}
.ws30{word-spacing:0.216000px;}
.ws32{word-spacing:0.288000px;}
.ws3d{word-spacing:0.330000px;}
.ws35{word-spacing:0.360000px;}
.ws34{word-spacing:0.504000px;}
.ws33{word-spacing:0.720000px;}
.ws26{word-spacing:0.792000px;}
.ws17{word-spacing:0.864000px;}
.ws39{word-spacing:1.440000px;}
.ws4{word-spacing:1.518000px;}
.ws2{word-spacing:2.208000px;}
.ws8{word-spacing:2.448000px;}
.ws2a{word-spacing:2.664000px;}
.ws19{word-spacing:2.808000px;}
.ws3a{word-spacing:3.384000px;}
.wsc{word-spacing:3.456000px;}
.ws23{word-spacing:3.528000px;}
.ws2b{word-spacing:3.960000px;}
.ws1b{word-spacing:4.104000px;}
.ws1f{word-spacing:4.752000px;}
.ws5{word-spacing:5.451000px;}
.ws42{word-spacing:5.544000px;}
.ws1a{word-spacing:5.688000px;}
.ws12{word-spacing:5.832000px;}
.ws29{word-spacing:5.976000px;}
.wsb{word-spacing:6.120000px;}
.ws27{word-spacing:6.840000px;}
.ws6{word-spacing:7.866000px;}
.wse{word-spacing:8.568000px;}
.ws25{word-spacing:8.856000px;}
.ws1e{word-spacing:9.720000px;}
.ws21{word-spacing:9.936000px;}
.ws22{word-spacing:10.368000px;}
.ws28{word-spacing:11.376000px;}
.ws9{word-spacing:11.808000px;}
.ws2f{word-spacing:12.168000px;}
.ws18{word-spacing:12.960000px;}
.ws20{word-spacing:13.032000px;}
.ws3c{word-spacing:21.240000px;}
.ws11{word-spacing:21.960000px;}
.ws7{word-spacing:23.400000px;}
.ws2c{word-spacing:82.173000px;}
.ws2d{word-spacing:117.093000px;}
.ws2e{word-spacing:168.069000px;}
.ws14{word-spacing:510.668400px;}
.ws36{word-spacing:513.267600px;}
.ws37{word-spacing:541.275600px;}
.ws16{word-spacing:716.586600px;}
.ws15{word-spacing:747.606000px;}
.ws38{word-spacing:980.373600px;}
._1d{margin-left:-10.644300px;}
._6{margin-left:-8.901000px;}
._4{margin-left:-7.672800px;}
._d{margin-left:-6.520500px;}
._0{margin-left:-5.395200px;}
._1{margin-left:-3.794400px;}
._2{margin-left:-2.341200px;}
._f{margin-left:-1.288800px;}
._7{width:1.079400px;}
._3{width:2.218800px;}
._5{width:3.511200px;}
._8{width:4.969800px;}
._c{width:6.189300px;}
._e{width:7.191300px;}
._b{width:8.340000px;}
._a{width:9.731100px;}
._9{width:10.839900px;}
._13{width:12.300900px;}
._14{width:13.871100px;}
._17{width:15.444000px;}
._10{width:16.624800px;}
._2e{width:17.660400px;}
._11{width:19.152000px;}
._12{width:20.584800px;}
._18{width:22.384800px;}
._15{width:24.444000px;}
._19{width:26.395200px;}
._1a{width:28.324800px;}
._30{width:29.922600px;}
._16{width:34.804800px;}
._2f{width:35.846400px;}
._20{width:64.851600px;}
._1c{width:70.232100px;}
._1b{width:130.352100px;}
._29{width:277.178400px;}
._1f{width:278.218800px;}
._26{width:279.471600px;}
._27{width:367.581600px;}
._24{width:377.517600px;}
._1e{width:432.960600px;}
._2c{width:441.525600px;}
._23{width:523.275600px;}
._25{width:541.461600px;}
._2a{width:559.275600px;}
._28{width:579.477600px;}
._2d{width:601.509600px;}
._2b{width:677.397600px;}
._21{width:713.469600px;}
._22{width:865.317600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.ya7{bottom:77.862150px;}
.y215{bottom:83.904450px;}
.yf7{bottom:87.204600px;}
.y1dd{bottom:87.302550px;}
.y114{bottom:87.504600px;}
.y1f6{bottom:88.118700px;}
.y19e{bottom:88.905300px;}
.y1b9{bottom:91.828800px;}
.ya6{bottom:95.862150px;}
.y25{bottom:96.159000px;}
.y9c{bottom:96.354450px;}
.ydc{bottom:97.554600px;}
.y155{bottom:98.004600px;}
.y17d{bottom:101.454600px;}
.y71{bottom:101.754600px;}
.y214{bottom:104.904450px;}
.y139{bottom:105.204600px;}
.ybc{bottom:105.746550px;}
.y227{bottom:106.640700px;}
.y15e{bottom:107.532300px;}
.yf6{bottom:108.204600px;}
.y1dc{bottom:108.302550px;}
.y113{bottom:108.504600px;}
.y1f5{bottom:109.868700px;}
.y19d{bottom:109.905300px;}
.y1b8{bottom:113.578800px;}
.y4b{bottom:116.941800px;}
.y9b{bottom:118.104450px;}
.ydb{bottom:118.554600px;}
.y154{bottom:119.754600px;}
.y24{bottom:120.210900px;}
.y17c{bottom:122.454600px;}
.y70{bottom:122.754600px;}
.y86{bottom:123.303600px;}
.y226{bottom:124.640700px;}
.y213{bottom:125.904450px;}
.y138{bottom:126.204600px;}
.yf5{bottom:129.204600px;}
.y15d{bottom:129.282300px;}
.y1db{bottom:129.302550px;}
.y112{bottom:129.504600px;}
.y19c{bottom:130.905300px;}
.y1f4{bottom:131.618700px;}
.ybb{bottom:132.250650px;}
.y1b7{bottom:135.328800px;}
.y4a{bottom:137.941800px;}
.yda{bottom:139.554600px;}
.y9a{bottom:139.854450px;}
.y23{bottom:140.010900px;}
.y85{bottom:141.303600px;}
.y17b{bottom:143.454600px;}
.y6f{bottom:143.754600px;}
.y225{bottom:146.892750px;}
.y212{bottom:146.904450px;}
.y137{bottom:147.204600px;}
.yf4{bottom:150.204600px;}
.yba{bottom:150.250650px;}
.y1da{bottom:150.302550px;}
.y111{bottom:150.504600px;}
.y15c{bottom:151.032300px;}
.y19b{bottom:151.905300px;}
.y1f3{bottom:153.368700px;}
.y153{bottom:155.004600px;}
.y1b6{bottom:157.078800px;}
.y49{bottom:158.941800px;}
.yd9{bottom:160.554600px;}
.y99{bottom:161.604450px;}
.y84{bottom:162.903600px;}
.y22{bottom:163.762800px;}
.y17a{bottom:164.454600px;}
.y6e{bottom:164.754600px;}
.y224{bottom:164.892750px;}
.y211{bottom:167.904450px;}
.y136{bottom:168.204600px;}
.yf3{bottom:171.204600px;}
.y1d9{bottom:171.302550px;}
.y110{bottom:171.504600px;}
.y15b{bottom:172.782300px;}
.y19a{bottom:172.905300px;}
.y1f2{bottom:175.118700px;}
.y152{bottom:176.604600px;}
.y1b5{bottom:178.828800px;}
.y48{bottom:179.941800px;}
.yd8{bottom:181.554450px;}
.y223{bottom:182.892750px;}
.y21{bottom:183.262800px;}
.y98{bottom:183.354600px;}
.y83{bottom:184.503600px;}
.y179{bottom:185.454600px;}
.y6d{bottom:185.754600px;}
.y210{bottom:188.904450px;}
.y135{bottom:189.204600px;}
.yf2{bottom:192.204600px;}
.y1d8{bottom:192.302550px;}
.y10f{bottom:192.504600px;}
.y199{bottom:193.905300px;}
.y1f1{bottom:196.868700px;}
.y1b4{bottom:200.578800px;}
.y47{bottom:200.941800px;}
.yd7{bottom:202.554450px;}
.y20{bottom:202.762800px;}
.y97{bottom:205.104600px;}
.y222{bottom:205.144650px;}
.y178{bottom:206.454600px;}
.y6c{bottom:206.754600px;}
.y20f{bottom:209.904450px;}
.y134{bottom:210.204600px;}
.y15a{bottom:211.032300px;}
.yf1{bottom:213.204600px;}
.y1d7{bottom:213.302550px;}
.y10e{bottom:213.504600px;}
.y198{bottom:214.905300px;}
.y1f0{bottom:218.618700px;}
.y151{bottom:219.804450px;}
.y46{bottom:221.941800px;}
.y1f{bottom:222.262800px;}
.y1b3{bottom:222.328800px;}
.y221{bottom:223.144650px;}
.yd6{bottom:223.554450px;}
.y96{bottom:226.854600px;}
.y177{bottom:227.454600px;}
.y6b{bottom:227.754600px;}
.y159{bottom:229.032300px;}
.y20e{bottom:230.904450px;}
.y133{bottom:231.204600px;}
.yf0{bottom:234.204600px;}
.y1d6{bottom:234.302550px;}
.y10d{bottom:234.504600px;}
.y197{bottom:235.905300px;}
.y1ef{bottom:240.368700px;}
.y220{bottom:241.144650px;}
.y150{bottom:241.404450px;}
.y1e{bottom:241.762800px;}
.y45{bottom:242.941800px;}
.y1b2{bottom:244.078800px;}
.yd5{bottom:244.554450px;}
.y176{bottom:248.454600px;}
.y95{bottom:248.604600px;}
.y6a{bottom:248.754600px;}
.y158{bottom:250.632300px;}
.y20d{bottom:251.904450px;}
.y132{bottom:252.204600px;}
.yef{bottom:255.204600px;}
.y1d5{bottom:255.302550px;}
.y10c{bottom:255.504600px;}
.y196{bottom:256.905300px;}
.y1d{bottom:261.262800px;}
.y1ee{bottom:262.118700px;}
.y14f{bottom:263.004600px;}
.y21f{bottom:263.396700px;}
.y44{bottom:263.941800px;}
.yd4{bottom:265.554450px;}
.y1b1{bottom:265.828800px;}
.y175{bottom:269.454600px;}
.y69{bottom:269.754600px;}
.y94{bottom:270.354600px;}
.y20c{bottom:272.904450px;}
.y131{bottom:273.204600px;}
.yee{bottom:276.204600px;}
.y1d4{bottom:276.302550px;}
.y10b{bottom:276.504600px;}
.y195{bottom:277.905300px;}
.y1c{bottom:280.762800px;}
.y21e{bottom:281.396700px;}
.y14e{bottom:284.604600px;}
.y43{bottom:284.941800px;}
.yd3{bottom:286.554450px;}
.y174{bottom:290.454600px;}
.y68{bottom:290.754600px;}
.y1b0{bottom:291.830700px;}
.y93{bottom:292.104600px;}
.y20b{bottom:293.904450px;}
.y130{bottom:294.204600px;}
.yed{bottom:297.204600px;}
.y1d3{bottom:297.302550px;}
.y10a{bottom:297.504600px;}
.y194{bottom:298.905300px;}
.y1b{bottom:300.262800px;}
.y21d{bottom:303.648600px;}
.y1ed{bottom:305.468700px;}
.y42{bottom:305.941800px;}
.y14d{bottom:306.204600px;}
.yd2{bottom:307.554450px;}
.y248{bottom:309.724800px;}
.y173{bottom:311.454600px;}
.y67{bottom:311.754600px;}
.y92{bottom:313.854600px;}
.y20a{bottom:314.904450px;}
.y12f{bottom:315.204600px;}
.yec{bottom:318.204600px;}
.y1d2{bottom:318.302550px;}
.y109{bottom:318.504600px;}
.y1a{bottom:319.762800px;}
.y193{bottom:319.905300px;}
.y21c{bottom:321.648600px;}
.y1ec{bottom:326.248050px;}
.y41{bottom:326.941800px;}
.y247{bottom:327.724800px;}
.y14c{bottom:327.804450px;}
.yd1{bottom:328.554450px;}
.y1af{bottom:329.180850px;}
.y172{bottom:332.454600px;}
.y66{bottom:332.754600px;}
.y91{bottom:335.604600px;}
.y209{bottom:335.904450px;}
.y12e{bottom:336.204600px;}
.yeb{bottom:339.204600px;}
.y19{bottom:339.262800px;}
.y1d1{bottom:339.302550px;}
.y108{bottom:339.504600px;}
.y192{bottom:340.905300px;}
.y21b{bottom:343.900650px;}
.y1eb{bottom:347.507850px;}
.y40{bottom:347.941800px;}
.y14b{bottom:349.404450px;}
.yd0{bottom:349.554450px;}
.y246{bottom:349.976850px;}
.y1ae{bottom:350.780850px;}
.y171{bottom:353.454600px;}
.y65{bottom:353.754600px;}
.y208{bottom:356.904450px;}
.y12d{bottom:357.204600px;}
.y90{bottom:357.354600px;}
.y18{bottom:358.762800px;}
.yea{bottom:360.204600px;}
.y1d0{bottom:360.302550px;}
.y107{bottom:360.504600px;}
.y21a{bottom:361.900650px;}
.y191{bottom:361.905300px;}
.y245{bottom:367.976850px;}
.y1ea{bottom:368.767800px;}
.y3f{bottom:368.941800px;}
.ycf{bottom:370.554450px;}
.y14a{bottom:371.004600px;}
.y170{bottom:374.454600px;}
.y64{bottom:374.754600px;}
.y1ad{bottom:376.292550px;}
.y207{bottom:377.904450px;}
.y12c{bottom:378.204600px;}
.y17{bottom:378.262800px;}
.y8f{bottom:379.104600px;}
.ye9{bottom:381.204600px;}
.y1cf{bottom:381.302550px;}
.y106{bottom:381.504600px;}
.y190{bottom:382.905300px;}
.y219{bottom:384.152550px;}
.y244{bottom:385.976850px;}
.y3e{bottom:389.941800px;}
.y1e9{bottom:390.027600px;}
.yce{bottom:391.554450px;}
.y149{bottom:392.604600px;}
.y16f{bottom:395.454600px;}
.y63{bottom:395.754600px;}
.y16{bottom:397.762800px;}
.y206{bottom:398.904450px;}
.y12b{bottom:399.204600px;}
.y1ac{bottom:401.804400px;}
.y218{bottom:402.152550px;}
.ye8{bottom:402.204600px;}
.y1ce{bottom:402.302550px;}
.y105{bottom:402.504600px;}
.y18f{bottom:403.905300px;}
.y243{bottom:408.228900px;}
.y3d{bottom:410.941800px;}
.y1e8{bottom:411.287400px;}
.ycd{bottom:412.554450px;}
.y148{bottom:414.204600px;}
.y16e{bottom:416.454600px;}
.y62{bottom:416.754600px;}
.y15{bottom:417.262800px;}
.y205{bottom:419.904450px;}
.y12a{bottom:420.204600px;}
.y8e{bottom:422.454600px;}
.ye7{bottom:423.204600px;}
.y1cd{bottom:423.302550px;}
.y104{bottom:424.254600px;}
.y217{bottom:424.404450px;}
.y18e{bottom:424.905300px;}
.y242{bottom:426.228900px;}
.y1ab{bottom:426.710850px;}
.y3c{bottom:431.941800px;}
.y1e7{bottom:432.547350px;}
.ycc{bottom:433.554450px;}
.ya5{bottom:434.091750px;}
.y147{bottom:435.804450px;}
.y14{bottom:436.762800px;}
.y16d{bottom:437.454600px;}
.y61{bottom:437.754600px;}
.y8d{bottom:440.454600px;}
.y204{bottom:440.904450px;}
.y129{bottom:441.204600px;}
.ye6{bottom:444.204600px;}
.y241{bottom:444.228900px;}
.y1cc{bottom:445.052550px;}
.y18d{bottom:445.905300px;}
.y103{bottom:446.004600px;}
.y3b{bottom:452.941800px;}
.y1e6{bottom:453.807150px;}
.ycb{bottom:454.554450px;}
.y1aa{bottom:455.050650px;}
.ya4{bottom:455.841750px;}
.y13{bottom:456.262800px;}
.y146{bottom:457.404450px;}
.y16c{bottom:458.454600px;}
.y60{bottom:458.754600px;}
.y203{bottom:461.904450px;}
.y8c{bottom:462.054450px;}
.y128{bottom:462.204600px;}
.y216{bottom:464.004600px;}
.ye5{bottom:465.204600px;}
.y240{bottom:466.480800px;}
.y1cb{bottom:466.802550px;}
.y18c{bottom:466.905300px;}
.y102{bottom:467.754600px;}
.y1a9{bottom:473.050650px;}
.y3a{bottom:473.941800px;}
.y1e5{bottom:475.066950px;}
.yca{bottom:475.554450px;}
.y12{bottom:475.762800px;}
.ya3{bottom:477.591750px;}
.y145{bottom:479.004600px;}
.y16b{bottom:479.454600px;}
.y5f{bottom:480.504600px;}
.y202{bottom:482.904450px;}
.y127{bottom:483.204600px;}
.y23f{bottom:484.480800px;}
.ye4{bottom:486.204600px;}
.y1ca{bottom:488.552550px;}
.y18b{bottom:488.655300px;}
.y101{bottom:489.504600px;}
.y39{bottom:494.941800px;}
.y11{bottom:495.262800px;}
.y1e4{bottom:496.326900px;}
.yc9{bottom:496.554450px;}
.y16a{bottom:500.454600px;}
.y144{bottom:500.604600px;}
.y5e{bottom:502.254600px;}
.y23e{bottom:502.480800px;}
.y201{bottom:503.904450px;}
.y126{bottom:504.204600px;}
.ye3{bottom:507.204600px;}
.y1c9{bottom:510.302550px;}
.y18a{bottom:510.405300px;}
.y100{bottom:511.254600px;}
.y10{bottom:514.762800px;}
.y38{bottom:515.941800px;}
.y82{bottom:516.571800px;}
.yc8{bottom:517.554450px;}
.y1e3{bottom:517.586700px;}
.yb9{bottom:518.754600px;}
.y23d{bottom:520.480800px;}
.ya2{bottom:520.941750px;}
.y1a8{bottom:521.154450px;}
.y169{bottom:521.454600px;}
.y143{bottom:522.204600px;}
.y5d{bottom:524.004600px;}
.y200{bottom:524.904450px;}
.y125{bottom:525.954600px;}
.ye2{bottom:528.204600px;}
.y1c8{bottom:532.052550px;}
.y189{bottom:532.155300px;}
.yff{bottom:533.004600px;}
.yf{bottom:534.262800px;}
.y37{bottom:536.941800px;}
.y81{bottom:538.321800px;}
.yc7{bottom:538.554450px;}
.y1e2{bottom:538.846500px;}
.ya1{bottom:538.941750px;}
.yb8{bottom:539.754600px;}
.y1a7{bottom:542.154450px;}
.y168{bottom:542.454600px;}
.y23c{bottom:542.732700px;}
.y142{bottom:543.804450px;}
.y5c{bottom:545.754600px;}
.y1ff{bottom:545.904450px;}
.y124{bottom:547.704600px;}
.ye1{bottom:549.204600px;}
.ye{bottom:553.762800px;}
.y188{bottom:553.905300px;}
.yfe{bottom:554.754600px;}
.y36{bottom:557.941800px;}
.yc6{bottom:559.554450px;}
.y80{bottom:560.071800px;}
.y1e1{bottom:560.106300px;}
.ya0{bottom:560.541750px;}
.y23b{bottom:560.732700px;}
.yb7{bottom:560.754600px;}
.y1a6{bottom:563.154450px;}
.y167{bottom:563.454600px;}
.y141{bottom:565.404450px;}
.y1fe{bottom:566.904450px;}
.y5b{bottom:567.504600px;}
.y1c7{bottom:568.854600px;}
.y123{bottom:569.454600px;}
.ye0{bottom:570.204600px;}
.yd{bottom:573.262800px;}
.y187{bottom:575.655300px;}
.yfd{bottom:576.504600px;}
.y35{bottom:578.941800px;}
.yc5{bottom:580.554450px;}
.y1e0{bottom:581.366250px;}
.yb6{bottom:581.754600px;}
.y7f{bottom:581.821800px;}
.y9f{bottom:582.141750px;}
.y23a{bottom:582.984750px;}
.y166{bottom:584.454600px;}
.y1a5{bottom:584.904450px;}
.y140{bottom:587.004600px;}
.y1fd{bottom:587.904450px;}
.ydf{bottom:591.204600px;}
.yc{bottom:592.762800px;}
.y186{bottom:597.405300px;}
.yfc{bottom:598.254600px;}
.y34{bottom:599.941800px;}
.y239{bottom:600.984750px;}
.yc4{bottom:601.554450px;}
.yb5{bottom:602.754600px;}
.y7e{bottom:603.571800px;}
.y165{bottom:605.454600px;}
.y1a4{bottom:606.654450px;}
.y13f{bottom:608.604600px;}
.y1fc{bottom:608.904450px;}
.y1df{bottom:609.100650px;}
.y5a{bottom:611.004600px;}
.y1c6{bottom:611.454600px;}
.yde{bottom:612.204600px;}
.yb{bottom:612.262800px;}
.y122{bottom:612.954600px;}
.y238{bottom:618.984750px;}
.y185{bottom:619.155300px;}
.yfb{bottom:620.004600px;}
.y33{bottom:620.941800px;}
.yc3{bottom:623.304450px;}
.yb4{bottom:623.754600px;}
.y164{bottom:626.454600px;}
.y1de{bottom:627.100650px;}
.y1a3{bottom:628.404450px;}
.y13e{bottom:630.204600px;}
.y1fb{bottom:630.654450px;}
.ya{bottom:631.762800px;}
.y1c5{bottom:632.454600px;}
.ydd{bottom:633.204600px;}
.y121{bottom:634.704600px;}
.y184{bottom:640.905300px;}
.y237{bottom:641.236650px;}
.yfa{bottom:641.754600px;}
.y32{bottom:641.941800px;}
.yc2{bottom:645.054450px;}
.yb3{bottom:645.504600px;}
.y7d{bottom:647.071800px;}
.y163{bottom:647.454600px;}
.y1a2{bottom:650.154450px;}
.y9{bottom:651.262800px;}
.y13d{bottom:651.804450px;}
.y1fa{bottom:652.404450px;}
.y1c4{bottom:653.454600px;}
.y59{bottom:654.204600px;}
.y120{bottom:657.204600px;}
.y236{bottom:659.236650px;}
.y183{bottom:662.655300px;}
.y31{bottom:662.941800px;}
.yc1{bottom:666.804450px;}
.yb2{bottom:667.254600px;}
.y162{bottom:668.454600px;}
.y1a1{bottom:671.904450px;}
.y7c{bottom:672.103200px;}
.y13c{bottom:673.404450px;}
.y1f9{bottom:674.154450px;}
.y1c3{bottom:674.454600px;}
.y58{bottom:675.204600px;}
.y235{bottom:677.236650px;}
.yf9{bottom:678.504600px;}
.y11f{bottom:679.704600px;}
.y30{bottom:683.941800px;}
.y8{bottom:684.262800px;}
.yc0{bottom:688.554450px;}
.yb1{bottom:689.004600px;}
.y161{bottom:689.454600px;}
.y7b{bottom:693.363000px;}
.y1a0{bottom:693.654450px;}
.y13b{bottom:695.004600px;}
.y234{bottom:695.236650px;}
.y1c2{bottom:695.454600px;}
.y1f8{bottom:695.904450px;}
.y57{bottom:696.204600px;}
.yf8{bottom:700.104600px;}
.y11e{bottom:702.204600px;}
.y182{bottom:702.405300px;}
.y2f{bottom:704.941800px;}
.y7{bottom:705.862800px;}
.y160{bottom:710.454600px;}
.yb0{bottom:710.754600px;}
.y7a{bottom:714.622950px;}
.y181{bottom:715.155300px;}
.y1c1{bottom:716.454600px;}
.y13a{bottom:716.604600px;}
.y56{bottom:717.204600px;}
.y233{bottom:717.488700px;}
.y11d{bottom:724.704600px;}
.y2e{bottom:725.941800px;}
.y6{bottom:727.462800px;}
.y15f{bottom:731.454600px;}
.ybf{bottom:731.904450px;}
.yaf{bottom:732.504600px;}
.y1f7{bottom:732.654450px;}
.y232{bottom:735.488700px;}
.y79{bottom:735.882750px;}
.y19f{bottom:737.004600px;}
.y1c0{bottom:737.454600px;}
.y55{bottom:738.204600px;}
.y180{bottom:744.919050px;}
.y11c{bottom:747.204600px;}
.y2d{bottom:747.691800px;}
.y5{bottom:749.062800px;}
.y157{bottom:753.204600px;}
.y231{bottom:753.488700px;}
.ybe{bottom:753.504600px;}
.yae{bottom:754.254600px;}
.y78{bottom:757.142550px;}
.y1bf{bottom:758.454600px;}
.y54{bottom:759.204600px;}
.y2c{bottom:769.441800px;}
.y11b{bottom:769.704600px;}
.y230{bottom:771.488700px;}
.y156{bottom:774.954600px;}
.yad{bottom:775.854450px;}
.y77{bottom:778.402350px;}
.y1be{bottom:779.454600px;}
.y53{bottom:780.204600px;}
.y17f{bottom:783.094500px;}
.y2b{bottom:791.191800px;}
.y11a{bottom:792.204600px;}
.y22f{bottom:793.740600px;}
.ybd{bottom:796.704600px;}
.yac{bottom:797.454600px;}
.y4{bottom:799.462800px;}
.y76{bottom:799.952250px;}
.y1bd{bottom:800.454600px;}
.y52{bottom:801.204600px;}
.y22e{bottom:811.740600px;}
.y2a{bottom:812.941800px;}
.y119{bottom:814.704600px;}
.y8b{bottom:818.454600px;}
.y17e{bottom:818.950500px;}
.yab{bottom:819.054600px;}
.y1bc{bottom:821.454600px;}
.y51{bottom:822.204600px;}
.y75{bottom:827.396700px;}
.y22d{bottom:829.740600px;}
.y3{bottom:830.962800px;}
.y29{bottom:834.691800px;}
.y118{bottom:837.204600px;}
.y8a{bottom:840.204600px;}
.yaa{bottom:840.654450px;}
.y1bb{bottom:842.454600px;}
.y50{bottom:843.204600px;}
.y22c{bottom:851.992650px;}
.y28{bottom:856.441800px;}
.y117{bottom:859.704600px;}
.y89{bottom:861.954600px;}
.ya9{bottom:862.254600px;}
.y74{bottom:862.404450px;}
.y9e{bottom:862.854450px;}
.y1ba{bottom:863.454600px;}
.y4f{bottom:864.204600px;}
.y22b{bottom:869.992650px;}
.y27{bottom:878.191800px;}
.y116{bottom:882.204600px;}
.y88{bottom:883.704600px;}
.ya8{bottom:883.854450px;}
.y73{bottom:884.004600px;}
.y9d{bottom:884.454600px;}
.y4e{bottom:885.204600px;}
.y22a{bottom:887.992650px;}
.y115{bottom:904.704600px;}
.y87{bottom:905.454600px;}
.y72{bottom:905.604450px;}
.y4d{bottom:906.204600px;}
.y229{bottom:910.244550px;}
.y26{bottom:921.541800px;}
.y4c{bottom:927.204600px;}
.y228{bottom:928.244550px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.hc{height:41.660156px;}
.hb{height:45.826172px;}
.h8{height:47.909180px;}
.h7{height:48.077637px;}
.h10{height:49.042969px;}
.h6{height:49.992188px;}
.h9{height:50.167969px;}
.h3{height:51.264000px;}
.he{height:52.646484px;}
.h4{height:56.929688px;}
.hd{height:57.911133px;}
.h5{height:58.529297px;}
.ha{height:63.175781px;}
.hf{height:83.120400px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.787450px;}
.x15{left:83.709300px;}
.x1{left:85.039350px;}
.x22{left:89.262450px;}
.x21{left:100.101000px;}
.x13{left:103.355100px;}
.x11{left:120.460800px;}
.x19{left:123.307050px;}
.x1d{left:131.811000px;}
.x5{left:133.724250px;}
.xa{left:134.787450px;}
.x1a{left:140.314950px;}
.x10{left:142.086900px;}
.x1e{left:144.567000px;}
.xb{left:148.335300px;}
.x1f{left:152.062500px;}
.x7{left:158.469150px;}
.x3{left:165.198600px;}
.x17{left:167.786100px;}
.x24{left:182.309400px;}
.xd{left:190.408950px;}
.xc{left:191.573400px;}
.x6{left:200.291850px;}
.x18{left:217.481850px;}
.x20{left:232.187400px;}
.x4{left:241.246650px;}
.x16{left:256.440750px;}
.x1c{left:268.467900px;}
.x8{left:285.897300px;}
.x1b{left:289.940250px;}
.xe{left:293.818050px;}
.x23{left:297.032700px;}
.x12{left:326.551050px;}
.x27{left:341.574750px;}
.x2{left:352.777350px;}
.xf{left:466.681350px;}
.x14{left:482.932500px;}
.x25{left:519.753600px;}
.x26{left:572.928600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.316800pt;}
.ls5{letter-spacing:-2.368000pt;}
.ls1{letter-spacing:-1.536000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.293333pt;}
.ls8{letter-spacing:3.285333pt;}
.ls4{letter-spacing:497.133867pt;}
.ws40{word-spacing:-17.952000pt;}
.ws24{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.ws41{word-spacing:-14.960000pt;}
.ws3f{word-spacing:-14.373333pt;}
.ws13{word-spacing:-6.592000pt;}
.ws1d{word-spacing:-3.136000pt;}
.wsd{word-spacing:-3.072000pt;}
.ws3e{word-spacing:-3.050667pt;}
.ws43{word-spacing:-2.112000pt;}
.ws3b{word-spacing:-1.984000pt;}
.ws1c{word-spacing:-1.664000pt;}
.ws31{word-spacing:-1.408000pt;}
.ws10{word-spacing:-0.704000pt;}
.ws3{word-spacing:-0.429333pt;}
.wsa{word-spacing:-0.320000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.128000pt;}
.ws30{word-spacing:0.192000pt;}
.ws32{word-spacing:0.256000pt;}
.ws3d{word-spacing:0.293333pt;}
.ws35{word-spacing:0.320000pt;}
.ws34{word-spacing:0.448000pt;}
.ws33{word-spacing:0.640000pt;}
.ws26{word-spacing:0.704000pt;}
.ws17{word-spacing:0.768000pt;}
.ws39{word-spacing:1.280000pt;}
.ws4{word-spacing:1.349333pt;}
.ws2{word-spacing:1.962667pt;}
.ws8{word-spacing:2.176000pt;}
.ws2a{word-spacing:2.368000pt;}
.ws19{word-spacing:2.496000pt;}
.ws3a{word-spacing:3.008000pt;}
.wsc{word-spacing:3.072000pt;}
.ws23{word-spacing:3.136000pt;}
.ws2b{word-spacing:3.520000pt;}
.ws1b{word-spacing:3.648000pt;}
.ws1f{word-spacing:4.224000pt;}
.ws5{word-spacing:4.845333pt;}
.ws42{word-spacing:4.928000pt;}
.ws1a{word-spacing:5.056000pt;}
.ws12{word-spacing:5.184000pt;}
.ws29{word-spacing:5.312000pt;}
.wsb{word-spacing:5.440000pt;}
.ws27{word-spacing:6.080000pt;}
.ws6{word-spacing:6.992000pt;}
.wse{word-spacing:7.616000pt;}
.ws25{word-spacing:7.872000pt;}
.ws1e{word-spacing:8.640000pt;}
.ws21{word-spacing:8.832000pt;}
.ws22{word-spacing:9.216000pt;}
.ws28{word-spacing:10.112000pt;}
.ws9{word-spacing:10.496000pt;}
.ws2f{word-spacing:10.816000pt;}
.ws18{word-spacing:11.520000pt;}
.ws20{word-spacing:11.584000pt;}
.ws3c{word-spacing:18.880000pt;}
.ws11{word-spacing:19.520000pt;}
.ws7{word-spacing:20.800000pt;}
.ws2c{word-spacing:73.042667pt;}
.ws2d{word-spacing:104.082667pt;}
.ws2e{word-spacing:149.394667pt;}
.ws14{word-spacing:453.927467pt;}
.ws36{word-spacing:456.237867pt;}
.ws37{word-spacing:481.133867pt;}
.ws16{word-spacing:636.965867pt;}
.ws15{word-spacing:664.538667pt;}
.ws38{word-spacing:871.443200pt;}
._1d{margin-left:-9.461600pt;}
._6{margin-left:-7.912000pt;}
._4{margin-left:-6.820267pt;}
._d{margin-left:-5.796000pt;}
._0{margin-left:-4.795733pt;}
._1{margin-left:-3.372800pt;}
._2{margin-left:-2.081067pt;}
._f{margin-left:-1.145600pt;}
._7{width:0.959467pt;}
._3{width:1.972267pt;}
._5{width:3.121067pt;}
._8{width:4.417600pt;}
._c{width:5.501600pt;}
._e{width:6.392267pt;}
._b{width:7.413333pt;}
._a{width:8.649867pt;}
._9{width:9.635467pt;}
._13{width:10.934133pt;}
._14{width:12.329867pt;}
._17{width:13.728000pt;}
._10{width:14.777600pt;}
._2e{width:15.698133pt;}
._11{width:17.024000pt;}
._12{width:18.297600pt;}
._18{width:19.897600pt;}
._15{width:21.728000pt;}
._19{width:23.462400pt;}
._1a{width:25.177600pt;}
._30{width:26.597867pt;}
._16{width:30.937600pt;}
._2f{width:31.863467pt;}
._20{width:57.645867pt;}
._1c{width:62.428533pt;}
._1b{width:115.868533pt;}
._29{width:246.380800pt;}
._1f{width:247.305600pt;}
._26{width:248.419200pt;}
._27{width:326.739200pt;}
._24{width:335.571200pt;}
._1e{width:384.853867pt;}
._2c{width:392.467200pt;}
._23{width:465.133867pt;}
._25{width:481.299200pt;}
._2a{width:497.133867pt;}
._28{width:515.091200pt;}
._2d{width:534.675200pt;}
._2b{width:602.131200pt;}
._21{width:634.195200pt;}
._22{width:769.171200pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.ya7{bottom:69.210800pt;}
.y215{bottom:74.581733pt;}
.yf7{bottom:77.515200pt;}
.y1dd{bottom:77.602267pt;}
.y114{bottom:77.781867pt;}
.y1f6{bottom:78.327733pt;}
.y19e{bottom:79.026933pt;}
.y1b9{bottom:81.625600pt;}
.ya6{bottom:85.210800pt;}
.y25{bottom:85.474667pt;}
.y9c{bottom:85.648400pt;}
.ydc{bottom:86.715200pt;}
.y155{bottom:87.115200pt;}
.y17d{bottom:90.181867pt;}
.y71{bottom:90.448533pt;}
.y214{bottom:93.248400pt;}
.y139{bottom:93.515200pt;}
.ybc{bottom:93.996933pt;}
.y227{bottom:94.791733pt;}
.y15e{bottom:95.584267pt;}
.yf6{bottom:96.181867pt;}
.y1dc{bottom:96.268933pt;}
.y113{bottom:96.448533pt;}
.y1f5{bottom:97.661067pt;}
.y19d{bottom:97.693600pt;}
.y1b8{bottom:100.958933pt;}
.y4b{bottom:103.948267pt;}
.y9b{bottom:104.981733pt;}
.ydb{bottom:105.381867pt;}
.y154{bottom:106.448533pt;}
.y24{bottom:106.854133pt;}
.y17c{bottom:108.848533pt;}
.y70{bottom:109.115200pt;}
.y86{bottom:109.603200pt;}
.y226{bottom:110.791733pt;}
.y213{bottom:111.915067pt;}
.y138{bottom:112.181867pt;}
.yf5{bottom:114.848533pt;}
.y15d{bottom:114.917600pt;}
.y1db{bottom:114.935600pt;}
.y112{bottom:115.115200pt;}
.y19c{bottom:116.360267pt;}
.y1f4{bottom:116.994400pt;}
.ybb{bottom:117.556133pt;}
.y1b7{bottom:120.292267pt;}
.y4a{bottom:122.614933pt;}
.yda{bottom:124.048533pt;}
.y9a{bottom:124.315067pt;}
.y23{bottom:124.454133pt;}
.y85{bottom:125.603200pt;}
.y17b{bottom:127.515200pt;}
.y6f{bottom:127.781867pt;}
.y225{bottom:130.571333pt;}
.y212{bottom:130.581733pt;}
.y137{bottom:130.848533pt;}
.yf4{bottom:133.515200pt;}
.yba{bottom:133.556133pt;}
.y1da{bottom:133.602267pt;}
.y111{bottom:133.781867pt;}
.y15c{bottom:134.250933pt;}
.y19b{bottom:135.026933pt;}
.y1f3{bottom:136.327733pt;}
.y153{bottom:137.781867pt;}
.y1b6{bottom:139.625600pt;}
.y49{bottom:141.281600pt;}
.yd9{bottom:142.715200pt;}
.y99{bottom:143.648400pt;}
.y84{bottom:144.803200pt;}
.y22{bottom:145.566933pt;}
.y17a{bottom:146.181867pt;}
.y6e{bottom:146.448533pt;}
.y224{bottom:146.571333pt;}
.y211{bottom:149.248400pt;}
.y136{bottom:149.515200pt;}
.yf3{bottom:152.181867pt;}
.y1d9{bottom:152.268933pt;}
.y110{bottom:152.448533pt;}
.y15b{bottom:153.584267pt;}
.y19a{bottom:153.693600pt;}
.y1f2{bottom:155.661067pt;}
.y152{bottom:156.981867pt;}
.y1b5{bottom:158.958933pt;}
.y48{bottom:159.948267pt;}
.yd8{bottom:161.381733pt;}
.y223{bottom:162.571333pt;}
.y21{bottom:162.900267pt;}
.y98{bottom:162.981867pt;}
.y83{bottom:164.003200pt;}
.y179{bottom:164.848533pt;}
.y6d{bottom:165.115200pt;}
.y210{bottom:167.915067pt;}
.y135{bottom:168.181867pt;}
.yf2{bottom:170.848533pt;}
.y1d8{bottom:170.935600pt;}
.y10f{bottom:171.115200pt;}
.y199{bottom:172.360267pt;}
.y1f1{bottom:174.994400pt;}
.y1b4{bottom:178.292267pt;}
.y47{bottom:178.614933pt;}
.yd7{bottom:180.048400pt;}
.y20{bottom:180.233600pt;}
.y97{bottom:182.315200pt;}
.y222{bottom:182.350800pt;}
.y178{bottom:183.515200pt;}
.y6c{bottom:183.781867pt;}
.y20f{bottom:186.581733pt;}
.y134{bottom:186.848533pt;}
.y15a{bottom:187.584267pt;}
.yf1{bottom:189.515200pt;}
.y1d7{bottom:189.602267pt;}
.y10e{bottom:189.781867pt;}
.y198{bottom:191.026933pt;}
.y1f0{bottom:194.327733pt;}
.y151{bottom:195.381733pt;}
.y46{bottom:197.281600pt;}
.y1f{bottom:197.566933pt;}
.y1b3{bottom:197.625600pt;}
.y221{bottom:198.350800pt;}
.yd6{bottom:198.715067pt;}
.y96{bottom:201.648533pt;}
.y177{bottom:202.181867pt;}
.y6b{bottom:202.448533pt;}
.y159{bottom:203.584267pt;}
.y20e{bottom:205.248400pt;}
.y133{bottom:205.515200pt;}
.yf0{bottom:208.181867pt;}
.y1d6{bottom:208.268933pt;}
.y10d{bottom:208.448533pt;}
.y197{bottom:209.693600pt;}
.y1ef{bottom:213.661067pt;}
.y220{bottom:214.350800pt;}
.y150{bottom:214.581733pt;}
.y1e{bottom:214.900267pt;}
.y45{bottom:215.948267pt;}
.y1b2{bottom:216.958933pt;}
.yd5{bottom:217.381733pt;}
.y176{bottom:220.848533pt;}
.y95{bottom:220.981867pt;}
.y6a{bottom:221.115200pt;}
.y158{bottom:222.784267pt;}
.y20d{bottom:223.915067pt;}
.y132{bottom:224.181867pt;}
.yef{bottom:226.848533pt;}
.y1d5{bottom:226.935600pt;}
.y10c{bottom:227.115200pt;}
.y196{bottom:228.360267pt;}
.y1d{bottom:232.233600pt;}
.y1ee{bottom:232.994400pt;}
.y14f{bottom:233.781867pt;}
.y21f{bottom:234.130400pt;}
.y44{bottom:234.614933pt;}
.yd4{bottom:236.048400pt;}
.y1b1{bottom:236.292267pt;}
.y175{bottom:239.515200pt;}
.y69{bottom:239.781867pt;}
.y94{bottom:240.315200pt;}
.y20c{bottom:242.581733pt;}
.y131{bottom:242.848533pt;}
.yee{bottom:245.515200pt;}
.y1d4{bottom:245.602267pt;}
.y10b{bottom:245.781867pt;}
.y195{bottom:247.026933pt;}
.y1c{bottom:249.566933pt;}
.y21e{bottom:250.130400pt;}
.y14e{bottom:252.981867pt;}
.y43{bottom:253.281600pt;}
.yd3{bottom:254.715067pt;}
.y174{bottom:258.181867pt;}
.y68{bottom:258.448533pt;}
.y1b0{bottom:259.405067pt;}
.y93{bottom:259.648533pt;}
.y20b{bottom:261.248400pt;}
.y130{bottom:261.515200pt;}
.yed{bottom:264.181867pt;}
.y1d3{bottom:264.268933pt;}
.y10a{bottom:264.448533pt;}
.y194{bottom:265.693600pt;}
.y1b{bottom:266.900267pt;}
.y21d{bottom:269.909867pt;}
.y1ed{bottom:271.527733pt;}
.y42{bottom:271.948267pt;}
.y14d{bottom:272.181867pt;}
.yd2{bottom:273.381733pt;}
.y248{bottom:275.310933pt;}
.y173{bottom:276.848533pt;}
.y67{bottom:277.115200pt;}
.y92{bottom:278.981867pt;}
.y20a{bottom:279.915067pt;}
.y12f{bottom:280.181867pt;}
.yec{bottom:282.848533pt;}
.y1d2{bottom:282.935600pt;}
.y109{bottom:283.115200pt;}
.y1a{bottom:284.233600pt;}
.y193{bottom:284.360267pt;}
.y21c{bottom:285.909867pt;}
.y1ec{bottom:289.998267pt;}
.y41{bottom:290.614933pt;}
.y247{bottom:291.310933pt;}
.y14c{bottom:291.381733pt;}
.yd1{bottom:292.048400pt;}
.y1af{bottom:292.605200pt;}
.y172{bottom:295.515200pt;}
.y66{bottom:295.781867pt;}
.y91{bottom:298.315200pt;}
.y209{bottom:298.581733pt;}
.y12e{bottom:298.848533pt;}
.yeb{bottom:301.515200pt;}
.y19{bottom:301.566933pt;}
.y1d1{bottom:301.602267pt;}
.y108{bottom:301.781867pt;}
.y192{bottom:303.026933pt;}
.y21b{bottom:305.689467pt;}
.y1eb{bottom:308.895867pt;}
.y40{bottom:309.281600pt;}
.y14b{bottom:310.581733pt;}
.yd0{bottom:310.715067pt;}
.y246{bottom:311.090533pt;}
.y1ae{bottom:311.805200pt;}
.y171{bottom:314.181867pt;}
.y65{bottom:314.448533pt;}
.y208{bottom:317.248400pt;}
.y12d{bottom:317.515200pt;}
.y90{bottom:317.648533pt;}
.y18{bottom:318.900267pt;}
.yea{bottom:320.181867pt;}
.y1d0{bottom:320.268933pt;}
.y107{bottom:320.448533pt;}
.y21a{bottom:321.689467pt;}
.y191{bottom:321.693600pt;}
.y245{bottom:327.090533pt;}
.y1ea{bottom:327.793600pt;}
.y3f{bottom:327.948267pt;}
.ycf{bottom:329.381733pt;}
.y14a{bottom:329.781867pt;}
.y170{bottom:332.848533pt;}
.y64{bottom:333.115200pt;}
.y1ad{bottom:334.482267pt;}
.y207{bottom:335.915067pt;}
.y12c{bottom:336.181867pt;}
.y17{bottom:336.233600pt;}
.y8f{bottom:336.981867pt;}
.ye9{bottom:338.848533pt;}
.y1cf{bottom:338.935600pt;}
.y106{bottom:339.115200pt;}
.y190{bottom:340.360267pt;}
.y219{bottom:341.468933pt;}
.y244{bottom:343.090533pt;}
.y3e{bottom:346.614933pt;}
.y1e9{bottom:346.691200pt;}
.yce{bottom:348.048400pt;}
.y149{bottom:348.981867pt;}
.y16f{bottom:351.515200pt;}
.y63{bottom:351.781867pt;}
.y16{bottom:353.566933pt;}
.y206{bottom:354.581733pt;}
.y12b{bottom:354.848533pt;}
.y1ac{bottom:357.159467pt;}
.y218{bottom:357.468933pt;}
.ye8{bottom:357.515200pt;}
.y1ce{bottom:357.602267pt;}
.y105{bottom:357.781867pt;}
.y18f{bottom:359.026933pt;}
.y243{bottom:362.870133pt;}
.y3d{bottom:365.281600pt;}
.y1e8{bottom:365.588800pt;}
.ycd{bottom:366.715067pt;}
.y148{bottom:368.181867pt;}
.y16e{bottom:370.181867pt;}
.y62{bottom:370.448533pt;}
.y15{bottom:370.900267pt;}
.y205{bottom:373.248400pt;}
.y12a{bottom:373.515200pt;}
.y8e{bottom:375.515200pt;}
.ye7{bottom:376.181867pt;}
.y1cd{bottom:376.268933pt;}
.y104{bottom:377.115200pt;}
.y217{bottom:377.248400pt;}
.y18e{bottom:377.693600pt;}
.y242{bottom:378.870133pt;}
.y1ab{bottom:379.298533pt;}
.y3c{bottom:383.948267pt;}
.y1e7{bottom:384.486533pt;}
.ycc{bottom:385.381733pt;}
.ya5{bottom:385.859333pt;}
.y147{bottom:387.381733pt;}
.y14{bottom:388.233600pt;}
.y16d{bottom:388.848533pt;}
.y61{bottom:389.115200pt;}
.y8d{bottom:391.515200pt;}
.y204{bottom:391.915067pt;}
.y129{bottom:392.181867pt;}
.ye6{bottom:394.848533pt;}
.y241{bottom:394.870133pt;}
.y1cc{bottom:395.602267pt;}
.y18d{bottom:396.360267pt;}
.y103{bottom:396.448533pt;}
.y3b{bottom:402.614933pt;}
.y1e6{bottom:403.384133pt;}
.ycb{bottom:404.048400pt;}
.y1aa{bottom:404.489467pt;}
.ya4{bottom:405.192667pt;}
.y13{bottom:405.566933pt;}
.y146{bottom:406.581733pt;}
.y16c{bottom:407.515200pt;}
.y60{bottom:407.781867pt;}
.y203{bottom:410.581733pt;}
.y8c{bottom:410.715067pt;}
.y128{bottom:410.848533pt;}
.y216{bottom:412.448533pt;}
.ye5{bottom:413.515200pt;}
.y240{bottom:414.649600pt;}
.y1cb{bottom:414.935600pt;}
.y18c{bottom:415.026933pt;}
.y102{bottom:415.781867pt;}
.y1a9{bottom:420.489467pt;}
.y3a{bottom:421.281600pt;}
.y1e5{bottom:422.281733pt;}
.yca{bottom:422.715067pt;}
.y12{bottom:422.900267pt;}
.ya3{bottom:424.526000pt;}
.y145{bottom:425.781867pt;}
.y16b{bottom:426.181867pt;}
.y5f{bottom:427.115200pt;}
.y202{bottom:429.248400pt;}
.y127{bottom:429.515200pt;}
.y23f{bottom:430.649600pt;}
.ye4{bottom:432.181867pt;}
.y1ca{bottom:434.268933pt;}
.y18b{bottom:434.360267pt;}
.y101{bottom:435.115200pt;}
.y39{bottom:439.948267pt;}
.y11{bottom:440.233600pt;}
.y1e4{bottom:441.179467pt;}
.yc9{bottom:441.381733pt;}
.y16a{bottom:444.848533pt;}
.y144{bottom:444.981867pt;}
.y5e{bottom:446.448533pt;}
.y23e{bottom:446.649600pt;}
.y201{bottom:447.915067pt;}
.y126{bottom:448.181867pt;}
.ye3{bottom:450.848533pt;}
.y1c9{bottom:453.602267pt;}
.y18a{bottom:453.693600pt;}
.y100{bottom:454.448533pt;}
.y10{bottom:457.566933pt;}
.y38{bottom:458.614933pt;}
.y82{bottom:459.174933pt;}
.yc8{bottom:460.048400pt;}
.y1e3{bottom:460.077067pt;}
.yb9{bottom:461.115200pt;}
.y23d{bottom:462.649600pt;}
.ya2{bottom:463.059333pt;}
.y1a8{bottom:463.248400pt;}
.y169{bottom:463.515200pt;}
.y143{bottom:464.181867pt;}
.y5d{bottom:465.781867pt;}
.y200{bottom:466.581733pt;}
.y125{bottom:467.515200pt;}
.ye2{bottom:469.515200pt;}
.y1c8{bottom:472.935600pt;}
.y189{bottom:473.026933pt;}
.yff{bottom:473.781867pt;}
.yf{bottom:474.900267pt;}
.y37{bottom:477.281600pt;}
.y81{bottom:478.508267pt;}
.yc7{bottom:478.715067pt;}
.y1e2{bottom:478.974667pt;}
.ya1{bottom:479.059333pt;}
.yb8{bottom:479.781867pt;}
.y1a7{bottom:481.915067pt;}
.y168{bottom:482.181867pt;}
.y23c{bottom:482.429067pt;}
.y142{bottom:483.381733pt;}
.y5c{bottom:485.115200pt;}
.y1ff{bottom:485.248400pt;}
.y124{bottom:486.848533pt;}
.ye1{bottom:488.181867pt;}
.ye{bottom:492.233600pt;}
.y188{bottom:492.360267pt;}
.yfe{bottom:493.115200pt;}
.y36{bottom:495.948267pt;}
.yc6{bottom:497.381733pt;}
.y80{bottom:497.841600pt;}
.y1e1{bottom:497.872267pt;}
.ya0{bottom:498.259333pt;}
.y23b{bottom:498.429067pt;}
.yb7{bottom:498.448533pt;}
.y1a6{bottom:500.581733pt;}
.y167{bottom:500.848533pt;}
.y141{bottom:502.581733pt;}
.y1fe{bottom:503.915067pt;}
.y5b{bottom:504.448533pt;}
.y1c7{bottom:505.648533pt;}
.y123{bottom:506.181867pt;}
.ye0{bottom:506.848533pt;}
.yd{bottom:509.566933pt;}
.y187{bottom:511.693600pt;}
.yfd{bottom:512.448533pt;}
.y35{bottom:514.614933pt;}
.yc5{bottom:516.048400pt;}
.y1e0{bottom:516.770000pt;}
.yb6{bottom:517.115200pt;}
.y7f{bottom:517.174933pt;}
.y9f{bottom:517.459333pt;}
.y23a{bottom:518.208667pt;}
.y166{bottom:519.515200pt;}
.y1a5{bottom:519.915067pt;}
.y140{bottom:521.781867pt;}
.y1fd{bottom:522.581733pt;}
.ydf{bottom:525.515200pt;}
.yc{bottom:526.900267pt;}
.y186{bottom:531.026933pt;}
.yfc{bottom:531.781867pt;}
.y34{bottom:533.281600pt;}
.y239{bottom:534.208667pt;}
.yc4{bottom:534.715067pt;}
.yb5{bottom:535.781867pt;}
.y7e{bottom:536.508267pt;}
.y165{bottom:538.181867pt;}
.y1a4{bottom:539.248400pt;}
.y13f{bottom:540.981867pt;}
.y1fc{bottom:541.248400pt;}
.y1df{bottom:541.422800pt;}
.y5a{bottom:543.115200pt;}
.y1c6{bottom:543.515200pt;}
.yde{bottom:544.181867pt;}
.yb{bottom:544.233600pt;}
.y122{bottom:544.848533pt;}
.y238{bottom:550.208667pt;}
.y185{bottom:550.360267pt;}
.yfb{bottom:551.115200pt;}
.y33{bottom:551.948267pt;}
.yc3{bottom:554.048400pt;}
.yb4{bottom:554.448533pt;}
.y164{bottom:556.848533pt;}
.y1de{bottom:557.422800pt;}
.y1a3{bottom:558.581733pt;}
.y13e{bottom:560.181867pt;}
.y1fb{bottom:560.581733pt;}
.ya{bottom:561.566933pt;}
.y1c5{bottom:562.181867pt;}
.ydd{bottom:562.848533pt;}
.y121{bottom:564.181867pt;}
.y184{bottom:569.693600pt;}
.y237{bottom:569.988133pt;}
.yfa{bottom:570.448533pt;}
.y32{bottom:570.614933pt;}
.yc2{bottom:573.381733pt;}
.yb3{bottom:573.781867pt;}
.y7d{bottom:575.174933pt;}
.y163{bottom:575.515200pt;}
.y1a2{bottom:577.915067pt;}
.y9{bottom:578.900267pt;}
.y13d{bottom:579.381733pt;}
.y1fa{bottom:579.915067pt;}
.y1c4{bottom:580.848533pt;}
.y59{bottom:581.515200pt;}
.y120{bottom:584.181867pt;}
.y236{bottom:585.988133pt;}
.y183{bottom:589.026933pt;}
.y31{bottom:589.281600pt;}
.yc1{bottom:592.715067pt;}
.yb2{bottom:593.115200pt;}
.y162{bottom:594.181867pt;}
.y1a1{bottom:597.248400pt;}
.y7c{bottom:597.425067pt;}
.y13c{bottom:598.581733pt;}
.y1f9{bottom:599.248400pt;}
.y1c3{bottom:599.515200pt;}
.y58{bottom:600.181867pt;}
.y235{bottom:601.988133pt;}
.yf9{bottom:603.115200pt;}
.y11f{bottom:604.181867pt;}
.y30{bottom:607.948267pt;}
.y8{bottom:608.233600pt;}
.yc0{bottom:612.048400pt;}
.yb1{bottom:612.448533pt;}
.y161{bottom:612.848533pt;}
.y7b{bottom:616.322667pt;}
.y1a0{bottom:616.581733pt;}
.y13b{bottom:617.781867pt;}
.y234{bottom:617.988133pt;}
.y1c2{bottom:618.181867pt;}
.y1f8{bottom:618.581733pt;}
.y57{bottom:618.848533pt;}
.yf8{bottom:622.315200pt;}
.y11e{bottom:624.181867pt;}
.y182{bottom:624.360267pt;}
.y2f{bottom:626.614933pt;}
.y7{bottom:627.433600pt;}
.y160{bottom:631.515200pt;}
.yb0{bottom:631.781867pt;}
.y7a{bottom:635.220400pt;}
.y181{bottom:635.693600pt;}
.y1c1{bottom:636.848533pt;}
.y13a{bottom:636.981867pt;}
.y56{bottom:637.515200pt;}
.y233{bottom:637.767733pt;}
.y11d{bottom:644.181867pt;}
.y2e{bottom:645.281600pt;}
.y6{bottom:646.633600pt;}
.y15f{bottom:650.181867pt;}
.ybf{bottom:650.581733pt;}
.yaf{bottom:651.115200pt;}
.y1f7{bottom:651.248400pt;}
.y232{bottom:653.767733pt;}
.y79{bottom:654.118000pt;}
.y19f{bottom:655.115200pt;}
.y1c0{bottom:655.515200pt;}
.y55{bottom:656.181867pt;}
.y180{bottom:662.150267pt;}
.y11c{bottom:664.181867pt;}
.y2d{bottom:664.614933pt;}
.y5{bottom:665.833600pt;}
.y157{bottom:669.515200pt;}
.y231{bottom:669.767733pt;}
.ybe{bottom:669.781867pt;}
.yae{bottom:670.448533pt;}
.y78{bottom:673.015600pt;}
.y1bf{bottom:674.181867pt;}
.y54{bottom:674.848533pt;}
.y2c{bottom:683.948267pt;}
.y11b{bottom:684.181867pt;}
.y230{bottom:685.767733pt;}
.y156{bottom:688.848533pt;}
.yad{bottom:689.648400pt;}
.y77{bottom:691.913200pt;}
.y1be{bottom:692.848533pt;}
.y53{bottom:693.515200pt;}
.y17f{bottom:696.084000pt;}
.y2b{bottom:703.281600pt;}
.y11a{bottom:704.181867pt;}
.y22f{bottom:705.547200pt;}
.ybd{bottom:708.181867pt;}
.yac{bottom:708.848533pt;}
.y4{bottom:710.633600pt;}
.y76{bottom:711.068667pt;}
.y1bd{bottom:711.515200pt;}
.y52{bottom:712.181867pt;}
.y22e{bottom:721.547200pt;}
.y2a{bottom:722.614933pt;}
.y119{bottom:724.181867pt;}
.y8b{bottom:727.515200pt;}
.y17e{bottom:727.956000pt;}
.yab{bottom:728.048533pt;}
.y1bc{bottom:730.181867pt;}
.y51{bottom:730.848533pt;}
.y75{bottom:735.463733pt;}
.y22d{bottom:737.547200pt;}
.y3{bottom:738.633600pt;}
.y29{bottom:741.948267pt;}
.y118{bottom:744.181867pt;}
.y8a{bottom:746.848533pt;}
.yaa{bottom:747.248400pt;}
.y1bb{bottom:748.848533pt;}
.y50{bottom:749.515200pt;}
.y22c{bottom:757.326800pt;}
.y28{bottom:761.281600pt;}
.y117{bottom:764.181867pt;}
.y89{bottom:766.181867pt;}
.ya9{bottom:766.448533pt;}
.y74{bottom:766.581733pt;}
.y9e{bottom:766.981733pt;}
.y1ba{bottom:767.515200pt;}
.y4f{bottom:768.181867pt;}
.y22b{bottom:773.326800pt;}
.y27{bottom:780.614933pt;}
.y116{bottom:784.181867pt;}
.y88{bottom:785.515200pt;}
.ya8{bottom:785.648400pt;}
.y73{bottom:785.781867pt;}
.y9d{bottom:786.181867pt;}
.y4e{bottom:786.848533pt;}
.y22a{bottom:789.326800pt;}
.y115{bottom:804.181867pt;}
.y87{bottom:804.848533pt;}
.y72{bottom:804.981733pt;}
.y4d{bottom:805.515200pt;}
.y229{bottom:809.106267pt;}
.y26{bottom:819.148267pt;}
.y4c{bottom:824.181867pt;}
.y228{bottom:825.106267pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.hc{height:37.031250pt;}
.hb{height:40.734375pt;}
.h8{height:42.585938pt;}
.h7{height:42.735677pt;}
.h10{height:43.593750pt;}
.h6{height:44.437500pt;}
.h9{height:44.593750pt;}
.h3{height:45.568000pt;}
.he{height:46.796875pt;}
.h4{height:50.604167pt;}
.hd{height:51.476562pt;}
.h5{height:52.026042pt;}
.ha{height:56.156250pt;}
.hf{height:73.884800pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.811067pt;}
.x15{left:74.408267pt;}
.x1{left:75.590533pt;}
.x22{left:79.344400pt;}
.x21{left:88.978667pt;}
.x13{left:91.871200pt;}
.x11{left:107.076267pt;}
.x19{left:109.606267pt;}
.x1d{left:117.165333pt;}
.x5{left:118.866000pt;}
.xa{left:119.811067pt;}
.x1a{left:124.724400pt;}
.x10{left:126.299467pt;}
.x1e{left:128.504000pt;}
.xb{left:131.853600pt;}
.x1f{left:135.166667pt;}
.x7{left:140.861467pt;}
.x3{left:146.843200pt;}
.x17{left:149.143200pt;}
.x24{left:162.052800pt;}
.xd{left:169.252400pt;}
.xc{left:170.287467pt;}
.x6{left:178.037200pt;}
.x18{left:193.317200pt;}
.x20{left:206.388800pt;}
.x4{left:214.441467pt;}
.x16{left:227.947333pt;}
.x1c{left:238.638133pt;}
.x8{left:254.130933pt;}
.x1b{left:257.724667pt;}
.xe{left:261.171600pt;}
.x23{left:264.029067pt;}
.x12{left:290.267600pt;}
.x27{left:303.622000pt;}
.x2{left:313.579867pt;}
.xf{left:414.827867pt;}
.x14{left:429.273333pt;}
.x25{left:462.003200pt;}
.x26{left:509.269867pt;}
}




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