
    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_9bad83e47102e8c25c538ccd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_0966fc300423a9b326ab2169.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;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_aa1ff032ba8aa8b27155b761.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_f941c3f9baf19d35245346dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_3fada4acaf48f7dc805338ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_c6045980751eb97409613f67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_d0b99e99ac73d89af784e222.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682000;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_2e17ff25a585153b47f93d7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_cb71d36cf51f3487f626eb93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_3a43309f87053eb109572fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_1273bf5ec466e94e6f5ca935.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.920000;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_08898fbc818976212a3b6c9e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_5562582872253c7df389d3e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_055e86ed5d8dc0a314cfb8d2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_7b1c544595d1e18d3602c23b.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_0ab31b69378a592ff9ead85c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.702000;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_5f23caa1d3909685b271a9b7.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.999000;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_4d3c05a39dbbbd756e365241.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918000;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_f85b6422c82a776432f6027c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.725000;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_d3194cef293069c93fb57b53.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919000;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_4b19bf527558f7b0c0e990c0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_af194e8459958d75b8fe5c62.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.686000;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);}
.va{vertical-align:-79.620000px;}
.v4{vertical-align:-68.862000px;}
.v3{vertical-align:-58.098000px;}
.v2{vertical-align:-12.906000px;}
.v1{vertical-align:-9.822000px;}
.v14{vertical-align:-7.890000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:9.222000px;}
.v5{vertical-align:10.764000px;}
.v17{vertical-align:13.980000px;}
.ve{vertical-align:19.980000px;}
.vf{vertical-align:24.732000px;}
.v10{vertical-align:34.008000px;}
.v7{vertical-align:49.200000px;}
.v6{vertical-align:58.098000px;}
.v16{vertical-align:66.780000px;}
.v8{vertical-align:68.148000px;}
.vb{vertical-align:73.860000px;}
.v12{vertical-align:79.626000px;}
.v15{vertical-align:82.842000px;}
.vc{vertical-align:84.618000px;}
.vd{vertical-align:118.626000px;}
.v13{vertical-align:122.664000px;}
.v9{vertical-align:164.238000px;}
.lsd{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.001114px;}
.ls24{letter-spacing:0.001139px;}
.ls30{letter-spacing:0.002127px;}
.ls36{letter-spacing:0.002400px;}
.ls31{letter-spacing:0.002675px;}
.ls1{letter-spacing:0.002706px;}
.ls10{letter-spacing:0.002759px;}
.ls3{letter-spacing:0.003239px;}
.lsc{letter-spacing:0.003471px;}
.ls1c{letter-spacing:0.003744px;}
.ls1e{letter-spacing:0.003848px;}
.ls3d{letter-spacing:0.004528px;}
.ls22{letter-spacing:0.004773px;}
.ls3e{letter-spacing:0.005591px;}
.ls8{letter-spacing:0.242692px;}
.ls2d{letter-spacing:1.946534px;}
.ls29{letter-spacing:1.952534px;}
.ls19{letter-spacing:2.569240px;}
.ls3c{letter-spacing:2.674328px;}
.ls3f{letter-spacing:2.986059px;}
.ls0{letter-spacing:3.771239px;}
.lsf{letter-spacing:4.173471px;}
.ls48{letter-spacing:4.179471px;}
.ls37{letter-spacing:4.265644px;}
.ls35{letter-spacing:7.172915px;}
.ls3b{letter-spacing:7.175591px;}
.ls18{letter-spacing:7.493566px;}
.ls28{letter-spacing:11.948759px;}
.ls1b{letter-spacing:11.953473px;}
.ls25{letter-spacing:11.957779px;}
.ls3a{letter-spacing:14.936915px;}
.ls17{letter-spacing:15.935518px;}
.ls26{letter-spacing:15.937114px;}
.ls27{letter-spacing:15.937473px;}
.ls32{letter-spacing:16.217644px;}
.ls1a{letter-spacing:19.016759px;}
.ls5{letter-spacing:19.727412px;}
.ls41{letter-spacing:19.921473px;}
.ls39{letter-spacing:19.922759px;}
.ls16{letter-spacing:19.925518px;}
.ls9{letter-spacing:20.338349px;}
.ls2e{letter-spacing:22.105114px;}
.ls2c{letter-spacing:22.106759px;}
.ls44{letter-spacing:22.130759px;}
.ls7{letter-spacing:22.346156px;}
.ls12{letter-spacing:23.402759px;}
.ls1d{letter-spacing:23.408759px;}
.lsa{letter-spacing:23.458878px;}
.ls11{letter-spacing:24.116759px;}
.ls4a{letter-spacing:24.602759px;}
.ls43{letter-spacing:25.903114px;}
.ls47{letter-spacing:25.975240px;}
.ls46{letter-spacing:26.390915px;}
.ls15{letter-spacing:26.756759px;}
.ls20{letter-spacing:27.011566px;}
.ls2b{letter-spacing:27.652477px;}
.ls42{letter-spacing:28.892915px;}
.ls2{letter-spacing:29.030706px;}
.ls45{letter-spacing:30.893566px;}
.ls1f{letter-spacing:30.899566px;}
.ls4{letter-spacing:31.133412px;}
.ls49{letter-spacing:31.208287px;}
.ls21{letter-spacing:31.991566px;}
.ls23{letter-spacing:35.114373px;}
.lse{letter-spacing:35.117578px;}
.lsb{letter-spacing:35.865600px;}
.ls6{letter-spacing:36.561229px;}
.ls2f{letter-spacing:39.215644px;}
.ls13{letter-spacing:39.848759px;}
.ls14{letter-spacing:39.853473px;}
.ls33{letter-spacing:40.127644px;}
.ls34{letter-spacing:43.033473px;}
.ls40{letter-spacing:70.219114px;}
.ls38{letter-spacing:457.381114px;}
.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;}
}
.ws77{word-spacing:-71.731200px;}
.ws17{word-spacing:-56.990438px;}
.ws5d{word-spacing:-56.789591px;}
.ws5b{word-spacing:-54.796746px;}
.ws27{word-spacing:-53.619072px;}
.ws19{word-spacing:-52.543104px;}
.ws7b{word-spacing:-50.809387px;}
.ws22{word-spacing:-46.948070px;}
.ws3e{word-spacing:-45.664082px;}
.ws24{word-spacing:-45.226522px;}
.ws6{word-spacing:-42.637126px;}
.ws67{word-spacing:-40.341627px;}
.ws26{word-spacing:-40.277069px;}
.ws23{word-spacing:-39.631488px;}
.ws1f{word-spacing:-39.416294px;}
.ws20{word-spacing:-36.044928px;}
.ws6e{word-spacing:-35.858427px;}
.ws45{word-spacing:-35.112422px;}
.ws18{word-spacing:-35.040691px;}
.ws89{word-spacing:-33.756703px;}
.ws58{word-spacing:-33.684972px;}
.ws10{word-spacing:-32.544027px;}
.ws7a{word-spacing:-25.722808px;}
.ws57{word-spacing:-22.207094px;}
.ws53{word-spacing:-19.510886px;}
.ws49{word-spacing:-18.470784px;}
.ws66{word-spacing:-17.889761px;}
.wsa7{word-spacing:-17.681741px;}
.ws2f{word-spacing:-16.820966px;}
.wsa0{word-spacing:-16.605773px;}
.ws3a{word-spacing:-16.598600px;}
.wsa8{word-spacing:-16.275809px;}
.ws3{word-spacing:-16.114923px;}
.ws59{word-spacing:-16.103654px;}
.ws14{word-spacing:-16.049468px;}
.ws46{word-spacing:-15.829597px;}
.wsa{word-spacing:-15.797024px;}
.ws50{word-spacing:-15.743520px;}
.ws6b{word-spacing:-15.737825px;}
.ws69{word-spacing:-15.601536px;}
.ws68{word-spacing:-15.588695px;}
.ws9e{word-spacing:-15.529805px;}
.ws94{word-spacing:-15.242880px;}
.ws4d{word-spacing:-15.171149px;}
.ws3b{word-spacing:-14.453837px;}
.ws76{word-spacing:-13.815429px;}
.ws70{word-spacing:-13.736525px;}
.ws6c{word-spacing:-13.664794px;}
.ws6f{word-spacing:-13.521331px;}
.ws25{word-spacing:-13.514158px;}
.ws1a{word-spacing:-13.442427px;}
.ws72{word-spacing:-13.139069px;}
.ws12{word-spacing:-13.038556px;}
.ws74{word-spacing:-13.019213px;}
.ws73{word-spacing:-13.004365px;}
.ws80{word-spacing:-12.981652px;}
.ws4a{word-spacing:-12.947482px;}
.ws87{word-spacing:-12.796846px;}
.wsa1{word-spacing:-12.660557px;}
.wsa9{word-spacing:-12.588826px;}
.wsf{word-spacing:-12.580374px;}
.wse{word-spacing:-12.514920px;}
.ws83{word-spacing:-12.445363px;}
.ws8a{word-spacing:-12.438190px;}
.ws5a{word-spacing:-12.230170px;}
.wsd{word-spacing:-12.223321px;}
.wsbf{word-spacing:-12.014976px;}
.ws52{word-spacing:-11.741992px;}
.ws96{word-spacing:-11.736956px;}
.ws8c{word-spacing:-11.736674px;}
.ws84{word-spacing:-11.732037px;}
.ws2e{word-spacing:-11.728051px;}
.ws41{word-spacing:-11.721717px;}
.ws91{word-spacing:-11.719759px;}
.ws81{word-spacing:-11.708544px;}
.ws79{word-spacing:-11.702938px;}
.ws5f{word-spacing:-11.702365px;}
.ws61{word-spacing:-11.699203px;}
.ws8f{word-spacing:-11.697926px;}
.ws82{word-spacing:-11.697698px;}
.ws85{word-spacing:-11.697577px;}
.ws1c{word-spacing:-11.656320px;}
.wsb1{word-spacing:-11.584589px;}
.ws9c{word-spacing:-11.505684px;}
.ws36{word-spacing:-11.297664px;}
.ws88{word-spacing:-11.154202px;}
.ws3d{word-spacing:-11.021234px;}
.ws3f{word-spacing:-11.010739px;}
.ws2{word-spacing:-10.878555px;}
.ws8b{word-spacing:-10.867277px;}
.wsac{word-spacing:-10.795546px;}
.wsa2{word-spacing:-10.752507px;}
.ws4c{word-spacing:-10.723814px;}
.ws37{word-spacing:-10.716641px;}
.ws6a{word-spacing:-10.652083px;}
.ws65{word-spacing:-10.508621px;}
.ws63{word-spacing:-10.436890px;}
.ws92{word-spacing:-10.221696px;}
.ws62{word-spacing:-10.078234px;}
.ws9d{word-spacing:-10.006502px;}
.ws6d{word-spacing:-9.863040px;}
.ws30{word-spacing:-9.719578px;}
.ws48{word-spacing:-9.647846px;}
.ws38{word-spacing:-9.360922px;}
.ws7e{word-spacing:-9.217459px;}
.ws7d{word-spacing:-9.212365px;}
.wsad{word-spacing:-9.002266px;}
.wsb2{word-spacing:-8.930534px;}
.ws34{word-spacing:-8.636436px;}
.wsb8{word-spacing:-8.571878px;}
.ws13{word-spacing:-8.391280px;}
.ws40{word-spacing:-8.356685px;}
.wsae{word-spacing:-8.313646px;}
.wsa5{word-spacing:-8.284954px;}
.ws3c{word-spacing:-7.998029px;}
.wsb3{word-spacing:-7.926298px;}
.wsb9{word-spacing:-7.883259px;}
.wsbd{word-spacing:-7.639373px;}
.wsa6{word-spacing:-7.596334px;}
.ws35{word-spacing:-7.567642px;}
.ws5e{word-spacing:-7.535276px;}
.ws54{word-spacing:-7.513048px;}
.ws2a{word-spacing:-7.424179px;}
.ws4{word-spacing:-7.409461px;}
.ws60{word-spacing:-7.137254px;}
.ws51{word-spacing:-7.065523px;}
.ws9f{word-spacing:-6.850330px;}
.ws43{word-spacing:-6.778598px;}
.ws2d{word-spacing:-5.846093px;}
.ws4b{word-spacing:-5.487437px;}
.wsb4{word-spacing:-5.372667px;}
.ws39{word-spacing:-5.272243px;}
.ws1e{word-spacing:-5.128781px;}
.wsa3{word-spacing:-5.057050px;}
.ws47{word-spacing:-4.913587px;}
.wsb7{word-spacing:-4.841856px;}
.ws44{word-spacing:-4.770125px;}
.ws71{word-spacing:-4.626662px;}
.ws86{word-spacing:-4.547758px;}
.ws31{word-spacing:-4.483200px;}
.wsbc{word-spacing:-4.440161px;}
.wsb5{word-spacing:-4.411469px;}
.ws11{word-spacing:-4.202185px;}
.ws2b{word-spacing:-3.981082px;}
.wsc0{word-spacing:-3.899766px;}
.wsa4{word-spacing:-3.899443px;}
.ws99{word-spacing:-3.615252px;}
.ws5{word-spacing:-3.547639px;}
.ws32{word-spacing:-3.478963px;}
.wsb6{word-spacing:-3.263770px;}
.ws9a{word-spacing:-3.192038px;}
.ws8{word-spacing:-3.154912px;}
.wsb{word-spacing:-3.131661px;}
.wsc{word-spacing:-3.089457px;}
.wsaf{word-spacing:-2.761651px;}
.wsb0{word-spacing:-2.503419px;}
.ws7f{word-spacing:-2.402995px;}
.ws8d{word-spacing:-1.821972px;}
.ws8e{word-spacing:-1.542221px;}
.ws4e{word-spacing:-1.255296px;}
.wsba{word-spacing:-1.183565px;}
.wsbb{word-spacing:-1.140526px;}
.ws2c{word-spacing:-1.111834px;}
.ws97{word-spacing:-0.817736px;}
.ws98{word-spacing:-0.681446px;}
.wsab{word-spacing:-0.638408px;}
.wsaa{word-spacing:-0.609715px;}
.wsbe{word-spacing:-0.322790px;}
.ws15{word-spacing:-0.103292px;}
.ws7{word-spacing:-0.047821px;}
.ws21{word-spacing:0.000000px;}
.ws33{word-spacing:0.001442px;}
.ws9b{word-spacing:0.007442px;}
.ws5c{word-spacing:0.390117px;}
.ws75{word-spacing:0.394472px;}
.ws78{word-spacing:0.396117px;}
.ws1b{word-spacing:0.753178px;}
.ws56{word-spacing:22.861797px;}
.ws16{word-spacing:24.646840px;}
.ws93{word-spacing:24.686884px;}
.ws42{word-spacing:26.341797px;}
.ws90{word-spacing:26.347797px;}
.ws1{word-spacing:27.200395px;}
.ws64{word-spacing:27.577797px;}
.ws55{word-spacing:29.695797px;}
.ws1d{word-spacing:30.769797px;}
.ws9{word-spacing:34.069797px;}
.ws4f{word-spacing:36.978679px;}
.ws95{word-spacing:37.081972px;}
.ws0{word-spacing:43.763175px;}
.ws29{word-spacing:47.351068px;}
.ws7c{word-spacing:75.599426px;}
.ws28{word-spacing:111.349207px;}
._24{margin-left:-43.684301px;}
._22{margin-left:-41.433880px;}
._11{margin-left:-39.810816px;}
._f{margin-left:-37.995047px;}
._e{margin-left:-35.865600px;}
._14{margin-left:-33.422474px;}
._12{margin-left:-31.992115px;}
._2e{margin-left:-15.151114px;}
._13{margin-left:-12.602203px;}
._3{margin-left:-10.909800px;}
._1f{margin-left:-9.804686px;}
._31{margin-left:-7.971724px;}
._4{margin-left:-6.800099px;}
._c{margin-left:-5.301823px;}
._0{margin-left:-3.595275px;}
._5{margin-left:-1.832729px;}
._6{width:1.832729px;}
._1{width:3.471300px;}
._35{width:5.250709px;}
._3b{width:18.957021px;}
._a{width:20.550538px;}
._17{width:23.176344px;}
._25{width:24.198498px;}
._28{width:25.704886px;}
._18{width:27.282972px;}
._32{width:29.234047px;}
._8{width:30.868310px;}
._9{width:32.165088px;}
._1a{width:33.595318px;}
._39{width:34.665635px;}
._b{width:36.058305px;}
._1d{width:37.663377px;}
._7{width:39.141851px;}
._33{width:40.397976px;}
._3a{width:42.172813px;}
._34{width:44.003508px;}
._3e{width:45.640306px;}
._1b{width:47.464555px;}
._20{width:49.121539px;}
._38{width:51.657705px;}
._30{width:54.171389px;}
._3c{width:56.747064px;}
._2{width:58.516200px;}
._26{width:60.775825px;}
._2b{width:62.305747px;}
._3d{width:63.580624px;}
._10{width:65.849242px;}
._2f{width:66.918956px;}
._16{width:71.802931px;}
._36{width:94.684920px;}
._19{width:101.714842px;}
._37{width:111.452500px;}
._2c{width:725.327977px;}
._23{width:971.894744px;}
._1e{width:1134.559574px;}
._29{width:1254.515672px;}
._27{width:1260.494445px;}
._21{width:1296.334961px;}
._2d{width:1521.651863px;}
._2a{width:1645.657190px;}
._15{width:1758.054331px;}
._1c{width:1905.969715px;}
._d{width:2131.636070px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y25{bottom:61.467000px;}
.y6d{bottom:106.299000px;}
.y24{bottom:106.366500px;}
.y4c{bottom:107.185500px;}
.ye7{bottom:109.254000px;}
.y6c{bottom:127.968000px;}
.y23{bottom:128.035500px;}
.y4b{bottom:143.797500px;}
.ye6{bottom:145.867500px;}
.y22{bottom:149.703000px;}
.yfe{bottom:159.316500px;}
.ycd{bottom:161.193000px;}
.y8c{bottom:162.451500px;}
.y131{bottom:163.588500px;}
.y6b{bottom:164.179500px;}
.yad{bottom:165.351000px;}
.y21{bottom:171.372000px;}
.ye5{bottom:179.115000px;}
.y4a{bottom:180.411000px;}
.y8b{bottom:184.120500px;}
.y130{bottom:185.257500px;}
.y6a{bottom:185.848500px;}
.yac{bottom:187.020000px;}
.y20{bottom:193.041000px;}
.yfd{bottom:195.928500px;}
.ycc{bottom:197.805000px;}
.y113{bottom:197.860500px;}
.y49{bottom:202.080000px;}
.y8a{bottom:205.789500px;}
.yab{bottom:215.232000px;}
.y12f{bottom:220.878000px;}
.y69{bottom:221.257500px;}
.y48{bottom:223.747500px;}
.ye4{bottom:223.767000px;}
.y89{bottom:227.458500px;}
.yfc{bottom:229.176000px;}
.y1f{bottom:232.264500px;}
.ycb{bottom:234.418500px;}
.y112{bottom:234.474000px;}
.y12e{bottom:242.547000px;}
.y47{bottom:245.416500px;}
.yaa{bottom:250.915500px;}
.y1e{bottom:253.933500px;}
.y68{bottom:254.505000px;}
.yca{bottom:256.087500px;}
.y88{bottom:264.070500px;}
.y46{bottom:267.085500px;}
.y111{bottom:271.086000px;}
.yfb{bottom:273.829500px;}
.y1d{bottom:275.602500px;}
.y12d{bottom:278.167500px;}
.ye3{bottom:283.662000px;}
.ya9{bottom:286.600500px;}
.yc9{bottom:289.335000px;}
.y1c{bottom:297.271500px;}
.y12c{bottom:299.836500px;}
.y45{bottom:300.333000px;}
.y87{bottom:300.684000px;}
.y110{bottom:304.333500px;}
.y67{bottom:306.283500px;}
.ya8{bottom:314.812500px;}
.ye2{bottom:320.274000px;}
.y66{bottom:327.952500px;}
.yfa{bottom:333.723000px;}
.y12b{bottom:335.457000px;}
.ya7{bottom:336.481500px;}
.y1b{bottom:336.495000px;}
.y86{bottom:337.296000px;}
.yc8{bottom:341.320500px;}
.y44{bottom:344.986500px;}
.y10f{bottom:348.987000px;}
.ye1{bottom:353.521500px;}
.y12a{bottom:357.124500px;}
.y1a{bottom:358.162500px;}
.y142{bottom:359.275500px;}
.yc7{bottom:362.989500px;}
.y65{bottom:364.164000px;}
.yf9{bottom:370.336500px;}
.ya6{bottom:372.165000px;}
.y85{bottom:373.909500px;}
.y19{bottom:379.831500px;}
.y141{bottom:380.944500px;}
.y129{bottom:392.745000px;}
.yc6{bottom:399.603000px;}
.y64{bottom:400.375500px;}
.y18{bottom:401.500500px;}
.yf8{bottom:403.584000px;}
.y43{bottom:404.880000px;}
.y84{bottom:405.291000px;}
.ye0{bottom:405.508500px;}
.ya5{bottom:407.850000px;}
.y10e{bottom:408.880500px;}
.y128{bottom:414.414000px;}
.y140{bottom:417.556500px;}
.y63{bottom:422.043000px;}
.y17{bottom:423.169500px;}
.y42{bottom:426.549000px;}
.y83{bottom:426.960000px;}
.ydf{bottom:427.176000px;}
.ya4{bottom:429.519000px;}
.y10d{bottom:430.549500px;}
.yc5{bottom:432.850500px;}
.y13f{bottom:439.225500px;}
.y41{bottom:448.218000px;}
.y82{bottom:448.629000px;}
.y127{bottom:450.034500px;}
.yf7{bottom:455.569500px;}
.ya3{bottom:457.731000px;}
.y62{bottom:458.254500px;}
.y16{bottom:462.393000px;}
.yde{bottom:463.789500px;}
.y10c{bottom:463.797000px;}
.y40{bottom:469.887000px;}
.y126{bottom:471.703500px;}
.y13e{bottom:475.837500px;}
.yc4{bottom:477.502500px;}
.y15{bottom:484.062000px;}
.y81{bottom:488.230500px;}
.y3f{bottom:491.554500px;}
.yf6{bottom:492.183000px;}
.ya2{bottom:493.416000px;}
.y61{bottom:494.466000px;}
.ydd{bottom:497.037000px;}
.y13d{bottom:497.506500px;}
.y14{bottom:505.731000px;}
.y125{bottom:507.324000px;}
.y10b{bottom:515.782500px;}
.y60{bottom:516.135000px;}
.yf5{bottom:525.430500px;}
.ya1{bottom:526.663500px;}
.y13{bottom:527.400000px;}
.y80{bottom:527.832000px;}
.y124{bottom:528.993000px;}
.y3e{bottom:530.778000px;}
.y13c{bottom:534.120000px;}
.yc3{bottom:537.397500px;}
.ydc{bottom:549.022500px;}
.y10a{bottom:549.030000px;}
.y12{bottom:549.067500px;}
.y7f{bottom:549.501000px;}
.y5f{bottom:551.544000px;}
.y3d{bottom:552.447000px;}
.y13b{bottom:555.789000px;}
.yc2{bottom:559.065000px;}
.y123{bottom:568.416000px;}
.ydb{bottom:570.691500px;}
.y3c{bottom:574.116000px;}
.yf4{bottom:577.417500px;}
.ya0{bottom:578.169000px;}
.y7e{bottom:582.748500px;}
.y5e{bottom:584.791500px;}
.y11{bottom:588.490500px;}
.y13a{bottom:592.401000px;}
.yc1{bottom:595.678500px;}
.y3b{bottom:595.785000px;}
.y9f{bottom:599.838000px;}
.y109{bottom:601.017000px;}
.yda{bottom:607.305000px;}
.yf3{bottom:614.029500px;}
.y139{bottom:614.070000px;}
.yc0{bottom:617.347500px;}
.y9e{bottom:621.507000px;}
.y7d{bottom:627.402000px;}
.y122{bottom:627.796500px;}
.y108{bottom:634.264500px;}
.y3a{bottom:635.008500px;}
.y5d{bottom:636.571500px;}
.yd9{bottom:640.552500px;}
.yf2{bottom:647.277000px;}
.y10{bottom:648.384000px;}
.y121{bottom:649.465500px;}
.ybf{bottom:650.595000px;}
.y138{bottom:650.682000px;}
.y39{bottom:656.677500px;}
.y9d{bottom:657.192000px;}
.y5c{bottom:658.239000px;}
.yf{bottom:668.709000px;}
.y120{bottom:671.134500px;}
.y137{bottom:672.351000px;}
.y38{bottom:678.346500px;}
.y9c{bottom:678.861000px;}
.y107{bottom:678.918000px;}
.y5b{bottom:679.908000px;}
.y7c{bottom:687.295500px;}
.ye{bottom:689.032500px;}
.yf1{bottom:691.930500px;}
.yd8{bottom:692.538000px;}
.y11f{bottom:692.803500px;}
.y37{bottom:700.014000px;}
.ybe{bottom:702.580500px;}
.y7b{bottom:708.964500px;}
.yd{bottom:709.356000px;}
.y9b{bottom:714.544500px;}
.y5a{bottom:715.317000px;}
.ybd{bottom:724.249500px;}
.y11e{bottom:726.051000px;}
.yd7{bottom:729.151500px;}
.yc{bottom:729.679500px;}
.y136{bottom:730.632000px;}
.y9a{bottom:736.213500px;}
.y59{bottom:736.986000px;}
.y106{bottom:738.811500px;}
.y36{bottom:739.239000px;}
.y7a{bottom:745.576500px;}
.yb{bottom:750.003000px;}
.ybc{bottom:751.594500px;}
.yf0{bottom:751.824000px;}
.ybb{bottom:757.779000px;}
.y99{bottom:757.882500px;}
.y35{bottom:760.906500px;}
.yd6{bottom:765.763500px;}
.y79{bottom:767.245500px;}
.ya{bottom:770.328000px;}
.yba{bottom:771.319500px;}
.y105{bottom:772.059000px;}
.y58{bottom:773.197500px;}
.y11d{bottom:777.525000px;}
.y34{bottom:782.575500px;}
.yef{bottom:788.436000px;}
.y135{bottom:788.914500px;}
.y9{bottom:790.651500px;}
.y98{bottom:791.130000px;}
.y57{bottom:794.866500px;}
.yd5{bottom:799.011000px;}
.y11c{bottom:799.194000px;}
.y78{bottom:803.857500px;}
.yb9{bottom:804.196500px;}
.y8{bottom:810.975000px;}
.y56{bottom:816.534000px;}
.y33{bottom:821.799000px;}
.y104{bottom:824.046000px;}
.yee{bottom:825.049500px;}
.y77{bottom:825.526500px;}
.y7{bottom:831.298500px;}
.y11b{bottom:834.814500px;}
.yb8{bottom:837.444000px;}
.y97{bottom:842.637000px;}
.y32{bottom:843.468000px;}
.yd4{bottom:843.664500px;}
.y134{bottom:847.195500px;}
.y6{bottom:851.622000px;}
.y55{bottom:852.745500px;}
.y103{bottom:857.293500px;}
.yed{bottom:861.661500px;}
.y76{bottom:862.140000px;}
.y96{bottom:864.304500px;}
.y31{bottom:865.137000px;}
.y11a{bottom:870.435000px;}
.y54{bottom:874.414500px;}
.yb5{bottom:880.669500px;}
.y5{bottom:882.027000px;}
.y75{bottom:883.807500px;}
.y30{bottom:886.806000px;}
.y119{bottom:892.104000px;}
.yec{bottom:894.909000px;}
.yb7{bottom:895.641000px;}
.y53{bottom:896.083500px;}
.yb6{bottom:896.829000px;}
.y95{bottom:898.132500px;}
.yb4{bottom:901.824000px;}
.yd3{bottom:903.558000px;}
.y133{bottom:905.476500px;}
.y102{bottom:909.279000px;}
.y94{bottom:919.801500px;}
.y74{bottom:920.421000px;}
.y2f{bottom:926.029500px;}
.y118{bottom:927.724500px;}
.y101{bottom:930.948000px;}
.y52{bottom:931.492500px;}
.yd2{bottom:940.171500px;}
.y73{bottom:942.090000px;}
.yb3{bottom:945.360000px;}
.yeb{bottom:946.896000px;}
.y2e{bottom:947.698500px;}
.y4{bottom:948.642000px;}
.y117{bottom:949.392000px;}
.y51{bottom:953.161500px;}
.y93{bottom:955.486500px;}
.y132{bottom:963.759000px;}
.y100{bottom:964.195500px;}
.yb2{bottom:967.029000px;}
.y2d{bottom:969.366000px;}
.yd1{bottom:973.419000px;}
.y3{bottom:975.541500px;}
.y92{bottom:977.154000px;}
.y72{bottom:978.702000px;}
.y116{bottom:982.639500px;}
.yea{bottom:983.508000px;}
.y50{bottom:986.409000px;}
.y2c{bottom:991.035000px;}
.yb1{bottom:999.906000px;}
.y71{bottom:1000.371000px;}
.yff{bottom:1008.849000px;}
.y91{bottom:1010.982000px;}
.y2b{bottom:1012.704000px;}
.ye9{bottom:1016.755500px;}
.y70{bottom:1022.040000px;}
.yb0{bottom:1024.338000px;}
.yd0{bottom:1025.404500px;}
.y2{bottom:1028.773500px;}
.y90{bottom:1032.651000px;}
.y115{bottom:1034.113500px;}
.y4f{bottom:1038.187500px;}
.ycf{bottom:1047.073500px;}
.y2a{bottom:1051.927500px;}
.y6f{bottom:1058.652000px;}
.y4e{bottom:1059.856500px;}
.yaf{bottom:1060.702500px;}
.y1{bottom:1066.132500px;}
.ye8{bottom:1068.742500px;}
.y8e{bottom:1069.003500px;}
.y114{bottom:1069.734000px;}
.y29{bottom:1073.596500px;}
.y6e{bottom:1080.321000px;}
.y4d{bottom:1081.525500px;}
.y8f{bottom:1083.528000px;}
.yce{bottom:1083.687000px;}
.yae{bottom:1093.950000px;}
.y28{bottom:1095.265500px;}
.y8d{bottom:1105.354500px;}
.y27{bottom:1116.934500px;}
.y26{bottom:1138.602000px;}
.hc{height:2.869248px;}
.h5{height:45.883675px;}
.h4{height:46.145493px;}
.h7{height:46.210948px;}
.h6{height:49.090950px;}
.hd{height:50.570496px;}
.hb{height:53.798400px;}
.h9{height:53.870131px;}
.h3{height:59.823654px;}
.ha{height:64.643977px;}
.h15{height:70.059450px;}
.hf{height:71.017248px;}
.h8{height:72.511265px;}
.h11{height:84.087450px;}
.h2{height:87.030450px;}
.h12{height:92.405702px;}
.h16{height:100.445702px;}
.h13{height:102.475248px;}
.he{height:102.998400px;}
.h14{height:125.533248px;}
.h10{height:167.107248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.299000px;}
.x1{left:115.702500px;}
.x1d{left:118.986000px;}
.xb{left:127.764000px;}
.x9{left:132.631500px;}
.x7{left:150.196500px;}
.x10{left:169.962000px;}
.x6{left:174.603000px;}
.x11{left:188.826000px;}
.x2{left:247.686000px;}
.x19{left:293.379000px;}
.x14{left:304.011000px;}
.xe{left:332.169000px;}
.x12{left:344.464500px;}
.x13{left:345.823500px;}
.x1a{left:362.413500px;}
.x15{left:370.993500px;}
.x3{left:379.032000px;}
.xd{left:382.504500px;}
.x4{left:385.777500px;}
.xc{left:395.859000px;}
.x1b{left:407.991000px;}
.x5{left:410.724000px;}
.xf{left:419.623500px;}
.x1c{left:437.679000px;}
.xa{left:442.068000px;}
.x16{left:444.729000px;}
.x17{left:486.081000px;}
.x18{left:537.043500px;}
@media print{
.va{vertical-align:-70.773333pt;}
.v4{vertical-align:-61.210667pt;}
.v3{vertical-align:-51.642667pt;}
.v2{vertical-align:-11.472000pt;}
.v1{vertical-align:-8.730667pt;}
.v14{vertical-align:-7.013333pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:8.197333pt;}
.v5{vertical-align:9.568000pt;}
.v17{vertical-align:12.426667pt;}
.ve{vertical-align:17.760000pt;}
.vf{vertical-align:21.984000pt;}
.v10{vertical-align:30.229333pt;}
.v7{vertical-align:43.733333pt;}
.v6{vertical-align:51.642667pt;}
.v16{vertical-align:59.360000pt;}
.v8{vertical-align:60.576000pt;}
.vb{vertical-align:65.653333pt;}
.v12{vertical-align:70.778667pt;}
.v15{vertical-align:73.637333pt;}
.vc{vertical-align:75.216000pt;}
.vd{vertical-align:105.445333pt;}
.v13{vertical-align:109.034667pt;}
.v9{vertical-align:145.989333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000990pt;}
.ls24{letter-spacing:0.001012pt;}
.ls30{letter-spacing:0.001891pt;}
.ls36{letter-spacing:0.002133pt;}
.ls31{letter-spacing:0.002377pt;}
.ls1{letter-spacing:0.002405pt;}
.ls10{letter-spacing:0.002452pt;}
.ls3{letter-spacing:0.002879pt;}
.lsc{letter-spacing:0.003086pt;}
.ls1c{letter-spacing:0.003328pt;}
.ls1e{letter-spacing:0.003420pt;}
.ls3d{letter-spacing:0.004025pt;}
.ls22{letter-spacing:0.004243pt;}
.ls3e{letter-spacing:0.004970pt;}
.ls8{letter-spacing:0.215727pt;}
.ls2d{letter-spacing:1.730253pt;}
.ls29{letter-spacing:1.735586pt;}
.ls19{letter-spacing:2.283769pt;}
.ls3c{letter-spacing:2.377181pt;}
.ls3f{letter-spacing:2.654275pt;}
.ls0{letter-spacing:3.352213pt;}
.lsf{letter-spacing:3.709752pt;}
.ls48{letter-spacing:3.715086pt;}
.ls37{letter-spacing:3.791684pt;}
.ls35{letter-spacing:6.375925pt;}
.ls3b{letter-spacing:6.378303pt;}
.ls18{letter-spacing:6.660948pt;}
.ls28{letter-spacing:10.621119pt;}
.ls1b{letter-spacing:10.625309pt;}
.ls25{letter-spacing:10.629137pt;}
.ls3a{letter-spacing:13.277258pt;}
.ls17{letter-spacing:14.164905pt;}
.ls26{letter-spacing:14.166323pt;}
.ls27{letter-spacing:14.166642pt;}
.ls32{letter-spacing:14.415684pt;}
.ls1a{letter-spacing:16.903786pt;}
.ls5{letter-spacing:17.535477pt;}
.ls41{letter-spacing:17.707976pt;}
.ls39{letter-spacing:17.709119pt;}
.ls16{letter-spacing:17.711572pt;}
.ls9{letter-spacing:18.078532pt;}
.ls2e{letter-spacing:19.648990pt;}
.ls2c{letter-spacing:19.650452pt;}
.ls44{letter-spacing:19.671786pt;}
.ls7{letter-spacing:19.863250pt;}
.ls12{letter-spacing:20.802452pt;}
.ls1d{letter-spacing:20.807786pt;}
.lsa{letter-spacing:20.852336pt;}
.ls11{letter-spacing:21.437119pt;}
.ls4a{letter-spacing:21.869119pt;}
.ls43{letter-spacing:23.024990pt;}
.ls47{letter-spacing:23.089103pt;}
.ls46{letter-spacing:23.458591pt;}
.ls15{letter-spacing:23.783786pt;}
.ls20{letter-spacing:24.010281pt;}
.ls2b{letter-spacing:24.579980pt;}
.ls42{letter-spacing:25.682591pt;}
.ls2{letter-spacing:25.805072pt;}
.ls45{letter-spacing:27.460948pt;}
.ls1f{letter-spacing:27.466281pt;}
.ls4{letter-spacing:27.674144pt;}
.ls49{letter-spacing:27.740699pt;}
.ls21{letter-spacing:28.436948pt;}
.ls23{letter-spacing:31.212776pt;}
.lse{letter-spacing:31.215625pt;}
.lsb{letter-spacing:31.880533pt;}
.ls6{letter-spacing:32.498870pt;}
.ls2f{letter-spacing:34.858350pt;}
.ls13{letter-spacing:35.421119pt;}
.ls14{letter-spacing:35.425309pt;}
.ls33{letter-spacing:35.669017pt;}
.ls34{letter-spacing:38.251976pt;}
.ls40{letter-spacing:62.416990pt;}
.ls38{letter-spacing:406.560990pt;}
.ws77{word-spacing:-63.761067pt;}
.ws17{word-spacing:-50.658167pt;}
.ws5d{word-spacing:-50.479636pt;}
.ws5b{word-spacing:-48.708218pt;}
.ws27{word-spacing:-47.661397pt;}
.ws19{word-spacing:-46.704981pt;}
.ws7b{word-spacing:-45.163900pt;}
.ws22{word-spacing:-41.731618pt;}
.ws3e{word-spacing:-40.590295pt;}
.ws24{word-spacing:-40.201353pt;}
.ws6{word-spacing:-37.899668pt;}
.ws67{word-spacing:-35.859224pt;}
.ws26{word-spacing:-35.801839pt;}
.ws23{word-spacing:-35.227989pt;}
.ws1f{word-spacing:-35.036706pt;}
.ws20{word-spacing:-32.039936pt;}
.ws6e{word-spacing:-31.874157pt;}
.ws45{word-spacing:-31.211042pt;}
.ws18{word-spacing:-31.147281pt;}
.ws89{word-spacing:-30.005958pt;}
.ws58{word-spacing:-29.942197pt;}
.ws10{word-spacing:-28.928024pt;}
.ws7a{word-spacing:-22.864719pt;}
.ws57{word-spacing:-19.739639pt;}
.ws53{word-spacing:-17.343010pt;}
.ws49{word-spacing:-16.418475pt;}
.ws66{word-spacing:-15.902010pt;}
.wsa7{word-spacing:-15.717103pt;}
.ws2f{word-spacing:-14.951970pt;}
.wsa0{word-spacing:-14.760687pt;}
.ws3a{word-spacing:-14.754311pt;}
.wsa8{word-spacing:-14.467386pt;}
.ws3{word-spacing:-14.324376pt;}
.ws59{word-spacing:-14.314359pt;}
.ws14{word-spacing:-14.266194pt;}
.ws46{word-spacing:-14.070753pt;}
.wsa{word-spacing:-14.041799pt;}
.ws50{word-spacing:-13.994240pt;}
.ws6b{word-spacing:-13.989178pt;}
.ws69{word-spacing:-13.868032pt;}
.ws68{word-spacing:-13.856618pt;}
.ws9e{word-spacing:-13.804271pt;}
.ws94{word-spacing:-13.549227pt;}
.ws4d{word-spacing:-13.485466pt;}
.ws3b{word-spacing:-12.847855pt;}
.ws76{word-spacing:-12.280381pt;}
.ws70{word-spacing:-12.210244pt;}
.ws6c{word-spacing:-12.146483pt;}
.ws6f{word-spacing:-12.018961pt;}
.ws25{word-spacing:-12.012585pt;}
.ws1a{word-spacing:-11.948824pt;}
.ws72{word-spacing:-11.679172pt;}
.ws12{word-spacing:-11.589828pt;}
.ws74{word-spacing:-11.572634pt;}
.ws73{word-spacing:-11.559436pt;}
.ws80{word-spacing:-11.539246pt;}
.ws4a{word-spacing:-11.508873pt;}
.ws87{word-spacing:-11.374974pt;}
.wsa1{word-spacing:-11.253828pt;}
.wsa9{word-spacing:-11.190067pt;}
.wsf{word-spacing:-11.182555pt;}
.wse{word-spacing:-11.124373pt;}
.ws83{word-spacing:-11.062545pt;}
.ws8a{word-spacing:-11.056169pt;}
.ws5a{word-spacing:-10.871262pt;}
.wsd{word-spacing:-10.865175pt;}
.wsbf{word-spacing:-10.679979pt;}
.ws52{word-spacing:-10.437327pt;}
.ws96{word-spacing:-10.432850pt;}
.ws8c{word-spacing:-10.432599pt;}
.ws84{word-spacing:-10.428477pt;}
.ws2e{word-spacing:-10.424934pt;}
.ws41{word-spacing:-10.419304pt;}
.ws91{word-spacing:-10.417563pt;}
.ws81{word-spacing:-10.407595pt;}
.ws79{word-spacing:-10.402611pt;}
.ws5f{word-spacing:-10.402103pt;}
.ws61{word-spacing:-10.399292pt;}
.ws8f{word-spacing:-10.398157pt;}
.ws82{word-spacing:-10.397954pt;}
.ws85{word-spacing:-10.397846pt;}
.ws1c{word-spacing:-10.361173pt;}
.wsb1{word-spacing:-10.297412pt;}
.ws9c{word-spacing:-10.227275pt;}
.ws36{word-spacing:-10.042368pt;}
.ws88{word-spacing:-9.914846pt;}
.ws3d{word-spacing:-9.796652pt;}
.ws3f{word-spacing:-9.787324pt;}
.ws2{word-spacing:-9.669826pt;}
.ws8b{word-spacing:-9.659802pt;}
.wsac{word-spacing:-9.596041pt;}
.wsa2{word-spacing:-9.557784pt;}
.ws4c{word-spacing:-9.532279pt;}
.ws37{word-spacing:-9.525903pt;}
.ws6a{word-spacing:-9.468518pt;}
.ws65{word-spacing:-9.340996pt;}
.ws63{word-spacing:-9.277235pt;}
.ws92{word-spacing:-9.085952pt;}
.ws62{word-spacing:-8.958430pt;}
.ws9d{word-spacing:-8.894669pt;}
.ws6d{word-spacing:-8.767147pt;}
.ws30{word-spacing:-8.639625pt;}
.ws48{word-spacing:-8.575863pt;}
.ws38{word-spacing:-8.320819pt;}
.ws7e{word-spacing:-8.193297pt;}
.ws7d{word-spacing:-8.188769pt;}
.wsad{word-spacing:-8.002014pt;}
.wsb2{word-spacing:-7.938253pt;}
.ws34{word-spacing:-7.676832pt;}
.wsb8{word-spacing:-7.619447pt;}
.ws13{word-spacing:-7.458915pt;}
.ws40{word-spacing:-7.428164pt;}
.wsae{word-spacing:-7.389908pt;}
.wsa5{word-spacing:-7.364403pt;}
.ws3c{word-spacing:-7.109359pt;}
.wsb3{word-spacing:-7.045598pt;}
.wsb9{word-spacing:-7.007341pt;}
.wsbd{word-spacing:-6.790554pt;}
.wsa6{word-spacing:-6.752297pt;}
.ws35{word-spacing:-6.726793pt;}
.ws5e{word-spacing:-6.698023pt;}
.ws54{word-spacing:-6.678265pt;}
.ws2a{word-spacing:-6.599270pt;}
.ws4{word-spacing:-6.586187pt;}
.ws60{word-spacing:-6.344226pt;}
.ws51{word-spacing:-6.280465pt;}
.ws9f{word-spacing:-6.089182pt;}
.ws43{word-spacing:-6.025421pt;}
.ws2d{word-spacing:-5.196527pt;}
.ws4b{word-spacing:-4.877722pt;}
.wsb4{word-spacing:-4.775704pt;}
.ws39{word-spacing:-4.686438pt;}
.ws1e{word-spacing:-4.558916pt;}
.wsa3{word-spacing:-4.495155pt;}
.ws47{word-spacing:-4.367633pt;}
.wsb7{word-spacing:-4.303872pt;}
.ws44{word-spacing:-4.240111pt;}
.ws71{word-spacing:-4.112589pt;}
.ws86{word-spacing:-4.042452pt;}
.ws31{word-spacing:-3.985067pt;}
.wsbc{word-spacing:-3.946810pt;}
.wsb5{word-spacing:-3.921306pt;}
.ws11{word-spacing:-3.735276pt;}
.ws2b{word-spacing:-3.538739pt;}
.wsc0{word-spacing:-3.466458pt;}
.wsa4{word-spacing:-3.466172pt;}
.ws99{word-spacing:-3.213558pt;}
.ws5{word-spacing:-3.153457pt;}
.ws32{word-spacing:-3.092412pt;}
.wsb6{word-spacing:-2.901129pt;}
.ws9a{word-spacing:-2.837367pt;}
.ws8{word-spacing:-2.804366pt;}
.wsb{word-spacing:-2.783699pt;}
.wsc{word-spacing:-2.746184pt;}
.wsaf{word-spacing:-2.454801pt;}
.wsb0{word-spacing:-2.225261pt;}
.ws7f{word-spacing:-2.135996pt;}
.ws8d{word-spacing:-1.619531pt;}
.ws8e{word-spacing:-1.370863pt;}
.ws4e{word-spacing:-1.115819pt;}
.wsba{word-spacing:-1.052058pt;}
.wsbb{word-spacing:-1.013801pt;}
.ws2c{word-spacing:-0.988297pt;}
.ws97{word-spacing:-0.726876pt;}
.ws98{word-spacing:-0.605730pt;}
.wsab{word-spacing:-0.567473pt;}
.wsaa{word-spacing:-0.541969pt;}
.wsbe{word-spacing:-0.286925pt;}
.ws15{word-spacing:-0.091815pt;}
.ws7{word-spacing:-0.042507pt;}
.ws21{word-spacing:0.000000pt;}
.ws33{word-spacing:0.001282pt;}
.ws9b{word-spacing:0.006615pt;}
.ws5c{word-spacing:0.346771pt;}
.ws75{word-spacing:0.350641pt;}
.ws78{word-spacing:0.352104pt;}
.ws1b{word-spacing:0.669491pt;}
.ws56{word-spacing:20.321597pt;}
.ws16{word-spacing:21.908303pt;}
.ws93{word-spacing:21.943897pt;}
.ws42{word-spacing:23.414931pt;}
.ws90{word-spacing:23.420264pt;}
.ws1{word-spacing:24.178129pt;}
.ws64{word-spacing:24.513597pt;}
.ws55{word-spacing:26.396264pt;}
.ws1d{word-spacing:27.350931pt;}
.ws9{word-spacing:30.284264pt;}
.ws4f{word-spacing:32.869937pt;}
.ws95{word-spacing:32.961753pt;}
.ws0{word-spacing:38.900600pt;}
.ws29{word-spacing:42.089838pt;}
.ws7c{word-spacing:67.199490pt;}
.ws28{word-spacing:98.977073pt;}
._24{margin-left:-38.830490pt;}
._22{margin-left:-36.830115pt;}
._11{margin-left:-35.387392pt;}
._f{margin-left:-33.773375pt;}
._e{margin-left:-31.880533pt;}
._14{margin-left:-29.708866pt;}
._12{margin-left:-28.437436pt;}
._2e{margin-left:-13.467657pt;}
._13{margin-left:-11.201958pt;}
._3{margin-left:-9.697600pt;}
._1f{margin-left:-8.715276pt;}
._31{margin-left:-7.085977pt;}
._4{margin-left:-6.044532pt;}
._c{margin-left:-4.712731pt;}
._0{margin-left:-3.195800pt;}
._5{margin-left:-1.629092pt;}
._6{width:1.629092pt;}
._1{width:3.085600pt;}
._35{width:4.667297pt;}
._3b{width:16.850685pt;}
._a{width:18.267145pt;}
._17{width:20.601195pt;}
._25{width:21.509776pt;}
._28{width:22.848787pt;}
._18{width:24.251531pt;}
._32{width:25.985820pt;}
._8{width:27.438498pt;}
._9{width:28.591189pt;}
._1a{width:29.862505pt;}
._39{width:30.813897pt;}
._b{width:32.051827pt;}
._1d{width:33.478557pt;}
._7{width:34.792756pt;}
._33{width:35.909312pt;}
._3a{width:37.486945pt;}
._34{width:39.114229pt;}
._3e{width:40.569161pt;}
._1b{width:42.190716pt;}
._20{width:43.663590pt;}
._38{width:45.917960pt;}
._30{width:48.152346pt;}
._3c{width:50.441835pt;}
._2{width:52.014400pt;}
._26{width:54.022955pt;}
._2b{width:55.382886pt;}
._3d{width:56.516110pt;}
._10{width:58.532659pt;}
._2f{width:59.483516pt;}
._16{width:63.824828pt;}
._36{width:84.164373pt;}
._19{width:90.413193pt;}
._37{width:99.068889pt;}
._2c{width:644.735980pt;}
._23{width:863.906439pt;}
._1e{width:1008.497399pt;}
._29{width:1115.125042pt;}
._27{width:1120.439507pt;}
._21{width:1152.297743pt;}
._2d{width:1352.579434pt;}
._2a{width:1462.806391pt;}
._15{width:1562.714961pt;}
._1c{width:1694.195302pt;}
._d{width:1894.787618pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:54.637333pt;}
.y6d{bottom:94.488000pt;}
.y24{bottom:94.548000pt;}
.y4c{bottom:95.276000pt;}
.ye7{bottom:97.114667pt;}
.y6c{bottom:113.749333pt;}
.y23{bottom:113.809333pt;}
.y4b{bottom:127.820000pt;}
.ye6{bottom:129.660000pt;}
.y22{bottom:133.069333pt;}
.yfe{bottom:141.614667pt;}
.ycd{bottom:143.282667pt;}
.y8c{bottom:144.401333pt;}
.y131{bottom:145.412000pt;}
.y6b{bottom:145.937333pt;}
.yad{bottom:146.978667pt;}
.y21{bottom:152.330667pt;}
.ye5{bottom:159.213333pt;}
.y4a{bottom:160.365333pt;}
.y8b{bottom:163.662667pt;}
.y130{bottom:164.673333pt;}
.y6a{bottom:165.198667pt;}
.yac{bottom:166.240000pt;}
.y20{bottom:171.592000pt;}
.yfd{bottom:174.158667pt;}
.ycc{bottom:175.826667pt;}
.y113{bottom:175.876000pt;}
.y49{bottom:179.626667pt;}
.y8a{bottom:182.924000pt;}
.yab{bottom:191.317333pt;}
.y12f{bottom:196.336000pt;}
.y69{bottom:196.673333pt;}
.y48{bottom:198.886667pt;}
.ye4{bottom:198.904000pt;}
.y89{bottom:202.185333pt;}
.yfc{bottom:203.712000pt;}
.y1f{bottom:206.457333pt;}
.ycb{bottom:208.372000pt;}
.y112{bottom:208.421333pt;}
.y12e{bottom:215.597333pt;}
.y47{bottom:218.148000pt;}
.yaa{bottom:223.036000pt;}
.y1e{bottom:225.718667pt;}
.y68{bottom:226.226667pt;}
.yca{bottom:227.633333pt;}
.y88{bottom:234.729333pt;}
.y46{bottom:237.409333pt;}
.y111{bottom:240.965333pt;}
.yfb{bottom:243.404000pt;}
.y1d{bottom:244.980000pt;}
.y12d{bottom:247.260000pt;}
.ye3{bottom:252.144000pt;}
.ya9{bottom:254.756000pt;}
.yc9{bottom:257.186667pt;}
.y1c{bottom:264.241333pt;}
.y12c{bottom:266.521333pt;}
.y45{bottom:266.962667pt;}
.y87{bottom:267.274667pt;}
.y110{bottom:270.518667pt;}
.y67{bottom:272.252000pt;}
.ya8{bottom:279.833333pt;}
.ye2{bottom:284.688000pt;}
.y66{bottom:291.513333pt;}
.yfa{bottom:296.642667pt;}
.y12b{bottom:298.184000pt;}
.ya7{bottom:299.094667pt;}
.y1b{bottom:299.106667pt;}
.y86{bottom:299.818667pt;}
.yc8{bottom:303.396000pt;}
.y44{bottom:306.654667pt;}
.y10f{bottom:310.210667pt;}
.ye1{bottom:314.241333pt;}
.y12a{bottom:317.444000pt;}
.y1a{bottom:318.366667pt;}
.y142{bottom:319.356000pt;}
.yc7{bottom:322.657333pt;}
.y65{bottom:323.701333pt;}
.yf9{bottom:329.188000pt;}
.ya6{bottom:330.813333pt;}
.y85{bottom:332.364000pt;}
.y19{bottom:337.628000pt;}
.y141{bottom:338.617333pt;}
.y129{bottom:349.106667pt;}
.yc6{bottom:355.202667pt;}
.y64{bottom:355.889333pt;}
.y18{bottom:356.889333pt;}
.yf8{bottom:358.741333pt;}
.y43{bottom:359.893333pt;}
.y84{bottom:360.258667pt;}
.ye0{bottom:360.452000pt;}
.ya5{bottom:362.533333pt;}
.y10e{bottom:363.449333pt;}
.y128{bottom:368.368000pt;}
.y140{bottom:371.161333pt;}
.y63{bottom:375.149333pt;}
.y17{bottom:376.150667pt;}
.y42{bottom:379.154667pt;}
.y83{bottom:379.520000pt;}
.ydf{bottom:379.712000pt;}
.ya4{bottom:381.794667pt;}
.y10d{bottom:382.710667pt;}
.yc5{bottom:384.756000pt;}
.y13f{bottom:390.422667pt;}
.y41{bottom:398.416000pt;}
.y82{bottom:398.781333pt;}
.y127{bottom:400.030667pt;}
.yf7{bottom:404.950667pt;}
.ya3{bottom:406.872000pt;}
.y62{bottom:407.337333pt;}
.y16{bottom:411.016000pt;}
.yde{bottom:412.257333pt;}
.y10c{bottom:412.264000pt;}
.y40{bottom:417.677333pt;}
.y126{bottom:419.292000pt;}
.y13e{bottom:422.966667pt;}
.yc4{bottom:424.446667pt;}
.y15{bottom:430.277333pt;}
.y81{bottom:433.982667pt;}
.y3f{bottom:436.937333pt;}
.yf6{bottom:437.496000pt;}
.ya2{bottom:438.592000pt;}
.y61{bottom:439.525333pt;}
.ydd{bottom:441.810667pt;}
.y13d{bottom:442.228000pt;}
.y14{bottom:449.538667pt;}
.y125{bottom:450.954667pt;}
.y10b{bottom:458.473333pt;}
.y60{bottom:458.786667pt;}
.yf5{bottom:467.049333pt;}
.ya1{bottom:468.145333pt;}
.y13{bottom:468.800000pt;}
.y80{bottom:469.184000pt;}
.y124{bottom:470.216000pt;}
.y3e{bottom:471.802667pt;}
.y13c{bottom:474.773333pt;}
.yc3{bottom:477.686667pt;}
.ydc{bottom:488.020000pt;}
.y10a{bottom:488.026667pt;}
.y12{bottom:488.060000pt;}
.y7f{bottom:488.445333pt;}
.y5f{bottom:490.261333pt;}
.y3d{bottom:491.064000pt;}
.y13b{bottom:494.034667pt;}
.yc2{bottom:496.946667pt;}
.y123{bottom:505.258667pt;}
.ydb{bottom:507.281333pt;}
.y3c{bottom:510.325333pt;}
.yf4{bottom:513.260000pt;}
.ya0{bottom:513.928000pt;}
.y7e{bottom:517.998667pt;}
.y5e{bottom:519.814667pt;}
.y11{bottom:523.102667pt;}
.y13a{bottom:526.578667pt;}
.yc1{bottom:529.492000pt;}
.y3b{bottom:529.586667pt;}
.y9f{bottom:533.189333pt;}
.y109{bottom:534.237333pt;}
.yda{bottom:539.826667pt;}
.yf3{bottom:545.804000pt;}
.y139{bottom:545.840000pt;}
.yc0{bottom:548.753333pt;}
.y9e{bottom:552.450667pt;}
.y7d{bottom:557.690667pt;}
.y122{bottom:558.041333pt;}
.y108{bottom:563.790667pt;}
.y3a{bottom:564.452000pt;}
.y5d{bottom:565.841333pt;}
.yd9{bottom:569.380000pt;}
.yf2{bottom:575.357333pt;}
.y10{bottom:576.341333pt;}
.y121{bottom:577.302667pt;}
.ybf{bottom:578.306667pt;}
.y138{bottom:578.384000pt;}
.y39{bottom:583.713333pt;}
.y9d{bottom:584.170667pt;}
.y5c{bottom:585.101333pt;}
.yf{bottom:594.408000pt;}
.y120{bottom:596.564000pt;}
.y137{bottom:597.645333pt;}
.y38{bottom:602.974667pt;}
.y9c{bottom:603.432000pt;}
.y107{bottom:603.482667pt;}
.y5b{bottom:604.362667pt;}
.y7c{bottom:610.929333pt;}
.ye{bottom:612.473333pt;}
.yf1{bottom:615.049333pt;}
.yd8{bottom:615.589333pt;}
.y11f{bottom:615.825333pt;}
.y37{bottom:622.234667pt;}
.ybe{bottom:624.516000pt;}
.y7b{bottom:630.190667pt;}
.yd{bottom:630.538667pt;}
.y9b{bottom:635.150667pt;}
.y5a{bottom:635.837333pt;}
.ybd{bottom:643.777333pt;}
.y11e{bottom:645.378667pt;}
.yd7{bottom:648.134667pt;}
.yc{bottom:648.604000pt;}
.y136{bottom:649.450667pt;}
.y9a{bottom:654.412000pt;}
.y59{bottom:655.098667pt;}
.y106{bottom:656.721333pt;}
.y36{bottom:657.101333pt;}
.y7a{bottom:662.734667pt;}
.yb{bottom:666.669333pt;}
.ybc{bottom:668.084000pt;}
.yf0{bottom:668.288000pt;}
.ybb{bottom:673.581333pt;}
.y99{bottom:673.673333pt;}
.y35{bottom:676.361333pt;}
.yd6{bottom:680.678667pt;}
.y79{bottom:681.996000pt;}
.ya{bottom:684.736000pt;}
.yba{bottom:685.617333pt;}
.y105{bottom:686.274667pt;}
.y58{bottom:687.286667pt;}
.y11d{bottom:691.133333pt;}
.y34{bottom:695.622667pt;}
.yef{bottom:700.832000pt;}
.y135{bottom:701.257333pt;}
.y9{bottom:702.801333pt;}
.y98{bottom:703.226667pt;}
.y57{bottom:706.548000pt;}
.yd5{bottom:710.232000pt;}
.y11c{bottom:710.394667pt;}
.y78{bottom:714.540000pt;}
.yb9{bottom:714.841333pt;}
.y8{bottom:720.866667pt;}
.y56{bottom:725.808000pt;}
.y33{bottom:730.488000pt;}
.y104{bottom:732.485333pt;}
.yee{bottom:733.377333pt;}
.y77{bottom:733.801333pt;}
.y7{bottom:738.932000pt;}
.y11b{bottom:742.057333pt;}
.yb8{bottom:744.394667pt;}
.y97{bottom:749.010667pt;}
.y32{bottom:749.749333pt;}
.yd4{bottom:749.924000pt;}
.y134{bottom:753.062667pt;}
.y6{bottom:756.997333pt;}
.y55{bottom:757.996000pt;}
.y103{bottom:762.038667pt;}
.yed{bottom:765.921333pt;}
.y76{bottom:766.346667pt;}
.y96{bottom:768.270667pt;}
.y31{bottom:769.010667pt;}
.y11a{bottom:773.720000pt;}
.y54{bottom:777.257333pt;}
.yb5{bottom:782.817333pt;}
.y5{bottom:784.024000pt;}
.y75{bottom:785.606667pt;}
.y30{bottom:788.272000pt;}
.y119{bottom:792.981333pt;}
.yec{bottom:795.474667pt;}
.yb7{bottom:796.125333pt;}
.y53{bottom:796.518667pt;}
.yb6{bottom:797.181333pt;}
.y95{bottom:798.340000pt;}
.yb4{bottom:801.621333pt;}
.yd3{bottom:803.162667pt;}
.y133{bottom:804.868000pt;}
.y102{bottom:808.248000pt;}
.y94{bottom:817.601333pt;}
.y74{bottom:818.152000pt;}
.y2f{bottom:823.137333pt;}
.y118{bottom:824.644000pt;}
.y101{bottom:827.509333pt;}
.y52{bottom:827.993333pt;}
.yd2{bottom:835.708000pt;}
.y73{bottom:837.413333pt;}
.yb3{bottom:840.320000pt;}
.yeb{bottom:841.685333pt;}
.y2e{bottom:842.398667pt;}
.y4{bottom:843.237333pt;}
.y117{bottom:843.904000pt;}
.y51{bottom:847.254667pt;}
.y93{bottom:849.321333pt;}
.y132{bottom:856.674667pt;}
.y100{bottom:857.062667pt;}
.yb2{bottom:859.581333pt;}
.y2d{bottom:861.658667pt;}
.yd1{bottom:865.261333pt;}
.y3{bottom:867.148000pt;}
.y92{bottom:868.581333pt;}
.y72{bottom:869.957333pt;}
.y116{bottom:873.457333pt;}
.yea{bottom:874.229333pt;}
.y50{bottom:876.808000pt;}
.y2c{bottom:880.920000pt;}
.yb1{bottom:888.805333pt;}
.y71{bottom:889.218667pt;}
.yff{bottom:896.754667pt;}
.y91{bottom:898.650667pt;}
.y2b{bottom:900.181333pt;}
.ye9{bottom:903.782667pt;}
.y70{bottom:908.480000pt;}
.yb0{bottom:910.522667pt;}
.yd0{bottom:911.470667pt;}
.y2{bottom:914.465333pt;}
.y90{bottom:917.912000pt;}
.y115{bottom:919.212000pt;}
.y4f{bottom:922.833333pt;}
.ycf{bottom:930.732000pt;}
.y2a{bottom:935.046667pt;}
.y6f{bottom:941.024000pt;}
.y4e{bottom:942.094667pt;}
.yaf{bottom:942.846667pt;}
.y1{bottom:947.673333pt;}
.ye8{bottom:949.993333pt;}
.y8e{bottom:950.225333pt;}
.y114{bottom:950.874667pt;}
.y29{bottom:954.308000pt;}
.y6e{bottom:960.285333pt;}
.y4d{bottom:961.356000pt;}
.y8f{bottom:963.136000pt;}
.yce{bottom:963.277333pt;}
.yae{bottom:972.400000pt;}
.y28{bottom:973.569333pt;}
.y8d{bottom:982.537333pt;}
.y27{bottom:992.830667pt;}
.y26{bottom:1012.090667pt;}
.hc{height:2.550443pt;}
.h5{height:40.785489pt;}
.h4{height:41.018216pt;}
.h7{height:41.076398pt;}
.h6{height:43.636400pt;}
.hd{height:44.951552pt;}
.hb{height:47.820800pt;}
.h9{height:47.884561pt;}
.h3{height:53.176581pt;}
.ha{height:57.461313pt;}
.h15{height:62.275067pt;}
.hf{height:63.126443pt;}
.h8{height:64.454458pt;}
.h11{height:74.744400pt;}
.h2{height:77.360400pt;}
.h12{height:82.138402pt;}
.h16{height:89.285069pt;}
.h13{height:91.089109pt;}
.he{height:91.554133pt;}
.h14{height:111.585109pt;}
.h10{height:148.539776pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.488000pt;}
.x1{left:102.846667pt;}
.x1d{left:105.765333pt;}
.xb{left:113.568000pt;}
.x9{left:117.894667pt;}
.x7{left:133.508000pt;}
.x10{left:151.077333pt;}
.x6{left:155.202667pt;}
.x11{left:167.845333pt;}
.x2{left:220.165333pt;}
.x19{left:260.781333pt;}
.x14{left:270.232000pt;}
.xe{left:295.261333pt;}
.x12{left:306.190667pt;}
.x13{left:307.398667pt;}
.x1a{left:322.145333pt;}
.x15{left:329.772000pt;}
.x3{left:336.917333pt;}
.xd{left:340.004000pt;}
.x4{left:342.913333pt;}
.xc{left:351.874667pt;}
.x1b{left:362.658667pt;}
.x5{left:365.088000pt;}
.xf{left:372.998667pt;}
.x1c{left:389.048000pt;}
.xa{left:392.949333pt;}
.x16{left:395.314667pt;}
.x17{left:432.072000pt;}
.x18{left:477.372000pt;}
}




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