
    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_3a22a43aefd0cca499ae8192.woff')format("woff");}.ff1{font-family:ff1;line-height:0.717285;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_ff46089d4699cb606d38d4db.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115000;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_79bf1012a97fd48ad4d1ca5c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.949000;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_71a271bbe51472c8caa82b10.woff')format("woff");}.ff4{font-family:ff4;line-height:1.070000;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_519a8a0bc12a21dda11320aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.150391;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_37be9ede5842031d8b1d84de.woff')format("woff");}.ff6{font-family:ff6;line-height:0.961914;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_40824ee79c879edbe73802c9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_389d68dd902618eaff41505b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_72b54b4b7d22770a718f724e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_c8fcdf14cd502f55767b4a0d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708000;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_21f31ea90e9070db4c1964cb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.882000;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.249998,-0.001091,0.001091,0.249998,0,0);-ms-transform:matrix(0.249998,-0.001091,0.001091,0.249998,0,0);-webkit-transform:matrix(0.249998,-0.001091,0.001091,0.249998,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.ls41{letter-spacing:-7.500000px;}
.ls44{letter-spacing:-3.000000px;}
.ls2c{letter-spacing:-2.640000px;}
.ls23{letter-spacing:-1.500000px;}
.ls3e{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.858000px;}
.ls27{letter-spacing:-0.840000px;}
.ls13{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.726000px;}
.ls18{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.594000px;}
.ls16{letter-spacing:-0.528000px;}
.ls1{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.462000px;}
.ls28{letter-spacing:-0.396000px;}
.ls24{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.ls29{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.132000px;}
.ls2a{letter-spacing:-0.115434px;}
.lsd{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005832px;}
.ls20{letter-spacing:0.006206px;}
.ls8{letter-spacing:0.007200px;}
.ls21{letter-spacing:0.007533px;}
.ls22{letter-spacing:0.007536px;}
.ls11{letter-spacing:0.007800px;}
.lsc{letter-spacing:0.066000px;}
.ls1b{letter-spacing:0.105432px;}
.ls4{letter-spacing:0.132000px;}
.ls1c{letter-spacing:0.198000px;}
.lsf{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.330000px;}
.ls19{letter-spacing:0.396000px;}
.ls31{letter-spacing:0.423258px;}
.ls35{letter-spacing:0.461736px;}
.ls3{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.594000px;}
.ls30{letter-spacing:0.654126px;}
.ls10{letter-spacing:0.660000px;}
.ls2b{letter-spacing:0.692604px;}
.ls5{letter-spacing:0.726000px;}
.ls34{letter-spacing:0.792000px;}
.ls3f{letter-spacing:0.840000px;}
.ls37{letter-spacing:0.846516px;}
.ls26{letter-spacing:0.858000px;}
.ls33{letter-spacing:0.924000px;}
.ls25{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.056000px;}
.ls2d{letter-spacing:1.122000px;}
.ls1d{letter-spacing:1.188000px;}
.ls2e{letter-spacing:1.254000px;}
.ls2f{letter-spacing:1.320000px;}
.ls1e{letter-spacing:1.386000px;}
.ls36{letter-spacing:1.452000px;}
.ls1f{letter-spacing:1.518001px;}
.ls38{letter-spacing:1.584000px;}
.ls3d{letter-spacing:1.650000px;}
.ls3b{letter-spacing:1.680000px;}
.ls43{letter-spacing:1.716000px;}
.ls42{letter-spacing:1.848000px;}
.ls39{letter-spacing:1.914000px;}
.ls32{letter-spacing:2.112000px;}
.ls3a{letter-spacing:2.310000px;}
.ls40{letter-spacing:2.340000px;}
.ls3c{letter-spacing:2.520000px;}
.ls9{letter-spacing:4.500000px;}
.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;}
}
.ws2{word-spacing:-41.400000px;}
.ws21{word-spacing:-35.400000px;}
.ws70{word-spacing:-33.900000px;}
.ws6e{word-spacing:-29.400000px;}
.ws69{word-spacing:-22.344000px;}
.ws6c{word-spacing:-21.504000px;}
.ws52{word-spacing:-19.800000px;}
.ws40{word-spacing:-19.074000px;}
.ws23{word-spacing:-18.348008px;}
.ws33{word-spacing:-13.344000px;}
.ws1{word-spacing:-12.582000px;}
.ws53{word-spacing:-11.543400px;}
.ws34{word-spacing:-11.389488px;}
.ws3f{word-spacing:-11.351010px;}
.ws4a{word-spacing:-11.158620px;}
.ws41{word-spacing:-11.120142px;}
.ws35{word-spacing:-10.704000px;}
.ws3{word-spacing:-10.696884px;}
.ws22{word-spacing:-10.696819px;}
.ws32{word-spacing:-10.581450px;}
.ws10{word-spacing:-2.178000px;}
.ws7{word-spacing:-1.848000px;}
.ws6{word-spacing:-1.782000px;}
.ws17{word-spacing:-1.716000px;}
.ws62{word-spacing:-1.680000px;}
.ws55{word-spacing:-1.650000px;}
.ws27{word-spacing:-1.584000px;}
.ws66{word-spacing:-1.518000px;}
.ws57{word-spacing:-1.452000px;}
.ws2e{word-spacing:-1.386001px;}
.ws38{word-spacing:-1.320000px;}
.wsb{word-spacing:-1.254000px;}
.ws1e{word-spacing:-1.188000px;}
.ws5e{word-spacing:-1.122000px;}
.ws71{word-spacing:-1.056000px;}
.ws37{word-spacing:-0.990000px;}
.ws5c{word-spacing:-0.924000px;}
.ws67{word-spacing:-0.858000px;}
.ws46{word-spacing:-0.792000px;}
.ws3e{word-spacing:-0.726000px;}
.ws51{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.594000px;}
.ws16{word-spacing:-0.528000px;}
.ws14{word-spacing:-0.462000px;}
.ws4f{word-spacing:-0.396000px;}
.ws1c{word-spacing:-0.330000px;}
.ws3a{word-spacing:-0.264000px;}
.ws30{word-spacing:-0.198000px;}
.ws45{word-spacing:-0.132000px;}
.ws18{word-spacing:-0.096000px;}
.ws25{word-spacing:-0.066000px;}
.ws31{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws5a{word-spacing:0.066000px;}
.ws2f{word-spacing:0.132000px;}
.ws48{word-spacing:0.198000px;}
.ws2b{word-spacing:0.264000px;}
.ws50{word-spacing:0.330000px;}
.ws2d{word-spacing:0.396000px;}
.ws19{word-spacing:0.462000px;}
.ws56{word-spacing:0.528000px;}
.ws3b{word-spacing:0.594000px;}
.ws13{word-spacing:0.660000px;}
.ws15{word-spacing:0.726000px;}
.ws49{word-spacing:0.792000px;}
.ws36{word-spacing:0.840000px;}
.ws20{word-spacing:0.858000px;}
.ws39{word-spacing:0.924000px;}
.ws26{word-spacing:0.990000px;}
.ws4b{word-spacing:1.056000px;}
.ws8{word-spacing:1.188000px;}
.ws58{word-spacing:1.254000px;}
.ws1b{word-spacing:1.320000px;}
.ws1d{word-spacing:1.386000px;}
.ws61{word-spacing:1.452000px;}
.ws5f{word-spacing:1.500000px;}
.ws63{word-spacing:1.518000px;}
.ws42{word-spacing:1.584000px;}
.ws68{word-spacing:1.650000px;}
.ws1a{word-spacing:1.716000px;}
.ws5{word-spacing:1.782000px;}
.ws4{word-spacing:1.848000px;}
.ws3d{word-spacing:1.914000px;}
.ws6d{word-spacing:1.980000px;}
.ws24{word-spacing:2.046000px;}
.ws4d{word-spacing:2.112000px;}
.ws43{word-spacing:2.178000px;}
.ws3c{word-spacing:2.244000px;}
.ws28{word-spacing:2.310000px;}
.ws29{word-spacing:2.376000px;}
.ws11{word-spacing:2.442000px;}
.ws59{word-spacing:2.508000px;}
.ws44{word-spacing:2.574000px;}
.ws47{word-spacing:2.640000px;}
.ws65{word-spacing:2.706000px;}
.ws2a{word-spacing:2.772000px;}
.ws4c{word-spacing:2.838000px;}
.wsc{word-spacing:2.904000px;}
.ws54{word-spacing:2.970000px;}
.ws5d{word-spacing:3.102000px;}
.ws2c{word-spacing:3.102001px;}
.ws9{word-spacing:3.168000px;}
.ws5b{word-spacing:3.234000px;}
.ws6b{word-spacing:3.366000px;}
.ws6f{word-spacing:3.432000px;}
.wsd{word-spacing:3.498000px;}
.ws6a{word-spacing:3.696000px;}
.ws60{word-spacing:3.762000px;}
.wsa{word-spacing:3.894000px;}
.ws4e{word-spacing:4.290000px;}
.ws64{word-spacing:4.554000px;}
.ws12{word-spacing:6.072000px;}
.wse{word-spacing:8.184000px;}
.wsf{word-spacing:8.382000px;}
._7{margin-left:-24.000000px;}
._a{margin-left:-21.311407px;}
._10{margin-left:-19.752000px;}
._4{margin-left:-17.496000px;}
._f{margin-left:-10.482000px;}
._b{margin-left:-9.240000px;}
._11{margin-left:-7.641000px;}
._5{margin-left:-6.624000px;}
._2{margin-left:-4.806000px;}
._c{margin-left:-3.504000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.188000px;}
._1{width:1.242000px;}
._9{width:2.322000px;}
._8{width:3.855000px;}
._12{width:6.000000px;}
._13{width:8.145000px;}
._d{width:149.294400px;}
._e{width:152.220000px;}
._6{width:175.968000px;}
.fc3{color:rgb(56,68,37);}
.fc2{color:rgb(106,154,76);}
.fc1{color:transparent;}
.fc5{color:rgb(71,119,94);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.477767px;}
.fs3{font-size:38.478000px;}
.fs7{font-size:47.999857px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:66.000028px;}
.fs9{font-size:78.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:30.780150px;}
.y109{bottom:39.968550px;}
.y11a{bottom:45.180150px;}
.y108{bottom:54.368550px;}
.yba{bottom:56.660550px;}
.y173{bottom:56.976300px;}
.y1d8{bottom:57.614100px;}
.y61{bottom:67.606200px;}
.y8c{bottom:67.606350px;}
.y183{bottom:67.844250px;}
.y107{bottom:68.768550px;}
.y172{bottom:71.376450px;}
.y1d7{bottom:72.014100px;}
.y1cb{bottom:76.535400px;}
.y1df{bottom:78.531150px;}
.yda{bottom:79.690050px;}
.y60{bottom:82.006200px;}
.y8b{bottom:82.006350px;}
.y182{bottom:82.244250px;}
.y106{bottom:83.168550px;}
.y1d6{bottom:86.414100px;}
.y233{bottom:88.665000px;}
.y39{bottom:89.291250px;}
.y1ca{bottom:90.935400px;}
.yd9{bottom:94.090050px;}
.y5f{bottom:96.406200px;}
.y181{bottom:96.644250px;}
.y105{bottom:97.568550px;}
.yb6{bottom:98.436600px;}
.y1a2{bottom:99.531150px;}
.y1d3{bottom:99.605400px;}
.y1d5{bottom:100.814100px;}
.y38{bottom:103.691250px;}
.y8a{bottom:104.910300px;}
.y1c9{bottom:105.335400px;}
.yd8{bottom:108.490050px;}
.y25c{bottom:109.098150px;}
.y214{bottom:109.664850px;}
.y232{bottom:109.665000px;}
.y1c7{bottom:110.019300px;}
.y119{bottom:111.968550px;}
.ydc{bottom:112.195200px;}
.yb5{bottom:112.836450px;}
.y1d4{bottom:115.214100px;}
.y1f6{bottom:117.507450px;}
.y89{bottom:119.310300px;}
.y148{bottom:119.361900px;}
.y1c8{bottom:119.735400px;}
.y104{bottom:120.472500px;}
.y1a1{bottom:120.531150px;}
.yd7{bottom:122.890050px;}
.y192{bottom:123.424800px;}
.y37{bottom:126.595200px;}
.yb4{bottom:127.236300px;}
.y1de{bottom:129.614100px;}
.y25b{bottom:130.098150px;}
.y213{bottom:130.664850px;}
.y231{bottom:130.665000px;}
.y1c6{bottom:131.019300px;}
.y88{bottom:133.710300px;}
.y118{bottom:134.872500px;}
.yd6{bottom:137.290050px;}
.y1f5{bottom:138.507450px;}
.y147{bottom:140.361900px;}
.y36{bottom:140.995200px;}
.y171{bottom:141.531150px;}
.yb3{bottom:141.636150px;}
.y1dd{bottom:144.014100px;}
.y191{bottom:144.424800px;}
.y87{bottom:148.110300px;}
.y117{bottom:149.272500px;}
.y25a{bottom:151.098150px;}
.y212{bottom:151.664850px;}
.y230{bottom:151.665000px;}
.yd5{bottom:151.690050px;}
.y1c5{bottom:152.019300px;}
.y35{bottom:155.395200px;}
.yb2{bottom:156.036000px;}
.y1dc{bottom:158.414100px;}
.y1f4{bottom:159.507450px;}
.y146{bottom:161.361900px;}
.y86{bottom:162.510300px;}
.y170{bottom:162.531150px;}
.y180{bottom:162.979950px;}
.y116{bottom:163.672500px;}
.y190{bottom:165.424800px;}
.yd4{bottom:166.090050px;}
.y34{bottom:169.795200px;}
.yb1{bottom:170.435850px;}
.y259{bottom:172.098150px;}
.y211{bottom:172.664850px;}
.y22f{bottom:172.665000px;}
.y1db{bottom:172.814100px;}
.y1c4{bottom:173.019300px;}
.y115{bottom:178.072500px;}
.y234{bottom:178.364700px;}
.y103{bottom:178.735800px;}
.yd3{bottom:180.490050px;}
.y1f3{bottom:180.507450px;}
.y145{bottom:182.361900px;}
.y16f{bottom:183.531150px;}
.y17f{bottom:183.979950px;}
.yb0{bottom:184.835700px;}
.y18f{bottom:186.424800px;}
.y1da{bottom:187.214100px;}
.y5e{bottom:191.727900px;}
.y114{bottom:192.472500px;}
.y33{bottom:192.699150px;}
.y258{bottom:193.098150px;}
.y22e{bottom:193.665000px;}
.y1c3{bottom:194.019300px;}
.y102{bottom:199.735800px;}
.y85{bottom:201.035100px;}
.y1f2{bottom:201.507450px;}
.y1d9{bottom:201.614100px;}
.y144{bottom:203.361900px;}
.y16e{bottom:204.531150px;}
.y17e{bottom:204.979950px;}
.y113{bottom:206.872350px;}
.y18e{bottom:207.424800px;}
.yaf{bottom:207.739500px;}
.y235{bottom:209.943900px;}
.y236{bottom:211.857300px;}
.y5d{bottom:212.727900px;}
.y257{bottom:214.098150px;}
.y210{bottom:214.664850px;}
.y22d{bottom:214.665000px;}
.y1c2{bottom:215.019300px;}
.y101{bottom:220.735800px;}
.y84{bottom:222.035100px;}
.yae{bottom:222.139350px;}
.y1f1{bottom:222.507450px;}
.y143{bottom:224.361900px;}
.yd2{bottom:224.646450px;}
.y16d{bottom:225.531150px;}
.y17d{bottom:225.979950px;}
.y18d{bottom:228.424800px;}
.y112{bottom:229.776300px;}
.y5c{bottom:233.727900px;}
.y20f{bottom:235.664850px;}
.yad{bottom:236.539200px;}
.y100{bottom:241.735800px;}
.y83{bottom:243.035100px;}
.y1f0{bottom:243.507450px;}
.y111{bottom:244.176300px;}
.y142{bottom:245.361900px;}
.yd1{bottom:245.646450px;}
.y16c{bottom:246.531150px;}
.y17c{bottom:246.979950px;}
.y32{bottom:248.377050px;}
.y18c{bottom:249.424800px;}
.yac{bottom:250.939050px;}
.y5b{bottom:254.727900px;}
.y256{bottom:256.098150px;}
.y20e{bottom:256.664850px;}
.y22c{bottom:256.665000px;}
.y1c1{bottom:257.019300px;}
.yff{bottom:262.735800px;}
.y82{bottom:264.035100px;}
.yab{bottom:265.338900px;}
.y141{bottom:266.361900px;}
.yd0{bottom:266.646450px;}
.y110{bottom:267.080250px;}
.y16b{bottom:267.531150px;}
.y17b{bottom:267.979950px;}
.y31{bottom:269.377050px;}
.y18b{bottom:270.424800px;}
.y1{bottom:271.766550px;}
.y5a{bottom:275.727900px;}
.y255{bottom:277.098150px;}
.y20d{bottom:277.664850px;}
.y22b{bottom:277.665000px;}
.y1c0{bottom:278.019300px;}
.y10f{bottom:281.480250px;}
.yfe{bottom:283.735800px;}
.y81{bottom:285.035100px;}
.y1ef{bottom:285.507450px;}
.y140{bottom:287.361900px;}
.ycf{bottom:287.646450px;}
.yaa{bottom:288.242700px;}
.y16a{bottom:288.531150px;}
.y17a{bottom:288.979950px;}
.y30{bottom:290.377050px;}
.y18a{bottom:291.424800px;}
.y10e{bottom:295.880250px;}
.y254{bottom:298.098150px;}
.y20c{bottom:298.664850px;}
.y22a{bottom:298.665000px;}
.y1bf{bottom:299.019300px;}
.ya9{bottom:302.642550px;}
.yfd{bottom:304.735800px;}
.y80{bottom:306.035100px;}
.y1ee{bottom:306.507450px;}
.y13f{bottom:308.361900px;}
.yce{bottom:308.646450px;}
.y169{bottom:309.531150px;}
.y179{bottom:309.979950px;}
.y10d{bottom:310.280250px;}
.y2f{bottom:311.377050px;}
.y189{bottom:312.424800px;}
.ya8{bottom:317.042400px;}
.y59{bottom:317.727900px;}
.y253{bottom:319.098150px;}
.y20b{bottom:319.664850px;}
.y229{bottom:319.665000px;}
.y1be{bottom:320.019300px;}
.y10c{bottom:324.680400px;}
.yfc{bottom:325.735800px;}
.y7f{bottom:327.035100px;}
.y1ed{bottom:327.507450px;}
.y13e{bottom:329.361900px;}
.ycd{bottom:329.646450px;}
.y168{bottom:330.531150px;}
.y178{bottom:330.979950px;}
.ya7{bottom:331.442250px;}
.y2e{bottom:332.377050px;}
.y188{bottom:333.424800px;}
.y58{bottom:338.727900px;}
.y10b{bottom:339.080250px;}
.y252{bottom:340.098150px;}
.y20a{bottom:340.664850px;}
.y228{bottom:340.665000px;}
.y1bd{bottom:341.019300px;}
.ya6{bottom:345.842100px;}
.yfb{bottom:346.735800px;}
.y7e{bottom:348.035100px;}
.y1ec{bottom:348.507450px;}
.y13d{bottom:350.361900px;}
.ycc{bottom:350.646450px;}
.y167{bottom:351.531150px;}
.y177{bottom:351.979950px;}
.y2d{bottom:353.377050px;}
.y187{bottom:354.424800px;}
.y57{bottom:359.727900px;}
.ya5{bottom:360.241950px;}
.y251{bottom:361.098150px;}
.yf{bottom:361.657200px;}
.y209{bottom:361.664850px;}
.y227{bottom:361.665000px;}
.y1bc{bottom:362.019300px;}
.yfa{bottom:367.735800px;}
.y7d{bottom:369.035100px;}
.y1eb{bottom:369.507450px;}
.y13c{bottom:371.361900px;}
.ydb{bottom:371.646450px;}
.y166{bottom:372.531150px;}
.y176{bottom:372.979950px;}
.y2c{bottom:374.377050px;}
.ya4{bottom:374.641800px;}
.y186{bottom:375.424800px;}
.ye{bottom:377.857200px;}
.y56{bottom:380.727900px;}
.y250{bottom:382.098150px;}
.y208{bottom:382.664850px;}
.y226{bottom:382.665000px;}
.y1bb{bottom:383.019300px;}
.yf9{bottom:388.735800px;}
.ya3{bottom:389.041650px;}
.y7c{bottom:390.035100px;}
.y1ea{bottom:390.507450px;}
.y13b{bottom:392.361900px;}
.ycb{bottom:392.646450px;}
.y165{bottom:393.531150px;}
.y175{bottom:393.979950px;}
.yd{bottom:394.057200px;}
.y2b{bottom:395.377050px;}
.y185{bottom:396.424800px;}
.y55{bottom:401.727900px;}
.y24f{bottom:403.098150px;}
.y207{bottom:403.664850px;}
.y225{bottom:403.665000px;}
.y1ba{bottom:404.019300px;}
.yf8{bottom:409.735800px;}
.yc{bottom:410.257200px;}
.y7b{bottom:411.035100px;}
.y1e9{bottom:411.507450px;}
.ya2{bottom:411.945450px;}
.y13a{bottom:413.361900px;}
.yca{bottom:413.646450px;}
.y164{bottom:414.531150px;}
.y174{bottom:414.979950px;}
.y184{bottom:417.424800px;}
.y54{bottom:422.727900px;}
.y24e{bottom:424.098150px;}
.y206{bottom:424.664850px;}
.y224{bottom:424.665000px;}
.y1b9{bottom:425.019300px;}
.ya1{bottom:426.345300px;}
.yf7{bottom:430.735800px;}
.y7a{bottom:432.035100px;}
.y1e8{bottom:432.507450px;}
.y139{bottom:434.361900px;}
.yc9{bottom:434.646450px;}
.y163{bottom:435.531150px;}
.y2a{bottom:437.977050px;}
.ya0{bottom:440.745150px;}
.y24d{bottom:445.098150px;}
.y205{bottom:445.664850px;}
.y223{bottom:445.665000px;}
.y1b8{bottom:446.019300px;}
.yf6{bottom:451.735800px;}
.y79{bottom:453.035100px;}
.y1e7{bottom:453.507450px;}
.y138{bottom:455.361900px;}
.yc8{bottom:455.646450px;}
.y162{bottom:456.531150px;}
.yb{bottom:458.857200px;}
.y29{bottom:458.977050px;}
.y53{bottom:464.727900px;}
.y24c{bottom:466.098150px;}
.y204{bottom:466.664850px;}
.y222{bottom:466.665000px;}
.y1b7{bottom:467.019300px;}
.yf5{bottom:472.735800px;}
.y1e6{bottom:474.507450px;}
.ya{bottom:475.057200px;}
.y137{bottom:476.361900px;}
.yc7{bottom:476.646450px;}
.y161{bottom:477.531150px;}
.y28{bottom:479.977050px;}
.y52{bottom:485.727900px;}
.y24b{bottom:487.098150px;}
.y203{bottom:487.664850px;}
.y221{bottom:487.665000px;}
.y1b6{bottom:488.019300px;}
.y193{bottom:489.036600px;}
.y9{bottom:491.257200px;}
.yf4{bottom:493.735800px;}
.y78{bottom:495.035100px;}
.y1e5{bottom:495.507450px;}
.y136{bottom:497.361900px;}
.yc6{bottom:497.646450px;}
.y160{bottom:498.531150px;}
.y27{bottom:500.977050px;}
.y51{bottom:506.727900px;}
.y24a{bottom:508.098150px;}
.y202{bottom:508.664850px;}
.y220{bottom:508.665000px;}
.y1b5{bottom:509.019300px;}
.y9f{bottom:514.522800px;}
.y10a{bottom:514.735800px;}
.y77{bottom:516.035100px;}
.y1e4{bottom:516.507450px;}
.y135{bottom:518.361900px;}
.yc5{bottom:518.646450px;}
.y15f{bottom:519.531150px;}
.y26{bottom:521.977050px;}
.y8{bottom:523.657200px;}
.y50{bottom:527.727900px;}
.y249{bottom:529.098150px;}
.y201{bottom:529.664850px;}
.y21f{bottom:529.665000px;}
.y1b4{bottom:530.019300px;}
.y9e{bottom:535.522650px;}
.yf3{bottom:535.735800px;}
.y76{bottom:537.035100px;}
.yc4{bottom:539.646450px;}
.y1a0{bottom:540.531150px;}
.y25{bottom:542.977050px;}
.y4f{bottom:548.727900px;}
.y248{bottom:550.098150px;}
.y21e{bottom:550.665000px;}
.y1b3{bottom:551.019300px;}
.y7{bottom:556.057200px;}
.y9d{bottom:556.522500px;}
.yf2{bottom:556.735800px;}
.y75{bottom:558.035100px;}
.y1e3{bottom:558.507450px;}
.y134{bottom:560.361900px;}
.yc3{bottom:560.646450px;}
.y15e{bottom:561.531150px;}
.y24{bottom:563.977050px;}
.y4e{bottom:569.727900px;}
.y247{bottom:571.098150px;}
.y200{bottom:571.664850px;}
.y1b2{bottom:572.019300px;}
.y9c{bottom:577.522200px;}
.yf1{bottom:577.735800px;}
.y74{bottom:579.035100px;}
.y133{bottom:581.361900px;}
.yc2{bottom:581.646450px;}
.y15d{bottom:582.531150px;}
.y23{bottom:584.977050px;}
.y6{bottom:588.457200px;}
.y4d{bottom:590.727900px;}
.y246{bottom:592.098150px;}
.y1ff{bottom:592.664850px;}
.y21d{bottom:592.665000px;}
.y1b1{bottom:593.019300px;}
.y9b{bottom:598.522050px;}
.yf0{bottom:598.735800px;}
.y73{bottom:600.035100px;}
.y132{bottom:602.361900px;}
.yc1{bottom:602.646450px;}
.y19f{bottom:603.531150px;}
.y1e2{bottom:605.007450px;}
.y22{bottom:605.977050px;}
.y4c{bottom:611.727900px;}
.y245{bottom:613.098150px;}
.y1fe{bottom:613.664850px;}
.y21c{bottom:613.665000px;}
.y9a{bottom:619.521750px;}
.yef{bottom:619.735800px;}
.y5{bottom:620.857200px;}
.y72{bottom:621.035100px;}
.y131{bottom:623.361900px;}
.yc0{bottom:623.646450px;}
.y19e{bottom:624.531150px;}
.y21{bottom:626.977050px;}
.y4b{bottom:632.727900px;}
.y25d{bottom:634.098150px;}
.y1fd{bottom:634.664850px;}
.y21b{bottom:634.665000px;}
.y1b0{bottom:635.019300px;}
.y4{bottom:637.057200px;}
.y99{bottom:640.521600px;}
.yee{bottom:640.735800px;}
.y71{bottom:642.035100px;}
.y130{bottom:644.361900px;}
.ybf{bottom:644.646450px;}
.y15c{bottom:645.531150px;}
.y20{bottom:647.977050px;}
.y1e1{bottom:651.507450px;}
.y4a{bottom:653.727900px;}
.y244{bottom:655.098150px;}
.y1fc{bottom:655.664850px;}
.y21a{bottom:655.665000px;}
.y1af{bottom:656.019300px;}
.y98{bottom:661.521450px;}
.yed{bottom:661.735800px;}
.y70{bottom:663.035100px;}
.y12f{bottom:665.361900px;}
.ybe{bottom:665.646450px;}
.y15b{bottom:666.531150px;}
.y1f{bottom:668.977050px;}
.y3{bottom:669.457200px;}
.y243{bottom:676.098150px;}
.y1fb{bottom:676.664850px;}
.y219{bottom:676.665000px;}
.y1ae{bottom:677.019300px;}
.y97{bottom:682.521300px;}
.yec{bottom:682.735800px;}
.y6f{bottom:684.035100px;}
.y12e{bottom:686.361900px;}
.ybd{bottom:686.646450px;}
.y15a{bottom:687.531150px;}
.y1e{bottom:689.977050px;}
.y49{bottom:695.727900px;}
.y242{bottom:697.098150px;}
.y1fa{bottom:697.664850px;}
.y218{bottom:697.665000px;}
.y1e0{bottom:698.007450px;}
.y1ad{bottom:698.019300px;}
.y2{bottom:701.857200px;}
.y96{bottom:703.521000px;}
.yeb{bottom:703.735800px;}
.y6e{bottom:705.035100px;}
.y12d{bottom:707.361900px;}
.y159{bottom:708.531150px;}
.y1d{bottom:710.977050px;}
.y48{bottom:716.727900px;}
.y241{bottom:718.098150px;}
.y1f9{bottom:718.664850px;}
.y217{bottom:718.665000px;}
.y1ac{bottom:719.019300px;}
.y95{bottom:724.520850px;}
.yea{bottom:724.735800px;}
.y6d{bottom:726.035100px;}
.y12c{bottom:728.361900px;}
.y158{bottom:729.531150px;}
.y1c{bottom:731.977050px;}
.y47{bottom:737.727900px;}
.y240{bottom:739.098150px;}
.y1f8{bottom:739.664850px;}
.y216{bottom:739.665000px;}
.y1ab{bottom:740.019300px;}
.y94{bottom:745.520550px;}
.ye9{bottom:745.735800px;}
.y6c{bottom:747.035100px;}
.ydd{bottom:748.343700px;}
.y12b{bottom:749.361900px;}
.y157{bottom:750.531150px;}
.y46{bottom:758.727900px;}
.y23f{bottom:760.098150px;}
.y1f7{bottom:760.664850px;}
.y215{bottom:760.665000px;}
.y1aa{bottom:761.019300px;}
.y93{bottom:766.520400px;}
.ye8{bottom:766.735800px;}
.y6b{bottom:768.035100px;}
.y12a{bottom:770.361900px;}
.y156{bottom:771.531150px;}
.y1b{bottom:773.977050px;}
.y45{bottom:779.727900px;}
.y23e{bottom:781.098150px;}
.y1a9{bottom:782.019300px;}
.y92{bottom:787.520250px;}
.ye7{bottom:787.735800px;}
.y6a{bottom:789.035100px;}
.y129{bottom:791.361900px;}
.y155{bottom:792.531150px;}
.y1a{bottom:794.977050px;}
.y44{bottom:800.727900px;}
.y23d{bottom:802.098150px;}
.y1a8{bottom:803.019300px;}
.y91{bottom:808.520100px;}
.ye6{bottom:808.735800px;}
.y69{bottom:810.035100px;}
.y128{bottom:812.361900px;}
.y154{bottom:813.531150px;}
.y19{bottom:815.977050px;}
.y43{bottom:821.727900px;}
.y23c{bottom:823.098150px;}
.y1a7{bottom:824.019300px;}
.y90{bottom:829.519800px;}
.ye5{bottom:829.735800px;}
.y68{bottom:831.035100px;}
.y127{bottom:833.361900px;}
.y153{bottom:834.531150px;}
.y18{bottom:836.977050px;}
.y42{bottom:842.727900px;}
.y23b{bottom:844.098150px;}
.y19c{bottom:846.696900px;}
.y8f{bottom:850.519650px;}
.ye4{bottom:850.735800px;}
.y67{bottom:852.035100px;}
.y126{bottom:854.361900px;}
.y152{bottom:855.531150px;}
.y17{bottom:857.977050px;}
.y41{bottom:863.727900px;}
.y23a{bottom:865.098150px;}
.y8e{bottom:871.519350px;}
.ye3{bottom:871.735800px;}
.y19b{bottom:871.896900px;}
.y66{bottom:873.035100px;}
.y125{bottom:875.361900px;}
.y151{bottom:876.531150px;}
.y1a6{bottom:878.359350px;}
.y16{bottom:878.977050px;}
.y40{bottom:884.727900px;}
.y239{bottom:886.098150px;}
.y8d{bottom:892.519200px;}
.ye2{bottom:892.735800px;}
.y65{bottom:894.035100px;}
.y124{bottom:896.361900px;}
.y19a{bottom:897.096900px;}
.y150{bottom:897.531150px;}
.y15{bottom:899.977050px;}
.y3f{bottom:905.727900px;}
.ye1{bottom:913.735800px;}
.y123{bottom:917.361900px;}
.y14f{bottom:918.531150px;}
.y1d2{bottom:918.690900px;}
.y14{bottom:920.977050px;}
.y199{bottom:922.296900px;}
.y1a5{bottom:924.859350px;}
.y3e{bottom:926.727900px;}
.y122{bottom:938.361900px;}
.y14e{bottom:939.531150px;}
.y1d1{bottom:939.690900px;}
.y13{bottom:941.977050px;}
.yb9{bottom:946.258650px;}
.y198{bottom:947.496900px;}
.y3d{bottom:947.727900px;}
.y64{bottom:949.237200px;}
.y121{bottom:959.361900px;}
.y14d{bottom:960.531150px;}
.y238{bottom:960.575850px;}
.y1d0{bottom:960.690900px;}
.y12{bottom:962.977050px;}
.y3c{bottom:968.727900px;}
.y1a4{bottom:971.359350px;}
.yb8{bottom:971.458500px;}
.y197{bottom:972.696900px;}
.y120{bottom:980.361900px;}
.y14c{bottom:981.531150px;}
.y1cf{bottom:981.690900px;}
.y11{bottom:983.977050px;}
.y3b{bottom:989.727900px;}
.ye0{bottom:990.339600px;}
.y63{bottom:995.737200px;}
.yb7{bottom:996.658500px;}
.y196{bottom:997.896900px;}
.y19d{bottom:1002.531150px;}
.y1ce{bottom:1002.690900px;}
.y237{bottom:1007.075850px;}
.y3a{bottom:1010.727900px;}
.y1a3{bottom:1017.859350px;}
.y11f{bottom:1022.361900px;}
.y195{bottom:1023.096900px;}
.y14b{bottom:1023.531150px;}
.y1cd{bottom:1023.690900px;}
.ydf{bottom:1036.839600px;}
.ybc{bottom:1040.750850px;}
.y62{bottom:1042.237200px;}
.y11e{bottom:1043.361900px;}
.y14a{bottom:1044.531150px;}
.y1cc{bottom:1044.690900px;}
.y194{bottom:1048.296900px;}
.y10{bottom:1053.575850px;}
.y11d{bottom:1064.361900px;}
.y149{bottom:1065.531150px;}
.ybb{bottom:1065.950850px;}
.yde{bottom:1083.339600px;}
.y11c{bottom:1097.698800px;}
.hf{height:33.744000px;}
.hb{height:35.471835px;}
.ha{height:35.471894px;}
.h5{height:35.472000px;}
.hd{height:35.472435px;}
.h9{height:35.472969px;}
.hc{height:35.473131px;}
.h1{height:43.989258px;}
.h2{height:48.870000px;}
.h6{height:49.113281px;}
.h8{height:61.552119px;}
.h4{height:61.552734px;}
.h7{height:61.552761px;}
.h10{height:76.128000px;}
.he{height:81.984000px;}
.h3{height:146.400000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:17.477400px;}
.x3{left:21.602400px;}
.xc{left:54.850350px;}
.x12{left:77.952750px;}
.x2{left:93.543300px;}
.x17{left:95.173200px;}
.x6{left:117.425250px;}
.x4{left:119.055150px;}
.xb{left:168.661350px;}
.x5{left:255.543300px;}
.x18{left:455.244150px;}
.x15{left:456.874050px;}
.xf{left:459.000000px;}
.x14{left:463.500000px;}
.x19{left:470.480400px;}
.x7{left:482.080350px;}
.x8{left:483.088200px;}
.x9{left:484.114500px;}
.xa{left:485.168250px;}
.x13{left:625.889700px;}
.x16{left:642.472350px;}
.xd{left:652.606350px;}
.x11{left:668.834700px;}
.x1a{left:699.356100px;}
.x10{left:874.361250px;}
.x1{left:878.486250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.ls41{letter-spacing:-6.666667pt;}
.ls44{letter-spacing:-2.666667pt;}
.ls2c{letter-spacing:-2.346667pt;}
.ls23{letter-spacing:-1.333333pt;}
.ls3e{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.762667pt;}
.ls27{letter-spacing:-0.746667pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.645333pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.528000pt;}
.ls16{letter-spacing:-0.469333pt;}
.ls1{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.410667pt;}
.ls28{letter-spacing:-0.352000pt;}
.ls24{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls29{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.117333pt;}
.ls2a{letter-spacing:-0.102608pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005184pt;}
.ls20{letter-spacing:0.005516pt;}
.ls8{letter-spacing:0.006400pt;}
.ls21{letter-spacing:0.006696pt;}
.ls22{letter-spacing:0.006699pt;}
.ls11{letter-spacing:0.006933pt;}
.lsc{letter-spacing:0.058667pt;}
.ls1b{letter-spacing:0.093717pt;}
.ls4{letter-spacing:0.117333pt;}
.ls1c{letter-spacing:0.176000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.293333pt;}
.ls19{letter-spacing:0.352000pt;}
.ls31{letter-spacing:0.376229pt;}
.ls35{letter-spacing:0.410432pt;}
.ls3{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.528000pt;}
.ls30{letter-spacing:0.581445pt;}
.ls10{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:0.615648pt;}
.ls5{letter-spacing:0.645333pt;}
.ls34{letter-spacing:0.704000pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls37{letter-spacing:0.752459pt;}
.ls26{letter-spacing:0.762667pt;}
.ls33{letter-spacing:0.821333pt;}
.ls25{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.938667pt;}
.ls2d{letter-spacing:0.997333pt;}
.ls1d{letter-spacing:1.056000pt;}
.ls2e{letter-spacing:1.114667pt;}
.ls2f{letter-spacing:1.173333pt;}
.ls1e{letter-spacing:1.232000pt;}
.ls36{letter-spacing:1.290667pt;}
.ls1f{letter-spacing:1.349334pt;}
.ls38{letter-spacing:1.408000pt;}
.ls3d{letter-spacing:1.466667pt;}
.ls3b{letter-spacing:1.493333pt;}
.ls43{letter-spacing:1.525333pt;}
.ls42{letter-spacing:1.642667pt;}
.ls39{letter-spacing:1.701333pt;}
.ls32{letter-spacing:1.877333pt;}
.ls3a{letter-spacing:2.053333pt;}
.ls40{letter-spacing:2.080000pt;}
.ls3c{letter-spacing:2.240000pt;}
.ls9{letter-spacing:4.000000pt;}
.ws2{word-spacing:-36.800000pt;}
.ws21{word-spacing:-31.466667pt;}
.ws70{word-spacing:-30.133333pt;}
.ws6e{word-spacing:-26.133333pt;}
.ws69{word-spacing:-19.861333pt;}
.ws6c{word-spacing:-19.114667pt;}
.ws52{word-spacing:-17.600000pt;}
.ws40{word-spacing:-16.954667pt;}
.ws23{word-spacing:-16.309340pt;}
.ws33{word-spacing:-11.861333pt;}
.ws1{word-spacing:-11.184000pt;}
.ws53{word-spacing:-10.260800pt;}
.ws34{word-spacing:-10.123989pt;}
.ws3f{word-spacing:-10.089787pt;}
.ws4a{word-spacing:-9.918773pt;}
.ws41{word-spacing:-9.884571pt;}
.ws35{word-spacing:-9.514667pt;}
.ws3{word-spacing:-9.508341pt;}
.ws22{word-spacing:-9.508284pt;}
.ws32{word-spacing:-9.405733pt;}
.ws10{word-spacing:-1.936000pt;}
.ws7{word-spacing:-1.642667pt;}
.ws6{word-spacing:-1.584000pt;}
.ws17{word-spacing:-1.525333pt;}
.ws62{word-spacing:-1.493333pt;}
.ws55{word-spacing:-1.466667pt;}
.ws27{word-spacing:-1.408000pt;}
.ws66{word-spacing:-1.349333pt;}
.ws57{word-spacing:-1.290667pt;}
.ws2e{word-spacing:-1.232001pt;}
.ws38{word-spacing:-1.173333pt;}
.wsb{word-spacing:-1.114667pt;}
.ws1e{word-spacing:-1.056000pt;}
.ws5e{word-spacing:-0.997333pt;}
.ws71{word-spacing:-0.938667pt;}
.ws37{word-spacing:-0.880000pt;}
.ws5c{word-spacing:-0.821333pt;}
.ws67{word-spacing:-0.762667pt;}
.ws46{word-spacing:-0.704000pt;}
.ws3e{word-spacing:-0.645333pt;}
.ws51{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.528000pt;}
.ws16{word-spacing:-0.469333pt;}
.ws14{word-spacing:-0.410667pt;}
.ws4f{word-spacing:-0.352000pt;}
.ws1c{word-spacing:-0.293333pt;}
.ws3a{word-spacing:-0.234667pt;}
.ws30{word-spacing:-0.176000pt;}
.ws45{word-spacing:-0.117333pt;}
.ws18{word-spacing:-0.085333pt;}
.ws25{word-spacing:-0.058667pt;}
.ws31{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.058667pt;}
.ws2f{word-spacing:0.117333pt;}
.ws48{word-spacing:0.176000pt;}
.ws2b{word-spacing:0.234667pt;}
.ws50{word-spacing:0.293333pt;}
.ws2d{word-spacing:0.352000pt;}
.ws19{word-spacing:0.410667pt;}
.ws56{word-spacing:0.469333pt;}
.ws3b{word-spacing:0.528000pt;}
.ws13{word-spacing:0.586667pt;}
.ws15{word-spacing:0.645333pt;}
.ws49{word-spacing:0.704000pt;}
.ws36{word-spacing:0.746667pt;}
.ws20{word-spacing:0.762667pt;}
.ws39{word-spacing:0.821333pt;}
.ws26{word-spacing:0.880000pt;}
.ws4b{word-spacing:0.938667pt;}
.ws8{word-spacing:1.056000pt;}
.ws58{word-spacing:1.114667pt;}
.ws1b{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.232000pt;}
.ws61{word-spacing:1.290667pt;}
.ws5f{word-spacing:1.333333pt;}
.ws63{word-spacing:1.349333pt;}
.ws42{word-spacing:1.408000pt;}
.ws68{word-spacing:1.466667pt;}
.ws1a{word-spacing:1.525333pt;}
.ws5{word-spacing:1.584000pt;}
.ws4{word-spacing:1.642667pt;}
.ws3d{word-spacing:1.701333pt;}
.ws6d{word-spacing:1.760000pt;}
.ws24{word-spacing:1.818667pt;}
.ws4d{word-spacing:1.877333pt;}
.ws43{word-spacing:1.936000pt;}
.ws3c{word-spacing:1.994667pt;}
.ws28{word-spacing:2.053333pt;}
.ws29{word-spacing:2.112000pt;}
.ws11{word-spacing:2.170667pt;}
.ws59{word-spacing:2.229333pt;}
.ws44{word-spacing:2.288000pt;}
.ws47{word-spacing:2.346667pt;}
.ws65{word-spacing:2.405333pt;}
.ws2a{word-spacing:2.464000pt;}
.ws4c{word-spacing:2.522667pt;}
.wsc{word-spacing:2.581333pt;}
.ws54{word-spacing:2.640000pt;}
.ws5d{word-spacing:2.757333pt;}
.ws2c{word-spacing:2.757335pt;}
.ws9{word-spacing:2.816000pt;}
.ws5b{word-spacing:2.874667pt;}
.ws6b{word-spacing:2.992000pt;}
.ws6f{word-spacing:3.050667pt;}
.wsd{word-spacing:3.109333pt;}
.ws6a{word-spacing:3.285333pt;}
.ws60{word-spacing:3.344000pt;}
.wsa{word-spacing:3.461333pt;}
.ws4e{word-spacing:3.813333pt;}
.ws64{word-spacing:4.048000pt;}
.ws12{word-spacing:5.397333pt;}
.wse{word-spacing:7.274667pt;}
.wsf{word-spacing:7.450667pt;}
._7{margin-left:-21.333333pt;}
._a{margin-left:-18.943473pt;}
._10{margin-left:-17.557333pt;}
._4{margin-left:-15.552000pt;}
._f{margin-left:-9.317333pt;}
._b{margin-left:-8.213333pt;}
._11{margin-left:-6.792000pt;}
._5{margin-left:-5.888000pt;}
._2{margin-left:-4.272000pt;}
._c{margin-left:-3.114667pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.104000pt;}
._9{width:2.064000pt;}
._8{width:3.426667pt;}
._12{width:5.333333pt;}
._13{width:7.240000pt;}
._d{width:132.706133pt;}
._e{width:135.306667pt;}
._6{width:156.416000pt;}
.fs6{font-size:34.202459pt;}
.fs3{font-size:34.202667pt;}
.fs7{font-size:42.666539pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:58.666692pt;}
.fs9{font-size:69.333333pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:27.360133pt;}
.y109{bottom:35.527600pt;}
.y11a{bottom:40.160133pt;}
.y108{bottom:48.327600pt;}
.yba{bottom:50.364933pt;}
.y173{bottom:50.645600pt;}
.y1d8{bottom:51.212533pt;}
.y61{bottom:60.094400pt;}
.y8c{bottom:60.094533pt;}
.y183{bottom:60.306000pt;}
.y107{bottom:61.127600pt;}
.y172{bottom:63.445733pt;}
.y1d7{bottom:64.012533pt;}
.y1cb{bottom:68.031467pt;}
.y1df{bottom:69.805467pt;}
.yda{bottom:70.835600pt;}
.y60{bottom:72.894400pt;}
.y8b{bottom:72.894533pt;}
.y182{bottom:73.106000pt;}
.y106{bottom:73.927600pt;}
.y1d6{bottom:76.812533pt;}
.y233{bottom:78.813333pt;}
.y39{bottom:79.370000pt;}
.y1ca{bottom:80.831467pt;}
.yd9{bottom:83.635600pt;}
.y5f{bottom:85.694400pt;}
.y181{bottom:85.906000pt;}
.y105{bottom:86.727600pt;}
.yb6{bottom:87.499200pt;}
.y1a2{bottom:88.472133pt;}
.y1d3{bottom:88.538133pt;}
.y1d5{bottom:89.612533pt;}
.y38{bottom:92.170000pt;}
.y8a{bottom:93.253600pt;}
.y1c9{bottom:93.631467pt;}
.yd8{bottom:96.435600pt;}
.y25c{bottom:96.976133pt;}
.y214{bottom:97.479867pt;}
.y232{bottom:97.480000pt;}
.y1c7{bottom:97.794933pt;}
.y119{bottom:99.527600pt;}
.ydc{bottom:99.729067pt;}
.yb5{bottom:100.299067pt;}
.y1d4{bottom:102.412533pt;}
.y1f6{bottom:104.451067pt;}
.y89{bottom:106.053600pt;}
.y148{bottom:106.099467pt;}
.y1c8{bottom:106.431467pt;}
.y104{bottom:107.086667pt;}
.y1a1{bottom:107.138800pt;}
.yd7{bottom:109.235600pt;}
.y192{bottom:109.710933pt;}
.y37{bottom:112.529067pt;}
.yb4{bottom:113.098933pt;}
.y1de{bottom:115.212533pt;}
.y25b{bottom:115.642800pt;}
.y213{bottom:116.146533pt;}
.y231{bottom:116.146667pt;}
.y1c6{bottom:116.461600pt;}
.y88{bottom:118.853600pt;}
.y118{bottom:119.886667pt;}
.yd6{bottom:122.035600pt;}
.y1f5{bottom:123.117733pt;}
.y147{bottom:124.766133pt;}
.y36{bottom:125.329067pt;}
.y171{bottom:125.805467pt;}
.yb3{bottom:125.898800pt;}
.y1dd{bottom:128.012533pt;}
.y191{bottom:128.377600pt;}
.y87{bottom:131.653600pt;}
.y117{bottom:132.686667pt;}
.y25a{bottom:134.309467pt;}
.y212{bottom:134.813200pt;}
.y230{bottom:134.813333pt;}
.yd5{bottom:134.835600pt;}
.y1c5{bottom:135.128267pt;}
.y35{bottom:138.129067pt;}
.yb2{bottom:138.698667pt;}
.y1dc{bottom:140.812533pt;}
.y1f4{bottom:141.784400pt;}
.y146{bottom:143.432800pt;}
.y86{bottom:144.453600pt;}
.y170{bottom:144.472133pt;}
.y180{bottom:144.871067pt;}
.y116{bottom:145.486667pt;}
.y190{bottom:147.044267pt;}
.yd4{bottom:147.635600pt;}
.y34{bottom:150.929067pt;}
.yb1{bottom:151.498533pt;}
.y259{bottom:152.976133pt;}
.y211{bottom:153.479867pt;}
.y22f{bottom:153.480000pt;}
.y1db{bottom:153.612533pt;}
.y1c4{bottom:153.794933pt;}
.y115{bottom:158.286667pt;}
.y234{bottom:158.546400pt;}
.y103{bottom:158.876267pt;}
.yd3{bottom:160.435600pt;}
.y1f3{bottom:160.451067pt;}
.y145{bottom:162.099467pt;}
.y16f{bottom:163.138800pt;}
.y17f{bottom:163.537733pt;}
.yb0{bottom:164.298400pt;}
.y18f{bottom:165.710933pt;}
.y1da{bottom:166.412533pt;}
.y5e{bottom:170.424800pt;}
.y114{bottom:171.086667pt;}
.y33{bottom:171.288133pt;}
.y258{bottom:171.642800pt;}
.y22e{bottom:172.146667pt;}
.y1c3{bottom:172.461600pt;}
.y102{bottom:177.542933pt;}
.y85{bottom:178.697867pt;}
.y1f2{bottom:179.117733pt;}
.y1d9{bottom:179.212533pt;}
.y144{bottom:180.766133pt;}
.y16e{bottom:181.805467pt;}
.y17e{bottom:182.204400pt;}
.y113{bottom:183.886533pt;}
.y18e{bottom:184.377600pt;}
.yaf{bottom:184.657333pt;}
.y235{bottom:186.616800pt;}
.y236{bottom:188.317600pt;}
.y5d{bottom:189.091467pt;}
.y257{bottom:190.309467pt;}
.y210{bottom:190.813200pt;}
.y22d{bottom:190.813333pt;}
.y1c2{bottom:191.128267pt;}
.y101{bottom:196.209600pt;}
.y84{bottom:197.364533pt;}
.yae{bottom:197.457200pt;}
.y1f1{bottom:197.784400pt;}
.y143{bottom:199.432800pt;}
.yd2{bottom:199.685733pt;}
.y16d{bottom:200.472133pt;}
.y17d{bottom:200.871067pt;}
.y18d{bottom:203.044267pt;}
.y112{bottom:204.245600pt;}
.y5c{bottom:207.758133pt;}
.y20f{bottom:209.479867pt;}
.yad{bottom:210.257067pt;}
.y100{bottom:214.876267pt;}
.y83{bottom:216.031200pt;}
.y1f0{bottom:216.451067pt;}
.y111{bottom:217.045600pt;}
.y142{bottom:218.099467pt;}
.yd1{bottom:218.352400pt;}
.y16c{bottom:219.138800pt;}
.y17c{bottom:219.537733pt;}
.y32{bottom:220.779600pt;}
.y18c{bottom:221.710933pt;}
.yac{bottom:223.056933pt;}
.y5b{bottom:226.424800pt;}
.y256{bottom:227.642800pt;}
.y20e{bottom:228.146533pt;}
.y22c{bottom:228.146667pt;}
.y1c1{bottom:228.461600pt;}
.yff{bottom:233.542933pt;}
.y82{bottom:234.697867pt;}
.yab{bottom:235.856800pt;}
.y141{bottom:236.766133pt;}
.yd0{bottom:237.019067pt;}
.y110{bottom:237.404667pt;}
.y16b{bottom:237.805467pt;}
.y17b{bottom:238.204400pt;}
.y31{bottom:239.446267pt;}
.y18b{bottom:240.377600pt;}
.y1{bottom:241.570267pt;}
.y5a{bottom:245.091467pt;}
.y255{bottom:246.309467pt;}
.y20d{bottom:246.813200pt;}
.y22b{bottom:246.813333pt;}
.y1c0{bottom:247.128267pt;}
.y10f{bottom:250.204667pt;}
.yfe{bottom:252.209600pt;}
.y81{bottom:253.364533pt;}
.y1ef{bottom:253.784400pt;}
.y140{bottom:255.432800pt;}
.ycf{bottom:255.685733pt;}
.yaa{bottom:256.215733pt;}
.y16a{bottom:256.472133pt;}
.y17a{bottom:256.871067pt;}
.y30{bottom:258.112933pt;}
.y18a{bottom:259.044267pt;}
.y10e{bottom:263.004667pt;}
.y254{bottom:264.976133pt;}
.y20c{bottom:265.479867pt;}
.y22a{bottom:265.480000pt;}
.y1bf{bottom:265.794933pt;}
.ya9{bottom:269.015600pt;}
.yfd{bottom:270.876267pt;}
.y80{bottom:272.031200pt;}
.y1ee{bottom:272.451067pt;}
.y13f{bottom:274.099467pt;}
.yce{bottom:274.352400pt;}
.y169{bottom:275.138800pt;}
.y179{bottom:275.537733pt;}
.y10d{bottom:275.804667pt;}
.y2f{bottom:276.779600pt;}
.y189{bottom:277.710933pt;}
.ya8{bottom:281.815467pt;}
.y59{bottom:282.424800pt;}
.y253{bottom:283.642800pt;}
.y20b{bottom:284.146533pt;}
.y229{bottom:284.146667pt;}
.y1be{bottom:284.461600pt;}
.y10c{bottom:288.604800pt;}
.yfc{bottom:289.542933pt;}
.y7f{bottom:290.697867pt;}
.y1ed{bottom:291.117733pt;}
.y13e{bottom:292.766133pt;}
.ycd{bottom:293.019067pt;}
.y168{bottom:293.805467pt;}
.y178{bottom:294.204400pt;}
.ya7{bottom:294.615333pt;}
.y2e{bottom:295.446267pt;}
.y188{bottom:296.377600pt;}
.y58{bottom:301.091467pt;}
.y10b{bottom:301.404667pt;}
.y252{bottom:302.309467pt;}
.y20a{bottom:302.813200pt;}
.y228{bottom:302.813333pt;}
.y1bd{bottom:303.128267pt;}
.ya6{bottom:307.415200pt;}
.yfb{bottom:308.209600pt;}
.y7e{bottom:309.364533pt;}
.y1ec{bottom:309.784400pt;}
.y13d{bottom:311.432800pt;}
.ycc{bottom:311.685733pt;}
.y167{bottom:312.472133pt;}
.y177{bottom:312.871067pt;}
.y2d{bottom:314.112933pt;}
.y187{bottom:315.044267pt;}
.y57{bottom:319.758133pt;}
.ya5{bottom:320.215067pt;}
.y251{bottom:320.976133pt;}
.yf{bottom:321.473067pt;}
.y209{bottom:321.479867pt;}
.y227{bottom:321.480000pt;}
.y1bc{bottom:321.794933pt;}
.yfa{bottom:326.876267pt;}
.y7d{bottom:328.031200pt;}
.y1eb{bottom:328.451067pt;}
.y13c{bottom:330.099467pt;}
.ydb{bottom:330.352400pt;}
.y166{bottom:331.138800pt;}
.y176{bottom:331.537733pt;}
.y2c{bottom:332.779600pt;}
.ya4{bottom:333.014933pt;}
.y186{bottom:333.710933pt;}
.ye{bottom:335.873067pt;}
.y56{bottom:338.424800pt;}
.y250{bottom:339.642800pt;}
.y208{bottom:340.146533pt;}
.y226{bottom:340.146667pt;}
.y1bb{bottom:340.461600pt;}
.yf9{bottom:345.542933pt;}
.ya3{bottom:345.814800pt;}
.y7c{bottom:346.697867pt;}
.y1ea{bottom:347.117733pt;}
.y13b{bottom:348.766133pt;}
.ycb{bottom:349.019067pt;}
.y165{bottom:349.805467pt;}
.y175{bottom:350.204400pt;}
.yd{bottom:350.273067pt;}
.y2b{bottom:351.446267pt;}
.y185{bottom:352.377600pt;}
.y55{bottom:357.091467pt;}
.y24f{bottom:358.309467pt;}
.y207{bottom:358.813200pt;}
.y225{bottom:358.813333pt;}
.y1ba{bottom:359.128267pt;}
.yf8{bottom:364.209600pt;}
.yc{bottom:364.673067pt;}
.y7b{bottom:365.364533pt;}
.y1e9{bottom:365.784400pt;}
.ya2{bottom:366.173733pt;}
.y13a{bottom:367.432800pt;}
.yca{bottom:367.685733pt;}
.y164{bottom:368.472133pt;}
.y174{bottom:368.871067pt;}
.y184{bottom:371.044267pt;}
.y54{bottom:375.758133pt;}
.y24e{bottom:376.976133pt;}
.y206{bottom:377.479867pt;}
.y224{bottom:377.480000pt;}
.y1b9{bottom:377.794933pt;}
.ya1{bottom:378.973600pt;}
.yf7{bottom:382.876267pt;}
.y7a{bottom:384.031200pt;}
.y1e8{bottom:384.451067pt;}
.y139{bottom:386.099467pt;}
.yc9{bottom:386.352400pt;}
.y163{bottom:387.138800pt;}
.y2a{bottom:389.312933pt;}
.ya0{bottom:391.773467pt;}
.y24d{bottom:395.642800pt;}
.y205{bottom:396.146533pt;}
.y223{bottom:396.146667pt;}
.y1b8{bottom:396.461600pt;}
.yf6{bottom:401.542933pt;}
.y79{bottom:402.697867pt;}
.y1e7{bottom:403.117733pt;}
.y138{bottom:404.766133pt;}
.yc8{bottom:405.019067pt;}
.y162{bottom:405.805467pt;}
.yb{bottom:407.873067pt;}
.y29{bottom:407.979600pt;}
.y53{bottom:413.091467pt;}
.y24c{bottom:414.309467pt;}
.y204{bottom:414.813200pt;}
.y222{bottom:414.813333pt;}
.y1b7{bottom:415.128267pt;}
.yf5{bottom:420.209600pt;}
.y1e6{bottom:421.784400pt;}
.ya{bottom:422.273067pt;}
.y137{bottom:423.432800pt;}
.yc7{bottom:423.685733pt;}
.y161{bottom:424.472133pt;}
.y28{bottom:426.646267pt;}
.y52{bottom:431.758133pt;}
.y24b{bottom:432.976133pt;}
.y203{bottom:433.479867pt;}
.y221{bottom:433.480000pt;}
.y1b6{bottom:433.794933pt;}
.y193{bottom:434.699200pt;}
.y9{bottom:436.673067pt;}
.yf4{bottom:438.876267pt;}
.y78{bottom:440.031200pt;}
.y1e5{bottom:440.451067pt;}
.y136{bottom:442.099467pt;}
.yc6{bottom:442.352400pt;}
.y160{bottom:443.138800pt;}
.y27{bottom:445.312933pt;}
.y51{bottom:450.424800pt;}
.y24a{bottom:451.642800pt;}
.y202{bottom:452.146533pt;}
.y220{bottom:452.146667pt;}
.y1b5{bottom:452.461600pt;}
.y9f{bottom:457.353600pt;}
.y10a{bottom:457.542933pt;}
.y77{bottom:458.697867pt;}
.y1e4{bottom:459.117733pt;}
.y135{bottom:460.766133pt;}
.yc5{bottom:461.019067pt;}
.y15f{bottom:461.805467pt;}
.y26{bottom:463.979600pt;}
.y8{bottom:465.473067pt;}
.y50{bottom:469.091467pt;}
.y249{bottom:470.309467pt;}
.y201{bottom:470.813200pt;}
.y21f{bottom:470.813333pt;}
.y1b4{bottom:471.128267pt;}
.y9e{bottom:476.020133pt;}
.yf3{bottom:476.209600pt;}
.y76{bottom:477.364533pt;}
.yc4{bottom:479.685733pt;}
.y1a0{bottom:480.472133pt;}
.y25{bottom:482.646267pt;}
.y4f{bottom:487.758133pt;}
.y248{bottom:488.976133pt;}
.y21e{bottom:489.480000pt;}
.y1b3{bottom:489.794933pt;}
.y7{bottom:494.273067pt;}
.y9d{bottom:494.686667pt;}
.yf2{bottom:494.876267pt;}
.y75{bottom:496.031200pt;}
.y1e3{bottom:496.451067pt;}
.y134{bottom:498.099467pt;}
.yc3{bottom:498.352400pt;}
.y15e{bottom:499.138800pt;}
.y24{bottom:501.312933pt;}
.y4e{bottom:506.424800pt;}
.y247{bottom:507.642800pt;}
.y200{bottom:508.146533pt;}
.y1b2{bottom:508.461600pt;}
.y9c{bottom:513.353067pt;}
.yf1{bottom:513.542933pt;}
.y74{bottom:514.697867pt;}
.y133{bottom:516.766133pt;}
.yc2{bottom:517.019067pt;}
.y15d{bottom:517.805467pt;}
.y23{bottom:519.979600pt;}
.y6{bottom:523.073067pt;}
.y4d{bottom:525.091467pt;}
.y246{bottom:526.309467pt;}
.y1ff{bottom:526.813200pt;}
.y21d{bottom:526.813333pt;}
.y1b1{bottom:527.128267pt;}
.y9b{bottom:532.019600pt;}
.yf0{bottom:532.209600pt;}
.y73{bottom:533.364533pt;}
.y132{bottom:535.432800pt;}
.yc1{bottom:535.685733pt;}
.y19f{bottom:536.472133pt;}
.y1e2{bottom:537.784400pt;}
.y22{bottom:538.646267pt;}
.y4c{bottom:543.758133pt;}
.y245{bottom:544.976133pt;}
.y1fe{bottom:545.479867pt;}
.y21c{bottom:545.480000pt;}
.y9a{bottom:550.686000pt;}
.yef{bottom:550.876267pt;}
.y5{bottom:551.873067pt;}
.y72{bottom:552.031200pt;}
.y131{bottom:554.099467pt;}
.yc0{bottom:554.352400pt;}
.y19e{bottom:555.138800pt;}
.y21{bottom:557.312933pt;}
.y4b{bottom:562.424800pt;}
.y25d{bottom:563.642800pt;}
.y1fd{bottom:564.146533pt;}
.y21b{bottom:564.146667pt;}
.y1b0{bottom:564.461600pt;}
.y4{bottom:566.273067pt;}
.y99{bottom:569.352533pt;}
.yee{bottom:569.542933pt;}
.y71{bottom:570.697867pt;}
.y130{bottom:572.766133pt;}
.ybf{bottom:573.019067pt;}
.y15c{bottom:573.805467pt;}
.y20{bottom:575.979600pt;}
.y1e1{bottom:579.117733pt;}
.y4a{bottom:581.091467pt;}
.y244{bottom:582.309467pt;}
.y1fc{bottom:582.813200pt;}
.y21a{bottom:582.813333pt;}
.y1af{bottom:583.128267pt;}
.y98{bottom:588.019067pt;}
.yed{bottom:588.209600pt;}
.y70{bottom:589.364533pt;}
.y12f{bottom:591.432800pt;}
.ybe{bottom:591.685733pt;}
.y15b{bottom:592.472133pt;}
.y1f{bottom:594.646267pt;}
.y3{bottom:595.073067pt;}
.y243{bottom:600.976133pt;}
.y1fb{bottom:601.479867pt;}
.y219{bottom:601.480000pt;}
.y1ae{bottom:601.794933pt;}
.y97{bottom:606.685600pt;}
.yec{bottom:606.876267pt;}
.y6f{bottom:608.031200pt;}
.y12e{bottom:610.099467pt;}
.ybd{bottom:610.352400pt;}
.y15a{bottom:611.138800pt;}
.y1e{bottom:613.312933pt;}
.y49{bottom:618.424800pt;}
.y242{bottom:619.642800pt;}
.y1fa{bottom:620.146533pt;}
.y218{bottom:620.146667pt;}
.y1e0{bottom:620.451067pt;}
.y1ad{bottom:620.461600pt;}
.y2{bottom:623.873067pt;}
.y96{bottom:625.352000pt;}
.yeb{bottom:625.542933pt;}
.y6e{bottom:626.697867pt;}
.y12d{bottom:628.766133pt;}
.y159{bottom:629.805467pt;}
.y1d{bottom:631.979600pt;}
.y48{bottom:637.091467pt;}
.y241{bottom:638.309467pt;}
.y1f9{bottom:638.813200pt;}
.y217{bottom:638.813333pt;}
.y1ac{bottom:639.128267pt;}
.y95{bottom:644.018533pt;}
.yea{bottom:644.209600pt;}
.y6d{bottom:645.364533pt;}
.y12c{bottom:647.432800pt;}
.y158{bottom:648.472133pt;}
.y1c{bottom:650.646267pt;}
.y47{bottom:655.758133pt;}
.y240{bottom:656.976133pt;}
.y1f8{bottom:657.479867pt;}
.y216{bottom:657.480000pt;}
.y1ab{bottom:657.794933pt;}
.y94{bottom:662.684933pt;}
.ye9{bottom:662.876267pt;}
.y6c{bottom:664.031200pt;}
.ydd{bottom:665.194400pt;}
.y12b{bottom:666.099467pt;}
.y157{bottom:667.138800pt;}
.y46{bottom:674.424800pt;}
.y23f{bottom:675.642800pt;}
.y1f7{bottom:676.146533pt;}
.y215{bottom:676.146667pt;}
.y1aa{bottom:676.461600pt;}
.y93{bottom:681.351467pt;}
.ye8{bottom:681.542933pt;}
.y6b{bottom:682.697867pt;}
.y12a{bottom:684.766133pt;}
.y156{bottom:685.805467pt;}
.y1b{bottom:687.979600pt;}
.y45{bottom:693.091467pt;}
.y23e{bottom:694.309467pt;}
.y1a9{bottom:695.128267pt;}
.y92{bottom:700.018000pt;}
.ye7{bottom:700.209600pt;}
.y6a{bottom:701.364533pt;}
.y129{bottom:703.432800pt;}
.y155{bottom:704.472133pt;}
.y1a{bottom:706.646267pt;}
.y44{bottom:711.758133pt;}
.y23d{bottom:712.976133pt;}
.y1a8{bottom:713.794933pt;}
.y91{bottom:718.684533pt;}
.ye6{bottom:718.876267pt;}
.y69{bottom:720.031200pt;}
.y128{bottom:722.099467pt;}
.y154{bottom:723.138800pt;}
.y19{bottom:725.312933pt;}
.y43{bottom:730.424800pt;}
.y23c{bottom:731.642800pt;}
.y1a7{bottom:732.461600pt;}
.y90{bottom:737.350933pt;}
.ye5{bottom:737.542933pt;}
.y68{bottom:738.697867pt;}
.y127{bottom:740.766133pt;}
.y153{bottom:741.805467pt;}
.y18{bottom:743.979600pt;}
.y42{bottom:749.091467pt;}
.y23b{bottom:750.309467pt;}
.y19c{bottom:752.619467pt;}
.y8f{bottom:756.017467pt;}
.ye4{bottom:756.209600pt;}
.y67{bottom:757.364533pt;}
.y126{bottom:759.432800pt;}
.y152{bottom:760.472133pt;}
.y17{bottom:762.646267pt;}
.y41{bottom:767.758133pt;}
.y23a{bottom:768.976133pt;}
.y8e{bottom:774.683867pt;}
.ye3{bottom:774.876267pt;}
.y19b{bottom:775.019467pt;}
.y66{bottom:776.031200pt;}
.y125{bottom:778.099467pt;}
.y151{bottom:779.138800pt;}
.y1a6{bottom:780.763867pt;}
.y16{bottom:781.312933pt;}
.y40{bottom:786.424800pt;}
.y239{bottom:787.642800pt;}
.y8d{bottom:793.350400pt;}
.ye2{bottom:793.542933pt;}
.y65{bottom:794.697867pt;}
.y124{bottom:796.766133pt;}
.y19a{bottom:797.419467pt;}
.y150{bottom:797.805467pt;}
.y15{bottom:799.979600pt;}
.y3f{bottom:805.091467pt;}
.ye1{bottom:812.209600pt;}
.y123{bottom:815.432800pt;}
.y14f{bottom:816.472133pt;}
.y1d2{bottom:816.614133pt;}
.y14{bottom:818.646267pt;}
.y199{bottom:819.819467pt;}
.y1a5{bottom:822.097200pt;}
.y3e{bottom:823.758133pt;}
.y122{bottom:834.099467pt;}
.y14e{bottom:835.138800pt;}
.y1d1{bottom:835.280800pt;}
.y13{bottom:837.312933pt;}
.yb9{bottom:841.118800pt;}
.y198{bottom:842.219467pt;}
.y3d{bottom:842.424800pt;}
.y64{bottom:843.766400pt;}
.y121{bottom:852.766133pt;}
.y14d{bottom:853.805467pt;}
.y238{bottom:853.845200pt;}
.y1d0{bottom:853.947467pt;}
.y12{bottom:855.979600pt;}
.y3c{bottom:861.091467pt;}
.y1a4{bottom:863.430533pt;}
.yb8{bottom:863.518667pt;}
.y197{bottom:864.619467pt;}
.y120{bottom:871.432800pt;}
.y14c{bottom:872.472133pt;}
.y1cf{bottom:872.614133pt;}
.y11{bottom:874.646267pt;}
.y3b{bottom:879.758133pt;}
.ye0{bottom:880.301867pt;}
.y63{bottom:885.099733pt;}
.yb7{bottom:885.918667pt;}
.y196{bottom:887.019467pt;}
.y19d{bottom:891.138800pt;}
.y1ce{bottom:891.280800pt;}
.y237{bottom:895.178533pt;}
.y3a{bottom:898.424800pt;}
.y1a3{bottom:904.763867pt;}
.y11f{bottom:908.766133pt;}
.y195{bottom:909.419467pt;}
.y14b{bottom:909.805467pt;}
.y1cd{bottom:909.947467pt;}
.ydf{bottom:921.635200pt;}
.ybc{bottom:925.111867pt;}
.y62{bottom:926.433067pt;}
.y11e{bottom:927.432800pt;}
.y14a{bottom:928.472133pt;}
.y1cc{bottom:928.614133pt;}
.y194{bottom:931.819467pt;}
.y10{bottom:936.511867pt;}
.y11d{bottom:946.099467pt;}
.y149{bottom:947.138800pt;}
.ybb{bottom:947.511867pt;}
.yde{bottom:962.968533pt;}
.y11c{bottom:975.732267pt;}
.hf{height:29.994667pt;}
.hb{height:31.530520pt;}
.ha{height:31.530573pt;}
.h5{height:31.530667pt;}
.hd{height:31.531053pt;}
.h9{height:31.531528pt;}
.hc{height:31.531672pt;}
.h1{height:39.101562pt;}
.h2{height:43.440000pt;}
.h6{height:43.656250pt;}
.h8{height:54.712995pt;}
.h4{height:54.713542pt;}
.h7{height:54.713565pt;}
.h10{height:67.669333pt;}
.he{height:72.874667pt;}
.h3{height:130.133333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:15.535467pt;}
.x3{left:19.202133pt;}
.xc{left:48.755867pt;}
.x12{left:69.291333pt;}
.x2{left:83.149600pt;}
.x17{left:84.598400pt;}
.x6{left:104.378000pt;}
.x4{left:105.826800pt;}
.xb{left:149.921200pt;}
.x5{left:227.149600pt;}
.x18{left:404.661467pt;}
.x15{left:406.110267pt;}
.xf{left:408.000000pt;}
.x14{left:412.000000pt;}
.x19{left:418.204800pt;}
.x7{left:428.515867pt;}
.x8{left:429.411733pt;}
.x9{left:430.324000pt;}
.xa{left:431.260667pt;}
.x13{left:556.346400pt;}
.x16{left:571.086533pt;}
.xd{left:580.094533pt;}
.x11{left:594.519733pt;}
.x1a{left:621.649867pt;}
.x10{left:777.210000pt;}
.x1{left:780.876667pt;}
}




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