
    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_26aa650668eb8333cd8edcb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_f8c891067a4f6ed65e411b7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_62db12ff009578578665f00a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_932111bc9b37a311099941c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_0a3f768c5ded96ecd671be3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_dbf99d055519d5abca3a89a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250458,0.000000,0.000000,0.250000,0,0);}
.m2{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:-56.873391px;}
.v5{vertical-align:-54.804372px;}
.v6{vertical-align:-52.227548px;}
.v1{vertical-align:-31.920000px;}
.v3{vertical-align:-3.345494px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:37.075940px;}
.ls12{letter-spacing:-1.172891px;}
.ls1c{letter-spacing:-1.169768px;}
.ls21{letter-spacing:-1.114767px;}
.ls1a{letter-spacing:-1.067223px;}
.ls10{letter-spacing:-1.058750px;}
.ls1d{letter-spacing:-1.036839px;}
.ls1f{letter-spacing:-1.017044px;}
.ls23{letter-spacing:-0.998978px;}
.ls11{letter-spacing:-0.995776px;}
.ls25{letter-spacing:-0.970537px;}
.ls1b{letter-spacing:-0.960881px;}
.ls20{letter-spacing:-0.915701px;}
.ls24{letter-spacing:-0.899435px;}
.ls9{letter-spacing:-0.876000px;}
.ls1e{letter-spacing:-0.767185px;}
.ls22{letter-spacing:-0.731113px;}
.ls26{letter-spacing:-0.718126px;}
.ls13{letter-spacing:-0.696650px;}
.ls14{letter-spacing:-0.685957px;}
.lsf{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.115200px;}
.ls2e{letter-spacing:0.119400px;}
.ls19{letter-spacing:0.132480px;}
.ls16{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.331200px;}
.ls17{letter-spacing:14.731200px;}
.ls2{letter-spacing:57.600000px;}
.ls3{letter-spacing:65.916000px;}
.ls5{letter-spacing:70.149600px;}
.ls4{letter-spacing:70.200000px;}
.ls2a{letter-spacing:106.864128px;}
.ls29{letter-spacing:106.930080px;}
.lsd{letter-spacing:119.865600px;}
.lse{letter-spacing:119.916000px;}
.ls28{letter-spacing:120.036000px;}
.lsa{letter-spacing:120.060000px;}
.lsc{letter-spacing:132.465600px;}
.lsb{letter-spacing:132.516000px;}
.ls8{letter-spacing:139.099968px;}
.ls6{letter-spacing:139.165920px;}
.ls7{letter-spacing:176.605920px;}
.ls2c{letter-spacing:424.490640px;}
.ls2d{letter-spacing:425.394960px;}
.ls2b{letter-spacing:431.701440px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(71,120,55),0 0.015em rgb(71,120,55),0.015em 0 rgb(71,120,55),0 -0.015em  rgb(71,120,55);}
.sc3{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(71,120,55);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-54.218304px;}
.ws3{word-spacing:-54.185760px;}
.ws2{word-spacing:-37.913760px;}
.ws1{word-spacing:-37.070304px;}
.ws3d{word-spacing:-27.326184px;}
.ws5{word-spacing:-27.206784px;}
.ws4{word-spacing:-27.174240px;}
.ws8{word-spacing:-19.070784px;}
.ws7{word-spacing:-19.038240px;}
.ws6{word-spacing:-16.272000px;}
.ws38{word-spacing:-15.226440px;}
.ws12{word-spacing:-12.719960px;}
.wsc{word-spacing:-12.697722px;}
.ws17{word-spacing:-12.274204px;}
.ws18{word-spacing:-12.252746px;}
.ws20{word-spacing:-11.697089px;}
.ws21{word-spacing:-11.676639px;}
.ws29{word-spacing:-11.489310px;}
.ws2a{word-spacing:-11.469224px;}
.wse{word-spacing:-10.696330px;}
.ws1a{word-spacing:-10.342948px;}
.ws1c{word-spacing:-10.321490px;}
.ws23{word-spacing:-9.856638px;}
.ws25{word-spacing:-9.836188px;}
.wsf{word-spacing:-9.700554px;}
.ws2c{word-spacing:-9.681551px;}
.ws2e{word-spacing:-9.661465px;}
.wsd{word-spacing:-9.637580px;}
.ws1b{word-spacing:-9.360610px;}
.ws19{word-spacing:-9.275725px;}
.ws24{word-spacing:-8.920487px;}
.ws22{word-spacing:-8.839594px;}
.ws2d{word-spacing:-8.762030px;}
.ws2b{word-spacing:-8.682574px;}
.ws10{word-spacing:-8.672700px;}
.ws1d{word-spacing:-8.390234px;}
.ws14{word-spacing:-8.122034px;}
.ws13{word-spacing:-8.088332px;}
.ws26{word-spacing:-7.995737px;}
.ws2f{word-spacing:-7.853707px;}
.ws15{word-spacing:-7.436076px;}
.wsa{word-spacing:-3.131760px;}
.ws36{word-spacing:-1.085760px;}
.ws37{word-spacing:-0.959040px;}
.ws34{word-spacing:-0.768960px;}
.ws35{word-spacing:-0.313920px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:0.480960px;}
.ws32{word-spacing:4.386240px;}
.ws33{word-spacing:5.250240px;}
.ws31{word-spacing:5.520960px;}
.ws30{word-spacing:46.749312px;}
.ws27{word-spacing:47.594751px;}
.ws1e{word-spacing:49.943000px;}
.ws11{word-spacing:51.559960px;}
.ws28{word-spacing:307.341620px;}
.ws1f{word-spacing:312.899745px;}
.ws16{word-spacing:328.337720px;}
.wsb{word-spacing:340.000936px;}
.ws3c{word-spacing:840.990720px;}
.ws3b{word-spacing:851.070720px;}
.ws3a{word-spacing:860.575440px;}
._2{margin-left:-23.040000px;}
._d{margin-left:-19.380384px;}
._18{margin-left:-18.221760px;}
._17{margin-left:-16.412256px;}
._a{margin-left:-15.048576px;}
._14{margin-left:-13.468608px;}
._11{margin-left:-11.574096px;}
._7{margin-left:-9.875520px;}
._c{margin-left:-8.747568px;}
._5{margin-left:-7.449408px;}
._3{margin-left:-5.707680px;}
._6{margin-left:-3.982608px;}
._1{margin-left:-2.592000px;}
._4{margin-left:-1.158912px;}
._0{width:1.152000px;}
._b{width:2.160000px;}
._10{width:3.861456px;}
._13{width:17.413824px;}
._16{width:19.043904px;}
._e{width:20.477808px;}
._f{width:21.933168px;}
._8{width:24.818208px;}
._15{width:245.240976px;}
._9{width:620.034912px;}
._12{width:954.386646px;}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(71,120,55);}
.fc2{color:transparent;}
.fc1{color:rgb(160,205,146);}
.fc6{color:rgb(0,169,143);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2c{font-size:34.750914px;}
.fs26{font-size:35.379368px;}
.fs17{font-size:35.789081px;}
.fs18{font-size:35.938203px;}
.fs1f{font-size:37.124930px;}
.fs15{font-size:38.374779px;}
.fs2a{font-size:42.749846px;}
.fs29{font-size:42.838723px;}
.fs24{font-size:43.522956px;}
.fs23{font-size:43.613441px;}
.fs1d{font-size:45.670310px;}
.fs1c{font-size:45.765259px;}
.fs19{font-size:46.525806px;}
.fs13{font-size:47.328894px;}
.fs27{font-size:50.748778px;}
.fs28{font-size:50.837655px;}
.fs21{font-size:51.666545px;}
.fs22{font-size:51.757029px;}
.fs1a{font-size:54.215690px;}
.fs1b{font-size:54.310639px;}
.fs31{font-size:54.466217px;}
.fs32{font-size:54.541760px;}
.fs37{font-size:55.036478px;}
.fs3a{font-size:55.194574px;}
.fs39{font-size:55.271127px;}
.fs36{font-size:55.448979px;}
.fs33{font-size:55.589521px;}
.fs38{font-size:56.005408px;}
.fs3f{font-size:56.167187px;}
.fs12{font-size:56.184612px;}
.fs3e{font-size:56.245089px;}
.fs11{font-size:56.283009px;}
.fs40{font-size:56.446025px;}
.fs3b{font-size:56.555168px;}
.fs2e{font-size:56.894831px;}
.fs35{font-size:57.035426px;}
.fs34{font-size:57.114532px;}
.fs42{font-size:57.216027px;}
.fs41{font-size:57.679667px;}
.fs2f{font-size:58.572356px;}
.fs30{font-size:58.653594px;}
.fs3c{font-size:58.963274px;}
.fs3d{font-size:59.045054px;}
.fs2b{font-size:64.080331px;}
.fs25{font-size:65.329677px;}
.fs2d{font-size:66.240000px;}
.fs20{font-size:68.457990px;}
.fs1e{font-size:68.552939px;}
.fs14{font-size:70.944143px;}
.fsc{font-size:72.000000px;}
.fs16{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fsf{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fsb{font-size:239.760000px;}
.fs10{font-size:239.904000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.fs8{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:10.055735px;}
.y66{bottom:11.301477px;}
.y12b{bottom:11.681566px;}
.ydd{bottom:14.040000px;}
.ya2{bottom:14.540997px;}
.y93{bottom:14.803964px;}
.ybb{bottom:15.156000px;}
.y83{bottom:15.534386px;}
.yf2{bottom:16.719350px;}
.y49{bottom:18.396000px;}
.yd1{bottom:19.080036px;}
.y2e{bottom:22.428000px;}
.ya4{bottom:23.117626px;}
.y72{bottom:23.832000px;}
.y87{bottom:24.696918px;}
.y103{bottom:27.042607px;}
.y22{bottom:28.188000px;}
.y142{bottom:29.376000px;}
.y11b{bottom:34.308000px;}
.y5d{bottom:36.786267px;}
.y9b{bottom:36.972618px;}
.yba{bottom:37.836000px;}
.y48{bottom:39.456000px;}
.ya3{bottom:40.381987px;}
.y13e{bottom:40.536000px;}
.yff{bottom:41.438270px;}
.y86{bottom:43.140696px;}
.y111{bottom:45.269553px;}
.y71{bottom:45.432000px;}
.y4{bottom:45.684000px;}
.ycd{bottom:46.146713px;}
.y61{bottom:46.256955px;}
.y2d{bottom:47.628000px;}
.y12a{bottom:47.901580px;}
.y12e{bottom:48.202363px;}
.yd0{bottom:48.934409px;}
.yf1{bottom:49.529110px;}
.y10d{bottom:49.914767px;}
.ydc{bottom:50.040000px;}
.y126{bottom:51.555122px;}
.y102{bottom:51.650259px;}
.y109{bottom:51.680992px;}
.yee{bottom:52.383131px;}
.y104{bottom:53.212247px;}
.yfe{bottom:59.891902px;}
.y47{bottom:60.336000px;}
.y110{bottom:64.628146px;}
.ycc{bottom:65.197025px;}
.y60{bottom:65.395145px;}
.y65{bottom:66.944916px;}
.y70{bottom:67.032000px;}
.ycf{bottom:67.680000px;}
.y129{bottom:67.761465px;}
.yf0{bottom:67.802596px;}
.y12d{bottom:67.895137px;}
.ya1{bottom:68.556009px;}
.y101{bottom:69.568887px;}
.y92{bottom:69.795811px;}
.y10c{bottom:70.237060px;}
.y105{bottom:70.264385px;}
.y11a{bottom:70.344000px;}
.y125{bottom:70.461801px;}
.y108{bottom:70.643838px;}
.yed{bottom:70.996381px;}
.y6a{bottom:71.077558px;}
.yb9{bottom:71.676000px;}
.y13d{bottom:72.936000px;}
.y82{bottom:73.239451px;}
.y9e{bottom:76.088330px;}
.y8f{bottom:77.464351px;}
.yb7{bottom:78.228000px;}
.y7f{bottom:81.286329px;}
.y10f{bottom:83.327691px;}
.ydb{bottom:86.076000px;}
.y12c{bottom:86.914315px;}
.y128{bottom:86.941354px;}
.y69{bottom:87.632831px;}
.y6f{bottom:88.668000px;}
.y124{bottom:89.370828px;}
.y107{bottom:89.605899px;}
.y10b{bottom:89.840509px;}
.y5c{bottom:96.562375px;}
.y11f{bottom:99.975000px;}
.ye0{bottom:101.772000px;}
.y59{bottom:104.897556px;}
.y13c{bottom:105.372000px;}
.y9c{bottom:106.400680px;}
.y73{bottom:111.549536px;}
.y8d{bottom:112.877534px;}
.y46{bottom:113.076000px;}
.y11{bottom:121.284000px;}
.yda{bottom:122.076000px;}
.y11c{bottom:124.380000px;}
.yb6{bottom:125.784000px;}
.yc4{bottom:126.972000px;}
.yea{bottom:142.812000px;}
.y9d{bottom:144.990246px;}
.y45{bottom:145.476000px;}
.yf6{bottom:145.836000px;}
.y8e{bottom:147.612324px;}
.yc3{bottom:152.175000px;}
.y13b{bottom:152.715000px;}
.y9f{bottom:153.051382px;}
.y7e{bottom:154.895311px;}
.y56{bottom:155.595000px;}
.y90{bottom:155.819243px;}
.yd9{bottom:158.070000px;}
.yfb{bottom:160.560000px;}
.y80{bottom:163.507119px;}
.yf5{bottom:171.030000px;}
.y119{bottom:172.185000px;}
.yb5{bottom:173.130000px;}
.y94{bottom:174.323291px;}
.yaa{bottom:174.515188px;}
.yc2{bottom:177.375000px;}
.y44{bottom:177.915000px;}
.ye9{bottom:178.815000px;}
.y58{bottom:181.155151px;}
.y84{bottom:182.924144px;}
.y13a{bottom:185.115000px;}
.y55{bottom:187.995000px;}
.y2f{bottom:189.105000px;}
.y5a{bottom:190.089557px;}
.yd8{bottom:194.070000px;}
.y95{bottom:194.980861px;}
.yfa{bottom:196.590000px;}
.y79{bottom:202.332111px;}
.y118{bottom:204.585000px;}
.y85{bottom:204.600926px;}
.ya7{bottom:206.359827px;}
.y98{bottom:210.091745px;}
.y5e{bottom:210.182216px;}
.yd3{bottom:210.655467px;}
.y78{bottom:213.560935px;}
.yf3{bottom:216.001120px;}
.y139{bottom:217.515000px;}
.y54{bottom:220.425000px;}
.y8a{bottom:220.457366px;}
.y77{bottom:224.745023px;}
.y43{bottom:225.255000px;}
.ya6{bottom:228.063594px;}
.yd2{bottom:228.090700px;}
.yb4{bottom:228.750000px;}
.y30{bottom:230.835000px;}
.y97{bottom:232.188014px;}
.y5f{bottom:232.616703px;}
.yf4{bottom:232.651195px;}
.yeb{bottom:236.415000px;}
.yd7{bottom:238.575000px;}
.y10{bottom:242.100000px;}
.y89{bottom:243.643827px;}
.yfc{bottom:243.870000px;}
.ya9{bottom:244.194773px;}
.ya0{bottom:244.505836px;}
.y7b{bottom:245.472866px;}
.y9a{bottom:248.610918px;}
.y91{bottom:248.927606px;}
.y64{bottom:249.078510px;}
.y1b{bottom:250.920000px;}
.y117{bottom:252.150000px;}
.y42{bottom:257.655000px;}
.yce{bottom:260.299548px;}
.ya8{bottom:260.414829px;}
.y8c{bottom:260.877011px;}
.y81{bottom:261.209305px;}
.y10a{bottom:264.169063px;}
.y138{bottom:264.885000px;}
.y99{bottom:265.124306px;}
.y53{bottom:267.765000px;}
.yef{bottom:270.311580px;}
.y63{bottom:273.087343px;}
.y127{bottom:274.188139px;}
.yd6{bottom:274.605000px;}
.ya{bottom:275.580000px;}
.ya5{bottom:276.279377px;}
.y8b{bottom:278.205143px;}
.y96{bottom:281.275756px;}
.y100{bottom:282.574202px;}
.y1a{bottom:283.320000px;}
.yb3{bottom:284.070000px;}
.y116{bottom:284.550000px;}
.y41{bottom:290.055000px;}
.y6c{bottom:290.946375px;}
.y5b{bottom:291.290742px;}
.y88{bottom:295.153481px;}
.ye8{bottom:295.740000px;}
.y137{bottom:297.285000px;}
.y52{bottom:300.165000px;}
.y6e{bottom:301.445310px;}
.y6b{bottom:308.874284px;}
.y6{bottom:309.930000px;}
.y9{bottom:312.300000px;}
.y19{bottom:315.720000px;}
.y115{bottom:316.950000px;}
.y36{bottom:321.405000px;}
.yca{bottom:321.510000px;}
.y40{bottom:322.455000px;}
.y6d{bottom:326.438115px;}
.y62{bottom:326.438125px;}
.y21{bottom:327.885000px;}
.ye7{bottom:328.170000px;}
.y136{bottom:329.685000px;}
.yb2{bottom:331.410000px;}
.y51{bottom:332.565000px;}
.y32{bottom:342.795000px;}
.y35{bottom:343.005000px;}
.yf9{bottom:343.110000px;}
.y2a{bottom:347.685000px;}
.y67{bottom:347.868941px;}
.y5{bottom:348.840000px;}
.y8{bottom:349.740000px;}
.y20{bottom:353.130000px;}
.yc9{bottom:353.910000px;}
.y141{bottom:354.525000px;}
.y135{bottom:362.085000px;}
.yf{bottom:362.700000px;}
.y18{bottom:363.060000px;}
.y114{bottom:364.290000px;}
.y31{bottom:364.395000px;}
.y50{bottom:364.965000px;}
.y3f{bottom:370.005000px;}
.yb1{bottom:371.415000px;}
.y1c{bottom:374.325000px;}
.ye6{bottom:375.510000px;}
.y1f{bottom:378.330000px;}
.y68{bottom:379.670804px;}
.y29{bottom:380.085000px;}
.y7{bottom:391.140000px;}
.y1d{bottom:392.970000px;}
.y17{bottom:395.460000px;}
.y113{bottom:396.720000px;}
.y57{bottom:399.602714px;}
.yc8{bottom:401.475000px;}
.y3e{bottom:402.405000px;}
.ye5{bottom:407.910000px;}
.yc1{bottom:408.780000px;}
.y134{bottom:409.650000px;}
.y1e{bottom:411.510000px;}
.y28{bottom:412.530000px;}
.y140{bottom:414.510000px;}
.yb0{bottom:415.875000px;}
.yf8{bottom:423.030000px;}
.y34{bottom:424.230000px;}
.y112{bottom:429.120000px;}
.yc7{bottom:433.875000px;}
.yc0{bottom:433.980000px;}
.y3d{bottom:434.805000px;}
.y3{bottom:435.990000px;}
.y133{bottom:442.050000px;}
.y16{bottom:443.010000px;}
.y4f{bottom:444.930000px;}
.y33{bottom:445.830000px;}
.yb8{bottom:451.230000px;}
.y76{bottom:454.167947px;}
.ye4{bottom:455.430000px;}
.y27{bottom:460.050000px;}
.y23{bottom:460.335000px;}
.yaf{bottom:463.395000px;}
.y75{bottom:465.352035px;}
.y3c{bottom:467.205000px;}
.yb{bottom:469.905000px;}
.y132{bottom:474.450000px;}
.y15{bottom:475.410000px;}
.y74{bottom:476.565947px;}
.y7d{bottom:476.685762px;}
.y4e{bottom:477.330000px;}
.y11e{bottom:477.540000px;}
.y122{bottom:480.705000px;}
.yc6{bottom:481.215000px;}
.ye{bottom:483.510000px;}
.ye3{bottom:487.875000px;}
.y26{bottom:492.450000px;}
.y2b{bottom:493.020000px;}
.yae{bottom:495.825000px;}
.y7a{bottom:498.829739px;}
.yf7{bottom:502.815000px;}
.y131{bottom:506.850000px;}
.y121{bottom:511.890000px;}
.yc5{bottom:513.615000px;}
.y2{bottom:513.795000px;}
.y3b{bottom:514.590000px;}
.y14{bottom:522.750000px;}
.y4d{bottom:524.670000px;}
.yd{bottom:528.870000px;}
.ycb{bottom:530.798515px;}
.yec{bottom:532.892125px;}
.y123{bottom:532.928612px;}
.y106{bottom:533.094062px;}
.ye2{bottom:535.215000px;}
.yfd{bottom:538.478007px;}
.y25{bottom:539.790000px;}
.y120{bottom:543.060000px;}
.yad{bottom:543.165000px;}
.y3a{bottom:546.990000px;}
.y130{bottom:554.190000px;}
.y13{bottom:555.150000px;}
.yd5{bottom:555.195000px;}
.y4c{bottom:557.100000px;}
.ye1{bottom:567.615000px;}
.y24{bottom:572.220000px;}
.yac{bottom:575.565000px;}
.y11d{bottom:577.515000px;}
.y39{bottom:579.390000px;}
.y12f{bottom:586.620000px;}
.yd4{bottom:591.195000px;}
.y1{bottom:591.555000px;}
.y38{bottom:611.790000px;}
.yab{bottom:622.770000px;}
.y4b{bottom:624.210000px;}
.ydf{bottom:626.010000px;}
.ybd{bottom:636.840000px;}
.y12{bottom:649.290000px;}
.yc{bottom:649.695000px;}
.ybf{bottom:658.290000px;}
.y37{bottom:680.760000px;}
.yde{bottom:680.865000px;}
.y7c{bottom:681.015000px;}
.ybe{bottom:683.490000px;}
.ybc{bottom:684.150000px;}
.y4a{bottom:689.010000px;}
.y2c{bottom:690.840000px;}
.y13f{bottom:774.570000px;}
.h3c{height:34.564264px;}
.h34{height:35.189342px;}
.h23{height:35.596855px;}
.h24{height:35.745175px;}
.h2b{height:36.925528px;}
.h1b{height:38.168665px;}
.h3a{height:42.520233px;}
.h39{height:42.608632px;}
.h32{height:43.289191px;}
.h31{height:43.379189px;}
.h29{height:45.425010px;}
.h28{height:45.519449px;}
.h25{height:46.275911px;}
.h19{height:47.074686px;}
.h3e{height:47.613884px;}
.h36{height:48.474958px;}
.h38{height:50.476201px;}
.h3d{height:50.564601px;}
.h2e{height:50.866635px;}
.h30{height:51.389039px;}
.h35{height:51.479037px;}
.h1c{height:52.537346px;}
.h1f{height:53.496091px;}
.h27{height:53.924493px;}
.h2d{height:54.018931px;}
.h46{height:54.173674px;}
.h47{height:54.248811px;}
.h50{height:54.740872px;}
.h55{height:54.898119px;}
.h54{height:54.974261px;}
.h4e{height:55.151157px;}
.h49{height:55.290944px;}
.h52{height:55.704598px;}
.h5d{height:55.865508px;}
.h18{height:55.882840px;}
.h5c{height:55.942991px;}
.h17{height:55.980708px;}
.h61{height:56.142849px;}
.h57{height:56.251405px;}
.h41{height:56.589243px;}
.h4c{height:56.729084px;}
.h4b{height:56.807765px;}
.h65{height:56.908715px;}
.h63{height:57.369864px;}
.h1e{height:57.528873px;}
.h1d{height:57.629624px;}
.h43{height:58.257758px;}
.h44{height:58.338560px;}
.h59{height:58.646577px;}
.h5a{height:58.727917px;}
.h3f{height:63.070312px;}
.h3b{height:63.736149px;}
.h33{height:64.978785px;}
.h2c{height:68.090296px;}
.h2a{height:68.184735px;}
.h10{height:68.554688px;}
.h21{height:68.691797px;}
.h1a{height:70.563095px;}
.h14{height:71.613281px;}
.h11{height:80.208984px;}
.h12{height:80.346094px;}
.h13{height:91.177734px;}
.h20{height:92.958780px;}
.h5e{height:98.051133px;}
.h9{height:107.419922px;}
.ha{height:107.563148px;}
.h5{height:109.335938px;}
.h4{height:109.445273px;}
.hf{height:114.486328px;}
.h6{height:114.623437px;}
.h8{height:119.594180px;}
.h3{height:137.109375px;}
.h7{height:143.226562px;}
.hc{height:159.732422px;}
.hd{height:159.869531px;}
.h5f{height:218.520000px;}
.he{height:228.287109px;}
.h15{height:228.424219px;}
.h45{height:247.024313px;}
.h4f{height:250.755660px;}
.h4d{height:252.058291px;}
.h48{height:253.502115px;}
.h53{height:253.772557px;}
.h5b{height:255.323100px;}
.h51{height:255.398625px;}
.h40{height:257.681615px;}
.h56{height:258.851709px;}
.h60{height:258.939291px;}
.h22{height:259.071964px;}
.h4a{height:261.049822px;}
.h62{height:261.598508px;}
.h64{height:261.611384px;}
.h42{height:269.912160px;}
.h58{height:271.100232px;}
.h1{height:274.218750px;}
.h2{height:274.355859px;}
.h37{height:291.961018px;}
.h2f{height:297.240991px;}
.h26{height:311.906419px;}
.hb{height:342.910547px;}
.h16{height:397.031409px;}
.h0{height:810.000000px;}
.w13{width:178.560000px;}
.w6{width:295.288126px;}
.w5{width:300.589688px;}
.w4{width:315.438142px;}
.w2{width:403.739342px;}
.w3{width:465.860926px;}
.we{width:498.088000px;}
.w15{width:501.029499px;}
.wf{width:502.623657px;}
.wc{width:504.281778px;}
.wa{width:505.924714px;}
.wb{width:505.940819px;}
.w9{width:506.189604px;}
.w14{width:506.856633px;}
.wd{width:507.019508px;}
.w12{width:508.421275px;}
.w10{width:511.884253px;}
.w16{width:512.740699px;}
.w11{width:514.634464px;}
.w7{width:515.852603px;}
.w8{width:527.887935px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x28{left:7.665490px;}
.x59{left:10.210943px;}
.x33{left:11.282154px;}
.x4f{left:35.748802px;}
.x44{left:37.514710px;}
.x2c{left:38.862423px;}
.x52{left:40.023508px;}
.x4a{left:41.098636px;}
.x32{left:42.577466px;}
.x39{left:44.152078px;}
.x5a{left:56.123979px;}
.x34{left:58.594232px;}
.x25{left:61.487979px;}
.x69{left:64.943979px;}
.x5d{left:66.851979px;}
.x22{left:69.227979px;}
.x3c{left:71.222239px;}
.x5e{left:72.899979px;}
.x72{left:79.595979px;}
.x70{left:84.015984px;}
.xf{left:86.075979px;}
.x78{left:87.765181px;}
.x67{left:92.496503px;}
.x6f{left:95.044461px;}
.x10{left:97.127979px;}
.x65{left:100.438351px;}
.x26{left:101.987979px;}
.x63{left:103.142217px;}
.x79{left:104.145536px;}
.x51{left:106.225608px;}
.x76{left:107.711979px;}
.x23{left:110.087979px;}
.x47{left:111.472914px;}
.x68{left:113.399979px;}
.x2f{left:115.501505px;}
.x46{left:117.501608px;}
.x73{left:120.095979px;}
.x2e{left:121.750734px;}
.x56{left:123.238084px;}
.x50{left:125.450727px;}
.x7{left:126.863979px;}
.x45{left:131.647708px;}
.x2d{left:136.414304px;}
.x11{left:137.663979px;}
.x3a{left:145.615859px;}
.x35{left:150.093714px;}
.x61{left:151.229979px;}
.x74{left:160.200000px;}
.xc{left:177.299979px;}
.x8{left:180.899979px;}
.x3e{left:190.071868px;}
.x3f{left:191.115141px;}
.x53{left:196.364667px;}
.x4c{left:199.890176px;}
.x1{left:200.909979px;}
.x41{left:209.764301px;}
.x29{left:217.358969px;}
.x2{left:223.229979px;}
.x58{left:225.755723px;}
.x57{left:230.155049px;}
.x55{left:232.625782px;}
.x9{left:234.899979px;}
.x4e{left:236.802261px;}
.x49{left:241.160965px;}
.x48{left:245.860488px;}
.x43{left:248.499763px;}
.x31{left:249.884471px;}
.x30{left:254.755910px;}
.x2b{left:257.481903px;}
.x36{left:269.616212px;}
.x54{left:271.570931px;}
.x4d{left:276.446641px;}
.xa{left:288.899979px;}
.x42{left:290.102485px;}
.x2a{left:300.596652px;}
.x37{left:318.212537px;}
.x38{left:320.712286px;}
.xb{left:342.899979px;}
.x3{left:348.554979px;}
.x75{left:362.309979px;}
.x6b{left:382.847602px;}
.x3d{left:398.412756px;}
.x5{left:442.289979px;}
.x6{left:611.129979px;}
.x64{left:749.113958px;}
.x71{left:752.058036px;}
.x77{left:753.412824px;}
.x62{left:755.149335px;}
.x66{left:756.831608px;}
.x6e{left:758.020061px;}
.x6a{left:759.335494px;}
.x4b{left:760.654073px;}
.x6c{left:761.831826px;}
.x24{left:769.754979px;}
.x5c{left:771.194979px;}
.xd{left:776.594979px;}
.x1a{left:798.839979px;}
.x18{left:827.129979px;}
.xe{left:830.594979px;}
.x1b{left:831.779979px;}
.x3b{left:840.939962px;}
.x1c{left:845.354979px;}
.x1d{left:849.494979px;}
.x17{left:878.009979px;}
.x12{left:881.744979px;}
.x16{left:883.469979px;}
.x27{left:884.614734px;}
.x7b{left:894.989979px;}
.x14{left:900.569979px;}
.x40{left:911.301321px;}
.x15{left:945.104979px;}
.x5b{left:984.959979px;}
.x7a{left:1009.874979px;}
.x4{left:1085.429979px;}
.x1e{left:1096.169979px;}
.x1f{left:1111.469979px;}
.x7c{left:1116.869979px;}
.x13{left:1137.209979px;}
.x20{left:1207.619979px;}
.x21{left:1223.459979px;}
.x6d{left:1271.879979px;}
.x5f{left:1274.249979px;}
.x60{left:1283.009979px;}
.x19{left:1379.984979px;}
@media print{
.v2{vertical-align:-50.554125pt;}
.v5{vertical-align:-48.714997pt;}
.v6{vertical-align:-46.424487pt;}
.v1{vertical-align:-28.373333pt;}
.v3{vertical-align:-2.973772pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:32.956391pt;}
.ls12{letter-spacing:-1.042569pt;}
.ls1c{letter-spacing:-1.039793pt;}
.ls21{letter-spacing:-0.990904pt;}
.ls1a{letter-spacing:-0.948643pt;}
.ls10{letter-spacing:-0.941111pt;}
.ls1d{letter-spacing:-0.921635pt;}
.ls1f{letter-spacing:-0.904039pt;}
.ls23{letter-spacing:-0.887980pt;}
.ls11{letter-spacing:-0.885135pt;}
.ls25{letter-spacing:-0.862700pt;}
.ls1b{letter-spacing:-0.854116pt;}
.ls20{letter-spacing:-0.813957pt;}
.ls24{letter-spacing:-0.799498pt;}
.ls9{letter-spacing:-0.778667pt;}
.ls1e{letter-spacing:-0.681942pt;}
.ls22{letter-spacing:-0.649878pt;}
.ls26{letter-spacing:-0.638335pt;}
.ls13{letter-spacing:-0.619244pt;}
.ls14{letter-spacing:-0.609740pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.102400pt;}
.ls2e{letter-spacing:0.106133pt;}
.ls19{letter-spacing:0.117760pt;}
.ls16{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.294400pt;}
.ls17{letter-spacing:13.094400pt;}
.ls2{letter-spacing:51.200000pt;}
.ls3{letter-spacing:58.592000pt;}
.ls5{letter-spacing:62.355200pt;}
.ls4{letter-spacing:62.400000pt;}
.ls2a{letter-spacing:94.990336pt;}
.ls29{letter-spacing:95.048960pt;}
.lsd{letter-spacing:106.547200pt;}
.lse{letter-spacing:106.592000pt;}
.ls28{letter-spacing:106.698667pt;}
.lsa{letter-spacing:106.720000pt;}
.lsc{letter-spacing:117.747200pt;}
.lsb{letter-spacing:117.792000pt;}
.ls8{letter-spacing:123.644416pt;}
.ls6{letter-spacing:123.703040pt;}
.ls7{letter-spacing:156.983040pt;}
.ls2c{letter-spacing:377.325013pt;}
.ls2d{letter-spacing:378.128853pt;}
.ls2b{letter-spacing:383.734613pt;}
.ws9{word-spacing:-48.194048pt;}
.ws3{word-spacing:-48.165120pt;}
.ws2{word-spacing:-33.701120pt;}
.ws1{word-spacing:-32.951381pt;}
.ws3d{word-spacing:-24.289941pt;}
.ws5{word-spacing:-24.183808pt;}
.ws4{word-spacing:-24.154880pt;}
.ws8{word-spacing:-16.951808pt;}
.ws7{word-spacing:-16.922880pt;}
.ws6{word-spacing:-14.464000pt;}
.ws38{word-spacing:-13.534613pt;}
.ws12{word-spacing:-11.306631pt;}
.wsc{word-spacing:-11.286864pt;}
.ws17{word-spacing:-10.910404pt;}
.ws18{word-spacing:-10.891330pt;}
.ws20{word-spacing:-10.397412pt;}
.ws21{word-spacing:-10.379235pt;}
.ws29{word-spacing:-10.212720pt;}
.ws2a{word-spacing:-10.194866pt;}
.wse{word-spacing:-9.507849pt;}
.ws1a{word-spacing:-9.193732pt;}
.ws1c{word-spacing:-9.174658pt;}
.ws23{word-spacing:-8.761456pt;}
.ws25{word-spacing:-8.743278pt;}
.wsf{word-spacing:-8.622714pt;}
.ws2c{word-spacing:-8.605823pt;}
.ws2e{word-spacing:-8.587969pt;}
.wsd{word-spacing:-8.566738pt;}
.ws1b{word-spacing:-8.320542pt;}
.ws19{word-spacing:-8.245089pt;}
.ws24{word-spacing:-7.929322pt;}
.ws22{word-spacing:-7.857417pt;}
.ws2d{word-spacing:-7.788471pt;}
.ws2b{word-spacing:-7.717843pt;}
.ws10{word-spacing:-7.709067pt;}
.ws1d{word-spacing:-7.457986pt;}
.ws14{word-spacing:-7.219586pt;}
.ws13{word-spacing:-7.189629pt;}
.ws26{word-spacing:-7.107322pt;}
.ws2f{word-spacing:-6.981073pt;}
.ws15{word-spacing:-6.609846pt;}
.wsa{word-spacing:-2.783787pt;}
.ws36{word-spacing:-0.965120pt;}
.ws37{word-spacing:-0.852480pt;}
.ws34{word-spacing:-0.683520pt;}
.ws35{word-spacing:-0.279040pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:0.427520pt;}
.ws32{word-spacing:3.898880pt;}
.ws33{word-spacing:4.666880pt;}
.ws31{word-spacing:4.907520pt;}
.ws30{word-spacing:41.554944pt;}
.ws27{word-spacing:42.306445pt;}
.ws1e{word-spacing:44.393778pt;}
.ws11{word-spacing:45.831075pt;}
.ws28{word-spacing:273.192551pt;}
.ws1f{word-spacing:278.133107pt;}
.ws16{word-spacing:291.855751pt;}
.wsb{word-spacing:302.223055pt;}
.ws3c{word-spacing:747.547307pt;}
.ws3b{word-spacing:756.507307pt;}
.ws3a{word-spacing:764.955947pt;}
._2{margin-left:-20.480000pt;}
._d{margin-left:-17.227008pt;}
._18{margin-left:-16.197120pt;}
._17{margin-left:-14.588672pt;}
._a{margin-left:-13.376512pt;}
._14{margin-left:-11.972096pt;}
._11{margin-left:-10.288085pt;}
._7{margin-left:-8.778240pt;}
._c{margin-left:-7.775616pt;}
._5{margin-left:-6.621696pt;}
._3{margin-left:-5.073493pt;}
._6{margin-left:-3.540096pt;}
._1{margin-left:-2.304000pt;}
._4{margin-left:-1.030144pt;}
._0{width:1.024000pt;}
._b{width:1.920000pt;}
._10{width:3.432405pt;}
._13{width:15.478955pt;}
._16{width:16.927915pt;}
._e{width:18.202496pt;}
._f{width:19.496149pt;}
._8{width:22.060629pt;}
._15{width:217.991979pt;}
._9{width:551.142144pt;}
._12{width:848.343686pt;}
.fs2c{font-size:30.889702pt;}
.fs26{font-size:31.448327pt;}
.fs17{font-size:31.812517pt;}
.fs18{font-size:31.945069pt;}
.fs1f{font-size:32.999937pt;}
.fs15{font-size:34.110915pt;}
.fs2a{font-size:37.999863pt;}
.fs29{font-size:38.078865pt;}
.fs24{font-size:38.687072pt;}
.fs23{font-size:38.767503pt;}
.fs1d{font-size:40.595831pt;}
.fs1c{font-size:40.680230pt;}
.fs19{font-size:41.356272pt;}
.fs13{font-size:42.070128pt;}
.fs27{font-size:45.110025pt;}
.fs28{font-size:45.189027pt;}
.fs21{font-size:45.925818pt;}
.fs22{font-size:46.006248pt;}
.fs1a{font-size:48.191725pt;}
.fs1b{font-size:48.276123pt;}
.fs31{font-size:48.414415pt;}
.fs32{font-size:48.481564pt;}
.fs37{font-size:48.921314pt;}
.fs3a{font-size:49.061844pt;}
.fs39{font-size:49.129891pt;}
.fs36{font-size:49.287981pt;}
.fs33{font-size:49.412907pt;}
.fs38{font-size:49.782585pt;}
.fs3f{font-size:49.926388pt;}
.fs12{font-size:49.941878pt;}
.fs3e{font-size:49.995634pt;}
.fs11{font-size:50.029342pt;}
.fs40{font-size:50.174245pt;}
.fs3b{font-size:50.271260pt;}
.fs2e{font-size:50.573183pt;}
.fs35{font-size:50.698157pt;}
.fs34{font-size:50.768473pt;}
.fs42{font-size:50.858691pt;}
.fs41{font-size:51.270815pt;}
.fs2f{font-size:52.064316pt;}
.fs30{font-size:52.136528pt;}
.fs3c{font-size:52.411799pt;}
.fs3d{font-size:52.484492pt;}
.fs2b{font-size:56.960294pt;}
.fs25{font-size:58.070824pt;}
.fs2d{font-size:58.880000pt;}
.fs20{font-size:60.851547pt;}
.fs1e{font-size:60.935946pt;}
.fs14{font-size:63.061460pt;}
.fsc{font-size:64.000000pt;}
.fs16{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fsf{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fsb{font-size:213.120000pt;}
.fs10{font-size:213.248000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.fs8{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:8.938431pt;}
.y66{bottom:10.045757pt;}
.y12b{bottom:10.383614pt;}
.ydd{bottom:12.480000pt;}
.ya2{bottom:12.925331pt;}
.y93{bottom:13.159079pt;}
.ybb{bottom:13.472000pt;}
.y83{bottom:13.808343pt;}
.yf2{bottom:14.861645pt;}
.y49{bottom:16.352000pt;}
.yd1{bottom:16.960032pt;}
.y2e{bottom:19.936000pt;}
.ya4{bottom:20.549001pt;}
.y72{bottom:21.184000pt;}
.y87{bottom:21.952816pt;}
.y103{bottom:24.037872pt;}
.y22{bottom:25.056000pt;}
.y142{bottom:26.112000pt;}
.y11b{bottom:30.496000pt;}
.y5d{bottom:32.698904pt;}
.y9b{bottom:32.864550pt;}
.yba{bottom:33.632000pt;}
.y48{bottom:35.072000pt;}
.ya3{bottom:35.895099pt;}
.y13e{bottom:36.032000pt;}
.yff{bottom:36.834018pt;}
.y86{bottom:38.347286pt;}
.y111{bottom:40.239603pt;}
.y71{bottom:40.384000pt;}
.y4{bottom:40.608000pt;}
.ycd{bottom:41.019300pt;}
.y61{bottom:41.117293pt;}
.y2d{bottom:42.336000pt;}
.y12a{bottom:42.579182pt;}
.y12e{bottom:42.846545pt;}
.yd0{bottom:43.497252pt;}
.yf1{bottom:44.025876pt;}
.y10d{bottom:44.368682pt;}
.ydc{bottom:44.480000pt;}
.y126{bottom:45.826775pt;}
.y102{bottom:45.911341pt;}
.y109{bottom:45.938660pt;}
.yee{bottom:46.562783pt;}
.y104{bottom:47.299775pt;}
.yfe{bottom:53.237246pt;}
.y47{bottom:53.632000pt;}
.y110{bottom:57.447241pt;}
.ycc{bottom:57.952911pt;}
.y60{bottom:58.129018pt;}
.y65{bottom:59.506592pt;}
.y70{bottom:59.584000pt;}
.ycf{bottom:60.160000pt;}
.y129{bottom:60.232413pt;}
.yf0{bottom:60.268975pt;}
.y12d{bottom:60.351233pt;}
.ya1{bottom:60.938674pt;}
.y101{bottom:61.839010pt;}
.y92{bottom:62.040721pt;}
.y10c{bottom:62.432942pt;}
.y105{bottom:62.457231pt;}
.y11a{bottom:62.528000pt;}
.y125{bottom:62.632712pt;}
.y108{bottom:62.794522pt;}
.yed{bottom:63.107894pt;}
.y6a{bottom:63.180051pt;}
.yb9{bottom:63.712000pt;}
.y13d{bottom:64.832000pt;}
.y82{bottom:65.101735pt;}
.y9e{bottom:67.634071pt;}
.y8f{bottom:68.857201pt;}
.yb7{bottom:69.536000pt;}
.y7f{bottom:72.254515pt;}
.y10f{bottom:74.069059pt;}
.ydb{bottom:76.512000pt;}
.y12c{bottom:77.257169pt;}
.y128{bottom:77.281204pt;}
.y69{bottom:77.895850pt;}
.y6f{bottom:78.816000pt;}
.y124{bottom:79.440736pt;}
.y107{bottom:79.649688pt;}
.y10b{bottom:79.858230pt;}
.y5c{bottom:85.833223pt;}
.y11f{bottom:88.866667pt;}
.ye0{bottom:90.464000pt;}
.y59{bottom:93.242272pt;}
.y13c{bottom:93.664000pt;}
.y9c{bottom:94.578382pt;}
.y73{bottom:99.155143pt;}
.y8d{bottom:100.335586pt;}
.y46{bottom:100.512000pt;}
.y11{bottom:107.808000pt;}
.yda{bottom:108.512000pt;}
.y11c{bottom:110.560000pt;}
.yb6{bottom:111.808000pt;}
.yc4{bottom:112.864000pt;}
.yea{bottom:126.944000pt;}
.y9d{bottom:128.880219pt;}
.y45{bottom:129.312000pt;}
.yf6{bottom:129.632000pt;}
.y8e{bottom:131.210955pt;}
.yc3{bottom:135.266667pt;}
.y13b{bottom:135.746667pt;}
.y9f{bottom:136.045673pt;}
.y7e{bottom:137.684721pt;}
.y56{bottom:138.306667pt;}
.y90{bottom:138.505994pt;}
.yd9{bottom:140.506667pt;}
.yfb{bottom:142.720000pt;}
.y80{bottom:145.339661pt;}
.yf5{bottom:152.026667pt;}
.y119{bottom:153.053333pt;}
.yb5{bottom:153.893333pt;}
.y94{bottom:154.954037pt;}
.yaa{bottom:155.124612pt;}
.yc2{bottom:157.666667pt;}
.y44{bottom:158.146667pt;}
.ye9{bottom:158.946667pt;}
.y58{bottom:161.026801pt;}
.y84{bottom:162.599239pt;}
.y13a{bottom:164.546667pt;}
.y55{bottom:167.106667pt;}
.y2f{bottom:168.093333pt;}
.y5a{bottom:168.968495pt;}
.yd8{bottom:172.506667pt;}
.y95{bottom:173.316321pt;}
.yfa{bottom:174.746667pt;}
.y79{bottom:179.850765pt;}
.y118{bottom:181.853333pt;}
.y85{bottom:181.867489pt;}
.ya7{bottom:183.430958pt;}
.y98{bottom:186.748218pt;}
.y5e{bottom:186.828637pt;}
.yd3{bottom:187.249304pt;}
.y78{bottom:189.831942pt;}
.yf3{bottom:192.000996pt;}
.y139{bottom:193.346667pt;}
.y54{bottom:195.933333pt;}
.y8a{bottom:195.962103pt;}
.y77{bottom:199.773354pt;}
.y43{bottom:200.226667pt;}
.ya6{bottom:202.723195pt;}
.yd2{bottom:202.747289pt;}
.yb4{bottom:203.333333pt;}
.y30{bottom:205.186667pt;}
.y97{bottom:206.389346pt;}
.y5f{bottom:206.770403pt;}
.yf4{bottom:206.801062pt;}
.yeb{bottom:210.146667pt;}
.yd7{bottom:212.066667pt;}
.y10{bottom:215.200000pt;}
.y89{bottom:216.572291pt;}
.yfc{bottom:216.773333pt;}
.ya9{bottom:217.062021pt;}
.ya0{bottom:217.338521pt;}
.y7b{bottom:218.198103pt;}
.y9a{bottom:220.987483pt;}
.y91{bottom:221.268983pt;}
.y64{bottom:221.403120pt;}
.y1b{bottom:223.040000pt;}
.y117{bottom:224.133333pt;}
.y42{bottom:229.026667pt;}
.yce{bottom:231.377376pt;}
.ya8{bottom:231.479848pt;}
.y8c{bottom:231.890676pt;}
.y81{bottom:232.186049pt;}
.y10a{bottom:234.816945pt;}
.y138{bottom:235.453333pt;}
.y99{bottom:235.666049pt;}
.y53{bottom:238.013333pt;}
.yef{bottom:240.276960pt;}
.y63{bottom:242.744305pt;}
.y127{bottom:243.722790pt;}
.yd6{bottom:244.093333pt;}
.ya{bottom:244.960000pt;}
.ya5{bottom:245.581669pt;}
.y8b{bottom:247.293460pt;}
.y96{bottom:250.022894pt;}
.y100{bottom:251.177068pt;}
.y1a{bottom:251.840000pt;}
.yb3{bottom:252.506667pt;}
.y116{bottom:252.933333pt;}
.y41{bottom:257.826667pt;}
.y6c{bottom:258.619000pt;}
.y5b{bottom:258.925104pt;}
.y88{bottom:262.358649pt;}
.ye8{bottom:262.880000pt;}
.y137{bottom:264.253333pt;}
.y52{bottom:266.813333pt;}
.y6e{bottom:267.951387pt;}
.y6b{bottom:274.554919pt;}
.y6{bottom:275.493333pt;}
.y9{bottom:277.600000pt;}
.y19{bottom:280.640000pt;}
.y115{bottom:281.733333pt;}
.y36{bottom:285.693333pt;}
.yca{bottom:285.786667pt;}
.y40{bottom:286.626667pt;}
.y6d{bottom:290.167213pt;}
.y62{bottom:290.167223pt;}
.y21{bottom:291.453333pt;}
.ye7{bottom:291.706667pt;}
.y136{bottom:293.053333pt;}
.yb2{bottom:294.586667pt;}
.y51{bottom:295.613333pt;}
.y32{bottom:304.706667pt;}
.y35{bottom:304.893333pt;}
.yf9{bottom:304.986667pt;}
.y2a{bottom:309.053333pt;}
.y67{bottom:309.216836pt;}
.y5{bottom:310.080000pt;}
.y8{bottom:310.880000pt;}
.y20{bottom:313.893333pt;}
.yc9{bottom:314.586667pt;}
.y141{bottom:315.133333pt;}
.y135{bottom:321.853333pt;}
.yf{bottom:322.400000pt;}
.y18{bottom:322.720000pt;}
.y114{bottom:323.813333pt;}
.y31{bottom:323.906667pt;}
.y50{bottom:324.413333pt;}
.y3f{bottom:328.893333pt;}
.yb1{bottom:330.146667pt;}
.y1c{bottom:332.733333pt;}
.ye6{bottom:333.786667pt;}
.y1f{bottom:336.293333pt;}
.y68{bottom:337.485159pt;}
.y29{bottom:337.853333pt;}
.y7{bottom:347.680000pt;}
.y1d{bottom:349.306667pt;}
.y17{bottom:351.520000pt;}
.y113{bottom:352.640000pt;}
.y57{bottom:355.202412pt;}
.yc8{bottom:356.866667pt;}
.y3e{bottom:357.693333pt;}
.ye5{bottom:362.586667pt;}
.yc1{bottom:363.360000pt;}
.y134{bottom:364.133333pt;}
.y1e{bottom:365.786667pt;}
.y28{bottom:366.693333pt;}
.y140{bottom:368.453333pt;}
.yb0{bottom:369.666667pt;}
.yf8{bottom:376.026667pt;}
.y34{bottom:377.093333pt;}
.y112{bottom:381.440000pt;}
.yc7{bottom:385.666667pt;}
.yc0{bottom:385.760000pt;}
.y3d{bottom:386.493333pt;}
.y3{bottom:387.546667pt;}
.y133{bottom:392.933333pt;}
.y16{bottom:393.786667pt;}
.y4f{bottom:395.493333pt;}
.y33{bottom:396.293333pt;}
.yb8{bottom:401.093333pt;}
.y76{bottom:403.704842pt;}
.ye4{bottom:404.826667pt;}
.y27{bottom:408.933333pt;}
.y23{bottom:409.186667pt;}
.yaf{bottom:411.906667pt;}
.y75{bottom:413.646254pt;}
.y3c{bottom:415.293333pt;}
.yb{bottom:417.693333pt;}
.y132{bottom:421.733333pt;}
.y15{bottom:422.586667pt;}
.y74{bottom:423.614176pt;}
.y7d{bottom:423.720678pt;}
.y4e{bottom:424.293333pt;}
.y11e{bottom:424.480000pt;}
.y122{bottom:427.293333pt;}
.yc6{bottom:427.746667pt;}
.ye{bottom:429.786667pt;}
.ye3{bottom:433.666667pt;}
.y26{bottom:437.733333pt;}
.y2b{bottom:438.240000pt;}
.yae{bottom:440.733333pt;}
.y7a{bottom:443.404212pt;}
.yf7{bottom:446.946667pt;}
.y131{bottom:450.533333pt;}
.y121{bottom:455.013333pt;}
.yc5{bottom:456.546667pt;}
.y2{bottom:456.706667pt;}
.y3b{bottom:457.413333pt;}
.y14{bottom:464.666667pt;}
.y4d{bottom:466.373333pt;}
.yd{bottom:470.106667pt;}
.ycb{bottom:471.820903pt;}
.yec{bottom:473.681889pt;}
.y123{bottom:473.714322pt;}
.y106{bottom:473.861388pt;}
.ye2{bottom:475.746667pt;}
.yfd{bottom:478.647117pt;}
.y25{bottom:479.813333pt;}
.y120{bottom:482.720000pt;}
.yad{bottom:482.813333pt;}
.y3a{bottom:486.213333pt;}
.y130{bottom:492.613333pt;}
.y13{bottom:493.466667pt;}
.yd5{bottom:493.506667pt;}
.y4c{bottom:495.200000pt;}
.ye1{bottom:504.546667pt;}
.y24{bottom:508.640000pt;}
.yac{bottom:511.613333pt;}
.y11d{bottom:513.346667pt;}
.y39{bottom:515.013333pt;}
.y12f{bottom:521.440000pt;}
.yd4{bottom:525.506667pt;}
.y1{bottom:525.826667pt;}
.y38{bottom:543.813333pt;}
.yab{bottom:553.573333pt;}
.y4b{bottom:554.853333pt;}
.ydf{bottom:556.453333pt;}
.ybd{bottom:566.080000pt;}
.y12{bottom:577.146667pt;}
.yc{bottom:577.506667pt;}
.ybf{bottom:585.146667pt;}
.y37{bottom:605.120000pt;}
.yde{bottom:605.213333pt;}
.y7c{bottom:605.346667pt;}
.ybe{bottom:607.546667pt;}
.ybc{bottom:608.133333pt;}
.y4a{bottom:612.453333pt;}
.y2c{bottom:614.080000pt;}
.y13f{bottom:688.506667pt;}
.h3c{height:30.723790pt;}
.h34{height:31.279415pt;}
.h23{height:31.641649pt;}
.h24{height:31.773489pt;}
.h2b{height:32.822692pt;}
.h1b{height:33.927702pt;}
.h3a{height:37.795762pt;}
.h39{height:37.874340pt;}
.h32{height:38.479281pt;}
.h31{height:38.559279pt;}
.h29{height:40.377787pt;}
.h28{height:40.461732pt;}
.h25{height:41.134144pt;}
.h19{height:41.844166pt;}
.h3e{height:42.323452pt;}
.h36{height:43.088852pt;}
.h38{height:44.867735pt;}
.h3d{height:44.946312pt;}
.h2e{height:45.214787pt;}
.h30{height:45.679146pt;}
.h35{height:45.759144pt;}
.h1c{height:46.699863pt;}
.h1f{height:47.552081pt;}
.h27{height:47.932882pt;}
.h2d{height:48.016828pt;}
.h46{height:48.154377pt;}
.h47{height:48.221165pt;}
.h50{height:48.658553pt;}
.h55{height:48.798328pt;}
.h54{height:48.866009pt;}
.h4e{height:49.023251pt;}
.h49{height:49.147506pt;}
.h52{height:49.515198pt;}
.h5d{height:49.658229pt;}
.h18{height:49.673635pt;}
.h5c{height:49.727103pt;}
.h17{height:49.760629pt;}
.h61{height:49.904754pt;}
.h57{height:50.001248pt;}
.h41{height:50.301550pt;}
.h4c{height:50.425852pt;}
.h4b{height:50.495791pt;}
.h65{height:50.585524pt;}
.h63{height:50.995434pt;}
.h1e{height:51.136776pt;}
.h1d{height:51.226333pt;}
.h43{height:51.784674pt;}
.h44{height:51.856498pt;}
.h59{height:52.130290pt;}
.h5a{height:52.202593pt;}
.h3f{height:56.062500pt;}
.h3b{height:56.654355pt;}
.h33{height:57.758920pt;}
.h2c{height:60.524708pt;}
.h2a{height:60.608653pt;}
.h10{height:60.937500pt;}
.h21{height:61.059375pt;}
.h1a{height:62.722751pt;}
.h14{height:63.656250pt;}
.h11{height:71.296875pt;}
.h12{height:71.418750pt;}
.h13{height:81.046875pt;}
.h20{height:82.630027pt;}
.h5e{height:87.156562pt;}
.h9{height:95.484375pt;}
.ha{height:95.611688pt;}
.h5{height:97.187500pt;}
.h4{height:97.284688pt;}
.hf{height:101.765625pt;}
.h6{height:101.887500pt;}
.h8{height:106.305937pt;}
.h3{height:121.875000pt;}
.h7{height:127.312500pt;}
.hc{height:141.984375pt;}
.hd{height:142.106250pt;}
.h5f{height:194.240000pt;}
.he{height:202.921875pt;}
.h15{height:203.043750pt;}
.h45{height:219.577167pt;}
.h4f{height:222.893920pt;}
.h4d{height:224.051814pt;}
.h48{height:225.335213pt;}
.h53{height:225.575606pt;}
.h5b{height:226.953866pt;}
.h51{height:227.021000pt;}
.h40{height:229.050324pt;}
.h56{height:230.090408pt;}
.h60{height:230.168259pt;}
.h22{height:230.286190pt;}
.h4a{height:232.044286pt;}
.h62{height:232.532007pt;}
.h64{height:232.543452pt;}
.h42{height:239.921920pt;}
.h58{height:240.977984pt;}
.h1{height:243.750000pt;}
.h2{height:243.871875pt;}
.h37{height:259.520904pt;}
.h2f{height:264.214215pt;}
.h26{height:277.250150pt;}
.hb{height:304.809375pt;}
.h16{height:352.916808pt;}
.h0{height:720.000000pt;}
.w13{width:158.720000pt;}
.w6{width:262.478335pt;}
.w5{width:267.190834pt;}
.w4{width:280.389459pt;}
.w2{width:358.879415pt;}
.w3{width:414.098601pt;}
.we{width:442.744889pt;}
.w15{width:445.359555pt;}
.wf{width:446.776584pt;}
.wc{width:448.250469pt;}
.wa{width:449.710856pt;}
.wb{width:449.725173pt;}
.w9{width:449.946315pt;}
.w14{width:450.539230pt;}
.wd{width:450.684007pt;}
.w12{width:451.930022pt;}
.w10{width:455.008225pt;}
.w16{width:455.769510pt;}
.w11{width:457.452857pt;}
.w7{width:458.535647pt;}
.w8{width:469.233720pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.813769pt;}
.x59{left:9.076394pt;}
.x33{left:10.028581pt;}
.x4f{left:31.776713pt;}
.x44{left:33.346409pt;}
.x2c{left:34.544376pt;}
.x52{left:35.576452pt;}
.x4a{left:36.532121pt;}
.x32{left:37.846637pt;}
.x39{left:39.246291pt;}
.x5a{left:49.887981pt;}
.x34{left:52.083762pt;}
.x25{left:54.655981pt;}
.x69{left:57.727981pt;}
.x5d{left:59.423981pt;}
.x22{left:61.535981pt;}
.x3c{left:63.308657pt;}
.x5e{left:64.799981pt;}
.x72{left:70.751981pt;}
.x70{left:74.680874pt;}
.xf{left:76.511981pt;}
.x78{left:78.013494pt;}
.x67{left:82.219114pt;}
.x6f{left:84.483966pt;}
.x10{left:86.335981pt;}
.x65{left:89.278535pt;}
.x26{left:90.655981pt;}
.x63{left:91.681970pt;}
.x79{left:92.573810pt;}
.x51{left:94.422763pt;}
.x76{left:95.743981pt;}
.x23{left:97.855981pt;}
.x47{left:99.087035pt;}
.x68{left:100.799981pt;}
.x2f{left:102.668005pt;}
.x46{left:104.445874pt;}
.x73{left:106.751981pt;}
.x2e{left:108.222875pt;}
.x56{left:109.544964pt;}
.x50{left:111.511757pt;}
.x7{left:112.767981pt;}
.x45{left:117.020185pt;}
.x2d{left:121.257159pt;}
.x11{left:122.367981pt;}
.x3a{left:129.436319pt;}
.x35{left:133.416635pt;}
.x61{left:134.426648pt;}
.x74{left:142.400000pt;}
.xc{left:157.599981pt;}
.x8{left:160.799981pt;}
.x3e{left:168.952771pt;}
.x3f{left:169.880126pt;}
.x53{left:174.546370pt;}
.x4c{left:177.680157pt;}
.x1{left:178.586648pt;}
.x41{left:186.457156pt;}
.x29{left:193.207972pt;}
.x2{left:198.426648pt;}
.x58{left:200.671753pt;}
.x57{left:204.582266pt;}
.x55{left:206.778473pt;}
.x9{left:208.799981pt;}
.x4e{left:210.490899pt;}
.x49{left:214.365302pt;}
.x48{left:218.542656pt;}
.x43{left:220.888678pt;}
.x31{left:222.119530pt;}
.x30{left:226.449698pt;}
.x2b{left:228.872803pt;}
.x36{left:239.658856pt;}
.x54{left:241.396383pt;}
.x4d{left:245.730347pt;}
.xa{left:256.799981pt;}
.x42{left:257.868875pt;}
.x2a{left:267.197024pt;}
.x37{left:282.855588pt;}
.x38{left:285.077588pt;}
.xb{left:304.799981pt;}
.x3{left:309.826648pt;}
.x75{left:322.053314pt;}
.x6b{left:340.308979pt;}
.x3d{left:354.144672pt;}
.x5{left:393.146648pt;}
.x6{left:543.226648pt;}
.x64{left:665.879074pt;}
.x71{left:668.496032pt;}
.x77{left:669.700288pt;}
.x62{left:671.243853pt;}
.x66{left:672.739207pt;}
.x6e{left:673.795609pt;}
.x6a{left:674.964884pt;}
.x4b{left:676.136954pt;}
.x6c{left:677.183845pt;}
.x24{left:684.226648pt;}
.x5c{left:685.506648pt;}
.xd{left:690.306648pt;}
.x1a{left:710.079981pt;}
.x18{left:735.226648pt;}
.xe{left:738.306648pt;}
.x1b{left:739.359981pt;}
.x3b{left:747.502188pt;}
.x1c{left:751.426648pt;}
.x1d{left:755.106648pt;}
.x17{left:780.453314pt;}
.x12{left:783.773314pt;}
.x16{left:785.306648pt;}
.x27{left:786.324208pt;}
.x7b{left:795.546648pt;}
.x14{left:800.506648pt;}
.x40{left:810.045618pt;}
.x15{left:840.093314pt;}
.x5b{left:875.519981pt;}
.x7a{left:897.666648pt;}
.x4{left:964.826648pt;}
.x1e{left:974.373314pt;}
.x1f{left:987.973314pt;}
.x7c{left:992.773314pt;}
.x13{left:1010.853314pt;}
.x20{left:1073.439981pt;}
.x21{left:1087.519981pt;}
.x6d{left:1130.559981pt;}
.x5f{left:1132.666648pt;}
.x60{left:1140.453314pt;}
.x19{left:1226.653314pt;}
}




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