
    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_455affdf9b5fedb33dd281ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8d7563148370d911ed889a52.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_954735770f30e3ba263aa2a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_74ad6943e6e817b45ccb42cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_270311e6af2e4776676c3a0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_458463ab2a6f4d79b7261e0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937500;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_8b596555c0e57222924345a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_903fe0b6e4f2ebdf84a72b80.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_d9e28b5c7d329eacfc984ca3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_07053ad85fc21c61f4faa0e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933105;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_ad02e3edf627cbcf9b062786.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_cc38f8114c0910681b613e0d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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:ffd;src:url('chunks/assets/font_68d5b44837f1a8887d586e4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021484;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:ffe;src:url('chunks/assets/font_75dd6fa6749dd974cbedc842.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091797;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:fff;src:url('chunks/assets/font_b9e9075a810e36e63f6cefff.woff2')format("woff");}.fff{font-family:fff;line-height:1.091797;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:ff10;src:url('chunks/assets/font_08a56a0f1e31110abe90796b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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:ff11;src:url('chunks/assets/font_1d8264b7bc72af70c8d0aa2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.090332;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:ff12;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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;}
.v1{vertical-align:30.240000px;}
.lsf{letter-spacing:-0.348600px;}
.ls11{letter-spacing:-0.308400px;}
.ls15{letter-spacing:-0.229800px;}
.ls12{letter-spacing:-0.224400px;}
.ls8{letter-spacing:-0.175800px;}
.ls1b{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.115800px;}
.ls10{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.083400px;}
.ls6{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.061200px;}
.ls9{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.077040px;}
.ls16{letter-spacing:0.092880px;}
.lse{letter-spacing:0.115200px;}
.ls1{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.208800px;}
.ls13{letter-spacing:0.213840px;}
.ls1a{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222000px;}
.ls0{letter-spacing:0.233280px;}
.ls7{letter-spacing:0.247800px;}
.ls18{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.433440px;}
.lsc{letter-spacing:0.488400px;}
.ls3{letter-spacing:0.661680px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws1{word-spacing:-66.156600px;}
.ws2{word-spacing:-31.716720px;}
.ws13{word-spacing:-19.038240px;}
.ws11{word-spacing:-18.808440px;}
.ws15{word-spacing:-16.632000px;}
.ws14{word-spacing:-16.488000px;}
.ws12{word-spacing:-16.272000px;}
.ws4{word-spacing:-14.970240px;}
.wsb{word-spacing:-13.668720px;}
.ws5{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.446720px;}
.ws8{word-spacing:-13.389960px;}
.wse{word-spacing:-13.354320px;}
.ws10{word-spacing:-13.222320px;}
.wsf{word-spacing:-13.138320px;}
.wsc{word-spacing:-13.098120px;}
.wsa{word-spacing:-12.619680px;}
.ws3{word-spacing:-12.204000px;}
.ws6{word-spacing:-12.131280px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-8.925120px;}
._4{margin-left:-6.953040px;}
._1{margin-left:-5.312160px;}
._21{margin-left:-4.104000px;}
._2{margin-left:-2.733840px;}
._0{margin-left:-1.562400px;}
._3{width:1.144800px;}
._f{width:2.228400px;}
._8{width:3.645360px;}
._9{width:5.258880px;}
._7{width:6.292080px;}
._6{width:7.529760px;}
._5{width:8.724960px;}
._a{width:10.039680px;}
._b{width:11.165760px;}
._12{width:12.226320px;}
._13{width:13.378320px;}
._c{width:15.068160px;}
._d{width:16.174800px;}
._22{width:17.238960px;}
._e{width:18.286560px;}
._18{width:19.907280px;}
._14{width:21.309840px;}
._15{width:22.604400px;}
._1f{width:23.645520px;}
._20{width:24.814080px;}
._16{width:26.034480px;}
._11{width:27.329040px;}
._10{width:28.368000px;}
._17{width:29.570400px;}
._1c{width:31.543200px;}
._1a{width:32.824800px;}
._19{width:33.847200px;}
._27{width:35.108400px;}
._25{width:36.676800px;}
._23{width:38.980800px;}
._24{width:40.464000px;}
._38{width:44.314560px;}
._1e{width:48.522960px;}
._1d{width:50.333040px;}
._2b{width:52.569840px;}
._2a{width:53.791200px;}
._31{width:70.754400px;}
._32{width:71.853840px;}
._29{width:94.181040px;}
._28{width:95.356800px;}
._30{width:111.821040px;}
._2f{width:169.197840px;}
._26{width:218.952000px;}
._2e{width:269.136000px;}
._36{width:311.932800px;}
._35{width:428.882400px;}
._2c{width:439.970400px;}
._37{width:500.472000px;}
._33{width:501.696000px;}
._34{width:862.776000px;}
._2d{width:938.930400px;}
.fc4{color:rgb(163,14,12);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y65{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y38{bottom:4.320000px;}
.y2{bottom:5.760000px;}
.y1{bottom:46.296000px;}
.y63{bottom:47.016000px;}
.y3{bottom:48.996000px;}
.y62{bottom:67.176000px;}
.y61{bottom:87.336000px;}
.y1ba{bottom:112.896000px;}
.y37{bottom:113.616000px;}
.y18d{bottom:113.796000px;}
.yb0{bottom:114.696000px;}
.y143{bottom:115.776000px;}
.y10b{bottom:122.616000px;}
.y1f3{bottom:123.336000px;}
.y1cc{bottom:123.876000px;}
.y152{bottom:124.416000px;}
.y131{bottom:127.836000px;}
.ydc{bottom:128.196000px;}
.y163{bottom:128.556000px;}
.y142{bottom:130.176000px;}
.y36{bottom:131.976000px;}
.y91{bottom:132.156000px;}
.yaf{bottom:132.876000px;}
.y1b9{bottom:134.856000px;}
.y18c{bottom:135.756000px;}
.y175{bottom:140.796000px;}
.y10a{bottom:144.576000px;}
.y1f2{bottom:145.116000px;}
.y1a2{bottom:145.656000px;}
.y1cb{bottom:145.836000px;}
.y151{bottom:146.376000px;}
.y130{bottom:149.796000px;}
.y35{bottom:150.150000px;}
.y162{bottom:150.510000px;}
.yae{bottom:151.230000px;}
.y90{bottom:154.110000px;}
.y18b{bottom:157.710000px;}
.ydb{bottom:159.150000px;}
.y174{bottom:162.750000px;}
.y1b8{bottom:165.810000px;}
.y109{bottom:166.530000px;}
.y1a1{bottom:166.710000px;}
.y1f1{bottom:166.890000px;}
.y150{bottom:167.430000px;}
.y1ca{bottom:167.790000px;}
.y34{bottom:168.510000px;}
.yad{bottom:169.590000px;}
.y12f{bottom:171.750000px;}
.y161{bottom:172.470000px;}
.y8f{bottom:176.070000px;}
.y18a{bottom:179.670000px;}
.yda{bottom:181.110000px;}
.y173{bottom:184.710000px;}
.y14f{bottom:185.790000px;}
.y33{bottom:186.870000px;}
.y1b7{bottom:187.770000px;}
.y108{bottom:188.490000px;}
.y1c9{bottom:189.750000px;}
.y160{bottom:194.430000px;}
.y1ea{bottom:194.610000px;}
.yac{bottom:197.670000px;}
.y14e{bottom:200.190000px;}
.y189{bottom:201.630000px;}
.y12e{bottom:202.710000px;}
.yd9{bottom:203.070000px;}
.y32{bottom:205.230000px;}
.y8e{bottom:207.930000px;}
.y1b6{bottom:209.730000px;}
.y1f0{bottom:210.270000px;}
.y1c8{bottom:211.710000px;}
.y15f{bottom:216.390000px;}
.y1e9{bottom:216.570000px;}
.y172{bottom:218.730000px;}
.y107{bottom:219.450000px;}
.yab{bottom:219.810000px;}
.y31{bottom:223.410000px;}
.y188{bottom:223.590000px;}
.y12d{bottom:224.670000px;}
.yd8{bottom:225.030000px;}
.y1c7{bottom:233.670000px;}
.y15e{bottom:238.350000px;}
.y1e8{bottom:238.530000px;}
.y171{bottom:240.690000px;}
.y106{bottom:241.410000px;}
.y30{bottom:241.770000px;}
.y1ef{bottom:244.110000px;}
.y187{bottom:245.550000px;}
.y12c{bottom:246.810000px;}
.yd7{bottom:246.990000px;}
.yaa{bottom:250.770000px;}
.y1c6{bottom:255.810000px;}
.y15d{bottom:259.410000px;}
.y1e7{bottom:260.490000px;}
.y2f{bottom:260.670000px;}
.y170{bottom:262.650000px;}
.y105{bottom:263.370000px;}
.y1ee{bottom:265.710000px;}
.y186{bottom:267.510000px;}
.y12b{bottom:268.770000px;}
.yd6{bottom:268.950000px;}
.y8d{bottom:272.730000px;}
.y15c{bottom:277.770000px;}
.y1e6{bottom:282.450000px;}
.y16f{bottom:284.610000px;}
.y104{bottom:285.330000px;}
.y5c{bottom:286.410000px;}
.y1ed{bottom:287.490000px;}
.y185{bottom:289.650000px;}
.yd5{bottom:290.910000px;}
.y15b{bottom:292.215000px;}
.y2e{bottom:294.375000px;}
.y8c{bottom:294.735000px;}
.y12a{bottom:299.775000px;}
.y1e5{bottom:304.455000px;}
.y16e{bottom:306.615000px;}
.y103{bottom:307.335000px;}
.y1ec{bottom:307.695000px;}
.y184{bottom:310.755000px;}
.y2d{bottom:313.995000px;}
.y8b{bottom:316.695000px;}
.y129{bottom:321.735000px;}
.yd4{bottom:322.095000px;}
.y1e4{bottom:326.415000px;}
.y16d{bottom:327.675000px;}
.y1eb{bottom:327.855000px;}
.y1b5{bottom:328.575000px;}
.y183{bottom:328.935000px;}
.y102{bottom:329.295000px;}
.y2c{bottom:332.355000px;}
.y5b{bottom:332.895000px;}
.ya9{bottom:338.655000px;}
.y182{bottom:343.335000px;}
.y128{bottom:343.695000px;}
.yd3{bottom:344.055000px;}
.y16c{bottom:346.035000px;}
.y8a{bottom:347.655000px;}
.y1e3{bottom:348.375000px;}
.y5a{bottom:349.455000px;}
.y2b{bottom:350.715000px;}
.y101{bottom:359.355000px;}
.y16b{bottom:360.435000px;}
.y127{bottom:365.655000px;}
.y59{bottom:366.015000px;}
.y2a{bottom:368.895000px;}
.y89{bottom:369.615000px;}
.y1e2{bottom:370.335000px;}
.y100{bottom:377.715000px;}
.y141{bottom:377.895000px;}
.y58{bottom:382.755000px;}
.y29{bottom:387.255000px;}
.y126{bottom:387.615000px;}
.yd2{bottom:387.975000px;}
.y88{bottom:391.575000px;}
.y1e1{bottom:392.295000px;}
.y1b4{bottom:394.995000px;}
.yff{bottom:396.075000px;}
.y140{bottom:396.255000px;}
.y57{bottom:401.115000px;}
.y28{bottom:405.615000px;}
.y125{bottom:409.575000px;}
.y87{bottom:413.535000px;}
.yfe{bottom:414.255000px;}
.y13f{bottom:414.615000px;}
.yd1{bottom:418.935000px;}
.y56{bottom:419.475000px;}
.y27{bottom:423.975000px;}
.y1a0{bottom:427.215000px;}
.y1b3{bottom:428.835000px;}
.y13e{bottom:429.015000px;}
.y124{bottom:431.535000px;}
.yfd{bottom:432.615000px;}
.y86{bottom:435.495000px;}
.y1e0{bottom:436.215000px;}
.y55{bottom:437.655000px;}
.yd0{bottom:440.895000px;}
.y26{bottom:442.695000px;}
.y14d{bottom:447.915000px;}
.y1b2{bottom:450.795000px;}
.yfc{bottom:450.975000px;}
.y123{bottom:453.495000px;}
.y54{bottom:456.015000px;}
.y85{bottom:457.455000px;}
.y1df{bottom:458.175000px;}
.y19f{bottom:458.535000px;}
.ycf{bottom:462.855000px;}
.y14c{bottom:466.275000px;}
.yfb{bottom:469.335000px;}
.y1b1{bottom:472.755000px;}
.y53{bottom:474.375000px;}
.y122{bottom:475.455000px;}
.y25{bottom:476.535000px;}
.y1de{bottom:480.135000px;}
.y19e{bottom:480.495000px;}
.y14b{bottom:484.455000px;}
.yfa{bottom:487.515000px;}
.y84{bottom:488.415000px;}
.y52{bottom:492.555000px;}
.yce{bottom:493.815000px;}
.y24{bottom:496.155000px;}
.y121{bottom:497.415000px;}
.y14a{bottom:498.855000px;}
.y1dd{bottom:502.275000px;}
.y19d{bottom:502.455000px;}
.yf9{bottom:505.875000px;}
.y1b0{bottom:506.775000px;}
.y83{bottom:510.375000px;}
.y51{bottom:510.915000px;}
.y23{bottom:514.335000px;}
.ycd{bottom:515.775000px;}
.y1c5{bottom:519.375000px;}
.y1dc{bottom:524.235000px;}
.y19c{bottom:524.415000px;}
.y120{bottom:527.475000px;}
.y1af{bottom:528.735000px;}
.y50{bottom:529.275000px;}
.y82{bottom:532.335000px;}
.y22{bottom:532.695000px;}
.yf8{bottom:534.135000px;}
.ycc{bottom:537.735000px;}
.y15a{bottom:539.895000px;}
.y1c4{bottom:541.335000px;}
.y11f{bottom:545.835000px;}
.y1db{bottom:546.195000px;}
.y4f{bottom:547.635000px;}
.y21{bottom:551.055000px;}
.y81{bottom:554.475000px;}
.yf7{bottom:556.095000px;}
.y159{bottom:558.075000px;}
.y19b{bottom:558.435000px;}
.ycb{bottom:559.695000px;}
.y1ae{bottom:562.755000px;}
.y1c3{bottom:563.475000px;}
.y11e{bottom:564.195000px;}
.y4e{bottom:565.815000px;}
.y1da{bottom:568.155000px;}
.y20{bottom:569.235000px;}
.y80{bottom:576.465000px;}
.yf6{bottom:578.085000px;}
.y19a{bottom:580.425000px;}
.y11d{bottom:582.585000px;}
.y4d{bottom:584.205000px;}
.y1ad{bottom:584.745000px;}
.y1c2{bottom:585.465000px;}
.y1f{bottom:587.625000px;}
.y181{bottom:589.425000px;}
.y1d9{bottom:590.145000px;}
.yca{bottom:590.685000px;}
.y158{bottom:590.865000px;}
.y7f{bottom:598.425000px;}
.y11c{bottom:600.765000px;}
.y199{bottom:602.385000px;}
.y4c{bottom:602.565000px;}
.y16a{bottom:605.805000px;}
.y1e{bottom:605.985000px;}
.y1ac{bottom:606.705000px;}
.y1c1{bottom:607.425000px;}
.yf5{bottom:608.145000px;}
.y1d8{bottom:612.105000px;}
.yc9{bottom:612.645000px;}
.y11b{bottom:619.125000px;}
.y7e{bottom:620.385000px;}
.y180{bottom:620.565000px;}
.y4b{bottom:620.745000px;}
.y1d{bottom:624.345000px;}
.yf4{bottom:626.505000px;}
.ya8{bottom:628.305000px;}
.y1ab{bottom:628.665000px;}
.y1c0{bottom:629.385000px;}
.y169{bottom:634.065000px;}
.yc8{bottom:634.605000px;}
.y198{bottom:636.225000px;}
.y11a{bottom:637.485000px;}
.y4a{bottom:639.105000px;}
.y7d{bottom:642.345000px;}
.y17f{bottom:642.705000px;}
.y1c{bottom:643.065000px;}
.yf3{bottom:644.685000px;}
.ya7{bottom:646.665000px;}
.y1aa{bottom:650.625000px;}
.y1bf{bottom:651.345000px;}
.y119{bottom:655.665000px;}
.y168{bottom:656.025000px;}
.yc7{bottom:656.565000px;}
.y49{bottom:657.465000px;}
.y197{bottom:658.365000px;}
.y1b{bottom:661.065000px;}
.yf2{bottom:663.045000px;}
.y17e{bottom:664.665000px;}
.ya6{bottom:665.025000px;}
.y1a9{bottom:672.585000px;}
.y7c{bottom:673.305000px;}
.y1a{bottom:673.665000px;}
.y118{bottom:674.025000px;}
.y48{bottom:676.005000px;}
.y13d{bottom:676.725000px;}
.y167{bottom:677.985000px;}
.yc6{bottom:678.705000px;}
.y196{bottom:680.325000px;}
.yf1{bottom:681.405000px;}
.ya5{bottom:683.385000px;}
.y17d{bottom:686.625000px;}
.y19{bottom:690.405000px;}
.y117{bottom:692.385000px;}
.y1a8{bottom:693.645000px;}
.y47{bottom:694.185000px;}
.y7b{bottom:695.265000px;}
.yf0{bottom:699.765000px;}
.y166{bottom:699.945000px;}
.yc5{bottom:700.665000px;}
.ya4{bottom:701.745000px;}
.y18{bottom:703.545000px;}
.y13c{bottom:704.805000px;}
.y1a7{bottom:708.045000px;}
.y17c{bottom:708.585000px;}
.y116{bottom:710.745000px;}
.y46{bottom:712.545000px;}
.y195{bottom:714.165000px;}
.y7a{bottom:717.225000px;}
.y165{bottom:721.905000px;}
.yc4{bottom:722.625000px;}
.y17{bottom:724.785000px;}
.yef{bottom:727.845000px;}
.ya3{bottom:729.825000px;}
.y45{bottom:730.905000px;}
.y13b{bottom:735.765000px;}
.y194{bottom:736.125000px;}
.y115{bottom:738.825000px;}
.y1be{bottom:739.185000px;}
.y17b{bottom:742.425000px;}
.y1d7{bottom:743.865000px;}
.y149{bottom:746.565000px;}
.y16{bottom:747.105000px;}
.y79{bottom:748.185000px;}
.y44{bottom:749.265000px;}
.yee{bottom:749.805000px;}
.ya2{bottom:751.785000px;}
.yc3{bottom:752.505000px;}
.y164{bottom:752.865000px;}
.y13a{bottom:757.905000px;}
.y193{bottom:758.085000px;}
.y15{bottom:760.245000px;}
.y114{bottom:760.785000px;}
.y1bd{bottom:762.045000px;}
.y17a{bottom:764.565000px;}
.y1d6{bottom:765.825000px;}
.y43{bottom:767.445000px;}
.y78{bottom:770.145000px;}
.yc2{bottom:770.865000px;}
.yed{bottom:771.765000px;}
.y148{bottom:774.825000px;}
.y192{bottom:780.225000px;}
.y14{bottom:781.665000px;}
.ya1{bottom:782.925000px;}
.y42{bottom:785.805000px;}
.y179{bottom:786.525000px;}
.y1d5{bottom:787.785000px;}
.yc1{bottom:789.225000px;}
.y139{bottom:789.585000px;}
.y77{bottom:792.105000px;}
.y1bc{bottom:795.885000px;}
.y147{bottom:796.785000px;}
.y191{bottom:802.185000px;}
.yec{bottom:802.905000px;}
.y13{bottom:803.985000px;}
.y41{bottom:804.165000px;}
.ya0{bottom:804.885000px;}
.yc0{bottom:807.585000px;}
.y1d4{bottom:809.925000px;}
.y113{bottom:813.885000px;}
.y76{bottom:814.065000px;}
.y12{bottom:817.125000px;}
.y146{bottom:818.745000px;}
.y40{bottom:822.345000px;}
.y138{bottom:824.145000px;}
.yeb{bottom:824.865000px;}
.y178{bottom:825.765000px;}
.ybf{bottom:825.945000px;}
.y9f{bottom:826.845000px;}
.y1d3{bottom:831.885000px;}
.y112{bottom:835.845000px;}
.y11{bottom:838.365000px;}
.y157{bottom:838.545000px;}
.y177{bottom:840.165000px;}
.y3f{bottom:840.705000px;}
.ybe{bottom:844.125000px;}
.y75{bottom:845.025000px;}
.y190{bottom:845.205000px;}
.yea{bottom:846.825000px;}
.y9e{bottom:848.805000px;}
.y1d2{bottom:853.890000px;}
.y111{bottom:857.850000px;}
.y137{bottom:858.030000px;}
.y3e{bottom:859.110000px;}
.y10{bottom:860.730000px;}
.y145{bottom:861.810000px;}
.ybd{bottom:862.530000px;}
.y18f{bottom:863.430000px;}
.y156{bottom:866.850000px;}
.y74{bottom:867.030000px;}
.ye9{bottom:868.830000px;}
.y9d{bottom:870.810000px;}
.yf{bottom:873.870000px;}
.y1d1{bottom:875.850000px;}
.y3d{bottom:877.470000px;}
.y18e{bottom:877.830000px;}
.y110{bottom:879.810000px;}
.y136{bottom:880.170000px;}
.ybc{bottom:880.890000px;}
.y155{bottom:888.810000px;}
.y73{bottom:889.170000px;}
.ye8{bottom:890.790000px;}
.y144{bottom:894.570000px;}
.ye{bottom:895.110000px;}
.y3c{bottom:895.650000px;}
.y1d0{bottom:897.810000px;}
.y9c{bottom:901.770000px;}
.ybb{bottom:909.150000px;}
.y154{bottom:910.770000px;}
.y135{bottom:911.130000px;}
.ye7{bottom:912.750000px;}
.y3b{bottom:914.010000px;}
.yd{bottom:917.430000px;}
.y1cf{bottom:919.770000px;}
.y72{bottom:920.130000px;}
.y9b{bottom:923.730000px;}
.yc{bottom:930.570000px;}
.yba{bottom:931.110000px;}
.y3a{bottom:932.370000px;}
.y153{bottom:932.730000px;}
.y134{bottom:933.090000px;}
.ye6{bottom:934.710000px;}
.y1ce{bottom:941.730000px;}
.y71{bottom:942.090000px;}
.y10f{bottom:945.690000px;}
.y39{bottom:950.730000px;}
.yb{bottom:951.990000px;}
.y1a6{bottom:954.510000px;}
.y9a{bottom:954.690000px;}
.y133{bottom:955.050000px;}
.yb9{bottom:962.070000px;}
.y1cd{bottom:963.690000px;}
.y70{bottom:964.050000px;}
.ye5{bottom:964.770000px;}
.y1bb{bottom:967.650000px;}
.ya{bottom:974.310000px;}
.y99{bottom:976.650000px;}
.y132{bottom:977.010000px;}
.ye4{bottom:983.130000px;}
.yb8{bottom:984.030000px;}
.y1a5{bottom:985.650000px;}
.y6f{bottom:986.010000px;}
.y9{bottom:987.450000px;}
.y98{bottom:998.610000px;}
.ye3{bottom:1001.310000px;}
.yb7{bottom:1005.990000px;}
.y1a4{bottom:1007.610000px;}
.y6e{bottom:1007.970000px;}
.y8{bottom:1008.690000px;}
.ye2{bottom:1019.670000px;}
.y97{bottom:1020.570000px;}
.yb6{bottom:1027.950000px;}
.y1a3{bottom:1029.570000px;}
.y7{bottom:1036.950000px;}
.ye1{bottom:1038.030000px;}
.y6d{bottom:1038.930000px;}
.y10e{bottom:1042.530000px;}
.yb5{bottom:1049.910000px;}
.y96{bottom:1051.530000px;}
.ye0{bottom:1056.390000px;}
.y6c{bottom:1060.890000px;}
.y6{bottom:1062.690000px;}
.y10d{bottom:1064.490000px;}
.yb4{bottom:1071.870000px;}
.y95{bottom:1073.490000px;}
.ydf{bottom:1074.570000px;}
.y6b{bottom:1082.850000px;}
.y68{bottom:1085.190000px;}
.y176{bottom:1086.270000px;}
.y10c{bottom:1086.450000px;}
.yde{bottom:1092.930000px;}
.y5{bottom:1093.650000px;}
.yb3{bottom:1093.830000px;}
.y94{bottom:1095.450000px;}
.y6a{bottom:1104.810000px;}
.ydd{bottom:1111.290000px;}
.y93{bottom:1117.590000px;}
.y67{bottom:1118.130000px;}
.yb2{bottom:1123.890000px;}
.y69{bottom:1136.700000px;}
.y92{bottom:1139.580000px;}
.y4{bottom:1141.380000px;}
.yb1{bottom:1142.280000px;}
.y66{bottom:1150.560000px;}
.y60{bottom:1170.360000px;}
.y64{bottom:1177.920000px;}
.y5f{bottom:1191.060000px;}
.y5e{bottom:1209.240000px;}
.y5d{bottom:1227.420000px;}
.hb{height:35.806641px;}
.hd{height:36.861328px;}
.h13{height:45.374414px;}
.h18{height:48.224531px;}
.h11{height:50.510039px;}
.h10{height:51.793945px;}
.h12{height:51.881484px;}
.h14{height:53.709961px;}
.h4{height:57.248437px;}
.h15{height:57.410156px;}
.h16{height:57.507187px;}
.h2{height:59.439023px;}
.hc{height:61.189805px;}
.h7{height:63.961523px;}
.ha{height:65.884219px;}
.he{height:67.824844px;}
.h19{height:71.613281px;}
.h8{height:72.708398px;}
.h1a{height:73.722656px;}
.h17{height:77.760000px;}
.h9{height:86.255508px;}
.h3{height:95.076000px;}
.h5{height:135.413086px;}
.h6{height:143.226562px;}
.hf{height:1251.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:90.000000px;}
.w5{width:177.509985px;}
.w4{width:177.869973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.199973px;}
.x21{left:15.479973px;}
.x3c{left:24.840000px;}
.x3{left:29.160000px;}
.x28{left:66.419973px;}
.x26{left:69.119973px;}
.x20{left:72.899973px;}
.x27{left:74.339973px;}
.x1f{left:76.139973px;}
.x2f{left:85.139987px;}
.x1b{left:101.735973px;}
.x1e{left:102.815973px;}
.x18{left:105.695973px;}
.x19{left:107.495973px;}
.x1a{left:110.015973px;}
.x24{left:114.875973px;}
.x25{left:121.535973px;}
.x1d{left:125.855973px;}
.x1{left:127.655987px;}
.x29{left:136.655973px;}
.x32{left:138.275987px;}
.x22{left:144.215973px;}
.x30{left:150.149985px;}
.x1c{left:167.069973px;}
.x2e{left:180.749987px;}
.x41{left:186.689987px;}
.x16{left:191.549987px;}
.x42{left:220.349987px;}
.x3d{left:227.009987px;}
.x31{left:233.849987px;}
.x40{left:241.589987px;}
.x17{left:255.269987px;}
.x3e{left:266.609987px;}
.x3b{left:323.354987px;}
.x3f{left:335.054987px;}
.x33{left:350.894987px;}
.x3a{left:366.374987px;}
.x39{left:368.174987px;}
.x4{left:385.094987px;}
.x36{left:411.194987px;}
.x38{left:415.514987px;}
.x34{left:419.654987px;}
.x11{left:427.214987px;}
.x7{left:428.834987px;}
.x43{left:433.874987px;}
.xf{left:439.094987px;}
.x2d{left:460.154987px;}
.x37{left:473.114987px;}
.x15{left:485.534987px;}
.x6{left:490.394987px;}
.x2c{left:495.284987px;}
.x2a{left:512.384987px;}
.x10{left:534.344987px;}
.x5{left:535.424987px;}
.xc{left:537.044987px;}
.x9{left:538.304987px;}
.x2b{left:547.664987px;}
.x8{left:548.924987px;}
.x12{left:556.484987px;}
.xd{left:560.984987px;}
.xe{left:566.384987px;}
.x14{left:571.964987px;}
.x13{left:580.244987px;}
.xb{left:595.364987px;}
.x35{left:688.244987px;}
.xa{left:765.509987px;}
.x2{left:784.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsf{letter-spacing:-0.309867pt;}
.ls11{letter-spacing:-0.274133pt;}
.ls15{letter-spacing:-0.204267pt;}
.ls12{letter-spacing:-0.199467pt;}
.ls8{letter-spacing:-0.156267pt;}
.ls1b{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls10{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.074133pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.054400pt;}
.ls9{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.068480pt;}
.ls16{letter-spacing:0.082560pt;}
.lse{letter-spacing:0.102400pt;}
.ls1{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.185600pt;}
.ls13{letter-spacing:0.190080pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197333pt;}
.ls0{letter-spacing:0.207360pt;}
.ls7{letter-spacing:0.220267pt;}
.ls18{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.385280pt;}
.lsc{letter-spacing:0.434133pt;}
.ls3{letter-spacing:0.588160pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-58.805867pt;}
.ws2{word-spacing:-28.192640pt;}
.ws13{word-spacing:-16.922880pt;}
.ws11{word-spacing:-16.718613pt;}
.ws15{word-spacing:-14.784000pt;}
.ws14{word-spacing:-14.656000pt;}
.ws12{word-spacing:-14.464000pt;}
.ws4{word-spacing:-13.306880pt;}
.wsb{word-spacing:-12.149973pt;}
.ws5{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.952640pt;}
.ws8{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.870507pt;}
.ws10{word-spacing:-11.753173pt;}
.wsf{word-spacing:-11.678507pt;}
.wsc{word-spacing:-11.642773pt;}
.wsa{word-spacing:-11.217493pt;}
.ws3{word-spacing:-10.848000pt;}
.ws6{word-spacing:-10.783360pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-7.933440pt;}
._4{margin-left:-6.180480pt;}
._1{margin-left:-4.721920pt;}
._21{margin-left:-3.648000pt;}
._2{margin-left:-2.430080pt;}
._0{margin-left:-1.388800pt;}
._3{width:1.017600pt;}
._f{width:1.980800pt;}
._8{width:3.240320pt;}
._9{width:4.674560pt;}
._7{width:5.592960pt;}
._6{width:6.693120pt;}
._5{width:7.755520pt;}
._a{width:8.924160pt;}
._b{width:9.925120pt;}
._12{width:10.867840pt;}
._13{width:11.891840pt;}
._c{width:13.393920pt;}
._d{width:14.377600pt;}
._22{width:15.323520pt;}
._e{width:16.254720pt;}
._18{width:17.695360pt;}
._14{width:18.942080pt;}
._15{width:20.092800pt;}
._1f{width:21.018240pt;}
._20{width:22.056960pt;}
._16{width:23.141760pt;}
._11{width:24.292480pt;}
._10{width:25.216000pt;}
._17{width:26.284800pt;}
._1c{width:28.038400pt;}
._1a{width:29.177600pt;}
._19{width:30.086400pt;}
._27{width:31.207467pt;}
._25{width:32.601600pt;}
._23{width:34.649600pt;}
._24{width:35.968000pt;}
._38{width:39.390720pt;}
._1e{width:43.131520pt;}
._1d{width:44.740480pt;}
._2b{width:46.728747pt;}
._2a{width:47.814400pt;}
._31{width:62.892800pt;}
._32{width:63.870080pt;}
._29{width:83.716480pt;}
._28{width:84.761600pt;}
._30{width:99.396480pt;}
._2f{width:150.398080pt;}
._26{width:194.624000pt;}
._2e{width:239.232000pt;}
._36{width:277.273600pt;}
._35{width:381.228800pt;}
._2c{width:391.084800pt;}
._37{width:444.864000pt;}
._33{width:445.952000pt;}
._34{width:766.912000pt;}
._2d{width:834.604800pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y65{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.840000pt;}
.y2{bottom:5.120000pt;}
.y1{bottom:41.152000pt;}
.y63{bottom:41.792000pt;}
.y3{bottom:43.552000pt;}
.y62{bottom:59.712000pt;}
.y61{bottom:77.632000pt;}
.y1ba{bottom:100.352000pt;}
.y37{bottom:100.992000pt;}
.y18d{bottom:101.152000pt;}
.yb0{bottom:101.952000pt;}
.y143{bottom:102.912000pt;}
.y10b{bottom:108.992000pt;}
.y1f3{bottom:109.632000pt;}
.y1cc{bottom:110.112000pt;}
.y152{bottom:110.592000pt;}
.y131{bottom:113.632000pt;}
.ydc{bottom:113.952000pt;}
.y163{bottom:114.272000pt;}
.y142{bottom:115.712000pt;}
.y36{bottom:117.312000pt;}
.y91{bottom:117.472000pt;}
.yaf{bottom:118.112000pt;}
.y1b9{bottom:119.872000pt;}
.y18c{bottom:120.672000pt;}
.y175{bottom:125.152000pt;}
.y10a{bottom:128.512000pt;}
.y1f2{bottom:128.992000pt;}
.y1a2{bottom:129.472000pt;}
.y1cb{bottom:129.632000pt;}
.y151{bottom:130.112000pt;}
.y130{bottom:133.152000pt;}
.y35{bottom:133.466667pt;}
.y162{bottom:133.786667pt;}
.yae{bottom:134.426667pt;}
.y90{bottom:136.986667pt;}
.y18b{bottom:140.186667pt;}
.ydb{bottom:141.466667pt;}
.y174{bottom:144.666667pt;}
.y1b8{bottom:147.386667pt;}
.y109{bottom:148.026667pt;}
.y1a1{bottom:148.186667pt;}
.y1f1{bottom:148.346667pt;}
.y150{bottom:148.826667pt;}
.y1ca{bottom:149.146667pt;}
.y34{bottom:149.786667pt;}
.yad{bottom:150.746667pt;}
.y12f{bottom:152.666667pt;}
.y161{bottom:153.306667pt;}
.y8f{bottom:156.506667pt;}
.y18a{bottom:159.706667pt;}
.yda{bottom:160.986667pt;}
.y173{bottom:164.186667pt;}
.y14f{bottom:165.146667pt;}
.y33{bottom:166.106667pt;}
.y1b7{bottom:166.906667pt;}
.y108{bottom:167.546667pt;}
.y1c9{bottom:168.666667pt;}
.y160{bottom:172.826667pt;}
.y1ea{bottom:172.986667pt;}
.yac{bottom:175.706667pt;}
.y14e{bottom:177.946667pt;}
.y189{bottom:179.226667pt;}
.y12e{bottom:180.186667pt;}
.yd9{bottom:180.506667pt;}
.y32{bottom:182.426667pt;}
.y8e{bottom:184.826667pt;}
.y1b6{bottom:186.426667pt;}
.y1f0{bottom:186.906667pt;}
.y1c8{bottom:188.186667pt;}
.y15f{bottom:192.346667pt;}
.y1e9{bottom:192.506667pt;}
.y172{bottom:194.426667pt;}
.y107{bottom:195.066667pt;}
.yab{bottom:195.386667pt;}
.y31{bottom:198.586667pt;}
.y188{bottom:198.746667pt;}
.y12d{bottom:199.706667pt;}
.yd8{bottom:200.026667pt;}
.y1c7{bottom:207.706667pt;}
.y15e{bottom:211.866667pt;}
.y1e8{bottom:212.026667pt;}
.y171{bottom:213.946667pt;}
.y106{bottom:214.586667pt;}
.y30{bottom:214.906667pt;}
.y1ef{bottom:216.986667pt;}
.y187{bottom:218.266667pt;}
.y12c{bottom:219.386667pt;}
.yd7{bottom:219.546667pt;}
.yaa{bottom:222.906667pt;}
.y1c6{bottom:227.386667pt;}
.y15d{bottom:230.586667pt;}
.y1e7{bottom:231.546667pt;}
.y2f{bottom:231.706667pt;}
.y170{bottom:233.466667pt;}
.y105{bottom:234.106667pt;}
.y1ee{bottom:236.186667pt;}
.y186{bottom:237.786667pt;}
.y12b{bottom:238.906667pt;}
.yd6{bottom:239.066667pt;}
.y8d{bottom:242.426667pt;}
.y15c{bottom:246.906667pt;}
.y1e6{bottom:251.066667pt;}
.y16f{bottom:252.986667pt;}
.y104{bottom:253.626667pt;}
.y5c{bottom:254.586667pt;}
.y1ed{bottom:255.546667pt;}
.y185{bottom:257.466667pt;}
.yd5{bottom:258.586667pt;}
.y15b{bottom:259.746667pt;}
.y2e{bottom:261.666667pt;}
.y8c{bottom:261.986667pt;}
.y12a{bottom:266.466667pt;}
.y1e5{bottom:270.626667pt;}
.y16e{bottom:272.546667pt;}
.y103{bottom:273.186667pt;}
.y1ec{bottom:273.506667pt;}
.y184{bottom:276.226667pt;}
.y2d{bottom:279.106667pt;}
.y8b{bottom:281.506667pt;}
.y129{bottom:285.986667pt;}
.yd4{bottom:286.306667pt;}
.y1e4{bottom:290.146667pt;}
.y16d{bottom:291.266667pt;}
.y1eb{bottom:291.426667pt;}
.y1b5{bottom:292.066667pt;}
.y183{bottom:292.386667pt;}
.y102{bottom:292.706667pt;}
.y2c{bottom:295.426667pt;}
.y5b{bottom:295.906667pt;}
.ya9{bottom:301.026667pt;}
.y182{bottom:305.186667pt;}
.y128{bottom:305.506667pt;}
.yd3{bottom:305.826667pt;}
.y16c{bottom:307.586667pt;}
.y8a{bottom:309.026667pt;}
.y1e3{bottom:309.666667pt;}
.y5a{bottom:310.626667pt;}
.y2b{bottom:311.746667pt;}
.y101{bottom:319.426667pt;}
.y16b{bottom:320.386667pt;}
.y127{bottom:325.026667pt;}
.y59{bottom:325.346667pt;}
.y2a{bottom:327.906667pt;}
.y89{bottom:328.546667pt;}
.y1e2{bottom:329.186667pt;}
.y100{bottom:335.746667pt;}
.y141{bottom:335.906667pt;}
.y58{bottom:340.226667pt;}
.y29{bottom:344.226667pt;}
.y126{bottom:344.546667pt;}
.yd2{bottom:344.866667pt;}
.y88{bottom:348.066667pt;}
.y1e1{bottom:348.706667pt;}
.y1b4{bottom:351.106667pt;}
.yff{bottom:352.066667pt;}
.y140{bottom:352.226667pt;}
.y57{bottom:356.546667pt;}
.y28{bottom:360.546667pt;}
.y125{bottom:364.066667pt;}
.y87{bottom:367.586667pt;}
.yfe{bottom:368.226667pt;}
.y13f{bottom:368.546667pt;}
.yd1{bottom:372.386667pt;}
.y56{bottom:372.866667pt;}
.y27{bottom:376.866667pt;}
.y1a0{bottom:379.746667pt;}
.y1b3{bottom:381.186667pt;}
.y13e{bottom:381.346667pt;}
.y124{bottom:383.586667pt;}
.yfd{bottom:384.546667pt;}
.y86{bottom:387.106667pt;}
.y1e0{bottom:387.746667pt;}
.y55{bottom:389.026667pt;}
.yd0{bottom:391.906667pt;}
.y26{bottom:393.506667pt;}
.y14d{bottom:398.146667pt;}
.y1b2{bottom:400.706667pt;}
.yfc{bottom:400.866667pt;}
.y123{bottom:403.106667pt;}
.y54{bottom:405.346667pt;}
.y85{bottom:406.626667pt;}
.y1df{bottom:407.266667pt;}
.y19f{bottom:407.586667pt;}
.ycf{bottom:411.426667pt;}
.y14c{bottom:414.466667pt;}
.yfb{bottom:417.186667pt;}
.y1b1{bottom:420.226667pt;}
.y53{bottom:421.666667pt;}
.y122{bottom:422.626667pt;}
.y25{bottom:423.586667pt;}
.y1de{bottom:426.786667pt;}
.y19e{bottom:427.106667pt;}
.y14b{bottom:430.626667pt;}
.yfa{bottom:433.346667pt;}
.y84{bottom:434.146667pt;}
.y52{bottom:437.826667pt;}
.yce{bottom:438.946667pt;}
.y24{bottom:441.026667pt;}
.y121{bottom:442.146667pt;}
.y14a{bottom:443.426667pt;}
.y1dd{bottom:446.466667pt;}
.y19d{bottom:446.626667pt;}
.yf9{bottom:449.666667pt;}
.y1b0{bottom:450.466667pt;}
.y83{bottom:453.666667pt;}
.y51{bottom:454.146667pt;}
.y23{bottom:457.186667pt;}
.ycd{bottom:458.466667pt;}
.y1c5{bottom:461.666667pt;}
.y1dc{bottom:465.986667pt;}
.y19c{bottom:466.146667pt;}
.y120{bottom:468.866667pt;}
.y1af{bottom:469.986667pt;}
.y50{bottom:470.466667pt;}
.y82{bottom:473.186667pt;}
.y22{bottom:473.506667pt;}
.yf8{bottom:474.786667pt;}
.ycc{bottom:477.986667pt;}
.y15a{bottom:479.906667pt;}
.y1c4{bottom:481.186667pt;}
.y11f{bottom:485.186667pt;}
.y1db{bottom:485.506667pt;}
.y4f{bottom:486.786667pt;}
.y21{bottom:489.826667pt;}
.y81{bottom:492.866667pt;}
.yf7{bottom:494.306667pt;}
.y159{bottom:496.066667pt;}
.y19b{bottom:496.386667pt;}
.ycb{bottom:497.506667pt;}
.y1ae{bottom:500.226667pt;}
.y1c3{bottom:500.866667pt;}
.y11e{bottom:501.506667pt;}
.y4e{bottom:502.946667pt;}
.y1da{bottom:505.026667pt;}
.y20{bottom:505.986667pt;}
.y80{bottom:512.413333pt;}
.yf6{bottom:513.853333pt;}
.y19a{bottom:515.933333pt;}
.y11d{bottom:517.853333pt;}
.y4d{bottom:519.293333pt;}
.y1ad{bottom:519.773333pt;}
.y1c2{bottom:520.413333pt;}
.y1f{bottom:522.333333pt;}
.y181{bottom:523.933333pt;}
.y1d9{bottom:524.573333pt;}
.yca{bottom:525.053333pt;}
.y158{bottom:525.213333pt;}
.y7f{bottom:531.933333pt;}
.y11c{bottom:534.013333pt;}
.y199{bottom:535.453333pt;}
.y4c{bottom:535.613333pt;}
.y16a{bottom:538.493333pt;}
.y1e{bottom:538.653333pt;}
.y1ac{bottom:539.293333pt;}
.y1c1{bottom:539.933333pt;}
.yf5{bottom:540.573333pt;}
.y1d8{bottom:544.093333pt;}
.yc9{bottom:544.573333pt;}
.y11b{bottom:550.333333pt;}
.y7e{bottom:551.453333pt;}
.y180{bottom:551.613333pt;}
.y4b{bottom:551.773333pt;}
.y1d{bottom:554.973333pt;}
.yf4{bottom:556.893333pt;}
.ya8{bottom:558.493333pt;}
.y1ab{bottom:558.813333pt;}
.y1c0{bottom:559.453333pt;}
.y169{bottom:563.613333pt;}
.yc8{bottom:564.093333pt;}
.y198{bottom:565.533333pt;}
.y11a{bottom:566.653333pt;}
.y4a{bottom:568.093333pt;}
.y7d{bottom:570.973333pt;}
.y17f{bottom:571.293333pt;}
.y1c{bottom:571.613333pt;}
.yf3{bottom:573.053333pt;}
.ya7{bottom:574.813333pt;}
.y1aa{bottom:578.333333pt;}
.y1bf{bottom:578.973333pt;}
.y119{bottom:582.813333pt;}
.y168{bottom:583.133333pt;}
.yc7{bottom:583.613333pt;}
.y49{bottom:584.413333pt;}
.y197{bottom:585.213333pt;}
.y1b{bottom:587.613333pt;}
.yf2{bottom:589.373333pt;}
.y17e{bottom:590.813333pt;}
.ya6{bottom:591.133333pt;}
.y1a9{bottom:597.853333pt;}
.y7c{bottom:598.493333pt;}
.y1a{bottom:598.813333pt;}
.y118{bottom:599.133333pt;}
.y48{bottom:600.893333pt;}
.y13d{bottom:601.533333pt;}
.y167{bottom:602.653333pt;}
.yc6{bottom:603.293333pt;}
.y196{bottom:604.733333pt;}
.yf1{bottom:605.693333pt;}
.ya5{bottom:607.453333pt;}
.y17d{bottom:610.333333pt;}
.y19{bottom:613.693333pt;}
.y117{bottom:615.453333pt;}
.y1a8{bottom:616.573333pt;}
.y47{bottom:617.053333pt;}
.y7b{bottom:618.013333pt;}
.yf0{bottom:622.013333pt;}
.y166{bottom:622.173333pt;}
.yc5{bottom:622.813333pt;}
.ya4{bottom:623.773333pt;}
.y18{bottom:625.373333pt;}
.y13c{bottom:626.493333pt;}
.y1a7{bottom:629.373333pt;}
.y17c{bottom:629.853333pt;}
.y116{bottom:631.773333pt;}
.y46{bottom:633.373333pt;}
.y195{bottom:634.813333pt;}
.y7a{bottom:637.533333pt;}
.y165{bottom:641.693333pt;}
.yc4{bottom:642.333333pt;}
.y17{bottom:644.253333pt;}
.yef{bottom:646.973333pt;}
.ya3{bottom:648.733333pt;}
.y45{bottom:649.693333pt;}
.y13b{bottom:654.013333pt;}
.y194{bottom:654.333333pt;}
.y115{bottom:656.733333pt;}
.y1be{bottom:657.053333pt;}
.y17b{bottom:659.933333pt;}
.y1d7{bottom:661.213333pt;}
.y149{bottom:663.613333pt;}
.y16{bottom:664.093333pt;}
.y79{bottom:665.053333pt;}
.y44{bottom:666.013333pt;}
.yee{bottom:666.493333pt;}
.ya2{bottom:668.253333pt;}
.yc3{bottom:668.893333pt;}
.y164{bottom:669.213333pt;}
.y13a{bottom:673.693333pt;}
.y193{bottom:673.853333pt;}
.y15{bottom:675.773333pt;}
.y114{bottom:676.253333pt;}
.y1bd{bottom:677.373333pt;}
.y17a{bottom:679.613333pt;}
.y1d6{bottom:680.733333pt;}
.y43{bottom:682.173333pt;}
.y78{bottom:684.573333pt;}
.yc2{bottom:685.213333pt;}
.yed{bottom:686.013333pt;}
.y148{bottom:688.733333pt;}
.y192{bottom:693.533333pt;}
.y14{bottom:694.813333pt;}
.ya1{bottom:695.933333pt;}
.y42{bottom:698.493333pt;}
.y179{bottom:699.133333pt;}
.y1d5{bottom:700.253333pt;}
.yc1{bottom:701.533333pt;}
.y139{bottom:701.853333pt;}
.y77{bottom:704.093333pt;}
.y1bc{bottom:707.453333pt;}
.y147{bottom:708.253333pt;}
.y191{bottom:713.053333pt;}
.yec{bottom:713.693333pt;}
.y13{bottom:714.653333pt;}
.y41{bottom:714.813333pt;}
.ya0{bottom:715.453333pt;}
.yc0{bottom:717.853333pt;}
.y1d4{bottom:719.933333pt;}
.y113{bottom:723.453333pt;}
.y76{bottom:723.613333pt;}
.y12{bottom:726.333333pt;}
.y146{bottom:727.773333pt;}
.y40{bottom:730.973333pt;}
.y138{bottom:732.573333pt;}
.yeb{bottom:733.213333pt;}
.y178{bottom:734.013333pt;}
.ybf{bottom:734.173333pt;}
.y9f{bottom:734.973333pt;}
.y1d3{bottom:739.453333pt;}
.y112{bottom:742.973333pt;}
.y11{bottom:745.213333pt;}
.y157{bottom:745.373333pt;}
.y177{bottom:746.813333pt;}
.y3f{bottom:747.293333pt;}
.ybe{bottom:750.333333pt;}
.y75{bottom:751.133333pt;}
.y190{bottom:751.293333pt;}
.yea{bottom:752.733333pt;}
.y9e{bottom:754.493333pt;}
.y1d2{bottom:759.013333pt;}
.y111{bottom:762.533333pt;}
.y137{bottom:762.693333pt;}
.y3e{bottom:763.653333pt;}
.y10{bottom:765.093333pt;}
.y145{bottom:766.053333pt;}
.ybd{bottom:766.693333pt;}
.y18f{bottom:767.493333pt;}
.y156{bottom:770.533333pt;}
.y74{bottom:770.693333pt;}
.ye9{bottom:772.293333pt;}
.y9d{bottom:774.053333pt;}
.yf{bottom:776.773333pt;}
.y1d1{bottom:778.533333pt;}
.y3d{bottom:779.973333pt;}
.y18e{bottom:780.293333pt;}
.y110{bottom:782.053333pt;}
.y136{bottom:782.373333pt;}
.ybc{bottom:783.013333pt;}
.y155{bottom:790.053333pt;}
.y73{bottom:790.373333pt;}
.ye8{bottom:791.813333pt;}
.y144{bottom:795.173333pt;}
.ye{bottom:795.653333pt;}
.y3c{bottom:796.133333pt;}
.y1d0{bottom:798.053333pt;}
.y9c{bottom:801.573333pt;}
.ybb{bottom:808.133333pt;}
.y154{bottom:809.573333pt;}
.y135{bottom:809.893333pt;}
.ye7{bottom:811.333333pt;}
.y3b{bottom:812.453333pt;}
.yd{bottom:815.493333pt;}
.y1cf{bottom:817.573333pt;}
.y72{bottom:817.893333pt;}
.y9b{bottom:821.093333pt;}
.yc{bottom:827.173333pt;}
.yba{bottom:827.653333pt;}
.y3a{bottom:828.773333pt;}
.y153{bottom:829.093333pt;}
.y134{bottom:829.413333pt;}
.ye6{bottom:830.853333pt;}
.y1ce{bottom:837.093333pt;}
.y71{bottom:837.413333pt;}
.y10f{bottom:840.613333pt;}
.y39{bottom:845.093333pt;}
.yb{bottom:846.213333pt;}
.y1a6{bottom:848.453333pt;}
.y9a{bottom:848.613333pt;}
.y133{bottom:848.933333pt;}
.yb9{bottom:855.173333pt;}
.y1cd{bottom:856.613333pt;}
.y70{bottom:856.933333pt;}
.ye5{bottom:857.573333pt;}
.y1bb{bottom:860.133333pt;}
.ya{bottom:866.053333pt;}
.y99{bottom:868.133333pt;}
.y132{bottom:868.453333pt;}
.ye4{bottom:873.893333pt;}
.yb8{bottom:874.693333pt;}
.y1a5{bottom:876.133333pt;}
.y6f{bottom:876.453333pt;}
.y9{bottom:877.733333pt;}
.y98{bottom:887.653333pt;}
.ye3{bottom:890.053333pt;}
.yb7{bottom:894.213333pt;}
.y1a4{bottom:895.653333pt;}
.y6e{bottom:895.973333pt;}
.y8{bottom:896.613333pt;}
.ye2{bottom:906.373333pt;}
.y97{bottom:907.173333pt;}
.yb6{bottom:913.733333pt;}
.y1a3{bottom:915.173333pt;}
.y7{bottom:921.733333pt;}
.ye1{bottom:922.693333pt;}
.y6d{bottom:923.493333pt;}
.y10e{bottom:926.693333pt;}
.yb5{bottom:933.253333pt;}
.y96{bottom:934.693333pt;}
.ye0{bottom:939.013333pt;}
.y6c{bottom:943.013333pt;}
.y6{bottom:944.613333pt;}
.y10d{bottom:946.213333pt;}
.yb4{bottom:952.773333pt;}
.y95{bottom:954.213333pt;}
.ydf{bottom:955.173333pt;}
.y6b{bottom:962.533333pt;}
.y68{bottom:964.613333pt;}
.y176{bottom:965.573333pt;}
.y10c{bottom:965.733333pt;}
.yde{bottom:971.493333pt;}
.y5{bottom:972.133333pt;}
.yb3{bottom:972.293333pt;}
.y94{bottom:973.733333pt;}
.y6a{bottom:982.053333pt;}
.ydd{bottom:987.813333pt;}
.y93{bottom:993.413333pt;}
.y67{bottom:993.893333pt;}
.yb2{bottom:999.013333pt;}
.y69{bottom:1010.400000pt;}
.y92{bottom:1012.960000pt;}
.y4{bottom:1014.560000pt;}
.yb1{bottom:1015.360000pt;}
.y66{bottom:1022.720000pt;}
.y60{bottom:1040.320000pt;}
.y64{bottom:1047.040000pt;}
.y5f{bottom:1058.720000pt;}
.y5e{bottom:1074.880000pt;}
.y5d{bottom:1091.040000pt;}
.hb{height:31.828125pt;}
.hd{height:32.765625pt;}
.h13{height:40.332812pt;}
.h18{height:42.866250pt;}
.h11{height:44.897813pt;}
.h10{height:46.039063pt;}
.h12{height:46.116875pt;}
.h14{height:47.742188pt;}
.h4{height:50.887500pt;}
.h15{height:51.031250pt;}
.h16{height:51.117500pt;}
.h2{height:52.834688pt;}
.hc{height:54.390938pt;}
.h7{height:56.854687pt;}
.ha{height:58.563750pt;}
.he{height:60.288750pt;}
.h19{height:63.656250pt;}
.h8{height:64.629688pt;}
.h1a{height:65.531250pt;}
.h17{height:69.120000pt;}
.h9{height:76.671562pt;}
.h3{height:84.512000pt;}
.h5{height:120.367188pt;}
.h6{height:127.312500pt;}
.hf{height:1112.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:80.000000pt;}
.w5{width:157.786653pt;}
.w4{width:158.106643pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.399976pt;}
.x21{left:13.759976pt;}
.x3c{left:22.080000pt;}
.x3{left:25.920000pt;}
.x28{left:59.039976pt;}
.x26{left:61.439976pt;}
.x20{left:64.799976pt;}
.x27{left:66.079976pt;}
.x1f{left:67.679976pt;}
.x2f{left:75.679988pt;}
.x1b{left:90.431976pt;}
.x1e{left:91.391976pt;}
.x18{left:93.951976pt;}
.x19{left:95.551976pt;}
.x1a{left:97.791976pt;}
.x24{left:102.111976pt;}
.x25{left:108.031976pt;}
.x1d{left:111.871976pt;}
.x1{left:113.471988pt;}
.x29{left:121.471976pt;}
.x32{left:122.911988pt;}
.x22{left:128.191976pt;}
.x30{left:133.466653pt;}
.x1c{left:148.506643pt;}
.x2e{left:160.666655pt;}
.x41{left:165.946655pt;}
.x16{left:170.266655pt;}
.x42{left:195.866655pt;}
.x3d{left:201.786655pt;}
.x31{left:207.866655pt;}
.x40{left:214.746655pt;}
.x17{left:226.906655pt;}
.x3e{left:236.986655pt;}
.x3b{left:287.426655pt;}
.x3f{left:297.826655pt;}
.x33{left:311.906655pt;}
.x3a{left:325.666655pt;}
.x39{left:327.266655pt;}
.x4{left:342.306655pt;}
.x36{left:365.506655pt;}
.x38{left:369.346655pt;}
.x34{left:373.026655pt;}
.x11{left:379.746655pt;}
.x7{left:381.186655pt;}
.x43{left:385.666655pt;}
.xf{left:390.306655pt;}
.x2d{left:409.026655pt;}
.x37{left:420.546655pt;}
.x15{left:431.586655pt;}
.x6{left:435.906655pt;}
.x2c{left:440.253322pt;}
.x2a{left:455.453322pt;}
.x10{left:474.973322pt;}
.x5{left:475.933322pt;}
.xc{left:477.373322pt;}
.x9{left:478.493322pt;}
.x2b{left:486.813322pt;}
.x8{left:487.933322pt;}
.x12{left:494.653322pt;}
.xd{left:498.653322pt;}
.xe{left:503.453322pt;}
.x14{left:508.413322pt;}
.x13{left:515.773322pt;}
.xb{left:529.213322pt;}
.x35{left:611.773322pt;}
.xa{left:680.453322pt;}
.x2{left:697.093333pt;}
}




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