
    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_dc366ed4389b19424aa1a306.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903809;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_c1529106692d0c7814fd1a2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_ed1bac43abb2f299c7c1ab2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a0cd643f7f63cdd57b95aad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f229dd674302ebddca85c7c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9d9849084f8d9b3ec83077bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_982648aee0b00b7e628e5886.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_8e2286c0de6da724022ef20f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_6a08e3ea4e9feb239cf3667d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979000;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_2fe29ba24019f624b1b40ada.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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_4ca831b84ab03d0bca8bf7b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_afe7ac962d7b95172e82cf14.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971000;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_1d5142897b6237f457307fc0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979000;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_2fe29ba24019f624b1b40ada.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942000;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_44554eb46cb8aa240a7551f4.woff2')format("woff");}.fff{font-family:fff;line-height:0.970515;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_6cb027bc2bb4e1d5db8dd917.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.735000;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);}
.v6{vertical-align:-17.244113px;}
.v3{vertical-align:-13.515591px;}
.v2{vertical-align:-12.475883px;}
.v4{vertical-align:-9.141910px;}
.vf{vertical-align:-7.818867px;}
.v9{vertical-align:-6.273700px;}
.v1{vertical-align:-2.007596px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:3.687613px;}
.ve{vertical-align:4.746108px;}
.v11{vertical-align:6.000000px;}
.v7{vertical-align:7.457045px;}
.v10{vertical-align:8.774937px;}
.va{vertical-align:10.038283px;}
.v5{vertical-align:11.544056px;}
.vb{vertical-align:12.870130px;}
.v8{vertical-align:15.415913px;}
.vc{vertical-align:17.530783px;}
.ls3{letter-spacing:-2.671200px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.016800px;}
.lsc{letter-spacing:0.028800px;}
.ls11{letter-spacing:0.316800px;}
.lsd{letter-spacing:0.532800px;}
.ls6{letter-spacing:0.696000px;}
.ls5{letter-spacing:0.702000px;}
.ls7{letter-spacing:1.362000px;}
.lsa{letter-spacing:1.663200px;}
.lsb{letter-spacing:1.771200px;}
.ls14{letter-spacing:2.448000px;}
.lse{letter-spacing:2.793600px;}
.ls2{letter-spacing:5.256900px;}
.ls12{letter-spacing:11.577600px;}
.ls10{letter-spacing:20.800800px;}
.ls13{letter-spacing:23.263200px;}
.ls16{letter-spacing:34.800000px;}
.ls9{letter-spacing:47.760000px;}
.lsf{letter-spacing:48.067200px;}
.ls15{letter-spacing:193.521600px;}
.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;}
}
.ws27{word-spacing:-66.067200px;}
.ws28{word-spacing:-29.577600px;}
.ws1f{word-spacing:-27.273002px;}
.ws2{word-spacing:-21.016800px;}
.ws4{word-spacing:-21.000000px;}
.ws26{word-spacing:-20.793600px;}
.ws23{word-spacing:-19.771200px;}
.ws22{word-spacing:-19.663200px;}
.ws25{word-spacing:-18.532800px;}
.ws24{word-spacing:-18.028800px;}
.ws5{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.362000px;}
.ws6{word-spacing:-15.696000px;}
.ws8{word-spacing:-15.012000px;}
.ws9{word-spacing:-15.000000px;}
.ws20{word-spacing:-14.048324px;}
.ws21{word-spacing:-12.041485px;}
.ws1c{word-spacing:-11.818301px;}
.ws1d{word-spacing:-10.909201px;}
.ws13{word-spacing:-10.755199px;}
.ws1a{word-spacing:-8.194446px;}
.ws1e{word-spacing:-8.181901px;}
.ws3{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:108.914154px;}
.wsa{word-spacing:111.925699px;}
.ws11{word-spacing:111.926002px;}
.wse{word-spacing:113.467533px;}
.wsf{word-spacing:116.657868px;}
.ws14{word-spacing:118.376037px;}
.ws15{word-spacing:120.493028px;}
.wsb{word-spacing:121.247006px;}
.ws17{word-spacing:123.156388px;}
.wsd{word-spacing:123.577332px;}
.ws16{word-spacing:124.624433px;}
.wsc{word-spacing:129.851032px;}
.ws10{word-spacing:129.851335px;}
.ws18{word-spacing:132.409057px;}
.ws19{word-spacing:132.409360px;}
.ws1b{word-spacing:139.305454px;}
._26{margin-left:-20.550994px;}
._28{margin-left:-18.576000px;}
._2d{margin-left:-17.482020px;}
._1{margin-left:-10.810074px;}
._6{margin-left:-9.793742px;}
._2f{margin-left:-8.753458px;}
._3{margin-left:-7.668685px;}
._2{margin-left:-6.249180px;}
._5{margin-left:-4.619690px;}
._4{margin-left:-2.797012px;}
._0{margin-left:-1.377507px;}
._7{width:1.108800px;}
._c{width:2.836800px;}
._e{width:4.536000px;}
._17{width:6.062400px;}
._f{width:7.125290px;}
._d{width:8.236800px;}
._8{width:9.813600px;}
._9{width:10.864800px;}
._b{width:12.538738px;}
._a{width:13.587387px;}
._18{width:15.055200px;}
._16{width:16.099200px;}
._1a{width:19.036800px;}
._19{width:20.858400px;}
._15{width:22.255200px;}
._1b{width:23.608800px;}
._12{width:24.956400px;}
._14{width:26.325600px;}
._21{width:27.746400px;}
._13{width:29.475290px;}
._20{width:31.291200px;}
._1c{width:32.616000px;}
._1f{width:34.142400px;}
._1e{width:35.625600px;}
._1d{width:36.864000px;}
._24{width:38.260800px;}
._23{width:40.171510px;}
._22{width:41.191200px;}
._11{width:43.008000px;}
._25{width:46.017600px;}
._27{width:66.000000px;}
._2b{width:134.853063px;}
._2c{width:136.861738px;}
._2a{width:138.267643px;}
._29{width:141.682223px;}
._10{width:198.000000px;}
._2e{width:211.730400px;}
.fcb{color:transparent;}
.fca{color:rgb(60,58,60);}
.fc8{color:rgb(122,124,126);}
.fc7{color:rgb(86,86,89);}
.fc6{color:rgb(60,59,60);}
.fc5{color:rgb(241,73,96);}
.fc3{color:rgb(63,65,65);}
.fc2{color:rgb(128,199,192);}
.fc4{color:rgb(95,100,107);}
.fc1{color:rgb(238,34,12);}
.fc9{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:17.839271px;}
.fs10{font-size:22.299013px;}
.fs18{font-size:24.729946px;}
.fsc{font-size:27.273002px;}
.fs9{font-size:27.314821px;}
.fs5{font-size:30.303336px;}
.fs16{font-size:31.218497px;}
.fs8{font-size:34.143678px;}
.fs14{font-size:35.678239px;}
.fs7{font-size:35.850665px;}
.fs4{font-size:36.364003px;}
.fsb{font-size:39.312215px;}
.fsa{font-size:39.394337px;}
.fs15{font-size:40.138284px;}
.fsf{font-size:42.424670px;}
.fs11{font-size:46.827745px;}
.fs12{font-size:49.057465px;}
.fse{font-size:54.546005px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.606672px;}
.fs13{font-size:65.480054px;}
.fs6{font-size:66.667339px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.994355px;}
.fs1{font-size:84.000000px;}
.fs19{font-size:86.400000px;}
.y163{bottom:-49.734824px;}
.y162{bottom:-45.203036px;}
.y12d{bottom:-33.141374px;}
.y12c{bottom:-28.609586px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.039825px;}
.y119{bottom:8.606700px;}
.y11f{bottom:8.832300px;}
.y125{bottom:9.057900px;}
.y11c{bottom:9.469500px;}
.yd2{bottom:9.553050px;}
.yc8{bottom:9.582300px;}
.yc0{bottom:9.611700px;}
.y53{bottom:9.641610px;}
.y122{bottom:9.695100px;}
.y57{bottom:9.714150px;}
.y6a{bottom:9.805050px;}
.y39{bottom:9.844500px;}
.y3e{bottom:9.864300px;}
.y175{bottom:9.941384px;}
.y2f{bottom:10.037850px;}
.y55{bottom:10.089150px;}
.y37{bottom:10.219500px;}
.y45{bottom:10.239300px;}
.yce{bottom:10.317750px;}
.yc4{bottom:10.347000px;}
.y71{bottom:10.361700px;}
.y2d{bottom:10.412850px;}
.y5b{bottom:10.464150px;}
.y35{bottom:10.594500px;}
.y43{bottom:10.614300px;}
.y6f{bottom:10.736700px;}
.y51{bottom:10.744710px;}
.y2b{bottom:10.787850px;}
.y4a{bottom:10.795950px;}
.y59{bottom:10.839150px;}
.y33{bottom:10.969500px;}
.y41{bottom:10.989300px;}
.y6d{bottom:11.020800px;}
.y14e{bottom:11.022859px;}
.y29{bottom:11.072100px;}
.y48{bottom:11.080200px;}
.y4e{bottom:11.119710px;}
.y31{bottom:11.253750px;}
.y6b{bottom:11.305050px;}
.y173{bottom:11.707765px;}
.y177{bottom:12.437470px;}
.y3f{bottom:12.864300px;}
.y4f{bottom:15.619710px;}
.y113{bottom:20.208330px;}
.ybe{bottom:20.909265px;}
.ye2{bottom:21.035970px;}
.yc6{bottom:21.582300px;}
.y141{bottom:23.353124px;}
.y174{bottom:24.159937px;}
.y172{bottom:24.162740px;}
.y80{bottom:24.200790px;}
.y118{bottom:25.106700px;}
.y11e{bottom:25.332300px;}
.y124{bottom:25.557900px;}
.y11b{bottom:25.969500px;}
.y121{bottom:26.195100px;}
.yab{bottom:27.200790px;}
.y90{bottom:28.700790px;}
.y170{bottom:29.550597px;}
.y13e{bottom:31.035095px;}
.y140{bottom:31.035398px;}
.ya8{bottom:31.700790px;}
.y14d{bottom:32.032389px;}
.yd0{bottom:32.053050px;}
.yc7{bottom:32.082300px;}
.ycd{bottom:32.817750px;}
.yc2{bottom:32.847000px;}
.y143{bottom:39.570939px;}
.y13f{bottom:39.571317px;}
.y16f{bottom:40.700331px;}
.y117{bottom:41.606700px;}
.y171{bottom:43.125734px;}
.y4d{bottom:45.619710px;}
.y3d{bottom:45.864300px;}
.y142{bottom:47.253289px;}
.y13c{bottom:47.253592px;}
.y152{bottom:52.028349px;}
.y14f{bottom:53.131542px;}
.y112{bottom:53.208330px;}
.ybd{bottom:53.909265px;}
.ye1{bottom:54.035970px;}
.yd1{bottom:54.553050px;}
.yca{bottom:55.317750px;}
.yc3{bottom:55.347000px;}
.yfe{bottom:55.700790px;}
.y52{bottom:58.031475px;}
.y116{bottom:58.106700px;}
.y7f{bottom:58.700790px;}
.y27{bottom:60.200790px;}
.y13a{bottom:62.307267px;}
.y149{bottom:62.581410px;}
.y8f{bottom:63.200790px;}
.ya4{bottom:64.700790px;}
.y139{bottom:69.989542px;}
.y115{bottom:74.606700px;}
.ycc{bottom:77.817750px;}
.y148{bottom:78.409600px;}
.y4c{bottom:81.619710px;}
.ybc{bottom:86.909265px;}
.yfd{bottom:88.700790px;}
.yd3{bottom:91.464030px;}
.y7e{bottom:91.700790px;}
.yff{bottom:92.291670px;}
.y160{bottom:92.963610px;}
.y145{bottom:93.084521px;}
.yaa{bottom:93.200790px;}
.y15c{bottom:93.634299px;}
.y8e{bottom:96.200790px;}
.ya3{bottom:97.700790px;}
.yac{bottom:99.090735px;}
.ycb{bottom:100.317750px;}
.y144{bottom:100.766795px;}
.y15f{bottom:101.145511px;}
.y155{bottom:101.279376px;}
.y168{bottom:101.706855px;}
.y15b{bottom:101.816200px;}
.y158{bottom:102.889998px;}
.y12a{bottom:105.200790px;}
.ye{bottom:106.299210px;}
.y147{bottom:109.302639px;}
.y13d{bottom:109.303093px;}
.y15e{bottom:109.327412px;}
.y154{bottom:109.461277px;}
.y15a{bottom:109.998100px;}
.y157{bottom:111.071899px;}
.y16b{bottom:113.142804px;}
.y169{bottom:113.365382px;}
.y50{bottom:113.755290px;}
.y146{bottom:116.984989px;}
.ye0{bottom:117.035970px;}
.y15d{bottom:117.509312px;}
.y153{bottom:117.643177px;}
.y159{bottom:118.180001px;}
.y156{bottom:119.253800px;}
.ybb{bottom:119.909265px;}
.y111{bottom:120.708330px;}
.yfc{bottom:123.200790px;}
.y7d{bottom:124.700790px;}
.y26{bottom:127.700790px;}
.y8d{bottom:129.200790px;}
.ya2{bottom:132.200790px;}
.y130{bottom:134.609485px;}
.yd{bottom:135.422749px;}
.y14c{bottom:136.172304px;}
.y16e{bottom:140.949675px;}
.y4b{bottom:147.880290px;}
.y110{bottom:153.708330px;}
.yba{bottom:154.409265px;}
.yfb{bottom:156.200790px;}
.y7c{bottom:157.700790px;}
.y133{bottom:159.794587px;}
.y25{bottom:160.700790px;}
.y8c{bottom:162.200790px;}
.y17d{bottom:163.700790px;}
.ya1{bottom:165.200790px;}
.y131{bottom:167.475574px;}
.y16d{bottom:167.845628px;}
.yc{bottom:170.784373px;}
.y132{bottom:178.230758px;}
.y14b{bottom:182.243981px;}
.y151{bottom:183.852633px;}
.y176{bottom:184.131172px;}
.y10f{bottom:186.708330px;}
.yb9{bottom:187.409265px;}
.y7b{bottom:192.200790px;}
.y24{bottom:193.700790px;}
.y8b{bottom:196.700790px;}
.y16c{bottom:196.785769px;}
.y16a{bottom:197.011453px;}
.ya0{bottom:198.200790px;}
.y150{bottom:220.216636px;}
.yfa{bottom:222.200790px;}
.yef{bottom:225.200790px;}
.y23{bottom:226.700790px;}
.y8a{bottom:229.700790px;}
.y136{bottom:230.276965px;}
.y9f{bottom:231.200790px;}
.y134{bottom:231.603494px;}
.y135{bottom:243.470053px;}
.y10e{bottom:249.708330px;}
.yb8{bottom:250.409265px;}
.yf9{bottom:256.700790px;}
.yee{bottom:258.200790px;}
.y22{bottom:261.200790px;}
.y91{bottom:262.700790px;}
.y167{bottom:262.781738px;}
.y9e{bottom:264.200790px;}
.y10d{bottom:275.208330px;}
.y137{bottom:284.386223px;}
.y14a{bottom:285.267217px;}
.y49{bottom:289.204050px;}
.yf8{bottom:289.700790px;}
.yed{bottom:291.200790px;}
.y166{bottom:291.872940px;}
.y21{bottom:294.200790px;}
.y7a{bottom:295.700790px;}
.y179{bottom:297.200790px;}
.ya7{bottom:298.700790px;}
.y10c{bottom:299.208330px;}
.y161{bottom:300.189750px;}
.y165{bottom:310.054942px;}
.yf7{bottom:322.700790px;}
.y10b{bottom:323.208330px;}
.yec{bottom:325.700790px;}
.y20{bottom:327.200790px;}
.ya9{bottom:328.700790px;}
.y79{bottom:330.200790px;}
.y70{bottom:331.638300px;}
.y9d{bottom:331.700790px;}
.y12e{bottom:334.958930px;}
.y164{bottom:339.075613px;}
.yf6{bottom:355.700790px;}
.yeb{bottom:358.700790px;}
.y47{bottom:359.419800px;}
.y1f{bottom:360.200790px;}
.y12f{bottom:360.876692px;}
.y126{bottom:361.700790px;}
.yb{bottom:361.724540px;}
.y78{bottom:363.200790px;}
.y9c{bottom:364.700790px;}
.y6e{bottom:365.763300px;}
.ycf{bottom:375.946950px;}
.yf5{bottom:390.200790px;}
.yea{bottom:391.700790px;}
.ya{bottom:393.726390px;}
.y1e{bottom:394.700790px;}
.y77{bottom:396.200790px;}
.y9b{bottom:397.700790px;}
.yf4{bottom:423.200790px;}
.ye9{bottom:424.700790px;}
.y1d{bottom:427.700790px;}
.y76{bottom:429.200790px;}
.y46{bottom:429.635700px;}
.y178{bottom:430.700790px;}
.ya6{bottom:432.200790px;}
.y6c{bottom:435.979200px;}
.y123{bottom:442.442100px;}
.y9{bottom:447.398783px;}
.yc9{bottom:456.182250px;}
.yf3{bottom:456.200790px;}
.ye8{bottom:459.200790px;}
.y1c{bottom:462.200790px;}
.y89{bottom:463.700790px;}
.y44{bottom:463.760700px;}
.y9a{bottom:465.200790px;}
.y8{bottom:472.597089px;}
.y120{bottom:488.304900px;}
.yf2{bottom:489.200790px;}
.ye7{bottom:492.200790px;}
.y18b{bottom:493.700790px;}
.y75{bottom:496.700790px;}
.y7{bottom:497.795396px;}
.y42{bottom:497.885700px;}
.y99{bottom:498.200790px;}
.y129{bottom:499.700790px;}
.y69{bottom:506.194950px;}
.yf1{bottom:523.700790px;}
.ye6{bottom:525.200790px;}
.y18a{bottom:528.200790px;}
.y74{bottom:529.700790px;}
.y98{bottom:531.200790px;}
.y40{bottom:532.010700px;}
.y128{bottom:532.700790px;}
.y11d{bottom:534.167700px;}
.ye5{bottom:558.200790px;}
.y189{bottom:559.700790px;}
.y6{bottom:559.741233px;}
.y73{bottom:562.700790px;}
.y17c{bottom:564.200790px;}
.y97{bottom:565.700790px;}
.y3c{bottom:566.135700px;}
.y68{bottom:576.410850px;}
.y11a{bottom:580.030500px;}
.yc5{bottom:581.417700px;}
.y5{bottom:584.939539px;}
.yf0{bottom:586.700790px;}
.ye4{bottom:594.200790px;}
.y1b{bottom:595.700790px;}
.y96{bottom:598.700790px;}
.y67{bottom:610.535850px;}
.ydf{bottom:612.035970px;}
.y114{bottom:625.893300px;}
.y188{bottom:627.200790px;}
.ye3{bottom:628.700790px;}
.y72{bottom:630.200790px;}
.ya5{bottom:631.700790px;}
.yc1{bottom:639.153000px;}
.y66{bottom:644.660850px;}
.y10a{bottom:645.708330px;}
.y127{bottom:652.700790px;}
.y187{bottom:661.700790px;}
.y1a{bottom:663.200790px;}
.y95{bottom:664.700790px;}
.y3b{bottom:671.905500px;}
.yb7{bottom:671.909265px;}
.y65{bottom:678.785850px;}
.yde{bottom:679.535970px;}
.y186{bottom:694.700790px;}
.y19{bottom:696.200790px;}
.y88{bottom:697.700790px;}
.y94{bottom:699.200790px;}
.y3a{bottom:706.030500px;}
.yb6{bottom:706.409265px;}
.y64{bottom:712.910850px;}
.y109{bottom:713.208330px;}
.ydd{bottom:714.035970px;}
.ybf{bottom:719.388300px;}
.y185{bottom:727.700790px;}
.y18{bottom:729.200790px;}
.y17b{bottom:730.700790px;}
.y93{bottom:732.200790px;}
.yb5{bottom:739.409265px;}
.y38{bottom:740.155500px;}
.y108{bottom:746.208330px;}
.y63{bottom:747.035850px;}
.ydc{bottom:747.035970px;}
.y184{bottom:760.700790px;}
.y17{bottom:763.700790px;}
.y87{bottom:765.200790px;}
.yb4{bottom:772.409265px;}
.y36{bottom:774.280500px;}
.y107{bottom:779.208330px;}
.ydb{bottom:780.035970px;}
.y62{bottom:781.160850px;}
.y183{bottom:793.700790px;}
.y16{bottom:796.700790px;}
.y86{bottom:798.200790px;}
.yb3{bottom:805.409265px;}
.y12b{bottom:806.732550px;}
.y34{bottom:808.405500px;}
.y106{bottom:812.208330px;}
.yda{bottom:813.035970px;}
.y61{bottom:815.285850px;}
.y182{bottom:828.200790px;}
.y15{bottom:829.700790px;}
.y85{bottom:832.700790px;}
.yb2{bottom:839.909265px;}
.y32{bottom:842.530500px;}
.y105{bottom:846.708330px;}
.yd9{bottom:847.535970px;}
.y60{bottom:849.410850px;}
.y138{bottom:853.728300px;}
.y181{bottom:859.700790px;}
.y14{bottom:862.700790px;}
.y17a{bottom:864.200790px;}
.y84{bottom:865.700790px;}
.yb1{bottom:872.909265px;}
.y13b{bottom:876.464250px;}
.y104{bottom:879.708330px;}
.y5f{bottom:883.535850px;}
.y180{bottom:894.200790px;}
.y13{bottom:897.200790px;}
.y83{bottom:898.700790px;}
.yb0{bottom:905.909265px;}
.y103{bottom:912.708330px;}
.y30{bottom:912.746250px;}
.yd8{bottom:913.535970px;}
.y5e{bottom:917.660850px;}
.y17f{bottom:927.200790px;}
.y12{bottom:930.200790px;}
.y92{bottom:931.700790px;}
.y102{bottom:945.708330px;}
.yd7{bottom:946.535970px;}
.y5d{bottom:951.785850px;}
.y17e{bottom:960.200790px;}
.y11{bottom:963.200790px;}
.y82{bottom:966.200790px;}
.yaf{bottom:973.409265px;}
.yd6{bottom:981.035970px;}
.y2e{bottom:982.962150px;}
.y5c{bottom:985.910850px;}
.y4{bottom:986.306566px;}
.y10{bottom:996.200790px;}
.y81{bottom:999.200790px;}
.yae{bottom:1006.409265px;}
.y3{bottom:1011.504872px;}
.y101{bottom:1013.208330px;}
.yd5{bottom:1014.035970px;}
.y2c{bottom:1017.087150px;}
.y5a{bottom:1020.035850px;}
.y18c{bottom:1030.700790px;}
.yf{bottom:1032.200790px;}
.yad{bottom:1039.409265px;}
.y100{bottom:1046.208330px;}
.yd4{bottom:1047.035970px;}
.y2a{bottom:1051.212150px;}
.y58{bottom:1054.160850px;}
.y2{bottom:1061.901485px;}
.y56{bottom:1088.285850px;}
.y28{bottom:1121.427900px;}
.y54{bottom:1122.410850px;}
.h3c{height:12.933471px;}
.h34{height:16.166784px;}
.h3d{height:17.929211px;}
.h2b{height:19.693986px;}
.h2f{height:19.854746px;}
.h29{height:19.885190px;}
.h1e{height:21.848705px;}
.h3b{height:22.633410px;}
.h2c{height:24.617592px;}
.h38{height:25.866723px;}
.h23{height:26.099284px;}
.h1f{height:26.472994px;}
.h1d{height:26.800270px;}
.h3a{height:27.062485px;}
.h2e{height:28.619292px;}
.h2d{height:28.679077px;}
.h39{height:29.100256px;}
.he{height:32.466795px;}
.h22{height:33.556329px;}
.h12{height:33.735345px;}
.h35{height:33.950115px;}
.hb{height:34.125000px;}
.h9{height:35.107905px;}
.h36{height:35.566662px;}
.h24{height:36.137567px;}
.h21{height:37.643340px;}
.h27{height:37.728848px;}
.h25{height:38.969414px;}
.h33{height:39.545853px;}
.h26{height:40.905797px;}
.h1b{height:44.362800px;}
.h32{height:45.971079px;}
.h37{height:47.473040px;}
.h20{height:49.133829px;}
.h8{height:49.992188px;}
.h31{height:50.568187px;}
.h11{height:52.646484px;}
.h1a{height:53.291016px;}
.h14{height:56.235345px;}
.h7{height:63.175781px;}
.ha{height:63.949219px;}
.h40{height:69.175781px;}
.h3f{height:69.949219px;}
.hc{height:70.661865px;}
.h4{height:73.700125px;}
.h3{height:74.602408px;}
.h6{height:74.607422px;}
.h3e{height:75.810938px;}
.h13{height:78.735345px;}
.h19{height:93.862800px;}
.hd{height:106.215825px;}
.h15{height:123.735345px;}
.h2a{height:254.822250px;}
.h28{height:277.558200px;}
.h30{height:283.093950px;}
.h1c{height:349.803300px;}
.h17{height:1050.236550px;}
.hf{height:1055.220000px;}
.h5{height:1056.050550px;}
.h10{height:1062.428400px;}
.h18{height:1069.227600px;}
.h16{height:1070.055150px;}
.h2{height:1262.795175px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:26.466795px;}
.w9{width:28.798830px;}
.w8{width:29.466795px;}
.w4{width:70.690740px;}
.wc{width:295.392600px;}
.wa{width:295.418250px;}
.w11{width:458.842500px;}
.w12{width:459.696300px;}
.w10{width:513.710400px;}
.w13{width:531.463050px;}
.wf{width:540.071250px;}
.w3{width:561.081600px;}
.w7{width:647.768700px;}
.w6{width:649.429800px;}
.we{width:651.740400px;}
.wd{width:653.702850px;}
.w2{width:654.127500px;}
.wb{width:657.430500px;}
.w14{width:658.369950px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x62{left:-41.181607px;}
.x2c{left:-30.074902px;}
.x0{left:0.000000px;}
.xe{left:5.754915px;}
.x25{left:8.502900px;}
.x15{left:10.359450px;}
.x2e{left:11.604912px;}
.x14{left:14.859450px;}
.x13{left:16.359450px;}
.x12{left:19.359450px;}
.x6e{left:20.754915px;}
.x20{left:23.502900px;}
.x64{left:25.720810px;}
.x17{left:26.859450px;}
.x22{left:29.502900px;}
.x11{left:31.359450px;}
.x48{left:35.255984px;}
.x47{left:37.822449px;}
.x26{left:40.002900px;}
.x21{left:41.502900px;}
.x18{left:47.754915px;}
.x27{left:54.921300px;}
.x29{left:55.924350px;}
.x24{left:60.921300px;}
.x23{left:63.921300px;}
.x1f{left:75.921300px;}
.x1a{left:76.924350px;}
.x32{left:87.957189px;}
.x1e{left:92.502900px;}
.x1c{left:93.921300px;}
.x4e{left:96.018036px;}
.x35{left:97.529509px;}
.x4d{left:101.343014px;}
.x28{left:106.002900px;}
.x2f{left:111.386903px;}
.x6a{left:112.443048px;}
.x2d{left:114.186856px;}
.x69{left:119.373346px;}
.xd{left:121.745085px;}
.xf{left:127.559055px;}
.x36{left:128.779070px;}
.x37{left:134.371778px;}
.x38{left:139.042583px;}
.x65{left:141.620237px;}
.x34{left:144.199734px;}
.x4f{left:157.161229px;}
.x50{left:160.972479px;}
.x1b{left:171.578700px;}
.x63{left:174.438447px;}
.x2a{left:176.413200px;}
.x6b{left:178.786672px;}
.x2{left:183.632527px;}
.x4{left:190.163089px;}
.x6c{left:191.770212px;}
.x52{left:193.788492px;}
.x51{left:196.536171px;}
.x53{left:202.614566px;}
.x60{left:216.454650px;}
.x6{left:218.385195px;}
.x3a{left:220.433934px;}
.x39{left:222.803504px;}
.x3b{left:231.694502px;}
.x55{left:237.867876px;}
.x33{left:238.887600px;}
.x7{left:242.659566px;}
.x54{left:244.648551px;}
.x46{left:245.965988px;}
.x3e{left:265.715073px;}
.x3c{left:267.319862px;}
.x3d{left:273.452045px;}
.x6d{left:279.237155px;}
.xa{left:281.926931px;}
.x56{left:284.282738px;}
.x1{left:289.234441px;}
.x57{left:293.163131px;}
.x67{left:297.673705px;}
.x66{left:299.254100px;}
.x8{left:308.889122px;}
.x49{left:310.217091px;}
.x40{left:311.494701px;}
.x3f{left:314.724734px;}
.x9{left:317.771526px;}
.x5a{left:326.563771px;}
.x58{left:328.104696px;}
.x59{left:334.230818px;}
.x41{left:340.480751px;}
.x3{left:348.660453px;}
.x42{left:361.629222px;}
.x5{left:367.916161px;}
.x5c{left:373.464093px;}
.x5b{left:376.692459px;}
.x5d{left:385.627624px;}
.x30{left:387.661054px;}
.x4a{left:390.762752px;}
.x43{left:426.564553px;}
.x5e{left:427.630624px;}
.x44{left:430.627624px;}
.x31{left:432.922571px;}
.x68{left:440.429009px;}
.x45{left:467.031476px;}
.x1d{left:468.497100px;}
.x5f{left:470.840908px;}
.x61{left:546.098711px;}
.x2b{left:557.205416px;}
.xc{left:564.672958px;}
.xb{left:572.484434px;}
.x10{left:688.640550px;}
.x19{left:740.877600px;}
.x16{left:749.877600px;}
.x4c{left:897.116118px;}
.x4b{left:899.616143px;}
@media print{
.v6{vertical-align:-15.328101pt;}
.v3{vertical-align:-12.013859pt;}
.v2{vertical-align:-11.089674pt;}
.v4{vertical-align:-8.126143pt;}
.vf{vertical-align:-6.950104pt;}
.v9{vertical-align:-5.576622pt;}
.v1{vertical-align:-1.784530pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:3.277878pt;}
.ve{vertical-align:4.218763pt;}
.v11{vertical-align:5.333333pt;}
.v7{vertical-align:6.628484pt;}
.v10{vertical-align:7.799944pt;}
.va{vertical-align:8.922918pt;}
.v5{vertical-align:10.261383pt;}
.vb{vertical-align:11.440115pt;}
.v8{vertical-align:13.703034pt;}
.vc{vertical-align:15.582918pt;}
.ls3{letter-spacing:-2.374400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.014933pt;}
.lsc{letter-spacing:0.025600pt;}
.ls11{letter-spacing:0.281600pt;}
.lsd{letter-spacing:0.473600pt;}
.ls6{letter-spacing:0.618667pt;}
.ls5{letter-spacing:0.624000pt;}
.ls7{letter-spacing:1.210667pt;}
.lsa{letter-spacing:1.478400pt;}
.lsb{letter-spacing:1.574400pt;}
.ls14{letter-spacing:2.176000pt;}
.lse{letter-spacing:2.483200pt;}
.ls2{letter-spacing:4.672800pt;}
.ls12{letter-spacing:10.291200pt;}
.ls10{letter-spacing:18.489600pt;}
.ls13{letter-spacing:20.678400pt;}
.ls16{letter-spacing:30.933333pt;}
.ls9{letter-spacing:42.453333pt;}
.lsf{letter-spacing:42.726400pt;}
.ls15{letter-spacing:172.019200pt;}
.ws27{word-spacing:-58.726400pt;}
.ws28{word-spacing:-26.291200pt;}
.ws1f{word-spacing:-24.242669pt;}
.ws2{word-spacing:-18.681600pt;}
.ws4{word-spacing:-18.666667pt;}
.ws26{word-spacing:-18.483200pt;}
.ws23{word-spacing:-17.574400pt;}
.ws22{word-spacing:-17.478400pt;}
.ws25{word-spacing:-16.473600pt;}
.ws24{word-spacing:-16.025600pt;}
.ws5{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.544000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws8{word-spacing:-13.344000pt;}
.ws9{word-spacing:-13.333333pt;}
.ws20{word-spacing:-12.487399pt;}
.ws21{word-spacing:-10.703542pt;}
.ws1c{word-spacing:-10.505156pt;}
.ws1d{word-spacing:-9.697068pt;}
.ws13{word-spacing:-9.560177pt;}
.ws1a{word-spacing:-7.283952pt;}
.ws1e{word-spacing:-7.272801pt;}
.ws3{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:96.812581pt;}
.wsa{word-spacing:99.489511pt;}
.ws11{word-spacing:99.489780pt;}
.wse{word-spacing:100.860029pt;}
.wsf{word-spacing:103.695883pt;}
.ws14{word-spacing:105.223144pt;}
.ws15{word-spacing:107.104914pt;}
.wsb{word-spacing:107.775116pt;}
.ws17{word-spacing:109.472345pt;}
.wsd{word-spacing:109.846517pt;}
.ws16{word-spacing:110.777274pt;}
.wsc{word-spacing:115.423139pt;}
.ws10{word-spacing:115.423409pt;}
.ws18{word-spacing:117.696940pt;}
.ws19{word-spacing:117.697209pt;}
.ws1b{word-spacing:123.827071pt;}
._26{margin-left:-18.267550pt;}
._28{margin-left:-16.512000pt;}
._2d{margin-left:-15.539573pt;}
._1{margin-left:-9.608954pt;}
._6{margin-left:-8.705548pt;}
._2f{margin-left:-7.780852pt;}
._3{margin-left:-6.816609pt;}
._2{margin-left:-5.554827pt;}
._5{margin-left:-4.106391pt;}
._4{margin-left:-2.486233pt;}
._0{margin-left:-1.224451pt;}
._7{width:0.985600pt;}
._c{width:2.521600pt;}
._e{width:4.032000pt;}
._17{width:5.388800pt;}
._f{width:6.333591pt;}
._d{width:7.321600pt;}
._8{width:8.723200pt;}
._9{width:9.657600pt;}
._b{width:11.145545pt;}
._a{width:12.077678pt;}
._18{width:13.382400pt;}
._16{width:14.310400pt;}
._1a{width:16.921600pt;}
._19{width:18.540800pt;}
._15{width:19.782400pt;}
._1b{width:20.985600pt;}
._12{width:22.183467pt;}
._14{width:23.400533pt;}
._21{width:24.663467pt;}
._13{width:26.200257pt;}
._20{width:27.814400pt;}
._1c{width:28.992000pt;}
._1f{width:30.348800pt;}
._1e{width:31.667200pt;}
._1d{width:32.768000pt;}
._24{width:34.009600pt;}
._23{width:35.708009pt;}
._22{width:36.614400pt;}
._11{width:38.229333pt;}
._25{width:40.904533pt;}
._27{width:58.666667pt;}
._2b{width:119.869389pt;}
._2c{width:121.654878pt;}
._2a{width:122.904571pt;}
._29{width:125.939753pt;}
._10{width:176.000000pt;}
._2e{width:188.204800pt;}
.fs17{font-size:15.857130pt;}
.fs10{font-size:19.821345pt;}
.fs18{font-size:21.982175pt;}
.fsc{font-size:24.242669pt;}
.fs9{font-size:24.279841pt;}
.fs5{font-size:26.936299pt;}
.fs16{font-size:27.749775pt;}
.fs8{font-size:30.349936pt;}
.fs14{font-size:31.713990pt;}
.fs7{font-size:31.867258pt;}
.fs4{font-size:32.323558pt;}
.fsb{font-size:34.944191pt;}
.fsa{font-size:35.017188pt;}
.fs15{font-size:35.678474pt;}
.fsf{font-size:37.710818pt;}
.fs11{font-size:41.624662pt;}
.fs12{font-size:43.606635pt;}
.fse{font-size:48.485338pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.872597pt;}
.fs13{font-size:58.204493pt;}
.fs6{font-size:59.259857pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.661649pt;}
.fs1{font-size:74.666667pt;}
.fs19{font-size:76.800000pt;}
.y163{bottom:-44.208732pt;}
.y162{bottom:-40.180476pt;}
.y12d{bottom:-29.458999pt;}
.y12c{bottom:-25.430743pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.035400pt;}
.y119{bottom:7.650400pt;}
.y11f{bottom:7.850933pt;}
.y125{bottom:8.051467pt;}
.y11c{bottom:8.417333pt;}
.yd2{bottom:8.491600pt;}
.yc8{bottom:8.517600pt;}
.yc0{bottom:8.543733pt;}
.y53{bottom:8.570320pt;}
.y122{bottom:8.617867pt;}
.y57{bottom:8.634800pt;}
.y6a{bottom:8.715600pt;}
.y39{bottom:8.750667pt;}
.y3e{bottom:8.768267pt;}
.y175{bottom:8.836786pt;}
.y2f{bottom:8.922533pt;}
.y55{bottom:8.968133pt;}
.y37{bottom:9.084000pt;}
.y45{bottom:9.101600pt;}
.yce{bottom:9.171333pt;}
.yc4{bottom:9.197333pt;}
.y71{bottom:9.210400pt;}
.y2d{bottom:9.255867pt;}
.y5b{bottom:9.301467pt;}
.y35{bottom:9.417333pt;}
.y43{bottom:9.434933pt;}
.y6f{bottom:9.543733pt;}
.y51{bottom:9.550853pt;}
.y2b{bottom:9.589200pt;}
.y4a{bottom:9.596400pt;}
.y59{bottom:9.634800pt;}
.y33{bottom:9.750667pt;}
.y41{bottom:9.768267pt;}
.y6d{bottom:9.796267pt;}
.y14e{bottom:9.798097pt;}
.y29{bottom:9.841867pt;}
.y48{bottom:9.849067pt;}
.y4e{bottom:9.884187pt;}
.y31{bottom:10.003333pt;}
.y6b{bottom:10.048933pt;}
.y173{bottom:10.406903pt;}
.y177{bottom:11.055529pt;}
.y3f{bottom:11.434933pt;}
.y4f{bottom:13.884187pt;}
.y113{bottom:17.962960pt;}
.ybe{bottom:18.586013pt;}
.ye2{bottom:18.698640pt;}
.yc6{bottom:19.184267pt;}
.y141{bottom:20.758332pt;}
.y174{bottom:21.475499pt;}
.y172{bottom:21.477991pt;}
.y80{bottom:21.511813pt;}
.y118{bottom:22.317067pt;}
.y11e{bottom:22.517600pt;}
.y124{bottom:22.718133pt;}
.y11b{bottom:23.084000pt;}
.y121{bottom:23.284533pt;}
.yab{bottom:24.178480pt;}
.y90{bottom:25.511813pt;}
.y170{bottom:26.267197pt;}
.y13e{bottom:27.586751pt;}
.y140{bottom:27.587020pt;}
.ya8{bottom:28.178480pt;}
.y14d{bottom:28.473235pt;}
.yd0{bottom:28.491600pt;}
.yc7{bottom:28.517600pt;}
.ycd{bottom:29.171333pt;}
.yc2{bottom:29.197333pt;}
.y143{bottom:35.174168pt;}
.y13f{bottom:35.174504pt;}
.y16f{bottom:36.178072pt;}
.y117{bottom:36.983733pt;}
.y171{bottom:38.333986pt;}
.y4d{bottom:40.550853pt;}
.y3d{bottom:40.768267pt;}
.y142{bottom:42.002923pt;}
.y13c{bottom:42.003193pt;}
.y152{bottom:46.247421pt;}
.y14f{bottom:47.228037pt;}
.y112{bottom:47.296293pt;}
.ybd{bottom:47.919347pt;}
.ye1{bottom:48.031973pt;}
.yd1{bottom:48.491600pt;}
.yca{bottom:49.171333pt;}
.yc3{bottom:49.197333pt;}
.yfe{bottom:49.511813pt;}
.y52{bottom:51.583533pt;}
.y116{bottom:51.650400pt;}
.y7f{bottom:52.178480pt;}
.y27{bottom:53.511813pt;}
.y13a{bottom:55.384238pt;}
.y149{bottom:55.627920pt;}
.y8f{bottom:56.178480pt;}
.ya4{bottom:57.511813pt;}
.y139{bottom:62.212926pt;}
.y115{bottom:66.317067pt;}
.ycc{bottom:69.171333pt;}
.y148{bottom:69.697422pt;}
.y4c{bottom:72.550853pt;}
.ybc{bottom:77.252680pt;}
.yfd{bottom:78.845147pt;}
.yd3{bottom:81.301360pt;}
.y7e{bottom:81.511813pt;}
.yff{bottom:82.037040pt;}
.y160{bottom:82.634320pt;}
.y145{bottom:82.741796pt;}
.yaa{bottom:82.845147pt;}
.y15c{bottom:83.230488pt;}
.y8e{bottom:85.511813pt;}
.ya3{bottom:86.845147pt;}
.yac{bottom:88.080653pt;}
.ycb{bottom:89.171333pt;}
.y144{bottom:89.570484pt;}
.y15f{bottom:89.907121pt;}
.y155{bottom:90.026112pt;}
.y168{bottom:90.406094pt;}
.y15b{bottom:90.503288pt;}
.y158{bottom:91.457776pt;}
.y12a{bottom:93.511813pt;}
.ye{bottom:94.488187pt;}
.y147{bottom:97.157901pt;}
.y13d{bottom:97.158305pt;}
.y15e{bottom:97.179921pt;}
.y154{bottom:97.298913pt;}
.y15a{bottom:97.776089pt;}
.y157{bottom:98.730577pt;}
.y16b{bottom:100.571381pt;}
.y169{bottom:100.769228pt;}
.y50{bottom:101.115813pt;}
.y146{bottom:103.986657pt;}
.ye0{bottom:104.031973pt;}
.y15d{bottom:104.452722pt;}
.y153{bottom:104.571713pt;}
.y159{bottom:105.048890pt;}
.y156{bottom:106.003377pt;}
.ybb{bottom:106.586013pt;}
.y111{bottom:107.296293pt;}
.yfc{bottom:109.511813pt;}
.y7d{bottom:110.845147pt;}
.y26{bottom:113.511813pt;}
.y8d{bottom:114.845147pt;}
.ya2{bottom:117.511813pt;}
.y130{bottom:119.652875pt;}
.yd{bottom:120.375777pt;}
.y14c{bottom:121.042048pt;}
.y16e{bottom:125.288600pt;}
.y4b{bottom:131.449147pt;}
.y110{bottom:136.629627pt;}
.yba{bottom:137.252680pt;}
.yfb{bottom:138.845147pt;}
.y7c{bottom:140.178480pt;}
.y133{bottom:142.039633pt;}
.y25{bottom:142.845147pt;}
.y8c{bottom:144.178480pt;}
.y17d{bottom:145.511813pt;}
.ya1{bottom:146.845147pt;}
.y131{bottom:148.867177pt;}
.y16d{bottom:149.196114pt;}
.yc{bottom:151.808331pt;}
.y132{bottom:158.427341pt;}
.y14b{bottom:161.994649pt;}
.y151{bottom:163.424563pt;}
.y176{bottom:163.672152pt;}
.y10f{bottom:165.962960pt;}
.yb9{bottom:166.586013pt;}
.y7b{bottom:170.845147pt;}
.y24{bottom:172.178480pt;}
.y8b{bottom:174.845147pt;}
.y16c{bottom:174.920683pt;}
.y16a{bottom:175.121292pt;}
.ya0{bottom:176.178480pt;}
.y150{bottom:195.748121pt;}
.yfa{bottom:197.511813pt;}
.yef{bottom:200.178480pt;}
.y23{bottom:201.511813pt;}
.y8a{bottom:204.178480pt;}
.y136{bottom:204.690636pt;}
.y9f{bottom:205.511813pt;}
.y134{bottom:205.869772pt;}
.y135{bottom:216.417825pt;}
.y10e{bottom:221.962960pt;}
.yb8{bottom:222.586013pt;}
.yf9{bottom:228.178480pt;}
.yee{bottom:229.511813pt;}
.y22{bottom:232.178480pt;}
.y91{bottom:233.511813pt;}
.y167{bottom:233.583767pt;}
.y9e{bottom:234.845147pt;}
.y10d{bottom:244.629627pt;}
.y137{bottom:252.787754pt;}
.y14a{bottom:253.570859pt;}
.y49{bottom:257.070267pt;}
.yf8{bottom:257.511813pt;}
.yed{bottom:258.845147pt;}
.y166{bottom:259.442614pt;}
.y21{bottom:261.511813pt;}
.y7a{bottom:262.845147pt;}
.y179{bottom:264.178480pt;}
.ya7{bottom:265.511813pt;}
.y10c{bottom:265.962960pt;}
.y161{bottom:266.835333pt;}
.y165{bottom:275.604393pt;}
.yf7{bottom:286.845147pt;}
.y10b{bottom:287.296293pt;}
.yec{bottom:289.511813pt;}
.y20{bottom:290.845147pt;}
.ya9{bottom:292.178480pt;}
.y79{bottom:293.511813pt;}
.y70{bottom:294.789600pt;}
.y9d{bottom:294.845147pt;}
.y12e{bottom:297.741271pt;}
.y164{bottom:301.400545pt;}
.yf6{bottom:316.178480pt;}
.yeb{bottom:318.845147pt;}
.y47{bottom:319.484267pt;}
.y1f{bottom:320.178480pt;}
.y12f{bottom:320.779281pt;}
.y126{bottom:321.511813pt;}
.yb{bottom:321.532925pt;}
.y78{bottom:322.845147pt;}
.y9c{bottom:324.178480pt;}
.y6e{bottom:325.122933pt;}
.ycf{bottom:334.175067pt;}
.yf5{bottom:346.845147pt;}
.yea{bottom:348.178480pt;}
.ya{bottom:349.979013pt;}
.y1e{bottom:350.845147pt;}
.y77{bottom:352.178480pt;}
.y9b{bottom:353.511813pt;}
.yf4{bottom:376.178480pt;}
.ye9{bottom:377.511813pt;}
.y1d{bottom:380.178480pt;}
.y76{bottom:381.511813pt;}
.y46{bottom:381.898400pt;}
.y178{bottom:382.845147pt;}
.ya6{bottom:384.178480pt;}
.y6c{bottom:387.537067pt;}
.y123{bottom:393.281867pt;}
.y9{bottom:397.687807pt;}
.yc9{bottom:405.495333pt;}
.yf3{bottom:405.511813pt;}
.ye8{bottom:408.178480pt;}
.y1c{bottom:410.845147pt;}
.y89{bottom:412.178480pt;}
.y44{bottom:412.231733pt;}
.y9a{bottom:413.511813pt;}
.y8{bottom:420.086302pt;}
.y120{bottom:434.048800pt;}
.yf2{bottom:434.845147pt;}
.ye7{bottom:437.511813pt;}
.y18b{bottom:438.845147pt;}
.y75{bottom:441.511813pt;}
.y7{bottom:442.484796pt;}
.y42{bottom:442.565067pt;}
.y99{bottom:442.845147pt;}
.y129{bottom:444.178480pt;}
.y69{bottom:449.951067pt;}
.yf1{bottom:465.511813pt;}
.ye6{bottom:466.845147pt;}
.y18a{bottom:469.511813pt;}
.y74{bottom:470.845147pt;}
.y98{bottom:472.178480pt;}
.y40{bottom:472.898400pt;}
.y128{bottom:473.511813pt;}
.y11d{bottom:474.815733pt;}
.ye5{bottom:496.178480pt;}
.y189{bottom:497.511813pt;}
.y6{bottom:497.547763pt;}
.y73{bottom:500.178480pt;}
.y17c{bottom:501.511813pt;}
.y97{bottom:502.845147pt;}
.y3c{bottom:503.231733pt;}
.y68{bottom:512.365200pt;}
.y11a{bottom:515.582667pt;}
.yc5{bottom:516.815733pt;}
.y5{bottom:519.946257pt;}
.yf0{bottom:521.511813pt;}
.ye4{bottom:528.178480pt;}
.y1b{bottom:529.511813pt;}
.y96{bottom:532.178480pt;}
.y67{bottom:542.698533pt;}
.ydf{bottom:544.031973pt;}
.y114{bottom:556.349600pt;}
.y188{bottom:557.511813pt;}
.ye3{bottom:558.845147pt;}
.y72{bottom:560.178480pt;}
.ya5{bottom:561.511813pt;}
.yc1{bottom:568.136000pt;}
.y66{bottom:573.031867pt;}
.y10a{bottom:573.962960pt;}
.y127{bottom:580.178480pt;}
.y187{bottom:588.178480pt;}
.y1a{bottom:589.511813pt;}
.y95{bottom:590.845147pt;}
.y3b{bottom:597.249333pt;}
.yb7{bottom:597.252680pt;}
.y65{bottom:603.365200pt;}
.yde{bottom:604.031973pt;}
.y186{bottom:617.511813pt;}
.y19{bottom:618.845147pt;}
.y88{bottom:620.178480pt;}
.y94{bottom:621.511813pt;}
.y3a{bottom:627.582667pt;}
.yb6{bottom:627.919347pt;}
.y64{bottom:633.698533pt;}
.y109{bottom:633.962960pt;}
.ydd{bottom:634.698640pt;}
.ybf{bottom:639.456267pt;}
.y185{bottom:646.845147pt;}
.y18{bottom:648.178480pt;}
.y17b{bottom:649.511813pt;}
.y93{bottom:650.845147pt;}
.yb5{bottom:657.252680pt;}
.y38{bottom:657.916000pt;}
.y108{bottom:663.296293pt;}
.y63{bottom:664.031867pt;}
.ydc{bottom:664.031973pt;}
.y184{bottom:676.178480pt;}
.y17{bottom:678.845147pt;}
.y87{bottom:680.178480pt;}
.yb4{bottom:686.586013pt;}
.y36{bottom:688.249333pt;}
.y107{bottom:692.629627pt;}
.ydb{bottom:693.365307pt;}
.y62{bottom:694.365200pt;}
.y183{bottom:705.511813pt;}
.y16{bottom:708.178480pt;}
.y86{bottom:709.511813pt;}
.yb3{bottom:715.919347pt;}
.y12b{bottom:717.095600pt;}
.y34{bottom:718.582667pt;}
.y106{bottom:721.962960pt;}
.yda{bottom:722.698640pt;}
.y61{bottom:724.698533pt;}
.y182{bottom:736.178480pt;}
.y15{bottom:737.511813pt;}
.y85{bottom:740.178480pt;}
.yb2{bottom:746.586013pt;}
.y32{bottom:748.916000pt;}
.y105{bottom:752.629627pt;}
.yd9{bottom:753.365307pt;}
.y60{bottom:755.031867pt;}
.y138{bottom:758.869600pt;}
.y181{bottom:764.178480pt;}
.y14{bottom:766.845147pt;}
.y17a{bottom:768.178480pt;}
.y84{bottom:769.511813pt;}
.yb1{bottom:775.919347pt;}
.y13b{bottom:779.079333pt;}
.y104{bottom:781.962960pt;}
.y5f{bottom:785.365200pt;}
.y180{bottom:794.845147pt;}
.y13{bottom:797.511813pt;}
.y83{bottom:798.845147pt;}
.yb0{bottom:805.252680pt;}
.y103{bottom:811.296293pt;}
.y30{bottom:811.330000pt;}
.yd8{bottom:812.031973pt;}
.y5e{bottom:815.698533pt;}
.y17f{bottom:824.178480pt;}
.y12{bottom:826.845147pt;}
.y92{bottom:828.178480pt;}
.y102{bottom:840.629627pt;}
.yd7{bottom:841.365307pt;}
.y5d{bottom:846.031867pt;}
.y17e{bottom:853.511813pt;}
.y11{bottom:856.178480pt;}
.y82{bottom:858.845147pt;}
.yaf{bottom:865.252680pt;}
.yd6{bottom:872.031973pt;}
.y2e{bottom:873.744133pt;}
.y5c{bottom:876.365200pt;}
.y4{bottom:876.716947pt;}
.y10{bottom:885.511813pt;}
.y81{bottom:888.178480pt;}
.yae{bottom:894.586013pt;}
.y3{bottom:899.115442pt;}
.y101{bottom:900.629627pt;}
.yd5{bottom:901.365307pt;}
.y2c{bottom:904.077467pt;}
.y5a{bottom:906.698533pt;}
.y18c{bottom:916.178480pt;}
.yf{bottom:917.511813pt;}
.yad{bottom:923.919347pt;}
.y100{bottom:929.962960pt;}
.yd4{bottom:930.698640pt;}
.y2a{bottom:934.410800pt;}
.y58{bottom:937.031867pt;}
.y2{bottom:943.912431pt;}
.y56{bottom:967.365200pt;}
.y28{bottom:996.824800pt;}
.y54{bottom:997.698533pt;}
.h3c{height:11.496419pt;}
.h34{height:14.370475pt;}
.h3d{height:15.937077pt;}
.h2b{height:17.505765pt;}
.h2f{height:17.648663pt;}
.h29{height:17.675724pt;}
.h1e{height:19.421071pt;}
.h3b{height:20.118587pt;}
.h2c{height:21.882304pt;}
.h38{height:22.992643pt;}
.h23{height:23.199363pt;}
.h1f{height:23.531551pt;}
.h1d{height:23.822463pt;}
.h3a{height:24.055542pt;}
.h2e{height:25.439371pt;}
.h2d{height:25.492513pt;}
.h39{height:25.866894pt;}
.he{height:28.859373pt;}
.h22{height:29.827848pt;}
.h12{height:29.986973pt;}
.h35{height:30.177880pt;}
.hb{height:30.333333pt;}
.h9{height:31.207027pt;}
.h36{height:31.614811pt;}
.h24{height:32.122282pt;}
.h21{height:33.460746pt;}
.h27{height:33.536754pt;}
.h25{height:34.639479pt;}
.h33{height:35.151870pt;}
.h26{height:36.360708pt;}
.h1b{height:39.433600pt;}
.h32{height:40.863181pt;}
.h37{height:42.198257pt;}
.h20{height:43.674515pt;}
.h8{height:44.437500pt;}
.h31{height:44.949499pt;}
.h11{height:46.796875pt;}
.h1a{height:47.369792pt;}
.h14{height:49.986973pt;}
.h7{height:56.156250pt;}
.ha{height:56.843750pt;}
.h40{height:61.489583pt;}
.h3f{height:62.177083pt;}
.hc{height:62.810547pt;}
.h4{height:65.511222pt;}
.h3{height:66.313252pt;}
.h6{height:66.317708pt;}
.h3e{height:67.387500pt;}
.h13{height:69.986973pt;}
.h19{height:83.433600pt;}
.hd{height:94.414067pt;}
.h15{height:109.986973pt;}
.h2a{height:226.508667pt;}
.h28{height:246.718400pt;}
.h30{height:251.639067pt;}
.h1c{height:310.936267pt;}
.h17{height:933.543600pt;}
.hf{height:937.973333pt;}
.h5{height:938.711600pt;}
.h10{height:944.380800pt;}
.h18{height:950.424533pt;}
.h16{height:951.160133pt;}
.h2{height:1122.484600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:23.526040pt;}
.w9{width:25.598960pt;}
.w8{width:26.192707pt;}
.w4{width:62.836213pt;}
.wc{width:262.571200pt;}
.wa{width:262.594000pt;}
.w11{width:407.860000pt;}
.w12{width:408.618933pt;}
.w10{width:456.631467pt;}
.w13{width:472.411600pt;}
.wf{width:480.063333pt;}
.w3{width:498.739200pt;}
.w7{width:575.794400pt;}
.w6{width:577.270933pt;}
.we{width:579.324800pt;}
.wd{width:581.069200pt;}
.w2{width:581.446667pt;}
.wb{width:584.382667pt;}
.w14{width:585.217733pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x62{left:-36.605873pt;}
.x2c{left:-26.733247pt;}
.x0{left:0.000000pt;}
.xe{left:5.115480pt;}
.x25{left:7.558133pt;}
.x15{left:9.208400pt;}
.x2e{left:10.315477pt;}
.x14{left:13.208400pt;}
.x13{left:14.541733pt;}
.x12{left:17.208400pt;}
.x6e{left:18.448813pt;}
.x20{left:20.891467pt;}
.x64{left:22.862942pt;}
.x17{left:23.875067pt;}
.x22{left:26.224800pt;}
.x11{left:27.875067pt;}
.x48{left:31.338652pt;}
.x47{left:33.619955pt;}
.x26{left:35.558133pt;}
.x21{left:36.891467pt;}
.x18{left:42.448813pt;}
.x27{left:48.818933pt;}
.x29{left:49.710533pt;}
.x24{left:54.152267pt;}
.x23{left:56.818933pt;}
.x1f{left:67.485600pt;}
.x1a{left:68.377200pt;}
.x32{left:78.184168pt;}
.x1e{left:82.224800pt;}
.x1c{left:83.485600pt;}
.x4e{left:85.349366pt;}
.x35{left:86.692897pt;}
.x4d{left:90.082679pt;}
.x28{left:94.224800pt;}
.x2f{left:99.010581pt;}
.x6a{left:99.949376pt;}
.x2d{left:101.499427pt;}
.x69{left:106.109641pt;}
.xd{left:108.217853pt;}
.xf{left:113.385827pt;}
.x36{left:114.470285pt;}
.x37{left:119.441581pt;}
.x38{left:123.593407pt;}
.x65{left:125.884655pt;}
.x34{left:128.177542pt;}
.x4f{left:139.698870pt;}
.x50{left:143.086648pt;}
.x1b{left:152.514400pt;}
.x63{left:155.056397pt;}
.x2a{left:156.811733pt;}
.x6b{left:158.921486pt;}
.x2{left:163.228913pt;}
.x4{left:169.033857pt;}
.x6c{left:170.462411pt;}
.x52{left:172.256438pt;}
.x51{left:174.698819pt;}
.x53{left:180.101837pt;}
.x60{left:192.404133pt;}
.x6{left:194.120174pt;}
.x3a{left:195.941275pt;}
.x39{left:198.047559pt;}
.x3b{left:205.950669pt;}
.x55{left:211.438112pt;}
.x33{left:212.344533pt;}
.x7{left:215.697392pt;}
.x54{left:217.465378pt;}
.x46{left:218.636434pt;}
.x3e{left:236.191176pt;}
.x3c{left:237.617655pt;}
.x3d{left:243.068484pt;}
.x6d{left:248.210805pt;}
.xa{left:250.601717pt;}
.x56{left:252.695768pt;}
.x1{left:257.097281pt;}
.x57{left:260.589450pt;}
.x67{left:264.598849pt;}
.x66{left:266.003644pt;}
.x8{left:274.568109pt;}
.x49{left:275.748525pt;}
.x40{left:276.884179pt;}
.x3f{left:279.755319pt;}
.x9{left:282.463579pt;}
.x5a{left:290.278908pt;}
.x58{left:291.648618pt;}
.x59{left:297.094061pt;}
.x41{left:302.649557pt;}
.x3{left:309.920403pt;}
.x42{left:321.448198pt;}
.x5{left:327.036588pt;}
.x5c{left:331.968082pt;}
.x5b{left:334.837741pt;}
.x5d{left:342.780111pt;}
.x30{left:344.587604pt;}
.x4a{left:347.344668pt;}
.x43{left:379.168491pt;}
.x5e{left:380.116110pt;}
.x44{left:382.780110pt;}
.x31{left:384.820063pt;}
.x68{left:391.492452pt;}
.x45{left:415.139090pt;}
.x1d{left:416.441867pt;}
.x5f{left:418.525252pt;}
.x61{left:485.421076pt;}
.x2b{left:495.293703pt;}
.xc{left:501.931518pt;}
.xb{left:508.875052pt;}
.x10{left:612.124933pt;}
.x19{left:658.557867pt;}
.x16{left:666.557867pt;}
.x4c{left:797.436549pt;}
.x4b{left:799.658794pt;}
}




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