
    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_08571e8077dbc0d006103cfd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_5bdc1c5087dcd22ce095e4ae.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_d270d6311af615df71ac6798.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_46cf961de1fa103b905dd8b6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_c07797265c28b0e69403ee79.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_fc8a4985cae6565b1c92e463.woff')format("woff");}.ff6{font-family:ff6;line-height:0.754395;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_f903a6241b3095e42895ffa7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.027832;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_57e10a3e96918b0e9d5d673f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_5f56ea1cc621012475826240.woff')format("woff");}.ff9{font-family:ff9;line-height:0.754395;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_6ac718a3cff6051939379e7f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_a423fbcc98e19a35ecb28450.woff')format("woff");}.ffb{font-family:ffb;line-height:0.988281;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_72f90bff4476bbd14d357fbd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_8b102a542da405e004a16f75.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_29cf50267537675d59040dcc.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_9467772048aee50162190733.woff')format("woff");}.fff{font-family:fff;line-height:0.958008;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_ae1c6017bb3810f330fa9a3e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_423eebaf9ad73f49e6ab96ff.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3c5a1d64caf6ad52cdd65810.woff')format("woff");}.ff12{font-family:ff12;line-height:0.872070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c66d6e9aac72db3762e0057b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.720215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ed94bee00202ebd8a904e856.woff')format("woff");}.ff14{font-family:ff14;line-height:0.852051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9fef88db6f4a4dac403c60c6.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2ad362b6ade152db197dd4c0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.785156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-3.755808px;}
.ls2{letter-spacing:-3.024000px;}
.ls1{letter-spacing:-2.995200px;}
.ls3{letter-spacing:-2.980800px;}
.ls59{letter-spacing:-0.443808px;}
.ls21{letter-spacing:-0.414864px;}
.lsa{letter-spacing:-0.411264px;}
.ls8{letter-spacing:-0.395568px;}
.ls48{letter-spacing:-0.376272px;}
.ls14{letter-spacing:-0.368928px;}
.ls15{letter-spacing:-0.350784px;}
.ls4e{letter-spacing:-0.308736px;}
.ls42{letter-spacing:-0.299088px;}
.lsf{letter-spacing:-0.296352px;}
.ls22{letter-spacing:-0.279792px;}
.ls56{letter-spacing:-0.270144px;}
.ls34{letter-spacing:-0.260496px;}
.ls9{letter-spacing:-0.254016px;}
.ls23{letter-spacing:-0.250848px;}
.lse{letter-spacing:-0.247968px;}
.ls13{letter-spacing:-0.241920px;}
.ls3f{letter-spacing:-0.231840px;}
.ls47{letter-spacing:-0.231552px;}
.ls12{letter-spacing:-0.229824px;}
.ls30{letter-spacing:-0.225216px;}
.lsc{letter-spacing:-0.217728px;}
.ls39{letter-spacing:-0.212256px;}
.ls3a{letter-spacing:-0.211968px;}
.ls5a{letter-spacing:-0.205344px;}
.ls2c{letter-spacing:-0.198720px;}
.ls2d{letter-spacing:-0.192096px;}
.ls36{letter-spacing:-0.172224px;}
.ls28{letter-spacing:-0.165600px;}
.ls29{letter-spacing:-0.158976px;}
.ls3c{letter-spacing:-0.154368px;}
.ls27{letter-spacing:-0.152352px;}
.lsb{letter-spacing:-0.139104px;}
.ls43{letter-spacing:-0.132480px;}
.ls31{letter-spacing:-0.125856px;}
.ls25{letter-spacing:-0.119232px;}
.lsd{letter-spacing:-0.102816px;}
.ls2b{letter-spacing:-0.092736px;}
.ls2f{letter-spacing:-0.086112px;}
.ls26{letter-spacing:-0.079488px;}
.ls2e{letter-spacing:-0.072864px;}
.ls3e{letter-spacing:-0.046368px;}
.ls2a{letter-spacing:-0.033120px;}
.ls35{letter-spacing:-0.014400px;}
.ls24{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.007200px;}
.ls4a{letter-spacing:0.010080px;}
.ls20{letter-spacing:0.010800px;}
.ls44{letter-spacing:0.012960px;}
.ls46{letter-spacing:0.014112px;}
.ls45{letter-spacing:0.014400px;}
.ls5f{letter-spacing:0.104544px;}
.ls61{letter-spacing:0.114048px;}
.ls5c{letter-spacing:0.126720px;}
.ls62{letter-spacing:0.133056px;}
.ls5e{letter-spacing:0.147312px;}
.ls5b{letter-spacing:0.160848px;}
.ls5d{letter-spacing:0.194832px;}
.ls41{letter-spacing:0.275616px;}
.ls60{letter-spacing:0.332640px;}
.ls32{letter-spacing:0.553536px;}
.ls4c{letter-spacing:0.571680px;}
.ls3d{letter-spacing:1.744848px;}
.ls16{letter-spacing:4.468320px;}
.ls4d{letter-spacing:5.475744px;}
.ls50{letter-spacing:5.843520px;}
.ls7{letter-spacing:6.142896px;}
.ls5{letter-spacing:7.220592px;}
.ls11{letter-spacing:7.221312px;}
.ls51{letter-spacing:11.427840px;}
.ls1b{letter-spacing:11.443536px;}
.ls38{letter-spacing:12.211200px;}
.ls4f{letter-spacing:12.548160px;}
.ls1d{letter-spacing:13.226400px;}
.ls1e{letter-spacing:14.160960px;}
.ls58{letter-spacing:16.804800px;}
.ls54{letter-spacing:17.215200px;}
.ls17{letter-spacing:17.505216px;}
.ls33{letter-spacing:18.457920px;}
.ls3b{letter-spacing:18.471888px;}
.ls18{letter-spacing:18.975744px;}
.ls19{letter-spacing:18.976320px;}
.ls4b{letter-spacing:19.733760px;}
.ls52{letter-spacing:20.910240px;}
.ls37{letter-spacing:27.326880px;}
.ls55{letter-spacing:33.177600px;}
.ls1a{letter-spacing:36.748800px;}
.ls1c{letter-spacing:37.568160px;}
.ls53{letter-spacing:42.871680px;}
.ls49{letter-spacing:51.187392px;}
.ls4{letter-spacing:62.192736px;}
.ls6{letter-spacing:112.940784px;}
.ls57{letter-spacing:155.586816px;}
.ls1f{letter-spacing:847.186560px;}
.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;}
}
.ws0{word-spacing:-37.296000px;}
.ws6{word-spacing:-30.250800px;}
.ws8{word-spacing:-26.763552px;}
.ws10{word-spacing:-26.753904px;}
.ws1b{word-spacing:-26.638128px;}
.ws2{word-spacing:-26.618832px;}
.ws7{word-spacing:-26.599536px;}
.ws1e{word-spacing:-26.570592px;}
.ws1a{word-spacing:-19.958400px;}
.ws19{word-spacing:-19.951200px;}
.ws14{word-spacing:-19.944000px;}
.ws1f{word-spacing:-19.936800px;}
.ws11{word-spacing:-19.929600px;}
.ws9{word-spacing:-18.348480px;}
.wse{word-spacing:-18.315360px;}
.wsc{word-spacing:-18.268992px;}
.wsd{word-spacing:-18.262368px;}
.wsb{word-spacing:-18.255744px;}
.ws18{word-spacing:-18.229248px;}
.ws12{word-spacing:-18.196128px;}
.wsa{word-spacing:-18.189504px;}
.ws15{word-spacing:-18.182880px;}
.ws13{word-spacing:-18.176256px;}
.ws1d{word-spacing:-18.149760px;}
.wsf{word-spacing:-18.123264px;}
.ws4{word-spacing:-16.613856px;}
.ws5{word-spacing:-16.504992px;}
.ws3{word-spacing:-16.498944px;}
.ws20{word-spacing:-13.495680px;}
.ws16{word-spacing:-13.438656px;}
.ws1c{word-spacing:-0.072000px;}
.ws17{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-12.344256px;}
._a{margin-left:-9.768384px;}
._2{margin-left:-5.825952px;}
._5{margin-left:-4.134384px;}
._3{margin-left:-3.007008px;}
._4{margin-left:-1.577232px;}
._1{width:1.080144px;}
._1b{width:2.848320px;}
._d{width:3.908160px;}
._e{width:4.968000px;}
._f{width:6.160320px;}
._6{width:7.244928px;}
._7{width:8.258256px;}
._1c{width:9.642816px;}
._14{width:10.943712px;}
._10{width:12.254400px;}
._16{width:13.976640px;}
._17{width:15.142752px;}
._20{width:16.195680px;}
._b{width:17.761536px;}
._c{width:18.801648px;}
._12{width:19.830240px;}
._19{width:21.280320px;}
._8{width:23.284800px;}
._27{width:25.104960px;}
._21{width:26.182656px;}
._1f{width:27.369216px;}
._11{width:29.079360px;}
._28{width:30.954384px;}
._1d{width:32.106096px;}
._1e{width:33.160608px;}
._24{width:34.231104px;}
._22{width:35.835840px;}
._13{width:37.317312px;}
._15{width:38.485440px;}
._2c{width:39.570912px;}
._2b{width:41.201280px;}
._2d{width:42.240816px;}
._2f{width:43.320960px;}
._33{width:44.910720px;}
._30{width:45.970560px;}
._1a{width:47.162880px;}
._2e{width:48.885120px;}
._2a{width:50.938560px;}
._34{width:52.462080px;}
._26{width:53.786880px;}
._25{width:54.846720px;}
._31{width:56.105280px;}
._32{width:57.231360px;}
._29{width:74.333664px;}
._23{width:76.355568px;}
._18{width:79.408800px;}
._0{width:1560.646080px;}
.fce{color:rgb(10,64,143);}
.fcd{color:rgb(4,21,47);}
.fc0{color:rgb(4,22,48);}
.fc2{color:transparent;}
.fca{color:rgb(41,111,102);}
.fc4{color:rgb(10,64,142);}
.fc5{color:rgb(0,0,0);}
.fc6{color:rgb(137,182,217);}
.fcf{color:rgb(220,249,245);}
.fc1{color:rgb(82,224,206);}
.fc7{color:rgb(16,89,195);}
.fcb{color:rgb(9,64,142);}
.fc8{color:rgb(41,112,103);}
.fc3{color:rgb(14,87,191);}
.fc9{color:rgb(9,64,143);}
.fcc{color:rgb(41,111,103);}
.fs3{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs8{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:36.360000px;}
.y2{bottom:56.520000px;}
.y22{bottom:73.260000px;}
.y137{bottom:111.960000px;}
.y21{bottom:117.540000px;}
.y1f8{bottom:118.080000px;}
.y13f{bottom:123.840000px;}
.y1dc{bottom:129.600000px;}
.yca{bottom:132.840000px;}
.y7f{bottom:134.280000px;}
.y1f7{bottom:138.240000px;}
.yec{bottom:142.200000px;}
.y1b3{bottom:144.000000px;}
.y18f{bottom:144.720000px;}
.y163{bottom:145.080000px;}
.y136{bottom:147.240000px;}
.y1db{bottom:150.120000px;}
.y1f6{bottom:158.760000px;}
.y13e{bottom:159.120000px;}
.y112{bottom:159.840000px;}
.y20{bottom:161.460000px;}
.y1b2{bottom:164.160000px;}
.y18e{bottom:164.880000px;}
.y7e{bottom:166.320000px;}
.yc9{bottom:166.680000px;}
.y1da{bottom:170.280000px;}
.yeb{bottom:174.600000px;}
.y1f5{bottom:178.920000px;}
.y162{bottom:180.360000px;}
.y135{bottom:182.520000px;}
.y1b1{bottom:184.320000px;}
.y18d{bottom:185.040000px;}
.y7d{bottom:186.840000px;}
.ya1{bottom:189.000000px;}
.y1d9{bottom:190.440000px;}
.y111{bottom:191.880000px;}
.y13d{bottom:194.400000px;}
.y1f4{bottom:199.080000px;}
.yc8{bottom:200.520000px;}
.y1b0{bottom:204.480000px;}
.y18c{bottom:205.200000px;}
.y7c{bottom:207.000000px;}
.y1d8{bottom:210.600000px;}
.y161{bottom:215.640000px;}
.y134{bottom:217.800000px;}
.y1f3{bottom:219.240000px;}
.ya0{bottom:220.680000px;}
.y110{bottom:224.280000px;}
.y1af{bottom:225.000000px;}
.y18b{bottom:225.360000px;}
.y13c{bottom:229.680000px;}
.y1d7{bottom:230.760000px;}
.yc7{bottom:234.360000px;}
.y7b{bottom:239.040000px;}
.y1f2{bottom:239.400000px;}
.y1ae{bottom:245.160000px;}
.y18a{bottom:245.880000px;}
.y160{bottom:250.920000px;}
.y1d6{bottom:251.280000px;}
.y9f{bottom:252.720000px;}
.y133{bottom:253.080000px;}
.y10f{bottom:256.320000px;}
.y7a{bottom:259.560000px;}
.y13b{bottom:264.960000px;}
.y1ad{bottom:265.320000px;}
.y189{bottom:266.040000px;}
.yc6{bottom:268.200000px;}
.yea{bottom:271.440000px;}
.y79{bottom:279.720000px;}
.y1f1{bottom:280.080000px;}
.y9e{bottom:284.400000px;}
.y1ac{bottom:285.480000px;}
.y15f{bottom:286.200000px;}
.y132{bottom:288.360000px;}
.y1e{bottom:288.720000px;}
.y1d5{bottom:291.600000px;}
.y78{bottom:299.880000px;}
.y13a{bottom:300.240000px;}
.yc5{bottom:302.040000px;}
.ye9{bottom:303.480000px;}
.y1ab{bottom:305.640000px;}
.y188{bottom:306.360000px;}
.y1d4{bottom:311.760000px;}
.y9d{bottom:316.440000px;}
.y1d{bottom:319.320000px;}
.y1f0{bottom:320.400000px;}
.y10e{bottom:320.760000px;}
.y15e{bottom:321.480000px;}
.y131{bottom:323.280000px;}
.y1aa{bottom:326.160000px;}
.y187{bottom:326.520000px;}
.y20f{bottom:331.560000px;}
.y77{bottom:331.920000px;}
.yc4{bottom:334.080000px;}
.y139{bottom:335.520000px;}
.ye8{bottom:335.880000px;}
.y1a9{bottom:346.320000px;}
.y186{bottom:347.040000px;}
.y9c{bottom:348.120000px;}
.y1c{bottom:349.560000px;}
.y20e{bottom:352.080000px;}
.y76{bottom:352.440000px;}
.y10d{bottom:353.160000px;}
.yc3{bottom:354.600000px;}
.ye7{bottom:356.400000px;}
.y15d{bottom:356.760000px;}
.y138{bottom:358.200000px;}
.y130{bottom:358.560000px;}
.y1d3{bottom:363.960000px;}
.y1a8{bottom:366.480000px;}
.y185{bottom:367.200000px;}
.y20d{bottom:372.240000px;}
.y75{bottom:372.600000px;}
.y1ef{bottom:372.960000px;}
.yc2{bottom:374.760000px;}
.ye6{bottom:376.560000px;}
.y1b{bottom:380.160000px;}
.y12f{bottom:381.600000px;}
.y1d2{bottom:384.480000px;}
.y10c{bottom:385.560000px;}
.y15c{bottom:385.920000px;}
.y1a7{bottom:386.640000px;}
.y184{bottom:387.360000px;}
.y74{bottom:392.760000px;}
.y1ee{bottom:393.120000px;}
.yc1{bottom:394.920000px;}
.ye5{bottom:396.720000px;}
.y1d1{bottom:404.640000px;}
.y12e{bottom:405.000000px;}
.y15b{bottom:406.440000px;}
.y1a6{bottom:406.800000px;}
.y183{bottom:407.520000px;}
.y9b{bottom:407.880000px;}
.y1a{bottom:410.400000px;}
.y20c{bottom:412.920000px;}
.y73{bottom:413.280000px;}
.yc0{bottom:415.080000px;}
.ye4{bottom:416.880000px;}
.y10b{bottom:417.600000px;}
.y1d0{bottom:424.800000px;}
.y15a{bottom:426.600000px;}
.y1a5{bottom:427.320000px;}
.y182{bottom:427.680000px;}
.y9a{bottom:428.040000px;}
.y57{bottom:433.440000px;}
.y10a{bottom:438.120000px;}
.y19{bottom:440.640000px;}
.y20b{bottom:444.600000px;}
.y72{bottom:444.960000px;}
.y1cf{bottom:445.320000px;}
.y159{bottom:446.760000px;}
.ybf{bottom:447.120000px;}
.y1a4{bottom:447.480000px;}
.y99{bottom:448.200000px;}
.ye3{bottom:448.920000px;}
.y12d{bottom:451.440000px;}
.y109{bottom:458.280000px;}
.y71{bottom:465.480000px;}
.y56{bottom:466.560000px;}
.y158{bottom:466.920000px;}
.ybe{bottom:467.640000px;}
.y98{bottom:468.360000px;}
.ye2{bottom:469.440000px;}
.y18{bottom:471.240000px;}
.y12c{bottom:474.840000px;}
.y1a3{bottom:476.640000px;}
.y108{bottom:478.800000px;}
.y1ce{bottom:485.640000px;}
.y70{bottom:486.000000px;}
.ybd{bottom:487.800000px;}
.y181{bottom:488.520000px;}
.y97{bottom:488.880000px;}
.ye1{bottom:489.600000px;}
.y213{bottom:491.400000px;}
.y55{bottom:492.840000px;}
.y157{bottom:496.080000px;}
.y1a2{bottom:496.800000px;}
.y12b{bottom:497.880000px;}
.y107{bottom:498.960000px;}
.y17{bottom:501.480000px;}
.y1cd{bottom:505.800000px;}
.y6f{bottom:506.160000px;}
.ybc{bottom:507.960000px;}
.y180{bottom:508.680000px;}
.y96{bottom:509.040000px;}
.ye0{bottom:510.120000px;}
.y54{bottom:513.000000px;}
.y156{bottom:516.600000px;}
.y1a1{bottom:516.960000px;}
.y106{bottom:519.120000px;}
.y212{bottom:520.920000px;}
.y12a{bottom:521.280000px;}
.y1cc{bottom:525.960000px;}
.y1ed{bottom:526.320000px;}
.ybb{bottom:528.480000px;}
.y17f{bottom:528.840000px;}
.ydf{bottom:530.280000px;}
.y16{bottom:532.080000px;}
.y53{bottom:533.160000px;}
.y211{bottom:535.680000px;}
.y155{bottom:536.760000px;}
.y1a0{bottom:537.480000px;}
.y6e{bottom:537.840000px;}
.y95{bottom:538.200000px;}
.y129{bottom:544.320000px;}
.y1cb{bottom:546.480000px;}
.y1ec{bottom:546.840000px;}
.yba{bottom:548.640000px;}
.y17e{bottom:549.360000px;}
.yde{bottom:550.440000px;}
.y105{bottom:551.160000px;}
.y154{bottom:556.920000px;}
.y19f{bottom:557.640000px;}
.y6d{bottom:558.360000px;}
.y15{bottom:562.320000px;}
.y210{bottom:565.200000px;}
.y1ca{bottom:566.640000px;}
.y128{bottom:567.720000px;}
.y17d{bottom:569.520000px;}
.y104{bottom:571.680000px;}
.y19e{bottom:577.800000px;}
.y94{bottom:578.520000px;}
.y6c{bottom:578.880000px;}
.yb9{bottom:580.320000px;}
.ydd{bottom:582.120000px;}
.y52{bottom:582.840000px;}
.y153{bottom:586.080000px;}
.y1c9{bottom:586.800000px;}
.y1f{bottom:589.500000px;}
.y17c{bottom:589.680000px;}
.y127{bottom:591.120000px;}
.y103{bottom:591.840000px;}
.y14{bottom:592.560000px;}
.y20a{bottom:598.680000px;}
.y6b{bottom:599.040000px;}
.yb8{bottom:601.200000px;}
.y51{bottom:603.000000px;}
.y152{bottom:606.240000px;}
.y19d{bottom:606.960000px;}
.y17b{bottom:609.840000px;}
.y102{bottom:612.000000px;}
.y126{bottom:614.160000px;}
.y209{bottom:618.840000px;}
.y93{bottom:619.200000px;}
.y1eb{bottom:619.560000px;}
.yb7{bottom:621.360000px;}
.y13{bottom:623.160000px;}
.y151{bottom:626.400000px;}
.y19c{bottom:627.120000px;}
.y17a{bottom:630.000000px;}
.y6a{bottom:630.720000px;}
.y101{bottom:632.160000px;}
.y125{bottom:637.560000px;}
.y1c8{bottom:639.000000px;}
.y1ea{bottom:639.720000px;}
.yb6{bottom:641.520000px;}
.y50{bottom:643.320000px;}
.y150{bottom:646.920000px;}
.y19b{bottom:647.640000px;}
.y92{bottom:648.360000px;}
.y179{bottom:650.520000px;}
.y69{bottom:651.600000px;}
.y12{bottom:653.400000px;}
.y3a{bottom:658.800000px;}
.y1c7{bottom:659.520000px;}
.y1e9{bottom:659.880000px;}
.y124{bottom:660.960000px;}
.yb5{bottom:661.680000px;}
.ydc{bottom:663.480000px;}
.y100{bottom:664.200000px;}
.y19a{bottom:667.800000px;}
.y91{bottom:668.520000px;}
.y178{bottom:670.680000px;}
.y208{bottom:671.040000px;}
.y68{bottom:671.760000px;}
.y4f{bottom:672.480000px;}
.y14f{bottom:676.080000px;}
.y1c6{bottom:679.680000px;}
.y1e8{bottom:680.040000px;}
.yb4{bottom:681.840000px;}
.ydb{bottom:683.640000px;}
.y11{bottom:684.000000px;}
.yff{bottom:684.720000px;}
.y199{bottom:687.960000px;}
.y90{bottom:688.680000px;}
.y39{bottom:689.400000px;}
.y177{bottom:690.840000px;}
.y207{bottom:691.560000px;}
.y67{bottom:691.920000px;}
.y4e{bottom:693.000000px;}
.y14e{bottom:696.240000px;}
.y1c5{bottom:699.840000px;}
.y1e7{bottom:700.200000px;}
.yb3{bottom:702.000000px;}
.yfe{bottom:704.880000px;}
.y123{bottom:707.400000px;}
.y8f{bottom:709.200000px;}
.y176{bottom:711.000000px;}
.y206{bottom:711.720000px;}
.y66{bottom:712.080000px;}
.y4d{bottom:713.160000px;}
.y10{bottom:714.240000px;}
.y38{bottom:714.960000px;}
.yda{bottom:715.680000px;}
.y14d{bottom:716.400000px;}
.y198{bottom:717.120000px;}
.y1c4{bottom:720.000000px;}
.yfd{bottom:725.040000px;}
.y8e{bottom:729.360000px;}
.y122{bottom:730.440000px;}
.y175{bottom:731.160000px;}
.y65{bottom:732.240000px;}
.y4c{bottom:733.320000px;}
.yb2{bottom:734.040000px;}
.yd9{bottom:736.200000px;}
.y14c{bottom:736.560000px;}
.y197{bottom:737.280000px;}
.y1c3{bottom:740.520000px;}
.y37{bottom:740.880000px;}
.yf{bottom:744.840000px;}
.yfc{bottom:745.560000px;}
.y8d{bottom:749.520000px;}
.y174{bottom:751.680000px;}
.y205{bottom:752.400000px;}
.y1e6{bottom:752.760000px;}
.y4b{bottom:753.480000px;}
.y121{bottom:753.840000px;}
.yb1{bottom:754.560000px;}
.yd8{bottom:756.360000px;}
.y196{bottom:757.800000px;}
.y1c2{bottom:760.680000px;}
.y64{bottom:764.280000px;}
.yfb{bottom:765.720000px;}
.y14b{bottom:766.080000px;}
.y36{bottom:766.800000px;}
.y8c{bottom:769.680000px;}
.y173{bottom:771.840000px;}
.y204{bottom:772.560000px;}
.y1e5{bottom:772.920000px;}
.y4a{bottom:773.640000px;}
.yb0{bottom:774.720000px;}
.ye{bottom:775.080000px;}
.yd7{bottom:776.880000px;}
.y120{bottom:777.240000px;}
.y195{bottom:777.960000px;}
.y1c1{bottom:780.840000px;}
.y63{bottom:784.800000px;}
.y14a{bottom:786.240000px;}
.y8b{bottom:789.840000px;}
.y172{bottom:792.000000px;}
.y35{bottom:792.720000px;}
.y1e4{bottom:793.080000px;}
.y49{bottom:794.160000px;}
.yaf{bottom:795.240000px;}
.yd6{bottom:797.040000px;}
.yfa{bottom:797.400000px;}
.y11f{bottom:800.280000px;}
.y1c0{bottom:801.000000px;}
.y62{bottom:804.960000px;}
.yd{bottom:805.320000px;}
.y149{bottom:806.400000px;}
.y194{bottom:807.120000px;}
.y8a{bottom:810.360000px;}
.y34{bottom:811.080000px;}
.y171{bottom:812.160000px;}
.y203{bottom:812.880000px;}
.y1e3{bottom:813.600000px;}
.y48{bottom:814.320000px;}
.yae{bottom:815.400000px;}
.yd5{bottom:817.200000px;}
.yf9{bottom:818.280000px;}
.y1bf{bottom:821.160000px;}
.y11e{bottom:823.680000px;}
.y61{bottom:825.120000px;}
.y148{bottom:826.560000px;}
.y193{bottom:827.280000px;}
.y89{bottom:830.520000px;}
.y170{bottom:832.320000px;}
.y1e2{bottom:833.760000px;}
.yad{bottom:835.560000px;}
.yc{bottom:835.920000px;}
.yd4{bottom:837.360000px;}
.yf8{bottom:838.440000px;}
.y33{bottom:841.680000px;}
.y47{bottom:843.480000px;}
.y202{bottom:844.920000px;}
.y60{bottom:845.640000px;}
.y147{bottom:846.720000px;}
.y11d{bottom:847.080000px;}
.y192{bottom:847.440000px;}
.y16f{bottom:852.840000px;}
.y1e1{bottom:853.920000px;}
.yac{bottom:855.720000px;}
.yf7{bottom:858.600000px;}
.y88{bottom:859.680000px;}
.y1be{bottom:861.840000px;}
.y46{bottom:863.640000px;}
.y201{bottom:865.440000px;}
.yb{bottom:866.160000px;}
.y146{bottom:867.240000px;}
.y32{bottom:867.600000px;}
.y191{bottom:867.960000px;}
.yd3{bottom:869.400000px;}
.y11c{bottom:870.120000px;}
.y16e{bottom:873.000000px;}
.y5f{bottom:877.320000px;}
.yf6{bottom:878.760000px;}
.y1bd{bottom:882.000000px;}
.y45{bottom:883.800000px;}
.y200{bottom:885.600000px;}
.y1e0{bottom:885.960000px;}
.yab{bottom:887.760000px;}
.y190{bottom:888.120000px;}
.yd2{bottom:889.920000px;}
.y16d{bottom:893.160000px;}
.y11b{bottom:893.520000px;}
.y145{bottom:896.400000px;}
.ya{bottom:896.760000px;}
.y31{bottom:897.840000px;}
.yf5{bottom:898.920000px;}
.y1bc{bottom:902.160000px;}
.y44{bottom:904.320000px;}
.y1ff{bottom:905.760000px;}
.y1df{bottom:906.480000px;}
.yaa{bottom:908.280000px;}
.yd1{bottom:910.080000px;}
.y16c{bottom:913.320000px;}
.y30{bottom:916.200000px;}
.y11a{bottom:916.560000px;}
.y87{bottom:918.000000px;}
.y5e{bottom:918.360000px;}
.y1bb{bottom:922.320000px;}
.y43{bottom:924.480000px;}
.y1fe{bottom:926.280000px;}
.y1de{bottom:926.640000px;}
.y9{bottom:927.000000px;}
.ya9{bottom:928.440000px;}
.yd0{bottom:930.240000px;}
.yf4{bottom:930.960000px;}
.y16b{bottom:933.480000px;}
.y144{bottom:936.720000px;}
.y86{bottom:938.160000px;}
.y5d{bottom:938.520000px;}
.y119{bottom:939.960000px;}
.y1ba{bottom:942.840000px;}
.y42{bottom:944.640000px;}
.y1fd{bottom:946.440000px;}
.y2f{bottom:946.800000px;}
.ya8{bottom:948.600000px;}
.ycf{bottom:950.400000px;}
.yf3{bottom:951.480000px;}
.y16a{bottom:954.000000px;}
.y143{bottom:956.880000px;}
.y8{bottom:957.240000px;}
.y85{bottom:958.680000px;}
.y118{bottom:963.360000px;}
.y41{bottom:964.800000px;}
.y1dd{bottom:966.960000px;}
.ya7{bottom:968.760000px;}
.y5c{bottom:970.200000px;}
.yf2{bottom:971.640000px;}
.y2e{bottom:972.720000px;}
.y169{bottom:974.160000px;}
.y1b9{bottom:974.880000px;}
.y142{bottom:977.400000px;}
.y1fc{bottom:978.480000px;}
.y84{bottom:978.840000px;}
.yce{bottom:982.440000px;}
.y117{bottom:983.880000px;}
.y7{bottom:987.840000px;}
.y5b{bottom:989.640000px;}
.yf1{bottom:991.800000px;}
.y40{bottom:993.600000px;}
.y168{bottom:994.320000px;}
.y2d{bottom:998.280000px;}
.y83{bottom:999.000000px;}
.ya6{bottom:1000.800000px;}
.y1fb{bottom:1001.160000px;}
.ycd{bottom:1001.520000px;}
.y116{bottom:1004.400000px;}
.y141{bottom:1006.920000px;}
.y1b8{bottom:1009.080000px;}
.y5a{bottom:1011.600000px;}
.yf0{bottom:1012.320000px;}
.y3f{bottom:1013.040000px;}
.y167{bottom:1014.480000px;}
.y6{bottom:1018.080000px;}
.ya5{bottom:1019.880000px;}
.y2c{bottom:1024.200000px;}
.y115{bottom:1026.360000px;}
.y140{bottom:1028.880000px;}
.y82{bottom:1030.320000px;}
.y166{bottom:1033.920000px;}
.y1fa{bottom:1034.640000px;}
.y3e{bottom:1035.000000px;}
.ycc{bottom:1041.480000px;}
.y1b7{bottom:1042.560000px;}
.yef{bottom:1044.000000px;}
.y81{bottom:1047.960000px;}
.y5{bottom:1048.680000px;}
.y2b{bottom:1050.120000px;}
.y59{bottom:1051.560000px;}
.y165{bottom:1055.880000px;}
.y3d{bottom:1056.960000px;}
.ya4{bottom:1060.200000px;}
.y1b6{bottom:1063.080000px;}
.y1f9{bottom:1068.840000px;}
.y114{bottom:1072.080000px;}
.y2a{bottom:1076.040000px;}
.yee{bottom:1076.400000px;}
.y164{bottom:1078.200000px;}
.y4{bottom:1078.920000px;}
.ycb{bottom:1081.080000px;}
.y80{bottom:1086.480000px;}
.y1b5{bottom:1092.600000px;}
.y58{bottom:1093.320000px;}
.y3c{bottom:1098.360000px;}
.ya3{bottom:1101.600000px;}
.y29{bottom:1101.960000px;}
.yed{bottom:1108.440000px;}
.y3{bottom:1109.520000px;}
.y28{bottom:1124.640000px;}
.y3b{bottom:1127.880000px;}
.y113{bottom:1130.760000px;}
.ya2{bottom:1131.120000px;}
.y1b4{bottom:1138.320000px;}
.y23{bottom:1139.760000px;}
.y26{bottom:1161.000000px;}
.y25{bottom:1180.080000px;}
.y1{bottom:1194.840000px;}
.y24{bottom:1197.720000px;}
.h6{height:35.640000px;}
.hc{height:36.471094px;}
.h3{height:40.310156px;}
.hf{height:44.149219px;}
.h2{height:47.190938px;}
.h7{height:48.000000px;}
.hd{height:49.680000px;}
.hb{height:51.685313px;}
.h9{height:56.179688px;}
.he{height:64.304297px;}
.h8{height:79.096641px;}
.ha{height:79.523438px;}
.h5{height:108.000000px;}
.h4{height:198.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:534.000000px;}
.w3{width:583.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:11.519892px;}
.x6{left:99.000000px;}
.x1{left:108.000000px;}
.xc{left:114.517836px;}
.xd{left:121.604724px;}
.x8{left:135.000000px;}
.x7{left:161.099856px;}
.xa{left:168.000012px;}
.xe{left:386.217000px;}
.xb{left:446.474880px;}
.x2{left:642.449880px;}
.x9{left:771.649200px;}
.x5{left:778.299840px;}
.x3{left:784.950120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-3.338496pt;}
.ls2{letter-spacing:-2.688000pt;}
.ls1{letter-spacing:-2.662400pt;}
.ls3{letter-spacing:-2.649600pt;}
.ls59{letter-spacing:-0.394496pt;}
.ls21{letter-spacing:-0.368768pt;}
.lsa{letter-spacing:-0.365568pt;}
.ls8{letter-spacing:-0.351616pt;}
.ls48{letter-spacing:-0.334464pt;}
.ls14{letter-spacing:-0.327936pt;}
.ls15{letter-spacing:-0.311808pt;}
.ls4e{letter-spacing:-0.274432pt;}
.ls42{letter-spacing:-0.265856pt;}
.lsf{letter-spacing:-0.263424pt;}
.ls22{letter-spacing:-0.248704pt;}
.ls56{letter-spacing:-0.240128pt;}
.ls34{letter-spacing:-0.231552pt;}
.ls9{letter-spacing:-0.225792pt;}
.ls23{letter-spacing:-0.222976pt;}
.lse{letter-spacing:-0.220416pt;}
.ls13{letter-spacing:-0.215040pt;}
.ls3f{letter-spacing:-0.206080pt;}
.ls47{letter-spacing:-0.205824pt;}
.ls12{letter-spacing:-0.204288pt;}
.ls30{letter-spacing:-0.200192pt;}
.lsc{letter-spacing:-0.193536pt;}
.ls39{letter-spacing:-0.188672pt;}
.ls3a{letter-spacing:-0.188416pt;}
.ls5a{letter-spacing:-0.182528pt;}
.ls2c{letter-spacing:-0.176640pt;}
.ls2d{letter-spacing:-0.170752pt;}
.ls36{letter-spacing:-0.153088pt;}
.ls28{letter-spacing:-0.147200pt;}
.ls29{letter-spacing:-0.141312pt;}
.ls3c{letter-spacing:-0.137216pt;}
.ls27{letter-spacing:-0.135424pt;}
.lsb{letter-spacing:-0.123648pt;}
.ls43{letter-spacing:-0.117760pt;}
.ls31{letter-spacing:-0.111872pt;}
.ls25{letter-spacing:-0.105984pt;}
.lsd{letter-spacing:-0.091392pt;}
.ls2b{letter-spacing:-0.082432pt;}
.ls2f{letter-spacing:-0.076544pt;}
.ls26{letter-spacing:-0.070656pt;}
.ls2e{letter-spacing:-0.064768pt;}
.ls3e{letter-spacing:-0.041216pt;}
.ls2a{letter-spacing:-0.029440pt;}
.ls35{letter-spacing:-0.012800pt;}
.ls24{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.006400pt;}
.ls4a{letter-spacing:0.008960pt;}
.ls20{letter-spacing:0.009600pt;}
.ls44{letter-spacing:0.011520pt;}
.ls46{letter-spacing:0.012544pt;}
.ls45{letter-spacing:0.012800pt;}
.ls5f{letter-spacing:0.092928pt;}
.ls61{letter-spacing:0.101376pt;}
.ls5c{letter-spacing:0.112640pt;}
.ls62{letter-spacing:0.118272pt;}
.ls5e{letter-spacing:0.130944pt;}
.ls5b{letter-spacing:0.142976pt;}
.ls5d{letter-spacing:0.173184pt;}
.ls41{letter-spacing:0.244992pt;}
.ls60{letter-spacing:0.295680pt;}
.ls32{letter-spacing:0.492032pt;}
.ls4c{letter-spacing:0.508160pt;}
.ls3d{letter-spacing:1.550976pt;}
.ls16{letter-spacing:3.971840pt;}
.ls4d{letter-spacing:4.867328pt;}
.ls50{letter-spacing:5.194240pt;}
.ls7{letter-spacing:5.460352pt;}
.ls5{letter-spacing:6.418304pt;}
.ls11{letter-spacing:6.418944pt;}
.ls51{letter-spacing:10.158080pt;}
.ls1b{letter-spacing:10.172032pt;}
.ls38{letter-spacing:10.854400pt;}
.ls4f{letter-spacing:11.153920pt;}
.ls1d{letter-spacing:11.756800pt;}
.ls1e{letter-spacing:12.587520pt;}
.ls58{letter-spacing:14.937600pt;}
.ls54{letter-spacing:15.302400pt;}
.ls17{letter-spacing:15.560192pt;}
.ls33{letter-spacing:16.407040pt;}
.ls3b{letter-spacing:16.419456pt;}
.ls18{letter-spacing:16.867328pt;}
.ls19{letter-spacing:16.867840pt;}
.ls4b{letter-spacing:17.541120pt;}
.ls52{letter-spacing:18.586880pt;}
.ls37{letter-spacing:24.290560pt;}
.ls55{letter-spacing:29.491200pt;}
.ls1a{letter-spacing:32.665600pt;}
.ls1c{letter-spacing:33.393920pt;}
.ls53{letter-spacing:38.108160pt;}
.ls49{letter-spacing:45.499904pt;}
.ls4{letter-spacing:55.282432pt;}
.ls6{letter-spacing:100.391808pt;}
.ls57{letter-spacing:138.299392pt;}
.ls1f{letter-spacing:753.054720pt;}
.ws0{word-spacing:-33.152000pt;}
.ws6{word-spacing:-26.889600pt;}
.ws8{word-spacing:-23.789824pt;}
.ws10{word-spacing:-23.781248pt;}
.ws1b{word-spacing:-23.678336pt;}
.ws2{word-spacing:-23.661184pt;}
.ws7{word-spacing:-23.644032pt;}
.ws1e{word-spacing:-23.618304pt;}
.ws1a{word-spacing:-17.740800pt;}
.ws19{word-spacing:-17.734400pt;}
.ws14{word-spacing:-17.728000pt;}
.ws1f{word-spacing:-17.721600pt;}
.ws11{word-spacing:-17.715200pt;}
.ws9{word-spacing:-16.309760pt;}
.wse{word-spacing:-16.280320pt;}
.wsc{word-spacing:-16.239104pt;}
.wsd{word-spacing:-16.233216pt;}
.wsb{word-spacing:-16.227328pt;}
.ws18{word-spacing:-16.203776pt;}
.ws12{word-spacing:-16.174336pt;}
.wsa{word-spacing:-16.168448pt;}
.ws15{word-spacing:-16.162560pt;}
.ws13{word-spacing:-16.156672pt;}
.ws1d{word-spacing:-16.133120pt;}
.wsf{word-spacing:-16.109568pt;}
.ws4{word-spacing:-14.767872pt;}
.ws5{word-spacing:-14.671104pt;}
.ws3{word-spacing:-14.665728pt;}
.ws20{word-spacing:-11.996160pt;}
.ws16{word-spacing:-11.945472pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws17{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-10.972672pt;}
._a{margin-left:-8.683008pt;}
._2{margin-left:-5.178624pt;}
._5{margin-left:-3.675008pt;}
._3{margin-left:-2.672896pt;}
._4{margin-left:-1.401984pt;}
._1{width:0.960128pt;}
._1b{width:2.531840pt;}
._d{width:3.473920pt;}
._e{width:4.416000pt;}
._f{width:5.475840pt;}
._6{width:6.439936pt;}
._7{width:7.340672pt;}
._1c{width:8.571392pt;}
._14{width:9.727744pt;}
._10{width:10.892800pt;}
._16{width:12.423680pt;}
._17{width:13.460224pt;}
._20{width:14.396160pt;}
._b{width:15.788032pt;}
._c{width:16.712576pt;}
._12{width:17.626880pt;}
._19{width:18.915840pt;}
._8{width:20.697600pt;}
._27{width:22.315520pt;}
._21{width:23.273472pt;}
._1f{width:24.328192pt;}
._11{width:25.848320pt;}
._28{width:27.515008pt;}
._1d{width:28.538752pt;}
._1e{width:29.476096pt;}
._24{width:30.427648pt;}
._22{width:31.854080pt;}
._13{width:33.170944pt;}
._15{width:34.209280pt;}
._2c{width:35.174144pt;}
._2b{width:36.623360pt;}
._2d{width:37.547392pt;}
._2f{width:38.507520pt;}
._33{width:39.920640pt;}
._30{width:40.862720pt;}
._1a{width:41.922560pt;}
._2e{width:43.453440pt;}
._2a{width:45.278720pt;}
._34{width:46.632960pt;}
._26{width:47.810560pt;}
._25{width:48.752640pt;}
._31{width:49.871360pt;}
._32{width:50.872320pt;}
._29{width:66.074368pt;}
._23{width:67.871616pt;}
._18{width:70.585600pt;}
._0{width:1387.240960pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs8{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:32.320000pt;}
.y2{bottom:50.240000pt;}
.y22{bottom:65.120000pt;}
.y137{bottom:99.520000pt;}
.y21{bottom:104.480000pt;}
.y1f8{bottom:104.960000pt;}
.y13f{bottom:110.080000pt;}
.y1dc{bottom:115.200000pt;}
.yca{bottom:118.080000pt;}
.y7f{bottom:119.360000pt;}
.y1f7{bottom:122.880000pt;}
.yec{bottom:126.400000pt;}
.y1b3{bottom:128.000000pt;}
.y18f{bottom:128.640000pt;}
.y163{bottom:128.960000pt;}
.y136{bottom:130.880000pt;}
.y1db{bottom:133.440000pt;}
.y1f6{bottom:141.120000pt;}
.y13e{bottom:141.440000pt;}
.y112{bottom:142.080000pt;}
.y20{bottom:143.520000pt;}
.y1b2{bottom:145.920000pt;}
.y18e{bottom:146.560000pt;}
.y7e{bottom:147.840000pt;}
.yc9{bottom:148.160000pt;}
.y1da{bottom:151.360000pt;}
.yeb{bottom:155.200000pt;}
.y1f5{bottom:159.040000pt;}
.y162{bottom:160.320000pt;}
.y135{bottom:162.240000pt;}
.y1b1{bottom:163.840000pt;}
.y18d{bottom:164.480000pt;}
.y7d{bottom:166.080000pt;}
.ya1{bottom:168.000000pt;}
.y1d9{bottom:169.280000pt;}
.y111{bottom:170.560000pt;}
.y13d{bottom:172.800000pt;}
.y1f4{bottom:176.960000pt;}
.yc8{bottom:178.240000pt;}
.y1b0{bottom:181.760000pt;}
.y18c{bottom:182.400000pt;}
.y7c{bottom:184.000000pt;}
.y1d8{bottom:187.200000pt;}
.y161{bottom:191.680000pt;}
.y134{bottom:193.600000pt;}
.y1f3{bottom:194.880000pt;}
.ya0{bottom:196.160000pt;}
.y110{bottom:199.360000pt;}
.y1af{bottom:200.000000pt;}
.y18b{bottom:200.320000pt;}
.y13c{bottom:204.160000pt;}
.y1d7{bottom:205.120000pt;}
.yc7{bottom:208.320000pt;}
.y7b{bottom:212.480000pt;}
.y1f2{bottom:212.800000pt;}
.y1ae{bottom:217.920000pt;}
.y18a{bottom:218.560000pt;}
.y160{bottom:223.040000pt;}
.y1d6{bottom:223.360000pt;}
.y9f{bottom:224.640000pt;}
.y133{bottom:224.960000pt;}
.y10f{bottom:227.840000pt;}
.y7a{bottom:230.720000pt;}
.y13b{bottom:235.520000pt;}
.y1ad{bottom:235.840000pt;}
.y189{bottom:236.480000pt;}
.yc6{bottom:238.400000pt;}
.yea{bottom:241.280000pt;}
.y79{bottom:248.640000pt;}
.y1f1{bottom:248.960000pt;}
.y9e{bottom:252.800000pt;}
.y1ac{bottom:253.760000pt;}
.y15f{bottom:254.400000pt;}
.y132{bottom:256.320000pt;}
.y1e{bottom:256.640000pt;}
.y1d5{bottom:259.200000pt;}
.y78{bottom:266.560000pt;}
.y13a{bottom:266.880000pt;}
.yc5{bottom:268.480000pt;}
.ye9{bottom:269.760000pt;}
.y1ab{bottom:271.680000pt;}
.y188{bottom:272.320000pt;}
.y1d4{bottom:277.120000pt;}
.y9d{bottom:281.280000pt;}
.y1d{bottom:283.840000pt;}
.y1f0{bottom:284.800000pt;}
.y10e{bottom:285.120000pt;}
.y15e{bottom:285.760000pt;}
.y131{bottom:287.360000pt;}
.y1aa{bottom:289.920000pt;}
.y187{bottom:290.240000pt;}
.y20f{bottom:294.720000pt;}
.y77{bottom:295.040000pt;}
.yc4{bottom:296.960000pt;}
.y139{bottom:298.240000pt;}
.ye8{bottom:298.560000pt;}
.y1a9{bottom:307.840000pt;}
.y186{bottom:308.480000pt;}
.y9c{bottom:309.440000pt;}
.y1c{bottom:310.720000pt;}
.y20e{bottom:312.960000pt;}
.y76{bottom:313.280000pt;}
.y10d{bottom:313.920000pt;}
.yc3{bottom:315.200000pt;}
.ye7{bottom:316.800000pt;}
.y15d{bottom:317.120000pt;}
.y138{bottom:318.400000pt;}
.y130{bottom:318.720000pt;}
.y1d3{bottom:323.520000pt;}
.y1a8{bottom:325.760000pt;}
.y185{bottom:326.400000pt;}
.y20d{bottom:330.880000pt;}
.y75{bottom:331.200000pt;}
.y1ef{bottom:331.520000pt;}
.yc2{bottom:333.120000pt;}
.ye6{bottom:334.720000pt;}
.y1b{bottom:337.920000pt;}
.y12f{bottom:339.200000pt;}
.y1d2{bottom:341.760000pt;}
.y10c{bottom:342.720000pt;}
.y15c{bottom:343.040000pt;}
.y1a7{bottom:343.680000pt;}
.y184{bottom:344.320000pt;}
.y74{bottom:349.120000pt;}
.y1ee{bottom:349.440000pt;}
.yc1{bottom:351.040000pt;}
.ye5{bottom:352.640000pt;}
.y1d1{bottom:359.680000pt;}
.y12e{bottom:360.000000pt;}
.y15b{bottom:361.280000pt;}
.y1a6{bottom:361.600000pt;}
.y183{bottom:362.240000pt;}
.y9b{bottom:362.560000pt;}
.y1a{bottom:364.800000pt;}
.y20c{bottom:367.040000pt;}
.y73{bottom:367.360000pt;}
.yc0{bottom:368.960000pt;}
.ye4{bottom:370.560000pt;}
.y10b{bottom:371.200000pt;}
.y1d0{bottom:377.600000pt;}
.y15a{bottom:379.200000pt;}
.y1a5{bottom:379.840000pt;}
.y182{bottom:380.160000pt;}
.y9a{bottom:380.480000pt;}
.y57{bottom:385.280000pt;}
.y10a{bottom:389.440000pt;}
.y19{bottom:391.680000pt;}
.y20b{bottom:395.200000pt;}
.y72{bottom:395.520000pt;}
.y1cf{bottom:395.840000pt;}
.y159{bottom:397.120000pt;}
.ybf{bottom:397.440000pt;}
.y1a4{bottom:397.760000pt;}
.y99{bottom:398.400000pt;}
.ye3{bottom:399.040000pt;}
.y12d{bottom:401.280000pt;}
.y109{bottom:407.360000pt;}
.y71{bottom:413.760000pt;}
.y56{bottom:414.720000pt;}
.y158{bottom:415.040000pt;}
.ybe{bottom:415.680000pt;}
.y98{bottom:416.320000pt;}
.ye2{bottom:417.280000pt;}
.y18{bottom:418.880000pt;}
.y12c{bottom:422.080000pt;}
.y1a3{bottom:423.680000pt;}
.y108{bottom:425.600000pt;}
.y1ce{bottom:431.680000pt;}
.y70{bottom:432.000000pt;}
.ybd{bottom:433.600000pt;}
.y181{bottom:434.240000pt;}
.y97{bottom:434.560000pt;}
.ye1{bottom:435.200000pt;}
.y213{bottom:436.800000pt;}
.y55{bottom:438.080000pt;}
.y157{bottom:440.960000pt;}
.y1a2{bottom:441.600000pt;}
.y12b{bottom:442.560000pt;}
.y107{bottom:443.520000pt;}
.y17{bottom:445.760000pt;}
.y1cd{bottom:449.600000pt;}
.y6f{bottom:449.920000pt;}
.ybc{bottom:451.520000pt;}
.y180{bottom:452.160000pt;}
.y96{bottom:452.480000pt;}
.ye0{bottom:453.440000pt;}
.y54{bottom:456.000000pt;}
.y156{bottom:459.200000pt;}
.y1a1{bottom:459.520000pt;}
.y106{bottom:461.440000pt;}
.y212{bottom:463.040000pt;}
.y12a{bottom:463.360000pt;}
.y1cc{bottom:467.520000pt;}
.y1ed{bottom:467.840000pt;}
.ybb{bottom:469.760000pt;}
.y17f{bottom:470.080000pt;}
.ydf{bottom:471.360000pt;}
.y16{bottom:472.960000pt;}
.y53{bottom:473.920000pt;}
.y211{bottom:476.160000pt;}
.y155{bottom:477.120000pt;}
.y1a0{bottom:477.760000pt;}
.y6e{bottom:478.080000pt;}
.y95{bottom:478.400000pt;}
.y129{bottom:483.840000pt;}
.y1cb{bottom:485.760000pt;}
.y1ec{bottom:486.080000pt;}
.yba{bottom:487.680000pt;}
.y17e{bottom:488.320000pt;}
.yde{bottom:489.280000pt;}
.y105{bottom:489.920000pt;}
.y154{bottom:495.040000pt;}
.y19f{bottom:495.680000pt;}
.y6d{bottom:496.320000pt;}
.y15{bottom:499.840000pt;}
.y210{bottom:502.400000pt;}
.y1ca{bottom:503.680000pt;}
.y128{bottom:504.640000pt;}
.y17d{bottom:506.240000pt;}
.y104{bottom:508.160000pt;}
.y19e{bottom:513.600000pt;}
.y94{bottom:514.240000pt;}
.y6c{bottom:514.560000pt;}
.yb9{bottom:515.840000pt;}
.ydd{bottom:517.440000pt;}
.y52{bottom:518.080000pt;}
.y153{bottom:520.960000pt;}
.y1c9{bottom:521.600000pt;}
.y1f{bottom:524.000000pt;}
.y17c{bottom:524.160000pt;}
.y127{bottom:525.440000pt;}
.y103{bottom:526.080000pt;}
.y14{bottom:526.720000pt;}
.y20a{bottom:532.160000pt;}
.y6b{bottom:532.480000pt;}
.yb8{bottom:534.400000pt;}
.y51{bottom:536.000000pt;}
.y152{bottom:538.880000pt;}
.y19d{bottom:539.520000pt;}
.y17b{bottom:542.080000pt;}
.y102{bottom:544.000000pt;}
.y126{bottom:545.920000pt;}
.y209{bottom:550.080000pt;}
.y93{bottom:550.400000pt;}
.y1eb{bottom:550.720000pt;}
.yb7{bottom:552.320000pt;}
.y13{bottom:553.920000pt;}
.y151{bottom:556.800000pt;}
.y19c{bottom:557.440000pt;}
.y17a{bottom:560.000000pt;}
.y6a{bottom:560.640000pt;}
.y101{bottom:561.920000pt;}
.y125{bottom:566.720000pt;}
.y1c8{bottom:568.000000pt;}
.y1ea{bottom:568.640000pt;}
.yb6{bottom:570.240000pt;}
.y50{bottom:571.840000pt;}
.y150{bottom:575.040000pt;}
.y19b{bottom:575.680000pt;}
.y92{bottom:576.320000pt;}
.y179{bottom:578.240000pt;}
.y69{bottom:579.200000pt;}
.y12{bottom:580.800000pt;}
.y3a{bottom:585.600000pt;}
.y1c7{bottom:586.240000pt;}
.y1e9{bottom:586.560000pt;}
.y124{bottom:587.520000pt;}
.yb5{bottom:588.160000pt;}
.ydc{bottom:589.760000pt;}
.y100{bottom:590.400000pt;}
.y19a{bottom:593.600000pt;}
.y91{bottom:594.240000pt;}
.y178{bottom:596.160000pt;}
.y208{bottom:596.480000pt;}
.y68{bottom:597.120000pt;}
.y4f{bottom:597.760000pt;}
.y14f{bottom:600.960000pt;}
.y1c6{bottom:604.160000pt;}
.y1e8{bottom:604.480000pt;}
.yb4{bottom:606.080000pt;}
.ydb{bottom:607.680000pt;}
.y11{bottom:608.000000pt;}
.yff{bottom:608.640000pt;}
.y199{bottom:611.520000pt;}
.y90{bottom:612.160000pt;}
.y39{bottom:612.800000pt;}
.y177{bottom:614.080000pt;}
.y207{bottom:614.720000pt;}
.y67{bottom:615.040000pt;}
.y4e{bottom:616.000000pt;}
.y14e{bottom:618.880000pt;}
.y1c5{bottom:622.080000pt;}
.y1e7{bottom:622.400000pt;}
.yb3{bottom:624.000000pt;}
.yfe{bottom:626.560000pt;}
.y123{bottom:628.800000pt;}
.y8f{bottom:630.400000pt;}
.y176{bottom:632.000000pt;}
.y206{bottom:632.640000pt;}
.y66{bottom:632.960000pt;}
.y4d{bottom:633.920000pt;}
.y10{bottom:634.880000pt;}
.y38{bottom:635.520000pt;}
.yda{bottom:636.160000pt;}
.y14d{bottom:636.800000pt;}
.y198{bottom:637.440000pt;}
.y1c4{bottom:640.000000pt;}
.yfd{bottom:644.480000pt;}
.y8e{bottom:648.320000pt;}
.y122{bottom:649.280000pt;}
.y175{bottom:649.920000pt;}
.y65{bottom:650.880000pt;}
.y4c{bottom:651.840000pt;}
.yb2{bottom:652.480000pt;}
.yd9{bottom:654.400000pt;}
.y14c{bottom:654.720000pt;}
.y197{bottom:655.360000pt;}
.y1c3{bottom:658.240000pt;}
.y37{bottom:658.560000pt;}
.yf{bottom:662.080000pt;}
.yfc{bottom:662.720000pt;}
.y8d{bottom:666.240000pt;}
.y174{bottom:668.160000pt;}
.y205{bottom:668.800000pt;}
.y1e6{bottom:669.120000pt;}
.y4b{bottom:669.760000pt;}
.y121{bottom:670.080000pt;}
.yb1{bottom:670.720000pt;}
.yd8{bottom:672.320000pt;}
.y196{bottom:673.600000pt;}
.y1c2{bottom:676.160000pt;}
.y64{bottom:679.360000pt;}
.yfb{bottom:680.640000pt;}
.y14b{bottom:680.960000pt;}
.y36{bottom:681.600000pt;}
.y8c{bottom:684.160000pt;}
.y173{bottom:686.080000pt;}
.y204{bottom:686.720000pt;}
.y1e5{bottom:687.040000pt;}
.y4a{bottom:687.680000pt;}
.yb0{bottom:688.640000pt;}
.ye{bottom:688.960000pt;}
.yd7{bottom:690.560000pt;}
.y120{bottom:690.880000pt;}
.y195{bottom:691.520000pt;}
.y1c1{bottom:694.080000pt;}
.y63{bottom:697.600000pt;}
.y14a{bottom:698.880000pt;}
.y8b{bottom:702.080000pt;}
.y172{bottom:704.000000pt;}
.y35{bottom:704.640000pt;}
.y1e4{bottom:704.960000pt;}
.y49{bottom:705.920000pt;}
.yaf{bottom:706.880000pt;}
.yd6{bottom:708.480000pt;}
.yfa{bottom:708.800000pt;}
.y11f{bottom:711.360000pt;}
.y1c0{bottom:712.000000pt;}
.y62{bottom:715.520000pt;}
.yd{bottom:715.840000pt;}
.y149{bottom:716.800000pt;}
.y194{bottom:717.440000pt;}
.y8a{bottom:720.320000pt;}
.y34{bottom:720.960000pt;}
.y171{bottom:721.920000pt;}
.y203{bottom:722.560000pt;}
.y1e3{bottom:723.200000pt;}
.y48{bottom:723.840000pt;}
.yae{bottom:724.800000pt;}
.yd5{bottom:726.400000pt;}
.yf9{bottom:727.360000pt;}
.y1bf{bottom:729.920000pt;}
.y11e{bottom:732.160000pt;}
.y61{bottom:733.440000pt;}
.y148{bottom:734.720000pt;}
.y193{bottom:735.360000pt;}
.y89{bottom:738.240000pt;}
.y170{bottom:739.840000pt;}
.y1e2{bottom:741.120000pt;}
.yad{bottom:742.720000pt;}
.yc{bottom:743.040000pt;}
.yd4{bottom:744.320000pt;}
.yf8{bottom:745.280000pt;}
.y33{bottom:748.160000pt;}
.y47{bottom:749.760000pt;}
.y202{bottom:751.040000pt;}
.y60{bottom:751.680000pt;}
.y147{bottom:752.640000pt;}
.y11d{bottom:752.960000pt;}
.y192{bottom:753.280000pt;}
.y16f{bottom:758.080000pt;}
.y1e1{bottom:759.040000pt;}
.yac{bottom:760.640000pt;}
.yf7{bottom:763.200000pt;}
.y88{bottom:764.160000pt;}
.y1be{bottom:766.080000pt;}
.y46{bottom:767.680000pt;}
.y201{bottom:769.280000pt;}
.yb{bottom:769.920000pt;}
.y146{bottom:770.880000pt;}
.y32{bottom:771.200000pt;}
.y191{bottom:771.520000pt;}
.yd3{bottom:772.800000pt;}
.y11c{bottom:773.440000pt;}
.y16e{bottom:776.000000pt;}
.y5f{bottom:779.840000pt;}
.yf6{bottom:781.120000pt;}
.y1bd{bottom:784.000000pt;}
.y45{bottom:785.600000pt;}
.y200{bottom:787.200000pt;}
.y1e0{bottom:787.520000pt;}
.yab{bottom:789.120000pt;}
.y190{bottom:789.440000pt;}
.yd2{bottom:791.040000pt;}
.y16d{bottom:793.920000pt;}
.y11b{bottom:794.240000pt;}
.y145{bottom:796.800000pt;}
.ya{bottom:797.120000pt;}
.y31{bottom:798.080000pt;}
.yf5{bottom:799.040000pt;}
.y1bc{bottom:801.920000pt;}
.y44{bottom:803.840000pt;}
.y1ff{bottom:805.120000pt;}
.y1df{bottom:805.760000pt;}
.yaa{bottom:807.360000pt;}
.yd1{bottom:808.960000pt;}
.y16c{bottom:811.840000pt;}
.y30{bottom:814.400000pt;}
.y11a{bottom:814.720000pt;}
.y87{bottom:816.000000pt;}
.y5e{bottom:816.320000pt;}
.y1bb{bottom:819.840000pt;}
.y43{bottom:821.760000pt;}
.y1fe{bottom:823.360000pt;}
.y1de{bottom:823.680000pt;}
.y9{bottom:824.000000pt;}
.ya9{bottom:825.280000pt;}
.yd0{bottom:826.880000pt;}
.yf4{bottom:827.520000pt;}
.y16b{bottom:829.760000pt;}
.y144{bottom:832.640000pt;}
.y86{bottom:833.920000pt;}
.y5d{bottom:834.240000pt;}
.y119{bottom:835.520000pt;}
.y1ba{bottom:838.080000pt;}
.y42{bottom:839.680000pt;}
.y1fd{bottom:841.280000pt;}
.y2f{bottom:841.600000pt;}
.ya8{bottom:843.200000pt;}
.ycf{bottom:844.800000pt;}
.yf3{bottom:845.760000pt;}
.y16a{bottom:848.000000pt;}
.y143{bottom:850.560000pt;}
.y8{bottom:850.880000pt;}
.y85{bottom:852.160000pt;}
.y118{bottom:856.320000pt;}
.y41{bottom:857.600000pt;}
.y1dd{bottom:859.520000pt;}
.ya7{bottom:861.120000pt;}
.y5c{bottom:862.400000pt;}
.yf2{bottom:863.680000pt;}
.y2e{bottom:864.640000pt;}
.y169{bottom:865.920000pt;}
.y1b9{bottom:866.560000pt;}
.y142{bottom:868.800000pt;}
.y1fc{bottom:869.760000pt;}
.y84{bottom:870.080000pt;}
.yce{bottom:873.280000pt;}
.y117{bottom:874.560000pt;}
.y7{bottom:878.080000pt;}
.y5b{bottom:879.680000pt;}
.yf1{bottom:881.600000pt;}
.y40{bottom:883.200000pt;}
.y168{bottom:883.840000pt;}
.y2d{bottom:887.360000pt;}
.y83{bottom:888.000000pt;}
.ya6{bottom:889.600000pt;}
.y1fb{bottom:889.920000pt;}
.ycd{bottom:890.240000pt;}
.y116{bottom:892.800000pt;}
.y141{bottom:895.040000pt;}
.y1b8{bottom:896.960000pt;}
.y5a{bottom:899.200000pt;}
.yf0{bottom:899.840000pt;}
.y3f{bottom:900.480000pt;}
.y167{bottom:901.760000pt;}
.y6{bottom:904.960000pt;}
.ya5{bottom:906.560000pt;}
.y2c{bottom:910.400000pt;}
.y115{bottom:912.320000pt;}
.y140{bottom:914.560000pt;}
.y82{bottom:915.840000pt;}
.y166{bottom:919.040000pt;}
.y1fa{bottom:919.680000pt;}
.y3e{bottom:920.000000pt;}
.ycc{bottom:925.760000pt;}
.y1b7{bottom:926.720000pt;}
.yef{bottom:928.000000pt;}
.y81{bottom:931.520000pt;}
.y5{bottom:932.160000pt;}
.y2b{bottom:933.440000pt;}
.y59{bottom:934.720000pt;}
.y165{bottom:938.560000pt;}
.y3d{bottom:939.520000pt;}
.ya4{bottom:942.400000pt;}
.y1b6{bottom:944.960000pt;}
.y1f9{bottom:950.080000pt;}
.y114{bottom:952.960000pt;}
.y2a{bottom:956.480000pt;}
.yee{bottom:956.800000pt;}
.y164{bottom:958.400000pt;}
.y4{bottom:959.040000pt;}
.ycb{bottom:960.960000pt;}
.y80{bottom:965.760000pt;}
.y1b5{bottom:971.200000pt;}
.y58{bottom:971.840000pt;}
.y3c{bottom:976.320000pt;}
.ya3{bottom:979.200000pt;}
.y29{bottom:979.520000pt;}
.yed{bottom:985.280000pt;}
.y3{bottom:986.240000pt;}
.y28{bottom:999.680000pt;}
.y3b{bottom:1002.560000pt;}
.y113{bottom:1005.120000pt;}
.ya2{bottom:1005.440000pt;}
.y1b4{bottom:1011.840000pt;}
.y23{bottom:1013.120000pt;}
.y26{bottom:1032.000000pt;}
.y25{bottom:1048.960000pt;}
.y1{bottom:1062.080000pt;}
.y24{bottom:1064.640000pt;}
.h6{height:31.680000pt;}
.hc{height:32.418750pt;}
.h3{height:35.831250pt;}
.hf{height:39.243750pt;}
.h2{height:41.947500pt;}
.h7{height:42.666667pt;}
.hd{height:44.160000pt;}
.hb{height:45.942500pt;}
.h9{height:49.937500pt;}
.he{height:57.159375pt;}
.h8{height:70.308125pt;}
.ha{height:70.687500pt;}
.h5{height:96.000000pt;}
.h4{height:176.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:474.666667pt;}
.w3{width:518.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:10.239904pt;}
.x6{left:88.000000pt;}
.x1{left:96.000000pt;}
.xc{left:101.793632pt;}
.xd{left:108.093088pt;}
.x8{left:120.000000pt;}
.x7{left:143.199872pt;}
.xa{left:149.333344pt;}
.xe{left:343.304000pt;}
.xb{left:396.866560pt;}
.x2{left:571.066560pt;}
.x9{left:685.910400pt;}
.x5{left:691.822080pt;}
.x3{left:697.733440pt;}
}




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