
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0b2a583b38e0392e6c313168.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_635753f26f680b04056d04c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f36960ca02658f457370dfef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_219c081cabf10d974c52f9bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_360ef55f0dbde19fde03987c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_7c3a8ec168384a0e42ed1f7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_6b9ab05f062b3138907600f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_41e9e07a980b69d7a9258a2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995117;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_61f68fbccf112b74eb945c51.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.m8{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-20.880000px;}
.v7{vertical-align:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v6{vertical-align:42.480000px;}
.v5{vertical-align:49.860000px;}
.ls13{letter-spacing:-9.540000px;}
.ls6{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.370200px;}
.ls8{letter-spacing:-0.326400px;}
.ls33{letter-spacing:-0.258000px;}
.ls38{letter-spacing:-0.234600px;}
.ls3c{letter-spacing:-0.187200px;}
.ls26{letter-spacing:-0.130800px;}
.ls1e{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.107400px;}
.ls14{letter-spacing:-0.052560px;}
.ls12{letter-spacing:-0.038880px;}
.ls29{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.032460px;}
.ls3d{letter-spacing:-0.015120px;}
.ls9{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls39{letter-spacing:0.023040px;}
.ls34{letter-spacing:0.032940px;}
.ls2d{letter-spacing:0.035100px;}
.ls30{letter-spacing:0.037020px;}
.ls37{letter-spacing:0.038880px;}
.ls19{letter-spacing:0.060480px;}
.ls41{letter-spacing:0.063600px;}
.ls24{letter-spacing:0.130800px;}
.ls28{letter-spacing:0.133800px;}
.ls1d{letter-spacing:0.137400px;}
.ls5{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.148800px;}
.ls10{letter-spacing:0.182400px;}
.ls20{letter-spacing:0.195000px;}
.ls3b{letter-spacing:0.209400px;}
.lsc{letter-spacing:0.211680px;}
.ls21{letter-spacing:0.211800px;}
.ls35{letter-spacing:0.217200px;}
.ls27{letter-spacing:0.240480px;}
.ls15{letter-spacing:0.309000px;}
.ls22{letter-spacing:0.319680px;}
.ls36{letter-spacing:0.334200px;}
.ls1c{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.351600px;}
.ls3{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.382800px;}
.lsa{letter-spacing:0.385800px;}
.ls1b{letter-spacing:0.499680px;}
.ls11{letter-spacing:0.586200px;}
.ls2a{letter-spacing:0.604988px;}
.ls2c{letter-spacing:0.630000px;}
.ls18{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.828000px;}
.ls2b{letter-spacing:0.944899px;}
.ls1f{letter-spacing:0.996000px;}
.ls2f{letter-spacing:1.164000px;}
.lse{letter-spacing:1.297829px;}
.ls1a{letter-spacing:2.095294px;}
.ls32{letter-spacing:4.173816px;}
.lsd{letter-spacing:6.945179px;}
.ls40{letter-spacing:9.172800px;}
.ls3f{letter-spacing:47.466720px;}
.ls23{letter-spacing:58.478880px;}
.ls3a{letter-spacing:64.026720px;}
.ls3e{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1c{word-spacing:-84.370800px;}
.ws1b{word-spacing:-84.240000px;}
.ws1a{word-spacing:-59.760000px;}
.ws12{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.ws23{word-spacing:-14.311200px;}
.ws16{word-spacing:-14.143200px;}
.ws11{word-spacing:-13.975200px;}
.ws22{word-spacing:-13.915200px;}
.ws4{word-spacing:-13.867200px;}
.ws25{word-spacing:-13.777200px;}
.wsd{word-spacing:-13.733400px;}
.ws26{word-spacing:-13.530000px;}
.ws13{word-spacing:-13.490400px;}
.ws10{word-spacing:-13.456200px;}
.ws29{word-spacing:-13.364400px;}
.ws18{word-spacing:-13.359000px;}
.ws2d{word-spacing:-13.356600px;}
.ws17{word-spacing:-13.342200px;}
.wsc{word-spacing:-13.329600px;}
.ws19{word-spacing:-13.296000px;}
.ws14{word-spacing:-13.284600px;}
.ws2e{word-spacing:-13.210800px;}
.ws24{word-spacing:-13.184220px;}
.ws21{word-spacing:-13.182300px;}
.ws28{word-spacing:-13.180140px;}
.ws5{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.ws1f{word-spacing:-13.136400px;}
.ws2c{word-spacing:-13.132080px;}
.ws2a{word-spacing:-13.114740px;}
.ws20{word-spacing:-13.111200px;}
.wse{word-spacing:-13.108320px;}
.wsf{word-spacing:-13.094640px;}
.wsb{word-spacing:-13.039800px;}
.ws15{word-spacing:-13.021200px;}
.ws27{word-spacing:-12.889200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws1d{word-spacing:-8.687400px;}
.ws1e{word-spacing:-8.553600px;}
.ws2b{word-spacing:-8.319000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:2.552040px;}
._20{margin-left:-7.386401px;}
._21{margin-left:-5.311419px;}
._6{margin-left:-3.773943px;}
._5{margin-left:-2.198909px;}
._0{margin-left:-1.159200px;}
._1{width:1.080000px;}
._2{width:2.284813px;}
._3{width:3.668387px;}
._4{width:5.323873px;}
._c{width:6.720312px;}
._7{width:8.100288px;}
._8{width:9.290111px;}
._10{width:10.763329px;}
._b{width:12.035400px;}
._9{width:14.701199px;}
._a{width:15.850211px;}
._14{width:16.853367px;}
._e{width:18.167399px;}
._d{width:19.422000px;}
._11{width:21.412800px;}
._1f{width:22.678248px;}
._f{width:23.806670px;}
._24{width:25.379486px;}
._25{width:27.072720px;}
._1d{width:28.565280px;}
._28{width:30.240000px;}
._27{width:31.971600px;}
._26{width:32.987520px;}
._17{width:34.302240px;}
._19{width:37.529280px;}
._1b{width:42.907680px;}
._1c{width:57.369600px;}
._1a{width:63.008880px;}
._15{width:65.257920px;}
._22{width:68.645913px;}
._23{width:88.205760px;}
._1e{width:102.010320px;}
._12{width:138.101040px;}
._13{width:199.318320px;}
._16{width:243.103680px;}
._18{width:261.031680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:3.420000px;}
.y140{bottom:3.600000px;}
.y14b{bottom:7.200000px;}
.y4e{bottom:7.740000px;}
.y4c{bottom:7.770000px;}
.y51{bottom:7.920000px;}
.y135{bottom:11.700000px;}
.y7d{bottom:12.420000px;}
.y53{bottom:25.380000px;}
.y50{bottom:25.560000px;}
.y7f{bottom:25.590000px;}
.y149{bottom:29.880000px;}
.y7c{bottom:30.060000px;}
.yaf{bottom:43.020000px;}
.yb3{bottom:43.200000px;}
.y7a{bottom:47.514000px;}
.y163{bottom:47.520000px;}
.y7b{bottom:47.694000px;}
.yb0{bottom:56.160000px;}
.yae{bottom:60.660000px;}
.y3{bottom:73.296000px;}
.y2d{bottom:74.196000px;}
.yac{bottom:78.120000px;}
.yad{bottom:78.300000px;}
.y2{bottom:96.156000px;}
.y1{bottom:101.376000px;}
.y79{bottom:108.936000px;}
.y161{bottom:115.596000px;}
.y1da{bottom:116.496000px;}
.y1ae{bottom:116.676000px;}
.yd4{bottom:119.376000px;}
.y122{bottom:120.816000px;}
.y61{bottom:124.776000px;}
.y160{bottom:133.236000px;}
.y1d9{bottom:134.136000px;}
.y1ad{bottom:134.316000px;}
.yd3{bottom:137.016000px;}
.y90{bottom:140.076000px;}
.y60{bottom:142.416000px;}
.y2b{bottom:143.316000px;}
.y185{bottom:147.636000px;}
.ya9{bottom:147.816000px;}
.y15f{bottom:150.870000px;}
.y1f8{bottom:151.590000px;}
.y1d8{bottom:151.770000px;}
.y121{bottom:153.030000px;}
.yd2{bottom:154.650000px;}
.y5f{bottom:160.050000px;}
.y2a{bottom:160.770000px;}
.y1ac{bottom:160.950000px;}
.y10f{bottom:161.310000px;}
.yf6{bottom:164.010000px;}
.y15e{bottom:168.330000px;}
.y1f7{bottom:169.230000px;}
.y8f{bottom:172.290000px;}
.y184{bottom:174.450000px;}
.y78{bottom:175.890000px;}
.y1d7{bottom:178.230000px;}
.y29{bottom:178.410000px;}
.y1ab{bottom:178.590000px;}
.y10e{bottom:178.950000px;}
.yf5{bottom:182.370000px;}
.ya8{bottom:183.450000px;}
.y15d{bottom:185.970000px;}
.y5e{bottom:186.690000px;}
.yd1{bottom:189.750000px;}
.y1d6{bottom:195.870000px;}
.y28{bottom:196.050000px;}
.y10d{bottom:196.410000px;}
.y15c{bottom:203.610000px;}
.y1aa{bottom:205.050000px;}
.yd0{bottom:207.390000px;}
.y183{bottom:211.530000px;}
.y27{bottom:213.510000px;}
.y10c{bottom:214.050000px;}
.ya7{bottom:219.090000px;}
.y77{bottom:220.890000px;}
.y15b{bottom:221.250000px;}
.y1a9{bottom:222.690000px;}
.ycf{bottom:225.030000px;}
.y26{bottom:231.150000px;}
.y10b{bottom:231.690000px;}
.y5d{bottom:235.110000px;}
.y182{bottom:238.530000px;}
.y15a{bottom:238.710000px;}
.y1d5{bottom:239.970000px;}
.y25{bottom:248.790000px;}
.y10a{bottom:249.150000px;}
.y5c{bottom:252.750000px;}
.ya6{bottom:254.550000px;}
.y159{bottom:256.350000px;}
.y1d4{bottom:257.610000px;}
.yce{bottom:260.490000px;}
.y76{bottom:265.890000px;}
.y109{bottom:266.790000px;}
.y5b{bottom:270.390000px;}
.ya5{bottom:272.190000px;}
.y1f6{bottom:275.250000px;}
.y181{bottom:275.790000px;}
.y1d3{bottom:284.070000px;}
.y24{bottom:284.250000px;}
.y5a{bottom:288.030000px;}
.ya4{bottom:289.830000px;}
.y158{bottom:291.810000px;}
.ycd{bottom:292.710000px;}
.y1a8{bottom:293.430000px;}
.y1d2{bottom:301.710000px;}
.y23{bottom:301.890000px;}
.y108{bottom:302.430000px;}
.ycc{bottom:303.330000px;}
.y59{bottom:305.490000px;}
.ya3{bottom:307.470000px;}
.y157{bottom:309.495000px;}
.y1a7{bottom:311.115000px;}
.y75{bottom:314.535000px;}
.y1d1{bottom:319.395000px;}
.y22{bottom:319.575000px;}
.y107{bottom:320.115000px;}
.y58{bottom:323.175000px;}
.y180{bottom:324.075000px;}
.ya2{bottom:324.975000px;}
.y156{bottom:327.135000px;}
.y21{bottom:337.215000px;}
.y106{bottom:337.575000px;}
.y57{bottom:340.815000px;}
.y17f{bottom:342.435000px;}
.y155{bottom:344.775000px;}
.y1d0{bottom:346.035000px;}
.ycb{bottom:349.635000px;}
.y74{bottom:350.175000px;}
.ya1{bottom:351.615000px;}
.y20{bottom:354.675000px;}
.y105{bottom:355.215000px;}
.y13f{bottom:355.575000px;}
.y56{bottom:358.275000px;}
.y17e{bottom:360.795000px;}
.y154{bottom:362.235000px;}
.y1cf{bottom:363.675000px;}
.yca{bottom:367.275000px;}
.y73{bottom:367.815000px;}
.y1f{bottom:372.315000px;}
.y104{bottom:372.855000px;}
.y13e{bottom:373.215000px;}
.y17d{bottom:379.335000px;}
.y145{bottom:379.875000px;}
.y1ce{bottom:381.135000px;}
.y1a6{bottom:381.675000px;}
.yc9{bottom:384.915000px;}
.y72{bottom:385.455000px;}
.ya0{bottom:387.075000px;}
.y1e{bottom:389.955000px;}
.y1f5{bottom:390.135000px;}
.y103{bottom:390.315000px;}
.y13d{bottom:390.855000px;}
.y55{bottom:391.215000px;}
.y153{bottom:397.515000px;}
.y17c{bottom:397.695000px;}
.y1a5{bottom:399.315000px;}
.yc8{bottom:402.555000px;}
.y71{bottom:402.915000px;}
.y9f{bottom:404.715000px;}
.y1d{bottom:407.415000px;}
.y1cd{bottom:407.775000px;}
.y102{bottom:407.955000px;}
.y13c{bottom:408.495000px;}
.y152{bottom:414.975000px;}
.y144{bottom:415.515000px;}
.y17b{bottom:416.055000px;}
.y54{bottom:418.575000px;}
.yc7{bottom:420.015000px;}
.y70{bottom:420.555000px;}
.y9e{bottom:422.355000px;}
.y1c{bottom:425.055000px;}
.y1cc{bottom:425.415000px;}
.y13b{bottom:425.955000px;}
.y151{bottom:432.615000px;}
.y143{bottom:433.155000px;}
.y1f4{bottom:434.235000px;}
.y17a{bottom:434.595000px;}
.yc6{bottom:437.655000px;}
.y6f{bottom:438.195000px;}
.y9d{bottom:439.995000px;}
.y1b{bottom:442.695000px;}
.y1cb{bottom:442.875000px;}
.y101{bottom:443.415000px;}
.y1a4{bottom:443.595000px;}
.yf4{bottom:445.215000px;}
.y1f3{bottom:451.875000px;}
.y179{bottom:452.955000px;}
.yc5{bottom:455.295000px;}
.y6e{bottom:455.655000px;}
.y142{bottom:456.915000px;}
.y9c{bottom:457.635000px;}
.y1a{bottom:460.335000px;}
.y13a{bottom:461.415000px;}
.yf3{bottom:462.855000px;}
.y52{bottom:463.575000px;}
.y150{bottom:468.255000px;}
.y1ca{bottom:469.515000px;}
.y1a3{bottom:470.055000px;}
.y178{bottom:471.315000px;}
.yc4{bottom:472.935000px;}
.y9b{bottom:475.095000px;}
.y120{bottom:475.995000px;}
.y141{bottom:477.615000px;}
.y19{bottom:477.795000px;}
.y139{bottom:478.695000px;}
.y100{bottom:479.055000px;}
.yf2{bottom:480.495000px;}
.y14f{bottom:483.195000px;}
.y1c9{bottom:487.155000px;}
.y1a2{bottom:487.695000px;}
.y177{bottom:489.675000px;}
.yc3{bottom:490.395000px;}
.y6d{bottom:491.295000px;}
.y9a{bottom:492.735000px;}
.y11f{bottom:493.635000px;}
.y1f2{bottom:495.975000px;}
.yf1{bottom:497.955000px;}
.y18{bottom:504.615000px;}
.y138{bottom:506.055000px;}
.yc2{bottom:508.035000px;}
.y176{bottom:508.215000px;}
.y4f{bottom:508.395000px;}
.y6c{bottom:508.935000px;}
.y99{bottom:510.375000px;}
.y14e{bottom:510.555000px;}
.y11e{bottom:511.095000px;}
.y1f1{bottom:513.615000px;}
.y1a1{bottom:514.335000px;}
.yff{bottom:514.695000px;}
.yf0{bottom:519.375000px;}
.yc1{bottom:525.675000px;}
.y6b{bottom:526.395000px;}
.y175{bottom:526.575000px;}
.y11d{bottom:528.735000px;}
.y1c8{bottom:531.255000px;}
.y1a0{bottom:531.975000px;}
.yfe{bottom:532.335000px;}
.yef{bottom:533.235000px;}
.y137{bottom:533.415000px;}
.y14d{bottom:537.735000px;}
.y1f0{bottom:540.255000px;}
.y6a{bottom:544.035000px;}
.y174{bottom:544.935000px;}
.yc0{bottom:545.475000px;}
.y98{bottom:545.835000px;}
.y11c{bottom:546.375000px;}
.y1c7{bottom:548.895000px;}
.yee{bottom:550.695000px;}
.y17{bottom:553.215000px;}
.y4d{bottom:553.395000px;}
.y1ef{bottom:557.895000px;}
.y19f{bottom:558.435000px;}
.y136{bottom:560.775000px;}
.y69{bottom:561.675000px;}
.ybf{bottom:563.115000px;}
.y97{bottom:563.475000px;}
.y14c{bottom:565.095000px;}
.yfd{bottom:567.795000px;}
.yed{bottom:568.335000px;}
.y1c6{bottom:575.355000px;}
.y19e{bottom:576.075000px;}
.y68{bottom:579.315000px;}
.y4b{bottom:580.755000px;}
.y96{bottom:581.115000px;}
.y11b{bottom:581.835000px;}
.y1ee{bottom:584.385000px;}
.y134{bottom:588.165000px;}
.ybe{bottom:589.605000px;}
.y16{bottom:589.965000px;}
.y14a{bottom:592.485000px;}
.y67{bottom:596.805000px;}
.yfc{bottom:597.345000px;}
.y95{bottom:598.605000px;}
.y11a{bottom:599.505000px;}
.y173{bottom:600.225000px;}
.y1c5{bottom:602.025000px;}
.y19d{bottom:602.565000px;}
.yec{bottom:604.005000px;}
.y15{bottom:607.605000px;}
.yfb{bottom:612.285000px;}
.y66{bottom:614.445000px;}
.y133{bottom:615.525000px;}
.y94{bottom:616.245000px;}
.y119{bottom:617.145000px;}
.y172{bottom:618.765000px;}
.y1c4{bottom:619.665000px;}
.y148{bottom:619.845000px;}
.y19c{bottom:620.205000px;}
.yeb{bottom:621.645000px;}
.y14{bottom:625.065000px;}
.ybd{bottom:625.245000px;}
.y1ed{bottom:628.665000px;}
.y4a{bottom:629.385000px;}
.yfa{bottom:630.645000px;}
.y65{bottom:632.085000px;}
.y118{bottom:634.605000px;}
.y171{bottom:637.125000px;}
.y1c3{bottom:637.305000px;}
.y19b{bottom:637.845000px;}
.yea{bottom:639.105000px;}
.y13{bottom:642.705000px;}
.y93{bottom:642.885000px;}
.y1ec{bottom:646.305000px;}
.y117{bottom:652.245000px;}
.ye9{bottom:656.745000px;}
.y64{bottom:658.545000px;}
.y12{bottom:660.345000px;}
.y1c2{bottom:663.765000px;}
.y19a{bottom:664.485000px;}
.y170{bottom:664.845000px;}
.y49{bottom:665.025000px;}
.y116{bottom:669.885000px;}
.y1eb{bottom:672.765000px;}
.ye8{bottom:674.385000px;}
.y11{bottom:677.985000px;}
.y92{bottom:678.345000px;}
.y1c1{bottom:681.405000px;}
.y132{bottom:681.765000px;}
.y199{bottom:682.125000px;}
.y48{bottom:682.665000px;}
.y8e{bottom:684.285000px;}
.y115{bottom:687.525000px;}
.y1ea{bottom:690.405000px;}
.y147{bottom:690.585000px;}
.ye7{bottom:691.845000px;}
.y63{bottom:694.185000px;}
.y10{bottom:695.445000px;}
.ybc{bottom:695.625000px;}
.y47{bottom:700.305000px;}
.y8d{bottom:701.925000px;}
.y114{bottom:704.985000px;}
.y1c0{bottom:707.865000px;}
.y1e9{bottom:708.045000px;}
.y198{bottom:708.585000px;}
.ye6{bottom:709.485000px;}
.y91{bottom:710.565000px;}
.ybb{bottom:713.085000px;}
.y131{bottom:717.405000px;}
.y46{bottom:717.765000px;}
.y8c{bottom:719.565000px;}
.yf{bottom:722.265000px;}
.y113{bottom:722.625000px;}
.y1bf{bottom:725.505000px;}
.y62{bottom:726.225000px;}
.ye5{bottom:727.125000px;}
.yba{bottom:730.725000px;}
.y1e8{bottom:734.505000px;}
.y130{bottom:735.045000px;}
.y45{bottom:735.405000px;}
.y16f{bottom:737.205000px;}
.y112{bottom:740.265000px;}
.y1be{bottom:743.145000px;}
.ye4{bottom:744.585000px;}
.yb9{bottom:748.365000px;}
.y1e7{bottom:752.145000px;}
.y12f{bottom:752.505000px;}
.y197{bottom:752.685000px;}
.y44{bottom:753.045000px;}
.y16e{bottom:754.665000px;}
.y8b{bottom:755.025000px;}
.y146{bottom:758.445000px;}
.yb8{bottom:765.825000px;}
.y1bd{bottom:769.605000px;}
.y1e6{bottom:769.785000px;}
.y12e{bottom:770.145000px;}
.y43{bottom:770.505000px;}
.ye{bottom:770.685000px;}
.y16d{bottom:772.305000px;}
.y8a{bottom:772.665000px;}
.y111{bottom:775.725000px;}
.y196{bottom:779.325000px;}
.ye3{bottom:780.225000px;}
.y1bc{bottom:787.245000px;}
.y12d{bottom:787.785000px;}
.y42{bottom:788.145000px;}
.y16c{bottom:789.945000px;}
.y89{bottom:790.305000px;}
.yb7{bottom:792.465000px;}
.y1e5{bottom:796.245000px;}
.y195{bottom:796.965000px;}
.ye2{bottom:797.865000px;}
.y1bb{bottom:804.885000px;}
.y12c{bottom:805.245000px;}
.y41{bottom:805.785000px;}
.yd{bottom:806.505000px;}
.y16b{bottom:807.585000px;}
.y88{bottom:807.765000px;}
.y110{bottom:807.945000px;}
.y1e4{bottom:813.885000px;}
.ye1{bottom:815.325000px;}
.y12b{bottom:822.885000px;}
.y40{bottom:823.245000px;}
.y194{bottom:823.785000px;}
.y16a{bottom:825.045000px;}
.y87{bottom:825.405000px;}
.yb6{bottom:828.105000px;}
.y1ba{bottom:831.525000px;}
.ye0{bottom:832.965000px;}
.y12a{bottom:840.525000px;}
.y3f{bottom:840.885000px;}
.yc{bottom:842.505000px;}
.y169{bottom:842.685000px;}
.y86{bottom:843.045000px;}
.yb5{bottom:845.745000px;}
.y1b9{bottom:849.165000px;}
.ydf{bottom:850.605000px;}
.y1e3{bottom:857.985000px;}
.y129{bottom:858.165000px;}
.y3e{bottom:858.570000px;}
.yb4{bottom:863.250000px;}
.y1b8{bottom:866.670000px;}
.yde{bottom:868.290000px;}
.y85{bottom:869.550000px;}
.y193{bottom:872.070000px;}
.y1e2{bottom:875.670000px;}
.y3d{bottom:876.210000px;}
.yb{bottom:878.190000px;}
.yf9{bottom:883.410000px;}
.y1b7{bottom:884.310000px;}
.y1e1{bottom:893.310000px;}
.y3c{bottom:893.670000px;}
.ydd{bottom:894.930000px;}
.yb2{bottom:896.190000px;}
.y192{bottom:899.070000px;}
.ya{bottom:899.610000px;}
.yf8{bottom:901.770000px;}
.y84{bottom:902.490000px;}
.y1b6{bottom:910.770000px;}
.y3b{bottom:911.310000px;}
.y9{bottom:913.470000px;}
.y168{bottom:915.270000px;}
.y8{bottom:917.250000px;}
.y1e0{bottom:919.770000px;}
.y1b5{bottom:928.410000px;}
.y3a{bottom:928.950000px;}
.y191{bottom:936.150000px;}
.y1df{bottom:937.410000px;}
.y167{bottom:942.630000px;}
.ydc{bottom:943.350000px;}
.y1b4{bottom:946.050000px;}
.y39{bottom:946.410000px;}
.y83{bottom:947.490000px;}
.y6{bottom:949.290000px;}
.y7{bottom:953.070000px;}
.y190{bottom:953.790000px;}
.y1de{bottom:955.050000px;}
.yb1{bottom:958.650000px;}
.ydb{bottom:960.990000px;}
.y128{bottom:964.050000px;}
.y166{bottom:969.810000px;}
.y18f{bottom:971.250000px;}
.y1b3{bottom:972.510000px;}
.yda{bottom:978.630000px;}
.y1dd{bottom:981.510000px;}
.y127{bottom:981.690000px;}
.y38{bottom:982.050000px;}
.y5{bottom:987.630000px;}
.y18e{bottom:988.890000px;}
.y1b2{bottom:990.150000px;}
.y82{bottom:992.310000px;}
.y165{bottom:997.170000px;}
.y126{bottom:999.150000px;}
.y37{bottom:999.690000px;}
.yab{bottom:1003.650000px;}
.y18d{bottom:1006.530000px;}
.y4{bottom:1012.290000px;}
.yd9{bottom:1014.090000px;}
.y125{bottom:1016.790000px;}
.y36{bottom:1017.150000px;}
.y18c{bottom:1023.990000px;}
.y164{bottom:1024.530000px;}
.y124{bottom:1034.430000px;}
.y35{bottom:1034.790000px;}
.y81{bottom:1037.310000px;}
.y18b{bottom:1041.630000px;}
.y1dc{bottom:1043.430000px;}
.yd8{bottom:1049.730000px;}
.y162{bottom:1051.890000px;}
.y123{bottom:1052.070000px;}
.y34{bottom:1052.430000px;}
.y18a{bottom:1059.270000px;}
.y1b1{bottom:1060.890000px;}
.y1db{bottom:1061.070000px;}
.y80{bottom:1064.670000px;}
.yd7{bottom:1067.370000px;}
.y33{bottom:1070.070000px;}
.y189{bottom:1076.730000px;}
.y1b0{bottom:1078.530000px;}
.yd6{bottom:1087.170000px;}
.y32{bottom:1087.530000px;}
.y188{bottom:1094.370000px;}
.y1af{bottom:1096.170000px;}
.yd5{bottom:1104.810000px;}
.y31{bottom:1105.170000px;}
.y7e{bottom:1109.490000px;}
.y187{bottom:1112.010000px;}
.yaa{bottom:1122.630000px;}
.y30{bottom:1122.810000px;}
.y186{bottom:1138.860000px;}
.y2e{bottom:1140.300000px;}
.y2f{bottom:1144.080000px;}
.y2c{bottom:1194.300000px;}
.h1e{height:17.460000px;}
.h20{height:17.640000px;}
.h23{height:19.980000px;}
.h10{height:26.460000px;}
.hf{height:26.496000px;}
.h13{height:26.640000px;}
.h21{height:26.676000px;}
.h2{height:29.717578px;}
.h9{height:32.918906px;}
.he{height:33.830156px;}
.hb{height:35.477578px;}
.h7{height:36.336094px;}
.h1c{height:36.878203px;}
.h4{height:39.468516px;}
.h8{height:42.516562px;}
.h12{height:44.100000px;}
.h11{height:44.280000px;}
.h17{height:44.316000px;}
.h3{height:46.986328px;}
.h25{height:48.600000px;}
.ha{height:50.597578px;}
.hc{height:51.998203px;}
.hd{height:56.084062px;}
.h6{height:57.636562px;}
.h26{height:61.423863px;}
.h19{height:61.740000px;}
.h15{height:62.211094px;}
.h16{height:66.240000px;}
.h14{height:68.956875px;}
.h5{height:73.298672px;}
.h18{height:96.840000px;}
.h1a{height:100.224141px;}
.h1b{height:113.475234px;}
.h1d{height:240.690000px;}
.h1f{height:252.030000px;}
.h24{height:276.690000px;}
.h22{height:378.075000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:38.736000px;}
.w5{width:45.396000px;}
.we{width:48.960000px;}
.wd{width:52.020000px;}
.wf{width:59.616000px;}
.w19{width:60.120000px;}
.w10{width:61.560000px;}
.w12{width:79.740000px;}
.wc{width:80.136000px;}
.w1b{width:84.960000px;}
.w1a{width:93.096000px;}
.wb{width:100.260000px;}
.w13{width:102.816000px;}
.w21{width:108.396000px;}
.w1e{width:113.076000px;}
.w18{width:113.976000px;}
.w6{width:119.340000px;}
.w1f{width:124.056000px;}
.w11{width:125.496000px;}
.w22{width:131.796000px;}
.w20{width:136.260000px;}
.w1d{width:138.456000px;}
.w9{width:150.150000px;}
.w1c{width:154.290000px;}
.w8{width:163.650000px;}
.w15{width:165.090000px;}
.w3{width:181.470000px;}
.w17{width:190.110000px;}
.w7{width:274.395000px;}
.w16{width:399.165000px;}
.w4{width:573.450000px;}
.w14{width:755.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:3.960000px;}
.x13{left:7.740000px;}
.x44{left:25.920000px;}
.x40{left:38.880000px;}
.x41{left:54.945000px;}
.x3e{left:58.365000px;}
.x3d{left:59.436000px;}
.x42{left:64.305000px;}
.x46{left:65.745000px;}
.x1{left:68.040000px;}
.x43{left:69.525000px;}
.x45{left:73.845000px;}
.x8{left:75.600000px;}
.x57{left:95.075987px;}
.x21{left:108.216000px;}
.x58{left:111.275987px;}
.x16{left:114.876000px;}
.x11{left:128.915987px;}
.x49{left:136.115987px;}
.x32{left:142.055987px;}
.x1b{left:157.529987px;}
.x1d{left:161.669987px;}
.x4d{left:191.910000px;}
.x9{left:202.709987px;}
.x33{left:206.489987px;}
.x52{left:207.930000px;}
.x22{left:209.190000px;}
.x2{left:210.630000px;}
.x1e{left:221.249987px;}
.x4b{left:223.589987px;}
.x2e{left:227.729987px;}
.x17{left:234.930000px;}
.x2c{left:239.789987px;}
.x4{left:250.410000px;}
.x3b{left:263.774987px;}
.x5{left:265.215000px;}
.x15{left:285.914987px;}
.x23{left:290.055000px;}
.x35{left:291.854987px;}
.x4e{left:306.615000px;}
.x53{left:321.735000px;}
.x37{left:323.174987px;}
.x12{left:326.054987px;}
.xb{left:332.714987px;}
.x24{left:342.795000px;}
.x3{left:356.655000px;}
.xc{left:361.154987px;}
.xd{left:364.934987px;}
.x4f{left:367.455000px;}
.x30{left:368.535000px;}
.x38{left:389.774987px;}
.x25{left:392.475000px;}
.xe{left:401.474987px;}
.xf{left:407.054987px;}
.x2d{left:421.994987px;}
.x2a{left:440.534987px;}
.x54{left:446.505000px;}
.x26{left:452.805000px;}
.x50{left:461.445000px;}
.x2b{left:476.564987px;}
.x6{left:487.185000px;}
.x18{left:510.045000px;}
.x27{left:515.085000px;}
.x51{left:547.125000px;}
.x39{left:570.164987px;}
.x55{left:583.485000px;}
.x1a{left:608.684987px;}
.x47{left:631.050000px;}
.x48{left:633.210000px;}
.x3f{left:634.470000px;}
.x28{left:641.310000px;}
.x4c{left:669.749987px;}
.x19{left:674.430000px;}
.x10{left:676.229987px;}
.x2f{left:678.210000px;}
.x36{left:680.729987px;}
.x3c{left:690.089987px;}
.x56{left:692.790000px;}
.x14{left:699.809987px;}
.x31{left:704.130000px;}
.x29{left:721.770000px;}
.x7{left:724.110000px;}
.x3a{left:730.229987px;}
.x1f{left:731.489987px;}
.x34{left:761.009987px;}
.x1c{left:764.969987px;}
.x4a{left:781.889987px;}
.xa{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v7{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v6{vertical-align:37.760000pt;}
.v5{vertical-align:44.320000pt;}
.ls13{letter-spacing:-8.480000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.329067pt;}
.ls8{letter-spacing:-0.290133pt;}
.ls33{letter-spacing:-0.229333pt;}
.ls38{letter-spacing:-0.208533pt;}
.ls3c{letter-spacing:-0.166400pt;}
.ls26{letter-spacing:-0.116267pt;}
.ls1e{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.095467pt;}
.ls14{letter-spacing:-0.046720pt;}
.ls12{letter-spacing:-0.034560pt;}
.ls29{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.028853pt;}
.ls3d{letter-spacing:-0.013440pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls39{letter-spacing:0.020480pt;}
.ls34{letter-spacing:0.029280pt;}
.ls2d{letter-spacing:0.031200pt;}
.ls30{letter-spacing:0.032907pt;}
.ls37{letter-spacing:0.034560pt;}
.ls19{letter-spacing:0.053760pt;}
.ls41{letter-spacing:0.056533pt;}
.ls24{letter-spacing:0.116267pt;}
.ls28{letter-spacing:0.118933pt;}
.ls1d{letter-spacing:0.122133pt;}
.ls5{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.132267pt;}
.ls10{letter-spacing:0.162133pt;}
.ls20{letter-spacing:0.173333pt;}
.ls3b{letter-spacing:0.186133pt;}
.lsc{letter-spacing:0.188160pt;}
.ls21{letter-spacing:0.188267pt;}
.ls35{letter-spacing:0.193067pt;}
.ls27{letter-spacing:0.213760pt;}
.ls15{letter-spacing:0.274667pt;}
.ls22{letter-spacing:0.284160pt;}
.ls36{letter-spacing:0.297067pt;}
.ls1c{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.312533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.340267pt;}
.lsa{letter-spacing:0.342933pt;}
.ls1b{letter-spacing:0.444160pt;}
.ls11{letter-spacing:0.521067pt;}
.ls2a{letter-spacing:0.537768pt;}
.ls2c{letter-spacing:0.560000pt;}
.ls18{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.736000pt;}
.ls2b{letter-spacing:0.839911pt;}
.ls1f{letter-spacing:0.885333pt;}
.ls2f{letter-spacing:1.034667pt;}
.lse{letter-spacing:1.153626pt;}
.ls1a{letter-spacing:1.862484pt;}
.ls32{letter-spacing:3.710059pt;}
.lsd{letter-spacing:6.173492pt;}
.ls40{letter-spacing:8.153600pt;}
.ls3f{letter-spacing:42.192640pt;}
.ls23{letter-spacing:51.981227pt;}
.ls3a{letter-spacing:56.912640pt;}
.ls3e{letter-spacing:72.272640pt;}
.ws1c{word-spacing:-74.996267pt;}
.ws1b{word-spacing:-74.880000pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws12{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.ws23{word-spacing:-12.721067pt;}
.ws16{word-spacing:-12.571733pt;}
.ws11{word-spacing:-12.422400pt;}
.ws22{word-spacing:-12.369067pt;}
.ws4{word-spacing:-12.326400pt;}
.ws25{word-spacing:-12.246400pt;}
.wsd{word-spacing:-12.207467pt;}
.ws26{word-spacing:-12.026667pt;}
.ws13{word-spacing:-11.991467pt;}
.ws10{word-spacing:-11.961067pt;}
.ws29{word-spacing:-11.879467pt;}
.ws18{word-spacing:-11.874667pt;}
.ws2d{word-spacing:-11.872533pt;}
.ws17{word-spacing:-11.859733pt;}
.wsc{word-spacing:-11.848533pt;}
.ws19{word-spacing:-11.818667pt;}
.ws14{word-spacing:-11.808533pt;}
.ws2e{word-spacing:-11.742933pt;}
.ws24{word-spacing:-11.719307pt;}
.ws21{word-spacing:-11.717600pt;}
.ws28{word-spacing:-11.715680pt;}
.ws5{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.ws1f{word-spacing:-11.676800pt;}
.ws2c{word-spacing:-11.672960pt;}
.ws2a{word-spacing:-11.657547pt;}
.ws20{word-spacing:-11.654400pt;}
.wse{word-spacing:-11.651840pt;}
.wsf{word-spacing:-11.639680pt;}
.wsb{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.574400pt;}
.ws27{word-spacing:-11.457067pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws1d{word-spacing:-7.722133pt;}
.ws1e{word-spacing:-7.603200pt;}
.ws2b{word-spacing:-7.394667pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:2.268480pt;}
._20{margin-left:-6.565690pt;}
._21{margin-left:-4.721261pt;}
._6{margin-left:-3.354616pt;}
._5{margin-left:-1.954586pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.960000pt;}
._2{width:2.030945pt;}
._3{width:3.260789pt;}
._4{width:4.732332pt;}
._c{width:5.973610pt;}
._7{width:7.200256pt;}
._8{width:8.257877pt;}
._10{width:9.567403pt;}
._b{width:10.698134pt;}
._9{width:13.067732pt;}
._a{width:14.089076pt;}
._14{width:14.980771pt;}
._e{width:16.148799pt;}
._d{width:17.264000pt;}
._11{width:19.033600pt;}
._1f{width:20.158443pt;}
._f{width:21.161485pt;}
._24{width:22.559543pt;}
._25{width:24.064640pt;}
._1d{width:25.391360pt;}
._28{width:26.880000pt;}
._27{width:28.419200pt;}
._26{width:29.322240pt;}
._17{width:30.490880pt;}
._19{width:33.359360pt;}
._1b{width:38.140160pt;}
._1c{width:50.995200pt;}
._1a{width:56.007893pt;}
._15{width:58.007040pt;}
._22{width:61.018589pt;}
._23{width:78.405120pt;}
._1e{width:90.675840pt;}
._12{width:122.756480pt;}
._13{width:177.171840pt;}
._16{width:216.092160pt;}
._18{width:232.028160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:3.040000pt;}
.y140{bottom:3.200000pt;}
.y14b{bottom:6.400000pt;}
.y4e{bottom:6.880000pt;}
.y4c{bottom:6.906667pt;}
.y51{bottom:7.040000pt;}
.y135{bottom:10.400000pt;}
.y7d{bottom:11.040000pt;}
.y53{bottom:22.560000pt;}
.y50{bottom:22.720000pt;}
.y7f{bottom:22.746667pt;}
.y149{bottom:26.560000pt;}
.y7c{bottom:26.720000pt;}
.yaf{bottom:38.240000pt;}
.yb3{bottom:38.400000pt;}
.y7a{bottom:42.234667pt;}
.y163{bottom:42.240000pt;}
.y7b{bottom:42.394667pt;}
.yb0{bottom:49.920000pt;}
.yae{bottom:53.920000pt;}
.y3{bottom:65.152000pt;}
.y2d{bottom:65.952000pt;}
.yac{bottom:69.440000pt;}
.yad{bottom:69.600000pt;}
.y2{bottom:85.472000pt;}
.y1{bottom:90.112000pt;}
.y79{bottom:96.832000pt;}
.y161{bottom:102.752000pt;}
.y1da{bottom:103.552000pt;}
.y1ae{bottom:103.712000pt;}
.yd4{bottom:106.112000pt;}
.y122{bottom:107.392000pt;}
.y61{bottom:110.912000pt;}
.y160{bottom:118.432000pt;}
.y1d9{bottom:119.232000pt;}
.y1ad{bottom:119.392000pt;}
.yd3{bottom:121.792000pt;}
.y90{bottom:124.512000pt;}
.y60{bottom:126.592000pt;}
.y2b{bottom:127.392000pt;}
.y185{bottom:131.232000pt;}
.ya9{bottom:131.392000pt;}
.y15f{bottom:134.106667pt;}
.y1f8{bottom:134.746667pt;}
.y1d8{bottom:134.906667pt;}
.y121{bottom:136.026667pt;}
.yd2{bottom:137.466667pt;}
.y5f{bottom:142.266667pt;}
.y2a{bottom:142.906667pt;}
.y1ac{bottom:143.066667pt;}
.y10f{bottom:143.386667pt;}
.yf6{bottom:145.786667pt;}
.y15e{bottom:149.626667pt;}
.y1f7{bottom:150.426667pt;}
.y8f{bottom:153.146667pt;}
.y184{bottom:155.066667pt;}
.y78{bottom:156.346667pt;}
.y1d7{bottom:158.426667pt;}
.y29{bottom:158.586667pt;}
.y1ab{bottom:158.746667pt;}
.y10e{bottom:159.066667pt;}
.yf5{bottom:162.106667pt;}
.ya8{bottom:163.066667pt;}
.y15d{bottom:165.306667pt;}
.y5e{bottom:165.946667pt;}
.yd1{bottom:168.666667pt;}
.y1d6{bottom:174.106667pt;}
.y28{bottom:174.266667pt;}
.y10d{bottom:174.586667pt;}
.y15c{bottom:180.986667pt;}
.y1aa{bottom:182.266667pt;}
.yd0{bottom:184.346667pt;}
.y183{bottom:188.026667pt;}
.y27{bottom:189.786667pt;}
.y10c{bottom:190.266667pt;}
.ya7{bottom:194.746667pt;}
.y77{bottom:196.346667pt;}
.y15b{bottom:196.666667pt;}
.y1a9{bottom:197.946667pt;}
.ycf{bottom:200.026667pt;}
.y26{bottom:205.466667pt;}
.y10b{bottom:205.946667pt;}
.y5d{bottom:208.986667pt;}
.y182{bottom:212.026667pt;}
.y15a{bottom:212.186667pt;}
.y1d5{bottom:213.306667pt;}
.y25{bottom:221.146667pt;}
.y10a{bottom:221.466667pt;}
.y5c{bottom:224.666667pt;}
.ya6{bottom:226.266667pt;}
.y159{bottom:227.866667pt;}
.y1d4{bottom:228.986667pt;}
.yce{bottom:231.546667pt;}
.y76{bottom:236.346667pt;}
.y109{bottom:237.146667pt;}
.y5b{bottom:240.346667pt;}
.ya5{bottom:241.946667pt;}
.y1f6{bottom:244.666667pt;}
.y181{bottom:245.146667pt;}
.y1d3{bottom:252.506667pt;}
.y24{bottom:252.666667pt;}
.y5a{bottom:256.026667pt;}
.ya4{bottom:257.626667pt;}
.y158{bottom:259.386667pt;}
.ycd{bottom:260.186667pt;}
.y1a8{bottom:260.826667pt;}
.y1d2{bottom:268.186667pt;}
.y23{bottom:268.346667pt;}
.y108{bottom:268.826667pt;}
.ycc{bottom:269.626667pt;}
.y59{bottom:271.546667pt;}
.ya3{bottom:273.306667pt;}
.y157{bottom:275.106667pt;}
.y1a7{bottom:276.546667pt;}
.y75{bottom:279.586667pt;}
.y1d1{bottom:283.906667pt;}
.y22{bottom:284.066667pt;}
.y107{bottom:284.546667pt;}
.y58{bottom:287.266667pt;}
.y180{bottom:288.066667pt;}
.ya2{bottom:288.866667pt;}
.y156{bottom:290.786667pt;}
.y21{bottom:299.746667pt;}
.y106{bottom:300.066667pt;}
.y57{bottom:302.946667pt;}
.y17f{bottom:304.386667pt;}
.y155{bottom:306.466667pt;}
.y1d0{bottom:307.586667pt;}
.ycb{bottom:310.786667pt;}
.y74{bottom:311.266667pt;}
.ya1{bottom:312.546667pt;}
.y20{bottom:315.266667pt;}
.y105{bottom:315.746667pt;}
.y13f{bottom:316.066667pt;}
.y56{bottom:318.466667pt;}
.y17e{bottom:320.706667pt;}
.y154{bottom:321.986667pt;}
.y1cf{bottom:323.266667pt;}
.yca{bottom:326.466667pt;}
.y73{bottom:326.946667pt;}
.y1f{bottom:330.946667pt;}
.y104{bottom:331.426667pt;}
.y13e{bottom:331.746667pt;}
.y17d{bottom:337.186667pt;}
.y145{bottom:337.666667pt;}
.y1ce{bottom:338.786667pt;}
.y1a6{bottom:339.266667pt;}
.yc9{bottom:342.146667pt;}
.y72{bottom:342.626667pt;}
.ya0{bottom:344.066667pt;}
.y1e{bottom:346.626667pt;}
.y1f5{bottom:346.786667pt;}
.y103{bottom:346.946667pt;}
.y13d{bottom:347.426667pt;}
.y55{bottom:347.746667pt;}
.y153{bottom:353.346667pt;}
.y17c{bottom:353.506667pt;}
.y1a5{bottom:354.946667pt;}
.yc8{bottom:357.826667pt;}
.y71{bottom:358.146667pt;}
.y9f{bottom:359.746667pt;}
.y1d{bottom:362.146667pt;}
.y1cd{bottom:362.466667pt;}
.y102{bottom:362.626667pt;}
.y13c{bottom:363.106667pt;}
.y152{bottom:368.866667pt;}
.y144{bottom:369.346667pt;}
.y17b{bottom:369.826667pt;}
.y54{bottom:372.066667pt;}
.yc7{bottom:373.346667pt;}
.y70{bottom:373.826667pt;}
.y9e{bottom:375.426667pt;}
.y1c{bottom:377.826667pt;}
.y1cc{bottom:378.146667pt;}
.y13b{bottom:378.626667pt;}
.y151{bottom:384.546667pt;}
.y143{bottom:385.026667pt;}
.y1f4{bottom:385.986667pt;}
.y17a{bottom:386.306667pt;}
.yc6{bottom:389.026667pt;}
.y6f{bottom:389.506667pt;}
.y9d{bottom:391.106667pt;}
.y1b{bottom:393.506667pt;}
.y1cb{bottom:393.666667pt;}
.y101{bottom:394.146667pt;}
.y1a4{bottom:394.306667pt;}
.yf4{bottom:395.746667pt;}
.y1f3{bottom:401.666667pt;}
.y179{bottom:402.626667pt;}
.yc5{bottom:404.706667pt;}
.y6e{bottom:405.026667pt;}
.y142{bottom:406.146667pt;}
.y9c{bottom:406.786667pt;}
.y1a{bottom:409.186667pt;}
.y13a{bottom:410.146667pt;}
.yf3{bottom:411.426667pt;}
.y52{bottom:412.066667pt;}
.y150{bottom:416.226667pt;}
.y1ca{bottom:417.346667pt;}
.y1a3{bottom:417.826667pt;}
.y178{bottom:418.946667pt;}
.yc4{bottom:420.386667pt;}
.y9b{bottom:422.306667pt;}
.y120{bottom:423.106667pt;}
.y141{bottom:424.546667pt;}
.y19{bottom:424.706667pt;}
.y139{bottom:425.506667pt;}
.y100{bottom:425.826667pt;}
.yf2{bottom:427.106667pt;}
.y14f{bottom:429.506667pt;}
.y1c9{bottom:433.026667pt;}
.y1a2{bottom:433.506667pt;}
.y177{bottom:435.266667pt;}
.yc3{bottom:435.906667pt;}
.y6d{bottom:436.706667pt;}
.y9a{bottom:437.986667pt;}
.y11f{bottom:438.786667pt;}
.y1f2{bottom:440.866667pt;}
.yf1{bottom:442.626667pt;}
.y18{bottom:448.546667pt;}
.y138{bottom:449.826667pt;}
.yc2{bottom:451.586667pt;}
.y176{bottom:451.746667pt;}
.y4f{bottom:451.906667pt;}
.y6c{bottom:452.386667pt;}
.y99{bottom:453.666667pt;}
.y14e{bottom:453.826667pt;}
.y11e{bottom:454.306667pt;}
.y1f1{bottom:456.546667pt;}
.y1a1{bottom:457.186667pt;}
.yff{bottom:457.506667pt;}
.yf0{bottom:461.666667pt;}
.yc1{bottom:467.266667pt;}
.y6b{bottom:467.906667pt;}
.y175{bottom:468.066667pt;}
.y11d{bottom:469.986667pt;}
.y1c8{bottom:472.226667pt;}
.y1a0{bottom:472.866667pt;}
.yfe{bottom:473.186667pt;}
.yef{bottom:473.986667pt;}
.y137{bottom:474.146667pt;}
.y14d{bottom:477.986667pt;}
.y1f0{bottom:480.226667pt;}
.y6a{bottom:483.586667pt;}
.y174{bottom:484.386667pt;}
.yc0{bottom:484.866667pt;}
.y98{bottom:485.186667pt;}
.y11c{bottom:485.666667pt;}
.y1c7{bottom:487.906667pt;}
.yee{bottom:489.506667pt;}
.y17{bottom:491.746667pt;}
.y4d{bottom:491.906667pt;}
.y1ef{bottom:495.906667pt;}
.y19f{bottom:496.386667pt;}
.y136{bottom:498.466667pt;}
.y69{bottom:499.266667pt;}
.ybf{bottom:500.546667pt;}
.y97{bottom:500.866667pt;}
.y14c{bottom:502.306667pt;}
.yfd{bottom:504.706667pt;}
.yed{bottom:505.186667pt;}
.y1c6{bottom:511.426667pt;}
.y19e{bottom:512.066667pt;}
.y68{bottom:514.946667pt;}
.y4b{bottom:516.226667pt;}
.y96{bottom:516.546667pt;}
.y11b{bottom:517.186667pt;}
.y1ee{bottom:519.453333pt;}
.y134{bottom:522.813333pt;}
.ybe{bottom:524.093333pt;}
.y16{bottom:524.413333pt;}
.y14a{bottom:526.653333pt;}
.y67{bottom:530.493333pt;}
.yfc{bottom:530.973333pt;}
.y95{bottom:532.093333pt;}
.y11a{bottom:532.893333pt;}
.y173{bottom:533.533333pt;}
.y1c5{bottom:535.133333pt;}
.y19d{bottom:535.613333pt;}
.yec{bottom:536.893333pt;}
.y15{bottom:540.093333pt;}
.yfb{bottom:544.253333pt;}
.y66{bottom:546.173333pt;}
.y133{bottom:547.133333pt;}
.y94{bottom:547.773333pt;}
.y119{bottom:548.573333pt;}
.y172{bottom:550.013333pt;}
.y1c4{bottom:550.813333pt;}
.y148{bottom:550.973333pt;}
.y19c{bottom:551.293333pt;}
.yeb{bottom:552.573333pt;}
.y14{bottom:555.613333pt;}
.ybd{bottom:555.773333pt;}
.y1ed{bottom:558.813333pt;}
.y4a{bottom:559.453333pt;}
.yfa{bottom:560.573333pt;}
.y65{bottom:561.853333pt;}
.y118{bottom:564.093333pt;}
.y171{bottom:566.333333pt;}
.y1c3{bottom:566.493333pt;}
.y19b{bottom:566.973333pt;}
.yea{bottom:568.093333pt;}
.y13{bottom:571.293333pt;}
.y93{bottom:571.453333pt;}
.y1ec{bottom:574.493333pt;}
.y117{bottom:579.773333pt;}
.ye9{bottom:583.773333pt;}
.y64{bottom:585.373333pt;}
.y12{bottom:586.973333pt;}
.y1c2{bottom:590.013333pt;}
.y19a{bottom:590.653333pt;}
.y170{bottom:590.973333pt;}
.y49{bottom:591.133333pt;}
.y116{bottom:595.453333pt;}
.y1eb{bottom:598.013333pt;}
.ye8{bottom:599.453333pt;}
.y11{bottom:602.653333pt;}
.y92{bottom:602.973333pt;}
.y1c1{bottom:605.693333pt;}
.y132{bottom:606.013333pt;}
.y199{bottom:606.333333pt;}
.y48{bottom:606.813333pt;}
.y8e{bottom:608.253333pt;}
.y115{bottom:611.133333pt;}
.y1ea{bottom:613.693333pt;}
.y147{bottom:613.853333pt;}
.ye7{bottom:614.973333pt;}
.y63{bottom:617.053333pt;}
.y10{bottom:618.173333pt;}
.ybc{bottom:618.333333pt;}
.y47{bottom:622.493333pt;}
.y8d{bottom:623.933333pt;}
.y114{bottom:626.653333pt;}
.y1c0{bottom:629.213333pt;}
.y1e9{bottom:629.373333pt;}
.y198{bottom:629.853333pt;}
.ye6{bottom:630.653333pt;}
.y91{bottom:631.613333pt;}
.ybb{bottom:633.853333pt;}
.y131{bottom:637.693333pt;}
.y46{bottom:638.013333pt;}
.y8c{bottom:639.613333pt;}
.yf{bottom:642.013333pt;}
.y113{bottom:642.333333pt;}
.y1bf{bottom:644.893333pt;}
.y62{bottom:645.533333pt;}
.ye5{bottom:646.333333pt;}
.yba{bottom:649.533333pt;}
.y1e8{bottom:652.893333pt;}
.y130{bottom:653.373333pt;}
.y45{bottom:653.693333pt;}
.y16f{bottom:655.293333pt;}
.y112{bottom:658.013333pt;}
.y1be{bottom:660.573333pt;}
.ye4{bottom:661.853333pt;}
.yb9{bottom:665.213333pt;}
.y1e7{bottom:668.573333pt;}
.y12f{bottom:668.893333pt;}
.y197{bottom:669.053333pt;}
.y44{bottom:669.373333pt;}
.y16e{bottom:670.813333pt;}
.y8b{bottom:671.133333pt;}
.y146{bottom:674.173333pt;}
.yb8{bottom:680.733333pt;}
.y1bd{bottom:684.093333pt;}
.y1e6{bottom:684.253333pt;}
.y12e{bottom:684.573333pt;}
.y43{bottom:684.893333pt;}
.ye{bottom:685.053333pt;}
.y16d{bottom:686.493333pt;}
.y8a{bottom:686.813333pt;}
.y111{bottom:689.533333pt;}
.y196{bottom:692.733333pt;}
.ye3{bottom:693.533333pt;}
.y1bc{bottom:699.773333pt;}
.y12d{bottom:700.253333pt;}
.y42{bottom:700.573333pt;}
.y16c{bottom:702.173333pt;}
.y89{bottom:702.493333pt;}
.yb7{bottom:704.413333pt;}
.y1e5{bottom:707.773333pt;}
.y195{bottom:708.413333pt;}
.ye2{bottom:709.213333pt;}
.y1bb{bottom:715.453333pt;}
.y12c{bottom:715.773333pt;}
.y41{bottom:716.253333pt;}
.yd{bottom:716.893333pt;}
.y16b{bottom:717.853333pt;}
.y88{bottom:718.013333pt;}
.y110{bottom:718.173333pt;}
.y1e4{bottom:723.453333pt;}
.ye1{bottom:724.733333pt;}
.y12b{bottom:731.453333pt;}
.y40{bottom:731.773333pt;}
.y194{bottom:732.253333pt;}
.y16a{bottom:733.373333pt;}
.y87{bottom:733.693333pt;}
.yb6{bottom:736.093333pt;}
.y1ba{bottom:739.133333pt;}
.ye0{bottom:740.413333pt;}
.y12a{bottom:747.133333pt;}
.y3f{bottom:747.453333pt;}
.yc{bottom:748.893333pt;}
.y169{bottom:749.053333pt;}
.y86{bottom:749.373333pt;}
.yb5{bottom:751.773333pt;}
.y1b9{bottom:754.813333pt;}
.ydf{bottom:756.093333pt;}
.y1e3{bottom:762.653333pt;}
.y129{bottom:762.813333pt;}
.y3e{bottom:763.173333pt;}
.yb4{bottom:767.333333pt;}
.y1b8{bottom:770.373333pt;}
.yde{bottom:771.813333pt;}
.y85{bottom:772.933333pt;}
.y193{bottom:775.173333pt;}
.y1e2{bottom:778.373333pt;}
.y3d{bottom:778.853333pt;}
.yb{bottom:780.613333pt;}
.yf9{bottom:785.253333pt;}
.y1b7{bottom:786.053333pt;}
.y1e1{bottom:794.053333pt;}
.y3c{bottom:794.373333pt;}
.ydd{bottom:795.493333pt;}
.yb2{bottom:796.613333pt;}
.y192{bottom:799.173333pt;}
.ya{bottom:799.653333pt;}
.yf8{bottom:801.573333pt;}
.y84{bottom:802.213333pt;}
.y1b6{bottom:809.573333pt;}
.y3b{bottom:810.053333pt;}
.y9{bottom:811.973333pt;}
.y168{bottom:813.573333pt;}
.y8{bottom:815.333333pt;}
.y1e0{bottom:817.573333pt;}
.y1b5{bottom:825.253333pt;}
.y3a{bottom:825.733333pt;}
.y191{bottom:832.133333pt;}
.y1df{bottom:833.253333pt;}
.y167{bottom:837.893333pt;}
.ydc{bottom:838.533333pt;}
.y1b4{bottom:840.933333pt;}
.y39{bottom:841.253333pt;}
.y83{bottom:842.213333pt;}
.y6{bottom:843.813333pt;}
.y7{bottom:847.173333pt;}
.y190{bottom:847.813333pt;}
.y1de{bottom:848.933333pt;}
.yb1{bottom:852.133333pt;}
.ydb{bottom:854.213333pt;}
.y128{bottom:856.933333pt;}
.y166{bottom:862.053333pt;}
.y18f{bottom:863.333333pt;}
.y1b3{bottom:864.453333pt;}
.yda{bottom:869.893333pt;}
.y1dd{bottom:872.453333pt;}
.y127{bottom:872.613333pt;}
.y38{bottom:872.933333pt;}
.y5{bottom:877.893333pt;}
.y18e{bottom:879.013333pt;}
.y1b2{bottom:880.133333pt;}
.y82{bottom:882.053333pt;}
.y165{bottom:886.373333pt;}
.y126{bottom:888.133333pt;}
.y37{bottom:888.613333pt;}
.yab{bottom:892.133333pt;}
.y18d{bottom:894.693333pt;}
.y4{bottom:899.813333pt;}
.yd9{bottom:901.413333pt;}
.y125{bottom:903.813333pt;}
.y36{bottom:904.133333pt;}
.y18c{bottom:910.213333pt;}
.y164{bottom:910.693333pt;}
.y124{bottom:919.493333pt;}
.y35{bottom:919.813333pt;}
.y81{bottom:922.053333pt;}
.y18b{bottom:925.893333pt;}
.y1dc{bottom:927.493333pt;}
.yd8{bottom:933.093333pt;}
.y162{bottom:935.013333pt;}
.y123{bottom:935.173333pt;}
.y34{bottom:935.493333pt;}
.y18a{bottom:941.573333pt;}
.y1b1{bottom:943.013333pt;}
.y1db{bottom:943.173333pt;}
.y80{bottom:946.373333pt;}
.yd7{bottom:948.773333pt;}
.y33{bottom:951.173333pt;}
.y189{bottom:957.093333pt;}
.y1b0{bottom:958.693333pt;}
.yd6{bottom:966.373333pt;}
.y32{bottom:966.693333pt;}
.y188{bottom:972.773333pt;}
.y1af{bottom:974.373333pt;}
.yd5{bottom:982.053333pt;}
.y31{bottom:982.373333pt;}
.y7e{bottom:986.213333pt;}
.y187{bottom:988.453333pt;}
.yaa{bottom:997.893333pt;}
.y30{bottom:998.053333pt;}
.y186{bottom:1012.320000pt;}
.y2e{bottom:1013.600000pt;}
.y2f{bottom:1016.960000pt;}
.y2c{bottom:1061.600000pt;}
.h1e{height:15.520000pt;}
.h20{height:15.680000pt;}
.h23{height:17.760000pt;}
.h10{height:23.520000pt;}
.hf{height:23.552000pt;}
.h13{height:23.680000pt;}
.h21{height:23.712000pt;}
.h2{height:26.415625pt;}
.h9{height:29.261250pt;}
.he{height:30.071250pt;}
.hb{height:31.535625pt;}
.h7{height:32.298750pt;}
.h1c{height:32.780625pt;}
.h4{height:35.083125pt;}
.h8{height:37.792500pt;}
.h12{height:39.200000pt;}
.h11{height:39.360000pt;}
.h17{height:39.392000pt;}
.h3{height:41.765625pt;}
.h25{height:43.200000pt;}
.ha{height:44.975625pt;}
.hc{height:46.220625pt;}
.hd{height:49.852500pt;}
.h6{height:51.232500pt;}
.h26{height:54.598989pt;}
.h19{height:54.880000pt;}
.h15{height:55.298750pt;}
.h16{height:58.880000pt;}
.h14{height:61.295000pt;}
.h5{height:65.154375pt;}
.h18{height:86.080000pt;}
.h1a{height:89.088125pt;}
.h1b{height:100.866875pt;}
.h1d{height:213.946667pt;}
.h1f{height:224.026667pt;}
.h24{height:245.946667pt;}
.h22{height:336.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:34.432000pt;}
.w5{width:40.352000pt;}
.we{width:43.520000pt;}
.wd{width:46.240000pt;}
.wf{width:52.992000pt;}
.w19{width:53.440000pt;}
.w10{width:54.720000pt;}
.w12{width:70.880000pt;}
.wc{width:71.232000pt;}
.w1b{width:75.520000pt;}
.w1a{width:82.752000pt;}
.wb{width:89.120000pt;}
.w13{width:91.392000pt;}
.w21{width:96.352000pt;}
.w1e{width:100.512000pt;}
.w18{width:101.312000pt;}
.w6{width:106.080000pt;}
.w1f{width:110.272000pt;}
.w11{width:111.552000pt;}
.w22{width:117.152000pt;}
.w20{width:121.120000pt;}
.w1d{width:123.072000pt;}
.w9{width:133.466667pt;}
.w1c{width:137.146667pt;}
.w8{width:145.466667pt;}
.w15{width:146.746667pt;}
.w3{width:161.306667pt;}
.w17{width:168.986667pt;}
.w7{width:243.906667pt;}
.w16{width:354.813333pt;}
.w4{width:509.733333pt;}
.w14{width:671.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:3.520000pt;}
.x13{left:6.880000pt;}
.x44{left:23.040000pt;}
.x40{left:34.560000pt;}
.x41{left:48.840000pt;}
.x3e{left:51.880000pt;}
.x3d{left:52.832000pt;}
.x42{left:57.160000pt;}
.x46{left:58.440000pt;}
.x1{left:60.480000pt;}
.x43{left:61.800000pt;}
.x45{left:65.640000pt;}
.x8{left:67.200000pt;}
.x57{left:84.511988pt;}
.x21{left:96.192000pt;}
.x58{left:98.911988pt;}
.x16{left:102.112000pt;}
.x11{left:114.591988pt;}
.x49{left:120.991988pt;}
.x32{left:126.271988pt;}
.x1b{left:140.026655pt;}
.x1d{left:143.706655pt;}
.x4d{left:170.586667pt;}
.x9{left:180.186655pt;}
.x33{left:183.546655pt;}
.x52{left:184.826667pt;}
.x22{left:185.946667pt;}
.x2{left:187.226667pt;}
.x1e{left:196.666655pt;}
.x4b{left:198.746655pt;}
.x2e{left:202.426655pt;}
.x17{left:208.826667pt;}
.x2c{left:213.146655pt;}
.x4{left:222.586667pt;}
.x3b{left:234.466655pt;}
.x5{left:235.746667pt;}
.x15{left:254.146655pt;}
.x23{left:257.826667pt;}
.x35{left:259.426655pt;}
.x4e{left:272.546667pt;}
.x53{left:285.986667pt;}
.x37{left:287.266655pt;}
.x12{left:289.826655pt;}
.xb{left:295.746655pt;}
.x24{left:304.706667pt;}
.x3{left:317.026667pt;}
.xc{left:321.026655pt;}
.xd{left:324.386655pt;}
.x4f{left:326.626667pt;}
.x30{left:327.586667pt;}
.x38{left:346.466655pt;}
.x25{left:348.866667pt;}
.xe{left:356.866655pt;}
.xf{left:361.826655pt;}
.x2d{left:375.106655pt;}
.x2a{left:391.586655pt;}
.x54{left:396.893333pt;}
.x26{left:402.493333pt;}
.x50{left:410.173333pt;}
.x2b{left:423.613322pt;}
.x6{left:433.053333pt;}
.x18{left:453.373333pt;}
.x27{left:457.853333pt;}
.x51{left:486.333333pt;}
.x39{left:506.813322pt;}
.x55{left:518.653333pt;}
.x1a{left:541.053322pt;}
.x47{left:560.933333pt;}
.x48{left:562.853333pt;}
.x3f{left:563.973333pt;}
.x28{left:570.053333pt;}
.x4c{left:595.333322pt;}
.x19{left:599.493333pt;}
.x10{left:601.093322pt;}
.x2f{left:602.853333pt;}
.x36{left:605.093322pt;}
.x3c{left:613.413322pt;}
.x56{left:615.813333pt;}
.x14{left:622.053322pt;}
.x31{left:625.893333pt;}
.x29{left:641.573333pt;}
.x7{left:643.653333pt;}
.x3a{left:649.093322pt;}
.x1f{left:650.213322pt;}
.x34{left:676.453322pt;}
.x1c{left:679.973322pt;}
.x4a{left:695.013322pt;}
.xa{left:703.973322pt;}
}




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