
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_2b44127a86fdb536895c5cf3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_0b8b6ed266d3acc18d9c8c9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_f8ac3d26d7c6d4008666d244.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;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_4195b726e90b6284106312db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.139000;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_89af073e8553d8bdf02f5587.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_9216f31e20a4b0c0a87d556c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_f1552cf373bf2a28219c66c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963000;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_3ca8b9d2013d55b3ed11a6d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963000;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_aa991ea5cd4dcb971c7ce0eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.137667;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_8fe8f3469704117f9ce12f6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.894000;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_cc0a5b8039cc65ccbc762a67.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.943000;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_38dfb53f50f38b1fa18d70a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.886000;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_99b739d4c5b3923acd4bf12a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.857910;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_89d7322e9dfdedf9481126a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.986000;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_05baf9608d3d31dc4d992404.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.511400px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls12{letter-spacing:-1.953000px;}
.ls2a{letter-spacing:-1.368000px;}
.ls13{letter-spacing:-1.260000px;}
.ls11{letter-spacing:-1.134000px;}
.lsb{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.945000px;}
.ls19{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.693000px;}
.ls14{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.567000px;}
.ls24{letter-spacing:-0.552112px;}
.ls2c{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.441000px;}
.ls21{letter-spacing:-0.429419px;}
.ls7{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.315000px;}
.ls29{letter-spacing:-0.306729px;}
.ls1f{letter-spacing:-0.281169px;}
.ls27{letter-spacing:-0.245383px;}
.ls20{letter-spacing:-0.224935px;}
.ls4{letter-spacing:-0.189000px;}
.ls16{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls15{letter-spacing:-0.063000px;}
.ls25{letter-spacing:-0.061346px;}
.ls10{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.046456px;}
.ls1a{letter-spacing:0.056234px;}
.ls1d{letter-spacing:0.061346px;}
.ls8{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.189000px;}
.ls26{letter-spacing:0.245383px;}
.lsf{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.306729px;}
.ls3{letter-spacing:0.315000px;}
.ls1b{letter-spacing:0.429419px;}
.ls23{letter-spacing:0.490766px;}
.ls18{letter-spacing:0.504000px;}
.lse{letter-spacing:0.567000px;}
.ls28{letter-spacing:0.613458px;}
.ls1e{letter-spacing:0.613608px;}
.ls2b{letter-spacing:0.819000px;}
.ls2d{letter-spacing:0.882000px;}
.ls5{letter-spacing:1.071000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws6{word-spacing:-24.672000px;}
.ws26{word-spacing:-17.176752px;}
.ws27{word-spacing:-15.213758px;}
.ws28{word-spacing:-15.029721px;}
.ws2b{word-spacing:-14.968375px;}
.ws2c{word-spacing:-14.722992px;}
.ws2a{word-spacing:-14.661646px;}
.ws2d{word-spacing:-14.416263px;}
.ws29{word-spacing:-14.170880px;}
.ws23{word-spacing:-13.005000px;}
.ws1a{word-spacing:-12.600000px;}
.ws32{word-spacing:-1.349611px;}
.ws36{word-spacing:-1.145117px;}
.ws9{word-spacing:-1.071000px;}
.ws46{word-spacing:-0.882000px;}
.ws43{word-spacing:-0.819000px;}
.ws3d{word-spacing:-0.674804px;}
.ws3e{word-spacing:-0.613458px;}
.ws34{word-spacing:-0.572558px;}
.ws12{word-spacing:-0.567000px;}
.ws21{word-spacing:-0.504000px;}
.ws39{word-spacing:-0.429421px;}
.ws7{word-spacing:-0.315000px;}
.ws3b{word-spacing:-0.306729px;}
.ws16{word-spacing:-0.300000px;}
.ws3a{word-spacing:-0.245383px;}
.ws10{word-spacing:-0.189000px;}
.wsc{word-spacing:-0.126000px;}
.ws3c{word-spacing:-0.061346px;}
.ws3{word-spacing:0.000000px;}
.ws33{word-spacing:0.056234px;}
.ws17{word-spacing:0.060000px;}
.ws45{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws1f{word-spacing:0.126000px;}
.ws8{word-spacing:0.189000px;}
.ws31{word-spacing:0.224935px;}
.ws38{word-spacing:0.245383px;}
.ws30{word-spacing:0.281169px;}
.ws11{word-spacing:0.315000px;}
.wsb{word-spacing:0.378000px;}
.ws35{word-spacing:0.429419px;}
.wse{word-spacing:0.441000px;}
.ws44{word-spacing:0.504000px;}
.ws37{word-spacing:0.552112px;}
.wsd{word-spacing:0.567000px;}
.ws1e{word-spacing:0.630000px;}
.wsa{word-spacing:0.693000px;}
.ws24{word-spacing:0.756000px;}
.ws20{word-spacing:0.945000px;}
.wsf{word-spacing:1.008000px;}
.ws18{word-spacing:1.134000px;}
.ws1d{word-spacing:1.260000px;}
.ws1c{word-spacing:1.953000px;}
.ws15{word-spacing:4.800000px;}
.ws14{word-spacing:6.420000px;}
.ws13{word-spacing:17.280000px;}
.ws42{word-spacing:596.388600px;}
.ws2e{word-spacing:1531.869600px;}
.ws2f{word-spacing:1531.870200px;}
.ws1b{word-spacing:5103.523200px;}
.ws41{word-spacing:6276.240000px;}
.ws25{word-spacing:6278.472000px;}
.ws40{word-spacing:6281.928000px;}
.ws22{word-spacing:6284.664000px;}
.ws3f{word-spacing:6285.600000px;}
.ws19{word-spacing:6302.160000px;}
.ws5{word-spacing:6307.848000px;}
._1b{margin-left:-2892.213600px;}
._22{margin-left:-2890.614298px;}
._1c{margin-left:-15.964795px;}
._25{margin-left:-14.917805px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._8{margin-left:-1.059302px;}
._5{width:1.802702px;}
._e{width:2.848486px;}
._a{width:4.659607px;}
._9{width:6.208795px;}
._7{width:7.213500px;}
._4{width:9.009902px;}
._6{width:10.011602px;}
._d{width:11.382295px;}
._11{width:13.759800px;}
._f{width:15.082200px;}
._10{width:16.494302px;}
._c{width:17.816400px;}
._b{width:19.046705px;}
._18{width:20.223000px;}
._12{width:21.292195px;}
._20{width:22.377600px;}
._14{width:23.562902px;}
._17{width:25.335893px;}
._16{width:26.970300px;}
._23{width:28.043071px;}
._1f{width:29.162700px;}
._13{width:30.187795px;}
._1d{width:31.960802px;}
._15{width:34.491598px;}
._1a{width:38.869207px;}
._19{width:40.129200px;}
._21{width:41.169598px;}
._1e{width:74.012383px;}
._24{width:681.039302px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs9{font-size:51.000000px;}
.fsa{font-size:56.233800px;}
.fs8{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:61.345800px;}
.fs5{font-size:63.000000px;}
.fsb{font-size:71.569800px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y190{bottom:3.194250px;}
.y1a2{bottom:3.514200px;}
.y18c{bottom:3.515400px;}
.y1af{bottom:3.527700px;}
.y19d{bottom:3.834000px;}
.y1a6{bottom:7.668600px;}
.y1aa{bottom:8.946600px;}
.y19b{bottom:12.141900px;}
.y194{bottom:13.100100px;}
.y181{bottom:16.614000px;}
.y183{bottom:16.614450px;}
.y17f{bottom:16.639050px;}
.y189{bottom:17.891550px;}
.y187{bottom:17.892600px;}
.y185{bottom:18.236400px;}
.y196{bottom:18.850200px;}
.y192{bottom:19.489650px;}
.y18b{bottom:21.446250px;}
.y19f{bottom:23.324400px;}
.y198{bottom:27.835650px;}
.y98{bottom:32.834700px;}
.y1a4{bottom:33.228600px;}
.y1a8{bottom:33.586350px;}
.y18e{bottom:38.020800px;}
.ya{bottom:41.220000px;}
.y97{bottom:47.834700px;}
.y1ac{bottom:57.550200px;}
.yc1{bottom:95.834700px;}
.y94{bottom:95.897700px;}
.y1ef{bottom:95.944950px;}
.y113{bottom:95.960700px;}
.y6c{bottom:95.976450px;}
.y1d3{bottom:95.997300px;}
.ye7{bottom:96.023700px;}
.y37{bottom:96.034200px;}
.y4e{bottom:96.112950px;}
.y17c{bottom:102.217474px;}
.y179{bottom:116.869200px;}
.y156{bottom:116.879700px;}
.y93{bottom:116.892450px;}
.y1ee{bottom:116.939700px;}
.y112{bottom:116.955450px;}
.y6b{bottom:116.971200px;}
.y1d2{bottom:116.992050px;}
.ye6{bottom:117.018450px;}
.y36{bottom:117.028950px;}
.y4d{bottom:117.107700px;}
.y17b{bottom:119.467193px;}
.y131{bottom:137.840700px;}
.y178{bottom:137.868450px;}
.y155{bottom:137.878950px;}
.y92{bottom:137.887200px;}
.y1ed{bottom:137.934450px;}
.y111{bottom:137.950200px;}
.y6a{bottom:137.965950px;}
.y1d1{bottom:137.986800px;}
.ye5{bottom:138.013200px;}
.y35{bottom:138.023700px;}
.y4c{bottom:138.102450px;}
.y130{bottom:158.839950px;}
.y177{bottom:158.867700px;}
.y154{bottom:158.878200px;}
.y91{bottom:158.881950px;}
.y1ec{bottom:158.929200px;}
.y110{bottom:158.944950px;}
.y69{bottom:158.960700px;}
.y1d0{bottom:158.981550px;}
.ye4{bottom:159.007950px;}
.y34{bottom:159.018450px;}
.y4b{bottom:159.097200px;}
.y12f{bottom:179.839200px;}
.y176{bottom:179.866950px;}
.y90{bottom:179.876700px;}
.y1eb{bottom:179.923950px;}
.y10f{bottom:179.939700px;}
.y68{bottom:179.955450px;}
.y1cf{bottom:179.976300px;}
.ye3{bottom:180.002700px;}
.y4a{bottom:180.091950px;}
.y1ab{bottom:182.085000px;}
.y12e{bottom:200.838450px;}
.y8f{bottom:200.871450px;}
.y153{bottom:200.876700px;}
.y1ea{bottom:200.918700px;}
.y10e{bottom:200.934450px;}
.y67{bottom:200.950200px;}
.y1ce{bottom:200.971050px;}
.ye2{bottom:200.997450px;}
.y33{bottom:201.023700px;}
.y49{bottom:201.086700px;}
.y1ae{bottom:203.845113px;}
.y1ad{bottom:221.742750px;}
.y12d{bottom:221.837700px;}
.y175{bottom:221.865450px;}
.y8e{bottom:221.866200px;}
.y152{bottom:221.875950px;}
.y1e9{bottom:221.913450px;}
.y10d{bottom:221.929200px;}
.y66{bottom:221.944950px;}
.y1cd{bottom:221.965800px;}
.ye1{bottom:221.992200px;}
.y32{bottom:222.018450px;}
.y48{bottom:222.081450px;}
.y8d{bottom:242.860950px;}
.y174{bottom:242.864700px;}
.y151{bottom:242.875200px;}
.y1e8{bottom:242.908200px;}
.y10c{bottom:242.923950px;}
.y65{bottom:242.939700px;}
.y1cc{bottom:242.960550px;}
.ye0{bottom:242.986950px;}
.y31{bottom:243.013200px;}
.y47{bottom:243.076200px;}
.y1a9{bottom:257.847000px;}
.y12c{bottom:263.836200px;}
.y8c{bottom:263.855700px;}
.y173{bottom:263.863950px;}
.y1e7{bottom:263.902950px;}
.y10b{bottom:263.918700px;}
.y64{bottom:263.934450px;}
.y1cb{bottom:263.955300px;}
.ydf{bottom:263.981700px;}
.y30{bottom:264.007950px;}
.y46{bottom:264.070950px;}
.y12b{bottom:284.835450px;}
.y8b{bottom:284.850450px;}
.y150{bottom:284.873700px;}
.y1e6{bottom:284.897700px;}
.y10a{bottom:284.913450px;}
.y63{bottom:284.929200px;}
.y1ca{bottom:284.950050px;}
.yde{bottom:284.976450px;}
.y2f{bottom:285.002700px;}
.y1a7{bottom:285.006000px;}
.y45{bottom:285.065700px;}
.y12a{bottom:305.834700px;}
.y8a{bottom:305.845200px;}
.y172{bottom:305.862450px;}
.y14f{bottom:305.872950px;}
.y1e5{bottom:305.892450px;}
.y109{bottom:305.908200px;}
.y62{bottom:305.923950px;}
.y1c9{bottom:305.944800px;}
.ydd{bottom:305.971200px;}
.y2e{bottom:305.997450px;}
.y44{bottom:306.060450px;}
.y96{bottom:326.830200px;}
.y89{bottom:326.839950px;}
.y171{bottom:326.861700px;}
.y14e{bottom:326.872200px;}
.y1e4{bottom:326.887200px;}
.y108{bottom:326.902950px;}
.y61{bottom:326.918700px;}
.y1c8{bottom:326.939550px;}
.ydc{bottom:326.965950px;}
.y1a5{bottom:336.484500px;}
.y88{bottom:347.834700px;}
.y1e3{bottom:347.881950px;}
.y107{bottom:347.897700px;}
.y60{bottom:347.913450px;}
.y1c7{bottom:347.934300px;}
.ydb{bottom:347.960700px;}
.y2d{bottom:348.002700px;}
.y7{bottom:352.018200px;}
.y1a3{bottom:362.365500px;}
.y170{bottom:368.860200px;}
.y14d{bottom:368.870700px;}
.y1e2{bottom:368.876700px;}
.y106{bottom:368.892450px;}
.y5f{bottom:368.908200px;}
.y1c6{bottom:368.929050px;}
.yda{bottom:368.955450px;}
.y2c{bottom:368.997450px;}
.y9{bottom:381.914100px;}
.y87{bottom:389.834700px;}
.y16f{bottom:389.859450px;}
.y14c{bottom:389.869950px;}
.y105{bottom:389.887200px;}
.y5e{bottom:389.902950px;}
.y1c5{bottom:389.923800px;}
.yd9{bottom:389.950200px;}
.y129{bottom:389.960700px;}
.y2b{bottom:389.992200px;}
.y86{bottom:410.834700px;}
.y16e{bottom:410.858700px;}
.y14b{bottom:410.869200px;}
.y104{bottom:410.881950px;}
.y5d{bottom:410.897700px;}
.y1c4{bottom:410.918550px;}
.yd8{bottom:410.944950px;}
.y128{bottom:410.955450px;}
.y2a{bottom:410.986950px;}
.y1a1{bottom:413.806500px;}
.y103{bottom:431.876700px;}
.y5c{bottom:431.892450px;}
.y1c3{bottom:431.913300px;}
.yd7{bottom:431.939700px;}
.y127{bottom:431.950200px;}
.y29{bottom:431.981700px;}
.y19e{bottom:435.558000px;}
.y1a0{bottom:442.587450px;}
.y6{bottom:445.018200px;}
.y16d{bottom:452.857200px;}
.y14a{bottom:452.867700px;}
.y102{bottom:452.871450px;}
.y5b{bottom:452.887200px;}
.y85{bottom:452.902950px;}
.y1c2{bottom:452.908050px;}
.yd6{bottom:452.934450px;}
.y126{bottom:452.944950px;}
.y28{bottom:452.976450px;}
.y16c{bottom:473.856450px;}
.y101{bottom:473.866200px;}
.y149{bottom:473.866950px;}
.y5a{bottom:473.881950px;}
.y84{bottom:473.897700px;}
.y1c1{bottom:473.902800px;}
.y125{bottom:473.939700px;}
.y19c{bottom:475.816500px;}
.y100{bottom:494.860950px;}
.y148{bottom:494.866200px;}
.y59{bottom:494.876700px;}
.y83{bottom:494.892450px;}
.y1c0{bottom:494.897550px;}
.y124{bottom:494.934450px;}
.yd5{bottom:494.939700px;}
.y27{bottom:494.981700px;}
.y19a{bottom:497.542500px;}
.y16b{bottom:515.854950px;}
.yff{bottom:515.855700px;}
.y147{bottom:515.865450px;}
.y58{bottom:515.871450px;}
.y82{bottom:515.887200px;}
.y1bf{bottom:515.892300px;}
.yaa{bottom:515.908200px;}
.yd4{bottom:515.934450px;}
.yc0{bottom:515.955450px;}
.y26{bottom:515.976450px;}
.y197{bottom:527.896500px;}
.yfe{bottom:536.850450px;}
.y16a{bottom:536.854200px;}
.y146{bottom:536.864700px;}
.y57{bottom:536.866200px;}
.y81{bottom:536.881950px;}
.y1be{bottom:536.887050px;}
.ya9{bottom:536.902950px;}
.yd3{bottom:536.929200px;}
.y123{bottom:536.939700px;}
.ybf{bottom:536.950200px;}
.y25{bottom:536.971200px;}
.y199{bottom:537.839550px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.yfd{bottom:557.845200px;}
.y56{bottom:557.860950px;}
.y80{bottom:557.876700px;}
.y1bd{bottom:557.881800px;}
.ya8{bottom:557.897700px;}
.yd2{bottom:557.923950px;}
.y122{bottom:557.934450px;}
.ybe{bottom:557.944950px;}
.y24{bottom:557.965950px;}
.y195{bottom:573.945000px;}
.yfc{bottom:578.839950px;}
.y169{bottom:578.852700px;}
.y55{bottom:578.855700px;}
.y145{bottom:578.863200px;}
.y7f{bottom:578.871450px;}
.y1bc{bottom:578.876550px;}
.ya7{bottom:578.892450px;}
.yd1{bottom:578.918700px;}
.y121{bottom:578.929200px;}
.y23{bottom:578.960700px;}
.yfb{bottom:599.834700px;}
.y54{bottom:599.850450px;}
.y168{bottom:599.851950px;}
.y144{bottom:599.862450px;}
.y7e{bottom:599.866200px;}
.y1bb{bottom:599.871300px;}
.ya6{bottom:599.887200px;}
.yd0{bottom:599.913450px;}
.y120{bottom:599.923950px;}
.ybd{bottom:599.950200px;}
.y22{bottom:599.955450px;}
.y193{bottom:610.687500px;}
.y53{bottom:620.845200px;}
.y167{bottom:620.851200px;}
.y7d{bottom:620.860950px;}
.y143{bottom:620.861700px;}
.y1ba{bottom:620.866050px;}
.ya5{bottom:620.881950px;}
.ycf{bottom:620.908200px;}
.y11f{bottom:620.918700px;}
.ybc{bottom:620.944950px;}
.y21{bottom:620.950200px;}
.y4{bottom:631.018200px;}
.yfa{bottom:641.834700px;}
.y52{bottom:641.839950px;}
.y7c{bottom:641.855700px;}
.y1b9{bottom:641.860800px;}
.ya4{bottom:641.876700px;}
.yce{bottom:641.902950px;}
.y11e{bottom:641.913450px;}
.ybb{bottom:641.939700px;}
.y20{bottom:641.944950px;}
.y191{bottom:642.025500px;}
.y51{bottom:662.834700px;}
.y166{bottom:662.849700px;}
.y7b{bottom:662.850450px;}
.y1b8{bottom:662.855550px;}
.y142{bottom:662.860200px;}
.ya3{bottom:662.871450px;}
.ycd{bottom:662.897700px;}
.y11d{bottom:662.908200px;}
.y1f{bottom:662.939700px;}
.y18d{bottom:679.728000px;}
.y7a{bottom:683.845200px;}
.y165{bottom:683.848950px;}
.y1b7{bottom:683.850300px;}
.y141{bottom:683.859450px;}
.ya2{bottom:683.866200px;}
.ycc{bottom:683.892450px;}
.y1e{bottom:683.934450px;}
.yba{bottom:683.944950px;}
.y18f{bottom:699.856350px;}
.y50{bottom:704.834700px;}
.y79{bottom:704.839950px;}
.y1b6{bottom:704.845050px;}
.y164{bottom:704.848200px;}
.y1e1{bottom:704.855700px;}
.y140{bottom:704.858700px;}
.ya1{bottom:704.860950px;}
.ycb{bottom:704.887200px;}
.y11c{bottom:704.913450px;}
.y1d{bottom:704.929200px;}
.yb9{bottom:704.939700px;}
.yf9{bottom:705.107700px;}
.y4f{bottom:725.834700px;}
.y1b5{bottom:725.839800px;}
.y163{bottom:725.847450px;}
.y1e0{bottom:725.850450px;}
.ya0{bottom:725.855700px;}
.yca{bottom:725.881950px;}
.y11b{bottom:725.908200px;}
.y1c{bottom:725.923950px;}
.yb8{bottom:725.934450px;}
.yf8{bottom:726.102450px;}
.y18a{bottom:735.960000px;}
.y1b4{bottom:746.834550px;}
.y1df{bottom:746.845200px;}
.y162{bottom:746.846700px;}
.y9f{bottom:746.850450px;}
.y13f{bottom:746.857200px;}
.yc9{bottom:746.876700px;}
.y11a{bottom:746.902950px;}
.y1b{bottom:746.918700px;}
.yb7{bottom:746.929200px;}
.yf7{bottom:747.097200px;}
.y3{bottom:751.738650px;}
.y1de{bottom:767.839950px;}
.y9e{bottom:767.845200px;}
.y13e{bottom:767.856450px;}
.yc8{bottom:767.871450px;}
.y119{bottom:767.897700px;}
.y1a{bottom:767.913450px;}
.yb6{bottom:767.923950px;}
.yf6{bottom:768.091950px;}
.y188{bottom:775.606500px;}
.y1b3{bottom:788.834550px;}
.y1dd{bottom:788.834700px;}
.y9d{bottom:788.839950px;}
.y161{bottom:788.845200px;}
.yc7{bottom:788.866200px;}
.y118{bottom:788.892450px;}
.y19{bottom:788.908200px;}
.y43{bottom:789.065700px;}
.yf5{bottom:789.086700px;}
.y2{bottom:791.931000px;}
.y78{bottom:809.834700px;}
.y160{bottom:809.844450px;}
.y13d{bottom:809.854950px;}
.yc6{bottom:809.860950px;}
.y117{bottom:809.887200px;}
.y18{bottom:809.902950px;}
.yb5{bottom:809.929200px;}
.y42{bottom:810.060450px;}
.y186{bottom:811.710000px;}
.y77{bottom:830.834700px;}
.y15f{bottom:830.843700px;}
.y13c{bottom:830.854200px;}
.yc5{bottom:830.855700px;}
.y116{bottom:830.881950px;}
.y17{bottom:830.897700px;}
.yb4{bottom:830.923950px;}
.y41{bottom:831.055200px;}
.yf4{bottom:831.091950px;}
.y184{bottom:847.509000px;}
.y76{bottom:851.834700px;}
.yc4{bottom:851.850450px;}
.y13b{bottom:851.853450px;}
.y115{bottom:851.876700px;}
.y16{bottom:851.892450px;}
.yb3{bottom:851.918700px;}
.y40{bottom:852.049950px;}
.yf3{bottom:852.086700px;}
.y1{bottom:859.112850px;}
.y1dc{bottom:872.834550px;}
.y75{bottom:872.834700px;}
.y15e{bottom:872.842200px;}
.yc3{bottom:872.845200px;}
.y13a{bottom:872.852700px;}
.y114{bottom:872.871450px;}
.y15{bottom:872.887200px;}
.y3f{bottom:873.044700px;}
.yf2{bottom:873.081450px;}
.y182{bottom:883.638000px;}
.y1db{bottom:893.834550px;}
.y74{bottom:893.834700px;}
.yc2{bottom:893.839950px;}
.y15d{bottom:893.841450px;}
.y9c{bottom:893.866200px;}
.y14{bottom:893.881950px;}
.yb2{bottom:893.923950px;}
.yf1{bottom:894.076200px;}
.y1da{bottom:914.834550px;}
.y73{bottom:914.834700px;}
.y15c{bottom:914.840700px;}
.y139{bottom:914.851200px;}
.y9b{bottom:914.860950px;}
.y13{bottom:914.876700px;}
.yb1{bottom:914.918700px;}
.y3e{bottom:915.049950px;}
.yf0{bottom:915.070950px;}
.y180{bottom:918.465000px;}
.y1d9{bottom:935.834550px;}
.y72{bottom:935.834700px;}
.y138{bottom:935.850450px;}
.y9a{bottom:935.855700px;}
.y12{bottom:935.871450px;}
.y3d{bottom:936.044700px;}
.yef{bottom:936.065700px;}
.y17e{bottom:952.972500px;}
.y1d8{bottom:956.834550px;}
.y71{bottom:956.834700px;}
.y15b{bottom:956.839200px;}
.y137{bottom:956.849700px;}
.y99{bottom:956.850450px;}
.y11{bottom:956.866200px;}
.yb0{bottom:956.923950px;}
.yee{bottom:957.060450px;}
.y1d7{bottom:977.834550px;}
.y70{bottom:977.834700px;}
.y15a{bottom:977.838450px;}
.y136{bottom:977.848950px;}
.y10{bottom:977.860950px;}
.yaf{bottom:977.918700px;}
.y3c{bottom:978.049950px;}
.yed{bottom:978.055200px;}
.y1d6{bottom:998.834550px;}
.y159{bottom:998.837700px;}
.y135{bottom:998.848200px;}
.yf{bottom:998.855700px;}
.yae{bottom:998.913450px;}
.y3b{bottom:999.044700px;}
.yec{bottom:999.049950px;}
.y17d{bottom:1019.774400px;}
.y1d5{bottom:1019.834550px;}
.ye{bottom:1019.850450px;}
.yad{bottom:1019.908200px;}
.y3a{bottom:1020.039450px;}
.yeb{bottom:1020.044700px;}
.y6f{bottom:1034.834700px;}
.y158{bottom:1040.836200px;}
.yd{bottom:1040.845200px;}
.y134{bottom:1040.846700px;}
.y39{bottom:1041.034200px;}
.yea{bottom:1041.039450px;}
.y6e{bottom:1061.834700px;}
.y157{bottom:1061.835450px;}
.yc{bottom:1061.839950px;}
.y133{bottom:1061.845950px;}
.yac{bottom:1061.913450px;}
.ye9{bottom:1062.034200px;}
.y17a{bottom:1069.298250px;}
.yb{bottom:1082.834700px;}
.y132{bottom:1082.845200px;}
.yab{bottom:1082.908200px;}
.ye8{bottom:1083.028950px;}
.y38{bottom:1083.039450px;}
.y1d4{bottom:1090.573200px;}
.y6d{bottom:1091.412900px;}
.y1b0{bottom:1135.393500px;}
.y1b2{bottom:1135.771350px;}
.y95{bottom:1187.834700px;}
.y1b1{bottom:1188.212550px;}
.h27{height:17.923500px;}
.h24{height:18.211500px;}
.h29{height:22.047000px;}
.h2b{height:23.323500px;}
.h23{height:26.520000px;}
.h20{height:27.478500px;}
.h19{height:30.991500px;}
.h17{height:31.024500px;}
.h1b{height:32.271000px;}
.h1a{height:32.608500px;}
.h21{height:33.229500px;}
.h1f{height:33.868500px;}
.h1d{height:35.817000px;}
.h25{height:36.742500px;}
.h14{height:37.740000px;}
.h15{height:38.248869px;}
.h26{height:41.613012px;}
.h22{height:42.208500px;}
.h10{height:43.680000px;}
.h9{height:44.037000px;}
.hb{height:44.040000px;}
.he{height:44.400000px;}
.h1c{height:45.395892px;}
.h18{height:46.438771px;}
.h13{height:46.614000px;}
.h28{height:47.607000px;}
.h2a{height:47.958000px;}
.h8{height:50.526000px;}
.h12{height:52.098000px;}
.h1e{height:52.399500px;}
.h7{height:53.280000px;}
.h16{height:54.178339px;}
.ha{height:54.480000px;}
.hf{height:54.840000px;}
.hc{height:70.080000px;}
.h11{height:70.464000px;}
.hd{height:71.040000px;}
.h2c{height:71.922000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:158.860500px;}
.w7{width:195.642000px;}
.w5{width:232.384500px;}
.w9{width:293.755500px;}
.w8{width:293.757000px;}
.w4{width:588.153000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x13{left:6.389700px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x7{left:102.033600px;}
.x11{left:145.278000px;}
.xe{left:151.348200px;}
.x10{left:175.982250px;}
.xc{left:181.037250px;}
.xb{left:185.147250px;}
.x12{left:191.800800px;}
.x2{left:223.228350px;}
.x14{left:378.295500px;}
.x16{left:439.680000px;}
.x17{left:446.069850px;}
.x8{left:467.716500px;}
.x15{left:537.793500px;}
.x9{left:670.014750px;}
.xf{left:724.145687px;}
.x5{left:977.952750px;}
.x18{left:994.584900px;}
.x19{left:1100.184900px;}
.x6{left:1360.630500px;}
.xd{left:1377.624750px;}
.xa{left:1562.928150px;}
@media print{
.v1{vertical-align:-1.343467pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls12{letter-spacing:-1.736000pt;}
.ls2a{letter-spacing:-1.216000pt;}
.ls13{letter-spacing:-1.120000pt;}
.ls11{letter-spacing:-1.008000pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.840000pt;}
.ls19{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.616000pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.504000pt;}
.ls24{letter-spacing:-0.490766pt;}
.ls2c{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.392000pt;}
.ls21{letter-spacing:-0.381706pt;}
.ls7{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.280000pt;}
.ls29{letter-spacing:-0.272648pt;}
.ls1f{letter-spacing:-0.249928pt;}
.ls27{letter-spacing:-0.218118pt;}
.ls20{letter-spacing:-0.199942pt;}
.ls4{letter-spacing:-0.168000pt;}
.ls16{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls15{letter-spacing:-0.056000pt;}
.ls25{letter-spacing:-0.054530pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.041294pt;}
.ls1a{letter-spacing:0.049986pt;}
.ls1d{letter-spacing:0.054530pt;}
.ls8{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.168000pt;}
.ls26{letter-spacing:0.218118pt;}
.lsf{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.272648pt;}
.ls3{letter-spacing:0.280000pt;}
.ls1b{letter-spacing:0.381706pt;}
.ls23{letter-spacing:0.436237pt;}
.ls18{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.504000pt;}
.ls28{letter-spacing:0.545296pt;}
.ls1e{letter-spacing:0.545429pt;}
.ls2b{letter-spacing:0.728000pt;}
.ls2d{letter-spacing:0.784000pt;}
.ls5{letter-spacing:0.952000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws6{word-spacing:-21.930667pt;}
.ws26{word-spacing:-15.268224pt;}
.ws27{word-spacing:-13.523341pt;}
.ws28{word-spacing:-13.359752pt;}
.ws2b{word-spacing:-13.305222pt;}
.ws2c{word-spacing:-13.087104pt;}
.ws2a{word-spacing:-13.032574pt;}
.ws2d{word-spacing:-12.814456pt;}
.ws29{word-spacing:-12.596338pt;}
.ws23{word-spacing:-11.560000pt;}
.ws1a{word-spacing:-11.200000pt;}
.ws32{word-spacing:-1.199654pt;}
.ws36{word-spacing:-1.017882pt;}
.ws9{word-spacing:-0.952000pt;}
.ws46{word-spacing:-0.784000pt;}
.ws43{word-spacing:-0.728000pt;}
.ws3d{word-spacing:-0.599826pt;}
.ws3e{word-spacing:-0.545296pt;}
.ws34{word-spacing:-0.508941pt;}
.ws12{word-spacing:-0.504000pt;}
.ws21{word-spacing:-0.448000pt;}
.ws39{word-spacing:-0.381707pt;}
.ws7{word-spacing:-0.280000pt;}
.ws3b{word-spacing:-0.272648pt;}
.ws16{word-spacing:-0.266667pt;}
.ws3a{word-spacing:-0.218118pt;}
.ws10{word-spacing:-0.168000pt;}
.wsc{word-spacing:-0.112000pt;}
.ws3c{word-spacing:-0.054530pt;}
.ws3{word-spacing:0.000000pt;}
.ws33{word-spacing:0.049986pt;}
.ws17{word-spacing:0.053333pt;}
.ws45{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws1f{word-spacing:0.112000pt;}
.ws8{word-spacing:0.168000pt;}
.ws31{word-spacing:0.199942pt;}
.ws38{word-spacing:0.218118pt;}
.ws30{word-spacing:0.249928pt;}
.ws11{word-spacing:0.280000pt;}
.wsb{word-spacing:0.336000pt;}
.ws35{word-spacing:0.381706pt;}
.wse{word-spacing:0.392000pt;}
.ws44{word-spacing:0.448000pt;}
.ws37{word-spacing:0.490766pt;}
.wsd{word-spacing:0.504000pt;}
.ws1e{word-spacing:0.560000pt;}
.wsa{word-spacing:0.616000pt;}
.ws24{word-spacing:0.672000pt;}
.ws20{word-spacing:0.840000pt;}
.wsf{word-spacing:0.896000pt;}
.ws18{word-spacing:1.008000pt;}
.ws1d{word-spacing:1.120000pt;}
.ws1c{word-spacing:1.736000pt;}
.ws15{word-spacing:4.266667pt;}
.ws14{word-spacing:5.706667pt;}
.ws13{word-spacing:15.360000pt;}
.ws42{word-spacing:530.123200pt;}
.ws2e{word-spacing:1361.661867pt;}
.ws2f{word-spacing:1361.662400pt;}
.ws1b{word-spacing:4536.465067pt;}
.ws41{word-spacing:5578.880000pt;}
.ws25{word-spacing:5580.864000pt;}
.ws40{word-spacing:5583.936000pt;}
.ws22{word-spacing:5586.368000pt;}
.ws3f{word-spacing:5587.200000pt;}
.ws19{word-spacing:5601.920000pt;}
.ws5{word-spacing:5606.976000pt;}
._1b{margin-left:-2570.856533pt;}
._22{margin-left:-2569.434931pt;}
._1c{margin-left:-14.190929pt;}
._25{margin-left:-13.260271pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._8{margin-left:-0.941602pt;}
._5{width:1.602402pt;}
._e{width:2.531987pt;}
._a{width:4.141873pt;}
._9{width:5.518929pt;}
._7{width:6.412000pt;}
._4{width:8.008802pt;}
._6{width:8.899202pt;}
._d{width:10.117596pt;}
._11{width:12.230933pt;}
._f{width:13.406400pt;}
._10{width:14.661602pt;}
._c{width:15.836800pt;}
._b{width:16.930404pt;}
._18{width:17.976000pt;}
._12{width:18.926396pt;}
._20{width:19.891200pt;}
._14{width:20.944802pt;}
._17{width:22.520794pt;}
._16{width:23.973600pt;}
._23{width:24.927174pt;}
._1f{width:25.922400pt;}
._13{width:26.833596pt;}
._1d{width:28.409602pt;}
._15{width:30.659198pt;}
._1a{width:34.550406pt;}
._19{width:35.670400pt;}
._21{width:36.595198pt;}
._1e{width:65.788785pt;}
._24{width:605.368269pt;}
.fs9{font-size:45.333333pt;}
.fsa{font-size:49.985600pt;}
.fs8{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:54.529600pt;}
.fs5{font-size:56.000000pt;}
.fsb{font-size:63.617600pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:2.839333pt;}
.y1a2{bottom:3.123733pt;}
.y18c{bottom:3.124800pt;}
.y1af{bottom:3.135733pt;}
.y19d{bottom:3.408000pt;}
.y1a6{bottom:6.816533pt;}
.y1aa{bottom:7.952533pt;}
.y19b{bottom:10.792800pt;}
.y194{bottom:11.644533pt;}
.y181{bottom:14.768000pt;}
.y183{bottom:14.768400pt;}
.y17f{bottom:14.790267pt;}
.y189{bottom:15.903600pt;}
.y187{bottom:15.904533pt;}
.y185{bottom:16.210133pt;}
.y196{bottom:16.755733pt;}
.y192{bottom:17.324133pt;}
.y18b{bottom:19.063333pt;}
.y19f{bottom:20.732800pt;}
.y198{bottom:24.742800pt;}
.y98{bottom:29.186400pt;}
.y1a4{bottom:29.536533pt;}
.y1a8{bottom:29.854533pt;}
.y18e{bottom:33.796267pt;}
.ya{bottom:36.640000pt;}
.y97{bottom:42.519733pt;}
.y1ac{bottom:51.155733pt;}
.yc1{bottom:85.186400pt;}
.y94{bottom:85.242400pt;}
.y1ef{bottom:85.284400pt;}
.y113{bottom:85.298400pt;}
.y6c{bottom:85.312400pt;}
.y1d3{bottom:85.330933pt;}
.ye7{bottom:85.354400pt;}
.y37{bottom:85.363733pt;}
.y4e{bottom:85.433733pt;}
.y17c{bottom:90.859977pt;}
.y179{bottom:103.883733pt;}
.y156{bottom:103.893067pt;}
.y93{bottom:103.904400pt;}
.y1ee{bottom:103.946400pt;}
.y112{bottom:103.960400pt;}
.y6b{bottom:103.974400pt;}
.y1d2{bottom:103.992933pt;}
.ye6{bottom:104.016400pt;}
.y36{bottom:104.025733pt;}
.y4d{bottom:104.095733pt;}
.y17b{bottom:106.193060pt;}
.y131{bottom:122.525067pt;}
.y178{bottom:122.549733pt;}
.y155{bottom:122.559067pt;}
.y92{bottom:122.566400pt;}
.y1ed{bottom:122.608400pt;}
.y111{bottom:122.622400pt;}
.y6a{bottom:122.636400pt;}
.y1d1{bottom:122.654933pt;}
.ye5{bottom:122.678400pt;}
.y35{bottom:122.687733pt;}
.y4c{bottom:122.757733pt;}
.y130{bottom:141.191067pt;}
.y177{bottom:141.215733pt;}
.y154{bottom:141.225067pt;}
.y91{bottom:141.228400pt;}
.y1ec{bottom:141.270400pt;}
.y110{bottom:141.284400pt;}
.y69{bottom:141.298400pt;}
.y1d0{bottom:141.316933pt;}
.ye4{bottom:141.340400pt;}
.y34{bottom:141.349733pt;}
.y4b{bottom:141.419733pt;}
.y12f{bottom:159.857067pt;}
.y176{bottom:159.881733pt;}
.y90{bottom:159.890400pt;}
.y1eb{bottom:159.932400pt;}
.y10f{bottom:159.946400pt;}
.y68{bottom:159.960400pt;}
.y1cf{bottom:159.978933pt;}
.ye3{bottom:160.002400pt;}
.y4a{bottom:160.081733pt;}
.y1ab{bottom:161.853333pt;}
.y12e{bottom:178.523067pt;}
.y8f{bottom:178.552400pt;}
.y153{bottom:178.557067pt;}
.y1ea{bottom:178.594400pt;}
.y10e{bottom:178.608400pt;}
.y67{bottom:178.622400pt;}
.y1ce{bottom:178.640933pt;}
.ye2{bottom:178.664400pt;}
.y33{bottom:178.687733pt;}
.y49{bottom:178.743733pt;}
.y1ae{bottom:181.195656pt;}
.y1ad{bottom:197.104667pt;}
.y12d{bottom:197.189067pt;}
.y175{bottom:197.213733pt;}
.y8e{bottom:197.214400pt;}
.y152{bottom:197.223067pt;}
.y1e9{bottom:197.256400pt;}
.y10d{bottom:197.270400pt;}
.y66{bottom:197.284400pt;}
.y1cd{bottom:197.302933pt;}
.ye1{bottom:197.326400pt;}
.y32{bottom:197.349733pt;}
.y48{bottom:197.405733pt;}
.y8d{bottom:215.876400pt;}
.y174{bottom:215.879733pt;}
.y151{bottom:215.889067pt;}
.y1e8{bottom:215.918400pt;}
.y10c{bottom:215.932400pt;}
.y65{bottom:215.946400pt;}
.y1cc{bottom:215.964933pt;}
.ye0{bottom:215.988400pt;}
.y31{bottom:216.011733pt;}
.y47{bottom:216.067733pt;}
.y1a9{bottom:229.197333pt;}
.y12c{bottom:234.521067pt;}
.y8c{bottom:234.538400pt;}
.y173{bottom:234.545733pt;}
.y1e7{bottom:234.580400pt;}
.y10b{bottom:234.594400pt;}
.y64{bottom:234.608400pt;}
.y1cb{bottom:234.626933pt;}
.ydf{bottom:234.650400pt;}
.y30{bottom:234.673733pt;}
.y46{bottom:234.729733pt;}
.y12b{bottom:253.187067pt;}
.y8b{bottom:253.200400pt;}
.y150{bottom:253.221067pt;}
.y1e6{bottom:253.242400pt;}
.y10a{bottom:253.256400pt;}
.y63{bottom:253.270400pt;}
.y1ca{bottom:253.288933pt;}
.yde{bottom:253.312400pt;}
.y2f{bottom:253.335733pt;}
.y1a7{bottom:253.338667pt;}
.y45{bottom:253.391733pt;}
.y12a{bottom:271.853067pt;}
.y8a{bottom:271.862400pt;}
.y172{bottom:271.877733pt;}
.y14f{bottom:271.887067pt;}
.y1e5{bottom:271.904400pt;}
.y109{bottom:271.918400pt;}
.y62{bottom:271.932400pt;}
.y1c9{bottom:271.950933pt;}
.ydd{bottom:271.974400pt;}
.y2e{bottom:271.997733pt;}
.y44{bottom:272.053733pt;}
.y96{bottom:290.515733pt;}
.y89{bottom:290.524400pt;}
.y171{bottom:290.543733pt;}
.y14e{bottom:290.553067pt;}
.y1e4{bottom:290.566400pt;}
.y108{bottom:290.580400pt;}
.y61{bottom:290.594400pt;}
.y1c8{bottom:290.612933pt;}
.ydc{bottom:290.636400pt;}
.y1a5{bottom:299.097333pt;}
.y88{bottom:309.186400pt;}
.y1e3{bottom:309.228400pt;}
.y107{bottom:309.242400pt;}
.y60{bottom:309.256400pt;}
.y1c7{bottom:309.274933pt;}
.ydb{bottom:309.298400pt;}
.y2d{bottom:309.335733pt;}
.y7{bottom:312.905067pt;}
.y1a3{bottom:322.102667pt;}
.y170{bottom:327.875733pt;}
.y14d{bottom:327.885067pt;}
.y1e2{bottom:327.890400pt;}
.y106{bottom:327.904400pt;}
.y5f{bottom:327.918400pt;}
.y1c6{bottom:327.936933pt;}
.yda{bottom:327.960400pt;}
.y2c{bottom:327.997733pt;}
.y9{bottom:339.479200pt;}
.y87{bottom:346.519733pt;}
.y16f{bottom:346.541733pt;}
.y14c{bottom:346.551067pt;}
.y105{bottom:346.566400pt;}
.y5e{bottom:346.580400pt;}
.y1c5{bottom:346.598933pt;}
.yd9{bottom:346.622400pt;}
.y129{bottom:346.631733pt;}
.y2b{bottom:346.659733pt;}
.y86{bottom:365.186400pt;}
.y16e{bottom:365.207733pt;}
.y14b{bottom:365.217067pt;}
.y104{bottom:365.228400pt;}
.y5d{bottom:365.242400pt;}
.y1c4{bottom:365.260933pt;}
.yd8{bottom:365.284400pt;}
.y128{bottom:365.293733pt;}
.y2a{bottom:365.321733pt;}
.y1a1{bottom:367.828000pt;}
.y103{bottom:383.890400pt;}
.y5c{bottom:383.904400pt;}
.y1c3{bottom:383.922933pt;}
.yd7{bottom:383.946400pt;}
.y127{bottom:383.955733pt;}
.y29{bottom:383.983733pt;}
.y19e{bottom:387.162667pt;}
.y1a0{bottom:393.411067pt;}
.y6{bottom:395.571733pt;}
.y16d{bottom:402.539733pt;}
.y14a{bottom:402.549067pt;}
.y102{bottom:402.552400pt;}
.y5b{bottom:402.566400pt;}
.y85{bottom:402.580400pt;}
.y1c2{bottom:402.584933pt;}
.yd6{bottom:402.608400pt;}
.y126{bottom:402.617733pt;}
.y28{bottom:402.645733pt;}
.y16c{bottom:421.205733pt;}
.y101{bottom:421.214400pt;}
.y149{bottom:421.215067pt;}
.y5a{bottom:421.228400pt;}
.y84{bottom:421.242400pt;}
.y1c1{bottom:421.246933pt;}
.y125{bottom:421.279733pt;}
.y19c{bottom:422.948000pt;}
.y100{bottom:439.876400pt;}
.y148{bottom:439.881067pt;}
.y59{bottom:439.890400pt;}
.y83{bottom:439.904400pt;}
.y1c0{bottom:439.908933pt;}
.y124{bottom:439.941733pt;}
.yd5{bottom:439.946400pt;}
.y27{bottom:439.983733pt;}
.y19a{bottom:442.260000pt;}
.y16b{bottom:458.537733pt;}
.yff{bottom:458.538400pt;}
.y147{bottom:458.547067pt;}
.y58{bottom:458.552400pt;}
.y82{bottom:458.566400pt;}
.y1bf{bottom:458.570933pt;}
.yaa{bottom:458.585067pt;}
.yd4{bottom:458.608400pt;}
.yc0{bottom:458.627067pt;}
.y26{bottom:458.645733pt;}
.y197{bottom:469.241333pt;}
.yfe{bottom:477.200400pt;}
.y16a{bottom:477.203733pt;}
.y146{bottom:477.213067pt;}
.y57{bottom:477.214400pt;}
.y81{bottom:477.228400pt;}
.y1be{bottom:477.232933pt;}
.ya9{bottom:477.247067pt;}
.yd3{bottom:477.270400pt;}
.y123{bottom:477.279733pt;}
.ybf{bottom:477.289067pt;}
.y25{bottom:477.307733pt;}
.y199{bottom:478.079600pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.yfd{bottom:495.862400pt;}
.y56{bottom:495.876400pt;}
.y80{bottom:495.890400pt;}
.y1bd{bottom:495.894933pt;}
.ya8{bottom:495.909067pt;}
.yd2{bottom:495.932400pt;}
.y122{bottom:495.941733pt;}
.ybe{bottom:495.951067pt;}
.y24{bottom:495.969733pt;}
.y195{bottom:510.173333pt;}
.yfc{bottom:514.524400pt;}
.y169{bottom:514.535733pt;}
.y55{bottom:514.538400pt;}
.y145{bottom:514.545067pt;}
.y7f{bottom:514.552400pt;}
.y1bc{bottom:514.556933pt;}
.ya7{bottom:514.571067pt;}
.yd1{bottom:514.594400pt;}
.y121{bottom:514.603733pt;}
.y23{bottom:514.631733pt;}
.yfb{bottom:533.186400pt;}
.y54{bottom:533.200400pt;}
.y168{bottom:533.201733pt;}
.y144{bottom:533.211067pt;}
.y7e{bottom:533.214400pt;}
.y1bb{bottom:533.218933pt;}
.ya6{bottom:533.233067pt;}
.yd0{bottom:533.256400pt;}
.y120{bottom:533.265733pt;}
.ybd{bottom:533.289067pt;}
.y22{bottom:533.293733pt;}
.y193{bottom:542.833333pt;}
.y53{bottom:551.862400pt;}
.y167{bottom:551.867733pt;}
.y7d{bottom:551.876400pt;}
.y143{bottom:551.877067pt;}
.y1ba{bottom:551.880933pt;}
.ya5{bottom:551.895067pt;}
.ycf{bottom:551.918400pt;}
.y11f{bottom:551.927733pt;}
.ybc{bottom:551.951067pt;}
.y21{bottom:551.955733pt;}
.y4{bottom:560.905067pt;}
.yfa{bottom:570.519733pt;}
.y52{bottom:570.524400pt;}
.y7c{bottom:570.538400pt;}
.y1b9{bottom:570.542933pt;}
.ya4{bottom:570.557067pt;}
.yce{bottom:570.580400pt;}
.y11e{bottom:570.589733pt;}
.ybb{bottom:570.613067pt;}
.y20{bottom:570.617733pt;}
.y191{bottom:570.689333pt;}
.y51{bottom:589.186400pt;}
.y166{bottom:589.199733pt;}
.y7b{bottom:589.200400pt;}
.y1b8{bottom:589.204933pt;}
.y142{bottom:589.209067pt;}
.ya3{bottom:589.219067pt;}
.ycd{bottom:589.242400pt;}
.y11d{bottom:589.251733pt;}
.y1f{bottom:589.279733pt;}
.y18d{bottom:604.202667pt;}
.y7a{bottom:607.862400pt;}
.y165{bottom:607.865733pt;}
.y1b7{bottom:607.866933pt;}
.y141{bottom:607.875067pt;}
.ya2{bottom:607.881067pt;}
.ycc{bottom:607.904400pt;}
.y1e{bottom:607.941733pt;}
.yba{bottom:607.951067pt;}
.y18f{bottom:622.094533pt;}
.y50{bottom:626.519733pt;}
.y79{bottom:626.524400pt;}
.y1b6{bottom:626.528933pt;}
.y164{bottom:626.531733pt;}
.y1e1{bottom:626.538400pt;}
.y140{bottom:626.541067pt;}
.ya1{bottom:626.543067pt;}
.ycb{bottom:626.566400pt;}
.y11c{bottom:626.589733pt;}
.y1d{bottom:626.603733pt;}
.yb9{bottom:626.613067pt;}
.yf9{bottom:626.762400pt;}
.y4f{bottom:645.186400pt;}
.y1b5{bottom:645.190933pt;}
.y163{bottom:645.197733pt;}
.y1e0{bottom:645.200400pt;}
.ya0{bottom:645.205067pt;}
.yca{bottom:645.228400pt;}
.y11b{bottom:645.251733pt;}
.y1c{bottom:645.265733pt;}
.yb8{bottom:645.275067pt;}
.yf8{bottom:645.424400pt;}
.y18a{bottom:654.186667pt;}
.y1b4{bottom:663.852933pt;}
.y1df{bottom:663.862400pt;}
.y162{bottom:663.863733pt;}
.y9f{bottom:663.867067pt;}
.y13f{bottom:663.873067pt;}
.yc9{bottom:663.890400pt;}
.y11a{bottom:663.913733pt;}
.y1b{bottom:663.927733pt;}
.yb7{bottom:663.937067pt;}
.yf7{bottom:664.086400pt;}
.y3{bottom:668.212133pt;}
.y1de{bottom:682.524400pt;}
.y9e{bottom:682.529067pt;}
.y13e{bottom:682.539067pt;}
.yc8{bottom:682.552400pt;}
.y119{bottom:682.575733pt;}
.y1a{bottom:682.589733pt;}
.yb6{bottom:682.599067pt;}
.yf6{bottom:682.748400pt;}
.y188{bottom:689.428000pt;}
.y1b3{bottom:701.186267pt;}
.y1dd{bottom:701.186400pt;}
.y9d{bottom:701.191067pt;}
.y161{bottom:701.195733pt;}
.yc7{bottom:701.214400pt;}
.y118{bottom:701.237733pt;}
.y19{bottom:701.251733pt;}
.y43{bottom:701.391733pt;}
.yf5{bottom:701.410400pt;}
.y2{bottom:703.938667pt;}
.y78{bottom:719.853067pt;}
.y160{bottom:719.861733pt;}
.y13d{bottom:719.871067pt;}
.yc6{bottom:719.876400pt;}
.y117{bottom:719.899733pt;}
.y18{bottom:719.913733pt;}
.yb5{bottom:719.937067pt;}
.y42{bottom:720.053733pt;}
.y186{bottom:721.520000pt;}
.y77{bottom:738.519733pt;}
.y15f{bottom:738.527733pt;}
.y13c{bottom:738.537067pt;}
.yc5{bottom:738.538400pt;}
.y116{bottom:738.561733pt;}
.y17{bottom:738.575733pt;}
.yb4{bottom:738.599067pt;}
.y41{bottom:738.715733pt;}
.yf4{bottom:738.748400pt;}
.y184{bottom:753.341333pt;}
.y76{bottom:757.186400pt;}
.yc4{bottom:757.200400pt;}
.y13b{bottom:757.203067pt;}
.y115{bottom:757.223733pt;}
.y16{bottom:757.237733pt;}
.yb3{bottom:757.261067pt;}
.y40{bottom:757.377733pt;}
.yf3{bottom:757.410400pt;}
.y1{bottom:763.655867pt;}
.y1dc{bottom:775.852933pt;}
.y75{bottom:775.853067pt;}
.y15e{bottom:775.859733pt;}
.yc3{bottom:775.862400pt;}
.y13a{bottom:775.869067pt;}
.y114{bottom:775.885733pt;}
.y15{bottom:775.899733pt;}
.y3f{bottom:776.039733pt;}
.yf2{bottom:776.072400pt;}
.y182{bottom:785.456000pt;}
.y1db{bottom:794.519600pt;}
.y74{bottom:794.519733pt;}
.yc2{bottom:794.524400pt;}
.y15d{bottom:794.525733pt;}
.y9c{bottom:794.547733pt;}
.y14{bottom:794.561733pt;}
.yb2{bottom:794.599067pt;}
.yf1{bottom:794.734400pt;}
.y1da{bottom:813.186267pt;}
.y73{bottom:813.186400pt;}
.y15c{bottom:813.191733pt;}
.y139{bottom:813.201067pt;}
.y9b{bottom:813.209733pt;}
.y13{bottom:813.223733pt;}
.yb1{bottom:813.261067pt;}
.y3e{bottom:813.377733pt;}
.yf0{bottom:813.396400pt;}
.y180{bottom:816.413333pt;}
.y1d9{bottom:831.852933pt;}
.y72{bottom:831.853067pt;}
.y138{bottom:831.867067pt;}
.y9a{bottom:831.871733pt;}
.y12{bottom:831.885733pt;}
.y3d{bottom:832.039733pt;}
.yef{bottom:832.058400pt;}
.y17e{bottom:847.086667pt;}
.y1d8{bottom:850.519600pt;}
.y71{bottom:850.519733pt;}
.y15b{bottom:850.523733pt;}
.y137{bottom:850.533067pt;}
.y99{bottom:850.533733pt;}
.y11{bottom:850.547733pt;}
.yb0{bottom:850.599067pt;}
.yee{bottom:850.720400pt;}
.y1d7{bottom:869.186267pt;}
.y70{bottom:869.186400pt;}
.y15a{bottom:869.189733pt;}
.y136{bottom:869.199067pt;}
.y10{bottom:869.209733pt;}
.yaf{bottom:869.261067pt;}
.y3c{bottom:869.377733pt;}
.yed{bottom:869.382400pt;}
.y1d6{bottom:887.852933pt;}
.y159{bottom:887.855733pt;}
.y135{bottom:887.865067pt;}
.yf{bottom:887.871733pt;}
.yae{bottom:887.923067pt;}
.y3b{bottom:888.039733pt;}
.yec{bottom:888.044400pt;}
.y17d{bottom:906.466133pt;}
.y1d5{bottom:906.519600pt;}
.ye{bottom:906.533733pt;}
.yad{bottom:906.585067pt;}
.y3a{bottom:906.701733pt;}
.yeb{bottom:906.706400pt;}
.y6f{bottom:919.853067pt;}
.y158{bottom:925.187733pt;}
.yd{bottom:925.195733pt;}
.y134{bottom:925.197067pt;}
.y39{bottom:925.363733pt;}
.yea{bottom:925.368400pt;}
.y6e{bottom:943.853067pt;}
.y157{bottom:943.853733pt;}
.yc{bottom:943.857733pt;}
.y133{bottom:943.863067pt;}
.yac{bottom:943.923067pt;}
.ye9{bottom:944.030400pt;}
.y17a{bottom:950.487333pt;}
.yb{bottom:962.519733pt;}
.y132{bottom:962.529067pt;}
.yab{bottom:962.585067pt;}
.ye8{bottom:962.692400pt;}
.y38{bottom:962.701733pt;}
.y1d4{bottom:969.398400pt;}
.y6d{bottom:970.144800pt;}
.y1b0{bottom:1009.238667pt;}
.y1b2{bottom:1009.574533pt;}
.y95{bottom:1055.853067pt;}
.y1b1{bottom:1056.188933pt;}
.h27{height:15.932000pt;}
.h24{height:16.188000pt;}
.h29{height:19.597333pt;}
.h2b{height:20.732000pt;}
.h23{height:23.573333pt;}
.h20{height:24.425333pt;}
.h19{height:27.548000pt;}
.h17{height:27.577333pt;}
.h1b{height:28.685333pt;}
.h1a{height:28.985333pt;}
.h21{height:29.537333pt;}
.h1f{height:30.105333pt;}
.h1d{height:31.837333pt;}
.h25{height:32.660000pt;}
.h14{height:33.546667pt;}
.h15{height:33.998995pt;}
.h26{height:36.989344pt;}
.h22{height:37.518667pt;}
.h10{height:38.826667pt;}
.h9{height:39.144000pt;}
.hb{height:39.146667pt;}
.he{height:39.466667pt;}
.h1c{height:40.351904pt;}
.h18{height:41.278907pt;}
.h13{height:41.434667pt;}
.h28{height:42.317333pt;}
.h2a{height:42.629333pt;}
.h8{height:44.912000pt;}
.h12{height:46.309333pt;}
.h1e{height:46.577333pt;}
.h7{height:47.360000pt;}
.h16{height:48.158523pt;}
.ha{height:48.426667pt;}
.hf{height:48.746667pt;}
.hc{height:62.293333pt;}
.h11{height:62.634667pt;}
.hd{height:63.146667pt;}
.h2c{height:63.930667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:141.209333pt;}
.w7{width:173.904000pt;}
.w5{width:206.564000pt;}
.w9{width:261.116000pt;}
.w8{width:261.117333pt;}
.w4{width:522.802667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x13{left:5.679733pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x7{left:90.696533pt;}
.x11{left:129.136000pt;}
.xe{left:134.531733pt;}
.x10{left:156.428667pt;}
.xc{left:160.922000pt;}
.xb{left:164.575333pt;}
.x12{left:170.489600pt;}
.x2{left:198.425200pt;}
.x14{left:336.262667pt;}
.x16{left:390.826667pt;}
.x17{left:396.506533pt;}
.x8{left:415.748000pt;}
.x15{left:478.038667pt;}
.x9{left:595.568667pt;}
.xf{left:643.685055pt;}
.x5{left:869.291333pt;}
.x18{left:884.075467pt;}
.x19{left:977.942133pt;}
.x6{left:1209.449333pt;}
.xd{left:1224.555333pt;}
.xa{left:1389.269467pt;}
}




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