
    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_364985c63cd09bce3ddc825b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1e42d48ce6daf7b21ab05c1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_5a292094594e24ffc0e5234b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_2ac7b54ab2ff0119c188642b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_69b80aa2d69e18f0e9999e83.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ce0615d33a13fa576647948.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_d0fd6278737fbd5de6d46f4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1b773c873041de98477fb62f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068848;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_a60a5c518a5e5702edc8dc53.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_640b058547f7c218e1825d5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d131415419206470905f046d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9bfc97ea183b279256412ca4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.051758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-18.363600px;}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-3.348000px;}
.ls2a{letter-spacing:-1.026000px;}
.ls2b{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.399000px;}
.ls18{letter-spacing:-0.228000px;}
.ls23{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.171000px;}
.ls2d{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.007800px;}
.ls2{letter-spacing:0.009000px;}
.lsd{letter-spacing:0.010200px;}
.ls0{letter-spacing:0.012000px;}
.ls16{letter-spacing:0.057000px;}
.ls24{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.285000px;}
.ls28{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.342000px;}
.ls29{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.414900px;}
.lsb{letter-spacing:0.456000px;}
.ls33{letter-spacing:0.486000px;}
.ls11{letter-spacing:0.513000px;}
.ls21{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.570000px;}
.ls26{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.624000px;}
.ls10{letter-spacing:0.627000px;}
.ls20{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.675000px;}
.ls1e{letter-spacing:0.684000px;}
.ls1a{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.712500px;}
.lsc{letter-spacing:0.741000px;}
.ls27{letter-spacing:0.756000px;}
.ls14{letter-spacing:0.855000px;}
.ls2f{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.907200px;}
.ls15{letter-spacing:0.969000px;}
.ls25{letter-spacing:0.972000px;}
.ls8{letter-spacing:1.026000px;}
.ls2e{letter-spacing:1.107000px;}
.ls31{letter-spacing:1.134000px;}
.ls22{letter-spacing:1.242000px;}
.ls30{letter-spacing:1.296000px;}
.ls5{letter-spacing:1.326000px;}
.ls1d{letter-spacing:9.900000px;}
.lsf{letter-spacing:414.813600px;}
.ls3{letter-spacing:1140.102000px;}
.ls7{letter-spacing:1338.660000px;}
.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;}
}
.ws1{word-spacing:-26.826000px;}
.ws0{word-spacing:-18.000000px;}
.ws30{word-spacing:-14.991000px;}
.wse5{word-spacing:-14.796000px;}
.wsd4{word-spacing:-14.742000px;}
.wse3{word-spacing:-14.607000px;}
.wse4{word-spacing:-14.364000px;}
.ws7f{word-spacing:-14.250000px;}
.ws8c{word-spacing:-14.202000px;}
.ws8b{word-spacing:-14.175000px;}
.wsd5{word-spacing:-13.878000px;}
.ws80{word-spacing:-13.507200px;}
.wsbc{word-spacing:-13.446000px;}
.wsd6{word-spacing:-13.392000px;}
.ws97{word-spacing:-13.284000px;}
.ws2{word-spacing:-12.624000px;}
.ws18{word-spacing:-12.600000px;}
.ws3{word-spacing:-10.500000px;}
.wse6{word-spacing:-10.152000px;}
.wsce{word-spacing:-3.726000px;}
.ws16{word-spacing:-1.938000px;}
.wsf6{word-spacing:-1.296000px;}
.wsa4{word-spacing:-1.242000px;}
.wseb{word-spacing:-1.134000px;}
.ws89{word-spacing:-0.969000px;}
.ws4f{word-spacing:-0.855000px;}
.wsda{word-spacing:-0.756000px;}
.ws1e{word-spacing:-0.741000px;}
.ws7d{word-spacing:-0.702000px;}
.wsba{word-spacing:-0.648000px;}
.ws31{word-spacing:-0.627000px;}
.ws8{word-spacing:-0.624000px;}
.wscc{word-spacing:-0.594000px;}
.ws7b{word-spacing:-0.570000px;}
.ws9d{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.513000px;}
.ws2e{word-spacing:-0.456000px;}
.wsf{word-spacing:-0.408000px;}
.wsd{word-spacing:-0.357000px;}
.ws25{word-spacing:-0.342000px;}
.ws47{word-spacing:-0.285000px;}
.ws1b{word-spacing:-0.051000px;}
.ws6{word-spacing:0.000000px;}
.wscf{word-spacing:0.054000px;}
.wse2{word-spacing:0.108000px;}
.wsa0{word-spacing:0.216000px;}
.ws72{word-spacing:0.228000px;}
.wsc8{word-spacing:0.324000px;}
.ws81{word-spacing:0.399000px;}
.wsd8{word-spacing:0.432000px;}
.wsb9{word-spacing:0.486000px;}
.ws61{word-spacing:0.570000px;}
.ws8d{word-spacing:0.594000px;}
.ws71{word-spacing:0.627000px;}
.ws39{word-spacing:0.912000px;}
.ws3c{word-spacing:0.969000px;}
.wsd2{word-spacing:1.188000px;}
.wsfb{word-spacing:1.296000px;}
.wsd1{word-spacing:1.350000px;}
.wsdb{word-spacing:1.458000px;}
.ws10{word-spacing:1.581000px;}
.wsc3{word-spacing:1.620000px;}
.ws19{word-spacing:1.632000px;}
.wsb4{word-spacing:1.674000px;}
.wse{word-spacing:1.734000px;}
.ws53{word-spacing:1.824000px;}
.wsb{word-spacing:1.989000px;}
.wsfa{word-spacing:1.998000px;}
.ws69{word-spacing:2.052000px;}
.wsf9{word-spacing:2.214000px;}
.ws60{word-spacing:2.223000px;}
.ws11{word-spacing:2.295000px;}
.wsc9{word-spacing:2.322000px;}
.ws88{word-spacing:2.337000px;}
.wsf0{word-spacing:2.376000px;}
.ws17{word-spacing:2.397000px;}
.ws101{word-spacing:2.538000px;}
.wsab{word-spacing:2.700000px;}
.ws3e{word-spacing:2.850000px;}
.ws14{word-spacing:2.907000px;}
.ws7e{word-spacing:2.964000px;}
.ws102{word-spacing:2.970000px;}
.wsee{word-spacing:3.024000px;}
.wse0{word-spacing:3.186000px;}
.ws15{word-spacing:3.213000px;}
.wsc0{word-spacing:3.240000px;}
.wsa6{word-spacing:3.294000px;}
.wsd0{word-spacing:3.348000px;}
.ws44{word-spacing:3.420000px;}
.wsd7{word-spacing:3.510000px;}
.ws63{word-spacing:3.534000px;}
.ws99{word-spacing:3.564000px;}
.ws49{word-spacing:3.591000px;}
.ws37{word-spacing:3.648000px;}
.ws1c{word-spacing:3.723000px;}
.ws96{word-spacing:3.726000px;}
.ws45{word-spacing:3.762000px;}
.wsb6{word-spacing:3.780000px;}
.ws56{word-spacing:3.819000px;}
.wsc{word-spacing:3.825000px;}
.wse9{word-spacing:3.834000px;}
.wsa{word-spacing:3.876000px;}
.wsc4{word-spacing:3.888000px;}
.ws38{word-spacing:3.933000px;}
.ws33{word-spacing:4.104000px;}
.ws52{word-spacing:4.161000px;}
.ws1a{word-spacing:4.233000px;}
.wsb2{word-spacing:4.320000px;}
.ws51{word-spacing:4.332000px;}
.wsc1{word-spacing:4.374000px;}
.wsbb{word-spacing:4.428000px;}
.ws5f{word-spacing:4.446000px;}
.ws13{word-spacing:4.488000px;}
.ws59{word-spacing:4.560000px;}
.ws5e{word-spacing:4.617000px;}
.ws29{word-spacing:4.674000px;}
.wsb1{word-spacing:4.698000px;}
.wsbe{word-spacing:4.752000px;}
.wsdf{word-spacing:4.806000px;}
.ws100{word-spacing:4.860000px;}
.ws83{word-spacing:4.902000px;}
.ws12{word-spacing:4.947000px;}
.ws82{word-spacing:4.959000px;}
.wsa5{word-spacing:5.130000px;}
.ws8f{word-spacing:5.184000px;}
.ws74{word-spacing:5.187000px;}
.ws9{word-spacing:5.253000px;}
.ws54{word-spacing:5.358000px;}
.ws9c{word-spacing:5.400000px;}
.ws6e{word-spacing:5.415000px;}
.ws48{word-spacing:5.472000px;}
.wsc2{word-spacing:5.508000px;}
.ws21{word-spacing:5.643000px;}
.ws2b{word-spacing:5.757000px;}
.ws1f{word-spacing:5.814000px;}
.ws5a{word-spacing:5.871000px;}
.wsf3{word-spacing:5.886000px;}
.ws28{word-spacing:5.928000px;}
.wscb{word-spacing:5.940000px;}
.ws7{word-spacing:6.000000px;}
.wse7{word-spacing:6.048000px;}
.ws3d{word-spacing:6.099000px;}
.ws34{word-spacing:6.156000px;}
.wsac{word-spacing:6.210000px;}
.ws4c{word-spacing:6.213000px;}
.ws55{word-spacing:6.270000px;}
.ws9b{word-spacing:6.318000px;}
.ws5d{word-spacing:6.327000px;}
.ws22{word-spacing:6.384000px;}
.ws57{word-spacing:6.441000px;}
.ws6f{word-spacing:6.498000px;}
.ws9e{word-spacing:6.534000px;}
.wsc5{word-spacing:6.642000px;}
.ws5b{word-spacing:6.669000px;}
.ws87{word-spacing:6.726000px;}
.ws7c{word-spacing:6.750000px;}
.ws6d{word-spacing:6.783000px;}
.wsde{word-spacing:6.804000px;}
.ws6c{word-spacing:6.840000px;}
.ws2c{word-spacing:6.897000px;}
.wsae{word-spacing:6.912000px;}
.ws8a{word-spacing:6.954000px;}
.wsf7{word-spacing:6.966000px;}
.ws92{word-spacing:7.074000px;}
.ws24{word-spacing:7.125000px;}
.ws93{word-spacing:7.128000px;}
.ws6b{word-spacing:7.182000px;}
.wsaf{word-spacing:7.236000px;}
.ws2f{word-spacing:7.239000px;}
.wsfc{word-spacing:7.290000px;}
.ws66{word-spacing:7.296000px;}
.ws91{word-spacing:7.344000px;}
.ws6a{word-spacing:7.524000px;}
.ws98{word-spacing:7.560000px;}
.ws23{word-spacing:7.581000px;}
.wsed{word-spacing:7.668000px;}
.ws35{word-spacing:7.695000px;}
.ws9f{word-spacing:7.722000px;}
.wsb5{word-spacing:7.776000px;}
.ws7a{word-spacing:7.866000px;}
.ws9a{word-spacing:7.884000px;}
.wsa8{word-spacing:7.992000px;}
.wsec{word-spacing:8.100000px;}
.ws68{word-spacing:8.151000px;}
.wse1{word-spacing:8.154000px;}
.ws3a{word-spacing:8.265000px;}
.wsad{word-spacing:8.370000px;}
.ws36{word-spacing:8.379000px;}
.ws40{word-spacing:8.436000px;}
.wsea{word-spacing:8.478000px;}
.ws20{word-spacing:8.493000px;}
.wsf8{word-spacing:8.532000px;}
.ws41{word-spacing:8.607000px;}
.wscd{word-spacing:8.640000px;}
.ws2a{word-spacing:8.664000px;}
.ws27{word-spacing:8.721000px;}
.wsb7{word-spacing:8.802000px;}
.wsf2{word-spacing:8.856000px;}
.wsdc{word-spacing:8.910000px;}
.ws46{word-spacing:9.006000px;}
.wsaa{word-spacing:9.072000px;}
.ws3b{word-spacing:9.120000px;}
.ws95{word-spacing:9.126000px;}
.ws84{word-spacing:9.234000px;}
.ws42{word-spacing:9.291000px;}
.ws73{word-spacing:9.405000px;}
.wsef{word-spacing:9.450000px;}
.ws43{word-spacing:9.462000px;}
.wsb3{word-spacing:9.558000px;}
.ws5c{word-spacing:9.576000px;}
.ws8e{word-spacing:9.720000px;}
.ws3f{word-spacing:9.747000px;}
.wsb0{word-spacing:9.774000px;}
.wsc6{word-spacing:9.828000px;}
.wsbd{word-spacing:9.882000px;}
.wsa1{word-spacing:9.936000px;}
.ws58{word-spacing:9.975000px;}
.ws4d{word-spacing:10.203000px;}
.wsb8{word-spacing:10.206000px;}
.ws4a{word-spacing:10.260000px;}
.wsa2{word-spacing:10.368000px;}
.ws94{word-spacing:10.422000px;}
.ws64{word-spacing:10.431000px;}
.wsf5{word-spacing:10.530000px;}
.ws65{word-spacing:10.602000px;}
.wsfd{word-spacing:10.692000px;}
.ws26{word-spacing:10.887000px;}
.wsca{word-spacing:10.908000px;}
.ws86{word-spacing:11.001000px;}
.ws4{word-spacing:11.016000px;}
.ws4b{word-spacing:11.115000px;}
.ws85{word-spacing:11.172000px;}
.wsa7{word-spacing:11.178000px;}
.wsdd{word-spacing:11.394000px;}
.wsd9{word-spacing:11.502000px;}
.wsd3{word-spacing:11.610000px;}
.wsfe{word-spacing:11.718000px;}
.wsc7{word-spacing:11.772000px;}
.wsbf{word-spacing:12.042000px;}
.wsf1{word-spacing:12.366000px;}
.ws70{word-spacing:12.483000px;}
.ws67{word-spacing:12.597000px;}
.ws2d{word-spacing:12.996000px;}
.ws90{word-spacing:13.068000px;}
.wsff{word-spacing:13.122000px;}
.ws50{word-spacing:13.167000px;}
.wse8{word-spacing:13.230000px;}
.ws62{word-spacing:13.281000px;}
.wsa9{word-spacing:13.392000px;}
.wsf4{word-spacing:13.446000px;}
.wsa3{word-spacing:13.500000px;}
.ws4e{word-spacing:13.794000px;}
.ws1d{word-spacing:14.250000px;}
.ws5{word-spacing:19.482000px;}
.ws76{word-spacing:49.488000px;}
.ws79{word-spacing:124.800000px;}
.ws75{word-spacing:150.432000px;}
.ws77{word-spacing:185.088000px;}
.ws78{word-spacing:191.520000px;}
._0{margin-left:-108.000000px;}
._22{margin-left:-7.578300px;}
._3{margin-left:-6.324000px;}
._4{margin-left:-5.232600px;}
._5{margin-left:-3.237600px;}
._1{margin-left:-2.040000px;}
._2{margin-left:-1.020000px;}
._8{width:1.147500px;}
._9{width:2.458200px;}
._a{width:3.684900px;}
._7{width:4.716600px;}
._6{width:6.528000px;}
._e{width:7.546800px;}
._d{width:9.074400px;}
._b{width:10.552500px;}
._c{width:12.488700px;}
._21{width:14.876100px;}
._11{width:15.931500px;}
._10{width:26.574600px;}
._15{width:36.624000px;}
._f{width:41.562600px;}
._14{width:58.416000px;}
._1b{width:113.088000px;}
._16{width:137.088000px;}
._19{width:145.104000px;}
._1c{width:155.376000px;}
._17{width:161.088000px;}
._12{width:181.104000px;}
._13{width:186.432000px;}
._18{width:196.128000px;}
._1f{width:218.160000px;}
._1e{width:224.832000px;}
._1d{width:227.472000px;}
._20{width:242.160000px;}
._1a{width:265.968000px;}
.fc1{color:transparent;}
.fc0{color:rgb(29,29,27);}
.fs9{font-size:33.231000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs5{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:87.805650px;}
.y149{bottom:119.954100px;}
.y176{bottom:124.420950px;}
.y7d{bottom:133.203300px;}
.ye2{bottom:133.223550px;}
.yfe{bottom:133.313550px;}
.y148{bottom:137.207100px;}
.y130{bottom:137.259600px;}
.yd9{bottom:137.260800px;}
.y55{bottom:138.847200px;}
.y29{bottom:140.960100px;}
.y91{bottom:140.992800px;}
.y175{bottom:141.673950px;}
.y12c{bottom:142.548450px;}
.y11e{bottom:149.497800px;}
.y7c{bottom:150.460050px;}
.ye1{bottom:150.480300px;}
.yfd{bottom:150.570300px;}
.yb0{bottom:154.273800px;}
.y147{bottom:154.460100px;}
.y12f{bottom:154.516350px;}
.yd8{bottom:154.517550px;}
.y28{bottom:155.954100px;}
.y54{bottom:156.103950px;}
.y90{bottom:158.249550px;}
.y174{bottom:158.926950px;}
.y12b{bottom:159.805200px;}
.y7b{bottom:167.716800px;}
.ye0{bottom:167.737050px;}
.y11d{bottom:170.761800px;}
.y27{bottom:170.948100px;}
.yaf{bottom:171.530550px;}
.y146{bottom:171.713100px;}
.y12e{bottom:171.773100px;}
.yd7{bottom:171.774300px;}
.y53{bottom:173.360700px;}
.y8f{bottom:175.506300px;}
.y173{bottom:176.179950px;}
.y12a{bottom:177.061950px;}
.y7a{bottom:184.973550px;}
.ydf{bottom:184.993800px;}
.yfc{bottom:185.069550px;}
.y26{bottom:185.942100px;}
.yae{bottom:188.787300px;}
.y145{bottom:188.966100px;}
.yd6{bottom:189.031050px;}
.y52{bottom:190.617450px;}
.y11c{bottom:192.025800px;}
.y8e{bottom:192.763050px;}
.y172{bottom:193.432950px;}
.y129{bottom:194.318700px;}
.y25{bottom:200.936100px;}
.y79{bottom:202.230300px;}
.yde{bottom:202.250550px;}
.yad{bottom:206.044050px;}
.y144{bottom:206.219100px;}
.y12d{bottom:206.273100px;}
.yd5{bottom:206.287800px;}
.y51{bottom:207.874200px;}
.y8d{bottom:210.019800px;}
.y171{bottom:210.685950px;}
.y128{bottom:211.575450px;}
.y11b{bottom:213.289800px;}
.y24{bottom:215.930100px;}
.y78{bottom:219.487050px;}
.ydd{bottom:219.507300px;}
.yac{bottom:223.300800px;}
.y143{bottom:223.472100px;}
.yd4{bottom:223.544550px;}
.yfb{bottom:223.573050px;}
.y50{bottom:225.130950px;}
.y8c{bottom:227.276550px;}
.y170{bottom:227.938950px;}
.y127{bottom:228.832200px;}
.y23{bottom:230.924100px;}
.y77{bottom:236.743800px;}
.ydc{bottom:236.764050px;}
.y11a{bottom:238.617600px;}
.yab{bottom:240.557550px;}
.y142{bottom:240.725100px;}
.yd3{bottom:240.801300px;}
.yfa{bottom:240.829800px;}
.y4f{bottom:242.387700px;}
.y8b{bottom:244.533300px;}
.y16f{bottom:245.191950px;}
.y22{bottom:245.918100px;}
.y126{bottom:246.088950px;}
.y76{bottom:254.000550px;}
.yaa{bottom:257.814300px;}
.y141{bottom:257.978100px;}
.yd2{bottom:258.058050px;}
.yf9{bottom:258.086550px;}
.y4e{bottom:259.644450px;}
.y21{bottom:260.912100px;}
.y8a{bottom:261.790050px;}
.y16e{bottom:262.444950px;}
.y125{bottom:263.345700px;}
.y75{bottom:271.257300px;}
.ydb{bottom:271.263300px;}
.y119{bottom:272.062350px;}
.ya9{bottom:275.071050px;}
.y140{bottom:275.231100px;}
.yd1{bottom:275.314800px;}
.yf8{bottom:275.343300px;}
.y20{bottom:275.906100px;}
.y4d{bottom:276.901200px;}
.y89{bottom:279.046800px;}
.y16d{bottom:279.697950px;}
.y124{bottom:280.602450px;}
.y74{bottom:288.514050px;}
.y118{bottom:289.319100px;}
.y1f{bottom:290.900100px;}
.ya8{bottom:292.327800px;}
.y13f{bottom:292.484100px;}
.yd0{bottom:292.571550px;}
.yf7{bottom:292.600050px;}
.y4c{bottom:294.157950px;}
.y88{bottom:296.303550px;}
.y16c{bottom:296.950950px;}
.y123{bottom:297.859200px;}
.y1e{bottom:305.894100px;}
.y117{bottom:306.575850px;}
.ya7{bottom:309.584550px;}
.y13e{bottom:309.737100px;}
.yda{bottom:309.773100px;}
.yf6{bottom:309.856800px;}
.y4b{bottom:311.414700px;}
.y87{bottom:313.560300px;}
.y16b{bottom:314.203950px;}
.y122{bottom:315.115950px;}
.y73{bottom:323.013300px;}
.y116{bottom:323.832600px;}
.ya6{bottom:326.841300px;}
.y13d{bottom:326.990100px;}
.ycf{bottom:327.070800px;}
.yf5{bottom:327.113550px;}
.y4a{bottom:328.671450px;}
.y86{bottom:330.817050px;}
.y16a{bottom:331.456950px;}
.y121{bottom:332.372700px;}
.y1d{bottom:335.894850px;}
.y115{bottom:341.089350px;}
.ya5{bottom:344.098050px;}
.y13c{bottom:344.243100px;}
.yf4{bottom:344.370300px;}
.y49{bottom:345.928200px;}
.y85{bottom:348.073800px;}
.y169{bottom:348.709950px;}
.y1c{bottom:350.888850px;}
.y114{bottom:358.346100px;}
.ya4{bottom:361.354800px;}
.y13b{bottom:361.496100px;}
.y72{bottom:361.523100px;}
.yf3{bottom:361.627050px;}
.y48{bottom:363.184950px;}
.y84{bottom:365.330550px;}
.yce{bottom:365.574300px;}
.y168{bottom:365.962950px;}
.y120{bottom:366.872700px;}
.y113{bottom:375.602850px;}
.ya3{bottom:378.611550px;}
.y13a{bottom:378.749100px;}
.yf2{bottom:378.883800px;}
.y47{bottom:380.441700px;}
.y1b{bottom:380.889600px;}
.y83{bottom:382.587300px;}
.ycd{bottom:382.831050px;}
.y167{bottom:383.215950px;}
.y112{bottom:392.859600px;}
.ya2{bottom:395.868300px;}
.y1a{bottom:395.883600px;}
.y139{bottom:396.002100px;}
.y46{bottom:397.698450px;}
.y82{bottom:399.844050px;}
.y71{bottom:400.026300px;}
.ycc{bottom:400.087800px;}
.y166{bottom:400.468950px;}
.y11f{bottom:405.382500px;}
.y111{bottom:410.116350px;}
.y19{bottom:410.877600px;}
.ya1{bottom:413.125050px;}
.y138{bottom:413.255100px;}
.yf1{bottom:413.383050px;}
.y45{bottom:414.955200px;}
.y81{bottom:417.100800px;}
.y70{bottom:417.269550px;}
.ycb{bottom:417.344550px;}
.y165{bottom:417.721950px;}
.y18{bottom:425.871600px;}
.y110{bottom:427.373100px;}
.ya0{bottom:430.381800px;}
.y137{bottom:430.508100px;}
.y44{bottom:432.211950px;}
.y80{bottom:434.357550px;}
.y6f{bottom:434.526300px;}
.yca{bottom:434.601300px;}
.y164{bottom:434.974950px;}
.y17{bottom:440.865600px;}
.y10f{bottom:444.629850px;}
.y9f{bottom:447.638550px;}
.y136{bottom:447.761100px;}
.y43{bottom:449.468700px;}
.y7f{bottom:451.614300px;}
.y6e{bottom:451.628550px;}
.yc9{bottom:451.858050px;}
.yf0{bottom:451.886550px;}
.y163{bottom:452.227950px;}
.y16{bottom:455.859600px;}
.y10e{bottom:461.886600px;}
.y9e{bottom:464.895300px;}
.y135{bottom:465.014100px;}
.y42{bottom:466.725450px;}
.y7e{bottom:468.871050px;}
.yc8{bottom:469.114800px;}
.yef{bottom:469.143300px;}
.y162{bottom:469.480950px;}
.y15{bottom:470.853600px;}
.y10d{bottom:479.143350px;}
.y9d{bottom:482.152050px;}
.y134{bottom:482.267100px;}
.y41{bottom:483.982200px;}
.y14{bottom:485.847600px;}
.y6d{bottom:486.127800px;}
.yc7{bottom:486.371550px;}
.yee{bottom:486.400050px;}
.y161{bottom:486.733950px;}
.y10c{bottom:496.400100px;}
.y9c{bottom:499.408800px;}
.y133{bottom:499.520100px;}
.y13{bottom:500.841600px;}
.y40{bottom:501.238950px;}
.y6c{bottom:503.384550px;}
.yc6{bottom:503.628300px;}
.yed{bottom:503.656800px;}
.y160{bottom:503.986950px;}
.y10b{bottom:513.656850px;}
.y12{bottom:515.835600px;}
.y9b{bottom:516.665550px;}
.y132{bottom:516.773100px;}
.y3f{bottom:518.495700px;}
.y6b{bottom:520.641300px;}
.yc5{bottom:520.885050px;}
.yec{bottom:520.913550px;}
.y15f{bottom:521.239950px;}
.y11{bottom:530.829600px;}
.y9a{bottom:533.922300px;}
.y3e{bottom:535.752450px;}
.y6a{bottom:537.898050px;}
.yc4{bottom:538.141800px;}
.yeb{bottom:538.170300px;}
.y15e{bottom:538.492950px;}
.y10{bottom:545.823600px;}
.y10a{bottom:549.170700px;}
.y99{bottom:551.179050px;}
.y131{bottom:551.273100px;}
.y3d{bottom:553.009200px;}
.y69{bottom:555.154800px;}
.yc3{bottom:555.398550px;}
.y15d{bottom:555.745950px;}
.yf{bottom:560.817600px;}
.y98{bottom:568.435800px;}
.y3c{bottom:570.265950px;}
.y109{bottom:570.434700px;}
.y68{bottom:572.411550px;}
.yc2{bottom:572.655300px;}
.yea{bottom:572.669550px;}
.y15c{bottom:572.998950px;}
.ye{bottom:575.811600px;}
.y97{bottom:585.692550px;}
.y3b{bottom:587.522700px;}
.y67{bottom:589.668300px;}
.yc1{bottom:589.912050px;}
.ye9{bottom:589.926300px;}
.y15b{bottom:590.251950px;}
.yd{bottom:590.805600px;}
.y108{bottom:591.698700px;}
.y96{bottom:602.949300px;}
.y3a{bottom:604.779450px;}
.yc{bottom:605.799600px;}
.y66{bottom:606.925050px;}
.yc0{bottom:607.168800px;}
.ye8{bottom:607.183050px;}
.y15a{bottom:607.504950px;}
.y107{bottom:612.962700px;}
.y95{bottom:620.206050px;}
.yb{bottom:620.793600px;}
.y39{bottom:622.036200px;}
.y65{bottom:624.181800px;}
.ybf{bottom:624.425550px;}
.ye7{bottom:624.439800px;}
.y159{bottom:624.757950px;}
.y94{bottom:637.462800px;}
.y106{bottom:638.573250px;}
.y38{bottom:639.292950px;}
.y64{bottom:641.438550px;}
.ybe{bottom:641.682300px;}
.ye6{bottom:641.696550px;}
.y158{bottom:642.010950px;}
.y93{bottom:654.719550px;}
.y37{bottom:656.549700px;}
.y63{bottom:658.695300px;}
.ybd{bottom:658.939050px;}
.ye5{bottom:658.953300px;}
.y157{bottom:659.263950px;}
.ya{bottom:665.805600px;}
.y105{bottom:671.989350px;}
.y36{bottom:673.806450px;}
.y62{bottom:675.952050px;}
.ybc{bottom:676.195800px;}
.ye4{bottom:676.210050px;}
.y156{bottom:676.516950px;}
.y9{bottom:680.049600px;}
.y92{bottom:689.218800px;}
.y104{bottom:689.246100px;}
.y35{bottom:691.063200px;}
.y61{bottom:693.208800px;}
.ybb{bottom:693.452550px;}
.ye3{bottom:693.466800px;}
.y155{bottom:693.769950px;}
.y8{bottom:694.293600px;}
.y103{bottom:706.502850px;}
.y60{bottom:710.465550px;}
.yba{bottom:710.709300px;}
.y154{bottom:711.022950px;}
.y102{bottom:723.759600px;}
.y34{bottom:725.563200px;}
.y5f{bottom:727.722300px;}
.yb9{bottom:727.966050px;}
.y153{bottom:728.275950px;}
.y7{bottom:737.045850px;}
.y101{bottom:741.016350px;}
.y5e{bottom:744.979050px;}
.yb8{bottom:745.222800px;}
.y152{bottom:745.528950px;}
.y6{bottom:755.043600px;}
.y100{bottom:758.273100px;}
.y5d{bottom:762.235800px;}
.yb7{bottom:762.479550px;}
.y151{bottom:762.781950px;}
.y33{bottom:764.121000px;}
.y5{bottom:773.043600px;}
.y32{bottom:779.115000px;}
.y5c{bottom:779.492550px;}
.yb6{bottom:779.736300px;}
.y150{bottom:780.034950px;}
.yff{bottom:792.773100px;}
.y31{bottom:794.109000px;}
.y5b{bottom:796.749300px;}
.yb5{bottom:796.993050px;}
.y14f{bottom:797.287950px;}
.y30{bottom:809.103000px;}
.y5a{bottom:814.006050px;}
.yb4{bottom:814.249800px;}
.y14e{bottom:814.540950px;}
.y4{bottom:815.667600px;}
.y2f{bottom:824.097000px;}
.y59{bottom:831.262800px;}
.yb3{bottom:831.506550px;}
.y14d{bottom:831.793950px;}
.y2e{bottom:839.091000px;}
.y3{bottom:845.655600px;}
.y58{bottom:848.519550px;}
.yb2{bottom:848.763300px;}
.y14c{bottom:849.046950px;}
.y2d{bottom:854.085000px;}
.y57{bottom:865.776300px;}
.y14b{bottom:866.299950px;}
.y2c{bottom:869.079000px;}
.y2{bottom:875.643600px;}
.y56{bottom:883.033050px;}
.yb1{bottom:883.262550px;}
.y14a{bottom:883.552950px;}
.y2b{bottom:884.073000px;}
.y2a{bottom:925.010700px;}
.h8{height:34.913086px;}
.he{height:39.020508px;}
.h5{height:42.117188px;}
.h6{height:42.234375px;}
.h7{height:44.749512px;}
.hf{height:47.381836px;}
.h10{height:47.513672px;}
.hb{height:50.014160px;}
.hd{height:50.068160px;}
.h4{height:50.153320px;}
.hc{height:50.632160px;}
.h9{height:52.646484px;}
.h2{height:63.175781px;}
.ha{height:63.949219px;}
.h3{height:69.826172px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x8{left:89.271450px;}
.x4{left:114.803250px;}
.x3{left:127.559100px;}
.x6{left:137.749050px;}
.x5{left:157.324350px;}
.x7{left:188.787450px;}
.x9{left:200.460000px;}
.x1{left:610.784700px;}
@media print{
.v1{vertical-align:-16.323200pt;}
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-2.976000pt;}
.ls2a{letter-spacing:-0.912000pt;}
.ls2b{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.354667pt;}
.ls18{letter-spacing:-0.202667pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.152000pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.006933pt;}
.ls2{letter-spacing:0.008000pt;}
.lsd{letter-spacing:0.009067pt;}
.ls0{letter-spacing:0.010667pt;}
.ls16{letter-spacing:0.050667pt;}
.ls24{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.253333pt;}
.ls28{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.304000pt;}
.ls29{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.368800pt;}
.lsb{letter-spacing:0.405333pt;}
.ls33{letter-spacing:0.432000pt;}
.ls11{letter-spacing:0.456000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.506667pt;}
.ls26{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.554667pt;}
.ls10{letter-spacing:0.557333pt;}
.ls20{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.600000pt;}
.ls1e{letter-spacing:0.608000pt;}
.ls1a{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.633333pt;}
.lsc{letter-spacing:0.658667pt;}
.ls27{letter-spacing:0.672000pt;}
.ls14{letter-spacing:0.760000pt;}
.ls2f{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.806400pt;}
.ls15{letter-spacing:0.861333pt;}
.ls25{letter-spacing:0.864000pt;}
.ls8{letter-spacing:0.912000pt;}
.ls2e{letter-spacing:0.984000pt;}
.ls31{letter-spacing:1.008000pt;}
.ls22{letter-spacing:1.104000pt;}
.ls30{letter-spacing:1.152000pt;}
.ls5{letter-spacing:1.178667pt;}
.ls1d{letter-spacing:8.800000pt;}
.lsf{letter-spacing:368.723200pt;}
.ls3{letter-spacing:1013.424000pt;}
.ls7{letter-spacing:1189.920000pt;}
.ws1{word-spacing:-23.845333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws30{word-spacing:-13.325333pt;}
.wse5{word-spacing:-13.152000pt;}
.wsd4{word-spacing:-13.104000pt;}
.wse3{word-spacing:-12.984000pt;}
.wse4{word-spacing:-12.768000pt;}
.ws7f{word-spacing:-12.666667pt;}
.ws8c{word-spacing:-12.624000pt;}
.ws8b{word-spacing:-12.600000pt;}
.wsd5{word-spacing:-12.336000pt;}
.ws80{word-spacing:-12.006400pt;}
.wsbc{word-spacing:-11.952000pt;}
.wsd6{word-spacing:-11.904000pt;}
.ws97{word-spacing:-11.808000pt;}
.ws2{word-spacing:-11.221333pt;}
.ws18{word-spacing:-11.200000pt;}
.ws3{word-spacing:-9.333333pt;}
.wse6{word-spacing:-9.024000pt;}
.wsce{word-spacing:-3.312000pt;}
.ws16{word-spacing:-1.722667pt;}
.wsf6{word-spacing:-1.152000pt;}
.wsa4{word-spacing:-1.104000pt;}
.wseb{word-spacing:-1.008000pt;}
.ws89{word-spacing:-0.861333pt;}
.ws4f{word-spacing:-0.760000pt;}
.wsda{word-spacing:-0.672000pt;}
.ws1e{word-spacing:-0.658667pt;}
.ws7d{word-spacing:-0.624000pt;}
.wsba{word-spacing:-0.576000pt;}
.ws31{word-spacing:-0.557333pt;}
.ws8{word-spacing:-0.554667pt;}
.wscc{word-spacing:-0.528000pt;}
.ws7b{word-spacing:-0.506667pt;}
.ws9d{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.456000pt;}
.ws2e{word-spacing:-0.405333pt;}
.wsf{word-spacing:-0.362667pt;}
.wsd{word-spacing:-0.317333pt;}
.ws25{word-spacing:-0.304000pt;}
.ws47{word-spacing:-0.253333pt;}
.ws1b{word-spacing:-0.045333pt;}
.ws6{word-spacing:0.000000pt;}
.wscf{word-spacing:0.048000pt;}
.wse2{word-spacing:0.096000pt;}
.wsa0{word-spacing:0.192000pt;}
.ws72{word-spacing:0.202667pt;}
.wsc8{word-spacing:0.288000pt;}
.ws81{word-spacing:0.354667pt;}
.wsd8{word-spacing:0.384000pt;}
.wsb9{word-spacing:0.432000pt;}
.ws61{word-spacing:0.506667pt;}
.ws8d{word-spacing:0.528000pt;}
.ws71{word-spacing:0.557333pt;}
.ws39{word-spacing:0.810667pt;}
.ws3c{word-spacing:0.861333pt;}
.wsd2{word-spacing:1.056000pt;}
.wsfb{word-spacing:1.152000pt;}
.wsd1{word-spacing:1.200000pt;}
.wsdb{word-spacing:1.296000pt;}
.ws10{word-spacing:1.405333pt;}
.wsc3{word-spacing:1.440000pt;}
.ws19{word-spacing:1.450667pt;}
.wsb4{word-spacing:1.488000pt;}
.wse{word-spacing:1.541333pt;}
.ws53{word-spacing:1.621333pt;}
.wsb{word-spacing:1.768000pt;}
.wsfa{word-spacing:1.776000pt;}
.ws69{word-spacing:1.824000pt;}
.wsf9{word-spacing:1.968000pt;}
.ws60{word-spacing:1.976000pt;}
.ws11{word-spacing:2.040000pt;}
.wsc9{word-spacing:2.064000pt;}
.ws88{word-spacing:2.077333pt;}
.wsf0{word-spacing:2.112000pt;}
.ws17{word-spacing:2.130667pt;}
.ws101{word-spacing:2.256000pt;}
.wsab{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.533333pt;}
.ws14{word-spacing:2.584000pt;}
.ws7e{word-spacing:2.634667pt;}
.ws102{word-spacing:2.640000pt;}
.wsee{word-spacing:2.688000pt;}
.wse0{word-spacing:2.832000pt;}
.ws15{word-spacing:2.856000pt;}
.wsc0{word-spacing:2.880000pt;}
.wsa6{word-spacing:2.928000pt;}
.wsd0{word-spacing:2.976000pt;}
.ws44{word-spacing:3.040000pt;}
.wsd7{word-spacing:3.120000pt;}
.ws63{word-spacing:3.141333pt;}
.ws99{word-spacing:3.168000pt;}
.ws49{word-spacing:3.192000pt;}
.ws37{word-spacing:3.242667pt;}
.ws1c{word-spacing:3.309333pt;}
.ws96{word-spacing:3.312000pt;}
.ws45{word-spacing:3.344000pt;}
.wsb6{word-spacing:3.360000pt;}
.ws56{word-spacing:3.394667pt;}
.wsc{word-spacing:3.400000pt;}
.wse9{word-spacing:3.408000pt;}
.wsa{word-spacing:3.445333pt;}
.wsc4{word-spacing:3.456000pt;}
.ws38{word-spacing:3.496000pt;}
.ws33{word-spacing:3.648000pt;}
.ws52{word-spacing:3.698667pt;}
.ws1a{word-spacing:3.762667pt;}
.wsb2{word-spacing:3.840000pt;}
.ws51{word-spacing:3.850667pt;}
.wsc1{word-spacing:3.888000pt;}
.wsbb{word-spacing:3.936000pt;}
.ws5f{word-spacing:3.952000pt;}
.ws13{word-spacing:3.989333pt;}
.ws59{word-spacing:4.053333pt;}
.ws5e{word-spacing:4.104000pt;}
.ws29{word-spacing:4.154667pt;}
.wsb1{word-spacing:4.176000pt;}
.wsbe{word-spacing:4.224000pt;}
.wsdf{word-spacing:4.272000pt;}
.ws100{word-spacing:4.320000pt;}
.ws83{word-spacing:4.357333pt;}
.ws12{word-spacing:4.397333pt;}
.ws82{word-spacing:4.408000pt;}
.wsa5{word-spacing:4.560000pt;}
.ws8f{word-spacing:4.608000pt;}
.ws74{word-spacing:4.610667pt;}
.ws9{word-spacing:4.669333pt;}
.ws54{word-spacing:4.762667pt;}
.ws9c{word-spacing:4.800000pt;}
.ws6e{word-spacing:4.813333pt;}
.ws48{word-spacing:4.864000pt;}
.wsc2{word-spacing:4.896000pt;}
.ws21{word-spacing:5.016000pt;}
.ws2b{word-spacing:5.117333pt;}
.ws1f{word-spacing:5.168000pt;}
.ws5a{word-spacing:5.218667pt;}
.wsf3{word-spacing:5.232000pt;}
.ws28{word-spacing:5.269333pt;}
.wscb{word-spacing:5.280000pt;}
.ws7{word-spacing:5.333333pt;}
.wse7{word-spacing:5.376000pt;}
.ws3d{word-spacing:5.421333pt;}
.ws34{word-spacing:5.472000pt;}
.wsac{word-spacing:5.520000pt;}
.ws4c{word-spacing:5.522667pt;}
.ws55{word-spacing:5.573333pt;}
.ws9b{word-spacing:5.616000pt;}
.ws5d{word-spacing:5.624000pt;}
.ws22{word-spacing:5.674667pt;}
.ws57{word-spacing:5.725333pt;}
.ws6f{word-spacing:5.776000pt;}
.ws9e{word-spacing:5.808000pt;}
.wsc5{word-spacing:5.904000pt;}
.ws5b{word-spacing:5.928000pt;}
.ws87{word-spacing:5.978667pt;}
.ws7c{word-spacing:6.000000pt;}
.ws6d{word-spacing:6.029333pt;}
.wsde{word-spacing:6.048000pt;}
.ws6c{word-spacing:6.080000pt;}
.ws2c{word-spacing:6.130667pt;}
.wsae{word-spacing:6.144000pt;}
.ws8a{word-spacing:6.181333pt;}
.wsf7{word-spacing:6.192000pt;}
.ws92{word-spacing:6.288000pt;}
.ws24{word-spacing:6.333333pt;}
.ws93{word-spacing:6.336000pt;}
.ws6b{word-spacing:6.384000pt;}
.wsaf{word-spacing:6.432000pt;}
.ws2f{word-spacing:6.434667pt;}
.wsfc{word-spacing:6.480000pt;}
.ws66{word-spacing:6.485333pt;}
.ws91{word-spacing:6.528000pt;}
.ws6a{word-spacing:6.688000pt;}
.ws98{word-spacing:6.720000pt;}
.ws23{word-spacing:6.738667pt;}
.wsed{word-spacing:6.816000pt;}
.ws35{word-spacing:6.840000pt;}
.ws9f{word-spacing:6.864000pt;}
.wsb5{word-spacing:6.912000pt;}
.ws7a{word-spacing:6.992000pt;}
.ws9a{word-spacing:7.008000pt;}
.wsa8{word-spacing:7.104000pt;}
.wsec{word-spacing:7.200000pt;}
.ws68{word-spacing:7.245333pt;}
.wse1{word-spacing:7.248000pt;}
.ws3a{word-spacing:7.346667pt;}
.wsad{word-spacing:7.440000pt;}
.ws36{word-spacing:7.448000pt;}
.ws40{word-spacing:7.498667pt;}
.wsea{word-spacing:7.536000pt;}
.ws20{word-spacing:7.549333pt;}
.wsf8{word-spacing:7.584000pt;}
.ws41{word-spacing:7.650667pt;}
.wscd{word-spacing:7.680000pt;}
.ws2a{word-spacing:7.701333pt;}
.ws27{word-spacing:7.752000pt;}
.wsb7{word-spacing:7.824000pt;}
.wsf2{word-spacing:7.872000pt;}
.wsdc{word-spacing:7.920000pt;}
.ws46{word-spacing:8.005333pt;}
.wsaa{word-spacing:8.064000pt;}
.ws3b{word-spacing:8.106667pt;}
.ws95{word-spacing:8.112000pt;}
.ws84{word-spacing:8.208000pt;}
.ws42{word-spacing:8.258667pt;}
.ws73{word-spacing:8.360000pt;}
.wsef{word-spacing:8.400000pt;}
.ws43{word-spacing:8.410667pt;}
.wsb3{word-spacing:8.496000pt;}
.ws5c{word-spacing:8.512000pt;}
.ws8e{word-spacing:8.640000pt;}
.ws3f{word-spacing:8.664000pt;}
.wsb0{word-spacing:8.688000pt;}
.wsc6{word-spacing:8.736000pt;}
.wsbd{word-spacing:8.784000pt;}
.wsa1{word-spacing:8.832000pt;}
.ws58{word-spacing:8.866667pt;}
.ws4d{word-spacing:9.069333pt;}
.wsb8{word-spacing:9.072000pt;}
.ws4a{word-spacing:9.120000pt;}
.wsa2{word-spacing:9.216000pt;}
.ws94{word-spacing:9.264000pt;}
.ws64{word-spacing:9.272000pt;}
.wsf5{word-spacing:9.360000pt;}
.ws65{word-spacing:9.424000pt;}
.wsfd{word-spacing:9.504000pt;}
.ws26{word-spacing:9.677333pt;}
.wsca{word-spacing:9.696000pt;}
.ws86{word-spacing:9.778667pt;}
.ws4{word-spacing:9.792000pt;}
.ws4b{word-spacing:9.880000pt;}
.ws85{word-spacing:9.930667pt;}
.wsa7{word-spacing:9.936000pt;}
.wsdd{word-spacing:10.128000pt;}
.wsd9{word-spacing:10.224000pt;}
.wsd3{word-spacing:10.320000pt;}
.wsfe{word-spacing:10.416000pt;}
.wsc7{word-spacing:10.464000pt;}
.wsbf{word-spacing:10.704000pt;}
.wsf1{word-spacing:10.992000pt;}
.ws70{word-spacing:11.096000pt;}
.ws67{word-spacing:11.197333pt;}
.ws2d{word-spacing:11.552000pt;}
.ws90{word-spacing:11.616000pt;}
.wsff{word-spacing:11.664000pt;}
.ws50{word-spacing:11.704000pt;}
.wse8{word-spacing:11.760000pt;}
.ws62{word-spacing:11.805333pt;}
.wsa9{word-spacing:11.904000pt;}
.wsf4{word-spacing:11.952000pt;}
.wsa3{word-spacing:12.000000pt;}
.ws4e{word-spacing:12.261333pt;}
.ws1d{word-spacing:12.666667pt;}
.ws5{word-spacing:17.317333pt;}
.ws76{word-spacing:43.989333pt;}
.ws79{word-spacing:110.933333pt;}
.ws75{word-spacing:133.717333pt;}
.ws77{word-spacing:164.522667pt;}
.ws78{word-spacing:170.240000pt;}
._0{margin-left:-96.000000pt;}
._22{margin-left:-6.736267pt;}
._3{margin-left:-5.621333pt;}
._4{margin-left:-4.651200pt;}
._5{margin-left:-2.877867pt;}
._1{margin-left:-1.813333pt;}
._2{margin-left:-0.906667pt;}
._8{width:1.020000pt;}
._9{width:2.185067pt;}
._a{width:3.275467pt;}
._7{width:4.192533pt;}
._6{width:5.802667pt;}
._e{width:6.708267pt;}
._d{width:8.066133pt;}
._b{width:9.380000pt;}
._c{width:11.101067pt;}
._21{width:13.223200pt;}
._11{width:14.161333pt;}
._10{width:23.621867pt;}
._15{width:32.554667pt;}
._f{width:36.944533pt;}
._14{width:51.925333pt;}
._1b{width:100.522667pt;}
._16{width:121.856000pt;}
._19{width:128.981333pt;}
._1c{width:138.112000pt;}
._17{width:143.189333pt;}
._12{width:160.981333pt;}
._13{width:165.717333pt;}
._18{width:174.336000pt;}
._1f{width:193.920000pt;}
._1e{width:199.850667pt;}
._1d{width:202.197333pt;}
._20{width:215.253333pt;}
._1a{width:236.416000pt;}
.fs9{font-size:29.538667pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs5{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:78.049467pt;}
.y149{bottom:106.625867pt;}
.y176{bottom:110.596400pt;}
.y7d{bottom:118.402933pt;}
.ye2{bottom:118.420933pt;}
.yfe{bottom:118.500933pt;}
.y148{bottom:121.961867pt;}
.y130{bottom:122.008533pt;}
.yd9{bottom:122.009600pt;}
.y55{bottom:123.419733pt;}
.y29{bottom:125.297867pt;}
.y91{bottom:125.326933pt;}
.y175{bottom:125.932400pt;}
.y12c{bottom:126.709733pt;}
.y11e{bottom:132.886933pt;}
.y7c{bottom:133.742267pt;}
.ye1{bottom:133.760267pt;}
.yfd{bottom:133.840267pt;}
.yb0{bottom:137.132267pt;}
.y147{bottom:137.297867pt;}
.y12f{bottom:137.347867pt;}
.yd8{bottom:137.348933pt;}
.y28{bottom:138.625867pt;}
.y54{bottom:138.759067pt;}
.y90{bottom:140.666267pt;}
.y174{bottom:141.268400pt;}
.y12b{bottom:142.049067pt;}
.y7b{bottom:149.081600pt;}
.ye0{bottom:149.099600pt;}
.y11d{bottom:151.788267pt;}
.y27{bottom:151.953867pt;}
.yaf{bottom:152.471600pt;}
.y146{bottom:152.633867pt;}
.y12e{bottom:152.687200pt;}
.yd7{bottom:152.688267pt;}
.y53{bottom:154.098400pt;}
.y8f{bottom:156.005600pt;}
.y173{bottom:156.604400pt;}
.y12a{bottom:157.388400pt;}
.y7a{bottom:164.420933pt;}
.ydf{bottom:164.438933pt;}
.yfc{bottom:164.506267pt;}
.y26{bottom:165.281867pt;}
.yae{bottom:167.810933pt;}
.y145{bottom:167.969867pt;}
.yd6{bottom:168.027600pt;}
.y52{bottom:169.437733pt;}
.y11c{bottom:170.689600pt;}
.y8e{bottom:171.344933pt;}
.y172{bottom:171.940400pt;}
.y129{bottom:172.727733pt;}
.y25{bottom:178.609867pt;}
.y79{bottom:179.760267pt;}
.yde{bottom:179.778267pt;}
.yad{bottom:183.150267pt;}
.y144{bottom:183.305867pt;}
.y12d{bottom:183.353867pt;}
.yd5{bottom:183.366933pt;}
.y51{bottom:184.777067pt;}
.y8d{bottom:186.684267pt;}
.y171{bottom:187.276400pt;}
.y128{bottom:188.067067pt;}
.y11b{bottom:189.590933pt;}
.y24{bottom:191.937867pt;}
.y78{bottom:195.099600pt;}
.ydd{bottom:195.117600pt;}
.yac{bottom:198.489600pt;}
.y143{bottom:198.641867pt;}
.yd4{bottom:198.706267pt;}
.yfb{bottom:198.731600pt;}
.y50{bottom:200.116400pt;}
.y8c{bottom:202.023600pt;}
.y170{bottom:202.612400pt;}
.y127{bottom:203.406400pt;}
.y23{bottom:205.265867pt;}
.y77{bottom:210.438933pt;}
.ydc{bottom:210.456933pt;}
.y11a{bottom:212.104533pt;}
.yab{bottom:213.828933pt;}
.y142{bottom:213.977867pt;}
.yd3{bottom:214.045600pt;}
.yfa{bottom:214.070933pt;}
.y4f{bottom:215.455733pt;}
.y8b{bottom:217.362933pt;}
.y16f{bottom:217.948400pt;}
.y22{bottom:218.593867pt;}
.y126{bottom:218.745733pt;}
.y76{bottom:225.778267pt;}
.yaa{bottom:229.168267pt;}
.y141{bottom:229.313867pt;}
.yd2{bottom:229.384933pt;}
.yf9{bottom:229.410267pt;}
.y4e{bottom:230.795067pt;}
.y21{bottom:231.921867pt;}
.y8a{bottom:232.702267pt;}
.y16e{bottom:233.284400pt;}
.y125{bottom:234.085067pt;}
.y75{bottom:241.117600pt;}
.ydb{bottom:241.122933pt;}
.y119{bottom:241.833200pt;}
.ya9{bottom:244.507600pt;}
.y140{bottom:244.649867pt;}
.yd1{bottom:244.724267pt;}
.yf8{bottom:244.749600pt;}
.y20{bottom:245.249867pt;}
.y4d{bottom:246.134400pt;}
.y89{bottom:248.041600pt;}
.y16d{bottom:248.620400pt;}
.y124{bottom:249.424400pt;}
.y74{bottom:256.456933pt;}
.y118{bottom:257.172533pt;}
.y1f{bottom:258.577867pt;}
.ya8{bottom:259.846933pt;}
.y13f{bottom:259.985867pt;}
.yd0{bottom:260.063600pt;}
.yf7{bottom:260.088933pt;}
.y4c{bottom:261.473733pt;}
.y88{bottom:263.380933pt;}
.y16c{bottom:263.956400pt;}
.y123{bottom:264.763733pt;}
.y1e{bottom:271.905867pt;}
.y117{bottom:272.511867pt;}
.ya7{bottom:275.186267pt;}
.y13e{bottom:275.321867pt;}
.yda{bottom:275.353867pt;}
.yf6{bottom:275.428267pt;}
.y4b{bottom:276.813067pt;}
.y87{bottom:278.720267pt;}
.y16b{bottom:279.292400pt;}
.y122{bottom:280.103067pt;}
.y73{bottom:287.122933pt;}
.y116{bottom:287.851200pt;}
.ya6{bottom:290.525600pt;}
.y13d{bottom:290.657867pt;}
.ycf{bottom:290.729600pt;}
.yf5{bottom:290.767600pt;}
.y4a{bottom:292.152400pt;}
.y86{bottom:294.059600pt;}
.y16a{bottom:294.628400pt;}
.y121{bottom:295.442400pt;}
.y1d{bottom:298.573200pt;}
.y115{bottom:303.190533pt;}
.ya5{bottom:305.864933pt;}
.y13c{bottom:305.993867pt;}
.yf4{bottom:306.106933pt;}
.y49{bottom:307.491733pt;}
.y85{bottom:309.398933pt;}
.y169{bottom:309.964400pt;}
.y1c{bottom:311.901200pt;}
.y114{bottom:318.529867pt;}
.ya4{bottom:321.204267pt;}
.y13b{bottom:321.329867pt;}
.y72{bottom:321.353867pt;}
.yf3{bottom:321.446267pt;}
.y48{bottom:322.831067pt;}
.y84{bottom:324.738267pt;}
.yce{bottom:324.954933pt;}
.y168{bottom:325.300400pt;}
.y120{bottom:326.109067pt;}
.y113{bottom:333.869200pt;}
.ya3{bottom:336.543600pt;}
.y13a{bottom:336.665867pt;}
.yf2{bottom:336.785600pt;}
.y47{bottom:338.170400pt;}
.y1b{bottom:338.568533pt;}
.y83{bottom:340.077600pt;}
.ycd{bottom:340.294267pt;}
.y167{bottom:340.636400pt;}
.y112{bottom:349.208533pt;}
.ya2{bottom:351.882933pt;}
.y1a{bottom:351.896533pt;}
.y139{bottom:352.001867pt;}
.y46{bottom:353.509733pt;}
.y82{bottom:355.416933pt;}
.y71{bottom:355.578933pt;}
.ycc{bottom:355.633600pt;}
.y166{bottom:355.972400pt;}
.y11f{bottom:360.340000pt;}
.y111{bottom:364.547867pt;}
.y19{bottom:365.224533pt;}
.ya1{bottom:367.222267pt;}
.y138{bottom:367.337867pt;}
.yf1{bottom:367.451600pt;}
.y45{bottom:368.849067pt;}
.y81{bottom:370.756267pt;}
.y70{bottom:370.906267pt;}
.ycb{bottom:370.972933pt;}
.y165{bottom:371.308400pt;}
.y18{bottom:378.552533pt;}
.y110{bottom:379.887200pt;}
.ya0{bottom:382.561600pt;}
.y137{bottom:382.673867pt;}
.y44{bottom:384.188400pt;}
.y80{bottom:386.095600pt;}
.y6f{bottom:386.245600pt;}
.yca{bottom:386.312267pt;}
.y164{bottom:386.644400pt;}
.y17{bottom:391.880533pt;}
.y10f{bottom:395.226533pt;}
.y9f{bottom:397.900933pt;}
.y136{bottom:398.009867pt;}
.y43{bottom:399.527733pt;}
.y7f{bottom:401.434933pt;}
.y6e{bottom:401.447600pt;}
.yc9{bottom:401.651600pt;}
.yf0{bottom:401.676933pt;}
.y163{bottom:401.980400pt;}
.y16{bottom:405.208533pt;}
.y10e{bottom:410.565867pt;}
.y9e{bottom:413.240267pt;}
.y135{bottom:413.345867pt;}
.y42{bottom:414.867067pt;}
.y7e{bottom:416.774267pt;}
.yc8{bottom:416.990933pt;}
.yef{bottom:417.016267pt;}
.y162{bottom:417.316400pt;}
.y15{bottom:418.536533pt;}
.y10d{bottom:425.905200pt;}
.y9d{bottom:428.579600pt;}
.y134{bottom:428.681867pt;}
.y41{bottom:430.206400pt;}
.y14{bottom:431.864533pt;}
.y6d{bottom:432.113600pt;}
.yc7{bottom:432.330267pt;}
.yee{bottom:432.355600pt;}
.y161{bottom:432.652400pt;}
.y10c{bottom:441.244533pt;}
.y9c{bottom:443.918933pt;}
.y133{bottom:444.017867pt;}
.y13{bottom:445.192533pt;}
.y40{bottom:445.545733pt;}
.y6c{bottom:447.452933pt;}
.yc6{bottom:447.669600pt;}
.yed{bottom:447.694933pt;}
.y160{bottom:447.988400pt;}
.y10b{bottom:456.583867pt;}
.y12{bottom:458.520533pt;}
.y9b{bottom:459.258267pt;}
.y132{bottom:459.353867pt;}
.y3f{bottom:460.885067pt;}
.y6b{bottom:462.792267pt;}
.yc5{bottom:463.008933pt;}
.yec{bottom:463.034267pt;}
.y15f{bottom:463.324400pt;}
.y11{bottom:471.848533pt;}
.y9a{bottom:474.597600pt;}
.y3e{bottom:476.224400pt;}
.y6a{bottom:478.131600pt;}
.yc4{bottom:478.348267pt;}
.yeb{bottom:478.373600pt;}
.y15e{bottom:478.660400pt;}
.y10{bottom:485.176533pt;}
.y10a{bottom:488.151733pt;}
.y99{bottom:489.936933pt;}
.y131{bottom:490.020533pt;}
.y3d{bottom:491.563733pt;}
.y69{bottom:493.470933pt;}
.yc3{bottom:493.687600pt;}
.y15d{bottom:493.996400pt;}
.yf{bottom:498.504533pt;}
.y98{bottom:505.276267pt;}
.y3c{bottom:506.903067pt;}
.y109{bottom:507.053067pt;}
.y68{bottom:508.810267pt;}
.yc2{bottom:509.026933pt;}
.yea{bottom:509.039600pt;}
.y15c{bottom:509.332400pt;}
.ye{bottom:511.832533pt;}
.y97{bottom:520.615600pt;}
.y3b{bottom:522.242400pt;}
.y67{bottom:524.149600pt;}
.yc1{bottom:524.366267pt;}
.ye9{bottom:524.378933pt;}
.y15b{bottom:524.668400pt;}
.yd{bottom:525.160533pt;}
.y108{bottom:525.954400pt;}
.y96{bottom:535.954933pt;}
.y3a{bottom:537.581733pt;}
.yc{bottom:538.488533pt;}
.y66{bottom:539.488933pt;}
.yc0{bottom:539.705600pt;}
.ye8{bottom:539.718267pt;}
.y15a{bottom:540.004400pt;}
.y107{bottom:544.855733pt;}
.y95{bottom:551.294267pt;}
.yb{bottom:551.816533pt;}
.y39{bottom:552.921067pt;}
.y65{bottom:554.828267pt;}
.ybf{bottom:555.044933pt;}
.ye7{bottom:555.057600pt;}
.y159{bottom:555.340400pt;}
.y94{bottom:566.633600pt;}
.y106{bottom:567.620667pt;}
.y38{bottom:568.260400pt;}
.y64{bottom:570.167600pt;}
.ybe{bottom:570.384267pt;}
.ye6{bottom:570.396933pt;}
.y158{bottom:570.676400pt;}
.y93{bottom:581.972933pt;}
.y37{bottom:583.599733pt;}
.y63{bottom:585.506933pt;}
.ybd{bottom:585.723600pt;}
.ye5{bottom:585.736267pt;}
.y157{bottom:586.012400pt;}
.ya{bottom:591.827200pt;}
.y105{bottom:597.323867pt;}
.y36{bottom:598.939067pt;}
.y62{bottom:600.846267pt;}
.ybc{bottom:601.062933pt;}
.ye4{bottom:601.075600pt;}
.y156{bottom:601.348400pt;}
.y9{bottom:604.488533pt;}
.y92{bottom:612.638933pt;}
.y104{bottom:612.663200pt;}
.y35{bottom:614.278400pt;}
.y61{bottom:616.185600pt;}
.ybb{bottom:616.402267pt;}
.ye3{bottom:616.414933pt;}
.y155{bottom:616.684400pt;}
.y8{bottom:617.149867pt;}
.y103{bottom:628.002533pt;}
.y60{bottom:631.524933pt;}
.yba{bottom:631.741600pt;}
.y154{bottom:632.020400pt;}
.y102{bottom:643.341867pt;}
.y34{bottom:644.945067pt;}
.y5f{bottom:646.864267pt;}
.yb9{bottom:647.080933pt;}
.y153{bottom:647.356400pt;}
.y7{bottom:655.151867pt;}
.y101{bottom:658.681200pt;}
.y5e{bottom:662.203600pt;}
.yb8{bottom:662.420267pt;}
.y152{bottom:662.692400pt;}
.y6{bottom:671.149867pt;}
.y100{bottom:674.020533pt;}
.y5d{bottom:677.542933pt;}
.yb7{bottom:677.759600pt;}
.y151{bottom:678.028400pt;}
.y33{bottom:679.218667pt;}
.y5{bottom:687.149867pt;}
.y32{bottom:692.546667pt;}
.y5c{bottom:692.882267pt;}
.yb6{bottom:693.098933pt;}
.y150{bottom:693.364400pt;}
.yff{bottom:704.687200pt;}
.y31{bottom:705.874667pt;}
.y5b{bottom:708.221600pt;}
.yb5{bottom:708.438267pt;}
.y14f{bottom:708.700400pt;}
.y30{bottom:719.202667pt;}
.y5a{bottom:723.560933pt;}
.yb4{bottom:723.777600pt;}
.y14e{bottom:724.036400pt;}
.y4{bottom:725.037867pt;}
.y2f{bottom:732.530667pt;}
.y59{bottom:738.900267pt;}
.yb3{bottom:739.116933pt;}
.y14d{bottom:739.372400pt;}
.y2e{bottom:745.858667pt;}
.y3{bottom:751.693867pt;}
.y58{bottom:754.239600pt;}
.yb2{bottom:754.456267pt;}
.y14c{bottom:754.708400pt;}
.y2d{bottom:759.186667pt;}
.y57{bottom:769.578933pt;}
.y14b{bottom:770.044400pt;}
.y2c{bottom:772.514667pt;}
.y2{bottom:778.349867pt;}
.y56{bottom:784.918267pt;}
.yb1{bottom:785.122267pt;}
.y14a{bottom:785.380400pt;}
.y2b{bottom:785.842667pt;}
.y2a{bottom:822.231733pt;}
.h8{height:31.033854pt;}
.he{height:34.684896pt;}
.h5{height:37.437500pt;}
.h6{height:37.541667pt;}
.h7{height:39.777344pt;}
.hf{height:42.117188pt;}
.h10{height:42.234375pt;}
.hb{height:44.457031pt;}
.hd{height:44.505031pt;}
.h4{height:44.580729pt;}
.hc{height:45.006365pt;}
.h9{height:46.796875pt;}
.h2{height:56.156250pt;}
.ha{height:56.843750pt;}
.h3{height:62.067708pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x8{left:79.352400pt;}
.x4{left:102.047333pt;}
.x3{left:113.385867pt;}
.x6{left:122.443600pt;}
.x5{left:139.843867pt;}
.x7{left:167.811067pt;}
.x9{left:178.186667pt;}
.x1{left:542.919733pt;}
}




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