
    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_3954f0f3675849f3c51a17a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ea37f1d5668e3caa30ff4d83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_65ed7610ccaa4d61800f8660.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cef5ef3c38597ed689f508c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e435b395bb19afd457c7da23.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b02758635a44a0a0b57aa663.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364746;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_83b6fb6e5d91e2e2f0ce053c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_819af47e9c1024657f7e4115.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.281250;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_eaf4d6a0e75e1f591b9a5462.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_06243e67dad74e2f8ab10675.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_b35a39c834211560c34f2ef5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_79bbd4b34b53215e103fb378.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_82a11cf98d17f2b8a24262c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_34a4cd873fd15257aa15b6ec.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d61c0b14e1d26ff1cd6c6c05.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d2108105e3bc85ee9f88ddea.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bbc7b2956641d0e89bb26e58.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_06243e67dad74e2f8ab10675.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f751101de8fc902853233ad5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8a9913ca71c521791e5fc38e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-130.680000px;}
.v5{vertical-align:-68.777280px;}
.v4{vertical-align:-7.575120px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.296560px;}
.v7{vertical-align:11.520000px;}
.v2{vertical-align:68.760000px;}
.v6{vertical-align:69.859440px;}
.ls3b{letter-spacing:-0.673344px;}
.ls21{letter-spacing:-0.251100px;}
.ls20{letter-spacing:-0.145800px;}
.ls39{letter-spacing:-0.144288px;}
.ls1f{letter-spacing:-0.121500px;}
.ls16{letter-spacing:-0.105300px;}
.ls42{letter-spacing:-0.090180px;}
.ls15{letter-spacing:-0.089100px;}
.ls13{letter-spacing:-0.072900px;}
.ls3f{letter-spacing:-0.072144px;}
.ls1e{letter-spacing:-0.064800px;}
.ls46{letter-spacing:-0.060120px;}
.ls3a{letter-spacing:-0.054108px;}
.ls47{letter-spacing:-0.048096px;}
.ls1d{letter-spacing:-0.040500px;}
.ls40{letter-spacing:-0.036072px;}
.ls1c{letter-spacing:-0.032400px;}
.ls41{letter-spacing:-0.030060px;}
.ls1b{letter-spacing:-0.024300px;}
.ls38{letter-spacing:-0.024048px;}
.ls49{letter-spacing:-0.021600px;}
.ls43{letter-spacing:-0.018036px;}
.ls14{letter-spacing:-0.016200px;}
.ls4a{letter-spacing:-0.014400px;}
.ls3e{letter-spacing:-0.012024px;}
.ls11{letter-spacing:-0.009000px;}
.ls12{letter-spacing:-0.008100px;}
.ls48{letter-spacing:-0.007200px;}
.ls44{letter-spacing:-0.006012px;}
.lsf{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.006012px;}
.ls35{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.008100px;}
.ls32{letter-spacing:0.012024px;}
.ls5{letter-spacing:0.016200px;}
.ls2e{letter-spacing:0.018036px;}
.ls34{letter-spacing:0.021600px;}
.ls28{letter-spacing:0.024048px;}
.lse{letter-spacing:0.024300px;}
.ls25{letter-spacing:0.025164px;}
.ls2b{letter-spacing:0.030060px;}
.ls8{letter-spacing:0.032400px;}
.ls36{letter-spacing:0.036000px;}
.ls30{letter-spacing:0.036072px;}
.lsb{letter-spacing:0.040500px;}
.ls26{letter-spacing:0.041940px;}
.ls2d{letter-spacing:0.042084px;}
.ls10{letter-spacing:0.047952px;}
.ls2f{letter-spacing:0.048096px;}
.ls4{letter-spacing:0.048600px;}
.ls22{letter-spacing:0.050328px;}
.ls31{letter-spacing:0.054108px;}
.ls9{letter-spacing:0.056700px;}
.lsc{letter-spacing:0.060120px;}
.ls2{letter-spacing:0.064800px;}
.ls27{letter-spacing:0.066132px;}
.ls37{letter-spacing:0.067104px;}
.ls29{letter-spacing:0.072144px;}
.ls1{letter-spacing:0.072900px;}
.ls24{letter-spacing:0.075492px;}
.lsa{letter-spacing:0.081000px;}
.ls23{letter-spacing:0.083880px;}
.ls7{letter-spacing:0.089100px;}
.ls3c{letter-spacing:0.090180px;}
.ls6{letter-spacing:0.097200px;}
.ls17{letter-spacing:0.105300px;}
.ls18{letter-spacing:0.113400px;}
.ls1a{letter-spacing:0.121500px;}
.ls19{letter-spacing:0.137700px;}
.ls3d{letter-spacing:0.144288px;}
.ls4c{letter-spacing:36.855000px;}
.ls4b{letter-spacing:58.482000px;}
.lsd{letter-spacing:63.571320px;}
.ls0{letter-spacing:80.190000px;}
.ls45{letter-spacing:208.484136px;}
.ls2c{letter-spacing:228.636360px;}
.ls33{letter-spacing:355.166640px;}
.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;}
}
.ws2c{word-spacing:-20.387700px;}
.ws2a{word-spacing:-20.322900px;}
.ws2b{word-spacing:-20.306700px;}
.ws0{word-spacing:-20.258100px;}
.ws1{word-spacing:-20.144700px;}
.wsa5{word-spacing:-18.021600px;}
.wsa6{word-spacing:-18.007200px;}
.ws9e{word-spacing:-16.040016px;}
.ws21{word-spacing:-0.348300px;}
.wsa7{word-spacing:-0.332100px;}
.ws60{word-spacing:-0.307800px;}
.ws98{word-spacing:-0.283500px;}
.wse3{word-spacing:-0.275400px;}
.wsfb{word-spacing:-0.267300px;}
.ws9c{word-spacing:-0.260028px;}
.wsf1{word-spacing:-0.259200px;}
.ws28{word-spacing:-0.234900px;}
.ws94{word-spacing:-0.226800px;}
.ws92{word-spacing:-0.210600px;}
.wsab{word-spacing:-0.210420px;}
.wsb5{word-spacing:-0.186372px;}
.wsd7{word-spacing:-0.186300px;}
.ws25{word-spacing:-0.170100px;}
.ws9d{word-spacing:-0.167760px;}
.wsc7{word-spacing:-0.162324px;}
.wsa9{word-spacing:-0.159372px;}
.ws88{word-spacing:-0.153900px;}
.wsad{word-spacing:-0.150300px;}
.ws41{word-spacing:-0.145800px;}
.wsbe{word-spacing:-0.144288px;}
.ws9b{word-spacing:-0.142596px;}
.wsb9{word-spacing:-0.138276px;}
.ws27{word-spacing:-0.137700px;}
.wsd2{word-spacing:-0.136800px;}
.wsaa{word-spacing:-0.134208px;}
.wsc0{word-spacing:-0.132264px;}
.ws3{word-spacing:-0.131868px;}
.ws1d{word-spacing:-0.129600px;}
.wsb2{word-spacing:-0.126252px;}
.ws29{word-spacing:-0.121500px;}
.wsa8{word-spacing:-0.117432px;}
.wsc4{word-spacing:-0.114228px;}
.ws24{word-spacing:-0.113400px;}
.wsae{word-spacing:-0.108216px;}
.ws22{word-spacing:-0.105300px;}
.ws13{word-spacing:-0.097200px;}
.wsbf{word-spacing:-0.096192px;}
.wsce{word-spacing:-0.093600px;}
.wsac{word-spacing:-0.090180px;}
.wse{word-spacing:-0.089100px;}
.wsbc{word-spacing:-0.084168px;}
.ws26{word-spacing:-0.072900px;}
.ws2d{word-spacing:-0.064800px;}
.wscf{word-spacing:-0.050400px;}
.wscb{word-spacing:-0.021600px;}
.ws6e{word-spacing:-0.008100px;}
.ws2{word-spacing:0.000000px;}
.ws23{word-spacing:0.048600px;}
.ws6c{word-spacing:0.081000px;}
.ws5{word-spacing:0.097200px;}
.ws6a{word-spacing:0.145800px;}
.ws4{word-spacing:0.189000px;}
.ws6b{word-spacing:0.202500px;}
.ws6d{word-spacing:0.267300px;}
.ws87{word-spacing:0.753300px;}
.wse4{word-spacing:1.125900px;}
.wse5{word-spacing:1.239300px;}
.ws48{word-spacing:1.247400px;}
.ws49{word-spacing:1.271700px;}
.ws79{word-spacing:1.563300px;}
.ws7a{word-spacing:1.636200px;}
.ws10{word-spacing:1.863000px;}
.ws2e{word-spacing:1.871100px;}
.wsf{word-spacing:1.911600px;}
.ws3a{word-spacing:2.187000px;}
.ws3b{word-spacing:2.340900px;}
.ws39{word-spacing:2.357100px;}
.wsd9{word-spacing:2.559600px;}
.wsd8{word-spacing:2.648700px;}
.ws5c{word-spacing:2.721600px;}
.ws5e{word-spacing:2.754000px;}
.ws8d{word-spacing:2.883600px;}
.ws8c{word-spacing:2.988900px;}
.ws5b{word-spacing:3.094200px;}
.ws5f{word-spacing:3.159000px;}
.ws5d{word-spacing:3.272400px;}
.wsdc{word-spacing:3.393900px;}
.wsdd{word-spacing:3.426300px;}
.wsde{word-spacing:3.507300px;}
.ws4e{word-spacing:3.620700px;}
.ws4d{word-spacing:3.645000px;}
.ws8a{word-spacing:3.952800px;}
.ws8b{word-spacing:4.009500px;}
.wsf7{word-spacing:4.066200px;}
.wsf8{word-spacing:4.090500px;}
.ws89{word-spacing:4.163400px;}
.wsff{word-spacing:4.203900px;}
.ws32{word-spacing:4.293000px;}
.ws34{word-spacing:4.446900px;}
.ws33{word-spacing:4.625100px;}
.ws2f{word-spacing:5.467500px;}
.ws3f{word-spacing:5.475600px;}
.ws30{word-spacing:5.483700px;}
.ws82{word-spacing:5.572800px;}
.ws84{word-spacing:5.589000px;}
.ws40{word-spacing:5.605200px;}
.ws83{word-spacing:5.645700px;}
.ws86{word-spacing:5.694300px;}
.ws85{word-spacing:5.921100px;}
.ws44{word-spacing:5.937300px;}
.ws43{word-spacing:6.034500px;}
.wsd1{word-spacing:6.494400px;}
.wsd0{word-spacing:6.501600px;}
.ws1c{word-spacing:6.561000px;}
.ws1b{word-spacing:6.609600px;}
.ws1a{word-spacing:6.658200px;}
.ws91{word-spacing:7.192800px;}
.ws53{word-spacing:7.200900px;}
.ws52{word-spacing:7.217100px;}
.ws56{word-spacing:7.281900px;}
.ws57{word-spacing:7.306200px;}
.wsf4{word-spacing:7.314300px;}
.wsf3{word-spacing:7.346700px;}
.ws90{word-spacing:7.395300px;}
.wseb{word-spacing:7.573500px;}
.wsea{word-spacing:7.767900px;}
.wsd3{word-spacing:7.912800px;}
.wsd{word-spacing:8.359200px;}
.wsc{word-spacing:8.464500px;}
.ws17{word-spacing:8.496900px;}
.wsb{word-spacing:8.772300px;}
.wsf2{word-spacing:8.796600px;}
.wsa{word-spacing:8.910000px;}
.ws78{word-spacing:9.549900px;}
.ws65{word-spacing:9.914400px;}
.ws76{word-spacing:9.963000px;}
.ws77{word-spacing:9.979200px;}
.ws64{word-spacing:10.084500px;}
.ws66{word-spacing:10.133100px;}
.ws9{word-spacing:10.238400px;}
.ws62{word-spacing:10.278900px;}
.ws8{word-spacing:10.343700px;}
.ws63{word-spacing:10.368000px;}
.ws99{word-spacing:10.586700px;}
.ws9a{word-spacing:10.692000px;}
.ws36{word-spacing:10.902600px;}
.wsdb{word-spacing:10.926900px;}
.ws15{word-spacing:10.967400px;}
.ws35{word-spacing:10.999800px;}
.wsda{word-spacing:11.032200px;}
.wse9{word-spacing:11.971800px;}
.ws61{word-spacing:11.996100px;}
.wse8{word-spacing:12.004200px;}
.ws54{word-spacing:12.020400px;}
.ws55{word-spacing:12.093300px;}
.ws7f{word-spacing:12.125700px;}
.ws4a{word-spacing:12.174300px;}
.ws81{word-spacing:12.271500px;}
.ws4b{word-spacing:12.320100px;}
.ws4c{word-spacing:12.409200px;}
.ws80{word-spacing:12.425400px;}
.wsee{word-spacing:12.781800px;}
.ws101{word-spacing:13.770000px;}
.ws100{word-spacing:13.899600px;}
.ws11{word-spacing:14.434200px;}
.ws12{word-spacing:14.458500px;}
.ws6{word-spacing:14.887800px;}
.ws7{word-spacing:14.968800px;}
.ws47{word-spacing:15.867900px;}
.ws45{word-spacing:15.973200px;}
.wsf0{word-spacing:16.013700px;}
.ws18{word-spacing:16.029900px;}
.wsef{word-spacing:16.054200px;}
.ws19{word-spacing:16.078500px;}
.ws46{word-spacing:16.151400px;}
.ws7c{word-spacing:17.730900px;}
.ws7b{word-spacing:17.901000px;}
.ws96{word-spacing:18.864900px;}
.ws95{word-spacing:18.889200px;}
.ws31{word-spacing:19.626300px;}
.ws8e{word-spacing:20.120400px;}
.wsdf{word-spacing:20.258100px;}
.ws8f{word-spacing:20.306700px;}
.wse0{word-spacing:20.322900px;}
.ws1e{word-spacing:20.995200px;}
.ws70{word-spacing:22.428900px;}
.ws6f{word-spacing:22.501800px;}
.ws59{word-spacing:22.599000px;}
.ws5a{word-spacing:22.712400px;}
.ws58{word-spacing:22.769100px;}
.wse7{word-spacing:22.858200px;}
.wse6{word-spacing:22.890600px;}
.wscd{word-spacing:22.982400px;}
.wscc{word-spacing:23.032800px;}
.wsf9{word-spacing:23.425200px;}
.wsfe{word-spacing:23.498100px;}
.wsfc{word-spacing:23.506200px;}
.wsfa{word-spacing:23.562900px;}
.wsfd{word-spacing:23.587200px;}
.ws38{word-spacing:23.773500px;}
.ws37{word-spacing:23.895000px;}
.ws72{word-spacing:23.927400px;}
.ws71{word-spacing:24.348600px;}
.ws75{word-spacing:24.356700px;}
.ws74{word-spacing:24.405300px;}
.ws73{word-spacing:24.421500px;}
.ws68{word-spacing:24.640200px;}
.ws69{word-spacing:24.696900px;}
.ws67{word-spacing:24.713100px;}
.ws3e{word-spacing:24.939900px;}
.wsf5{word-spacing:25.012800px;}
.wsf6{word-spacing:25.053300px;}
.wsec{word-spacing:25.401600px;}
.wsed{word-spacing:25.515000px;}
.wsd4{word-spacing:27.698400px;}
.ws42{word-spacing:27.888300px;}
.wse2{word-spacing:28.139400px;}
.wse1{word-spacing:28.204200px;}
.ws93{word-spacing:31.201200px;}
.ws51{word-spacing:32.562000px;}
.ws50{word-spacing:32.578200px;}
.ws4f{word-spacing:32.634900px;}
.ws3d{word-spacing:37.195200px;}
.ws3c{word-spacing:37.276200px;}
.ws1f{word-spacing:40.751100px;}
.ws20{word-spacing:40.888800px;}
.ws7d{word-spacing:41.885100px;}
.ws7e{word-spacing:41.925600px;}
.wsb8{word-spacing:44.813448px;}
.ws97{word-spacing:44.865900px;}
.ws9f{word-spacing:47.866104px;}
.wsaf{word-spacing:52.388568px;}
.wsbd{word-spacing:52.394580px;}
.wsd6{word-spacing:53.022600px;}
.wsd5{word-spacing:53.168400px;}
.wsba{word-spacing:66.077892px;}
.wsb3{word-spacing:66.089916px;}
.ws14{word-spacing:72.511200px;}
.ws16{word-spacing:98.074800px;}
.wsc2{word-spacing:115.761060px;}
.wsc3{word-spacing:142.406244px;}
.wsc5{word-spacing:144.209844px;}
.wsa4{word-spacing:144.569340px;}
.wsa3{word-spacing:144.901224px;}
.wsc1{word-spacing:149.217840px;}
.wsb6{word-spacing:169.754832px;}
.wsb0{word-spacing:169.772868px;}
.wsb1{word-spacing:169.778880px;}
.wsb7{word-spacing:169.784892px;}
.wsbb{word-spacing:169.814952px;}
.wsc9{word-spacing:169.851024px;}
.wsa2{word-spacing:178.370028px;}
.wsa1{word-spacing:178.388064px;}
.wsca{word-spacing:186.293844px;}
.wsc6{word-spacing:203.307804px;}
.wsa0{word-spacing:211.856868px;}
.wsb4{word-spacing:219.774672px;}
.wsc8{word-spacing:219.786696px;}
._2c{margin-left:-253.465920px;}
._2a{margin-left:-208.436040px;}
._17{margin-left:-169.899120px;}
._2b{margin-left:-143.626680px;}
._35{margin-left:-97.214040px;}
._3e{margin-left:-78.336360px;}
._3a{margin-left:-76.713120px;}
._38{margin-left:-63.727200px;}
._6{margin-left:-30.213000px;}
._0{margin-left:-1.062000px;}
._1{width:1.287900px;}
._29{width:22.665240px;}
._36{width:32.092056px;}
._5{width:36.693000px;}
._45{width:48.083112px;}
._f{width:60.184008px;}
._16{width:64.809360px;}
._4{width:66.582000px;}
._2{width:75.978000px;}
._10{width:80.164476px;}
._26{width:82.364400px;}
._22{width:83.669004px;}
._8{width:85.293000px;}
._1e{width:91.045728px;}
._3{width:92.583000px;}
._31{width:96.095808px;}
._2f{width:97.159932px;}
._1a{width:98.518644px;}
._12{width:101.073744px;}
._3c{width:103.803192px;}
._e{width:105.612480px;}
._41{width:107.554680px;}
._24{width:110.322324px;}
._33{width:112.171896px;}
._20{width:114.708960px;}
._19{width:116.362260px;}
._42{width:118.737000px;}
._32{width:121.634784px;}
._21{width:123.947280px;}
._d{width:127.691208px;}
._28{width:129.492468px;}
._13{width:132.005484px;}
._1d{width:133.706880px;}
._4b{width:140.049000px;}
._48{width:141.513588px;}
._c{width:142.675884px;}
._3d{width:145.147716px;}
._23{width:148.255920px;}
._11{width:153.859104px;}
._7{width:164.187000px;}
._1f{width:173.951208px;}
._1b{width:175.009320px;}
._40{width:183.197664px;}
._4a{width:190.789560px;}
._30{width:192.612456px;}
._1c{width:197.734680px;}
._3b{width:200.518236px;}
._2e{width:203.746680px;}
._14{width:208.496160px;}
._3f{width:215.229600px;}
._18{width:221.662440px;}
._39{width:223.947000px;}
._15{width:231.161400px;}
._43{width:232.616304px;}
._2d{width:257.067108px;}
._46{width:260.981856px;}
._b{width:268.082352px;}
._a{width:276.821856px;}
._27{width:279.858600px;}
._37{width:282.431736px;}
._34{width:293.674176px;}
._47{width:295.541856px;}
._25{width:305.133048px;}
._44{width:316.309356px;}
._49{width:351.564732px;}
._9{width:516.614040px;}
._56{width:744.060000px;}
._4e{width:1074.180000px;}
._51{width:1223.940000px;}
._4d{width:1293.780000px;}
._52{width:1424.100000px;}
._5f{width:1443.900000px;}
._60{width:1643.880000px;}
._4c{width:1773.840000px;}
._4f{width:1793.820000px;}
._58{width:1804.260000px;}
._5d{width:1823.880000px;}
._50{width:1913.880000px;}
._62{width:1944.120000px;}
._5c{width:2044.200000px;}
._5e{width:2094.240000px;}
._55{width:2114.220000px;}
._5a{width:2144.280000px;}
._5b{width:2154.180000px;}
._54{width:2184.060000px;}
._61{width:2283.960000px;}
._53{width:2303.940000px;}
._59{width:2334.180000px;}
._57{width:2394.300000px;}
.fc2{color:rgb(0,0,200);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(100,100,100);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.120000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.fs2{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs1{font-size:119.880000px;}
.fs8{font-size:132.000000px;}
.fsb{font-size:150.000000px;}
.fs6{font-size:180.000000px;}
.fsa{font-size:210.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:92.280450px;}
.y48{bottom:94.975950px;}
.y23{bottom:94.980450px;}
.yc8{bottom:107.148450px;}
.ya2{bottom:114.960450px;}
.y47{bottom:118.202700px;}
.y22{bottom:118.290600px;}
.yc7{bottom:130.456200px;}
.ya1{bottom:135.660450px;}
.y21{bottom:141.510450px;}
.ya0{bottom:156.360450px;}
.yc6{bottom:162.775200px;}
.y20{bottom:164.640450px;}
.y46{bottom:164.818200px;}
.y9f{bottom:186.060450px;}
.yc5{bottom:186.082950px;}
.y45{bottom:188.125950px;}
.y1f{bottom:195.330450px;}
.y6e{bottom:204.420450px;}
.y9e{bottom:206.760450px;}
.y44{bottom:211.352700px;}
.yc4{bottom:218.300700px;}
.y1e{bottom:218.640450px;}
.y6d{bottom:223.050450px;}
.y43{bottom:234.660450px;}
.y9d{bottom:236.460450px;}
.yc3{bottom:241.608450px;}
.y1d{bottom:241.860600px;}
.y9c{bottom:257.160450px;}
.y1c{bottom:264.990450px;}
.yc2{bottom:273.927450px;}
.y42{bottom:278.845950px;}
.y9b{bottom:286.680450px;}
.y1b{bottom:288.300450px;}
.yc1{bottom:297.235200px;}
.y41{bottom:302.254950px;}
.y9a{bottom:308.100450px;}
.y63{bottom:322.741200px;}
.y40{bottom:325.562700px;}
.yc0{bottom:329.452950px;}
.y99{bottom:331.500600px;}
.y1a{bottom:332.454450px;}
.y3f{bottom:348.789450px;}
.ybf{bottom:352.760700px;}
.y98{bottom:353.190450px;}
.y62{bottom:367.027950px;}
.y3e{bottom:372.097200px;}
.y97{bottom:373.800450px;}
.y19{bottom:376.903200px;}
.ycd{bottom:382.680000px;}
.ybe{bottom:385.079700px;}
.y61{bottom:390.436950px;}
.y96{bottom:394.410450px;}
.y3d{bottom:395.404950px;}
.y18{bottom:400.312200px;}
.ybd{bottom:408.387450px;}
.y60{bottom:413.744700px;}
.y95{bottom:415.020600px;}
.y17{bottom:423.538950px;}
.y93{bottom:435.625950px;}
.y94{bottom:435.806310px;}
.y3c{bottom:439.590450px;}
.ybc{bottom:452.572950px;}
.y92{bottom:452.910450px;}
.y5f{bottom:457.930200px;}
.y3b{bottom:462.999450px;}
.y16{bottom:467.724450px;}
.y91{bottom:471.630450px;}
.ybb{bottom:475.880700px;}
.y3a{bottom:486.226200px;}
.y15{bottom:491.133450px;}
.y8f{bottom:492.330450px;}
.y90{bottom:492.510810px;}
.yba{bottom:499.188450px;}
.y5e{bottom:502.216950px;}
.y39{bottom:509.533950px;}
.ycc{bottom:510.240000px;}
.y14{bottom:514.441200px;}
.y5d{bottom:525.625950px;}
.y8d{bottom:528.330450px;}
.y8e{bottom:528.510810px;}
.y38{bottom:532.841700px;}
.yb9{bottom:543.373950px;}
.y37{bottom:556.149450px;}
.y13{bottom:558.626700px;}
.y8c{bottom:564.240450px;}
.y5c{bottom:569.811450px;}
.y12{bottom:582.035700px;}
.y8a{bottom:584.940450px;}
.y8b{bottom:585.120810px;}
.yb8{bottom:587.660700px;}
.y5b{bottom:593.220450px;}
.y36{bottom:600.334950px;}
.y11{bottom:605.262450px;}
.yb7{bottom:611.069700px;}
.y88{bottom:620.940450px;}
.y89{bottom:621.120810px;}
.y35{bottom:623.642700px;}
.y10{bottom:628.570200px;}
.yb6{bottom:634.377450px;}
.y5a{bottom:637.405950px;}
.y34{bottom:646.950450px;}
.yf{bottom:651.877950px;}
.y86{bottom:656.940450px;}
.y87{bottom:657.120810px;}
.y59{bottom:660.713700px;}
.yb5{bottom:678.562950px;}
.y33{bottom:691.135950px;}
.y85{bottom:692.850450px;}
.ye{bottom:696.063450px;}
.yb4{bottom:701.870700px;}
.y58{bottom:704.899200px;}
.y84{bottom:713.550450px;}
.y32{bottom:714.544950px;}
.yd{bottom:719.472450px;}
.yb3{bottom:725.178450px;}
.y57{bottom:728.308200px;}
.y83{bottom:734.160450px;}
.y31{bottom:737.852700px;}
.yc{bottom:742.699200px;}
.yb2{bottom:748.486200px;}
.y56{bottom:751.615950px;}
.y82{bottom:754.770450px;}
.y30{bottom:761.079450px;}
.yb1{bottom:771.793950px;}
.y81{bottom:775.380450px;}
.y2f{bottom:784.384950px;}
.yb{bottom:786.884700px;}
.y55{bottom:795.801450px;}
.y7f{bottom:795.985950px;}
.y80{bottom:796.166310px;}
.ya{bottom:810.293700px;}
.y7e{bottom:813.270450px;}
.yb0{bottom:815.979450px;}
.y54{bottom:819.210450px;}
.y2e{bottom:828.388200px;}
.y7d{bottom:831.985950px;}
.y9{bottom:833.601450px;}
.yaf{bottom:839.287200px;}
.y53{bottom:842.428200px;}
.y7c{bottom:849.270450px;}
.y8{bottom:856.909200px;}
.yae{bottom:862.594950px;}
.y7b{bottom:867.990450px;}
.y2d{bottom:872.857200px;}
.y7{bottom:880.126950px;}
.yad{bottom:885.902700px;}
.y52{bottom:886.431450px;}
.y7a{bottom:888.600450px;}
.y6c{bottom:907.430700px;}
.y79{bottom:909.210450px;}
.y2c{bottom:917.143950px;}
.y6{bottom:924.231450px;}
.y78{bottom:929.906130px;}
.yac{bottom:930.088200px;}
.y51{bottom:930.799200px;}
.y6b{bottom:932.277450px;}
.y2b{bottom:940.552950px;}
.y77{bottom:947.100450px;}
.yab{bottom:953.497200px;}
.y6a{bottom:955.220700px;}
.y2a{bottom:963.860700px;}
.y76{bottom:965.910450px;}
.y5{bottom:968.700450px;}
.y50{bottom:975.268200px;}
.yaa{bottom:976.723950px;}
.y69{bottom:978.163950px;}
.y75{bottom:986.610450px;}
.y74{bottom:986.700450px;}
.y4{bottom:992.280450px;}
.y4f{bottom:998.575950px;}
.ya9{bottom:1000.031700px;}
.y68{bottom:1001.107200px;}
.y29{bottom:1008.046200px;}
.y4e{bottom:1021.883700px;}
.y67{bottom:1022.430450px;}
.y73{bottom:1022.610450px;}
.ya8{bottom:1023.339450px;}
.y28{bottom:1031.353950px;}
.y4d{bottom:1045.191450px;}
.y66{bottom:1045.654950px;}
.y72{bottom:1045.740450px;}
.ya7{bottom:1046.647200px;}
.y3{bottom:1052.400450px;}
.y27{bottom:1054.661700px;}
.y4c{bottom:1068.418200px;}
.y71{bottom:1068.860100px;}
.y65{bottom:1069.770450px;}
.y1{bottom:1074.450450px;}
.y26{bottom:1077.969450px;}
.ya6{bottom:1090.832700px;}
.y4b{bottom:1091.725950px;}
.y70{bottom:1093.080450px;}
.y25{bottom:1101.277200px;}
.ya5{bottom:1114.140450px;}
.y64{bottom:1114.770450px;}
.y4a{bottom:1135.911450px;}
.y6f{bottom:1138.080450px;}
.y24{bottom:1145.280450px;}
.ya4{bottom:1158.330450px;}
.y2{bottom:1159.318200px;}
.y49{bottom:1159.320450px;}
.yca{bottom:1658.265000px;}
.yc9{bottom:1719.165000px;}
.ycb{bottom:1751.805000px;}
.h8{height:62.703281px;}
.hf{height:63.062681px;}
.ha{height:63.063281px;}
.he{height:63.064001px;}
.h17{height:68.835938px;}
.h11{height:70.664062px;}
.hb{height:70.999841px;}
.h10{height:72.562500px;}
.h1{height:79.497070px;}
.h5{height:79.506070px;}
.h4{height:79.533070px;}
.h7{height:80.050781px;}
.h3{height:81.632812px;}
.h12{height:84.480469px;}
.h6{height:84.535312px;}
.h2{height:120.816562px;}
.h9{height:131.463281px;}
.hc{height:132.202001px;}
.hd{height:132.562721px;}
.h16{height:137.671875px;}
.h19{height:156.445312px;}
.h15{height:187.734375px;}
.h18{height:219.023438px;}
.h0{height:1263.000000px;}
.h14{height:1785.750000px;}
.h13{height:1785.825000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:21.255000px;}
.x13{left:46.785000px;}
.x15{left:63.780000px;}
.xa{left:73.980000px;}
.xb{left:82.441890px;}
.x11{left:85.050000px;}
.x3{left:106.380000px;}
.x8{left:111.600000px;}
.xf{left:128.700000px;}
.x6{left:133.380000px;}
.x4{left:145.530000px;}
.x10{left:151.740000px;}
.x5{left:159.576750px;}
.x12{left:187.393500px;}
.xc{left:227.977380px;}
.x9{left:233.820000px;}
.xe{left:237.160710px;}
.xd{left:242.090550px;}
.x1{left:266.130000px;}
.x2{left:324.369000px;}
.x7{left:743.580000px;}
.x14{left:935.430000px;}
@media print{
.v1{vertical-align:-116.160000pt;}
.v5{vertical-align:-61.135360pt;}
.v4{vertical-align:-6.733440pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.374720pt;}
.v7{vertical-align:10.240000pt;}
.v2{vertical-align:61.120000pt;}
.v6{vertical-align:62.097280pt;}
.ls3b{letter-spacing:-0.598528pt;}
.ls21{letter-spacing:-0.223200pt;}
.ls20{letter-spacing:-0.129600pt;}
.ls39{letter-spacing:-0.128256pt;}
.ls1f{letter-spacing:-0.108000pt;}
.ls16{letter-spacing:-0.093600pt;}
.ls42{letter-spacing:-0.080160pt;}
.ls15{letter-spacing:-0.079200pt;}
.ls13{letter-spacing:-0.064800pt;}
.ls3f{letter-spacing:-0.064128pt;}
.ls1e{letter-spacing:-0.057600pt;}
.ls46{letter-spacing:-0.053440pt;}
.ls3a{letter-spacing:-0.048096pt;}
.ls47{letter-spacing:-0.042752pt;}
.ls1d{letter-spacing:-0.036000pt;}
.ls40{letter-spacing:-0.032064pt;}
.ls1c{letter-spacing:-0.028800pt;}
.ls41{letter-spacing:-0.026720pt;}
.ls1b{letter-spacing:-0.021600pt;}
.ls38{letter-spacing:-0.021376pt;}
.ls49{letter-spacing:-0.019200pt;}
.ls43{letter-spacing:-0.016032pt;}
.ls14{letter-spacing:-0.014400pt;}
.ls4a{letter-spacing:-0.012800pt;}
.ls3e{letter-spacing:-0.010688pt;}
.ls11{letter-spacing:-0.008000pt;}
.ls12{letter-spacing:-0.007200pt;}
.ls48{letter-spacing:-0.006400pt;}
.ls44{letter-spacing:-0.005344pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.005344pt;}
.ls35{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.007200pt;}
.ls32{letter-spacing:0.010688pt;}
.ls5{letter-spacing:0.014400pt;}
.ls2e{letter-spacing:0.016032pt;}
.ls34{letter-spacing:0.019200pt;}
.ls28{letter-spacing:0.021376pt;}
.lse{letter-spacing:0.021600pt;}
.ls25{letter-spacing:0.022368pt;}
.ls2b{letter-spacing:0.026720pt;}
.ls8{letter-spacing:0.028800pt;}
.ls36{letter-spacing:0.032000pt;}
.ls30{letter-spacing:0.032064pt;}
.lsb{letter-spacing:0.036000pt;}
.ls26{letter-spacing:0.037280pt;}
.ls2d{letter-spacing:0.037408pt;}
.ls10{letter-spacing:0.042624pt;}
.ls2f{letter-spacing:0.042752pt;}
.ls4{letter-spacing:0.043200pt;}
.ls22{letter-spacing:0.044736pt;}
.ls31{letter-spacing:0.048096pt;}
.ls9{letter-spacing:0.050400pt;}
.lsc{letter-spacing:0.053440pt;}
.ls2{letter-spacing:0.057600pt;}
.ls27{letter-spacing:0.058784pt;}
.ls37{letter-spacing:0.059648pt;}
.ls29{letter-spacing:0.064128pt;}
.ls1{letter-spacing:0.064800pt;}
.ls24{letter-spacing:0.067104pt;}
.lsa{letter-spacing:0.072000pt;}
.ls23{letter-spacing:0.074560pt;}
.ls7{letter-spacing:0.079200pt;}
.ls3c{letter-spacing:0.080160pt;}
.ls6{letter-spacing:0.086400pt;}
.ls17{letter-spacing:0.093600pt;}
.ls18{letter-spacing:0.100800pt;}
.ls1a{letter-spacing:0.108000pt;}
.ls19{letter-spacing:0.122400pt;}
.ls3d{letter-spacing:0.128256pt;}
.ls4c{letter-spacing:32.760000pt;}
.ls4b{letter-spacing:51.984000pt;}
.lsd{letter-spacing:56.507840pt;}
.ls0{letter-spacing:71.280000pt;}
.ls45{letter-spacing:185.319232pt;}
.ls2c{letter-spacing:203.232320pt;}
.ls33{letter-spacing:315.703680pt;}
.ws2c{word-spacing:-18.122400pt;}
.ws2a{word-spacing:-18.064800pt;}
.ws2b{word-spacing:-18.050400pt;}
.ws0{word-spacing:-18.007200pt;}
.ws1{word-spacing:-17.906400pt;}
.wsa5{word-spacing:-16.019200pt;}
.wsa6{word-spacing:-16.006400pt;}
.ws9e{word-spacing:-14.257792pt;}
.ws21{word-spacing:-0.309600pt;}
.wsa7{word-spacing:-0.295200pt;}
.ws60{word-spacing:-0.273600pt;}
.ws98{word-spacing:-0.252000pt;}
.wse3{word-spacing:-0.244800pt;}
.wsfb{word-spacing:-0.237600pt;}
.ws9c{word-spacing:-0.231136pt;}
.wsf1{word-spacing:-0.230400pt;}
.ws28{word-spacing:-0.208800pt;}
.ws94{word-spacing:-0.201600pt;}
.ws92{word-spacing:-0.187200pt;}
.wsab{word-spacing:-0.187040pt;}
.wsb5{word-spacing:-0.165664pt;}
.wsd7{word-spacing:-0.165600pt;}
.ws25{word-spacing:-0.151200pt;}
.ws9d{word-spacing:-0.149120pt;}
.wsc7{word-spacing:-0.144288pt;}
.wsa9{word-spacing:-0.141664pt;}
.ws88{word-spacing:-0.136800pt;}
.wsad{word-spacing:-0.133600pt;}
.ws41{word-spacing:-0.129600pt;}
.wsbe{word-spacing:-0.128256pt;}
.ws9b{word-spacing:-0.126752pt;}
.wsb9{word-spacing:-0.122912pt;}
.ws27{word-spacing:-0.122400pt;}
.wsd2{word-spacing:-0.121600pt;}
.wsaa{word-spacing:-0.119296pt;}
.wsc0{word-spacing:-0.117568pt;}
.ws3{word-spacing:-0.117216pt;}
.ws1d{word-spacing:-0.115200pt;}
.wsb2{word-spacing:-0.112224pt;}
.ws29{word-spacing:-0.108000pt;}
.wsa8{word-spacing:-0.104384pt;}
.wsc4{word-spacing:-0.101536pt;}
.ws24{word-spacing:-0.100800pt;}
.wsae{word-spacing:-0.096192pt;}
.ws22{word-spacing:-0.093600pt;}
.ws13{word-spacing:-0.086400pt;}
.wsbf{word-spacing:-0.085504pt;}
.wsce{word-spacing:-0.083200pt;}
.wsac{word-spacing:-0.080160pt;}
.wse{word-spacing:-0.079200pt;}
.wsbc{word-spacing:-0.074816pt;}
.ws26{word-spacing:-0.064800pt;}
.ws2d{word-spacing:-0.057600pt;}
.wscf{word-spacing:-0.044800pt;}
.wscb{word-spacing:-0.019200pt;}
.ws6e{word-spacing:-0.007200pt;}
.ws2{word-spacing:0.000000pt;}
.ws23{word-spacing:0.043200pt;}
.ws6c{word-spacing:0.072000pt;}
.ws5{word-spacing:0.086400pt;}
.ws6a{word-spacing:0.129600pt;}
.ws4{word-spacing:0.168000pt;}
.ws6b{word-spacing:0.180000pt;}
.ws6d{word-spacing:0.237600pt;}
.ws87{word-spacing:0.669600pt;}
.wse4{word-spacing:1.000800pt;}
.wse5{word-spacing:1.101600pt;}
.ws48{word-spacing:1.108800pt;}
.ws49{word-spacing:1.130400pt;}
.ws79{word-spacing:1.389600pt;}
.ws7a{word-spacing:1.454400pt;}
.ws10{word-spacing:1.656000pt;}
.ws2e{word-spacing:1.663200pt;}
.wsf{word-spacing:1.699200pt;}
.ws3a{word-spacing:1.944000pt;}
.ws3b{word-spacing:2.080800pt;}
.ws39{word-spacing:2.095200pt;}
.wsd9{word-spacing:2.275200pt;}
.wsd8{word-spacing:2.354400pt;}
.ws5c{word-spacing:2.419200pt;}
.ws5e{word-spacing:2.448000pt;}
.ws8d{word-spacing:2.563200pt;}
.ws8c{word-spacing:2.656800pt;}
.ws5b{word-spacing:2.750400pt;}
.ws5f{word-spacing:2.808000pt;}
.ws5d{word-spacing:2.908800pt;}
.wsdc{word-spacing:3.016800pt;}
.wsdd{word-spacing:3.045600pt;}
.wsde{word-spacing:3.117600pt;}
.ws4e{word-spacing:3.218400pt;}
.ws4d{word-spacing:3.240000pt;}
.ws8a{word-spacing:3.513600pt;}
.ws8b{word-spacing:3.564000pt;}
.wsf7{word-spacing:3.614400pt;}
.wsf8{word-spacing:3.636000pt;}
.ws89{word-spacing:3.700800pt;}
.wsff{word-spacing:3.736800pt;}
.ws32{word-spacing:3.816000pt;}
.ws34{word-spacing:3.952800pt;}
.ws33{word-spacing:4.111200pt;}
.ws2f{word-spacing:4.860000pt;}
.ws3f{word-spacing:4.867200pt;}
.ws30{word-spacing:4.874400pt;}
.ws82{word-spacing:4.953600pt;}
.ws84{word-spacing:4.968000pt;}
.ws40{word-spacing:4.982400pt;}
.ws83{word-spacing:5.018400pt;}
.ws86{word-spacing:5.061600pt;}
.ws85{word-spacing:5.263200pt;}
.ws44{word-spacing:5.277600pt;}
.ws43{word-spacing:5.364000pt;}
.wsd1{word-spacing:5.772800pt;}
.wsd0{word-spacing:5.779200pt;}
.ws1c{word-spacing:5.832000pt;}
.ws1b{word-spacing:5.875200pt;}
.ws1a{word-spacing:5.918400pt;}
.ws91{word-spacing:6.393600pt;}
.ws53{word-spacing:6.400800pt;}
.ws52{word-spacing:6.415200pt;}
.ws56{word-spacing:6.472800pt;}
.ws57{word-spacing:6.494400pt;}
.wsf4{word-spacing:6.501600pt;}
.wsf3{word-spacing:6.530400pt;}
.ws90{word-spacing:6.573600pt;}
.wseb{word-spacing:6.732000pt;}
.wsea{word-spacing:6.904800pt;}
.wsd3{word-spacing:7.033600pt;}
.wsd{word-spacing:7.430400pt;}
.wsc{word-spacing:7.524000pt;}
.ws17{word-spacing:7.552800pt;}
.wsb{word-spacing:7.797600pt;}
.wsf2{word-spacing:7.819200pt;}
.wsa{word-spacing:7.920000pt;}
.ws78{word-spacing:8.488800pt;}
.ws65{word-spacing:8.812800pt;}
.ws76{word-spacing:8.856000pt;}
.ws77{word-spacing:8.870400pt;}
.ws64{word-spacing:8.964000pt;}
.ws66{word-spacing:9.007200pt;}
.ws9{word-spacing:9.100800pt;}
.ws62{word-spacing:9.136800pt;}
.ws8{word-spacing:9.194400pt;}
.ws63{word-spacing:9.216000pt;}
.ws99{word-spacing:9.410400pt;}
.ws9a{word-spacing:9.504000pt;}
.ws36{word-spacing:9.691200pt;}
.wsdb{word-spacing:9.712800pt;}
.ws15{word-spacing:9.748800pt;}
.ws35{word-spacing:9.777600pt;}
.wsda{word-spacing:9.806400pt;}
.wse9{word-spacing:10.641600pt;}
.ws61{word-spacing:10.663200pt;}
.wse8{word-spacing:10.670400pt;}
.ws54{word-spacing:10.684800pt;}
.ws55{word-spacing:10.749600pt;}
.ws7f{word-spacing:10.778400pt;}
.ws4a{word-spacing:10.821600pt;}
.ws81{word-spacing:10.908000pt;}
.ws4b{word-spacing:10.951200pt;}
.ws4c{word-spacing:11.030400pt;}
.ws80{word-spacing:11.044800pt;}
.wsee{word-spacing:11.361600pt;}
.ws101{word-spacing:12.240000pt;}
.ws100{word-spacing:12.355200pt;}
.ws11{word-spacing:12.830400pt;}
.ws12{word-spacing:12.852000pt;}
.ws6{word-spacing:13.233600pt;}
.ws7{word-spacing:13.305600pt;}
.ws47{word-spacing:14.104800pt;}
.ws45{word-spacing:14.198400pt;}
.wsf0{word-spacing:14.234400pt;}
.ws18{word-spacing:14.248800pt;}
.wsef{word-spacing:14.270400pt;}
.ws19{word-spacing:14.292000pt;}
.ws46{word-spacing:14.356800pt;}
.ws7c{word-spacing:15.760800pt;}
.ws7b{word-spacing:15.912000pt;}
.ws96{word-spacing:16.768800pt;}
.ws95{word-spacing:16.790400pt;}
.ws31{word-spacing:17.445600pt;}
.ws8e{word-spacing:17.884800pt;}
.wsdf{word-spacing:18.007200pt;}
.ws8f{word-spacing:18.050400pt;}
.wse0{word-spacing:18.064800pt;}
.ws1e{word-spacing:18.662400pt;}
.ws70{word-spacing:19.936800pt;}
.ws6f{word-spacing:20.001600pt;}
.ws59{word-spacing:20.088000pt;}
.ws5a{word-spacing:20.188800pt;}
.ws58{word-spacing:20.239200pt;}
.wse7{word-spacing:20.318400pt;}
.wse6{word-spacing:20.347200pt;}
.wscd{word-spacing:20.428800pt;}
.wscc{word-spacing:20.473600pt;}
.wsf9{word-spacing:20.822400pt;}
.wsfe{word-spacing:20.887200pt;}
.wsfc{word-spacing:20.894400pt;}
.wsfa{word-spacing:20.944800pt;}
.wsfd{word-spacing:20.966400pt;}
.ws38{word-spacing:21.132000pt;}
.ws37{word-spacing:21.240000pt;}
.ws72{word-spacing:21.268800pt;}
.ws71{word-spacing:21.643200pt;}
.ws75{word-spacing:21.650400pt;}
.ws74{word-spacing:21.693600pt;}
.ws73{word-spacing:21.708000pt;}
.ws68{word-spacing:21.902400pt;}
.ws69{word-spacing:21.952800pt;}
.ws67{word-spacing:21.967200pt;}
.ws3e{word-spacing:22.168800pt;}
.wsf5{word-spacing:22.233600pt;}
.wsf6{word-spacing:22.269600pt;}
.wsec{word-spacing:22.579200pt;}
.wsed{word-spacing:22.680000pt;}
.wsd4{word-spacing:24.620800pt;}
.ws42{word-spacing:24.789600pt;}
.wse2{word-spacing:25.012800pt;}
.wse1{word-spacing:25.070400pt;}
.ws93{word-spacing:27.734400pt;}
.ws51{word-spacing:28.944000pt;}
.ws50{word-spacing:28.958400pt;}
.ws4f{word-spacing:29.008800pt;}
.ws3d{word-spacing:33.062400pt;}
.ws3c{word-spacing:33.134400pt;}
.ws1f{word-spacing:36.223200pt;}
.ws20{word-spacing:36.345600pt;}
.ws7d{word-spacing:37.231200pt;}
.ws7e{word-spacing:37.267200pt;}
.wsb8{word-spacing:39.834176pt;}
.ws97{word-spacing:39.880800pt;}
.ws9f{word-spacing:42.547648pt;}
.wsaf{word-spacing:46.567616pt;}
.wsbd{word-spacing:46.572960pt;}
.wsd6{word-spacing:47.131200pt;}
.wsd5{word-spacing:47.260800pt;}
.wsba{word-spacing:58.735904pt;}
.wsb3{word-spacing:58.746592pt;}
.ws14{word-spacing:64.454400pt;}
.ws16{word-spacing:87.177600pt;}
.wsc2{word-spacing:102.898720pt;}
.wsc3{word-spacing:126.583328pt;}
.wsc5{word-spacing:128.186528pt;}
.wsa4{word-spacing:128.506080pt;}
.wsa3{word-spacing:128.801088pt;}
.wsc1{word-spacing:132.638080pt;}
.wsb6{word-spacing:150.893184pt;}
.wsb0{word-spacing:150.909216pt;}
.wsb1{word-spacing:150.914560pt;}
.wsb7{word-spacing:150.919904pt;}
.wsbb{word-spacing:150.946624pt;}
.wsc9{word-spacing:150.978688pt;}
.wsa2{word-spacing:158.551136pt;}
.wsa1{word-spacing:158.567168pt;}
.wsca{word-spacing:165.594528pt;}
.wsc6{word-spacing:180.718048pt;}
.wsa0{word-spacing:188.317216pt;}
.wsb4{word-spacing:195.355264pt;}
.wsc8{word-spacing:195.365952pt;}
._2c{margin-left:-225.303040pt;}
._2a{margin-left:-185.276480pt;}
._17{margin-left:-151.021440pt;}
._2b{margin-left:-127.668160pt;}
._35{margin-left:-86.412480pt;}
._3e{margin-left:-69.632320pt;}
._3a{margin-left:-68.189440pt;}
._38{margin-left:-56.646400pt;}
._6{margin-left:-26.856000pt;}
._0{margin-left:-0.944000pt;}
._1{width:1.144800pt;}
._29{width:20.146880pt;}
._36{width:28.526272pt;}
._5{width:32.616000pt;}
._45{width:42.740544pt;}
._f{width:53.496896pt;}
._16{width:57.608320pt;}
._4{width:59.184000pt;}
._2{width:67.536000pt;}
._10{width:71.257312pt;}
._26{width:73.212800pt;}
._22{width:74.372448pt;}
._8{width:75.816000pt;}
._1e{width:80.929536pt;}
._3{width:82.296000pt;}
._31{width:85.418496pt;}
._2f{width:86.364384pt;}
._1a{width:87.572128pt;}
._12{width:89.843328pt;}
._3c{width:92.269504pt;}
._e{width:93.877760pt;}
._41{width:95.604160pt;}
._24{width:98.064288pt;}
._33{width:99.708352pt;}
._20{width:101.963520pt;}
._19{width:103.433120pt;}
._42{width:105.544000pt;}
._32{width:108.119808pt;}
._21{width:110.175360pt;}
._d{width:113.503296pt;}
._28{width:115.104416pt;}
._13{width:117.338208pt;}
._1d{width:118.850560pt;}
._4b{width:124.488000pt;}
._48{width:125.789856pt;}
._c{width:126.823008pt;}
._3d{width:129.020192pt;}
._23{width:131.783040pt;}
._11{width:136.763648pt;}
._7{width:145.944000pt;}
._1f{width:154.623296pt;}
._1b{width:155.563840pt;}
._40{width:162.842368pt;}
._4a{width:169.590720pt;}
._30{width:171.211072pt;}
._1c{width:175.764160pt;}
._3b{width:178.238432pt;}
._2e{width:181.108160pt;}
._14{width:185.329920pt;}
._3f{width:191.315200pt;}
._18{width:197.033280pt;}
._39{width:199.064000pt;}
._15{width:205.476800pt;}
._43{width:206.770048pt;}
._2d{width:228.504096pt;}
._46{width:231.983872pt;}
._b{width:238.295424pt;}
._a{width:246.063872pt;}
._27{width:248.763200pt;}
._37{width:251.050432pt;}
._34{width:261.043712pt;}
._47{width:262.703872pt;}
._25{width:271.229376pt;}
._44{width:281.163872pt;}
._49{width:312.501984pt;}
._9{width:459.212480pt;}
._56{width:661.386667pt;}
._4e{width:954.826667pt;}
._51{width:1087.946667pt;}
._4d{width:1150.026667pt;}
._52{width:1265.866667pt;}
._5f{width:1283.466667pt;}
._60{width:1461.226667pt;}
._4c{width:1576.746667pt;}
._4f{width:1594.506667pt;}
._58{width:1603.786667pt;}
._5d{width:1621.226667pt;}
._50{width:1701.226667pt;}
._62{width:1728.106667pt;}
._5c{width:1817.066667pt;}
._5e{width:1861.546667pt;}
._55{width:1879.306667pt;}
._5a{width:1906.026667pt;}
._5b{width:1914.826667pt;}
._54{width:1941.386667pt;}
._61{width:2030.186667pt;}
._53{width:2047.946667pt;}
._59{width:2074.826667pt;}
._57{width:2128.266667pt;}
.fs3{font-size:53.440000pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.fs2{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs1{font-size:106.560000pt;}
.fs8{font-size:117.333333pt;}
.fsb{font-size:133.333333pt;}
.fs6{font-size:160.000000pt;}
.fsa{font-size:186.666667pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:82.027067pt;}
.y48{bottom:84.423067pt;}
.y23{bottom:84.427067pt;}
.yc8{bottom:95.243067pt;}
.ya2{bottom:102.187067pt;}
.y47{bottom:105.069067pt;}
.y22{bottom:105.147200pt;}
.yc7{bottom:115.961067pt;}
.ya1{bottom:120.587067pt;}
.y21{bottom:125.787067pt;}
.ya0{bottom:138.987067pt;}
.yc6{bottom:144.689067pt;}
.y20{bottom:146.347067pt;}
.y46{bottom:146.505067pt;}
.y9f{bottom:165.387067pt;}
.yc5{bottom:165.407067pt;}
.y45{bottom:167.223067pt;}
.y1f{bottom:173.627067pt;}
.y6e{bottom:181.707067pt;}
.y9e{bottom:183.787067pt;}
.y44{bottom:187.869067pt;}
.yc4{bottom:194.045067pt;}
.y1e{bottom:194.347067pt;}
.y6d{bottom:198.267067pt;}
.y43{bottom:208.587067pt;}
.y9d{bottom:210.187067pt;}
.yc3{bottom:214.763067pt;}
.y1d{bottom:214.987200pt;}
.y9c{bottom:228.587067pt;}
.y1c{bottom:235.547067pt;}
.yc2{bottom:243.491067pt;}
.y42{bottom:247.863067pt;}
.y9b{bottom:254.827067pt;}
.y1b{bottom:256.267067pt;}
.yc1{bottom:264.209067pt;}
.y41{bottom:268.671067pt;}
.y9a{bottom:273.867067pt;}
.y63{bottom:286.881067pt;}
.y40{bottom:289.389067pt;}
.yc0{bottom:292.847067pt;}
.y99{bottom:294.667200pt;}
.y1a{bottom:295.515067pt;}
.y3f{bottom:310.035067pt;}
.ybf{bottom:313.565067pt;}
.y98{bottom:313.947067pt;}
.y62{bottom:326.247067pt;}
.y3e{bottom:330.753067pt;}
.y97{bottom:332.267067pt;}
.y19{bottom:335.025067pt;}
.ycd{bottom:340.160000pt;}
.ybe{bottom:342.293067pt;}
.y61{bottom:347.055067pt;}
.y96{bottom:350.587067pt;}
.y3d{bottom:351.471067pt;}
.y18{bottom:355.833067pt;}
.ybd{bottom:363.011067pt;}
.y60{bottom:367.773067pt;}
.y95{bottom:368.907200pt;}
.y17{bottom:376.479067pt;}
.y93{bottom:387.223067pt;}
.y94{bottom:387.383387pt;}
.y3c{bottom:390.747067pt;}
.ybc{bottom:402.287067pt;}
.y92{bottom:402.587067pt;}
.y5f{bottom:407.049067pt;}
.y3b{bottom:411.555067pt;}
.y16{bottom:415.755067pt;}
.y91{bottom:419.227067pt;}
.ybb{bottom:423.005067pt;}
.y3a{bottom:432.201067pt;}
.y15{bottom:436.563067pt;}
.y8f{bottom:437.627067pt;}
.y90{bottom:437.787387pt;}
.yba{bottom:443.723067pt;}
.y5e{bottom:446.415067pt;}
.y39{bottom:452.919067pt;}
.ycc{bottom:453.546667pt;}
.y14{bottom:457.281067pt;}
.y5d{bottom:467.223067pt;}
.y8d{bottom:469.627067pt;}
.y8e{bottom:469.787387pt;}
.y38{bottom:473.637067pt;}
.yb9{bottom:482.999067pt;}
.y37{bottom:494.355067pt;}
.y13{bottom:496.557067pt;}
.y8c{bottom:501.547067pt;}
.y5c{bottom:506.499067pt;}
.y12{bottom:517.365067pt;}
.y8a{bottom:519.947067pt;}
.y8b{bottom:520.107387pt;}
.yb8{bottom:522.365067pt;}
.y5b{bottom:527.307067pt;}
.y36{bottom:533.631067pt;}
.y11{bottom:538.011067pt;}
.yb7{bottom:543.173067pt;}
.y88{bottom:551.947067pt;}
.y89{bottom:552.107387pt;}
.y35{bottom:554.349067pt;}
.y10{bottom:558.729067pt;}
.yb6{bottom:563.891067pt;}
.y5a{bottom:566.583067pt;}
.y34{bottom:575.067067pt;}
.yf{bottom:579.447067pt;}
.y86{bottom:583.947067pt;}
.y87{bottom:584.107387pt;}
.y59{bottom:587.301067pt;}
.yb5{bottom:603.167067pt;}
.y33{bottom:614.343067pt;}
.y85{bottom:615.867067pt;}
.ye{bottom:618.723067pt;}
.yb4{bottom:623.885067pt;}
.y58{bottom:626.577067pt;}
.y84{bottom:634.267067pt;}
.y32{bottom:635.151067pt;}
.yd{bottom:639.531067pt;}
.yb3{bottom:644.603067pt;}
.y57{bottom:647.385067pt;}
.y83{bottom:652.587067pt;}
.y31{bottom:655.869067pt;}
.yc{bottom:660.177067pt;}
.yb2{bottom:665.321067pt;}
.y56{bottom:668.103067pt;}
.y82{bottom:670.907067pt;}
.y30{bottom:676.515067pt;}
.yb1{bottom:686.039067pt;}
.y81{bottom:689.227067pt;}
.y2f{bottom:697.231067pt;}
.yb{bottom:699.453067pt;}
.y55{bottom:707.379067pt;}
.y7f{bottom:707.543067pt;}
.y80{bottom:707.703387pt;}
.ya{bottom:720.261067pt;}
.y7e{bottom:722.907067pt;}
.yb0{bottom:725.315067pt;}
.y54{bottom:728.187067pt;}
.y2e{bottom:736.345067pt;}
.y7d{bottom:739.543067pt;}
.y9{bottom:740.979067pt;}
.yaf{bottom:746.033067pt;}
.y53{bottom:748.825067pt;}
.y7c{bottom:754.907067pt;}
.y8{bottom:761.697067pt;}
.yae{bottom:766.751067pt;}
.y7b{bottom:771.547067pt;}
.y2d{bottom:775.873067pt;}
.y7{bottom:782.335067pt;}
.yad{bottom:787.469067pt;}
.y52{bottom:787.939067pt;}
.y7a{bottom:789.867067pt;}
.y6c{bottom:806.605067pt;}
.y79{bottom:808.187067pt;}
.y2c{bottom:815.239067pt;}
.y6{bottom:821.539067pt;}
.y78{bottom:826.583227pt;}
.yac{bottom:826.745067pt;}
.y51{bottom:827.377067pt;}
.y6b{bottom:828.691067pt;}
.y2b{bottom:836.047067pt;}
.y77{bottom:841.867067pt;}
.yab{bottom:847.553067pt;}
.y6a{bottom:849.085067pt;}
.y2a{bottom:856.765067pt;}
.y76{bottom:858.587067pt;}
.y5{bottom:861.067067pt;}
.y50{bottom:866.905067pt;}
.yaa{bottom:868.199067pt;}
.y69{bottom:869.479067pt;}
.y75{bottom:876.987067pt;}
.y74{bottom:877.067067pt;}
.y4{bottom:882.027067pt;}
.y4f{bottom:887.623067pt;}
.ya9{bottom:888.917067pt;}
.y68{bottom:889.873067pt;}
.y29{bottom:896.041067pt;}
.y4e{bottom:908.341067pt;}
.y67{bottom:908.827067pt;}
.y73{bottom:908.987067pt;}
.ya8{bottom:909.635067pt;}
.y28{bottom:916.759067pt;}
.y4d{bottom:929.059067pt;}
.y66{bottom:929.471067pt;}
.y72{bottom:929.547067pt;}
.ya7{bottom:930.353067pt;}
.y3{bottom:935.467067pt;}
.y27{bottom:937.477067pt;}
.y4c{bottom:949.705067pt;}
.y71{bottom:950.097867pt;}
.y65{bottom:950.907067pt;}
.y1{bottom:955.067067pt;}
.y26{bottom:958.195067pt;}
.ya6{bottom:969.629067pt;}
.y4b{bottom:970.423067pt;}
.y70{bottom:971.627067pt;}
.y25{bottom:978.913067pt;}
.ya5{bottom:990.347067pt;}
.y64{bottom:990.907067pt;}
.y4a{bottom:1009.699067pt;}
.y6f{bottom:1011.627067pt;}
.y24{bottom:1018.027067pt;}
.ya4{bottom:1029.627067pt;}
.y2{bottom:1030.505067pt;}
.y49{bottom:1030.507067pt;}
.yca{bottom:1474.013333pt;}
.yc9{bottom:1528.146667pt;}
.ycb{bottom:1557.160000pt;}
.h8{height:55.736250pt;}
.hf{height:56.055717pt;}
.ha{height:56.056250pt;}
.he{height:56.056890pt;}
.h17{height:61.187500pt;}
.h11{height:62.812500pt;}
.hb{height:63.110970pt;}
.h10{height:64.500000pt;}
.h1{height:70.664062pt;}
.h5{height:70.672063pt;}
.h4{height:70.696062pt;}
.h7{height:71.156250pt;}
.h3{height:72.562500pt;}
.h12{height:75.093750pt;}
.h6{height:75.142500pt;}
.h2{height:107.392500pt;}
.h9{height:116.856250pt;}
.hc{height:117.512890pt;}
.hd{height:117.833530pt;}
.h16{height:122.375000pt;}
.h19{height:139.062500pt;}
.h15{height:166.875000pt;}
.h18{height:194.687500pt;}
.h0{height:1122.666667pt;}
.h14{height:1587.333333pt;}
.h13{height:1587.400000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:18.893333pt;}
.x13{left:41.586667pt;}
.x15{left:56.693333pt;}
.xa{left:65.760000pt;}
.xb{left:73.281680pt;}
.x11{left:75.600000pt;}
.x3{left:94.560000pt;}
.x8{left:99.200000pt;}
.xf{left:114.400000pt;}
.x6{left:118.560000pt;}
.x4{left:129.360000pt;}
.x10{left:134.880000pt;}
.x5{left:141.846000pt;}
.x12{left:166.572000pt;}
.xc{left:202.646560pt;}
.x9{left:207.840000pt;}
.xe{left:210.809520pt;}
.xd{left:215.191600pt;}
.x1{left:236.560000pt;}
.x2{left:288.328000pt;}
.x7{left:660.960000pt;}
.x14{left:831.493333pt;}
}




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