
    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_0d9586bec861c6a3e08c2856.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2f26fd055e444156b6b73a5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_131cdf8f38633a902cbd69d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_d44f904aa0702cd83e557ca9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6b64cdc720d6ede5edba1dbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_e8c4a8f398b862eddd6b01af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf2161789fd7053ab3457518.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_c39e51ebd654f1de6dfc9e54.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_c1017bbb0e6fbd8e8c75601c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.037000;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_5675cc420a68fd8a9d056b91.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973000;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_420df076042072acb9e3cef4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-1.836000px;}
.ls4c{letter-spacing:-1.512000px;}
.ls3c{letter-spacing:-0.810000px;}
.ls48{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.125820px;}
.ls1d{letter-spacing:-0.109044px;}
.ls17{letter-spacing:-0.067104px;}
.ls1a{letter-spacing:-0.058716px;}
.ls1f{letter-spacing:-0.041940px;}
.ls13{letter-spacing:-0.033552px;}
.ls30{letter-spacing:-0.027000px;}
.ls15{letter-spacing:-0.018000px;}
.ls1c{letter-spacing:-0.016776px;}
.ls1b{letter-spacing:-0.008388px;}
.ls14{letter-spacing:-0.006000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009576px;}
.ls5{letter-spacing:0.010800px;}
.ls10{letter-spacing:0.016776px;}
.lsa{letter-spacing:0.033552px;}
.ls6{letter-spacing:0.036000px;}
.lse{letter-spacing:0.041940px;}
.ls23{letter-spacing:0.042000px;}
.ls2{letter-spacing:0.047880px;}
.lsd{letter-spacing:0.050328px;}
.ls1e{letter-spacing:0.058716px;}
.ls21{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.075492px;}
.ls7{letter-spacing:0.078000px;}
.ls8{letter-spacing:0.083880px;}
.ls20{letter-spacing:0.084000px;}
.lsc{letter-spacing:0.100656px;}
.ls18{letter-spacing:0.109044px;}
.lsb{letter-spacing:0.142596px;}
.ls3{letter-spacing:0.167760px;}
.ls22{letter-spacing:0.168000px;}
.ls11{letter-spacing:0.192924px;}
.ls4{letter-spacing:0.209700px;}
.ls16{letter-spacing:0.228000px;}
.ls49{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.348000px;}
.ls41{letter-spacing:0.351540px;}
.ls9{letter-spacing:0.503280px;}
.ls3f{letter-spacing:0.510000px;}
.ls12{letter-spacing:0.536832px;}
.ls37{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.570000px;}
.ls2a{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.582000px;}
.ls2f{letter-spacing:0.588000px;}
.ls2c{letter-spacing:0.594000px;}
.ls29{letter-spacing:0.600000px;}
.ls2d{letter-spacing:0.606000px;}
.ls45{letter-spacing:0.654000px;}
.ls25{letter-spacing:0.660000px;}
.ls32{letter-spacing:0.666000px;}
.ls39{letter-spacing:0.705600px;}
.ls24{letter-spacing:0.712800px;}
.ls3e{letter-spacing:0.720000px;}
.ls4a{letter-spacing:0.733200px;}
.ls38{letter-spacing:0.756600px;}
.ls31{letter-spacing:0.764400px;}
.ls28{letter-spacing:0.780000px;}
.ls47{letter-spacing:1.260000px;}
.ls27{letter-spacing:1.612806px;}
.ls4b{letter-spacing:2.094000px;}
.ls43{letter-spacing:2.880000px;}
.ls35{letter-spacing:3.720000px;}
.ls34{letter-spacing:5.280000px;}
.ls40{letter-spacing:5.880000px;}
.ls42{letter-spacing:5.940000px;}
.ls33{letter-spacing:6.060000px;}
.ls44{letter-spacing:6.900000px;}
.ls3d{letter-spacing:6.960000px;}
.ls36{letter-spacing:18.480000px;}
.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;}
}
.ws6{word-spacing:-83.880000px;}
.ws12{word-spacing:-83.770956px;}
.wsc9{word-spacing:-28.656000px;}
.ws113{word-spacing:-22.105200px;}
.ws115{word-spacing:-14.214000px;}
.ws17{word-spacing:-13.992000px;}
.ws114{word-spacing:-12.720000px;}
.ws1f{word-spacing:-12.120000px;}
.ws1e{word-spacing:-12.102000px;}
.ws1d{word-spacing:-12.096000px;}
.ws20{word-spacing:-12.090000px;}
.ws90{word-spacing:-11.820000px;}
.ws5f{word-spacing:-5.574000px;}
.ws105{word-spacing:-4.920000px;}
.ws49{word-spacing:-4.320000px;}
.ws8a{word-spacing:-4.020000px;}
.ws5e{word-spacing:-3.780000px;}
.ws4b{word-spacing:-3.654000px;}
.ws7f{word-spacing:-2.820000px;}
.ws80{word-spacing:-2.814000px;}
.ws63{word-spacing:-2.700000px;}
.ws101{word-spacing:-2.634000px;}
.wsc4{word-spacing:-2.460000px;}
.wsef{word-spacing:-2.394000px;}
.ws29{word-spacing:-2.340000px;}
.ws4a{word-spacing:-2.280000px;}
.wsf5{word-spacing:-2.274000px;}
.wsd1{word-spacing:-2.226000px;}
.ws12e{word-spacing:-2.154000px;}
.ws33{word-spacing:-2.100000px;}
.ws34{word-spacing:-2.094000px;}
.ws3c{word-spacing:-1.920000px;}
.ws55{word-spacing:-1.914000px;}
.ws99{word-spacing:-1.794000px;}
.ws41{word-spacing:-1.734000px;}
.ws36{word-spacing:-1.620000px;}
.ws86{word-spacing:-1.560000px;}
.wsc5{word-spacing:-1.554000px;}
.ws84{word-spacing:-1.500000px;}
.ws66{word-spacing:-1.440000px;}
.ws116{word-spacing:-1.380000px;}
.ws2f{word-spacing:-1.326000px;}
.ws3a{word-spacing:-1.314000px;}
.wsb6{word-spacing:-1.308000px;}
.ws4f{word-spacing:-1.260000px;}
.ws54{word-spacing:-1.200000px;}
.wsfd{word-spacing:-1.080000px;}
.wsa5{word-spacing:-0.960000px;}
.ws61{word-spacing:-0.900000px;}
.ws73{word-spacing:-0.840000px;}
.ws45{word-spacing:-0.834000px;}
.ws5b{word-spacing:-0.780000px;}
.ws3d{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.714000px;}
.wsba{word-spacing:-0.666000px;}
.wsd4{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.534000px;}
.wsf8{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.450000px;}
.ws8f{word-spacing:-0.420000px;}
.ws83{word-spacing:-0.390000px;}
.ws74{word-spacing:-0.300000px;}
.ws1{word-spacing:-0.293580px;}
.ws13{word-spacing:-0.276804px;}
.ws89{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.226476px;}
.ws8{word-spacing:-0.192924px;}
.wse{word-spacing:-0.184536px;}
.wsf6{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.167760px;}
.ws5{word-spacing:-0.161880px;}
.wsf{word-spacing:-0.134208px;}
.ws10{word-spacing:-0.125820px;}
.ws4{word-spacing:-0.119880px;}
.ws2{word-spacing:-0.118800px;}
.ws9{word-spacing:-0.117432px;}
.ws11{word-spacing:-0.100656px;}
.ws3{word-spacing:-0.077880px;}
.wsb{word-spacing:-0.075492px;}
.ws8c{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.071820px;}
.wsd{word-spacing:-0.067104px;}
.ws69{word-spacing:-0.060000px;}
.ws71{word-spacing:-0.054000px;}
.ws14{word-spacing:-0.041940px;}
.ws15{word-spacing:-0.033516px;}
.ws30{word-spacing:-0.030000px;}
.wsa{word-spacing:-0.025164px;}
.ws0{word-spacing:0.000000px;}
.ws38{word-spacing:0.006000px;}
.ws1a{word-spacing:0.006600px;}
.ws18{word-spacing:0.007200px;}
.ws26{word-spacing:0.012000px;}
.ws19{word-spacing:0.014400px;}
.ws56{word-spacing:0.015600px;}
.ws91{word-spacing:0.023400px;}
.ws11c{word-spacing:0.024000px;}
.ws43{word-spacing:0.066000px;}
.wsc6{word-spacing:0.102000px;}
.ws62{word-spacing:0.240000px;}
.wsda{word-spacing:0.384000px;}
.ws10a{word-spacing:0.486000px;}
.ws122{word-spacing:0.534000px;}
.ws120{word-spacing:0.600000px;}
.ws106{word-spacing:0.660000px;}
.ws59{word-spacing:0.666000px;}
.ws67{word-spacing:0.780000px;}
.ws2d{word-spacing:0.840000px;}
.wsbd{word-spacing:0.900000px;}
.ws128{word-spacing:0.990000px;}
.wsaa{word-spacing:1.020000px;}
.ws98{word-spacing:1.050000px;}
.wsbb{word-spacing:1.080000px;}
.ws2b{word-spacing:1.086000px;}
.wsf0{word-spacing:1.140000px;}
.wse4{word-spacing:1.200000px;}
.wsfb{word-spacing:1.206000px;}
.ws77{word-spacing:1.260000px;}
.ws32{word-spacing:1.266000px;}
.wsa2{word-spacing:1.302000px;}
.ws21{word-spacing:1.320000px;}
.ws60{word-spacing:1.380000px;}
.ws28{word-spacing:1.446000px;}
.ws79{word-spacing:1.548000px;}
.ws44{word-spacing:1.560000px;}
.ws94{word-spacing:1.680000px;}
.ws31{word-spacing:1.740000px;}
.ws9a{word-spacing:1.872000px;}
.wsc0{word-spacing:1.956000px;}
.ws108{word-spacing:1.980000px;}
.wsd5{word-spacing:1.986000px;}
.ws10b{word-spacing:2.040000px;}
.ws11e{word-spacing:2.100000px;}
.ws4c{word-spacing:2.220000px;}
.ws7d{word-spacing:2.226000px;}
.ws72{word-spacing:2.280000px;}
.ws8b{word-spacing:2.286000px;}
.wsd9{word-spacing:2.340000px;}
.wsec{word-spacing:2.394000px;}
.ws9d{word-spacing:2.400000px;}
.ws9c{word-spacing:2.406000px;}
.ws9e{word-spacing:2.520000px;}
.ws6a{word-spacing:2.640000px;}
.ws7a{word-spacing:2.754000px;}
.ws12c{word-spacing:2.820000px;}
.ws6d{word-spacing:2.946000px;}
.ws7e{word-spacing:3.000000px;}
.ws3b{word-spacing:3.006000px;}
.wse8{word-spacing:3.066000px;}
.ws6b{word-spacing:3.120000px;}
.ws6c{word-spacing:3.126000px;}
.ws4e{word-spacing:3.180000px;}
.wsab{word-spacing:3.240000px;}
.wsdd{word-spacing:3.246000px;}
.ws75{word-spacing:3.306000px;}
.ws85{word-spacing:3.360000px;}
.ws47{word-spacing:3.432000px;}
.ws23{word-spacing:3.462000px;}
.ws51{word-spacing:3.480000px;}
.wsb3{word-spacing:3.504000px;}
.ws129{word-spacing:3.600000px;}
.wse0{word-spacing:3.606000px;}
.ws103{word-spacing:3.720000px;}
.ws8d{word-spacing:3.726000px;}
.ws81{word-spacing:3.780000px;}
.ws10c{word-spacing:3.816000px;}
.ws40{word-spacing:3.906000px;}
.wsed{word-spacing:3.960000px;}
.ws4d{word-spacing:3.966000px;}
.wsc7{word-spacing:4.026000px;}
.wsae{word-spacing:4.146000px;}
.ws78{word-spacing:4.200000px;}
.ws11d{word-spacing:4.260000px;}
.wsbe{word-spacing:4.296000px;}
.ws3f{word-spacing:4.320000px;}
.wse5{word-spacing:4.440000px;}
.ws104{word-spacing:4.452000px;}
.wsb5{word-spacing:4.500000px;}
.ws127{word-spacing:4.506000px;}
.wsc3{word-spacing:4.626000px;}
.ws68{word-spacing:4.680000px;}
.ws9f{word-spacing:4.710000px;}
.wsb4{word-spacing:4.740000px;}
.wsa0{word-spacing:4.746000px;}
.wsf1{word-spacing:4.800000px;}
.ws109{word-spacing:4.806000px;}
.wsc8{word-spacing:4.860000px;}
.ws27{word-spacing:4.866000px;}
.ws7c{word-spacing:4.920000px;}
.ws93{word-spacing:4.980000px;}
.ws2c{word-spacing:5.046000px;}
.wse3{word-spacing:5.112000px;}
.wsb0{word-spacing:5.160000px;}
.ws11a{word-spacing:5.250000px;}
.wsd2{word-spacing:5.268000px;}
.wsd3{word-spacing:5.274000px;}
.wsdc{word-spacing:5.280000px;}
.ws22{word-spacing:5.340000px;}
.wse2{word-spacing:5.352000px;}
.wsdf{word-spacing:5.406000px;}
.ws65{word-spacing:5.460000px;}
.ws64{word-spacing:5.472000px;}
.wsfa{word-spacing:5.520000px;}
.ws50{word-spacing:5.640000px;}
.wsa3{word-spacing:5.688000px;}
.ws111{word-spacing:5.700000px;}
.ws112{word-spacing:5.760000px;}
.wsa6{word-spacing:5.820000px;}
.wsd7{word-spacing:5.880000px;}
.ws35{word-spacing:5.940000px;}
.wsa8{word-spacing:6.006000px;}
.ws7b{word-spacing:6.012000px;}
.wsa7{word-spacing:6.060000px;}
.ws39{word-spacing:6.066000px;}
.ws125{word-spacing:6.090000px;}
.ws130{word-spacing:6.096000px;}
.ws82{word-spacing:6.126000px;}
.ws48{word-spacing:6.240000px;}
.ws5c{word-spacing:6.246000px;}
.wse7{word-spacing:6.300000px;}
.wsb9{word-spacing:6.360000px;}
.ws131{word-spacing:6.366000px;}
.wsf4{word-spacing:6.396000px;}
.ws9b{word-spacing:6.426000px;}
.ws3e{word-spacing:6.432000px;}
.ws5d{word-spacing:6.450000px;}
.ws52{word-spacing:6.480000px;}
.wsc2{word-spacing:6.540000px;}
.wseb{word-spacing:6.600000px;}
.wsac{word-spacing:6.666000px;}
.wsa1{word-spacing:6.690000px;}
.wsb7{word-spacing:6.750000px;}
.ws121{word-spacing:6.840000px;}
.ws6f{word-spacing:6.966000px;}
.ws12f{word-spacing:7.020000px;}
.ws107{word-spacing:7.140000px;}
.ws42{word-spacing:7.200000px;}
.ws6e{word-spacing:7.224000px;}
.wsbf{word-spacing:7.266000px;}
.wscc{word-spacing:7.440000px;}
.wsfe{word-spacing:7.446000px;}
.ws12d{word-spacing:7.494000px;}
.wsfc{word-spacing:7.620000px;}
.ws58{word-spacing:7.626000px;}
.wsff{word-spacing:7.926000px;}
.ws117{word-spacing:8.040000px;}
.ws95{word-spacing:8.160000px;}
.ws100{word-spacing:8.166000px;}
.ws96{word-spacing:8.172000px;}
.wsc1{word-spacing:8.280000px;}
.ws53{word-spacing:8.292000px;}
.ws76{word-spacing:8.346000px;}
.ws12b{word-spacing:8.520000px;}
.ws12a{word-spacing:8.640000px;}
.wse1{word-spacing:8.670000px;}
.wsb2{word-spacing:8.760000px;}
.wsce{word-spacing:8.940000px;}
.ws2a{word-spacing:9.066000px;}
.ws8e{word-spacing:9.240000px;}
.ws37{word-spacing:9.264000px;}
.wsf3{word-spacing:9.300000px;}
.ws92{word-spacing:9.324000px;}
.wsf7{word-spacing:9.360000px;}
.ws10e{word-spacing:9.366000px;}
.ws2e{word-spacing:9.438000px;}
.wsf2{word-spacing:9.486000px;}
.ws5a{word-spacing:9.894000px;}
.wsdb{word-spacing:10.146000px;}
.wsb1{word-spacing:10.152000px;}
.ws57{word-spacing:10.200000px;}
.ws10f{word-spacing:10.446000px;}
.ws123{word-spacing:10.482000px;}
.wsbc{word-spacing:10.560000px;}
.wse6{word-spacing:10.686000px;}
.wsd6{word-spacing:10.860000px;}
.ws124{word-spacing:10.920000px;}
.ws24{word-spacing:10.980000px;}
.ws110{word-spacing:11.280000px;}
.wsa4{word-spacing:11.526000px;}
.wscf{word-spacing:11.820000px;}
.wsb8{word-spacing:11.826000px;}
.wsca{word-spacing:11.940000px;}
.wsd8{word-spacing:12.300000px;}
.wscd{word-spacing:12.420000px;}
.ws10d{word-spacing:12.912000px;}
.wsee{word-spacing:13.086000px;}
.wsd0{word-spacing:13.860000px;}
.wsaf{word-spacing:14.160000px;}
.wsad{word-spacing:14.940000px;}
.ws118{word-spacing:15.324000px;}
.ws97{word-spacing:15.480000px;}
.wsea{word-spacing:15.630000px;}
.ws102{word-spacing:15.960000px;}
.wse9{word-spacing:16.080000px;}
.ws11f{word-spacing:16.140000px;}
.ws126{word-spacing:16.920000px;}
.ws11b{word-spacing:17.286000px;}
.ws70{word-spacing:17.898000px;}
.wscb{word-spacing:22.080000px;}
.ws1c{word-spacing:38.688000px;}
.ws119{word-spacing:41.820000px;}
.wsa9{word-spacing:43.286400px;}
.ws1b{word-spacing:88.638000px;}
.wsf9{word-spacing:102.024000px;}
.wsde{word-spacing:102.570000px;}
._12{margin-left:-102.570000px;}
._d{margin-left:-43.272000px;}
._16{margin-left:-28.350000px;}
._11{margin-left:-26.931600px;}
._10{margin-left:-15.984000px;}
._e{margin-left:-14.496000px;}
._13{margin-left:-10.860000px;}
._14{margin-left:-9.744000px;}
._a{margin-left:-7.800000px;}
._f{margin-left:-6.141600px;}
._7{margin-left:-4.976400px;}
._2{margin-left:-3.643200px;}
._4{margin-left:-2.076000px;}
._1{margin-left:-1.065600px;}
._0{width:1.216260px;}
._15{width:2.925600px;}
._5{width:3.960000px;}
._b{width:5.616000px;}
._8{width:7.140000px;}
._6{width:9.084000px;}
._c{width:60.338400px;}
._3{width:88.638000px;}
._9{width:101.244000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs6{font-size:83.880000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fs9{font-size:168.000600px;}
.y0{bottom:0.000000px;}
.y21{bottom:52.770450px;}
.y4{bottom:97.125005px;}
.y20{bottom:139.264499px;}
.y3f{bottom:147.964800px;}
.y2d{bottom:148.175700px;}
.y6c{bottom:148.178100px;}
.y6a{bottom:174.202350px;}
.y96{bottom:178.935750px;}
.ybf{bottom:179.319150px;}
.y18f{bottom:183.249300px;}
.y34{bottom:190.371150px;}
.y154{bottom:191.197350px;}
.y69{bottom:193.702350px;}
.y17{bottom:196.933500px;}
.y95{bottom:198.435750px;}
.ybe{bottom:198.819150px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y153{bottom:210.697350px;}
.y68{bottom:213.202350px;}
.y33{bottom:217.371150px;}
.y94{bottom:217.935750px;}
.ybd{bottom:218.319150px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y152{bottom:230.197350px;}
.y67{bottom:232.702350px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y18e{bottom:236.769300px;}
.y93{bottom:237.435750px;}
.ybc{bottom:237.819150px;}
.ye2{bottom:243.165150px;}
.y125{bottom:243.625650px;}
.y32{bottom:244.371150px;}
.y151{bottom:249.697350px;}
.y66{bottom:252.202350px;}
.y172{bottom:256.261200px;}
.y18d{bottom:256.269300px;}
.y92{bottom:256.935750px;}
.ybb{bottom:257.319150px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ye1{bottom:262.665150px;}
.y124{bottom:263.125650px;}
.y150{bottom:269.197350px;}
.y31{bottom:271.371150px;}
.y65{bottom:271.702350px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y171{bottom:275.761200px;}
.y18c{bottom:275.769300px;}
.y91{bottom:276.435750px;}
.yba{bottom:276.819150px;}
.ye0{bottom:282.165150px;}
.y123{bottom:282.625650px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y130{bottom:285.324150px;}
.y14f{bottom:288.697350px;}
.y64{bottom:291.202350px;}
.y100{bottom:293.829150px;}
.y170{bottom:295.261200px;}
.y90{bottom:295.935750px;}
.yb9{bottom:296.319150px;}
.y30{bottom:298.371150px;}
.ydf{bottom:301.665150px;}
.y122{bottom:302.125650px;}
.y18b{bottom:303.774300px;}
.y12f{bottom:304.824150px;}
.y14e{bottom:308.197350px;}
.y2c{bottom:309.630000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y63{bottom:310.702350px;}
.yff{bottom:313.329150px;}
.y8f{bottom:315.435750px;}
.yde{bottom:321.165150px;}
.y121{bottom:321.625650px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y16f{bottom:323.266200px;}
.y18a{bottom:323.274300px;}
.yb8{bottom:324.324150px;}
.y2f{bottom:325.371150px;}
.y14d{bottom:327.697350px;}
.y62{bottom:330.202350px;}
.yfe{bottom:332.829150px;}
.y8e{bottom:334.935750px;}
.y2b{bottom:335.280000px;}
.y16e{bottom:342.766200px;}
.yb7{bottom:343.824150px;}
.y14c{bottom:347.197350px;}
.ye{bottom:348.133500px;}
.ydd{bottom:349.168800px;}
.y61{bottom:349.702350px;}
.y189{bottom:351.279300px;}
.yfd{bottom:352.329150px;}
.y2e{bottom:352.371150px;}
.y8d{bottom:354.435750px;}
.yb6{bottom:363.324150px;}
.y120{bottom:366.630300px;}
.y14b{bottom:366.697350px;}
.y16d{bottom:370.771200px;}
.y188{bottom:370.779300px;}
.yfc{bottom:371.829150px;}
.y8c{bottom:373.935750px;}
.y60{bottom:375.577350px;}
.yb5{bottom:382.824150px;}
.y14a{bottom:386.197350px;}
.y2a{bottom:386.553450px;}
.yd{bottom:386.785499px;}
.y16c{bottom:390.271200px;}
.yfb{bottom:391.329150px;}
.y8b{bottom:393.435750px;}
.y11f{bottom:393.637800px;}
.ydc{bottom:394.427700px;}
.y5f{bottom:395.077350px;}
.yb4{bottom:402.324150px;}
.y149{bottom:405.697350px;}
.yc{bottom:408.044999px;}
.y16b{bottom:409.771200px;}
.yfa{bottom:410.829150px;}
.y8a{bottom:412.935750px;}
.ydb{bottom:413.927700px;}
.y5e{bottom:414.577350px;}
.y187{bottom:415.791300px;}
.yb3{bottom:421.824150px;}
.y148{bottom:425.197350px;}
.y16a{bottom:429.271200px;}
.yf9{bottom:430.329150px;}
.y29{bottom:432.372900px;}
.y89{bottom:432.435750px;}
.yda{bottom:433.427700px;}
.y5d{bottom:434.077350px;}
.yb2{bottom:441.324150px;}
.y147{bottom:444.697350px;}
.y12e{bottom:449.829150px;}
.y88{bottom:451.935750px;}
.yd9{bottom:452.927700px;}
.y5c{bottom:453.577350px;}
.y11e{bottom:454.651500px;}
.y169{bottom:457.276200px;}
.y28{bottom:457.935330px;}
.yf8{bottom:458.334150px;}
.yb1{bottom:460.824150px;}
.y146{bottom:464.197350px;}
.y12d{bottom:469.329150px;}
.yd8{bottom:472.427700px;}
.y11d{bottom:474.151500px;}
.y168{bottom:476.776200px;}
.y186{bottom:476.799150px;}
.y87{bottom:477.810750px;}
.yf7{bottom:477.834150px;}
.y5b{bottom:479.452350px;}
.yb0{bottom:480.324150px;}
.y145{bottom:483.697350px;}
.yb{bottom:484.864502px;}
.y12c{bottom:488.829150px;}
.yd7{bottom:491.927700px;}
.y11c{bottom:493.651500px;}
.y167{bottom:496.276200px;}
.y185{bottom:496.299150px;}
.y86{bottom:497.310750px;}
.yf6{bottom:497.334150px;}
.y5a{bottom:498.952350px;}
.yaf{bottom:499.824150px;}
.ya{bottom:502.864502px;}
.y144{bottom:503.197350px;}
.y27{bottom:503.754780px;}
.y12b{bottom:508.329150px;}
.yd6{bottom:511.427700px;}
.y11b{bottom:513.151500px;}
.y184{bottom:515.799150px;}
.y85{bottom:516.810750px;}
.yf5{bottom:516.834150px;}
.y59{bottom:518.452350px;}
.yae{bottom:519.324150px;}
.y9{bottom:520.864502px;}
.y143{bottom:522.697350px;}
.y166{bottom:524.281200px;}
.y12a{bottom:527.829150px;}
.yd5{bottom:530.927700px;}
.y11a{bottom:532.651500px;}
.y183{bottom:535.299150px;}
.y84{bottom:536.310750px;}
.yf4{bottom:536.334150px;}
.y58{bottom:537.952350px;}
.yad{bottom:538.824150px;}
.y8{bottom:538.864499px;}
.y142{bottom:542.197350px;}
.y165{bottom:543.781200px;}
.y129{bottom:547.329150px;}
.yd4{bottom:550.427700px;}
.y119{bottom:552.151500px;}
.y83{bottom:555.810750px;}
.yf3{bottom:555.834150px;}
.y7{bottom:556.864499px;}
.yac{bottom:558.324150px;}
.y141{bottom:561.697350px;}
.y182{bottom:563.304150px;}
.y57{bottom:563.827350px;}
.y128{bottom:566.829150px;}
.yd3{bottom:569.927700px;}
.y118{bottom:571.651500px;}
.y164{bottom:571.786200px;}
.y82{bottom:575.310750px;}
.yf2{bottom:575.334150px;}
.yab{bottom:577.824150px;}
.y140{bottom:581.197350px;}
.y181{bottom:582.804150px;}
.y56{bottom:583.327350px;}
.y127{bottom:586.329150px;}
.yd2{bottom:589.427700px;}
.y117{bottom:591.151500px;}
.y163{bottom:591.286200px;}
.y81{bottom:594.810750px;}
.yf1{bottom:594.834150px;}
.yaa{bottom:597.324150px;}
.y13f{bottom:600.697350px;}
.y180{bottom:602.304150px;}
.y55{bottom:602.827350px;}
.y126{bottom:605.829150px;}
.yd1{bottom:608.927700px;}
.y116{bottom:610.651500px;}
.y80{bottom:614.310750px;}
.yf0{bottom:614.334150px;}
.ya9{bottom:616.824150px;}
.y162{bottom:619.291200px;}
.y13e{bottom:620.197350px;}
.y54{bottom:622.327350px;}
.y115{bottom:630.151500px;}
.y17f{bottom:630.309150px;}
.y7f{bottom:633.810750px;}
.yef{bottom:633.834150px;}
.ya8{bottom:636.324150px;}
.yd0{bottom:636.932700px;}
.y3d{bottom:638.544000px;}
.y161{bottom:638.791200px;}
.y13d{bottom:639.697350px;}
.y53{bottom:641.827350px;}
.y6{bottom:645.510000px;}
.y114{bottom:649.651500px;}
.yee{bottom:653.334150px;}
.ya7{bottom:655.824150px;}
.ycf{bottom:656.432700px;}
.y160{bottom:658.291200px;}
.y17e{bottom:658.314150px;}
.y13c{bottom:659.197350px;}
.y26{bottom:661.260450px;}
.y52{bottom:661.327350px;}
.y3c{bottom:665.538000px;}
.y5{bottom:666.771000px;}
.y113{bottom:669.151500px;}
.yed{bottom:672.834150px;}
.yce{bottom:675.932700px;}
.y17d{bottom:677.814150px;}
.y7e{bottom:678.822900px;}
.y51{bottom:680.827350px;}
.ya6{bottom:683.829150px;}
.y15f{bottom:686.296200px;}
.y13b{bottom:687.202350px;}
.y112{bottom:688.651500px;}
.yec{bottom:692.334150px;}
.y3b{bottom:692.532000px;}
.ycd{bottom:695.432700px;}
.y17c{bottom:697.314150px;}
.y50{bottom:700.327350px;}
.ya5{bottom:703.329150px;}
.y15e{bottom:705.796200px;}
.y13a{bottom:706.702350px;}
.yeb{bottom:711.834150px;}
.ycc{bottom:714.932700px;}
.y111{bottom:716.656500px;}
.y17b{bottom:716.814150px;}
.y3a{bottom:719.526000px;}
.y4f{bottom:719.827350px;}
.ya4{bottom:722.829150px;}
.y15d{bottom:725.296200px;}
.y139{bottom:726.202350px;}
.yea{bottom:731.334150px;}
.y7d{bottom:733.464150px;}
.ycb{bottom:734.432700px;}
.y110{bottom:736.156500px;}
.y4e{bottom:739.327350px;}
.ya3{bottom:742.329150px;}
.y15c{bottom:744.796200px;}
.y17a{bottom:744.819150px;}
.y138{bottom:745.702350px;}
.y39{bottom:746.520000px;}
.ye9{bottom:750.834150px;}
.y3{bottom:752.599495px;}
.y7c{bottom:752.964150px;}
.y10f{bottom:755.656500px;}
.y4d{bottom:758.827350px;}
.ya2{bottom:761.829150px;}
.yca{bottom:762.437700px;}
.y179{bottom:764.319150px;}
.y137{bottom:765.202350px;}
.ye8{bottom:770.334150px;}
.y7b{bottom:772.464150px;}
.y15b{bottom:772.801200px;}
.y38{bottom:773.514000px;}
.y10e{bottom:775.156500px;}
.y4c{bottom:778.327350px;}
.ya1{bottom:781.329150px;}
.yc9{bottom:781.937700px;}
.y178{bottom:783.819150px;}
.y136{bottom:784.702350px;}
.y25{bottom:784.830000px;}
.ye7{bottom:789.834150px;}
.y7a{bottom:791.964150px;}
.y10d{bottom:794.656500px;}
.y4b{bottom:797.827350px;}
.y15a{bottom:800.806200px;}
.yc8{bottom:801.437700px;}
.y135{bottom:804.202350px;}
.ya0{bottom:809.334150px;}
.y79{bottom:811.464150px;}
.y177{bottom:811.824150px;}
.y37{bottom:813.262500px;}
.y10c{bottom:814.156500px;}
.y4a{bottom:817.327350px;}
.ye6{bottom:817.839150px;}
.y159{bottom:820.306200px;}
.yc7{bottom:820.937700px;}
.y134{bottom:823.702350px;}
.y9f{bottom:828.834150px;}
.y24{bottom:830.550000px;}
.y78{bottom:830.964150px;}
.y176{bottom:831.324150px;}
.y10b{bottom:833.656500px;}
.y49{bottom:836.827350px;}
.ye5{bottom:837.339150px;}
.yc6{bottom:840.437700px;}
.y133{bottom:843.202350px;}
.y158{bottom:848.311200px;}
.y9e{bottom:848.334150px;}
.y77{bottom:850.464150px;}
.y10a{bottom:853.156500px;}
.y48{bottom:856.327350px;}
.ye4{bottom:856.839150px;}
.y175{bottom:859.329150px;}
.yc5{bottom:859.937700px;}
.y132{bottom:862.702350px;}
.y157{bottom:867.811200px;}
.y9d{bottom:867.834150px;}
.y76{bottom:869.964150px;}
.y109{bottom:872.656500px;}
.y47{bottom:875.827350px;}
.ye3{bottom:876.339150px;}
.y174{bottom:878.829150px;}
.y2{bottom:879.369000px;}
.y131{bottom:882.202350px;}
.y156{bottom:887.311200px;}
.y9c{bottom:887.334150px;}
.yc4{bottom:887.942850px;}
.y23{bottom:890.850450px;}
.y108{bottom:892.156500px;}
.y75{bottom:895.839150px;}
.y173{bottom:898.329150px;}
.y46{bottom:901.702350px;}
.y9b{bottom:906.834150px;}
.y74{bottom:915.339150px;}
.y107{bottom:920.161500px;}
.y45{bottom:921.202350px;}
.y22{bottom:922.170450px;}
.y9a{bottom:926.334150px;}
.y155{bottom:932.323350px;}
.yc3{bottom:933.202350px;}
.y73{bottom:934.839150px;}
.y106{bottom:939.661500px;}
.y44{bottom:940.702350px;}
.y99{bottom:945.834150px;}
.yc2{bottom:952.702350px;}
.y72{bottom:954.339150px;}
.y105{bottom:959.161500px;}
.y43{bottom:960.202350px;}
.y98{bottom:965.334150px;}
.y1{bottom:966.726000px;}
.yc1{bottom:972.202350px;}
.y71{bottom:973.839150px;}
.y104{bottom:978.661500px;}
.y42{bottom:979.702350px;}
.y97{bottom:984.834150px;}
.y35{bottom:990.544500px;}
.y70{bottom:993.339150px;}
.y103{bottom:998.161500px;}
.y41{bottom:999.202350px;}
.y6f{bottom:1012.839150px;}
.yc0{bottom:1017.207150px;}
.y102{bottom:1017.661500px;}
.y6e{bottom:1032.339150px;}
.y40{bottom:1044.214650px;}
.y101{bottom:1045.666500px;}
.y6d{bottom:1051.839150px;}
.y36{bottom:1068.006000px;}
.y3e{bottom:1106.884650px;}
.y6b{bottom:1107.735150px;}
.h7{height:32.130000px;}
.h8{height:32.730469px;}
.hd{height:40.986000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h13{height:48.780000px;}
.h11{height:49.962000px;}
.h10{height:53.658000px;}
.he{height:54.648000px;}
.h2{height:55.080000px;}
.hc{height:55.906348px;}
.h12{height:59.202000px;}
.h9{height:60.206836px;}
.hb{height:67.824844px;}
.h5{height:78.030000px;}
.ha{height:87.328125px;}
.h4{height:119.055004px;}
.hf{height:127.176454px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.830000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:138.132750px;}
.x8{left:163.647750px;}
.x5{left:167.670000px;}
.xb{left:180.662250px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x9{left:625.300200px;}
.x6{left:722.566350px;}
.xa{left:724.631850px;}
@media print{
.v1{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-1.632000pt;}
.ls4c{letter-spacing:-1.344000pt;}
.ls3c{letter-spacing:-0.720000pt;}
.ls48{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.111840pt;}
.ls1d{letter-spacing:-0.096928pt;}
.ls17{letter-spacing:-0.059648pt;}
.ls1a{letter-spacing:-0.052192pt;}
.ls1f{letter-spacing:-0.037280pt;}
.ls13{letter-spacing:-0.029824pt;}
.ls30{letter-spacing:-0.024000pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls1c{letter-spacing:-0.014912pt;}
.ls1b{letter-spacing:-0.007456pt;}
.ls14{letter-spacing:-0.005333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008512pt;}
.ls5{letter-spacing:0.009600pt;}
.ls10{letter-spacing:0.014912pt;}
.lsa{letter-spacing:0.029824pt;}
.ls6{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.037280pt;}
.ls23{letter-spacing:0.037333pt;}
.ls2{letter-spacing:0.042560pt;}
.lsd{letter-spacing:0.044736pt;}
.ls1e{letter-spacing:0.052192pt;}
.ls21{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.067104pt;}
.ls7{letter-spacing:0.069333pt;}
.ls8{letter-spacing:0.074560pt;}
.ls20{letter-spacing:0.074667pt;}
.lsc{letter-spacing:0.089472pt;}
.ls18{letter-spacing:0.096928pt;}
.lsb{letter-spacing:0.126752pt;}
.ls3{letter-spacing:0.149120pt;}
.ls22{letter-spacing:0.149333pt;}
.ls11{letter-spacing:0.171488pt;}
.ls4{letter-spacing:0.186400pt;}
.ls16{letter-spacing:0.202667pt;}
.ls49{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.309333pt;}
.ls41{letter-spacing:0.312480pt;}
.ls9{letter-spacing:0.447360pt;}
.ls3f{letter-spacing:0.453333pt;}
.ls12{letter-spacing:0.477184pt;}
.ls37{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.506667pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.517333pt;}
.ls2f{letter-spacing:0.522667pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls29{letter-spacing:0.533333pt;}
.ls2d{letter-spacing:0.538667pt;}
.ls45{letter-spacing:0.581333pt;}
.ls25{letter-spacing:0.586667pt;}
.ls32{letter-spacing:0.592000pt;}
.ls39{letter-spacing:0.627200pt;}
.ls24{letter-spacing:0.633600pt;}
.ls3e{letter-spacing:0.640000pt;}
.ls4a{letter-spacing:0.651733pt;}
.ls38{letter-spacing:0.672533pt;}
.ls31{letter-spacing:0.679467pt;}
.ls28{letter-spacing:0.693333pt;}
.ls47{letter-spacing:1.120000pt;}
.ls27{letter-spacing:1.433605pt;}
.ls4b{letter-spacing:1.861333pt;}
.ls43{letter-spacing:2.560000pt;}
.ls35{letter-spacing:3.306667pt;}
.ls34{letter-spacing:4.693333pt;}
.ls40{letter-spacing:5.226667pt;}
.ls42{letter-spacing:5.280000pt;}
.ls33{letter-spacing:5.386667pt;}
.ls44{letter-spacing:6.133333pt;}
.ls3d{letter-spacing:6.186667pt;}
.ls36{letter-spacing:16.426667pt;}
.ws6{word-spacing:-74.560000pt;}
.ws12{word-spacing:-74.463072pt;}
.wsc9{word-spacing:-25.472000pt;}
.ws113{word-spacing:-19.649067pt;}
.ws115{word-spacing:-12.634667pt;}
.ws17{word-spacing:-12.437333pt;}
.ws114{word-spacing:-11.306667pt;}
.ws1f{word-spacing:-10.773333pt;}
.ws1e{word-spacing:-10.757333pt;}
.ws1d{word-spacing:-10.752000pt;}
.ws20{word-spacing:-10.746667pt;}
.ws90{word-spacing:-10.506667pt;}
.ws5f{word-spacing:-4.954667pt;}
.ws105{word-spacing:-4.373333pt;}
.ws49{word-spacing:-3.840000pt;}
.ws8a{word-spacing:-3.573333pt;}
.ws5e{word-spacing:-3.360000pt;}
.ws4b{word-spacing:-3.248000pt;}
.ws7f{word-spacing:-2.506667pt;}
.ws80{word-spacing:-2.501333pt;}
.ws63{word-spacing:-2.400000pt;}
.ws101{word-spacing:-2.341333pt;}
.wsc4{word-spacing:-2.186667pt;}
.wsef{word-spacing:-2.128000pt;}
.ws29{word-spacing:-2.080000pt;}
.ws4a{word-spacing:-2.026667pt;}
.wsf5{word-spacing:-2.021333pt;}
.wsd1{word-spacing:-1.978667pt;}
.ws12e{word-spacing:-1.914667pt;}
.ws33{word-spacing:-1.866667pt;}
.ws34{word-spacing:-1.861333pt;}
.ws3c{word-spacing:-1.706667pt;}
.ws55{word-spacing:-1.701333pt;}
.ws99{word-spacing:-1.594667pt;}
.ws41{word-spacing:-1.541333pt;}
.ws36{word-spacing:-1.440000pt;}
.ws86{word-spacing:-1.386667pt;}
.wsc5{word-spacing:-1.381333pt;}
.ws84{word-spacing:-1.333333pt;}
.ws66{word-spacing:-1.280000pt;}
.ws116{word-spacing:-1.226667pt;}
.ws2f{word-spacing:-1.178667pt;}
.ws3a{word-spacing:-1.168000pt;}
.wsb6{word-spacing:-1.162667pt;}
.ws4f{word-spacing:-1.120000pt;}
.ws54{word-spacing:-1.066667pt;}
.wsfd{word-spacing:-0.960000pt;}
.wsa5{word-spacing:-0.853333pt;}
.ws61{word-spacing:-0.800000pt;}
.ws73{word-spacing:-0.746667pt;}
.ws45{word-spacing:-0.741333pt;}
.ws5b{word-spacing:-0.693333pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.634667pt;}
.wsba{word-spacing:-0.592000pt;}
.wsd4{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.474667pt;}
.wsf8{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.400000pt;}
.ws8f{word-spacing:-0.373333pt;}
.ws83{word-spacing:-0.346667pt;}
.ws74{word-spacing:-0.266667pt;}
.ws1{word-spacing:-0.260960pt;}
.ws13{word-spacing:-0.246048pt;}
.ws89{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.201312pt;}
.ws8{word-spacing:-0.171488pt;}
.wse{word-spacing:-0.164032pt;}
.wsf6{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.149120pt;}
.ws5{word-spacing:-0.143893pt;}
.wsf{word-spacing:-0.119296pt;}
.ws10{word-spacing:-0.111840pt;}
.ws4{word-spacing:-0.106560pt;}
.ws2{word-spacing:-0.105600pt;}
.ws9{word-spacing:-0.104384pt;}
.ws11{word-spacing:-0.089472pt;}
.ws3{word-spacing:-0.069227pt;}
.wsb{word-spacing:-0.067104pt;}
.ws8c{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.063840pt;}
.wsd{word-spacing:-0.059648pt;}
.ws69{word-spacing:-0.053333pt;}
.ws71{word-spacing:-0.048000pt;}
.ws14{word-spacing:-0.037280pt;}
.ws15{word-spacing:-0.029792pt;}
.ws30{word-spacing:-0.026667pt;}
.wsa{word-spacing:-0.022368pt;}
.ws0{word-spacing:0.000000pt;}
.ws38{word-spacing:0.005333pt;}
.ws1a{word-spacing:0.005867pt;}
.ws18{word-spacing:0.006400pt;}
.ws26{word-spacing:0.010667pt;}
.ws19{word-spacing:0.012800pt;}
.ws56{word-spacing:0.013867pt;}
.ws91{word-spacing:0.020800pt;}
.ws11c{word-spacing:0.021333pt;}
.ws43{word-spacing:0.058667pt;}
.wsc6{word-spacing:0.090667pt;}
.ws62{word-spacing:0.213333pt;}
.wsda{word-spacing:0.341333pt;}
.ws10a{word-spacing:0.432000pt;}
.ws122{word-spacing:0.474667pt;}
.ws120{word-spacing:0.533333pt;}
.ws106{word-spacing:0.586667pt;}
.ws59{word-spacing:0.592000pt;}
.ws67{word-spacing:0.693333pt;}
.ws2d{word-spacing:0.746667pt;}
.wsbd{word-spacing:0.800000pt;}
.ws128{word-spacing:0.880000pt;}
.wsaa{word-spacing:0.906667pt;}
.ws98{word-spacing:0.933333pt;}
.wsbb{word-spacing:0.960000pt;}
.ws2b{word-spacing:0.965333pt;}
.wsf0{word-spacing:1.013333pt;}
.wse4{word-spacing:1.066667pt;}
.wsfb{word-spacing:1.072000pt;}
.ws77{word-spacing:1.120000pt;}
.ws32{word-spacing:1.125333pt;}
.wsa2{word-spacing:1.157333pt;}
.ws21{word-spacing:1.173333pt;}
.ws60{word-spacing:1.226667pt;}
.ws28{word-spacing:1.285333pt;}
.ws79{word-spacing:1.376000pt;}
.ws44{word-spacing:1.386667pt;}
.ws94{word-spacing:1.493333pt;}
.ws31{word-spacing:1.546667pt;}
.ws9a{word-spacing:1.664000pt;}
.wsc0{word-spacing:1.738667pt;}
.ws108{word-spacing:1.760000pt;}
.wsd5{word-spacing:1.765333pt;}
.ws10b{word-spacing:1.813333pt;}
.ws11e{word-spacing:1.866667pt;}
.ws4c{word-spacing:1.973333pt;}
.ws7d{word-spacing:1.978667pt;}
.ws72{word-spacing:2.026667pt;}
.ws8b{word-spacing:2.032000pt;}
.wsd9{word-spacing:2.080000pt;}
.wsec{word-spacing:2.128000pt;}
.ws9d{word-spacing:2.133333pt;}
.ws9c{word-spacing:2.138667pt;}
.ws9e{word-spacing:2.240000pt;}
.ws6a{word-spacing:2.346667pt;}
.ws7a{word-spacing:2.448000pt;}
.ws12c{word-spacing:2.506667pt;}
.ws6d{word-spacing:2.618667pt;}
.ws7e{word-spacing:2.666667pt;}
.ws3b{word-spacing:2.672000pt;}
.wse8{word-spacing:2.725333pt;}
.ws6b{word-spacing:2.773333pt;}
.ws6c{word-spacing:2.778667pt;}
.ws4e{word-spacing:2.826667pt;}
.wsab{word-spacing:2.880000pt;}
.wsdd{word-spacing:2.885333pt;}
.ws75{word-spacing:2.938667pt;}
.ws85{word-spacing:2.986667pt;}
.ws47{word-spacing:3.050667pt;}
.ws23{word-spacing:3.077333pt;}
.ws51{word-spacing:3.093333pt;}
.wsb3{word-spacing:3.114667pt;}
.ws129{word-spacing:3.200000pt;}
.wse0{word-spacing:3.205333pt;}
.ws103{word-spacing:3.306667pt;}
.ws8d{word-spacing:3.312000pt;}
.ws81{word-spacing:3.360000pt;}
.ws10c{word-spacing:3.392000pt;}
.ws40{word-spacing:3.472000pt;}
.wsed{word-spacing:3.520000pt;}
.ws4d{word-spacing:3.525333pt;}
.wsc7{word-spacing:3.578667pt;}
.wsae{word-spacing:3.685333pt;}
.ws78{word-spacing:3.733333pt;}
.ws11d{word-spacing:3.786667pt;}
.wsbe{word-spacing:3.818667pt;}
.ws3f{word-spacing:3.840000pt;}
.wse5{word-spacing:3.946667pt;}
.ws104{word-spacing:3.957333pt;}
.wsb5{word-spacing:4.000000pt;}
.ws127{word-spacing:4.005333pt;}
.wsc3{word-spacing:4.112000pt;}
.ws68{word-spacing:4.160000pt;}
.ws9f{word-spacing:4.186667pt;}
.wsb4{word-spacing:4.213333pt;}
.wsa0{word-spacing:4.218667pt;}
.wsf1{word-spacing:4.266667pt;}
.ws109{word-spacing:4.272000pt;}
.wsc8{word-spacing:4.320000pt;}
.ws27{word-spacing:4.325333pt;}
.ws7c{word-spacing:4.373333pt;}
.ws93{word-spacing:4.426667pt;}
.ws2c{word-spacing:4.485333pt;}
.wse3{word-spacing:4.544000pt;}
.wsb0{word-spacing:4.586667pt;}
.ws11a{word-spacing:4.666667pt;}
.wsd2{word-spacing:4.682667pt;}
.wsd3{word-spacing:4.688000pt;}
.wsdc{word-spacing:4.693333pt;}
.ws22{word-spacing:4.746667pt;}
.wse2{word-spacing:4.757333pt;}
.wsdf{word-spacing:4.805333pt;}
.ws65{word-spacing:4.853333pt;}
.ws64{word-spacing:4.864000pt;}
.wsfa{word-spacing:4.906667pt;}
.ws50{word-spacing:5.013333pt;}
.wsa3{word-spacing:5.056000pt;}
.ws111{word-spacing:5.066667pt;}
.ws112{word-spacing:5.120000pt;}
.wsa6{word-spacing:5.173333pt;}
.wsd7{word-spacing:5.226667pt;}
.ws35{word-spacing:5.280000pt;}
.wsa8{word-spacing:5.338667pt;}
.ws7b{word-spacing:5.344000pt;}
.wsa7{word-spacing:5.386667pt;}
.ws39{word-spacing:5.392000pt;}
.ws125{word-spacing:5.413333pt;}
.ws130{word-spacing:5.418667pt;}
.ws82{word-spacing:5.445333pt;}
.ws48{word-spacing:5.546667pt;}
.ws5c{word-spacing:5.552000pt;}
.wse7{word-spacing:5.600000pt;}
.wsb9{word-spacing:5.653333pt;}
.ws131{word-spacing:5.658667pt;}
.wsf4{word-spacing:5.685333pt;}
.ws9b{word-spacing:5.712000pt;}
.ws3e{word-spacing:5.717333pt;}
.ws5d{word-spacing:5.733333pt;}
.ws52{word-spacing:5.760000pt;}
.wsc2{word-spacing:5.813333pt;}
.wseb{word-spacing:5.866667pt;}
.wsac{word-spacing:5.925333pt;}
.wsa1{word-spacing:5.946667pt;}
.wsb7{word-spacing:6.000000pt;}
.ws121{word-spacing:6.080000pt;}
.ws6f{word-spacing:6.192000pt;}
.ws12f{word-spacing:6.240000pt;}
.ws107{word-spacing:6.346667pt;}
.ws42{word-spacing:6.400000pt;}
.ws6e{word-spacing:6.421333pt;}
.wsbf{word-spacing:6.458667pt;}
.wscc{word-spacing:6.613333pt;}
.wsfe{word-spacing:6.618667pt;}
.ws12d{word-spacing:6.661333pt;}
.wsfc{word-spacing:6.773333pt;}
.ws58{word-spacing:6.778667pt;}
.wsff{word-spacing:7.045333pt;}
.ws117{word-spacing:7.146667pt;}
.ws95{word-spacing:7.253333pt;}
.ws100{word-spacing:7.258667pt;}
.ws96{word-spacing:7.264000pt;}
.wsc1{word-spacing:7.360000pt;}
.ws53{word-spacing:7.370667pt;}
.ws76{word-spacing:7.418667pt;}
.ws12b{word-spacing:7.573333pt;}
.ws12a{word-spacing:7.680000pt;}
.wse1{word-spacing:7.706667pt;}
.wsb2{word-spacing:7.786667pt;}
.wsce{word-spacing:7.946667pt;}
.ws2a{word-spacing:8.058667pt;}
.ws8e{word-spacing:8.213333pt;}
.ws37{word-spacing:8.234667pt;}
.wsf3{word-spacing:8.266667pt;}
.ws92{word-spacing:8.288000pt;}
.wsf7{word-spacing:8.320000pt;}
.ws10e{word-spacing:8.325333pt;}
.ws2e{word-spacing:8.389333pt;}
.wsf2{word-spacing:8.432000pt;}
.ws5a{word-spacing:8.794667pt;}
.wsdb{word-spacing:9.018667pt;}
.wsb1{word-spacing:9.024000pt;}
.ws57{word-spacing:9.066667pt;}
.ws10f{word-spacing:9.285333pt;}
.ws123{word-spacing:9.317333pt;}
.wsbc{word-spacing:9.386667pt;}
.wse6{word-spacing:9.498667pt;}
.wsd6{word-spacing:9.653333pt;}
.ws124{word-spacing:9.706667pt;}
.ws24{word-spacing:9.760000pt;}
.ws110{word-spacing:10.026667pt;}
.wsa4{word-spacing:10.245333pt;}
.wscf{word-spacing:10.506667pt;}
.wsb8{word-spacing:10.512000pt;}
.wsca{word-spacing:10.613333pt;}
.wsd8{word-spacing:10.933333pt;}
.wscd{word-spacing:11.040000pt;}
.ws10d{word-spacing:11.477333pt;}
.wsee{word-spacing:11.632000pt;}
.wsd0{word-spacing:12.320000pt;}
.wsaf{word-spacing:12.586667pt;}
.wsad{word-spacing:13.280000pt;}
.ws118{word-spacing:13.621333pt;}
.ws97{word-spacing:13.760000pt;}
.wsea{word-spacing:13.893333pt;}
.ws102{word-spacing:14.186667pt;}
.wse9{word-spacing:14.293333pt;}
.ws11f{word-spacing:14.346667pt;}
.ws126{word-spacing:15.040000pt;}
.ws11b{word-spacing:15.365333pt;}
.ws70{word-spacing:15.909333pt;}
.wscb{word-spacing:19.626667pt;}
.ws1c{word-spacing:34.389333pt;}
.ws119{word-spacing:37.173333pt;}
.wsa9{word-spacing:38.476800pt;}
.ws1b{word-spacing:78.789333pt;}
.wsf9{word-spacing:90.688000pt;}
.wsde{word-spacing:91.173333pt;}
._12{margin-left:-91.173333pt;}
._d{margin-left:-38.464000pt;}
._16{margin-left:-25.200000pt;}
._11{margin-left:-23.939200pt;}
._10{margin-left:-14.208000pt;}
._e{margin-left:-12.885333pt;}
._13{margin-left:-9.653333pt;}
._14{margin-left:-8.661333pt;}
._a{margin-left:-6.933333pt;}
._f{margin-left:-5.459200pt;}
._7{margin-left:-4.423467pt;}
._2{margin-left:-3.238400pt;}
._4{margin-left:-1.845333pt;}
._1{margin-left:-0.947200pt;}
._0{width:1.081120pt;}
._15{width:2.600533pt;}
._5{width:3.520000pt;}
._b{width:4.992000pt;}
._8{width:6.346667pt;}
._6{width:8.074667pt;}
._c{width:53.634133pt;}
._3{width:78.789333pt;}
._9{width:89.994667pt;}
.fsc{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs6{font-size:74.560000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fs9{font-size:149.333867pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:46.907067pt;}
.y4{bottom:86.333337pt;}
.y20{bottom:123.790666pt;}
.y3f{bottom:131.524267pt;}
.y2d{bottom:131.711733pt;}
.y6c{bottom:131.713867pt;}
.y6a{bottom:154.846533pt;}
.y96{bottom:159.054000pt;}
.ybf{bottom:159.394800pt;}
.y18f{bottom:162.888267pt;}
.y34{bottom:169.218800pt;}
.y154{bottom:169.953200pt;}
.y69{bottom:172.179867pt;}
.y17{bottom:175.052000pt;}
.y95{bottom:176.387333pt;}
.ybe{bottom:176.728133pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y153{bottom:187.286533pt;}
.y68{bottom:189.513200pt;}
.y33{bottom:193.218800pt;}
.y94{bottom:193.720667pt;}
.ybd{bottom:194.061467pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y152{bottom:204.619867pt;}
.y67{bottom:206.846533pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y18e{bottom:210.461600pt;}
.y93{bottom:211.054000pt;}
.ybc{bottom:211.394800pt;}
.ye2{bottom:216.146800pt;}
.y125{bottom:216.556133pt;}
.y32{bottom:217.218800pt;}
.y151{bottom:221.953200pt;}
.y66{bottom:224.179867pt;}
.y172{bottom:227.787733pt;}
.y18d{bottom:227.794933pt;}
.y92{bottom:228.387333pt;}
.ybb{bottom:228.728133pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ye1{bottom:233.480133pt;}
.y124{bottom:233.889467pt;}
.y150{bottom:239.286533pt;}
.y31{bottom:241.218800pt;}
.y65{bottom:241.513200pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y171{bottom:245.121067pt;}
.y18c{bottom:245.128267pt;}
.y91{bottom:245.720667pt;}
.yba{bottom:246.061467pt;}
.ye0{bottom:250.813467pt;}
.y123{bottom:251.222800pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y130{bottom:253.621467pt;}
.y14f{bottom:256.619867pt;}
.y64{bottom:258.846533pt;}
.y100{bottom:261.181467pt;}
.y170{bottom:262.454400pt;}
.y90{bottom:263.054000pt;}
.yb9{bottom:263.394800pt;}
.y30{bottom:265.218800pt;}
.ydf{bottom:268.146800pt;}
.y122{bottom:268.556133pt;}
.y18b{bottom:270.021600pt;}
.y12f{bottom:270.954800pt;}
.y14e{bottom:273.953200pt;}
.y2c{bottom:275.226667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y63{bottom:276.179867pt;}
.yff{bottom:278.514800pt;}
.y8f{bottom:280.387333pt;}
.yde{bottom:285.480133pt;}
.y121{bottom:285.889467pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y16f{bottom:287.347733pt;}
.y18a{bottom:287.354933pt;}
.yb8{bottom:288.288133pt;}
.y2f{bottom:289.218800pt;}
.y14d{bottom:291.286533pt;}
.y62{bottom:293.513200pt;}
.yfe{bottom:295.848133pt;}
.y8e{bottom:297.720667pt;}
.y2b{bottom:298.026667pt;}
.y16e{bottom:304.681067pt;}
.yb7{bottom:305.621467pt;}
.y14c{bottom:308.619867pt;}
.ye{bottom:309.452000pt;}
.ydd{bottom:310.372267pt;}
.y61{bottom:310.846533pt;}
.y189{bottom:312.248267pt;}
.yfd{bottom:313.181467pt;}
.y2e{bottom:313.218800pt;}
.y8d{bottom:315.054000pt;}
.yb6{bottom:322.954800pt;}
.y120{bottom:325.893600pt;}
.y14b{bottom:325.953200pt;}
.y16d{bottom:329.574400pt;}
.y188{bottom:329.581600pt;}
.yfc{bottom:330.514800pt;}
.y8c{bottom:332.387333pt;}
.y60{bottom:333.846533pt;}
.yb5{bottom:340.288133pt;}
.y14a{bottom:343.286533pt;}
.y2a{bottom:343.603067pt;}
.yd{bottom:343.809333pt;}
.y16c{bottom:346.907733pt;}
.yfb{bottom:347.848133pt;}
.y8b{bottom:349.720667pt;}
.y11f{bottom:349.900267pt;}
.ydc{bottom:350.602400pt;}
.y5f{bottom:351.179867pt;}
.yb4{bottom:357.621467pt;}
.y149{bottom:360.619867pt;}
.yc{bottom:362.706666pt;}
.y16b{bottom:364.241067pt;}
.yfa{bottom:365.181467pt;}
.y8a{bottom:367.054000pt;}
.ydb{bottom:367.935733pt;}
.y5e{bottom:368.513200pt;}
.y187{bottom:369.592267pt;}
.yb3{bottom:374.954800pt;}
.y148{bottom:377.953200pt;}
.y16a{bottom:381.574400pt;}
.yf9{bottom:382.514800pt;}
.y29{bottom:384.331467pt;}
.y89{bottom:384.387333pt;}
.yda{bottom:385.269067pt;}
.y5d{bottom:385.846533pt;}
.yb2{bottom:392.288133pt;}
.y147{bottom:395.286533pt;}
.y12e{bottom:399.848133pt;}
.y88{bottom:401.720667pt;}
.yd9{bottom:402.602400pt;}
.y5c{bottom:403.179867pt;}
.y11e{bottom:404.134667pt;}
.y169{bottom:406.467733pt;}
.y28{bottom:407.053627pt;}
.yf8{bottom:407.408133pt;}
.yb1{bottom:409.621467pt;}
.y146{bottom:412.619867pt;}
.y12d{bottom:417.181467pt;}
.yd8{bottom:419.935733pt;}
.y11d{bottom:421.468000pt;}
.y168{bottom:423.801067pt;}
.y186{bottom:423.821467pt;}
.y87{bottom:424.720667pt;}
.yf7{bottom:424.741467pt;}
.y5b{bottom:426.179867pt;}
.yb0{bottom:426.954800pt;}
.y145{bottom:429.953200pt;}
.yb{bottom:430.990669pt;}
.y12c{bottom:434.514800pt;}
.yd7{bottom:437.269067pt;}
.y11c{bottom:438.801333pt;}
.y167{bottom:441.134400pt;}
.y185{bottom:441.154800pt;}
.y86{bottom:442.054000pt;}
.yf6{bottom:442.074800pt;}
.y5a{bottom:443.513200pt;}
.yaf{bottom:444.288133pt;}
.ya{bottom:446.990669pt;}
.y144{bottom:447.286533pt;}
.y27{bottom:447.782027pt;}
.y12b{bottom:451.848133pt;}
.yd6{bottom:454.602400pt;}
.y11b{bottom:456.134667pt;}
.y184{bottom:458.488133pt;}
.y85{bottom:459.387333pt;}
.yf5{bottom:459.408133pt;}
.y59{bottom:460.846533pt;}
.yae{bottom:461.621467pt;}
.y9{bottom:462.990669pt;}
.y143{bottom:464.619867pt;}
.y166{bottom:466.027733pt;}
.y12a{bottom:469.181467pt;}
.yd5{bottom:471.935733pt;}
.y11a{bottom:473.468000pt;}
.y183{bottom:475.821467pt;}
.y84{bottom:476.720667pt;}
.yf4{bottom:476.741467pt;}
.y58{bottom:478.179867pt;}
.yad{bottom:478.954800pt;}
.y8{bottom:478.990666pt;}
.y142{bottom:481.953200pt;}
.y165{bottom:483.361067pt;}
.y129{bottom:486.514800pt;}
.yd4{bottom:489.269067pt;}
.y119{bottom:490.801333pt;}
.y83{bottom:494.054000pt;}
.yf3{bottom:494.074800pt;}
.y7{bottom:494.990666pt;}
.yac{bottom:496.288133pt;}
.y141{bottom:499.286533pt;}
.y182{bottom:500.714800pt;}
.y57{bottom:501.179867pt;}
.y128{bottom:503.848133pt;}
.yd3{bottom:506.602400pt;}
.y118{bottom:508.134667pt;}
.y164{bottom:508.254400pt;}
.y82{bottom:511.387333pt;}
.yf2{bottom:511.408133pt;}
.yab{bottom:513.621467pt;}
.y140{bottom:516.619867pt;}
.y181{bottom:518.048133pt;}
.y56{bottom:518.513200pt;}
.y127{bottom:521.181467pt;}
.yd2{bottom:523.935733pt;}
.y117{bottom:525.468000pt;}
.y163{bottom:525.587733pt;}
.y81{bottom:528.720667pt;}
.yf1{bottom:528.741467pt;}
.yaa{bottom:530.954800pt;}
.y13f{bottom:533.953200pt;}
.y180{bottom:535.381467pt;}
.y55{bottom:535.846533pt;}
.y126{bottom:538.514800pt;}
.yd1{bottom:541.269067pt;}
.y116{bottom:542.801333pt;}
.y80{bottom:546.054000pt;}
.yf0{bottom:546.074800pt;}
.ya9{bottom:548.288133pt;}
.y162{bottom:550.481067pt;}
.y13e{bottom:551.286533pt;}
.y54{bottom:553.179867pt;}
.y115{bottom:560.134667pt;}
.y17f{bottom:560.274800pt;}
.y7f{bottom:563.387333pt;}
.yef{bottom:563.408133pt;}
.ya8{bottom:565.621467pt;}
.yd0{bottom:566.162400pt;}
.y3d{bottom:567.594667pt;}
.y161{bottom:567.814400pt;}
.y13d{bottom:568.619867pt;}
.y53{bottom:570.513200pt;}
.y6{bottom:573.786667pt;}
.y114{bottom:577.468000pt;}
.yee{bottom:580.741467pt;}
.ya7{bottom:582.954800pt;}
.ycf{bottom:583.495733pt;}
.y160{bottom:585.147733pt;}
.y17e{bottom:585.168133pt;}
.y13c{bottom:585.953200pt;}
.y26{bottom:587.787067pt;}
.y52{bottom:587.846533pt;}
.y3c{bottom:591.589333pt;}
.y5{bottom:592.685334pt;}
.y113{bottom:594.801333pt;}
.yed{bottom:598.074800pt;}
.yce{bottom:600.829067pt;}
.y17d{bottom:602.501467pt;}
.y7e{bottom:603.398133pt;}
.y51{bottom:605.179867pt;}
.ya6{bottom:607.848133pt;}
.y15f{bottom:610.041067pt;}
.y13b{bottom:610.846533pt;}
.y112{bottom:612.134667pt;}
.yec{bottom:615.408133pt;}
.y3b{bottom:615.584000pt;}
.ycd{bottom:618.162400pt;}
.y17c{bottom:619.834800pt;}
.y50{bottom:622.513200pt;}
.ya5{bottom:625.181467pt;}
.y15e{bottom:627.374400pt;}
.y13a{bottom:628.179867pt;}
.yeb{bottom:632.741467pt;}
.ycc{bottom:635.495733pt;}
.y111{bottom:637.028000pt;}
.y17b{bottom:637.168133pt;}
.y3a{bottom:639.578667pt;}
.y4f{bottom:639.846533pt;}
.ya4{bottom:642.514800pt;}
.y15d{bottom:644.707733pt;}
.y139{bottom:645.513200pt;}
.yea{bottom:650.074800pt;}
.y7d{bottom:651.968133pt;}
.ycb{bottom:652.829067pt;}
.y110{bottom:654.361333pt;}
.y4e{bottom:657.179867pt;}
.ya3{bottom:659.848133pt;}
.y15c{bottom:662.041067pt;}
.y17a{bottom:662.061467pt;}
.y138{bottom:662.846533pt;}
.y39{bottom:663.573333pt;}
.ye9{bottom:667.408133pt;}
.y3{bottom:668.977329pt;}
.y7c{bottom:669.301467pt;}
.y10f{bottom:671.694667pt;}
.y4d{bottom:674.513200pt;}
.ya2{bottom:677.181467pt;}
.yca{bottom:677.722400pt;}
.y179{bottom:679.394800pt;}
.y137{bottom:680.179867pt;}
.ye8{bottom:684.741467pt;}
.y7b{bottom:686.634800pt;}
.y15b{bottom:686.934400pt;}
.y38{bottom:687.568000pt;}
.y10e{bottom:689.028000pt;}
.y4c{bottom:691.846533pt;}
.ya1{bottom:694.514800pt;}
.yc9{bottom:695.055733pt;}
.y178{bottom:696.728133pt;}
.y136{bottom:697.513200pt;}
.y25{bottom:697.626667pt;}
.ye7{bottom:702.074800pt;}
.y7a{bottom:703.968133pt;}
.y10d{bottom:706.361333pt;}
.y4b{bottom:709.179867pt;}
.y15a{bottom:711.827733pt;}
.yc8{bottom:712.389067pt;}
.y135{bottom:714.846533pt;}
.ya0{bottom:719.408133pt;}
.y79{bottom:721.301467pt;}
.y177{bottom:721.621467pt;}
.y37{bottom:722.900000pt;}
.y10c{bottom:723.694667pt;}
.y4a{bottom:726.513200pt;}
.ye6{bottom:726.968133pt;}
.y159{bottom:729.161067pt;}
.yc7{bottom:729.722400pt;}
.y134{bottom:732.179867pt;}
.y9f{bottom:736.741467pt;}
.y24{bottom:738.266667pt;}
.y78{bottom:738.634800pt;}
.y176{bottom:738.954800pt;}
.y10b{bottom:741.028000pt;}
.y49{bottom:743.846533pt;}
.ye5{bottom:744.301467pt;}
.yc6{bottom:747.055733pt;}
.y133{bottom:749.513200pt;}
.y158{bottom:754.054400pt;}
.y9e{bottom:754.074800pt;}
.y77{bottom:755.968133pt;}
.y10a{bottom:758.361333pt;}
.y48{bottom:761.179867pt;}
.ye4{bottom:761.634800pt;}
.y175{bottom:763.848133pt;}
.yc5{bottom:764.389067pt;}
.y132{bottom:766.846533pt;}
.y157{bottom:771.387733pt;}
.y9d{bottom:771.408133pt;}
.y76{bottom:773.301467pt;}
.y109{bottom:775.694667pt;}
.y47{bottom:778.513200pt;}
.ye3{bottom:778.968133pt;}
.y174{bottom:781.181467pt;}
.y2{bottom:781.661334pt;}
.y131{bottom:784.179867pt;}
.y156{bottom:788.721067pt;}
.y9c{bottom:788.741467pt;}
.yc4{bottom:789.282533pt;}
.y23{bottom:791.867067pt;}
.y108{bottom:793.028000pt;}
.y75{bottom:796.301467pt;}
.y173{bottom:798.514800pt;}
.y46{bottom:801.513200pt;}
.y9b{bottom:806.074800pt;}
.y74{bottom:813.634800pt;}
.y107{bottom:817.921333pt;}
.y45{bottom:818.846533pt;}
.y22{bottom:819.707067pt;}
.y9a{bottom:823.408133pt;}
.y155{bottom:828.731867pt;}
.yc3{bottom:829.513200pt;}
.y73{bottom:830.968133pt;}
.y106{bottom:835.254667pt;}
.y44{bottom:836.179867pt;}
.y99{bottom:840.741467pt;}
.yc2{bottom:846.846533pt;}
.y72{bottom:848.301467pt;}
.y105{bottom:852.588000pt;}
.y43{bottom:853.513200pt;}
.y98{bottom:858.074800pt;}
.y1{bottom:859.312000pt;}
.yc1{bottom:864.179867pt;}
.y71{bottom:865.634800pt;}
.y104{bottom:869.921333pt;}
.y42{bottom:870.846533pt;}
.y97{bottom:875.408133pt;}
.y35{bottom:880.484000pt;}
.y70{bottom:882.968133pt;}
.y103{bottom:887.254667pt;}
.y41{bottom:888.179867pt;}
.y6f{bottom:900.301467pt;}
.yc0{bottom:904.184133pt;}
.y102{bottom:904.588000pt;}
.y6e{bottom:917.634800pt;}
.y40{bottom:928.190800pt;}
.y101{bottom:929.481333pt;}
.y6d{bottom:934.968133pt;}
.y36{bottom:949.338667pt;}
.y3e{bottom:983.897467pt;}
.y6b{bottom:984.653467pt;}
.h7{height:28.560000pt;}
.h8{height:29.093750pt;}
.hd{height:36.432000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h13{height:43.360000pt;}
.h11{height:44.410667pt;}
.h10{height:47.696000pt;}
.he{height:48.576000pt;}
.h2{height:48.960000pt;}
.hc{height:49.694531pt;}
.h12{height:52.624000pt;}
.h9{height:53.517187pt;}
.hb{height:60.288750pt;}
.h5{height:69.360000pt;}
.ha{height:77.625000pt;}
.h4{height:105.826671pt;}
.hf{height:113.045737pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.626667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:122.784667pt;}
.x8{left:145.464667pt;}
.x5{left:149.040000pt;}
.xb{left:160.588667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x9{left:555.822400pt;}
.x6{left:642.281200pt;}
.xa{left:644.117200pt;}
}




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