
    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_d8042139c54f0cfcc8cfde5f.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_cd26774e7ae752cc707fde05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_359d3d314d67700aacc40434.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4d851ed445a57b12c7ee95e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5085813cb22ae33eccc09e27.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_5282f33c1f06df8f5ebd500d.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_28844328ce6cb3373ed7f8fe.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_79259ba54238e6f51b198410.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cd8303b57fd5cb281cb3446d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7585a3f0088b7112ff8c7b5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b67c413b0d0d8665421de83d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_460306a9b449624bcf6c8f6b.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.498000px;}
.ls4{letter-spacing:-0.466800px;}
.ls16{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020160px;}
.lse{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls1{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.840000px;}
.ls11{letter-spacing:15.336000px;}
.lsf{letter-spacing:20.304000px;}
.lsd{letter-spacing:21.433440px;}
.ls10{letter-spacing:54.876000px;}
.ls15{letter-spacing:87.996000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws6{word-spacing:-20.880000px;}
.ws10{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.wsc{word-spacing:-16.056000px;}
.wsf{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.099840px;}
.ws4{word-spacing:-14.653200px;}
.ws0{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.182000px;}
.wsd{word-spacing:-0.504000px;}
.wse{word-spacing:-0.396000px;}
.wsb{word-spacing:-0.288000px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:3.780000px;}
._27{margin-left:-5.310720px;}
._13{margin-left:-4.161600px;}
._6{margin-left:-2.767680px;}
._0{margin-left:-1.477440px;}
._3{width:1.094400px;}
._7{width:2.135040px;}
._8{width:3.812160px;}
._9{width:4.866240px;}
._14{width:6.652800px;}
._15{width:7.882560px;}
._1a{width:8.925120px;}
._1b{width:9.952080px;}
._17{width:10.999920px;}
._16{width:12.121920px;}
._18{width:14.057280px;}
._1d{width:15.235200px;}
._19{width:16.413120px;}
._d{width:17.418240px;}
._e{width:18.740160px;}
._1f{width:20.664960px;}
._b{width:21.772800px;}
._a{width:23.103360px;}
._c{width:24.485760px;}
._11{width:26.262720px;}
._f{width:27.362880px;}
._10{width:28.477440px;}
._22{width:29.586240px;}
._21{width:31.069440px;}
._20{width:32.869440px;}
._24{width:34.341120px;}
._1e{width:36.933600px;}
._28{width:38.485440px;}
._23{width:39.600000px;}
._29{width:42.733440px;}
._2{width:97.920000px;}
._26{width:101.954880px;}
._25{width:103.104000px;}
._2a{width:107.568000px;}
._2b{width:109.195200px;}
._30{width:139.104000px;}
._2d{width:148.265280px;}
._2c{width:149.437440px;}
._2e{width:193.343040px;}
._2f{width:194.667840px;}
._4{width:476.936640px;}
._12{width:849.485760px;}
._1{width:972.394560px;}
._1c{width:973.684800px;}
._5{width:1347.720000px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y17c{bottom:3.240000px;}
.y24{bottom:3.270000px;}
.y26{bottom:7.920000px;}
.y1e{bottom:11.160000px;}
.y2e{bottom:11.565000px;}
.y36{bottom:18.720000px;}
.y190{bottom:20.520000px;}
.y23{bottom:20.550000px;}
.y30{bottom:25.920000px;}
.y1d{bottom:28.440000px;}
.y2d{bottom:28.845000px;}
.y20{bottom:29.190000px;}
.y1a{bottom:37.080000px;}
.y29{bottom:37.485000px;}
.y22{bottom:37.830000px;}
.y35{bottom:40.320000px;}
.y1c{bottom:45.720000px;}
.y2c{bottom:46.125000px;}
.y28{bottom:54.765000px;}
.y21{bottom:55.110000px;}
.y6{bottom:56.880000px;}
.y34{bottom:61.920000px;}
.y1b{bottom:63.030000px;}
.y2b{bottom:63.045000px;}
.y5{bottom:77.796000px;}
.y2a{bottom:80.325000px;}
.y136{bottom:112.716000px;}
.y1fc{bottom:116.676000px;}
.y240{bottom:119.196000px;}
.yfd{bottom:122.076000px;}
.y9f{bottom:124.956000px;}
.y17f{bottom:125.316000px;}
.y165{bottom:127.476000px;}
.y18a{bottom:129.636000px;}
.y6e{bottom:129.996000px;}
.y135{bottom:133.596000px;}
.y1fb{bottom:137.196000px;}
.y1e1{bottom:139.356000px;}
.y23f{bottom:140.076000px;}
.y1ae{bottom:140.796000px;}
.yfc{bottom:142.596000px;}
.y9e{bottom:145.476000px;}
.y6d{bottom:147.276000px;}
.y21b{bottom:147.636000px;}
.ycd{bottom:147.996000px;}
.y113{bottom:149.436000px;}
.y189{bottom:150.150000px;}
.y14b{bottom:150.870000px;}
.y17e{bottom:151.230000px;}
.y134{bottom:154.110000px;}
.y1fa{bottom:158.070000px;}
.y1e0{bottom:159.870000px;}
.y23e{bottom:160.590000px;}
.y1ad{bottom:161.670000px;}
.yfb{bottom:163.470000px;}
.y6c{bottom:164.550000px;}
.y9d{bottom:166.350000px;}
.ycc{bottom:168.510000px;}
.y112{bottom:169.950000px;}
.y188{bottom:171.030000px;}
.y14a{bottom:171.390000px;}
.y164{bottom:173.550000px;}
.y1f9{bottom:178.590000px;}
.y133{bottom:179.670000px;}
.y1df{bottom:180.750000px;}
.y23d{bottom:181.470000px;}
.y6b{bottom:181.830000px;}
.y1ac{bottom:182.190000px;}
.yfa{bottom:184.035000px;}
.y33{bottom:184.395000px;}
.y9c{bottom:186.915000px;}
.y260{bottom:187.635000px;}
.y17d{bottom:188.715000px;}
.y21a{bottom:189.075000px;}
.ycb{bottom:189.435000px;}
.y187{bottom:191.595000px;}
.y111{bottom:191.955000px;}
.y163{bottom:192.675000px;}
.y132{bottom:198.435000px;}
.y6a{bottom:199.155000px;}
.y1f8{bottom:199.515000px;}
.y149{bottom:200.955000px;}
.y1de{bottom:201.315000px;}
.y23c{bottom:202.035000px;}
.y1ab{bottom:203.115000px;}
.yf9{bottom:204.915000px;}
.y17b{bottom:207.435000px;}
.y9b{bottom:207.795000px;}
.y25f{bottom:208.515000px;}
.yca{bottom:209.955000px;}
.y186{bottom:212.475000px;}
.y110{bottom:212.835000px;}
.y69{bottom:216.435000px;}
.y1f7{bottom:220.035000px;}
.y1dd{bottom:222.195000px;}
.y23b{bottom:222.915000px;}
.yf8{bottom:225.435000px;}
.y9a{bottom:228.315000px;}
.y1aa{bottom:228.675000px;}
.y25e{bottom:229.035000px;}
.y219{bottom:230.475000px;}
.yc9{bottom:230.835000px;}
.y185{bottom:232.995000px;}
.y10f{bottom:233.355000px;}
.y68{bottom:233.715000px;}
.y17a{bottom:238.395000px;}
.y1f6{bottom:240.915000px;}
.y1dc{bottom:242.715000px;}
.y23a{bottom:243.435000px;}
.yf7{bottom:246.315000px;}
.y1a9{bottom:247.395000px;}
.y99{bottom:249.195000px;}
.y25d{bottom:249.915000px;}
.y67{bottom:250.635000px;}
.yc8{bottom:251.355000px;}
.y148{bottom:251.715000px;}
.y218{bottom:252.435000px;}
.y184{bottom:253.875000px;}
.y1be{bottom:257.835000px;}
.y1f5{bottom:261.435000px;}
.y10e{bottom:262.875000px;}
.y1db{bottom:263.595000px;}
.y239{bottom:264.315000px;}
.y179{bottom:265.035000px;}
.yf6{bottom:266.835000px;}
.y66{bottom:267.915000px;}
.y98{bottom:269.715000px;}
.y25c{bottom:270.435000px;}
.yc7{bottom:272.235000px;}
.y217{bottom:272.955000px;}
.y183{bottom:274.395000px;}
.y1bd{bottom:278.355000px;}
.y1f4{bottom:282.315000px;}
.y1da{bottom:284.115000px;}
.y238{bottom:284.835000px;}
.y65{bottom:285.195000px;}
.yf5{bottom:287.715000px;}
.y97{bottom:290.595000px;}
.y25b{bottom:290.955000px;}
.yc6{bottom:292.755000px;}
.y147{bottom:293.115000px;}
.y178{bottom:295.275000px;}
.y1bc{bottom:299.235000px;}
.y64{bottom:302.475000px;}
.y1f3{bottom:302.835000px;}
.y1d9{bottom:304.995000px;}
.y237{bottom:305.715000px;}
.yf4{bottom:308.235000px;}
.y96{bottom:311.145000px;}
.y25a{bottom:311.865000px;}
.y10d{bottom:313.665000px;}
.y177{bottom:315.825000px;}
.y63{bottom:319.785000px;}
.yc5{bottom:322.305000px;}
.y1f2{bottom:323.745000px;}
.y1d8{bottom:325.545000px;}
.y236{bottom:326.265000px;}
.yf3{bottom:329.145000px;}
.y95{bottom:332.025000px;}
.y259{bottom:332.385000px;}
.y32{bottom:332.745000px;}
.y10c{bottom:334.185000px;}
.y146{bottom:334.545000px;}
.y176{bottom:336.705000px;}
.y62{bottom:337.065000px;}
.y216{bottom:337.785000px;}
.y1bb{bottom:340.665000px;}
.y1f1{bottom:344.265000px;}
.y1d7{bottom:346.425000px;}
.y235{bottom:347.145000px;}
.yc4{bottom:352.185000px;}
.y94{bottom:352.545000px;}
.y31{bottom:352.905000px;}
.y258{bottom:353.265000px;}
.y61{bottom:354.345000px;}
.y10b{bottom:355.065000px;}
.y175{bottom:357.225000px;}
.yf2{bottom:358.305000px;}
.y215{bottom:358.665000px;}
.y1ba{bottom:361.185000px;}
.y1f0{bottom:365.145000px;}
.y1d6{bottom:366.945000px;}
.y234{bottom:367.665000px;}
.y2f{bottom:369.465000px;}
.y60{bottom:371.625000px;}
.yc3{bottom:373.065000px;}
.y93{bottom:373.425000px;}
.y257{bottom:373.785000px;}
.y10a{bottom:375.585000px;}
.y145{bottom:375.945000px;}
.y174{bottom:378.105000px;}
.y214{bottom:379.185000px;}
.y1b9{bottom:382.065000px;}
.y1ef{bottom:385.665000px;}
.y1d5{bottom:387.825000px;}
.yf1{bottom:388.545000px;}
.y5f{bottom:388.905000px;}
.yc2{bottom:393.585000px;}
.y92{bottom:393.945000px;}
.y256{bottom:394.665000px;}
.y109{bottom:396.465000px;}
.y173{bottom:398.625000px;}
.y213{bottom:400.065000px;}
.y1b8{bottom:402.585000px;}
.y5e{bottom:406.185000px;}
.y1ee{bottom:406.545000px;}
.y1d4{bottom:408.345000px;}
.yf0{bottom:409.065000px;}
.y162{bottom:411.945000px;}
.yc1{bottom:414.465000px;}
.y91{bottom:414.825000px;}
.y255{bottom:415.185000px;}
.y108{bottom:416.985000px;}
.y144{bottom:417.345000px;}
.y172{bottom:419.505000px;}
.y212{bottom:420.585000px;}
.y5d{bottom:423.465000px;}
.y1ed{bottom:427.065000px;}
.y1d3{bottom:429.225000px;}
.yef{bottom:429.945000px;}
.y27{bottom:432.825000px;}
.yc0{bottom:434.985000px;}
.y90{bottom:435.345000px;}
.y254{bottom:436.065000px;}
.y107{bottom:437.910000px;}
.y161{bottom:438.990000px;}
.y171{bottom:440.070000px;}
.y5c{bottom:440.430000px;}
.y211{bottom:441.510000px;}
.y1b7{bottom:444.030000px;}
.y131{bottom:444.750000px;}
.y1ec{bottom:447.990000px;}
.y1d2{bottom:449.790000px;}
.yee{bottom:450.510000px;}
.ybf{bottom:455.910000px;}
.y8f{bottom:456.270000px;}
.y253{bottom:456.630000px;}
.y5b{bottom:457.710000px;}
.y106{bottom:458.430000px;}
.y143{bottom:458.790000px;}
.y160{bottom:459.870000px;}
.y170{bottom:460.950000px;}
.y210{bottom:462.030000px;}
.y1a8{bottom:464.550000px;}
.y1b6{bottom:464.910000px;}
.y1eb{bottom:468.510000px;}
.y1d1{bottom:470.670000px;}
.yed{bottom:471.390000px;}
.y130{bottom:472.110000px;}
.y5a{bottom:474.990000px;}
.ybe{bottom:476.430000px;}
.y8e{bottom:476.790000px;}
.y252{bottom:477.510000px;}
.y105{bottom:479.310000px;}
.y15f{bottom:480.390000px;}
.y16f{bottom:481.470000px;}
.y1a7{bottom:482.550000px;}
.y20f{bottom:482.910000px;}
.y1b5{bottom:485.430000px;}
.y1ea{bottom:489.390000px;}
.y1d0{bottom:491.190000px;}
.yec{bottom:491.910000px;}
.y59{bottom:492.270000px;}
.ybd{bottom:497.310000px;}
.y8d{bottom:497.670000px;}
.y251{bottom:498.030000px;}
.y142{bottom:500.190000px;}
.y12f{bottom:501.270000px;}
.y16e{bottom:502.350000px;}
.y20e{bottom:503.430000px;}
.y1b4{bottom:506.310000px;}
.y182{bottom:507.390000px;}
.y104{bottom:508.470000px;}
.y58{bottom:509.550000px;}
.y1e9{bottom:509.910000px;}
.y1a6{bottom:512.070000px;}
.yeb{bottom:512.790000px;}
.ybc{bottom:517.830000px;}
.y8c{bottom:518.190000px;}
.y250{bottom:518.910000px;}
.y141{bottom:520.710000px;}
.y15e{bottom:521.790000px;}
.y16d{bottom:522.870000px;}
.y20d{bottom:524.310000px;}
.y57{bottom:526.830000px;}
.y181{bottom:530.430000px;}
.y1e8{bottom:530.790000px;}
.y12e{bottom:531.510000px;}
.y1cf{bottom:532.590000px;}
.yea{bottom:533.310000px;}
.y25{bottom:536.190000px;}
.ybb{bottom:538.710000px;}
.y8b{bottom:539.070000px;}
.y24f{bottom:539.430000px;}
.y1a5{bottom:541.950000px;}
.y15d{bottom:542.670000px;}
.y16c{bottom:543.750000px;}
.y56{bottom:544.110000px;}
.y20c{bottom:544.830000px;}
.y140{bottom:546.270000px;}
.y1b3{bottom:547.710000px;}
.y1e7{bottom:551.310000px;}
.y12d{bottom:552.030000px;}
.y1ce{bottom:553.470000px;}
.ye9{bottom:554.190000px;}
.yba{bottom:559.230000px;}
.y8a{bottom:559.590000px;}
.y24e{bottom:560.310000px;}
.y55{bottom:561.390000px;}
.y1a4{bottom:562.830000px;}
.y15c{bottom:563.190000px;}
.y1f{bottom:563.910000px;}
.y16b{bottom:564.270000px;}
.y13f{bottom:565.020000px;}
.y20b{bottom:565.740000px;}
.y1b2{bottom:568.260000px;}
.y1e6{bottom:572.220000px;}
.y12c{bottom:572.940000px;}
.y1cd{bottom:574.020000px;}
.ye8{bottom:574.740000px;}
.y54{bottom:578.700000px;}
.yb9{bottom:579.780000px;}
.y89{bottom:580.500000px;}
.y24d{bottom:580.860000px;}
.y1a3{bottom:583.380000px;}
.y15b{bottom:584.100000px;}
.y16a{bottom:585.180000px;}
.y20a{bottom:586.260000px;}
.y1e5{bottom:592.740000px;}
.y12b{bottom:593.460000px;}
.y1b1{bottom:593.820000px;}
.ye7{bottom:595.620000px;}
.y53{bottom:595.980000px;}
.yb8{bottom:600.660000px;}
.y88{bottom:601.020000px;}
.y24c{bottom:601.740000px;}
.y1a2{bottom:604.260000px;}
.y15a{bottom:604.620000px;}
.y169{bottom:605.700000px;}
.y209{bottom:607.140000px;}
.y1b0{bottom:612.540000px;}
.y1e4{bottom:613.620000px;}
.ye6{bottom:616.140000px;}
.yb7{bottom:621.180000px;}
.y87{bottom:621.900000px;}
.y24b{bottom:622.260000px;}
.y52{bottom:622.620000px;}
.y12a{bottom:623.700000px;}
.y1a1{bottom:624.780000px;}
.y159{bottom:625.500000px;}
.y208{bottom:627.660000px;}
.y168{bottom:631.260000px;}
.y19{bottom:633.780000px;}
.y1e3{bottom:634.140000px;}
.y233{bottom:637.020000px;}
.yb6{bottom:642.060000px;}
.y86{bottom:642.420000px;}
.y24a{bottom:643.140000px;}
.ye5{bottom:645.660000px;}
.y158{bottom:646.020000px;}
.y207{bottom:648.540000px;}
.y1cc{bottom:648.900000px;}
.y167{bottom:649.980000px;}
.y51{bottom:651.780000px;}
.y1e2{bottom:655.020000px;}
.y232{bottom:657.540000px;}
.yb5{bottom:662.580000px;}
.y85{bottom:663.300000px;}
.y249{bottom:663.660000px;}
.y1a0{bottom:666.180000px;}
.y157{bottom:667.980000px;}
.y129{bottom:668.340000px;}
.y50{bottom:669.060000px;}
.y1cb{bottom:669.780000px;}
.ye4{bottom:675.540000px;}
.y231{bottom:678.420000px;}
.yb4{bottom:683.460000px;}
.y84{bottom:683.820000px;}
.y248{bottom:684.540000px;}
.y4f{bottom:686.340000px;}
.y19f{bottom:687.060000px;}
.y156{bottom:688.500000px;}
.y128{bottom:688.860000px;}
.y206{bottom:689.940000px;}
.y1ca{bottom:690.300000px;}
.ye3{bottom:696.450000px;}
.y230{bottom:698.970000px;}
.y4e{bottom:703.650000px;}
.yb3{bottom:704.010000px;}
.y83{bottom:704.730000px;}
.y247{bottom:705.090000px;}
.y19e{bottom:707.610000px;}
.y127{bottom:709.770000px;}
.y205{bottom:710.490000px;}
.y155{bottom:710.850000px;}
.y1c9{bottom:711.210000px;}
.ye2{bottom:716.970000px;}
.y22f{bottom:719.850000px;}
.y4d{bottom:720.930000px;}
.y18{bottom:723.810000px;}
.yb2{bottom:724.890000px;}
.y82{bottom:725.250000px;}
.y246{bottom:725.970000px;}
.y19d{bottom:728.490000px;}
.y126{bottom:730.290000px;}
.y154{bottom:731.370000px;}
.y1c8{bottom:731.730000px;}
.y204{bottom:732.450000px;}
.ye1{bottom:737.850000px;}
.y4c{bottom:738.210000px;}
.y22e{bottom:740.370000px;}
.y17{bottom:744.690000px;}
.yb1{bottom:745.410000px;}
.y81{bottom:746.130000px;}
.y245{bottom:746.490000px;}
.y19c{bottom:749.010000px;}
.y125{bottom:751.170000px;}
.y180{bottom:751.890000px;}
.y1c7{bottom:752.610000px;}
.y153{bottom:753.330000px;}
.y4b{bottom:755.490000px;}
.ye0{bottom:758.370000px;}
.y22d{bottom:761.250000px;}
.y16{bottom:765.210000px;}
.yb0{bottom:766.290000px;}
.y80{bottom:766.650000px;}
.y244{bottom:767.370000px;}
.y19b{bottom:769.890000px;}
.y124{bottom:771.690000px;}
.y4a{bottom:772.410000px;}
.y1c6{bottom:773.130000px;}
.y203{bottom:773.850000px;}
.y152{bottom:774.210000px;}
.ydf{bottom:779.250000px;}
.y22c{bottom:781.770000px;}
.y15{bottom:786.090000px;}
.yaf{bottom:786.810000px;}
.y7f{bottom:787.530000px;}
.y243{bottom:787.890000px;}
.y49{bottom:789.690000px;}
.y19a{bottom:790.410000px;}
.y123{bottom:792.570000px;}
.y1c5{bottom:794.010000px;}
.y151{bottom:794.730000px;}
.y202{bottom:795.810000px;}
.yde{bottom:799.770000px;}
.y22b{bottom:802.650000px;}
.y48{bottom:806.970000px;}
.y14{bottom:807.330000px;}
.yae{bottom:807.690000px;}
.y7e{bottom:808.050000px;}
.y242{bottom:808.770000px;}
.y199{bottom:811.290000px;}
.y122{bottom:813.090000px;}
.y1c4{bottom:814.530000px;}
.y150{bottom:815.610000px;}
.y201{bottom:816.690000px;}
.ydd{bottom:820.695000px;}
.y13e{bottom:822.855000px;}
.y22a{bottom:823.215000px;}
.y47{bottom:824.295000px;}
.yad{bottom:828.255000px;}
.y7d{bottom:828.975000px;}
.y241{bottom:829.335000px;}
.y13{bottom:830.775000px;}
.y198{bottom:831.855000px;}
.y121{bottom:835.095000px;}
.y1c3{bottom:835.455000px;}
.y14f{bottom:836.175000px;}
.y200{bottom:837.255000px;}
.ydc{bottom:841.215000px;}
.y46{bottom:841.575000px;}
.y229{bottom:844.095000px;}
.yac{bottom:849.135000px;}
.y7c{bottom:849.495000px;}
.y13d{bottom:850.215000px;}
.y12{bottom:851.655000px;}
.y197{bottom:852.735000px;}
.y120{bottom:855.975000px;}
.y1ff{bottom:858.135000px;}
.y45{bottom:858.855000px;}
.y14e{bottom:861.735000px;}
.ydb{bottom:862.095000px;}
.y228{bottom:864.615000px;}
.yab{bottom:869.655000px;}
.y7b{bottom:870.015000px;}
.y13c{bottom:870.735000px;}
.y11{bottom:872.175000px;}
.y196{bottom:873.255000px;}
.y44{bottom:876.135000px;}
.y11f{bottom:876.495000px;}
.y1c2{bottom:876.855000px;}
.y1fe{bottom:878.655000px;}
.y14d{bottom:880.455000px;}
.yda{bottom:882.615000px;}
.y166{bottom:885.135000px;}
.y227{bottom:885.495000px;}
.yaa{bottom:890.535000px;}
.y7a{bottom:890.895000px;}
.y13b{bottom:891.615000px;}
.y10{bottom:893.055000px;}
.y43{bottom:893.415000px;}
.y195{bottom:894.135000px;}
.y11e{bottom:898.815000px;}
.y1c1{bottom:902.415000px;}
.yd9{bottom:903.495000px;}
.y226{bottom:906.015000px;}
.y1fd{bottom:909.255000px;}
.y42{bottom:910.695000px;}
.y103{bottom:911.055000px;}
.y79{bottom:911.415000px;}
.y13a{bottom:912.135000px;}
.yf{bottom:914.295000px;}
.y194{bottom:914.655000px;}
.y1af{bottom:917.535000px;}
.y11d{bottom:919.335000px;}
.ya9{bottom:919.695000px;}
.yd8{bottom:924.015000px;}
.y1c0{bottom:925.455000px;}
.y225{bottom:926.895000px;}
.y41{bottom:927.975000px;}
.y102{bottom:931.935000px;}
.y78{bottom:932.295000px;}
.y139{bottom:933.015000px;}
.y193{bottom:935.175000px;}
.ye{bottom:938.415000px;}
.y11c{bottom:940.215000px;}
.yd7{bottom:944.895000px;}
.y40{bottom:945.255000px;}
.y224{bottom:947.445000px;}
.ya8{bottom:950.685000px;}
.y101{bottom:952.485000px;}
.y77{bottom:952.845000px;}
.y138{bottom:953.565000px;}
.y192{bottom:956.085000px;}
.y11b{bottom:960.765000px;}
.y3f{bottom:962.565000px;}
.yd{bottom:962.925000px;}
.yd6{bottom:965.445000px;}
.y223{bottom:968.325000px;}
.y100{bottom:973.365000px;}
.y76{bottom:973.725000px;}
.y137{bottom:974.445000px;}
.y3e{bottom:979.485000px;}
.y11a{bottom:981.285000px;}
.y191{bottom:981.645000px;}
.yd5{bottom:986.325000px;}
.y222{bottom:988.845000px;}
.yc{bottom:990.645000px;}
.y75{bottom:994.245000px;}
.ya7{bottom:994.965000px;}
.y3d{bottom:996.765000px;}
.y18f{bottom:1001.085000px;}
.yff{bottom:1002.525000px;}
.yd4{bottom:1006.845000px;}
.y221{bottom:1009.725000px;}
.y3c{bottom:1014.045000px;}
.y74{bottom:1015.125000px;}
.ya6{bottom:1015.845000px;}
.yb{bottom:1018.005000px;}
.y119{bottom:1023.405000px;}
.yd3{bottom:1027.725000px;}
.y220{bottom:1030.245000px;}
.y3b{bottom:1031.325000px;}
.yfe{bottom:1033.485000px;}
.y73{bottom:1035.645000px;}
.ya5{bottom:1036.365000px;}
.ya{bottom:1045.365000px;}
.y118{bottom:1045.725000px;}
.yd2{bottom:1048.245000px;}
.y21f{bottom:1051.125000px;}
.y18e{bottom:1052.925000px;}
.y72{bottom:1056.525000px;}
.ya4{bottom:1057.245000px;}
.y3a{bottom:1058.325000px;}
.y117{bottom:1066.245000px;}
.yd1{bottom:1069.125000px;}
.y9{bottom:1069.845000px;}
.y21e{bottom:1071.645000px;}
.y71{bottom:1077.090000px;}
.ya3{bottom:1077.810000px;}
.y18d{bottom:1083.210000px;}
.y116{bottom:1086.810000px;}
.y39{bottom:1088.970000px;}
.yd0{bottom:1089.690000px;}
.y21d{bottom:1092.570000px;}
.y8{bottom:1097.610000px;}
.y70{bottom:1097.970000px;}
.ya2{bottom:1098.690000px;}
.y115{bottom:1109.130000px;}
.y18c{bottom:1110.210000px;}
.ycf{bottom:1110.570000px;}
.y38{bottom:1113.090000px;}
.ya1{bottom:1119.210000px;}
.y7{bottom:1124.970000px;}
.y6f{bottom:1128.210000px;}
.y114{bottom:1129.650000px;}
.y21c{bottom:1130.730000px;}
.yce{bottom:1131.090000px;}
.y14c{bottom:1133.610000px;}
.y37{bottom:1137.210000px;}
.y18b{bottom:1139.730000px;}
.ya0{bottom:1140.090000px;}
.y1bf{bottom:1142.610000px;}
.y4{bottom:1150.530000px;}
.y3{bottom:1166.010000px;}
.y2{bottom:1181.490000px;}
.y1{bottom:1197.330000px;}
.h1a{height:17.280000px;}
.h1b{height:17.316000px;}
.hf{height:27.000000px;}
.h1c{height:34.560000px;}
.h3{height:37.994062px;}
.h19{height:41.196094px;}
.hc{height:41.402813px;}
.h12{height:41.993438px;}
.h11{height:42.022969px;}
.h2{height:44.149219px;}
.h4{height:48.013594px;}
.h16{height:49.289062px;}
.ha{height:49.992188px;}
.h17{height:50.027344px;}
.h18{height:50.343750px;}
.hd{height:53.067656px;}
.h15{height:56.604375px;}
.h8{height:57.175312px;}
.h13{height:62.640000px;}
.h5{height:63.175781px;}
.h6{height:65.387812px;}
.h7{height:66.047344px;}
.he{height:69.156000px;}
.h9{height:73.283906px;}
.h14{height:80.640000px;}
.hb{height:85.356000px;}
.h10{height:102.636000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:87.876000px;}
.wd{width:95.796000px;}
.wb{width:106.236000px;}
.w9{width:117.072000px;}
.wa{width:127.476000px;}
.wc{width:127.512000px;}
.w3{width:212.145000px;}
.w7{width:218.595000px;}
.w6{width:224.385000px;}
.w8{width:229.785000px;}
.w4{width:466.380000px;}
.w5{width:681.405000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:5.400000px;}
.x10{left:7.920000px;}
.x2c{left:18.000000px;}
.x2e{left:19.440000px;}
.x35{left:20.880000px;}
.x37{left:23.040000px;}
.x38{left:24.876000px;}
.x14{left:26.676000px;}
.x2a{left:28.116000px;}
.x36{left:30.960000px;}
.x13{left:33.120000px;}
.x30{left:38.190000px;}
.x34{left:39.600000px;}
.x33{left:46.800000px;}
.x39{left:47.880000px;}
.x12{left:82.119000px;}
.x3f{left:98.675987px;}
.x1{left:106.235987px;}
.x3e{left:107.675987px;}
.xb{left:108.755987px;}
.x25{left:110.196000px;}
.x18{left:111.995987px;}
.x9{left:115.235987px;}
.x8{left:122.795987px;}
.x5{left:129.275987px;}
.x1a{left:132.911987px;}
.xf{left:136.871987px;}
.xa{left:143.711987px;}
.x4{left:158.834987px;}
.x1b{left:160.274987px;}
.x17{left:210.674987px;}
.x6{left:221.504987px;}
.x2b{left:223.305000px;}
.x29{left:245.264987px;}
.xd{left:247.064987px;}
.xc{left:250.304987px;}
.x16{left:258.594000px;}
.xe{left:262.544987px;}
.x15{left:287.064000px;}
.x23{left:309.749987px;}
.x28{left:311.909987px;}
.x1f{left:312.989987px;}
.x11{left:319.830000px;}
.x3b{left:329.189987px;}
.x21{left:334.949987px;}
.x22{left:345.389987px;}
.x3d{left:346.829987px;}
.x2d{left:350.790000px;}
.x1c{left:357.989987px;}
.x24{left:360.509987px;}
.x3{left:383.549987px;}
.x19{left:390.389987px;}
.x7{left:446.579987px;}
.x2f{left:457.020000px;}
.x1e{left:488.009987px;}
.x27{left:553.170000px;}
.x31{left:584.535000px;}
.x32{left:680.325000px;}
.x20{left:722.444987px;}
.x3c{left:733.244987px;}
.x1d{left:753.809987px;}
.x2{left:759.929987px;}
.x3a{left:770.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.442667pt;}
.ls4{letter-spacing:-0.414933pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls1{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.746667pt;}
.ls11{letter-spacing:13.632000pt;}
.lsf{letter-spacing:18.048000pt;}
.lsd{letter-spacing:19.051947pt;}
.ls10{letter-spacing:48.778667pt;}
.ls15{letter-spacing:78.218667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws6{word-spacing:-18.560000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.wsc{word-spacing:-14.272000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.422080pt;}
.ws4{word-spacing:-13.025067pt;}
.ws0{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.717333pt;}
.wsd{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.352000pt;}
.wsb{word-spacing:-0.256000pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:3.360000pt;}
._27{margin-left:-4.720640pt;}
._13{margin-left:-3.699200pt;}
._6{margin-left:-2.460160pt;}
._0{margin-left:-1.313280pt;}
._3{width:0.972800pt;}
._7{width:1.897813pt;}
._8{width:3.388587pt;}
._9{width:4.325547pt;}
._14{width:5.913600pt;}
._15{width:7.006720pt;}
._1a{width:7.933440pt;}
._1b{width:8.846293pt;}
._17{width:9.777707pt;}
._16{width:10.775040pt;}
._18{width:12.495360pt;}
._1d{width:13.542400pt;}
._19{width:14.589440pt;}
._d{width:15.482880pt;}
._e{width:16.657920pt;}
._1f{width:18.368853pt;}
._b{width:19.353600pt;}
._a{width:20.536320pt;}
._c{width:21.765120pt;}
._11{width:23.344640pt;}
._f{width:24.322560pt;}
._10{width:25.313280pt;}
._22{width:26.298880pt;}
._21{width:27.617280pt;}
._20{width:29.217280pt;}
._24{width:30.525440pt;}
._1e{width:32.829867pt;}
._28{width:34.209280pt;}
._23{width:35.200000pt;}
._29{width:37.985280pt;}
._2{width:87.040000pt;}
._26{width:90.626560pt;}
._25{width:91.648000pt;}
._2a{width:95.616000pt;}
._2b{width:97.062400pt;}
._30{width:123.648000pt;}
._2d{width:131.791360pt;}
._2c{width:132.833280pt;}
._2e{width:171.860480pt;}
._2f{width:173.038080pt;}
._4{width:423.943680pt;}
._12{width:755.098453pt;}
._1{width:864.350720pt;}
._1c{width:865.497600pt;}
._5{width:1197.973333pt;}
.fs0{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y17c{bottom:2.880000pt;}
.y24{bottom:2.906667pt;}
.y26{bottom:7.040000pt;}
.y1e{bottom:9.920000pt;}
.y2e{bottom:10.280000pt;}
.y36{bottom:16.640000pt;}
.y190{bottom:18.240000pt;}
.y23{bottom:18.266667pt;}
.y30{bottom:23.040000pt;}
.y1d{bottom:25.280000pt;}
.y2d{bottom:25.640000pt;}
.y20{bottom:25.946667pt;}
.y1a{bottom:32.960000pt;}
.y29{bottom:33.320000pt;}
.y22{bottom:33.626667pt;}
.y35{bottom:35.840000pt;}
.y1c{bottom:40.640000pt;}
.y2c{bottom:41.000000pt;}
.y28{bottom:48.680000pt;}
.y21{bottom:48.986667pt;}
.y6{bottom:50.560000pt;}
.y34{bottom:55.040000pt;}
.y1b{bottom:56.026667pt;}
.y2b{bottom:56.040000pt;}
.y5{bottom:69.152000pt;}
.y2a{bottom:71.400000pt;}
.y136{bottom:100.192000pt;}
.y1fc{bottom:103.712000pt;}
.y240{bottom:105.952000pt;}
.yfd{bottom:108.512000pt;}
.y9f{bottom:111.072000pt;}
.y17f{bottom:111.392000pt;}
.y165{bottom:113.312000pt;}
.y18a{bottom:115.232000pt;}
.y6e{bottom:115.552000pt;}
.y135{bottom:118.752000pt;}
.y1fb{bottom:121.952000pt;}
.y1e1{bottom:123.872000pt;}
.y23f{bottom:124.512000pt;}
.y1ae{bottom:125.152000pt;}
.yfc{bottom:126.752000pt;}
.y9e{bottom:129.312000pt;}
.y6d{bottom:130.912000pt;}
.y21b{bottom:131.232000pt;}
.ycd{bottom:131.552000pt;}
.y113{bottom:132.832000pt;}
.y189{bottom:133.466667pt;}
.y14b{bottom:134.106667pt;}
.y17e{bottom:134.426667pt;}
.y134{bottom:136.986667pt;}
.y1fa{bottom:140.506667pt;}
.y1e0{bottom:142.106667pt;}
.y23e{bottom:142.746667pt;}
.y1ad{bottom:143.706667pt;}
.yfb{bottom:145.306667pt;}
.y6c{bottom:146.266667pt;}
.y9d{bottom:147.866667pt;}
.ycc{bottom:149.786667pt;}
.y112{bottom:151.066667pt;}
.y188{bottom:152.026667pt;}
.y14a{bottom:152.346667pt;}
.y164{bottom:154.266667pt;}
.y1f9{bottom:158.746667pt;}
.y133{bottom:159.706667pt;}
.y1df{bottom:160.666667pt;}
.y23d{bottom:161.306667pt;}
.y6b{bottom:161.626667pt;}
.y1ac{bottom:161.946667pt;}
.yfa{bottom:163.586667pt;}
.y33{bottom:163.906667pt;}
.y9c{bottom:166.146667pt;}
.y260{bottom:166.786667pt;}
.y17d{bottom:167.746667pt;}
.y21a{bottom:168.066667pt;}
.ycb{bottom:168.386667pt;}
.y187{bottom:170.306667pt;}
.y111{bottom:170.626667pt;}
.y163{bottom:171.266667pt;}
.y132{bottom:176.386667pt;}
.y6a{bottom:177.026667pt;}
.y1f8{bottom:177.346667pt;}
.y149{bottom:178.626667pt;}
.y1de{bottom:178.946667pt;}
.y23c{bottom:179.586667pt;}
.y1ab{bottom:180.546667pt;}
.yf9{bottom:182.146667pt;}
.y17b{bottom:184.386667pt;}
.y9b{bottom:184.706667pt;}
.y25f{bottom:185.346667pt;}
.yca{bottom:186.626667pt;}
.y186{bottom:188.866667pt;}
.y110{bottom:189.186667pt;}
.y69{bottom:192.386667pt;}
.y1f7{bottom:195.586667pt;}
.y1dd{bottom:197.506667pt;}
.y23b{bottom:198.146667pt;}
.yf8{bottom:200.386667pt;}
.y9a{bottom:202.946667pt;}
.y1aa{bottom:203.266667pt;}
.y25e{bottom:203.586667pt;}
.y219{bottom:204.866667pt;}
.yc9{bottom:205.186667pt;}
.y185{bottom:207.106667pt;}
.y10f{bottom:207.426667pt;}
.y68{bottom:207.746667pt;}
.y17a{bottom:211.906667pt;}
.y1f6{bottom:214.146667pt;}
.y1dc{bottom:215.746667pt;}
.y23a{bottom:216.386667pt;}
.yf7{bottom:218.946667pt;}
.y1a9{bottom:219.906667pt;}
.y99{bottom:221.506667pt;}
.y25d{bottom:222.146667pt;}
.y67{bottom:222.786667pt;}
.yc8{bottom:223.426667pt;}
.y148{bottom:223.746667pt;}
.y218{bottom:224.386667pt;}
.y184{bottom:225.666667pt;}
.y1be{bottom:229.186667pt;}
.y1f5{bottom:232.386667pt;}
.y10e{bottom:233.666667pt;}
.y1db{bottom:234.306667pt;}
.y239{bottom:234.946667pt;}
.y179{bottom:235.586667pt;}
.yf6{bottom:237.186667pt;}
.y66{bottom:238.146667pt;}
.y98{bottom:239.746667pt;}
.y25c{bottom:240.386667pt;}
.yc7{bottom:241.986667pt;}
.y217{bottom:242.626667pt;}
.y183{bottom:243.906667pt;}
.y1bd{bottom:247.426667pt;}
.y1f4{bottom:250.946667pt;}
.y1da{bottom:252.546667pt;}
.y238{bottom:253.186667pt;}
.y65{bottom:253.506667pt;}
.yf5{bottom:255.746667pt;}
.y97{bottom:258.306667pt;}
.y25b{bottom:258.626667pt;}
.yc6{bottom:260.226667pt;}
.y147{bottom:260.546667pt;}
.y178{bottom:262.466667pt;}
.y1bc{bottom:265.986667pt;}
.y64{bottom:268.866667pt;}
.y1f3{bottom:269.186667pt;}
.y1d9{bottom:271.106667pt;}
.y237{bottom:271.746667pt;}
.yf4{bottom:273.986667pt;}
.y96{bottom:276.573333pt;}
.y25a{bottom:277.213333pt;}
.y10d{bottom:278.813333pt;}
.y177{bottom:280.733333pt;}
.y63{bottom:284.253333pt;}
.yc5{bottom:286.493333pt;}
.y1f2{bottom:287.773333pt;}
.y1d8{bottom:289.373333pt;}
.y236{bottom:290.013333pt;}
.yf3{bottom:292.573333pt;}
.y95{bottom:295.133333pt;}
.y259{bottom:295.453333pt;}
.y32{bottom:295.773333pt;}
.y10c{bottom:297.053333pt;}
.y146{bottom:297.373333pt;}
.y176{bottom:299.293333pt;}
.y62{bottom:299.613333pt;}
.y216{bottom:300.253333pt;}
.y1bb{bottom:302.813333pt;}
.y1f1{bottom:306.013333pt;}
.y1d7{bottom:307.933333pt;}
.y235{bottom:308.573333pt;}
.yc4{bottom:313.053333pt;}
.y94{bottom:313.373333pt;}
.y31{bottom:313.693333pt;}
.y258{bottom:314.013333pt;}
.y61{bottom:314.973333pt;}
.y10b{bottom:315.613333pt;}
.y175{bottom:317.533333pt;}
.yf2{bottom:318.493333pt;}
.y215{bottom:318.813333pt;}
.y1ba{bottom:321.053333pt;}
.y1f0{bottom:324.573333pt;}
.y1d6{bottom:326.173333pt;}
.y234{bottom:326.813333pt;}
.y2f{bottom:328.413333pt;}
.y60{bottom:330.333333pt;}
.yc3{bottom:331.613333pt;}
.y93{bottom:331.933333pt;}
.y257{bottom:332.253333pt;}
.y10a{bottom:333.853333pt;}
.y145{bottom:334.173333pt;}
.y174{bottom:336.093333pt;}
.y214{bottom:337.053333pt;}
.y1b9{bottom:339.613333pt;}
.y1ef{bottom:342.813333pt;}
.y1d5{bottom:344.733333pt;}
.yf1{bottom:345.373333pt;}
.y5f{bottom:345.693333pt;}
.yc2{bottom:349.853333pt;}
.y92{bottom:350.173333pt;}
.y256{bottom:350.813333pt;}
.y109{bottom:352.413333pt;}
.y173{bottom:354.333333pt;}
.y213{bottom:355.613333pt;}
.y1b8{bottom:357.853333pt;}
.y5e{bottom:361.053333pt;}
.y1ee{bottom:361.373333pt;}
.y1d4{bottom:362.973333pt;}
.yf0{bottom:363.613333pt;}
.y162{bottom:366.173333pt;}
.yc1{bottom:368.413333pt;}
.y91{bottom:368.733333pt;}
.y255{bottom:369.053333pt;}
.y108{bottom:370.653333pt;}
.y144{bottom:370.973333pt;}
.y172{bottom:372.893333pt;}
.y212{bottom:373.853333pt;}
.y5d{bottom:376.413333pt;}
.y1ed{bottom:379.613333pt;}
.y1d3{bottom:381.533333pt;}
.yef{bottom:382.173333pt;}
.y27{bottom:384.733333pt;}
.yc0{bottom:386.653333pt;}
.y90{bottom:386.973333pt;}
.y254{bottom:387.613333pt;}
.y107{bottom:389.253333pt;}
.y161{bottom:390.213333pt;}
.y171{bottom:391.173333pt;}
.y5c{bottom:391.493333pt;}
.y211{bottom:392.453333pt;}
.y1b7{bottom:394.693333pt;}
.y131{bottom:395.333333pt;}
.y1ec{bottom:398.213333pt;}
.y1d2{bottom:399.813333pt;}
.yee{bottom:400.453333pt;}
.ybf{bottom:405.253333pt;}
.y8f{bottom:405.573333pt;}
.y253{bottom:405.893333pt;}
.y5b{bottom:406.853333pt;}
.y106{bottom:407.493333pt;}
.y143{bottom:407.813333pt;}
.y160{bottom:408.773333pt;}
.y170{bottom:409.733333pt;}
.y210{bottom:410.693333pt;}
.y1a8{bottom:412.933333pt;}
.y1b6{bottom:413.253333pt;}
.y1eb{bottom:416.453333pt;}
.y1d1{bottom:418.373333pt;}
.yed{bottom:419.013333pt;}
.y130{bottom:419.653333pt;}
.y5a{bottom:422.213333pt;}
.ybe{bottom:423.493333pt;}
.y8e{bottom:423.813333pt;}
.y252{bottom:424.453333pt;}
.y105{bottom:426.053333pt;}
.y15f{bottom:427.013333pt;}
.y16f{bottom:427.973333pt;}
.y1a7{bottom:428.933333pt;}
.y20f{bottom:429.253333pt;}
.y1b5{bottom:431.493333pt;}
.y1ea{bottom:435.013333pt;}
.y1d0{bottom:436.613333pt;}
.yec{bottom:437.253333pt;}
.y59{bottom:437.573333pt;}
.ybd{bottom:442.053333pt;}
.y8d{bottom:442.373333pt;}
.y251{bottom:442.693333pt;}
.y142{bottom:444.613333pt;}
.y12f{bottom:445.573333pt;}
.y16e{bottom:446.533333pt;}
.y20e{bottom:447.493333pt;}
.y1b4{bottom:450.053333pt;}
.y182{bottom:451.013333pt;}
.y104{bottom:451.973333pt;}
.y58{bottom:452.933333pt;}
.y1e9{bottom:453.253333pt;}
.y1a6{bottom:455.173333pt;}
.yeb{bottom:455.813333pt;}
.ybc{bottom:460.293333pt;}
.y8c{bottom:460.613333pt;}
.y250{bottom:461.253333pt;}
.y141{bottom:462.853333pt;}
.y15e{bottom:463.813333pt;}
.y16d{bottom:464.773333pt;}
.y20d{bottom:466.053333pt;}
.y57{bottom:468.293333pt;}
.y181{bottom:471.493333pt;}
.y1e8{bottom:471.813333pt;}
.y12e{bottom:472.453333pt;}
.y1cf{bottom:473.413333pt;}
.yea{bottom:474.053333pt;}
.y25{bottom:476.613333pt;}
.ybb{bottom:478.853333pt;}
.y8b{bottom:479.173333pt;}
.y24f{bottom:479.493333pt;}
.y1a5{bottom:481.733333pt;}
.y15d{bottom:482.373333pt;}
.y16c{bottom:483.333333pt;}
.y56{bottom:483.653333pt;}
.y20c{bottom:484.293333pt;}
.y140{bottom:485.573333pt;}
.y1b3{bottom:486.853333pt;}
.y1e7{bottom:490.053333pt;}
.y12d{bottom:490.693333pt;}
.y1ce{bottom:491.973333pt;}
.ye9{bottom:492.613333pt;}
.yba{bottom:497.093333pt;}
.y8a{bottom:497.413333pt;}
.y24e{bottom:498.053333pt;}
.y55{bottom:499.013333pt;}
.y1a4{bottom:500.293333pt;}
.y15c{bottom:500.613333pt;}
.y1f{bottom:501.253333pt;}
.y16b{bottom:501.573333pt;}
.y13f{bottom:502.240000pt;}
.y20b{bottom:502.880000pt;}
.y1b2{bottom:505.120000pt;}
.y1e6{bottom:508.640000pt;}
.y12c{bottom:509.280000pt;}
.y1cd{bottom:510.240000pt;}
.ye8{bottom:510.880000pt;}
.y54{bottom:514.400000pt;}
.yb9{bottom:515.360000pt;}
.y89{bottom:516.000000pt;}
.y24d{bottom:516.320000pt;}
.y1a3{bottom:518.560000pt;}
.y15b{bottom:519.200000pt;}
.y16a{bottom:520.160000pt;}
.y20a{bottom:521.120000pt;}
.y1e5{bottom:526.880000pt;}
.y12b{bottom:527.520000pt;}
.y1b1{bottom:527.840000pt;}
.ye7{bottom:529.440000pt;}
.y53{bottom:529.760000pt;}
.yb8{bottom:533.920000pt;}
.y88{bottom:534.240000pt;}
.y24c{bottom:534.880000pt;}
.y1a2{bottom:537.120000pt;}
.y15a{bottom:537.440000pt;}
.y169{bottom:538.400000pt;}
.y209{bottom:539.680000pt;}
.y1b0{bottom:544.480000pt;}
.y1e4{bottom:545.440000pt;}
.ye6{bottom:547.680000pt;}
.yb7{bottom:552.160000pt;}
.y87{bottom:552.800000pt;}
.y24b{bottom:553.120000pt;}
.y52{bottom:553.440000pt;}
.y12a{bottom:554.400000pt;}
.y1a1{bottom:555.360000pt;}
.y159{bottom:556.000000pt;}
.y208{bottom:557.920000pt;}
.y168{bottom:561.120000pt;}
.y19{bottom:563.360000pt;}
.y1e3{bottom:563.680000pt;}
.y233{bottom:566.240000pt;}
.yb6{bottom:570.720000pt;}
.y86{bottom:571.040000pt;}
.y24a{bottom:571.680000pt;}
.ye5{bottom:573.920000pt;}
.y158{bottom:574.240000pt;}
.y207{bottom:576.480000pt;}
.y1cc{bottom:576.800000pt;}
.y167{bottom:577.760000pt;}
.y51{bottom:579.360000pt;}
.y1e2{bottom:582.240000pt;}
.y232{bottom:584.480000pt;}
.yb5{bottom:588.960000pt;}
.y85{bottom:589.600000pt;}
.y249{bottom:589.920000pt;}
.y1a0{bottom:592.160000pt;}
.y157{bottom:593.760000pt;}
.y129{bottom:594.080000pt;}
.y50{bottom:594.720000pt;}
.y1cb{bottom:595.360000pt;}
.ye4{bottom:600.480000pt;}
.y231{bottom:603.040000pt;}
.yb4{bottom:607.520000pt;}
.y84{bottom:607.840000pt;}
.y248{bottom:608.480000pt;}
.y4f{bottom:610.080000pt;}
.y19f{bottom:610.720000pt;}
.y156{bottom:612.000000pt;}
.y128{bottom:612.320000pt;}
.y206{bottom:613.280000pt;}
.y1ca{bottom:613.600000pt;}
.ye3{bottom:619.066667pt;}
.y230{bottom:621.306667pt;}
.y4e{bottom:625.466667pt;}
.yb3{bottom:625.786667pt;}
.y83{bottom:626.426667pt;}
.y247{bottom:626.746667pt;}
.y19e{bottom:628.986667pt;}
.y127{bottom:630.906667pt;}
.y205{bottom:631.546667pt;}
.y155{bottom:631.866667pt;}
.y1c9{bottom:632.186667pt;}
.ye2{bottom:637.306667pt;}
.y22f{bottom:639.866667pt;}
.y4d{bottom:640.826667pt;}
.y18{bottom:643.386667pt;}
.yb2{bottom:644.346667pt;}
.y82{bottom:644.666667pt;}
.y246{bottom:645.306667pt;}
.y19d{bottom:647.546667pt;}
.y126{bottom:649.146667pt;}
.y154{bottom:650.106667pt;}
.y1c8{bottom:650.426667pt;}
.y204{bottom:651.066667pt;}
.ye1{bottom:655.866667pt;}
.y4c{bottom:656.186667pt;}
.y22e{bottom:658.106667pt;}
.y17{bottom:661.946667pt;}
.yb1{bottom:662.586667pt;}
.y81{bottom:663.226667pt;}
.y245{bottom:663.546667pt;}
.y19c{bottom:665.786667pt;}
.y125{bottom:667.706667pt;}
.y180{bottom:668.346667pt;}
.y1c7{bottom:668.986667pt;}
.y153{bottom:669.626667pt;}
.y4b{bottom:671.546667pt;}
.ye0{bottom:674.106667pt;}
.y22d{bottom:676.666667pt;}
.y16{bottom:680.186667pt;}
.yb0{bottom:681.146667pt;}
.y80{bottom:681.466667pt;}
.y244{bottom:682.106667pt;}
.y19b{bottom:684.346667pt;}
.y124{bottom:685.946667pt;}
.y4a{bottom:686.586667pt;}
.y1c6{bottom:687.226667pt;}
.y203{bottom:687.866667pt;}
.y152{bottom:688.186667pt;}
.ydf{bottom:692.666667pt;}
.y22c{bottom:694.906667pt;}
.y15{bottom:698.746667pt;}
.yaf{bottom:699.386667pt;}
.y7f{bottom:700.026667pt;}
.y243{bottom:700.346667pt;}
.y49{bottom:701.946667pt;}
.y19a{bottom:702.586667pt;}
.y123{bottom:704.506667pt;}
.y1c5{bottom:705.786667pt;}
.y151{bottom:706.426667pt;}
.y202{bottom:707.386667pt;}
.yde{bottom:710.906667pt;}
.y22b{bottom:713.466667pt;}
.y48{bottom:717.306667pt;}
.y14{bottom:717.626667pt;}
.yae{bottom:717.946667pt;}
.y7e{bottom:718.266667pt;}
.y242{bottom:718.906667pt;}
.y199{bottom:721.146667pt;}
.y122{bottom:722.746667pt;}
.y1c4{bottom:724.026667pt;}
.y150{bottom:724.986667pt;}
.y201{bottom:725.946667pt;}
.ydd{bottom:729.506667pt;}
.y13e{bottom:731.426667pt;}
.y22a{bottom:731.746667pt;}
.y47{bottom:732.706667pt;}
.yad{bottom:736.226667pt;}
.y7d{bottom:736.866667pt;}
.y241{bottom:737.186667pt;}
.y13{bottom:738.466667pt;}
.y198{bottom:739.426667pt;}
.y121{bottom:742.306667pt;}
.y1c3{bottom:742.626667pt;}
.y14f{bottom:743.266667pt;}
.y200{bottom:744.226667pt;}
.ydc{bottom:747.746667pt;}
.y46{bottom:748.066667pt;}
.y229{bottom:750.306667pt;}
.yac{bottom:754.786667pt;}
.y7c{bottom:755.106667pt;}
.y13d{bottom:755.746667pt;}
.y12{bottom:757.026667pt;}
.y197{bottom:757.986667pt;}
.y120{bottom:760.866667pt;}
.y1ff{bottom:762.786667pt;}
.y45{bottom:763.426667pt;}
.y14e{bottom:765.986667pt;}
.ydb{bottom:766.306667pt;}
.y228{bottom:768.546667pt;}
.yab{bottom:773.026667pt;}
.y7b{bottom:773.346667pt;}
.y13c{bottom:773.986667pt;}
.y11{bottom:775.266667pt;}
.y196{bottom:776.226667pt;}
.y44{bottom:778.786667pt;}
.y11f{bottom:779.106667pt;}
.y1c2{bottom:779.426667pt;}
.y1fe{bottom:781.026667pt;}
.y14d{bottom:782.626667pt;}
.yda{bottom:784.546667pt;}
.y166{bottom:786.786667pt;}
.y227{bottom:787.106667pt;}
.yaa{bottom:791.586667pt;}
.y7a{bottom:791.906667pt;}
.y13b{bottom:792.546667pt;}
.y10{bottom:793.826667pt;}
.y43{bottom:794.146667pt;}
.y195{bottom:794.786667pt;}
.y11e{bottom:798.946667pt;}
.y1c1{bottom:802.146667pt;}
.yd9{bottom:803.106667pt;}
.y226{bottom:805.346667pt;}
.y1fd{bottom:808.226667pt;}
.y42{bottom:809.506667pt;}
.y103{bottom:809.826667pt;}
.y79{bottom:810.146667pt;}
.y13a{bottom:810.786667pt;}
.yf{bottom:812.706667pt;}
.y194{bottom:813.026667pt;}
.y1af{bottom:815.586667pt;}
.y11d{bottom:817.186667pt;}
.ya9{bottom:817.506667pt;}
.yd8{bottom:821.346667pt;}
.y1c0{bottom:822.626667pt;}
.y225{bottom:823.906667pt;}
.y41{bottom:824.866667pt;}
.y102{bottom:828.386667pt;}
.y78{bottom:828.706667pt;}
.y139{bottom:829.346667pt;}
.y193{bottom:831.266667pt;}
.ye{bottom:834.146667pt;}
.y11c{bottom:835.746667pt;}
.yd7{bottom:839.906667pt;}
.y40{bottom:840.226667pt;}
.y224{bottom:842.173333pt;}
.ya8{bottom:845.053333pt;}
.y101{bottom:846.653333pt;}
.y77{bottom:846.973333pt;}
.y138{bottom:847.613333pt;}
.y192{bottom:849.853333pt;}
.y11b{bottom:854.013333pt;}
.y3f{bottom:855.613333pt;}
.yd{bottom:855.933333pt;}
.yd6{bottom:858.173333pt;}
.y223{bottom:860.733333pt;}
.y100{bottom:865.213333pt;}
.y76{bottom:865.533333pt;}
.y137{bottom:866.173333pt;}
.y3e{bottom:870.653333pt;}
.y11a{bottom:872.253333pt;}
.y191{bottom:872.573333pt;}
.yd5{bottom:876.733333pt;}
.y222{bottom:878.973333pt;}
.yc{bottom:880.573333pt;}
.y75{bottom:883.773333pt;}
.ya7{bottom:884.413333pt;}
.y3d{bottom:886.013333pt;}
.y18f{bottom:889.853333pt;}
.yff{bottom:891.133333pt;}
.yd4{bottom:894.973333pt;}
.y221{bottom:897.533333pt;}
.y3c{bottom:901.373333pt;}
.y74{bottom:902.333333pt;}
.ya6{bottom:902.973333pt;}
.yb{bottom:904.893333pt;}
.y119{bottom:909.693333pt;}
.yd3{bottom:913.533333pt;}
.y220{bottom:915.773333pt;}
.y3b{bottom:916.733333pt;}
.yfe{bottom:918.653333pt;}
.y73{bottom:920.573333pt;}
.ya5{bottom:921.213333pt;}
.ya{bottom:929.213333pt;}
.y118{bottom:929.533333pt;}
.yd2{bottom:931.773333pt;}
.y21f{bottom:934.333333pt;}
.y18e{bottom:935.933333pt;}
.y72{bottom:939.133333pt;}
.ya4{bottom:939.773333pt;}
.y3a{bottom:940.733333pt;}
.y117{bottom:947.773333pt;}
.yd1{bottom:950.333333pt;}
.y9{bottom:950.973333pt;}
.y21e{bottom:952.573333pt;}
.y71{bottom:957.413333pt;}
.ya3{bottom:958.053333pt;}
.y18d{bottom:962.853333pt;}
.y116{bottom:966.053333pt;}
.y39{bottom:967.973333pt;}
.yd0{bottom:968.613333pt;}
.y21d{bottom:971.173333pt;}
.y8{bottom:975.653333pt;}
.y70{bottom:975.973333pt;}
.ya2{bottom:976.613333pt;}
.y115{bottom:985.893333pt;}
.y18c{bottom:986.853333pt;}
.ycf{bottom:987.173333pt;}
.y38{bottom:989.413333pt;}
.ya1{bottom:994.853333pt;}
.y7{bottom:999.973333pt;}
.y6f{bottom:1002.853333pt;}
.y114{bottom:1004.133333pt;}
.y21c{bottom:1005.093333pt;}
.yce{bottom:1005.413333pt;}
.y14c{bottom:1007.653333pt;}
.y37{bottom:1010.853333pt;}
.y18b{bottom:1013.093333pt;}
.ya0{bottom:1013.413333pt;}
.y1bf{bottom:1015.653333pt;}
.y4{bottom:1022.693333pt;}
.y3{bottom:1036.453333pt;}
.y2{bottom:1050.213333pt;}
.y1{bottom:1064.293333pt;}
.h1a{height:15.360000pt;}
.h1b{height:15.392000pt;}
.hf{height:24.000000pt;}
.h1c{height:30.720000pt;}
.h3{height:33.772500pt;}
.h19{height:36.618750pt;}
.hc{height:36.802500pt;}
.h12{height:37.327500pt;}
.h11{height:37.353750pt;}
.h2{height:39.243750pt;}
.h4{height:42.678750pt;}
.h16{height:43.812500pt;}
.ha{height:44.437500pt;}
.h17{height:44.468750pt;}
.h18{height:44.750000pt;}
.hd{height:47.171250pt;}
.h15{height:50.315000pt;}
.h8{height:50.822500pt;}
.h13{height:55.680000pt;}
.h5{height:56.156250pt;}
.h6{height:58.122500pt;}
.h7{height:58.708750pt;}
.he{height:61.472000pt;}
.h9{height:65.141250pt;}
.h14{height:71.680000pt;}
.hb{height:75.872000pt;}
.h10{height:91.232000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:78.112000pt;}
.wd{width:85.152000pt;}
.wb{width:94.432000pt;}
.w9{width:104.064000pt;}
.wa{width:113.312000pt;}
.wc{width:113.344000pt;}
.w3{width:188.573333pt;}
.w7{width:194.306667pt;}
.w6{width:199.453333pt;}
.w8{width:204.253333pt;}
.w4{width:414.560000pt;}
.w5{width:605.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:4.800000pt;}
.x10{left:7.040000pt;}
.x2c{left:16.000000pt;}
.x2e{left:17.280000pt;}
.x35{left:18.560000pt;}
.x37{left:20.480000pt;}
.x38{left:22.112000pt;}
.x14{left:23.712000pt;}
.x2a{left:24.992000pt;}
.x36{left:27.520000pt;}
.x13{left:29.440000pt;}
.x30{left:33.946667pt;}
.x34{left:35.200000pt;}
.x33{left:41.600000pt;}
.x39{left:42.560000pt;}
.x12{left:72.994667pt;}
.x3f{left:87.711988pt;}
.x1{left:94.431988pt;}
.x3e{left:95.711988pt;}
.xb{left:96.671988pt;}
.x25{left:97.952000pt;}
.x18{left:99.551988pt;}
.x9{left:102.431988pt;}
.x8{left:109.151988pt;}
.x5{left:114.911988pt;}
.x1a{left:118.143988pt;}
.xf{left:121.663988pt;}
.xa{left:127.743988pt;}
.x4{left:141.186655pt;}
.x1b{left:142.466655pt;}
.x17{left:187.266655pt;}
.x6{left:196.893322pt;}
.x2b{left:198.493333pt;}
.x29{left:218.013322pt;}
.xd{left:219.613322pt;}
.xc{left:222.493322pt;}
.x16{left:229.861333pt;}
.xe{left:233.373322pt;}
.x15{left:255.168000pt;}
.x23{left:275.333322pt;}
.x28{left:277.253322pt;}
.x1f{left:278.213322pt;}
.x11{left:284.293333pt;}
.x3b{left:292.613322pt;}
.x21{left:297.733322pt;}
.x22{left:307.013322pt;}
.x3d{left:308.293322pt;}
.x2d{left:311.813333pt;}
.x1c{left:318.213322pt;}
.x24{left:320.453322pt;}
.x3{left:340.933322pt;}
.x19{left:347.013322pt;}
.x7{left:396.959988pt;}
.x2f{left:406.240000pt;}
.x1e{left:433.786655pt;}
.x27{left:491.706667pt;}
.x31{left:519.586667pt;}
.x32{left:604.733333pt;}
.x20{left:642.173322pt;}
.x3c{left:651.773322pt;}
.x1d{left:670.053322pt;}
.x2{left:675.493322pt;}
.x3a{left:685.093322pt;}
}




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