
    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_4a8a60ea262d4d2e8061dd9f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_04b441dbce02140d7c63b177.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_99012f1af27e3d7932b91c11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.209000;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_d1c958eaa414dc885450714d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f5a8ff306815f505d3a5f61e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.623000;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_a530946d2119e56bfa618b37.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e89eebcf6fc4adbc33997d6d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c82ec5e75fd27bbca005ddd6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eaf960858263d0847357758b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_1f410b61a713ef6c90b26cdf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.111000;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_1b7b9c5d273f0132a6919a11.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c208f0441ee01473ae38047f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.876000;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_bc74670d9925a690007fce99.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.738000;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_66139799f28156bb0bace35a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.673000;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_a783103ff92b2d5a8590eb45.woff2')format("woff");}.fff{font-family:fff;line-height:2.399000;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_ea08c256b1ac855b3387574b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.040000;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_8b260d8d4c655ea98f780181.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1869c75f00ee5f44f3209413.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.209000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.964000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:31.476000px;}
.v4{vertical-align:40.440000px;}
.v6{vertical-align:84.288000px;}
.v8{vertical-align:125.292000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.lsb{letter-spacing:0.003031px;}
.ls7{letter-spacing:0.004023px;}
.lsd{letter-spacing:0.017386px;}
.ls0{letter-spacing:2.986894px;}
.ls3{letter-spacing:2.992118px;}
.ls11{letter-spacing:9.922750px;}
.lse{letter-spacing:9.960300px;}
.ls10{letter-spacing:9.982525px;}
.lsc{letter-spacing:13.270183px;}
.ls1{letter-spacing:19.008641px;}
.ls5{letter-spacing:19.591140px;}
.ls6{letter-spacing:23.772538px;}
.ls2{letter-spacing:25.165528px;}
.ls13{letter-spacing:26.241488px;}
.ls12{letter-spacing:28.154308px;}
.lsa{letter-spacing:33.738538px;}
.lsf{letter-spacing:969.918886px;}
.ls8{letter-spacing:1631.993431px;}
.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;}
}
.ws13{word-spacing:-30.545332px;}
.ws3f{word-spacing:-29.881822px;}
.ws48{word-spacing:-19.002663px;}
.ws51{word-spacing:-16.611639px;}
.ws68{word-spacing:-16.605662px;}
.ws49{word-spacing:-16.551864px;}
.wsa5{word-spacing:-15.834556px;}
.ws1{word-spacing:-15.829597px;}
.ws5b{word-spacing:-15.774781px;}
.ws2e{word-spacing:-15.743520px;}
.ws93{word-spacing:-15.236800px;}
.ws7c{word-spacing:-15.177025px;}
.wsa6{word-spacing:-14.878147px;}
.ws40{word-spacing:-14.698820px;}
.ws89{word-spacing:-14.639044px;}
.wsa4{word-spacing:-14.585246px;}
.wse0{word-spacing:-14.579269px;}
.wsd0{word-spacing:-14.399942px;}
.wse{word-spacing:-14.280391px;}
.wsc{word-spacing:-14.220615px;}
.ws57{word-spacing:-14.160840px;}
.ws7f{word-spacing:-14.101064px;}
.ws1e{word-spacing:-13.981513px;}
.wsf{word-spacing:-13.861962px;}
.ws98{word-spacing:-13.682635px;}
.ws3d{word-spacing:-13.563084px;}
.ws7e{word-spacing:-13.503308px;}
.ws97{word-spacing:-13.449510px;}
.ws8b{word-spacing:-13.383757px;}
.ws87{word-spacing:-13.264206px;}
.wsd7{word-spacing:-13.204430px;}
.wse2{word-spacing:-13.144654px;}
.ws8a{word-spacing:-13.090856px;}
.ws3c{word-spacing:-13.084879px;}
.ws29{word-spacing:-13.025103px;}
.wsb4{word-spacing:-12.905552px;}
.ws30{word-spacing:-12.845776px;}
.ws41{word-spacing:-12.786001px;}
.wsd6{word-spacing:-12.666450px;}
.wsc6{word-spacing:-12.606674px;}
.ws52{word-spacing:-12.546898px;}
.wsb0{word-spacing:-12.487123px;}
.ws5{word-spacing:-12.427347px;}
.ws60{word-spacing:-12.367572px;}
.wsc2{word-spacing:-12.307796px;}
.ws18{word-spacing:-12.248020px;}
.wsd8{word-spacing:-12.134447px;}
.ws75{word-spacing:-12.068694px;}
.ws4a{word-spacing:-11.889367px;}
.ws3e{word-spacing:-11.829591px;}
.ws36{word-spacing:-11.769816px;}
.wsa9{word-spacing:-11.710040px;}
.ws1a{word-spacing:-11.650264px;}
.wsb2{word-spacing:-11.530713px;}
.ws47{word-spacing:-11.470938px;}
.ws42{word-spacing:-11.411162px;}
.ws38{word-spacing:-11.351386px;}
.wsc3{word-spacing:-11.297588px;}
.ws34{word-spacing:-11.291611px;}
.ws63{word-spacing:-11.231835px;}
.ws12{word-spacing:-11.112284px;}
.ws14{word-spacing:-11.052508px;}
.ws28{word-spacing:-10.992733px;}
.ws58{word-spacing:-10.932957px;}
.wsb8{word-spacing:-10.813406px;}
.wsdc{word-spacing:-10.699832px;}
.wsab{word-spacing:-10.693855px;}
.wsdb{word-spacing:-10.640057px;}
.wsa7{word-spacing:-10.634079px;}
.wsd4{word-spacing:-10.574304px;}
.ws8d{word-spacing:-10.514528px;}
.ws4b{word-spacing:-10.335201px;}
.ws8{word-spacing:-10.275426px;}
.ws19{word-spacing:-10.215650px;}
.wsb7{word-spacing:-10.155874px;}
.wsd9{word-spacing:-10.102076px;}
.ws4e{word-spacing:-10.036323px;}
.ws7{word-spacing:-9.976548px;}
.ws66{word-spacing:-9.916772px;}
.ws94{word-spacing:-9.856996px;}
.wsa8{word-spacing:-9.803198px;}
.ws43{word-spacing:-9.797221px;}
.wse3{word-spacing:-9.677670px;}
.ws8e{word-spacing:-9.623872px;}
.ws64{word-spacing:-9.558118px;}
.wsdf{word-spacing:-9.498343px;}
.ws54{word-spacing:-9.438567px;}
.ws61{word-spacing:-9.378792px;}
.ws91{word-spacing:-9.319016px;}
.ws88{word-spacing:-9.205442px;}
.ws86{word-spacing:-9.145667px;}
.ws95{word-spacing:-9.026116px;}
.ws7d{word-spacing:-8.960362px;}
.ws3{word-spacing:-8.900587px;}
.ws4f{word-spacing:-8.781036px;}
.wsbc{word-spacing:-8.727238px;}
.ws53{word-spacing:-8.721260px;}
.wscb{word-spacing:-8.667462px;}
.ws1b{word-spacing:-8.661484px;}
.ws4d{word-spacing:-8.601709px;}
.ws84{word-spacing:-8.541933px;}
.ws44{word-spacing:-8.482158px;}
.ws4{word-spacing:-8.422382px;}
.wsb3{word-spacing:-8.362606px;}
.ws79{word-spacing:-8.302831px;}
.ws37{word-spacing:-8.243055px;}
.ws9{word-spacing:-8.183280px;}
.wsbe{word-spacing:-8.063728px;}
.ws83{word-spacing:-8.003953px;}
.ws85{word-spacing:-7.830604px;}
.ws15{word-spacing:-7.824626px;}
.wsa2{word-spacing:-7.764850px;}
.wsb5{word-spacing:-7.705075px;}
.wscc{word-spacing:-7.651277px;}
.ws9d{word-spacing:-7.645299px;}
.wsa1{word-spacing:-7.531726px;}
.ws22{word-spacing:-7.406197px;}
.ws92{word-spacing:-7.352399px;}
.ws39{word-spacing:-7.346421px;}
.wsda{word-spacing:-7.226870px;}
.wsa{word-spacing:-7.167094px;}
.wsb6{word-spacing:-7.113296px;}
.ws50{word-spacing:-7.107319px;}
.wsc8{word-spacing:-7.047543px;}
.ws67{word-spacing:-6.987768px;}
.ws33{word-spacing:-6.927992px;}
.wsa0{word-spacing:-6.868216px;}
.ws62{word-spacing:-6.808441px;}
.ws55{word-spacing:-6.748665px;}
.wsde{word-spacing:-6.688890px;}
.ws35{word-spacing:-6.629114px;}
.wsc9{word-spacing:-6.515540px;}
.wsac{word-spacing:-6.509563px;}
.ws27{word-spacing:-6.395989px;}
.ws6{word-spacing:-6.390012px;}
.ws6d{word-spacing:-6.330236px;}
.ws46{word-spacing:-6.270460px;}
.ws10{word-spacing:-6.150909px;}
.ws2f{word-spacing:-6.091134px;}
.wsb9{word-spacing:-6.031358px;}
.wsd3{word-spacing:-5.977560px;}
.wsc1{word-spacing:-5.852031px;}
.ws26{word-spacing:-5.792256px;}
.ws25{word-spacing:-5.732480px;}
.ws6c{word-spacing:-5.553153px;}
.wsaa{word-spacing:-5.493378px;}
.wsb1{word-spacing:-5.373826px;}
.wsa3{word-spacing:-5.314051px;}
.wsc0{word-spacing:-5.194500px;}
.ws5f{word-spacing:-5.134724px;}
.wsbb{word-spacing:-5.080926px;}
.ws90{word-spacing:-5.015173px;}
.wsc7{word-spacing:-4.895622px;}
.wsae{word-spacing:-4.835846px;}
.ws81{word-spacing:-4.776070px;}
.ws5c{word-spacing:-4.716295px;}
.ws82{word-spacing:-4.363619px;}
.wsd1{word-spacing:-4.357641px;}
.ws99{word-spacing:-4.058763px;}
.wsd2{word-spacing:-4.004965px;}
.wsdd{word-spacing:-3.998988px;}
.ws59{word-spacing:-3.879436px;}
.wse1{word-spacing:-3.819661px;}
.wsad{word-spacing:-3.759885px;}
.wsba{word-spacing:-3.700110px;}
.ws2{word-spacing:-3.580558px;}
.ws80{word-spacing:-3.461007px;}
.ws8c{word-spacing:-3.401232px;}
.ws9c{word-spacing:-3.341456px;}
.ws3a{word-spacing:-3.281680px;}
.ws1c{word-spacing:-3.221905px;}
.ws9b{word-spacing:-3.048556px;}
.ws16{word-spacing:-2.982802px;}
.ws3b{word-spacing:-2.863251px;}
.ws1d{word-spacing:-2.803476px;}
.ws65{word-spacing:-2.743700px;}
.ws17{word-spacing:-2.624149px;}
.wscd{word-spacing:-2.570351px;}
.ws9e{word-spacing:-2.564373px;}
.wsc5{word-spacing:-2.444822px;}
.wsbd{word-spacing:-2.385046px;}
.ws9f{word-spacing:-2.331248px;}
.wsc4{word-spacing:-2.271473px;}
.ws8f{word-spacing:-2.145944px;}
.ws70{word-spacing:-2.086168px;}
.wsd5{word-spacing:-1.966617px;}
.ws56{word-spacing:-1.667739px;}
.ws5d{word-spacing:-1.607964px;}
.wsbf{word-spacing:-1.488412px;}
.ws7b{word-spacing:-1.368861px;}
.ws32{word-spacing:-1.129759px;}
.ws5e{word-spacing:-1.069983px;}
.ws24{word-spacing:-0.950432px;}
.ws23{word-spacing:-0.890656px;}
.ws5a{word-spacing:-0.771105px;}
.ws31{word-spacing:-0.591778px;}
.wsce{word-spacing:-0.412452px;}
.wscf{word-spacing:-0.358654px;}
.wsaf{word-spacing:-0.292900px;}
.ws21{word-spacing:-0.113574px;}
.wsb{word-spacing:-0.059776px;}
.ws2a{word-spacing:-0.047821px;}
.ws73{word-spacing:-0.029888px;}
.ws2b{word-spacing:0.000000px;}
.ws1f{word-spacing:0.005978px;}
.ws69{word-spacing:0.011955px;}
.wsca{word-spacing:0.304856px;}
.ws76{word-spacing:1.446570px;}
.ws77{word-spacing:1.506345px;}
.ws96{word-spacing:1.679694px;}
.ws4c{word-spacing:2.157899px;}
.ws45{word-spacing:3.293636px;}
.ws78{word-spacing:4.794003px;}
.ws7a{word-spacing:5.033106px;}
.ws6f{word-spacing:6.886149px;}
.ws6e{word-spacing:6.945925px;}
.ws71{word-spacing:11.189992px;}
.ws20{word-spacing:12.140424px;}
.ws72{word-spacing:14.077154px;}
.ws74{word-spacing:14.107042px;}
.wsd{word-spacing:15.541656px;}
.ws2d{word-spacing:16.067635px;}
.ws6a{word-spacing:16.213171px;}
.ws9a{word-spacing:16.384492px;}
.ws11{word-spacing:18.709763px;}
.ws0{word-spacing:32.227229px;}
.ws2c{word-spacing:90.171234px;}
.ws6b{word-spacing:171.487677px;}
._3{margin-left:-7.919102px;}
._57{margin-left:-5.922084px;}
._7{margin-left:-4.901599px;}
._20{margin-left:-3.849538px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.613941px;}
._5{width:1.613941px;}
._2{width:2.668393px;}
._86{width:4.115498px;}
._83{width:14.013288px;}
._81{width:15.744882px;}
._c{width:17.454475px;}
._58{width:18.530436px;}
._56{width:19.717349px;}
._5b{width:20.917160px;}
._59{width:22.112672px;}
._84{width:23.590283px;}
._b{width:24.627547px;}
._9{width:25.703508px;}
._11{width:27.377225px;}
._6{width:29.529146px;}
._8{width:31.083312px;}
._5c{width:32.558707px;}
._85{width:33.892765px;}
._a{width:34.968726px;}
._55{width:36.578368px;}
._d{width:37.957506px;}
._5f{width:39.878935px;}
._82{width:42.141798px;}
._87{width:43.345909px;}
._5d{width:44.592598px;}
._f{width:47.402051px;}
._e{width:48.657338px;}
._5a{width:51.646118px;}
._80{width:52.662304px;}
._5e{width:54.276245px;}
._10{width:56.248840px;}
._14{width:71.718559px;}
._1f{width:74.118278px;}
._1{width:94.684920px;}
._16{width:110.203509px;}
._13{width:128.275414px;}
._6e{width:133.299588px;}
._7a{width:144.507513px;}
._72{width:163.785144px;}
._6f{width:168.925846px;}
._6c{width:179.117585px;}
._63{width:184.318063px;}
._64{width:191.252032px;}
._7d{width:204.462440px;}
._66{width:211.486073px;}
._62{width:212.585933px;}
._60{width:214.026536px;}
._7b{width:229.598080px;}
._7c{width:232.527084px;}
._68{width:234.601387px;}
._77{width:279.779696px;}
._71{width:303.869263px;}
._73{width:305.931521px;}
._75{width:333.099531px;}
._74{width:344.636222px;}
._76{width:350.430155px;}
._53{width:355.151422px;}
._78{width:376.347178px;}
._7f{width:388.780502px;}
._7e{width:412.182650px;}
._6d{width:422.972146px;}
._4d{width:444.131327px;}
._70{width:449.721727px;}
._79{width:478.145024px;}
._48{width:483.455895px;}
._24{width:526.173210px;}
._47{width:552.743388px;}
._1e{width:567.730774px;}
._38{width:570.843392px;}
._39{width:585.924728px;}
._3d{width:620.518459px;}
._1a{width:625.005904px;}
._42{width:626.404644px;}
._50{width:639.299404px;}
._65{width:644.022314px;}
._67{width:646.114460px;}
._2e{width:647.517330px;}
._37{width:648.810273px;}
._51{width:650.386555px;}
._2d{width:653.576167px;}
._49{width:665.111037px;}
._54{width:668.982686px;}
._69{width:673.282471px;}
._4c{width:676.367941px;}
._29{width:680.856482px;}
._21{width:685.719806px;}
._6b{width:690.408180px;}
._4e{width:697.331183px;}
._27{width:701.272775px;}
._41{width:711.084912px;}
._40{width:716.080942px;}
._46{width:728.943419px;}
._36{width:730.515517px;}
._23{width:733.098409px;}
._15{width:736.014852px;}
._1c{width:737.814092px;}
._45{width:739.362276px;}
._22{width:740.366503px;}
._3a{width:742.487933px;}
._6a{width:753.262223px;}
._19{width:754.287603px;}
._2a{width:759.865248px;}
._2c{width:761.455274px;}
._61{width:763.155085px;}
._3f{width:764.175056px;}
._3b{width:768.921221px;}
._34{width:771.288332px;}
._4b{width:776.249698px;}
._4f{width:778.150552px;}
._3c{width:779.698735px;}
._3e{width:785.049724px;}
._26{width:786.309898px;}
._33{width:790.392564px;}
._35{width:793.803943px;}
._28{width:796.394012px;}
._31{width:804.896469px;}
._4a{width:811.248206px;}
._1b{width:813.796433px;}
._52{width:815.097744px;}
._32{width:817.650155px;}
._25{width:831.872523px;}
._43{width:833.115254px;}
._1d{width:836.010775px;}
._2f{width:841.475445px;}
._44{width:856.282421px;}
._18{width:864.681462px;}
._2b{width:880.129824px;}
._30{width:939.998502px;}
._17{width:949.789717px;}
._12{width:983.807914px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y21{bottom:40.207500px;}
.yd4{bottom:85.039500px;}
.y17c{bottom:86.886000px;}
.y20{bottom:89.295000px;}
.yd3{bottom:102.972000px;}
.y1f{bottom:103.525500px;}
.y17b{bottom:104.818500px;}
.y87{bottom:106.929000px;}
.y137{bottom:110.796000px;}
.yd2{bottom:120.904500px;}
.y17a{bottom:122.751000px;}
.y86{bottom:124.861500px;}
.y136{bottom:128.728500px;}
.yd1{bottom:138.837000px;}
.y85{bottom:142.794000px;}
.y164{bottom:150.549000px;}
.y109{bottom:150.604500px;}
.y179{bottom:152.640000px;}
.yd0{bottom:156.771000px;}
.y135{bottom:158.617500px;}
.y84{bottom:160.726500px;}
.y163{bottom:168.481500px;}
.y108{bottom:168.537000px;}
.y178{bottom:170.572500px;}
.ycf{bottom:174.703500px;}
.y134{bottom:176.550000px;}
.y83{bottom:178.660500px;}
.y162{bottom:186.415500px;}
.y107{bottom:186.469500px;}
.y177{bottom:188.505000px;}
.yce{bottom:192.636000px;}
.y82{bottom:196.593000px;}
.y133{bottom:206.437500px;}
.ycd{bottom:210.568500px;}
.y81{bottom:214.525500px;}
.y161{bottom:216.060000px;}
.y106{bottom:216.169500px;}
.y176{bottom:218.392500px;}
.y132{bottom:224.370000px;}
.ycc{bottom:228.501000px;}
.y80{bottom:232.458000px;}
.y160{bottom:233.992500px;}
.y105{bottom:234.102000px;}
.y175{bottom:236.325000px;}
.ycb{bottom:246.433500px;}
.y98{bottom:250.105500px;}
.y7f{bottom:250.390500px;}
.y15f{bottom:251.925000px;}
.y131{bottom:254.259000px;}
.y104{bottom:263.800500px;}
.yca{bottom:264.367500px;}
.y174{bottom:266.214000px;}
.y97{bottom:268.038000px;}
.y7e{bottom:268.324500px;}
.y15e{bottom:269.857500px;}
.y130{bottom:272.191500px;}
.y103{bottom:281.734500px;}
.y173{bottom:284.146500px;}
.y96{bottom:285.970500px;}
.y7d{bottom:286.257000px;}
.y15d{bottom:287.791500px;}
.y12f{bottom:302.079000px;}
.y95{bottom:303.903000px;}
.y7c{bottom:304.189500px;}
.yc9{bottom:306.333000px;}
.y102{bottom:311.433000px;}
.y172{bottom:314.034000px;}
.yc8{bottom:315.298500px;}
.y15c{bottom:317.436000px;}
.y12e{bottom:320.011500px;}
.y94{bottom:321.837000px;}
.y7b{bottom:322.122000px;}
.yc7{bottom:324.265500px;}
.y101{bottom:329.365500px;}
.y171{bottom:331.966500px;}
.y15b{bottom:335.368500px;}
.y12d{bottom:337.944000px;}
.y93{bottom:339.769500px;}
.y7a{bottom:340.054500px;}
.yc6{bottom:340.702500px;}
.y100{bottom:347.299500px;}
.yc5{bottom:349.668000px;}
.y170{bottom:349.899000px;}
.y92{bottom:357.702000px;}
.y79{bottom:357.987000px;}
.yc4{bottom:358.635000px;}
.y15a{bottom:365.013000px;}
.y12c{bottom:367.833000px;}
.yc3{bottom:375.072000px;}
.y91{bottom:375.634500px;}
.y78{bottom:375.921000px;}
.yff{bottom:376.998000px;}
.y16f{bottom:379.788000px;}
.y159{bottom:382.947000px;}
.yc2{bottom:384.037500px;}
.y12b{bottom:385.765500px;}
.yc1{bottom:393.004500px;}
.y90{bottom:393.567000px;}
.y77{bottom:393.853500px;}
.yfe{bottom:394.930500px;}
.y16e{bottom:397.720500px;}
.y158{bottom:400.879500px;}
.yc0{bottom:409.440000px;}
.y8f{bottom:411.501000px;}
.y76{bottom:411.786000px;}
.yfd{bottom:412.864500px;}
.y12a{bottom:415.653000px;}
.ybf{bottom:418.407000px;}
.ybe{bottom:427.374000px;}
.y16d{bottom:427.608000px;}
.y8e{bottom:429.433500px;}
.y75{bottom:429.718500px;}
.y157{bottom:430.524000px;}
.y129{bottom:433.585500px;}
.yfc{bottom:442.563000px;}
.ybd{bottom:443.809500px;}
.y16c{bottom:445.540500px;}
.y8d{bottom:447.366000px;}
.y74{bottom:447.651000px;}
.y156{bottom:448.456500px;}
.ybc{bottom:452.776500px;}
.yfb{bottom:460.495500px;}
.ybb{bottom:461.742000px;}
.y1e{bottom:462.043500px;}
.y128{bottom:463.474500px;}
.y8c{bottom:465.298500px;}
.y73{bottom:465.583500px;}
.y155{bottom:466.389000px;}
.yba{bottom:478.179000px;}
.yfa{bottom:478.428000px;}
.y1d{bottom:479.976000px;}
.y127{bottom:481.407000px;}
.y8b{bottom:483.231000px;}
.y72{bottom:483.517500px;}
.yb9{bottom:487.146000px;}
.y16b{bottom:493.362000px;}
.y154{bottom:496.035000px;}
.yb8{bottom:496.111500px;}
.y1c{bottom:497.908500px;}
.y126{bottom:499.339500px;}
.y8a{bottom:501.163500px;}
.y71{bottom:501.450000px;}
.yf9{bottom:508.128000px;}
.y16a{bottom:511.294500px;}
.yb7{bottom:512.580000px;}
.y153{bottom:513.967500px;}
.y1b{bottom:515.841000px;}
.y70{bottom:519.382500px;}
.yb6{bottom:521.545500px;}
.yf8{bottom:526.060500px;}
.y125{bottom:529.227000px;}
.y152{bottom:531.900000px;}
.y1a{bottom:533.773500px;}
.y89{bottom:537.030000px;}
.y6f{bottom:537.315000px;}
.yb5{bottom:537.598500px;}
.y169{bottom:541.182000px;}
.y124{bottom:547.159500px;}
.y19{bottom:551.706000px;}
.y88{bottom:554.962500px;}
.y6e{bottom:555.247500px;}
.yf7{bottom:555.760500px;}
.y168{bottom:559.114500px;}
.y151{bottom:561.544500px;}
.y18c{bottom:565.093500px;}
.y6d{bottom:573.180000px;}
.yf6{bottom:573.693000px;}
.y18{bottom:574.122000px;}
.y123{bottom:577.048500px;}
.y150{bottom:579.477000px;}
.y6c{bottom:591.114000px;}
.yf5{bottom:591.625500px;}
.y17{bottom:592.056000px;}
.y122{bottom:594.981000px;}
.y4c{bottom:595.108500px;}
.y14f{bottom:597.411000px;}
.yb4{bottom:604.443000px;}
.y167{bottom:606.936000px;}
.y4b{bottom:607.063500px;}
.y6b{bottom:609.046500px;}
.y16{bottom:609.988500px;}
.y18b{bottom:612.913500px;}
.yb3{bottom:613.408500px;}
.y14e{bottom:615.343500px;}
.y4a{bottom:619.018500px;}
.yf4{bottom:621.325500px;}
.yb2{bottom:622.375500px;}
.y121{bottom:624.868500px;}
.y6a{bottom:626.979000px;}
.y15{bottom:627.921000px;}
.y18a{bottom:630.846000px;}
.y49{bottom:630.973500px;}
.yb1{bottom:631.341000px;}
.yf3{bottom:639.258000px;}
.yb0{bottom:640.308000px;}
.y120{bottom:642.801000px;}
.y48{bottom:642.930000px;}
.y69{bottom:644.911500px;}
.y14d{bottom:644.988000px;}
.y14{bottom:650.337000px;}
.y47{bottom:654.885000px;}
.yaf{bottom:656.775000px;}
.y189{bottom:660.733500px;}
.y68{bottom:662.844000px;}
.y14c{bottom:662.920500px;}
.y46{bottom:666.840000px;}
.y13{bottom:668.269500px;}
.yf2{bottom:668.958000px;}
.y11f{bottom:672.690000px;}
.yae{bottom:673.657500px;}
.y188{bottom:678.667500px;}
.y45{bottom:678.795000px;}
.y67{bottom:680.778000px;}
.y12{bottom:686.202000px;}
.yf1{bottom:686.890500px;}
.y11e{bottom:690.622500px;}
.y44{bottom:690.750000px;}
.y14b{bottom:692.566500px;}
.y187{bottom:696.600000px;}
.y66{bottom:698.710500px;}
.y43{bottom:702.705000px;}
.y11{bottom:704.134500px;}
.yf0{bottom:704.823000px;}
.y14a{bottom:710.499000px;}
.y42{bottom:714.660000px;}
.y65{bottom:716.643000px;}
.y11d{bottom:720.510000px;}
.y186{bottom:726.487500px;}
.y10{bottom:726.550500px;}
.y41{bottom:726.615000px;}
.yef{bottom:734.523000px;}
.y64{bottom:734.575500px;}
.y11c{bottom:738.442500px;}
.y40{bottom:738.570000px;}
.y149{bottom:740.143500px;}
.yad{bottom:741.415500px;}
.y185{bottom:744.420000px;}
.yf{bottom:744.483000px;}
.yac{bottom:750.381000px;}
.y3f{bottom:750.526500px;}
.yee{bottom:752.455500px;}
.y63{bottom:752.508000px;}
.y148{bottom:758.076000px;}
.yab{bottom:759.348000px;}
.ye{bottom:762.417000px;}
.y3e{bottom:762.481500px;}
.yaa{bottom:768.313500px;}
.y11b{bottom:768.330000px;}
.yed{bottom:770.388000px;}
.y62{bottom:770.440500px;}
.y184{bottom:774.309000px;}
.y3d{bottom:774.436500px;}
.y147{bottom:776.008500px;}
.ya9{bottom:777.280500px;}
.yd{bottom:780.349500px;}
.y11a{bottom:786.264000px;}
.y3c{bottom:786.391500px;}
.y61{bottom:788.374500px;}
.y183{bottom:792.241500px;}
.ya8{bottom:793.747500px;}
.yc{bottom:798.282000px;}
.y3b{bottom:798.346500px;}
.yec{bottom:803.115000px;}
.y166{bottom:804.196500px;}
.y146{bottom:805.654500px;}
.y60{bottom:806.307000px;}
.ya7{bottom:809.800500px;}
.y3a{bottom:810.301500px;}
.y119{bottom:816.151500px;}
.yb{bottom:816.214500px;}
.y182{bottom:822.129000px;}
.y39{bottom:822.256500px;}
.y145{bottom:823.587000px;}
.y5f{bottom:824.239500px;}
.y118{bottom:834.084000px;}
.ya{bottom:834.147000px;}
.y38{bottom:834.211500px;}
.y181{bottom:840.061500px;}
.y144{bottom:841.519500px;}
.y5e{bottom:842.172000px;}
.y37{bottom:846.166500px;}
.y117{bottom:852.016500px;}
.y9{bottom:852.081000px;}
.yeb{bottom:852.448500px;}
.ya6{bottom:852.612000px;}
.y36{bottom:858.123000px;}
.y5d{bottom:860.104500px;}
.y165{bottom:869.949000px;}
.y8{bottom:870.013500px;}
.y35{bottom:870.078000px;}
.yea{bottom:870.381000px;}
.ya5{bottom:870.544500px;}
.y143{bottom:871.164000px;}
.y5c{bottom:878.037000px;}
.y116{bottom:881.905500px;}
.y34{bottom:882.033000px;}
.y180{bottom:887.883000px;}
.y7{bottom:887.946000px;}
.ya4{bottom:888.477000px;}
.y142{bottom:889.098000px;}
.y33{bottom:893.988000px;}
.y5b{bottom:895.971000px;}
.y115{bottom:899.838000px;}
.y6{bottom:905.878500px;}
.y32{bottom:905.943000px;}
.ya3{bottom:906.409500px;}
.y141{bottom:907.030500px;}
.y5a{bottom:913.903500px;}
.y114{bottom:917.770500px;}
.y31{bottom:917.898000px;}
.ye9{bottom:921.294000px;}
.y5{bottom:923.811000px;}
.ya2{bottom:924.342000px;}
.y30{bottom:929.853000px;}
.ye8{bottom:930.259500px;}
.y59{bottom:931.836000px;}
.y17f{bottom:935.703000px;}
.y140{bottom:936.675000px;}
.ye7{bottom:939.226500px;}
.y4{bottom:941.743500px;}
.y2f{bottom:941.808000px;}
.ya1{bottom:942.274500px;}
.y113{bottom:947.658000px;}
.y58{bottom:949.768500px;}
.y2e{bottom:953.763000px;}
.y13f{bottom:954.607500px;}
.ye6{bottom:955.663500px;}
.y3{bottom:959.677500px;}
.ya0{bottom:960.208500px;}
.ye5{bottom:964.629000px;}
.y112{bottom:965.590500px;}
.y2d{bottom:965.719500px;}
.y57{bottom:967.701000px;}
.ye4{bottom:973.596000px;}
.y2c{bottom:977.674500px;}
.y111{bottom:983.524500px;}
.y13e{bottom:984.252000px;}
.y56{bottom:985.633500px;}
.y2b{bottom:989.629500px;}
.y9f{bottom:989.989500px;}
.ye3{bottom:990.031500px;}
.y2{bottom:992.404500px;}
.ye2{bottom:998.998500px;}
.y9e{bottom:1000.240500px;}
.y2a{bottom:1001.584500px;}
.y13d{bottom:1002.186000px;}
.y55{bottom:1003.567500px;}
.ye1{bottom:1007.965500px;}
.y110{bottom:1013.412000px;}
.y29{bottom:1013.539500px;}
.y54{bottom:1021.500000px;}
.ye0{bottom:1024.401000px;}
.y28{bottom:1025.494500px;}
.y9d{bottom:1030.129500px;}
.y10f{bottom:1031.344500px;}
.y13c{bottom:1031.830500px;}
.ydf{bottom:1033.368000px;}
.y27{bottom:1037.449500px;}
.y53{bottom:1039.432500px;}
.y9c{bottom:1040.379000px;}
.yde{bottom:1042.333500px;}
.y17e{bottom:1049.277000px;}
.y26{bottom:1049.404500px;}
.y13b{bottom:1049.763000px;}
.y52{bottom:1057.365000px;}
.ydd{bottom:1058.770500px;}
.y10e{bottom:1061.232000px;}
.y25{bottom:1061.359500px;}
.y13a{bottom:1067.695500px;}
.ydc{bottom:1067.737500px;}
.y51{bottom:1075.297500px;}
.ydb{bottom:1076.703000px;}
.y10d{bottom:1079.164500px;}
.y24{bottom:1080.816000px;}
.yda{bottom:1093.140000px;}
.y50{bottom:1093.231500px;}
.y9b{bottom:1094.257500px;}
.y10c{bottom:1097.098500px;}
.y139{bottom:1097.341500px;}
.y23{bottom:1099.791000px;}
.y1{bottom:1100.094000px;}
.yd9{bottom:1102.107000px;}
.yd8{bottom:1111.072500px;}
.y4f{bottom:1111.164000px;}
.y9a{bottom:1112.191500px;}
.y17d{bottom:1115.031000px;}
.y138{bottom:1115.274000px;}
.y10b{bottom:1126.986000px;}
.yd7{bottom:1127.541000px;}
.y4e{bottom:1129.096500px;}
.y99{bottom:1130.124000px;}
.yd6{bottom:1136.506500px;}
.y10a{bottom:1144.918500px;}
.yd5{bottom:1152.559500px;}
.y4d{bottom:1161.823500px;}
.y22{bottom:1162.851000px;}
.hc{height:22.445738px;}
.h5{height:23.886490px;}
.h6{height:29.331803px;}
.h7{height:31.423943px;}
.h9{height:42.799330px;}
.hd{height:44.891476px;}
.h4{height:56.009737px;}
.h3{height:64.643977px;}
.h2{height:72.304680px;}
.ha{height:86.679024px;}
.h8{height:96.449737px;}
.hb{height:127.683024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:42.519000px;}
.x7{left:51.486000px;}
.x4{left:59.152500px;}
.x3{left:64.935000px;}
.x6{left:164.749500px;}
.x11{left:172.381500px;}
.xe{left:174.969000px;}
.xf{left:205.503000px;}
.x12{left:228.580500px;}
.xd{left:241.234500px;}
.x10{left:283.026000px;}
.x13{left:294.792000px;}
.x8{left:312.388500px;}
.x1{left:318.082500px;}
.xb{left:327.084000px;}
.x9{left:379.344000px;}
.xa{left:411.679500px;}
.x14{left:438.987000px;}
.x5{left:442.722000px;}
.xc{left:474.141000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.968000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:27.978667pt;}
.v4{vertical-align:35.946667pt;}
.v6{vertical-align:74.922667pt;}
.v8{vertical-align:111.370667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.lsb{letter-spacing:0.002694pt;}
.ls7{letter-spacing:0.003576pt;}
.lsd{letter-spacing:0.015454pt;}
.ls0{letter-spacing:2.655017pt;}
.ls3{letter-spacing:2.659661pt;}
.ls11{letter-spacing:8.820222pt;}
.lse{letter-spacing:8.853600pt;}
.ls10{letter-spacing:8.873356pt;}
.lsc{letter-spacing:11.795718pt;}
.ls1{letter-spacing:16.896570pt;}
.ls5{letter-spacing:17.414347pt;}
.ls6{letter-spacing:21.131145pt;}
.ls2{letter-spacing:22.369358pt;}
.ls13{letter-spacing:23.325767pt;}
.ls12{letter-spacing:25.026051pt;}
.lsa{letter-spacing:29.989812pt;}
.lsf{letter-spacing:862.150121pt;}
.ls8{letter-spacing:1450.660828pt;}
.ws13{word-spacing:-27.151406pt;}
.ws3f{word-spacing:-26.561620pt;}
.ws48{word-spacing:-16.891256pt;}
.ws51{word-spacing:-14.765902pt;}
.ws68{word-spacing:-14.760588pt;}
.ws49{word-spacing:-14.712768pt;}
.wsa5{word-spacing:-14.075161pt;}
.ws1{word-spacing:-14.070753pt;}
.ws5b{word-spacing:-14.022027pt;}
.ws2e{word-spacing:-13.994240pt;}
.ws93{word-spacing:-13.543823pt;}
.ws7c{word-spacing:-13.490689pt;}
.wsa6{word-spacing:-13.225019pt;}
.ws40{word-spacing:-13.065618pt;}
.ws89{word-spacing:-13.012484pt;}
.wsa4{word-spacing:-12.964663pt;}
.wse0{word-spacing:-12.959350pt;}
.wsd0{word-spacing:-12.799948pt;}
.wse{word-spacing:-12.693681pt;}
.wsc{word-spacing:-12.640547pt;}
.ws57{word-spacing:-12.587413pt;}
.ws7f{word-spacing:-12.534279pt;}
.ws1e{word-spacing:-12.428011pt;}
.wsf{word-spacing:-12.321744pt;}
.ws98{word-spacing:-12.162342pt;}
.ws3d{word-spacing:-12.056074pt;}
.ws7e{word-spacing:-12.002940pt;}
.ws97{word-spacing:-11.955120pt;}
.ws8b{word-spacing:-11.896673pt;}
.ws87{word-spacing:-11.790405pt;}
.wsd7{word-spacing:-11.737271pt;}
.wse2{word-spacing:-11.684137pt;}
.ws8a{word-spacing:-11.636317pt;}
.ws3c{word-spacing:-11.631003pt;}
.ws29{word-spacing:-11.577870pt;}
.wsb4{word-spacing:-11.471602pt;}
.ws30{word-spacing:-11.418468pt;}
.ws41{word-spacing:-11.365334pt;}
.wsd6{word-spacing:-11.259066pt;}
.wsc6{word-spacing:-11.205932pt;}
.ws52{word-spacing:-11.152799pt;}
.wsb0{word-spacing:-11.099665pt;}
.ws5{word-spacing:-11.046531pt;}
.ws60{word-spacing:-10.993397pt;}
.wsc2{word-spacing:-10.940263pt;}
.ws18{word-spacing:-10.887129pt;}
.wsd8{word-spacing:-10.786175pt;}
.ws75{word-spacing:-10.727728pt;}
.ws4a{word-spacing:-10.568326pt;}
.ws3e{word-spacing:-10.515192pt;}
.ws36{word-spacing:-10.462058pt;}
.wsa9{word-spacing:-10.408924pt;}
.ws1a{word-spacing:-10.355791pt;}
.wsb2{word-spacing:-10.249523pt;}
.ws47{word-spacing:-10.196389pt;}
.ws42{word-spacing:-10.143255pt;}
.ws38{word-spacing:-10.090121pt;}
.wsc3{word-spacing:-10.042301pt;}
.ws34{word-spacing:-10.036987pt;}
.ws63{word-spacing:-9.983854pt;}
.ws12{word-spacing:-9.877586pt;}
.ws14{word-spacing:-9.824452pt;}
.ws28{word-spacing:-9.771318pt;}
.ws58{word-spacing:-9.718184pt;}
.wsb8{word-spacing:-9.611916pt;}
.wsdc{word-spacing:-9.510962pt;}
.wsab{word-spacing:-9.505649pt;}
.wsdb{word-spacing:-9.457828pt;}
.wsa7{word-spacing:-9.452515pt;}
.wsd4{word-spacing:-9.399381pt;}
.ws8d{word-spacing:-9.346247pt;}
.ws4b{word-spacing:-9.186846pt;}
.ws8{word-spacing:-9.133712pt;}
.ws19{word-spacing:-9.080578pt;}
.wsb7{word-spacing:-9.027444pt;}
.wsd9{word-spacing:-8.979623pt;}
.ws4e{word-spacing:-8.921176pt;}
.ws7{word-spacing:-8.868042pt;}
.ws66{word-spacing:-8.814908pt;}
.ws94{word-spacing:-8.761775pt;}
.wsa8{word-spacing:-8.713954pt;}
.ws43{word-spacing:-8.708641pt;}
.wse3{word-spacing:-8.602373pt;}
.ws8e{word-spacing:-8.554553pt;}
.ws64{word-spacing:-8.496105pt;}
.wsdf{word-spacing:-8.442971pt;}
.ws54{word-spacing:-8.389838pt;}
.ws61{word-spacing:-8.336704pt;}
.ws91{word-spacing:-8.283570pt;}
.ws88{word-spacing:-8.182615pt;}
.ws86{word-spacing:-8.129482pt;}
.ws95{word-spacing:-8.023214pt;}
.ws7d{word-spacing:-7.964767pt;}
.ws3{word-spacing:-7.911633pt;}
.ws4f{word-spacing:-7.805365pt;}
.wsbc{word-spacing:-7.757545pt;}
.ws53{word-spacing:-7.752231pt;}
.wscb{word-spacing:-7.704411pt;}
.ws1b{word-spacing:-7.699097pt;}
.ws4d{word-spacing:-7.645963pt;}
.ws84{word-spacing:-7.592830pt;}
.ws44{word-spacing:-7.539696pt;}
.ws4{word-spacing:-7.486562pt;}
.wsb3{word-spacing:-7.433428pt;}
.ws79{word-spacing:-7.380294pt;}
.ws37{word-spacing:-7.327160pt;}
.ws9{word-spacing:-7.274026pt;}
.wsbe{word-spacing:-7.167759pt;}
.ws83{word-spacing:-7.114625pt;}
.ws85{word-spacing:-6.960537pt;}
.ws15{word-spacing:-6.955223pt;}
.wsa2{word-spacing:-6.902089pt;}
.wsb5{word-spacing:-6.848955pt;}
.wscc{word-spacing:-6.801135pt;}
.ws9d{word-spacing:-6.795822pt;}
.wsa1{word-spacing:-6.694867pt;}
.ws22{word-spacing:-6.583286pt;}
.ws92{word-spacing:-6.535466pt;}
.ws39{word-spacing:-6.530152pt;}
.wsda{word-spacing:-6.423884pt;}
.wsa{word-spacing:-6.370751pt;}
.wsb6{word-spacing:-6.322930pt;}
.ws50{word-spacing:-6.317617pt;}
.wsc8{word-spacing:-6.264483pt;}
.ws67{word-spacing:-6.211349pt;}
.ws33{word-spacing:-6.158215pt;}
.wsa0{word-spacing:-6.105081pt;}
.ws62{word-spacing:-6.051947pt;}
.ws55{word-spacing:-5.998814pt;}
.wsde{word-spacing:-5.945680pt;}
.ws35{word-spacing:-5.892546pt;}
.wsc9{word-spacing:-5.791591pt;}
.wsac{word-spacing:-5.786278pt;}
.ws27{word-spacing:-5.685324pt;}
.ws6{word-spacing:-5.680010pt;}
.ws6d{word-spacing:-5.626876pt;}
.ws46{word-spacing:-5.573743pt;}
.ws10{word-spacing:-5.467475pt;}
.ws2f{word-spacing:-5.414341pt;}
.wsb9{word-spacing:-5.361207pt;}
.wsd3{word-spacing:-5.313387pt;}
.wsc1{word-spacing:-5.201806pt;}
.ws26{word-spacing:-5.148672pt;}
.ws25{word-spacing:-5.095538pt;}
.ws6c{word-spacing:-4.936136pt;}
.wsaa{word-spacing:-4.883002pt;}
.wsb1{word-spacing:-4.776735pt;}
.wsa3{word-spacing:-4.723601pt;}
.wsc0{word-spacing:-4.617333pt;}
.ws5f{word-spacing:-4.564199pt;}
.wsbb{word-spacing:-4.516379pt;}
.ws90{word-spacing:-4.457931pt;}
.wsc7{word-spacing:-4.351664pt;}
.wsae{word-spacing:-4.298530pt;}
.ws81{word-spacing:-4.245396pt;}
.ws5c{word-spacing:-4.192262pt;}
.ws82{word-spacing:-3.878772pt;}
.wsd1{word-spacing:-3.873459pt;}
.ws99{word-spacing:-3.607790pt;}
.wsd2{word-spacing:-3.559969pt;}
.wsdd{word-spacing:-3.554656pt;}
.ws59{word-spacing:-3.448388pt;}
.wse1{word-spacing:-3.395254pt;}
.wsad{word-spacing:-3.342120pt;}
.wsba{word-spacing:-3.288986pt;}
.ws2{word-spacing:-3.182719pt;}
.ws80{word-spacing:-3.076451pt;}
.ws8c{word-spacing:-3.023317pt;}
.ws9c{word-spacing:-2.970183pt;}
.ws3a{word-spacing:-2.917049pt;}
.ws1c{word-spacing:-2.863915pt;}
.ws9b{word-spacing:-2.709827pt;}
.ws16{word-spacing:-2.651380pt;}
.ws3b{word-spacing:-2.545112pt;}
.ws1d{word-spacing:-2.491978pt;}
.ws65{word-spacing:-2.438844pt;}
.ws17{word-spacing:-2.332577pt;}
.wscd{word-spacing:-2.284756pt;}
.ws9e{word-spacing:-2.279443pt;}
.wsc5{word-spacing:-2.173175pt;}
.wsbd{word-spacing:-2.120041pt;}
.ws9f{word-spacing:-2.072221pt;}
.wsc4{word-spacing:-2.019087pt;}
.ws8f{word-spacing:-1.907506pt;}
.ws70{word-spacing:-1.854372pt;}
.wsd5{word-spacing:-1.748104pt;}
.ws56{word-spacing:-1.482435pt;}
.ws5d{word-spacing:-1.429301pt;}
.wsbf{word-spacing:-1.323033pt;}
.ws7b{word-spacing:-1.216766pt;}
.ws32{word-spacing:-1.004230pt;}
.ws5e{word-spacing:-0.951096pt;}
.ws24{word-spacing:-0.844828pt;}
.ws23{word-spacing:-0.791695pt;}
.ws5a{word-spacing:-0.685427pt;}
.ws31{word-spacing:-0.526025pt;}
.wsce{word-spacing:-0.366624pt;}
.wscf{word-spacing:-0.318803pt;}
.wsaf{word-spacing:-0.260356pt;}
.ws21{word-spacing:-0.100954pt;}
.wsb{word-spacing:-0.053134pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws73{word-spacing:-0.026567pt;}
.ws2b{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.005313pt;}
.ws69{word-spacing:0.010627pt;}
.wsca{word-spacing:0.270983pt;}
.ws76{word-spacing:1.285840pt;}
.ws77{word-spacing:1.338973pt;}
.ws96{word-spacing:1.493062pt;}
.ws4c{word-spacing:1.918133pt;}
.ws45{word-spacing:2.927676pt;}
.ws78{word-spacing:4.261336pt;}
.ws7a{word-spacing:4.473872pt;}
.ws6f{word-spacing:6.121021pt;}
.ws6e{word-spacing:6.174155pt;}
.ws71{word-spacing:9.946660pt;}
.ws20{word-spacing:10.791488pt;}
.ws72{word-spacing:12.513026pt;}
.ws74{word-spacing:12.539593pt;}
.wsd{word-spacing:13.814805pt;}
.ws2d{word-spacing:14.282342pt;}
.ws6a{word-spacing:14.411707pt;}
.ws9a{word-spacing:14.563993pt;}
.ws11{word-spacing:16.630900pt;}
.ws0{word-spacing:28.646426pt;}
.ws2c{word-spacing:80.152208pt;}
.ws6b{word-spacing:152.433490pt;}
._3{margin-left:-7.039202pt;}
._57{margin-left:-5.264075pt;}
._7{margin-left:-4.356977pt;}
._20{margin-left:-3.421811pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.434614pt;}
._5{width:1.434614pt;}
._2{width:2.371905pt;}
._86{width:3.658221pt;}
._83{width:12.456256pt;}
._81{width:13.995451pt;}
._c{width:15.515089pt;}
._58{width:16.471499pt;}
._56{width:17.526532pt;}
._5b{width:18.593031pt;}
._59{width:19.655709pt;}
._84{width:20.969140pt;}
._b{width:21.891153pt;}
._9{width:22.847563pt;}
._11{width:24.335311pt;}
._6{width:26.248130pt;}
._8{width:27.629611pt;}
._5c{width:28.941073pt;}
._85{width:30.126902pt;}
._a{width:31.083312pt;}
._55{width:32.514105pt;}
._d{width:33.740005pt;}
._5f{width:35.447942pt;}
._82{width:37.459376pt;}
._87{width:38.529697pt;}
._5d{width:39.637865pt;}
._f{width:42.135156pt;}
._e{width:43.250967pt;}
._5a{width:45.907661pt;}
._80{width:46.810937pt;}
._5e{width:48.245551pt;}
._10{width:49.998969pt;}
._14{width:63.749830pt;}
._1f{width:65.882914pt;}
._1{width:84.164373pt;}
._16{width:97.958675pt;}
._13{width:114.022591pt;}
._6e{width:118.488523pt;}
._7a{width:128.451123pt;}
._72{width:145.586795pt;}
._6f{width:150.156307pt;}
._6c{width:159.215631pt;}
._63{width:163.838278pt;}
._64{width:170.001806pt;}
._7d{width:181.744391pt;}
._66{width:187.987620pt;}
._62{width:188.965274pt;}
._60{width:190.245810pt;}
._7b{width:204.087182pt;}
._7c{width:206.690741pt;}
._68{width:208.534566pt;}
._77{width:248.693063pt;}
._71{width:270.106011pt;}
._73{width:271.939130pt;}
._75{width:296.088472pt;}
._74{width:306.343308pt;}
._76{width:311.493471pt;}
._53{width:315.690153pt;}
._78{width:334.530825pt;}
._7f{width:345.582669pt;}
._7e{width:366.384578pt;}
._6d{width:375.975241pt;}
._4d{width:394.783401pt;}
._70{width:399.752646pt;}
._79{width:425.017799pt;}
._48{width:429.738574pt;}
._24{width:467.709520pt;}
._47{width:491.327456pt;}
._1e{width:504.649577pt;}
._38{width:507.416349pt;}
._39{width:520.821981pt;}
._3d{width:551.571964pt;}
._1a{width:555.560803pt;}
._42{width:556.804128pt;}
._50{width:568.266137pt;}
._65{width:572.464279pt;}
._67{width:574.323965pt;}
._2e{width:575.570960pt;}
._37{width:576.720242pt;}
._51{width:578.121382pt;}
._2d{width:580.956593pt;}
._49{width:591.209810pt;}
._54{width:594.651277pt;}
._69{width:598.473307pt;}
._4c{width:601.215947pt;}
._29{width:605.205762pt;}
._21{width:609.528717pt;}
._6b{width:613.696160pt;}
._4e{width:619.849941pt;}
._27{width:623.353578pt;}
._41{width:632.075477pt;}
._40{width:636.516393pt;}
._46{width:647.949706pt;}
._36{width:649.347126pt;}
._23{width:651.643030pt;}
._15{width:654.235424pt;}
._1c{width:655.834749pt;}
._45{width:657.210912pt;}
._22{width:658.103558pt;}
._3a{width:659.989274pt;}
._6a{width:669.566421pt;}
._19{width:670.477869pt;}
._2a{width:675.435776pt;}
._2c{width:676.849133pt;}
._61{width:678.360076pt;}
._3f{width:679.266717pt;}
._3b{width:683.485530pt;}
._34{width:685.589629pt;}
._4b{width:689.999731pt;}
._4f{width:691.689379pt;}
._3c{width:693.065542pt;}
._3e{width:697.821977pt;}
._26{width:698.942131pt;}
._33{width:702.571168pt;}
._35{width:705.603505pt;}
._28{width:707.905789pt;}
._31{width:715.463528pt;}
._4a{width:721.109517pt;}
._1b{width:723.374607pt;}
._52{width:724.531328pt;}
._32{width:726.800138pt;}
._25{width:739.442242pt;}
._43{width:740.546892pt;}
._1d{width:743.120689pt;}
._2f{width:747.978173pt;}
._44{width:761.139930pt;}
._18{width:768.605744pt;}
._2b{width:782.337621pt;}
._30{width:835.554224pt;}
._17{width:844.257526pt;}
._12{width:874.495923pt;}
.fs6{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:35.740000pt;}
.yd4{bottom:75.590667pt;}
.y17c{bottom:77.232000pt;}
.y20{bottom:79.373333pt;}
.yd3{bottom:91.530667pt;}
.y1f{bottom:92.022667pt;}
.y17b{bottom:93.172000pt;}
.y87{bottom:95.048000pt;}
.y137{bottom:98.485333pt;}
.yd2{bottom:107.470667pt;}
.y17a{bottom:109.112000pt;}
.y86{bottom:110.988000pt;}
.y136{bottom:114.425333pt;}
.yd1{bottom:123.410667pt;}
.y85{bottom:126.928000pt;}
.y164{bottom:133.821333pt;}
.y109{bottom:133.870667pt;}
.y179{bottom:135.680000pt;}
.yd0{bottom:139.352000pt;}
.y135{bottom:140.993333pt;}
.y84{bottom:142.868000pt;}
.y163{bottom:149.761333pt;}
.y108{bottom:149.810667pt;}
.y178{bottom:151.620000pt;}
.ycf{bottom:155.292000pt;}
.y134{bottom:156.933333pt;}
.y83{bottom:158.809333pt;}
.y162{bottom:165.702667pt;}
.y107{bottom:165.750667pt;}
.y177{bottom:167.560000pt;}
.yce{bottom:171.232000pt;}
.y82{bottom:174.749333pt;}
.y133{bottom:183.500000pt;}
.ycd{bottom:187.172000pt;}
.y81{bottom:190.689333pt;}
.y161{bottom:192.053333pt;}
.y106{bottom:192.150667pt;}
.y176{bottom:194.126667pt;}
.y132{bottom:199.440000pt;}
.ycc{bottom:203.112000pt;}
.y80{bottom:206.629333pt;}
.y160{bottom:207.993333pt;}
.y105{bottom:208.090667pt;}
.y175{bottom:210.066667pt;}
.ycb{bottom:219.052000pt;}
.y98{bottom:222.316000pt;}
.y7f{bottom:222.569333pt;}
.y15f{bottom:223.933333pt;}
.y131{bottom:226.008000pt;}
.y104{bottom:234.489333pt;}
.yca{bottom:234.993333pt;}
.y174{bottom:236.634667pt;}
.y97{bottom:238.256000pt;}
.y7e{bottom:238.510667pt;}
.y15e{bottom:239.873333pt;}
.y130{bottom:241.948000pt;}
.y103{bottom:250.430667pt;}
.y173{bottom:252.574667pt;}
.y96{bottom:254.196000pt;}
.y7d{bottom:254.450667pt;}
.y15d{bottom:255.814667pt;}
.y12f{bottom:268.514667pt;}
.y95{bottom:270.136000pt;}
.y7c{bottom:270.390667pt;}
.yc9{bottom:272.296000pt;}
.y102{bottom:276.829333pt;}
.y172{bottom:279.141333pt;}
.yc8{bottom:280.265333pt;}
.y15c{bottom:282.165333pt;}
.y12e{bottom:284.454667pt;}
.y94{bottom:286.077333pt;}
.y7b{bottom:286.330667pt;}
.yc7{bottom:288.236000pt;}
.y101{bottom:292.769333pt;}
.y171{bottom:295.081333pt;}
.y15b{bottom:298.105333pt;}
.y12d{bottom:300.394667pt;}
.y93{bottom:302.017333pt;}
.y7a{bottom:302.270667pt;}
.yc6{bottom:302.846667pt;}
.y100{bottom:308.710667pt;}
.yc5{bottom:310.816000pt;}
.y170{bottom:311.021333pt;}
.y92{bottom:317.957333pt;}
.y79{bottom:318.210667pt;}
.yc4{bottom:318.786667pt;}
.y15a{bottom:324.456000pt;}
.y12c{bottom:326.962667pt;}
.yc3{bottom:333.397333pt;}
.y91{bottom:333.897333pt;}
.y78{bottom:334.152000pt;}
.yff{bottom:335.109333pt;}
.y16f{bottom:337.589333pt;}
.y159{bottom:340.397333pt;}
.yc2{bottom:341.366667pt;}
.y12b{bottom:342.902667pt;}
.yc1{bottom:349.337333pt;}
.y90{bottom:349.837333pt;}
.y77{bottom:350.092000pt;}
.yfe{bottom:351.049333pt;}
.y16e{bottom:353.529333pt;}
.y158{bottom:356.337333pt;}
.yc0{bottom:363.946667pt;}
.y8f{bottom:365.778667pt;}
.y76{bottom:366.032000pt;}
.yfd{bottom:366.990667pt;}
.y12a{bottom:369.469333pt;}
.ybf{bottom:371.917333pt;}
.ybe{bottom:379.888000pt;}
.y16d{bottom:380.096000pt;}
.y8e{bottom:381.718667pt;}
.y75{bottom:381.972000pt;}
.y157{bottom:382.688000pt;}
.y129{bottom:385.409333pt;}
.yfc{bottom:393.389333pt;}
.ybd{bottom:394.497333pt;}
.y16c{bottom:396.036000pt;}
.y8d{bottom:397.658667pt;}
.y74{bottom:397.912000pt;}
.y156{bottom:398.628000pt;}
.ybc{bottom:402.468000pt;}
.yfb{bottom:409.329333pt;}
.ybb{bottom:410.437333pt;}
.y1e{bottom:410.705333pt;}
.y128{bottom:411.977333pt;}
.y8c{bottom:413.598667pt;}
.y73{bottom:413.852000pt;}
.y155{bottom:414.568000pt;}
.yba{bottom:425.048000pt;}
.yfa{bottom:425.269333pt;}
.y1d{bottom:426.645333pt;}
.y127{bottom:427.917333pt;}
.y8b{bottom:429.538667pt;}
.y72{bottom:429.793333pt;}
.yb9{bottom:433.018667pt;}
.y16b{bottom:438.544000pt;}
.y154{bottom:440.920000pt;}
.yb8{bottom:440.988000pt;}
.y1c{bottom:442.585333pt;}
.y126{bottom:443.857333pt;}
.y8a{bottom:445.478667pt;}
.y71{bottom:445.733333pt;}
.yf9{bottom:451.669333pt;}
.y16a{bottom:454.484000pt;}
.yb7{bottom:455.626667pt;}
.y153{bottom:456.860000pt;}
.y1b{bottom:458.525333pt;}
.y70{bottom:461.673333pt;}
.yb6{bottom:463.596000pt;}
.yf8{bottom:467.609333pt;}
.y125{bottom:470.424000pt;}
.y152{bottom:472.800000pt;}
.y1a{bottom:474.465333pt;}
.y89{bottom:477.360000pt;}
.y6f{bottom:477.613333pt;}
.yb5{bottom:477.865333pt;}
.y169{bottom:481.050667pt;}
.y124{bottom:486.364000pt;}
.y19{bottom:490.405333pt;}
.y88{bottom:493.300000pt;}
.y6e{bottom:493.553333pt;}
.yf7{bottom:494.009333pt;}
.y168{bottom:496.990667pt;}
.y151{bottom:499.150667pt;}
.y18c{bottom:502.305333pt;}
.y6d{bottom:509.493333pt;}
.yf6{bottom:509.949333pt;}
.y18{bottom:510.330667pt;}
.y123{bottom:512.932000pt;}
.y150{bottom:515.090667pt;}
.y6c{bottom:525.434667pt;}
.yf5{bottom:525.889333pt;}
.y17{bottom:526.272000pt;}
.y122{bottom:528.872000pt;}
.y4c{bottom:528.985333pt;}
.y14f{bottom:531.032000pt;}
.yb4{bottom:537.282667pt;}
.y167{bottom:539.498667pt;}
.y4b{bottom:539.612000pt;}
.y6b{bottom:541.374667pt;}
.y16{bottom:542.212000pt;}
.y18b{bottom:544.812000pt;}
.yb3{bottom:545.252000pt;}
.y14e{bottom:546.972000pt;}
.y4a{bottom:550.238667pt;}
.yf4{bottom:552.289333pt;}
.yb2{bottom:553.222667pt;}
.y121{bottom:555.438667pt;}
.y6a{bottom:557.314667pt;}
.y15{bottom:558.152000pt;}
.y18a{bottom:560.752000pt;}
.y49{bottom:560.865333pt;}
.yb1{bottom:561.192000pt;}
.yf3{bottom:568.229333pt;}
.yb0{bottom:569.162667pt;}
.y120{bottom:571.378667pt;}
.y48{bottom:571.493333pt;}
.y69{bottom:573.254667pt;}
.y14d{bottom:573.322667pt;}
.y14{bottom:578.077333pt;}
.y47{bottom:582.120000pt;}
.yaf{bottom:583.800000pt;}
.y189{bottom:587.318667pt;}
.y68{bottom:589.194667pt;}
.y14c{bottom:589.262667pt;}
.y46{bottom:592.746667pt;}
.y13{bottom:594.017333pt;}
.yf2{bottom:594.629333pt;}
.y11f{bottom:597.946667pt;}
.yae{bottom:598.806667pt;}
.y188{bottom:603.260000pt;}
.y45{bottom:603.373333pt;}
.y67{bottom:605.136000pt;}
.y12{bottom:609.957333pt;}
.yf1{bottom:610.569333pt;}
.y11e{bottom:613.886667pt;}
.y44{bottom:614.000000pt;}
.y14b{bottom:615.614667pt;}
.y187{bottom:619.200000pt;}
.y66{bottom:621.076000pt;}
.y43{bottom:624.626667pt;}
.y11{bottom:625.897333pt;}
.yf0{bottom:626.509333pt;}
.y14a{bottom:631.554667pt;}
.y42{bottom:635.253333pt;}
.y65{bottom:637.016000pt;}
.y11d{bottom:640.453333pt;}
.y186{bottom:645.766667pt;}
.y10{bottom:645.822667pt;}
.y41{bottom:645.880000pt;}
.yef{bottom:652.909333pt;}
.y64{bottom:652.956000pt;}
.y11c{bottom:656.393333pt;}
.y40{bottom:656.506667pt;}
.y149{bottom:657.905333pt;}
.yad{bottom:659.036000pt;}
.y185{bottom:661.706667pt;}
.yf{bottom:661.762667pt;}
.yac{bottom:667.005333pt;}
.y3f{bottom:667.134667pt;}
.yee{bottom:668.849333pt;}
.y63{bottom:668.896000pt;}
.y148{bottom:673.845333pt;}
.yab{bottom:674.976000pt;}
.ye{bottom:677.704000pt;}
.y3e{bottom:677.761333pt;}
.yaa{bottom:682.945333pt;}
.y11b{bottom:682.960000pt;}
.yed{bottom:684.789333pt;}
.y62{bottom:684.836000pt;}
.y184{bottom:688.274667pt;}
.y3d{bottom:688.388000pt;}
.y147{bottom:689.785333pt;}
.ya9{bottom:690.916000pt;}
.yd{bottom:693.644000pt;}
.y11a{bottom:698.901333pt;}
.y3c{bottom:699.014667pt;}
.y61{bottom:700.777333pt;}
.y183{bottom:704.214667pt;}
.ya8{bottom:705.553333pt;}
.yc{bottom:709.584000pt;}
.y3b{bottom:709.641333pt;}
.yec{bottom:713.880000pt;}
.y166{bottom:714.841333pt;}
.y146{bottom:716.137333pt;}
.y60{bottom:716.717333pt;}
.ya7{bottom:719.822667pt;}
.y3a{bottom:720.268000pt;}
.y119{bottom:725.468000pt;}
.yb{bottom:725.524000pt;}
.y182{bottom:730.781333pt;}
.y39{bottom:730.894667pt;}
.y145{bottom:732.077333pt;}
.y5f{bottom:732.657333pt;}
.y118{bottom:741.408000pt;}
.ya{bottom:741.464000pt;}
.y38{bottom:741.521333pt;}
.y181{bottom:746.721333pt;}
.y144{bottom:748.017333pt;}
.y5e{bottom:748.597333pt;}
.y37{bottom:752.148000pt;}
.y117{bottom:757.348000pt;}
.y9{bottom:757.405333pt;}
.yeb{bottom:757.732000pt;}
.ya6{bottom:757.877333pt;}
.y36{bottom:762.776000pt;}
.y5d{bottom:764.537333pt;}
.y165{bottom:773.288000pt;}
.y8{bottom:773.345333pt;}
.y35{bottom:773.402667pt;}
.yea{bottom:773.672000pt;}
.ya5{bottom:773.817333pt;}
.y143{bottom:774.368000pt;}
.y5c{bottom:780.477333pt;}
.y116{bottom:783.916000pt;}
.y34{bottom:784.029333pt;}
.y180{bottom:789.229333pt;}
.y7{bottom:789.285333pt;}
.ya4{bottom:789.757333pt;}
.y142{bottom:790.309333pt;}
.y33{bottom:794.656000pt;}
.y5b{bottom:796.418667pt;}
.y115{bottom:799.856000pt;}
.y6{bottom:805.225333pt;}
.y32{bottom:805.282667pt;}
.ya3{bottom:805.697333pt;}
.y141{bottom:806.249333pt;}
.y5a{bottom:812.358667pt;}
.y114{bottom:815.796000pt;}
.y31{bottom:815.909333pt;}
.ye9{bottom:818.928000pt;}
.y5{bottom:821.165333pt;}
.ya2{bottom:821.637333pt;}
.y30{bottom:826.536000pt;}
.ye8{bottom:826.897333pt;}
.y59{bottom:828.298667pt;}
.y17f{bottom:831.736000pt;}
.y140{bottom:832.600000pt;}
.ye7{bottom:834.868000pt;}
.y4{bottom:837.105333pt;}
.y2f{bottom:837.162667pt;}
.ya1{bottom:837.577333pt;}
.y113{bottom:842.362667pt;}
.y58{bottom:844.238667pt;}
.y2e{bottom:847.789333pt;}
.y13f{bottom:848.540000pt;}
.ye6{bottom:849.478667pt;}
.y3{bottom:853.046667pt;}
.ya0{bottom:853.518667pt;}
.ye5{bottom:857.448000pt;}
.y112{bottom:858.302667pt;}
.y2d{bottom:858.417333pt;}
.y57{bottom:860.178667pt;}
.ye4{bottom:865.418667pt;}
.y2c{bottom:869.044000pt;}
.y111{bottom:874.244000pt;}
.y13e{bottom:874.890667pt;}
.y56{bottom:876.118667pt;}
.y2b{bottom:879.670667pt;}
.y9f{bottom:879.990667pt;}
.ye3{bottom:880.028000pt;}
.y2{bottom:882.137333pt;}
.ye2{bottom:887.998667pt;}
.y9e{bottom:889.102667pt;}
.y2a{bottom:890.297333pt;}
.y13d{bottom:890.832000pt;}
.y55{bottom:892.060000pt;}
.ye1{bottom:895.969333pt;}
.y110{bottom:900.810667pt;}
.y29{bottom:900.924000pt;}
.y54{bottom:908.000000pt;}
.ye0{bottom:910.578667pt;}
.y28{bottom:911.550667pt;}
.y9d{bottom:915.670667pt;}
.y10f{bottom:916.750667pt;}
.y13c{bottom:917.182667pt;}
.ydf{bottom:918.549333pt;}
.y27{bottom:922.177333pt;}
.y53{bottom:923.940000pt;}
.y9c{bottom:924.781333pt;}
.yde{bottom:926.518667pt;}
.y17e{bottom:932.690667pt;}
.y26{bottom:932.804000pt;}
.y13b{bottom:933.122667pt;}
.y52{bottom:939.880000pt;}
.ydd{bottom:941.129333pt;}
.y10e{bottom:943.317333pt;}
.y25{bottom:943.430667pt;}
.y13a{bottom:949.062667pt;}
.ydc{bottom:949.100000pt;}
.y51{bottom:955.820000pt;}
.ydb{bottom:957.069333pt;}
.y10d{bottom:959.257333pt;}
.y24{bottom:960.725333pt;}
.yda{bottom:971.680000pt;}
.y50{bottom:971.761333pt;}
.y9b{bottom:972.673333pt;}
.y10c{bottom:975.198667pt;}
.y139{bottom:975.414667pt;}
.y23{bottom:977.592000pt;}
.y1{bottom:977.861333pt;}
.yd9{bottom:979.650667pt;}
.yd8{bottom:987.620000pt;}
.y4f{bottom:987.701333pt;}
.y9a{bottom:988.614667pt;}
.y17d{bottom:991.138667pt;}
.y138{bottom:991.354667pt;}
.y10b{bottom:1001.765333pt;}
.yd7{bottom:1002.258667pt;}
.y4e{bottom:1003.641333pt;}
.y99{bottom:1004.554667pt;}
.yd6{bottom:1010.228000pt;}
.y10a{bottom:1017.705333pt;}
.yd5{bottom:1024.497333pt;}
.y4d{bottom:1032.732000pt;}
.y22{bottom:1033.645333pt;}
.hc{height:19.951767pt;}
.h5{height:21.232435pt;}
.h6{height:26.072714pt;}
.h7{height:27.932394pt;}
.h9{height:38.043849pt;}
.hd{height:39.903534pt;}
.h4{height:49.786433pt;}
.h3{height:57.461313pt;}
.h2{height:64.270827pt;}
.ha{height:77.048021pt;}
.h8{height:85.733100pt;}
.hb{height:113.496021pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.794667pt;}
.x7{left:45.765333pt;}
.x4{left:52.580000pt;}
.x3{left:57.720000pt;}
.x6{left:146.444000pt;}
.x11{left:153.228000pt;}
.xe{left:155.528000pt;}
.xf{left:182.669333pt;}
.x12{left:203.182667pt;}
.xd{left:214.430667pt;}
.x10{left:251.578667pt;}
.x13{left:262.037333pt;}
.x8{left:277.678667pt;}
.x1{left:282.740000pt;}
.xb{left:290.741333pt;}
.x9{left:337.194667pt;}
.xa{left:365.937333pt;}
.x14{left:390.210667pt;}
.x5{left:393.530667pt;}
.xc{left:421.458667pt;}
}




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