
    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_3dcce22598ba926482a846f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102000;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_0cd7ecb1d1420adb3973c06f.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_ef99cd97f0af79b2e3b43f0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.176270;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_ba732cf821651e2a1f3565a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991211;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_2a052f25b23f26e97095f725.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_cbd8a984bc1b15386ed870b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_b0b921f5ad140a6ba12b4435.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18acffb83d66240a747de804.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_ecca79b8fdd3a18b0a9b5711.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_f2544a8cf0999a3dc8c1fb7d.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_691e84b546eb9dfc69a715e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008000;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_a6eb72f51af1dc266a366d8f.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.lsa{letter-spacing:-1.161600px;}
.ls9{letter-spacing:-0.013200px;}
.ls2{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.004920px;}
.lsc{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.013200px;}
.ls12{letter-spacing:0.026520px;}
.ls0{letter-spacing:0.030000px;}
.ls5{letter-spacing:0.033000px;}
.lsb{letter-spacing:0.462000px;}
.ls6{letter-spacing:0.620400px;}
.ls15{letter-spacing:0.686400px;}
.ls3{letter-spacing:0.912000px;}
.ls16{letter-spacing:1.155000px;}
.ls4{letter-spacing:1.405800px;}
.ls11{letter-spacing:2.864400px;}
.ls17{letter-spacing:7.965540px;}
.ls18{letter-spacing:10.995600px;}
.lsd{letter-spacing:16.398120px;}
.ls13{letter-spacing:24.717000px;}
.ls10{letter-spacing:36.894000px;}
.ls14{letter-spacing:179.611548px;}
.lse{letter-spacing:196.111548px;}
.ls7{letter-spacing:201.084000px;}
.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;}
}
.wsb{word-spacing:-36.960000px;}
.wsd{word-spacing:-17.655000px;}
.wsc{word-spacing:-17.186400px;}
.ws5{word-spacing:-16.513200px;}
.ws0{word-spacing:-16.500000px;}
.ws6{word-spacing:-16.486800px;}
.ws7{word-spacing:-15.338400px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.988000px;}
.ws9{word-spacing:-13.200000px;}
.ws8{word-spacing:-12.480000px;}
.ws4{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:5.500200px;}
._23{margin-left:-25.265160px;}
._24{margin-left:-24.234840px;}
._21{margin-left:-18.447000px;}
._f{margin-left:-15.862800px;}
._13{margin-left:-14.638200px;}
._b{margin-left:-7.067400px;}
._20{margin-left:-5.851800px;}
._3{margin-left:-4.554000px;}
._1{margin-left:-3.168000px;}
._0{margin-left:-1.254000px;}
._4{width:1.188000px;}
._5{width:2.310000px;}
._2{width:3.432000px;}
._c{width:4.938000px;}
._a{width:6.024000px;}
._e{width:7.322520px;}
._8{width:8.787480px;}
._18{width:9.930120px;}
._1e{width:11.030280px;}
._d{width:12.144000px;}
._7{width:13.446000px;}
._19{width:14.772420px;}
._1d{width:16.662000px;}
._10{width:17.769540px;}
._6{width:18.876000px;}
._1c{width:20.502000px;}
._1f{width:21.645660px;}
._9{width:22.806000px;}
._1a{width:24.419220px;}
._17{width:25.458420px;}
._1b{width:27.328200px;}
._11{width:28.620000px;}
._12{width:30.464400px;}
._14{width:32.142000px;}
._15{width:33.490200px;}
._16{width:34.526400px;}
._22{width:35.599200px;}
._25{width:36.948000px;}
._26{width:39.232680px;}
.fc4{color:rgb(46,52,54);}
.fc3{color:transparent;}
.fc2{color:rgb(33,37,41);}
.fc5{color:rgb(146,146,146);}
.fc1{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:40.000002px;}
.fs2{font-size:44.000004px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:52.800000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:88.002000px;}
.y0{bottom:0.000000px;}
.y228{bottom:7.456965px;}
.yb3{bottom:9.000000px;}
.y105{bottom:9.114075px;}
.y1a{bottom:10.925895px;}
.y1c{bottom:11.550030px;}
.y1df{bottom:13.160145px;}
.y86{bottom:18.076170px;}
.y205{bottom:19.160145px;}
.y1a1{bottom:19.576170px;}
.y227{bottom:23.956965px;}
.y1b6{bottom:25.576125px;}
.yd4{bottom:28.237785px;}
.y2d{bottom:28.545675px;}
.yb2{bottom:29.660145px;}
.y104{bottom:30.114030px;}
.y19{bottom:30.425895px;}
.y1de{bottom:32.660175px;}
.y14f{bottom:36.076125px;}
.y177{bottom:37.576125px;}
.y5c{bottom:37.874175px;}
.y204{bottom:38.660175px;}
.y85{bottom:39.076125px;}
.y226{bottom:40.456905px;}
.y1a0{bottom:40.576125px;}
.y1b5{bottom:46.576125px;}
.yd3{bottom:47.737785px;}
.yb1{bottom:49.160145px;}
.y18{bottom:49.925895px;}
.y103{bottom:51.114030px;}
.y1dd{bottom:52.576125px;}
.y1b{bottom:56.354505px;}
.y14e{bottom:57.076125px;}
.y5b{bottom:57.374175px;}
.y203{bottom:58.160175px;}
.y2b{bottom:58.431075px;}
.y176{bottom:58.576125px;}
.y84{bottom:60.076125px;}
.y19f{bottom:61.576125px;}
.y231{bottom:61.888950px;}
.yd2{bottom:67.237785px;}
.y1b4{bottom:67.576125px;}
.yaf{bottom:68.660145px;}
.y102{bottom:72.114030px;}
.yb0{bottom:72.134295px;}
.y1dc{bottom:73.576125px;}
.y5a{bottom:76.874175px;}
.y202{bottom:77.660175px;}
.y14d{bottom:78.076125px;}
.y175{bottom:79.576125px;}
.y83{bottom:81.076125px;}
.y19e{bottom:82.576125px;}
.y230{bottom:82.888950px;}
.yd1{bottom:86.737785px;}
.y1b3{bottom:88.576125px;}
.y17{bottom:88.925895px;}
.y101{bottom:93.114030px;}
.y1db{bottom:94.576125px;}
.y59{bottom:96.374175px;}
.y201{bottom:97.160175px;}
.y14c{bottom:99.076125px;}
.y174{bottom:100.576125px;}
.y82{bottom:102.076125px;}
.y2c{bottom:102.616290px;}
.y19d{bottom:103.576125px;}
.y22f{bottom:103.888950px;}
.yd0{bottom:106.237785px;}
.y16{bottom:108.425895px;}
.y1b2{bottom:109.576125px;}
.y100{bottom:114.114030px;}
.y1da{bottom:115.576125px;}
.y58{bottom:115.874175px;}
.y200{bottom:116.660175px;}
.y14b{bottom:120.076125px;}
.y51{bottom:120.845025px;}
.y173{bottom:121.576125px;}
.yd5{bottom:122.738070px;}
.ycc{bottom:122.981415px;}
.yae{bottom:123.059055px;}
.y81{bottom:123.076125px;}
.y225{bottom:123.563145px;}
.y219{bottom:124.238070px;}
.y19c{bottom:124.576125px;}
.y22e{bottom:124.888950px;}
.ycf{bottom:125.737785px;}
.y106{bottom:125.738070px;}
.yad{bottom:125.793045px;}
.y1d{bottom:127.275975px;}
.y1{bottom:127.559055px;}
.y1b1{bottom:130.576125px;}
.yff{bottom:135.114030px;}
.y57{bottom:135.374175px;}
.y1ff{bottom:136.160175px;}
.y1d9{bottom:136.576125px;}
.y14a{bottom:141.076125px;}
.y172{bottom:142.576125px;}
.y80{bottom:144.076125px;}
.ycd{bottom:145.237785px;}
.y19b{bottom:145.576125px;}
.y22d{bottom:145.888950px;}
.yac{bottom:146.377095px;}
.y15{bottom:147.425895px;}
.yce{bottom:148.711935px;}
.y1b0{bottom:151.576125px;}
.y56{bottom:154.874175px;}
.yfe{bottom:156.114030px;}
.y1d8{bottom:157.576125px;}
.y149{bottom:162.076125px;}
.y171{bottom:163.576125px;}
.y7f{bottom:165.076125px;}
.yab{bottom:165.877095px;}
.y19a{bottom:166.576125px;}
.y22c{bottom:166.888950px;}
.y14{bottom:166.925895px;}
.y1af{bottom:172.576125px;}
.y55{bottom:174.374175px;}
.y1fe{bottom:175.576125px;}
.yfd{bottom:177.114030px;}
.y1d7{bottom:178.576125px;}
.y148{bottom:183.076125px;}
.y170{bottom:184.576125px;}
.yaa{bottom:185.377095px;}
.y7e{bottom:186.076125px;}
.y199{bottom:187.576125px;}
.y22b{bottom:187.888950px;}
.y1ae{bottom:193.576125px;}
.y54{bottom:193.874175px;}
.ycb{bottom:196.293045px;}
.y1fd{bottom:196.576125px;}
.yfc{bottom:198.114030px;}
.y1d6{bottom:200.908275px;}
.y147{bottom:204.076125px;}
.ya9{bottom:204.877095px;}
.y16f{bottom:205.576125px;}
.y13{bottom:205.925895px;}
.y7d{bottom:207.076125px;}
.y198{bottom:208.576125px;}
.y22a{bottom:208.888950px;}
.y52{bottom:213.374175px;}
.y1ad{bottom:214.576125px;}
.y53{bottom:216.848325px;}
.yca{bottom:217.293045px;}
.y1fc{bottom:217.576125px;}
.yfb{bottom:219.114030px;}
.ya8{bottom:224.377095px;}
.y146{bottom:225.076125px;}
.y12{bottom:225.425895px;}
.y16e{bottom:226.576125px;}
.y7c{bottom:228.076125px;}
.y197{bottom:229.576125px;}
.y1ac{bottom:235.576125px;}
.yc8{bottom:238.293045px;}
.y1fb{bottom:238.576125px;}
.yfa{bottom:240.114030px;}
.yc9{bottom:242.114595px;}
.ya7{bottom:243.877095px;}
.y11{bottom:244.925895px;}
.y145{bottom:246.076125px;}
.y1d5{bottom:247.160175px;}
.y16d{bottom:247.576125px;}
.y7b{bottom:249.076125px;}
.y196{bottom:250.576125px;}
.y1ab{bottom:256.576125px;}
.yc7{bottom:259.293045px;}
.y1fa{bottom:259.576125px;}
.yf9{bottom:261.114030px;}
.ya6{bottom:263.377095px;}
.y10{bottom:264.425895px;}
.y1d4{bottom:266.660175px;}
.y144{bottom:267.076125px;}
.y16c{bottom:268.576125px;}
.y7a{bottom:270.076125px;}
.y195{bottom:271.576125px;}
.y1aa{bottom:277.576125px;}
.y50{bottom:278.793045px;}
.yc6{bottom:280.293045px;}
.y1f9{bottom:280.576125px;}
.yf8{bottom:282.114030px;}
.ya5{bottom:282.877095px;}
.yf{bottom:283.925895px;}
.y1d3{bottom:286.160175px;}
.y143{bottom:288.076125px;}
.y16b{bottom:290.908275px;}
.y79{bottom:291.076125px;}
.y194{bottom:292.576125px;}
.y1a9{bottom:298.576125px;}
.y4f{bottom:299.793045px;}
.yc5{bottom:301.293045px;}
.y1f8{bottom:301.576125px;}
.ya4{bottom:302.793045px;}
.yf7{bottom:303.114030px;}
.ye{bottom:303.425895px;}
.y1d2{bottom:305.660175px;}
.y142{bottom:309.076125px;}
.y78{bottom:312.076125px;}
.y193{bottom:313.576125px;}
.y16a{bottom:316.576125px;}
.y1a8{bottom:319.576125px;}
.y4e{bottom:320.793045px;}
.y1f7{bottom:322.576125px;}
.yd{bottom:322.925895px;}
.ya3{bottom:323.793045px;}
.yf6{bottom:324.114030px;}
.y1d1{bottom:325.160175px;}
.y141{bottom:329.660175px;}
.y77{bottom:333.076125px;}
.y192{bottom:334.576125px;}
.y169{bottom:337.160175px;}
.y1a7{bottom:340.576125px;}
.y4d{bottom:341.793045px;}
.yc{bottom:342.425895px;}
.yc4{bottom:342.706845px;}
.y1f6{bottom:343.576125px;}
.y1d0{bottom:344.660175px;}
.ya1{bottom:344.793045px;}
.yf5{bottom:345.114030px;}
.ya2{bottom:348.614595px;}
.y140{bottom:349.160175px;}
.y76{bottom:354.076125px;}
.y191{bottom:355.576125px;}
.y168{bottom:356.660175px;}
.y1a6{bottom:361.576125px;}
.yb{bottom:361.925895px;}
.y4c{bottom:362.793045px;}
.y1cf{bottom:364.160175px;}
.y1f5{bottom:364.576125px;}
.ya0{bottom:365.793045px;}
.yf4{bottom:366.114030px;}
.y13f{bottom:368.660175px;}
.y75{bottom:375.076125px;}
.y167{bottom:376.160175px;}
.y190{bottom:376.576125px;}
.ya{bottom:381.425895px;}
.yc3{bottom:382.293045px;}
.y1a5{bottom:382.576125px;}
.y4b{bottom:383.793045px;}
.y1ce{bottom:384.076125px;}
.y1f4{bottom:385.576125px;}
.y9f{bottom:386.793045px;}
.yf3{bottom:387.114030px;}
.y13e{bottom:388.160175px;}
.y166{bottom:395.660175px;}
.y74{bottom:396.076125px;}
.y18f{bottom:397.576125px;}
.y9{bottom:400.925895px;}
.yc2{bottom:403.293045px;}
.y1a4{bottom:403.576125px;}
.y4a{bottom:404.793045px;}
.y1cd{bottom:405.076125px;}
.y1f3{bottom:406.576125px;}
.y13d{bottom:407.660175px;}
.y9e{bottom:407.793045px;}
.yf2{bottom:408.114030px;}
.y165{bottom:415.160175px;}
.y73{bottom:417.076125px;}
.y18e{bottom:418.576125px;}
.yc1{bottom:424.293045px;}
.y1a3{bottom:424.576125px;}
.y49{bottom:425.793045px;}
.y1cc{bottom:426.076125px;}
.y13c{bottom:427.160175px;}
.y1f2{bottom:427.576125px;}
.y9d{bottom:428.793045px;}
.y2a{bottom:428.931075px;}
.yf1{bottom:429.114030px;}
.y164{bottom:435.076125px;}
.y72{bottom:438.076125px;}
.y18d{bottom:439.576125px;}
.yc0{bottom:445.293045px;}
.y1a2{bottom:445.576125px;}
.y13b{bottom:446.660175px;}
.y48{bottom:446.793045px;}
.y1cb{bottom:447.076125px;}
.y1f1{bottom:448.576125px;}
.y120{bottom:449.527830px;}
.y9c{bottom:449.793045px;}
.yf0{bottom:450.114030px;}
.y163{bottom:456.076125px;}
.y71{bottom:459.076125px;}
.y18c{bottom:460.576125px;}
.ybf{bottom:466.293045px;}
.y13a{bottom:466.576125px;}
.y47{bottom:467.793045px;}
.y1ca{bottom:468.076125px;}
.y1f0{bottom:469.576125px;}
.y9b{bottom:470.793045px;}
.yef{bottom:471.114030px;}
.y162{bottom:477.076125px;}
.y70{bottom:480.076125px;}
.y18b{bottom:481.576125px;}
.ybe{bottom:487.293045px;}
.y139{bottom:487.576125px;}
.y46{bottom:488.793045px;}
.y1c9{bottom:489.076125px;}
.y11f{bottom:489.114030px;}
.y9a{bottom:491.793045px;}
.y1ef{bottom:491.908275px;}
.yee{bottom:492.114030px;}
.y161{bottom:498.076125px;}
.y6f{bottom:501.076125px;}
.y18a{bottom:502.576125px;}
.ybd{bottom:508.293045px;}
.y138{bottom:508.576125px;}
.y45{bottom:509.793045px;}
.y1c8{bottom:510.076125px;}
.y11e{bottom:510.114030px;}
.y99{bottom:512.793045px;}
.yed{bottom:513.114030px;}
.y160{bottom:519.076125px;}
.y6e{bottom:522.076125px;}
.y189{bottom:523.576125px;}
.y8{bottom:524.341845px;}
.ybc{bottom:529.293045px;}
.y137{bottom:529.576125px;}
.y44{bottom:530.793045px;}
.y1c7{bottom:531.076125px;}
.y11d{bottom:531.114030px;}
.y98{bottom:533.793045px;}
.yec{bottom:534.114030px;}
.y15f{bottom:540.076125px;}
.y6d{bottom:543.076125px;}
.y1ee{bottom:544.160175px;}
.y188{bottom:544.576125px;}
.y7{bottom:545.341845px;}
.ybb{bottom:550.293045px;}
.y136{bottom:550.576125px;}
.y43{bottom:551.793045px;}
.y1c6{bottom:552.076125px;}
.y11c{bottom:552.114030px;}
.y97{bottom:554.793045px;}
.yeb{bottom:555.114030px;}
.y15e{bottom:561.076125px;}
.y1ed{bottom:563.660175px;}
.y6c{bottom:564.076125px;}
.y187{bottom:565.576125px;}
.y6{bottom:566.341845px;}
.y29{bottom:567.076125px;}
.yba{bottom:571.293045px;}
.y135{bottom:571.576125px;}
.y42{bottom:572.793045px;}
.y1c5{bottom:573.076125px;}
.y11b{bottom:573.114030px;}
.y96{bottom:575.793045px;}
.yea{bottom:576.114030px;}
.y15d{bottom:582.076125px;}
.y1ec{bottom:583.160175px;}
.y6b{bottom:585.076125px;}
.y186{bottom:586.576125px;}
.y5{bottom:587.341845px;}
.yb9{bottom:592.293045px;}
.y134{bottom:592.576125px;}
.y41{bottom:593.793045px;}
.y1c4{bottom:594.076125px;}
.y11a{bottom:594.114030px;}
.y95{bottom:596.793045px;}
.ye9{bottom:597.114030px;}
.y1eb{bottom:602.660175px;}
.y15c{bottom:603.076125px;}
.y6a{bottom:606.076125px;}
.y218{bottom:607.576125px;}
.yb8{bottom:613.293045px;}
.y133{bottom:613.576125px;}
.y40{bottom:614.793045px;}
.y1c3{bottom:615.076125px;}
.y119{bottom:615.114030px;}
.ye8{bottom:618.114030px;}
.y1ea{bottom:622.160175px;}
.y15b{bottom:624.076125px;}
.y69{bottom:627.076125px;}
.y217{bottom:628.576125px;}
.yb7{bottom:634.293045px;}
.y132{bottom:634.576125px;}
.y3f{bottom:635.793045px;}
.y1c2{bottom:636.076125px;}
.y118{bottom:636.114030px;}
.y94{bottom:638.206845px;}
.ye7{bottom:639.114030px;}
.y1e9{bottom:641.660175px;}
.y28{bottom:642.076125px;}
.y15a{bottom:645.076125px;}
.y68{bottom:648.076125px;}
.y216{bottom:649.576125px;}
.yb6{bottom:655.293045px;}
.y131{bottom:655.576125px;}
.y3e{bottom:656.793045px;}
.y1c1{bottom:657.076125px;}
.y117{bottom:657.114030px;}
.ye6{bottom:660.114030px;}
.y1e8{bottom:661.160175px;}
.y27{bottom:663.076125px;}
.y159{bottom:666.076125px;}
.y185{bottom:667.576125px;}
.y67{bottom:669.076125px;}
.y215{bottom:670.576125px;}
.yb5{bottom:676.293045px;}
.y130{bottom:676.576125px;}
.y3d{bottom:677.793045px;}
.y1c0{bottom:678.076125px;}
.y116{bottom:678.114030px;}
.y1e7{bottom:680.660175px;}
.ye5{bottom:681.114030px;}
.y158{bottom:687.076125px;}
.y184{bottom:688.576125px;}
.y66{bottom:690.076125px;}
.y214{bottom:691.576125px;}
.y4{bottom:695.190795px;}
.yb4{bottom:697.293045px;}
.y12f{bottom:697.576125px;}
.y3c{bottom:698.793045px;}
.y1bf{bottom:699.076125px;}
.y115{bottom:699.114030px;}
.y1e6{bottom:700.160175px;}
.ye4{bottom:702.114030px;}
.y157{bottom:708.076125px;}
.y183{bottom:709.576125px;}
.y65{bottom:711.076125px;}
.y213{bottom:712.576125px;}
.y3{bottom:714.690795px;}
.y93{bottom:718.293045px;}
.y12e{bottom:718.576125px;}
.y1e5{bottom:719.660175px;}
.y3b{bottom:719.793045px;}
.y1be{bottom:720.076125px;}
.y114{bottom:720.114030px;}
.ye3{bottom:723.114030px;}
.y156{bottom:729.076125px;}
.y182{bottom:730.576125px;}
.y64{bottom:732.076125px;}
.y212{bottom:733.576125px;}
.y2{bottom:734.190795px;}
.y1e4{bottom:739.160175px;}
.y92{bottom:739.293045px;}
.y12d{bottom:739.576125px;}
.y3a{bottom:740.793045px;}
.y1bd{bottom:741.076125px;}
.y113{bottom:741.114030px;}
.ye2{bottom:744.114030px;}
.y155{bottom:750.076125px;}
.y181{bottom:751.576125px;}
.y63{bottom:753.076125px;}
.y211{bottom:754.576125px;}
.y1e3{bottom:758.660175px;}
.y91{bottom:760.293045px;}
.y12c{bottom:760.576125px;}
.y39{bottom:761.793045px;}
.y1bc{bottom:762.076125px;}
.y112{bottom:762.114030px;}
.ye1{bottom:765.114030px;}
.y154{bottom:771.076125px;}
.y180{bottom:772.576125px;}
.y62{bottom:774.076125px;}
.y210{bottom:775.576125px;}
.y1e2{bottom:778.160175px;}
.y90{bottom:781.293045px;}
.y12b{bottom:781.576125px;}
.y38{bottom:782.793045px;}
.y1bb{bottom:783.076125px;}
.y111{bottom:783.114030px;}
.y224{bottom:784.614030px;}
.ye0{bottom:786.114030px;}
.y153{bottom:792.076125px;}
.y17f{bottom:793.160175px;}
.y61{bottom:795.076125px;}
.y20f{bottom:796.576125px;}
.y1e1{bottom:797.660175px;}
.y8f{bottom:802.293045px;}
.y12a{bottom:802.576125px;}
.y37{bottom:803.793045px;}
.y1ba{bottom:804.076125px;}
.y110{bottom:804.114030px;}
.y223{bottom:805.614030px;}
.ydf{bottom:807.114030px;}
.y17e{bottom:812.660175px;}
.y152{bottom:813.076125px;}
.y60{bottom:816.076125px;}
.y26{bottom:816.339825px;}
.y1e0{bottom:817.160175px;}
.y20e{bottom:817.576125px;}
.y8e{bottom:823.293045px;}
.y129{bottom:823.576125px;}
.y35{bottom:824.793045px;}
.y1b9{bottom:825.076125px;}
.y10f{bottom:825.114030px;}
.y222{bottom:826.614030px;}
.yde{bottom:828.114030px;}
.y36{bottom:828.614595px;}
.y17d{bottom:832.160175px;}
.y151{bottom:834.076125px;}
.y25{bottom:836.249925px;}
.y5f{bottom:836.660175px;}
.y20d{bottom:838.576125px;}
.y8d{bottom:844.293045px;}
.y128{bottom:844.576125px;}
.y34{bottom:845.793045px;}
.y1b8{bottom:846.076125px;}
.y10e{bottom:846.114030px;}
.y221{bottom:847.614030px;}
.ydd{bottom:849.114030px;}
.y229{bottom:849.213150px;}
.y17c{bottom:851.660175px;}
.y150{bottom:855.076125px;}
.y5e{bottom:856.160175px;}
.y20c{bottom:859.576125px;}
.y8c{bottom:865.293045px;}
.y127{bottom:865.576125px;}
.y33{bottom:866.793045px;}
.y1b7{bottom:867.076125px;}
.y10d{bottom:867.114030px;}
.y220{bottom:868.614030px;}
.ydc{bottom:870.114030px;}
.y17b{bottom:871.160175px;}
.y24{bottom:875.249925px;}
.y5d{bottom:875.660175px;}
.y20b{bottom:880.576125px;}
.y8b{bottom:886.293045px;}
.y126{bottom:886.576125px;}
.y32{bottom:887.793045px;}
.y10c{bottom:888.114030px;}
.y21f{bottom:889.614030px;}
.y17a{bottom:890.660175px;}
.ydb{bottom:891.114030px;}
.y23{bottom:895.160175px;}
.y20a{bottom:901.576125px;}
.y8a{bottom:907.293045px;}
.y125{bottom:907.576125px;}
.y31{bottom:908.793045px;}
.y10b{bottom:909.114030px;}
.y179{bottom:910.160175px;}
.y21e{bottom:910.614030px;}
.yda{bottom:912.114030px;}
.y22{bottom:914.660175px;}
.y209{bottom:922.576125px;}
.y89{bottom:928.293045px;}
.y124{bottom:928.576125px;}
.y178{bottom:929.660175px;}
.y30{bottom:929.793045px;}
.y10a{bottom:930.114030px;}
.y21d{bottom:931.614030px;}
.yd9{bottom:933.114030px;}
.y21{bottom:934.160175px;}
.y208{bottom:943.576125px;}
.y88{bottom:949.293045px;}
.y123{bottom:949.576125px;}
.y2f{bottom:950.793045px;}
.y109{bottom:951.114030px;}
.y21c{bottom:952.614030px;}
.y20{bottom:953.660175px;}
.yd8{bottom:954.114030px;}
.y207{bottom:964.576125px;}
.y87{bottom:970.293045px;}
.y122{bottom:970.576125px;}
.y108{bottom:972.114030px;}
.y1f{bottom:973.160175px;}
.y21b{bottom:973.614030px;}
.yd7{bottom:975.114030px;}
.y206{bottom:986.908275px;}
.y2e{bottom:991.293045px;}
.y121{bottom:991.576125px;}
.y1e{bottom:992.660175px;}
.y107{bottom:993.114030px;}
.y21a{bottom:994.614030px;}
.yd6{bottom:996.114030px;}
.h7{height:27.750015px;}
.he{height:35.957033px;}
.hc{height:39.552738px;}
.h1c{height:42.108398px;}
.h9{height:43.989258px;}
.h10{height:46.080000px;}
.h6{height:46.787109px;}
.h19{height:48.243164px;}
.ha{height:49.885530px;}
.hb{height:51.465820px;}
.h5{height:53.935547px;}
.h3{height:56.232000px;}
.hf{height:58.653677px;}
.h4{height:59.329102px;}
.h11{height:88.125360px;}
.h13{height:164.703000px;}
.hd{height:232.839450px;}
.h1d{height:283.812750px;}
.h1b{height:1011.712800px;}
.h8{height:1012.125300px;}
.h2{height:1012.254750px;}
.h16{height:1012.537950px;}
.h12{height:1012.788600px;}
.h15{height:1014.609600px;}
.h18{height:1014.714000px;}
.h1a{height:1015.575750px;}
.h14{height:1017.075750px;}
.h17{height:1017.609600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:519.517500px;}
.w5{width:520.326000px;}
.w8{width:520.524000px;}
.w18{width:520.656000px;}
.w1d{width:523.114500px;}
.w1a{width:523.395000px;}
.w19{width:523.576500px;}
.w1c{width:523.873500px;}
.wc{width:524.319000px;}
.w14{width:526.447500px;}
.w11{width:526.777500px;}
.wf{width:527.008500px;}
.we{width:527.041500px;}
.w15{width:527.487000px;}
.w17{width:527.503500px;}
.w12{width:527.800500px;}
.w10{width:527.850000px;}
.w9{width:527.982000px;}
.w1e{width:548.262600px;}
.w6{width:552.762600px;}
.wb{width:561.762600px;}
.w16{width:561.838350px;}
.w13{width:562.833300px;}
.w7{width:562.905900px;}
.wa{width:563.007600px;}
.w1b{width:564.863850px;}
.w4{width:566.190600px;}
.wd{width:566.643000px;}
.w2{width:573.588300px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:4.125000px;}
.x2{left:6.006900px;}
.x13{left:9.500000px;}
.xf{left:11.713999px;}
.x3{left:12.738900px;}
.x18{left:25.797750px;}
.x17{left:27.973950px;}
.x1a{left:37.500000px;}
.x10{left:59.071650px;}
.x16{left:60.714000px;}
.xd{left:71.588850px;}
.x4{left:88.020150px;}
.xb{left:163.364700px;}
.x1{left:165.043350px;}
.xc{left:169.703700px;}
.x19{left:172.328700px;}
.x11{left:182.469000px;}
.x14{left:184.300500px;}
.x9{left:186.701250px;}
.xe{left:215.585550px;}
.x7{left:253.974000px;}
.x15{left:267.898650px;}
.x6{left:388.737450px;}
.x5{left:430.986450px;}
.x8{left:481.968900px;}
.x12{left:524.832900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.032533pt;}
.ls9{letter-spacing:-0.011733pt;}
.ls2{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004373pt;}
.lsc{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.011733pt;}
.ls12{letter-spacing:0.023573pt;}
.ls0{letter-spacing:0.026667pt;}
.ls5{letter-spacing:0.029333pt;}
.lsb{letter-spacing:0.410667pt;}
.ls6{letter-spacing:0.551467pt;}
.ls15{letter-spacing:0.610133pt;}
.ls3{letter-spacing:0.810667pt;}
.ls16{letter-spacing:1.026667pt;}
.ls4{letter-spacing:1.249600pt;}
.ls11{letter-spacing:2.546133pt;}
.ls17{letter-spacing:7.080480pt;}
.ls18{letter-spacing:9.773867pt;}
.lsd{letter-spacing:14.576107pt;}
.ls13{letter-spacing:21.970667pt;}
.ls10{letter-spacing:32.794667pt;}
.ls14{letter-spacing:159.654709pt;}
.lse{letter-spacing:174.321376pt;}
.ls7{letter-spacing:178.741333pt;}
.wsb{word-spacing:-32.853333pt;}
.wsd{word-spacing:-15.693333pt;}
.wsc{word-spacing:-15.276800pt;}
.ws5{word-spacing:-14.678400pt;}
.ws0{word-spacing:-14.666667pt;}
.ws6{word-spacing:-14.654933pt;}
.ws7{word-spacing:-13.634133pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.322667pt;}
.ws9{word-spacing:-11.733333pt;}
.ws8{word-spacing:-11.093333pt;}
.ws4{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:4.889067pt;}
._23{margin-left:-22.457920pt;}
._24{margin-left:-21.542080pt;}
._21{margin-left:-16.397333pt;}
._f{margin-left:-14.100267pt;}
._13{margin-left:-13.011733pt;}
._b{margin-left:-6.282133pt;}
._20{margin-left:-5.201600pt;}
._3{margin-left:-4.048000pt;}
._1{margin-left:-2.816000pt;}
._0{margin-left:-1.114667pt;}
._4{width:1.056000pt;}
._5{width:2.053333pt;}
._2{width:3.050667pt;}
._c{width:4.389333pt;}
._a{width:5.354667pt;}
._e{width:6.508907pt;}
._8{width:7.811093pt;}
._18{width:8.826773pt;}
._1e{width:9.804693pt;}
._d{width:10.794667pt;}
._7{width:11.952000pt;}
._19{width:13.131040pt;}
._1d{width:14.810667pt;}
._10{width:15.795147pt;}
._6{width:16.778667pt;}
._1c{width:18.224000pt;}
._1f{width:19.240587pt;}
._9{width:20.272000pt;}
._1a{width:21.705973pt;}
._17{width:22.629707pt;}
._1b{width:24.291733pt;}
._11{width:25.440000pt;}
._12{width:27.079467pt;}
._14{width:28.570667pt;}
._15{width:29.769067pt;}
._16{width:30.690133pt;}
._22{width:31.643733pt;}
._25{width:32.842667pt;}
._26{width:34.873493pt;}
.fs3{font-size:35.555557pt;}
.fs2{font-size:39.111115pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:46.933333pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:78.224000pt;}
.y0{bottom:0.000000pt;}
.y228{bottom:6.628413pt;}
.yb3{bottom:8.000000pt;}
.y105{bottom:8.101400pt;}
.y1a{bottom:9.711907pt;}
.y1c{bottom:10.266693pt;}
.y1df{bottom:11.697907pt;}
.y86{bottom:16.067707pt;}
.y205{bottom:17.031240pt;}
.y1a1{bottom:17.401040pt;}
.y227{bottom:21.295080pt;}
.y1b6{bottom:22.734333pt;}
.yd4{bottom:25.100253pt;}
.y2d{bottom:25.373933pt;}
.yb2{bottom:26.364573pt;}
.y104{bottom:26.768027pt;}
.y19{bottom:27.045240pt;}
.y1de{bottom:29.031267pt;}
.y14f{bottom:32.067667pt;}
.y177{bottom:33.401000pt;}
.y5c{bottom:33.665933pt;}
.y204{bottom:34.364600pt;}
.y85{bottom:34.734333pt;}
.y226{bottom:35.961693pt;}
.y1a0{bottom:36.067667pt;}
.y1b5{bottom:41.401000pt;}
.yd3{bottom:42.433587pt;}
.yb1{bottom:43.697907pt;}
.y18{bottom:44.378573pt;}
.y103{bottom:45.434693pt;}
.y1dd{bottom:46.734333pt;}
.y1b{bottom:50.092893pt;}
.y14e{bottom:50.734333pt;}
.y5b{bottom:50.999267pt;}
.y203{bottom:51.697933pt;}
.y2b{bottom:51.938733pt;}
.y176{bottom:52.067667pt;}
.y84{bottom:53.401000pt;}
.y19f{bottom:54.734333pt;}
.y231{bottom:55.012400pt;}
.yd2{bottom:59.766920pt;}
.y1b4{bottom:60.067667pt;}
.yaf{bottom:61.031240pt;}
.y102{bottom:64.101360pt;}
.yb0{bottom:64.119373pt;}
.y1dc{bottom:65.401000pt;}
.y5a{bottom:68.332600pt;}
.y202{bottom:69.031267pt;}
.y14d{bottom:69.401000pt;}
.y175{bottom:70.734333pt;}
.y83{bottom:72.067667pt;}
.y19e{bottom:73.401000pt;}
.y230{bottom:73.679067pt;}
.yd1{bottom:77.100253pt;}
.y1b3{bottom:78.734333pt;}
.y17{bottom:79.045240pt;}
.y101{bottom:82.768027pt;}
.y1db{bottom:84.067667pt;}
.y59{bottom:85.665933pt;}
.y201{bottom:86.364600pt;}
.y14c{bottom:88.067667pt;}
.y174{bottom:89.401000pt;}
.y82{bottom:90.734333pt;}
.y2c{bottom:91.214480pt;}
.y19d{bottom:92.067667pt;}
.y22f{bottom:92.345733pt;}
.yd0{bottom:94.433587pt;}
.y16{bottom:96.378573pt;}
.y1b2{bottom:97.401000pt;}
.y100{bottom:101.434693pt;}
.y1da{bottom:102.734333pt;}
.y58{bottom:102.999267pt;}
.y200{bottom:103.697933pt;}
.y14b{bottom:106.734333pt;}
.y51{bottom:107.417800pt;}
.y173{bottom:108.067667pt;}
.yd5{bottom:109.100507pt;}
.ycc{bottom:109.316813pt;}
.yae{bottom:109.385827pt;}
.y81{bottom:109.401000pt;}
.y225{bottom:109.833907pt;}
.y219{bottom:110.433840pt;}
.y19c{bottom:110.734333pt;}
.y22e{bottom:111.012400pt;}
.ycf{bottom:111.766920pt;}
.y106{bottom:111.767173pt;}
.yad{bottom:111.816040pt;}
.y1d{bottom:113.134200pt;}
.y1{bottom:113.385827pt;}
.y1b1{bottom:116.067667pt;}
.yff{bottom:120.101360pt;}
.y57{bottom:120.332600pt;}
.y1ff{bottom:121.031267pt;}
.y1d9{bottom:121.401000pt;}
.y14a{bottom:125.401000pt;}
.y172{bottom:126.734333pt;}
.y80{bottom:128.067667pt;}
.ycd{bottom:129.100253pt;}
.y19b{bottom:129.401000pt;}
.y22d{bottom:129.679067pt;}
.yac{bottom:130.112973pt;}
.y15{bottom:131.045240pt;}
.yce{bottom:132.188387pt;}
.y1b0{bottom:134.734333pt;}
.y56{bottom:137.665933pt;}
.yfe{bottom:138.768027pt;}
.y1d8{bottom:140.067667pt;}
.y149{bottom:144.067667pt;}
.y171{bottom:145.401000pt;}
.y7f{bottom:146.734333pt;}
.yab{bottom:147.446307pt;}
.y19a{bottom:148.067667pt;}
.y22c{bottom:148.345733pt;}
.y14{bottom:148.378573pt;}
.y1af{bottom:153.401000pt;}
.y55{bottom:154.999267pt;}
.y1fe{bottom:156.067667pt;}
.yfd{bottom:157.434693pt;}
.y1d7{bottom:158.734333pt;}
.y148{bottom:162.734333pt;}
.y170{bottom:164.067667pt;}
.yaa{bottom:164.779640pt;}
.y7e{bottom:165.401000pt;}
.y199{bottom:166.734333pt;}
.y22b{bottom:167.012400pt;}
.y1ae{bottom:172.067667pt;}
.y54{bottom:172.332600pt;}
.ycb{bottom:174.482707pt;}
.y1fd{bottom:174.734333pt;}
.yfc{bottom:176.101360pt;}
.y1d6{bottom:178.585133pt;}
.y147{bottom:181.401000pt;}
.ya9{bottom:182.112973pt;}
.y16f{bottom:182.734333pt;}
.y13{bottom:183.045240pt;}
.y7d{bottom:184.067667pt;}
.y198{bottom:185.401000pt;}
.y22a{bottom:185.679067pt;}
.y52{bottom:189.665933pt;}
.y1ad{bottom:190.734333pt;}
.y53{bottom:192.754067pt;}
.yca{bottom:193.149373pt;}
.y1fc{bottom:193.401000pt;}
.yfb{bottom:194.768027pt;}
.ya8{bottom:199.446307pt;}
.y146{bottom:200.067667pt;}
.y12{bottom:200.378573pt;}
.y16e{bottom:201.401000pt;}
.y7c{bottom:202.734333pt;}
.y197{bottom:204.067667pt;}
.y1ac{bottom:209.401000pt;}
.yc8{bottom:211.816040pt;}
.y1fb{bottom:212.067667pt;}
.yfa{bottom:213.434693pt;}
.yc9{bottom:215.212973pt;}
.ya7{bottom:216.779640pt;}
.y11{bottom:217.711907pt;}
.y145{bottom:218.734333pt;}
.y1d5{bottom:219.697933pt;}
.y16d{bottom:220.067667pt;}
.y7b{bottom:221.401000pt;}
.y196{bottom:222.734333pt;}
.y1ab{bottom:228.067667pt;}
.yc7{bottom:230.482707pt;}
.y1fa{bottom:230.734333pt;}
.yf9{bottom:232.101360pt;}
.ya6{bottom:234.112973pt;}
.y10{bottom:235.045240pt;}
.y1d4{bottom:237.031267pt;}
.y144{bottom:237.401000pt;}
.y16c{bottom:238.734333pt;}
.y7a{bottom:240.067667pt;}
.y195{bottom:241.401000pt;}
.y1aa{bottom:246.734333pt;}
.y50{bottom:247.816040pt;}
.yc6{bottom:249.149373pt;}
.y1f9{bottom:249.401000pt;}
.yf8{bottom:250.768027pt;}
.ya5{bottom:251.446307pt;}
.yf{bottom:252.378573pt;}
.y1d3{bottom:254.364600pt;}
.y143{bottom:256.067667pt;}
.y16b{bottom:258.585133pt;}
.y79{bottom:258.734333pt;}
.y194{bottom:260.067667pt;}
.y1a9{bottom:265.401000pt;}
.y4f{bottom:266.482707pt;}
.yc5{bottom:267.816040pt;}
.y1f8{bottom:268.067667pt;}
.ya4{bottom:269.149373pt;}
.yf7{bottom:269.434693pt;}
.ye{bottom:269.711907pt;}
.y1d2{bottom:271.697933pt;}
.y142{bottom:274.734333pt;}
.y78{bottom:277.401000pt;}
.y193{bottom:278.734333pt;}
.y16a{bottom:281.401000pt;}
.y1a8{bottom:284.067667pt;}
.y4e{bottom:285.149373pt;}
.y1f7{bottom:286.734333pt;}
.yd{bottom:287.045240pt;}
.ya3{bottom:287.816040pt;}
.yf6{bottom:288.101360pt;}
.y1d1{bottom:289.031267pt;}
.y141{bottom:293.031267pt;}
.y77{bottom:296.067667pt;}
.y192{bottom:297.401000pt;}
.y169{bottom:299.697933pt;}
.y1a7{bottom:302.734333pt;}
.y4d{bottom:303.816040pt;}
.yc{bottom:304.378573pt;}
.yc4{bottom:304.628307pt;}
.y1f6{bottom:305.401000pt;}
.y1d0{bottom:306.364600pt;}
.ya1{bottom:306.482707pt;}
.yf5{bottom:306.768027pt;}
.ya2{bottom:309.879640pt;}
.y140{bottom:310.364600pt;}
.y76{bottom:314.734333pt;}
.y191{bottom:316.067667pt;}
.y168{bottom:317.031267pt;}
.y1a6{bottom:321.401000pt;}
.yb{bottom:321.711907pt;}
.y4c{bottom:322.482707pt;}
.y1cf{bottom:323.697933pt;}
.y1f5{bottom:324.067667pt;}
.ya0{bottom:325.149373pt;}
.yf4{bottom:325.434693pt;}
.y13f{bottom:327.697933pt;}
.y75{bottom:333.401000pt;}
.y167{bottom:334.364600pt;}
.y190{bottom:334.734333pt;}
.ya{bottom:339.045240pt;}
.yc3{bottom:339.816040pt;}
.y1a5{bottom:340.067667pt;}
.y4b{bottom:341.149373pt;}
.y1ce{bottom:341.401000pt;}
.y1f4{bottom:342.734333pt;}
.y9f{bottom:343.816040pt;}
.yf3{bottom:344.101360pt;}
.y13e{bottom:345.031267pt;}
.y166{bottom:351.697933pt;}
.y74{bottom:352.067667pt;}
.y18f{bottom:353.401000pt;}
.y9{bottom:356.378573pt;}
.yc2{bottom:358.482707pt;}
.y1a4{bottom:358.734333pt;}
.y4a{bottom:359.816040pt;}
.y1cd{bottom:360.067667pt;}
.y1f3{bottom:361.401000pt;}
.y13d{bottom:362.364600pt;}
.y9e{bottom:362.482707pt;}
.yf2{bottom:362.768027pt;}
.y165{bottom:369.031267pt;}
.y73{bottom:370.734333pt;}
.y18e{bottom:372.067667pt;}
.yc1{bottom:377.149373pt;}
.y1a3{bottom:377.401000pt;}
.y49{bottom:378.482707pt;}
.y1cc{bottom:378.734333pt;}
.y13c{bottom:379.697933pt;}
.y1f2{bottom:380.067667pt;}
.y9d{bottom:381.149373pt;}
.y2a{bottom:381.272067pt;}
.yf1{bottom:381.434693pt;}
.y164{bottom:386.734333pt;}
.y72{bottom:389.401000pt;}
.y18d{bottom:390.734333pt;}
.yc0{bottom:395.816040pt;}
.y1a2{bottom:396.067667pt;}
.y13b{bottom:397.031267pt;}
.y48{bottom:397.149373pt;}
.y1cb{bottom:397.401000pt;}
.y1f1{bottom:398.734333pt;}
.y120{bottom:399.580293pt;}
.y9c{bottom:399.816040pt;}
.yf0{bottom:400.101360pt;}
.y163{bottom:405.401000pt;}
.y71{bottom:408.067667pt;}
.y18c{bottom:409.401000pt;}
.ybf{bottom:414.482707pt;}
.y13a{bottom:414.734333pt;}
.y47{bottom:415.816040pt;}
.y1ca{bottom:416.067667pt;}
.y1f0{bottom:417.401000pt;}
.y9b{bottom:418.482707pt;}
.yef{bottom:418.768027pt;}
.y162{bottom:424.067667pt;}
.y70{bottom:426.734333pt;}
.y18b{bottom:428.067667pt;}
.ybe{bottom:433.149373pt;}
.y139{bottom:433.401000pt;}
.y46{bottom:434.482707pt;}
.y1c9{bottom:434.734333pt;}
.y11f{bottom:434.768027pt;}
.y9a{bottom:437.149373pt;}
.y1ef{bottom:437.251800pt;}
.yee{bottom:437.434693pt;}
.y161{bottom:442.734333pt;}
.y6f{bottom:445.401000pt;}
.y18a{bottom:446.734333pt;}
.ybd{bottom:451.816040pt;}
.y138{bottom:452.067667pt;}
.y45{bottom:453.149373pt;}
.y1c8{bottom:453.401000pt;}
.y11e{bottom:453.434693pt;}
.y99{bottom:455.816040pt;}
.yed{bottom:456.101360pt;}
.y160{bottom:461.401000pt;}
.y6e{bottom:464.067667pt;}
.y189{bottom:465.401000pt;}
.y8{bottom:466.081640pt;}
.ybc{bottom:470.482707pt;}
.y137{bottom:470.734333pt;}
.y44{bottom:471.816040pt;}
.y1c7{bottom:472.067667pt;}
.y11d{bottom:472.101360pt;}
.y98{bottom:474.482707pt;}
.yec{bottom:474.768027pt;}
.y15f{bottom:480.067667pt;}
.y6d{bottom:482.734333pt;}
.y1ee{bottom:483.697933pt;}
.y188{bottom:484.067667pt;}
.y7{bottom:484.748307pt;}
.ybb{bottom:489.149373pt;}
.y136{bottom:489.401000pt;}
.y43{bottom:490.482707pt;}
.y1c6{bottom:490.734333pt;}
.y11c{bottom:490.768027pt;}
.y97{bottom:493.149373pt;}
.yeb{bottom:493.434693pt;}
.y15e{bottom:498.734333pt;}
.y1ed{bottom:501.031267pt;}
.y6c{bottom:501.401000pt;}
.y187{bottom:502.734333pt;}
.y6{bottom:503.414973pt;}
.y29{bottom:504.067667pt;}
.yba{bottom:507.816040pt;}
.y135{bottom:508.067667pt;}
.y42{bottom:509.149373pt;}
.y1c5{bottom:509.401000pt;}
.y11b{bottom:509.434693pt;}
.y96{bottom:511.816040pt;}
.yea{bottom:512.101360pt;}
.y15d{bottom:517.401000pt;}
.y1ec{bottom:518.364600pt;}
.y6b{bottom:520.067667pt;}
.y186{bottom:521.401000pt;}
.y5{bottom:522.081640pt;}
.yb9{bottom:526.482707pt;}
.y134{bottom:526.734333pt;}
.y41{bottom:527.816040pt;}
.y1c4{bottom:528.067667pt;}
.y11a{bottom:528.101360pt;}
.y95{bottom:530.482707pt;}
.ye9{bottom:530.768027pt;}
.y1eb{bottom:535.697933pt;}
.y15c{bottom:536.067667pt;}
.y6a{bottom:538.734333pt;}
.y218{bottom:540.067667pt;}
.yb8{bottom:545.149373pt;}
.y133{bottom:545.401000pt;}
.y40{bottom:546.482707pt;}
.y1c3{bottom:546.734333pt;}
.y119{bottom:546.768027pt;}
.ye8{bottom:549.434693pt;}
.y1ea{bottom:553.031267pt;}
.y15b{bottom:554.734333pt;}
.y69{bottom:557.401000pt;}
.y217{bottom:558.734333pt;}
.yb7{bottom:563.816040pt;}
.y132{bottom:564.067667pt;}
.y3f{bottom:565.149373pt;}
.y1c2{bottom:565.401000pt;}
.y118{bottom:565.434693pt;}
.y94{bottom:567.294973pt;}
.ye7{bottom:568.101360pt;}
.y1e9{bottom:570.364600pt;}
.y28{bottom:570.734333pt;}
.y15a{bottom:573.401000pt;}
.y68{bottom:576.067667pt;}
.y216{bottom:577.401000pt;}
.yb6{bottom:582.482707pt;}
.y131{bottom:582.734333pt;}
.y3e{bottom:583.816040pt;}
.y1c1{bottom:584.067667pt;}
.y117{bottom:584.101360pt;}
.ye6{bottom:586.768027pt;}
.y1e8{bottom:587.697933pt;}
.y27{bottom:589.401000pt;}
.y159{bottom:592.067667pt;}
.y185{bottom:593.401000pt;}
.y67{bottom:594.734333pt;}
.y215{bottom:596.067667pt;}
.yb5{bottom:601.149373pt;}
.y130{bottom:601.401000pt;}
.y3d{bottom:602.482707pt;}
.y1c0{bottom:602.734333pt;}
.y116{bottom:602.768027pt;}
.y1e7{bottom:605.031267pt;}
.ye5{bottom:605.434693pt;}
.y158{bottom:610.734333pt;}
.y184{bottom:612.067667pt;}
.y66{bottom:613.401000pt;}
.y214{bottom:614.734333pt;}
.y4{bottom:617.947373pt;}
.yb4{bottom:619.816040pt;}
.y12f{bottom:620.067667pt;}
.y3c{bottom:621.149373pt;}
.y1bf{bottom:621.401000pt;}
.y115{bottom:621.434693pt;}
.y1e6{bottom:622.364600pt;}
.ye4{bottom:624.101360pt;}
.y157{bottom:629.401000pt;}
.y183{bottom:630.734333pt;}
.y65{bottom:632.067667pt;}
.y213{bottom:633.401000pt;}
.y3{bottom:635.280707pt;}
.y93{bottom:638.482707pt;}
.y12e{bottom:638.734333pt;}
.y1e5{bottom:639.697933pt;}
.y3b{bottom:639.816040pt;}
.y1be{bottom:640.067667pt;}
.y114{bottom:640.101360pt;}
.ye3{bottom:642.768027pt;}
.y156{bottom:648.067667pt;}
.y182{bottom:649.401000pt;}
.y64{bottom:650.734333pt;}
.y212{bottom:652.067667pt;}
.y2{bottom:652.614040pt;}
.y1e4{bottom:657.031267pt;}
.y92{bottom:657.149373pt;}
.y12d{bottom:657.401000pt;}
.y3a{bottom:658.482707pt;}
.y1bd{bottom:658.734333pt;}
.y113{bottom:658.768027pt;}
.ye2{bottom:661.434693pt;}
.y155{bottom:666.734333pt;}
.y181{bottom:668.067667pt;}
.y63{bottom:669.401000pt;}
.y211{bottom:670.734333pt;}
.y1e3{bottom:674.364600pt;}
.y91{bottom:675.816040pt;}
.y12c{bottom:676.067667pt;}
.y39{bottom:677.149373pt;}
.y1bc{bottom:677.401000pt;}
.y112{bottom:677.434693pt;}
.ye1{bottom:680.101360pt;}
.y154{bottom:685.401000pt;}
.y180{bottom:686.734333pt;}
.y62{bottom:688.067667pt;}
.y210{bottom:689.401000pt;}
.y1e2{bottom:691.697933pt;}
.y90{bottom:694.482707pt;}
.y12b{bottom:694.734333pt;}
.y38{bottom:695.816040pt;}
.y1bb{bottom:696.067667pt;}
.y111{bottom:696.101360pt;}
.y224{bottom:697.434693pt;}
.ye0{bottom:698.768027pt;}
.y153{bottom:704.067667pt;}
.y17f{bottom:705.031267pt;}
.y61{bottom:706.734333pt;}
.y20f{bottom:708.067667pt;}
.y1e1{bottom:709.031267pt;}
.y8f{bottom:713.149373pt;}
.y12a{bottom:713.401000pt;}
.y37{bottom:714.482707pt;}
.y1ba{bottom:714.734333pt;}
.y110{bottom:714.768027pt;}
.y223{bottom:716.101360pt;}
.ydf{bottom:717.434693pt;}
.y17e{bottom:722.364600pt;}
.y152{bottom:722.734333pt;}
.y60{bottom:725.401000pt;}
.y26{bottom:725.635400pt;}
.y1e0{bottom:726.364600pt;}
.y20e{bottom:726.734333pt;}
.y8e{bottom:731.816040pt;}
.y129{bottom:732.067667pt;}
.y35{bottom:733.149373pt;}
.y1b9{bottom:733.401000pt;}
.y10f{bottom:733.434693pt;}
.y222{bottom:734.768027pt;}
.yde{bottom:736.101360pt;}
.y36{bottom:736.546307pt;}
.y17d{bottom:739.697933pt;}
.y151{bottom:741.401000pt;}
.y25{bottom:743.333267pt;}
.y5f{bottom:743.697933pt;}
.y20d{bottom:745.401000pt;}
.y8d{bottom:750.482707pt;}
.y128{bottom:750.734333pt;}
.y34{bottom:751.816040pt;}
.y1b8{bottom:752.067667pt;}
.y10e{bottom:752.101360pt;}
.y221{bottom:753.434693pt;}
.ydd{bottom:754.768027pt;}
.y229{bottom:754.856133pt;}
.y17c{bottom:757.031267pt;}
.y150{bottom:760.067667pt;}
.y5e{bottom:761.031267pt;}
.y20c{bottom:764.067667pt;}
.y8c{bottom:769.149373pt;}
.y127{bottom:769.401000pt;}
.y33{bottom:770.482707pt;}
.y1b7{bottom:770.734333pt;}
.y10d{bottom:770.768027pt;}
.y220{bottom:772.101360pt;}
.ydc{bottom:773.434693pt;}
.y17b{bottom:774.364600pt;}
.y24{bottom:777.999933pt;}
.y5d{bottom:778.364600pt;}
.y20b{bottom:782.734333pt;}
.y8b{bottom:787.816040pt;}
.y126{bottom:788.067667pt;}
.y32{bottom:789.149373pt;}
.y10c{bottom:789.434693pt;}
.y21f{bottom:790.768027pt;}
.y17a{bottom:791.697933pt;}
.ydb{bottom:792.101360pt;}
.y23{bottom:795.697933pt;}
.y20a{bottom:801.401000pt;}
.y8a{bottom:806.482707pt;}
.y125{bottom:806.734333pt;}
.y31{bottom:807.816040pt;}
.y10b{bottom:808.101360pt;}
.y179{bottom:809.031267pt;}
.y21e{bottom:809.434693pt;}
.yda{bottom:810.768027pt;}
.y22{bottom:813.031267pt;}
.y209{bottom:820.067667pt;}
.y89{bottom:825.149373pt;}
.y124{bottom:825.401000pt;}
.y178{bottom:826.364600pt;}
.y30{bottom:826.482707pt;}
.y10a{bottom:826.768027pt;}
.y21d{bottom:828.101360pt;}
.yd9{bottom:829.434693pt;}
.y21{bottom:830.364600pt;}
.y208{bottom:838.734333pt;}
.y88{bottom:843.816040pt;}
.y123{bottom:844.067667pt;}
.y2f{bottom:845.149373pt;}
.y109{bottom:845.434693pt;}
.y21c{bottom:846.768027pt;}
.y20{bottom:847.697933pt;}
.yd8{bottom:848.101360pt;}
.y207{bottom:857.401000pt;}
.y87{bottom:862.482707pt;}
.y122{bottom:862.734333pt;}
.y108{bottom:864.101360pt;}
.y1f{bottom:865.031267pt;}
.y21b{bottom:865.434693pt;}
.yd7{bottom:866.768027pt;}
.y206{bottom:877.251800pt;}
.y2e{bottom:881.149373pt;}
.y121{bottom:881.401000pt;}
.y1e{bottom:882.364600pt;}
.y107{bottom:882.768027pt;}
.y21a{bottom:884.101360pt;}
.yd6{bottom:885.434693pt;}
.h7{height:24.666680pt;}
.he{height:31.961807pt;}
.hc{height:35.157989pt;}
.h1c{height:37.429688pt;}
.h9{height:39.101562pt;}
.h10{height:40.960000pt;}
.h6{height:41.588542pt;}
.h19{height:42.882812pt;}
.ha{height:44.342693pt;}
.hb{height:45.747396pt;}
.h5{height:47.942708pt;}
.h3{height:49.984000pt;}
.hf{height:52.136602pt;}
.h4{height:52.736979pt;}
.h11{height:78.333653pt;}
.h13{height:146.402667pt;}
.hd{height:206.968400pt;}
.h1d{height:252.278000pt;}
.h1b{height:899.300267pt;}
.h8{height:899.666933pt;}
.h2{height:899.782000pt;}
.h16{height:900.033733pt;}
.h12{height:900.256533pt;}
.h15{height:901.875200pt;}
.h18{height:901.968000pt;}
.h1a{height:902.734000pt;}
.h14{height:904.067333pt;}
.h17{height:904.541867pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:461.793333pt;}
.w5{width:462.512000pt;}
.w8{width:462.688000pt;}
.w18{width:462.805333pt;}
.w1d{width:464.990667pt;}
.w1a{width:465.240000pt;}
.w19{width:465.401333pt;}
.w1c{width:465.665333pt;}
.wc{width:466.061333pt;}
.w14{width:467.953333pt;}
.w11{width:468.246667pt;}
.wf{width:468.452000pt;}
.we{width:468.481333pt;}
.w15{width:468.877333pt;}
.w17{width:468.892000pt;}
.w12{width:469.156000pt;}
.w10{width:469.200000pt;}
.w9{width:469.317333pt;}
.w1e{width:487.344533pt;}
.w6{width:491.344533pt;}
.wb{width:499.344533pt;}
.w16{width:499.411867pt;}
.w13{width:500.296267pt;}
.w7{width:500.360800pt;}
.wa{width:500.451200pt;}
.w1b{width:502.101200pt;}
.w4{width:503.280533pt;}
.wd{width:503.682667pt;}
.w2{width:509.856267pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.666667pt;}
.x2{left:5.339467pt;}
.x13{left:8.444444pt;}
.xf{left:10.412444pt;}
.x3{left:11.323467pt;}
.x18{left:22.931333pt;}
.x17{left:24.865733pt;}
.x1a{left:33.333333pt;}
.x10{left:52.508133pt;}
.x16{left:53.968000pt;}
.xd{left:63.634533pt;}
.x4{left:78.240133pt;}
.xb{left:145.213067pt;}
.x1{left:146.705200pt;}
.xc{left:150.847733pt;}
.x19{left:153.181067pt;}
.x11{left:162.194667pt;}
.x14{left:163.822667pt;}
.x9{left:165.956667pt;}
.xe{left:191.631600pt;}
.x7{left:225.754667pt;}
.x15{left:238.132133pt;}
.x6{left:345.544400pt;}
.x5{left:383.099067pt;}
.x8{left:428.416800pt;}
.x12{left:466.518133pt;}
}




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