
    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_89e358ce19d7e696450c5fd8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_1c1cca6df4a5a5dbc72ca9ef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_6605c893a9cc47143f8b97a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_730ba1811bae3f675a716920.woff')format("woff");}.ff4{font-family:ff4;line-height:0.308000;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_0915f78008139094636fa422.woff')format("woff");}.ff5{font-family:ff5;line-height:0.049000;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_6659e881421e3c2ce9ee589b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_2cc1293651264b76a2994279.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_96d9632f54f78e65f710557c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_83e439def1f857349943b468.woff')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_a137d3e50f26a207e38728c4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_940662bd6edde4195f395e97.woff')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_7fd068dafc34daf7f2ee02ab.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899000;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_c932a42d1940120e3fecbb82.woff')format("woff");}.ffd{font-family:ffd;line-height:0.760000;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_14834da029f351a3e23c342e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.106000;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_3a6e0df5224183af997b1f1f.woff')format("woff");}.fff{font-family:fff;line-height:0.850000;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_96fb508693ff3a409baba79f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.454000;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_12ca88ab6b6073763a983f36.woff')format("woff");}.ff11{font-family:ff11;line-height:0.665000;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_7aca2b0138f9a8e666b97692.woff')format("woff");}.ff12{font-family:ff12;line-height:0.634000;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_48e5393346d6978da08f5389.woff')format("woff");}.ff13{font-family:ff13;line-height:0.698000;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_573c9fd75465e05166e84e62.woff')format("woff");}.ff14{font-family:ff14;line-height:0.658000;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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000564px;}
.ls1a{letter-spacing:0.002246px;}
.ls0{letter-spacing:0.002525px;}
.ls14{letter-spacing:0.002959px;}
.ls10{letter-spacing:0.458387px;}
.ls12{letter-spacing:0.464387px;}
.ls17{letter-spacing:2.984525px;}
.lsc{letter-spacing:2.987468px;}
.ls11{letter-spacing:2.990525px;}
.lsf{letter-spacing:15.099031px;}
.ls9{letter-spacing:15.398338px;}
.ls7{letter-spacing:15.402538px;}
.ls3{letter-spacing:16.313937px;}
.ls8{letter-spacing:17.276823px;}
.lse{letter-spacing:18.363031px;}
.ls6{letter-spacing:18.386525px;}
.ls4{letter-spacing:18.425937px;}
.lsd{letter-spacing:19.726118px;}
.ls18{letter-spacing:21.494525px;}
.ls13{letter-spacing:21.812525px;}
.lsb{letter-spacing:23.186823px;}
.lsa{letter-spacing:23.774823px;}
.ls16{letter-spacing:27.560525px;}
.ls2{letter-spacing:30.630532px;}
.ls15{letter-spacing:31.077206px;}
.ls19{letter-spacing:31.083206px;}
.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;}
}
.ws4{word-spacing:-29.881822px;}
.ws64{word-spacing:-27.641618px;}
.wsa6{word-spacing:-16.910517px;}
.wscb{word-spacing:-16.611639px;}
.ws54{word-spacing:-16.312761px;}
.ws27{word-spacing:-15.954108px;}
.wsaf{word-spacing:-15.595454px;}
.ws2f{word-spacing:-15.475903px;}
.ws88{word-spacing:-14.818371px;}
.wse4{word-spacing:-14.783800px;}
.ws89{word-spacing:-14.758596px;}
.wsfd{word-spacing:-14.730002px;}
.wsa7{word-spacing:-14.698820px;}
.ws3e{word-spacing:-14.579269px;}
.ws30{word-spacing:-14.519493px;}
.ws44{word-spacing:-14.459718px;}
.ws99{word-spacing:-14.440766px;}
.ws43{word-spacing:-14.340166px;}
.ws2b{word-spacing:-14.220615px;}
.ws47{word-spacing:-14.160840px;}
.ws75{word-spacing:-14.041288px;}
.ws68{word-spacing:-13.861962px;}
.ws2a{word-spacing:-13.682635px;}
.ws55{word-spacing:-13.622859px;}
.ws12{word-spacing:-13.492639px;}
.ws8a{word-spacing:-13.383757px;}
.wsed{word-spacing:-13.331244px;}
.wsa8{word-spacing:-13.204430px;}
.ws23{word-spacing:-13.144654px;}
.wsde{word-spacing:-13.062252px;}
.ws3b{word-spacing:-12.965328px;}
.wse9{word-spacing:-12.954655px;}
.ws65{word-spacing:-12.847058px;}
.ws3d{word-spacing:-12.845776px;}
.wsb{word-spacing:-12.793260px;}
.ws74{word-spacing:-12.786001px;}
.ws20{word-spacing:-12.726225px;}
.ws5b{word-spacing:-12.606674px;}
.ws48{word-spacing:-12.546898px;}
.ws45{word-spacing:-12.487123px;}
.wse1{word-spacing:-12.470469px;}
.wsb2{word-spacing:-12.307796px;}
.ws70{word-spacing:-12.248020px;}
.ws56{word-spacing:-12.188245px;}
.wse0{word-spacing:-12.147679px;}
.wsac{word-spacing:-12.128469px;}
.wsdd{word-spacing:-12.093880px;}
.wse6{word-spacing:-12.040082px;}
.ws8f{word-spacing:-12.008918px;}
.wse5{word-spacing:-11.878687px;}
.wse7{word-spacing:-11.771090px;}
.ws33{word-spacing:-11.650264px;}
.wsa5{word-spacing:-11.590489px;}
.ws7f{word-spacing:-11.530713px;}
.ws41{word-spacing:-11.470938px;}
.ws6e{word-spacing:-11.411162px;}
.ws17{word-spacing:-11.394501px;}
.wsbd{word-spacing:-11.368637px;}
.wsbe{word-spacing:-11.351386px;}
.ws1b{word-spacing:-11.340703px;}
.ws1c{word-spacing:-11.319473px;}
.wsae{word-spacing:-11.291611px;}
.wsf7{word-spacing:-11.286904px;}
.wse{word-spacing:-11.233106px;}
.ws4a{word-spacing:-11.231835px;}
.ws35{word-spacing:-11.172060px;}
.wsb3{word-spacing:-11.052508px;}
.wse2{word-spacing:-11.017912px;}
.wsb9{word-spacing:-10.992733px;}
.ws92{word-spacing:-10.932957px;}
.ws49{word-spacing:-10.873182px;}
.ws7d{word-spacing:-10.813406px;}
.wsbb{word-spacing:-10.753630px;}
.ws71{word-spacing:-10.693855px;}
.ws62{word-spacing:-10.634079px;}
.ws85{word-spacing:-10.574304px;}
.ws18{word-spacing:-10.533727px;}
.ws93{word-spacing:-10.514528px;}
.ws16{word-spacing:-10.426130px;}
.wsd{word-spacing:-10.372332px;}
.ws2e{word-spacing:-10.335201px;}
.wsc7{word-spacing:-10.275426px;}
.wscc{word-spacing:-10.264735px;}
.ws2c{word-spacing:-10.096099px;}
.ws2{word-spacing:-9.976548px;}
.ws97{word-spacing:-9.966398px;}
.ws9a{word-spacing:-9.960398px;}
.ws57{word-spacing:-9.916772px;}
.wsa{word-spacing:-9.888146px;}
.wsee{word-spacing:-9.780549px;}
.ws7{word-spacing:-9.726751px;}
.ws90{word-spacing:-9.677670px;}
.ws32{word-spacing:-9.617894px;}
.ws83{word-spacing:-9.498343px;}
.wsc3{word-spacing:-9.319016px;}
.ws37{word-spacing:-9.259240px;}
.ws5{word-spacing:-9.242565px;}
.wseb{word-spacing:-9.240618px;}
.ws1d{word-spacing:-9.219711px;}
.wsce{word-spacing:-9.215065px;}
.ws52{word-spacing:-9.199465px;}
.ws19{word-spacing:-9.188767px;}
.ws24{word-spacing:-9.079914px;}
.ws29{word-spacing:-8.960362px;}
.wsc6{word-spacing:-8.900587px;}
.wsaa{word-spacing:-8.840811px;}
.ws2d{word-spacing:-8.781036px;}
.ws5f{word-spacing:-8.601709px;}
.wsb4{word-spacing:-8.541933px;}
.ws9{word-spacing:-8.489388px;}
.ws82{word-spacing:-8.482158px;}
.ws22{word-spacing:-8.422382px;}
.ws84{word-spacing:-8.362606px;}
.ws28{word-spacing:-8.302831px;}
.wsd2{word-spacing:-8.274194px;}
.ws86{word-spacing:-8.243055px;}
.ws59{word-spacing:-8.183280px;}
.ws7c{word-spacing:-8.123504px;}
.ws11{word-spacing:-8.059000px;}
.ws91{word-spacing:-8.003953px;}
.ws8e{word-spacing:-7.944177px;}
.wsbc{word-spacing:-7.884402px;}
.wsc{word-spacing:-7.843807px;}
.ws25{word-spacing:-7.824626px;}
.wsb5{word-spacing:-7.764850px;}
.ws36{word-spacing:-7.645299px;}
.ws5e{word-spacing:-7.585524px;}
.ws46{word-spacing:-7.525748px;}
.wsa3{word-spacing:-7.465972px;}
.ws6b{word-spacing:-7.406197px;}
.wsb0{word-spacing:-7.346421px;}
.ws3c{word-spacing:-7.286646px;}
.wsef{word-spacing:-7.252024px;}
.wsa0{word-spacing:-7.243909px;}
.ws6f{word-spacing:-7.226870px;}
.ws50{word-spacing:-7.167094px;}
.wsd9{word-spacing:-7.144428px;}
.ws80{word-spacing:-7.107319px;}
.ws5d{word-spacing:-7.047543px;}
.ws5a{word-spacing:-6.927992px;}
.ws4b{word-spacing:-6.808441px;}
.ws4e{word-spacing:-6.786365px;}
.ws31{word-spacing:-6.748665px;}
.wsa9{word-spacing:-6.629114px;}
.wsf{word-spacing:-6.445048px;}
.ws9d{word-spacing:-6.390012px;}
.ws95{word-spacing:-6.330236px;}
.ws3f{word-spacing:-6.270460px;}
.ws60{word-spacing:-6.031358px;}
.ws8d{word-spacing:-5.971582px;}
.ws94{word-spacing:-5.852031px;}
.ws6d{word-spacing:-5.792256px;}
.ws10{word-spacing:-5.745669px;}
.wsab{word-spacing:-5.612929px;}
.wsc2{word-spacing:-5.553153px;}
.wsc5{word-spacing:-5.493378px;}
.ws9b{word-spacing:-5.433602px;}
.wsc1{word-spacing:-5.373826px;}
.wsba{word-spacing:-5.314051px;}
.ws8b{word-spacing:-5.254275px;}
.wsb1{word-spacing:-5.074948px;}
.ws6c{word-spacing:-5.015173px;}
.ws5c{word-spacing:-4.895622px;}
.wsfc{word-spacing:-4.777298px;}
.ws67{word-spacing:-4.776070px;}
.ws9c{word-spacing:-4.716295px;}
.wscd{word-spacing:-4.615903px;}
.ws58{word-spacing:-4.536968px;}
.ws26{word-spacing:-4.477192px;}
.ws1f{word-spacing:-4.238090px;}
.ws15{word-spacing:-4.185516px;}
.ws7e{word-spacing:-4.178314px;}
.ws81{word-spacing:-4.118539px;}
.ws34{word-spacing:-4.058763px;}
.wsa2{word-spacing:-3.879436px;}
.wse8{word-spacing:-3.808927px;}
.wsea{word-spacing:-3.755128px;}
.wsa4{word-spacing:-3.700110px;}
.wsc0{word-spacing:-3.640334px;}
.ws6a{word-spacing:-3.580558px;}
.wse3{word-spacing:-3.539935px;}
.ws61{word-spacing:-3.520783px;}
.ws13{word-spacing:-3.432338px;}
.wsc8{word-spacing:-3.341456px;}
.wsf8{word-spacing:-3.270943px;}
.wsfe{word-spacing:-3.217144px;}
.wsec{word-spacing:-3.163346px;}
.ws38{word-spacing:-3.102354px;}
.ws39{word-spacing:-3.042578px;}
.wsca{word-spacing:-2.803476px;}
.wsad{word-spacing:-2.683924px;}
.ws3a{word-spacing:-2.624149px;}
.ws66{word-spacing:-2.504598px;}
.ws14{word-spacing:-2.410168px;}
.ws72{word-spacing:-2.385046px;}
.ws9e{word-spacing:-2.325271px;}
.ws69{word-spacing:-2.265495px;}
.ws8c{word-spacing:-2.205720px;}
.wsf9{word-spacing:-2.033580px;}
.ws42{word-spacing:-1.966617px;}
.wsf6{word-spacing:-1.603192px;}
.ws87{word-spacing:-1.010208px;}
.ws73{word-spacing:-0.950432px;}
.ws8{word-spacing:-0.796216px;}
.ws53{word-spacing:-0.352676px;}
.wsc4{word-spacing:-0.173349px;}
.ws4c{word-spacing:-0.059776px;}
.wsbf{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.041843px;}
.ws21{word-spacing:0.000000px;}
.wsd7{word-spacing:0.925332px;}
.wsd8{word-spacing:2.969672px;}
.wsda{word-spacing:4.397422px;}
.wsdb{word-spacing:4.422228px;}
.wsc9{word-spacing:4.934039px;}
.wsd1{word-spacing:6.789358px;}
.wsdf{word-spacing:8.295713px;}
.wsf0{word-spacing:10.286254px;}
.wsfa{word-spacing:12.169198px;}
.wsa1{word-spacing:15.003676px;}
.wsff{word-spacing:15.827489px;}
.wsf5{word-spacing:16.257876px;}
.ws78{word-spacing:16.654598px;}
.wsb7{word-spacing:16.677504px;}
.wsd0{word-spacing:17.871828px;}
.ws9f{word-spacing:18.291334px;}
.wsb6{word-spacing:18.399053px;}
.wsf2{word-spacing:19.216788px;}
.ws63{word-spacing:19.270587px;}
.wsf3{word-spacing:19.862369px;}
.ws96{word-spacing:19.883986px;}
.ws76{word-spacing:20.281997px;}
.ws51{word-spacing:21.220338px;}
.ws4f{word-spacing:21.818094px;}
.ws4d{word-spacing:23.522171px;}
.ws40{word-spacing:26.827469px;}
.wsf1{word-spacing:26.963758px;}
.ws1a{word-spacing:27.606115px;}
.ws101{word-spacing:27.609339px;}
.ws100{word-spacing:28.093524px;}
.wsf4{word-spacing:29.599880px;}
.ws6{word-spacing:29.834008px;}
.ws98{word-spacing:31.322414px;}
.ws1{word-spacing:31.418178px;}
.ws0{word-spacing:31.504255px;}
.wsb8{word-spacing:36.755067px;}
.wsd3{word-spacing:42.888084px;}
.wsd4{word-spacing:51.226836px;}
.wscf{word-spacing:65.429614px;}
.wsfb{word-spacing:68.549921px;}
.ws1e{word-spacing:80.625869px;}
.wsd6{word-spacing:113.579182px;}
.wsd5{word-spacing:135.152340px;}
.wsdc{word-spacing:144.674657px;}
.ws7b{word-spacing:186.087279px;}
.ws7a{word-spacing:214.326060px;}
.ws79{word-spacing:242.564840px;}
.ws77{word-spacing:411.997521px;}
._0{margin-left:-7.919102px;}
._7{margin-left:-6.079219px;}
._5{margin-left:-4.626662px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.452557px;}
._3{width:1.011353px;}
._2{width:2.496239px;}
._a{width:4.009797px;}
._b{width:9.316765px;}
._28{width:13.924909px;}
._27{width:15.323668px;}
._10{width:17.313415px;}
._1f{width:18.452851px;}
._4{width:20.910145px;}
._9{width:22.513892px;}
._12{width:25.144019px;}
._f{width:26.656351px;}
._1a{width:27.839107px;}
._e{width:29.060012px;}
._13{width:31.120490px;}
._17{width:33.184199px;}
._11{width:34.854453px;}
._19{width:36.419316px;}
._24{width:46.750810px;}
._1d{width:63.966298px;}
._d{width:68.741940px;}
._22{width:76.124736px;}
._23{width:77.444362px;}
._c{width:80.697600px;}
._20{width:98.451072px;}
._15{width:106.305638px;}
._26{width:110.555712px;}
._1e{width:123.100153px;}
._16{width:126.103450px;}
._25{width:136.755533px;}
._1b{width:143.049946px;}
._8{width:170.648525px;}
._18{width:199.551929px;}
._21{width:216.656973px;}
._1c{width:218.378522px;}
._14{width:351.464947px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y4f{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y124{bottom:210.055500px;}
.y25{bottom:211.549500px;}
.y123{bottom:226.494000px;}
.y4e{bottom:229.482000px;}
.y6d{bottom:241.782000px;}
.y122{bottom:243.178500px;}
.y4d{bottom:247.414500px;}
.y24{bottom:248.398500px;}
.ya5{bottom:250.755000px;}
.y121{bottom:259.617000px;}
.y6c{bottom:259.716000px;}
.y4c{bottom:265.347000px;}
.ya4{bottom:268.687500px;}
.y14d{bottom:276.015000px;}
.y120{bottom:276.303000px;}
.y69{bottom:277.878000px;}
.yd7{bottom:279.375000px;}
.y4b{bottom:283.279500px;}
.yff{bottom:284.175000px;}
.ya3{bottom:286.620000px;}
.y14c{bottom:292.453500px;}
.y11f{bottom:292.741500px;}
.y68{bottom:295.810500px;}
.y23{bottom:299.932500px;}
.yc7{bottom:301.212000px;}
.y85{bottom:301.213500px;}
.yfe{bottom:302.107500px;}
.ya2{bottom:304.554000px;}
.y14b{bottom:308.892000px;}
.y11e{bottom:309.180000px;}
.y4a{bottom:310.746000px;}
.y67{bottom:313.743000px;}
.y22{bottom:316.371000px;}
.y84{bottom:319.146000px;}
.yfd{bottom:320.040000px;}
.ya1{bottom:322.486500px;}
.yd6{bottom:323.290500px;}
.y14a{bottom:325.330500px;}
.y11d{bottom:325.866000px;}
.ye4{bottom:331.611000px;}
.y66{bottom:331.675500px;}
.yc6{bottom:337.078500px;}
.yfc{bottom:337.974000px;}
.yd5{bottom:341.223000px;}
.y149{bottom:341.769000px;}
.y11c{bottom:342.304500px;}
.y49{bottom:344.190000px;}
.y21{bottom:349.444500px;}
.y65{bottom:349.609500px;}
.yc5{bottom:355.011000px;}
.yfb{bottom:355.906500px;}
.y148{bottom:358.207500px;}
.y11b{bottom:358.989000px;}
.yd4{bottom:359.157000px;}
.y20{bottom:365.883000px;}
.y64{bottom:367.542000px;}
.y83{bottom:370.108500px;}
.yc4{bottom:372.943500px;}
.yfa{bottom:373.839000px;}
.y147{bottom:374.644500px;}
.y11a{bottom:375.427500px;}
.ye3{bottom:376.954500px;}
.yd3{bottom:377.089500px;}
.y1f{bottom:382.320000px;}
.ya0{bottom:384.021000px;}
.y63{bottom:385.474500px;}
.y82{bottom:388.041000px;}
.y48{bottom:389.589000px;}
.y146{bottom:391.083000px;}
.yf9{bottom:391.771500px;}
.y119{bottom:391.866000px;}
.ye2{bottom:394.887000px;}
.yd2{bottom:395.022000px;}
.y1e{bottom:398.758500px;}
.y9f{bottom:401.953500px;}
.y62{bottom:403.407000px;}
.y81{bottom:405.973500px;}
.y47{bottom:407.521500px;}
.y118{bottom:408.304500px;}
.yc3{bottom:412.041000px;}
.ye1{bottom:412.819500px;}
.yd1{bottom:412.954500px;}
.y1d{bottom:415.197000px;}
.y9e{bottom:419.886000px;}
.y61{bottom:421.339500px;}
.y80{bottom:423.906000px;}
.y145{bottom:423.960000px;}
.y117{bottom:424.990500px;}
.y46{bottom:425.454000px;}
.yc2{bottom:428.539500px;}
.ye0{bottom:430.753500px;}
.yd0{bottom:430.887000px;}
.y1c{bottom:431.635500px;}
.yf8{bottom:432.111000px;}
.y9d{bottom:437.820000px;}
.y60{bottom:439.272000px;}
.y144{bottom:440.398500px;}
.y116{bottom:441.429000px;}
.y7f{bottom:441.840000px;}
.y45{bottom:443.386500px;}
.yc1{bottom:445.039500px;}
.y1b{bottom:448.074000px;}
.ydf{bottom:448.788000px;}
.ycf{bottom:448.819500px;}
.y9c{bottom:455.752500px;}
.y143{bottom:456.837000px;}
.y115{bottom:457.867500px;}
.y5f{bottom:457.918500px;}
.y44{bottom:461.320500px;}
.y1a{bottom:464.512500px;}
.yde{bottom:466.720500px;}
.yce{bottom:466.753500px;}
.yc0{bottom:469.314000px;}
.y142{bottom:473.275500px;}
.y114{bottom:474.553500px;}
.y5e{bottom:475.851000px;}
.y7e{bottom:477.858000px;}
.y43{bottom:479.253000px;}
.y19{bottom:480.951000px;}
.ydd{bottom:484.653000px;}
.ycd{bottom:484.686000px;}
.ybf{bottom:487.246500px;}
.y141{bottom:489.714000px;}
.y113{bottom:490.990500px;}
.y5d{bottom:493.783500px;}
.y42{bottom:497.185500px;}
.y18{bottom:497.389500px;}
.ydc{bottom:502.585500px;}
.ycc{bottom:502.618500px;}
.ybe{bottom:505.179000px;}
.y140{bottom:506.152500px;}
.y112{bottom:507.429000px;}
.y5c{bottom:511.716000px;}
.y17{bottom:513.828000px;}
.y41{bottom:515.118000px;}
.y9b{bottom:517.287000px;}
.y13f{bottom:522.591000px;}
.ybd{bottom:523.113000px;}
.y111{bottom:523.867500px;}
.yf7{bottom:525.111000px;}
.y7d{bottom:528.820500px;}
.y5b{bottom:529.650000px;}
.y16{bottom:530.266500px;}
.y40{bottom:533.050500px;}
.y9a{bottom:535.219500px;}
.y13e{bottom:539.028000px;}
.y110{bottom:540.306000px;}
.ybc{bottom:541.045500px;}
.yf6{bottom:541.549500px;}
.y15{bottom:546.703500px;}
.y7c{bottom:546.753000px;}
.y5a{bottom:547.582500px;}
.y3f{bottom:550.983000px;}
.ycb{bottom:553.053000px;}
.y99{bottom:553.152000px;}
.y13d{bottom:555.466500px;}
.y10f{bottom:556.992000px;}
.ydb{bottom:557.130000px;}
.yf5{bottom:557.988000px;}
.ybb{bottom:558.978000px;}
.y14{bottom:563.142000px;}
.y7b{bottom:564.687000px;}
.y59{bottom:566.227500px;}
.y3e{bottom:568.917000px;}
.yca{bottom:570.985500px;}
.y98{bottom:571.084500px;}
.y13c{bottom:571.905000px;}
.y10e{bottom:573.430500px;}
.yda{bottom:575.062500px;}
.yba{bottom:576.910500px;}
.y13{bottom:579.580500px;}
.yf4{bottom:581.926500px;}
.y7a{bottom:583.845000px;}
.y58{bottom:584.160000px;}
.y3d{bottom:586.849500px;}
.y13b{bottom:588.343500px;}
.y97{bottom:589.018500px;}
.y10d{bottom:589.869000px;}
.yb9{bottom:594.843000px;}
.y12{bottom:596.019000px;}
.y79{bottom:601.777500px;}
.y57{bottom:602.094000px;}
.yc9{bottom:603.414000px;}
.yf3{bottom:604.189500px;}
.y3c{bottom:604.782000px;}
.y10c{bottom:606.307500px;}
.y96{bottom:606.951000px;}
.yd9{bottom:607.491000px;}
.y11{bottom:612.457500px;}
.yb8{bottom:612.775500px;}
.y78{bottom:619.711500px;}
.y56{bottom:620.026500px;}
.y13a{bottom:621.220500px;}
.yf2{bottom:622.123500px;}
.y3b{bottom:622.714500px;}
.y10b{bottom:622.992000px;}
.y10{bottom:628.896000px;}
.yb7{bottom:630.709500px;}
.y139{bottom:637.659000px;}
.y55{bottom:637.959000px;}
.y77{bottom:638.869500px;}
.y10a{bottom:639.430500px;}
.y3a{bottom:640.647000px;}
.yf{bottom:645.334500px;}
.yb6{bottom:648.642000px;}
.y138{bottom:654.097500px;}
.y54{bottom:655.891500px;}
.y109{bottom:656.116500px;}
.y76{bottom:656.802000px;}
.y6b{bottom:658.078500px;}
.y39{bottom:658.579500px;}
.ye{bottom:661.773000px;}
.yb5{bottom:666.574500px;}
.y95{bottom:668.485500px;}
.y137{bottom:670.536000px;}
.y108{bottom:672.555000px;}
.y53{bottom:673.824000px;}
.y75{bottom:674.736000px;}
.y6a{bottom:676.011000px;}
.y38{bottom:676.513500px;}
.yd{bottom:678.211500px;}
.y94{bottom:686.418000px;}
.y136{bottom:686.974500px;}
.yf1{bottom:688.330500px;}
.y107{bottom:688.993500px;}
.yb4{bottom:690.727500px;}
.y74{bottom:692.668500px;}
.y37{bottom:694.446000px;}
.y135{bottom:703.411500px;}
.y93{bottom:704.350500px;}
.yf0{bottom:706.263000px;}
.y73{bottom:710.601000px;}
.y36{bottom:712.378500px;}
.y134{bottom:719.850000px;}
.y92{bottom:722.283000px;}
.yef{bottom:724.195500px;}
.y106{bottom:724.602000px;}
.y72{bottom:728.533500px;}
.y52{bottom:729.589500px;}
.yb3{bottom:729.825000px;}
.y35{bottom:730.311000px;}
.y133{bottom:736.288500px;}
.y91{bottom:740.217000px;}
.yc{bottom:740.992500px;}
.yee{bottom:742.128000px;}
.y51{bottom:747.522000px;}
.yb2{bottom:747.757500px;}
.y34{bottom:748.243500px;}
.y132{bottom:752.727000px;}
.y90{bottom:758.149500px;}
.yed{bottom:760.060500px;}
.yb{bottom:763.144500px;}
.y50{bottom:765.454500px;}
.yb1{bottom:765.690000px;}
.y33{bottom:766.176000px;}
.y131{bottom:769.165500px;}
.y105{bottom:773.659500px;}
.ya{bottom:773.869500px;}
.y8f{bottom:776.082000px;}
.yec{bottom:777.994500px;}
.yb0{bottom:783.624000px;}
.y32{bottom:784.110000px;}
.y71{bottom:785.325000px;}
.y130{bottom:785.604000px;}
.y104{bottom:791.592000px;}
.y8e{bottom:794.014500px;}
.yeb{bottom:795.927000px;}
.y9{bottom:796.021500px;}
.yaf{bottom:801.556500px;}
.y31{bottom:802.042500px;}
.y70{bottom:803.257500px;}
.y103{bottom:809.524500px;}
.yc8{bottom:809.893500px;}
.yd8{bottom:815.323500px;}
.y12f{bottom:818.481000px;}
.yae{bottom:819.489000px;}
.y30{bottom:819.975000px;}
.y8{bottom:821.628000px;}
.yea{bottom:830.289000px;}
.y12e{bottom:834.919500px;}
.y6f{bottom:835.686000px;}
.yad{bottom:837.421500px;}
.y2f{bottom:837.907500px;}
.y7{bottom:839.560500px;}
.y12d{bottom:851.358000px;}
.y6e{bottom:852.124500px;}
.yac{bottom:855.354000px;}
.y102{bottom:855.592500px;}
.y2e{bottom:855.840000px;}
.y6{bottom:857.493000px;}
.y8d{bottom:858.355500px;}
.y12c{bottom:867.796500px;}
.yab{bottom:873.288000px;}
.y101{bottom:873.526500px;}
.y2d{bottom:873.774000px;}
.y8c{bottom:874.794000px;}
.y5{bottom:875.427000px;}
.y12b{bottom:884.233500px;}
.ye9{bottom:889.737000px;}
.yaa{bottom:891.220500px;}
.y8b{bottom:891.232500px;}
.y100{bottom:891.459000px;}
.y2c{bottom:891.706500px;}
.y4{bottom:893.359500px;}
.y12a{bottom:900.672000px;}
.ye8{bottom:906.175500px;}
.y8a{bottom:907.671000px;}
.ya9{bottom:909.153000px;}
.y2b{bottom:909.639000px;}
.y129{bottom:917.110500px;}
.ye7{bottom:922.614000px;}
.y89{bottom:924.108000px;}
.ya8{bottom:927.085500px;}
.y2a{bottom:927.571500px;}
.y128{bottom:933.549000px;}
.y88{bottom:940.546500px;}
.ya7{bottom:945.018000px;}
.y3{bottom:945.504000px;}
.ye6{bottom:946.554000px;}
.y127{bottom:949.987500px;}
.y29{bottom:963.436500px;}
.y87{bottom:964.486500px;}
.y126{bottom:966.426000px;}
.ye5{bottom:968.817000px;}
.ya6{bottom:969.171000px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y125{bottom:982.864500px;}
.y86{bottom:986.749500px;}
.y1{bottom:999.303000px;}
.y27{bottom:1038.157500px;}
.h4{height:23.850624px;}
.h9{height:37.712678px;}
.h5{height:40.402598px;}
.h8{height:41.902696px;}
.h7{height:44.891476px;}
.hb{height:46.453565px;}
.ha{height:46.740490px;}
.h6{height:50.283571px;}
.h2{height:53.072100px;}
.h3{height:53.078100px;}
.h1{height:60.426194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:202.147500px;}
.xb{left:206.007000px;}
.x16{left:209.056500px;}
.x1{left:212.127000px;}
.x9{left:217.684500px;}
.xe{left:224.563500px;}
.x17{left:227.277000px;}
.xc{left:245.323500px;}
.x3{left:256.623000px;}
.x2{left:259.195500px;}
.x11{left:280.780500px;}
.x4{left:284.632500px;}
.x6{left:291.678000px;}
.x7{left:294.345000px;}
.xf{left:296.172000px;}
.x5{left:321.403500px;}
.x13{left:335.704500px;}
.x12{left:340.924500px;}
.x8{left:343.171500px;}
.x15{left:345.918000px;}
.x14{left:351.139500px;}
.xa{left:362.505000px;}
.x10{left:471.894000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000501pt;}
.ls1a{letter-spacing:0.001997pt;}
.ls0{letter-spacing:0.002245pt;}
.ls14{letter-spacing:0.002630pt;}
.ls10{letter-spacing:0.407455pt;}
.ls12{letter-spacing:0.412788pt;}
.ls17{letter-spacing:2.652911pt;}
.lsc{letter-spacing:2.655527pt;}
.ls11{letter-spacing:2.658245pt;}
.lsf{letter-spacing:13.421361pt;}
.ls9{letter-spacing:13.687412pt;}
.ls7{letter-spacing:13.691145pt;}
.ls3{letter-spacing:14.501277pt;}
.ls8{letter-spacing:15.357176pt;}
.lse{letter-spacing:16.322694pt;}
.ls6{letter-spacing:16.343578pt;}
.ls4{letter-spacing:16.378610pt;}
.lsd{letter-spacing:17.534327pt;}
.ls18{letter-spacing:19.106245pt;}
.ls13{letter-spacing:19.388911pt;}
.lsb{letter-spacing:20.610509pt;}
.lsa{letter-spacing:21.133176pt;}
.ls16{letter-spacing:24.498245pt;}
.ls2{letter-spacing:27.227139pt;}
.ls15{letter-spacing:27.624183pt;}
.ls19{letter-spacing:27.629517pt;}
.ws4{word-spacing:-26.561620pt;}
.ws64{word-spacing:-24.570327pt;}
.wsa6{word-spacing:-15.031571pt;}
.wscb{word-spacing:-14.765902pt;}
.ws54{word-spacing:-14.500232pt;}
.ws27{word-spacing:-14.181429pt;}
.wsaf{word-spacing:-13.862626pt;}
.ws2f{word-spacing:-13.756358pt;}
.ws88{word-spacing:-13.171886pt;}
.wse4{word-spacing:-13.141156pt;}
.ws89{word-spacing:-13.118752pt;}
.wsfd{word-spacing:-13.093335pt;}
.wsa7{word-spacing:-13.065618pt;}
.ws3e{word-spacing:-12.959350pt;}
.ws30{word-spacing:-12.906216pt;}
.ws44{word-spacing:-12.853082pt;}
.ws99{word-spacing:-12.836236pt;}
.ws43{word-spacing:-12.746815pt;}
.ws2b{word-spacing:-12.640547pt;}
.ws47{word-spacing:-12.587413pt;}
.ws75{word-spacing:-12.481145pt;}
.ws68{word-spacing:-12.321744pt;}
.ws2a{word-spacing:-12.162342pt;}
.ws55{word-spacing:-12.109208pt;}
.ws12{word-spacing:-11.993457pt;}
.ws8a{word-spacing:-11.896673pt;}
.wsed{word-spacing:-11.849994pt;}
.wsa8{word-spacing:-11.737271pt;}
.ws23{word-spacing:-11.684137pt;}
.wsde{word-spacing:-11.610890pt;}
.ws3b{word-spacing:-11.524736pt;}
.wse9{word-spacing:-11.515249pt;}
.ws65{word-spacing:-11.419607pt;}
.ws3d{word-spacing:-11.418468pt;}
.wsb{word-spacing:-11.371786pt;}
.ws74{word-spacing:-11.365334pt;}
.ws20{word-spacing:-11.312200pt;}
.ws5b{word-spacing:-11.205932pt;}
.ws48{word-spacing:-11.152799pt;}
.ws45{word-spacing:-11.099665pt;}
.wse1{word-spacing:-11.084861pt;}
.wsb2{word-spacing:-10.940263pt;}
.ws70{word-spacing:-10.887129pt;}
.ws56{word-spacing:-10.833995pt;}
.wse0{word-spacing:-10.797937pt;}
.wsac{word-spacing:-10.780862pt;}
.wsdd{word-spacing:-10.750116pt;}
.wse6{word-spacing:-10.702295pt;}
.ws8f{word-spacing:-10.674594pt;}
.wse5{word-spacing:-10.558833pt;}
.wse7{word-spacing:-10.463191pt;}
.ws33{word-spacing:-10.355791pt;}
.wsa5{word-spacing:-10.302657pt;}
.ws7f{word-spacing:-10.249523pt;}
.ws41{word-spacing:-10.196389pt;}
.ws6e{word-spacing:-10.143255pt;}
.ws17{word-spacing:-10.128445pt;}
.wsbd{word-spacing:-10.105455pt;}
.wsbe{word-spacing:-10.090121pt;}
.ws1b{word-spacing:-10.080625pt;}
.ws1c{word-spacing:-10.061754pt;}
.wsae{word-spacing:-10.036987pt;}
.wsf7{word-spacing:-10.032804pt;}
.wse{word-spacing:-9.984983pt;}
.ws4a{word-spacing:-9.983854pt;}
.ws35{word-spacing:-9.930720pt;}
.wsb3{word-spacing:-9.824452pt;}
.wse2{word-spacing:-9.793700pt;}
.wsb9{word-spacing:-9.771318pt;}
.ws92{word-spacing:-9.718184pt;}
.ws49{word-spacing:-9.665050pt;}
.ws7d{word-spacing:-9.611916pt;}
.wsbb{word-spacing:-9.558783pt;}
.ws71{word-spacing:-9.505649pt;}
.ws62{word-spacing:-9.452515pt;}
.ws85{word-spacing:-9.399381pt;}
.ws18{word-spacing:-9.363313pt;}
.ws93{word-spacing:-9.346247pt;}
.ws16{word-spacing:-9.267671pt;}
.wsd{word-spacing:-9.219850pt;}
.ws2e{word-spacing:-9.186846pt;}
.wsc7{word-spacing:-9.133712pt;}
.wscc{word-spacing:-9.124209pt;}
.ws2c{word-spacing:-8.974310pt;}
.ws2{word-spacing:-8.868042pt;}
.ws97{word-spacing:-8.859021pt;}
.ws9a{word-spacing:-8.853687pt;}
.ws57{word-spacing:-8.814908pt;}
.wsa{word-spacing:-8.789463pt;}
.wsee{word-spacing:-8.693821pt;}
.ws7{word-spacing:-8.646001pt;}
.ws90{word-spacing:-8.602373pt;}
.ws32{word-spacing:-8.549239pt;}
.ws83{word-spacing:-8.442971pt;}
.wsc3{word-spacing:-8.283570pt;}
.ws37{word-spacing:-8.230436pt;}
.ws5{word-spacing:-8.215613pt;}
.wseb{word-spacing:-8.213883pt;}
.ws1d{word-spacing:-8.195299pt;}
.wsce{word-spacing:-8.191169pt;}
.ws52{word-spacing:-8.177302pt;}
.ws19{word-spacing:-8.167793pt;}
.ws24{word-spacing:-8.071034pt;}
.ws29{word-spacing:-7.964767pt;}
.wsc6{word-spacing:-7.911633pt;}
.wsaa{word-spacing:-7.858499pt;}
.ws2d{word-spacing:-7.805365pt;}
.ws5f{word-spacing:-7.645963pt;}
.wsb4{word-spacing:-7.592830pt;}
.ws9{word-spacing:-7.546122pt;}
.ws82{word-spacing:-7.539696pt;}
.ws22{word-spacing:-7.486562pt;}
.ws84{word-spacing:-7.433428pt;}
.ws28{word-spacing:-7.380294pt;}
.wsd2{word-spacing:-7.354839pt;}
.ws86{word-spacing:-7.327160pt;}
.ws59{word-spacing:-7.274026pt;}
.ws7c{word-spacing:-7.220892pt;}
.ws11{word-spacing:-7.163556pt;}
.ws91{word-spacing:-7.114625pt;}
.ws8e{word-spacing:-7.061491pt;}
.wsbc{word-spacing:-7.008357pt;}
.wsc{word-spacing:-6.972273pt;}
.ws25{word-spacing:-6.955223pt;}
.wsb5{word-spacing:-6.902089pt;}
.ws36{word-spacing:-6.795822pt;}
.ws5e{word-spacing:-6.742688pt;}
.ws46{word-spacing:-6.689554pt;}
.wsa3{word-spacing:-6.636420pt;}
.ws6b{word-spacing:-6.583286pt;}
.wsb0{word-spacing:-6.530152pt;}
.ws3c{word-spacing:-6.477018pt;}
.wsef{word-spacing:-6.446244pt;}
.wsa0{word-spacing:-6.439030pt;}
.ws6f{word-spacing:-6.423884pt;}
.ws50{word-spacing:-6.370751pt;}
.wsd9{word-spacing:-6.350602pt;}
.ws80{word-spacing:-6.317617pt;}
.ws5d{word-spacing:-6.264483pt;}
.ws5a{word-spacing:-6.158215pt;}
.ws4b{word-spacing:-6.051947pt;}
.ws4e{word-spacing:-6.032324pt;}
.ws31{word-spacing:-5.998814pt;}
.wsa9{word-spacing:-5.892546pt;}
.wsf{word-spacing:-5.728932pt;}
.ws9d{word-spacing:-5.680010pt;}
.ws95{word-spacing:-5.626876pt;}
.ws3f{word-spacing:-5.573743pt;}
.ws60{word-spacing:-5.361207pt;}
.ws8d{word-spacing:-5.308073pt;}
.ws94{word-spacing:-5.201806pt;}
.ws6d{word-spacing:-5.148672pt;}
.ws10{word-spacing:-5.107261pt;}
.wsab{word-spacing:-4.989270pt;}
.wsc2{word-spacing:-4.936136pt;}
.wsc5{word-spacing:-4.883002pt;}
.ws9b{word-spacing:-4.829868pt;}
.wsc1{word-spacing:-4.776735pt;}
.wsba{word-spacing:-4.723601pt;}
.ws8b{word-spacing:-4.670467pt;}
.wsb1{word-spacing:-4.511065pt;}
.ws6c{word-spacing:-4.457931pt;}
.ws5c{word-spacing:-4.351664pt;}
.wsfc{word-spacing:-4.246487pt;}
.ws67{word-spacing:-4.245396pt;}
.ws9c{word-spacing:-4.192262pt;}
.wscd{word-spacing:-4.103025pt;}
.ws58{word-spacing:-4.032860pt;}
.ws26{word-spacing:-3.979727pt;}
.ws1f{word-spacing:-3.767191pt;}
.ws15{word-spacing:-3.720458pt;}
.ws7e{word-spacing:-3.714057pt;}
.ws81{word-spacing:-3.660923pt;}
.ws34{word-spacing:-3.607790pt;}
.wsa2{word-spacing:-3.448388pt;}
.wse8{word-spacing:-3.385713pt;}
.wsea{word-spacing:-3.337892pt;}
.wsa4{word-spacing:-3.288986pt;}
.wsc0{word-spacing:-3.235852pt;}
.ws6a{word-spacing:-3.182719pt;}
.wse3{word-spacing:-3.146609pt;}
.ws61{word-spacing:-3.129585pt;}
.ws13{word-spacing:-3.050967pt;}
.wsc8{word-spacing:-2.970183pt;}
.wsf8{word-spacing:-2.907505pt;}
.wsfe{word-spacing:-2.859684pt;}
.wsec{word-spacing:-2.811863pt;}
.ws38{word-spacing:-2.757648pt;}
.ws39{word-spacing:-2.704514pt;}
.wsca{word-spacing:-2.491978pt;}
.wsad{word-spacing:-2.385711pt;}
.ws3a{word-spacing:-2.332577pt;}
.ws66{word-spacing:-2.226309pt;}
.ws14{word-spacing:-2.142372pt;}
.ws72{word-spacing:-2.120041pt;}
.ws9e{word-spacing:-2.066907pt;}
.ws69{word-spacing:-2.013774pt;}
.ws8c{word-spacing:-1.960640pt;}
.wsf9{word-spacing:-1.807626pt;}
.ws42{word-spacing:-1.748104pt;}
.wsf6{word-spacing:-1.425060pt;}
.ws87{word-spacing:-0.897962pt;}
.ws73{word-spacing:-0.844828pt;}
.ws8{word-spacing:-0.707748pt;}
.ws53{word-spacing:-0.313490pt;}
.wsc4{word-spacing:-0.154088pt;}
.ws4c{word-spacing:-0.053134pt;}
.wsbf{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.037194pt;}
.ws21{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.822518pt;}
.wsd8{word-spacing:2.639708pt;}
.wsda{word-spacing:3.908820pt;}
.wsdb{word-spacing:3.930870pt;}
.wsc9{word-spacing:4.385812pt;}
.wsd1{word-spacing:6.034985pt;}
.wsdf{word-spacing:7.373967pt;}
.wsf0{word-spacing:9.143337pt;}
.wsfa{word-spacing:10.817065pt;}
.wsa1{word-spacing:13.336601pt;}
.wsff{word-spacing:14.068879pt;}
.wsf5{word-spacing:14.451446pt;}
.ws78{word-spacing:14.804087pt;}
.wsb7{word-spacing:14.824448pt;}
.wsd0{word-spacing:15.886070pt;}
.ws9f{word-spacing:16.258963pt;}
.wsb6{word-spacing:16.354714pt;}
.wsf2{word-spacing:17.081590pt;}
.ws63{word-spacing:17.129411pt;}
.wsf3{word-spacing:17.655439pt;}
.ws96{word-spacing:17.674654pt;}
.ws76{word-spacing:18.028442pt;}
.ws51{word-spacing:18.862523pt;}
.ws4f{word-spacing:19.393861pt;}
.ws4d{word-spacing:20.908597pt;}
.ws40{word-spacing:23.846639pt;}
.wsf1{word-spacing:23.967785pt;}
.ws1a{word-spacing:24.538769pt;}
.ws101{word-spacing:24.541635pt;}
.ws100{word-spacing:24.972022pt;}
.wsf4{word-spacing:26.311004pt;}
.ws6{word-spacing:26.519119pt;}
.ws98{word-spacing:27.842146pt;}
.ws1{word-spacing:27.927269pt;}
.ws0{word-spacing:28.003782pt;}
.wsb8{word-spacing:32.671171pt;}
.wsd3{word-spacing:38.122742pt;}
.wsd4{word-spacing:45.534966pt;}
.wscf{word-spacing:58.159657pt;}
.wsfb{word-spacing:60.933263pt;}
.ws1e{word-spacing:71.667439pt;}
.wsd6{word-spacing:100.959273pt;}
.wsd5{word-spacing:120.135414pt;}
.wsdc{word-spacing:128.599695pt;}
.ws7b{word-spacing:165.410915pt;}
.ws7a{word-spacing:190.512053pt;}
.ws79{word-spacing:215.613191pt;}
.ws77{word-spacing:366.220018pt;}
._0{margin-left:-7.039202pt;}
._7{margin-left:-5.403750pt;}
._5{margin-left:-4.112589pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.291162pt;}
._3{width:0.898981pt;}
._2{width:2.218879pt;}
._a{width:3.564264pt;}
._b{width:8.281569pt;}
._28{width:12.377697pt;}
._27{width:13.621038pt;}
._10{width:15.389702pt;}
._1f{width:16.402534pt;}
._4{width:18.586796pt;}
._9{width:20.012349pt;}
._12{width:22.350239pt;}
._f{width:23.694534pt;}
._1a{width:24.745873pt;}
._e{width:25.831122pt;}
._13{width:27.662658pt;}
._17{width:29.497066pt;}
._11{width:30.981736pt;}
._19{width:32.372726pt;}
._24{width:41.556275pt;}
._1d{width:56.858931pt;}
._d{width:61.103947pt;}
._22{width:67.666432pt;}
._23{width:68.839433pt;}
._c{width:71.731200pt;}
._20{width:87.512064pt;}
._15{width:94.493901pt;}
._26{width:98.271744pt;}
._1e{width:109.422358pt;}
._16{width:112.091955pt;}
._25{width:121.560474pt;}
._1b{width:127.155507pt;}
._8{width:151.687578pt;}
._18{width:177.379492pt;}
._21{width:192.583976pt;}
._1c{width:194.114242pt;}
._14{width:312.413286pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y124{bottom:186.716000pt;}
.y25{bottom:188.044000pt;}
.y123{bottom:201.328000pt;}
.y4e{bottom:203.984000pt;}
.y6d{bottom:214.917333pt;}
.y122{bottom:216.158667pt;}
.y4d{bottom:219.924000pt;}
.y24{bottom:220.798667pt;}
.ya5{bottom:222.893333pt;}
.y121{bottom:230.770667pt;}
.y6c{bottom:230.858667pt;}
.y4c{bottom:235.864000pt;}
.ya4{bottom:238.833333pt;}
.y14d{bottom:245.346667pt;}
.y120{bottom:245.602667pt;}
.y69{bottom:247.002667pt;}
.yd7{bottom:248.333333pt;}
.y4b{bottom:251.804000pt;}
.yff{bottom:252.600000pt;}
.ya3{bottom:254.773333pt;}
.y14c{bottom:259.958667pt;}
.y11f{bottom:260.214667pt;}
.y68{bottom:262.942667pt;}
.y23{bottom:266.606667pt;}
.yc7{bottom:267.744000pt;}
.y85{bottom:267.745333pt;}
.yfe{bottom:268.540000pt;}
.ya2{bottom:270.714667pt;}
.y14b{bottom:274.570667pt;}
.y11e{bottom:274.826667pt;}
.y4a{bottom:276.218667pt;}
.y67{bottom:278.882667pt;}
.y22{bottom:281.218667pt;}
.y84{bottom:283.685333pt;}
.yfd{bottom:284.480000pt;}
.ya1{bottom:286.654667pt;}
.yd6{bottom:287.369333pt;}
.y14a{bottom:289.182667pt;}
.y11d{bottom:289.658667pt;}
.ye4{bottom:294.765333pt;}
.y66{bottom:294.822667pt;}
.yc6{bottom:299.625333pt;}
.yfc{bottom:300.421333pt;}
.yd5{bottom:303.309333pt;}
.y149{bottom:303.794667pt;}
.y11c{bottom:304.270667pt;}
.y49{bottom:305.946667pt;}
.y21{bottom:310.617333pt;}
.y65{bottom:310.764000pt;}
.yc5{bottom:315.565333pt;}
.yfb{bottom:316.361333pt;}
.y148{bottom:318.406667pt;}
.y11b{bottom:319.101333pt;}
.yd4{bottom:319.250667pt;}
.y20{bottom:325.229333pt;}
.y64{bottom:326.704000pt;}
.y83{bottom:328.985333pt;}
.yc4{bottom:331.505333pt;}
.yfa{bottom:332.301333pt;}
.y147{bottom:333.017333pt;}
.y11a{bottom:333.713333pt;}
.ye3{bottom:335.070667pt;}
.yd3{bottom:335.190667pt;}
.y1f{bottom:339.840000pt;}
.ya0{bottom:341.352000pt;}
.y63{bottom:342.644000pt;}
.y82{bottom:344.925333pt;}
.y48{bottom:346.301333pt;}
.y146{bottom:347.629333pt;}
.yf9{bottom:348.241333pt;}
.y119{bottom:348.325333pt;}
.ye2{bottom:351.010667pt;}
.yd2{bottom:351.130667pt;}
.y1e{bottom:354.452000pt;}
.y9f{bottom:357.292000pt;}
.y62{bottom:358.584000pt;}
.y81{bottom:360.865333pt;}
.y47{bottom:362.241333pt;}
.y118{bottom:362.937333pt;}
.yc3{bottom:366.258667pt;}
.ye1{bottom:366.950667pt;}
.yd1{bottom:367.070667pt;}
.y1d{bottom:369.064000pt;}
.y9e{bottom:373.232000pt;}
.y61{bottom:374.524000pt;}
.y80{bottom:376.805333pt;}
.y145{bottom:376.853333pt;}
.y117{bottom:377.769333pt;}
.y46{bottom:378.181333pt;}
.yc2{bottom:380.924000pt;}
.ye0{bottom:382.892000pt;}
.yd0{bottom:383.010667pt;}
.y1c{bottom:383.676000pt;}
.yf8{bottom:384.098667pt;}
.y9d{bottom:389.173333pt;}
.y60{bottom:390.464000pt;}
.y144{bottom:391.465333pt;}
.y116{bottom:392.381333pt;}
.y7f{bottom:392.746667pt;}
.y45{bottom:394.121333pt;}
.yc1{bottom:395.590667pt;}
.y1b{bottom:398.288000pt;}
.ydf{bottom:398.922667pt;}
.ycf{bottom:398.950667pt;}
.y9c{bottom:405.113333pt;}
.y143{bottom:406.077333pt;}
.y115{bottom:406.993333pt;}
.y5f{bottom:407.038667pt;}
.y44{bottom:410.062667pt;}
.y1a{bottom:412.900000pt;}
.yde{bottom:414.862667pt;}
.yce{bottom:414.892000pt;}
.yc0{bottom:417.168000pt;}
.y142{bottom:420.689333pt;}
.y114{bottom:421.825333pt;}
.y5e{bottom:422.978667pt;}
.y7e{bottom:424.762667pt;}
.y43{bottom:426.002667pt;}
.y19{bottom:427.512000pt;}
.ydd{bottom:430.802667pt;}
.ycd{bottom:430.832000pt;}
.ybf{bottom:433.108000pt;}
.y141{bottom:435.301333pt;}
.y113{bottom:436.436000pt;}
.y5d{bottom:438.918667pt;}
.y42{bottom:441.942667pt;}
.y18{bottom:442.124000pt;}
.ydc{bottom:446.742667pt;}
.ycc{bottom:446.772000pt;}
.ybe{bottom:449.048000pt;}
.y140{bottom:449.913333pt;}
.y112{bottom:451.048000pt;}
.y5c{bottom:454.858667pt;}
.y17{bottom:456.736000pt;}
.y41{bottom:457.882667pt;}
.y9b{bottom:459.810667pt;}
.y13f{bottom:464.525333pt;}
.ybd{bottom:464.989333pt;}
.y111{bottom:465.660000pt;}
.yf7{bottom:466.765333pt;}
.y7d{bottom:470.062667pt;}
.y5b{bottom:470.800000pt;}
.y16{bottom:471.348000pt;}
.y40{bottom:473.822667pt;}
.y9a{bottom:475.750667pt;}
.y13e{bottom:479.136000pt;}
.y110{bottom:480.272000pt;}
.ybc{bottom:480.929333pt;}
.yf6{bottom:481.377333pt;}
.y15{bottom:485.958667pt;}
.y7c{bottom:486.002667pt;}
.y5a{bottom:486.740000pt;}
.y3f{bottom:489.762667pt;}
.ycb{bottom:491.602667pt;}
.y99{bottom:491.690667pt;}
.y13d{bottom:493.748000pt;}
.y10f{bottom:495.104000pt;}
.ydb{bottom:495.226667pt;}
.yf5{bottom:495.989333pt;}
.ybb{bottom:496.869333pt;}
.y14{bottom:500.570667pt;}
.y7b{bottom:501.944000pt;}
.y59{bottom:503.313333pt;}
.y3e{bottom:505.704000pt;}
.yca{bottom:507.542667pt;}
.y98{bottom:507.630667pt;}
.y13c{bottom:508.360000pt;}
.y10e{bottom:509.716000pt;}
.yda{bottom:511.166667pt;}
.yba{bottom:512.809333pt;}
.y13{bottom:515.182667pt;}
.yf4{bottom:517.268000pt;}
.y7a{bottom:518.973333pt;}
.y58{bottom:519.253333pt;}
.y3d{bottom:521.644000pt;}
.y13b{bottom:522.972000pt;}
.y97{bottom:523.572000pt;}
.y10d{bottom:524.328000pt;}
.yb9{bottom:528.749333pt;}
.y12{bottom:529.794667pt;}
.y79{bottom:534.913333pt;}
.y57{bottom:535.194667pt;}
.yc9{bottom:536.368000pt;}
.yf3{bottom:537.057333pt;}
.y3c{bottom:537.584000pt;}
.y10c{bottom:538.940000pt;}
.y96{bottom:539.512000pt;}
.yd9{bottom:539.992000pt;}
.y11{bottom:544.406667pt;}
.yb8{bottom:544.689333pt;}
.y78{bottom:550.854667pt;}
.y56{bottom:551.134667pt;}
.y13a{bottom:552.196000pt;}
.yf2{bottom:552.998667pt;}
.y3b{bottom:553.524000pt;}
.y10b{bottom:553.770667pt;}
.y10{bottom:559.018667pt;}
.yb7{bottom:560.630667pt;}
.y139{bottom:566.808000pt;}
.y55{bottom:567.074667pt;}
.y77{bottom:567.884000pt;}
.y10a{bottom:568.382667pt;}
.y3a{bottom:569.464000pt;}
.yf{bottom:573.630667pt;}
.yb6{bottom:576.570667pt;}
.y138{bottom:581.420000pt;}
.y54{bottom:583.014667pt;}
.y109{bottom:583.214667pt;}
.y76{bottom:583.824000pt;}
.y6b{bottom:584.958667pt;}
.y39{bottom:585.404000pt;}
.ye{bottom:588.242667pt;}
.yb5{bottom:592.510667pt;}
.y95{bottom:594.209333pt;}
.y137{bottom:596.032000pt;}
.y108{bottom:597.826667pt;}
.y53{bottom:598.954667pt;}
.y75{bottom:599.765333pt;}
.y6a{bottom:600.898667pt;}
.y38{bottom:601.345333pt;}
.yd{bottom:602.854667pt;}
.y94{bottom:610.149333pt;}
.y136{bottom:610.644000pt;}
.yf1{bottom:611.849333pt;}
.y107{bottom:612.438667pt;}
.yb4{bottom:613.980000pt;}
.y74{bottom:615.705333pt;}
.y37{bottom:617.285333pt;}
.y135{bottom:625.254667pt;}
.y93{bottom:626.089333pt;}
.yf0{bottom:627.789333pt;}
.y73{bottom:631.645333pt;}
.y36{bottom:633.225333pt;}
.y134{bottom:639.866667pt;}
.y92{bottom:642.029333pt;}
.yef{bottom:643.729333pt;}
.y106{bottom:644.090667pt;}
.y72{bottom:647.585333pt;}
.y52{bottom:648.524000pt;}
.yb3{bottom:648.733333pt;}
.y35{bottom:649.165333pt;}
.y133{bottom:654.478667pt;}
.y91{bottom:657.970667pt;}
.yc{bottom:658.660000pt;}
.yee{bottom:659.669333pt;}
.y51{bottom:664.464000pt;}
.yb2{bottom:664.673333pt;}
.y34{bottom:665.105333pt;}
.y132{bottom:669.090667pt;}
.y90{bottom:673.910667pt;}
.yed{bottom:675.609333pt;}
.yb{bottom:678.350667pt;}
.y50{bottom:680.404000pt;}
.yb1{bottom:680.613333pt;}
.y33{bottom:681.045333pt;}
.y131{bottom:683.702667pt;}
.y105{bottom:687.697333pt;}
.ya{bottom:687.884000pt;}
.y8f{bottom:689.850667pt;}
.yec{bottom:691.550667pt;}
.yb0{bottom:696.554667pt;}
.y32{bottom:696.986667pt;}
.y71{bottom:698.066667pt;}
.y130{bottom:698.314667pt;}
.y104{bottom:703.637333pt;}
.y8e{bottom:705.790667pt;}
.yeb{bottom:707.490667pt;}
.y9{bottom:707.574667pt;}
.yaf{bottom:712.494667pt;}
.y31{bottom:712.926667pt;}
.y70{bottom:714.006667pt;}
.y103{bottom:719.577333pt;}
.yc8{bottom:719.905333pt;}
.yd8{bottom:724.732000pt;}
.y12f{bottom:727.538667pt;}
.yae{bottom:728.434667pt;}
.y30{bottom:728.866667pt;}
.y8{bottom:730.336000pt;}
.yea{bottom:738.034667pt;}
.y12e{bottom:742.150667pt;}
.y6f{bottom:742.832000pt;}
.yad{bottom:744.374667pt;}
.y2f{bottom:744.806667pt;}
.y7{bottom:746.276000pt;}
.y12d{bottom:756.762667pt;}
.y6e{bottom:757.444000pt;}
.yac{bottom:760.314667pt;}
.y102{bottom:760.526667pt;}
.y2e{bottom:760.746667pt;}
.y6{bottom:762.216000pt;}
.y8d{bottom:762.982667pt;}
.y12c{bottom:771.374667pt;}
.yab{bottom:776.256000pt;}
.y101{bottom:776.468000pt;}
.y2d{bottom:776.688000pt;}
.y8c{bottom:777.594667pt;}
.y5{bottom:778.157333pt;}
.y12b{bottom:785.985333pt;}
.ye9{bottom:790.877333pt;}
.yaa{bottom:792.196000pt;}
.y8b{bottom:792.206667pt;}
.y100{bottom:792.408000pt;}
.y2c{bottom:792.628000pt;}
.y4{bottom:794.097333pt;}
.y12a{bottom:800.597333pt;}
.ye8{bottom:805.489333pt;}
.y8a{bottom:806.818667pt;}
.ya9{bottom:808.136000pt;}
.y2b{bottom:808.568000pt;}
.y129{bottom:815.209333pt;}
.ye7{bottom:820.101333pt;}
.y89{bottom:821.429333pt;}
.ya8{bottom:824.076000pt;}
.y2a{bottom:824.508000pt;}
.y128{bottom:829.821333pt;}
.y88{bottom:836.041333pt;}
.ya7{bottom:840.016000pt;}
.y3{bottom:840.448000pt;}
.ye6{bottom:841.381333pt;}
.y127{bottom:844.433333pt;}
.y29{bottom:856.388000pt;}
.y87{bottom:857.321333pt;}
.y126{bottom:859.045333pt;}
.ye5{bottom:861.170667pt;}
.ya6{bottom:861.485333pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y125{bottom:873.657333pt;}
.y86{bottom:877.110667pt;}
.y1{bottom:888.269333pt;}
.y27{bottom:922.806667pt;}
.h4{height:21.200555pt;}
.h9{height:33.522381pt;}
.h5{height:35.913421pt;}
.h8{height:37.246841pt;}
.h7{height:39.903534pt;}
.hb{height:41.292058pt;}
.ha{height:41.547102pt;}
.h6{height:44.696508pt;}
.h2{height:47.175200pt;}
.h3{height:47.180533pt;}
.h1{height:53.712173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:179.686667pt;}
.xb{left:183.117333pt;}
.x16{left:185.828000pt;}
.x1{left:188.557333pt;}
.x9{left:193.497333pt;}
.xe{left:199.612000pt;}
.x17{left:202.024000pt;}
.xc{left:218.065333pt;}
.x3{left:228.109333pt;}
.x2{left:230.396000pt;}
.x11{left:249.582667pt;}
.x4{left:253.006667pt;}
.x6{left:259.269333pt;}
.x7{left:261.640000pt;}
.xf{left:263.264000pt;}
.x5{left:285.692000pt;}
.x13{left:298.404000pt;}
.x12{left:303.044000pt;}
.x8{left:305.041333pt;}
.x15{left:307.482667pt;}
.x14{left:312.124000pt;}
.xa{left:322.226667pt;}
.x10{left:419.461333pt;}
}




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