
    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_e2f5a419c3c1294053ac08a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_39fb84d9a5bbff296dfbffe4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_e49438ff04f3f1d69d1e06c4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997559;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_ad2f2e15332257e0943ac79b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_55a7ee3dbf498430c8419fd4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.011230;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_5be63fb591e8f9b5a693496c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.918945;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_bf216c741dbb076e43c3ff7a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_51f8a49731e98477fcba4f71.woff')format("woff");}.ff8{font-family:ff8;line-height:1.119141;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_e3a10d32bd8559863af55b7f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.826678;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_f1185bc8eb5b6a8f37f67254.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_a8721e3640f8aaa2b7e6fd21.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8aad3d247b0460f4da45691c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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_20547afdea66da6a9408bf51.woff')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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;}
.m7{transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249901,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249901,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249901,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249649,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249649,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249649,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250106,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250106,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250106,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);}
.md{transform:matrix(0.216438,-0.125013,0.124960,0.216529,0,0);-ms-transform:matrix(0.216438,-0.125013,0.124960,0.216529,0,0);-webkit-transform:matrix(0.216438,-0.125013,0.124960,0.216529,0,0);}
.m3{transform:matrix(0.216735,-0.124956,0.125131,0.216430,0,0);-ms-transform:matrix(0.216735,-0.124956,0.125131,0.216430,0,0);-webkit-transform:matrix(0.216735,-0.124956,0.125131,0.216430,0,0);}
.ma{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.me{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v1f{vertical-align:-86.519052px;}
.v5{vertical-align:-68.400000px;}
.v9{vertical-align:-66.960000px;}
.v1c{vertical-align:-55.840758px;}
.v17{vertical-align:-53.052951px;}
.vb{vertical-align:-51.840000px;}
.v1b{vertical-align:-47.813160px;}
.v14{vertical-align:-44.640000px;}
.v11{vertical-align:-43.279489px;}
.v1{vertical-align:-42.166051px;}
.vd{vertical-align:-40.720982px;}
.va{vertical-align:-38.160000px;}
.v1e{vertical-align:-29.520000px;}
.v6{vertical-align:-26.640000px;}
.v20{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:1.543846px;}
.v10{vertical-align:3.087692px;}
.v8{vertical-align:12.780000px;}
.v19{vertical-align:28.920000px;}
.v7{vertical-align:32.400000px;}
.v3{vertical-align:39.027101px;}
.v13{vertical-align:40.772003px;}
.v2{vertical-align:42.166014px;}
.v12{vertical-align:43.279455px;}
.ve{vertical-align:44.778203px;}
.v18{vertical-align:46.769551px;}
.vc{vertical-align:48.169421px;}
.v1d{vertical-align:51.290025px;}
.v15{vertical-align:54.000000px;}
.v1a{vertical-align:63.360000px;}
.v4{vertical-align:68.400000px;}
.v16{vertical-align:141.840000px;}
.ls23{letter-spacing:-2.988000px;}
.ls25{letter-spacing:-2.268000px;}
.ls40{letter-spacing:-2.028000px;}
.ls22{letter-spacing:-0.828000px;}
.ls3f{letter-spacing:-0.726000px;}
.ls29{letter-spacing:-0.613395px;}
.ls20{letter-spacing:-0.612000px;}
.ls37{letter-spacing:-0.580452px;}
.ls27{letter-spacing:-0.338079px;}
.ls1d{letter-spacing:-0.324000px;}
.ls3b{letter-spacing:-0.321917px;}
.ls24{letter-spacing:-0.252000px;}
.ls2d{letter-spacing:-0.217854px;}
.ls33{letter-spacing:-0.206178px;}
.ls1b{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.161312px;}
.ls2b{letter-spacing:-0.156720px;}
.ls35{letter-spacing:-0.151788px;}
.ls1e{letter-spacing:-0.108000px;}
.ls30{letter-spacing:-0.095271px;}
.ls1f{letter-spacing:-0.072000px;}
.ls3d{letter-spacing:-0.068400px;}
.ls26{letter-spacing:-0.063600px;}
.ls28{letter-spacing:-0.039917px;}
.ls38{letter-spacing:-0.037773px;}
.ls32{letter-spacing:-0.018215px;}
.ls3a{letter-spacing:-0.006065px;}
.ls3e{letter-spacing:-0.005748px;}
.ls16{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.009303px;}
.ls2f{letter-spacing:0.009614px;}
.ls1c{letter-spacing:0.036000px;}
.ls31{letter-spacing:0.080321px;}
.ls1a{letter-spacing:0.101470px;}
.ls21{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.169117px;}
.ls7{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.223334px;}
.ls2a{letter-spacing:0.235902px;}
.lsc{letter-spacing:0.236336px;}
.ls36{letter-spacing:0.239689px;}
.ls17{letter-spacing:0.244570px;}
.ls2e{letter-spacing:0.250871px;}
.ls11{letter-spacing:0.252136px;}
.ls34{letter-spacing:0.254877px;}
.ls2c{letter-spacing:0.270000px;}
.ls3c{letter-spacing:0.279543px;}
.ls4{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.321000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:4.824000px;}
.ls5{letter-spacing:11.556000px;}
.ls8{letter-spacing:12.276000px;}
.ls13{letter-spacing:16.016574px;}
.lsb{letter-spacing:35.274240px;}
.lsd{letter-spacing:35.454240px;}
.lsf{letter-spacing:37.269751px;}
.ls12{letter-spacing:40.305507px;}
.ls14{letter-spacing:50.417839px;}
.lse{letter-spacing:51.120000px;}
.ls3{letter-spacing:56.448000px;}
.ls1{letter-spacing:56.520000px;}
.ls2{letter-spacing:57.240000px;}
.lsa{letter-spacing:68.400000px;}
.ls9{letter-spacing:743.760000px;}
.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;}
}
.ws26{word-spacing:-115.854508px;}
.ws6{word-spacing:-90.000000px;}
.ws21{word-spacing:-67.770000px;}
.ws16{word-spacing:-67.500000px;}
.ws5{word-spacing:-57.096000px;}
.ws4{word-spacing:-57.060000px;}
.ws1d{word-spacing:-52.969135px;}
.ws19{word-spacing:-52.596000px;}
.ws15{word-spacing:-52.560000px;}
.ws33{word-spacing:-49.409968px;}
.ws3f{word-spacing:-49.403903px;}
.ws35{word-spacing:-49.203789px;}
.ws2b{word-spacing:-45.000000px;}
.ws40{word-spacing:-44.820000px;}
.ws24{word-spacing:-44.546692px;}
.ws2{word-spacing:-43.248879px;}
.ws2e{word-spacing:-42.213160px;}
.ws18{word-spacing:-40.680000px;}
.ws3{word-spacing:-37.980000px;}
.ws44{word-spacing:-35.631240px;}
.ws17{word-spacing:-35.310240px;}
.ws42{word-spacing:-35.241840px;}
.ws38{word-spacing:-34.963907px;}
.ws31{word-spacing:-34.920000px;}
.wse{word-spacing:-33.984000px;}
.wsf{word-spacing:-33.912000px;}
.ws10{word-spacing:-33.840000px;}
.wsd{word-spacing:-33.804000px;}
.wsb{word-spacing:-33.732000px;}
.ws9{word-spacing:-33.696000px;}
.ws13{word-spacing:-33.552000px;}
.ws8{word-spacing:-33.480000px;}
.ws4a{word-spacing:-33.282240px;}
.wsc{word-spacing:-33.192000px;}
.ws11{word-spacing:-32.976000px;}
.ws1f{word-spacing:-32.814503px;}
.ws1a{word-spacing:-32.529806px;}
.ws27{word-spacing:-32.207553px;}
.ws1b{word-spacing:-32.191727px;}
.ws1c{word-spacing:-31.916410px;}
.ws14{word-spacing:-31.536000px;}
.ws12{word-spacing:-30.816000px;}
.ws3d{word-spacing:-30.782751px;}
.ws1e{word-spacing:-30.468024px;}
.ws25{word-spacing:-30.288287px;}
.ws3c{word-spacing:-30.202299px;}
.ws3b{word-spacing:-30.060000px;}
.ws1{word-spacing:-29.527282px;}
.ws2a{word-spacing:-28.533495px;}
.ws3e{word-spacing:-26.941397px;}
.ws2f{word-spacing:-25.296582px;}
.ws43{word-spacing:-23.425932px;}
.wsa{word-spacing:-22.536000px;}
.ws20{word-spacing:-20.538093px;}
.ws34{word-spacing:-17.389267px;}
.ws47{word-spacing:-1.497600px;}
.ws41{word-spacing:-0.462194px;}
.ws4d{word-spacing:0.000000px;}
.ws37{word-spacing:1.159659px;}
.ws4c{word-spacing:1.384305px;}
.ws48{word-spacing:11.347164px;}
.ws45{word-spacing:11.347920px;}
.ws7{word-spacing:11.700000px;}
.ws4b{word-spacing:12.067164px;}
.ws32{word-spacing:15.480000px;}
.ws3a{word-spacing:15.600000px;}
.ws36{word-spacing:31.941771px;}
.ws2c{word-spacing:52.394160px;}
.ws22{word-spacing:172.805550px;}
.ws0{word-spacing:254.138897px;}
.ws2d{word-spacing:317.036894px;}
.ws29{word-spacing:388.103156px;}
.ws28{word-spacing:421.283679px;}
.ws23{word-spacing:573.546590px;}
.ws46{word-spacing:1094.643120px;}
.ws39{word-spacing:1607.552585px;}
.ws30{word-spacing:3328.856976px;}
.ws49{word-spacing:3572.909760px;}
._17{margin-left:-931.443987px;}
._16{margin-left:-826.349720px;}
._28{margin-left:-761.961379px;}
._27{margin-left:-760.955692px;}
._8{margin-left:-25.893600px;}
._13{margin-left:-23.490000px;}
._2b{margin-left:-20.413848px;}
._2a{margin-left:-18.466080px;}
._15{margin-left:-16.608960px;}
._7{margin-left:-15.435600px;}
._14{margin-left:-14.040000px;}
._12{margin-left:-11.880000px;}
._11{margin-left:-10.837680px;}
._f{margin-left:-9.696000px;}
._4{margin-left:-8.640000px;}
._c{margin-left:-6.804000px;}
._e{margin-left:-5.184960px;}
._6{margin-left:-3.508320px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.080000px;}
._2{width:1.440000px;}
._d{width:3.468000px;}
._a{width:10.480320px;}
._9{width:11.916000px;}
._b{width:13.044000px;}
._29{width:16.875335px;}
._0{width:25.200000px;}
._23{width:32.239920px;}
._21{width:33.307200px;}
._1b{width:45.678006px;}
._10{width:51.026880px;}
._25{width:52.432003px;}
._26{width:53.772146px;}
._1e{width:56.066138px;}
._1d{width:73.072973px;}
._18{width:151.854746px;}
._19{width:172.971127px;}
._1a{width:237.838302px;}
._5{width:288.918756px;}
._22{width:378.415440px;}
._24{width:443.567289px;}
._1c{width:476.322189px;}
._20{width:486.546665px;}
._1f{width:659.370147px;}
._2c{width:963.958416px;}
.fc5{color:transparent;}
.fc4{color:rgb(59,49,38);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs42{font-size:55.117326px;}
.fs32{font-size:57.184437px;}
.fs37{font-size:62.876375px;}
.fs24{font-size:64.348357px;}
.fs23{font-size:64.862972px;}
.fsc{font-size:72.000000px;}
.fs1e{font-size:74.441773px;}
.fs3e{font-size:75.090522px;}
.fs1f{font-size:77.213740px;}
.fs14{font-size:79.352235px;}
.fs3c{font-size:79.920000px;}
.fs20{font-size:90.074834px;}
.fs2f{font-size:90.994901px;}
.fs22{font-size:94.714949px;}
.fs21{font-size:94.753337px;}
.fs31{font-size:95.643732px;}
.fs41{font-size:96.911499px;}
.fs2a{font-size:102.638473px;}
.fs10{font-size:103.680000px;}
.fs36{font-size:104.616566px;}
.fs34{font-size:105.492528px;}
.fs3{font-size:106.213246px;}
.fsb{font-size:108.000000px;}
.fs27{font-size:108.950673px;}
.fs1d{font-size:109.142156px;}
.fs18{font-size:109.597207px;}
.fs3d{font-size:110.729320px;}
.fs3f{font-size:110.740569px;}
.fs5{font-size:112.944430px;}
.fs29{font-size:115.854508px;}
.fs15{font-size:116.972071px;}
.fs13{font-size:117.013689px;}
.fs1a{font-size:117.187651px;}
.fs2b{font-size:120.240000px;}
.fs1{font-size:121.270212px;}
.fs25{font-size:124.394808px;}
.fs35{font-size:125.735988px;}
.fs2d{font-size:129.941403px;}
.fs3a{font-size:131.760000px;}
.fs39{font-size:138.298692px;}
.fs38{font-size:138.354850px;}
.fs12{font-size:139.680000px;}
.fs40{font-size:142.509459px;}
.fs3b{font-size:149.760000px;}
.fs1c{font-size:150.894919px;}
.fs1b{font-size:150.956192px;}
.fs30{font-size:151.784515px;}
.fs2e{font-size:151.845899px;}
.fs7{font-size:151.920000px;}
.fs8{font-size:152.064000px;}
.fs4{font-size:156.151768px;}
.fs2{font-size:156.213813px;}
.fsf{font-size:156.240000px;}
.fs33{font-size:157.859322px;}
.fs28{font-size:160.175107px;}
.fs26{font-size:160.239900px;}
.fs2c{font-size:167.760000px;}
.fsd{font-size:180.000000px;}
.fs43{font-size:180.144000px;}
.fs19{font-size:190.033834px;}
.fs17{font-size:190.536458px;}
.fs16{font-size:191.541707px;}
.fsa{font-size:210.240000px;}
.fs11{font-size:210.384000px;}
.fs6{font-size:228.240000px;}
.fs9{font-size:228.384000px;}
.fse{font-size:270.000000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:5.134887px;}
.y91{bottom:8.952688px;}
.y7f{bottom:10.297185px;}
.y4b{bottom:10.674317px;}
.y6c{bottom:10.930528px;}
.yc{bottom:11.306151px;}
.y82{bottom:12.456300px;}
.ya5{bottom:21.993112px;}
.yb7{bottom:39.323079px;}
.y36{bottom:39.906691px;}
.y5a{bottom:41.548891px;}
.y13{bottom:42.279359px;}
.y89{bottom:55.603800px;}
.y99{bottom:61.221182px;}
.y73{bottom:64.741086px;}
.y44{bottom:65.118218px;}
.y4{bottom:67.651311px;}
.y64{bottom:68.722787px;}
.yc4{bottom:76.428000px;}
.y37{bottom:89.983503px;}
.y9a{bottom:91.150839px;}
.y38{bottom:91.614737px;}
.y74{bottom:93.539345px;}
.y39{bottom:94.877207px;}
.y8a{bottom:96.148237px;}
.y5{bottom:97.448503px;}
.ye{bottom:97.708684px;}
.y65{bottom:99.292178px;}
.yb5{bottom:103.963322px;}
.yb6{bottom:105.745245px;}
.yc3{bottom:130.428000px;}
.y42{bottom:133.033458px;}
.y4f{bottom:141.571364px;}
.y75{bottom:142.954184px;}
.y45{bottom:143.331316px;}
.y3a{bottom:154.371261px;}
.y21{bottom:157.320000px;}
.yb8{bottom:163.370652px;}
.y12{bottom:164.716048px;}
.y7e{bottom:179.540230px;}
.y9b{bottom:180.043074px;}
.y6{bottom:180.981676px;}
.yc2{bottom:184.425000px;}
.yb{bottom:186.315380px;}
.y8b{bottom:188.013595px;}
.y20{bottom:189.720000px;}
.y76{bottom:192.369022px;}
.y66{bottom:193.651376px;}
.y90{bottom:200.881717px;}
.y6b{bottom:201.664581px;}
.ya4{bottom:208.837143px;}
.y14{bottom:212.730223px;}
.y3b{bottom:217.748909px;}
.ybf{bottom:218.501367px;}
.y50{bottom:220.909574px;}
.y1f{bottom:222.120000px;}
.yb9{bottom:228.008915px;}
.y81{bottom:235.725000px;}
.y60{bottom:239.332714px;}
.y77{bottom:241.783860px;}
.y46{bottom:242.035282px;}
.y17{bottom:249.296449px;}
.yf{bottom:251.117713px;}
.y22{bottom:256.290000px;}
.y7{bottom:264.647108px;}
.y9c{bottom:268.941593px;}
.y8c{bottom:279.885449px;}
.y3c{bottom:281.126557px;}
.y54{bottom:286.289690px;}
.y67{bottom:288.017243px;}
.y80{bottom:289.725000px;}
.y78{bottom:291.198699px;}
.yba{bottom:292.643219px;}
.y4a{bottom:294.090048px;}
.y51{bottom:300.249880px;}
.yb4{bottom:323.227865px;}
.y15{bottom:327.756099px;}
.y79{bottom:340.487826px;}
.y47{bottom:340.739248px;}
.y3d{bottom:344.508388px;}
.yd{bottom:345.731163px;}
.y8{bottom:348.186786px;}
.y3{bottom:357.206163px;}
.ybb{bottom:357.283462px;}
.y9d{bottom:357.710212px;}
.y8d{bottom:371.882888px;}
.ya3{bottom:378.708114px;}
.y52{bottom:379.588090px;}
.y68{bottom:382.512105px;}
.y7a{bottom:389.902665px;}
.y71{bottom:392.658147px;}
.y10{bottom:404.396653px;}
.y3e{bottom:408.011515px;}
.ya2{bottom:414.420470px;}
.ybc{bottom:421.917766px;}
.y70{bottom:431.629939px;}
.y9{bottom:431.719960px;}
.y7b{bottom:439.317503px;}
.y48{bottom:439.568925px;}
.y16{bottom:442.777638px;}
.y9e{bottom:446.608732px;}
.ya1{bottom:450.128636px;}
.y53{bottom:458.928395px;}
.y8e{bottom:463.754742px;}
.y6f{bottom:467.136681px;}
.y3f{bottom:471.389163px;}
.y56{bottom:476.406393px;}
.y69{bottom:476.877973px;}
.y4d{bottom:480.806272px;}
.ya0{bottom:485.840992px;}
.ybd{bottom:486.556029px;}
.y7c{bottom:488.732341px;}
.y93{bottom:494.029366px;}
.y6e{bottom:502.636751px;}
.y55{bottom:513.501568px;}
.ya{bottom:515.385392px;}
.y4c{bottom:517.901448px;}
.y92{bottom:526.778878px;}
.y40{bottom:534.773085px;}
.y9f{bottom:535.507252px;}
.y6d{bottom:538.139046px;}
.y7d{bottom:538.147180px;}
.y49{bottom:538.272891px;}
.y62{bottom:538.645815px;}
.ybe{bottom:551.190333px;}
.yca{bottom:554.685000px;}
.y8f{bottom:555.626597px;}
.y5f{bottom:556.792452px;}
.y11{bottom:557.805682px;}
.y6a{bottom:571.243841px;}
.y5c{bottom:582.270134px;}
.y5e{bottom:584.200006px;}
.y41{bottom:598.150733px;}
.yc9{bottom:599.685000px;}
.y5b{bottom:609.679832px;}
.y5d{bottom:611.609704px;}
.yc8{bottom:644.685000px;}
.yc7{bottom:689.685000px;}
.yc6{bottom:734.685000px;}
.yc5{bottom:779.685000px;}
.ya6{bottom:944.205000px;}
.ycf{bottom:1015.305000px;}
.y97{bottom:1050.090000px;}
.yce{bottom:1058.685000px;}
.y96{bottom:1093.470000px;}
.yc1{bottom:1113.735000px;}
.y95{bottom:1138.470000px;}
.yc0{bottom:1158.735000px;}
.y43{bottom:1188.903120px;}
.y4e{bottom:1196.733120px;}
.y72{bottom:1197.393120px;}
.y63{bottom:1198.908158px;}
.y35{bottom:1735.363799px;}
.y59{bottom:1765.773682px;}
.y88{bottom:1791.848445px;}
.y98{bottom:1812.183120px;}
.yb0{bottom:1899.645000px;}
.yaf{bottom:1935.825000px;}
.yae{bottom:1971.825000px;}
.yad{bottom:2009.805000px;}
.yac{bottom:2122.305000px;}
.yab{bottom:2169.330000px;}
.yaa{bottom:2205.330000px;}
.ya9{bottom:2251.980000px;}
.ya8{bottom:2291.580000px;}
.ya7{bottom:2331.180000px;}
.y94{bottom:2411.250000px;}
.y58{bottom:2507.325000px;}
.y1d{bottom:2573.745000px;}
.y57{bottom:2588.325000px;}
.ycc{bottom:2729.265000px;}
.ycd{bottom:2730.210000px;}
.y34{bottom:2732.865000px;}
.y32{bottom:2737.950000px;}
.y2f{bottom:2776.170000px;}
.y33{bottom:2795.865000px;}
.y31{bottom:2800.950000px;}
.y85{bottom:2825.745000px;}
.y84{bottom:2872.545000px;}
.y83{bottom:2883.885000px;}
.y2d{bottom:2889.645000px;}
.y2e{bottom:2934.870000px;}
.y30{bottom:2979.690000px;}
.y2b{bottom:3111.195000px;}
.ycb{bottom:3172.935000px;}
.y87{bottom:3360.960000px;}
.y86{bottom:3407.760000px;}
.y29{bottom:3499.890000px;}
.y2c{bottom:3502.005000px;}
.y1e{bottom:3532.575000px;}
.y1c{bottom:3575.595000px;}
.y28{bottom:3580.890000px;}
.y2a{bottom:3587.040000px;}
.yb3{bottom:3768.630000px;}
.yb2{bottom:3837.030000px;}
.yb1{bottom:3905.430000px;}
.y27{bottom:3971.055000px;}
.y1b{bottom:4029.045000px;}
.y26{bottom:4039.455000px;}
.y23{bottom:4176.150000px;}
.y1a{bottom:4270.395000px;}
.y19{bottom:4346.535000px;}
.y18{bottom:4405.575000px;}
.y2{bottom:4482.150000px;}
.y1{bottom:4590.150000px;}
.y25{bottom:4669.635000px;}
.y24{bottom:4723.635000px;}
.h29{height:52.182037px;}
.h25{height:56.439926px;}
.h26{height:65.840833px;}
.h28{height:69.232558px;}
.h27{height:69.260618px;}
.h22{height:79.778227px;}
.h49{height:80.938375px;}
.h4a{height:80.946597px;}
.h7{height:82.557526px;}
.hf{height:82.582031px;}
.h2e{height:84.684667px;}
.h1c{height:85.501557px;}
.h18{height:85.531979px;}
.h1f{height:85.659137px;}
.he{height:87.454688px;}
.h44{height:87.772852px;}
.h37{height:88.568917px;}
.h38{height:88.594901px;}
.h4{height:88.643314px;}
.h2b{height:90.927260px;}
.h3c{height:91.907605px;}
.h34{height:94.981582px;}
.h45{height:96.182227px;}
.h3d{height:97.249953px;}
.h3e{height:97.266715px;}
.h3f{height:97.275096px;}
.h23{height:99.191940px;}
.h48{height:100.594141px;}
.h41{height:101.090401px;}
.h40{height:101.131451px;}
.h4b{height:104.168291px;}
.h19{height:106.172495px;}
.h1b{height:106.289565px;}
.h1a{height:106.293806px;}
.h46{height:109.321875px;}
.h21{height:110.297702px;}
.h20{height:110.342490px;}
.ha{height:110.898633px;}
.h36{height:110.947959px;}
.h35{height:110.992828px;}
.hb{height:111.003750px;}
.h6{height:114.140232px;}
.h5{height:114.185585px;}
.h2d{height:117.081121px;}
.h2c{height:117.128482px;}
.h3b{height:120.706884px;}
.h43{height:125.455078px;}
.h31{height:128.277422px;}
.h3a{height:128.477857px;}
.h2f{height:131.396484px;}
.h4c{height:131.501602px;}
.h1d{height:140.008757px;}
.h30{height:141.772852px;}
.h14{height:148.763672px;}
.h4d{height:152.363672px;}
.hd{height:152.649844px;}
.h16{height:152.754398px;}
.h8{height:153.167333px;}
.h11{height:161.894531px;}
.h42{height:164.778047px;}
.h10{height:166.251094px;}
.h12{height:166.610742px;}
.h15{height:171.386719px;}
.h9{height:179.298633px;}
.h13{height:192.617143px;}
.h39{height:193.698047px;}
.h2{height:257.400000px;}
.hc{height:262.792969px;}
.h32{height:290.603672px;}
.h1e{height:618.986118px;}
.h47{height:621.172135px;}
.h24{height:633.477198px;}
.h33{height:639.688967px;}
.h3{height:640.548837px;}
.h17{height:655.379881px;}
.h2a{height:657.054465px;}
.h1{height:5054.250000px;}
.h0{height:5054.400000px;}
.wc{width:709.849822px;}
.w5{width:770.269577px;}
.wb{width:809.026259px;}
.w7{width:809.026277px;}
.w6{width:809.026338px;}
.w8{width:827.965601px;}
.wa{width:836.083967px;}
.w3{width:837.203739px;}
.w4{width:837.203741px;}
.w9{width:858.780935px;}
.w1{width:3574.500000px;}
.w2{width:3574.799947px;}
.w0{width:3574.800000px;}
.x0{left:0.000000px;}
.x51{left:29.591947px;}
.x14{left:40.571947px;}
.x5d{left:42.303079px;}
.x36{left:43.643611px;}
.x3b{left:53.585054px;}
.x11{left:57.563947px;}
.x21{left:59.003947px;}
.x8{left:62.479076px;}
.x15{left:66.023947px;}
.x73{left:68.291947px;}
.x35{left:69.934155px;}
.x70{left:71.262652px;}
.x58{left:75.522248px;}
.x4d{left:77.102554px;}
.x47{left:81.844312px;}
.x7{left:83.562042px;}
.x32{left:84.706902px;}
.xd{left:89.683082px;}
.x5f{left:95.090665px;}
.x4c{left:97.480170px;}
.x6{left:100.484886px;}
.xc{left:103.219999px;}
.x6f{left:105.940060px;}
.x2a{left:106.948035px;}
.x42{left:111.860527px;}
.x2{left:113.039947px;}
.x31{left:114.870619px;}
.x5{left:117.405529px;}
.xb{left:118.965055px;}
.x46{left:120.831893px;}
.x3f{left:126.796906px;}
.x30{left:131.205914px;}
.x5c{left:144.143947px;}
.x12{left:145.871947px;}
.x2f{left:147.547491px;}
.x69{left:177.449947px;}
.x39{left:178.710061px;}
.x4{left:185.610800px;}
.x41{left:198.368006px;}
.x4b{left:205.652199px;}
.x38{left:215.461576px;}
.x5a{left:223.187428px;}
.x1f{left:224.999947px;}
.x45{left:229.780348px;}
.x49{left:233.925288px;}
.x6a{left:235.589947px;}
.x1e{left:247.829947px;}
.x37{left:253.829500px;}
.x1{left:261.719947px;}
.x48{left:269.573345px;}
.x43{left:271.355036px;}
.x59{left:288.442306px;}
.x2b{left:308.412375px;}
.x6c{left:314.253869px;}
.x4e{left:321.122591px;}
.x22{left:326.729947px;}
.x6d{left:329.338404px;}
.x9{left:335.430308px;}
.x20{left:350.609947px;}
.x16{left:377.894947px;}
.xe{left:403.895853px;}
.x6b{left:413.249947px;}
.x2c{left:421.643136px;}
.x19{left:480.629947px;}
.x40{left:527.003690px;}
.x2d{left:531.864435px;}
.x3c{left:541.409947px;}
.x1a{left:552.809947px;}
.x6e{left:574.823256px;}
.x34{left:593.061719px;}
.x23{left:624.134947px;}
.x1b{left:628.124947px;}
.x50{left:631.544947px;}
.x2e{left:647.736068px;}
.x5e{left:670.289931px;}
.x3a{left:671.924851px;}
.x24{left:684.434947px;}
.x1c{left:712.364947px;}
.x5b{left:727.274947px;}
.xf{left:730.730186px;}
.x4f{left:732.344947px;}
.x65{left:740.054947px;}
.x68{left:764.024947px;}
.x61{left:769.499947px;}
.x55{left:787.964947px;}
.x64{left:792.254947px;}
.x52{left:796.784947px;}
.x63{left:797.939947px;}
.x67{left:818.024947px;}
.x62{left:822.599947px;}
.x10{left:826.401890px;}
.x3{left:842.490003px;}
.x66{left:853.379947px;}
.x33{left:900.285000px;}
.x56{left:935.969947px;}
.x74{left:1055.264947px;}
.x3d{left:1092.779947px;}
.x25{left:1098.719947px;}
.x26{left:1100.339947px;}
.x29{left:1113.165000px;}
.x53{left:1295.924947px;}
.x54{left:1360.904947px;}
.x60{left:1401.299947px;}
.xa{left:1618.320000px;}
.x28{left:1715.909947px;}
.x27{left:1738.409947px;}
.x7e{left:1866.854947px;}
.x44{left:1890.405000px;}
.x71{left:1900.829947px;}
.x57{left:1907.100000px;}
.x13{left:2003.069947px;}
.x7c{left:2072.189947px;}
.x72{left:2077.229947px;}
.x7b{left:2082.779947px;}
.x7f{left:2246.474947px;}
.x1d{left:2259.359947px;}
.x76{left:2451.884947px;}
.x75{left:2474.744947px;}
.x79{left:2481.944947px;}
.x78{left:2519.249947px;}
.x3e{left:2642.760000px;}
.x7d{left:2648.729947px;}
.x4a{left:2673.240000px;}
.x17{left:2676.029947px;}
.x7a{left:2734.529947px;}
.x18{left:2776.469947px;}
.x77{left:2818.229947px;}
@media print{
.v1f{vertical-align:-76.905824pt;}
.v5{vertical-align:-60.800000pt;}
.v9{vertical-align:-59.520000pt;}
.v1c{vertical-align:-49.636229pt;}
.v17{vertical-align:-47.158178pt;}
.vb{vertical-align:-46.080000pt;}
.v1b{vertical-align:-42.500587pt;}
.v14{vertical-align:-39.680000pt;}
.v11{vertical-align:-38.470657pt;}
.v1{vertical-align:-37.480934pt;}
.vd{vertical-align:-36.196428pt;}
.va{vertical-align:-33.920000pt;}
.v1e{vertical-align:-26.240000pt;}
.v6{vertical-align:-23.680000pt;}
.v20{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.372308pt;}
.v10{vertical-align:2.744615pt;}
.v8{vertical-align:11.360000pt;}
.v19{vertical-align:25.706667pt;}
.v7{vertical-align:28.800000pt;}
.v3{vertical-align:34.690756pt;}
.v13{vertical-align:36.241781pt;}
.v2{vertical-align:37.480901pt;}
.v12{vertical-align:38.470627pt;}
.ve{vertical-align:39.802847pt;}
.v18{vertical-align:41.572934pt;}
.vc{vertical-align:42.817263pt;}
.v1d{vertical-align:45.591133pt;}
.v15{vertical-align:48.000000pt;}
.v1a{vertical-align:56.320000pt;}
.v4{vertical-align:60.800000pt;}
.v16{vertical-align:126.080000pt;}
.ls23{letter-spacing:-2.656000pt;}
.ls25{letter-spacing:-2.016000pt;}
.ls40{letter-spacing:-1.802667pt;}
.ls22{letter-spacing:-0.736000pt;}
.ls3f{letter-spacing:-0.645333pt;}
.ls29{letter-spacing:-0.545240pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls37{letter-spacing:-0.515957pt;}
.ls27{letter-spacing:-0.300514pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls3b{letter-spacing:-0.286148pt;}
.ls24{letter-spacing:-0.224000pt;}
.ls2d{letter-spacing:-0.193648pt;}
.ls33{letter-spacing:-0.183270pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.143388pt;}
.ls2b{letter-spacing:-0.139306pt;}
.ls35{letter-spacing:-0.134922pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls30{letter-spacing:-0.084686pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls3d{letter-spacing:-0.060800pt;}
.ls26{letter-spacing:-0.056533pt;}
.ls28{letter-spacing:-0.035482pt;}
.ls38{letter-spacing:-0.033576pt;}
.ls32{letter-spacing:-0.016191pt;}
.ls3a{letter-spacing:-0.005391pt;}
.ls3e{letter-spacing:-0.005109pt;}
.ls16{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.008269pt;}
.ls2f{letter-spacing:0.008546pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls31{letter-spacing:0.071396pt;}
.ls1a{letter-spacing:0.090196pt;}
.ls21{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.150327pt;}
.ls7{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.198519pt;}
.ls2a{letter-spacing:0.209690pt;}
.lsc{letter-spacing:0.210077pt;}
.ls36{letter-spacing:0.213057pt;}
.ls17{letter-spacing:0.217395pt;}
.ls2e{letter-spacing:0.222997pt;}
.ls11{letter-spacing:0.224121pt;}
.ls34{letter-spacing:0.226557pt;}
.ls2c{letter-spacing:0.240000pt;}
.ls3c{letter-spacing:0.248482pt;}
.ls4{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.285333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:4.288000pt;}
.ls5{letter-spacing:10.272000pt;}
.ls8{letter-spacing:10.912000pt;}
.ls13{letter-spacing:14.236954pt;}
.lsb{letter-spacing:31.354880pt;}
.lsd{letter-spacing:31.514880pt;}
.lsf{letter-spacing:33.128668pt;}
.ls12{letter-spacing:35.827118pt;}
.ls14{letter-spacing:44.815857pt;}
.lse{letter-spacing:45.440000pt;}
.ls3{letter-spacing:50.176000pt;}
.ls1{letter-spacing:50.240000pt;}
.ls2{letter-spacing:50.880000pt;}
.lsa{letter-spacing:60.800000pt;}
.ls9{letter-spacing:661.120000pt;}
.ws26{word-spacing:-102.981785pt;}
.ws6{word-spacing:-80.000000pt;}
.ws21{word-spacing:-60.240000pt;}
.ws16{word-spacing:-60.000000pt;}
.ws5{word-spacing:-50.752000pt;}
.ws4{word-spacing:-50.720000pt;}
.ws1d{word-spacing:-47.083676pt;}
.ws19{word-spacing:-46.752000pt;}
.ws15{word-spacing:-46.720000pt;}
.ws33{word-spacing:-43.919971pt;}
.ws3f{word-spacing:-43.914580pt;}
.ws35{word-spacing:-43.736702pt;}
.ws2b{word-spacing:-40.000000pt;}
.ws40{word-spacing:-39.840000pt;}
.ws24{word-spacing:-39.597060pt;}
.ws2{word-spacing:-38.443448pt;}
.ws2e{word-spacing:-37.522809pt;}
.ws18{word-spacing:-36.160000pt;}
.ws3{word-spacing:-33.760000pt;}
.ws44{word-spacing:-31.672213pt;}
.ws17{word-spacing:-31.386880pt;}
.ws42{word-spacing:-31.326080pt;}
.ws38{word-spacing:-31.079029pt;}
.ws31{word-spacing:-31.040000pt;}
.wse{word-spacing:-30.208000pt;}
.wsf{word-spacing:-30.144000pt;}
.ws10{word-spacing:-30.080000pt;}
.wsd{word-spacing:-30.048000pt;}
.wsb{word-spacing:-29.984000pt;}
.ws9{word-spacing:-29.952000pt;}
.ws13{word-spacing:-29.824000pt;}
.ws8{word-spacing:-29.760000pt;}
.ws4a{word-spacing:-29.584213pt;}
.wsc{word-spacing:-29.504000pt;}
.ws11{word-spacing:-29.312000pt;}
.ws1f{word-spacing:-29.168447pt;}
.ws1a{word-spacing:-28.915383pt;}
.ws27{word-spacing:-28.628936pt;}
.ws1b{word-spacing:-28.614868pt;}
.ws1c{word-spacing:-28.370143pt;}
.ws14{word-spacing:-28.032000pt;}
.ws12{word-spacing:-27.392000pt;}
.ws3d{word-spacing:-27.362445pt;}
.ws1e{word-spacing:-27.082688pt;}
.ws25{word-spacing:-26.922922pt;}
.ws3c{word-spacing:-26.846488pt;}
.ws3b{word-spacing:-26.720000pt;}
.ws1{word-spacing:-26.246473pt;}
.ws2a{word-spacing:-25.363107pt;}
.ws3e{word-spacing:-23.947908pt;}
.ws2f{word-spacing:-22.485851pt;}
.ws43{word-spacing:-20.823051pt;}
.wsa{word-spacing:-20.032000pt;}
.ws20{word-spacing:-18.256083pt;}
.ws34{word-spacing:-15.457126pt;}
.ws47{word-spacing:-1.331200pt;}
.ws41{word-spacing:-0.410839pt;}
.ws4d{word-spacing:0.000000pt;}
.ws37{word-spacing:1.030808pt;}
.ws4c{word-spacing:1.230493pt;}
.ws48{word-spacing:10.086368pt;}
.ws45{word-spacing:10.087040pt;}
.ws7{word-spacing:10.400000pt;}
.ws4b{word-spacing:10.726368pt;}
.ws32{word-spacing:13.760000pt;}
.ws3a{word-spacing:13.866667pt;}
.ws36{word-spacing:28.392686pt;}
.ws2c{word-spacing:46.572587pt;}
.ws22{word-spacing:153.604933pt;}
.ws0{word-spacing:225.901241pt;}
.ws2d{word-spacing:281.810573pt;}
.ws29{word-spacing:344.980583pt;}
.ws28{word-spacing:374.474381pt;}
.ws23{word-spacing:509.819191pt;}
.ws46{word-spacing:973.016107pt;}
.ws39{word-spacing:1428.935631pt;}
.ws30{word-spacing:2958.983979pt;}
.ws49{word-spacing:3175.919787pt;}
._17{margin-left:-827.950211pt;}
._16{margin-left:-734.533084pt;}
._28{margin-left:-677.299003pt;}
._27{margin-left:-676.405059pt;}
._8{margin-left:-23.016533pt;}
._13{margin-left:-20.880000pt;}
._2b{margin-left:-18.145643pt;}
._2a{margin-left:-16.414293pt;}
._15{margin-left:-14.763520pt;}
._7{margin-left:-13.720533pt;}
._14{margin-left:-12.480000pt;}
._12{margin-left:-10.560000pt;}
._11{margin-left:-9.633493pt;}
._f{margin-left:-8.618667pt;}
._4{margin-left:-7.680000pt;}
._c{margin-left:-6.048000pt;}
._e{margin-left:-4.608853pt;}
._6{margin-left:-3.118507pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.280000pt;}
._d{width:3.082667pt;}
._a{width:9.315840pt;}
._9{width:10.592000pt;}
._b{width:11.594667pt;}
._29{width:15.000298pt;}
._0{width:22.400000pt;}
._23{width:28.657707pt;}
._21{width:29.606400pt;}
._1b{width:40.602672pt;}
._10{width:45.357227pt;}
._25{width:46.606225pt;}
._26{width:47.797463pt;}
._1e{width:49.836567pt;}
._1d{width:64.953754pt;}
._18{width:134.981996pt;}
._19{width:153.752113pt;}
._1a{width:211.411824pt;}
._5{width:256.816672pt;}
._22{width:336.369280pt;}
._24{width:394.282035pt;}
._1c{width:423.397501pt;}
._20{width:432.485925pt;}
._1f{width:586.106798pt;}
._2c{width:856.851925pt;}
.fs42{font-size:48.993179pt;}
.fs32{font-size:50.830611pt;}
.fs37{font-size:55.890111pt;}
.fs24{font-size:57.198539pt;}
.fs23{font-size:57.655975pt;}
.fsc{font-size:64.000000pt;}
.fs1e{font-size:66.170465pt;}
.fs3e{font-size:66.747131pt;}
.fs1f{font-size:68.634435pt;}
.fs14{font-size:70.535320pt;}
.fs3c{font-size:71.040000pt;}
.fs20{font-size:80.066519pt;}
.fs2f{font-size:80.884356pt;}
.fs22{font-size:84.191066pt;}
.fs21{font-size:84.225188pt;}
.fs31{font-size:85.016651pt;}
.fs41{font-size:86.143554pt;}
.fs2a{font-size:91.234198pt;}
.fs10{font-size:92.160000pt;}
.fs36{font-size:92.992503pt;}
.fs34{font-size:93.771136pt;}
.fs3{font-size:94.411774pt;}
.fsb{font-size:96.000000pt;}
.fs27{font-size:96.845042pt;}
.fs1d{font-size:97.015250pt;}
.fs18{font-size:97.419740pt;}
.fs3d{font-size:98.426062pt;}
.fs3f{font-size:98.436061pt;}
.fs5{font-size:100.395049pt;}
.fs29{font-size:102.981785pt;}
.fs15{font-size:103.975174pt;}
.fs13{font-size:104.012168pt;}
.fs1a{font-size:104.166801pt;}
.fs2b{font-size:106.880000pt;}
.fs1{font-size:107.795744pt;}
.fs25{font-size:110.573163pt;}
.fs35{font-size:111.765323pt;}
.fs2d{font-size:115.503469pt;}
.fs3a{font-size:117.120000pt;}
.fs39{font-size:122.932171pt;}
.fs38{font-size:122.982089pt;}
.fs12{font-size:124.160000pt;}
.fs40{font-size:126.675075pt;}
.fs3b{font-size:133.120000pt;}
.fs1c{font-size:134.128817pt;}
.fs1b{font-size:134.183282pt;}
.fs30{font-size:134.919569pt;}
.fs2e{font-size:134.974133pt;}
.fs7{font-size:135.040000pt;}
.fs8{font-size:135.168000pt;}
.fs4{font-size:138.801571pt;}
.fs2{font-size:138.856722pt;}
.fsf{font-size:138.880000pt;}
.fs33{font-size:140.319398pt;}
.fs28{font-size:142.377873pt;}
.fs26{font-size:142.435467pt;}
.fs2c{font-size:149.120000pt;}
.fsd{font-size:160.000000pt;}
.fs43{font-size:160.128000pt;}
.fs19{font-size:168.918964pt;}
.fs17{font-size:169.365741pt;}
.fs16{font-size:170.259295pt;}
.fsa{font-size:186.880000pt;}
.fs11{font-size:187.008000pt;}
.fs6{font-size:202.880000pt;}
.fs9{font-size:203.008000pt;}
.fse{font-size:240.000000pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:4.564344pt;}
.y91{bottom:7.957945pt;}
.y7f{bottom:9.153053pt;}
.y4b{bottom:9.488282pt;}
.y6c{bottom:9.716025pt;}
.yc{bottom:10.049912pt;}
.y82{bottom:11.072267pt;}
.ya5{bottom:19.549433pt;}
.yb7{bottom:34.953848pt;}
.y36{bottom:35.472614pt;}
.y5a{bottom:36.932348pt;}
.y13{bottom:37.581653pt;}
.y89{bottom:49.425600pt;}
.y99{bottom:54.418828pt;}
.y73{bottom:57.547632pt;}
.y44{bottom:57.882861pt;}
.y4{bottom:60.134499pt;}
.y64{bottom:61.086921pt;}
.yc4{bottom:67.936000pt;}
.y37{bottom:79.985336pt;}
.y9a{bottom:81.022968pt;}
.y38{bottom:81.435322pt;}
.y74{bottom:83.146085pt;}
.y39{bottom:84.335295pt;}
.y8a{bottom:85.465099pt;}
.y5{bottom:86.620892pt;}
.ye{bottom:86.852163pt;}
.y65{bottom:88.259714pt;}
.yb5{bottom:92.411842pt;}
.yb6{bottom:93.995773pt;}
.yc3{bottom:115.936000pt;}
.y42{bottom:118.251962pt;}
.y4f{bottom:125.841213pt;}
.y75{bottom:127.070385pt;}
.y45{bottom:127.405614pt;}
.y3a{bottom:137.218899pt;}
.y21{bottom:139.840000pt;}
.yb8{bottom:145.218357pt;}
.y12{bottom:146.414265pt;}
.y7e{bottom:159.591316pt;}
.y9b{bottom:160.038288pt;}
.y6{bottom:160.872601pt;}
.yc2{bottom:163.933333pt;}
.yb{bottom:165.613671pt;}
.y8b{bottom:167.123196pt;}
.y20{bottom:168.640000pt;}
.y76{bottom:170.994686pt;}
.y66{bottom:172.134556pt;}
.y90{bottom:178.561527pt;}
.y6b{bottom:179.257405pt;}
.ya4{bottom:185.633016pt;}
.y14{bottom:189.093532pt;}
.y3b{bottom:193.554586pt;}
.ybf{bottom:194.223437pt;}
.y50{bottom:196.364066pt;}
.y1f{bottom:197.440000pt;}
.yb9{bottom:202.674591pt;}
.y81{bottom:209.533333pt;}
.y60{bottom:212.740190pt;}
.y77{bottom:214.918987pt;}
.y46{bottom:215.142473pt;}
.y17{bottom:221.596843pt;}
.yf{bottom:223.215745pt;}
.y22{bottom:227.813333pt;}
.y7{bottom:235.241874pt;}
.y9c{bottom:239.059194pt;}
.y8c{bottom:248.787066pt;}
.y3c{bottom:249.890273pt;}
.y54{bottom:254.479725pt;}
.y67{bottom:256.015327pt;}
.y80{bottom:257.533333pt;}
.y78{bottom:258.843288pt;}
.yba{bottom:260.127306pt;}
.y4a{bottom:261.413376pt;}
.y51{bottom:266.888782pt;}
.yb4{bottom:287.313657pt;}
.y15{bottom:291.338755pt;}
.y79{bottom:302.655846pt;}
.y47{bottom:302.879331pt;}
.y3d{bottom:306.229678pt;}
.yd{bottom:307.316589pt;}
.y8{bottom:309.499366pt;}
.y3{bottom:317.516589pt;}
.ybb{bottom:317.585300pt;}
.y9d{bottom:317.964633pt;}
.y8d{bottom:330.562567pt;}
.ya3{bottom:336.629434pt;}
.y52{bottom:337.411635pt;}
.y68{bottom:340.010760pt;}
.y7a{bottom:346.580146pt;}
.y71{bottom:349.029464pt;}
.y10{bottom:359.463691pt;}
.y3e{bottom:362.676902pt;}
.ya2{bottom:368.373751pt;}
.ybc{bottom:375.038014pt;}
.y70{bottom:383.671057pt;}
.y9{bottom:383.751075pt;}
.y7b{bottom:390.504447pt;}
.y48{bottom:390.727933pt;}
.y16{bottom:393.580123pt;}
.y9e{bottom:396.985540pt;}
.ya1{bottom:400.114343pt;}
.y53{bottom:407.936351pt;}
.y8e{bottom:412.226438pt;}
.y6f{bottom:415.232605pt;}
.y3f{bottom:419.012589pt;}
.y56{bottom:423.472349pt;}
.y69{bottom:423.891532pt;}
.y4d{bottom:427.383353pt;}
.ya0{bottom:431.858659pt;}
.ybd{bottom:432.494248pt;}
.y7c{bottom:434.428748pt;}
.y93{bottom:439.137214pt;}
.y6e{bottom:446.788223pt;}
.y55{bottom:456.445839pt;}
.ya{bottom:458.120348pt;}
.y4c{bottom:460.356843pt;}
.y92{bottom:468.247891pt;}
.y40{bottom:475.353853pt;}
.y9f{bottom:476.006446pt;}
.y6d{bottom:478.345818pt;}
.y7d{bottom:478.353049pt;}
.y49{bottom:478.464792pt;}
.y62{bottom:478.796280pt;}
.ybe{bottom:489.946962pt;}
.yca{bottom:493.053333pt;}
.y8f{bottom:493.890308pt;}
.y5f{bottom:494.926624pt;}
.y11{bottom:495.827273pt;}
.y6a{bottom:507.772303pt;}
.y5c{bottom:517.573453pt;}
.y5e{bottom:519.288894pt;}
.y41{bottom:531.689540pt;}
.yc9{bottom:533.053333pt;}
.y5b{bottom:541.937629pt;}
.y5d{bottom:543.653070pt;}
.yc8{bottom:573.053333pt;}
.yc7{bottom:613.053333pt;}
.yc6{bottom:653.053333pt;}
.yc5{bottom:693.053333pt;}
.ya6{bottom:839.293333pt;}
.ycf{bottom:902.493333pt;}
.y97{bottom:933.413333pt;}
.yce{bottom:941.053333pt;}
.y96{bottom:971.973333pt;}
.yc1{bottom:989.986667pt;}
.y95{bottom:1011.973333pt;}
.yc0{bottom:1029.986667pt;}
.y43{bottom:1056.802774pt;}
.y4e{bottom:1063.762774pt;}
.y72{bottom:1064.349440pt;}
.y63{bottom:1065.696141pt;}
.y35{bottom:1542.545599pt;}
.y59{bottom:1569.576606pt;}
.y88{bottom:1592.754174pt;}
.y98{bottom:1610.829440pt;}
.yb0{bottom:1688.573333pt;}
.yaf{bottom:1720.733333pt;}
.yae{bottom:1752.733333pt;}
.yad{bottom:1786.493333pt;}
.yac{bottom:1886.493333pt;}
.yab{bottom:1928.293333pt;}
.yaa{bottom:1960.293333pt;}
.ya9{bottom:2001.760000pt;}
.ya8{bottom:2036.960000pt;}
.ya7{bottom:2072.160000pt;}
.y94{bottom:2143.333333pt;}
.y58{bottom:2228.733333pt;}
.y1d{bottom:2287.773333pt;}
.y57{bottom:2300.733333pt;}
.ycc{bottom:2426.013333pt;}
.ycd{bottom:2426.853333pt;}
.y34{bottom:2429.213333pt;}
.y32{bottom:2433.733333pt;}
.y2f{bottom:2467.706667pt;}
.y33{bottom:2485.213333pt;}
.y31{bottom:2489.733333pt;}
.y85{bottom:2511.773333pt;}
.y84{bottom:2553.373333pt;}
.y83{bottom:2563.453333pt;}
.y2d{bottom:2568.573333pt;}
.y2e{bottom:2608.773333pt;}
.y30{bottom:2648.613333pt;}
.y2b{bottom:2765.506667pt;}
.ycb{bottom:2820.386667pt;}
.y87{bottom:2987.520000pt;}
.y86{bottom:3029.120000pt;}
.y29{bottom:3111.013333pt;}
.y2c{bottom:3112.893333pt;}
.y1e{bottom:3140.066667pt;}
.y1c{bottom:3178.306667pt;}
.y28{bottom:3183.013333pt;}
.y2a{bottom:3188.480000pt;}
.yb3{bottom:3349.893333pt;}
.yb2{bottom:3410.693333pt;}
.yb1{bottom:3471.493333pt;}
.y27{bottom:3529.826667pt;}
.y1b{bottom:3581.373333pt;}
.y26{bottom:3590.626667pt;}
.y23{bottom:3712.133333pt;}
.y1a{bottom:3795.906667pt;}
.y19{bottom:3863.586667pt;}
.y18{bottom:3916.066667pt;}
.y2{bottom:3984.133333pt;}
.y1{bottom:4080.133333pt;}
.y25{bottom:4150.786667pt;}
.y24{bottom:4198.786667pt;}
.h29{height:46.384033pt;}
.h25{height:50.168823pt;}
.h26{height:58.525185pt;}
.h28{height:61.540051pt;}
.h27{height:61.564993pt;}
.h22{height:70.913979pt;}
.h49{height:71.945222pt;}
.h4a{height:71.952531pt;}
.h7{height:73.384467pt;}
.hf{height:73.406250pt;}
.h2e{height:75.275260pt;}
.h1c{height:76.001384pt;}
.h18{height:76.028426pt;}
.h1f{height:76.141455pt;}
.he{height:77.737500pt;}
.h44{height:78.020312pt;}
.h37{height:78.727927pt;}
.h38{height:78.751023pt;}
.h4{height:78.794057pt;}
.h2b{height:80.824231pt;}
.h3c{height:81.695649pt;}
.h34{height:84.428073pt;}
.h45{height:85.495312pt;}
.h3d{height:86.444403pt;}
.h3e{height:86.459302pt;}
.h3f{height:86.466752pt;}
.h23{height:88.170614pt;}
.h48{height:89.417014pt;}
.h41{height:89.858135pt;}
.h40{height:89.894623pt;}
.h4b{height:92.594037pt;}
.h19{height:94.375551pt;}
.h1b{height:94.479613pt;}
.h1a{height:94.483383pt;}
.h46{height:97.175000pt;}
.h21{height:98.042402pt;}
.h20{height:98.082213pt;}
.ha{height:98.576563pt;}
.h36{height:98.620408pt;}
.h35{height:98.660291pt;}
.hb{height:98.670000pt;}
.h6{height:101.457984pt;}
.h5{height:101.498298pt;}
.h2d{height:104.072107pt;}
.h2c{height:104.114206pt;}
.h3b{height:107.295008pt;}
.h43{height:111.515625pt;}
.h31{height:114.024375pt;}
.h3a{height:114.202539pt;}
.h2f{height:116.796875pt;}
.h4c{height:116.890313pt;}
.h1d{height:124.452229pt;}
.h30{height:126.020312pt;}
.h14{height:132.234375pt;}
.h4d{height:135.434375pt;}
.hd{height:135.688750pt;}
.h16{height:135.781688pt;}
.h8{height:136.148741pt;}
.h11{height:143.906250pt;}
.h42{height:146.469375pt;}
.h10{height:147.778750pt;}
.h12{height:148.098437pt;}
.h15{height:152.343750pt;}
.h9{height:159.376562pt;}
.h13{height:171.215238pt;}
.h39{height:172.176042pt;}
.h2{height:228.800000pt;}
.hc{height:233.593750pt;}
.h32{height:258.314375pt;}
.h1e{height:550.209883pt;}
.h47{height:552.153009pt;}
.h24{height:563.090843pt;}
.h33{height:568.612415pt;}
.h3{height:569.376744pt;}
.h17{height:582.559894pt;}
.h2a{height:584.048413pt;}
.h1{height:4492.666667pt;}
.h0{height:4492.800000pt;}
.wc{width:630.977619pt;}
.w5{width:684.684069pt;}
.wb{width:719.134453pt;}
.w7{width:719.134468pt;}
.w6{width:719.134523pt;}
.w8{width:735.969423pt;}
.wa{width:743.185748pt;}
.w3{width:744.181101pt;}
.w4{width:744.181103pt;}
.w9{width:763.360831pt;}
.w1{width:3177.333333pt;}
.w2{width:3177.599953pt;}
.w0{width:3177.600000pt;}
.x0{left:0.000000pt;}
.x51{left:26.303953pt;}
.x14{left:36.063953pt;}
.x5d{left:37.602737pt;}
.x36{left:38.794321pt;}
.x3b{left:47.631159pt;}
.x11{left:51.167953pt;}
.x21{left:52.447953pt;}
.x8{left:55.536956pt;}
.x15{left:58.687953pt;}
.x73{left:60.703953pt;}
.x35{left:62.163693pt;}
.x70{left:63.344580pt;}
.x58{left:67.130887pt;}
.x4d{left:68.535604pt;}
.x47{left:72.750499pt;}
.x7{left:74.277371pt;}
.x32{left:75.295024pt;}
.xd{left:79.718295pt;}
.x5f{left:84.525036pt;}
.x4c{left:86.649040pt;}
.x6{left:89.319899pt;}
.xc{left:91.751111pt;}
.x6f{left:94.168942pt;}
.x2a{left:95.064920pt;}
.x42{left:99.431579pt;}
.x2{left:100.479953pt;}
.x31{left:102.107217pt;}
.x5{left:104.360470pt;}
.xb{left:105.746715pt;}
.x46{left:107.406127pt;}
.x3f{left:112.708361pt;}
.x30{left:116.627479pt;}
.x5c{left:128.127953pt;}
.x12{left:129.663953pt;}
.x2f{left:131.153325pt;}
.x69{left:157.733286pt;}
.x39{left:158.853388pt;}
.x4{left:164.987378pt;}
.x41{left:176.327116pt;}
.x4b{left:182.801955pt;}
.x38{left:191.521401pt;}
.x5a{left:198.388825pt;}
.x1f{left:199.999953pt;}
.x45{left:204.249198pt;}
.x49{left:207.933590pt;}
.x6a{left:209.413286pt;}
.x1e{left:220.293286pt;}
.x37{left:225.626222pt;}
.x1{left:232.639953pt;}
.x48{left:239.620751pt;}
.x43{left:241.204476pt;}
.x59{left:256.393161pt;}
.x2b{left:274.144333pt;}
.x6c{left:279.336772pt;}
.x4e{left:285.442303pt;}
.x22{left:290.426619pt;}
.x6d{left:292.745248pt;}
.x9{left:298.160274pt;}
.x20{left:311.653286pt;}
.x16{left:335.906619pt;}
.xe{left:359.018536pt;}
.x6b{left:367.333286pt;}
.x2c{left:374.793899pt;}
.x19{left:427.226619pt;}
.x40{left:468.447725pt;}
.x2d{left:472.768387pt;}
.x3c{left:481.253286pt;}
.x1a{left:491.386619pt;}
.x6e{left:510.954005pt;}
.x34{left:527.165972pt;}
.x23{left:554.786619pt;}
.x1b{left:558.333286pt;}
.x50{left:561.373286pt;}
.x2e{left:575.765394pt;}
.x5e{left:595.813272pt;}
.x3a{left:597.266535pt;}
.x24{left:608.386619pt;}
.x1c{left:633.213286pt;}
.x5b{left:646.466619pt;}
.xf{left:649.537943pt;}
.x4f{left:650.973286pt;}
.x65{left:657.826619pt;}
.x68{left:679.133286pt;}
.x61{left:683.999953pt;}
.x55{left:700.413286pt;}
.x64{left:704.226619pt;}
.x52{left:708.253286pt;}
.x63{left:709.279953pt;}
.x67{left:727.133286pt;}
.x62{left:731.199953pt;}
.x10{left:734.579458pt;}
.x3{left:748.880002pt;}
.x66{left:758.559953pt;}
.x33{left:800.253333pt;}
.x56{left:831.973286pt;}
.x74{left:938.013286pt;}
.x3d{left:971.359953pt;}
.x25{left:976.639953pt;}
.x26{left:978.079953pt;}
.x29{left:989.480000pt;}
.x53{left:1151.933286pt;}
.x54{left:1209.693286pt;}
.x60{left:1245.599953pt;}
.xa{left:1438.506667pt;}
.x28{left:1525.253286pt;}
.x27{left:1545.253286pt;}
.x7e{left:1659.426619pt;}
.x44{left:1680.360000pt;}
.x71{left:1689.626619pt;}
.x57{left:1695.200000pt;}
.x13{left:1780.506619pt;}
.x7c{left:1841.946619pt;}
.x72{left:1846.426619pt;}
.x7b{left:1851.359953pt;}
.x7f{left:1996.866619pt;}
.x1d{left:2008.319953pt;}
.x76{left:2179.453286pt;}
.x75{left:2199.773286pt;}
.x79{left:2206.173286pt;}
.x78{left:2239.333286pt;}
.x3e{left:2349.120000pt;}
.x7d{left:2354.426619pt;}
.x4a{left:2376.213333pt;}
.x17{left:2378.693286pt;}
.x7a{left:2430.693286pt;}
.x18{left:2467.973286pt;}
.x77{left:2505.093286pt;}
}




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