
    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_90b18dc22ffc326d8dbc5468.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_6150457af28707ab9b219d58.woff')format("woff");}.ff2{font-family:ff2;line-height:1.592000;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_c0dd4fe0682353184da448ff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_3919bd24c7f7ee9b2ef64906.woff')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_c701d66d25d63140adbdb1c8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.949219;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_3bb635ebc162a9ac77125408.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fc3c3b988f016603751859d0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_44d0ca953878afcb5dccdd04.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_b2ddb77861d48ea40dbfeadb.woff')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_84157c52958393ed28effd95.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_9e52cdc2b48b1449bdcb89be.woff')format("woff");}.ffb{font-family:ffb;line-height:0.949219;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_96d9aa0ae2fcb96c9fc9d433.woff')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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_71389a3e0787ce2daf5743e4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_45660186637ba8596eaa4c1a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4fb08ef664424fac51bd89c3.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ba78ba443f6ba892c6c9273b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.959961;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_32c08164b88a972252b6a3c2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.959961;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_cb556c01b7e8f53b78805148.woff')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f271f757132801cb4a738e89.woff')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_66a99fa293966ed55a4c7017.woff')format("woff");}.ff14{font-family:ff14;line-height:0.959961;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);}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls31{letter-spacing:-0.792000px;}
.ls33{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.259800px;}
.ls1c{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.069600px;}
.ls5{letter-spacing:-0.064800px;}
.ls27{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.043920px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.lse{letter-spacing:0.017280px;}
.ls24{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.106800px;}
.ls32{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.126600px;}
.ls9{letter-spacing:0.140400px;}
.ls2{letter-spacing:0.143400px;}
.ls14{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.144720px;}
.ls10{letter-spacing:0.152640px;}
.ls8{letter-spacing:0.175200px;}
.ls12{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls4{letter-spacing:0.186600px;}
.ls29{letter-spacing:0.206400px;}
.ls26{letter-spacing:0.206640px;}
.ls17{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.648000px;}
.ls2a{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.900000px;}
.ls25{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.584000px;}
.lsa{letter-spacing:12.960000px;}
.ls1a{letter-spacing:13.680000px;}
.ls2d{letter-spacing:16.740000px;}
.ls11{letter-spacing:31.824000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,51,153),0 0.015em rgb(0,51,153),0.015em 0 rgb(0,51,153),0 -0.015em  rgb(0,51,153);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(51,54,102),0 0.015em rgb(51,54,102),0.015em 0 rgb(51,54,102),0 -0.015em  rgb(51,54,102);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,51,153);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(51,54,102);text-shadow:none;}
}
.ws35{word-spacing:-72.000000px;}
.ws2e{word-spacing:-21.060000px;}
.ws3e{word-spacing:-19.584000px;}
.ws45{word-spacing:-19.440000px;}
.ws3c{word-spacing:-18.864000px;}
.ws38{word-spacing:-18.720000px;}
.ws4d{word-spacing:-18.432000px;}
.ws3f{word-spacing:-18.288000px;}
.ws39{word-spacing:-18.216000px;}
.ws37{word-spacing:-18.144000px;}
.ws4c{word-spacing:-18.072000px;}
.ws31{word-spacing:-18.000000px;}
.ws3b{word-spacing:-17.928000px;}
.ws40{word-spacing:-17.856000px;}
.ws3d{word-spacing:-17.784000px;}
.ws36{word-spacing:-17.712000px;}
.ws4e{word-spacing:-17.208000px;}
.ws48{word-spacing:-15.606000px;}
.ws42{word-spacing:-15.300000px;}
.ws43{word-spacing:-15.199800px;}
.ws49{word-spacing:-15.146400px;}
.ws4b{word-spacing:-15.046800px;}
.ws44{word-spacing:-14.993280px;}
.ws34{word-spacing:-14.940000px;}
.ws46{word-spacing:-14.886720px;}
.ws41{word-spacing:-14.733600px;}
.ws4a{word-spacing:-14.680200px;}
.ws3a{word-spacing:-12.420000px;}
.ws32{word-spacing:-12.241200px;}
.ws33{word-spacing:-12.204720px;}
.ws2f{word-spacing:-12.060000px;}
.ws30{word-spacing:-9.720000px;}
.ws47{word-spacing:-0.166560px;}
.wsb{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
.ws1d{word-spacing:12.548880px;}
.ws1b{word-spacing:12.576960px;}
.ws7{word-spacing:12.622320px;}
.ws4{word-spacing:12.708720px;}
.ws26{word-spacing:12.828720px;}
.ws1e{word-spacing:12.952920px;}
.ws21{word-spacing:12.953760px;}
.ws6{word-spacing:13.020120px;}
.ws23{word-spacing:13.082760px;}
.ws24{word-spacing:13.139280px;}
.ws9{word-spacing:13.215600px;}
.ws22{word-spacing:13.255200px;}
.ws1f{word-spacing:13.317120px;}
.ws8{word-spacing:13.335840px;}
.ws1a{word-spacing:13.381920px;}
.ws5{word-spacing:13.448640px;}
.ws25{word-spacing:13.554240px;}
.ws11{word-spacing:13.607760px;}
.ws13{word-spacing:14.016960px;}
.ws29{word-spacing:14.035680px;}
.wsc{word-spacing:14.151600px;}
.wse{word-spacing:14.312880px;}
.wsf{word-spacing:14.466240px;}
.ws14{word-spacing:14.548320px;}
.ws10{word-spacing:14.693760px;}
.ws1c{word-spacing:14.717280px;}
.ws12{word-spacing:14.754960px;}
.ws2d{word-spacing:14.755680px;}
.wsd{word-spacing:14.897280px;}
.ws20{word-spacing:15.900480px;}
.ws17{word-spacing:16.827120px;}
.ws16{word-spacing:17.010000px;}
.wsa{word-spacing:17.059680px;}
.ws19{word-spacing:17.067600px;}
.ws15{word-spacing:17.115120px;}
.ws18{word-spacing:17.655840px;}
.ws27{word-spacing:22.709520px;}
.ws28{word-spacing:23.348880px;}
.ws2a{word-spacing:28.597680px;}
.ws2b{word-spacing:28.765920px;}
.ws2c{word-spacing:28.882560px;}
.ws0{word-spacing:593.220000px;}
.ws1{word-spacing:770.178000px;}
.ws2{word-spacing:809.274000px;}
._13{margin-left:-4.392000px;}
._f{margin-left:-2.689200px;}
._9{margin-left:-1.013040px;}
._6{width:1.288320px;}
._e{width:2.502000px;}
._16{width:3.600000px;}
._12{width:4.970880px;}
._11{width:6.932160px;}
._15{width:8.101920px;}
._1d{width:9.262080px;}
._17{width:10.296000px;}
._18{width:11.772240px;}
._c{width:12.793440px;}
._5{width:14.089680px;}
._8{width:15.360240px;}
._1e{width:16.799040px;}
._7{width:18.220560px;}
._1b{width:19.432320px;}
._1a{width:20.635440px;}
._1c{width:22.068240px;}
._a{width:23.914080px;}
._21{width:24.937440px;}
._26{width:26.542560px;}
._d{width:28.200000px;}
._b{width:30.056640px;}
._19{width:32.165040px;}
._1f{width:33.264000px;}
._20{width:34.506720px;}
._25{width:35.675520px;}
._23{width:36.936000px;}
._24{width:38.100000px;}
._4f{width:39.168000px;}
._22{width:41.232000px;}
._3f{width:43.212000px;}
._44{width:44.568000px;}
._45{width:45.924000px;}
._3a{width:55.985040px;}
._39{width:57.024000px;}
._32{width:66.960000px;}
._33{width:68.040000px;}
._34{width:69.120000px;}
._4b{width:70.344000px;}
._50{width:75.744000px;}
._27{width:79.416000px;}
._28{width:80.616720px;}
._49{width:89.280000px;}
._42{width:113.184000px;}
._43{width:114.408000px;}
._3e{width:115.579680px;}
._3d{width:116.712000px;}
._2c{width:137.520000px;}
._2d{width:138.749040px;}
._4a{width:139.896000px;}
._46{width:149.688000px;}
._47{width:150.708720px;}
._48{width:151.979280px;}
._10{width:153.164880px;}
._4d{width:157.824000px;}
._4e{width:159.211680px;}
._2a{width:164.016000px;}
._2b{width:165.924000px;}
._3c{width:168.480000px;}
._3b{width:169.529040px;}
._35{width:172.008000px;}
._36{width:173.592000px;}
._37{width:182.088000px;}
._38{width:184.036560px;}
._40{width:186.912000px;}
._41{width:188.352000px;}
._2f{width:247.284000px;}
._30{width:248.407680px;}
._4c{width:249.510240px;}
._2e{width:260.717040px;}
._29{width:438.768000px;}
._31{width:462.600000px;}
._2{width:494.076000px;}
._0{width:551.154000px;}
._4{width:623.298000px;}
._1{width:737.292000px;}
._3{width:743.340000px;}
._14{width:1888.320000px;}
.fc6{color:rgb(0,51,153);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc7{color:rgb(31,31,31);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(100,100,100);}
.fc0{color:rgb(51,54,102);}
.fs1{font-size:30.000000px;}
.fsb{font-size:38.880000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs0{font-size:96.000000px;}
.fsd{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:3.240000px;}
.yf6{bottom:6.120000px;}
.yf9{bottom:6.300000px;}
.y10f{bottom:11.880000px;}
.y117{bottom:12.060000px;}
.y10e{bottom:12.240000px;}
.y27{bottom:30.000000px;}
.y113{bottom:52.020000px;}
.y112{bottom:77.940000px;}
.y11c{bottom:79.020000px;}
.y11b{bottom:104.940000px;}
.yb7{bottom:112.896000px;}
.y1d7{bottom:115.056000px;}
.y100{bottom:115.596000px;}
.y1af{bottom:115.776000px;}
.y8d{bottom:118.116000px;}
.y169{bottom:123.156000px;}
.ye0{bottom:123.696000px;}
.y132{bottom:124.236000px;}
.y206{bottom:125.856000px;}
.y11a{bottom:130.890000px;}
.y60{bottom:130.896000px;}
.y13f{bottom:134.136000px;}
.yb6{bottom:135.216000px;}
.y1d6{bottom:135.756000px;}
.yff{bottom:138.996000px;}
.y18e{bottom:139.176000px;}
.y8c{bottom:140.436000px;}
.y168{bottom:145.476000px;}
.ydf{bottom:146.016000px;}
.y131{bottom:146.556000px;}
.y1a0{bottom:148.176000px;}
.y1ae{bottom:150.150000px;}
.y13e{bottom:151.410000px;}
.y5f{bottom:153.210000px;}
.y1d5{bottom:156.450000px;}
.yb5{bottom:157.530000px;}
.y18d{bottom:161.670000px;}
.yfe{bottom:162.210000px;}
.y8b{bottom:162.750000px;}
.y205{bottom:167.250000px;}
.y167{bottom:167.790000px;}
.yde{bottom:168.330000px;}
.y13d{bottom:168.510000px;}
.y130{bottom:168.870000px;}
.y19f{bottom:170.670000px;}
.y1d4{bottom:177.150000px;}
.yb4{bottom:179.850000px;}
.y1ad{bottom:182.010000px;}
.y18c{bottom:183.990000px;}
.y8a{bottom:185.070000px;}
.y5e{bottom:185.250000px;}
.yfd{bottom:185.430000px;}
.y13c{bottom:185.790000px;}
.y204{bottom:187.950000px;}
.y138{bottom:189.210000px;}
.y166{bottom:190.110000px;}
.ydd{bottom:190.650000px;}
.y12f{bottom:191.190000px;}
.y19e{bottom:192.990000px;}
.y1d3{bottom:197.850000px;}
.y13b{bottom:203.070000px;}
.yfc{bottom:203.430000px;}
.y18b{bottom:206.310000px;}
.y137{bottom:206.490000px;}
.y89{bottom:207.570000px;}
.y203{bottom:208.650000px;}
.yb3{bottom:210.810000px;}
.ydc{bottom:212.970000px;}
.y12e{bottom:213.510000px;}
.y19d{bottom:215.310000px;}
.y1ac{bottom:216.570000px;}
.y1d2{bottom:218.550000px;}
.y5d{bottom:219.630000px;}
.y13a{bottom:220.350000px;}
.y165{bottom:222.150000px;}
.y136{bottom:223.770000px;}
.yfb{bottom:226.650000px;}
.y18a{bottom:228.630000px;}
.y202{bottom:229.350000px;}
.y88{bottom:229.890000px;}
.ydb{bottom:235.290000px;}
.y139{bottom:235.650000px;}
.y12d{bottom:235.830000px;}
.y19c{bottom:237.630000px;}
.y1ab{bottom:238.890000px;}
.y1d1{bottom:239.250000px;}
.y135{bottom:241.050000px;}
.yb2{bottom:242.490000px;}
.yfa{bottom:249.870000px;}
.y201{bottom:250.050000px;}
.y2e{bottom:250.380000px;}
.y189{bottom:250.950000px;}
.y5c{bottom:252.390000px;}
.y164{bottom:255.630000px;}
.yda{bottom:257.610000px;}
.y12c{bottom:258.150000px;}
.y19b{bottom:259.950000px;}
.y87{bottom:261.210000px;}
.yb1{bottom:264.810000px;}
.y2d{bottom:268.380000px;}
.yd0{bottom:269.130000px;}
.y200{bottom:270.750000px;}
.yf8{bottom:273.090000px;}
.y188{bottom:273.270000px;}
.y134{bottom:273.450000px;}
.yd9{bottom:279.930000px;}
.y12b{bottom:280.650000px;}
.y19a{bottom:282.270000px;}
.y163{bottom:283.170000px;}
.y86{bottom:283.530000px;}
.y5b{bottom:284.970000px;}
.y2c{bottom:286.380000px;}
.yb0{bottom:287.130000px;}
.y1ff{bottom:291.450000px;}
.ycf{bottom:291.630000px;}
.y187{bottom:295.590000px;}
.yf7{bottom:296.490000px;}
.y1d0{bottom:301.350000px;}
.y162{bottom:301.890000px;}
.yd8{bottom:302.430000px;}
.y12a{bottom:302.970000px;}
.y199{bottom:304.590000px;}
.y85{bottom:305.850000px;}
.yaf{bottom:309.630000px;}
.y1fe{bottom:312.150000px;}
.yce{bottom:313.950000px;}
.y5a{bottom:317.550000px;}
.y186{bottom:317.910000px;}
.yf5{bottom:319.710000px;}
.y161{bottom:320.430000px;}
.y1cf{bottom:322.050000px;}
.y129{bottom:325.290000px;}
.y198{bottom:326.910000px;}
.y84{bottom:328.215000px;}
.yae{bottom:331.995000px;}
.y1fd{bottom:332.895000px;}
.yd7{bottom:333.435000px;}
.ycd{bottom:336.315000px;}
.y160{bottom:339.195000px;}
.y185{bottom:340.275000px;}
.y33{bottom:342.150000px;}
.y1ce{bottom:342.795000px;}
.yf3{bottom:342.975000px;}
.y128{bottom:347.655000px;}
.y197{bottom:349.275000px;}
.y83{bottom:350.535000px;}
.y59{bottom:350.895000px;}
.y1fc{bottom:353.595000px;}
.yad{bottom:354.315000px;}
.y15f{bottom:357.735000px;}
.ycc{bottom:358.635000px;}
.y32{bottom:360.150000px;}
.y1aa{bottom:360.255000px;}
.y184{bottom:362.595000px;}
.y1cd{bottom:363.495000px;}
.yd6{bottom:364.215000px;}
.y26{bottom:367.500000px;}
.y196{bottom:371.595000px;}
.y82{bottom:372.855000px;}
.y1fb{bottom:374.295000px;}
.y15e{bottom:376.275000px;}
.yac{bottom:376.635000px;}
.yf2{bottom:378.075000px;}
.y127{bottom:378.615000px;}
.ycb{bottom:380.955000px;}
.y25{bottom:384.000000px;}
.y1cc{bottom:384.195000px;}
.y58{bottom:384.375000px;}
.y183{bottom:384.915000px;}
.y15d{bottom:391.575000px;}
.yd5{bottom:391.755000px;}
.y195{bottom:393.915000px;}
.y1a9{bottom:394.635000px;}
.y1fa{bottom:394.995000px;}
.y81{bottom:395.175000px;}
.y31{bottom:396.180000px;}
.yab{bottom:398.955000px;}
.y24{bottom:400.500000px;}
.yca{bottom:403.275000px;}
.y1cb{bottom:404.895000px;}
.y182{bottom:407.415000px;}
.y57{bottom:408.315000px;}
.yf1{bottom:408.675000px;}
.yd4{bottom:410.475000px;}
.y126{bottom:413.355000px;}
.y30{bottom:414.180000px;}
.y1f9{bottom:415.695000px;}
.y194{bottom:416.415000px;}
.y1a8{bottom:416.955000px;}
.y23{bottom:417.000000px;}
.y80{bottom:417.495000px;}
.yaa{bottom:421.275000px;}
.yc9{bottom:425.595000px;}
.yf0{bottom:427.215000px;}
.yd3{bottom:429.015000px;}
.y181{bottom:429.735000px;}
.y56{bottom:430.635000px;}
.y2f{bottom:432.180000px;}
.y22{bottom:433.500000px;}
.y1f8{bottom:436.395000px;}
.y193{bottom:438.735000px;}
.y1a7{bottom:439.275000px;}
.y7f{bottom:439.815000px;}
.y125{bottom:442.335000px;}
.y15c{bottom:443.055000px;}
.ya9{bottom:443.595000px;}
.yef{bottom:445.935000px;}
.y1ca{bottom:446.295000px;}
.yd2{bottom:447.735000px;}
.yc8{bottom:447.915000px;}
.y55{bottom:449.355000px;}
.y21{bottom:450.000000px;}
.y180{bottom:452.055000px;}
.y1f7{bottom:457.095000px;}
.y124{bottom:459.615000px;}
.y192{bottom:461.055000px;}
.y1a6{bottom:461.595000px;}
.yd1{bottom:462.855000px;}
.yee{bottom:464.475000px;}
.y15b{bottom:465.375000px;}
.ya8{bottom:465.915000px;}
.y20{bottom:466.500000px;}
.y1c9{bottom:466.995000px;}
.yc7{bottom:470.235000px;}
.y7e{bottom:471.315000px;}
.y119{bottom:474.015000px;}
.y17f{bottom:474.375000px;}
.y54{bottom:476.895000px;}
.y1f6{bottom:477.795000px;}
.y1f{bottom:483.000000px;}
.yed{bottom:483.195000px;}
.y191{bottom:483.375000px;}
.y1a5{bottom:483.915000px;}
.y2b{bottom:486.465000px;}
.y15a{bottom:487.695000px;}
.ya7{bottom:488.235000px;}
.yc6{bottom:492.555000px;}
.y7d{bottom:493.635000px;}
.y53{bottom:495.435000px;}
.y17e{bottom:496.695000px;}
.y1f5{bottom:498.495000px;}
.y1e{bottom:499.500000px;}
.y123{bottom:500.475000px;}
.yec{bottom:501.735000px;}
.y2a{bottom:504.465000px;}
.y190{bottom:505.695000px;}
.y1a4{bottom:506.235000px;}
.y1c8{bottom:508.395000px;}
.y159{bottom:510.015000px;}
.ya6{bottom:510.555000px;}
.y52{bottom:514.155000px;}
.y7c{bottom:515.955000px;}
.y1d{bottom:516.000000px;}
.y17d{bottom:519.015000px;}
.y1f4{bottom:519.195000px;}
.yeb{bottom:520.275000px;}
.yc5{bottom:523.695000px;}
.y122{bottom:527.115000px;}
.y18f{bottom:528.015000px;}
.y1a3{bottom:528.555000px;}
.y1c7{bottom:529.095000px;}
.y158{bottom:532.335000px;}
.y1c{bottom:532.500000px;}
.ya5{bottom:533.055000px;}
.yea{bottom:535.575000px;}
.y51{bottom:537.915000px;}
.y7b{bottom:538.275000px;}
.y1f3{bottom:539.895000px;}
.y29{bottom:540.465000px;}
.y1b{bottom:549.000000px;}
.y1c6{bottom:549.795000px;}
.y17c{bottom:550.335000px;}
.y1a2{bottom:551.055000px;}
.y50{bottom:551.415000px;}
.y121{bottom:553.755000px;}
.y157{bottom:554.655000px;}
.ya4{bottom:555.375000px;}
.yc4{bottom:555.915000px;}
.y28{bottom:558.465000px;}
.y7a{bottom:560.595000px;}
.y1a{bottom:565.500000px;}
.y4f{bottom:569.955000px;}
.y1c5{bottom:570.495000px;}
.y17b{bottom:572.655000px;}
.y1a1{bottom:573.375000px;}
.y156{bottom:576.975000px;}
.ya3{bottom:577.695000px;}
.y20b{bottom:579.000000px;}
.y120{bottom:580.395000px;}
.y1f2{bottom:581.295000px;}
.y19{bottom:582.000000px;}
.y79{bottom:582.915000px;}
.y4e{bottom:588.675000px;}
.yc3{bottom:590.295000px;}
.y1c4{bottom:591.195000px;}
.y17a{bottom:595.005000px;}
.y18{bottom:598.500000px;}
.y155{bottom:599.325000px;}
.ya2{bottom:600.045000px;}
.y1f1{bottom:602.025000px;}
.y78{bottom:605.265000px;}
.y11f{bottom:607.065000px;}
.y20a{bottom:609.000000px;}
.y1c3{bottom:611.925000px;}
.yc2{bottom:612.825000px;}
.y17{bottom:615.000000px;}
.y4d{bottom:616.245000px;}
.y179{bottom:617.325000px;}
.y154{bottom:621.825000px;}
.ya1{bottom:622.365000px;}
.y1f0{bottom:622.725000px;}
.ye9{bottom:626.325000px;}
.y77{bottom:627.585000px;}
.y16{bottom:631.500000px;}
.y1c2{bottom:632.625000px;}
.y11e{bottom:633.705000px;}
.y4c{bottom:634.785000px;}
.yc1{bottom:635.145000px;}
.y209{bottom:639.000000px;}
.y178{bottom:639.825000px;}
.y1ef{bottom:643.425000px;}
.y153{bottom:644.145000px;}
.ya0{bottom:644.685000px;}
.ye8{bottom:648.825000px;}
.y76{bottom:649.905000px;}
.y1c1{bottom:653.145000px;}
.yc0{bottom:657.465000px;}
.y15{bottom:658.500000px;}
.y11d{bottom:660.345000px;}
.y177{bottom:662.145000px;}
.y4b{bottom:662.505000px;}
.y1ee{bottom:664.125000px;}
.y152{bottom:666.465000px;}
.y9f{bottom:667.005000px;}
.ye7{bottom:671.145000px;}
.y75{bottom:672.225000px;}
.y1c0{bottom:673.845000px;}
.ybf{bottom:679.785000px;}
.y4a{bottom:681.045000px;}
.y176{bottom:684.465000px;}
.y1ed{bottom:684.825000px;}
.y14{bottom:685.500000px;}
.y111{bottom:686.985000px;}
.y151{bottom:688.785000px;}
.y9e{bottom:689.325000px;}
.ye6{bottom:693.465000px;}
.y1bf{bottom:694.545000px;}
.ybe{bottom:702.105000px;}
.y74{bottom:704.265000px;}
.y1ec{bottom:705.525000px;}
.y175{bottom:706.785000px;}
.y49{bottom:708.765000px;}
.y150{bottom:711.105000px;}
.y9d{bottom:711.645000px;}
.y13{bottom:712.500000px;}
.y118{bottom:713.625000px;}
.y1be{bottom:715.245000px;}
.ye5{bottom:715.785000px;}
.ybd{bottom:724.425000px;}
.y1eb{bottom:726.225000px;}
.y48{bottom:727.305000px;}
.y174{bottom:729.105000px;}
.y14f{bottom:733.425000px;}
.y9c{bottom:733.965000px;}
.y1bd{bottom:735.945000px;}
.ye4{bottom:738.105000px;}
.y73{bottom:738.645000px;}
.y12{bottom:739.500000px;}
.y116{bottom:740.265000px;}
.ybc{bottom:746.745000px;}
.y1ea{bottom:746.925000px;}
.y173{bottom:751.425000px;}
.y47{bottom:754.845000px;}
.y14e{bottom:755.745000px;}
.y9b{bottom:756.285000px;}
.y1bc{bottom:756.645000px;}
.ye3{bottom:760.425000px;}
.y72{bottom:760.965000px;}
.y11{bottom:766.500000px;}
.y115{bottom:766.725000px;}
.y1e9{bottom:767.625000px;}
.y172{bottom:773.745000px;}
.y1bb{bottom:777.345000px;}
.ybb{bottom:777.705000px;}
.y14d{bottom:778.065000px;}
.y46{bottom:781.125000px;}
.ye2{bottom:782.745000px;}
.y9a{bottom:787.425000px;}
.y1e8{bottom:788.325000px;}
.y34{bottom:792.000000px;}
.y71{bottom:793.005000px;}
.y114{bottom:793.365000px;}
.y10{bottom:793.500000px;}
.y45{bottom:795.885000px;}
.y171{bottom:796.065000px;}
.y1ba{bottom:798.045000px;}
.ye1{bottom:805.065000px;}
.y1e7{bottom:809.025000px;}
.yba{bottom:809.385000px;}
.y44{bottom:814.425000px;}
.y170{bottom:818.385000px;}
.y1b9{bottom:818.745000px;}
.y99{bottom:819.105000px;}
.y110{bottom:820.005000px;}
.yf{bottom:820.500000px;}
.y70{bottom:827.385000px;}
.y1e6{bottom:829.725000px;}
.yb9{bottom:831.705000px;}
.y1b8{bottom:839.445000px;}
.y16f{bottom:840.705000px;}
.y98{bottom:841.425000px;}
.y10d{bottom:846.645000px;}
.y43{bottom:847.365000px;}
.ye{bottom:847.500000px;}
.y6f{bottom:849.705000px;}
.y1e5{bottom:850.425000px;}
.y14c{bottom:854.025000px;}
.y1b7{bottom:860.145000px;}
.y42{bottom:860.685000px;}
.yb8{bottom:862.710000px;}
.y16e{bottom:863.070000px;}
.y97{bottom:863.790000px;}
.yd{bottom:864.000000px;}
.y1e4{bottom:871.170000px;}
.y6e{bottom:872.070000px;}
.y14b{bottom:876.570000px;}
.yc{bottom:880.500000px;}
.y1b6{bottom:880.890000px;}
.y41{bottom:884.670000px;}
.y16d{bottom:885.570000px;}
.y96{bottom:886.110000px;}
.y10c{bottom:887.190000px;}
.y1e3{bottom:891.870000px;}
.y6d{bottom:894.570000px;}
.y40{bottom:897.990000px;}
.y14a{bottom:898.890000px;}
.y1b5{bottom:901.590000px;}
.yb{bottom:907.500000px;}
.y16c{bottom:907.890000px;}
.y95{bottom:908.430000px;}
.y1e2{bottom:912.570000px;}
.y10b{bottom:915.090000px;}
.y6c{bottom:916.890000px;}
.y149{bottom:921.210000px;}
.y3f{bottom:921.750000px;}
.y1b4{bottom:922.290000px;}
.ya{bottom:924.000000px;}
.y10a{bottom:929.310000px;}
.y16b{bottom:930.210000px;}
.y94{bottom:930.750000px;}
.y1e1{bottom:933.270000px;}
.y6b{bottom:939.210000px;}
.y3e{bottom:940.470000px;}
.y1b3{bottom:942.990000px;}
.y148{bottom:943.530000px;}
.y9{bottom:951.000000px;}
.y109{bottom:952.530000px;}
.y93{bottom:953.070000px;}
.y3d{bottom:953.790000px;}
.y1e0{bottom:953.970000px;}
.y6a{bottom:961.530000px;}
.y1b2{bottom:963.690000px;}
.y147{bottom:965.850000px;}
.y1df{bottom:974.670000px;}
.y133{bottom:974.850000px;}
.y92{bottom:975.390000px;}
.y108{bottom:975.750000px;}
.y3c{bottom:977.730000px;}
.y8{bottom:978.000000px;}
.y69{bottom:983.850000px;}
.y1b1{bottom:984.390000px;}
.y146{bottom:988.170000px;}
.y1de{bottom:995.370000px;}
.y3b{bottom:996.270000px;}
.y16a{bottom:997.170000px;}
.y91{bottom:997.710000px;}
.y107{bottom:999.150000px;}
.y7{bottom:1005.000000px;}
.y68{bottom:1006.170000px;}
.y3a{bottom:1009.590000px;}
.y145{bottom:1010.490000px;}
.y1dd{bottom:1016.070000px;}
.y1b0{bottom:1016.430000px;}
.y90{bottom:1020.210000px;}
.y106{bottom:1022.370000px;}
.y6{bottom:1024.500000px;}
.y67{bottom:1028.490000px;}
.y39{bottom:1033.530000px;}
.y1dc{bottom:1036.770000px;}
.y144{bottom:1041.810000px;}
.y5{bottom:1042.500000px;}
.y105{bottom:1045.590000px;}
.y66{bottom:1050.810000px;}
.y8f{bottom:1051.170000px;}
.y38{bottom:1056.750000px;}
.y1db{bottom:1057.470000px;}
.y4{bottom:1060.500000px;}
.y143{bottom:1064.130000px;}
.y207{bottom:1066.500000px;}
.y104{bottom:1068.810000px;}
.y65{bottom:1073.130000px;}
.y1da{bottom:1078.170000px;}
.y37{bottom:1079.070000px;}
.y3{bottom:1081.500000px;}
.y8e{bottom:1083.390000px;}
.y142{bottom:1086.450000px;}
.y103{bottom:1086.810000px;}
.y64{bottom:1095.450000px;}
.y1d9{bottom:1098.870000px;}
.y2{bottom:1102.500000px;}
.y141{bottom:1108.770000px;}
.y1{bottom:1110.000000px;}
.y102{bottom:1110.030000px;}
.y36{bottom:1111.110000px;}
.y63{bottom:1117.770000px;}
.y1d8{bottom:1119.570000px;}
.y101{bottom:1133.280000px;}
.y35{bottom:1137.240000px;}
.y140{bottom:1139.940000px;}
.y62{bottom:1140.300000px;}
.y208{bottom:1170.000000px;}
.y61{bottom:1244.880000px;}
.h19{height:17.280000px;}
.h2{height:22.500000px;}
.h1a{height:22.536000px;}
.h1f{height:25.740000px;}
.h1c{height:25.920000px;}
.h1b{height:25.956000px;}
.h14{height:37.771172px;}
.h10{height:38.158594px;}
.h5{height:40.500000px;}
.h21{height:42.229687px;}
.ha{height:45.000000px;}
.h8{height:45.578672px;}
.h12{height:47.344922px;}
.h9{height:48.088125px;}
.h6{height:52.032000px;}
.h4{height:54.000000px;}
.h1e{height:58.621992px;}
.h11{height:58.651172px;}
.h17{height:60.226875px;}
.h3{height:63.000000px;}
.h18{height:64.546875px;}
.h13{height:70.664062px;}
.h1{height:72.000000px;}
.h16{height:72.562500px;}
.h15{height:74.004654px;}
.hf{height:74.704922px;}
.h22{height:81.000000px;}
.hd{height:84.898125px;}
.he{height:96.508125px;}
.h1d{height:132.300000px;}
.h20{height:212.250000px;}
.h7{height:810.000000px;}
.h0{height:1188.000000px;}
.hb{height:1262.880000px;}
.hc{height:1263.000000px;}
.w13{width:81.900000px;}
.w12{width:82.620000px;}
.w11{width:91.836000px;}
.w7{width:97.200000px;}
.w10{width:114.300000px;}
.wc{width:114.660000px;}
.wa{width:126.396000px;}
.w9{width:126.900000px;}
.w8{width:126.936000px;}
.w6{width:156.090000px;}
.wf{width:170.670000px;}
.wb{width:171.390000px;}
.we{width:174.450000px;}
.wd{width:175.170000px;}
.w5{width:892.979987px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.w0{width:918.000000px;}
.w2{width:1439.999979px;}
.w1{width:1440.000000px;}
.x0{left:0.000000px;}
.xd{left:7.500000px;}
.x17{left:9.360000px;}
.x25{left:15.480000px;}
.x28{left:17.100000px;}
.x15{left:18.900000px;}
.x2b{left:20.700000px;}
.x13{left:21.960000px;}
.x2d{left:23.940000px;}
.x23{left:27.360000px;}
.x21{left:29.520000px;}
.x12{left:31.500000px;}
.x2a{left:32.760000px;}
.x26{left:35.820000px;}
.x2c{left:37.974000px;}
.x18{left:52.020000px;}
.x24{left:58.314000px;}
.x1b{left:66.960000px;}
.x7{left:69.150000px;}
.x1e{left:74.520000px;}
.x3{left:81.075000px;}
.x19{left:89.100000px;}
.x1a{left:96.660000px;}
.x1c{left:104.250000px;}
.x1d{left:111.600000px;}
.xe{left:127.655987px;}
.x2e{left:148.895987px;}
.x31{left:163.649987px;}
.x33{left:168.105000px;}
.x9{left:184.890000px;}
.x11{left:285.195000px;}
.x1f{left:299.055000px;}
.x32{left:317.250000px;}
.x8{left:328.425000px;}
.x1{left:330.990000px;}
.x4{left:336.450000px;}
.x5{left:381.030000px;}
.xb{left:383.609979px;}
.x34{left:409.500000px;}
.x20{left:414.435000px;}
.x6{left:456.510000px;}
.x2{left:457.965000px;}
.xc{left:482.909979px;}
.x27{left:506.985000px;}
.x14{left:510.765000px;}
.x22{left:590.325000px;}
.xa{left:597.674979px;}
.x30{left:637.124987px;}
.x16{left:638.385000px;}
.x29{left:682.890000px;}
.x10{left:753.629987px;}
.x2f{left:757.769987px;}
.xf{left:762.629987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls31{letter-spacing:-0.704000pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.230933pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.061867pt;}
.ls5{letter-spacing:-0.057600pt;}
.ls27{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.039040pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.lse{letter-spacing:0.015360pt;}
.ls24{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.094933pt;}
.ls32{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.112533pt;}
.ls9{letter-spacing:0.124800pt;}
.ls2{letter-spacing:0.127467pt;}
.ls14{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.128640pt;}
.ls10{letter-spacing:0.135680pt;}
.ls8{letter-spacing:0.155733pt;}
.ls12{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls4{letter-spacing:0.165867pt;}
.ls29{letter-spacing:0.183467pt;}
.ls26{letter-spacing:0.183680pt;}
.ls17{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls2a{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls25{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.408000pt;}
.lsa{letter-spacing:11.520000pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls2d{letter-spacing:14.880000pt;}
.ls11{letter-spacing:28.288000pt;}
.ws35{word-spacing:-64.000000pt;}
.ws2e{word-spacing:-18.720000pt;}
.ws3e{word-spacing:-17.408000pt;}
.ws45{word-spacing:-17.280000pt;}
.ws3c{word-spacing:-16.768000pt;}
.ws38{word-spacing:-16.640000pt;}
.ws4d{word-spacing:-16.384000pt;}
.ws3f{word-spacing:-16.256000pt;}
.ws39{word-spacing:-16.192000pt;}
.ws37{word-spacing:-16.128000pt;}
.ws4c{word-spacing:-16.064000pt;}
.ws31{word-spacing:-16.000000pt;}
.ws3b{word-spacing:-15.936000pt;}
.ws40{word-spacing:-15.872000pt;}
.ws3d{word-spacing:-15.808000pt;}
.ws36{word-spacing:-15.744000pt;}
.ws4e{word-spacing:-15.296000pt;}
.ws48{word-spacing:-13.872000pt;}
.ws42{word-spacing:-13.600000pt;}
.ws43{word-spacing:-13.510933pt;}
.ws49{word-spacing:-13.463467pt;}
.ws4b{word-spacing:-13.374933pt;}
.ws44{word-spacing:-13.327360pt;}
.ws34{word-spacing:-13.280000pt;}
.ws46{word-spacing:-13.232640pt;}
.ws41{word-spacing:-13.096533pt;}
.ws4a{word-spacing:-13.049067pt;}
.ws3a{word-spacing:-11.040000pt;}
.ws32{word-spacing:-10.881067pt;}
.ws33{word-spacing:-10.848640pt;}
.ws2f{word-spacing:-10.720000pt;}
.ws30{word-spacing:-8.640000pt;}
.ws47{word-spacing:-0.148053pt;}
.wsb{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d{word-spacing:11.154560pt;}
.ws1b{word-spacing:11.179520pt;}
.ws7{word-spacing:11.219840pt;}
.ws4{word-spacing:11.296640pt;}
.ws26{word-spacing:11.403307pt;}
.ws1e{word-spacing:11.513707pt;}
.ws21{word-spacing:11.514453pt;}
.ws6{word-spacing:11.573440pt;}
.ws23{word-spacing:11.629120pt;}
.ws24{word-spacing:11.679360pt;}
.ws9{word-spacing:11.747200pt;}
.ws22{word-spacing:11.782400pt;}
.ws1f{word-spacing:11.837440pt;}
.ws8{word-spacing:11.854080pt;}
.ws1a{word-spacing:11.895040pt;}
.ws5{word-spacing:11.954347pt;}
.ws25{word-spacing:12.048213pt;}
.ws11{word-spacing:12.095787pt;}
.ws13{word-spacing:12.459520pt;}
.ws29{word-spacing:12.476160pt;}
.wsc{word-spacing:12.579200pt;}
.wse{word-spacing:12.722560pt;}
.wsf{word-spacing:12.858880pt;}
.ws14{word-spacing:12.931840pt;}
.ws10{word-spacing:13.061120pt;}
.ws1c{word-spacing:13.082027pt;}
.ws12{word-spacing:13.115520pt;}
.ws2d{word-spacing:13.116160pt;}
.wsd{word-spacing:13.242027pt;}
.ws20{word-spacing:14.133760pt;}
.ws17{word-spacing:14.957440pt;}
.ws16{word-spacing:15.120000pt;}
.wsa{word-spacing:15.164160pt;}
.ws19{word-spacing:15.171200pt;}
.ws15{word-spacing:15.213440pt;}
.ws18{word-spacing:15.694080pt;}
.ws27{word-spacing:20.186240pt;}
.ws28{word-spacing:20.754560pt;}
.ws2a{word-spacing:25.420160pt;}
.ws2b{word-spacing:25.569707pt;}
.ws2c{word-spacing:25.673387pt;}
.ws0{word-spacing:527.306667pt;}
.ws1{word-spacing:684.602667pt;}
.ws2{word-spacing:719.354667pt;}
._13{margin-left:-3.904000pt;}
._f{margin-left:-2.390400pt;}
._9{margin-left:-0.900480pt;}
._6{width:1.145173pt;}
._e{width:2.224000pt;}
._16{width:3.200000pt;}
._12{width:4.418560pt;}
._11{width:6.161920pt;}
._15{width:7.201707pt;}
._1d{width:8.232960pt;}
._17{width:9.152000pt;}
._18{width:10.464213pt;}
._c{width:11.371947pt;}
._5{width:12.524160pt;}
._8{width:13.653547pt;}
._1e{width:14.932480pt;}
._7{width:16.196053pt;}
._1b{width:17.273173pt;}
._1a{width:18.342613pt;}
._1c{width:19.616213pt;}
._a{width:21.256960pt;}
._21{width:22.166613pt;}
._26{width:23.593387pt;}
._d{width:25.066667pt;}
._b{width:26.717013pt;}
._19{width:28.591147pt;}
._1f{width:29.568000pt;}
._20{width:30.672640pt;}
._25{width:31.711573pt;}
._23{width:32.832000pt;}
._24{width:33.866667pt;}
._4f{width:34.816000pt;}
._22{width:36.650667pt;}
._3f{width:38.410667pt;}
._44{width:39.616000pt;}
._45{width:40.821333pt;}
._3a{width:49.764480pt;}
._39{width:50.688000pt;}
._32{width:59.520000pt;}
._33{width:60.480000pt;}
._34{width:61.440000pt;}
._4b{width:62.528000pt;}
._50{width:67.328000pt;}
._27{width:70.592000pt;}
._28{width:71.659307pt;}
._49{width:79.360000pt;}
._42{width:100.608000pt;}
._43{width:101.696000pt;}
._3e{width:102.737493pt;}
._3d{width:103.744000pt;}
._2c{width:122.240000pt;}
._2d{width:123.332480pt;}
._4a{width:124.352000pt;}
._46{width:133.056000pt;}
._47{width:133.963307pt;}
._48{width:135.092693pt;}
._10{width:136.146560pt;}
._4d{width:140.288000pt;}
._4e{width:141.521493pt;}
._2a{width:145.792000pt;}
._2b{width:147.488000pt;}
._3c{width:149.760000pt;}
._3b{width:150.692480pt;}
._35{width:152.896000pt;}
._36{width:154.304000pt;}
._37{width:161.856000pt;}
._38{width:163.588053pt;}
._40{width:166.144000pt;}
._41{width:167.424000pt;}
._2f{width:219.808000pt;}
._30{width:220.806827pt;}
._4c{width:221.786880pt;}
._2e{width:231.748480pt;}
._29{width:390.016000pt;}
._31{width:411.200000pt;}
._2{width:439.178667pt;}
._0{width:489.914667pt;}
._4{width:554.042667pt;}
._1{width:655.370667pt;}
._3{width:660.746667pt;}
._14{width:1678.506667pt;}
.fs1{font-size:26.666667pt;}
.fsb{font-size:34.560000pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs0{font-size:85.333333pt;}
.fsd{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:2.880000pt;}
.yf6{bottom:5.440000pt;}
.yf9{bottom:5.600000pt;}
.y10f{bottom:10.560000pt;}
.y117{bottom:10.720000pt;}
.y10e{bottom:10.880000pt;}
.y27{bottom:26.666667pt;}
.y113{bottom:46.240000pt;}
.y112{bottom:69.280000pt;}
.y11c{bottom:70.240000pt;}
.y11b{bottom:93.280000pt;}
.yb7{bottom:100.352000pt;}
.y1d7{bottom:102.272000pt;}
.y100{bottom:102.752000pt;}
.y1af{bottom:102.912000pt;}
.y8d{bottom:104.992000pt;}
.y169{bottom:109.472000pt;}
.ye0{bottom:109.952000pt;}
.y132{bottom:110.432000pt;}
.y206{bottom:111.872000pt;}
.y11a{bottom:116.346667pt;}
.y60{bottom:116.352000pt;}
.y13f{bottom:119.232000pt;}
.yb6{bottom:120.192000pt;}
.y1d6{bottom:120.672000pt;}
.yff{bottom:123.552000pt;}
.y18e{bottom:123.712000pt;}
.y8c{bottom:124.832000pt;}
.y168{bottom:129.312000pt;}
.ydf{bottom:129.792000pt;}
.y131{bottom:130.272000pt;}
.y1a0{bottom:131.712000pt;}
.y1ae{bottom:133.466667pt;}
.y13e{bottom:134.586667pt;}
.y5f{bottom:136.186667pt;}
.y1d5{bottom:139.066667pt;}
.yb5{bottom:140.026667pt;}
.y18d{bottom:143.706667pt;}
.yfe{bottom:144.186667pt;}
.y8b{bottom:144.666667pt;}
.y205{bottom:148.666667pt;}
.y167{bottom:149.146667pt;}
.yde{bottom:149.626667pt;}
.y13d{bottom:149.786667pt;}
.y130{bottom:150.106667pt;}
.y19f{bottom:151.706667pt;}
.y1d4{bottom:157.466667pt;}
.yb4{bottom:159.866667pt;}
.y1ad{bottom:161.786667pt;}
.y18c{bottom:163.546667pt;}
.y8a{bottom:164.506667pt;}
.y5e{bottom:164.666667pt;}
.yfd{bottom:164.826667pt;}
.y13c{bottom:165.146667pt;}
.y204{bottom:167.066667pt;}
.y138{bottom:168.186667pt;}
.y166{bottom:168.986667pt;}
.ydd{bottom:169.466667pt;}
.y12f{bottom:169.946667pt;}
.y19e{bottom:171.546667pt;}
.y1d3{bottom:175.866667pt;}
.y13b{bottom:180.506667pt;}
.yfc{bottom:180.826667pt;}
.y18b{bottom:183.386667pt;}
.y137{bottom:183.546667pt;}
.y89{bottom:184.506667pt;}
.y203{bottom:185.466667pt;}
.yb3{bottom:187.386667pt;}
.ydc{bottom:189.306667pt;}
.y12e{bottom:189.786667pt;}
.y19d{bottom:191.386667pt;}
.y1ac{bottom:192.506667pt;}
.y1d2{bottom:194.266667pt;}
.y5d{bottom:195.226667pt;}
.y13a{bottom:195.866667pt;}
.y165{bottom:197.466667pt;}
.y136{bottom:198.906667pt;}
.yfb{bottom:201.466667pt;}
.y18a{bottom:203.226667pt;}
.y202{bottom:203.866667pt;}
.y88{bottom:204.346667pt;}
.ydb{bottom:209.146667pt;}
.y139{bottom:209.466667pt;}
.y12d{bottom:209.626667pt;}
.y19c{bottom:211.226667pt;}
.y1ab{bottom:212.346667pt;}
.y1d1{bottom:212.666667pt;}
.y135{bottom:214.266667pt;}
.yb2{bottom:215.546667pt;}
.yfa{bottom:222.106667pt;}
.y201{bottom:222.266667pt;}
.y2e{bottom:222.560000pt;}
.y189{bottom:223.066667pt;}
.y5c{bottom:224.346667pt;}
.y164{bottom:227.226667pt;}
.yda{bottom:228.986667pt;}
.y12c{bottom:229.466667pt;}
.y19b{bottom:231.066667pt;}
.y87{bottom:232.186667pt;}
.yb1{bottom:235.386667pt;}
.y2d{bottom:238.560000pt;}
.yd0{bottom:239.226667pt;}
.y200{bottom:240.666667pt;}
.yf8{bottom:242.746667pt;}
.y188{bottom:242.906667pt;}
.y134{bottom:243.066667pt;}
.yd9{bottom:248.826667pt;}
.y12b{bottom:249.466667pt;}
.y19a{bottom:250.906667pt;}
.y163{bottom:251.706667pt;}
.y86{bottom:252.026667pt;}
.y5b{bottom:253.306667pt;}
.y2c{bottom:254.560000pt;}
.yb0{bottom:255.226667pt;}
.y1ff{bottom:259.066667pt;}
.ycf{bottom:259.226667pt;}
.y187{bottom:262.746667pt;}
.yf7{bottom:263.546667pt;}
.y1d0{bottom:267.866667pt;}
.y162{bottom:268.346667pt;}
.yd8{bottom:268.826667pt;}
.y12a{bottom:269.306667pt;}
.y199{bottom:270.746667pt;}
.y85{bottom:271.866667pt;}
.yaf{bottom:275.226667pt;}
.y1fe{bottom:277.466667pt;}
.yce{bottom:279.066667pt;}
.y5a{bottom:282.266667pt;}
.y186{bottom:282.586667pt;}
.yf5{bottom:284.186667pt;}
.y161{bottom:284.826667pt;}
.y1cf{bottom:286.266667pt;}
.y129{bottom:289.146667pt;}
.y198{bottom:290.586667pt;}
.y84{bottom:291.746667pt;}
.yae{bottom:295.106667pt;}
.y1fd{bottom:295.906667pt;}
.yd7{bottom:296.386667pt;}
.ycd{bottom:298.946667pt;}
.y160{bottom:301.506667pt;}
.y185{bottom:302.466667pt;}
.y33{bottom:304.133333pt;}
.y1ce{bottom:304.706667pt;}
.yf3{bottom:304.866667pt;}
.y128{bottom:309.026667pt;}
.y197{bottom:310.466667pt;}
.y83{bottom:311.586667pt;}
.y59{bottom:311.906667pt;}
.y1fc{bottom:314.306667pt;}
.yad{bottom:314.946667pt;}
.y15f{bottom:317.986667pt;}
.ycc{bottom:318.786667pt;}
.y32{bottom:320.133333pt;}
.y1aa{bottom:320.226667pt;}
.y184{bottom:322.306667pt;}
.y1cd{bottom:323.106667pt;}
.yd6{bottom:323.746667pt;}
.y26{bottom:326.666667pt;}
.y196{bottom:330.306667pt;}
.y82{bottom:331.426667pt;}
.y1fb{bottom:332.706667pt;}
.y15e{bottom:334.466667pt;}
.yac{bottom:334.786667pt;}
.yf2{bottom:336.066667pt;}
.y127{bottom:336.546667pt;}
.ycb{bottom:338.626667pt;}
.y25{bottom:341.333333pt;}
.y1cc{bottom:341.506667pt;}
.y58{bottom:341.666667pt;}
.y183{bottom:342.146667pt;}
.y15d{bottom:348.066667pt;}
.yd5{bottom:348.226667pt;}
.y195{bottom:350.146667pt;}
.y1a9{bottom:350.786667pt;}
.y1fa{bottom:351.106667pt;}
.y81{bottom:351.266667pt;}
.y31{bottom:352.160000pt;}
.yab{bottom:354.626667pt;}
.y24{bottom:356.000000pt;}
.yca{bottom:358.466667pt;}
.y1cb{bottom:359.906667pt;}
.y182{bottom:362.146667pt;}
.y57{bottom:362.946667pt;}
.yf1{bottom:363.266667pt;}
.yd4{bottom:364.866667pt;}
.y126{bottom:367.426667pt;}
.y30{bottom:368.160000pt;}
.y1f9{bottom:369.506667pt;}
.y194{bottom:370.146667pt;}
.y1a8{bottom:370.626667pt;}
.y23{bottom:370.666667pt;}
.y80{bottom:371.106667pt;}
.yaa{bottom:374.466667pt;}
.yc9{bottom:378.306667pt;}
.yf0{bottom:379.746667pt;}
.yd3{bottom:381.346667pt;}
.y181{bottom:381.986667pt;}
.y56{bottom:382.786667pt;}
.y2f{bottom:384.160000pt;}
.y22{bottom:385.333333pt;}
.y1f8{bottom:387.906667pt;}
.y193{bottom:389.986667pt;}
.y1a7{bottom:390.466667pt;}
.y7f{bottom:390.946667pt;}
.y125{bottom:393.186667pt;}
.y15c{bottom:393.826667pt;}
.ya9{bottom:394.306667pt;}
.yef{bottom:396.386667pt;}
.y1ca{bottom:396.706667pt;}
.yd2{bottom:397.986667pt;}
.yc8{bottom:398.146667pt;}
.y55{bottom:399.426667pt;}
.y21{bottom:400.000000pt;}
.y180{bottom:401.826667pt;}
.y1f7{bottom:406.306667pt;}
.y124{bottom:408.546667pt;}
.y192{bottom:409.826667pt;}
.y1a6{bottom:410.306667pt;}
.yd1{bottom:411.426667pt;}
.yee{bottom:412.866667pt;}
.y15b{bottom:413.666667pt;}
.ya8{bottom:414.146667pt;}
.y20{bottom:414.666667pt;}
.y1c9{bottom:415.106667pt;}
.yc7{bottom:417.986667pt;}
.y7e{bottom:418.946667pt;}
.y119{bottom:421.346667pt;}
.y17f{bottom:421.666667pt;}
.y54{bottom:423.906667pt;}
.y1f6{bottom:424.706667pt;}
.y1f{bottom:429.333333pt;}
.yed{bottom:429.506667pt;}
.y191{bottom:429.666667pt;}
.y1a5{bottom:430.146667pt;}
.y2b{bottom:432.413333pt;}
.y15a{bottom:433.506667pt;}
.ya7{bottom:433.986667pt;}
.yc6{bottom:437.826667pt;}
.y7d{bottom:438.786667pt;}
.y53{bottom:440.386667pt;}
.y17e{bottom:441.506667pt;}
.y1f5{bottom:443.106667pt;}
.y1e{bottom:444.000000pt;}
.y123{bottom:444.866667pt;}
.yec{bottom:445.986667pt;}
.y2a{bottom:448.413333pt;}
.y190{bottom:449.506667pt;}
.y1a4{bottom:449.986667pt;}
.y1c8{bottom:451.906667pt;}
.y159{bottom:453.346667pt;}
.ya6{bottom:453.826667pt;}
.y52{bottom:457.026667pt;}
.y7c{bottom:458.626667pt;}
.y1d{bottom:458.666667pt;}
.y17d{bottom:461.346667pt;}
.y1f4{bottom:461.506667pt;}
.yeb{bottom:462.466667pt;}
.yc5{bottom:465.506667pt;}
.y122{bottom:468.546667pt;}
.y18f{bottom:469.346667pt;}
.y1a3{bottom:469.826667pt;}
.y1c7{bottom:470.306667pt;}
.y158{bottom:473.186667pt;}
.y1c{bottom:473.333333pt;}
.ya5{bottom:473.826667pt;}
.yea{bottom:476.066667pt;}
.y51{bottom:478.146667pt;}
.y7b{bottom:478.466667pt;}
.y1f3{bottom:479.906667pt;}
.y29{bottom:480.413333pt;}
.y1b{bottom:488.000000pt;}
.y1c6{bottom:488.706667pt;}
.y17c{bottom:489.186667pt;}
.y1a2{bottom:489.826667pt;}
.y50{bottom:490.146667pt;}
.y121{bottom:492.226667pt;}
.y157{bottom:493.026667pt;}
.ya4{bottom:493.666667pt;}
.yc4{bottom:494.146667pt;}
.y28{bottom:496.413333pt;}
.y7a{bottom:498.306667pt;}
.y1a{bottom:502.666667pt;}
.y4f{bottom:506.626667pt;}
.y1c5{bottom:507.106667pt;}
.y17b{bottom:509.026667pt;}
.y1a1{bottom:509.666667pt;}
.y156{bottom:512.866667pt;}
.ya3{bottom:513.506667pt;}
.y20b{bottom:514.666667pt;}
.y120{bottom:515.906667pt;}
.y1f2{bottom:516.706667pt;}
.y19{bottom:517.333333pt;}
.y79{bottom:518.146667pt;}
.y4e{bottom:523.266667pt;}
.yc3{bottom:524.706667pt;}
.y1c4{bottom:525.506667pt;}
.y17a{bottom:528.893333pt;}
.y18{bottom:532.000000pt;}
.y155{bottom:532.733333pt;}
.ya2{bottom:533.373333pt;}
.y1f1{bottom:535.133333pt;}
.y78{bottom:538.013333pt;}
.y11f{bottom:539.613333pt;}
.y20a{bottom:541.333333pt;}
.y1c3{bottom:543.933333pt;}
.yc2{bottom:544.733333pt;}
.y17{bottom:546.666667pt;}
.y4d{bottom:547.773333pt;}
.y179{bottom:548.733333pt;}
.y154{bottom:552.733333pt;}
.ya1{bottom:553.213333pt;}
.y1f0{bottom:553.533333pt;}
.ye9{bottom:556.733333pt;}
.y77{bottom:557.853333pt;}
.y16{bottom:561.333333pt;}
.y1c2{bottom:562.333333pt;}
.y11e{bottom:563.293333pt;}
.y4c{bottom:564.253333pt;}
.yc1{bottom:564.573333pt;}
.y209{bottom:568.000000pt;}
.y178{bottom:568.733333pt;}
.y1ef{bottom:571.933333pt;}
.y153{bottom:572.573333pt;}
.ya0{bottom:573.053333pt;}
.ye8{bottom:576.733333pt;}
.y76{bottom:577.693333pt;}
.y1c1{bottom:580.573333pt;}
.yc0{bottom:584.413333pt;}
.y15{bottom:585.333333pt;}
.y11d{bottom:586.973333pt;}
.y177{bottom:588.573333pt;}
.y4b{bottom:588.893333pt;}
.y1ee{bottom:590.333333pt;}
.y152{bottom:592.413333pt;}
.y9f{bottom:592.893333pt;}
.ye7{bottom:596.573333pt;}
.y75{bottom:597.533333pt;}
.y1c0{bottom:598.973333pt;}
.ybf{bottom:604.253333pt;}
.y4a{bottom:605.373333pt;}
.y176{bottom:608.413333pt;}
.y1ed{bottom:608.733333pt;}
.y14{bottom:609.333333pt;}
.y111{bottom:610.653333pt;}
.y151{bottom:612.253333pt;}
.y9e{bottom:612.733333pt;}
.ye6{bottom:616.413333pt;}
.y1bf{bottom:617.373333pt;}
.ybe{bottom:624.093333pt;}
.y74{bottom:626.013333pt;}
.y1ec{bottom:627.133333pt;}
.y175{bottom:628.253333pt;}
.y49{bottom:630.013333pt;}
.y150{bottom:632.093333pt;}
.y9d{bottom:632.573333pt;}
.y13{bottom:633.333333pt;}
.y118{bottom:634.333333pt;}
.y1be{bottom:635.773333pt;}
.ye5{bottom:636.253333pt;}
.ybd{bottom:643.933333pt;}
.y1eb{bottom:645.533333pt;}
.y48{bottom:646.493333pt;}
.y174{bottom:648.093333pt;}
.y14f{bottom:651.933333pt;}
.y9c{bottom:652.413333pt;}
.y1bd{bottom:654.173333pt;}
.ye4{bottom:656.093333pt;}
.y73{bottom:656.573333pt;}
.y12{bottom:657.333333pt;}
.y116{bottom:658.013333pt;}
.ybc{bottom:663.773333pt;}
.y1ea{bottom:663.933333pt;}
.y173{bottom:667.933333pt;}
.y47{bottom:670.973333pt;}
.y14e{bottom:671.773333pt;}
.y9b{bottom:672.253333pt;}
.y1bc{bottom:672.573333pt;}
.ye3{bottom:675.933333pt;}
.y72{bottom:676.413333pt;}
.y11{bottom:681.333333pt;}
.y115{bottom:681.533333pt;}
.y1e9{bottom:682.333333pt;}
.y172{bottom:687.773333pt;}
.y1bb{bottom:690.973333pt;}
.ybb{bottom:691.293333pt;}
.y14d{bottom:691.613333pt;}
.y46{bottom:694.333333pt;}
.ye2{bottom:695.773333pt;}
.y9a{bottom:699.933333pt;}
.y1e8{bottom:700.733333pt;}
.y34{bottom:704.000000pt;}
.y71{bottom:704.893333pt;}
.y114{bottom:705.213333pt;}
.y10{bottom:705.333333pt;}
.y45{bottom:707.453333pt;}
.y171{bottom:707.613333pt;}
.y1ba{bottom:709.373333pt;}
.ye1{bottom:715.613333pt;}
.y1e7{bottom:719.133333pt;}
.yba{bottom:719.453333pt;}
.y44{bottom:723.933333pt;}
.y170{bottom:727.453333pt;}
.y1b9{bottom:727.773333pt;}
.y99{bottom:728.093333pt;}
.y110{bottom:728.893333pt;}
.yf{bottom:729.333333pt;}
.y70{bottom:735.453333pt;}
.y1e6{bottom:737.533333pt;}
.yb9{bottom:739.293333pt;}
.y1b8{bottom:746.173333pt;}
.y16f{bottom:747.293333pt;}
.y98{bottom:747.933333pt;}
.y10d{bottom:752.573333pt;}
.y43{bottom:753.213333pt;}
.ye{bottom:753.333333pt;}
.y6f{bottom:755.293333pt;}
.y1e5{bottom:755.933333pt;}
.y14c{bottom:759.133333pt;}
.y1b7{bottom:764.573333pt;}
.y42{bottom:765.053333pt;}
.yb8{bottom:766.853333pt;}
.y16e{bottom:767.173333pt;}
.y97{bottom:767.813333pt;}
.yd{bottom:768.000000pt;}
.y1e4{bottom:774.373333pt;}
.y6e{bottom:775.173333pt;}
.y14b{bottom:779.173333pt;}
.yc{bottom:782.666667pt;}
.y1b6{bottom:783.013333pt;}
.y41{bottom:786.373333pt;}
.y16d{bottom:787.173333pt;}
.y96{bottom:787.653333pt;}
.y10c{bottom:788.613333pt;}
.y1e3{bottom:792.773333pt;}
.y6d{bottom:795.173333pt;}
.y40{bottom:798.213333pt;}
.y14a{bottom:799.013333pt;}
.y1b5{bottom:801.413333pt;}
.yb{bottom:806.666667pt;}
.y16c{bottom:807.013333pt;}
.y95{bottom:807.493333pt;}
.y1e2{bottom:811.173333pt;}
.y10b{bottom:813.413333pt;}
.y6c{bottom:815.013333pt;}
.y149{bottom:818.853333pt;}
.y3f{bottom:819.333333pt;}
.y1b4{bottom:819.813333pt;}
.ya{bottom:821.333333pt;}
.y10a{bottom:826.053333pt;}
.y16b{bottom:826.853333pt;}
.y94{bottom:827.333333pt;}
.y1e1{bottom:829.573333pt;}
.y6b{bottom:834.853333pt;}
.y3e{bottom:835.973333pt;}
.y1b3{bottom:838.213333pt;}
.y148{bottom:838.693333pt;}
.y9{bottom:845.333333pt;}
.y109{bottom:846.693333pt;}
.y93{bottom:847.173333pt;}
.y3d{bottom:847.813333pt;}
.y1e0{bottom:847.973333pt;}
.y6a{bottom:854.693333pt;}
.y1b2{bottom:856.613333pt;}
.y147{bottom:858.533333pt;}
.y1df{bottom:866.373333pt;}
.y133{bottom:866.533333pt;}
.y92{bottom:867.013333pt;}
.y108{bottom:867.333333pt;}
.y3c{bottom:869.093333pt;}
.y8{bottom:869.333333pt;}
.y69{bottom:874.533333pt;}
.y1b1{bottom:875.013333pt;}
.y146{bottom:878.373333pt;}
.y1de{bottom:884.773333pt;}
.y3b{bottom:885.573333pt;}
.y16a{bottom:886.373333pt;}
.y91{bottom:886.853333pt;}
.y107{bottom:888.133333pt;}
.y7{bottom:893.333333pt;}
.y68{bottom:894.373333pt;}
.y3a{bottom:897.413333pt;}
.y145{bottom:898.213333pt;}
.y1dd{bottom:903.173333pt;}
.y1b0{bottom:903.493333pt;}
.y90{bottom:906.853333pt;}
.y106{bottom:908.773333pt;}
.y6{bottom:910.666667pt;}
.y67{bottom:914.213333pt;}
.y39{bottom:918.693333pt;}
.y1dc{bottom:921.573333pt;}
.y144{bottom:926.053333pt;}
.y5{bottom:926.666667pt;}
.y105{bottom:929.413333pt;}
.y66{bottom:934.053333pt;}
.y8f{bottom:934.373333pt;}
.y38{bottom:939.333333pt;}
.y1db{bottom:939.973333pt;}
.y4{bottom:942.666667pt;}
.y143{bottom:945.893333pt;}
.y207{bottom:948.000000pt;}
.y104{bottom:950.053333pt;}
.y65{bottom:953.893333pt;}
.y1da{bottom:958.373333pt;}
.y37{bottom:959.173333pt;}
.y3{bottom:961.333333pt;}
.y8e{bottom:963.013333pt;}
.y142{bottom:965.733333pt;}
.y103{bottom:966.053333pt;}
.y64{bottom:973.733333pt;}
.y1d9{bottom:976.773333pt;}
.y2{bottom:980.000000pt;}
.y141{bottom:985.573333pt;}
.y1{bottom:986.666667pt;}
.y102{bottom:986.693333pt;}
.y36{bottom:987.653333pt;}
.y63{bottom:993.573333pt;}
.y1d8{bottom:995.173333pt;}
.y101{bottom:1007.360000pt;}
.y35{bottom:1010.880000pt;}
.y140{bottom:1013.280000pt;}
.y62{bottom:1013.600000pt;}
.y208{bottom:1040.000000pt;}
.y61{bottom:1106.560000pt;}
.h19{height:15.360000pt;}
.h2{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h1f{height:22.880000pt;}
.h1c{height:23.040000pt;}
.h1b{height:23.072000pt;}
.h14{height:33.574375pt;}
.h10{height:33.918750pt;}
.h5{height:36.000000pt;}
.h21{height:37.537500pt;}
.ha{height:40.000000pt;}
.h8{height:40.514375pt;}
.h12{height:42.084375pt;}
.h9{height:42.745000pt;}
.h6{height:46.250667pt;}
.h4{height:48.000000pt;}
.h1e{height:52.108438pt;}
.h11{height:52.134375pt;}
.h17{height:53.535000pt;}
.h3{height:56.000000pt;}
.h18{height:57.375000pt;}
.h13{height:62.812500pt;}
.h1{height:64.000000pt;}
.h16{height:64.500000pt;}
.h15{height:65.781915pt;}
.hf{height:66.404375pt;}
.h22{height:72.000000pt;}
.hd{height:75.465000pt;}
.he{height:85.785000pt;}
.h1d{height:117.600000pt;}
.h20{height:188.666667pt;}
.h7{height:720.000000pt;}
.h0{height:1056.000000pt;}
.hb{height:1122.560000pt;}
.hc{height:1122.666667pt;}
.w13{width:72.800000pt;}
.w12{width:73.440000pt;}
.w11{width:81.632000pt;}
.w7{width:86.400000pt;}
.w10{width:101.600000pt;}
.wc{width:101.920000pt;}
.wa{width:112.352000pt;}
.w9{width:112.800000pt;}
.w8{width:112.832000pt;}
.w6{width:138.746667pt;}
.wf{width:151.706667pt;}
.wb{width:152.346667pt;}
.we{width:155.066667pt;}
.wd{width:155.706667pt;}
.w5{width:793.759988pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.w0{width:816.000000pt;}
.w2{width:1279.999981pt;}
.w1{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.666667pt;}
.x17{left:8.320000pt;}
.x25{left:13.760000pt;}
.x28{left:15.200000pt;}
.x15{left:16.800000pt;}
.x2b{left:18.400000pt;}
.x13{left:19.520000pt;}
.x2d{left:21.280000pt;}
.x23{left:24.320000pt;}
.x21{left:26.240000pt;}
.x12{left:28.000000pt;}
.x2a{left:29.120000pt;}
.x26{left:31.840000pt;}
.x2c{left:33.754667pt;}
.x18{left:46.240000pt;}
.x24{left:51.834667pt;}
.x1b{left:59.520000pt;}
.x7{left:61.466667pt;}
.x1e{left:66.240000pt;}
.x3{left:72.066667pt;}
.x19{left:79.200000pt;}
.x1a{left:85.920000pt;}
.x1c{left:92.666667pt;}
.x1d{left:99.200000pt;}
.xe{left:113.471988pt;}
.x2e{left:132.351988pt;}
.x31{left:145.466655pt;}
.x33{left:149.426667pt;}
.x9{left:164.346667pt;}
.x11{left:253.506667pt;}
.x1f{left:265.826667pt;}
.x32{left:282.000000pt;}
.x8{left:291.933333pt;}
.x1{left:294.213333pt;}
.x4{left:299.066667pt;}
.x5{left:338.693333pt;}
.xb{left:340.986648pt;}
.x34{left:364.000000pt;}
.x20{left:368.386667pt;}
.x6{left:405.786667pt;}
.x2{left:407.080000pt;}
.xc{left:429.253314pt;}
.x27{left:450.653333pt;}
.x14{left:454.013333pt;}
.x22{left:524.733333pt;}
.xa{left:531.266648pt;}
.x30{left:566.333322pt;}
.x16{left:567.453333pt;}
.x29{left:607.013333pt;}
.x10{left:669.893322pt;}
.x2f{left:673.573322pt;}
.xf{left:677.893322pt;}
}




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