
    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_4432ac5fec27aa660d4f932d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8d586328c4a36cd03f19a515.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6120719b5ffd93a276230791.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d5af301f2231220814aa1978.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_76ce5443da2765ea99d894c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fe9346b3caeadd08a01219b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9ea73fabf19545a31282640a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_2c5ea322f503e7ac83a6ed09.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8e1fa1ef0dac4ef01eb5c868.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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;}
.m5{transform:matrix(0.128083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128083,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.134443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134443,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.226424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226424,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,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);}
.m9{transform:matrix(0.254146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254146,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258712,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.266058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266058,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.269304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269304,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.286286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286286,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.286915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286915,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-68.400000px;}
.ve{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-59.760000px;}
.v15{vertical-align:-44.623414px;}
.v1e{vertical-align:-41.232059px;}
.vd{vertical-align:-36.261750px;}
.v17{vertical-align:-25.672253px;}
.v4{vertical-align:-23.760000px;}
.v11{vertical-align:-22.129043px;}
.v13{vertical-align:-18.785427px;}
.v1f{vertical-align:-15.098366px;}
.v8{vertical-align:-11.387250px;}
.v9{vertical-align:-9.030000px;}
.v16{vertical-align:-7.084003px;}
.v12{vertical-align:-3.475462px;}
.v18{vertical-align:-2.302301px;}
.vc{vertical-align:-1.178100px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:3.345198px;}
.va{vertical-align:6.809250px;}
.vb{vertical-align:9.124500px;}
.v1a{vertical-align:12.340732px;}
.v23{vertical-align:13.375681px;}
.v19{vertical-align:16.294659px;}
.v6{vertical-align:17.406000px;}
.v1d{vertical-align:21.886903px;}
.vf{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.v10{vertical-align:32.291737px;}
.v22{vertical-align:34.090294px;}
.v5{vertical-align:41.166000px;}
.v21{vertical-align:56.742169px;}
.v20{vertical-align:71.840535px;}
.v1c{vertical-align:108.737784px;}
.v1b{vertical-align:133.419247px;}
.ls30{letter-spacing:-1.737056px;}
.ls3a{letter-spacing:-1.559115px;}
.ls45{letter-spacing:-1.306506px;}
.ls2d{letter-spacing:-1.081472px;}
.ls39{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-1.078502px;}
.ls12{letter-spacing:-0.828000px;}
.ls3c{letter-spacing:-0.783810px;}
.ls11{letter-spacing:-0.771750px;}
.ls1b{letter-spacing:-0.701421px;}
.ls2c{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.443476px;}
.ls49{letter-spacing:-0.371807px;}
.lsa{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.252000px;}
.ls48{letter-spacing:-0.244875px;}
.lsc{letter-spacing:-0.220800px;}
.ls50{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.160179px;}
.lse{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls1e{letter-spacing:-0.018000px;}
.ls4f{letter-spacing:-0.012900px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.126000px;}
.ls4a{letter-spacing:0.142489px;}
.ls19{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.222229px;}
.ls1a{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.738000px;}
.ls28{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.936000px;}
.ls46{letter-spacing:1.263244px;}
.ls44{letter-spacing:1.285256px;}
.ls32{letter-spacing:1.374374px;}
.ls43{letter-spacing:1.600411px;}
.ls1c{letter-spacing:1.735094px;}
.ls41{letter-spacing:1.866909px;}
.ls3f{letter-spacing:2.065913px;}
.ls3e{letter-spacing:2.152437px;}
.ls15{letter-spacing:2.176907px;}
.ls2e{letter-spacing:2.257300px;}
.ls31{letter-spacing:2.395610px;}
.ls3b{letter-spacing:2.678843px;}
.ls24{letter-spacing:2.878146px;}
.ls22{letter-spacing:2.897532px;}
.ls29{letter-spacing:3.143922px;}
.ls35{letter-spacing:3.155268px;}
.ls2a{letter-spacing:3.239365px;}
.ls38{letter-spacing:3.297006px;}
.ls36{letter-spacing:3.608829px;}
.ls6{letter-spacing:9.540000px;}
.ls4e{letter-spacing:23.148000px;}
.ls4d{letter-spacing:50.652000px;}
.ls3{letter-spacing:66.420000px;}
.ls40{letter-spacing:82.924165px;}
.ls0{letter-spacing:154.980000px;}
.ls2b{letter-spacing:182.222498px;}
.ls14{letter-spacing:229.284000px;}
.ls8{letter-spacing:278.183777px;}
.ls21{letter-spacing:322.164000px;}
.ls17{letter-spacing:466.995502px;}
.ls25{letter-spacing:624.063285px;}
.ls3d{letter-spacing:695.100000px;}
.ls18{letter-spacing:858.457006px;}
.ls42{letter-spacing:1042.491612px;}
.ls13{letter-spacing:1156.800000px;}
.ls16{letter-spacing:1204.448454px;}
.ls26{letter-spacing:1239.202993px;}
.ls4c{letter-spacing:1314.600000px;}
.ls7{letter-spacing:1352.880000px;}
.ls37{letter-spacing:1525.214650px;}
.ls23{letter-spacing:1609.302446px;}
.ls27{letter-spacing:1703.328074px;}
.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;}
}
.ws33{word-spacing:-41.628955px;}
.ws28{word-spacing:-24.985377px;}
.ws30{word-spacing:-24.873196px;}
.ws2e{word-spacing:-23.314081px;}
.ws26{word-spacing:-23.248322px;}
.ws7{word-spacing:-21.420000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws22{word-spacing:-17.820886px;}
.ws18{word-spacing:-16.822200px;}
.ws1c{word-spacing:-14.628734px;}
.ws3{word-spacing:-14.580000px;}
.ws1e{word-spacing:-14.436000px;}
.wse{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws36{word-spacing:-13.937195px;}
.ws5{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.626000px;}
.wsd{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.482000px;}
.ws21{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.374000px;}
.ws43{word-spacing:-13.284000px;}
.ws2a{word-spacing:-13.248000px;}
.wsb{word-spacing:-13.140000px;}
.ws2b{word-spacing:-12.420000px;}
.ws3a{word-spacing:-10.918352px;}
.ws8{word-spacing:-10.440000px;}
.ws3c{word-spacing:-10.110648px;}
.ws11{word-spacing:-9.140849px;}
.wsa{word-spacing:-9.000000px;}
.ws1d{word-spacing:-0.049276px;}
.ws17{word-spacing:0.000000px;}
.ws1a{word-spacing:0.652145px;}
.ws12{word-spacing:64.660428px;}
.ws10{word-spacing:64.712928px;}
.ws3b{word-spacing:69.705980px;}
.ws41{word-spacing:70.647804px;}
.ws39{word-spacing:75.274542px;}
.ws3e{word-spacing:75.590712px;}
.ws42{word-spacing:75.675033px;}
.ws3f{word-spacing:75.680445px;}
.ws40{word-spacing:76.041193px;}
.ws3d{word-spacing:83.114758px;}
.ws37{word-spacing:106.144591px;}
.ws35{word-spacing:107.961586px;}
.ws38{word-spacing:155.309816px;}
.ws27{word-spacing:174.716936px;}
.ws2d{word-spacing:177.087090px;}
.ws25{word-spacing:177.771100px;}
.ws1b{word-spacing:225.148997px;}
.ws23{word-spacing:260.536545px;}
.ws16{word-spacing:296.976750px;}
.ws15{word-spacing:450.821842px;}
.ws13{word-spacing:529.807625px;}
.ws19{word-spacing:588.697016px;}
.ws31{word-spacing:588.828393px;}
.ws14{word-spacing:692.511750px;}
.ws34{word-spacing:1154.255812px;}
.ws29{word-spacing:1618.240229px;}
.ws32{word-spacing:1653.958906px;}
.ws24{word-spacing:1898.289893px;}
.ws2f{word-spacing:2206.501738px;}
.ws2c{word-spacing:2700.599381px;}
._5{margin-left:-2703.552000px;}
._1d{margin-left:-793.274049px;}
._21{margin-left:-691.218673px;}
._20{margin-left:-554.563890px;}
._1f{margin-left:-551.587398px;}
._d{margin-left:-324.883723px;}
._11{margin-left:-225.448723px;}
._10{margin-left:-126.066223px;}
._e{margin-left:-124.858724px;}
._22{margin-left:-58.666363px;}
._15{margin-left:-55.980000px;}
._f{margin-left:-49.363723px;}
._1e{margin-left:-7.247226px;}
._1b{margin-left:-5.190863px;}
._1a{margin-left:-3.744987px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.234800px;}
._8{width:2.700000px;}
._7{width:3.810000px;}
._b{width:5.022000px;}
._c{width:6.069600px;}
._12{width:7.468800px;}
._9{width:8.550000px;}
._a{width:10.044000px;}
._13{width:11.832000px;}
._18{width:14.526000px;}
._17{width:15.774000px;}
._1c{width:16.802400px;}
._24{width:23.220000px;}
._23{width:24.684000px;}
._14{width:42.582000px;}
._6{width:305.491200px;}
._19{width:962.040000px;}
._16{width:1041.420000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.097750px;}
.fs21{font-size:30.240000px;}
.fsc{font-size:32.880750px;}
.fs25{font-size:34.539870px;}
.fsf{font-size:35.638518px;}
.fs28{font-size:35.699854px;}
.fs8{font-size:36.000000px;}
.fs23{font-size:36.369239px;}
.fs27{font-size:38.631358px;}
.fsb{font-size:38.880000px;}
.fs26{font-size:39.228080px;}
.fs22{font-size:39.274648px;}
.fs7{font-size:41.760000px;}
.fs24{font-size:42.150161px;}
.fs1f{font-size:43.436572px;}
.fs4{font-size:48.240000px;}
.fs13{font-size:49.225112px;}
.fse{font-size:49.276147px;}
.fs10{font-size:52.621345px;}
.fs15{font-size:53.828989px;}
.fs9{font-size:54.000000px;}
.fs1e{font-size:54.833459px;}
.fs11{font-size:56.092588px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs20{font-size:62.359280px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs12{font-size:67.994092px;}
.fs1a{font-size:70.802236px;}
.fs17{font-size:71.248875px;}
.fs1{font-size:72.000000px;}
.fs14{font-size:77.379670px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.fs19{font-size:89.471927px;}
.fs16{font-size:89.875458px;}
.fs1b{font-size:101.800273px;}
.fs18{font-size:102.219053px;}
.fs1d{font-size:119.206726px;}
.fs1c{font-size:149.744441px;}
.y0{bottom:0.000000px;}
.y15b{bottom:2.374284px;}
.y16f{bottom:2.374290px;}
.y162{bottom:2.433637px;}
.y135{bottom:2.468003px;}
.y142{bottom:2.590552px;}
.y146{bottom:2.662002px;}
.y14d{bottom:2.665160px;}
.y127{bottom:2.665164px;}
.y12b{bottom:2.665168px;}
.y8d{bottom:2.880000px;}
.y121{bottom:3.060000px;}
.y95{bottom:3.225000px;}
.y9c{bottom:3.232500px;}
.y8f{bottom:3.240000px;}
.y11c{bottom:3.290059px;}
.y98{bottom:3.405000px;}
.y9f{bottom:3.412500px;}
.y168{bottom:3.415500px;}
.y88{bottom:3.418113px;}
.y92{bottom:3.420000px;}
.y8b{bottom:3.780000px;}
.yad{bottom:4.630739px;}
.yed{bottom:5.389576px;}
.y102{bottom:9.131897px;}
.yd3{bottom:10.823433px;}
.y15c{bottom:15.465000px;}
.y12c{bottom:15.480000px;}
.y167{bottom:15.655500px;}
.y11f{bottom:15.660000px;}
.yb2{bottom:18.360000px;}
.yb0{bottom:18.540000px;}
.yd4{bottom:18.623722px;}
.y154{bottom:18.705000px;}
.yc0{bottom:18.720000px;}
.y9e{bottom:18.892500px;}
.y132{bottom:18.900000px;}
.y8a{bottom:19.080000px;}
.y157{bottom:19.431721px;}
.y16b{bottom:19.431726px;}
.y13e{bottom:21.201695px;}
.y82{bottom:24.229355px;}
.y11b{bottom:24.594330px;}
.y116{bottom:26.482707px;}
.y118{bottom:26.967239px;}
.yaf{bottom:31.185000px;}
.ya8{bottom:33.935720px;}
.y163{bottom:33.946294px;}
.y87{bottom:34.007056px;}
.y153{bottom:34.185000px;}
.y124{bottom:34.200000px;}
.y15e{bottom:34.372500px;}
.y131{bottom:34.380000px;}
.y136{bottom:34.490363px;}
.y139{bottom:34.490365px;}
.y147{bottom:37.201513px;}
.y14a{bottom:37.201515px;}
.y14e{bottom:37.245673px;}
.y128{bottom:37.245676px;}
.y84{bottom:40.376540px;}
.yd0{bottom:42.665242px;}
.yaa{bottom:42.745358px;}
.ycb{bottom:45.750425px;}
.y85{bottom:47.613571px;}
.y11a{bottom:48.271510px;}
.y165{bottom:48.610182px;}
.y138{bottom:49.110678px;}
.y164{bottom:49.172012px;}
.y137{bottom:49.641915px;}
.y166{bottom:49.701308px;}
.y152{bottom:49.845000px;}
.y13b{bottom:49.860000px;}
.yab{bottom:50.359212px;}
.ycd{bottom:50.408023px;}
.y149{bottom:52.971073px;}
.y150{bottom:53.033953px;}
.y12a{bottom:53.033956px;}
.y158{bottom:53.480750px;}
.y16c{bottom:53.480753px;}
.y170{bottom:53.480758px;}
.y148{bottom:53.544068px;}
.y14f{bottom:53.607629px;}
.y129{bottom:53.607631px;}
.ye4{bottom:54.161521px;}
.yae{bottom:54.476428px;}
.ye7{bottom:55.752527px;}
.yd2{bottom:56.635656px;}
.y11e{bottom:56.794083px;}
.y2{bottom:57.990000px;}
.y59{bottom:57.996000px;}
.ye2{bottom:58.048677px;}
.y80{bottom:58.228498px;}
.y13f{bottom:58.352136px;}
.y143{bottom:58.352139px;}
.y11d{bottom:58.682460px;}
.yea{bottom:62.640979px;}
.y114{bottom:62.941584px;}
.y83{bottom:68.842105px;}
.yec{bottom:68.916416px;}
.y15a{bottom:69.361031px;}
.y16e{bottom:69.361034px;}
.y159{bottom:69.933147px;}
.y16d{bottom:69.933150px;}
.ya6{bottom:70.899919px;}
.y117{bottom:74.754217px;}
.y141{bottom:75.678900px;}
.y119{bottom:75.725444px;}
.y140{bottom:76.303128px;}
.y160{bottom:76.849500px;}
.y1{bottom:76.890000px;}
.y58{bottom:76.896000px;}
.y133{bottom:77.040000px;}
.ycf{bottom:77.532819px;}
.y86{bottom:78.621125px;}
.y125{bottom:80.325000px;}
.y12e{bottom:81.720000px;}
.ya9{bottom:85.552409px;}
.y81{bottom:90.071959px;}
.yac{bottom:92.547494px;}
.ye8{bottom:92.859458px;}
.y9d{bottom:95.443500px;}
.y155{bottom:97.770000px;}
.y115{bottom:98.864015px;}
.ydc{bottom:102.996000px;}
.y13c{bottom:104.970000px;}
.yc9{bottom:105.473648px;}
.y10f{bottom:108.756000px;}
.y53{bottom:108.765000px;}
.yd1{bottom:109.374865px;}
.yd5{bottom:110.131247px;}
.y15f{bottom:111.280500px;}
.y15d{bottom:111.283500px;}
.ya7{bottom:114.813844px;}
.ye0{bottom:117.599775px;}
.ydb{bottom:118.656000px;}
.yeb{bottom:121.486931px;}
.y10e{bottom:124.236000px;}
.y52{bottom:124.245000px;}
.y161{bottom:127.020000px;}
.ycc{bottom:128.759262px;}
.yce{bottom:130.331679px;}
.ye9{bottom:130.763664px;}
.y112{bottom:131.040000px;}
.ye3{bottom:133.148401px;}
.yda{bottom:134.136000px;}
.ye5{bottom:134.650821px;}
.y9b{bottom:138.103500px;}
.y51{bottom:139.725000px;}
.y10d{bottom:139.896000px;}
.y100{bottom:141.399970px;}
.yd9{bottom:149.796000px;}
.y50{bottom:155.205000px;}
.y10c{bottom:155.370000px;}
.y9a{bottom:164.385000px;}
.yca{bottom:164.442875px;}
.yd8{bottom:165.270000px;}
.ya4{bottom:165.285000px;}
.y10b{bottom:170.850000px;}
.y4f{bottom:170.865000px;}
.ye1{bottom:176.442183px;}
.yd7{bottom:180.930000px;}
.y4e{bottom:186.345000px;}
.y10a{bottom:186.510000px;}
.y99{bottom:190.665000px;}
.yd6{bottom:193.350000px;}
.yc8{bottom:193.394998px;}
.ye6{bottom:193.493229px;}
.y151{bottom:201.285000px;}
.y4d{bottom:201.825000px;}
.y109{bottom:201.990000px;}
.y101{bottom:207.536665px;}
.yee{bottom:210.459233px;}
.y156{bottom:216.795000px;}
.y97{bottom:216.945000px;}
.y108{bottom:217.470000px;}
.y4c{bottom:217.485000px;}
.y107{bottom:232.950000px;}
.y4b{bottom:232.965000px;}
.y96{bottom:243.405000px;}
.y4a{bottom:248.445000px;}
.y106{bottom:248.610000px;}
.y105{bottom:263.910000px;}
.y49{bottom:263.925000px;}
.y94{bottom:269.685000px;}
.y48{bottom:279.585000px;}
.y104{bottom:279.750000px;}
.y103{bottom:295.095000px;}
.y47{bottom:295.290000px;}
.y93{bottom:295.995000px;}
.yff{bottom:307.695000px;}
.y46{bottom:310.770000px;}
.y14b{bottom:312.015000px;}
.y91{bottom:322.275000px;}
.y45{bottom:326.070000px;}
.y14c{bottom:327.495000px;}
.y44{bottom:338.850000px;}
.y38{bottom:340.751250px;}
.y3d{bottom:342.562500px;}
.y90{bottom:348.735000px;}
.y198{bottom:361.335000px;}
.y41{bottom:363.844163px;}
.y3e{bottom:366.391725px;}
.y39{bottom:367.417313px;}
.y3b{bottom:367.712625px;}
.y3c{bottom:370.289063px;}
.y26{bottom:373.143750px;}
.y8e{bottom:375.015000px;}
.y27{bottom:375.990563px;}
.y197{bottom:376.995000px;}
.yc7{bottom:382.755000px;}
.y42{bottom:384.270600px;}
.y196{bottom:392.475000px;}
.y40{bottom:392.509163px;}
.y3a{bottom:393.798563px;}
.yc6{bottom:398.415000px;}
.y8c{bottom:401.295000px;}
.y3f{bottom:404.716725px;}
.y144{bottom:406.695000px;}
.y195{bottom:407.955000px;}
.yc5{bottom:413.895000px;}
.y43{bottom:414.930600px;}
.y145{bottom:422.219996px;}
.y194{bottom:423.435000px;}
.y89{bottom:427.575000px;}
.yc4{bottom:429.375000px;}
.y2f{bottom:438.112500px;}
.y2b{bottom:438.375000px;}
.y37{bottom:438.637500px;}
.y193{bottom:438.915000px;}
.yc3{bottom:444.855000px;}
.y7f{bottom:446.669996px;}
.y192{bottom:454.395000px;}
.y30{bottom:454.873125px;}
.y35{bottom:455.135625px;}
.y2a{bottom:457.983750px;}
.yc2{bottom:460.515000px;}
.y33{bottom:462.236250px;}
.y2c{bottom:463.351875px;}
.y191{bottom:470.055000px;}
.yc1{bottom:476.175000px;}
.y28{bottom:479.850000px;}
.y32{bottom:484.102500px;}
.y190{bottom:485.535000px;}
.ybf{bottom:489.135000px;}
.y31{bottom:498.566250px;}
.y18f{bottom:501.015000px;}
.y13a{bottom:501.375000px;}
.y34{bottom:505.666875px;}
.y2d{bottom:506.769375px;}
.y18e{bottom:516.495000px;}
.y13d{bottom:516.869996px;}
.y36{bottom:520.130625px;}
.y29{bottom:523.280625px;}
.ybe{bottom:523.335000px;}
.y2e{bottom:528.596250px;}
.y18d{bottom:532.155000px;}
.y25{bottom:544.396500px;}
.ybd{bottom:546.375000px;}
.y18c{bottom:547.815000px;}
.y7e{bottom:552.315000px;}
.yfe{bottom:553.755000px;}
.y24{bottom:560.056500px;}
.y18b{bottom:563.475000px;}
.ybc{bottom:569.265000px;}
.y23{bottom:575.566500px;}
.y18a{bottom:579.165000px;}
.y7d{bottom:583.485000px;}
.yfd{bottom:584.745000px;}
.y22{bottom:591.226500px;}
.ybb{bottom:592.305000px;}
.y189{bottom:594.645000px;}
.y7c{bottom:598.965000px;}
.yfc{bottom:600.405000px;}
.y21{bottom:606.346500px;}
.y188{bottom:610.305000px;}
.y7b{bottom:614.625000px;}
.yba{bottom:615.165000px;}
.yfb{bottom:616.245000px;}
.y130{bottom:619.305000px;}
.y187{bottom:625.785000px;}
.y7a{bottom:630.105000px;}
.yfa{bottom:631.725000px;}
.y134{bottom:634.919996px;}
.y20{bottom:636.946500px;}
.yb9{bottom:638.205000px;}
.y186{bottom:641.445000px;}
.y79{bottom:645.405000px;}
.yf9{bottom:647.205000px;}
.y1f{bottom:649.546500px;}
.y185{bottom:657.105000px;}
.yb8{bottom:661.065000px;}
.yf8{bottom:662.865000px;}
.y78{bottom:676.905000px;}
.yf7{bottom:678.345000px;}
.yb7{bottom:684.105000px;}
.y1e{bottom:686.266500px;}
.y184{bottom:688.245000px;}
.y77{bottom:692.385000px;}
.yf6{bottom:694.005000px;}
.y1d{bottom:701.746500px;}
.y183{bottom:703.725000px;}
.yb6{bottom:706.965000px;}
.y76{bottom:707.865000px;}
.y12d{bottom:709.305000px;}
.yf5{bottom:709.485000px;}
.y1c{bottom:717.226500px;}
.y182{bottom:719.385000px;}
.y75{bottom:723.525000px;}
.y12f{bottom:724.769992px;}
.yf4{bottom:724.965000px;}
.yb5{bottom:730.005000px;}
.y1b{bottom:732.886500px;}
.y181{bottom:734.865000px;}
.y74{bottom:739.005000px;}
.yf3{bottom:740.625000px;}
.y180{bottom:750.345000px;}
.yb4{bottom:752.865000px;}
.y73{bottom:754.485000px;}
.y1a{bottom:755.026500px;}
.yf2{bottom:756.105000px;}
.y17f{bottom:765.825000px;}
.y72{bottom:770.145000px;}
.yf1{bottom:771.765000px;}
.yb1{bottom:775.905000px;}
.y19{bottom:777.706500px;}
.y17e{bottom:781.485000px;}
.y71{bottom:785.625000px;}
.yf0{bottom:787.425000px;}
.y18{bottom:793.186500px;}
.y13{bottom:796.081500px;}
.y17d{bottom:796.965000px;}
.yb3{bottom:798.765000px;}
.ydf{bottom:799.620000px;}
.yef{bottom:799.665000px;}
.y70{bottom:801.285000px;}
.y123{bottom:803.985000px;}
.y17{bottom:808.846500px;}
.y17c{bottom:812.265000px;}
.y6f{bottom:816.765000px;}
.y126{bottom:819.419992px;}
.ya3{bottom:821.805000px;}
.y16{bottom:824.326500px;}
.y17b{bottom:827.925000px;}
.y6e{bottom:832.245000px;}
.y55{bottom:835.860000px;}
.y15{bottom:836.056500px;}
.y14{bottom:838.831500px;}
.y17a{bottom:843.405000px;}
.y6d{bottom:847.770000px;}
.y12{bottom:850.980000px;}
.ya5{bottom:852.944992px;}
.y11{bottom:856.230000px;}
.y10{bottom:856.980000px;}
.y179{bottom:859.290000px;}
.y54{bottom:862.050000px;}
.y6c{bottom:863.430000px;}
.y178{bottom:874.950000px;}
.y6b{bottom:878.910000px;}
.y177{bottom:890.430000px;}
.y120{bottom:891.690000px;}
.yf{bottom:892.920000px;}
.y6a{bottom:894.570000px;}
.y176{bottom:905.910000px;}
.y69{bottom:910.050000px;}
.y122{bottom:912.750000px;}
.ye{bottom:915.630000px;}
.y175{bottom:921.570000px;}
.y68{bottom:925.530000px;}
.y111{bottom:933.630000px;}
.y174{bottom:936.870000px;}
.y67{bottom:941.190000px;}
.y113{bottom:949.245000px;}
.y173{bottom:950.190000px;}
.y66{bottom:956.310000px;}
.yd{bottom:956.670000px;}
.y65{bottom:971.970000px;}
.y171{bottom:981.870000px;}
.y64{bottom:987.630000px;}
.y172{bottom:997.469992px;}
.ya2{bottom:1003.470000px;}
.yc{bottom:1016.070000px;}
.y63{bottom:1019.130000px;}
.y9{bottom:1034.070000px;}
.yde{bottom:1034.430000px;}
.y62{bottom:1034.610000px;}
.yb{bottom:1039.290000px;}
.y61{bottom:1050.090000px;}
.y8{bottom:1057.290000px;}
.ya1{bottom:1065.570000px;}
.y60{bottom:1065.750000px;}
.ya{bottom:1071.330000px;}
.y169{bottom:1076.550000px;}
.y110{bottom:1081.050000px;}
.y5f{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y16a{bottom:1092.119992px;}
.y5e{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y5d{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.ya0{bottom:1127.670000px;}
.y5c{bottom:1127.850000px;}
.y4{bottom:1140.300000px;}
.y5b{bottom:1143.360000px;}
.y3{bottom:1158.240000px;}
.ydd{bottom:1158.840000px;}
.y5a{bottom:1159.020000px;}
.y57{bottom:1175.220000px;}
.y56{bottom:1193.760000px;}
.h41{height:20.145000px;}
.h29{height:22.140000px;}
.h2a{height:22.170000px;}
.h2b{height:22.305000px;}
.h28{height:22.320000px;}
.h1d{height:25.545000px;}
.h20{height:25.552500px;}
.h1f{height:25.581000px;}
.h44{height:29.678906px;}
.h5f{height:30.945000px;}
.h2c{height:33.465000px;}
.h12{height:34.293595px;}
.hb{height:35.314453px;}
.h5b{height:37.233832px;}
.h4a{height:37.931980px;}
.h10{height:38.158594px;}
.h57{height:40.291299px;}
.h52{height:40.913662px;}
.h46{height:40.962230px;}
.h13{height:41.102845px;}
.h40{height:41.205000px;}
.h21{height:41.752500px;}
.h14{height:43.418095px;}
.h4e{height:43.961300px;}
.h27{height:45.180000px;}
.h6{height:48.616875px;}
.h17{height:51.393482px;}
.hc{height:52.971680px;}
.h11{height:52.998047px;}
.he{height:54.421875px;}
.h19{height:54.882419px;}
.h7{height:55.796836px;}
.h60{height:56.320312px;}
.h3c{height:57.189584px;}
.h5a{height:58.122502px;}
.h49{height:58.198103px;}
.h1a{height:58.502817px;}
.h8{height:58.621992px;}
.h15{height:59.092031px;}
.h1e{height:60.041250px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h51{height:62.772824px;}
.h53{height:62.847338px;}
.h45{height:62.847346px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h3f{height:70.565265px;}
.h37{height:70.664062px;}
.h24{height:70.915713px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.hd{height:76.480453px;}
.h56{height:79.057326px;}
.h5d{height:79.057334px;}
.h25{height:80.704578px;}
.h5{height:81.995625px;}
.h1b{height:82.305250px;}
.h18{height:83.685219px;}
.h9{height:84.898125px;}
.h4d{height:86.258401px;}
.h42{height:86.962500px;}
.h43{height:86.976000px;}
.h26{height:87.210372px;}
.h58{height:89.092500px;}
.h59{height:89.095500px;}
.h48{height:89.280000px;}
.h3e{height:91.279878px;}
.h33{height:93.316424px;}
.h2e{height:93.737294px;}
.h4f{height:93.945000px;}
.h50{height:93.951000px;}
.h47{height:93.960000px;}
.h5e{height:94.522500px;}
.h5c{height:94.530000px;}
.h34{height:99.680447px;}
.h16{height:101.561025px;}
.h2f{height:106.078026px;}
.h35{height:106.174503px;}
.h54{height:110.001000px;}
.h55{height:110.002500px;}
.h3b{height:112.134570px;}
.h4b{height:117.210000px;}
.h4c{height:117.216000px;}
.h36{height:118.055323px;}
.h1c{height:120.591000px;}
.h31{height:128.498181px;}
.h3d{height:129.030119px;}
.h23{height:130.665754px;}
.h3a{height:143.271000px;}
.h39{height:156.178772px;}
.h22{height:177.510000px;}
.h2d{height:186.160845px;}
.h30{height:227.156542px;}
.h32{height:231.386805px;}
.h38{height:242.607544px;}
.h0{height:1263.000000px;}
.wc{width:45.756000px;}
.w12{width:46.116000px;}
.wd{width:75.945000px;}
.w13{width:76.305000px;}
.wf{width:89.121000px;}
.w1d{width:97.401000px;}
.w1e{width:97.410000px;}
.w1c{width:97.545000px;}
.w1f{width:97.740000px;}
.wa{width:102.949500px;}
.w5{width:111.801000px;}
.w22{width:130.725424px;}
.w1a{width:138.589500px;}
.w24{width:148.329669px;}
.w25{width:148.405298px;}
.w6{width:152.490000px;}
.w23{width:154.807625px;}
.w26{width:154.824437px;}
.w21{width:159.689579px;}
.w3{width:160.939500px;}
.wb{width:190.995000px;}
.w11{width:191.355000px;}
.w1b{width:199.860000px;}
.w20{width:199.875000px;}
.w10{width:205.410000px;}
.w17{width:218.433092px;}
.w4{width:235.830000px;}
.we{width:294.900000px;}
.w1{width:496.779724px;}
.w19{width:567.589664px;}
.w9{width:571.473813px;}
.w15{width:621.131963px;}
.w7{width:662.175000px;}
.w2{width:662.190000px;}
.w16{width:702.008430px;}
.w14{width:713.115000px;}
.w8{width:713.130000px;}
.w27{width:730.575000px;}
.w18{width:730.590000px;}
.w0{width:894.000000px;}
.xd{left:-375.495000px;}
.xe{left:-356.280000px;}
.xb{left:-91.680000px;}
.xc{left:-36.945000px;}
.x0{left:0.000000px;}
.x3d{left:7.740000px;}
.x59{left:14.610000px;}
.x61{left:17.625000px;}
.x63{left:19.830000px;}
.x5a{left:22.665000px;}
.x4e{left:24.840000px;}
.x56{left:28.069500px;}
.x65{left:29.145000px;}
.x42{left:31.125000px;}
.x60{left:33.645000px;}
.x54{left:34.719444px;}
.x64{left:38.910000px;}
.x8f{left:41.886064px;}
.x5f{left:44.449500px;}
.x44{left:45.540000px;}
.x4a{left:47.010000px;}
.x47{left:49.350000px;}
.x2{left:53.040000px;}
.xa{left:54.570000px;}
.x58{left:58.530000px;}
.x33{left:60.780000px;}
.x3e{left:63.523500px;}
.x80{left:65.626618px;}
.x4d{left:66.960000px;}
.x40{left:68.400000px;}
.x13{left:70.401000px;}
.x67{left:71.813417px;}
.x11{left:74.340000px;}
.x45{left:77.023500px;}
.x4b{left:81.360000px;}
.x48{left:84.060000px;}
.x46{left:86.940000px;}
.x70{left:88.606650px;}
.x4c{left:90.720000px;}
.x49{left:91.800000px;}
.x35{left:94.696503px;}
.x62{left:96.120000px;}
.x93{left:97.687176px;}
.x89{left:100.125000px;}
.x8a{left:102.959202px;}
.x6f{left:107.075342px;}
.x50{left:108.529317px;}
.x8e{left:110.482774px;}
.x34{left:114.002829px;}
.x3b{left:120.816000px;}
.x5c{left:122.790000px;}
.x95{left:124.416000px;}
.x76{left:129.238914px;}
.x7e{left:133.100463px;}
.x7d{left:134.619053px;}
.x38{left:135.904252px;}
.x66{left:137.264999px;}
.x84{left:152.355118px;}
.x92{left:156.465000px;}
.x77{left:157.559352px;}
.x4f{left:162.089999px;}
.x7f{left:164.040000px;}
.x8c{left:165.465000px;}
.x15{left:168.005340px;}
.x8{left:175.305000px;}
.x36{left:177.577262px;}
.x6b{left:180.092818px;}
.x52{left:187.786870px;}
.x51{left:188.851728px;}
.x25{left:196.442100px;}
.x57{left:199.125000px;}
.x17{left:202.859910px;}
.x19{left:209.367900px;}
.x79{left:215.004374px;}
.x18{left:217.091817px;}
.x78{left:219.501496px;}
.x14{left:226.502100px;}
.x16{left:231.311700px;}
.x91{left:233.714998px;}
.x37{left:245.074359px;}
.x8d{left:248.339998px;}
.x90{left:251.564998px;}
.x8b{left:260.339998px;}
.x5{left:267.240000px;}
.x3{left:268.890000px;}
.x32{left:279.000000px;}
.x83{left:280.381635px;}
.x3f{left:282.135000px;}
.x6e{left:287.535000px;}
.x72{left:302.374315px;}
.x2d{left:304.297380px;}
.x31{left:306.420000px;}
.x4{left:313.650000px;}
.x81{left:322.671977px;}
.x7c{left:338.639998px;}
.x3a{left:340.214293px;}
.x10{left:348.210000px;}
.x68{left:353.132041px;}
.x1a{left:360.569700px;}
.x2b{left:362.839230px;}
.x1c{left:373.345200px;}
.x2c{left:386.105670px;}
.x9{left:391.050000px;}
.x6c{left:397.470668px;}
.x94{left:402.045000px;}
.x1b{left:403.570530px;}
.x7a{left:409.447750px;}
.x12{left:411.081000px;}
.x85{left:425.820000px;}
.x71{left:427.931686px;}
.x5e{left:436.980000px;}
.x2e{left:438.180111px;}
.x1{left:439.500000px;}
.x30{left:447.750000px;}
.x39{left:474.812808px;}
.x20{left:497.117250px;}
.x27{left:500.243490px;}
.x6{left:502.170000px;}
.x5b{left:513.660000px;}
.x41{left:518.340000px;}
.x86{left:523.740000px;}
.x7{left:529.665000px;}
.x82{left:534.190284px;}
.x75{left:538.320797px;}
.x53{left:544.294579px;}
.x2a{left:545.889600px;}
.x69{left:549.336882px;}
.x1f{left:554.336460px;}
.x26{left:557.462700px;}
.x1e{left:568.870470px;}
.x3c{left:579.354000px;}
.x6a{left:584.641529px;}
.x28{left:585.929520px;}
.x24{left:591.881400px;}
.x1d{left:596.991600px;}
.x5d{left:603.150000px;}
.x87{left:621.690000px;}
.x43{left:630.510000px;}
.x55{left:638.064000px;}
.x29{left:643.915260px;}
.x74{left:645.775344px;}
.x21{left:654.285960px;}
.x73{left:663.859112px;}
.x23{left:697.271760px;}
.x22{left:711.505170px;}
.x88{left:719.460000px;}
.x2f{left:739.200000px;}
.x6d{left:758.520000px;}
.x7b{left:799.020000px;}
.xf{left:906.270000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.ve{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-53.120000pt;}
.v15{vertical-align:-39.665257pt;}
.v1e{vertical-align:-36.650719pt;}
.vd{vertical-align:-32.232667pt;}
.v17{vertical-align:-22.819781pt;}
.v4{vertical-align:-21.120000pt;}
.v11{vertical-align:-19.670260pt;}
.v13{vertical-align:-16.698157pt;}
.v1f{vertical-align:-13.420770pt;}
.v8{vertical-align:-10.122000pt;}
.v9{vertical-align:-8.026667pt;}
.v16{vertical-align:-6.296892pt;}
.v12{vertical-align:-3.089300pt;}
.v18{vertical-align:-2.046490pt;}
.vc{vertical-align:-1.047200pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:2.973510pt;}
.va{vertical-align:6.052667pt;}
.vb{vertical-align:8.110667pt;}
.v1a{vertical-align:10.969539pt;}
.v23{vertical-align:11.889495pt;}
.v19{vertical-align:14.484141pt;}
.v6{vertical-align:15.472000pt;}
.v1d{vertical-align:19.455025pt;}
.vf{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.v10{vertical-align:28.703767pt;}
.v22{vertical-align:30.302483pt;}
.v5{vertical-align:36.592000pt;}
.v21{vertical-align:50.437484pt;}
.v20{vertical-align:63.858253pt;}
.v1c{vertical-align:96.655808pt;}
.v1b{vertical-align:118.594887pt;}
.ls30{letter-spacing:-1.544050pt;}
.ls3a{letter-spacing:-1.385880pt;}
.ls45{letter-spacing:-1.161339pt;}
.ls2d{letter-spacing:-0.961308pt;}
.ls39{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.958668pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls3c{letter-spacing:-0.696720pt;}
.ls11{letter-spacing:-0.686000pt;}
.ls1b{letter-spacing:-0.623485pt;}
.ls2c{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.394201pt;}
.ls49{letter-spacing:-0.330495pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.224000pt;}
.ls48{letter-spacing:-0.217667pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls50{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.142382pt;}
.lse{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls1e{letter-spacing:-0.016000pt;}
.ls4f{letter-spacing:-0.011466pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.112000pt;}
.ls4a{letter-spacing:0.126657pt;}
.ls19{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.197537pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.656000pt;}
.ls28{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.832000pt;}
.ls46{letter-spacing:1.122884pt;}
.ls44{letter-spacing:1.142450pt;}
.ls32{letter-spacing:1.221666pt;}
.ls43{letter-spacing:1.422587pt;}
.ls1c{letter-spacing:1.542306pt;}
.ls41{letter-spacing:1.659475pt;}
.ls3f{letter-spacing:1.836367pt;}
.ls3e{letter-spacing:1.913277pt;}
.ls15{letter-spacing:1.935029pt;}
.ls2e{letter-spacing:2.006489pt;}
.ls31{letter-spacing:2.129431pt;}
.ls3b{letter-spacing:2.381193pt;}
.ls24{letter-spacing:2.558352pt;}
.ls22{letter-spacing:2.575584pt;}
.ls29{letter-spacing:2.794597pt;}
.ls35{letter-spacing:2.804683pt;}
.ls2a{letter-spacing:2.879435pt;}
.ls38{letter-spacing:2.930672pt;}
.ls36{letter-spacing:3.207848pt;}
.ls6{letter-spacing:8.480000pt;}
.ls4e{letter-spacing:20.576000pt;}
.ls4d{letter-spacing:45.024000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls40{letter-spacing:73.710369pt;}
.ls0{letter-spacing:137.760000pt;}
.ls2b{letter-spacing:161.975554pt;}
.ls14{letter-spacing:203.808000pt;}
.ls8{letter-spacing:247.274468pt;}
.ls21{letter-spacing:286.368000pt;}
.ls17{letter-spacing:415.107112pt;}
.ls25{letter-spacing:554.722920pt;}
.ls3d{letter-spacing:617.866667pt;}
.ls18{letter-spacing:763.072894pt;}
.ls42{letter-spacing:926.659210pt;}
.ls13{letter-spacing:1028.266667pt;}
.ls16{letter-spacing:1070.620848pt;}
.ls26{letter-spacing:1101.513772pt;}
.ls4c{letter-spacing:1168.533333pt;}
.ls7{letter-spacing:1202.560000pt;}
.ls37{letter-spacing:1355.746356pt;}
.ls23{letter-spacing:1430.491063pt;}
.ls27{letter-spacing:1514.069399pt;}
.ws33{word-spacing:-37.003515pt;}
.ws28{word-spacing:-22.209224pt;}
.ws30{word-spacing:-22.109507pt;}
.ws2e{word-spacing:-20.723627pt;}
.ws26{word-spacing:-20.665175pt;}
.ws7{word-spacing:-19.040000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws22{word-spacing:-15.840787pt;}
.ws18{word-spacing:-14.953067pt;}
.ws1c{word-spacing:-13.003319pt;}
.ws3{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-12.832000pt;}
.wse{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws36{word-spacing:-12.388618pt;}
.ws5{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.112000pt;}
.wsd{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.984000pt;}
.ws21{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.888000pt;}
.ws43{word-spacing:-11.808000pt;}
.ws2a{word-spacing:-11.776000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws2b{word-spacing:-11.040000pt;}
.ws3a{word-spacing:-9.705202pt;}
.ws8{word-spacing:-9.280000pt;}
.ws3c{word-spacing:-8.987243pt;}
.ws11{word-spacing:-8.125199pt;}
.wsa{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-0.043801pt;}
.ws17{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.579684pt;}
.ws12{word-spacing:57.475936pt;}
.ws10{word-spacing:57.522603pt;}
.ws3b{word-spacing:61.960871pt;}
.ws41{word-spacing:62.798048pt;}
.ws39{word-spacing:66.910704pt;}
.ws3e{word-spacing:67.191744pt;}
.ws42{word-spacing:67.266696pt;}
.ws3f{word-spacing:67.271507pt;}
.ws40{word-spacing:67.592171pt;}
.ws3d{word-spacing:73.879785pt;}
.ws37{word-spacing:94.350747pt;}
.ws35{word-spacing:95.965854pt;}
.ws38{word-spacing:138.053170pt;}
.ws27{word-spacing:155.303943pt;}
.ws2d{word-spacing:157.410747pt;}
.ws25{word-spacing:158.018756pt;}
.ws1b{word-spacing:200.132442pt;}
.ws23{word-spacing:231.588040pt;}
.ws16{word-spacing:263.979333pt;}
.ws15{word-spacing:400.730526pt;}
.ws13{word-spacing:470.940111pt;}
.ws19{word-spacing:523.286236pt;}
.ws31{word-spacing:523.403016pt;}
.ws14{word-spacing:615.566000pt;}
.ws34{word-spacing:1026.005167pt;}
.ws29{word-spacing:1438.435759pt;}
.ws32{word-spacing:1470.185695pt;}
.ws24{word-spacing:1687.368793pt;}
.ws2f{word-spacing:1961.334878pt;}
.ws2c{word-spacing:2400.532783pt;}
._5{margin-left:-2403.157333pt;}
._1d{margin-left:-705.132488pt;}
._21{margin-left:-614.416599pt;}
._20{margin-left:-492.945680pt;}
._1f{margin-left:-490.299910pt;}
._d{margin-left:-288.785532pt;}
._11{margin-left:-200.398865pt;}
._10{margin-left:-112.058865pt;}
._e{margin-left:-110.985532pt;}
._22{margin-left:-52.147878pt;}
._15{margin-left:-49.760000pt;}
._f{margin-left:-43.878865pt;}
._1e{margin-left:-6.441979pt;}
._1b{margin-left:-4.614101pt;}
._1a{margin-left:-3.328877pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.097600pt;}
._8{width:2.400000pt;}
._7{width:3.386667pt;}
._b{width:4.464000pt;}
._c{width:5.395200pt;}
._12{width:6.638933pt;}
._9{width:7.600000pt;}
._a{width:8.928000pt;}
._13{width:10.517333pt;}
._18{width:12.912000pt;}
._17{width:14.021333pt;}
._1c{width:14.935467pt;}
._24{width:20.640000pt;}
._23{width:21.941333pt;}
._14{width:37.850667pt;}
._6{width:271.547733pt;}
._19{width:855.146667pt;}
._16{width:925.706667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fsd{font-size:23.198000pt;}
.fs21{font-size:26.880000pt;}
.fsc{font-size:29.227333pt;}
.fs25{font-size:30.702107pt;}
.fsf{font-size:31.678683pt;}
.fs28{font-size:31.733204pt;}
.fs8{font-size:32.000000pt;}
.fs23{font-size:32.328212pt;}
.fs27{font-size:34.338985pt;}
.fsb{font-size:34.560000pt;}
.fs26{font-size:34.869405pt;}
.fs22{font-size:34.910798pt;}
.fs7{font-size:37.120000pt;}
.fs24{font-size:37.466809pt;}
.fs1f{font-size:38.610286pt;}
.fs4{font-size:42.880000pt;}
.fs13{font-size:43.755655pt;}
.fse{font-size:43.801020pt;}
.fs10{font-size:46.774529pt;}
.fs15{font-size:47.847990pt;}
.fs9{font-size:48.000000pt;}
.fs1e{font-size:48.740852pt;}
.fs11{font-size:49.860079pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs20{font-size:55.430471pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs12{font-size:60.439193pt;}
.fs1a{font-size:62.935321pt;}
.fs17{font-size:63.332333pt;}
.fs1{font-size:64.000000pt;}
.fs14{font-size:68.781929pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.fs19{font-size:79.530602pt;}
.fs16{font-size:79.889296pt;}
.fs1b{font-size:90.489131pt;}
.fs18{font-size:90.861380pt;}
.fs1d{font-size:105.961534pt;}
.fs1c{font-size:133.106170pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:2.110474pt;}
.y16f{bottom:2.110480pt;}
.y162{bottom:2.163233pt;}
.y135{bottom:2.193780pt;}
.y142{bottom:2.302713pt;}
.y146{bottom:2.366224pt;}
.y14d{bottom:2.369031pt;}
.y127{bottom:2.369035pt;}
.y12b{bottom:2.369038pt;}
.y8d{bottom:2.560000pt;}
.y121{bottom:2.720000pt;}
.y95{bottom:2.866667pt;}
.y9c{bottom:2.873333pt;}
.y8f{bottom:2.880000pt;}
.y11c{bottom:2.924497pt;}
.y98{bottom:3.026667pt;}
.y9f{bottom:3.033333pt;}
.y168{bottom:3.036000pt;}
.y88{bottom:3.038322pt;}
.y92{bottom:3.040000pt;}
.y8b{bottom:3.360000pt;}
.yad{bottom:4.116213pt;}
.yed{bottom:4.790734pt;}
.y102{bottom:8.117242pt;}
.yd3{bottom:9.620830pt;}
.y15c{bottom:13.746667pt;}
.y12c{bottom:13.760000pt;}
.y167{bottom:13.916000pt;}
.y11f{bottom:13.920000pt;}
.yb2{bottom:16.320000pt;}
.yb0{bottom:16.480000pt;}
.yd4{bottom:16.554419pt;}
.y154{bottom:16.626667pt;}
.yc0{bottom:16.640000pt;}
.y9e{bottom:16.793333pt;}
.y132{bottom:16.800000pt;}
.y8a{bottom:16.960000pt;}
.y157{bottom:17.272641pt;}
.y16b{bottom:17.272645pt;}
.y13e{bottom:18.845951pt;}
.y82{bottom:21.537204pt;}
.y11b{bottom:21.861627pt;}
.y116{bottom:23.540184pt;}
.y118{bottom:23.970879pt;}
.yaf{bottom:27.720000pt;}
.ya8{bottom:30.165084pt;}
.y163{bottom:30.174483pt;}
.y87{bottom:30.228494pt;}
.y153{bottom:30.386667pt;}
.y124{bottom:30.400000pt;}
.y15e{bottom:30.553333pt;}
.y131{bottom:30.560000pt;}
.y136{bottom:30.658100pt;}
.y139{bottom:30.658102pt;}
.y147{bottom:33.068011pt;}
.y14a{bottom:33.068014pt;}
.y14e{bottom:33.107265pt;}
.y128{bottom:33.107267pt;}
.y84{bottom:35.890258pt;}
.yd0{bottom:37.924659pt;}
.yaa{bottom:37.995874pt;}
.ycb{bottom:40.667044pt;}
.y85{bottom:42.323174pt;}
.y11a{bottom:42.908009pt;}
.y165{bottom:43.209051pt;}
.y138{bottom:43.653936pt;}
.y164{bottom:43.708455pt;}
.y137{bottom:44.126146pt;}
.y166{bottom:44.178941pt;}
.y152{bottom:44.306667pt;}
.y13b{bottom:44.320000pt;}
.yab{bottom:44.763744pt;}
.ycd{bottom:44.807132pt;}
.y149{bottom:47.085398pt;}
.y150{bottom:47.141291pt;}
.y12a{bottom:47.141294pt;}
.y158{bottom:47.538444pt;}
.y16c{bottom:47.538447pt;}
.y170{bottom:47.538451pt;}
.y148{bottom:47.594727pt;}
.y14f{bottom:47.651226pt;}
.y129{bottom:47.651228pt;}
.ye4{bottom:48.143574pt;}
.yae{bottom:48.423492pt;}
.ye7{bottom:49.557801pt;}
.yd2{bottom:50.342805pt;}
.y11e{bottom:50.483629pt;}
.y2{bottom:51.546667pt;}
.y59{bottom:51.552000pt;}
.ye2{bottom:51.598824pt;}
.y80{bottom:51.758665pt;}
.y13f{bottom:51.868565pt;}
.y143{bottom:51.868568pt;}
.y11d{bottom:52.162187pt;}
.yea{bottom:55.680870pt;}
.y114{bottom:55.948075pt;}
.y83{bottom:61.192982pt;}
.yec{bottom:61.259037pt;}
.y15a{bottom:61.654250pt;}
.y16e{bottom:61.654253pt;}
.y159{bottom:62.162798pt;}
.y16d{bottom:62.162800pt;}
.ya6{bottom:63.022150pt;}
.y117{bottom:66.448193pt;}
.y141{bottom:67.270133pt;}
.y119{bottom:67.311506pt;}
.y140{bottom:67.825003pt;}
.y160{bottom:68.310667pt;}
.y1{bottom:68.346667pt;}
.y58{bottom:68.352000pt;}
.y133{bottom:68.480000pt;}
.ycf{bottom:68.918062pt;}
.y86{bottom:69.885445pt;}
.y125{bottom:71.400000pt;}
.y12e{bottom:72.640000pt;}
.ya9{bottom:76.046586pt;}
.y81{bottom:80.063963pt;}
.yac{bottom:82.264439pt;}
.ye8{bottom:82.541741pt;}
.y9d{bottom:84.838667pt;}
.y155{bottom:86.906667pt;}
.y115{bottom:87.879124pt;}
.ydc{bottom:91.552000pt;}
.y13c{bottom:93.306667pt;}
.yc9{bottom:93.754354pt;}
.y10f{bottom:96.672000pt;}
.y53{bottom:96.680000pt;}
.yd1{bottom:97.222102pt;}
.yd5{bottom:97.894442pt;}
.y15f{bottom:98.916000pt;}
.y15d{bottom:98.918667pt;}
.ya7{bottom:102.056750pt;}
.ye0{bottom:104.533133pt;}
.ydb{bottom:105.472000pt;}
.yeb{bottom:107.988383pt;}
.y10e{bottom:110.432000pt;}
.y52{bottom:110.440000pt;}
.y161{bottom:112.906667pt;}
.ycc{bottom:114.452677pt;}
.yce{bottom:115.850381pt;}
.ye9{bottom:116.234368pt;}
.y112{bottom:116.480000pt;}
.ye3{bottom:118.354134pt;}
.yda{bottom:119.232000pt;}
.ye5{bottom:119.689618pt;}
.y9b{bottom:122.758667pt;}
.y51{bottom:124.200000pt;}
.y10d{bottom:124.352000pt;}
.y100{bottom:125.688862pt;}
.yd9{bottom:133.152000pt;}
.y50{bottom:137.960000pt;}
.y10c{bottom:138.106667pt;}
.y9a{bottom:146.120000pt;}
.yca{bottom:146.171444pt;}
.yd8{bottom:146.906667pt;}
.ya4{bottom:146.920000pt;}
.y10b{bottom:151.866667pt;}
.y4f{bottom:151.880000pt;}
.ye1{bottom:156.837496pt;}
.yd7{bottom:160.826667pt;}
.y4e{bottom:165.640000pt;}
.y10a{bottom:165.786667pt;}
.y99{bottom:169.480000pt;}
.yd6{bottom:171.866667pt;}
.yc8{bottom:171.906665pt;}
.ye6{bottom:171.993982pt;}
.y151{bottom:178.920000pt;}
.y4d{bottom:179.400000pt;}
.y109{bottom:179.546667pt;}
.y101{bottom:184.477036pt;}
.yee{bottom:187.074874pt;}
.y156{bottom:192.706667pt;}
.y97{bottom:192.840000pt;}
.y108{bottom:193.306667pt;}
.y4c{bottom:193.320000pt;}
.y107{bottom:207.066667pt;}
.y4b{bottom:207.080000pt;}
.y96{bottom:216.360000pt;}
.y4a{bottom:220.840000pt;}
.y106{bottom:220.986667pt;}
.y105{bottom:234.586667pt;}
.y49{bottom:234.600000pt;}
.y94{bottom:239.720000pt;}
.y48{bottom:248.520000pt;}
.y104{bottom:248.666667pt;}
.y103{bottom:262.306667pt;}
.y47{bottom:262.480000pt;}
.y93{bottom:263.106667pt;}
.yff{bottom:273.506667pt;}
.y46{bottom:276.240000pt;}
.y14b{bottom:277.346667pt;}
.y91{bottom:286.466667pt;}
.y45{bottom:289.840000pt;}
.y14c{bottom:291.106667pt;}
.y44{bottom:301.200000pt;}
.y38{bottom:302.890000pt;}
.y3d{bottom:304.500000pt;}
.y90{bottom:309.986667pt;}
.y198{bottom:321.186667pt;}
.y41{bottom:323.417033pt;}
.y3e{bottom:325.681533pt;}
.y39{bottom:326.593167pt;}
.y3b{bottom:326.855667pt;}
.y3c{bottom:329.145833pt;}
.y26{bottom:331.683333pt;}
.y8e{bottom:333.346667pt;}
.y27{bottom:334.213833pt;}
.y197{bottom:335.106667pt;}
.yc7{bottom:340.226667pt;}
.y42{bottom:341.573867pt;}
.y196{bottom:348.866667pt;}
.y40{bottom:348.897033pt;}
.y3a{bottom:350.043167pt;}
.yc6{bottom:354.146667pt;}
.y8c{bottom:356.706667pt;}
.y3f{bottom:359.748200pt;}
.y144{bottom:361.506667pt;}
.y195{bottom:362.626667pt;}
.yc5{bottom:367.906667pt;}
.y43{bottom:368.827200pt;}
.y145{bottom:375.306663pt;}
.y194{bottom:376.386667pt;}
.y89{bottom:380.066667pt;}
.yc4{bottom:381.666667pt;}
.y2f{bottom:389.433333pt;}
.y2b{bottom:389.666667pt;}
.y37{bottom:389.900000pt;}
.y193{bottom:390.146667pt;}
.yc3{bottom:395.426667pt;}
.y7f{bottom:397.039996pt;}
.y192{bottom:403.906667pt;}
.y30{bottom:404.331667pt;}
.y35{bottom:404.565000pt;}
.y2a{bottom:407.096667pt;}
.yc2{bottom:409.346667pt;}
.y33{bottom:410.876667pt;}
.y2c{bottom:411.868333pt;}
.y191{bottom:417.826667pt;}
.yc1{bottom:423.266667pt;}
.y28{bottom:426.533333pt;}
.y32{bottom:430.313333pt;}
.y190{bottom:431.586667pt;}
.ybf{bottom:434.786667pt;}
.y31{bottom:443.170000pt;}
.y18f{bottom:445.346667pt;}
.y13a{bottom:445.666667pt;}
.y34{bottom:449.481667pt;}
.y2d{bottom:450.461667pt;}
.y18e{bottom:459.106667pt;}
.y13d{bottom:459.439996pt;}
.y36{bottom:462.338333pt;}
.y29{bottom:465.138333pt;}
.ybe{bottom:465.186667pt;}
.y2e{bottom:469.863333pt;}
.y18d{bottom:473.026667pt;}
.y25{bottom:483.908000pt;}
.ybd{bottom:485.666667pt;}
.y18c{bottom:486.946667pt;}
.y7e{bottom:490.946667pt;}
.yfe{bottom:492.226667pt;}
.y24{bottom:497.828000pt;}
.y18b{bottom:500.866667pt;}
.ybc{bottom:506.013333pt;}
.y23{bottom:511.614667pt;}
.y18a{bottom:514.813333pt;}
.y7d{bottom:518.653333pt;}
.yfd{bottom:519.773333pt;}
.y22{bottom:525.534667pt;}
.ybb{bottom:526.493333pt;}
.y189{bottom:528.573333pt;}
.y7c{bottom:532.413333pt;}
.yfc{bottom:533.693333pt;}
.y21{bottom:538.974667pt;}
.y188{bottom:542.493333pt;}
.y7b{bottom:546.333333pt;}
.yba{bottom:546.813333pt;}
.yfb{bottom:547.773333pt;}
.y130{bottom:550.493333pt;}
.y187{bottom:556.253333pt;}
.y7a{bottom:560.093333pt;}
.yfa{bottom:561.533333pt;}
.y134{bottom:564.373330pt;}
.y20{bottom:566.174667pt;}
.yb9{bottom:567.293333pt;}
.y186{bottom:570.173333pt;}
.y79{bottom:573.693333pt;}
.yf9{bottom:575.293333pt;}
.y1f{bottom:577.374667pt;}
.y185{bottom:584.093333pt;}
.yb8{bottom:587.613333pt;}
.yf8{bottom:589.213333pt;}
.y78{bottom:601.693333pt;}
.yf7{bottom:602.973333pt;}
.yb7{bottom:608.093333pt;}
.y1e{bottom:610.014667pt;}
.y184{bottom:611.773333pt;}
.y77{bottom:615.453333pt;}
.yf6{bottom:616.893333pt;}
.y1d{bottom:623.774667pt;}
.y183{bottom:625.533333pt;}
.yb6{bottom:628.413333pt;}
.y76{bottom:629.213333pt;}
.y12d{bottom:630.493333pt;}
.yf5{bottom:630.653333pt;}
.y1c{bottom:637.534667pt;}
.y182{bottom:639.453333pt;}
.y75{bottom:643.133333pt;}
.y12f{bottom:644.239993pt;}
.yf4{bottom:644.413333pt;}
.yb5{bottom:648.893333pt;}
.y1b{bottom:651.454667pt;}
.y181{bottom:653.213333pt;}
.y74{bottom:656.893333pt;}
.yf3{bottom:658.333333pt;}
.y180{bottom:666.973333pt;}
.yb4{bottom:669.213333pt;}
.y73{bottom:670.653333pt;}
.y1a{bottom:671.134667pt;}
.yf2{bottom:672.093333pt;}
.y17f{bottom:680.733333pt;}
.y72{bottom:684.573333pt;}
.yf1{bottom:686.013333pt;}
.yb1{bottom:689.693333pt;}
.y19{bottom:691.294667pt;}
.y17e{bottom:694.653333pt;}
.y71{bottom:698.333333pt;}
.yf0{bottom:699.933333pt;}
.y18{bottom:705.054667pt;}
.y13{bottom:707.628000pt;}
.y17d{bottom:708.413333pt;}
.yb3{bottom:710.013333pt;}
.ydf{bottom:710.773333pt;}
.yef{bottom:710.813333pt;}
.y70{bottom:712.253333pt;}
.y123{bottom:714.653333pt;}
.y17{bottom:718.974667pt;}
.y17c{bottom:722.013333pt;}
.y6f{bottom:726.013333pt;}
.y126{bottom:728.373326pt;}
.ya3{bottom:730.493333pt;}
.y16{bottom:732.734667pt;}
.y17b{bottom:735.933333pt;}
.y6e{bottom:739.773333pt;}
.y55{bottom:742.986667pt;}
.y15{bottom:743.161333pt;}
.y14{bottom:745.628000pt;}
.y17a{bottom:749.693333pt;}
.y6d{bottom:753.573333pt;}
.y12{bottom:756.426667pt;}
.ya5{bottom:758.173326pt;}
.y11{bottom:761.093333pt;}
.y10{bottom:761.760000pt;}
.y179{bottom:763.813333pt;}
.y54{bottom:766.266667pt;}
.y6c{bottom:767.493333pt;}
.y178{bottom:777.733333pt;}
.y6b{bottom:781.253333pt;}
.y177{bottom:791.493333pt;}
.y120{bottom:792.613333pt;}
.yf{bottom:793.706667pt;}
.y6a{bottom:795.173333pt;}
.y176{bottom:805.253333pt;}
.y69{bottom:808.933333pt;}
.y122{bottom:811.333333pt;}
.ye{bottom:813.893333pt;}
.y175{bottom:819.173333pt;}
.y68{bottom:822.693333pt;}
.y111{bottom:829.893333pt;}
.y174{bottom:832.773333pt;}
.y67{bottom:836.613333pt;}
.y113{bottom:843.773333pt;}
.y173{bottom:844.613333pt;}
.y66{bottom:850.053333pt;}
.yd{bottom:850.373333pt;}
.y65{bottom:863.973333pt;}
.y171{bottom:872.773333pt;}
.y64{bottom:877.893333pt;}
.y172{bottom:886.639993pt;}
.ya2{bottom:891.973333pt;}
.yc{bottom:903.173333pt;}
.y63{bottom:905.893333pt;}
.y9{bottom:919.173333pt;}
.yde{bottom:919.493333pt;}
.y62{bottom:919.653333pt;}
.yb{bottom:923.813333pt;}
.y61{bottom:933.413333pt;}
.y8{bottom:939.813333pt;}
.ya1{bottom:947.173333pt;}
.y60{bottom:947.333333pt;}
.ya{bottom:952.293333pt;}
.y169{bottom:956.933333pt;}
.y110{bottom:960.933333pt;}
.y5f{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y16a{bottom:970.773326pt;}
.y5e{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y5d{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.ya0{bottom:1002.373333pt;}
.y5c{bottom:1002.533333pt;}
.y4{bottom:1013.600000pt;}
.y5b{bottom:1016.320000pt;}
.y3{bottom:1029.546667pt;}
.ydd{bottom:1030.080000pt;}
.y5a{bottom:1030.240000pt;}
.y57{bottom:1044.640000pt;}
.y56{bottom:1061.120000pt;}
.h41{height:17.906667pt;}
.h29{height:19.680000pt;}
.h2a{height:19.706667pt;}
.h2b{height:19.826667pt;}
.h28{height:19.840000pt;}
.h1d{height:22.706667pt;}
.h20{height:22.713333pt;}
.h1f{height:22.738667pt;}
.h44{height:26.381250pt;}
.h5f{height:27.506667pt;}
.h2c{height:29.746667pt;}
.h12{height:30.483195pt;}
.hb{height:31.390625pt;}
.h5b{height:33.096740pt;}
.h4a{height:33.717315pt;}
.h10{height:33.918750pt;}
.h57{height:35.814488pt;}
.h52{height:36.367699pt;}
.h46{height:36.410871pt;}
.h13{height:36.535862pt;}
.h40{height:36.626667pt;}
.h21{height:37.113333pt;}
.h14{height:38.593862pt;}
.h4e{height:39.076711pt;}
.h27{height:40.160000pt;}
.h6{height:43.215000pt;}
.h17{height:45.683095pt;}
.hc{height:47.085938pt;}
.h11{height:47.109375pt;}
.he{height:48.375000pt;}
.h19{height:48.784372pt;}
.h7{height:49.597187pt;}
.h60{height:50.062500pt;}
.h3c{height:50.835186pt;}
.h5a{height:51.664446pt;}
.h49{height:51.731647pt;}
.h1a{height:52.002504pt;}
.h8{height:52.108438pt;}
.h15{height:52.526250pt;}
.h1e{height:53.370000pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h51{height:55.798066pt;}
.h53{height:55.864300pt;}
.h45{height:55.864307pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h3f{height:62.724680pt;}
.h37{height:62.812500pt;}
.h24{height:63.036189pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.hd{height:67.982625pt;}
.h56{height:70.273179pt;}
.h5d{height:70.273186pt;}
.h25{height:71.737403pt;}
.h5{height:72.885000pt;}
.h1b{height:73.160222pt;}
.h18{height:74.386861pt;}
.h9{height:75.465000pt;}
.h4d{height:76.674134pt;}
.h42{height:77.300000pt;}
.h43{height:77.312000pt;}
.h26{height:77.520331pt;}
.h58{height:79.193333pt;}
.h59{height:79.196000pt;}
.h48{height:79.360000pt;}
.h3e{height:81.137669pt;}
.h33{height:82.947932pt;}
.h2e{height:83.322039pt;}
.h4f{height:83.506667pt;}
.h50{height:83.512000pt;}
.h47{height:83.520000pt;}
.h5e{height:84.020000pt;}
.h5c{height:84.026667pt;}
.h34{height:88.604842pt;}
.h16{height:90.276467pt;}
.h2f{height:94.291578pt;}
.h35{height:94.377336pt;}
.h54{height:97.778667pt;}
.h55{height:97.780000pt;}
.h3b{height:99.675173pt;}
.h4b{height:104.186667pt;}
.h4c{height:104.192000pt;}
.h36{height:104.938065pt;}
.h1c{height:107.192000pt;}
.h31{height:114.220605pt;}
.h3d{height:114.693439pt;}
.h23{height:116.147337pt;}
.h3a{height:127.352000pt;}
.h39{height:138.825576pt;}
.h22{height:157.786667pt;}
.h2d{height:165.476307pt;}
.h30{height:201.916926pt;}
.h32{height:205.677160pt;}
.h38{height:215.651150pt;}
.h0{height:1122.666667pt;}
.wc{width:40.672000pt;}
.w12{width:40.992000pt;}
.wd{width:67.506667pt;}
.w13{width:67.826667pt;}
.wf{width:79.218667pt;}
.w1d{width:86.578667pt;}
.w1e{width:86.586667pt;}
.w1c{width:86.706667pt;}
.w1f{width:86.880000pt;}
.wa{width:91.510667pt;}
.w5{width:99.378667pt;}
.w22{width:116.200377pt;}
.w1a{width:123.190667pt;}
.w24{width:131.848595pt;}
.w25{width:131.915821pt;}
.w6{width:135.546667pt;}
.w23{width:137.606778pt;}
.w26{width:137.621722pt;}
.w21{width:141.946292pt;}
.w3{width:143.057333pt;}
.wb{width:169.773333pt;}
.w11{width:170.093333pt;}
.w1b{width:177.653333pt;}
.w20{width:177.666667pt;}
.w10{width:182.586667pt;}
.w17{width:194.162748pt;}
.w4{width:209.626667pt;}
.we{width:262.133333pt;}
.w1{width:441.581977pt;}
.w19{width:504.524146pt;}
.w9{width:507.976723pt;}
.w15{width:552.117300pt;}
.w7{width:588.600000pt;}
.w2{width:588.613333pt;}
.w16{width:624.007494pt;}
.w14{width:633.880000pt;}
.w8{width:633.893333pt;}
.w27{width:649.400000pt;}
.w18{width:649.413333pt;}
.w0{width:794.666667pt;}
.xd{left:-333.773333pt;}
.xe{left:-316.693333pt;}
.xb{left:-81.493333pt;}
.xc{left:-32.840000pt;}
.x0{left:0.000000pt;}
.x3d{left:6.880000pt;}
.x59{left:12.986667pt;}
.x61{left:15.666667pt;}
.x63{left:17.626667pt;}
.x5a{left:20.146667pt;}
.x4e{left:22.080000pt;}
.x56{left:24.950667pt;}
.x65{left:25.906667pt;}
.x42{left:27.666667pt;}
.x60{left:29.906667pt;}
.x54{left:30.861728pt;}
.x64{left:34.586667pt;}
.x8f{left:37.232057pt;}
.x5f{left:39.510667pt;}
.x44{left:40.480000pt;}
.x4a{left:41.786667pt;}
.x47{left:43.866667pt;}
.x2{left:47.146667pt;}
.xa{left:48.506667pt;}
.x58{left:52.026667pt;}
.x33{left:54.026667pt;}
.x3e{left:56.465333pt;}
.x80{left:58.334772pt;}
.x4d{left:59.520000pt;}
.x40{left:60.800000pt;}
.x13{left:62.578667pt;}
.x67{left:63.834149pt;}
.x11{left:66.080000pt;}
.x45{left:68.465333pt;}
.x4b{left:72.320000pt;}
.x48{left:74.720000pt;}
.x46{left:77.280000pt;}
.x70{left:78.761467pt;}
.x4c{left:80.640000pt;}
.x49{left:81.600000pt;}
.x35{left:84.174669pt;}
.x62{left:85.440000pt;}
.x93{left:86.833045pt;}
.x89{left:89.000000pt;}
.x8a{left:91.519291pt;}
.x6f{left:95.178081pt;}
.x50{left:96.470504pt;}
.x8e{left:98.206910pt;}
.x34{left:101.335848pt;}
.x3b{left:107.392000pt;}
.x5c{left:109.146667pt;}
.x95{left:110.592000pt;}
.x76{left:114.879035pt;}
.x7e{left:118.311523pt;}
.x7d{left:119.661380pt;}
.x38{left:120.803780pt;}
.x66{left:122.013332pt;}
.x84{left:135.426772pt;}
.x92{left:139.080000pt;}
.x77{left:140.052757pt;}
.x4f{left:144.079999pt;}
.x7f{left:145.813333pt;}
.x8c{left:147.080000pt;}
.x15{left:149.338080pt;}
.x8{left:155.826667pt;}
.x36{left:157.846455pt;}
.x6b{left:160.082505pt;}
.x52{left:166.921662pt;}
.x51{left:167.868203pt;}
.x25{left:174.615200pt;}
.x57{left:177.000000pt;}
.x17{left:180.319920pt;}
.x19{left:186.104800pt;}
.x79{left:191.114999pt;}
.x18{left:192.970504pt;}
.x78{left:195.112441pt;}
.x14{left:201.335200pt;}
.x16{left:205.610400pt;}
.x91{left:207.746665pt;}
.x37{left:217.843875pt;}
.x8d{left:220.746665pt;}
.x90{left:223.613332pt;}
.x8b{left:231.413332pt;}
.x5{left:237.546667pt;}
.x3{left:239.013333pt;}
.x32{left:248.000000pt;}
.x83{left:249.228120pt;}
.x3f{left:250.786667pt;}
.x6e{left:255.586667pt;}
.x72{left:268.777169pt;}
.x2d{left:270.486560pt;}
.x31{left:272.373333pt;}
.x4{left:278.800000pt;}
.x81{left:286.819535pt;}
.x7c{left:301.013332pt;}
.x3a{left:302.412705pt;}
.x10{left:309.520000pt;}
.x68{left:313.895147pt;}
.x1a{left:320.506400pt;}
.x2b{left:322.523760pt;}
.x1c{left:331.862400pt;}
.x2c{left:343.205040pt;}
.x9{left:347.600000pt;}
.x6c{left:353.307260pt;}
.x94{left:357.373333pt;}
.x1b{left:358.729360pt;}
.x7a{left:363.953556pt;}
.x12{left:365.405333pt;}
.x85{left:378.506667pt;}
.x71{left:380.383721pt;}
.x5e{left:388.426667pt;}
.x2e{left:389.493432pt;}
.x1{left:390.666667pt;}
.x30{left:398.000000pt;}
.x39{left:422.055830pt;}
.x20{left:441.882000pt;}
.x27{left:444.660880pt;}
.x6{left:446.373333pt;}
.x5b{left:456.586667pt;}
.x41{left:460.746667pt;}
.x86{left:465.546667pt;}
.x7{left:470.813333pt;}
.x82{left:474.835808pt;}
.x75{left:478.507375pt;}
.x53{left:483.817404pt;}
.x2a{left:485.235200pt;}
.x69{left:488.299451pt;}
.x1f{left:492.743520pt;}
.x26{left:495.522400pt;}
.x1e{left:505.662640pt;}
.x3c{left:514.981333pt;}
.x6a{left:519.681359pt;}
.x28{left:520.826240pt;}
.x24{left:526.116800pt;}
.x1d{left:530.659200pt;}
.x5d{left:536.133333pt;}
.x87{left:552.613333pt;}
.x43{left:560.453333pt;}
.x55{left:567.168000pt;}
.x29{left:572.369120pt;}
.x74{left:574.022528pt;}
.x21{left:581.587520pt;}
.x73{left:590.096988pt;}
.x23{left:619.797120pt;}
.x22{left:632.449040pt;}
.x88{left:639.520000pt;}
.x2f{left:657.066667pt;}
.x6d{left:674.240000pt;}
.x7b{left:710.240000pt;}
.xf{left:805.573333pt;}
}




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