
    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_07b88a343ab94dc441ac0da1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ddff63f662547c6d92f1ecb5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e100b460c3cda28cbae5189d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ef27f0bf10baaf99a5b97c0d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_ae64b7c65c082d20a98b3f21.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2cca2790acbb138487e74dfd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_22fe639d6d0186a9f9c57fda.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_13263a24129da274e099737c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_9a671451f45cf4a0c148e0a4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_547202bee86afe3a2e8ec688.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_0f47aa5ffb8e85b4a154fcaf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_163cb5e0623a4633d7886ddd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_69e1a117bae875ebfa39663b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_dcf9896bc16f4b15abd825b5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_efdab3a24f561fe1d77bb84a.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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_fc10a59d947e955b24e7021d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3c1f02444bbf52c6997f429d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0254aa5d7fffe9a4fd93cf34.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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:ff13;src:url('chunks/assets/font_30f00d7cf461a5bdb5393574.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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:ff14;src:url('chunks/assets/font_9c2400285dc9e2eac0a78047.woff')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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:ff15;src:url('chunks/assets/font_d8b4e6dc1a574ef75de01ff7.woff')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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:ff16;src:url('chunks/assets/font_184bb3256dd24021f523278a.woff')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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:ff17;src:url('chunks/assets/font_15567ed572c6e0f00c32172f.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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:ff18;src:url('chunks/assets/font_dc14c5f5e55d48f48b2b79f2.woff')format("woff");}.ff18{font-family:ff18;line-height:1.311035;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:ff19;src:url('chunks/assets/font_5cd53b74dbbd6c100731c973.woff')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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:ff1a;src:url('chunks/assets/font_3f8839aed1a00446156c767f.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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:ff1b;src:url('chunks/assets/font_1f840bcf464189b0f814b009.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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:ff1c;src:url('chunks/assets/font_31b5ad55d49a3105eed85479.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-5.700000px;}
.v3{vertical-align:-3.000000px;}
.v2{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.200000px;}
.v4{vertical-align:3.000000px;}
.ls1{letter-spacing:-3.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:172.812000px;}
.ls2{letter-spacing:206.721000px;}
.ls3{letter-spacing:260.181000px;}
.ls5{letter-spacing:278.100000px;}
.ls6{letter-spacing:302.946000px;}
.ls4{letter-spacing:440.412000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.684000px;}
.ws8{word-spacing:-15.846000px;}
.ws2{word-spacing:-11.178000px;}
.wsa{word-spacing:-10.008000px;}
.wsc{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:3.876000px;}
.ws4{word-spacing:4.161000px;}
.ws1{word-spacing:8.664000px;}
.ws5{word-spacing:151.638000px;}
.ws6{word-spacing:185.295000px;}
.ws9{word-spacing:191.580000px;}
.ws7{word-spacing:390.462000px;}
._27{margin-left:-12.312000px;}
._2e{margin-left:-11.115000px;}
._25{margin-left:-9.420600px;}
._e{margin-left:-7.695000px;}
._9{margin-left:-6.162000px;}
._19{margin-left:-5.139000px;}
._13{margin-left:-3.984000px;}
._a{margin-left:-2.808000px;}
._c{margin-left:-1.170000px;}
._7{width:1.788000px;}
._1{width:3.420000px;}
._2{width:4.440000px;}
._0{width:5.580000px;}
._5{width:6.840000px;}
._4{width:7.860000px;}
._f{width:9.819000px;}
._b{width:11.370000px;}
._3{width:12.480000px;}
._14{width:13.788000px;}
._6{width:14.820000px;}
._1b{width:15.918000px;}
._10{width:17.010000px;}
._11{width:18.156000px;}
._12{width:19.671000px;}
._8{width:20.676000px;}
._16{width:22.215000px;}
._15{width:23.403000px;}
._1d{width:24.579000px;}
._1a{width:25.596000px;}
._18{width:27.270000px;}
._23{width:28.311000px;}
._17{width:29.670000px;}
._22{width:30.759000px;}
._1e{width:32.505000px;}
._1c{width:34.314000px;}
._28{width:37.272000px;}
._24{width:38.721000px;}
._d{width:41.496000px;}
._2f{width:44.361000px;}
._2b{width:45.882000px;}
._30{width:48.396000px;}
._2a{width:53.457000px;}
._21{width:64.689000px;}
._26{width:145.707000px;}
._2c{width:155.241000px;}
._2d{width:174.165000px;}
._20{width:176.358000px;}
._29{width:287.850000px;}
._1f{width:422.118000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs8{font-size:99.000000px;}
.fs6{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:17.625000px;}
.y19c{bottom:22.650000px;}
.yf2{bottom:23.025000px;}
.y125{bottom:23.775000px;}
.y178{bottom:24.900000px;}
.y97{bottom:25.200000px;}
.y152{bottom:29.475000px;}
.y28{bottom:33.825000px;}
.y7c{bottom:39.600000px;}
.yc7{bottom:60.450000px;}
.y4c{bottom:61.200000px;}
.y19b{bottom:64.725000px;}
.yf1{bottom:66.225000px;}
.y96{bottom:67.651500px;}
.y1c7{bottom:68.025000px;}
.y124{bottom:68.775000px;}
.y177{bottom:69.526500px;}
.yc6{bottom:71.625000px;}
.y4b{bottom:72.300000px;}
.y27{bottom:76.725150px;}
.yf0{bottom:77.775000px;}
.y123{bottom:79.950000px;}
.y7b{bottom:82.050000px;}
.yc5{bottom:82.425000px;}
.y95{bottom:82.800000px;}
.y151{bottom:83.475000px;}
.y4a{bottom:83.850000px;}
.y176{bottom:85.350000px;}
.y26{bottom:87.825000px;}
.yef{bottom:89.250000px;}
.y1c6{bottom:91.125000px;}
.y122{bottom:91.800000px;}
.y150{bottom:94.275000px;}
.y7a{bottom:96.825000px;}
.y25{bottom:98.625000px;}
.y19a{bottom:102.975000px;}
.yee{bottom:103.650000px;}
.y1c5{bottom:106.200000px;}
.y49{bottom:106.500000px;}
.yc4{bottom:108.000000px;}
.y79{bottom:108.375000px;}
.y121{bottom:108.750000px;}
.y24{bottom:111.600000px;}
.y94{bottom:115.200000px;}
.y48{bottom:117.675000px;}
.y1c4{bottom:117.750000px;}
.y175{bottom:118.125000px;}
.yc3{bottom:119.475000px;}
.y78{bottom:119.850000px;}
.yed{bottom:120.225000px;}
.y14f{bottom:122.700000px;}
.y23{bottom:122.775000px;}
.y47{bottom:128.850000px;}
.y1c3{bottom:128.925000px;}
.y93{bottom:130.650000px;}
.yec{bottom:131.775000px;}
.y174{bottom:133.575000px;}
.y22{bottom:134.625000px;}
.y77{bottom:134.625150px;}
.yc2{bottom:135.000000px;}
.y120{bottom:135.375000px;}
.y199{bottom:135.379500px;}
.y14e{bottom:139.650150px;}
.yeb{bottom:142.950000px;}
.y1c2{bottom:143.625000px;}
.y76{bottom:145.425000px;}
.yc1{bottom:145.800000px;}
.y11f{bottom:146.550000px;}
.y21{bottom:149.025000px;}
.y198{bottom:150.829500px;}
.y14d{bottom:151.200000px;}
.y1c1{bottom:155.550000px;}
.y75{bottom:156.225000px;}
.yea{bottom:158.025000px;}
.yc0{bottom:160.500000px;}
.y20{bottom:160.575000px;}
.y11e{bottom:162.375000px;}
.y92{bottom:163.425000px;}
.y1c0{bottom:166.350000px;}
.y197{bottom:166.653000px;}
.y14c{bottom:167.400000px;}
.y173{bottom:168.150000px;}
.ye9{bottom:169.575000px;}
.ybf{bottom:171.675000px;}
.y74{bottom:172.050000px;}
.y11d{bottom:173.850000px;}
.y1f{bottom:176.025000px;}
.y14b{bottom:178.875000px;}
.ye8{bottom:181.800000px;}
.y46{bottom:182.175000px;}
.y196{bottom:182.551500px;}
.y73{bottom:183.225000px;}
.ybe{bottom:183.900000px;}
.y11c{bottom:184.650000px;}
.y1e{bottom:187.200000px;}
.y14a{bottom:190.425000px;}
.y72{bottom:194.775000px;}
.y45{bottom:198.000000px;}
.ybd{bottom:198.300000px;}
.y195{bottom:198.375000px;}
.y1d{bottom:198.750000px;}
.y11b{bottom:200.850000px;}
.ybc{bottom:208.425000px;}
.ye7{bottom:210.600000px;}
.y11a{bottom:212.025000px;}
.y44{bottom:213.825000px;}
.y194{bottom:214.200000px;}
.y1c{bottom:214.950000px;}
.y149{bottom:216.000000px;}
.ybb{bottom:220.650000px;}
.ye6{bottom:221.025000px;}
.y119{bottom:223.200000px;}
.y91{bottom:223.876500px;}
.y1b{bottom:226.425000px;}
.y148{bottom:227.100000px;}
.y118{bottom:234.750000px;}
.yba{bottom:235.425000px;}
.y1bf{bottom:235.426500px;}
.y71{bottom:236.850000px;}
.y1a{bottom:237.600000px;}
.y90{bottom:240.076500px;}
.y147{bottom:243.300000px;}
.yb9{bottom:245.850000px;}
.y43{bottom:246.226500px;}
.ye5{bottom:247.350000px;}
.y172{bottom:247.351500px;}
.y19{bottom:248.400000px;}
.y117{bottom:249.450000px;}
.y1be{bottom:251.326500px;}
.y70{bottom:253.050000px;}
.y146{bottom:254.475000px;}
.y8f{bottom:255.901500px;}
.yb8{bottom:257.700000px;}
.ye4{bottom:258.825000px;}
.y116{bottom:260.625000px;}
.y42{bottom:262.050000px;}
.y171{bottom:263.551500px;}
.y1bd{bottom:267.151500px;}
.y6f{bottom:269.250000px;}
.y145{bottom:270.675000px;}
.yb7{bottom:271.425000px;}
.y8e{bottom:271.800000px;}
.y115{bottom:272.175000px;}
.ye3{bottom:274.650000px;}
.y41{bottom:278.250000px;}
.y170{bottom:279.751500px;}
.y144{bottom:281.850150px;}
.yb6{bottom:282.600000px;}
.y114{bottom:282.975000px;}
.y1bc{bottom:283.351500px;}
.ye2{bottom:285.150000px;}
.y193{bottom:291.600000px;}
.y143{bottom:293.400000px;}
.y40{bottom:294.075000px;}
.y16f{bottom:295.576500px;}
.ye1{bottom:297.375000px;}
.y113{bottom:298.425000px;}
.y1bb{bottom:299.175000px;}
.y8d{bottom:303.829500px;}
.y142{bottom:306.000000px;}
.y18{bottom:306.750000px;}
.yb5{bottom:309.225000px;}
.y112{bottom:309.600000px;}
.y16e{bottom:311.400000px;}
.y192{bottom:313.950000px;}
.y1ba{bottom:315.000000px;}
.y6e{bottom:317.175000px;}
.y141{bottom:317.475150px;}
.y8c{bottom:319.653000px;}
.y111{bottom:320.400000px;}
.yb4{bottom:321.450000px;}
.y17{bottom:324.375000px;}
.y3f{bottom:326.101500px;}
.y140{bottom:329.025000px;}
.y6d{bottom:333.375000px;}
.y8b{bottom:335.476500px;}
.y110{bottom:337.350000px;}
.y191{bottom:338.400000px;}
.yb3{bottom:338.400150px;}
.y13f{bottom:339.825000px;}
.y3e{bottom:342.300000px;}
.y16d{bottom:343.800000px;}
.y1b9{bottom:347.404500px;}
.y10f{bottom:348.825000px;}
.yb2{bottom:349.500000px;}
.y8a{bottom:351.300000px;}
.y16{bottom:356.403000px;}
.y10e{bottom:359.625000px;}
.y16c{bottom:359.700000px;}
.yb1{bottom:360.675000px;}
.ye0{bottom:363.225000px;}
.y1b8{bottom:363.229500px;}
.y6c{bottom:365.026500px;}
.y190{bottom:368.250000px;}
.y10d{bottom:371.175000px;}
.y15{bottom:372.228000px;}
.y3d{bottom:377.250000px;}
.y1b7{bottom:379.128000px;}
.ydf{bottom:379.425000px;}
.y6b{bottom:381.225000px;}
.y89{bottom:383.025000px;}
.y14{bottom:388.126500px;}
.y13e{bottom:391.276500px;}
.y16b{bottom:391.725000px;}
.y1b6{bottom:395.328000px;}
.y6a{bottom:397.050000px;}
.y13{bottom:404.326500px;}
.y13d{bottom:407.100000px;}
.y16a{bottom:408.600000px;}
.y1b5{bottom:411.526500px;}
.yb0{bottom:417.601500px;}
.y12{bottom:420.150000px;}
.y10c{bottom:423.381000px;}
.y169{bottom:423.750000px;}
.yde{bottom:424.425000px;}
.y1b4{bottom:427.350000px;}
.y69{bottom:432.378000px;}
.yaf{bottom:433.425000px;}
.y18f{bottom:438.151500px;}
.y10b{bottom:438.454500px;}
.y13c{bottom:438.828000px;}
.ydd{bottom:439.950000px;}
.y1b3{bottom:443.175000px;}
.y68{bottom:447.451500px;}
.yae{bottom:449.250000px;}
.y11{bottom:452.176500px;}
.y3c{bottom:453.225000px;}
.y18e{bottom:453.975000px;}
.y13b{bottom:455.026500px;}
.y10a{bottom:455.104500px;}
.y168{bottom:456.150000px;}
.y67{bottom:463.275000px;}
.yad{bottom:465.075000px;}
.y10{bottom:468.001500px;}
.y3b{bottom:469.050000px;}
.y13a{bottom:470.850000px;}
.y109{bottom:470.928000px;}
.y167{bottom:471.975000px;}
.ydc{bottom:472.351500px;}
.y1b2{bottom:475.203000px;}
.yf{bottom:483.826500px;}
.y139{bottom:486.675000px;}
.y108{bottom:486.751500px;}
.ydb{bottom:487.800000px;}
.y1b1{bottom:490.726500px;}
.y66{bottom:491.400000px;}
.y18d{bottom:495.376500px;}
.yac{bottom:497.179500px;}
.ye{bottom:499.725000px;}
.y3a{bottom:501.076500px;}
.y65{bottom:501.825000px;}
.y107{bottom:502.575000px;}
.yda{bottom:504.000000px;}
.y1b0{bottom:506.926500px;}
.y166{bottom:510.900000px;}
.y18c{bottom:511.575000px;}
.y64{bottom:511.875000px;}
.yab{bottom:513.004500px;}
.y39{bottom:516.900000px;}
.y138{bottom:518.401500px;}
.y1af{bottom:523.125000px;}
.y63{bottom:523.800000px;}
.y165{bottom:526.725000px;}
.y18b{bottom:527.775000px;}
.yaa{bottom:528.829500px;}
.yd{bottom:532.129500px;}
.y137{bottom:534.600000px;}
.y106{bottom:534.976500px;}
.yd9{bottom:536.401500px;}
.y1ae{bottom:538.950000px;}
.ya9{bottom:544.653000px;}
.y38{bottom:547.500000px;}
.yc{bottom:547.954500px;}
.y62{bottom:549.675000px;}
.y136{bottom:550.425000px;}
.y105{bottom:550.800000px;}
.yd8{bottom:552.225000px;}
.y164{bottom:558.753000px;}
.y18a{bottom:559.428000px;}
.ya8{bottom:560.853000px;}
.y37{bottom:563.700000px;}
.yb{bottom:564.154500px;}
.y104{bottom:566.250000px;}
.y1ad{bottom:570.603000px;}
.y61{bottom:573.075000px;}
.y163{bottom:574.951500px;}
.y189{bottom:575.253000px;}
.ya7{bottom:576.676500px;}
.y60{bottom:578.850000px;}
.ya{bottom:579.978000px;}
.y135{bottom:582.456000px;}
.yd7{bottom:584.250000px;}
.y1ac{bottom:585.753000px;}
.y162{bottom:591.150000px;}
.y188{bottom:591.528000px;}
.ya6{bottom:592.500000px;}
.y9{bottom:595.801500px;}
.y134{bottom:598.279500px;}
.y103{bottom:598.351500px;}
.yd6{bottom:600.150000px;}
.y1ab{bottom:601.578000px;}
.y187{bottom:607.351500px;}
.y5f{bottom:610.200000px;}
.y8{bottom:611.625000px;}
.y133{bottom:614.103000px;}
.y102{bottom:614.175000px;}
.y1aa{bottom:617.401500px;}
.y161{bottom:622.801500px;}
.y186{bottom:623.175000px;}
.ya5{bottom:624.226500px;}
.y36{bottom:627.450000px;}
.y7{bottom:627.525000px;}
.y101{bottom:630.000000px;}
.y132{bottom:630.303000px;}
.yd5{bottom:632.175000px;}
.y1a9{bottom:633.225000px;}
.y160{bottom:639.001500px;}
.ya4{bottom:640.051500px;}
.y185{bottom:642.225000px;}
.y131{bottom:645.828000px;}
.y5d{bottom:646.575000px;}
.yd4{bottom:648.000000px;}
.y5e{bottom:653.400000px;}
.y5c{bottom:654.825000px;}
.y15f{bottom:654.900000px;}
.ya3{bottom:656.250000px;}
.y6{bottom:659.175000px;}
.y35{bottom:659.475000px;}
.y130{bottom:662.026500px;}
.y100{bottom:662.031000px;}
.y1a8{bottom:666.000000px;}
.y5a{bottom:672.450000px;}
.y184{bottom:672.453000px;}
.y34{bottom:675.675000px;}
.y12f{bottom:678.225000px;}
.yff{bottom:678.229500px;}
.y59{bottom:679.650000px;}
.yd3{bottom:680.029500px;}
.y5b{bottom:680.400000px;}
.ya2{bottom:687.226500px;}
.y15e{bottom:687.600000px;}
.y183{bottom:690.153000px;}
.y88{bottom:693.001500px;}
.yfe{bottom:693.754500px;}
.yd2{bottom:696.228000px;}
.y57{bottom:698.400000px;}
.ya1{bottom:703.051500px;}
.y15d{bottom:703.125000px;}
.y58{bottom:705.975000px;}
.y182{bottom:706.351500px;}
.y56{bottom:707.025000px;}
.y33{bottom:707.031000px;}
.y87{bottom:708.826500px;}
.yfd{bottom:709.953000px;}
.yd1{bottom:712.428000px;}
.y12e{bottom:713.100000px;}
.y1a7{bottom:713.925000px;}
.ya0{bottom:719.250000px;}
.y181{bottom:722.176500px;}
.y32{bottom:723.604500px;}
.y86{bottom:724.650000px;}
.yfc{bottom:725.778000px;}
.yd0{bottom:728.251500px;}
.y1a6{bottom:729.375000px;}
.y55{bottom:731.175000px;}
.y15c{bottom:734.775000px;}
.y9f{bottom:735.075000px;}
.y180{bottom:738.000000px;}
.y31{bottom:739.429500px;}
.yfb{bottom:741.601500px;}
.ycf{bottom:744.450000px;}
.y1a5{bottom:745.575000px;}
.y15b{bottom:750.975000px;}
.y5{bottom:753.526500px;}
.y30{bottom:755.253000px;}
.y85{bottom:756.375000px;}
.yfa{bottom:757.801500px;}
.y1a4{bottom:761.025000px;}
.y12d{bottom:763.875000px;}
.y9e{bottom:766.801500px;}
.y17f{bottom:769.653000px;}
.y2f{bottom:771.076500px;}
.y84{bottom:772.200000px;}
.yf9{bottom:773.625000px;}
.y4{bottom:775.800000px;}
.yce{bottom:775.801500px;}
.y1a3{bottom:776.925000px;}
.y12c{bottom:779.700000px;}
.y15a{bottom:782.334000px;}
.y9d{bottom:783.000000px;}
.y1cd{bottom:783.750000px;}
.y17e{bottom:785.851500px;}
.y2e{bottom:786.901500px;}
.y83{bottom:788.025000px;}
.yf8{bottom:789.450000px;}
.y54{bottom:790.576500px;}
.ycd{bottom:792.000000px;}
.y1a2{bottom:793.125000px;}
.y12b{bottom:795.600000px;}
.y3{bottom:798.150000px;}
.y159{bottom:798.907500px;}
.y17d{bottom:801.750000px;}
.y2d{bottom:803.100000px;}
.y53{bottom:806.025000px;}
.ycc{bottom:807.825000px;}
.y12a{bottom:811.425000px;}
.y158{bottom:814.731000px;}
.y9c{bottom:815.028000px;}
.y1cc{bottom:815.775000px;}
.y82{bottom:820.054500px;}
.yf7{bottom:821.550000px;}
.y1a1{bottom:825.526500px;}
.y157{bottom:830.556000px;}
.y9b{bottom:830.851500px;}
.y17c{bottom:833.401500px;}
.y2c{bottom:833.701500px;}
.y81{bottom:835.878000px;}
.yf6{bottom:837.375000px;}
.y52{bottom:838.426500px;}
.ycb{bottom:839.554500px;}
.y1a0{bottom:840.975000px;}
.y129{bottom:843.075000px;}
.y9a{bottom:846.675000px;}
.y156{bottom:846.754500px;}
.y1cb{bottom:847.801500px;}
.y17b{bottom:849.600000px;}
.y2b{bottom:850.276500px;}
.y80{bottom:852.078000px;}
.yf5{bottom:853.200000px;}
.y51{bottom:854.250000px;}
.yca{bottom:855.753000px;}
.y155{bottom:862.578000px;}
.y1ca{bottom:864.000000px;}
.y2a{bottom:866.475000px;}
.y7f{bottom:868.278000px;}
.y50{bottom:870.075000px;}
.yc9{bottom:871.578000px;}
.y19f{bottom:873.003000px;}
.y128{bottom:875.478000px;}
.y99{bottom:878.700000px;}
.y154{bottom:878.776500px;}
.y17a{bottom:880.950000px;}
.y7e{bottom:884.101500px;}
.y2{bottom:884.550000px;}
.yf4{bottom:885.226500px;}
.yc8{bottom:887.776500px;}
.y19e{bottom:888.526500px;}
.y29{bottom:891.000000px;}
.y127{bottom:891.001500px;}
.y98{bottom:894.600000px;}
.y1c9{bottom:895.651500px;}
.y179{bottom:897.825000px;}
.y7d{bottom:900.000000px;}
.yf3{bottom:901.425000px;}
.y4f{bottom:902.176500px;}
.y1{bottom:903.600000px;}
.y19d{bottom:903.975000px;}
.y126{bottom:906.825000px;}
.y153{bottom:910.800000px;}
.y1c8{bottom:911.850000px;}
.y4e{bottom:917.625000px;}
.h6{height:37.546875px;}
.h3{height:43.804688px;}
.h7{height:53.191406px;}
.h5{height:59.449219px;}
.hb{height:60.649219px;}
.he{height:62.149219px;}
.hd{height:62.449219px;}
.h2{height:62.578125px;}
.h1d{height:63.492188px;}
.h1b{height:64.743164px;}
.hf{height:68.835938px;}
.h4{height:81.351562px;}
.h10{height:101.756400px;}
.hc{height:131.414062px;}
.h8{height:935.250000px;}
.h12{height:945.750000px;}
.h11{height:946.050000px;}
.h16{height:950.250000px;}
.h15{height:950.400000px;}
.h13{height:951.450000px;}
.h14{height:951.750000px;}
.h1f{height:952.500000px;}
.h1e{height:952.575000px;}
.h1c{height:954.000000px;}
.h18{height:954.750000px;}
.h17{height:955.050000px;}
.h1a{height:956.250000px;}
.h19{height:956.550000px;}
.h9{height:959.025000px;}
.ha{height:959.250000px;}
.h1{height:961.500000px;}
.h0{height:961.575000px;}
.h21{height:964.500000px;}
.h20{height:964.800000px;}
.w3{width:536.250000px;}
.w2{width:536.400000px;}
.w6{width:545.025000px;}
.w7{width:545.250000px;}
.wa{width:552.600000px;}
.wb{width:552.750000px;}
.w8{width:554.775000px;}
.w9{width:555.000000px;}
.w0{width:562.350000px;}
.w1{width:562.500000px;}
.w4{width:572.025000px;}
.w5{width:572.250000px;}
.w12{width:594.750000px;}
.w11{width:597.000000px;}
.w10{width:597.225000px;}
.wd{width:598.500000px;}
.wc{width:598.650000px;}
.we{width:601.200000px;}
.wf{width:601.500000px;}
.w14{width:606.750000px;}
.w13{width:606.975000px;}
.x0{left:0.000000px;}
.x31{left:40.650000px;}
.x32{left:41.775000px;}
.xe{left:49.350000px;}
.x11{left:50.400000px;}
.x13{left:52.198500px;}
.x27{left:53.250000px;}
.x14{left:54.375000px;}
.x16{left:55.425000px;}
.x6{left:59.775000px;}
.x9{left:60.825000px;}
.x8{left:61.950000px;}
.x2c{left:63.000000px;}
.x29{left:64.050000px;}
.x33{left:65.175000px;}
.x12{left:68.775000px;}
.x30{left:70.948500px;}
.xc{left:72.000000px;}
.x24{left:73.800000px;}
.x39{left:74.848500px;}
.xa{left:76.350000px;}
.xb{left:77.775000px;}
.xf{left:79.198500px;}
.x10{left:80.250000px;}
.x2d{left:81.375000px;}
.x26{left:82.800000px;}
.x28{left:84.225000px;}
.x15{left:85.350000px;}
.x2e{left:86.776500px;}
.x7{left:92.175000px;}
.x2a{left:93.225000px;}
.x2b{left:94.350000px;}
.x43{left:96.450000px;}
.x45{left:99.375000px;}
.x42{left:100.425000px;}
.x3a{left:102.975000px;}
.x38{left:104.398500px;}
.x37{left:105.450000px;}
.x17{left:108.750000px;}
.x41{left:109.800000px;}
.x35{left:112.648500px;}
.x36{left:113.773500px;}
.x3c{left:114.825000px;}
.x44{left:129.975000px;}
.x18{left:135.750000px;}
.x21{left:136.800000px;}
.x1b{left:138.225000px;}
.x3{left:195.150000px;}
.x19{left:196.950000px;}
.x20{left:223.950000px;}
.x1{left:238.350000px;}
.x40{left:246.975000px;}
.x23{left:252.375000px;}
.x1c{left:256.650000px;}
.x1a{left:271.785000px;}
.x1e{left:317.850000px;}
.x1d{left:338.775000px;}
.x4{left:343.425000px;}
.x5{left:353.850000px;}
.x2{left:396.750000px;}
.x22{left:434.550000px;}
.x1f{left:450.375000px;}
.x3d{left:470.550000px;}
.x3e{left:471.585000px;}
.x3f{left:472.635015px;}
.x25{left:500.775000px;}
.x34{left:502.575000px;}
.x2f{left:505.050000px;}
.xd{left:507.960000px;}
.x3b{left:519.825000px;}
@media print{
.v5{vertical-align:-5.066667pt;}
.v3{vertical-align:-2.666667pt;}
.v2{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.066667pt;}
.v4{vertical-align:2.666667pt;}
.ls1{letter-spacing:-2.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:153.610667pt;}
.ls2{letter-spacing:183.752000pt;}
.ls3{letter-spacing:231.272000pt;}
.ls5{letter-spacing:247.200000pt;}
.ls6{letter-spacing:269.285333pt;}
.ls4{letter-spacing:391.477333pt;}
.ws0{word-spacing:-19.274667pt;}
.ws8{word-spacing:-14.085333pt;}
.ws2{word-spacing:-9.936000pt;}
.wsa{word-spacing:-8.896000pt;}
.wsc{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:3.445333pt;}
.ws4{word-spacing:3.698667pt;}
.ws1{word-spacing:7.701333pt;}
.ws5{word-spacing:134.789333pt;}
.ws6{word-spacing:164.706667pt;}
.ws9{word-spacing:170.293333pt;}
.ws7{word-spacing:347.077333pt;}
._27{margin-left:-10.944000pt;}
._2e{margin-left:-9.880000pt;}
._25{margin-left:-8.373867pt;}
._e{margin-left:-6.840000pt;}
._9{margin-left:-5.477333pt;}
._19{margin-left:-4.568000pt;}
._13{margin-left:-3.541333pt;}
._a{margin-left:-2.496000pt;}
._c{margin-left:-1.040000pt;}
._7{width:1.589333pt;}
._1{width:3.040000pt;}
._2{width:3.946667pt;}
._0{width:4.960000pt;}
._5{width:6.080000pt;}
._4{width:6.986667pt;}
._f{width:8.728000pt;}
._b{width:10.106667pt;}
._3{width:11.093333pt;}
._14{width:12.256000pt;}
._6{width:13.173333pt;}
._1b{width:14.149333pt;}
._10{width:15.120000pt;}
._11{width:16.138667pt;}
._12{width:17.485333pt;}
._8{width:18.378667pt;}
._16{width:19.746667pt;}
._15{width:20.802667pt;}
._1d{width:21.848000pt;}
._1a{width:22.752000pt;}
._18{width:24.240000pt;}
._23{width:25.165333pt;}
._17{width:26.373333pt;}
._22{width:27.341333pt;}
._1e{width:28.893333pt;}
._1c{width:30.501333pt;}
._28{width:33.130667pt;}
._24{width:34.418667pt;}
._d{width:36.885333pt;}
._2f{width:39.432000pt;}
._2b{width:40.784000pt;}
._30{width:43.018667pt;}
._2a{width:47.517333pt;}
._21{width:57.501333pt;}
._26{width:129.517333pt;}
._2c{width:137.992000pt;}
._2d{width:154.813333pt;}
._20{width:156.762667pt;}
._29{width:255.866667pt;}
._1f{width:375.216000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs8{font-size:88.000000pt;}
.fs6{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:15.666667pt;}
.y19c{bottom:20.133333pt;}
.yf2{bottom:20.466667pt;}
.y125{bottom:21.133333pt;}
.y178{bottom:22.133333pt;}
.y97{bottom:22.400000pt;}
.y152{bottom:26.200000pt;}
.y28{bottom:30.066667pt;}
.y7c{bottom:35.200000pt;}
.yc7{bottom:53.733333pt;}
.y4c{bottom:54.400000pt;}
.y19b{bottom:57.533333pt;}
.yf1{bottom:58.866667pt;}
.y96{bottom:60.134667pt;}
.y1c7{bottom:60.466667pt;}
.y124{bottom:61.133333pt;}
.y177{bottom:61.801333pt;}
.yc6{bottom:63.666667pt;}
.y4b{bottom:64.266667pt;}
.y27{bottom:68.200133pt;}
.yf0{bottom:69.133333pt;}
.y123{bottom:71.066667pt;}
.y7b{bottom:72.933333pt;}
.yc5{bottom:73.266667pt;}
.y95{bottom:73.600000pt;}
.y151{bottom:74.200000pt;}
.y4a{bottom:74.533333pt;}
.y176{bottom:75.866667pt;}
.y26{bottom:78.066667pt;}
.yef{bottom:79.333333pt;}
.y1c6{bottom:81.000000pt;}
.y122{bottom:81.600000pt;}
.y150{bottom:83.800000pt;}
.y7a{bottom:86.066667pt;}
.y25{bottom:87.666667pt;}
.y19a{bottom:91.533333pt;}
.yee{bottom:92.133333pt;}
.y1c5{bottom:94.400000pt;}
.y49{bottom:94.666667pt;}
.yc4{bottom:96.000000pt;}
.y79{bottom:96.333333pt;}
.y121{bottom:96.666667pt;}
.y24{bottom:99.200000pt;}
.y94{bottom:102.400000pt;}
.y48{bottom:104.600000pt;}
.y1c4{bottom:104.666667pt;}
.y175{bottom:105.000000pt;}
.yc3{bottom:106.200000pt;}
.y78{bottom:106.533333pt;}
.yed{bottom:106.866667pt;}
.y14f{bottom:109.066667pt;}
.y23{bottom:109.133333pt;}
.y47{bottom:114.533333pt;}
.y1c3{bottom:114.600000pt;}
.y93{bottom:116.133333pt;}
.yec{bottom:117.133333pt;}
.y174{bottom:118.733333pt;}
.y22{bottom:119.666667pt;}
.y77{bottom:119.666800pt;}
.yc2{bottom:120.000000pt;}
.y120{bottom:120.333333pt;}
.y199{bottom:120.337333pt;}
.y14e{bottom:124.133467pt;}
.yeb{bottom:127.066667pt;}
.y1c2{bottom:127.666667pt;}
.y76{bottom:129.266667pt;}
.yc1{bottom:129.600000pt;}
.y11f{bottom:130.266667pt;}
.y21{bottom:132.466667pt;}
.y198{bottom:134.070667pt;}
.y14d{bottom:134.400000pt;}
.y1c1{bottom:138.266667pt;}
.y75{bottom:138.866667pt;}
.yea{bottom:140.466667pt;}
.yc0{bottom:142.666667pt;}
.y20{bottom:142.733333pt;}
.y11e{bottom:144.333333pt;}
.y92{bottom:145.266667pt;}
.y1c0{bottom:147.866667pt;}
.y197{bottom:148.136000pt;}
.y14c{bottom:148.800000pt;}
.y173{bottom:149.466667pt;}
.ye9{bottom:150.733333pt;}
.ybf{bottom:152.600000pt;}
.y74{bottom:152.933333pt;}
.y11d{bottom:154.533333pt;}
.y1f{bottom:156.466667pt;}
.y14b{bottom:159.000000pt;}
.ye8{bottom:161.600000pt;}
.y46{bottom:161.933333pt;}
.y196{bottom:162.268000pt;}
.y73{bottom:162.866667pt;}
.ybe{bottom:163.466667pt;}
.y11c{bottom:164.133333pt;}
.y1e{bottom:166.400000pt;}
.y14a{bottom:169.266667pt;}
.y72{bottom:173.133333pt;}
.y45{bottom:176.000000pt;}
.ybd{bottom:176.266667pt;}
.y195{bottom:176.333333pt;}
.y1d{bottom:176.666667pt;}
.y11b{bottom:178.533333pt;}
.ybc{bottom:185.266667pt;}
.ye7{bottom:187.200000pt;}
.y11a{bottom:188.466667pt;}
.y44{bottom:190.066667pt;}
.y194{bottom:190.400000pt;}
.y1c{bottom:191.066667pt;}
.y149{bottom:192.000000pt;}
.ybb{bottom:196.133333pt;}
.ye6{bottom:196.466667pt;}
.y119{bottom:198.400000pt;}
.y91{bottom:199.001333pt;}
.y1b{bottom:201.266667pt;}
.y148{bottom:201.866667pt;}
.y118{bottom:208.666667pt;}
.yba{bottom:209.266667pt;}
.y1bf{bottom:209.268000pt;}
.y71{bottom:210.533333pt;}
.y1a{bottom:211.200000pt;}
.y90{bottom:213.401333pt;}
.y147{bottom:216.266667pt;}
.yb9{bottom:218.533333pt;}
.y43{bottom:218.868000pt;}
.ye5{bottom:219.866667pt;}
.y172{bottom:219.868000pt;}
.y19{bottom:220.800000pt;}
.y117{bottom:221.733333pt;}
.y1be{bottom:223.401333pt;}
.y70{bottom:224.933333pt;}
.y146{bottom:226.200000pt;}
.y8f{bottom:227.468000pt;}
.yb8{bottom:229.066667pt;}
.ye4{bottom:230.066667pt;}
.y116{bottom:231.666667pt;}
.y42{bottom:232.933333pt;}
.y171{bottom:234.268000pt;}
.y1bd{bottom:237.468000pt;}
.y6f{bottom:239.333333pt;}
.y145{bottom:240.600000pt;}
.yb7{bottom:241.266667pt;}
.y8e{bottom:241.600000pt;}
.y115{bottom:241.933333pt;}
.ye3{bottom:244.133333pt;}
.y41{bottom:247.333333pt;}
.y170{bottom:248.668000pt;}
.y144{bottom:250.533467pt;}
.yb6{bottom:251.200000pt;}
.y114{bottom:251.533333pt;}
.y1bc{bottom:251.868000pt;}
.ye2{bottom:253.466667pt;}
.y193{bottom:259.200000pt;}
.y143{bottom:260.800000pt;}
.y40{bottom:261.400000pt;}
.y16f{bottom:262.734667pt;}
.ye1{bottom:264.333333pt;}
.y113{bottom:265.266667pt;}
.y1bb{bottom:265.933333pt;}
.y8d{bottom:270.070667pt;}
.y142{bottom:272.000000pt;}
.y18{bottom:272.666667pt;}
.yb5{bottom:274.866667pt;}
.y112{bottom:275.200000pt;}
.y16e{bottom:276.800000pt;}
.y192{bottom:279.066667pt;}
.y1ba{bottom:280.000000pt;}
.y6e{bottom:281.933333pt;}
.y141{bottom:282.200133pt;}
.y8c{bottom:284.136000pt;}
.y111{bottom:284.800000pt;}
.yb4{bottom:285.733333pt;}
.y17{bottom:288.333333pt;}
.y3f{bottom:289.868000pt;}
.y140{bottom:292.466667pt;}
.y6d{bottom:296.333333pt;}
.y8b{bottom:298.201333pt;}
.y110{bottom:299.866667pt;}
.y191{bottom:300.800000pt;}
.yb3{bottom:300.800133pt;}
.y13f{bottom:302.066667pt;}
.y3e{bottom:304.266667pt;}
.y16d{bottom:305.600000pt;}
.y1b9{bottom:308.804000pt;}
.y10f{bottom:310.066667pt;}
.yb2{bottom:310.666667pt;}
.y8a{bottom:312.266667pt;}
.y16{bottom:316.802667pt;}
.y10e{bottom:319.666667pt;}
.y16c{bottom:319.733333pt;}
.yb1{bottom:320.600000pt;}
.ye0{bottom:322.866667pt;}
.y1b8{bottom:322.870667pt;}
.y6c{bottom:324.468000pt;}
.y190{bottom:327.333333pt;}
.y10d{bottom:329.933333pt;}
.y15{bottom:330.869333pt;}
.y3d{bottom:335.333333pt;}
.y1b7{bottom:337.002667pt;}
.ydf{bottom:337.266667pt;}
.y6b{bottom:338.866667pt;}
.y89{bottom:340.466667pt;}
.y14{bottom:345.001333pt;}
.y13e{bottom:347.801333pt;}
.y16b{bottom:348.200000pt;}
.y1b6{bottom:351.402667pt;}
.y6a{bottom:352.933333pt;}
.y13{bottom:359.401333pt;}
.y13d{bottom:361.866667pt;}
.y16a{bottom:363.200000pt;}
.y1b5{bottom:365.801333pt;}
.yb0{bottom:371.201333pt;}
.y12{bottom:373.466667pt;}
.y10c{bottom:376.338667pt;}
.y169{bottom:376.666667pt;}
.yde{bottom:377.266667pt;}
.y1b4{bottom:379.866667pt;}
.y69{bottom:384.336000pt;}
.yaf{bottom:385.266667pt;}
.y18f{bottom:389.468000pt;}
.y10b{bottom:389.737333pt;}
.y13c{bottom:390.069333pt;}
.ydd{bottom:391.066667pt;}
.y1b3{bottom:393.933333pt;}
.y68{bottom:397.734667pt;}
.yae{bottom:399.333333pt;}
.y11{bottom:401.934667pt;}
.y3c{bottom:402.866667pt;}
.y18e{bottom:403.533333pt;}
.y13b{bottom:404.468000pt;}
.y10a{bottom:404.537333pt;}
.y168{bottom:405.466667pt;}
.y67{bottom:411.800000pt;}
.yad{bottom:413.400000pt;}
.y10{bottom:416.001333pt;}
.y3b{bottom:416.933333pt;}
.y13a{bottom:418.533333pt;}
.y109{bottom:418.602667pt;}
.y167{bottom:419.533333pt;}
.ydc{bottom:419.868000pt;}
.y1b2{bottom:422.402667pt;}
.yf{bottom:430.068000pt;}
.y139{bottom:432.600000pt;}
.y108{bottom:432.668000pt;}
.ydb{bottom:433.600000pt;}
.y1b1{bottom:436.201333pt;}
.y66{bottom:436.800000pt;}
.y18d{bottom:440.334667pt;}
.yac{bottom:441.937333pt;}
.ye{bottom:444.200000pt;}
.y3a{bottom:445.401333pt;}
.y65{bottom:446.066667pt;}
.y107{bottom:446.733333pt;}
.yda{bottom:448.000000pt;}
.y1b0{bottom:450.601333pt;}
.y166{bottom:454.133333pt;}
.y18c{bottom:454.733333pt;}
.y64{bottom:455.000000pt;}
.yab{bottom:456.004000pt;}
.y39{bottom:459.466667pt;}
.y138{bottom:460.801333pt;}
.y1af{bottom:465.000000pt;}
.y63{bottom:465.600000pt;}
.y165{bottom:468.200000pt;}
.y18b{bottom:469.133333pt;}
.yaa{bottom:470.070667pt;}
.yd{bottom:473.004000pt;}
.y137{bottom:475.200000pt;}
.y106{bottom:475.534667pt;}
.yd9{bottom:476.801333pt;}
.y1ae{bottom:479.066667pt;}
.ya9{bottom:484.136000pt;}
.y38{bottom:486.666667pt;}
.yc{bottom:487.070667pt;}
.y62{bottom:488.600000pt;}
.y136{bottom:489.266667pt;}
.y105{bottom:489.600000pt;}
.yd8{bottom:490.866667pt;}
.y164{bottom:496.669333pt;}
.y18a{bottom:497.269333pt;}
.ya8{bottom:498.536000pt;}
.y37{bottom:501.066667pt;}
.yb{bottom:501.470667pt;}
.y104{bottom:503.333333pt;}
.y1ad{bottom:507.202667pt;}
.y61{bottom:509.400000pt;}
.y163{bottom:511.068000pt;}
.y189{bottom:511.336000pt;}
.ya7{bottom:512.601333pt;}
.y60{bottom:514.533333pt;}
.ya{bottom:515.536000pt;}
.y135{bottom:517.738667pt;}
.yd7{bottom:519.333333pt;}
.y1ac{bottom:520.669333pt;}
.y162{bottom:525.466667pt;}
.y188{bottom:525.802667pt;}
.ya6{bottom:526.666667pt;}
.y9{bottom:529.601333pt;}
.y134{bottom:531.804000pt;}
.y103{bottom:531.868000pt;}
.yd6{bottom:533.466667pt;}
.y1ab{bottom:534.736000pt;}
.y187{bottom:539.868000pt;}
.y5f{bottom:542.400000pt;}
.y8{bottom:543.666667pt;}
.y133{bottom:545.869333pt;}
.y102{bottom:545.933333pt;}
.y1aa{bottom:548.801333pt;}
.y161{bottom:553.601333pt;}
.y186{bottom:553.933333pt;}
.ya5{bottom:554.868000pt;}
.y36{bottom:557.733333pt;}
.y7{bottom:557.800000pt;}
.y101{bottom:560.000000pt;}
.y132{bottom:560.269333pt;}
.yd5{bottom:561.933333pt;}
.y1a9{bottom:562.866667pt;}
.y160{bottom:568.001333pt;}
.ya4{bottom:568.934667pt;}
.y185{bottom:570.866667pt;}
.y131{bottom:574.069333pt;}
.y5d{bottom:574.733333pt;}
.yd4{bottom:576.000000pt;}
.y5e{bottom:580.800000pt;}
.y5c{bottom:582.066667pt;}
.y15f{bottom:582.133333pt;}
.ya3{bottom:583.333333pt;}
.y6{bottom:585.933333pt;}
.y35{bottom:586.200000pt;}
.y130{bottom:588.468000pt;}
.y100{bottom:588.472000pt;}
.y1a8{bottom:592.000000pt;}
.y5a{bottom:597.733333pt;}
.y184{bottom:597.736000pt;}
.y34{bottom:600.600000pt;}
.y12f{bottom:602.866667pt;}
.yff{bottom:602.870667pt;}
.y59{bottom:604.133333pt;}
.yd3{bottom:604.470667pt;}
.y5b{bottom:604.800000pt;}
.ya2{bottom:610.868000pt;}
.y15e{bottom:611.200000pt;}
.y183{bottom:613.469333pt;}
.y88{bottom:616.001333pt;}
.yfe{bottom:616.670667pt;}
.yd2{bottom:618.869333pt;}
.y57{bottom:620.800000pt;}
.ya1{bottom:624.934667pt;}
.y15d{bottom:625.000000pt;}
.y58{bottom:627.533333pt;}
.y182{bottom:627.868000pt;}
.y56{bottom:628.466667pt;}
.y33{bottom:628.472000pt;}
.y87{bottom:630.068000pt;}
.yfd{bottom:631.069333pt;}
.yd1{bottom:633.269333pt;}
.y12e{bottom:633.866667pt;}
.y1a7{bottom:634.600000pt;}
.ya0{bottom:639.333333pt;}
.y181{bottom:641.934667pt;}
.y32{bottom:643.204000pt;}
.y86{bottom:644.133333pt;}
.yfc{bottom:645.136000pt;}
.yd0{bottom:647.334667pt;}
.y1a6{bottom:648.333333pt;}
.y55{bottom:649.933333pt;}
.y15c{bottom:653.133333pt;}
.y9f{bottom:653.400000pt;}
.y180{bottom:656.000000pt;}
.y31{bottom:657.270667pt;}
.yfb{bottom:659.201333pt;}
.ycf{bottom:661.733333pt;}
.y1a5{bottom:662.733333pt;}
.y15b{bottom:667.533333pt;}
.y5{bottom:669.801333pt;}
.y30{bottom:671.336000pt;}
.y85{bottom:672.333333pt;}
.yfa{bottom:673.601333pt;}
.y1a4{bottom:676.466667pt;}
.y12d{bottom:679.000000pt;}
.y9e{bottom:681.601333pt;}
.y17f{bottom:684.136000pt;}
.y2f{bottom:685.401333pt;}
.y84{bottom:686.400000pt;}
.yf9{bottom:687.666667pt;}
.y4{bottom:689.600000pt;}
.yce{bottom:689.601333pt;}
.y1a3{bottom:690.600000pt;}
.y12c{bottom:693.066667pt;}
.y15a{bottom:695.408000pt;}
.y9d{bottom:696.000000pt;}
.y1cd{bottom:696.666667pt;}
.y17e{bottom:698.534667pt;}
.y2e{bottom:699.468000pt;}
.y83{bottom:700.466667pt;}
.yf8{bottom:701.733333pt;}
.y54{bottom:702.734667pt;}
.ycd{bottom:704.000000pt;}
.y1a2{bottom:705.000000pt;}
.y12b{bottom:707.200000pt;}
.y3{bottom:709.466667pt;}
.y159{bottom:710.140000pt;}
.y17d{bottom:712.666667pt;}
.y2d{bottom:713.866667pt;}
.y53{bottom:716.466667pt;}
.ycc{bottom:718.066667pt;}
.y12a{bottom:721.266667pt;}
.y158{bottom:724.205333pt;}
.y9c{bottom:724.469333pt;}
.y1cc{bottom:725.133333pt;}
.y82{bottom:728.937333pt;}
.yf7{bottom:730.266667pt;}
.y1a1{bottom:733.801333pt;}
.y157{bottom:738.272000pt;}
.y9b{bottom:738.534667pt;}
.y17c{bottom:740.801333pt;}
.y2c{bottom:741.068000pt;}
.y81{bottom:743.002667pt;}
.yf6{bottom:744.333333pt;}
.y52{bottom:745.268000pt;}
.ycb{bottom:746.270667pt;}
.y1a0{bottom:747.533333pt;}
.y129{bottom:749.400000pt;}
.y9a{bottom:752.600000pt;}
.y156{bottom:752.670667pt;}
.y1cb{bottom:753.601333pt;}
.y17b{bottom:755.200000pt;}
.y2b{bottom:755.801333pt;}
.y80{bottom:757.402667pt;}
.yf5{bottom:758.400000pt;}
.y51{bottom:759.333333pt;}
.yca{bottom:760.669333pt;}
.y155{bottom:766.736000pt;}
.y1ca{bottom:768.000000pt;}
.y2a{bottom:770.200000pt;}
.y7f{bottom:771.802667pt;}
.y50{bottom:773.400000pt;}
.yc9{bottom:774.736000pt;}
.y19f{bottom:776.002667pt;}
.y128{bottom:778.202667pt;}
.y99{bottom:781.066667pt;}
.y154{bottom:781.134667pt;}
.y17a{bottom:783.066667pt;}
.y7e{bottom:785.868000pt;}
.y2{bottom:786.266667pt;}
.yf4{bottom:786.868000pt;}
.yc8{bottom:789.134667pt;}
.y19e{bottom:789.801333pt;}
.y29{bottom:792.000000pt;}
.y127{bottom:792.001333pt;}
.y98{bottom:795.200000pt;}
.y1c9{bottom:796.134667pt;}
.y179{bottom:798.066667pt;}
.y7d{bottom:800.000000pt;}
.yf3{bottom:801.266667pt;}
.y4f{bottom:801.934667pt;}
.y1{bottom:803.200000pt;}
.y19d{bottom:803.533333pt;}
.y126{bottom:806.066667pt;}
.y153{bottom:809.600000pt;}
.y1c8{bottom:810.533333pt;}
.y4e{bottom:815.666667pt;}
.h6{height:33.375000pt;}
.h3{height:38.937500pt;}
.h7{height:47.281250pt;}
.h5{height:52.843750pt;}
.hb{height:53.910417pt;}
.he{height:55.243750pt;}
.hd{height:55.510417pt;}
.h2{height:55.625000pt;}
.h1d{height:56.437500pt;}
.h1b{height:57.549479pt;}
.hf{height:61.187500pt;}
.h4{height:72.312500pt;}
.h10{height:90.450133pt;}
.hc{height:116.812500pt;}
.h8{height:831.333333pt;}
.h12{height:840.666667pt;}
.h11{height:840.933333pt;}
.h16{height:844.666667pt;}
.h15{height:844.800000pt;}
.h13{height:845.733333pt;}
.h14{height:846.000000pt;}
.h1f{height:846.666667pt;}
.h1e{height:846.733333pt;}
.h1c{height:848.000000pt;}
.h18{height:848.666667pt;}
.h17{height:848.933333pt;}
.h1a{height:850.000000pt;}
.h19{height:850.266667pt;}
.h9{height:852.466667pt;}
.ha{height:852.666667pt;}
.h1{height:854.666667pt;}
.h0{height:854.733333pt;}
.h21{height:857.333333pt;}
.h20{height:857.600000pt;}
.w3{width:476.666667pt;}
.w2{width:476.800000pt;}
.w6{width:484.466667pt;}
.w7{width:484.666667pt;}
.wa{width:491.200000pt;}
.wb{width:491.333333pt;}
.w8{width:493.133333pt;}
.w9{width:493.333333pt;}
.w0{width:499.866667pt;}
.w1{width:500.000000pt;}
.w4{width:508.466667pt;}
.w5{width:508.666667pt;}
.w12{width:528.666667pt;}
.w11{width:530.666667pt;}
.w10{width:530.866667pt;}
.wd{width:532.000000pt;}
.wc{width:532.133333pt;}
.we{width:534.400000pt;}
.wf{width:534.666667pt;}
.w14{width:539.333333pt;}
.w13{width:539.533333pt;}
.x0{left:0.000000pt;}
.x31{left:36.133333pt;}
.x32{left:37.133333pt;}
.xe{left:43.866667pt;}
.x11{left:44.800000pt;}
.x13{left:46.398667pt;}
.x27{left:47.333333pt;}
.x14{left:48.333333pt;}
.x16{left:49.266667pt;}
.x6{left:53.133333pt;}
.x9{left:54.066667pt;}
.x8{left:55.066667pt;}
.x2c{left:56.000000pt;}
.x29{left:56.933333pt;}
.x33{left:57.933333pt;}
.x12{left:61.133333pt;}
.x30{left:63.065333pt;}
.xc{left:64.000000pt;}
.x24{left:65.600000pt;}
.x39{left:66.532000pt;}
.xa{left:67.866667pt;}
.xb{left:69.133333pt;}
.xf{left:70.398667pt;}
.x10{left:71.333333pt;}
.x2d{left:72.333333pt;}
.x26{left:73.600000pt;}
.x28{left:74.866667pt;}
.x15{left:75.866667pt;}
.x2e{left:77.134667pt;}
.x7{left:81.933333pt;}
.x2a{left:82.866667pt;}
.x2b{left:83.866667pt;}
.x43{left:85.733333pt;}
.x45{left:88.333333pt;}
.x42{left:89.266667pt;}
.x3a{left:91.533333pt;}
.x38{left:92.798667pt;}
.x37{left:93.733333pt;}
.x17{left:96.666667pt;}
.x41{left:97.600000pt;}
.x35{left:100.132000pt;}
.x36{left:101.132000pt;}
.x3c{left:102.066667pt;}
.x44{left:115.533333pt;}
.x18{left:120.666667pt;}
.x21{left:121.600000pt;}
.x1b{left:122.866667pt;}
.x3{left:173.466667pt;}
.x19{left:175.066667pt;}
.x20{left:199.066667pt;}
.x1{left:211.866667pt;}
.x40{left:219.533333pt;}
.x23{left:224.333333pt;}
.x1c{left:228.133333pt;}
.x1a{left:241.586667pt;}
.x1e{left:282.533333pt;}
.x1d{left:301.133333pt;}
.x4{left:305.266667pt;}
.x5{left:314.533333pt;}
.x2{left:352.666667pt;}
.x22{left:386.266667pt;}
.x1f{left:400.333333pt;}
.x3d{left:418.266667pt;}
.x3e{left:419.186667pt;}
.x3f{left:420.120013pt;}
.x25{left:445.133333pt;}
.x34{left:446.733333pt;}
.x2f{left:448.933333pt;}
.xd{left:451.520000pt;}
.x3b{left:462.066667pt;}
}




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