
    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_9a7ce8b5d24afe12ed60e956.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_a1e6f61b3484855b55cca029.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fe3e64474476dc76fedddb2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_027c786d0f780d47fa57109c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_d9e90674ca93af7037ab83b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_c889ca5182f4f2f7806c0efb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_310872c997723c1760776a5e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_e750f1b2c992521616f50cbd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7750301bacb56ec62719afcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_a95f53e16c3739c70380b17c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2d50698d61dd242e85ff6744.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.073242;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_40f8760e6d76dadbbb33c2f0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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_21bffdaa9c1da6b59175051d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.811523;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_e6b3d5cc7f5d8a303c135f41.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cdef4307ccbf0b1727066650.woff2')format("woff");}.fff{font-family:fff;line-height:1.086914;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.200000px;}
.v3{vertical-align:-13.775400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:19.255200px;}
.ls5e{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.330000px;}
.ls44{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.198000px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls4c{letter-spacing:0.007200px;}
.ls4a{letter-spacing:0.007800px;}
.ls39{letter-spacing:0.009000px;}
.ls3e{letter-spacing:0.009600px;}
.ls3d{letter-spacing:0.010200px;}
.ls5a{letter-spacing:0.028200px;}
.ls59{letter-spacing:0.057000px;}
.ls2c{letter-spacing:0.060000px;}
.ls2d{letter-spacing:0.063000px;}
.ls11{letter-spacing:0.066000px;}
.ls2b{letter-spacing:0.072600px;}
.ls2e{letter-spacing:0.081000px;}
.ls46{letter-spacing:0.100800px;}
.ls48{letter-spacing:0.101400px;}
.ls47{letter-spacing:0.111000px;}
.ls49{letter-spacing:0.118800px;}
.ls36{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.132000px;}
.ls55{letter-spacing:0.139500px;}
.ls37{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.146400px;}
.ls35{letter-spacing:0.153600px;}
.ls54{letter-spacing:0.156600px;}
.ls56{letter-spacing:0.157200px;}
.ls51{letter-spacing:0.166500px;}
.ls5{letter-spacing:0.168000px;}
.ls50{letter-spacing:0.168600px;}
.ls5f{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.198000px;}
.ls30{letter-spacing:0.240000px;}
.ls2f{letter-spacing:0.250200px;}
.ls31{letter-spacing:0.261000px;}
.lsf{letter-spacing:0.264000px;}
.ls60{letter-spacing:0.282000px;}
.ls63{letter-spacing:0.283500px;}
.ls62{letter-spacing:0.291000px;}
.ls61{letter-spacing:0.299400px;}
.ls29{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.336000px;}
.ls4b{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.ls1f{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.420000px;}
.ls25{letter-spacing:0.429000px;}
.ls19{letter-spacing:0.462000px;}
.ls4e{letter-spacing:0.468000px;}
.ls4d{letter-spacing:0.469800px;}
.ls3c{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.600000px;}
.ls58{letter-spacing:0.621600px;}
.ls17{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.661200px;}
.ls13{letter-spacing:0.726000px;}
.ls41{letter-spacing:0.780000px;}
.ls1d{letter-spacing:0.792000px;}
.ls40{letter-spacing:0.810000px;}
.ls3f{letter-spacing:0.814800px;}
.ls65{letter-spacing:0.840000px;}
.ls1c{letter-spacing:0.858000px;}
.ls4f{letter-spacing:0.900000px;}
.ls53{letter-spacing:0.901800px;}
.ls52{letter-spacing:0.903600px;}
.ls67{letter-spacing:0.916800px;}
.lsb{letter-spacing:0.924000px;}
.ls1{letter-spacing:0.966000px;}
.ls1b{letter-spacing:0.990000px;}
.ls6c{letter-spacing:1.020000px;}
.ls6a{letter-spacing:1.030800px;}
.ls6b{letter-spacing:1.032000px;}
.ls6d{letter-spacing:1.041600px;}
.lse{letter-spacing:1.056000px;}
.ls20{letter-spacing:1.122000px;}
.ls64{letter-spacing:1.140000px;}
.ls1e{letter-spacing:1.188000px;}
.ls5b{letter-spacing:1.189200px;}
.ls2{letter-spacing:1.197000px;}
.ls5d{letter-spacing:1.200000px;}
.ls32{letter-spacing:1.218600px;}
.ls34{letter-spacing:1.227600px;}
.ls16{letter-spacing:1.254000px;}
.ls43{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.320000px;}
.ls27{letter-spacing:1.386000px;}
.ls68{letter-spacing:1.447800px;}
.ls28{letter-spacing:1.452000px;}
.ls2a{letter-spacing:1.518000px;}
.ls26{letter-spacing:1.584000px;}
.ls24{letter-spacing:1.650000px;}
.ls69{letter-spacing:1.680000px;}
.ls22{letter-spacing:1.716000px;}
.ls66{letter-spacing:2.040000px;}
.ls23{letter-spacing:2.046000px;}
.ls3a{letter-spacing:2.494200px;}
.ls3b{letter-spacing:2.494800px;}
.ls45{letter-spacing:5.952000px;}
.ls42{letter-spacing:8.451000px;}
.ls5c{letter-spacing:8.680200px;}
.ls33{letter-spacing:8.727600px;}
.ls3{letter-spacing:12.510000px;}
.lsa{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.wsc3{word-spacing:-16.680000px;}
.ws39{word-spacing:-16.500000px;}
.wsb4{word-spacing:-15.840000px;}
.ws80{word-spacing:-15.480000px;}
.wsc4{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.000000px;}
.wsa9{word-spacing:-12.438000px;}
.wsa7{word-spacing:-12.150000px;}
.ws81{word-spacing:-12.060000px;}
.ws96{word-spacing:-11.718000px;}
.wsb3{word-spacing:-11.533500px;}
.wsa6{word-spacing:-11.416500px;}
.ws7f{word-spacing:-11.394000px;}
.wsa8{word-spacing:-11.389500px;}
.ws7a{word-spacing:-11.331000px;}
.ws79{word-spacing:-11.250000px;}
.ws5e{word-spacing:-10.725000px;}
.ws0{word-spacing:-10.521000px;}
.ws1{word-spacing:-9.750000px;}
.ws9{word-spacing:-9.324000px;}
.ws3{word-spacing:-8.775000px;}
.ws4{word-spacing:-7.875000px;}
.wsc0{word-spacing:-2.040000px;}
.wsc5{word-spacing:-1.200000px;}
.wsb6{word-spacing:-0.840000px;}
.ws90{word-spacing:-0.780000px;}
.wsc2{word-spacing:-0.660000px;}
.ws8e{word-spacing:-0.600000px;}
.wsbb{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.429000px;}
.wsca{word-spacing:-0.420000px;}
.wsa1{word-spacing:-0.360000px;}
.ws43{word-spacing:-0.330000px;}
.wsbc{word-spacing:-0.240000px;}
.wsb7{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.168000px;}
.ws5{word-spacing:0.000000px;}
.ws26{word-spacing:0.132000px;}
.wsce{word-spacing:0.180000px;}
.ws2f{word-spacing:0.198000px;}
.wsd{word-spacing:0.210000px;}
.wsb9{word-spacing:0.300000px;}
.ws35{word-spacing:0.330000px;}
.ws13{word-spacing:0.336000px;}
.wsb2{word-spacing:0.420000px;}
.ws16{word-spacing:0.462000px;}
.ws8b{word-spacing:0.480000px;}
.ws78{word-spacing:0.528000px;}
.ws12{word-spacing:0.588000px;}
.ws6f{word-spacing:0.594000px;}
.ws88{word-spacing:0.600000px;}
.ws50{word-spacing:0.660000px;}
.ws3b{word-spacing:0.726000px;}
.ws98{word-spacing:0.780000px;}
.ws3c{word-spacing:0.792000px;}
.ws3d{word-spacing:0.858000px;}
.ws1a{word-spacing:0.924000px;}
.ws17{word-spacing:0.966000px;}
.ws61{word-spacing:0.990000px;}
.wsaf{word-spacing:1.020000px;}
.ws14{word-spacing:1.050000px;}
.ws47{word-spacing:1.056000px;}
.ws11{word-spacing:1.092000px;}
.ws53{word-spacing:1.122000px;}
.ws2e{word-spacing:1.188000px;}
.wsb8{word-spacing:1.200000px;}
.ws5c{word-spacing:1.254000px;}
.ws4d{word-spacing:1.320000px;}
.ws55{word-spacing:1.386000px;}
.ws18{word-spacing:1.428000px;}
.ws82{word-spacing:1.440000px;}
.ws51{word-spacing:1.452000px;}
.ws32{word-spacing:1.518000px;}
.wsc7{word-spacing:1.560000px;}
.ws56{word-spacing:1.584000px;}
.wsc8{word-spacing:1.620000px;}
.ws7d{word-spacing:1.650000px;}
.ws89{word-spacing:1.680000px;}
.ws7b{word-spacing:1.716000px;}
.wsc9{word-spacing:1.740000px;}
.ws86{word-spacing:1.800000px;}
.ws92{word-spacing:1.920000px;}
.ws4b{word-spacing:1.980000px;}
.ws33{word-spacing:2.046000px;}
.wse{word-spacing:2.058000px;}
.ws19{word-spacing:2.100000px;}
.ws38{word-spacing:2.112000px;}
.ws8f{word-spacing:2.160000px;}
.ws85{word-spacing:2.220000px;}
.ws1f{word-spacing:2.244000px;}
.ws52{word-spacing:2.310000px;}
.wsab{word-spacing:2.460000px;}
.ws1e{word-spacing:2.508000px;}
.ws8c{word-spacing:2.520000px;}
.ws87{word-spacing:2.640000px;}
.ws2a{word-spacing:2.706000px;}
.ws73{word-spacing:2.772000px;}
.wsa2{word-spacing:2.820000px;}
.ws2b{word-spacing:2.838000px;}
.ws8d{word-spacing:2.880000px;}
.ws94{word-spacing:2.940000px;}
.ws57{word-spacing:2.970000px;}
.wscc{word-spacing:3.000000px;}
.wsf{word-spacing:3.024000px;}
.ws37{word-spacing:3.036000px;}
.wsbf{word-spacing:3.060000px;}
.ws93{word-spacing:3.120000px;}
.ws45{word-spacing:3.168000px;}
.wsa4{word-spacing:3.180000px;}
.ws54{word-spacing:3.300000px;}
.ws36{word-spacing:3.366000px;}
.ws6c{word-spacing:3.432000px;}
.ws64{word-spacing:3.564000px;}
.wsc{word-spacing:3.612000px;}
.ws24{word-spacing:3.630000px;}
.ws95{word-spacing:3.660000px;}
.ws3e{word-spacing:3.696000px;}
.wsb1{word-spacing:3.720000px;}
.ws28{word-spacing:3.828000px;}
.ws22{word-spacing:3.894000px;}
.wsad{word-spacing:3.960000px;}
.ws76{word-spacing:4.026000px;}
.wscd{word-spacing:4.080000px;}
.ws5d{word-spacing:4.092000px;}
.wsbd{word-spacing:4.140000px;}
.ws15{word-spacing:4.158000px;}
.wsa5{word-spacing:4.200000px;}
.ws72{word-spacing:4.224000px;}
.ws9a{word-spacing:4.260000px;}
.wscb{word-spacing:4.380000px;}
.ws9f{word-spacing:4.440000px;}
.ws40{word-spacing:4.488000px;}
.ws99{word-spacing:4.500000px;}
.ws9e{word-spacing:4.560000px;}
.ws5a{word-spacing:4.620000px;}
.ws8{word-spacing:4.662000px;}
.ws30{word-spacing:4.686000px;}
.ws9c{word-spacing:4.740000px;}
.ws1d{word-spacing:4.752000px;}
.ws10{word-spacing:4.830000px;}
.wsc6{word-spacing:4.860000px;}
.ws48{word-spacing:4.950000px;}
.ws83{word-spacing:4.980000px;}
.ws21{word-spacing:5.016000px;}
.ws4f{word-spacing:5.082000px;}
.ws3f{word-spacing:5.148000px;}
.wsb0{word-spacing:5.160000px;}
.ws49{word-spacing:5.214000px;}
.wsb{word-spacing:5.250000px;}
.wsa0{word-spacing:5.400000px;}
.ws69{word-spacing:5.412000px;}
.ws74{word-spacing:5.460000px;}
.ws58{word-spacing:5.478000px;}
.ws75{word-spacing:5.544000px;}
.wsbe{word-spacing:5.580000px;}
.wsac{word-spacing:5.640000px;}
.ws25{word-spacing:5.676000px;}
.ws84{word-spacing:5.760000px;}
.ws27{word-spacing:5.808000px;}
.ws70{word-spacing:5.874000px;}
.ws31{word-spacing:5.940000px;}
.ws9b{word-spacing:6.060000px;}
.ws6e{word-spacing:6.072000px;}
.wsba{word-spacing:6.120000px;}
.ws46{word-spacing:6.138000px;}
.ws91{word-spacing:6.180000px;}
.ws20{word-spacing:6.204000px;}
.ws7c{word-spacing:6.270000px;}
.ws5f{word-spacing:6.336000px;}
.ws9d{word-spacing:6.360000px;}
.ws66{word-spacing:6.402000px;}
.wsa3{word-spacing:6.420000px;}
.ws60{word-spacing:6.468000px;}
.ws2c{word-spacing:6.534000px;}
.ws67{word-spacing:6.600000px;}
.wsae{word-spacing:6.660000px;}
.ws4a{word-spacing:6.666000px;}
.ws6d{word-spacing:6.732000px;}
.ws2d{word-spacing:6.798000px;}
.ws62{word-spacing:6.864000px;}
.ws3a{word-spacing:6.930000px;}
.wsb5{word-spacing:6.960000px;}
.wsaa{word-spacing:7.020000px;}
.ws63{word-spacing:7.062000px;}
.ws8a{word-spacing:7.080000px;}
.ws42{word-spacing:7.128000px;}
.ws71{word-spacing:7.194000px;}
.wsc1{word-spacing:7.200000px;}
.ws1c{word-spacing:7.260000px;}
.ws23{word-spacing:7.326000px;}
.ws68{word-spacing:7.392000px;}
.ws97{word-spacing:7.440000px;}
.ws34{word-spacing:7.458000px;}
.ws44{word-spacing:7.500000px;}
.ws41{word-spacing:7.524000px;}
.ws4e{word-spacing:7.656000px;}
.ws5b{word-spacing:7.722000px;}
.ws4c{word-spacing:7.788000px;}
.ws59{word-spacing:7.854000px;}
.ws77{word-spacing:7.920000px;}
.ws65{word-spacing:8.052000px;}
.ws6b{word-spacing:8.118000px;}
.ws29{word-spacing:8.184000px;}
.ws1b{word-spacing:8.250000px;}
.ws7{word-spacing:10.656000px;}
.ws6{word-spacing:13.344000px;}
.ws7e{word-spacing:15.000000px;}
._15{margin-left:-27.324000px;}
._9{margin-left:-25.740000px;}
._8{margin-left:-24.684000px;}
._f{margin-left:-23.562000px;}
._10{margin-left:-21.714000px;}
._16{margin-left:-20.262000px;}
._e{margin-left:-17.952000px;}
._c{margin-left:-16.500000px;}
._4{margin-left:-15.191400px;}
._0{margin-left:-13.348800px;}
._12{margin-left:-2.494800px;}
._3{margin-left:-1.209600px;}
._18{width:1.012500px;}
._1a{width:2.154300px;}
._1c{width:3.229800px;}
._2{width:4.620000px;}
._7{width:5.855053px;}
._1{width:7.014000px;}
._19{width:8.166600px;}
._6{width:9.324000px;}
._5{width:11.676000px;}
._13{width:13.221600px;}
._17{width:14.607000px;}
._11{width:16.543200px;}
._14{width:21.516000px;}
._1b{width:29.639400px;}
._1d{width:31.959000px;}
._d{width:37.140000px;}
._a{width:45.000000px;}
._b{width:1157.565600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.000000px;}
.fsc{font-size:31.500000px;}
.fsa{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs10{font-size:42.900000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fse{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fsf{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y39{bottom:85.039500px;}
.y10{bottom:119.053650px;}
.y56{bottom:119.562600px;}
.y87{bottom:119.917500px;}
.ycd{bottom:120.871500px;}
.yf8{bottom:120.910650px;}
.ye2{bottom:120.925650px;}
.y7e{bottom:121.036500px;}
.yaa{bottom:121.069500px;}
.y170{bottom:121.162650px;}
.y132{bottom:122.838150px;}
.yf{bottom:131.055150px;}
.y86{bottom:137.506500px;}
.ycc{bottom:138.460500px;}
.yf7{bottom:138.499650px;}
.y117{bottom:138.510000px;}
.ye1{bottom:138.514650px;}
.y7d{bottom:138.625500px;}
.ya9{bottom:138.658500px;}
.y16f{bottom:138.969150px;}
.y1a5{bottom:138.973650px;}
.y18e{bottom:138.978150px;}
.y131{bottom:140.427150px;}
.ye{bottom:149.432400px;}
.y85{bottom:155.095500px;}
.ycb{bottom:156.049500px;}
.yf6{bottom:156.088650px;}
.y116{bottom:156.099000px;}
.ye0{bottom:156.103650px;}
.ya8{bottom:156.247500px;}
.y18d{bottom:156.784650px;}
.y16e{bottom:156.789150px;}
.y1a4{bottom:156.793650px;}
.y144{bottom:156.804300px;}
.y7c{bottom:165.025500px;}
.yd{bottom:167.807400px;}
.y84{bottom:172.684500px;}
.yca{bottom:173.638500px;}
.yf5{bottom:173.677650px;}
.y115{bottom:173.688000px;}
.ya7{bottom:173.836500px;}
.y1a3{bottom:174.595650px;}
.y18c{bottom:174.604650px;}
.y16d{bottom:174.609150px;}
.y143{bottom:174.624300px;}
.y130{bottom:175.324650px;}
.ydf{bottom:182.503650px;}
.y7b{bottom:182.614500px;}
.yc{bottom:184.061400px;}
.y83{bottom:190.273500px;}
.yc9{bottom:191.227500px;}
.y114{bottom:191.277000px;}
.y1ac{bottom:192.411150px;}
.y16c{bottom:192.415650px;}
.y18b{bottom:192.424650px;}
.y142{bottom:192.444300px;}
.y12f{bottom:192.913650px;}
.yb{bottom:195.243900px;}
.yf4{bottom:200.077650px;}
.yde{bottom:200.092650px;}
.y7a{bottom:200.203500px;}
.ya6{bottom:200.236500px;}
.ya{bottom:206.426400px;}
.y113{bottom:208.866000px;}
.y18a{bottom:210.231150px;}
.y16b{bottom:210.235650px;}
.y12e{bottom:210.502650px;}
.yf3{bottom:217.666650px;}
.ydd{bottom:217.681650px;}
.y79{bottom:217.792500px;}
.ya5{bottom:217.825500px;}
.yc8{bottom:219.871500px;}
.y9{bottom:223.982400px;}
.y112{bottom:226.455000px;}
.y141{bottom:228.039000px;}
.y189{bottom:228.051150px;}
.y16a{bottom:228.055650px;}
.y12d{bottom:228.091650px;}
.y8{bottom:235.164900px;}
.yf2{bottom:235.255650px;}
.ydc{bottom:235.270650px;}
.y78{bottom:235.381500px;}
.ya4{bottom:235.414500px;}
.yc7{bottom:237.460500px;}
.y82{bottom:243.056250px;}
.y111{bottom:244.044000px;}
.y12c{bottom:245.680650px;}
.y169{bottom:245.862150px;}
.y188{bottom:245.871150px;}
.yf1{bottom:252.844650px;}
.ydb{bottom:252.859650px;}
.y77{bottom:252.970500px;}
.yc6{bottom:255.049500px;}
.y81{bottom:259.046250px;}
.y110{bottom:261.633000px;}
.ya3{bottom:261.814500px;}
.y12b{bottom:263.269650px;}
.y187{bottom:263.677650px;}
.y168{bottom:263.682150px;}
.yf0{bottom:270.433650px;}
.yda{bottom:270.448650px;}
.y76{bottom:270.559500px;}
.y38{bottom:271.161450px;}
.yc5{bottom:272.638500px;}
.y10f{bottom:279.222000px;}
.ya2{bottom:279.403500px;}
.y12a{bottom:280.858650px;}
.y186{bottom:281.497650px;}
.y167{bottom:281.502150px;}
.y37{bottom:286.606950px;}
.yef{bottom:288.022650px;}
.yd9{bottom:288.037650px;}
.y75{bottom:288.148500px;}
.yc4{bottom:290.227500px;}
.y10e{bottom:296.811000px;}
.ya1{bottom:296.992500px;}
.y36{bottom:297.805950px;}
.y129{bottom:298.447650px;}
.y166{bottom:299.313150px;}
.y185{bottom:299.317650px;}
.yd8{bottom:305.626650px;}
.y74{bottom:305.737500px;}
.yc3{bottom:307.816500px;}
.y35{bottom:308.998950px;}
.y10d{bottom:314.400000px;}
.yee{bottom:314.422650px;}
.ya0{bottom:314.581500px;}
.y128{bottom:316.036650px;}
.y1ab{bottom:317.119650px;}
.y184{bottom:317.124150px;}
.y1b7{bottom:317.128650px;}
.y165{bottom:317.133150px;}
.y34{bottom:320.194950px;}
.yd7{bottom:323.215650px;}
.y73{bottom:323.326500px;}
.yc2{bottom:325.405500px;}
.y33{bottom:331.405950px;}
.yed{bottom:332.011650px;}
.y9f{bottom:332.170500px;}
.y127{bottom:333.625650px;}
.y164{bottom:334.939650px;}
.y183{bottom:334.944150px;}
.y1a2{bottom:334.948650px;}
.y10c{bottom:340.800000px;}
.yd6{bottom:340.804650px;}
.y72{bottom:340.915500px;}
.y140{bottom:340.932000px;}
.y32{bottom:342.598950px;}
.yc1{bottom:342.994500px;}
.yec{bottom:349.600650px;}
.y9e{bottom:349.759500px;}
.y126{bottom:351.214650px;}
.y1a1{bottom:352.755300px;}
.y163{bottom:352.759650px;}
.y182{bottom:352.764150px;}
.y1b6{bottom:352.768650px;}
.y31{bottom:353.791950px;}
.y10b{bottom:358.389000px;}
.yd5{bottom:358.393650px;}
.yc0{bottom:360.583500px;}
.y30{bottom:364.984950px;}
.yeb{bottom:367.189650px;}
.y71{bottom:367.315500px;}
.y9d{bottom:367.348500px;}
.y125{bottom:368.803650px;}
.y181{bottom:370.575300px;}
.y162{bottom:370.579650px;}
.y10a{bottom:375.978000px;}
.yd4{bottom:375.982650px;}
.y2f{bottom:376.177950px;}
.ybf{bottom:378.172500px;}
.yea{bottom:384.778650px;}
.y70{bottom:384.904500px;}
.y9c{bottom:384.937500px;}
.y124{bottom:386.392650px;}
.y2e{bottom:387.370950px;}
.y161{bottom:388.390650px;}
.y180{bottom:388.395300px;}
.y1aa{bottom:388.399650px;}
.y109{bottom:393.567000px;}
.yd3{bottom:393.571650px;}
.y13f{bottom:393.715500px;}
.ybe{bottom:395.761500px;}
.y2d{bottom:398.585850px;}
.ye9{bottom:402.367650px;}
.y6f{bottom:402.493500px;}
.y9b{bottom:402.526500px;}
.y123{bottom:403.981650px;}
.y1b5{bottom:406.197150px;}
.y1a0{bottom:406.201650px;}
.y17f{bottom:406.206150px;}
.y160{bottom:406.210650px;}
.y2c{bottom:409.778850px;}
.y108{bottom:411.156000px;}
.yd2{bottom:411.160650px;}
.y13e{bottom:411.304500px;}
.ybd{bottom:413.350500px;}
.ye8{bottom:419.956650px;}
.y6e{bottom:420.082500px;}
.y55{bottom:420.099000px;}
.y9a{bottom:420.115500px;}
.y122{bottom:421.570650px;}
.y15f{bottom:424.017150px;}
.y19f{bottom:424.021650px;}
.y17e{bottom:424.026150px;}
.y107{bottom:428.745000px;}
.yd1{bottom:428.749650px;}
.y13d{bottom:428.893500px;}
.ybc{bottom:430.939500px;}
.y2b{bottom:433.729350px;}
.ye7{bottom:437.545650px;}
.y6d{bottom:437.671500px;}
.y54{bottom:437.688000px;}
.y99{bottom:437.704500px;}
.y121{bottom:439.159650px;}
.y17d{bottom:441.832650px;}
.y15e{bottom:441.837150px;}
.y19e{bottom:441.841650px;}
.y106{bottom:446.334000px;}
.yd0{bottom:446.338650px;}
.y13c{bottom:446.482500px;}
.ybb{bottom:448.528500px;}
.y2a{bottom:449.174850px;}
.ye6{bottom:455.134650px;}
.y6c{bottom:455.260500px;}
.y53{bottom:455.277000px;}
.y98{bottom:455.293500px;}
.y19d{bottom:459.648150px;}
.y17c{bottom:459.652650px;}
.y15d{bottom:459.657150px;}
.y29{bottom:460.367850px;}
.y105{bottom:463.923000px;}
.ycf{bottom:463.927650px;}
.y13b{bottom:464.071500px;}
.yba{bottom:466.117500px;}
.y28{bottom:471.560850px;}
.ye5{bottom:472.746300px;}
.y6b{bottom:472.849500px;}
.y52{bottom:472.866000px;}
.y97{bottom:472.882500px;}
.y120{bottom:474.354150px;}
.y15c{bottom:477.459150px;}
.y19c{bottom:477.468150px;}
.y17b{bottom:477.472650px;}
.y104{bottom:481.512000px;}
.y13a{bottom:481.660500px;}
.y27{bottom:482.753850px;}
.yb9{bottom:483.706500px;}
.yce{bottom:490.327650px;}
.ye4{bottom:490.335300px;}
.y6a{bottom:490.438500px;}
.y51{bottom:490.455000px;}
.y96{bottom:490.471500px;}
.y11f{bottom:491.943150px;}
.y26{bottom:493.946850px;}
.y15b{bottom:495.279150px;}
.y19b{bottom:495.288150px;}
.y103{bottom:499.101000px;}
.y139{bottom:499.249500px;}
.y25{bottom:505.142850px;}
.ye3{bottom:507.924300px;}
.y69{bottom:508.027500px;}
.y50{bottom:508.044000px;}
.y95{bottom:508.060500px;}
.y11e{bottom:509.532150px;}
.yb8{bottom:512.350500px;}
.y19a{bottom:513.090150px;}
.y15a{bottom:513.099150px;}
.y24{bottom:516.344850px;}
.y102{bottom:516.690000px;}
.y138{bottom:516.838500px;}
.y68{bottom:525.616500px;}
.y4f{bottom:525.633000px;}
.y94{bottom:525.649500px;}
.y11d{bottom:527.121150px;}
.y23{bottom:527.537850px;}
.yb7{bottom:529.939500px;}
.y199{bottom:530.910150px;}
.y159{bottom:530.919150px;}
.y101{bottom:534.279000px;}
.y137{bottom:534.427500px;}
.y22{bottom:538.730850px;}
.y80{bottom:543.205500px;}
.y4e{bottom:543.222000px;}
.y93{bottom:543.238500px;}
.y11c{bottom:544.710150px;}
.yb6{bottom:547.528500px;}
.y158{bottom:548.721150px;}
.y17a{bottom:548.730150px;}
.y21{bottom:549.926850px;}
.y100{bottom:551.868000px;}
.y4d{bottom:560.811000px;}
.y92{bottom:560.827500px;}
.y20{bottom:561.122850px;}
.y11b{bottom:562.299150px;}
.yb5{bottom:565.117500px;}
.y157{bottom:566.541150px;}
.y179{bottom:566.550150px;}
.y136{bottom:569.622000px;}
.y1f{bottom:572.318850px;}
.yff{bottom:578.268000px;}
.y4c{bottom:578.400000px;}
.y91{bottom:578.416500px;}
.y198{bottom:584.356650px;}
.y156{bottom:584.361150px;}
.yb4{bottom:593.761500px;}
.yfe{bottom:595.857000px;}
.y4b{bottom:595.989000px;}
.y90{bottom:596.005500px;}
.y197{bottom:602.176650px;}
.y155{bottom:602.181150px;}
.y11a{bottom:609.946650px;}
.yb3{bottom:611.350500px;}
.yfd{bottom:613.446000px;}
.y4a{bottom:613.578000px;}
.y67{bottom:613.594500px;}
.y1b4{bottom:619.983150px;}
.y154{bottom:619.987650px;}
.y196{bottom:619.996650px;}
.y135{bottom:622.405500px;}
.y119{bottom:625.936650px;}
.yb2{bottom:628.939500px;}
.y1e{bottom:630.084600px;}
.yfc{bottom:631.035000px;}
.y49{bottom:631.167000px;}
.y66{bottom:631.183500px;}
.y1b3{bottom:637.803150px;}
.y153{bottom:637.807650px;}
.y195{bottom:637.812150px;}
.y134{bottom:639.994500px;}
.y118{bottom:641.926650px;}
.y1d{bottom:642.024600px;}
.yb1{bottom:646.528500px;}
.yfb{bottom:648.624000px;}
.y48{bottom:648.756000px;}
.y65{bottom:648.772500px;}
.y194{bottom:655.618650px;}
.y1b2{bottom:655.623150px;}
.y152{bottom:655.627650px;}
.y133{bottom:657.583500px;}
.y1c{bottom:662.058600px;}
.yb0{bottom:664.117500px;}
.yfa{bottom:666.213000px;}
.y47{bottom:666.345000px;}
.y64{bottom:666.361500px;}
.y178{bottom:673.438650px;}
.y1b1{bottom:673.443150px;}
.y151{bottom:673.447650px;}
.y1b{bottom:673.998600px;}
.y7f{bottom:675.172500px;}
.yaf{bottom:681.706500px;}
.y8f{bottom:683.950500px;}
.y1b0{bottom:691.249650px;}
.y150{bottom:691.254150px;}
.y177{bottom:691.258650px;}
.y46{bottom:692.745000px;}
.y63{bottom:692.761500px;}
.y1a{bottom:694.032600px;}
.yae{bottom:699.295500px;}
.yf9{bottom:701.407500px;}
.y8e{bottom:701.539500px;}
.y19{bottom:705.972600px;}
.y176{bottom:709.065150px;}
.y1af{bottom:709.069650px;}
.y14f{bottom:709.074150px;}
.y45{bottom:710.334000px;}
.y62{bottom:710.350500px;}
.yad{bottom:716.884500px;}
.y8d{bottom:719.128500px;}
.y18{bottom:726.006600px;}
.y193{bottom:726.880650px;}
.y14e{bottom:726.885150px;}
.y1ae{bottom:726.889650px;}
.y44{bottom:727.923000px;}
.y61{bottom:727.939500px;}
.yac{bottom:734.473500px;}
.y8c{bottom:736.717500px;}
.y17{bottom:737.946600px;}
.y1ad{bottom:744.696150px;}
.y192{bottom:744.700650px;}
.y14d{bottom:744.705150px;}
.y43{bottom:745.512000px;}
.y60{bottom:745.528500px;}
.yab{bottom:752.062500px;}
.y8b{bottom:754.306500px;}
.y16{bottom:757.980600px;}
.y175{bottom:762.502650px;}
.y1a9{bottom:762.511650px;}
.y14c{bottom:762.516150px;}
.y191{bottom:762.520650px;}
.y42{bottom:763.101000px;}
.y5f{bottom:763.117500px;}
.y8a{bottom:771.895500px;}
.y15{bottom:778.716450px;}
.y174{bottom:780.322650px;}
.y190{bottom:780.327300px;}
.y1a8{bottom:780.331650px;}
.y14b{bottom:780.336150px;}
.y41{bottom:780.690000px;}
.y5e{bottom:780.706500px;}
.y89{bottom:789.484500px;}
.y14{bottom:796.311450px;}
.y173{bottom:798.142650px;}
.y14a{bottom:798.147300px;}
.y1a7{bottom:798.151650px;}
.y40{bottom:798.279000px;}
.y5d{bottom:798.295500px;}
.y88{bottom:807.073500px;}
.y3f{bottom:815.868000px;}
.y5c{bottom:815.884500px;}
.y1a6{bottom:815.953650px;}
.y172{bottom:815.962650px;}
.y149{bottom:815.967300px;}
.y13{bottom:830.915850px;}
.y3e{bottom:833.457000px;}
.y5b{bottom:833.473500px;}
.y148{bottom:833.773650px;}
.y171{bottom:833.782650px;}
.y18f{bottom:833.787300px;}
.y3d{bottom:851.046000px;}
.y5a{bottom:851.062500px;}
.y147{bottom:851.593650px;}
.y12{bottom:856.775400px;}
.y59{bottom:868.651500px;}
.y146{bottom:869.413650px;}
.y11{bottom:882.267900px;}
.y3c{bottom:886.240500px;}
.y145{bottom:887.233650px;}
.y5{bottom:920.367150px;}
.y58{bottom:931.885500px;}
.y3b{bottom:931.885650px;}
.y4{bottom:939.024750px;}
.y3{bottom:945.477750px;}
.y57{bottom:949.474500px;}
.y3a{bottom:949.474650px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.891150px;}
.y6{bottom:971.391150px;}
.h4{height:19.602000px;}
.hc{height:24.388330px;}
.hf{height:29.162109px;}
.he{height:29.182617px;}
.h6{height:31.206000px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.hd{height:37.520508px;}
.h2{height:41.220703px;}
.h12{height:41.689453px;}
.h15{height:44.730469px;}
.hb{height:45.092145px;}
.ha{height:45.098145px;}
.h10{height:45.826172px;}
.h11{height:45.858398px;}
.h13{height:49.063159px;}
.h14{height:49.517359px;}
.h9{height:50.027344px;}
.h16{height:52.646484px;}
.h1e{height:52.664484px;}
.h20{height:52.665084px;}
.h18{height:52.681884px;}
.h19{height:52.682484px;}
.h1d{height:52.683084px;}
.h1f{height:52.699884px;}
.h1a{height:52.700484px;}
.h17{height:52.701084px;}
.h1b{height:52.718484px;}
.h21{height:52.719084px;}
.h1c{height:52.736484px;}
.h8{height:60.996094px;}
.h3{height:104.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x11{left:110.551200px;}
.x1{left:113.476500px;}
.xc{left:114.987750px;}
.xb{left:116.630850px;}
.xe{left:124.704000px;}
.x9{left:136.622100px;}
.x4{left:138.981000px;}
.x16{left:146.695950px;}
.x15{left:149.611950px;}
.x14{left:159.443550px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x13{left:208.604400px;}
.x7{left:257.028150px;}
.x10{left:267.429600px;}
.x8{left:283.588500px;}
.xf{left:299.218650px;}
.xd{left:345.716250px;}
.xa{left:389.207100px;}
.x3{left:441.045750px;}
.x2{left:521.280900px;}
.x12{left:606.831900px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v3{vertical-align:-12.244800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:17.115733pt;}
.ls5e{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls44{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls4c{letter-spacing:0.006400pt;}
.ls4a{letter-spacing:0.006933pt;}
.ls39{letter-spacing:0.008000pt;}
.ls3e{letter-spacing:0.008533pt;}
.ls3d{letter-spacing:0.009067pt;}
.ls5a{letter-spacing:0.025067pt;}
.ls59{letter-spacing:0.050667pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls2d{letter-spacing:0.056000pt;}
.ls11{letter-spacing:0.058667pt;}
.ls2b{letter-spacing:0.064533pt;}
.ls2e{letter-spacing:0.072000pt;}
.ls46{letter-spacing:0.089600pt;}
.ls48{letter-spacing:0.090133pt;}
.ls47{letter-spacing:0.098667pt;}
.ls49{letter-spacing:0.105600pt;}
.ls36{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.117333pt;}
.ls55{letter-spacing:0.124000pt;}
.ls37{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.130133pt;}
.ls35{letter-spacing:0.136533pt;}
.ls54{letter-spacing:0.139200pt;}
.ls56{letter-spacing:0.139733pt;}
.ls51{letter-spacing:0.148000pt;}
.ls5{letter-spacing:0.149333pt;}
.ls50{letter-spacing:0.149867pt;}
.ls5f{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls30{letter-spacing:0.213333pt;}
.ls2f{letter-spacing:0.222400pt;}
.ls31{letter-spacing:0.232000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls60{letter-spacing:0.250667pt;}
.ls63{letter-spacing:0.252000pt;}
.ls62{letter-spacing:0.258667pt;}
.ls61{letter-spacing:0.266133pt;}
.ls29{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.298667pt;}
.ls4b{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls1f{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls25{letter-spacing:0.381333pt;}
.ls19{letter-spacing:0.410667pt;}
.ls4e{letter-spacing:0.416000pt;}
.ls4d{letter-spacing:0.417600pt;}
.ls3c{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls58{letter-spacing:0.552533pt;}
.ls17{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.587733pt;}
.ls13{letter-spacing:0.645333pt;}
.ls41{letter-spacing:0.693333pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls40{letter-spacing:0.720000pt;}
.ls3f{letter-spacing:0.724267pt;}
.ls65{letter-spacing:0.746667pt;}
.ls1c{letter-spacing:0.762667pt;}
.ls4f{letter-spacing:0.800000pt;}
.ls53{letter-spacing:0.801600pt;}
.ls52{letter-spacing:0.803200pt;}
.ls67{letter-spacing:0.814933pt;}
.lsb{letter-spacing:0.821333pt;}
.ls1{letter-spacing:0.858667pt;}
.ls1b{letter-spacing:0.880000pt;}
.ls6c{letter-spacing:0.906667pt;}
.ls6a{letter-spacing:0.916267pt;}
.ls6b{letter-spacing:0.917333pt;}
.ls6d{letter-spacing:0.925867pt;}
.lse{letter-spacing:0.938667pt;}
.ls20{letter-spacing:0.997333pt;}
.ls64{letter-spacing:1.013333pt;}
.ls1e{letter-spacing:1.056000pt;}
.ls5b{letter-spacing:1.057067pt;}
.ls2{letter-spacing:1.064000pt;}
.ls5d{letter-spacing:1.066667pt;}
.ls32{letter-spacing:1.083200pt;}
.ls34{letter-spacing:1.091200pt;}
.ls16{letter-spacing:1.114667pt;}
.ls43{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls27{letter-spacing:1.232000pt;}
.ls68{letter-spacing:1.286933pt;}
.ls28{letter-spacing:1.290667pt;}
.ls2a{letter-spacing:1.349333pt;}
.ls26{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.466667pt;}
.ls69{letter-spacing:1.493333pt;}
.ls22{letter-spacing:1.525333pt;}
.ls66{letter-spacing:1.813333pt;}
.ls23{letter-spacing:1.818667pt;}
.ls3a{letter-spacing:2.217067pt;}
.ls3b{letter-spacing:2.217600pt;}
.ls45{letter-spacing:5.290667pt;}
.ls42{letter-spacing:7.512000pt;}
.ls5c{letter-spacing:7.715733pt;}
.ls33{letter-spacing:7.757867pt;}
.ls3{letter-spacing:11.120000pt;}
.lsa{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.wsc3{word-spacing:-14.826667pt;}
.ws39{word-spacing:-14.666667pt;}
.wsb4{word-spacing:-14.080000pt;}
.ws80{word-spacing:-13.760000pt;}
.wsc4{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa9{word-spacing:-11.056000pt;}
.wsa7{word-spacing:-10.800000pt;}
.ws81{word-spacing:-10.720000pt;}
.ws96{word-spacing:-10.416000pt;}
.wsb3{word-spacing:-10.252000pt;}
.wsa6{word-spacing:-10.148000pt;}
.ws7f{word-spacing:-10.128000pt;}
.wsa8{word-spacing:-10.124000pt;}
.ws7a{word-spacing:-10.072000pt;}
.ws79{word-spacing:-10.000000pt;}
.ws5e{word-spacing:-9.533333pt;}
.ws0{word-spacing:-9.352000pt;}
.ws1{word-spacing:-8.666667pt;}
.ws9{word-spacing:-8.288000pt;}
.ws3{word-spacing:-7.800000pt;}
.ws4{word-spacing:-7.000000pt;}
.wsc0{word-spacing:-1.813333pt;}
.wsc5{word-spacing:-1.066667pt;}
.wsb6{word-spacing:-0.746667pt;}
.ws90{word-spacing:-0.693333pt;}
.wsc2{word-spacing:-0.586667pt;}
.ws8e{word-spacing:-0.533333pt;}
.wsbb{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.381333pt;}
.wsca{word-spacing:-0.373333pt;}
.wsa1{word-spacing:-0.320000pt;}
.ws43{word-spacing:-0.293333pt;}
.wsbc{word-spacing:-0.213333pt;}
.wsb7{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.149333pt;}
.ws5{word-spacing:0.000000pt;}
.ws26{word-spacing:0.117333pt;}
.wsce{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.176000pt;}
.wsd{word-spacing:0.186667pt;}
.wsb9{word-spacing:0.266667pt;}
.ws35{word-spacing:0.293333pt;}
.ws13{word-spacing:0.298667pt;}
.wsb2{word-spacing:0.373333pt;}
.ws16{word-spacing:0.410667pt;}
.ws8b{word-spacing:0.426667pt;}
.ws78{word-spacing:0.469333pt;}
.ws12{word-spacing:0.522667pt;}
.ws6f{word-spacing:0.528000pt;}
.ws88{word-spacing:0.533333pt;}
.ws50{word-spacing:0.586667pt;}
.ws3b{word-spacing:0.645333pt;}
.ws98{word-spacing:0.693333pt;}
.ws3c{word-spacing:0.704000pt;}
.ws3d{word-spacing:0.762667pt;}
.ws1a{word-spacing:0.821333pt;}
.ws17{word-spacing:0.858667pt;}
.ws61{word-spacing:0.880000pt;}
.wsaf{word-spacing:0.906667pt;}
.ws14{word-spacing:0.933333pt;}
.ws47{word-spacing:0.938667pt;}
.ws11{word-spacing:0.970667pt;}
.ws53{word-spacing:0.997333pt;}
.ws2e{word-spacing:1.056000pt;}
.wsb8{word-spacing:1.066667pt;}
.ws5c{word-spacing:1.114667pt;}
.ws4d{word-spacing:1.173333pt;}
.ws55{word-spacing:1.232000pt;}
.ws18{word-spacing:1.269333pt;}
.ws82{word-spacing:1.280000pt;}
.ws51{word-spacing:1.290667pt;}
.ws32{word-spacing:1.349333pt;}
.wsc7{word-spacing:1.386667pt;}
.ws56{word-spacing:1.408000pt;}
.wsc8{word-spacing:1.440000pt;}
.ws7d{word-spacing:1.466667pt;}
.ws89{word-spacing:1.493333pt;}
.ws7b{word-spacing:1.525333pt;}
.wsc9{word-spacing:1.546667pt;}
.ws86{word-spacing:1.600000pt;}
.ws92{word-spacing:1.706667pt;}
.ws4b{word-spacing:1.760000pt;}
.ws33{word-spacing:1.818667pt;}
.wse{word-spacing:1.829333pt;}
.ws19{word-spacing:1.866667pt;}
.ws38{word-spacing:1.877333pt;}
.ws8f{word-spacing:1.920000pt;}
.ws85{word-spacing:1.973333pt;}
.ws1f{word-spacing:1.994667pt;}
.ws52{word-spacing:2.053333pt;}
.wsab{word-spacing:2.186667pt;}
.ws1e{word-spacing:2.229333pt;}
.ws8c{word-spacing:2.240000pt;}
.ws87{word-spacing:2.346667pt;}
.ws2a{word-spacing:2.405333pt;}
.ws73{word-spacing:2.464000pt;}
.wsa2{word-spacing:2.506667pt;}
.ws2b{word-spacing:2.522667pt;}
.ws8d{word-spacing:2.560000pt;}
.ws94{word-spacing:2.613333pt;}
.ws57{word-spacing:2.640000pt;}
.wscc{word-spacing:2.666667pt;}
.wsf{word-spacing:2.688000pt;}
.ws37{word-spacing:2.698667pt;}
.wsbf{word-spacing:2.720000pt;}
.ws93{word-spacing:2.773333pt;}
.ws45{word-spacing:2.816000pt;}
.wsa4{word-spacing:2.826667pt;}
.ws54{word-spacing:2.933333pt;}
.ws36{word-spacing:2.992000pt;}
.ws6c{word-spacing:3.050667pt;}
.ws64{word-spacing:3.168000pt;}
.wsc{word-spacing:3.210667pt;}
.ws24{word-spacing:3.226667pt;}
.ws95{word-spacing:3.253333pt;}
.ws3e{word-spacing:3.285333pt;}
.wsb1{word-spacing:3.306667pt;}
.ws28{word-spacing:3.402667pt;}
.ws22{word-spacing:3.461333pt;}
.wsad{word-spacing:3.520000pt;}
.ws76{word-spacing:3.578667pt;}
.wscd{word-spacing:3.626667pt;}
.ws5d{word-spacing:3.637333pt;}
.wsbd{word-spacing:3.680000pt;}
.ws15{word-spacing:3.696000pt;}
.wsa5{word-spacing:3.733333pt;}
.ws72{word-spacing:3.754667pt;}
.ws9a{word-spacing:3.786667pt;}
.wscb{word-spacing:3.893333pt;}
.ws9f{word-spacing:3.946667pt;}
.ws40{word-spacing:3.989333pt;}
.ws99{word-spacing:4.000000pt;}
.ws9e{word-spacing:4.053333pt;}
.ws5a{word-spacing:4.106667pt;}
.ws8{word-spacing:4.144000pt;}
.ws30{word-spacing:4.165333pt;}
.ws9c{word-spacing:4.213333pt;}
.ws1d{word-spacing:4.224000pt;}
.ws10{word-spacing:4.293333pt;}
.wsc6{word-spacing:4.320000pt;}
.ws48{word-spacing:4.400000pt;}
.ws83{word-spacing:4.426667pt;}
.ws21{word-spacing:4.458667pt;}
.ws4f{word-spacing:4.517333pt;}
.ws3f{word-spacing:4.576000pt;}
.wsb0{word-spacing:4.586667pt;}
.ws49{word-spacing:4.634667pt;}
.wsb{word-spacing:4.666667pt;}
.wsa0{word-spacing:4.800000pt;}
.ws69{word-spacing:4.810667pt;}
.ws74{word-spacing:4.853333pt;}
.ws58{word-spacing:4.869333pt;}
.ws75{word-spacing:4.928000pt;}
.wsbe{word-spacing:4.960000pt;}
.wsac{word-spacing:5.013333pt;}
.ws25{word-spacing:5.045333pt;}
.ws84{word-spacing:5.120000pt;}
.ws27{word-spacing:5.162667pt;}
.ws70{word-spacing:5.221333pt;}
.ws31{word-spacing:5.280000pt;}
.ws9b{word-spacing:5.386667pt;}
.ws6e{word-spacing:5.397333pt;}
.wsba{word-spacing:5.440000pt;}
.ws46{word-spacing:5.456000pt;}
.ws91{word-spacing:5.493333pt;}
.ws20{word-spacing:5.514667pt;}
.ws7c{word-spacing:5.573333pt;}
.ws5f{word-spacing:5.632000pt;}
.ws9d{word-spacing:5.653333pt;}
.ws66{word-spacing:5.690667pt;}
.wsa3{word-spacing:5.706667pt;}
.ws60{word-spacing:5.749333pt;}
.ws2c{word-spacing:5.808000pt;}
.ws67{word-spacing:5.866667pt;}
.wsae{word-spacing:5.920000pt;}
.ws4a{word-spacing:5.925333pt;}
.ws6d{word-spacing:5.984000pt;}
.ws2d{word-spacing:6.042667pt;}
.ws62{word-spacing:6.101333pt;}
.ws3a{word-spacing:6.160000pt;}
.wsb5{word-spacing:6.186667pt;}
.wsaa{word-spacing:6.240000pt;}
.ws63{word-spacing:6.277333pt;}
.ws8a{word-spacing:6.293333pt;}
.ws42{word-spacing:6.336000pt;}
.ws71{word-spacing:6.394667pt;}
.wsc1{word-spacing:6.400000pt;}
.ws1c{word-spacing:6.453333pt;}
.ws23{word-spacing:6.512000pt;}
.ws68{word-spacing:6.570667pt;}
.ws97{word-spacing:6.613333pt;}
.ws34{word-spacing:6.629333pt;}
.ws44{word-spacing:6.666667pt;}
.ws41{word-spacing:6.688000pt;}
.ws4e{word-spacing:6.805333pt;}
.ws5b{word-spacing:6.864000pt;}
.ws4c{word-spacing:6.922667pt;}
.ws59{word-spacing:6.981333pt;}
.ws77{word-spacing:7.040000pt;}
.ws65{word-spacing:7.157333pt;}
.ws6b{word-spacing:7.216000pt;}
.ws29{word-spacing:7.274667pt;}
.ws1b{word-spacing:7.333333pt;}
.ws7{word-spacing:9.472000pt;}
.ws6{word-spacing:11.861333pt;}
.ws7e{word-spacing:13.333333pt;}
._15{margin-left:-24.288000pt;}
._9{margin-left:-22.880000pt;}
._8{margin-left:-21.941333pt;}
._f{margin-left:-20.944000pt;}
._10{margin-left:-19.301333pt;}
._16{margin-left:-18.010667pt;}
._e{margin-left:-15.957333pt;}
._c{margin-left:-14.666667pt;}
._4{margin-left:-13.503467pt;}
._0{margin-left:-11.865600pt;}
._12{margin-left:-2.217600pt;}
._3{margin-left:-1.075200pt;}
._18{width:0.900000pt;}
._1a{width:1.914933pt;}
._1c{width:2.870933pt;}
._2{width:4.106667pt;}
._7{width:5.204491pt;}
._1{width:6.234667pt;}
._19{width:7.259200pt;}
._6{width:8.288000pt;}
._5{width:10.378667pt;}
._13{width:11.752533pt;}
._17{width:12.984000pt;}
._11{width:14.705067pt;}
._14{width:19.125333pt;}
._1b{width:26.346133pt;}
._1d{width:28.408000pt;}
._d{width:33.013333pt;}
._a{width:40.000000pt;}
._b{width:1028.947200pt;}
.fs3{font-size:24.000000pt;}
.fsc{font-size:28.000000pt;}
.fsa{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs10{font-size:38.133333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fse{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fsf{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y39{bottom:75.590667pt;}
.y10{bottom:105.825467pt;}
.y56{bottom:106.277867pt;}
.y87{bottom:106.593333pt;}
.ycd{bottom:107.441333pt;}
.yf8{bottom:107.476133pt;}
.ye2{bottom:107.489467pt;}
.y7e{bottom:107.588000pt;}
.yaa{bottom:107.617333pt;}
.y170{bottom:107.700133pt;}
.y132{bottom:109.189467pt;}
.yf{bottom:116.493467pt;}
.y86{bottom:122.228000pt;}
.ycc{bottom:123.076000pt;}
.yf7{bottom:123.110800pt;}
.y117{bottom:123.120000pt;}
.ye1{bottom:123.124133pt;}
.y7d{bottom:123.222667pt;}
.ya9{bottom:123.252000pt;}
.y16f{bottom:123.528133pt;}
.y1a5{bottom:123.532133pt;}
.y18e{bottom:123.536133pt;}
.y131{bottom:124.824133pt;}
.ye{bottom:132.828800pt;}
.y85{bottom:137.862667pt;}
.ycb{bottom:138.710667pt;}
.yf6{bottom:138.745467pt;}
.y116{bottom:138.754667pt;}
.ye0{bottom:138.758800pt;}
.ya8{bottom:138.886667pt;}
.y18d{bottom:139.364133pt;}
.y16e{bottom:139.368133pt;}
.y1a4{bottom:139.372133pt;}
.y144{bottom:139.381600pt;}
.y7c{bottom:146.689333pt;}
.yd{bottom:149.162133pt;}
.y84{bottom:153.497333pt;}
.yca{bottom:154.345333pt;}
.yf5{bottom:154.380133pt;}
.y115{bottom:154.389333pt;}
.ya7{bottom:154.521333pt;}
.y1a3{bottom:155.196133pt;}
.y18c{bottom:155.204133pt;}
.y16d{bottom:155.208133pt;}
.y143{bottom:155.221600pt;}
.y130{bottom:155.844133pt;}
.ydf{bottom:162.225467pt;}
.y7b{bottom:162.324000pt;}
.yc{bottom:163.610133pt;}
.y83{bottom:169.132000pt;}
.yc9{bottom:169.980000pt;}
.y114{bottom:170.024000pt;}
.y1ac{bottom:171.032133pt;}
.y16c{bottom:171.036133pt;}
.y18b{bottom:171.044133pt;}
.y142{bottom:171.061600pt;}
.y12f{bottom:171.478800pt;}
.yb{bottom:173.550133pt;}
.yf4{bottom:177.846800pt;}
.yde{bottom:177.860133pt;}
.y7a{bottom:177.958667pt;}
.ya6{bottom:177.988000pt;}
.ya{bottom:183.490133pt;}
.y113{bottom:185.658667pt;}
.y18a{bottom:186.872133pt;}
.y16b{bottom:186.876133pt;}
.y12e{bottom:187.113467pt;}
.yf3{bottom:193.481467pt;}
.ydd{bottom:193.494800pt;}
.y79{bottom:193.593333pt;}
.ya5{bottom:193.622667pt;}
.yc8{bottom:195.441333pt;}
.y9{bottom:199.095467pt;}
.y112{bottom:201.293333pt;}
.y141{bottom:202.701333pt;}
.y189{bottom:202.712133pt;}
.y16a{bottom:202.716133pt;}
.y12d{bottom:202.748133pt;}
.y8{bottom:209.035467pt;}
.yf2{bottom:209.116133pt;}
.ydc{bottom:209.129467pt;}
.y78{bottom:209.228000pt;}
.ya4{bottom:209.257333pt;}
.yc7{bottom:211.076000pt;}
.y82{bottom:216.050000pt;}
.y111{bottom:216.928000pt;}
.y12c{bottom:218.382800pt;}
.y169{bottom:218.544133pt;}
.y188{bottom:218.552133pt;}
.yf1{bottom:224.750800pt;}
.ydb{bottom:224.764133pt;}
.y77{bottom:224.862667pt;}
.yc6{bottom:226.710667pt;}
.y81{bottom:230.263333pt;}
.y110{bottom:232.562667pt;}
.ya3{bottom:232.724000pt;}
.y12b{bottom:234.017467pt;}
.y187{bottom:234.380133pt;}
.y168{bottom:234.384133pt;}
.yf0{bottom:240.385467pt;}
.yda{bottom:240.398800pt;}
.y76{bottom:240.497333pt;}
.y38{bottom:241.032400pt;}
.yc5{bottom:242.345333pt;}
.y10f{bottom:248.197333pt;}
.ya2{bottom:248.358667pt;}
.y12a{bottom:249.652133pt;}
.y186{bottom:250.220133pt;}
.y167{bottom:250.224133pt;}
.y37{bottom:254.761733pt;}
.yef{bottom:256.020133pt;}
.yd9{bottom:256.033467pt;}
.y75{bottom:256.132000pt;}
.yc4{bottom:257.980000pt;}
.y10e{bottom:263.832000pt;}
.ya1{bottom:263.993333pt;}
.y36{bottom:264.716400pt;}
.y129{bottom:265.286800pt;}
.y166{bottom:266.056133pt;}
.y185{bottom:266.060133pt;}
.yd8{bottom:271.668133pt;}
.y74{bottom:271.766667pt;}
.yc3{bottom:273.614667pt;}
.y35{bottom:274.665733pt;}
.y10d{bottom:279.466667pt;}
.yee{bottom:279.486800pt;}
.ya0{bottom:279.628000pt;}
.y128{bottom:280.921467pt;}
.y1ab{bottom:281.884133pt;}
.y184{bottom:281.888133pt;}
.y1b7{bottom:281.892133pt;}
.y165{bottom:281.896133pt;}
.y34{bottom:284.617733pt;}
.yd7{bottom:287.302800pt;}
.y73{bottom:287.401333pt;}
.yc2{bottom:289.249333pt;}
.y33{bottom:294.583067pt;}
.yed{bottom:295.121467pt;}
.y9f{bottom:295.262667pt;}
.y127{bottom:296.556133pt;}
.y164{bottom:297.724133pt;}
.y183{bottom:297.728133pt;}
.y1a2{bottom:297.732133pt;}
.y10c{bottom:302.933333pt;}
.yd6{bottom:302.937467pt;}
.y72{bottom:303.036000pt;}
.y140{bottom:303.050667pt;}
.y32{bottom:304.532400pt;}
.yc1{bottom:304.884000pt;}
.yec{bottom:310.756133pt;}
.y9e{bottom:310.897333pt;}
.y126{bottom:312.190800pt;}
.y1a1{bottom:313.560267pt;}
.y163{bottom:313.564133pt;}
.y182{bottom:313.568133pt;}
.y1b6{bottom:313.572133pt;}
.y31{bottom:314.481733pt;}
.y10b{bottom:318.568000pt;}
.yd5{bottom:318.572133pt;}
.yc0{bottom:320.518667pt;}
.y30{bottom:324.431067pt;}
.yeb{bottom:326.390800pt;}
.y71{bottom:326.502667pt;}
.y9d{bottom:326.532000pt;}
.y125{bottom:327.825467pt;}
.y181{bottom:329.400267pt;}
.y162{bottom:329.404133pt;}
.y10a{bottom:334.202667pt;}
.yd4{bottom:334.206800pt;}
.y2f{bottom:334.380400pt;}
.ybf{bottom:336.153333pt;}
.yea{bottom:342.025467pt;}
.y70{bottom:342.137333pt;}
.y9c{bottom:342.166667pt;}
.y124{bottom:343.460133pt;}
.y2e{bottom:344.329733pt;}
.y161{bottom:345.236133pt;}
.y180{bottom:345.240267pt;}
.y1aa{bottom:345.244133pt;}
.y109{bottom:349.837333pt;}
.yd3{bottom:349.841467pt;}
.y13f{bottom:349.969333pt;}
.ybe{bottom:351.788000pt;}
.y2d{bottom:354.298533pt;}
.ye9{bottom:357.660133pt;}
.y6f{bottom:357.772000pt;}
.y9b{bottom:357.801333pt;}
.y123{bottom:359.094800pt;}
.y1b5{bottom:361.064133pt;}
.y1a0{bottom:361.068133pt;}
.y17f{bottom:361.072133pt;}
.y160{bottom:361.076133pt;}
.y2c{bottom:364.247867pt;}
.y108{bottom:365.472000pt;}
.yd2{bottom:365.476133pt;}
.y13e{bottom:365.604000pt;}
.ybd{bottom:367.422667pt;}
.ye8{bottom:373.294800pt;}
.y6e{bottom:373.406667pt;}
.y55{bottom:373.421333pt;}
.y9a{bottom:373.436000pt;}
.y122{bottom:374.729467pt;}
.y15f{bottom:376.904133pt;}
.y19f{bottom:376.908133pt;}
.y17e{bottom:376.912133pt;}
.y107{bottom:381.106667pt;}
.yd1{bottom:381.110800pt;}
.y13d{bottom:381.238667pt;}
.ybc{bottom:383.057333pt;}
.y2b{bottom:385.537200pt;}
.ye7{bottom:388.929467pt;}
.y6d{bottom:389.041333pt;}
.y54{bottom:389.056000pt;}
.y99{bottom:389.070667pt;}
.y121{bottom:390.364133pt;}
.y17d{bottom:392.740133pt;}
.y15e{bottom:392.744133pt;}
.y19e{bottom:392.748133pt;}
.y106{bottom:396.741333pt;}
.yd0{bottom:396.745467pt;}
.y13c{bottom:396.873333pt;}
.ybb{bottom:398.692000pt;}
.y2a{bottom:399.266533pt;}
.ye6{bottom:404.564133pt;}
.y6c{bottom:404.676000pt;}
.y53{bottom:404.690667pt;}
.y98{bottom:404.705333pt;}
.y19d{bottom:408.576133pt;}
.y17c{bottom:408.580133pt;}
.y15d{bottom:408.584133pt;}
.y29{bottom:409.215867pt;}
.y105{bottom:412.376000pt;}
.ycf{bottom:412.380133pt;}
.y13b{bottom:412.508000pt;}
.yba{bottom:414.326667pt;}
.y28{bottom:419.165200pt;}
.ye5{bottom:420.218933pt;}
.y6b{bottom:420.310667pt;}
.y52{bottom:420.325333pt;}
.y97{bottom:420.340000pt;}
.y120{bottom:421.648133pt;}
.y15c{bottom:424.408133pt;}
.y19c{bottom:424.416133pt;}
.y17b{bottom:424.420133pt;}
.y104{bottom:428.010667pt;}
.y13a{bottom:428.142667pt;}
.y27{bottom:429.114533pt;}
.yb9{bottom:429.961333pt;}
.yce{bottom:435.846800pt;}
.ye4{bottom:435.853600pt;}
.y6a{bottom:435.945333pt;}
.y51{bottom:435.960000pt;}
.y96{bottom:435.974667pt;}
.y11f{bottom:437.282800pt;}
.y26{bottom:439.063867pt;}
.y15b{bottom:440.248133pt;}
.y19b{bottom:440.256133pt;}
.y103{bottom:443.645333pt;}
.y139{bottom:443.777333pt;}
.y25{bottom:449.015867pt;}
.ye3{bottom:451.488267pt;}
.y69{bottom:451.580000pt;}
.y50{bottom:451.594667pt;}
.y95{bottom:451.609333pt;}
.y11e{bottom:452.917467pt;}
.yb8{bottom:455.422667pt;}
.y19a{bottom:456.080133pt;}
.y15a{bottom:456.088133pt;}
.y24{bottom:458.973200pt;}
.y102{bottom:459.280000pt;}
.y138{bottom:459.412000pt;}
.y68{bottom:467.214667pt;}
.y4f{bottom:467.229333pt;}
.y94{bottom:467.244000pt;}
.y11d{bottom:468.552133pt;}
.y23{bottom:468.922533pt;}
.yb7{bottom:471.057333pt;}
.y199{bottom:471.920133pt;}
.y159{bottom:471.928133pt;}
.y101{bottom:474.914667pt;}
.y137{bottom:475.046667pt;}
.y22{bottom:478.871867pt;}
.y80{bottom:482.849333pt;}
.y4e{bottom:482.864000pt;}
.y93{bottom:482.878667pt;}
.y11c{bottom:484.186800pt;}
.yb6{bottom:486.692000pt;}
.y158{bottom:487.752133pt;}
.y17a{bottom:487.760133pt;}
.y21{bottom:488.823867pt;}
.y100{bottom:490.549333pt;}
.y4d{bottom:498.498667pt;}
.y92{bottom:498.513333pt;}
.y20{bottom:498.775867pt;}
.y11b{bottom:499.821467pt;}
.yb5{bottom:502.326667pt;}
.y157{bottom:503.592133pt;}
.y179{bottom:503.600133pt;}
.y136{bottom:506.330667pt;}
.y1f{bottom:508.727867pt;}
.yff{bottom:514.016000pt;}
.y4c{bottom:514.133333pt;}
.y91{bottom:514.148000pt;}
.y198{bottom:519.428133pt;}
.y156{bottom:519.432133pt;}
.yb4{bottom:527.788000pt;}
.yfe{bottom:529.650667pt;}
.y4b{bottom:529.768000pt;}
.y90{bottom:529.782667pt;}
.y197{bottom:535.268133pt;}
.y155{bottom:535.272133pt;}
.y11a{bottom:542.174800pt;}
.yb3{bottom:543.422667pt;}
.yfd{bottom:545.285333pt;}
.y4a{bottom:545.402667pt;}
.y67{bottom:545.417333pt;}
.y1b4{bottom:551.096133pt;}
.y154{bottom:551.100133pt;}
.y196{bottom:551.108133pt;}
.y135{bottom:553.249333pt;}
.y119{bottom:556.388133pt;}
.yb2{bottom:559.057333pt;}
.y1e{bottom:560.075200pt;}
.yfc{bottom:560.920000pt;}
.y49{bottom:561.037333pt;}
.y66{bottom:561.052000pt;}
.y1b3{bottom:566.936133pt;}
.y153{bottom:566.940133pt;}
.y195{bottom:566.944133pt;}
.y134{bottom:568.884000pt;}
.y118{bottom:570.601467pt;}
.y1d{bottom:570.688533pt;}
.yb1{bottom:574.692000pt;}
.yfb{bottom:576.554667pt;}
.y48{bottom:576.672000pt;}
.y65{bottom:576.686667pt;}
.y194{bottom:582.772133pt;}
.y1b2{bottom:582.776133pt;}
.y152{bottom:582.780133pt;}
.y133{bottom:584.518667pt;}
.y1c{bottom:588.496533pt;}
.yb0{bottom:590.326667pt;}
.yfa{bottom:592.189333pt;}
.y47{bottom:592.306667pt;}
.y64{bottom:592.321333pt;}
.y178{bottom:598.612133pt;}
.y1b1{bottom:598.616133pt;}
.y151{bottom:598.620133pt;}
.y1b{bottom:599.109867pt;}
.y7f{bottom:600.153333pt;}
.yaf{bottom:605.961333pt;}
.y8f{bottom:607.956000pt;}
.y1b0{bottom:614.444133pt;}
.y150{bottom:614.448133pt;}
.y177{bottom:614.452133pt;}
.y46{bottom:615.773333pt;}
.y63{bottom:615.788000pt;}
.y1a{bottom:616.917867pt;}
.yae{bottom:621.596000pt;}
.yf9{bottom:623.473333pt;}
.y8e{bottom:623.590667pt;}
.y19{bottom:627.531200pt;}
.y176{bottom:630.280133pt;}
.y1af{bottom:630.284133pt;}
.y14f{bottom:630.288133pt;}
.y45{bottom:631.408000pt;}
.y62{bottom:631.422667pt;}
.yad{bottom:637.230667pt;}
.y8d{bottom:639.225333pt;}
.y18{bottom:645.339200pt;}
.y193{bottom:646.116133pt;}
.y14e{bottom:646.120133pt;}
.y1ae{bottom:646.124133pt;}
.y44{bottom:647.042667pt;}
.y61{bottom:647.057333pt;}
.yac{bottom:652.865333pt;}
.y8c{bottom:654.860000pt;}
.y17{bottom:655.952533pt;}
.y1ad{bottom:661.952133pt;}
.y192{bottom:661.956133pt;}
.y14d{bottom:661.960133pt;}
.y43{bottom:662.677333pt;}
.y60{bottom:662.692000pt;}
.yab{bottom:668.500000pt;}
.y8b{bottom:670.494667pt;}
.y16{bottom:673.760533pt;}
.y175{bottom:677.780133pt;}
.y1a9{bottom:677.788133pt;}
.y14c{bottom:677.792133pt;}
.y191{bottom:677.796133pt;}
.y42{bottom:678.312000pt;}
.y5f{bottom:678.326667pt;}
.y8a{bottom:686.129333pt;}
.y15{bottom:692.192400pt;}
.y174{bottom:693.620133pt;}
.y190{bottom:693.624267pt;}
.y1a8{bottom:693.628133pt;}
.y14b{bottom:693.632133pt;}
.y41{bottom:693.946667pt;}
.y5e{bottom:693.961333pt;}
.y89{bottom:701.764000pt;}
.y14{bottom:707.832400pt;}
.y173{bottom:709.460133pt;}
.y14a{bottom:709.464267pt;}
.y1a7{bottom:709.468133pt;}
.y40{bottom:709.581333pt;}
.y5d{bottom:709.596000pt;}
.y88{bottom:717.398667pt;}
.y3f{bottom:725.216000pt;}
.y5c{bottom:725.230667pt;}
.y1a6{bottom:725.292133pt;}
.y172{bottom:725.300133pt;}
.y149{bottom:725.304267pt;}
.y13{bottom:738.591867pt;}
.y3e{bottom:740.850667pt;}
.y5b{bottom:740.865333pt;}
.y148{bottom:741.132133pt;}
.y171{bottom:741.140133pt;}
.y18f{bottom:741.144267pt;}
.y3d{bottom:756.485333pt;}
.y5a{bottom:756.500000pt;}
.y147{bottom:756.972133pt;}
.y12{bottom:761.578133pt;}
.y59{bottom:772.134667pt;}
.y146{bottom:772.812133pt;}
.y11{bottom:784.238133pt;}
.y3c{bottom:787.769333pt;}
.y145{bottom:788.652133pt;}
.y5{bottom:818.104133pt;}
.y58{bottom:828.342667pt;}
.y3b{bottom:828.342800pt;}
.y4{bottom:834.688667pt;}
.y3{bottom:840.424667pt;}
.y57{bottom:843.977333pt;}
.y3a{bottom:843.977467pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458800pt;}
.y6{bottom:863.458800pt;}
.h4{height:17.424000pt;}
.hc{height:21.678516pt;}
.hf{height:25.921875pt;}
.he{height:25.940104pt;}
.h6{height:27.738667pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.hd{height:33.351562pt;}
.h2{height:36.640625pt;}
.h12{height:37.057292pt;}
.h15{height:39.760417pt;}
.hb{height:40.081906pt;}
.ha{height:40.087240pt;}
.h10{height:40.734375pt;}
.h11{height:40.763021pt;}
.h13{height:43.611697pt;}
.h14{height:44.015430pt;}
.h9{height:44.468750pt;}
.h16{height:46.796875pt;}
.h1e{height:46.812875pt;}
.h20{height:46.813408pt;}
.h18{height:46.828342pt;}
.h19{height:46.828875pt;}
.h1d{height:46.829408pt;}
.h1f{height:46.844342pt;}
.h1a{height:46.844875pt;}
.h17{height:46.845408pt;}
.h1b{height:46.860875pt;}
.h21{height:46.861408pt;}
.h1c{height:46.876875pt;}
.h8{height:54.218750pt;}
.h3{height:93.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x11{left:98.267733pt;}
.x1{left:100.868000pt;}
.xc{left:102.211333pt;}
.xb{left:103.671867pt;}
.xe{left:110.848000pt;}
.x9{left:121.441867pt;}
.x4{left:123.538667pt;}
.x16{left:130.396400pt;}
.x15{left:132.988400pt;}
.x14{left:141.727600pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x13{left:185.426133pt;}
.x7{left:228.469467pt;}
.x10{left:237.715200pt;}
.x8{left:252.078667pt;}
.xf{left:265.972133pt;}
.xd{left:307.303333pt;}
.xa{left:345.961867pt;}
.x3{left:392.040667pt;}
.x2{left:463.360800pt;}
.x12{left:539.406133pt;}
}




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