
    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_5fcec4adfd9608a69bdeef70.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1cf18e765373fccd67c95866.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_b373fc5342c286a3647c3598.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966000;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_a2a91a83e2174ebbb0b79722.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_082a7aa973b2556803b17915.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_23aa91e10d9a95d55f975598.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_523511e22f851beb083f8ffb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_da68f7bf199108ffa8bdb6d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_230f9761e89fef790a56e30b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5f273810d64cdf02287da83.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_f476e36f0ceb16b4cf47c2c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_512eafe03d45c3419385238b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_b5f273810d64cdf02287da83.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_555ec2616c0b2c14c9791d70.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.762000;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_b365022721f1b9b0add79d72.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.992800px;}
.ls1e{letter-spacing:-1.135440px;}
.ls2a{letter-spacing:-1.044000px;}
.ls27{letter-spacing:-0.960480px;}
.ls23{letter-spacing:-0.793440px;}
.ls3b{letter-spacing:-0.776880px;}
.ls24{letter-spacing:-0.709920px;}
.ls38{letter-spacing:-0.657360px;}
.ls25{letter-spacing:-0.626400px;}
.ls3a{letter-spacing:-0.537840px;}
.ls30{letter-spacing:-0.530640px;}
.ls1f{letter-spacing:-0.478080px;}
.ls33{letter-spacing:-0.418320px;}
.ls1a{letter-spacing:-0.358560px;}
.ls31{letter-spacing:-0.337680px;}
.ls2b{letter-spacing:-0.292320px;}
.ls20{letter-spacing:-0.239040px;}
.ls26{letter-spacing:-0.208800px;}
.ls37{letter-spacing:-0.192960px;}
.ls2d{letter-spacing:-0.191520px;}
.ls46{letter-spacing:-0.180360px;}
.ls1c{letter-spacing:-0.179280px;}
.ls48{letter-spacing:-0.120240px;}
.ls47{letter-spacing:-0.095760px;}
.ls22{letter-spacing:-0.083520px;}
.ls45{letter-spacing:-0.060120px;}
.ls1d{letter-spacing:-0.059760px;}
.ls18{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.047880px;}
.ls19{letter-spacing:0.059760px;}
.ls43{letter-spacing:0.060120px;}
.ls3e{letter-spacing:0.095760px;}
.ls3d{letter-spacing:0.096120px;}
.ls6{letter-spacing:0.119520px;}
.ls3c{letter-spacing:0.119880px;}
.ls44{letter-spacing:0.120240px;}
.ls3f{letter-spacing:0.143640px;}
.lsc{letter-spacing:0.167040px;}
.ls16{letter-spacing:0.179280px;}
.ls41{letter-spacing:0.191520px;}
.ls2f{letter-spacing:0.192960px;}
.ls28{letter-spacing:0.208800px;}
.ls4{letter-spacing:0.239040px;}
.ls32{letter-spacing:0.289440px;}
.ls29{letter-spacing:0.292320px;}
.ls36{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.358560px;}
.ls2c{letter-spacing:0.360720px;}
.ls8{letter-spacing:0.375840px;}
.ls2e{letter-spacing:0.385920px;}
.ls13{letter-spacing:0.501120px;}
.ls21{letter-spacing:0.537840px;}
.lsd{letter-spacing:0.709920px;}
.ls1b{letter-spacing:0.836640px;}
.ls10{letter-spacing:0.918720px;}
.ls3{letter-spacing:0.956160px;}
.ls34{letter-spacing:1.075680px;}
.lsa{letter-spacing:11.141568px;}
.ls14{letter-spacing:11.149920px;}
.lsb{letter-spacing:11.191680px;}
.ls9{letter-spacing:11.484000px;}
.ls15{letter-spacing:11.859840px;}
.lse{letter-spacing:12.611520px;}
.ls39{letter-spacing:13.864320px;}
.lsf{letter-spacing:14.031360px;}
.ls5{letter-spacing:16.075440px;}
.ls11{letter-spacing:16.202880px;}
.ls12{letter-spacing:16.912800px;}
.ls2{letter-spacing:18.902088px;}
.ls7{letter-spacing:30.417840px;}
.ls0{letter-spacing:38.545200px;}
.ls35{letter-spacing:52.768080px;}
.ls42{letter-spacing:77.915520px;}
.ls17{letter-spacing:78.166080px;}
.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;}
}
.ws8{word-spacing:-15.298560px;}
.wsa{word-spacing:-15.179040px;}
.ws4{word-spacing:-15.059520px;}
.ws0{word-spacing:-14.999760px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.880240px;}
.ws1f{word-spacing:-14.760720px;}
.ws2{word-spacing:-14.581440px;}
.ws1e{word-spacing:-14.521680px;}
.ws6{word-spacing:-14.461920px;}
.wsce{word-spacing:-11.867040px;}
.ws15{word-spacing:-11.358720px;}
.ws19{word-spacing:-10.732320px;}
.ws17{word-spacing:-10.648800px;}
.ws1c{word-spacing:-10.607040px;}
.wsb{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.356480px;}
.ws12{word-spacing:-10.231200px;}
.ws18{word-spacing:-9.813600px;}
.wscf{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.646560px;}
.ws1d{word-spacing:-9.396000px;}
.wsa9{word-spacing:-1.075680px;}
.ws23{word-spacing:-0.836640px;}
.wsbc{word-spacing:-0.723600px;}
.ws85{word-spacing:-0.717120px;}
.ws4a{word-spacing:-0.537840px;}
.ws76{word-spacing:-0.501120px;}
.ws81{word-spacing:-0.360720px;}
.ws35{word-spacing:-0.358560px;}
.wsb8{word-spacing:-0.298800px;}
.ws7a{word-spacing:-0.292320px;}
.wsf9{word-spacing:-0.240480px;}
.wsd4{word-spacing:-0.239760px;}
.ws2e{word-spacing:-0.239040px;}
.ws8c{word-spacing:-0.192960px;}
.wsd6{word-spacing:-0.192240px;}
.ws83{word-spacing:-0.191520px;}
.wsd7{word-spacing:-0.180360px;}
.ws3e{word-spacing:-0.179280px;}
.ws56{word-spacing:-0.167040px;}
.wsea{word-spacing:-0.143640px;}
.ws80{word-spacing:-0.120240px;}
.ws2a{word-spacing:-0.119520px;}
.ws99{word-spacing:-0.096480px;}
.wsd5{word-spacing:-0.096120px;}
.wsdc{word-spacing:-0.095760px;}
.wseb{word-spacing:-0.060120px;}
.ws9a{word-spacing:-0.059760px;}
.wse{word-spacing:-0.025056px;}
.ws20{word-spacing:0.000000px;}
.ws26{word-spacing:0.059760px;}
.ws71{word-spacing:0.083520px;}
.wse5{word-spacing:0.095760px;}
.wsc4{word-spacing:0.119520px;}
.wsd9{word-spacing:0.143640px;}
.ws24{word-spacing:0.179280px;}
.wsf8{word-spacing:0.180360px;}
.ws84{word-spacing:0.191520px;}
.ws7b{word-spacing:0.208800px;}
.ws25{word-spacing:0.239040px;}
.ws82{word-spacing:0.240480px;}
.ws7f{word-spacing:0.292320px;}
.wsd8{word-spacing:0.300600px;}
.ws90{word-spacing:0.337680px;}
.ws29{word-spacing:0.358560px;}
.ws57{word-spacing:0.375840px;}
.wsbd{word-spacing:0.385920px;}
.wsa6{word-spacing:0.418320px;}
.ws7c{word-spacing:0.459360px;}
.ws49{word-spacing:0.478080px;}
.wse1{word-spacing:0.526680px;}
.wsd0{word-spacing:0.530640px;}
.ws2f{word-spacing:0.537840px;}
.wse0{word-spacing:0.574560px;}
.ws6b{word-spacing:0.584640px;}
.wsc3{word-spacing:0.657360px;}
.ws59{word-spacing:0.709920px;}
.wse2{word-spacing:0.718200px;}
.ws8d{word-spacing:0.723600px;}
.ws1a{word-spacing:0.751680px;}
.ws4d{word-spacing:0.776880px;}
.ws6f{word-spacing:0.793440px;}
.ws108{word-spacing:0.901800px;}
.wsf{word-spacing:0.902016px;}
.ws79{word-spacing:0.918720px;}
.ws36{word-spacing:0.956160px;}
.ws61{word-spacing:1.002240px;}
.ws5a{word-spacing:1.085760px;}
.ws5b{word-spacing:1.169280px;}
.wse4{word-spacing:1.197000px;}
.wsdb{word-spacing:1.244880px;}
.ws86{word-spacing:1.254240px;}
.ws34{word-spacing:1.254960px;}
.wsdf{word-spacing:1.292760px;}
.ws98{word-spacing:1.350720px;}
.wsef{word-spacing:1.382760px;}
.ws63{word-spacing:1.419840px;}
.ws8f{word-spacing:1.447200px;}
.wsc5{word-spacing:1.494000px;}
.wse6{word-spacing:1.580040px;}
.wsda{word-spacing:1.627920px;}
.ws55{word-spacing:1.628640px;}
.wsa7{word-spacing:1.673280px;}
.wse3{word-spacing:1.675800px;}
.ws62{word-spacing:1.795680px;}
.ws54{word-spacing:1.879200px;}
.wse9{word-spacing:1.915200px;}
.wse8{word-spacing:1.963080px;}
.wsae{word-spacing:1.972080px;}
.ws94{word-spacing:1.977840px;}
.wse7{word-spacing:2.010960px;}
.ws8e{word-spacing:2.170800px;}
.ws21{word-spacing:2.211120px;}
.wsde{word-spacing:2.298240px;}
.ws53{word-spacing:2.338560px;}
.wsdd{word-spacing:2.346120px;}
.ws2d{word-spacing:2.390400px;}
.ws58{word-spacing:2.505600px;}
.wsfc{word-spacing:2.645280px;}
.ws22{word-spacing:2.689200px;}
.ws95{word-spacing:2.701440px;}
.ws74{word-spacing:2.714400px;}
.wscc{word-spacing:2.748960px;}
.ws8b{word-spacing:2.797920px;}
.ws4c{word-spacing:2.808720px;}
.ws4b{word-spacing:2.928240px;}
.wsc9{word-spacing:3.107520px;}
.ws6c{word-spacing:3.215520px;}
.ws50{word-spacing:3.257280px;}
.ws64{word-spacing:3.299040px;}
.ws9c{word-spacing:3.406320px;}
.ws8a{word-spacing:3.425040px;}
.ws103{word-spacing:3.547080px;}
.ws89{word-spacing:3.618000px;}
.wsab{word-spacing:3.645360px;}
.ws1b{word-spacing:3.679056px;}
.wsf3{word-spacing:3.787560px;}
.ws6e{word-spacing:3.800160px;}
.ws39{word-spacing:3.824640px;}
.ws6d{word-spacing:3.967200px;}
.ws16{word-spacing:4.017312px;}
.ws7e{word-spacing:4.050720px;}
.ws38{word-spacing:4.123440px;}
.ws96{word-spacing:4.148640px;}
.wsc7{word-spacing:4.183200px;}
.ws87{word-spacing:4.341600px;}
.ws42{word-spacing:4.362480px;}
.ws9e{word-spacing:4.422240px;}
.wsb4{word-spacing:4.601520px;}
.ws70{word-spacing:4.677120px;}
.wsf4{word-spacing:4.689360px;}
.wsfd{word-spacing:4.809600px;}
.ws43{word-spacing:4.840560px;}
.wsb5{word-spacing:4.900320px;}
.ws7{word-spacing:4.960080px;}
.ws9{word-spacing:4.989960px;}
.ws66{word-spacing:5.011200px;}
.ws97{word-spacing:5.065200px;}
.wsa5{word-spacing:5.139360px;}
.ws45{word-spacing:5.258880px;}
.wsb6{word-spacing:5.318640px;}
.ws67{word-spacing:5.387040px;}
.ws75{word-spacing:5.470560px;}
.ws92{word-spacing:5.547600px;}
.ws3f{word-spacing:5.557680px;}
.wsb3{word-spacing:5.617440px;}
.ws91{word-spacing:5.740560px;}
.ws72{word-spacing:5.762880px;}
.wsa4{word-spacing:5.856480px;}
.ws5d{word-spacing:5.971680px;}
.ws7d{word-spacing:6.096960px;}
.wsed{word-spacing:6.132240px;}
.ws5e{word-spacing:6.138720px;}
.ws88{word-spacing:6.271200px;}
.ws40{word-spacing:6.274800px;}
.wsa8{word-spacing:6.334560px;}
.ws10a{word-spacing:6.432840px;}
.ws93{word-spacing:6.464160px;}
.ws107{word-spacing:6.492960px;}
.ws46{word-spacing:6.513840px;}
.wsb0{word-spacing:6.573600px;}
.wsc2{word-spacing:6.752880px;}
.ws47{word-spacing:6.991920px;}
.wsd2{word-spacing:6.994800px;}
.ws104{word-spacing:7.034040px;}
.wsaa{word-spacing:7.051680px;}
.wsf5{word-spacing:7.154280px;}
.wsb1{word-spacing:7.290720px;}
.ws60{word-spacing:7.558560px;}
.ws102{word-spacing:7.755480px;}
.ws3d{word-spacing:7.768800px;}
.wsca{word-spacing:8.007840px;}
.wsf2{word-spacing:8.056080px;}
.wsa0{word-spacing:8.187120px;}
.ws3c{word-spacing:8.485920px;}
.ws10{word-spacing:8.644320px;}
.ws100{word-spacing:8.717400px;}
.wsba{word-spacing:8.724960px;}
.ws44{word-spacing:8.904240px;}
.ws10d{word-spacing:9.018000px;}
.ws73{word-spacing:9.020160px;}
.ws14{word-spacing:9.149616px;}
.wsd3{word-spacing:9.165600px;}
.wsc6{word-spacing:9.203040px;}
.ws68{word-spacing:9.354240px;}
.wsaf{word-spacing:9.442080px;}
.ws13{word-spacing:9.725904px;}
.ws69{word-spacing:9.730080px;}
.ws9f{word-spacing:9.920160px;}
.wsc8{word-spacing:10.159200px;}
.wsf6{word-spacing:10.280520px;}
.ws33{word-spacing:10.338480px;}
.ws5c{word-spacing:10.440000px;}
.wsff{word-spacing:10.460880px;}
.ws10c{word-spacing:10.521000px;}
.wscd{word-spacing:10.637280px;}
.ws6a{word-spacing:10.690560px;}
.wsa2{word-spacing:10.876320px;}
.ws10b{word-spacing:10.881720px;}
.ws9b{word-spacing:11.055600px;}
.ws65{word-spacing:11.149920px;}
.ws32{word-spacing:11.354400px;}
.wsbb{word-spacing:11.593440px;}
.ws78{word-spacing:11.859840px;}
.ws77{word-spacing:11.901600px;}
.ws109{word-spacing:12.084120px;}
.wsee{word-spacing:12.264480px;}
.wsb2{word-spacing:12.310560px;}
.ws101{word-spacing:12.444840px;}
.wsc0{word-spacing:12.489840px;}
.ws5f{word-spacing:12.611520px;}
.wsb9{word-spacing:12.788640px;}
.wsa1{word-spacing:13.206960px;}
.ws9d{word-spacing:13.744800px;}
.ws4e{word-spacing:14.940000px;}
.wscb{word-spacing:15.179040px;}
.ws4f{word-spacing:15.358320px;}
.ws3a{word-spacing:15.657120px;}
.ws37{word-spacing:15.896160px;}
.ws3b{word-spacing:16.075440px;}
.ws2c{word-spacing:16.374240px;}
.wsb7{word-spacing:16.613280px;}
.wsa3{word-spacing:16.792560px;}
.ws48{word-spacing:17.091360px;}
.ws2b{word-spacing:17.868240px;}
.wsec{word-spacing:19.178280px;}
.ws28{word-spacing:20.676960px;}
.wsad{word-spacing:20.975760px;}
.ws27{word-spacing:21.095280px;}
.wsf7{word-spacing:22.424760px;}
.wsac{word-spacing:23.844240px;}
.wsc1{word-spacing:24.561360px;}
.wsbe{word-spacing:25.995600px;}
.wsfe{word-spacing:27.174240px;}
.wsf0{word-spacing:27.895680px;}
.wsd1{word-spacing:30.358080px;}
.ws31{word-spacing:30.477600px;}
.ws30{word-spacing:30.776400px;}
.wsbf{word-spacing:31.075200px;}
.wsfa{word-spacing:31.202280px;}
.ws51{word-spacing:35.245440px;}
.ws41{word-spacing:36.513360px;}
.ws52{word-spacing:37.166400px;}
.wsfb{word-spacing:37.214280px;}
.wsf1{word-spacing:37.514880px;}
.wsd{word-spacing:39.221400px;}
.ws106{word-spacing:40.761360px;}
.ws1{word-spacing:41.413680px;}
.ws105{word-spacing:43.767360px;}
._c{margin-left:-4.649328px;}
._b{margin-left:-3.573648px;}
._a{margin-left:-2.514384px;}
._1{margin-left:-1.266912px;}
._0{width:1.063728px;}
._4{width:2.342592px;}
._5{width:5.828976px;}
._7{width:8.301888px;}
._6{width:9.330768px;}
._d{width:10.866852px;}
._3{width:16.374240px;}
._2{width:17.665056px;}
._8{width:18.928224px;}
._9{width:24.797088px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.360000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:42.000000px;}
.fsd{font-size:47.880000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:60.120000px;}
.fs6{font-size:95.760000px;}
.fsb{font-size:96.120000px;}
.fsa{font-size:119.880000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y85{bottom:2.877900px;}
.y81{bottom:2.879400px;}
.y168{bottom:2.880150px;}
.y72{bottom:5.759400px;}
.y6e{bottom:6.839250px;}
.y1{bottom:46.807650px;}
.y155{bottom:91.451940px;}
.y185{bottom:92.408820px;}
.y197{bottom:93.055110px;}
.y10f{bottom:98.680200px;}
.yf1{bottom:98.809260px;}
.ye0{bottom:100.609260px;}
.y15d{bottom:104.450280px;}
.ya0{bottom:105.092160px;}
.yb2{bottom:107.333160px;}
.y154{bottom:108.558240px;}
.y184{bottom:109.693320px;}
.y196{bottom:110.339610px;}
.yf0{bottom:116.094840px;}
.y126{bottom:116.475540px;}
.ydf{bottom:117.894840px;}
.y15c{bottom:118.307220px;}
.y9f{bottom:122.377740px;}
.yb1{bottom:124.618740px;}
.y153{bottom:125.843820px;}
.y14c{bottom:126.760200px;}
.y183{bottom:126.887640px;}
.y195{bottom:127.624110px;}
.y15b{bottom:131.983260px;}
.yef{bottom:133.380420px;}
.y125{bottom:133.761120px;}
.yde{bottom:135.001140px;}
.y9e{bottom:139.663320px;}
.yb0{bottom:141.904320px;}
.y152{bottom:143.129400px;}
.y182{bottom:144.172140px;}
.y194{bottom:144.818430px;}
.y15a{bottom:145.840200px;}
.yee{bottom:150.666000px;}
.y124{bottom:151.046700px;}
.ydd{bottom:152.286720px;}
.y9d{bottom:156.948900px;}
.y6b{bottom:158.287320px;}
.yaf{bottom:159.010620px;}
.y151{bottom:160.414980px;}
.y181{bottom:161.456640px;}
.y193{bottom:162.102930px;}
.yed{bottom:167.951580px;}
.y123{bottom:168.332280px;}
.ydc{bottom:169.572300px;}
.y6a{bottom:170.345520px;}
.y9c{bottom:174.055200px;}
.yae{bottom:176.296200px;}
.y150{bottom:177.521280px;}
.y159{bottom:178.387800px;}
.y180{bottom:178.650960px;}
.y192{bottom:179.387430px;}
.y69{bottom:182.403720px;}
.yec{bottom:185.057880px;}
.y14b{bottom:185.423640px;}
.y122{bottom:185.438580px;}
.y2d{bottom:185.975820px;}
.ydb{bottom:186.857880px;}
.y9b{bottom:191.340780px;}
.yad{bottom:193.581780px;}
.y68{bottom:194.461920px;}
.y14f{bottom:194.806860px;}
.y17f{bottom:195.935460px;}
.y191{bottom:196.581750px;}
.yeb{bottom:202.343460px;}
.y14a{bottom:202.709220px;}
.y121{bottom:202.724160px;}
.y2c{bottom:203.082120px;}
.y67{bottom:206.520120px;}
.y9a{bottom:208.626360px;}
.yac{bottom:210.867360px;}
.y17e{bottom:213.129780px;}
.y190{bottom:213.866250px;}
.y66{bottom:218.578320px;}
.yea{bottom:219.629040px;}
.y149{bottom:219.994800px;}
.y120{bottom:220.009740px;}
.y2b{bottom:220.367700px;}
.yda{bottom:222.131220px;}
.y99{bottom:225.911940px;}
.yab{bottom:227.973660px;}
.y14e{bottom:230.080200px;}
.y17d{bottom:230.414280px;}
.y65{bottom:230.636520px;}
.y18f{bottom:231.060570px;}
.y158{bottom:231.484560px;}
.ye9{bottom:236.914620px;}
.y11f{bottom:237.295320px;}
.y2a{bottom:237.653280px;}
.y64{bottom:242.694720px;}
.y98{bottom:243.018240px;}
.yaa{bottom:245.259240px;}
.y17c{bottom:247.698780px;}
.y18e{bottom:248.345070px;}
.y157{bottom:248.770140px;}
.ye8{bottom:254.200200px;}
.y148{bottom:254.371740px;}
.y11e{bottom:254.580900px;}
.y63{bottom:254.752920px;}
.y29{bottom:254.938860px;}
.y97{bottom:260.303820px;}
.ya9{bottom:262.544820px;}
.y17b{bottom:264.893100px;}
.y18d{bottom:265.629570px;}
.y156{bottom:266.055720px;}
.y62{bottom:266.811120px;}
.y11d{bottom:271.866480px;}
.y28{bottom:272.045160px;}
.yd9{bottom:275.227980px;}
.y96{bottom:277.589400px;}
.y61{bottom:278.869320px;}
.ya8{bottom:279.830400px;}
.y17a{bottom:282.177600px;}
.y18c{bottom:282.823890px;}
.ye7{bottom:287.860200px;}
.y27{bottom:289.330740px;}
.y147{bottom:290.018580px;}
.y60{bottom:290.927520px;}
.yd8{bottom:292.513560px;}
.y95{bottom:294.874980px;}
.ya7{bottom:296.936700px;}
.y179{bottom:299.462100px;}
.y18b{bottom:300.108390px;}
.y5f{bottom:302.985720px;}
.y11c{bottom:306.243420px;}
.y26{bottom:306.616320px;}
.y146{bottom:307.304160px;}
.yd7{bottom:309.799140px;}
.y94{bottom:311.981280px;}
.ya6{bottom:314.222280px;}
.y5e{bottom:315.043920px;}
.y178{bottom:316.656420px;}
.y14d{bottom:317.020200px;}
.y18a{bottom:317.392890px;}
.y25{bottom:323.901900px;}
.y145{bottom:324.589740px;}
.yd6{bottom:327.084720px;}
.y5d{bottom:327.102120px;}
.y93{bottom:329.266860px;}
.ya5{bottom:331.507860px;}
.y177{bottom:333.940920px;}
.y189{bottom:334.587210px;}
.y5c{bottom:339.243840px;}
.y144{bottom:341.696040px;}
.y11b{bottom:341.890260px;}
.yd5{bottom:344.370300px;}
.ya4{bottom:348.793440px;}
.y176{bottom:351.225420px;}
.y5b{bottom:351.302040px;}
.y188{bottom:351.871710px;}
.y143{bottom:358.981620px;}
.y24{bottom:358.995960px;}
.y11a{bottom:358.996560px;}
.yd4{bottom:361.655880px;}
.y5a{bottom:363.537720px;}
.y92{bottom:364.540200px;}
.ya3{bottom:365.899740px;}
.y187{bottom:369.156210px;}
.y59{bottom:375.595920px;}
.y142{bottom:376.267200px;}
.yd3{bottom:378.762180px;}
.ya2{bottom:383.185320px;}
.y186{bottom:386.350530px;}
.y175{bottom:386.410650px;}
.y58{bottom:387.654120px;}
.y141{bottom:393.552780px;}
.y119{bottom:394.269900px;}
.yd2{bottom:396.047760px;}
.y57{bottom:399.712320px;}
.ya1{bottom:400.470900px;}
.y140{bottom:410.838360px;}
.y118{bottom:411.555480px;}
.y56{bottom:411.770520px;}
.y23{bottom:412.272000px;}
.yd1{bottom:413.333340px;}
.y55{bottom:423.828720px;}
.y174{bottom:426.823890px;}
.y13f{bottom:428.123940px;}
.y117{bottom:428.841060px;}
.y22{bottom:429.557580px;}
.yd0{bottom:430.618920px;}
.y54{bottom:435.886920px;}
.y173{bottom:440.589390px;}
.y91{bottom:440.680200px;}
.y13e{bottom:445.230240px;}
.y21{bottom:446.843160px;}
.ycf{bottom:447.904500px;}
.y53{bottom:447.945120px;}
.y90{bottom:451.662000px;}
.y172{bottom:454.450650px;}
.y8f{bottom:454.547220px;}
.y52{bottom:460.003320px;}
.y13d{bottom:462.515820px;}
.y20{bottom:464.128740px;}
.yce{bottom:465.190080px;}
.y171{bottom:465.340500px;}
.y8e{bottom:468.223260px;}
.y170{bottom:468.239190px;}
.y51{bottom:472.061520px;}
.y13c{bottom:479.801400px;}
.y1f{bottom:481.414320px;}
.y16f{bottom:482.004690px;}
.y8d{bottom:482.080200px;}
.y116{bottom:482.117100px;}
.ycd{bottom:482.296380px;}
.y50{bottom:484.119720px;}
.y8c{bottom:493.060500px;}
.y16e{bottom:495.865950px;}
.y8b{bottom:495.940200px;}
.y4f{bottom:496.177920px;}
.y13b{bottom:497.086980px;}
.y1e{bottom:498.520620px;}
.y115{bottom:499.402680px;}
.ycc{bottom:499.581960px;}
.y8a{bottom:506.742000px;}
.y4e{bottom:508.236120px;}
.y89{bottom:509.617500px;}
.y16d{bottom:509.631450px;}
.y13a{bottom:514.372560px;}
.y1d{bottom:515.806200px;}
.y114{bottom:516.508980px;}
.ycb{bottom:516.867540px;}
.y4d{bottom:520.294320px;}
.y4c{bottom:532.352520px;}
.y16c{bottom:532.398390px;}
.y1c{bottom:533.091780px;}
.y113{bottom:533.794560px;}
.yca{bottom:534.153120px;}
.y4b{bottom:544.410720px;}
.y16b{bottom:546.259650px;}
.y88{bottom:546.340200px;}
.y139{bottom:548.749500px;}
.y1b{bottom:550.377360px;}
.y112{bottom:551.080140px;}
.yc9{bottom:551.438700px;}
.y4a{bottom:556.468920px;}
.y87{bottom:557.140500px;}
.y86{bottom:560.020200px;}
.y16a{bottom:560.025150px;}
.y138{bottom:566.035080px;}
.y1a{bottom:567.662940px;}
.y111{bottom:568.365720px;}
.y49{bottom:568.527120px;}
.yc8{bottom:568.545000px;}
.y84{bottom:571.002000px;}
.y169{bottom:573.790650px;}
.y83{bottom:573.880200px;}
.y48{bottom:580.585320px;}
.y19{bottom:584.769240px;}
.y167{bottom:584.770500px;}
.y80{bottom:584.860500px;}
.y110{bottom:585.651300px;}
.yc7{bottom:585.830580px;}
.y166{bottom:587.655150px;}
.y82{bottom:587.739900px;}
.y7f{bottom:587.744160px;}
.y47{bottom:592.643520px;}
.y7e{bottom:601.420200px;}
.y165{bottom:601.420650px;}
.y137{bottom:601.681920px;}
.y18{bottom:602.054820px;}
.yfd{bottom:602.757600px;}
.yc6{bottom:603.116160px;}
.y46{bottom:604.701720px;}
.y10e{bottom:615.803460px;}
.y7d{bottom:616.360200px;}
.y45{bottom:616.759920px;}
.y136{bottom:618.788220px;}
.y17{bottom:619.340400px;}
.yfc{bottom:620.043180px;}
.yc5{bottom:620.401740px;}
.y7c{bottom:623.200200px;}
.y44{bottom:628.818120px;}
.y10d{bottom:633.089040px;}
.y7b{bottom:633.640200px;}
.y135{bottom:636.073800px;}
.y16{bottom:636.625980px;}
.yfb{bottom:637.328760px;}
.yc4{bottom:637.508040px;}
.y7a{bottom:640.480200px;}
.y43{bottom:640.876320px;}
.y10c{bottom:650.374620px;}
.y79{bottom:650.920200px;}
.y42{bottom:652.934520px;}
.y134{bottom:653.359380px;}
.y15{bottom:653.911560px;}
.yfa{bottom:654.614340px;}
.yc3{bottom:654.793620px;}
.y164{bottom:657.400650px;}
.y78{bottom:657.760200px;}
.y41{bottom:664.992720px;}
.y109{bottom:667.522500px;}
.y10b{bottom:667.660200px;}
.y163{bottom:667.938390px;}
.y77{bottom:668.200200px;}
.y133{bottom:670.644960px;}
.y14{bottom:671.197140px;}
.yf9{bottom:671.899920px;}
.yc2{bottom:672.079200px;}
.y10a{bottom:674.500200px;}
.y76{bottom:675.037320px;}
.y40{bottom:677.050920px;}
.y108{bottom:684.628800px;}
.y132{bottom:687.930540px;}
.y13{bottom:688.303440px;}
.y3f{bottom:689.109120px;}
.yf8{bottom:689.185500px;}
.yc1{bottom:689.364780px;}
.y162{bottom:694.120650px;}
.y74{bottom:694.480200px;}
.y3e{bottom:701.167320px;}
.y75{bottom:701.320200px;}
.y107{bottom:701.914380px;}
.y131{bottom:705.216120px;}
.y12{bottom:705.589020px;}
.yf7{bottom:706.291800px;}
.yc0{bottom:706.471080px;}
.y3d{bottom:713.225520px;}
.y161{bottom:722.196150px;}
.y130{bottom:722.322420px;}
.y73{bottom:722.740200px;}
.y11{bottom:722.874600px;}
.yf6{bottom:723.577380px;}
.ybf{bottom:723.756660px;}
.y3c{bottom:725.283720px;}
.y106{bottom:737.187720px;}
.y3b{bottom:737.341920px;}
.y12f{bottom:739.608000px;}
.y10{bottom:740.160180px;}
.yf5{bottom:740.862960px;}
.ybe{bottom:741.042240px;}
.y71{bottom:744.520500px;}
.y3a{bottom:749.400120px;}
.y160{bottom:749.830650px;}
.y70{bottom:750.280200px;}
.y105{bottom:754.473300px;}
.y12e{bottom:756.893580px;}
.yf{bottom:757.445760px;}
.yf4{bottom:758.148540px;}
.ybd{bottom:758.327820px;}
.y39{bottom:761.458320px;}
.y38{bottom:773.516520px;}
.ye{bottom:774.731340px;}
.ybc{bottom:775.434120px;}
.y15f{bottom:783.135150px;}
.y6f{bottom:783.580200px;}
.y37{bottom:785.574720px;}
.y12d{bottom:791.449800px;}
.yd{bottom:791.837640px;}
.ybb{bottom:792.719700px;}
.y36{bottom:797.632920px;}
.y104{bottom:807.749340px;}
.yc{bottom:809.123220px;}
.y35{bottom:809.691120px;}
.yf3{bottom:809.826000px;}
.yba{bottom:810.005280px;}
.y6d{bottom:811.300500px;}
.y15e{bottom:817.600650px;}
.y6c{bottom:818.140200px;}
.y34{bottom:821.749320px;}
.y103{bottom:824.855640px;}
.yb{bottom:826.408800px;}
.ye6{bottom:826.887480px;}
.y12c{bottom:826.902420px;}
.yf2{bottom:827.111580px;}
.yb9{bottom:827.290860px;}
.y33{bottom:833.807520px;}
.y102{bottom:843.216900px;}
.ya{bottom:843.694380px;}
.ye5{bottom:844.173060px;}
.y12b{bottom:844.188000px;}
.yb8{bottom:844.397160px;}
.y32{bottom:846.043200px;}
.y31{bottom:858.101400px;}
.y101{bottom:860.502480px;}
.y9{bottom:860.979960px;}
.ye4{bottom:861.458640px;}
.y12a{bottom:861.473580px;}
.yb7{bottom:861.682740px;}
.y30{bottom:870.161400px;}
.y8{bottom:878.265540px;}
.ye3{bottom:878.744220px;}
.y129{bottom:878.759160px;}
.y100{bottom:878.863740px;}
.yb6{bottom:878.968320px;}
.y2f{bottom:882.219600px;}
.ye2{bottom:896.029800px;}
.y128{bottom:896.044740px;}
.yff{bottom:896.149320px;}
.yb5{bottom:896.253900px;}
.ye1{bottom:913.136100px;}
.y127{bottom:913.151040px;}
.y2e{bottom:913.180320px;}
.yfe{bottom:913.255620px;}
.y7{bottom:913.359600px;}
.yb4{bottom:913.360200px;}
.y6{bottom:951.629550px;}
.y5{bottom:962.129550px;}
.yb3{bottom:966.595200px;}
.y4{bottom:983.129550px;}
.y3{bottom:993.629550px;}
.y2{bottom:1004.129550px;}
.h1d{height:13.590000px;}
.h13{height:13.680000px;}
.h12{height:13.681500px;}
.hf{height:26.995781px;}
.hd{height:27.180000px;}
.h4{height:31.500000px;}
.h3{height:32.004000px;}
.h17{height:33.494766px;}
.hb{height:33.840000px;}
.he{height:34.114922px;}
.h9{height:34.908750px;}
.h7{height:36.641953px;}
.h10{height:41.493516px;}
.h1b{height:41.743477px;}
.h8{height:41.999597px;}
.h1c{height:42.011895px;}
.h11{height:42.327773px;}
.h14{height:43.434000px;}
.h15{height:47.381836px;}
.h2{height:50.014160px;}
.h6{height:52.435898px;}
.h1a{height:52.751777px;}
.hc{height:84.023789px;}
.h19{height:84.339668px;}
.h18{height:105.187676px;}
.ha{height:105.503555px;}
.h5{height:1046.019000px;}
.h16{height:1046.020500px;}
.h0{height:1046.056500px;}
.h1{height:1046.250000px;}
.we{width:-599.259000px;}
.wf{width:-489.009000px;}
.w2{width:0.114000px;}
.w8{width:19.080000px;}
.wb{width:44.436000px;}
.wc{width:44.514000px;}
.wd{width:44.601000px;}
.w7{width:58.138500px;}
.w9{width:64.800000px;}
.wa{width:87.298500px;}
.w3{width:105.480000px;}
.w6{width:154.080000px;}
.w4{width:208.440000px;}
.w5{width:531.540000px;}
.w0{width:803.694000px;}
.w1{width:804.000000px;}
.x3{left:-735.546000px;}
.x4{left:-727.075020px;}
.x32{left:-718.570177px;}
.x3c{left:-710.100208px;}
.x3d{left:-708.846017px;}
.x5{left:-700.242780px;}
.x6{left:-386.891220px;}
.x33{left:-369.919898px;}
.x3e{left:-360.180807px;}
.x3f{left:-333.185831px;}
.x0{left:0.000000px;}
.x7{left:67.956000px;}
.x25{left:85.051823px;}
.x2{left:93.579300px;}
.x39{left:94.775983px;}
.x29{left:112.320150px;}
.x40{left:113.940150px;}
.x41{left:120.240150px;}
.x2a{left:129.415973px;}
.x46{left:134.910000px;}
.xc{left:186.396000px;}
.x18{left:201.156000px;}
.x19{left:206.016000px;}
.x1d{left:208.536000px;}
.x48{left:245.160000px;}
.xd{left:255.516000px;}
.xe{left:265.236000px;}
.x16{left:287.377864px;}
.x17{left:292.236000px;}
.x1a{left:297.636000px;}
.x9{left:306.816000px;}
.x43{left:327.060150px;}
.x1b{left:331.296000px;}
.x1c{left:336.156000px;}
.xf{left:337.596000px;}
.x10{left:342.456000px;}
.xb{left:355.056000px;}
.x42{left:369.455280px;}
.x44{left:376.020150px;}
.x26{left:416.621209px;}
.x11{left:418.956000px;}
.x12{left:423.816000px;}
.x27{left:433.717032px;}
.x35{left:442.138032px;}
.x3a{left:443.441193px;}
.x34{left:450.603824px;}
.x2c{left:460.955497px;}
.x1e{left:462.336450px;}
.x3b{left:470.436169px;}
.x2b{left:478.051321px;}
.x2e{left:486.502182px;}
.x2d{left:494.967974px;}
.x13{left:502.476000px;}
.x14{left:507.336000px;}
.x1f{left:508.860450px;}
.xa{left:531.636000px;}
.x36{left:542.796000px;}
.x37{left:547.656000px;}
.x20{left:585.996000px;}
.x2f{left:587.160150px;}
.x30{left:592.020150px;}
.x15{left:616.416000px;}
.x8{left:634.596000px;}
.x38{left:642.176100px;}
.x24{left:652.776000px;}
.x23{left:675.276000px;}
.x21{left:681.936000px;}
.x1{left:707.126550px;}
.x31{left:708.626550px;}
.x22{left:720.996000px;}
.x28{left:759.258000px;}
.x47{left:1292.703000px;}
.x45{left:1402.953000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.993600pt;}
.ls1e{letter-spacing:-1.009280pt;}
.ls2a{letter-spacing:-0.928000pt;}
.ls27{letter-spacing:-0.853760pt;}
.ls23{letter-spacing:-0.705280pt;}
.ls3b{letter-spacing:-0.690560pt;}
.ls24{letter-spacing:-0.631040pt;}
.ls38{letter-spacing:-0.584320pt;}
.ls25{letter-spacing:-0.556800pt;}
.ls3a{letter-spacing:-0.478080pt;}
.ls30{letter-spacing:-0.471680pt;}
.ls1f{letter-spacing:-0.424960pt;}
.ls33{letter-spacing:-0.371840pt;}
.ls1a{letter-spacing:-0.318720pt;}
.ls31{letter-spacing:-0.300160pt;}
.ls2b{letter-spacing:-0.259840pt;}
.ls20{letter-spacing:-0.212480pt;}
.ls26{letter-spacing:-0.185600pt;}
.ls37{letter-spacing:-0.171520pt;}
.ls2d{letter-spacing:-0.170240pt;}
.ls46{letter-spacing:-0.160320pt;}
.ls1c{letter-spacing:-0.159360pt;}
.ls48{letter-spacing:-0.106880pt;}
.ls47{letter-spacing:-0.085120pt;}
.ls22{letter-spacing:-0.074240pt;}
.ls45{letter-spacing:-0.053440pt;}
.ls1d{letter-spacing:-0.053120pt;}
.ls18{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.042560pt;}
.ls19{letter-spacing:0.053120pt;}
.ls43{letter-spacing:0.053440pt;}
.ls3e{letter-spacing:0.085120pt;}
.ls3d{letter-spacing:0.085440pt;}
.ls6{letter-spacing:0.106240pt;}
.ls3c{letter-spacing:0.106560pt;}
.ls44{letter-spacing:0.106880pt;}
.ls3f{letter-spacing:0.127680pt;}
.lsc{letter-spacing:0.148480pt;}
.ls16{letter-spacing:0.159360pt;}
.ls41{letter-spacing:0.170240pt;}
.ls2f{letter-spacing:0.171520pt;}
.ls28{letter-spacing:0.185600pt;}
.ls4{letter-spacing:0.212480pt;}
.ls32{letter-spacing:0.257280pt;}
.ls29{letter-spacing:0.259840pt;}
.ls36{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.318720pt;}
.ls2c{letter-spacing:0.320640pt;}
.ls8{letter-spacing:0.334080pt;}
.ls2e{letter-spacing:0.343040pt;}
.ls13{letter-spacing:0.445440pt;}
.ls21{letter-spacing:0.478080pt;}
.lsd{letter-spacing:0.631040pt;}
.ls1b{letter-spacing:0.743680pt;}
.ls10{letter-spacing:0.816640pt;}
.ls3{letter-spacing:0.849920pt;}
.ls34{letter-spacing:0.956160pt;}
.lsa{letter-spacing:9.903616pt;}
.ls14{letter-spacing:9.911040pt;}
.lsb{letter-spacing:9.948160pt;}
.ls9{letter-spacing:10.208000pt;}
.ls15{letter-spacing:10.542080pt;}
.lse{letter-spacing:11.210240pt;}
.ls39{letter-spacing:12.323840pt;}
.lsf{letter-spacing:12.472320pt;}
.ls5{letter-spacing:14.289280pt;}
.ls11{letter-spacing:14.402560pt;}
.ls12{letter-spacing:15.033600pt;}
.ls2{letter-spacing:16.801856pt;}
.ls7{letter-spacing:27.038080pt;}
.ls0{letter-spacing:34.262400pt;}
.ls35{letter-spacing:46.904960pt;}
.ls42{letter-spacing:69.258240pt;}
.ls17{letter-spacing:69.480960pt;}
.ws8{word-spacing:-13.598720pt;}
.wsa{word-spacing:-13.492480pt;}
.ws4{word-spacing:-13.386240pt;}
.ws0{word-spacing:-13.333120pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.226880pt;}
.ws1f{word-spacing:-13.120640pt;}
.ws2{word-spacing:-12.961280pt;}
.ws1e{word-spacing:-12.908160pt;}
.ws6{word-spacing:-12.855040pt;}
.wsce{word-spacing:-10.548480pt;}
.ws15{word-spacing:-10.096640pt;}
.ws19{word-spacing:-9.539840pt;}
.ws17{word-spacing:-9.465600pt;}
.ws1c{word-spacing:-9.428480pt;}
.wsb{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.205760pt;}
.ws12{word-spacing:-9.094400pt;}
.ws18{word-spacing:-8.723200pt;}
.wscf{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.574720pt;}
.ws1d{word-spacing:-8.352000pt;}
.wsa9{word-spacing:-0.956160pt;}
.ws23{word-spacing:-0.743680pt;}
.wsbc{word-spacing:-0.643200pt;}
.ws85{word-spacing:-0.637440pt;}
.ws4a{word-spacing:-0.478080pt;}
.ws76{word-spacing:-0.445440pt;}
.ws81{word-spacing:-0.320640pt;}
.ws35{word-spacing:-0.318720pt;}
.wsb8{word-spacing:-0.265600pt;}
.ws7a{word-spacing:-0.259840pt;}
.wsf9{word-spacing:-0.213760pt;}
.wsd4{word-spacing:-0.213120pt;}
.ws2e{word-spacing:-0.212480pt;}
.ws8c{word-spacing:-0.171520pt;}
.wsd6{word-spacing:-0.170880pt;}
.ws83{word-spacing:-0.170240pt;}
.wsd7{word-spacing:-0.160320pt;}
.ws3e{word-spacing:-0.159360pt;}
.ws56{word-spacing:-0.148480pt;}
.wsea{word-spacing:-0.127680pt;}
.ws80{word-spacing:-0.106880pt;}
.ws2a{word-spacing:-0.106240pt;}
.ws99{word-spacing:-0.085760pt;}
.wsd5{word-spacing:-0.085440pt;}
.wsdc{word-spacing:-0.085120pt;}
.wseb{word-spacing:-0.053440pt;}
.ws9a{word-spacing:-0.053120pt;}
.wse{word-spacing:-0.022272pt;}
.ws20{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053120pt;}
.ws71{word-spacing:0.074240pt;}
.wse5{word-spacing:0.085120pt;}
.wsc4{word-spacing:0.106240pt;}
.wsd9{word-spacing:0.127680pt;}
.ws24{word-spacing:0.159360pt;}
.wsf8{word-spacing:0.160320pt;}
.ws84{word-spacing:0.170240pt;}
.ws7b{word-spacing:0.185600pt;}
.ws25{word-spacing:0.212480pt;}
.ws82{word-spacing:0.213760pt;}
.ws7f{word-spacing:0.259840pt;}
.wsd8{word-spacing:0.267200pt;}
.ws90{word-spacing:0.300160pt;}
.ws29{word-spacing:0.318720pt;}
.ws57{word-spacing:0.334080pt;}
.wsbd{word-spacing:0.343040pt;}
.wsa6{word-spacing:0.371840pt;}
.ws7c{word-spacing:0.408320pt;}
.ws49{word-spacing:0.424960pt;}
.wse1{word-spacing:0.468160pt;}
.wsd0{word-spacing:0.471680pt;}
.ws2f{word-spacing:0.478080pt;}
.wse0{word-spacing:0.510720pt;}
.ws6b{word-spacing:0.519680pt;}
.wsc3{word-spacing:0.584320pt;}
.ws59{word-spacing:0.631040pt;}
.wse2{word-spacing:0.638400pt;}
.ws8d{word-spacing:0.643200pt;}
.ws1a{word-spacing:0.668160pt;}
.ws4d{word-spacing:0.690560pt;}
.ws6f{word-spacing:0.705280pt;}
.ws108{word-spacing:0.801600pt;}
.wsf{word-spacing:0.801792pt;}
.ws79{word-spacing:0.816640pt;}
.ws36{word-spacing:0.849920pt;}
.ws61{word-spacing:0.890880pt;}
.ws5a{word-spacing:0.965120pt;}
.ws5b{word-spacing:1.039360pt;}
.wse4{word-spacing:1.064000pt;}
.wsdb{word-spacing:1.106560pt;}
.ws86{word-spacing:1.114880pt;}
.ws34{word-spacing:1.115520pt;}
.wsdf{word-spacing:1.149120pt;}
.ws98{word-spacing:1.200640pt;}
.wsef{word-spacing:1.229120pt;}
.ws63{word-spacing:1.262080pt;}
.ws8f{word-spacing:1.286400pt;}
.wsc5{word-spacing:1.328000pt;}
.wse6{word-spacing:1.404480pt;}
.wsda{word-spacing:1.447040pt;}
.ws55{word-spacing:1.447680pt;}
.wsa7{word-spacing:1.487360pt;}
.wse3{word-spacing:1.489600pt;}
.ws62{word-spacing:1.596160pt;}
.ws54{word-spacing:1.670400pt;}
.wse9{word-spacing:1.702400pt;}
.wse8{word-spacing:1.744960pt;}
.wsae{word-spacing:1.752960pt;}
.ws94{word-spacing:1.758080pt;}
.wse7{word-spacing:1.787520pt;}
.ws8e{word-spacing:1.929600pt;}
.ws21{word-spacing:1.965440pt;}
.wsde{word-spacing:2.042880pt;}
.ws53{word-spacing:2.078720pt;}
.wsdd{word-spacing:2.085440pt;}
.ws2d{word-spacing:2.124800pt;}
.ws58{word-spacing:2.227200pt;}
.wsfc{word-spacing:2.351360pt;}
.ws22{word-spacing:2.390400pt;}
.ws95{word-spacing:2.401280pt;}
.ws74{word-spacing:2.412800pt;}
.wscc{word-spacing:2.443520pt;}
.ws8b{word-spacing:2.487040pt;}
.ws4c{word-spacing:2.496640pt;}
.ws4b{word-spacing:2.602880pt;}
.wsc9{word-spacing:2.762240pt;}
.ws6c{word-spacing:2.858240pt;}
.ws50{word-spacing:2.895360pt;}
.ws64{word-spacing:2.932480pt;}
.ws9c{word-spacing:3.027840pt;}
.ws8a{word-spacing:3.044480pt;}
.ws103{word-spacing:3.152960pt;}
.ws89{word-spacing:3.216000pt;}
.wsab{word-spacing:3.240320pt;}
.ws1b{word-spacing:3.270272pt;}
.wsf3{word-spacing:3.366720pt;}
.ws6e{word-spacing:3.377920pt;}
.ws39{word-spacing:3.399680pt;}
.ws6d{word-spacing:3.526400pt;}
.ws16{word-spacing:3.570944pt;}
.ws7e{word-spacing:3.600640pt;}
.ws38{word-spacing:3.665280pt;}
.ws96{word-spacing:3.687680pt;}
.wsc7{word-spacing:3.718400pt;}
.ws87{word-spacing:3.859200pt;}
.ws42{word-spacing:3.877760pt;}
.ws9e{word-spacing:3.930880pt;}
.wsb4{word-spacing:4.090240pt;}
.ws70{word-spacing:4.157440pt;}
.wsf4{word-spacing:4.168320pt;}
.wsfd{word-spacing:4.275200pt;}
.ws43{word-spacing:4.302720pt;}
.wsb5{word-spacing:4.355840pt;}
.ws7{word-spacing:4.408960pt;}
.ws9{word-spacing:4.435520pt;}
.ws66{word-spacing:4.454400pt;}
.ws97{word-spacing:4.502400pt;}
.wsa5{word-spacing:4.568320pt;}
.ws45{word-spacing:4.674560pt;}
.wsb6{word-spacing:4.727680pt;}
.ws67{word-spacing:4.788480pt;}
.ws75{word-spacing:4.862720pt;}
.ws92{word-spacing:4.931200pt;}
.ws3f{word-spacing:4.940160pt;}
.wsb3{word-spacing:4.993280pt;}
.ws91{word-spacing:5.102720pt;}
.ws72{word-spacing:5.122560pt;}
.wsa4{word-spacing:5.205760pt;}
.ws5d{word-spacing:5.308160pt;}
.ws7d{word-spacing:5.419520pt;}
.wsed{word-spacing:5.450880pt;}
.ws5e{word-spacing:5.456640pt;}
.ws88{word-spacing:5.574400pt;}
.ws40{word-spacing:5.577600pt;}
.wsa8{word-spacing:5.630720pt;}
.ws10a{word-spacing:5.718080pt;}
.ws93{word-spacing:5.745920pt;}
.ws107{word-spacing:5.771520pt;}
.ws46{word-spacing:5.790080pt;}
.wsb0{word-spacing:5.843200pt;}
.wsc2{word-spacing:6.002560pt;}
.ws47{word-spacing:6.215040pt;}
.wsd2{word-spacing:6.217600pt;}
.ws104{word-spacing:6.252480pt;}
.wsaa{word-spacing:6.268160pt;}
.wsf5{word-spacing:6.359360pt;}
.wsb1{word-spacing:6.480640pt;}
.ws60{word-spacing:6.718720pt;}
.ws102{word-spacing:6.893760pt;}
.ws3d{word-spacing:6.905600pt;}
.wsca{word-spacing:7.118080pt;}
.wsf2{word-spacing:7.160960pt;}
.wsa0{word-spacing:7.277440pt;}
.ws3c{word-spacing:7.543040pt;}
.ws10{word-spacing:7.683840pt;}
.ws100{word-spacing:7.748800pt;}
.wsba{word-spacing:7.755520pt;}
.ws44{word-spacing:7.914880pt;}
.ws10d{word-spacing:8.016000pt;}
.ws73{word-spacing:8.017920pt;}
.ws14{word-spacing:8.132992pt;}
.wsd3{word-spacing:8.147200pt;}
.wsc6{word-spacing:8.180480pt;}
.ws68{word-spacing:8.314880pt;}
.wsaf{word-spacing:8.392960pt;}
.ws13{word-spacing:8.645248pt;}
.ws69{word-spacing:8.648960pt;}
.ws9f{word-spacing:8.817920pt;}
.wsc8{word-spacing:9.030400pt;}
.wsf6{word-spacing:9.138240pt;}
.ws33{word-spacing:9.189760pt;}
.ws5c{word-spacing:9.280000pt;}
.wsff{word-spacing:9.298560pt;}
.ws10c{word-spacing:9.352000pt;}
.wscd{word-spacing:9.455360pt;}
.ws6a{word-spacing:9.502720pt;}
.wsa2{word-spacing:9.667840pt;}
.ws10b{word-spacing:9.672640pt;}
.ws9b{word-spacing:9.827200pt;}
.ws65{word-spacing:9.911040pt;}
.ws32{word-spacing:10.092800pt;}
.wsbb{word-spacing:10.305280pt;}
.ws78{word-spacing:10.542080pt;}
.ws77{word-spacing:10.579200pt;}
.ws109{word-spacing:10.741440pt;}
.wsee{word-spacing:10.901760pt;}
.wsb2{word-spacing:10.942720pt;}
.ws101{word-spacing:11.062080pt;}
.wsc0{word-spacing:11.102080pt;}
.ws5f{word-spacing:11.210240pt;}
.wsb9{word-spacing:11.367680pt;}
.wsa1{word-spacing:11.739520pt;}
.ws9d{word-spacing:12.217600pt;}
.ws4e{word-spacing:13.280000pt;}
.wscb{word-spacing:13.492480pt;}
.ws4f{word-spacing:13.651840pt;}
.ws3a{word-spacing:13.917440pt;}
.ws37{word-spacing:14.129920pt;}
.ws3b{word-spacing:14.289280pt;}
.ws2c{word-spacing:14.554880pt;}
.wsb7{word-spacing:14.767360pt;}
.wsa3{word-spacing:14.926720pt;}
.ws48{word-spacing:15.192320pt;}
.ws2b{word-spacing:15.882880pt;}
.wsec{word-spacing:17.047360pt;}
.ws28{word-spacing:18.379520pt;}
.wsad{word-spacing:18.645120pt;}
.ws27{word-spacing:18.751360pt;}
.wsf7{word-spacing:19.933120pt;}
.wsac{word-spacing:21.194880pt;}
.wsc1{word-spacing:21.832320pt;}
.wsbe{word-spacing:23.107200pt;}
.wsfe{word-spacing:24.154880pt;}
.wsf0{word-spacing:24.796160pt;}
.wsd1{word-spacing:26.984960pt;}
.ws31{word-spacing:27.091200pt;}
.ws30{word-spacing:27.356800pt;}
.wsbf{word-spacing:27.622400pt;}
.wsfa{word-spacing:27.735360pt;}
.ws51{word-spacing:31.329280pt;}
.ws41{word-spacing:32.456320pt;}
.ws52{word-spacing:33.036800pt;}
.wsfb{word-spacing:33.079360pt;}
.wsf1{word-spacing:33.346560pt;}
.wsd{word-spacing:34.863467pt;}
.ws106{word-spacing:36.232320pt;}
.ws1{word-spacing:36.812160pt;}
.ws105{word-spacing:38.904320pt;}
._c{margin-left:-4.132736pt;}
._b{margin-left:-3.176576pt;}
._a{margin-left:-2.235008pt;}
._1{margin-left:-1.126144pt;}
._0{width:0.945536pt;}
._4{width:2.082304pt;}
._5{width:5.181312pt;}
._7{width:7.379456pt;}
._6{width:8.294016pt;}
._d{width:9.659424pt;}
._3{width:14.554880pt;}
._2{width:15.702272pt;}
._8{width:16.825088pt;}
._9{width:22.041856pt;}
.fs4{font-size:24.320000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:37.333333pt;}
.fsd{font-size:42.560000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:53.440000pt;}
.fs6{font-size:85.120000pt;}
.fsb{font-size:85.440000pt;}
.fsa{font-size:106.560000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:2.558133pt;}
.y81{bottom:2.559467pt;}
.y168{bottom:2.560133pt;}
.y72{bottom:5.119467pt;}
.y6e{bottom:6.079333pt;}
.y1{bottom:41.606800pt;}
.y155{bottom:81.290613pt;}
.y185{bottom:82.141173pt;}
.y197{bottom:82.715653pt;}
.y10f{bottom:87.715733pt;}
.yf1{bottom:87.830453pt;}
.ye0{bottom:89.430453pt;}
.y15d{bottom:92.844693pt;}
.ya0{bottom:93.415253pt;}
.yb2{bottom:95.407253pt;}
.y154{bottom:96.496213pt;}
.y184{bottom:97.505173pt;}
.y196{bottom:98.079653pt;}
.yf0{bottom:103.195413pt;}
.y126{bottom:103.533813pt;}
.ydf{bottom:104.795413pt;}
.y15c{bottom:105.161973pt;}
.y9f{bottom:108.780213pt;}
.yb1{bottom:110.772213pt;}
.y153{bottom:111.861173pt;}
.y14c{bottom:112.675733pt;}
.y183{bottom:112.789013pt;}
.y195{bottom:113.443653pt;}
.y15b{bottom:117.318453pt;}
.yef{bottom:118.560373pt;}
.y125{bottom:118.898773pt;}
.yde{bottom:120.001013pt;}
.y9e{bottom:124.145173pt;}
.yb0{bottom:126.137173pt;}
.y152{bottom:127.226133pt;}
.y182{bottom:128.153013pt;}
.y194{bottom:128.727493pt;}
.y15a{bottom:129.635733pt;}
.yee{bottom:133.925333pt;}
.y124{bottom:134.263733pt;}
.ydd{bottom:135.365973pt;}
.y9d{bottom:139.510133pt;}
.y6b{bottom:140.699840pt;}
.yaf{bottom:141.342773pt;}
.y151{bottom:142.591093pt;}
.y181{bottom:143.517013pt;}
.y193{bottom:144.091493pt;}
.yed{bottom:149.290293pt;}
.y123{bottom:149.628693pt;}
.ydc{bottom:150.730933pt;}
.y6a{bottom:151.418240pt;}
.y9c{bottom:154.715733pt;}
.yae{bottom:156.707733pt;}
.y150{bottom:157.796693pt;}
.y159{bottom:158.566933pt;}
.y180{bottom:158.800853pt;}
.y192{bottom:159.455493pt;}
.y69{bottom:162.136640pt;}
.yec{bottom:164.495893pt;}
.y14b{bottom:164.821013pt;}
.y122{bottom:164.834293pt;}
.y2d{bottom:165.311840pt;}
.ydb{bottom:166.095893pt;}
.y9b{bottom:170.080693pt;}
.yad{bottom:172.072693pt;}
.y68{bottom:172.855040pt;}
.y14f{bottom:173.161653pt;}
.y17f{bottom:174.164853pt;}
.y191{bottom:174.739333pt;}
.yeb{bottom:179.860853pt;}
.y14a{bottom:180.185973pt;}
.y121{bottom:180.199253pt;}
.y2c{bottom:180.517440pt;}
.y67{bottom:183.573440pt;}
.y9a{bottom:185.445653pt;}
.yac{bottom:187.437653pt;}
.y17e{bottom:189.448693pt;}
.y190{bottom:190.103333pt;}
.y66{bottom:194.291840pt;}
.yea{bottom:195.225813pt;}
.y149{bottom:195.550933pt;}
.y120{bottom:195.564213pt;}
.y2b{bottom:195.882400pt;}
.yda{bottom:197.449973pt;}
.y99{bottom:200.810613pt;}
.yab{bottom:202.643253pt;}
.y14e{bottom:204.515733pt;}
.y17d{bottom:204.812693pt;}
.y65{bottom:205.010240pt;}
.y18f{bottom:205.387173pt;}
.y158{bottom:205.764053pt;}
.ye9{bottom:210.590773pt;}
.y11f{bottom:210.929173pt;}
.y2a{bottom:211.247360pt;}
.y64{bottom:215.728640pt;}
.y98{bottom:216.016213pt;}
.yaa{bottom:218.008213pt;}
.y17c{bottom:220.176693pt;}
.y18e{bottom:220.751173pt;}
.y157{bottom:221.129013pt;}
.ye8{bottom:225.955733pt;}
.y148{bottom:226.108213pt;}
.y11e{bottom:226.294133pt;}
.y63{bottom:226.447040pt;}
.y29{bottom:226.612320pt;}
.y97{bottom:231.381173pt;}
.ya9{bottom:233.373173pt;}
.y17b{bottom:235.460533pt;}
.y18d{bottom:236.115173pt;}
.y156{bottom:236.493973pt;}
.y62{bottom:237.165440pt;}
.y11d{bottom:241.659093pt;}
.y28{bottom:241.817920pt;}
.yd9{bottom:244.647093pt;}
.y96{bottom:246.746133pt;}
.y61{bottom:247.883840pt;}
.ya8{bottom:248.738133pt;}
.y17a{bottom:250.824533pt;}
.y18c{bottom:251.399013pt;}
.ye7{bottom:255.875733pt;}
.y27{bottom:257.182880pt;}
.y147{bottom:257.794293pt;}
.y60{bottom:258.602240pt;}
.yd8{bottom:260.012053pt;}
.y95{bottom:262.111093pt;}
.ya7{bottom:263.943733pt;}
.y179{bottom:266.188533pt;}
.y18b{bottom:266.763013pt;}
.y5f{bottom:269.320640pt;}
.y11c{bottom:272.216373pt;}
.y26{bottom:272.547840pt;}
.y146{bottom:273.159253pt;}
.yd7{bottom:275.377013pt;}
.y94{bottom:277.316693pt;}
.ya6{bottom:279.308693pt;}
.y5e{bottom:280.039040pt;}
.y178{bottom:281.472373pt;}
.y14d{bottom:281.795733pt;}
.y18a{bottom:282.127013pt;}
.y25{bottom:287.912800pt;}
.y145{bottom:288.524213pt;}
.yd6{bottom:290.741973pt;}
.y5d{bottom:290.757440pt;}
.y93{bottom:292.681653pt;}
.ya5{bottom:294.673653pt;}
.y177{bottom:296.836373pt;}
.y189{bottom:297.410853pt;}
.y5c{bottom:301.550080pt;}
.y144{bottom:303.729813pt;}
.y11b{bottom:303.902453pt;}
.yd5{bottom:306.106933pt;}
.ya4{bottom:310.038613pt;}
.y176{bottom:312.200373pt;}
.y5b{bottom:312.268480pt;}
.y188{bottom:312.774853pt;}
.y143{bottom:319.094773pt;}
.y24{bottom:319.107520pt;}
.y11a{bottom:319.108053pt;}
.yd4{bottom:321.471893pt;}
.y5a{bottom:323.144640pt;}
.y92{bottom:324.035733pt;}
.ya3{bottom:325.244213pt;}
.y187{bottom:328.138853pt;}
.y59{bottom:333.863040pt;}
.y142{bottom:334.459733pt;}
.yd3{bottom:336.677493pt;}
.ya2{bottom:340.609173pt;}
.y186{bottom:343.422693pt;}
.y175{bottom:343.476133pt;}
.y58{bottom:344.581440pt;}
.y141{bottom:349.824693pt;}
.y119{bottom:350.462133pt;}
.yd2{bottom:352.042453pt;}
.y57{bottom:355.299840pt;}
.ya1{bottom:355.974133pt;}
.y140{bottom:365.189653pt;}
.y118{bottom:365.827093pt;}
.y56{bottom:366.018240pt;}
.y23{bottom:366.464000pt;}
.yd1{bottom:367.407413pt;}
.y55{bottom:376.736640pt;}
.y174{bottom:379.399013pt;}
.y13f{bottom:380.554613pt;}
.y117{bottom:381.192053pt;}
.y22{bottom:381.828960pt;}
.yd0{bottom:382.772373pt;}
.y54{bottom:387.455040pt;}
.y173{bottom:391.635013pt;}
.y91{bottom:391.715733pt;}
.y13e{bottom:395.760213pt;}
.y21{bottom:397.193920pt;}
.ycf{bottom:398.137333pt;}
.y53{bottom:398.173440pt;}
.y90{bottom:401.477333pt;}
.y172{bottom:403.956133pt;}
.y8f{bottom:404.041973pt;}
.y52{bottom:408.891840pt;}
.y13d{bottom:411.125173pt;}
.y20{bottom:412.558880pt;}
.yce{bottom:413.502293pt;}
.y171{bottom:413.636000pt;}
.y8e{bottom:416.198453pt;}
.y170{bottom:416.212613pt;}
.y51{bottom:419.610240pt;}
.y13c{bottom:426.490133pt;}
.y1f{bottom:427.923840pt;}
.y16f{bottom:428.448613pt;}
.y8d{bottom:428.515733pt;}
.y116{bottom:428.548533pt;}
.ycd{bottom:428.707893pt;}
.y50{bottom:430.328640pt;}
.y8c{bottom:438.276000pt;}
.y16e{bottom:440.769733pt;}
.y8b{bottom:440.835733pt;}
.y4f{bottom:441.047040pt;}
.y13b{bottom:441.855093pt;}
.y1e{bottom:443.129440pt;}
.y115{bottom:443.913493pt;}
.ycc{bottom:444.072853pt;}
.y8a{bottom:450.437333pt;}
.y4e{bottom:451.765440pt;}
.y89{bottom:452.993333pt;}
.y16d{bottom:453.005733pt;}
.y13a{bottom:457.220053pt;}
.y1d{bottom:458.494400pt;}
.y114{bottom:459.119093pt;}
.ycb{bottom:459.437813pt;}
.y4d{bottom:462.483840pt;}
.y4c{bottom:473.202240pt;}
.y16c{bottom:473.243013pt;}
.y1c{bottom:473.859360pt;}
.y113{bottom:474.484053pt;}
.yca{bottom:474.802773pt;}
.y4b{bottom:483.920640pt;}
.y16b{bottom:485.564133pt;}
.y88{bottom:485.635733pt;}
.y139{bottom:487.777333pt;}
.y1b{bottom:489.224320pt;}
.y112{bottom:489.849013pt;}
.yc9{bottom:490.167733pt;}
.y4a{bottom:494.639040pt;}
.y87{bottom:495.236000pt;}
.y86{bottom:497.795733pt;}
.y16a{bottom:497.800133pt;}
.y138{bottom:503.142293pt;}
.y1a{bottom:504.589280pt;}
.y111{bottom:505.213973pt;}
.y49{bottom:505.357440pt;}
.yc8{bottom:505.373333pt;}
.y84{bottom:507.557333pt;}
.y169{bottom:510.036133pt;}
.y83{bottom:510.115733pt;}
.y48{bottom:516.075840pt;}
.y19{bottom:519.794880pt;}
.y167{bottom:519.796000pt;}
.y80{bottom:519.876000pt;}
.y110{bottom:520.578933pt;}
.yc7{bottom:520.738293pt;}
.y166{bottom:522.360133pt;}
.y82{bottom:522.435467pt;}
.y7f{bottom:522.439253pt;}
.y47{bottom:526.794240pt;}
.y7e{bottom:534.595733pt;}
.y165{bottom:534.596133pt;}
.y137{bottom:534.828373pt;}
.y18{bottom:535.159840pt;}
.yfd{bottom:535.784533pt;}
.yc6{bottom:536.103253pt;}
.y46{bottom:537.512640pt;}
.y10e{bottom:547.380853pt;}
.y7d{bottom:547.875733pt;}
.y45{bottom:548.231040pt;}
.y136{bottom:550.033973pt;}
.y17{bottom:550.524800pt;}
.yfc{bottom:551.149493pt;}
.yc5{bottom:551.468213pt;}
.y7c{bottom:553.955733pt;}
.y44{bottom:558.949440pt;}
.y10d{bottom:562.745813pt;}
.y7b{bottom:563.235733pt;}
.y135{bottom:565.398933pt;}
.y16{bottom:565.889760pt;}
.yfb{bottom:566.514453pt;}
.yc4{bottom:566.673813pt;}
.y7a{bottom:569.315733pt;}
.y43{bottom:569.667840pt;}
.y10c{bottom:578.110773pt;}
.y79{bottom:578.595733pt;}
.y42{bottom:580.386240pt;}
.y134{bottom:580.763893pt;}
.y15{bottom:581.254720pt;}
.yfa{bottom:581.879413pt;}
.yc3{bottom:582.038773pt;}
.y164{bottom:584.356133pt;}
.y78{bottom:584.675733pt;}
.y41{bottom:591.104640pt;}
.y109{bottom:593.353333pt;}
.y10b{bottom:593.475733pt;}
.y163{bottom:593.723013pt;}
.y77{bottom:593.955733pt;}
.y133{bottom:596.128853pt;}
.y14{bottom:596.619680pt;}
.yf9{bottom:597.244373pt;}
.yc2{bottom:597.403733pt;}
.y10a{bottom:599.555733pt;}
.y76{bottom:600.033173pt;}
.y40{bottom:601.823040pt;}
.y108{bottom:608.558933pt;}
.y132{bottom:611.493813pt;}
.y13{bottom:611.825280pt;}
.y3f{bottom:612.541440pt;}
.yf8{bottom:612.609333pt;}
.yc1{bottom:612.768693pt;}
.y162{bottom:616.996133pt;}
.y74{bottom:617.315733pt;}
.y3e{bottom:623.259840pt;}
.y75{bottom:623.395733pt;}
.y107{bottom:623.923893pt;}
.y131{bottom:626.858773pt;}
.y12{bottom:627.190240pt;}
.yf7{bottom:627.814933pt;}
.yc0{bottom:627.974293pt;}
.y3d{bottom:633.978240pt;}
.y161{bottom:641.952133pt;}
.y130{bottom:642.064373pt;}
.y73{bottom:642.435733pt;}
.y11{bottom:642.555200pt;}
.yf6{bottom:643.179893pt;}
.ybf{bottom:643.339253pt;}
.y3c{bottom:644.696640pt;}
.y106{bottom:655.277973pt;}
.y3b{bottom:655.415040pt;}
.y12f{bottom:657.429333pt;}
.y10{bottom:657.920160pt;}
.yf5{bottom:658.544853pt;}
.ybe{bottom:658.704213pt;}
.y71{bottom:661.796000pt;}
.y3a{bottom:666.133440pt;}
.y160{bottom:666.516133pt;}
.y70{bottom:666.915733pt;}
.y105{bottom:670.642933pt;}
.y12e{bottom:672.794293pt;}
.yf{bottom:673.285120pt;}
.yf4{bottom:673.909813pt;}
.ybd{bottom:674.069173pt;}
.y39{bottom:676.851840pt;}
.y38{bottom:687.570240pt;}
.ye{bottom:688.650080pt;}
.ybc{bottom:689.274773pt;}
.y15f{bottom:696.120133pt;}
.y6f{bottom:696.515733pt;}
.y37{bottom:698.288640pt;}
.y12d{bottom:703.510933pt;}
.yd{bottom:703.855680pt;}
.ybb{bottom:704.639733pt;}
.y36{bottom:709.007040pt;}
.y104{bottom:717.999413pt;}
.yc{bottom:719.220640pt;}
.y35{bottom:719.725440pt;}
.yf3{bottom:719.845333pt;}
.yba{bottom:720.004693pt;}
.y6d{bottom:721.156000pt;}
.y15e{bottom:726.756133pt;}
.y6c{bottom:727.235733pt;}
.y34{bottom:730.443840pt;}
.y103{bottom:733.205013pt;}
.yb{bottom:734.585600pt;}
.ye6{bottom:735.011093pt;}
.y12c{bottom:735.024373pt;}
.yf2{bottom:735.210293pt;}
.yb9{bottom:735.369653pt;}
.y33{bottom:741.162240pt;}
.y102{bottom:749.526133pt;}
.ya{bottom:749.950560pt;}
.ye5{bottom:750.376053pt;}
.y12b{bottom:750.389333pt;}
.yb8{bottom:750.575253pt;}
.y32{bottom:752.038400pt;}
.y31{bottom:762.756800pt;}
.y101{bottom:764.891093pt;}
.y9{bottom:765.315520pt;}
.ye4{bottom:765.741013pt;}
.y12a{bottom:765.754293pt;}
.yb7{bottom:765.940213pt;}
.y30{bottom:773.476800pt;}
.y8{bottom:780.680480pt;}
.ye3{bottom:781.105973pt;}
.y129{bottom:781.119253pt;}
.y100{bottom:781.212213pt;}
.yb6{bottom:781.305173pt;}
.y2f{bottom:784.195200pt;}
.ye2{bottom:796.470933pt;}
.y128{bottom:796.484213pt;}
.yff{bottom:796.577173pt;}
.yb5{bottom:796.670133pt;}
.ye1{bottom:811.676533pt;}
.y127{bottom:811.689813pt;}
.y2e{bottom:811.715840pt;}
.yfe{bottom:811.782773pt;}
.y7{bottom:811.875200pt;}
.yb4{bottom:811.875733pt;}
.y6{bottom:845.892933pt;}
.y5{bottom:855.226267pt;}
.yb3{bottom:859.195733pt;}
.y4{bottom:873.892933pt;}
.y3{bottom:883.226267pt;}
.y2{bottom:892.559600pt;}
.h1d{height:12.080000pt;}
.h13{height:12.160000pt;}
.h12{height:12.161333pt;}
.hf{height:23.996250pt;}
.hd{height:24.160000pt;}
.h4{height:28.000000pt;}
.h3{height:28.448000pt;}
.h17{height:29.773125pt;}
.hb{height:30.080000pt;}
.he{height:30.324375pt;}
.h9{height:31.030000pt;}
.h7{height:32.570625pt;}
.h10{height:36.883125pt;}
.h1b{height:37.105312pt;}
.h8{height:37.332975pt;}
.h1c{height:37.343906pt;}
.h11{height:37.624687pt;}
.h14{height:38.608000pt;}
.h15{height:42.117188pt;}
.h2{height:44.457031pt;}
.h6{height:46.609688pt;}
.h1a{height:46.890469pt;}
.hc{height:74.687812pt;}
.h19{height:74.968594pt;}
.h18{height:93.500156pt;}
.ha{height:93.780937pt;}
.h5{height:929.794667pt;}
.h16{height:929.796000pt;}
.h0{height:929.828000pt;}
.h1{height:930.000000pt;}
.we{width:-532.674667pt;}
.wf{width:-434.674667pt;}
.w2{width:0.101333pt;}
.w8{width:16.960000pt;}
.wb{width:39.498667pt;}
.wc{width:39.568000pt;}
.wd{width:39.645333pt;}
.w7{width:51.678667pt;}
.w9{width:57.600000pt;}
.wa{width:77.598667pt;}
.w3{width:93.760000pt;}
.w6{width:136.960000pt;}
.w4{width:185.280000pt;}
.w5{width:472.480000pt;}
.w0{width:714.394667pt;}
.w1{width:714.666667pt;}
.x3{left:-653.818667pt;}
.x4{left:-646.288907pt;}
.x32{left:-638.729046pt;}
.x3c{left:-631.200185pt;}
.x3d{left:-630.085348pt;}
.x5{left:-622.438027pt;}
.x6{left:-343.903307pt;}
.x33{left:-328.817687pt;}
.x3e{left:-320.160718pt;}
.x3f{left:-296.165183pt;}
.x0{left:0.000000pt;}
.x7{left:60.405333pt;}
.x25{left:75.601621pt;}
.x2{left:83.181600pt;}
.x39{left:84.245319pt;}
.x29{left:99.840133pt;}
.x40{left:101.280133pt;}
.x41{left:106.880133pt;}
.x2a{left:115.036421pt;}
.x46{left:119.920000pt;}
.xc{left:165.685333pt;}
.x18{left:178.805333pt;}
.x19{left:183.125333pt;}
.x1d{left:185.365333pt;}
.x48{left:217.920000pt;}
.xd{left:227.125333pt;}
.xe{left:235.765333pt;}
.x16{left:255.446990pt;}
.x17{left:259.765333pt;}
.x1a{left:264.565333pt;}
.x9{left:272.725333pt;}
.x43{left:290.720133pt;}
.x1b{left:294.485333pt;}
.x1c{left:298.805333pt;}
.xf{left:300.085333pt;}
.x10{left:304.405333pt;}
.xb{left:315.605333pt;}
.x42{left:328.404693pt;}
.x44{left:334.240133pt;}
.x26{left:370.329964pt;}
.x11{left:372.405333pt;}
.x12{left:376.725333pt;}
.x27{left:385.526251pt;}
.x35{left:393.011584pt;}
.x3a{left:394.169949pt;}
.x34{left:400.536732pt;}
.x2c{left:409.738220pt;}
.x1e{left:410.965733pt;}
.x3b{left:418.165484pt;}
.x2b{left:424.934507pt;}
.x2e{left:432.446384pt;}
.x2d{left:439.971532pt;}
.x13{left:446.645333pt;}
.x14{left:450.965333pt;}
.x1f{left:452.320400pt;}
.xa{left:472.565333pt;}
.x36{left:482.485333pt;}
.x37{left:486.805333pt;}
.x20{left:520.885333pt;}
.x2f{left:521.920133pt;}
.x30{left:526.240133pt;}
.x15{left:547.925333pt;}
.x8{left:564.085333pt;}
.x38{left:570.823200pt;}
.x24{left:580.245333pt;}
.x23{left:600.245333pt;}
.x21{left:606.165333pt;}
.x1{left:628.556933pt;}
.x31{left:629.890267pt;}
.x22{left:640.885333pt;}
.x28{left:674.896000pt;}
.x47{left:1149.069333pt;}
.x45{left:1247.069333pt;}
}




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