
    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_5a8ac9c5a7858fab0ad7c908.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_683a35498aa0f21d97336ff8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.193848;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_a34494c105a44ec2b96b2ed7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_3852dbbc8687b25f2d6470f2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_1e1bf76a3636383ade26dd95.woff')format("woff");}.ff5{font-family:ff5;line-height:1.016113;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_5cff563f45bcd5f3ef4b507b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.193848;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_46d4650aad9d5078b69151f8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.833984;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_7e6f95e529b915010e7ba5fa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.016113;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_5cff563f45bcd5f3ef4b507b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.193848;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_6b4e6c538a276a61853e5e64.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_3dcd855fec90200bf03fde43.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_31ea0de1bf949d4f3a6614b1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.133789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_38e21664a934c7028176649a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-11.982000px;}
.v6{vertical-align:-10.977000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:6.013062px;}
.v4{vertical-align:11.982000px;}
.v1{vertical-align:14.020200px;}
.v2{vertical-align:16.752000px;}
.v5{vertical-align:20.992200px;}
.ls1d{letter-spacing:-5.508000px;}
.lsb{letter-spacing:-5.376000px;}
.ls9{letter-spacing:-4.536000px;}
.ls53{letter-spacing:-3.819000px;}
.ls1c{letter-spacing:-3.240000px;}
.ls16{letter-spacing:-3.159000px;}
.ls51{letter-spacing:-3.105000px;}
.ls31{letter-spacing:-2.538000px;}
.ls48{letter-spacing:-2.415000px;}
.ls4b{letter-spacing:-2.277000px;}
.ls5b{letter-spacing:-2.205000px;}
.ls2e{letter-spacing:-1.932000px;}
.ls57{letter-spacing:-1.764000px;}
.ls23{letter-spacing:-1.725000px;}
.lsd{letter-spacing:-1.680000px;}
.ls30{letter-spacing:-1.587000px;}
.ls44{letter-spacing:-1.512000px;}
.ls20{letter-spacing:-1.449000px;}
.ls5c{letter-spacing:-1.386000px;}
.ls4a{letter-spacing:-1.296000px;}
.ls41{letter-spacing:-1.242000px;}
.lsa{letter-spacing:-1.092000px;}
.ls54{letter-spacing:-0.972000px;}
.ls42{letter-spacing:-0.966000px;}
.ls15{letter-spacing:-0.855000px;}
.ls39{letter-spacing:-0.810000px;}
.ls37{letter-spacing:-0.627000px;}
.ls49{letter-spacing:-0.570000px;}
.ls52{letter-spacing:-0.552000px;}
.ls2f{letter-spacing:-0.414000px;}
.ls5d{letter-spacing:-0.378000px;}
.ls1e{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.171000px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000300px;}
.ls4e{letter-spacing:0.001200px;}
.ls36{letter-spacing:0.001554px;}
.ls1{letter-spacing:0.001560px;}
.ls3a{letter-spacing:0.001800px;}
.ls47{letter-spacing:0.002154px;}
.ls4c{letter-spacing:0.002400px;}
.ls2a{letter-spacing:0.006216px;}
.ls3b{letter-spacing:0.006816px;}
.ls5f{letter-spacing:0.006840px;}
.ls4f{letter-spacing:0.007098px;}
.ls2{letter-spacing:0.007440px;}
.ls0{letter-spacing:0.007620px;}
.ls34{letter-spacing:0.007776px;}
.ls3{letter-spacing:0.008220px;}
.ls1a{letter-spacing:0.008376px;}
.ls27{letter-spacing:0.009003px;}
.ls29{letter-spacing:0.009603px;}
.ls4d{letter-spacing:0.010731px;}
.ls3f{letter-spacing:0.338958px;}
.ls25{letter-spacing:0.717600px;}
.ls26{letter-spacing:0.903213px;}
.ls8{letter-spacing:1.188000px;}
.ls12{letter-spacing:2.400000px;}
.ls35{letter-spacing:2.484000px;}
.ls33{letter-spacing:2.529024px;}
.ls24{letter-spacing:2.829000px;}
.ls1f{letter-spacing:3.300000px;}
.ls32{letter-spacing:3.519000px;}
.ls3c{letter-spacing:3.541758px;}
.ls45{letter-spacing:3.588000px;}
.ls46{letter-spacing:3.657000px;}
.ls5a{letter-spacing:4.095000px;}
.lse{letter-spacing:4.200000px;}
.ls22{letter-spacing:4.275000px;}
.ls21{letter-spacing:4.519500px;}
.ls18{letter-spacing:4.560900px;}
.ls2d{letter-spacing:4.650000px;}
.ls2c{letter-spacing:4.677558px;}
.ls43{letter-spacing:4.752000px;}
.ls59{letter-spacing:5.103000px;}
.lsf{letter-spacing:5.760000px;}
.lsc{letter-spacing:5.880000px;}
.ls5{letter-spacing:6.000000px;}
.ls14{letter-spacing:6.300000px;}
.ls13{letter-spacing:6.675000px;}
.ls55{letter-spacing:6.867000px;}
.ls50{letter-spacing:7.200000px;}
.ls56{letter-spacing:7.500000px;}
.ls2b{letter-spacing:7.668000px;}
.ls5e{letter-spacing:7.950000px;}
.ls3e{letter-spacing:8.160156px;}
.ls40{letter-spacing:8.175000px;}
.ls10{letter-spacing:8.328300px;}
.ls6{letter-spacing:8.400000px;}
.ls28{letter-spacing:9.867000px;}
.ls17{letter-spacing:10.425900px;}
.ls11{letter-spacing:16.146000px;}
.ls58{letter-spacing:16.821000px;}
.ls3d{letter-spacing:59.186160px;}
.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;}
}
.ws22{word-spacing:-69.000000px;}
.ws17{word-spacing:-39.840000px;}
.ws2e{word-spacing:-29.250000px;}
.ws4d{word-spacing:-29.025000px;}
.ws44{word-spacing:-28.575000px;}
.ws3a{word-spacing:-28.275000px;}
.ws1{word-spacing:-27.864000px;}
.wse{word-spacing:-27.750000px;}
.ws24{word-spacing:-25.725000px;}
.ws21{word-spacing:-25.350000px;}
.ws40{word-spacing:-24.570000px;}
.ws1c{word-spacing:-24.375000px;}
.ws4e{word-spacing:-22.860000px;}
.ws2a{word-spacing:-22.761000px;}
.ws3{word-spacing:-22.740000px;}
.ws7{word-spacing:-22.620000px;}
.ws3f{word-spacing:-21.789000px;}
.ws10{word-spacing:-19.602000px;}
.ws13{word-spacing:-19.389000px;}
.ws2b{word-spacing:-19.197000px;}
.wsf{word-spacing:-18.102000px;}
.ws46{word-spacing:-17.703000px;}
.ws4b{word-spacing:-17.325000px;}
.ws11{word-spacing:-17.043000px;}
.ws6{word-spacing:-16.860000px;}
.ws47{word-spacing:-16.821000px;}
.ws0{word-spacing:-16.680000px;}
.ws26{word-spacing:-16.629000px;}
.ws3c{word-spacing:-16.491000px;}
.ws48{word-spacing:-16.317000px;}
.ws2f{word-spacing:-16.077000px;}
.ws45{word-spacing:-15.939000px;}
.ws1e{word-spacing:-15.594000px;}
.ws41{word-spacing:-15.561000px;}
.ws27{word-spacing:-15.456000px;}
.ws2{word-spacing:-15.372000px;}
.ws19{word-spacing:-15.174000px;}
.ws25{word-spacing:-15.111000px;}
.ws4{word-spacing:-14.820000px;}
.ws37{word-spacing:-14.766000px;}
.ws36{word-spacing:-14.628000px;}
.ws18{word-spacing:-14.499000px;}
.ws3b{word-spacing:-13.938000px;}
.ws14{word-spacing:-13.338000px;}
.ws5{word-spacing:-13.140000px;}
.ws1a{word-spacing:-13.014000px;}
.ws31{word-spacing:-11.826000px;}
.ws12{word-spacing:-11.303787px;}
.ws28{word-spacing:-10.800000px;}
.ws1f{word-spacing:-9.936069px;}
.ws1d{word-spacing:-8.846442px;}
.wsa{word-spacing:-8.400000px;}
.ws30{word-spacing:-7.776054px;}
.ws4c{word-spacing:-7.500000px;}
.ws3e{word-spacing:-6.417000px;}
.ws43{word-spacing:-6.300000px;}
.ws9{word-spacing:-6.000000px;}
.ws33{word-spacing:-4.752000px;}
.wsd{word-spacing:-4.200000px;}
.ws49{word-spacing:-4.095000px;}
.ws4f{word-spacing:-2.940000px;}
.ws15{word-spacing:-2.400000px;}
.ws35{word-spacing:-2.376000px;}
.ws8{word-spacing:0.000000px;}
.ws2d{word-spacing:0.171000px;}
.ws1b{word-spacing:0.240000px;}
.ws38{word-spacing:0.570000px;}
.ws2c{word-spacing:0.627000px;}
.ws3d{word-spacing:0.759000px;}
.ws16{word-spacing:0.855000px;}
.wsc{word-spacing:1.092000px;}
.ws32{word-spacing:1.242000px;}
.ws39{word-spacing:1.296000px;}
.ws23{word-spacing:1.725000px;}
.ws29{word-spacing:2.070000px;}
.ws4a{word-spacing:2.205000px;}
.ws42{word-spacing:3.819000px;}
.wsb{word-spacing:4.536000px;}
.ws20{word-spacing:6.003000px;}
.ws34{word-spacing:59.186160px;}
._30{margin-left:-17.677800px;}
._2f{margin-left:-16.048200px;}
._2a{margin-left:-12.137700px;}
._2b{margin-left:-10.884900px;}
._23{margin-left:-9.765600px;}
._c{margin-left:-8.437500px;}
._b{margin-left:-6.452700px;}
._3{margin-left:-5.172300px;}
._8{margin-left:-3.341100px;}
._4{margin-left:-2.211300px;}
._5{margin-left:-1.190400px;}
._6{width:1.386000px;}
._1{width:2.400000px;}
._d{width:3.823200px;}
._9{width:4.830000px;}
._7{width:6.582000px;}
._a{width:8.448000px;}
._e{width:9.672000px;}
._f{width:10.740000px;}
._10{width:11.757300px;}
._12{width:13.590000px;}
._1d{width:15.559500px;}
._1e{width:16.569000px;}
._1c{width:17.640600px;}
._15{width:18.861600px;}
._16{width:20.987400px;}
._17{width:22.008900px;}
._1b{width:23.046000px;}
._24{width:24.426000px;}
._1a{width:26.202900px;}
._2c{width:27.704160px;}
._18{width:28.911000px;}
._19{width:30.082200px;}
._2d{width:31.289100px;}
._31{width:34.041000px;}
._2e{width:35.115000px;}
._1f{width:43.445160px;}
._28{width:74.459100px;}
._14{width:85.554000px;}
._11{width:260.610000px;}
._27{width:492.457200px;}
._29{width:494.430000px;}
._13{width:501.390000px;}
._26{width:503.040000px;}
._21{width:504.309000px;}
._0{width:578.400000px;}
._20{width:993.706200px;}
._22{width:996.331200px;}
._25{width:1000.381200px;}
._2{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fse{font-size:47.223000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yd6{bottom:106.165350px;}
.y20c{bottom:106.244850px;}
.y169{bottom:106.251300px;}
.y8a{bottom:106.284300px;}
.yfd{bottom:106.288950px;}
.y1f{bottom:106.291350px;}
.y64{bottom:106.293300px;}
.yb1{bottom:106.293450px;}
.y44{bottom:106.296300px;}
.y22c{bottom:106.307850px;}
.y13e{bottom:106.308000px;}
.y18c{bottom:106.328700px;}
.y1ec{bottom:106.355100px;}
.y25b{bottom:107.725350px;}
.y1cb{bottom:109.294800px;}
.y168{bottom:123.504300px;}
.y89{bottom:123.537300px;}
.y63{bottom:123.546300px;}
.yb0{bottom:123.546450px;}
.y1e{bottom:126.151350px;}
.y43{bottom:126.544800px;}
.yfc{bottom:126.712950px;}
.y13d{bottom:126.852750px;}
.y1eb{bottom:126.908850px;}
.y22b{bottom:127.239600px;}
.y18b{bottom:127.270200px;}
.y23a{bottom:127.444350px;}
.yd5{bottom:127.693350px;}
.y1ca{bottom:127.798200px;}
.y25a{bottom:127.979850px;}
.y20b{bottom:135.949350px;}
.y167{bottom:140.757300px;}
.y88{bottom:140.790300px;}
.y62{bottom:143.794800px;}
.yaf{bottom:143.794950px;}
.y1c9{bottom:145.045200px;}
.y1d{bottom:145.997250px;}
.yfb{bottom:147.136950px;}
.y13c{bottom:147.397500px;}
.y1ea{bottom:147.462600px;}
.y22a{bottom:148.171350px;}
.y18a{bottom:148.211700px;}
.y259{bottom:148.234350px;}
.yd4{bottom:149.221350px;}
.y20a{bottom:157.148850px;}
.y166{bottom:158.010300px;}
.y87{bottom:158.043300px;}
.yae{bottom:162.283500px;}
.y1c8{bottom:162.298200px;}
.y1c{bottom:165.857250px;}
.yfa{bottom:167.554050px;}
.y13b{bottom:167.962350px;}
.y189{bottom:169.153200px;}
.y1ac{bottom:170.556900px;}
.y42{bottom:170.650200px;}
.yd3{bottom:170.749350px;}
.y165{bottom:175.263300px;}
.y86{bottom:175.296300px;}
.y1e9{bottom:176.521350px;}
.y258{bottom:176.993850px;}
.y229{bottom:177.608100px;}
.y239{bottom:178.348350px;}
.yad{bottom:179.536500px;}
.y1c7{bottom:179.548200px;}
.y1b{bottom:185.717250px;}
.y209{bottom:186.853350px;}
.y11b{bottom:187.827750px;}
.y61{bottom:187.841250px;}
.yf9{bottom:187.978050px;}
.y13a{bottom:188.507100px;}
.y188{bottom:190.094700px;}
.y41{bottom:190.936200px;}
.y1ab{bottom:191.343150px;}
.yd2{bottom:192.277350px;}
.y164{bottom:192.516300px;}
.y85{bottom:195.544800px;}
.yac{bottom:196.789500px;}
.y1c6{bottom:196.801200px;}
.y1e8{bottom:197.075100px;}
.y257{bottom:197.248350px;}
.y228{bottom:198.539850px;}
.y238{bottom:199.547850px;}
.y1a{bottom:205.577250px;}
.y208{bottom:208.052850px;}
.yf8{bottom:208.326600px;}
.y139{bottom:209.051850px;}
.y163{bottom:209.769300px;}
.y60{bottom:210.973500px;}
.y187{bottom:211.036200px;}
.y40{bottom:211.222200px;}
.y11a{bottom:211.650000px;}
.y1aa{bottom:212.129400px;}
.yd1{bottom:213.805350px;}
.yab{bottom:214.042500px;}
.y237{bottom:220.747350px;}
.y19{bottom:225.437250px;}
.y256{bottom:226.007850px;}
.y1e7{bottom:226.133850px;}
.y162{bottom:227.022300px;}
.y227{bottom:227.976600px;}
.yf7{bottom:228.750600px;}
.y207{bottom:229.252350px;}
.y138{bottom:229.596600px;}
.yaa{bottom:231.295500px;}
.y3f{bottom:231.508200px;}
.y186{bottom:231.992550px;}
.y1a9{bottom:232.915650px;}
.y5f{bottom:234.105750px;}
.yd0{bottom:235.333350px;}
.y119{bottom:235.516500px;}
.y84{bottom:239.667900px;}
.y236{bottom:241.946850px;}
.y1c5{bottom:243.809250px;}
.y161{bottom:244.275300px;}
.y255{bottom:246.262350px;}
.y1e6{bottom:246.687600px;}
.ya9{bottom:248.548500px;}
.y226{bottom:248.908350px;}
.yf6{bottom:249.174600px;}
.y137{bottom:250.141350px;}
.y3e{bottom:251.794200px;}
.y185{bottom:252.934050px;}
.y1a8{bottom:253.698750px;}
.ycf{bottom:256.861350px;}
.y5e{bottom:257.238000px;}
.y18{bottom:258.047250px;}
.y206{bottom:258.956850px;}
.y118{bottom:259.338750px;}
.y83{bottom:260.385150px;}
.y160{bottom:261.528300px;}
.y1c4{bottom:265.733250px;}
.ya8{bottom:268.797000px;}
.yf5{bottom:269.598600px;}
.y136{bottom:270.686100px;}
.y235{bottom:271.651350px;}
.y3d{bottom:272.080200px;}
.y184{bottom:273.875550px;}
.y1a7{bottom:274.485000px;}
.y254{bottom:275.021850px;}
.y1e5{bottom:275.746350px;}
.y225{bottom:278.345100px;}
.yce{bottom:278.389350px;}
.y15f{bottom:278.781300px;}
.y205{bottom:280.156350px;}
.y5d{bottom:280.370250px;}
.y82{bottom:281.102400px;}
.y117{bottom:283.161000px;}
.yf4{bottom:290.022600px;}
.y135{bottom:291.230850px;}
.y3c{bottom:292.366200px;}
.y234{bottom:292.850850px;}
.y183{bottom:294.817050px;}
.y1a6{bottom:295.269750px;}
.y253{bottom:295.276350px;}
.y15e{bottom:296.034300px;}
.y1c3{bottom:296.162250px;}
.y1e4{bottom:296.300100px;}
.y224{bottom:299.276850px;}
.ycd{bottom:299.917350px;}
.y81{bottom:301.819650px;}
.y5c{bottom:303.525000px;}
.y116{bottom:306.983250px;}
.y17{bottom:307.667250px;}
.y204{bottom:309.860850px;}
.yf3{bottom:310.446600px;}
.y134{bottom:311.815950px;}
.y3b{bottom:312.652200px;}
.ya7{bottom:312.831000px;}
.y15d{bottom:313.287300px;}
.y1a5{bottom:316.053000px;}
.y1e3{bottom:316.853850px;}
.y1c2{bottom:318.086250px;}
.ycc{bottom:321.445350px;}
.y80{bottom:322.536900px;}
.y233{bottom:322.555350px;}
.y252{bottom:324.035850px;}
.y5b{bottom:326.657250px;}
.y223{bottom:328.713600px;}
.y16{bottom:329.019300px;}
.y15c{bottom:330.540300px;}
.y115{bottom:330.805500px;}
.yf2{bottom:330.870600px;}
.y203{bottom:331.060350px;}
.y133{bottom:332.360700px;}
.y3a{bottom:332.938200px;}
.ya6{bottom:333.168750px;}
.y1a4{bottom:336.839250px;}
.y182{bottom:337.023300px;}
.y1c1{bottom:340.010250px;}
.ycb{bottom:342.973350px;}
.y7f{bottom:343.254150px;}
.y232{bottom:343.754850px;}
.y1e2{bottom:345.912600px;}
.y15b{bottom:347.793300px;}
.y15{bottom:348.863400px;}
.y222{bottom:349.645350px;}
.y5a{bottom:349.789500px;}
.yf1{bottom:351.294600px;}
.y202{bottom:352.259850px;}
.y251{bottom:352.795350px;}
.y132{bottom:352.905450px;}
.y39{bottom:353.224200px;}
.ya5{bottom:353.506500px;}
.y114{bottom:354.627750px;}
.y1a3{bottom:357.619350px;}
.y26f{bottom:359.156550px;}
.y1c0{bottom:361.934250px;}
.y7e{bottom:363.971400px;}
.yca{bottom:364.501350px;}
.y15a{bottom:365.046300px;}
.y1e1{bottom:366.466350px;}
.y14{bottom:368.723400px;}
.yf0{bottom:371.718600px;}
.y59{bottom:372.921750px;}
.y131{bottom:373.450200px;}
.y201{bottom:373.459350px;}
.y38{bottom:373.510200px;}
.ya4{bottom:373.844250px;}
.y1a2{bottom:378.405600px;}
.y113{bottom:378.457350px;}
.y221{bottom:379.082100px;}
.y26e{bottom:379.406550px;}
.y250{bottom:381.554850px;}
.y1bf{bottom:383.858250px;}
.y7d{bottom:384.688650px;}
.y159{bottom:385.294800px;}
.yc9{bottom:386.029350px;}
.y13{bottom:388.583400px;}
.yef{bottom:392.142600px;}
.y37{bottom:393.796200px;}
.y130{bottom:393.994950px;}
.ya3{bottom:394.182000px;}
.y200{bottom:394.658850px;}
.y1e0{bottom:395.525100px;}
.y58{bottom:396.093450px;}
.y1a1{bottom:399.191850px;}
.y158{bottom:399.540300px;}
.y26d{bottom:399.656550px;}
.y220{bottom:400.013850px;}
.y181{bottom:400.021800px;}
.y24f{bottom:401.809350px;}
.y112{bottom:402.419400px;}
.y7c{bottom:405.405900px;}
.yc8{bottom:407.557350px;}
.y12{bottom:408.443400px;}
.yee{bottom:412.566600px;}
.y36{bottom:414.082200px;}
.y1be{bottom:414.287250px;}
.y12f{bottom:414.539700px;}
.ya2{bottom:414.544950px;}
.y1ff{bottom:415.858350px;}
.y1df{bottom:416.078850px;}
.y157{bottom:416.793300px;}
.y57{bottom:419.225700px;}
.y26c{bottom:419.906550px;}
.y1a0{bottom:419.978100px;}
.y180{bottom:420.963300px;}
.y7b{bottom:426.123150px;}
.y111{bottom:426.241650px;}
.y11{bottom:428.293350px;}
.yc7{bottom:429.085350px;}
.y21f{bottom:429.450600px;}
.y24e{bottom:430.568850px;}
.yed{bottom:432.990600px;}
.y156{bottom:434.046300px;}
.y35{bottom:434.368200px;}
.ya1{bottom:434.882700px;}
.y12e{bottom:435.084450px;}
.y1de{bottom:436.632600px;}
.y26b{bottom:440.156550px;}
.y19f{bottom:440.762700px;}
.y17f{bottom:441.904800px;}
.y56{bottom:442.357950px;}
.y1fe{bottom:445.562850px;}
.y7a{bottom:446.840400px;}
.y10{bottom:448.153350px;}
.y110{bottom:450.063900px;}
.y21e{bottom:450.382350px;}
.yc6{bottom:450.613350px;}
.y24d{bottom:450.823350px;}
.yec{bottom:453.414600px;}
.y155{bottom:454.294800px;}
.y34{bottom:454.654200px;}
.ya0{bottom:455.220450px;}
.y12d{bottom:455.629200px;}
.y19e{bottom:461.539800px;}
.y17e{bottom:462.846300px;}
.y55{bottom:465.490200px;}
.y1dd{bottom:465.691350px;}
.y1bd{bottom:466.723350px;}
.y1fd{bottom:466.762350px;}
.y79{bottom:467.557650px;}
.yf{bottom:468.013350px;}
.y154{bottom:468.543300px;}
.yc5{bottom:472.141350px;}
.y26a{bottom:473.156550px;}
.yeb{bottom:473.838600px;}
.y10f{bottom:473.886150px;}
.y33{bottom:474.940200px;}
.y9f{bottom:475.558200px;}
.y12c{bottom:476.173950px;}
.y24c{bottom:479.582850px;}
.y21d{bottom:479.819100px;}
.y19d{bottom:482.326050px;}
.y17d{bottom:483.787800px;}
.y153{bottom:485.796300px;}
.y1dc{bottom:486.245100px;}
.ye{bottom:487.873350px;}
.y1fc{bottom:487.961850px;}
.y78{bottom:488.274900px;}
.y54{bottom:488.622450px;}
.y1bc{bottom:488.646750px;}
.yc4{bottom:493.669350px;}
.yea{bottom:494.262600px;}
.y32{bottom:495.226200px;}
.y9e{bottom:495.895950px;}
.y231{bottom:496.466850px;}
.y12b{bottom:496.718700px;}
.y10e{bottom:497.708400px;}
.y24b{bottom:499.837350px;}
.y152{bottom:503.049300px;}
.y19c{bottom:503.112300px;}
.y17c{bottom:504.729300px;}
.y151{bottom:506.044800px;}
.y77{bottom:508.992150px;}
.y21c{bottom:509.255850px;}
.y1bb{bottom:510.568950px;}
.y53{bottom:511.754700px;}
.y269{bottom:514.661550px;}
.ye9{bottom:514.686600px;}
.yc3{bottom:515.197350px;}
.y1db{bottom:515.303850px;}
.y31{bottom:515.568450px;}
.y9d{bottom:516.233700px;}
.y12a{bottom:517.263450px;}
.y1fb{bottom:517.666350px;}
.y150{bottom:520.293300px;}
.yd{bottom:520.483350px;}
.y10d{bottom:521.530650px;}
.y19b{bottom:523.898550px;}
.y17b{bottom:525.670800px;}
.y24a{bottom:528.596850px;}
.y76{bottom:529.709400px;}
.y21b{bottom:530.187600px;}
.y1ba{bottom:532.493700px;}
.y268{bottom:534.161550px;}
.y52{bottom:534.886950px;}
.ye8{bottom:535.110600px;}
.y30{bottom:535.854450px;}
.y1da{bottom:535.857600px;}
.y9c{bottom:536.571450px;}
.yc2{bottom:536.725350px;}
.y14f{bottom:537.546300px;}
.y129{bottom:537.808200px;}
.y1fa{bottom:538.865850px;}
.y19a{bottom:544.684800px;}
.y10c{bottom:545.352900px;}
.y17a{bottom:546.641700px;}
.y230{bottom:547.370850px;}
.y249{bottom:548.851350px;}
.y75{bottom:550.426650px;}
.y267{bottom:553.661550px;}
.y1b9{bottom:554.409600px;}
.ye7{bottom:555.534600px;}
.y2f{bottom:556.140450px;}
.y9b{bottom:556.909200px;}
.y14e{bottom:557.794800px;}
.y51{bottom:558.019200px;}
.yc1{bottom:558.253350px;}
.y128{bottom:558.352950px;}
.y21a{bottom:559.624350px;}
.y1d9{bottom:564.916350px;}
.y199{bottom:565.471050px;}
.y179{bottom:567.583200px;}
.y1f9{bottom:568.570350px;}
.y248{bottom:569.105850px;}
.y10b{bottom:569.175150px;}
.y74{bottom:571.143900px;}
.y266{bottom:573.161550px;}
.ye6{bottom:575.958600px;}
.y14d{bottom:576.295200px;}
.y1b8{bottom:576.334350px;}
.y2e{bottom:576.426450px;}
.y9a{bottom:577.250100px;}
.yc{bottom:578.600100px;}
.y127{bottom:578.897700px;}
.yc0{bottom:579.781350px;}
.y219{bottom:580.556100px;}
.y1d8{bottom:585.470100px;}
.y198{bottom:586.255650px;}
.y178{bottom:588.524700px;}
.y1f8{bottom:589.769850px;}
.y73{bottom:591.861150px;}
.y265{bottom:592.661550px;}
.y10a{bottom:592.997400px;}
.y14c{bottom:593.548200px;}
.ye5{bottom:596.382600px;}
.y2d{bottom:596.712450px;}
.y99{bottom:597.635100px;}
.y247{bottom:597.865350px;}
.y1b7{bottom:598.259100px;}
.y126{bottom:599.442450px;}
.ybf{bottom:601.309350px;}
.y50{bottom:602.412750px;}
.yb{bottom:605.963100px;}
.y197{bottom:607.041900px;}
.y177{bottom:609.466200px;}
.y218{bottom:609.992850px;}
.y264{bottom:612.161550px;}
.y72{bottom:612.659850px;}
.y14b{bottom:613.796700px;}
.y1d7{bottom:614.528850px;}
.ye4{bottom:616.806600px;}
.y109{bottom:616.819650px;}
.y2c{bottom:616.998450px;}
.y98{bottom:617.972850px;}
.y1f7{bottom:619.474350px;}
.y1b6{bottom:620.183850px;}
.ybe{bottom:622.837350px;}
.y246{bottom:626.624850px;}
.y4f{bottom:629.304750px;}
.y176{bottom:630.407700px;}
.y217{bottom:630.924600px;}
.y263{bottom:631.667400px;}
.y71{bottom:633.377100px;}
.y1d6{bottom:635.082600px;}
.ye3{bottom:637.230600px;}
.y2b{bottom:637.284450px;}
.y97{bottom:638.310600px;}
.y108{bottom:640.641900px;}
.y1f6{bottom:640.673850px;}
.y125{bottom:641.245200px;}
.y1b5{bottom:642.108600px;}
.ybd{bottom:644.365350px;}
.y245{bottom:646.879350px;}
.y196{bottom:649.078200px;}
.y262{bottom:651.167400px;}
.y175{bottom:651.349200px;}
.y70{bottom:654.094350px;}
.ya{bottom:654.571050px;}
.y2a{bottom:657.570450px;}
.ye2{bottom:657.613350px;}
.y14a{bottom:657.818550px;}
.y96{bottom:658.648350px;}
.y216{bottom:660.361350px;}
.y1b4{bottom:664.033350px;}
.y1d5{bottom:664.141350px;}
.y107{bottom:664.464150px;}
.y124{bottom:665.545200px;}
.ybc{bottom:665.893350px;}
.y1f5{bottom:670.378350px;}
.y261{bottom:670.667400px;}
.y174{bottom:672.300600px;}
.y195{bottom:673.621200px;}
.y6f{bottom:674.811600px;}
.y244{bottom:675.638850px;}
.y29{bottom:677.856450px;}
.ye1{bottom:678.037350px;}
.y149{bottom:678.225300px;}
.y95{bottom:678.986100px;}
.y215{bottom:681.293100px;}
.y1d4{bottom:684.695100px;}
.y1b3{bottom:685.958100px;}
.y9{bottom:686.431050px;}
.ybb{bottom:687.421350px;}
.y106{bottom:688.286400px;}
.y123{bottom:689.845200px;}
.y260{bottom:690.167400px;}
.y1f4{bottom:691.577850px;}
.y173{bottom:693.242100px;}
.y4e{bottom:694.511100px;}
.y6e{bottom:695.528850px;}
.y243{bottom:695.893350px;}
.y28{bottom:698.142450px;}
.ye0{bottom:698.461350px;}
.y148{bottom:698.632050px;}
.y94{bottom:699.323850px;}
.y22f{bottom:700.082850px;}
.y1b2{bottom:707.881650px;}
.yba{bottom:708.949350px;}
.y25f{bottom:709.667400px;}
.y214{bottom:710.729850px;}
.y105{bottom:712.108650px;}
.y1d3{bottom:713.753850px;}
.y172{bottom:714.188550px;}
.y6d{bottom:716.246100px;}
.y4d{bottom:717.643350px;}
.y8{bottom:718.291050px;}
.y27{bottom:718.428450px;}
.ydf{bottom:718.885350px;}
.y147{bottom:719.038800px;}
.y93{bottom:719.661600px;}
.y1f3{bottom:721.282350px;}
.y242{bottom:724.652850px;}
.y1b1{bottom:729.806400px;}
.yb9{bottom:730.477350px;}
.y1d2{bottom:734.307600px;}
.y171{bottom:735.154650px;}
.y104{bottom:735.930900px;}
.y194{bottom:736.419150px;}
.y6c{bottom:736.963350px;}
.y26{bottom:738.714450px;}
.yde{bottom:739.309350px;}
.y146{bottom:739.445550px;}
.y92{bottom:739.999350px;}
.y213{bottom:740.166600px;}
.y4c{bottom:740.775600px;}
.y25e{bottom:741.917400px;}
.y241{bottom:744.907350px;}
.y1f2{bottom:750.986850px;}
.yb8{bottom:752.005350px;}
.y122{bottom:752.416350px;}
.y1d1{bottom:754.861350px;}
.y170{bottom:756.096150px;}
.y193{bottom:757.205400px;}
.y6b{bottom:757.680600px;}
.ydd{bottom:759.733350px;}
.y103{bottom:759.753150px;}
.y145{bottom:759.852300px;}
.y91{bottom:760.337100px;}
.y212{bottom:761.098350px;}
.y4b{bottom:763.907850px;}
.y240{bottom:765.161850px;}
.y1f1{bottom:772.186350px;}
.y121{bottom:772.961100px;}
.y1b0{bottom:772.989750px;}
.yb7{bottom:773.533350px;}
.y16f{bottom:777.037650px;}
.y192{bottom:777.991650px;}
.y6a{bottom:778.397850px;}
.y7{bottom:779.892900px;}
.ydc{bottom:780.157350px;}
.y144{bottom:780.259050px;}
.y25{bottom:780.265500px;}
.y90{bottom:780.674850px;}
.y211{bottom:782.030100px;}
.y102{bottom:783.575400px;}
.y1d0{bottom:783.920100px;}
.y23f{bottom:785.416350px;}
.y4a{bottom:787.040100px;}
.y120{bottom:793.511700px;}
.yb6{bottom:795.061350px;}
.y16e{bottom:797.979150px;}
.y191{bottom:798.770100px;}
.y69{bottom:799.115100px;}
.y25d{bottom:799.679100px;}
.ydb{bottom:800.581350px;}
.y143{bottom:800.665800px;}
.y8f{bottom:801.012600px;}
.y1f0{bottom:801.890850px;}
.y1cf{bottom:804.473850px;}
.y101{bottom:807.397650px;}
.y6{bottom:809.757900px;}
.y49{bottom:810.172350px;}
.y210{bottom:811.466850px;}
.y11f{bottom:814.056450px;}
.y23e{bottom:814.175850px;}
.yb5{bottom:816.589350px;}
.y16d{bottom:818.920650px;}
.y190{bottom:819.556350px;}
.y68{bottom:819.832350px;}
.yda{bottom:821.005350px;}
.y142{bottom:821.073000px;}
.y8e{bottom:821.350350px;}
.y22e{bottom:823.090350px;}
.y25c{bottom:826.685100px;}
.y5{bottom:831.117900px;}
.y100{bottom:831.219900px;}
.y1ef{bottom:831.595350px;}
.y20f{bottom:832.398600px;}
.y48{bottom:833.304600px;}
.y1ce{bottom:833.532600px;}
.y23d{bottom:834.430350px;}
.y11e{bottom:834.601200px;}
.y1af{bottom:836.929650px;}
.yb4{bottom:838.117350px;}
.y16c{bottom:839.876850px;}
.y18f{bottom:840.342600px;}
.y67{bottom:840.549600px;}
.yd9{bottom:841.429350px;}
.y141{bottom:841.480200px;}
.y8d{bottom:841.688100px;}
.y24{bottom:842.570550px;}
.y1ee{bottom:852.794850px;}
.y20e{bottom:853.330350px;}
.y1cd{bottom:854.086350px;}
.yff{bottom:855.056850px;}
.y47{bottom:856.436850px;}
.y1ae{bottom:858.851850px;}
.yb3{bottom:859.645350px;}
.y16b{bottom:860.818350px;}
.y4{bottom:860.982900px;}
.y18e{bottom:861.128850px;}
.y66{bottom:861.266850px;}
.yd8{bottom:861.853350px;}
.y140{bottom:861.887850px;}
.y8c{bottom:862.025850px;}
.y23c{bottom:863.189850px;}
.y23{bottom:863.615550px;}
.y22d{bottom:873.994350px;}
.y11d{bottom:876.406200px;}
.yfe{bottom:878.879100px;}
.y46{bottom:879.569100px;}
.y1ad{bottom:880.776600px;}
.yb2{bottom:881.173350px;}
.y16a{bottom:881.759850px;}
.y18d{bottom:881.915100px;}
.y65{bottom:881.984100px;}
.yd7{bottom:882.277350px;}
.y13f{bottom:882.294600px;}
.y3{bottom:882.342900px;}
.y8b{bottom:882.363600px;}
.y1ed{bottom:882.499350px;}
.y20d{bottom:882.767100px;}
.y1cc{bottom:883.145100px;}
.y23b{bottom:883.444350px;}
.y22{bottom:884.652750px;}
.y11c{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.h19{height:24.656801px;}
.h10{height:35.347102px;}
.h13{height:38.590266px;}
.hb{height:42.070312px;}
.h18{height:47.329102px;}
.h1a{height:47.645508px;}
.h11{height:50.572266px;}
.h17{height:50.584266px;}
.h29{height:50.596266px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h9{height:56.191406px;}
.hc{height:56.207006px;}
.ha{height:56.255006px;}
.h28{height:59.000977px;}
.hf{height:60.476074px;}
.h23{height:60.500674px;}
.h14{height:60.641074px;}
.he{height:64.620117px;}
.h25{height:64.624917px;}
.h27{height:64.625517px;}
.h21{height:64.626117px;}
.h1d{height:64.626717px;}
.h24{height:64.630317px;}
.h20{height:64.632117px;}
.h22{height:64.632717px;}
.h1c{height:64.638117px;}
.h1f{height:64.644717px;}
.h16{height:64.647717px;}
.h1b{height:64.651317px;}
.h26{height:64.655517px;}
.h1e{height:64.656717px;}
.h15{height:64.921917px;}
.h2{height:65.734863px;}
.hd{height:70.993652px;}
.h8{height:73.623047px;}
.h12{height:75.858398px;}
.h7{height:78.667969px;}
.h6{height:94.658203px;}
.h5{height:101.144531px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.709600px;}
.x5{left:82.854600px;}
.x9{left:84.014250px;}
.x1{left:85.039350px;}
.xa{left:102.087300px;}
.x8{left:103.724700px;}
.x4{left:105.960600px;}
.x7{left:212.663850px;}
.xb{left:228.861150px;}
.x2{left:232.076250px;}
.x3{left:233.588250px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v6{vertical-align:-9.757333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.344944pt;}
.v4{vertical-align:10.650667pt;}
.v1{vertical-align:12.462400pt;}
.v2{vertical-align:14.890667pt;}
.v5{vertical-align:18.659733pt;}
.ls1d{letter-spacing:-4.896000pt;}
.lsb{letter-spacing:-4.778667pt;}
.ls9{letter-spacing:-4.032000pt;}
.ls53{letter-spacing:-3.394667pt;}
.ls1c{letter-spacing:-2.880000pt;}
.ls16{letter-spacing:-2.808000pt;}
.ls51{letter-spacing:-2.760000pt;}
.ls31{letter-spacing:-2.256000pt;}
.ls48{letter-spacing:-2.146667pt;}
.ls4b{letter-spacing:-2.024000pt;}
.ls5b{letter-spacing:-1.960000pt;}
.ls2e{letter-spacing:-1.717333pt;}
.ls57{letter-spacing:-1.568000pt;}
.ls23{letter-spacing:-1.533333pt;}
.lsd{letter-spacing:-1.493333pt;}
.ls30{letter-spacing:-1.410667pt;}
.ls44{letter-spacing:-1.344000pt;}
.ls20{letter-spacing:-1.288000pt;}
.ls5c{letter-spacing:-1.232000pt;}
.ls4a{letter-spacing:-1.152000pt;}
.ls41{letter-spacing:-1.104000pt;}
.lsa{letter-spacing:-0.970667pt;}
.ls54{letter-spacing:-0.864000pt;}
.ls42{letter-spacing:-0.858667pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls39{letter-spacing:-0.720000pt;}
.ls37{letter-spacing:-0.557333pt;}
.ls49{letter-spacing:-0.506667pt;}
.ls52{letter-spacing:-0.490667pt;}
.ls2f{letter-spacing:-0.368000pt;}
.ls5d{letter-spacing:-0.336000pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.152000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000267pt;}
.ls4e{letter-spacing:0.001067pt;}
.ls36{letter-spacing:0.001381pt;}
.ls1{letter-spacing:0.001387pt;}
.ls3a{letter-spacing:0.001600pt;}
.ls47{letter-spacing:0.001915pt;}
.ls4c{letter-spacing:0.002133pt;}
.ls2a{letter-spacing:0.005525pt;}
.ls3b{letter-spacing:0.006059pt;}
.ls5f{letter-spacing:0.006080pt;}
.ls4f{letter-spacing:0.006309pt;}
.ls2{letter-spacing:0.006613pt;}
.ls0{letter-spacing:0.006773pt;}
.ls34{letter-spacing:0.006912pt;}
.ls3{letter-spacing:0.007307pt;}
.ls1a{letter-spacing:0.007445pt;}
.ls27{letter-spacing:0.008003pt;}
.ls29{letter-spacing:0.008536pt;}
.ls4d{letter-spacing:0.009539pt;}
.ls3f{letter-spacing:0.301296pt;}
.ls25{letter-spacing:0.637867pt;}
.ls26{letter-spacing:0.802856pt;}
.ls8{letter-spacing:1.056000pt;}
.ls12{letter-spacing:2.133333pt;}
.ls35{letter-spacing:2.208000pt;}
.ls33{letter-spacing:2.248021pt;}
.ls24{letter-spacing:2.514667pt;}
.ls1f{letter-spacing:2.933333pt;}
.ls32{letter-spacing:3.128000pt;}
.ls3c{letter-spacing:3.148229pt;}
.ls45{letter-spacing:3.189333pt;}
.ls46{letter-spacing:3.250667pt;}
.ls5a{letter-spacing:3.640000pt;}
.lse{letter-spacing:3.733333pt;}
.ls22{letter-spacing:3.800000pt;}
.ls21{letter-spacing:4.017333pt;}
.ls18{letter-spacing:4.054133pt;}
.ls2d{letter-spacing:4.133333pt;}
.ls2c{letter-spacing:4.157829pt;}
.ls43{letter-spacing:4.224000pt;}
.ls59{letter-spacing:4.536000pt;}
.lsf{letter-spacing:5.120000pt;}
.lsc{letter-spacing:5.226667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls14{letter-spacing:5.600000pt;}
.ls13{letter-spacing:5.933333pt;}
.ls55{letter-spacing:6.104000pt;}
.ls50{letter-spacing:6.400000pt;}
.ls56{letter-spacing:6.666667pt;}
.ls2b{letter-spacing:6.816000pt;}
.ls5e{letter-spacing:7.066667pt;}
.ls3e{letter-spacing:7.253472pt;}
.ls40{letter-spacing:7.266667pt;}
.ls10{letter-spacing:7.402933pt;}
.ls6{letter-spacing:7.466667pt;}
.ls28{letter-spacing:8.770667pt;}
.ls17{letter-spacing:9.267467pt;}
.ls11{letter-spacing:14.352000pt;}
.ls58{letter-spacing:14.952000pt;}
.ls3d{letter-spacing:52.609920pt;}
.ws22{word-spacing:-61.333333pt;}
.ws17{word-spacing:-35.413333pt;}
.ws2e{word-spacing:-26.000000pt;}
.ws4d{word-spacing:-25.800000pt;}
.ws44{word-spacing:-25.400000pt;}
.ws3a{word-spacing:-25.133333pt;}
.ws1{word-spacing:-24.768000pt;}
.wse{word-spacing:-24.666667pt;}
.ws24{word-spacing:-22.866667pt;}
.ws21{word-spacing:-22.533333pt;}
.ws40{word-spacing:-21.840000pt;}
.ws1c{word-spacing:-21.666667pt;}
.ws4e{word-spacing:-20.320000pt;}
.ws2a{word-spacing:-20.232000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws7{word-spacing:-20.106667pt;}
.ws3f{word-spacing:-19.368000pt;}
.ws10{word-spacing:-17.424000pt;}
.ws13{word-spacing:-17.234667pt;}
.ws2b{word-spacing:-17.064000pt;}
.wsf{word-spacing:-16.090667pt;}
.ws46{word-spacing:-15.736000pt;}
.ws4b{word-spacing:-15.400000pt;}
.ws11{word-spacing:-15.149333pt;}
.ws6{word-spacing:-14.986667pt;}
.ws47{word-spacing:-14.952000pt;}
.ws0{word-spacing:-14.826667pt;}
.ws26{word-spacing:-14.781333pt;}
.ws3c{word-spacing:-14.658667pt;}
.ws48{word-spacing:-14.504000pt;}
.ws2f{word-spacing:-14.290667pt;}
.ws45{word-spacing:-14.168000pt;}
.ws1e{word-spacing:-13.861333pt;}
.ws41{word-spacing:-13.832000pt;}
.ws27{word-spacing:-13.738667pt;}
.ws2{word-spacing:-13.664000pt;}
.ws19{word-spacing:-13.488000pt;}
.ws25{word-spacing:-13.432000pt;}
.ws4{word-spacing:-13.173333pt;}
.ws37{word-spacing:-13.125333pt;}
.ws36{word-spacing:-13.002667pt;}
.ws18{word-spacing:-12.888000pt;}
.ws3b{word-spacing:-12.389333pt;}
.ws14{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-11.568000pt;}
.ws31{word-spacing:-10.512000pt;}
.ws12{word-spacing:-10.047811pt;}
.ws28{word-spacing:-9.600000pt;}
.ws1f{word-spacing:-8.832061pt;}
.ws1d{word-spacing:-7.863504pt;}
.wsa{word-spacing:-7.466667pt;}
.ws30{word-spacing:-6.912048pt;}
.ws4c{word-spacing:-6.666667pt;}
.ws3e{word-spacing:-5.704000pt;}
.ws43{word-spacing:-5.600000pt;}
.ws9{word-spacing:-5.333333pt;}
.ws33{word-spacing:-4.224000pt;}
.wsd{word-spacing:-3.733333pt;}
.ws49{word-spacing:-3.640000pt;}
.ws4f{word-spacing:-2.613333pt;}
.ws15{word-spacing:-2.133333pt;}
.ws35{word-spacing:-2.112000pt;}
.ws8{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.152000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws38{word-spacing:0.506667pt;}
.ws2c{word-spacing:0.557333pt;}
.ws3d{word-spacing:0.674667pt;}
.ws16{word-spacing:0.760000pt;}
.wsc{word-spacing:0.970667pt;}
.ws32{word-spacing:1.104000pt;}
.ws39{word-spacing:1.152000pt;}
.ws23{word-spacing:1.533333pt;}
.ws29{word-spacing:1.840000pt;}
.ws4a{word-spacing:1.960000pt;}
.ws42{word-spacing:3.394667pt;}
.wsb{word-spacing:4.032000pt;}
.ws20{word-spacing:5.336000pt;}
.ws34{word-spacing:52.609920pt;}
._30{margin-left:-15.713600pt;}
._2f{margin-left:-14.265067pt;}
._2a{margin-left:-10.789067pt;}
._2b{margin-left:-9.675467pt;}
._23{margin-left:-8.680533pt;}
._c{margin-left:-7.500000pt;}
._b{margin-left:-5.735733pt;}
._3{margin-left:-4.597600pt;}
._8{margin-left:-2.969867pt;}
._4{margin-left:-1.965600pt;}
._5{margin-left:-1.058133pt;}
._6{width:1.232000pt;}
._1{width:2.133333pt;}
._d{width:3.398400pt;}
._9{width:4.293333pt;}
._7{width:5.850667pt;}
._a{width:7.509333pt;}
._e{width:8.597333pt;}
._f{width:9.546667pt;}
._10{width:10.450933pt;}
._12{width:12.080000pt;}
._1d{width:13.830667pt;}
._1e{width:14.728000pt;}
._1c{width:15.680533pt;}
._15{width:16.765867pt;}
._16{width:18.655467pt;}
._17{width:19.563467pt;}
._1b{width:20.485333pt;}
._24{width:21.712000pt;}
._1a{width:23.291467pt;}
._2c{width:24.625920pt;}
._18{width:25.698667pt;}
._19{width:26.739733pt;}
._2d{width:27.812533pt;}
._31{width:30.258667pt;}
._2e{width:31.213333pt;}
._1f{width:38.617920pt;}
._28{width:66.185867pt;}
._14{width:76.048000pt;}
._11{width:231.653333pt;}
._27{width:437.739733pt;}
._29{width:439.493333pt;}
._13{width:445.680000pt;}
._26{width:447.146667pt;}
._21{width:448.274667pt;}
._0{width:514.133333pt;}
._20{width:883.294400pt;}
._22{width:885.627733pt;}
._25{width:889.227733pt;}
._2{width:890.987733pt;}
.fsc{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fse{font-size:41.976000pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yd6{bottom:94.369200pt;}
.y20c{bottom:94.439867pt;}
.y169{bottom:94.445600pt;}
.y8a{bottom:94.474933pt;}
.yfd{bottom:94.479067pt;}
.y1f{bottom:94.481200pt;}
.y64{bottom:94.482933pt;}
.yb1{bottom:94.483067pt;}
.y44{bottom:94.485600pt;}
.y22c{bottom:94.495867pt;}
.y13e{bottom:94.496000pt;}
.y18c{bottom:94.514400pt;}
.y1ec{bottom:94.537867pt;}
.y25b{bottom:95.755867pt;}
.y1cb{bottom:97.150933pt;}
.y168{bottom:109.781600pt;}
.y89{bottom:109.810933pt;}
.y63{bottom:109.818933pt;}
.yb0{bottom:109.819067pt;}
.y1e{bottom:112.134533pt;}
.y43{bottom:112.484267pt;}
.yfc{bottom:112.633733pt;}
.y13d{bottom:112.758000pt;}
.y1eb{bottom:112.807867pt;}
.y22b{bottom:113.101867pt;}
.y18b{bottom:113.129067pt;}
.y23a{bottom:113.283867pt;}
.yd5{bottom:113.505200pt;}
.y1ca{bottom:113.598400pt;}
.y25a{bottom:113.759867pt;}
.y20b{bottom:120.843867pt;}
.y167{bottom:125.117600pt;}
.y88{bottom:125.146933pt;}
.y62{bottom:127.817600pt;}
.yaf{bottom:127.817733pt;}
.y1c9{bottom:128.929067pt;}
.y1d{bottom:129.775333pt;}
.yfb{bottom:130.788400pt;}
.y13c{bottom:131.020000pt;}
.y1ea{bottom:131.077867pt;}
.y22a{bottom:131.707867pt;}
.y18a{bottom:131.743733pt;}
.y259{bottom:131.763867pt;}
.yd4{bottom:132.641200pt;}
.y20a{bottom:139.687867pt;}
.y166{bottom:140.453600pt;}
.y87{bottom:140.482933pt;}
.yae{bottom:144.252000pt;}
.y1c8{bottom:144.265067pt;}
.y1c{bottom:147.428667pt;}
.yfa{bottom:148.936933pt;}
.y13b{bottom:149.299867pt;}
.y189{bottom:150.358400pt;}
.y1ac{bottom:151.606133pt;}
.y42{bottom:151.689067pt;}
.yd3{bottom:151.777200pt;}
.y165{bottom:155.789600pt;}
.y86{bottom:155.818933pt;}
.y1e9{bottom:156.907867pt;}
.y258{bottom:157.327867pt;}
.y229{bottom:157.873867pt;}
.y239{bottom:158.531867pt;}
.yad{bottom:159.588000pt;}
.y1c7{bottom:159.598400pt;}
.y1b{bottom:165.082000pt;}
.y209{bottom:166.091867pt;}
.y11b{bottom:166.958000pt;}
.y61{bottom:166.970000pt;}
.yf9{bottom:167.091600pt;}
.y13a{bottom:167.561867pt;}
.y188{bottom:168.973067pt;}
.y41{bottom:169.721067pt;}
.y1ab{bottom:170.082800pt;}
.yd2{bottom:170.913200pt;}
.y164{bottom:171.125600pt;}
.y85{bottom:173.817600pt;}
.yac{bottom:174.924000pt;}
.y1c6{bottom:174.934400pt;}
.y1e8{bottom:175.177867pt;}
.y257{bottom:175.331867pt;}
.y228{bottom:176.479867pt;}
.y238{bottom:177.375867pt;}
.y1a{bottom:182.735333pt;}
.y208{bottom:184.935867pt;}
.yf8{bottom:185.179200pt;}
.y139{bottom:185.823867pt;}
.y163{bottom:186.461600pt;}
.y60{bottom:187.532000pt;}
.y187{bottom:187.587733pt;}
.y40{bottom:187.753067pt;}
.y11a{bottom:188.133333pt;}
.y1aa{bottom:188.559467pt;}
.yd1{bottom:190.049200pt;}
.yab{bottom:190.260000pt;}
.y237{bottom:196.219867pt;}
.y19{bottom:200.388667pt;}
.y256{bottom:200.895867pt;}
.y1e7{bottom:201.007867pt;}
.y162{bottom:201.797600pt;}
.y227{bottom:202.645867pt;}
.yf7{bottom:203.333867pt;}
.y207{bottom:203.779867pt;}
.y138{bottom:204.085867pt;}
.yaa{bottom:205.596000pt;}
.y3f{bottom:205.785067pt;}
.y186{bottom:206.215600pt;}
.y1a9{bottom:207.036133pt;}
.y5f{bottom:208.094000pt;}
.yd0{bottom:209.185200pt;}
.y119{bottom:209.348000pt;}
.y84{bottom:213.038133pt;}
.y236{bottom:215.063867pt;}
.y1c5{bottom:216.719333pt;}
.y161{bottom:217.133600pt;}
.y255{bottom:218.899867pt;}
.y1e6{bottom:219.277867pt;}
.ya9{bottom:220.932000pt;}
.y226{bottom:221.251867pt;}
.yf6{bottom:221.488533pt;}
.y137{bottom:222.347867pt;}
.y3e{bottom:223.817067pt;}
.y185{bottom:224.830267pt;}
.y1a8{bottom:225.510000pt;}
.ycf{bottom:228.321200pt;}
.y5e{bottom:228.656000pt;}
.y18{bottom:229.375333pt;}
.y206{bottom:230.183867pt;}
.y118{bottom:230.523333pt;}
.y83{bottom:231.453467pt;}
.y160{bottom:232.469600pt;}
.y1c4{bottom:236.207333pt;}
.ya8{bottom:238.930667pt;}
.yf5{bottom:239.643200pt;}
.y136{bottom:240.609867pt;}
.y235{bottom:241.467867pt;}
.y3d{bottom:241.849067pt;}
.y184{bottom:243.444933pt;}
.y1a7{bottom:243.986667pt;}
.y254{bottom:244.463867pt;}
.y1e5{bottom:245.107867pt;}
.y225{bottom:247.417867pt;}
.yce{bottom:247.457200pt;}
.y15f{bottom:247.805600pt;}
.y205{bottom:249.027867pt;}
.y5d{bottom:249.218000pt;}
.y82{bottom:249.868800pt;}
.y117{bottom:251.698667pt;}
.yf4{bottom:257.797867pt;}
.y135{bottom:258.871867pt;}
.y3c{bottom:259.881067pt;}
.y234{bottom:260.311867pt;}
.y183{bottom:262.059600pt;}
.y1a6{bottom:262.462000pt;}
.y253{bottom:262.467867pt;}
.y15e{bottom:263.141600pt;}
.y1c3{bottom:263.255333pt;}
.y1e4{bottom:263.377867pt;}
.y224{bottom:266.023867pt;}
.ycd{bottom:266.593200pt;}
.y81{bottom:268.284133pt;}
.y5c{bottom:269.800000pt;}
.y116{bottom:272.874000pt;}
.y17{bottom:273.482000pt;}
.y204{bottom:275.431867pt;}
.yf3{bottom:275.952533pt;}
.y134{bottom:277.169733pt;}
.y3b{bottom:277.913067pt;}
.ya7{bottom:278.072000pt;}
.y15d{bottom:278.477600pt;}
.y1a5{bottom:280.936000pt;}
.y1e3{bottom:281.647867pt;}
.y1c2{bottom:282.743333pt;}
.ycc{bottom:285.729200pt;}
.y80{bottom:286.699467pt;}
.y233{bottom:286.715867pt;}
.y252{bottom:288.031867pt;}
.y5b{bottom:290.362000pt;}
.y223{bottom:292.189867pt;}
.y16{bottom:292.461600pt;}
.y15c{bottom:293.813600pt;}
.y115{bottom:294.049333pt;}
.yf2{bottom:294.107200pt;}
.y203{bottom:294.275867pt;}
.y133{bottom:295.431733pt;}
.y3a{bottom:295.945067pt;}
.ya6{bottom:296.150000pt;}
.y1a4{bottom:299.412667pt;}
.y182{bottom:299.576267pt;}
.y1c1{bottom:302.231333pt;}
.ycb{bottom:304.865200pt;}
.y7f{bottom:305.114800pt;}
.y232{bottom:305.559867pt;}
.y1e2{bottom:307.477867pt;}
.y15b{bottom:309.149600pt;}
.y15{bottom:310.100800pt;}
.y222{bottom:310.795867pt;}
.y5a{bottom:310.924000pt;}
.yf1{bottom:312.261867pt;}
.y202{bottom:313.119867pt;}
.y251{bottom:313.595867pt;}
.y132{bottom:313.693733pt;}
.y39{bottom:313.977067pt;}
.ya5{bottom:314.228000pt;}
.y114{bottom:315.224667pt;}
.y1a3{bottom:317.883867pt;}
.y26f{bottom:319.250267pt;}
.y1c0{bottom:321.719333pt;}
.y7e{bottom:323.530133pt;}
.yca{bottom:324.001200pt;}
.y15a{bottom:324.485600pt;}
.y1e1{bottom:325.747867pt;}
.y14{bottom:327.754133pt;}
.yf0{bottom:330.416533pt;}
.y59{bottom:331.486000pt;}
.y131{bottom:331.955733pt;}
.y201{bottom:331.963867pt;}
.y38{bottom:332.009067pt;}
.ya4{bottom:332.306000pt;}
.y1a2{bottom:336.360533pt;}
.y113{bottom:336.406533pt;}
.y221{bottom:336.961867pt;}
.y26e{bottom:337.250267pt;}
.y250{bottom:339.159867pt;}
.y1bf{bottom:341.207333pt;}
.y7d{bottom:341.945467pt;}
.y159{bottom:342.484267pt;}
.yc9{bottom:343.137200pt;}
.y13{bottom:345.407467pt;}
.yef{bottom:348.571200pt;}
.y37{bottom:350.041067pt;}
.y130{bottom:350.217733pt;}
.ya3{bottom:350.384000pt;}
.y200{bottom:350.807867pt;}
.y1e0{bottom:351.577867pt;}
.y58{bottom:352.083067pt;}
.y1a1{bottom:354.837200pt;}
.y158{bottom:355.146933pt;}
.y26d{bottom:355.250267pt;}
.y220{bottom:355.567867pt;}
.y181{bottom:355.574933pt;}
.y24f{bottom:357.163867pt;}
.y112{bottom:357.706133pt;}
.y7c{bottom:360.360800pt;}
.yc8{bottom:362.273200pt;}
.y12{bottom:363.060800pt;}
.yee{bottom:366.725867pt;}
.y36{bottom:368.073067pt;}
.y1be{bottom:368.255333pt;}
.y12f{bottom:368.479733pt;}
.ya2{bottom:368.484400pt;}
.y1ff{bottom:369.651867pt;}
.y1df{bottom:369.847867pt;}
.y157{bottom:370.482933pt;}
.y57{bottom:372.645067pt;}
.y26c{bottom:373.250267pt;}
.y1a0{bottom:373.313867pt;}
.y180{bottom:374.189600pt;}
.y7b{bottom:378.776133pt;}
.y111{bottom:378.881467pt;}
.y11{bottom:380.705200pt;}
.yc7{bottom:381.409200pt;}
.y21f{bottom:381.733867pt;}
.y24e{bottom:382.727867pt;}
.yed{bottom:384.880533pt;}
.y156{bottom:385.818933pt;}
.y35{bottom:386.105067pt;}
.ya1{bottom:386.562400pt;}
.y12e{bottom:386.741733pt;}
.y1de{bottom:388.117867pt;}
.y26b{bottom:391.250267pt;}
.y19f{bottom:391.789067pt;}
.y17f{bottom:392.804267pt;}
.y56{bottom:393.207067pt;}
.y1fe{bottom:396.055867pt;}
.y7a{bottom:397.191467pt;}
.y10{bottom:398.358533pt;}
.y110{bottom:400.056800pt;}
.y21e{bottom:400.339867pt;}
.yc6{bottom:400.545200pt;}
.y24d{bottom:400.731867pt;}
.yec{bottom:403.035200pt;}
.y155{bottom:403.817600pt;}
.y34{bottom:404.137067pt;}
.ya0{bottom:404.640400pt;}
.y12d{bottom:405.003733pt;}
.y19e{bottom:410.257600pt;}
.y17e{bottom:411.418933pt;}
.y55{bottom:413.769067pt;}
.y1dd{bottom:413.947867pt;}
.y1bd{bottom:414.865200pt;}
.y1fd{bottom:414.899867pt;}
.y79{bottom:415.606800pt;}
.yf{bottom:416.011867pt;}
.y154{bottom:416.482933pt;}
.yc5{bottom:419.681200pt;}
.y26a{bottom:420.583600pt;}
.yeb{bottom:421.189867pt;}
.y10f{bottom:421.232133pt;}
.y33{bottom:422.169067pt;}
.y9f{bottom:422.718400pt;}
.y12c{bottom:423.265733pt;}
.y24c{bottom:426.295867pt;}
.y21d{bottom:426.505867pt;}
.y19d{bottom:428.734267pt;}
.y17d{bottom:430.033600pt;}
.y153{bottom:431.818933pt;}
.y1dc{bottom:432.217867pt;}
.ye{bottom:433.665200pt;}
.y1fc{bottom:433.743867pt;}
.y78{bottom:434.022133pt;}
.y54{bottom:434.331067pt;}
.y1bc{bottom:434.352667pt;}
.yc4{bottom:438.817200pt;}
.yea{bottom:439.344533pt;}
.y32{bottom:440.201067pt;}
.y9e{bottom:440.796400pt;}
.y231{bottom:441.303867pt;}
.y12b{bottom:441.527733pt;}
.y10e{bottom:442.407467pt;}
.y24b{bottom:444.299867pt;}
.y152{bottom:447.154933pt;}
.y19c{bottom:447.210933pt;}
.y17c{bottom:448.648267pt;}
.y151{bottom:449.817600pt;}
.y77{bottom:452.437467pt;}
.y21c{bottom:452.671867pt;}
.y1bb{bottom:453.839067pt;}
.y53{bottom:454.893067pt;}
.y269{bottom:457.476933pt;}
.ye9{bottom:457.499200pt;}
.yc3{bottom:457.953200pt;}
.y1db{bottom:458.047867pt;}
.y31{bottom:458.283067pt;}
.y9d{bottom:458.874400pt;}
.y12a{bottom:459.789733pt;}
.y1fb{bottom:460.147867pt;}
.y150{bottom:462.482933pt;}
.yd{bottom:462.651867pt;}
.y10d{bottom:463.582800pt;}
.y19b{bottom:465.687600pt;}
.y17b{bottom:467.262933pt;}
.y24a{bottom:469.863867pt;}
.y76{bottom:470.852800pt;}
.y21b{bottom:471.277867pt;}
.y1ba{bottom:473.327733pt;}
.y268{bottom:474.810267pt;}
.y52{bottom:475.455067pt;}
.ye8{bottom:475.653867pt;}
.y30{bottom:476.315067pt;}
.y1da{bottom:476.317867pt;}
.y9c{bottom:476.952400pt;}
.yc2{bottom:477.089200pt;}
.y14f{bottom:477.818933pt;}
.y129{bottom:478.051733pt;}
.y1fa{bottom:478.991867pt;}
.y19a{bottom:484.164267pt;}
.y10c{bottom:484.758133pt;}
.y17a{bottom:485.903733pt;}
.y230{bottom:486.551867pt;}
.y249{bottom:487.867867pt;}
.y75{bottom:489.268133pt;}
.y267{bottom:492.143600pt;}
.y1b9{bottom:492.808533pt;}
.ye7{bottom:493.808533pt;}
.y2f{bottom:494.347067pt;}
.y9b{bottom:495.030400pt;}
.y14e{bottom:495.817600pt;}
.y51{bottom:496.017067pt;}
.yc1{bottom:496.225200pt;}
.y128{bottom:496.313733pt;}
.y21a{bottom:497.443867pt;}
.y1d9{bottom:502.147867pt;}
.y199{bottom:502.640933pt;}
.y179{bottom:504.518400pt;}
.y1f9{bottom:505.395867pt;}
.y248{bottom:505.871867pt;}
.y10b{bottom:505.933467pt;}
.y74{bottom:507.683467pt;}
.y266{bottom:509.476933pt;}
.ye6{bottom:511.963200pt;}
.y14d{bottom:512.262400pt;}
.y1b8{bottom:512.297200pt;}
.y2e{bottom:512.379067pt;}
.y9a{bottom:513.111200pt;}
.yc{bottom:514.311200pt;}
.y127{bottom:514.575733pt;}
.yc0{bottom:515.361200pt;}
.y219{bottom:516.049867pt;}
.y1d8{bottom:520.417867pt;}
.y198{bottom:521.116133pt;}
.y178{bottom:523.133067pt;}
.y1f8{bottom:524.239867pt;}
.y73{bottom:526.098800pt;}
.y265{bottom:526.810267pt;}
.y10a{bottom:527.108800pt;}
.y14c{bottom:527.598400pt;}
.ye5{bottom:530.117867pt;}
.y2d{bottom:530.411067pt;}
.y99{bottom:531.231200pt;}
.y247{bottom:531.435867pt;}
.y1b7{bottom:531.785867pt;}
.y126{bottom:532.837733pt;}
.ybf{bottom:534.497200pt;}
.y50{bottom:535.478000pt;}
.yb{bottom:538.633867pt;}
.y197{bottom:539.592800pt;}
.y177{bottom:541.747733pt;}
.y218{bottom:542.215867pt;}
.y264{bottom:544.143600pt;}
.y72{bottom:544.586533pt;}
.y14b{bottom:545.597067pt;}
.y1d7{bottom:546.247867pt;}
.ye4{bottom:548.272533pt;}
.y109{bottom:548.284133pt;}
.y2c{bottom:548.443067pt;}
.y98{bottom:549.309200pt;}
.y1f7{bottom:550.643867pt;}
.y1b6{bottom:551.274533pt;}
.ybe{bottom:553.633200pt;}
.y246{bottom:556.999867pt;}
.y4f{bottom:559.382000pt;}
.y176{bottom:560.362400pt;}
.y217{bottom:560.821867pt;}
.y263{bottom:561.482133pt;}
.y71{bottom:563.001867pt;}
.y1d6{bottom:564.517867pt;}
.ye3{bottom:566.427200pt;}
.y2b{bottom:566.475067pt;}
.y97{bottom:567.387200pt;}
.y108{bottom:569.459467pt;}
.y1f6{bottom:569.487867pt;}
.y125{bottom:569.995733pt;}
.y1b5{bottom:570.763200pt;}
.ybd{bottom:572.769200pt;}
.y245{bottom:575.003867pt;}
.y196{bottom:576.958400pt;}
.y262{bottom:578.815467pt;}
.y175{bottom:578.977067pt;}
.y70{bottom:581.417200pt;}
.ya{bottom:581.840933pt;}
.y2a{bottom:584.507067pt;}
.ye2{bottom:584.545200pt;}
.y14a{bottom:584.727600pt;}
.y96{bottom:585.465200pt;}
.y216{bottom:586.987867pt;}
.y1b4{bottom:590.251867pt;}
.y1d5{bottom:590.347867pt;}
.y107{bottom:590.634800pt;}
.y124{bottom:591.595733pt;}
.ybc{bottom:591.905200pt;}
.y1f5{bottom:595.891867pt;}
.y261{bottom:596.148800pt;}
.y174{bottom:597.600533pt;}
.y195{bottom:598.774400pt;}
.y6f{bottom:599.832533pt;}
.y244{bottom:600.567867pt;}
.y29{bottom:602.539067pt;}
.ye1{bottom:602.699867pt;}
.y149{bottom:602.866933pt;}
.y95{bottom:603.543200pt;}
.y215{bottom:605.593867pt;}
.y1d4{bottom:608.617867pt;}
.y1b3{bottom:609.740533pt;}
.y9{bottom:610.160933pt;}
.ybb{bottom:611.041200pt;}
.y106{bottom:611.810133pt;}
.y123{bottom:613.195733pt;}
.y260{bottom:613.482133pt;}
.y1f4{bottom:614.735867pt;}
.y173{bottom:616.215200pt;}
.y4e{bottom:617.343200pt;}
.y6e{bottom:618.247867pt;}
.y243{bottom:618.571867pt;}
.y28{bottom:620.571067pt;}
.ye0{bottom:620.854533pt;}
.y148{bottom:621.006267pt;}
.y94{bottom:621.621200pt;}
.y22f{bottom:622.295867pt;}
.y1b2{bottom:629.228133pt;}
.yba{bottom:630.177200pt;}
.y25f{bottom:630.815467pt;}
.y214{bottom:631.759867pt;}
.y105{bottom:632.985467pt;}
.y1d3{bottom:634.447867pt;}
.y172{bottom:634.834267pt;}
.y6d{bottom:636.663200pt;}
.y4d{bottom:637.905200pt;}
.y8{bottom:638.480933pt;}
.y27{bottom:638.603067pt;}
.ydf{bottom:639.009200pt;}
.y147{bottom:639.145600pt;}
.y93{bottom:639.699200pt;}
.y1f3{bottom:641.139867pt;}
.y242{bottom:644.135867pt;}
.y1b1{bottom:648.716800pt;}
.yb9{bottom:649.313200pt;}
.y1d2{bottom:652.717867pt;}
.y171{bottom:653.470800pt;}
.y104{bottom:654.160800pt;}
.y194{bottom:654.594800pt;}
.y6c{bottom:655.078533pt;}
.y26{bottom:656.635067pt;}
.yde{bottom:657.163867pt;}
.y146{bottom:657.284933pt;}
.y92{bottom:657.777200pt;}
.y213{bottom:657.925867pt;}
.y4c{bottom:658.467200pt;}
.y25e{bottom:659.482133pt;}
.y241{bottom:662.139867pt;}
.y1f2{bottom:667.543867pt;}
.yb8{bottom:668.449200pt;}
.y122{bottom:668.814533pt;}
.y1d1{bottom:670.987867pt;}
.y170{bottom:672.085467pt;}
.y193{bottom:673.071467pt;}
.y6b{bottom:673.493867pt;}
.ydd{bottom:675.318533pt;}
.y103{bottom:675.336133pt;}
.y145{bottom:675.424267pt;}
.y91{bottom:675.855200pt;}
.y212{bottom:676.531867pt;}
.y4b{bottom:679.029200pt;}
.y240{bottom:680.143867pt;}
.y1f1{bottom:686.387867pt;}
.y121{bottom:687.076533pt;}
.y1b0{bottom:687.102000pt;}
.yb7{bottom:687.585200pt;}
.y16f{bottom:690.700133pt;}
.y192{bottom:691.548133pt;}
.y6a{bottom:691.909200pt;}
.y7{bottom:693.238133pt;}
.ydc{bottom:693.473200pt;}
.y144{bottom:693.563600pt;}
.y25{bottom:693.569333pt;}
.y90{bottom:693.933200pt;}
.y211{bottom:695.137867pt;}
.y102{bottom:696.511467pt;}
.y1d0{bottom:696.817867pt;}
.y23f{bottom:698.147867pt;}
.y4a{bottom:699.591200pt;}
.y120{bottom:705.343733pt;}
.yb6{bottom:706.721200pt;}
.y16e{bottom:709.314800pt;}
.y191{bottom:710.017867pt;}
.y69{bottom:710.324533pt;}
.y25d{bottom:710.825867pt;}
.ydb{bottom:711.627867pt;}
.y143{bottom:711.702933pt;}
.y8f{bottom:712.011200pt;}
.y1f0{bottom:712.791867pt;}
.y1cf{bottom:715.087867pt;}
.y101{bottom:717.686800pt;}
.y6{bottom:719.784800pt;}
.y49{bottom:720.153200pt;}
.y210{bottom:721.303867pt;}
.y11f{bottom:723.605733pt;}
.y23e{bottom:723.711867pt;}
.yb5{bottom:725.857200pt;}
.y16d{bottom:727.929467pt;}
.y190{bottom:728.494533pt;}
.y68{bottom:728.739867pt;}
.yda{bottom:729.782533pt;}
.y142{bottom:729.842667pt;}
.y8e{bottom:730.089200pt;}
.y22e{bottom:731.635867pt;}
.y25c{bottom:734.831200pt;}
.y5{bottom:738.771467pt;}
.y100{bottom:738.862133pt;}
.y1ef{bottom:739.195867pt;}
.y20f{bottom:739.909867pt;}
.y48{bottom:740.715200pt;}
.y1ce{bottom:740.917867pt;}
.y23d{bottom:741.715867pt;}
.y11e{bottom:741.867733pt;}
.y1af{bottom:743.937467pt;}
.yb4{bottom:744.993200pt;}
.y16c{bottom:746.557200pt;}
.y18f{bottom:746.971200pt;}
.y67{bottom:747.155200pt;}
.yd9{bottom:747.937200pt;}
.y141{bottom:747.982400pt;}
.y8d{bottom:748.167200pt;}
.y24{bottom:748.951600pt;}
.y1ee{bottom:758.039867pt;}
.y20e{bottom:758.515867pt;}
.y1cd{bottom:759.187867pt;}
.yff{bottom:760.050533pt;}
.y47{bottom:761.277200pt;}
.y1ae{bottom:763.423867pt;}
.yb3{bottom:764.129200pt;}
.y16b{bottom:765.171867pt;}
.y4{bottom:765.318133pt;}
.y18e{bottom:765.447867pt;}
.y66{bottom:765.570533pt;}
.yd8{bottom:766.091867pt;}
.y140{bottom:766.122533pt;}
.y8c{bottom:766.245200pt;}
.y23c{bottom:767.279867pt;}
.y23{bottom:767.658267pt;}
.y22d{bottom:776.883867pt;}
.y11d{bottom:779.027733pt;}
.yfe{bottom:781.225867pt;}
.y46{bottom:781.839200pt;}
.y1ad{bottom:782.912533pt;}
.yb2{bottom:783.265200pt;}
.y16a{bottom:783.786533pt;}
.y18d{bottom:783.924533pt;}
.y65{bottom:783.985867pt;}
.yd7{bottom:784.246533pt;}
.y13f{bottom:784.261867pt;}
.y3{bottom:784.304800pt;}
.y8b{bottom:784.323200pt;}
.y1ed{bottom:784.443867pt;}
.y20d{bottom:784.681867pt;}
.y1cc{bottom:785.017867pt;}
.y23b{bottom:785.283867pt;}
.y22{bottom:786.358000pt;}
.y11c{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.h19{height:21.917156pt;}
.h10{height:31.419646pt;}
.h13{height:34.302458pt;}
.hb{height:37.395833pt;}
.h18{height:42.070312pt;}
.h1a{height:42.351562pt;}
.h11{height:44.953125pt;}
.h17{height:44.963792pt;}
.h29{height:44.974458pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h9{height:49.947917pt;}
.hc{height:49.961783pt;}
.ha{height:50.004450pt;}
.h28{height:52.445312pt;}
.hf{height:53.756510pt;}
.h23{height:53.778377pt;}
.h14{height:53.903177pt;}
.he{height:57.440104pt;}
.h25{height:57.444371pt;}
.h27{height:57.444904pt;}
.h21{height:57.445438pt;}
.h1d{height:57.445971pt;}
.h24{height:57.449171pt;}
.h20{height:57.450771pt;}
.h22{height:57.451304pt;}
.h1c{height:57.456104pt;}
.h1f{height:57.461971pt;}
.h16{height:57.464638pt;}
.h1b{height:57.467838pt;}
.h26{height:57.471571pt;}
.h1e{height:57.472637pt;}
.h15{height:57.708371pt;}
.h2{height:58.430990pt;}
.hd{height:63.105469pt;}
.h8{height:65.442708pt;}
.h12{height:67.429688pt;}
.h7{height:69.927083pt;}
.h6{height:84.140625pt;}
.h5{height:89.906250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.741867pt;}
.x5{left:73.648533pt;}
.x9{left:74.679333pt;}
.x1{left:75.590533pt;}
.xa{left:90.744267pt;}
.x8{left:92.199733pt;}
.x4{left:94.187200pt;}
.x7{left:189.034533pt;}
.xb{left:203.432133pt;}
.x2{left:206.290000pt;}
.x3{left:207.634000pt;}
}




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