
    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_bb139967b9d9ad8583fb0954.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956055;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_0d63a06ff36521d9d4a29665.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_a53dfc7d1756ffa6bf6ec648.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_36b1e35249fa9ccf8ed7fda0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930176;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_0d3c3990a371fe9a136b1ac0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051000;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_b358d3f8ffa61b0f4beb7e49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924805;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_136242aa0c5ad05a5fcce139.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956055;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_ae286532336246beeb59cb58.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_36d7167a4d3d374eba2dd305.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bcc7124d37bd3bb7942072a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_3370a46d011fe4362cb0bea5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.038574;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_c9f2bd939211eda19d2de8de.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01a876f79a2c7a30e5540ce2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5ec1faa2bfe256d2de48d4a6.woff2')format("woff");}.fff{font-family:fff;line-height:0.927246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_53420edbb40703bc931495ea.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.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);}
.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);}
.v4{vertical-align:-51.000000px;}
.v5{vertical-align:-16.080000px;}
.v3{vertical-align:-12.672000px;}
.v7{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.528000px;}
.v6{vertical-align:21.600000px;}
.v2{vertical-align:78.060000px;}
.ls21{letter-spacing:-0.984000px;}
.ls3a{letter-spacing:-0.654000px;}
.ls37{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.466800px;}
.ls11{letter-spacing:-0.448800px;}
.ls22{letter-spacing:-0.319200px;}
.ls8{letter-spacing:-0.318000px;}
.ls24{letter-spacing:-0.300600px;}
.ls1e{letter-spacing:-0.264000px;}
.ls46{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.191400px;}
.ls2d{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.175800px;}
.ls16{letter-spacing:-0.148800px;}
.ls47{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.126000px;}
.ls34{letter-spacing:-0.112200px;}
.ls25{letter-spacing:-0.102000px;}
.ls3b{letter-spacing:-0.090600px;}
.ls35{letter-spacing:-0.072000px;}
.ls42{letter-spacing:-0.041760px;}
.ls3{letter-spacing:-0.036000px;}
.ls39{letter-spacing:-0.010800px;}
.ls41{letter-spacing:-0.010380px;}
.ls4{letter-spacing:-0.008475px;}
.ls38{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.025200px;}
.ls36{letter-spacing:0.040440px;}
.ls15{letter-spacing:0.045480px;}
.ls44{letter-spacing:0.064200px;}
.ls9{letter-spacing:0.065400px;}
.ls32{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.080640px;}
.ls45{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.100800px;}
.ls2e{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.115920px;}
.ls1a{letter-spacing:0.142800px;}
.ls2{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.144600px;}
.ls1d{letter-spacing:0.169200px;}
.ls43{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.252000px;}
.ls20{letter-spacing:0.253200px;}
.ls10{letter-spacing:0.295920px;}
.lsd{letter-spacing:0.297360px;}
.ls26{letter-spacing:0.313200px;}
.ls6{letter-spacing:0.316800px;}
.ls19{letter-spacing:0.317400px;}
.ls40{letter-spacing:0.356400px;}
.ls1f{letter-spacing:0.429600px;}
.lsb{letter-spacing:0.531257px;}
.ls27{letter-spacing:0.618000px;}
.ls33{letter-spacing:20.088000px;}
.ls18{letter-spacing:22.114080px;}
.ls30{letter-spacing:22.151520px;}
.ls17{letter-spacing:23.357520px;}
.ls5{letter-spacing:31.546080px;}
.ls13{letter-spacing:34.155648px;}
.ls12{letter-spacing:34.236000px;}
.lsa{letter-spacing:35.197920px;}
.lse{letter-spacing:42.351120px;}
.ls3d{letter-spacing:45.417600px;}
.ls3c{letter-spacing:45.504000px;}
.ls3e{letter-spacing:45.597600px;}
.ls3f{letter-spacing:45.684000px;}
.ls28{letter-spacing:70.560000px;}
.ls2a{letter-spacing:100.080000px;}
.ls29{letter-spacing:128.880000px;}
.ls2f{letter-spacing:2566.108128px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(255,233,157),0 0.015em rgb(255,233,157),0.015em 0 rgb(255,233,157),0 -0.015em  rgb(255,233,157);}
.sc5{text-shadow:-0.015em 0 rgb(211,181,233),0 0.015em rgb(211,181,233),0.015em 0 rgb(211,181,233),0 -0.015em  rgb(211,181,233);}
.sc4{text-shadow:-0.015em 0 rgb(253,169,183),0 0.015em rgb(253,169,183),0.015em 0 rgb(253,169,183),0 -0.015em  rgb(253,169,183);}
.sc2{text-shadow:-0.015em 0 rgb(220,237,167),0 0.015em rgb(220,237,167),0.015em 0 rgb(220,237,167),0 -0.015em  rgb(220,237,167);}
.sc3{text-shadow:-0.015em 0 rgb(157,209,248),0 0.015em rgb(157,209,248),0.015em 0 rgb(157,209,248),0 -0.015em  rgb(157,209,248);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(255,233,157);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(211,181,233);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(253,169,183);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(220,237,167);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(157,209,248);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-53.262000px;}
.ws16{word-spacing:-48.096000px;}
.ws15{word-spacing:-48.060000px;}
.ws3{word-spacing:-45.166176px;}
.ws2{word-spacing:-45.127440px;}
.ws71{word-spacing:-45.000000px;}
.ws5d{word-spacing:-42.067296px;}
.ws12{word-spacing:-41.772240px;}
.ws78{word-spacing:-38.774736px;}
.ws6b{word-spacing:-36.000000px;}
.ws67{word-spacing:-35.459424px;}
.ws11{word-spacing:-35.424000px;}
.ws9{word-spacing:-34.093819px;}
.ws14{word-spacing:-33.978216px;}
.wsd{word-spacing:-32.344560px;}
.wsb{word-spacing:-32.026560px;}
.ws6{word-spacing:-29.052000px;}
.ws5c{word-spacing:-28.872000px;}
.ws75{word-spacing:-24.300000px;}
.ws2d{word-spacing:-22.699296px;}
.ws18{word-spacing:-22.660560px;}
.ws2f{word-spacing:-22.396560px;}
.ws66{word-spacing:-20.272464px;}
.ws64{word-spacing:-20.232000px;}
.ws77{word-spacing:-18.720000px;}
.ws6f{word-spacing:-16.114176px;}
.ws6d{word-spacing:-16.075440px;}
.ws70{word-spacing:-16.033680px;}
.wse{word-spacing:-2.421360px;}
.wsc{word-spacing:-1.741200px;}
.wsf{word-spacing:-1.730880px;}
.ws13{word-spacing:-1.348800px;}
.ws7{word-spacing:-1.116000px;}
.ws10{word-spacing:-1.112400px;}
.ws17{word-spacing:-0.868896px;}
.wsa{word-spacing:-0.867600px;}
.ws53{word-spacing:-0.796320px;}
.ws5a{word-spacing:-0.743040px;}
.ws4{word-spacing:-0.540000px;}
.ws61{word-spacing:-0.444960px;}
.ws1{word-spacing:-0.001440px;}
.ws0{word-spacing:0.000000px;}
.ws5f{word-spacing:0.067968px;}
.ws6c{word-spacing:0.120960px;}
.ws60{word-spacing:0.141600px;}
.ws69{word-spacing:0.180000px;}
.ws54{word-spacing:0.210600px;}
.ws6a{word-spacing:0.288000px;}
.ws5{word-spacing:0.324000px;}
.ws56{word-spacing:0.373680px;}
.ws68{word-spacing:0.576011px;}
.ws55{word-spacing:0.945360px;}
.ws76{word-spacing:1.080000px;}
.ws63{word-spacing:1.278480px;}
.ws40{word-spacing:1.411920px;}
.ws62{word-spacing:1.923696px;}
.ws6e{word-spacing:2.171520px;}
.ws52{word-spacing:2.544960px;}
.ws3f{word-spacing:2.627280px;}
.ws51{word-spacing:2.669040px;}
.ws42{word-spacing:2.856960px;}
.ws4e{word-spacing:2.946240px;}
.ws50{word-spacing:3.198960px;}
.ws4d{word-spacing:3.443760px;}
.ws41{word-spacing:3.497040px;}
.ws4f{word-spacing:3.632400px;}
.ws47{word-spacing:4.505472px;}
.ws45{word-spacing:4.545216px;}
.ws46{word-spacing:5.611464px;}
.ws65{word-spacing:6.475536px;}
.ws38{word-spacing:6.477120px;}
.ws3a{word-spacing:6.683760px;}
.ws39{word-spacing:6.705360px;}
.ws3d{word-spacing:6.853680px;}
.ws43{word-spacing:7.604640px;}
.ws44{word-spacing:7.641000px;}
.ws3e{word-spacing:8.145360px;}
.ws58{word-spacing:9.392400px;}
.ws2a{word-spacing:9.658368px;}
.ws33{word-spacing:10.283760px;}
.ws2c{word-spacing:10.338048px;}
.ws57{word-spacing:10.488240px;}
.ws37{word-spacing:10.537680px;}
.ws35{word-spacing:10.594080px;}
.ws4a{word-spacing:10.730880px;}
.ws49{word-spacing:10.750320px;}
.ws2b{word-spacing:10.795968px;}
.ws59{word-spacing:11.003760px;}
.ws4c{word-spacing:11.012400px;}
.ws1b{word-spacing:11.193840px;}
.ws4b{word-spacing:11.496960px;}
.ws1d{word-spacing:11.638560px;}
.ws1a{word-spacing:11.861280px;}
.ws36{word-spacing:12.072480px;}
.ws1c{word-spacing:12.133200px;}
.ws34{word-spacing:12.137040px;}
.ws31{word-spacing:13.185360px;}
.ws30{word-spacing:13.205520px;}
.ws32{word-spacing:13.551120px;}
.ws2e{word-spacing:13.625280px;}
.ws21{word-spacing:14.376960px;}
.ws1f{word-spacing:14.999040px;}
.ws20{word-spacing:15.096960px;}
.ws22{word-spacing:15.334320px;}
.ws1e{word-spacing:15.398640px;}
.ws25{word-spacing:30.649680px;}
.ws23{word-spacing:31.169520px;}
.ws26{word-spacing:31.581360px;}
.ws24{word-spacing:32.297040px;}
.ws3c{word-spacing:33.166800px;}
.ws3b{word-spacing:33.737040px;}
.ws27{word-spacing:36.519120px;}
.ws29{word-spacing:36.880560px;}
.ws28{word-spacing:37.337040px;}
.ws48{word-spacing:45.907920px;}
.ws5b{word-spacing:54.588000px;}
.ws5e{word-spacing:87.324000px;}
.ws73{word-spacing:284.940120px;}
.ws72{word-spacing:320.445600px;}
.ws74{word-spacing:976.787712px;}
.ws8{word-spacing:1045.043760px;}
._d{margin-left:-9.281054px;}
._18{margin-left:-7.629921px;}
._8{margin-left:-6.586753px;}
._6{margin-left:-4.799040px;}
._7{margin-left:-3.721325px;}
._5{margin-left:-2.673120px;}
._0{margin-left:-1.174320px;}
._1{width:1.006560px;}
._3{width:2.013120px;}
._9{width:3.748755px;}
._17{width:6.881531px;}
._a{width:7.918560px;}
._1a{width:17.176320px;}
._19{width:18.567736px;}
._c{width:21.096480px;}
._b{width:22.488982px;}
._15{width:25.371073px;}
._13{width:26.686800px;}
._14{width:28.508448px;}
._12{width:30.367440px;}
._e{width:32.878656px;}
._10{width:34.926480px;}
._2{width:47.052240px;}
._11{width:60.413760px;}
._f{width:246.528000px;}
._16{width:2758.695360px;}
._4{width:4850.064000px;}
.fc1a{color:rgb(124,224,222);}
.fc19{color:rgb(255,235,163);}
.fc18{color:rgb(220,237,167);}
.fc15{color:rgb(0,0,0);}
.fc16{color:rgb(208,218,225);}
.fc10{color:rgb(204,153,0);}
.fc14{color:transparent;}
.fcd{color:rgb(231,223,235);}
.fc0{color:rgb(255,255,255);}
.fcf{color:rgb(221,255,244);}
.fc3{color:rgb(127,127,127);}
.fc13{color:rgb(255,244,206);}
.fc8{color:rgb(157,209,248);}
.fcc{color:rgb(191,191,191);}
.fc17{color:rgb(137,137,137);}
.fce{color:rgb(115,143,166);}
.fc1{color:rgb(162,181,196);}
.fc2{color:rgb(255,244,205);}
.fc4{color:rgb(255,175,175);}
.fc1b{color:rgb(253,169,183);}
.fc11{color:rgb(204,102,0);}
.fc6{color:rgb(201,230,251);}
.fc9{color:rgb(211,181,233);}
.fc7{color:rgb(210,236,182);}
.fcb{color:rgb(192,228,152);}
.fc12{color:rgb(204,51,0);}
.fc5{color:rgb(225,204,240);}
.fca{color:rgb(255,233,157);}
.fs20{font-size:48.240000px;}
.fs1f{font-size:59.760000px;}
.fs21{font-size:59.904000px;}
.fsa{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fse{font-size:75.893905px;}
.fs11{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fsf{font-size:88.795869px;}
.fs23{font-size:90.000000px;}
.fs24{font-size:90.144000px;}
.fs1b{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs1a{font-size:120.384000px;}
.fs13{font-size:126.000000px;}
.fs14{font-size:126.144000px;}
.fsb{font-size:126.742821px;}
.fsc{font-size:126.894609px;}
.fsd{font-size:131.760000px;}
.fs1d{font-size:131.904000px;}
.fs10{font-size:144.000000px;}
.fs1e{font-size:144.144000px;}
.fs18{font-size:156.240000px;}
.fs19{font-size:156.384000px;}
.fs1{font-size:167.760000px;}
.fs2{font-size:167.904000px;}
.fs7{font-size:180.000000px;}
.fs1c{font-size:180.144000px;}
.fs5{font-size:192.240000px;}
.fs15{font-size:192.384000px;}
.fs17{font-size:198.000000px;}
.fs16{font-size:198.144000px;}
.fs22{font-size:216.000000px;}
.fs25{font-size:239.760000px;}
.fs0{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:28.296000px;}
.y35{bottom:28.440000px;}
.y86{bottom:31.392000px;}
.y8{bottom:31.428000px;}
.y102{bottom:34.416000px;}
.y8d{bottom:34.596000px;}
.ycd{bottom:41.724000px;}
.y53{bottom:54.864000px;}
.y8c{bottom:60.228000px;}
.y12{bottom:63.684000px;}
.ybb{bottom:66.348000px;}
.y170{bottom:66.924000px;}
.ycb{bottom:69.840000px;}
.y165{bottom:74.160000px;}
.yee{bottom:82.296000px;}
.y10e{bottom:84.600000px;}
.y23{bottom:84.816000px;}
.y8b{bottom:85.428000px;}
.yf9{bottom:86.544000px;}
.yd8{bottom:86.616000px;}
.y166{bottom:88.524000px;}
.ya2{bottom:90.108000px;}
.y14b{bottom:91.260000px;}
.yb8{bottom:92.268000px;}
.yba{bottom:98.748000px;}
.yca{bottom:98.820000px;}
.y63{bottom:100.764000px;}
.y164{bottom:101.160000px;}
.y81{bottom:104.976000px;}
.yf8{bottom:108.144000px;}
.yd7{bottom:108.216000px;}
.y77{bottom:112.572000px;}
.ya1{bottom:112.788000px;}
.yed{bottom:121.896000px;}
.y8a{bottom:122.292000px;}
.y14a{bottom:123.660000px;}
.yc1{bottom:126.072000px;}
.yc9{bottom:127.620000px;}
.y163{bottom:128.160000px;}
.y10d{bottom:128.700000px;}
.yf7{bottom:129.744000px;}
.yd6{bottom:129.816000px;}
.yb9{bottom:131.184000px;}
.y16b{bottom:131.796000px;}
.y62{bottom:136.764000px;}
.y76{bottom:137.772000px;}
.yb7{bottom:139.104000px;}
.y7{bottom:142.056000px;}
.y80{bottom:142.776000px;}
.y89{bottom:147.492000px;}
.ya0{bottom:149.508000px;}
.y52{bottom:149.940000px;}
.yf6{bottom:151.350000px;}
.y162{bottom:155.160000px;}
.yd5{bottom:155.910000px;}
.y149{bottom:156.060000px;}
.yc8{bottom:156.420000px;}
.y171{bottom:159.300000px;}
.yec{bottom:161.490000px;}
.yc0{bottom:162.075000px;}
.y45{bottom:162.210000px;}
.y75{bottom:162.975000px;}
.y9f{bottom:172.185000px;}
.y88{bottom:172.695000px;}
.y61{bottom:172.770000px;}
.y10c{bottom:172.830000px;}
.y1c{bottom:174.135000px;}
.yd1{bottom:174.420000px;}
.yf5{bottom:177.450000px;}
.y16a{bottom:177.870000px;}
.y7f{bottom:180.615000px;}
.y4d{bottom:183.060000px;}
.y51{bottom:185.940000px;}
.y148{bottom:190.260000px;}
.y74{bottom:191.955000px;}
.y161{bottom:194.220000px;}
.y9e{bottom:194.865000px;}
.ybf{bottom:198.105000px;}
.y60{bottom:208.770000px;}
.y10b{bottom:216.930000px;}
.y10{bottom:217.230000px;}
.y9d{bottom:217.545000px;}
.y7e{bottom:218.415000px;}
.y43{bottom:218.805000px;}
.y11{bottom:219.210000px;}
.yc6{bottom:219.450000px;}
.y46{bottom:220.605000px;}
.y160{bottom:221.250000px;}
.y50{bottom:221.970000px;}
.y1b{bottom:224.535000px;}
.y101{bottom:229.680000px;}
.y4a{bottom:233.280000px;}
.y6{bottom:237.135000px;}
.y49{bottom:237.345000px;}
.y9c{bottom:240.270000px;}
.yb6{bottom:241.410000px;}
.y4c{bottom:244.365000px;}
.y5f{bottom:244.770000px;}
.ybe{bottom:246.855000px;}
.y15f{bottom:248.250000px;}
.yc5{bottom:251.850000px;}
.y100{bottom:254.160000px;}
.y10a{bottom:261.030000px;}
.ye3{bottom:261.465000px;}
.y9b{bottom:262.950000px;}
.yeb{bottom:268.710000px;}
.y70{bottom:269.205000px;}
.y48{bottom:273.390000px;}
.y1a{bottom:274.965000px;}
.yff{bottom:275.760000px;}
.y73{bottom:277.200000px;}
.ybd{bottom:279.255000px;}
.y44{bottom:279.330000px;}
.ye2{bottom:283.065000px;}
.yda{bottom:283.140000px;}
.yc4{bottom:284.295000px;}
.y9a{bottom:285.630000px;}
.y11a{bottom:285.735000px;}
.y132{bottom:286.125000px;}
.y13d{bottom:286.455000px;}
.yb5{bottom:288.210000px;}
.y10f{bottom:288.825000px;}
.y4f{bottom:289.050000px;}
.y13e{bottom:291.165000px;}
.y34{bottom:297.030000px;}
.y157{bottom:297.210000px;}
.yfe{bottom:297.360000px;}
.y5{bottom:297.435000px;}
.y5e{bottom:298.800000px;}
.y4b{bottom:300.090000px;}
.y169{bottom:300.630000px;}
.y72{bottom:302.430000px;}
.y168{bottom:302.970000px;}
.ye1{bottom:304.665000px;}
.y22{bottom:304.710000px;}
.y109{bottom:305.130000px;}
.y99{bottom:308.310000px;}
.y6f{bottom:308.805000px;}
.y47{bottom:309.390000px;}
.ybc{bottom:311.655000px;}
.y7d{bottom:318.525000px;}
.yfd{bottom:318.960000px;}
.y1f{bottom:319.350000px;}
.yd9{bottom:322.770000px;}
.y4e{bottom:325.080000px;}
.y19{bottom:325.365000px;}
.y33{bottom:329.475000px;}
.ye0{bottom:330.765000px;}
.y98{bottom:330.990000px;}
.y71{bottom:331.410000px;}
.y5d{bottom:334.800000px;}
.y155{bottom:339.300000px;}
.yfc{bottom:340.560000px;}
.yf{bottom:340.710000px;}
.y128{bottom:344.670000px;}
.yea{bottom:347.910000px;}
.y119{bottom:349.125000px;}
.y108{bottom:349.230000px;}
.y131{bottom:349.455000px;}
.y146{bottom:350.670000px;}
.y97{bottom:353.670000px;}
.y13c{bottom:353.910000px;}
.y21{bottom:355.110000px;}
.y7c{bottom:356.325000px;}
.y4{bottom:357.765000px;}
.y32{bottom:361.875000px;}
.yfb{bottom:362.160000px;}
.y127{bottom:362.700000px;}
.y118{bottom:367.125000px;}
.y130{bottom:367.455000px;}
.yac{bottom:368.070000px;}
.y145{bottom:368.670000px;}
.y1e{bottom:369.795000px;}
.y5c{bottom:370.800000px;}
.y13b{bottom:371.910000px;}
.y96{bottom:376.350000px;}
.y154{bottom:377.640000px;}
.y126{bottom:380.700000px;}
.y15e{bottom:383.730000px;}
.yb3{bottom:384.045000px;}
.y3e{bottom:384.840000px;}
.y117{bottom:385.125000px;}
.y12f{bottom:385.455000px;}
.y144{bottom:386.670000px;}
.yfa{bottom:388.290000px;}
.y13a{bottom:389.910000px;}
.ye{bottom:391.110000px;}
.y107{bottom:393.375000px;}
.y7b{bottom:394.125000px;}
.y31{bottom:394.275000px;}
.y3b{bottom:396.255000px;}
.y125{bottom:398.700000px;}
.y95{bottom:399.030000px;}
.yab{bottom:400.470000px;}
.y66{bottom:401.730000px;}
.y42{bottom:402.555000px;}
.y116{bottom:403.125000px;}
.y12e{bottom:403.455000px;}
.y6d{bottom:403.590000px;}
.y153{bottom:404.640000px;}
.y143{bottom:404.670000px;}
.y20{bottom:405.540000px;}
.y5b{bottom:406.800000px;}
.y139{bottom:407.955000px;}
.y15d{bottom:410.760000px;}
.yb2{bottom:416.445000px;}
.y124{bottom:416.700000px;}
.y2c{bottom:417.675000px;}
.y3{bottom:418.245000px;}
.y16f{bottom:418.425000px;}
.y1d{bottom:420.195000px;}
.y115{bottom:421.125000px;}
.y12d{bottom:421.455000px;}
.y94{bottom:421.740000px;}
.y142{bottom:422.670000px;}
.ydf{bottom:425.160000px;}
.y138{bottom:425.955000px;}
.y30{bottom:426.675000px;}
.y6c{bottom:428.790000px;}
.y152{bottom:431.640000px;}
.yaa{bottom:432.870000px;}
.y123{bottom:434.700000px;}
.y106{bottom:437.475000px;}
.y15c{bottom:437.760000px;}
.yd4{bottom:438.270000px;}
.y41{bottom:438.555000px;}
.y114{bottom:439.170000px;}
.y12c{bottom:439.455000px;}
.y16e{bottom:440.025000px;}
.y141{bottom:440.715000px;}
.y65{bottom:441.330000px;}
.yd{bottom:441.510000px;}
.y137{bottom:443.955000px;}
.y93{bottom:444.420000px;}
.y3d{bottom:446.145000px;}
.yde{bottom:446.760000px;}
.yf4{bottom:448.305000px;}
.yb1{bottom:448.845000px;}
.y2b{bottom:450.075000px;}
.y122{bottom:452.700000px;}
.y39{bottom:452.850000px;}
.y6b{bottom:454.035000px;}
.y113{bottom:457.170000px;}
.y12b{bottom:457.455000px;}
.y151{bottom:458.640000px;}
.y140{bottom:458.715000px;}
.y2f{bottom:459.075000px;}
.y5a{bottom:460.830000px;}
.y16d{bottom:461.625000px;}
.y136{bottom:461.955000px;}
.y15b{bottom:464.760000px;}
.ya9{bottom:465.300000px;}
.ye9{bottom:466.530000px;}
.y92{bottom:467.100000px;}
.ydd{bottom:468.360000px;}
.yf3{bottom:469.905000px;}
.y121{bottom:470.700000px;}
.y112{bottom:475.170000px;}
.y12a{bottom:475.455000px;}
.yd3{bottom:477.870000px;}
.y2{bottom:478.545000px;}
.y6a{bottom:479.235000px;}
.y135{bottom:479.955000px;}
.y64{bottom:480.930000px;}
.yb0{bottom:481.290000px;}
.y105{bottom:481.575000px;}
.y84{bottom:482.190000px;}
.y2a{bottom:482.475000px;}
.y16c{bottom:483.225000px;}
.y13f{bottom:484.920000px;}
.y120{bottom:488.700000px;}
.y91{bottom:489.780000px;}
.ydc{bottom:489.960000px;}
.y2e{bottom:491.475000px;}
.yf2{bottom:491.505000px;}
.yc{bottom:491.910000px;}
.y111{bottom:493.170000px;}
.y59{bottom:496.830000px;}
.ya8{bottom:497.700000px;}
.y150{bottom:497.730000px;}
.y134{bottom:497.955000px;}
.y18{bottom:500.550000px;}
.y147{bottom:501.300000px;}
.y15a{bottom:503.820000px;}
.y69{bottom:504.435000px;}
.ye8{bottom:506.130000px;}
.y11f{bottom:506.700000px;}
.y3c{bottom:507.960000px;}
.y83{bottom:508.830000px;}
.y90{bottom:512.460000px;}
.yf1{bottom:513.105000px;}
.y40{bottom:513.285000px;}
.y3a{bottom:513.360000px;}
.yaf{bottom:513.690000px;}
.y29{bottom:514.875000px;}
.y133{bottom:515.955000px;}
.ydb{bottom:516.060000px;}
.yd2{bottom:517.470000px;}
.y110{bottom:521.025000px;}
.y2d{bottom:523.905000px;}
.y11e{bottom:524.700000px;}
.y14f{bottom:524.730000px;}
.y104{bottom:525.675000px;}
.y68{bottom:529.635000px;}
.ya7{bottom:530.100000px;}
.y159{bottom:530.820000px;}
.y58{bottom:532.830000px;}
.yf0{bottom:534.705000px;}
.y55{bottom:535.965000px;}
.yb{bottom:542.340000px;}
.y11b{bottom:542.490000px;}
.y11d{bottom:542.730000px;}
.yae{bottom:546.090000px;}
.y82{bottom:546.630000px;}
.y28{bottom:547.305000px;}
.y3f{bottom:549.285000px;}
.y17{bottom:550.980000px;}
.y14e{bottom:551.730000px;}
.y78{bottom:556.845000px;}
.y158{bottom:557.820000px;}
.y67{bottom:558.615000px;}
.yef{bottom:560.805000px;}
.ya6{bottom:562.500000px;}
.y57{bottom:568.830000px;}
.y103{bottom:569.805000px;}
.yc7{bottom:571.170000px;}
.y11c{bottom:571.215000px;}
.y54{bottom:571.965000px;}
.y8f{bottom:572.325000px;}
.y1{bottom:573.735000px;}
.yad{bottom:578.490000px;}
.y14d{bottom:578.730000px;}
.y27{bottom:579.705000px;}
.ya{bottom:592.740000px;}
.ya5{bottom:594.900000px;}
.y16{bottom:601.380000px;}
.yd0{bottom:602.790000px;}
.ycc{bottom:606.885000px;}
.y156{bottom:611.850000px;}
.y26{bottom:612.105000px;}
.y167{bottom:614.085000px;}
.yc3{bottom:616.110000px;}
.ye6{bottom:626.220000px;}
.ya4{bottom:627.300000px;}
.ycf{bottom:631.005000px;}
.yb4{bottom:636.090000px;}
.y8e{bottom:637.710000px;}
.y7a{bottom:640.830000px;}
.y25{bottom:644.505000px;}
.y38{bottom:649.050000px;}
.ye5{bottom:651.420000px;}
.y15{bottom:651.780000px;}
.yce{bottom:674.250000px;}
.y56{bottom:675.825000px;}
.ye4{bottom:676.620000px;}
.y9{bottom:676.770000px;}
.y79{bottom:677.955000px;}
.y129{bottom:680.295000px;}
.y85{bottom:684.930000px;}
.yc2{bottom:694.695000px;}
.y37{bottom:703.080000px;}
.y87{bottom:707.115000px;}
.y24{bottom:710.715000px;}
.y14c{bottom:713.490000px;}
.y6e{bottom:715.890000px;}
.y14{bottom:719.205000px;}
.ya3{bottom:722.670000px;}
.ye7{bottom:748.725000px;}
.y36{bottom:766.080000px;}
.h2d{height:42.952500px;}
.h31{height:45.466172px;}
.h2f{height:47.446172px;}
.h30{height:47.560500px;}
.hc{height:52.590937px;}
.h7{height:54.000000px;}
.h28{height:54.108000px;}
.h37{height:55.160156px;}
.h20{height:59.084508px;}
.h2a{height:59.378906px;}
.h2e{height:61.383867px;}
.h1b{height:62.136000px;}
.h5{height:62.260272px;}
.h14{height:63.180000px;}
.h17{height:63.288000px;}
.h12{height:66.596902px;}
.h1d{height:66.881953px;}
.h1e{height:66.996281px;}
.h15{height:69.473320px;}
.h16{height:69.592078px;}
.h35{height:71.455078px;}
.h36{height:71.569406px;}
.h1f{height:71.756508px;}
.h9{height:74.788272px;}
.h33{height:77.625000px;}
.ha{height:85.746094px;}
.hb{height:85.860422px;}
.h4{height:86.422500px;}
.h26{height:95.245664px;}
.h10{height:95.463984px;}
.h25{height:95.578312px;}
.h19{height:100.037109px;}
.h1a{height:100.151438px;}
.he{height:100.626869px;}
.hf{height:100.747380px;}
.h32{height:103.500000px;}
.h11{height:104.610234px;}
.h29{height:104.724562px;}
.h13{height:108.000000px;}
.h2b{height:108.108000px;}
.h39{height:114.442453px;}
.h2c{height:114.820312px;}
.h23{height:124.046016px;}
.h24{height:124.160344px;}
.h2{height:133.192266px;}
.h3{height:133.306594px;}
.h18{height:138.352852px;}
.h8{height:143.525391px;}
.h27{height:143.640211px;}
.h6{height:153.285117px;}
.h1c{height:153.399938px;}
.h22{height:157.877930px;}
.h21{height:157.992750px;}
.h34{height:172.230469px;}
.h38{height:172.327500px;}
.hd{height:211.252266px;}
.h1{height:315.755859px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6a{left:30.635979px;}
.x13{left:31.715979px;}
.x32{left:43.415979px;}
.x24{left:45.287979px;}
.x28{left:47.807979px;}
.xcb{left:51.263979px;}
.x27{left:53.243979px;}
.x14{left:55.871979px;}
.x29{left:58.103979px;}
.x65{left:60.371979px;}
.x3e{left:62.963979px;}
.xa3{left:64.799979px;}
.x26{left:68.903979px;}
.x94{left:72.503979px;}
.x99{left:77.831979px;}
.xa4{left:80.603979px;}
.x93{left:82.583979px;}
.x64{left:83.915979px;}
.x4b{left:86.471979px;}
.x25{left:88.343979px;}
.xb9{left:90.503979px;}
.x76{left:95.651979px;}
.x4c{left:98.711979px;}
.x36{left:100.259979px;}
.x4d{left:101.411979px;}
.x8f{left:106.091979px;}
.x34{left:107.135979px;}
.x4f{left:109.331979px;}
.x50{left:111.491979px;}
.x53{left:118.727979px;}
.x8d{left:123.731979px;}
.x52{left:125.531979px;}
.x35{left:131.075979px;}
.x4e{left:134.531979px;}
.x8e{left:137.411979px;}
.x51{left:139.571979px;}
.x5e{left:141.479979px;}
.x77{left:146.231979px;}
.x79{left:148.751979px;}
.x92{left:150.089979px;}
.x1c{left:152.849979px;}
.x75{left:157.574979px;}
.x1d{left:158.609979px;}
.x78{left:160.094979px;}
.x68{left:163.619979px;}
.x11{left:164.624979px;}
.x74{left:168.194979px;}
.x63{left:169.739979px;}
.x2{left:179.789979px;}
.x23{left:182.489979px;}
.x4a{left:191.909979px;}
.x80{left:197.174979px;}
.x3{left:198.509979px;}
.x1e{left:202.349979px;}
.xa5{left:208.799979px;}
.x15{left:226.184979px;}
.x81{left:227.234979px;}
.x82{left:228.854979px;}
.x22{left:230.429979px;}
.x4{left:233.429979px;}
.x16{left:238.424979px;}
.x3f{left:260.999979px;}
.x17{left:262.004979px;}
.x18{left:266.144979px;}
.x9{left:268.454979px;}
.x96{left:276.089979px;}
.xbb{left:278.609979px;}
.xbf{left:279.644979px;}
.x97{left:281.309979px;}
.x5{left:283.109979px;}
.xb8{left:288.509979px;}
.x37{left:298.259979px;}
.xc7{left:301.349979px;}
.xba{left:314.999979px;}
.x98{left:316.049979px;}
.x6{left:322.169979px;}
.x38{left:341.999979px;}
.x90{left:346.139979px;}
.x6e{left:363.884979px;}
.xe2{left:370.724979px;}
.xd1{left:373.709979px;}
.x1{left:375.449979px;}
.x6d{left:376.484979px;}
.xbd{left:378.359979px;}
.xd0{left:382.934979px;}
.xe{left:384.149979px;}
.xcd{left:385.994979px;}
.xc3{left:388.154979px;}
.xce{left:394.094979px;}
.xcc{left:401.114979px;}
.xbc{left:402.299979px;}
.xcf{left:411.734979px;}
.x8c{left:415.649979px;}
.x67{left:424.439979px;}
.xda{left:434.954979px;}
.xdb{left:439.199979px;}
.x40{left:460.409979px;}
.xf{left:471.629979px;}
.x12{left:477.824979px;}
.xe1{left:479.009979px;}
.x1a{left:484.889979px;}
.x3b{left:503.429979px;}
.x1b{left:514.769979px;}
.xbe{left:517.139979px;}
.x8a{left:518.549979px;}
.x69{left:536.369979px;}
.xc1{left:538.454979px;}
.xa0{left:540.869979px;}
.xb3{left:544.244979px;}
.xc0{left:556.814979px;}
.xc2{left:558.794979px;}
.x8b{left:560.729979px;}
.x9f{left:568.589979px;}
.xb1{left:577.544979px;}
.xb4{left:584.384979px;}
.xb2{left:587.624979px;}
.x61{left:589.709979px;}
.x7{left:592.814979px;}
.x91{left:601.229979px;}
.x9e{left:608.219979px;}
.x19{left:620.429979px;}
.x86{left:623.984979px;}
.xc{left:625.214979px;}
.xb{left:634.934979px;}
.x84{left:636.689979px;}
.xaa{left:640.979979px;}
.x87{left:643.244979px;}
.x41{left:644.684979px;}
.x83{left:646.409979px;}
.xe0{left:650.444979px;}
.xb6{left:651.704979px;}
.x85{left:652.964979px;}
.xa9{left:668.519979px;}
.xd{left:669.674979px;}
.xdc{left:672.269979px;}
.xb5{left:673.304979px;}
.xab{left:677.159979px;}
.xa7{left:678.239979px;}
.xa{left:679.394979px;}
.xa8{left:680.939979px;}
.xdd{left:687.089979px;}
.x7b{left:696.674979px;}
.x7d{left:700.454979px;}
.x9b{left:720.539979px;}
.x9c{left:730.439979px;}
.x7e{left:736.454979px;}
.x71{left:746.489979px;}
.x49{left:754.589979px;}
.x48{left:759.269979px;}
.x7c{left:765.074979px;}
.xae{left:768.134979px;}
.x60{left:772.949979px;}
.x62{left:778.889979px;}
.xc9{left:784.184979px;}
.xc4{left:789.194979px;}
.x7f{left:792.464979px;}
.xad{left:793.874979px;}
.x9a{left:795.599979px;}
.x5f{left:798.014979px;}
.x89{left:799.769979px;}
.x70{left:804.269979px;}
.xaf{left:807.014979px;}
.x88{left:810.749979px;}
.x54{left:818.279979px;}
.x56{left:831.779979px;}
.xc8{left:888.584979px;}
.x72{left:914.834979px;}
.x9d{left:916.949979px;}
.x59{left:921.599979px;}
.x7a{left:924.224979px;}
.x39{left:928.544979px;}
.x5a{left:938.159979px;}
.xd8{left:950.939979px;}
.xd4{left:955.649979px;}
.x10{left:963.749979px;}
.xd3{left:965.009979px;}
.x5c{left:966.419979px;}
.xa2{left:971.564979px;}
.x1f{left:972.614979px;}
.x20{left:974.774979px;}
.xb7{left:977.249979px;}
.x3a{left:983.849979px;}
.xd6{left:988.379979px;}
.xd5{left:995.609979px;}
.x57{left:998.639979px;}
.x5b{left:1000.799979px;}
.xd2{left:1005.119979px;}
.xd7{left:1010.159979px;}
.xd9{left:1017.539979px;}
.x6c{left:1020.779979px;}
.x5d{left:1032.659979px;}
.x42{left:1035.974979px;}
.x21{left:1049.834979px;}
.x95{left:1053.929979px;}
.x6b{left:1068.479979px;}
.xc6{left:1072.184979px;}
.xc5{left:1092.344979px;}
.xa6{left:1105.454979px;}
.x58{left:1118.369979px;}
.x2d{left:1132.274979px;}
.x30{left:1133.714979px;}
.x43{left:1139.009979px;}
.x2b{left:1149.554979px;}
.x2f{left:1151.714979px;}
.x46{left:1153.154979px;}
.x44{left:1157.909979px;}
.x55{left:1161.749979px;}
.x2a{left:1168.094979px;}
.x6f{left:1173.239979px;}
.x31{left:1177.814979px;}
.x2c{left:1189.154979px;}
.xca{left:1192.784979px;}
.xb0{left:1195.379979px;}
.x66{left:1200.989979px;}
.x47{left:1204.814979px;}
.x2e{left:1212.554979px;}
.x45{left:1221.944979px;}
.xac{left:1259.744979px;}
.x3c{left:1264.859979px;}
.x3d{left:1283.759979px;}
.x33{left:1298.054979px;}
.xa1{left:1299.959979px;}
.x73{left:1312.199979px;}
.x8{left:1321.199979px;}
.xde{left:1379.804979px;}
.xdf{left:1406.849979px;}
@media print{
.v4{vertical-align:-45.333333pt;}
.v5{vertical-align:-14.293333pt;}
.v3{vertical-align:-11.264000pt;}
.v7{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.136000pt;}
.v6{vertical-align:19.200000pt;}
.v2{vertical-align:69.386667pt;}
.ls21{letter-spacing:-0.874667pt;}
.ls3a{letter-spacing:-0.581333pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.414933pt;}
.ls11{letter-spacing:-0.398933pt;}
.ls22{letter-spacing:-0.283733pt;}
.ls8{letter-spacing:-0.282667pt;}
.ls24{letter-spacing:-0.267200pt;}
.ls1e{letter-spacing:-0.234667pt;}
.ls46{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.170133pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.156267pt;}
.ls16{letter-spacing:-0.132267pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.112000pt;}
.ls34{letter-spacing:-0.099733pt;}
.ls25{letter-spacing:-0.090667pt;}
.ls3b{letter-spacing:-0.080533pt;}
.ls35{letter-spacing:-0.064000pt;}
.ls42{letter-spacing:-0.037120pt;}
.ls3{letter-spacing:-0.032000pt;}
.ls39{letter-spacing:-0.009600pt;}
.ls41{letter-spacing:-0.009227pt;}
.ls4{letter-spacing:-0.007533pt;}
.ls38{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.022400pt;}
.ls36{letter-spacing:0.035947pt;}
.ls15{letter-spacing:0.040427pt;}
.ls44{letter-spacing:0.057067pt;}
.ls9{letter-spacing:0.058133pt;}
.ls32{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.071680pt;}
.ls45{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.089600pt;}
.ls2e{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.103040pt;}
.ls1a{letter-spacing:0.126933pt;}
.ls2{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.128533pt;}
.ls1d{letter-spacing:0.150400pt;}
.ls43{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.224000pt;}
.ls20{letter-spacing:0.225067pt;}
.ls10{letter-spacing:0.263040pt;}
.lsd{letter-spacing:0.264320pt;}
.ls26{letter-spacing:0.278400pt;}
.ls6{letter-spacing:0.281600pt;}
.ls19{letter-spacing:0.282133pt;}
.ls40{letter-spacing:0.316800pt;}
.ls1f{letter-spacing:0.381867pt;}
.lsb{letter-spacing:0.472229pt;}
.ls27{letter-spacing:0.549333pt;}
.ls33{letter-spacing:17.856000pt;}
.ls18{letter-spacing:19.656960pt;}
.ls30{letter-spacing:19.690240pt;}
.ls17{letter-spacing:20.762240pt;}
.ls5{letter-spacing:28.040960pt;}
.ls13{letter-spacing:30.360576pt;}
.ls12{letter-spacing:30.432000pt;}
.lsa{letter-spacing:31.287040pt;}
.lse{letter-spacing:37.645440pt;}
.ls3d{letter-spacing:40.371200pt;}
.ls3c{letter-spacing:40.448000pt;}
.ls3e{letter-spacing:40.531200pt;}
.ls3f{letter-spacing:40.608000pt;}
.ls28{letter-spacing:62.720000pt;}
.ls2a{letter-spacing:88.960000pt;}
.ls29{letter-spacing:114.560000pt;}
.ls2f{letter-spacing:2280.985003pt;}
.ws19{word-spacing:-47.344000pt;}
.ws16{word-spacing:-42.752000pt;}
.ws15{word-spacing:-42.720000pt;}
.ws3{word-spacing:-40.147712pt;}
.ws2{word-spacing:-40.113280pt;}
.ws71{word-spacing:-40.000000pt;}
.ws5d{word-spacing:-37.393152pt;}
.ws12{word-spacing:-37.130880pt;}
.ws78{word-spacing:-34.466432pt;}
.ws6b{word-spacing:-32.000000pt;}
.ws67{word-spacing:-31.519488pt;}
.ws11{word-spacing:-31.488000pt;}
.ws9{word-spacing:-30.305617pt;}
.ws14{word-spacing:-30.202859pt;}
.wsd{word-spacing:-28.750720pt;}
.wsb{word-spacing:-28.468053pt;}
.ws6{word-spacing:-25.824000pt;}
.ws5c{word-spacing:-25.664000pt;}
.ws75{word-spacing:-21.600000pt;}
.ws2d{word-spacing:-20.177152pt;}
.ws18{word-spacing:-20.142720pt;}
.ws2f{word-spacing:-19.908053pt;}
.ws66{word-spacing:-18.019968pt;}
.ws64{word-spacing:-17.984000pt;}
.ws77{word-spacing:-16.640000pt;}
.ws6f{word-spacing:-14.323712pt;}
.ws6d{word-spacing:-14.289280pt;}
.ws70{word-spacing:-14.252160pt;}
.wse{word-spacing:-2.152320pt;}
.wsc{word-spacing:-1.547733pt;}
.wsf{word-spacing:-1.538560pt;}
.ws13{word-spacing:-1.198933pt;}
.ws7{word-spacing:-0.992000pt;}
.ws10{word-spacing:-0.988800pt;}
.ws17{word-spacing:-0.772352pt;}
.wsa{word-spacing:-0.771200pt;}
.ws53{word-spacing:-0.707840pt;}
.ws5a{word-spacing:-0.660480pt;}
.ws4{word-spacing:-0.480000pt;}
.ws61{word-spacing:-0.395520pt;}
.ws1{word-spacing:-0.001280pt;}
.ws0{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.060416pt;}
.ws6c{word-spacing:0.107520pt;}
.ws60{word-spacing:0.125867pt;}
.ws69{word-spacing:0.160000pt;}
.ws54{word-spacing:0.187200pt;}
.ws6a{word-spacing:0.256000pt;}
.ws5{word-spacing:0.288000pt;}
.ws56{word-spacing:0.332160pt;}
.ws68{word-spacing:0.512010pt;}
.ws55{word-spacing:0.840320pt;}
.ws76{word-spacing:0.960000pt;}
.ws63{word-spacing:1.136427pt;}
.ws40{word-spacing:1.255040pt;}
.ws62{word-spacing:1.709952pt;}
.ws6e{word-spacing:1.930240pt;}
.ws52{word-spacing:2.262187pt;}
.ws3f{word-spacing:2.335360pt;}
.ws51{word-spacing:2.372480pt;}
.ws42{word-spacing:2.539520pt;}
.ws4e{word-spacing:2.618880pt;}
.ws50{word-spacing:2.843520pt;}
.ws4d{word-spacing:3.061120pt;}
.ws41{word-spacing:3.108480pt;}
.ws4f{word-spacing:3.228800pt;}
.ws47{word-spacing:4.004864pt;}
.ws45{word-spacing:4.040192pt;}
.ws46{word-spacing:4.987968pt;}
.ws65{word-spacing:5.756032pt;}
.ws38{word-spacing:5.757440pt;}
.ws3a{word-spacing:5.941120pt;}
.ws39{word-spacing:5.960320pt;}
.ws3d{word-spacing:6.092160pt;}
.ws43{word-spacing:6.759680pt;}
.ws44{word-spacing:6.792000pt;}
.ws3e{word-spacing:7.240320pt;}
.ws58{word-spacing:8.348800pt;}
.ws2a{word-spacing:8.585216pt;}
.ws33{word-spacing:9.141120pt;}
.ws2c{word-spacing:9.189376pt;}
.ws57{word-spacing:9.322880pt;}
.ws37{word-spacing:9.366827pt;}
.ws35{word-spacing:9.416960pt;}
.ws4a{word-spacing:9.538560pt;}
.ws49{word-spacing:9.555840pt;}
.ws2b{word-spacing:9.596416pt;}
.ws59{word-spacing:9.781120pt;}
.ws4c{word-spacing:9.788800pt;}
.ws1b{word-spacing:9.950080pt;}
.ws4b{word-spacing:10.219520pt;}
.ws1d{word-spacing:10.345387pt;}
.ws1a{word-spacing:10.543360pt;}
.ws36{word-spacing:10.731093pt;}
.ws1c{word-spacing:10.785067pt;}
.ws34{word-spacing:10.788480pt;}
.ws31{word-spacing:11.720320pt;}
.ws30{word-spacing:11.738240pt;}
.ws32{word-spacing:12.045440pt;}
.ws2e{word-spacing:12.111360pt;}
.ws21{word-spacing:12.779520pt;}
.ws1f{word-spacing:13.332480pt;}
.ws20{word-spacing:13.419520pt;}
.ws22{word-spacing:13.630507pt;}
.ws1e{word-spacing:13.687680pt;}
.ws25{word-spacing:27.244160pt;}
.ws23{word-spacing:27.706240pt;}
.ws26{word-spacing:28.072320pt;}
.ws24{word-spacing:28.708480pt;}
.ws3c{word-spacing:29.481600pt;}
.ws3b{word-spacing:29.988480pt;}
.ws27{word-spacing:32.461440pt;}
.ws29{word-spacing:32.782720pt;}
.ws28{word-spacing:33.188480pt;}
.ws48{word-spacing:40.807040pt;}
.ws5b{word-spacing:48.522667pt;}
.ws5e{word-spacing:77.621333pt;}
.ws73{word-spacing:253.280107pt;}
.ws72{word-spacing:284.840533pt;}
.ws74{word-spacing:868.255744pt;}
.ws8{word-spacing:928.927787pt;}
._d{margin-left:-8.249825pt;}
._18{margin-left:-6.782152pt;}
._8{margin-left:-5.854892pt;}
._6{margin-left:-4.265813pt;}
._7{margin-left:-3.307845pt;}
._5{margin-left:-2.376107pt;}
._0{margin-left:-1.043840pt;}
._1{width:0.894720pt;}
._3{width:1.789440pt;}
._9{width:3.332227pt;}
._17{width:6.116916pt;}
._a{width:7.038720pt;}
._1a{width:15.267840pt;}
._19{width:16.504655pt;}
._c{width:18.752427pt;}
._b{width:19.990206pt;}
._15{width:22.552065pt;}
._13{width:23.721600pt;}
._14{width:25.340843pt;}
._12{width:26.993280pt;}
._e{width:29.225472pt;}
._10{width:31.045760pt;}
._2{width:41.824213pt;}
._11{width:53.701120pt;}
._f{width:219.136000pt;}
._16{width:2452.173653pt;}
._4{width:4311.168000pt;}
.fs20{font-size:42.880000pt;}
.fs1f{font-size:53.120000pt;}
.fs21{font-size:53.248000pt;}
.fsa{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fse{font-size:67.461249pt;}
.fs11{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fsf{font-size:78.929661pt;}
.fs23{font-size:80.000000pt;}
.fs24{font-size:80.128000pt;}
.fs1b{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs1a{font-size:107.008000pt;}
.fs13{font-size:112.000000pt;}
.fs14{font-size:112.128000pt;}
.fsb{font-size:112.660286pt;}
.fsc{font-size:112.795208pt;}
.fsd{font-size:117.120000pt;}
.fs1d{font-size:117.248000pt;}
.fs10{font-size:128.000000pt;}
.fs1e{font-size:128.128000pt;}
.fs18{font-size:138.880000pt;}
.fs19{font-size:139.008000pt;}
.fs1{font-size:149.120000pt;}
.fs2{font-size:149.248000pt;}
.fs7{font-size:160.000000pt;}
.fs1c{font-size:160.128000pt;}
.fs5{font-size:170.880000pt;}
.fs15{font-size:171.008000pt;}
.fs17{font-size:176.000000pt;}
.fs16{font-size:176.128000pt;}
.fs22{font-size:192.000000pt;}
.fs25{font-size:213.120000pt;}
.fs0{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:25.152000pt;}
.y35{bottom:25.280000pt;}
.y86{bottom:27.904000pt;}
.y8{bottom:27.936000pt;}
.y102{bottom:30.592000pt;}
.y8d{bottom:30.752000pt;}
.ycd{bottom:37.088000pt;}
.y53{bottom:48.768000pt;}
.y8c{bottom:53.536000pt;}
.y12{bottom:56.608000pt;}
.ybb{bottom:58.976000pt;}
.y170{bottom:59.488000pt;}
.ycb{bottom:62.080000pt;}
.y165{bottom:65.920000pt;}
.yee{bottom:73.152000pt;}
.y10e{bottom:75.200000pt;}
.y23{bottom:75.392000pt;}
.y8b{bottom:75.936000pt;}
.yf9{bottom:76.928000pt;}
.yd8{bottom:76.992000pt;}
.y166{bottom:78.688000pt;}
.ya2{bottom:80.096000pt;}
.y14b{bottom:81.120000pt;}
.yb8{bottom:82.016000pt;}
.yba{bottom:87.776000pt;}
.yca{bottom:87.840000pt;}
.y63{bottom:89.568000pt;}
.y164{bottom:89.920000pt;}
.y81{bottom:93.312000pt;}
.yf8{bottom:96.128000pt;}
.yd7{bottom:96.192000pt;}
.y77{bottom:100.064000pt;}
.ya1{bottom:100.256000pt;}
.yed{bottom:108.352000pt;}
.y8a{bottom:108.704000pt;}
.y14a{bottom:109.920000pt;}
.yc1{bottom:112.064000pt;}
.yc9{bottom:113.440000pt;}
.y163{bottom:113.920000pt;}
.y10d{bottom:114.400000pt;}
.yf7{bottom:115.328000pt;}
.yd6{bottom:115.392000pt;}
.yb9{bottom:116.608000pt;}
.y16b{bottom:117.152000pt;}
.y62{bottom:121.568000pt;}
.y76{bottom:122.464000pt;}
.yb7{bottom:123.648000pt;}
.y7{bottom:126.272000pt;}
.y80{bottom:126.912000pt;}
.y89{bottom:131.104000pt;}
.ya0{bottom:132.896000pt;}
.y52{bottom:133.280000pt;}
.yf6{bottom:134.533333pt;}
.y162{bottom:137.920000pt;}
.yd5{bottom:138.586667pt;}
.y149{bottom:138.720000pt;}
.yc8{bottom:139.040000pt;}
.y171{bottom:141.600000pt;}
.yec{bottom:143.546667pt;}
.yc0{bottom:144.066667pt;}
.y45{bottom:144.186667pt;}
.y75{bottom:144.866667pt;}
.y9f{bottom:153.053333pt;}
.y88{bottom:153.506667pt;}
.y61{bottom:153.573333pt;}
.y10c{bottom:153.626667pt;}
.y1c{bottom:154.786667pt;}
.yd1{bottom:155.040000pt;}
.yf5{bottom:157.733333pt;}
.y16a{bottom:158.106667pt;}
.y7f{bottom:160.546667pt;}
.y4d{bottom:162.720000pt;}
.y51{bottom:165.280000pt;}
.y148{bottom:169.120000pt;}
.y74{bottom:170.626667pt;}
.y161{bottom:172.640000pt;}
.y9e{bottom:173.213333pt;}
.ybf{bottom:176.093333pt;}
.y60{bottom:185.573333pt;}
.y10b{bottom:192.826667pt;}
.y10{bottom:193.093333pt;}
.y9d{bottom:193.373333pt;}
.y7e{bottom:194.146667pt;}
.y43{bottom:194.493333pt;}
.y11{bottom:194.853333pt;}
.yc6{bottom:195.066667pt;}
.y46{bottom:196.093333pt;}
.y160{bottom:196.666667pt;}
.y50{bottom:197.306667pt;}
.y1b{bottom:199.586667pt;}
.y101{bottom:204.160000pt;}
.y4a{bottom:207.360000pt;}
.y6{bottom:210.786667pt;}
.y49{bottom:210.973333pt;}
.y9c{bottom:213.573333pt;}
.yb6{bottom:214.586667pt;}
.y4c{bottom:217.213333pt;}
.y5f{bottom:217.573333pt;}
.ybe{bottom:219.426667pt;}
.y15f{bottom:220.666667pt;}
.yc5{bottom:223.866667pt;}
.y100{bottom:225.920000pt;}
.y10a{bottom:232.026667pt;}
.ye3{bottom:232.413333pt;}
.y9b{bottom:233.733333pt;}
.yeb{bottom:238.853333pt;}
.y70{bottom:239.293333pt;}
.y48{bottom:243.013333pt;}
.y1a{bottom:244.413333pt;}
.yff{bottom:245.120000pt;}
.y73{bottom:246.400000pt;}
.ybd{bottom:248.226667pt;}
.y44{bottom:248.293333pt;}
.ye2{bottom:251.613333pt;}
.yda{bottom:251.680000pt;}
.yc4{bottom:252.706667pt;}
.y9a{bottom:253.893333pt;}
.y11a{bottom:253.986667pt;}
.y132{bottom:254.333333pt;}
.y13d{bottom:254.626667pt;}
.yb5{bottom:256.186667pt;}
.y10f{bottom:256.733333pt;}
.y4f{bottom:256.933333pt;}
.y13e{bottom:258.813333pt;}
.y34{bottom:264.026667pt;}
.y157{bottom:264.186667pt;}
.yfe{bottom:264.320000pt;}
.y5{bottom:264.386667pt;}
.y5e{bottom:265.600000pt;}
.y4b{bottom:266.746667pt;}
.y169{bottom:267.226667pt;}
.y72{bottom:268.826667pt;}
.y168{bottom:269.306667pt;}
.ye1{bottom:270.813333pt;}
.y22{bottom:270.853333pt;}
.y109{bottom:271.226667pt;}
.y99{bottom:274.053333pt;}
.y6f{bottom:274.493333pt;}
.y47{bottom:275.013333pt;}
.ybc{bottom:277.026667pt;}
.y7d{bottom:283.133333pt;}
.yfd{bottom:283.520000pt;}
.y1f{bottom:283.866667pt;}
.yd9{bottom:286.906667pt;}
.y4e{bottom:288.960000pt;}
.y19{bottom:289.213333pt;}
.y33{bottom:292.866667pt;}
.ye0{bottom:294.013333pt;}
.y98{bottom:294.213333pt;}
.y71{bottom:294.586667pt;}
.y5d{bottom:297.600000pt;}
.y155{bottom:301.600000pt;}
.yfc{bottom:302.720000pt;}
.yf{bottom:302.853333pt;}
.y128{bottom:306.373333pt;}
.yea{bottom:309.253333pt;}
.y119{bottom:310.333333pt;}
.y108{bottom:310.426667pt;}
.y131{bottom:310.626667pt;}
.y146{bottom:311.706667pt;}
.y97{bottom:314.373333pt;}
.y13c{bottom:314.586667pt;}
.y21{bottom:315.653333pt;}
.y7c{bottom:316.733333pt;}
.y4{bottom:318.013333pt;}
.y32{bottom:321.666667pt;}
.yfb{bottom:321.920000pt;}
.y127{bottom:322.400000pt;}
.y118{bottom:326.333333pt;}
.y130{bottom:326.626667pt;}
.yac{bottom:327.173333pt;}
.y145{bottom:327.706667pt;}
.y1e{bottom:328.706667pt;}
.y5c{bottom:329.600000pt;}
.y13b{bottom:330.586667pt;}
.y96{bottom:334.533333pt;}
.y154{bottom:335.680000pt;}
.y126{bottom:338.400000pt;}
.y15e{bottom:341.093333pt;}
.yb3{bottom:341.373333pt;}
.y3e{bottom:342.080000pt;}
.y117{bottom:342.333333pt;}
.y12f{bottom:342.626667pt;}
.y144{bottom:343.706667pt;}
.yfa{bottom:345.146667pt;}
.y13a{bottom:346.586667pt;}
.ye{bottom:347.653333pt;}
.y107{bottom:349.666667pt;}
.y7b{bottom:350.333333pt;}
.y31{bottom:350.466667pt;}
.y3b{bottom:352.226667pt;}
.y125{bottom:354.400000pt;}
.y95{bottom:354.693333pt;}
.yab{bottom:355.973333pt;}
.y66{bottom:357.093333pt;}
.y42{bottom:357.826667pt;}
.y116{bottom:358.333333pt;}
.y12e{bottom:358.626667pt;}
.y6d{bottom:358.746667pt;}
.y153{bottom:359.680000pt;}
.y143{bottom:359.706667pt;}
.y20{bottom:360.480000pt;}
.y5b{bottom:361.600000pt;}
.y139{bottom:362.626667pt;}
.y15d{bottom:365.120000pt;}
.yb2{bottom:370.173333pt;}
.y124{bottom:370.400000pt;}
.y2c{bottom:371.266667pt;}
.y3{bottom:371.773333pt;}
.y16f{bottom:371.933333pt;}
.y1d{bottom:373.506667pt;}
.y115{bottom:374.333333pt;}
.y12d{bottom:374.626667pt;}
.y94{bottom:374.880000pt;}
.y142{bottom:375.706667pt;}
.ydf{bottom:377.920000pt;}
.y138{bottom:378.626667pt;}
.y30{bottom:379.266667pt;}
.y6c{bottom:381.146667pt;}
.y152{bottom:383.680000pt;}
.yaa{bottom:384.773333pt;}
.y123{bottom:386.400000pt;}
.y106{bottom:388.866667pt;}
.y15c{bottom:389.120000pt;}
.yd4{bottom:389.573333pt;}
.y41{bottom:389.826667pt;}
.y114{bottom:390.373333pt;}
.y12c{bottom:390.626667pt;}
.y16e{bottom:391.133333pt;}
.y141{bottom:391.746667pt;}
.y65{bottom:392.293333pt;}
.yd{bottom:392.453333pt;}
.y137{bottom:394.626667pt;}
.y93{bottom:395.040000pt;}
.y3d{bottom:396.573333pt;}
.yde{bottom:397.120000pt;}
.yf4{bottom:398.493333pt;}
.yb1{bottom:398.973333pt;}
.y2b{bottom:400.066667pt;}
.y122{bottom:402.400000pt;}
.y39{bottom:402.533333pt;}
.y6b{bottom:403.586667pt;}
.y113{bottom:406.373333pt;}
.y12b{bottom:406.626667pt;}
.y151{bottom:407.680000pt;}
.y140{bottom:407.746667pt;}
.y2f{bottom:408.066667pt;}
.y5a{bottom:409.626667pt;}
.y16d{bottom:410.333333pt;}
.y136{bottom:410.626667pt;}
.y15b{bottom:413.120000pt;}
.ya9{bottom:413.600000pt;}
.ye9{bottom:414.693333pt;}
.y92{bottom:415.200000pt;}
.ydd{bottom:416.320000pt;}
.yf3{bottom:417.693333pt;}
.y121{bottom:418.400000pt;}
.y112{bottom:422.373333pt;}
.y12a{bottom:422.626667pt;}
.yd3{bottom:424.773333pt;}
.y2{bottom:425.373333pt;}
.y6a{bottom:425.986667pt;}
.y135{bottom:426.626667pt;}
.y64{bottom:427.493333pt;}
.yb0{bottom:427.813333pt;}
.y105{bottom:428.066667pt;}
.y84{bottom:428.613333pt;}
.y2a{bottom:428.866667pt;}
.y16c{bottom:429.533333pt;}
.y13f{bottom:431.040000pt;}
.y120{bottom:434.400000pt;}
.y91{bottom:435.360000pt;}
.ydc{bottom:435.520000pt;}
.y2e{bottom:436.866667pt;}
.yf2{bottom:436.893333pt;}
.yc{bottom:437.253333pt;}
.y111{bottom:438.373333pt;}
.y59{bottom:441.626667pt;}
.ya8{bottom:442.400000pt;}
.y150{bottom:442.426667pt;}
.y134{bottom:442.626667pt;}
.y18{bottom:444.933333pt;}
.y147{bottom:445.600000pt;}
.y15a{bottom:447.840000pt;}
.y69{bottom:448.386667pt;}
.ye8{bottom:449.893333pt;}
.y11f{bottom:450.400000pt;}
.y3c{bottom:451.520000pt;}
.y83{bottom:452.293333pt;}
.y90{bottom:455.520000pt;}
.yf1{bottom:456.093333pt;}
.y40{bottom:456.253333pt;}
.y3a{bottom:456.320000pt;}
.yaf{bottom:456.613333pt;}
.y29{bottom:457.666667pt;}
.y133{bottom:458.626667pt;}
.ydb{bottom:458.720000pt;}
.yd2{bottom:459.973333pt;}
.y110{bottom:463.133333pt;}
.y2d{bottom:465.693333pt;}
.y11e{bottom:466.400000pt;}
.y14f{bottom:466.426667pt;}
.y104{bottom:467.266667pt;}
.y68{bottom:470.786667pt;}
.ya7{bottom:471.200000pt;}
.y159{bottom:471.840000pt;}
.y58{bottom:473.626667pt;}
.yf0{bottom:475.293333pt;}
.y55{bottom:476.413333pt;}
.yb{bottom:482.080000pt;}
.y11b{bottom:482.213333pt;}
.y11d{bottom:482.426667pt;}
.yae{bottom:485.413333pt;}
.y82{bottom:485.893333pt;}
.y28{bottom:486.493333pt;}
.y3f{bottom:488.253333pt;}
.y17{bottom:489.760000pt;}
.y14e{bottom:490.426667pt;}
.y78{bottom:494.973333pt;}
.y158{bottom:495.840000pt;}
.y67{bottom:496.546667pt;}
.yef{bottom:498.493333pt;}
.ya6{bottom:500.000000pt;}
.y57{bottom:505.626667pt;}
.y103{bottom:506.493333pt;}
.yc7{bottom:507.706667pt;}
.y11c{bottom:507.746667pt;}
.y54{bottom:508.413333pt;}
.y8f{bottom:508.733333pt;}
.y1{bottom:509.986667pt;}
.yad{bottom:514.213333pt;}
.y14d{bottom:514.426667pt;}
.y27{bottom:515.293333pt;}
.ya{bottom:526.880000pt;}
.ya5{bottom:528.800000pt;}
.y16{bottom:534.560000pt;}
.yd0{bottom:535.813333pt;}
.ycc{bottom:539.453333pt;}
.y156{bottom:543.866667pt;}
.y26{bottom:544.093333pt;}
.y167{bottom:545.853333pt;}
.yc3{bottom:547.653333pt;}
.ye6{bottom:556.640000pt;}
.ya4{bottom:557.600000pt;}
.ycf{bottom:560.893333pt;}
.yb4{bottom:565.413333pt;}
.y8e{bottom:566.853333pt;}
.y7a{bottom:569.626667pt;}
.y25{bottom:572.893333pt;}
.y38{bottom:576.933333pt;}
.ye5{bottom:579.040000pt;}
.y15{bottom:579.360000pt;}
.yce{bottom:599.333333pt;}
.y56{bottom:600.733333pt;}
.ye4{bottom:601.440000pt;}
.y9{bottom:601.573333pt;}
.y79{bottom:602.626667pt;}
.y129{bottom:604.706667pt;}
.y85{bottom:608.826667pt;}
.yc2{bottom:617.506667pt;}
.y37{bottom:624.960000pt;}
.y87{bottom:628.546667pt;}
.y24{bottom:631.746667pt;}
.y14c{bottom:634.213333pt;}
.y6e{bottom:636.346667pt;}
.y14{bottom:639.293333pt;}
.ya3{bottom:642.373333pt;}
.ye7{bottom:665.533333pt;}
.y36{bottom:680.960000pt;}
.h2d{height:38.180000pt;}
.h31{height:40.414375pt;}
.h2f{height:42.174375pt;}
.h30{height:42.276000pt;}
.hc{height:46.747500pt;}
.h7{height:48.000000pt;}
.h28{height:48.096000pt;}
.h37{height:49.031250pt;}
.h20{height:52.519562pt;}
.h2a{height:52.781250pt;}
.h2e{height:54.563437pt;}
.h1b{height:55.232000pt;}
.h5{height:55.342464pt;}
.h14{height:56.160000pt;}
.h17{height:56.256000pt;}
.h12{height:59.197246pt;}
.h1d{height:59.450625pt;}
.h1e{height:59.552250pt;}
.h15{height:61.754062pt;}
.h16{height:61.859625pt;}
.h35{height:63.515625pt;}
.h36{height:63.617250pt;}
.h1f{height:63.783562pt;}
.h9{height:66.478464pt;}
.h33{height:69.000000pt;}
.ha{height:76.218750pt;}
.hb{height:76.320375pt;}
.h4{height:76.820000pt;}
.h26{height:84.662813pt;}
.h10{height:84.856875pt;}
.h25{height:84.958500pt;}
.h19{height:88.921875pt;}
.h1a{height:89.023500pt;}
.he{height:89.446106pt;}
.hf{height:89.553227pt;}
.h32{height:92.000000pt;}
.h11{height:92.986875pt;}
.h29{height:93.088500pt;}
.h13{height:96.000000pt;}
.h2b{height:96.096000pt;}
.h39{height:101.726625pt;}
.h2c{height:102.062500pt;}
.h23{height:110.263125pt;}
.h24{height:110.364750pt;}
.h2{height:118.393125pt;}
.h3{height:118.494750pt;}
.h18{height:122.980312pt;}
.h8{height:127.578125pt;}
.h27{height:127.680187pt;}
.h6{height:136.253438pt;}
.h1c{height:136.355500pt;}
.h22{height:140.335938pt;}
.h21{height:140.438000pt;}
.h34{height:153.093750pt;}
.h38{height:153.180000pt;}
.hd{height:187.779792pt;}
.h1{height:280.671875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6a{left:27.231981pt;}
.x13{left:28.191981pt;}
.x32{left:38.591981pt;}
.x24{left:40.255981pt;}
.x28{left:42.495981pt;}
.xcb{left:45.567981pt;}
.x27{left:47.327981pt;}
.x14{left:49.663981pt;}
.x29{left:51.647981pt;}
.x65{left:53.663981pt;}
.x3e{left:55.967981pt;}
.xa3{left:57.599981pt;}
.x26{left:61.247981pt;}
.x94{left:64.447981pt;}
.x99{left:69.183981pt;}
.xa4{left:71.647981pt;}
.x93{left:73.407981pt;}
.x64{left:74.591981pt;}
.x4b{left:76.863981pt;}
.x25{left:78.527981pt;}
.xb9{left:80.447981pt;}
.x76{left:85.023981pt;}
.x4c{left:87.743981pt;}
.x36{left:89.119981pt;}
.x4d{left:90.143981pt;}
.x8f{left:94.303981pt;}
.x34{left:95.231981pt;}
.x4f{left:97.183981pt;}
.x50{left:99.103981pt;}
.x53{left:105.535981pt;}
.x8d{left:109.983981pt;}
.x52{left:111.583981pt;}
.x35{left:116.511981pt;}
.x4e{left:119.583981pt;}
.x8e{left:122.143981pt;}
.x51{left:124.063981pt;}
.x5e{left:125.759981pt;}
.x77{left:129.983981pt;}
.x79{left:132.223981pt;}
.x92{left:133.413314pt;}
.x1c{left:135.866648pt;}
.x75{left:140.066648pt;}
.x1d{left:140.986648pt;}
.x78{left:142.306648pt;}
.x68{left:145.439981pt;}
.x11{left:146.333314pt;}
.x74{left:149.506648pt;}
.x63{left:150.879981pt;}
.x2{left:159.813314pt;}
.x23{left:162.213314pt;}
.x4a{left:170.586648pt;}
.x80{left:175.266648pt;}
.x3{left:176.453314pt;}
.x1e{left:179.866648pt;}
.xa5{left:185.599981pt;}
.x15{left:201.053314pt;}
.x81{left:201.986648pt;}
.x82{left:203.426648pt;}
.x22{left:204.826648pt;}
.x4{left:207.493314pt;}
.x16{left:211.933314pt;}
.x3f{left:231.999981pt;}
.x17{left:232.893314pt;}
.x18{left:236.573314pt;}
.x9{left:238.626648pt;}
.x96{left:245.413314pt;}
.xbb{left:247.653314pt;}
.xbf{left:248.573314pt;}
.x97{left:250.053314pt;}
.x5{left:251.653314pt;}
.xb8{left:256.453314pt;}
.x37{left:265.119981pt;}
.xc7{left:267.866648pt;}
.xba{left:279.999981pt;}
.x98{left:280.933314pt;}
.x6{left:286.373314pt;}
.x38{left:303.999981pt;}
.x90{left:307.679981pt;}
.x6e{left:323.453314pt;}
.xe2{left:329.533314pt;}
.xd1{left:332.186648pt;}
.x1{left:333.733314pt;}
.x6d{left:334.653314pt;}
.xbd{left:336.319981pt;}
.xd0{left:340.386648pt;}
.xe{left:341.466648pt;}
.xcd{left:343.106648pt;}
.xc3{left:345.026648pt;}
.xce{left:350.306648pt;}
.xcc{left:356.546648pt;}
.xbc{left:357.599981pt;}
.xcf{left:365.986648pt;}
.x8c{left:369.466648pt;}
.x67{left:377.279981pt;}
.xda{left:386.626648pt;}
.xdb{left:390.399981pt;}
.x40{left:409.253314pt;}
.xf{left:419.226648pt;}
.x12{left:424.733314pt;}
.xe1{left:425.786648pt;}
.x1a{left:431.013314pt;}
.x3b{left:447.493314pt;}
.x1b{left:457.573314pt;}
.xbe{left:459.679981pt;}
.x8a{left:460.933314pt;}
.x69{left:476.773314pt;}
.xc1{left:478.626648pt;}
.xa0{left:480.773314pt;}
.xb3{left:483.773314pt;}
.xc0{left:494.946648pt;}
.xc2{left:496.706648pt;}
.x8b{left:498.426648pt;}
.x9f{left:505.413314pt;}
.xb1{left:513.373314pt;}
.xb4{left:519.453314pt;}
.xb2{left:522.333314pt;}
.x61{left:524.186648pt;}
.x7{left:526.946648pt;}
.x91{left:534.426648pt;}
.x9e{left:540.639981pt;}
.x19{left:551.493314pt;}
.x86{left:554.653314pt;}
.xc{left:555.746648pt;}
.xb{left:564.386648pt;}
.x84{left:565.946648pt;}
.xaa{left:569.759981pt;}
.x87{left:571.773314pt;}
.x41{left:573.053314pt;}
.x83{left:574.586648pt;}
.xe0{left:578.173314pt;}
.xb6{left:579.293314pt;}
.x85{left:580.413314pt;}
.xa9{left:594.239981pt;}
.xd{left:595.266648pt;}
.xdc{left:597.573314pt;}
.xb5{left:598.493314pt;}
.xab{left:601.919981pt;}
.xa7{left:602.879981pt;}
.xa{left:603.906648pt;}
.xa8{left:605.279981pt;}
.xdd{left:610.746648pt;}
.x7b{left:619.266648pt;}
.x7d{left:622.626648pt;}
.x9b{left:640.479981pt;}
.x9c{left:649.279981pt;}
.x7e{left:654.626648pt;}
.x71{left:663.546648pt;}
.x49{left:670.746648pt;}
.x48{left:674.906648pt;}
.x7c{left:680.066648pt;}
.xae{left:682.786648pt;}
.x60{left:687.066648pt;}
.x62{left:692.346648pt;}
.xc9{left:697.053314pt;}
.xc4{left:701.506648pt;}
.x7f{left:704.413314pt;}
.xad{left:705.666648pt;}
.x9a{left:707.199981pt;}
.x5f{left:709.346648pt;}
.x89{left:710.906648pt;}
.x70{left:714.906648pt;}
.xaf{left:717.346648pt;}
.x88{left:720.666648pt;}
.x54{left:727.359981pt;}
.x56{left:739.359981pt;}
.xc8{left:789.853314pt;}
.x72{left:813.186648pt;}
.x9d{left:815.066648pt;}
.x59{left:819.199981pt;}
.x7a{left:821.533314pt;}
.x39{left:825.373314pt;}
.x5a{left:833.919981pt;}
.xd8{left:845.279981pt;}
.xd4{left:849.466648pt;}
.x10{left:856.666648pt;}
.xd3{left:857.786648pt;}
.x5c{left:859.039981pt;}
.xa2{left:863.613314pt;}
.x1f{left:864.546648pt;}
.x20{left:866.466648pt;}
.xb7{left:868.666648pt;}
.x3a{left:874.533314pt;}
.xd6{left:878.559981pt;}
.xd5{left:884.986648pt;}
.x57{left:887.679981pt;}
.x5b{left:889.599981pt;}
.xd2{left:893.439981pt;}
.xd7{left:897.919981pt;}
.xd9{left:904.479981pt;}
.x6c{left:907.359981pt;}
.x5d{left:917.919981pt;}
.x42{left:920.866648pt;}
.x21{left:933.186648pt;}
.x95{left:936.826648pt;}
.x6b{left:949.759981pt;}
.xc6{left:953.053314pt;}
.xc5{left:970.973314pt;}
.xa6{left:982.626648pt;}
.x58{left:994.106648pt;}
.x2d{left:1006.466648pt;}
.x30{left:1007.746648pt;}
.x43{left:1012.453314pt;}
.x2b{left:1021.826648pt;}
.x2f{left:1023.746648pt;}
.x46{left:1025.026648pt;}
.x44{left:1029.253314pt;}
.x55{left:1032.666648pt;}
.x2a{left:1038.306648pt;}
.x6f{left:1042.879981pt;}
.x31{left:1046.946648pt;}
.x2c{left:1057.026648pt;}
.xca{left:1060.253314pt;}
.xb0{left:1062.559981pt;}
.x66{left:1067.546648pt;}
.x47{left:1070.946648pt;}
.x2e{left:1077.826648pt;}
.x45{left:1086.173314pt;}
.xac{left:1119.773314pt;}
.x3c{left:1124.319981pt;}
.x3d{left:1141.119981pt;}
.x33{left:1153.826648pt;}
.xa1{left:1155.519981pt;}
.x73{left:1166.399981pt;}
.x8{left:1174.399981pt;}
.xde{left:1226.493314pt;}
.xdf{left:1250.533314pt;}
}




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