
    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_45d952a9b31534455ee3dda9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_84619b390c56f1525ace3d70.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_b357e6924a5500464d0876ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947266;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_4e874e2fd5e50a363bc09453.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_f6d6165283ec2a0e3c4254c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_44a7175392409bf8b909d1aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_4291936cdfdb66fa2c5dffd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_1de75a1d717948888b3bf766.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_2205c7eb5832750986956d5c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_d2a273fba8b0b4701c2c6e51.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_3ff50525efb406e1f1d93f2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;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_b2bd40972cea9e2461c4b837.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.096680;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_5476c619ee69d06d8ab80561.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.088379;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;}
.m2{transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.317075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317075,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-85.680000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.920000px;}
.lsb{letter-spacing:-1.146000px;}
.ls10{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.702000px;}
.ls21{letter-spacing:-0.618000px;}
.lsc{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.522000px;}
.ls22{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.233400px;}
.ls27{letter-spacing:-0.222000px;}
.ls5{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.184200px;}
.ls17{letter-spacing:-0.172800px;}
.lsd{letter-spacing:-0.109200px;}
.ls24{letter-spacing:-0.094800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000750px;}
.ls1c{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.012960px;}
.ls1a{letter-spacing:0.023040px;}
.ls15{letter-spacing:0.048960px;}
.lse{letter-spacing:0.075000px;}
.ls1f{letter-spacing:0.100800px;}
.ls14{letter-spacing:0.121200px;}
.ls28{letter-spacing:0.195600px;}
.ls1e{letter-spacing:0.255600px;}
.ls25{letter-spacing:0.276600px;}
.ls1d{letter-spacing:0.305280px;}
.ls20{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.308400px;}
.ls19{letter-spacing:0.319680px;}
.ls16{letter-spacing:0.328320px;}
.ls2{letter-spacing:0.333600px;}
.ls7{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.400200px;}
.lsa{letter-spacing:1.086000px;}
.ls1b{letter-spacing:1.987200px;}
.ls13{letter-spacing:67.985280px;}
.ls23{letter-spacing:100.627200px;}
.ls0{letter-spacing:174.788640px;}
.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;}
}
.ws10{word-spacing:-14.881200px;}
.ws14{word-spacing:-14.878200px;}
.ws18{word-spacing:-14.849400px;}
.wse{word-spacing:-14.647800px;}
.ws15{word-spacing:-14.595840px;}
.wsb{word-spacing:-14.572800px;}
.ws17{word-spacing:-14.478000px;}
.wsc{word-spacing:-14.463600px;}
.ws12{word-spacing:-14.388600px;}
.wsd{word-spacing:-14.339400px;}
.ws16{word-spacing:-14.158200px;}
.ws1a{word-spacing:-14.134800px;}
.ws19{word-spacing:-13.939200px;}
.wsf{word-spacing:-13.780800px;}
.ws13{word-spacing:-13.402800px;}
.ws1{word-spacing:-13.363200px;}
.ws11{word-spacing:-13.160160px;}
.ws7{word-spacing:-13.147200px;}
.ws8{word-spacing:-12.625200px;}
.wsa{word-spacing:-12.217200px;}
.ws2{word-spacing:-12.204000px;}
.ws3{word-spacing:-11.988000px;}
.ws4{word-spacing:-11.502000px;}
.ws0{word-spacing:-11.443200px;}
.ws5{word-spacing:-10.613550px;}
.ws6{word-spacing:-10.612800px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-5.869265px;}
._7{margin-left:-4.364784px;}
._1{margin-left:-2.881440px;}
._0{margin-left:-1.837440px;}
._2{width:1.000944px;}
._8{width:2.031409px;}
._e{width:3.451391px;}
._29{width:4.457170px;}
._c{width:5.457818px;}
._d{width:6.594045px;}
._3{width:7.659142px;}
._10{width:8.709840px;}
._1c{width:9.928298px;}
._21{width:11.658240px;}
._1e{width:13.272336px;}
._f{width:14.387040px;}
._1d{width:15.684480px;}
._14{width:16.732800px;}
._6{width:17.920800px;}
._5{width:19.095840px;}
._12{width:20.116080px;}
._a{width:21.200400px;}
._9{width:22.275360px;}
._19{width:23.454433px;}
._13{width:24.501600px;}
._20{width:25.502400px;}
._24{width:27.092160px;}
._1f{width:29.079360px;}
._11{width:30.178800px;}
._23{width:31.376640px;}
._22{width:32.989440px;}
._16{width:34.837920px;}
._b{width:37.095840px;}
._18{width:39.098016px;}
._17{width:40.158720px;}
._25{width:41.929920px;}
._26{width:43.038720px;}
._1a{width:44.985840px;}
._1b{width:46.732466px;}
._27{width:49.348800px;}
._28{width:51.650880px;}
._15{width:53.042160px;}
._30{width:54.595680px;}
._2f{width:56.272800px;}
._2c{width:99.907200px;}
._2b{width:100.932480px;}
._2a{width:101.955360px;}
._2e{width:143.277120px;}
._2d{width:144.720480px;}
._35{width:160.433280px;}
._34{width:162.418080px;}
._31{width:169.554720px;}
._32{width:170.570400px;}
._33{width:215.015040px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.ya{bottom:-28.800000px;}
.y4b{bottom:-10.650000px;}
.y7d{bottom:-10.290000px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900000px;}
.y2{bottom:2.520000px;}
.y131{bottom:3.420000px;}
.y48{bottom:3.600000px;}
.y143{bottom:3.780000px;}
.y1a8{bottom:4.320000px;}
.y4a{bottom:4.680000px;}
.y4{bottom:5.040000px;}
.y7c{bottom:5.580000px;}
.y1b2{bottom:6.120000px;}
.y145{bottom:6.840000px;}
.y18e{bottom:7.380000px;}
.y140{bottom:7.740000px;}
.y12b{bottom:9.540000px;}
.y135{bottom:9.900000px;}
.y19a{bottom:10.440000px;}
.y12f{bottom:12.060000px;}
.y134{bottom:12.240000px;}
.y144{bottom:12.600000px;}
.y1a9{bottom:13.140000px;}
.y19b{bottom:13.530000px;}
.y130{bottom:20.880000px;}
.y198{bottom:20.910000px;}
.y133{bottom:21.060000px;}
.y1b7{bottom:21.090000px;}
.y142{bottom:21.420000px;}
.y47{bottom:21.630000px;}
.y1a7{bottom:21.960000px;}
.y7b{bottom:23.580000px;}
.y1b1{bottom:23.760000px;}
.y13f{bottom:25.380000px;}
.y1a1{bottom:29.700000px;}
.y1b4{bottom:29.880000px;}
.y1b5{bottom:29.910000px;}
.y192{bottom:30.240000px;}
.y1a6{bottom:31.185000px;}
.y1ae{bottom:32.580000px;}
.y139{bottom:35.280000px;}
.y12e{bottom:37.080000px;}
.y1a3{bottom:38.520000px;}
.y197{bottom:38.550000px;}
.y194{bottom:38.700000px;}
.y1b6{bottom:38.730000px;}
.y46{bottom:39.630000px;}
.y1b0{bottom:41.220000px;}
.y13e{bottom:43.020000px;}
.y191{bottom:47.880000px;}
.y1a5{bottom:48.825000px;}
.y138{bottom:52.920000px;}
.y12d{bottom:54.720000px;}
.y19e{bottom:55.080000px;}
.y1a2{bottom:56.160000px;}
.y196{bottom:56.190000px;}
.y1af{bottom:58.860000px;}
.y190{bottom:65.340000px;}
.y45{bottom:69.510000px;}
.y137{bottom:70.560000px;}
.y19d{bottom:72.720000px;}
.y1ac{bottom:86.250000px;}
.y44{bottom:87.510000px;}
.y3{bottom:87.660000px;}
.y4c{bottom:88.020000px;}
.y1{bottom:89.820000px;}
.y1ab{bottom:103.710000px;}
.y43{bottom:105.510000px;}
.y7{bottom:116.640000px;}
.y1b8{bottom:121.320000px;}
.yfd{bottom:121.680000px;}
.y79{bottom:122.040000px;}
.y42{bottom:123.510000px;}
.y24f{bottom:124.560000px;}
.y22a{bottom:124.920000px;}
.y15c{bottom:126.180000px;}
.y189{bottom:126.720000px;}
.ya7{bottom:127.260000px;}
.y202{bottom:133.200000px;}
.y15{bottom:133.740000px;}
.y273{bottom:134.280000px;}
.y1d1{bottom:135.000000px;}
.yd3{bottom:136.080000px;}
.y1aa{bottom:137.700000px;}
.y127{bottom:138.240000px;}
.y1fa{bottom:139.500000px;}
.yfc{bottom:140.580000px;}
.y78{bottom:141.300000px;}
.y41{bottom:141.330000px;}
.y24e{bottom:143.820000px;}
.y15b{bottom:144.900000px;}
.y188{bottom:145.620000px;}
.ya6{bottom:146.520000px;}
.y201{bottom:153.360000px;}
.y1d0{bottom:154.440000px;}
.yd2{bottom:154.980000px;}
.y126{bottom:157.170000px;}
.y1f9{bottom:158.970000px;}
.y40{bottom:159.330000px;}
.yfb{bottom:159.510000px;}
.y77{bottom:160.590000px;}
.y24d{bottom:163.290000px;}
.y15a{bottom:163.650000px;}
.y187{bottom:164.370000px;}
.y229{bottom:165.090000px;}
.ya5{bottom:165.810000px;}
.y272{bottom:170.310000px;}
.y200{bottom:173.550000px;}
.y1cf{bottom:173.730000px;}
.yd1{bottom:174.090000px;}
.y125{bottom:176.250000px;}
.y3f{bottom:177.330000px;}
.y1f8{bottom:178.230000px;}
.yfa{bottom:178.410000px;}
.y76{bottom:179.670000px;}
.y159{bottom:182.550000px;}
.y186{bottom:183.090000px;}
.ya4{bottom:184.890000px;}
.y228{bottom:185.250000px;}
.yd0{bottom:192.990000px;}
.y1ce{bottom:193.170000px;}
.y1ff{bottom:193.710000px;}
.y3e{bottom:195.150000px;}
.y271{bottom:196.230000px;}
.yf9{bottom:197.310000px;}
.y1f7{bottom:197.670000px;}
.y75{bottom:198.930000px;}
.y158{bottom:201.270000px;}
.y185{bottom:201.990000px;}
.ya3{bottom:204.150000px;}
.y227{bottom:205.410000px;}
.y1b3{bottom:208.830000px;}
.ycf{bottom:211.890000px;}
.y1cd{bottom:212.430000px;}
.y3d{bottom:213.150000px;}
.y270{bottom:213.330000px;}
.y1fe{bottom:213.690000px;}
.y124{bottom:214.050000px;}
.yf8{bottom:216.390000px;}
.y1f6{bottom:216.930000px;}
.y74{bottom:218.010000px;}
.y157{bottom:219.990000px;}
.y184{bottom:220.710000px;}
.y24c{bottom:221.250000px;}
.ya2{bottom:223.230000px;}
.y226{bottom:225.570000px;}
.yce{bottom:230.790000px;}
.y3c{bottom:231.150000px;}
.y1cc{bottom:231.870000px;}
.y123{bottom:232.950000px;}
.y1fd{bottom:233.850000px;}
.yf7{bottom:235.290000px;}
.y1f5{bottom:236.190000px;}
.y73{bottom:237.270000px;}
.y156{bottom:238.890000px;}
.y26f{bottom:239.250000px;}
.y183{bottom:239.430000px;}
.y24b{bottom:240.690000px;}
.ya1{bottom:242.490000px;}
.y225{bottom:245.730000px;}
.y3b{bottom:249.195000px;}
.ycd{bottom:249.690000px;}
.y1cb{bottom:251.130000px;}
.y122{bottom:251.850000px;}
.y1fc{bottom:254.010000px;}
.yf6{bottom:254.190000px;}
.y1f4{bottom:255.630000px;}
.y72{bottom:256.350000px;}
.y155{bottom:257.610000px;}
.y182{bottom:258.330000px;}
.y24a{bottom:259.950000px;}
.ya0{bottom:261.570000px;}
.y1ad{bottom:262.470000px;}
.y26e{bottom:265.350000px;}
.y224{bottom:265.890000px;}
.y3a{bottom:267.015000px;}
.ycc{bottom:268.770000px;}
.y1ca{bottom:270.570000px;}
.y121{bottom:270.930000px;}
.yf5{bottom:273.630000px;}
.y1f3{bottom:274.890000px;}
.y71{bottom:275.610000px;}
.y154{bottom:276.330000px;}
.y181{bottom:277.050000px;}
.y249{bottom:279.390000px;}
.y9f{bottom:280.830000px;}
.y26d{bottom:282.450000px;}
.y39{bottom:285.015000px;}
.y223{bottom:286.050000px;}
.ycb{bottom:287.670000px;}
.y120{bottom:289.830000px;}
.yf4{bottom:292.890000px;}
.y1fb{bottom:293.070000px;}
.y1f2{bottom:294.330000px;}
.y70{bottom:294.870000px;}
.y153{bottom:295.230000px;}
.y180{bottom:295.770000px;}
.y248{bottom:298.650000px;}
.y26c{bottom:299.370000px;}
.y9e{bottom:300.090000px;}
.y38{bottom:303.015000px;}
.y222{bottom:306.210000px;}
.yca{bottom:306.570000px;}
.y11f{bottom:308.730000px;}
.y1c9{bottom:309.090000px;}
.yf3{bottom:312.330000px;}
.y1f1{bottom:313.590000px;}
.y6f{bottom:313.950000px;}
.y17f{bottom:314.670000px;}
.y247{bottom:318.090000px;}
.y9d{bottom:319.170000px;}
.y37{bottom:321.015000px;}
.y26b{bottom:325.110000px;}
.yc9{bottom:325.470000px;}
.y221{bottom:326.370000px;}
.y11e{bottom:327.630000px;}
.y1c8{bottom:328.530000px;}
.yf2{bottom:331.590000px;}
.y152{bottom:332.670000px;}
.y1f0{bottom:333.030000px;}
.y6e{bottom:333.210000px;}
.y17e{bottom:333.390000px;}
.y246{bottom:337.350000px;}
.y9c{bottom:338.430000px;}
.y36{bottom:338.835000px;}
.y1a4{bottom:338.970000px;}
.y26a{bottom:342.390000px;}
.yc8{bottom:344.550000px;}
.y220{bottom:346.530000px;}
.y11d{bottom:346.710000px;}
.y1c7{bottom:347.790000px;}
.yf1{bottom:351.030000px;}
.y151{bottom:351.570000px;}
.y17d{bottom:352.110000px;}
.y6d{bottom:352.290000px;}
.y245{bottom:356.790000px;}
.y35{bottom:356.835000px;}
.y9b{bottom:357.510000px;}
.y269{bottom:359.310000px;}
.yc7{bottom:363.450000px;}
.y11c{bottom:365.655000px;}
.y21f{bottom:366.735000px;}
.y1c6{bottom:367.275000px;}
.yf0{bottom:370.335000px;}
.y17c{bottom:371.055000px;}
.y6c{bottom:371.595000px;}
.y1ef{bottom:371.775000px;}
.y34{bottom:374.835000px;}
.y244{bottom:376.095000px;}
.y9a{bottom:376.815000px;}
.yc6{bottom:382.395000px;}
.y11b{bottom:384.555000px;}
.y268{bottom:385.275000px;}
.y1c5{bottom:386.535000px;}
.y21e{bottom:386.895000px;}
.y26{bottom:388.155000px;}
.y150{bottom:389.055000px;}
.yef{bottom:389.775000px;}
.y6b{bottom:390.675000px;}
.y1ee{bottom:391.035000px;}
.y33{bottom:392.835000px;}
.y243{bottom:395.535000px;}
.y99{bottom:395.895000px;}
.yc5{bottom:401.295000px;}
.y25{bottom:401.655000px;}
.y267{bottom:402.375000px;}
.y11a{bottom:403.455000px;}
.y1c4{bottom:405.975000px;}
.y21d{bottom:407.055000px;}
.y14f{bottom:407.955000px;}
.y17b{bottom:408.495000px;}
.yee{bottom:409.035000px;}
.y6a{bottom:410.115000px;}
.y1ed{bottom:410.475000px;}
.y32{bottom:410.655000px;}
.y242{bottom:414.795000px;}
.y24{bottom:415.155000px;}
.y266{bottom:419.475000px;}
.yc4{bottom:420.375000px;}
.y119{bottom:422.535000px;}
.y1c3{bottom:425.235000px;}
.y14e{bottom:426.675000px;}
.y21c{bottom:427.215000px;}
.y17a{bottom:427.395000px;}
.y23{bottom:428.475000px;}
.y31{bottom:428.655000px;}
.y69{bottom:429.555000px;}
.y1ec{bottom:429.735000px;}
.y19c{bottom:430.275000px;}
.y241{bottom:434.055000px;}
.y98{bottom:434.415000px;}
.yc3{bottom:439.275000px;}
.y22{bottom:441.435000px;}
.y1c2{bottom:444.675000px;}
.y265{bottom:445.215000px;}
.y14d{bottom:445.395000px;}
.y179{bottom:446.115000px;}
.y30{bottom:446.685000px;}
.y21b{bottom:447.375000px;}
.yed{bottom:447.735000px;}
.y1eb{bottom:449.175000px;}
.y68{bottom:450.255000px;}
.y97{bottom:453.495000px;}
.y21{bottom:454.425000px;}
.yc2{bottom:458.175000px;}
.y118{bottom:460.335000px;}
.y264{bottom:462.495000px;}
.y14c{bottom:464.295000px;}
.y2f{bottom:464.505000px;}
.y178{bottom:464.835000px;}
.yec{bottom:467.175000px;}
.y21a{bottom:467.535000px;}
.y20{bottom:467.745000px;}
.y1ea{bottom:468.435000px;}
.y67{bottom:470.775000px;}
.y96{bottom:472.755000px;}
.yc1{bottom:477.075000px;}
.y117{bottom:479.235000px;}
.y263{bottom:479.415000px;}
.y1f{bottom:481.785000px;}
.y2e{bottom:482.505000px;}
.y14b{bottom:483.015000px;}
.y177{bottom:483.735000px;}
.y1c1{bottom:484.995000px;}
.yeb{bottom:486.435000px;}
.y219{bottom:487.515000px;}
.y1e9{bottom:487.875000px;}
.y66{bottom:491.475000px;}
.y95{bottom:491.835000px;}
.y240{bottom:492.195000px;}
.y1e{bottom:495.825000px;}
.yc0{bottom:495.975000px;}
.y116{bottom:498.135000px;}
.y2d{bottom:500.505000px;}
.y1a0{bottom:501.375000px;}
.y14a{bottom:501.735000px;}
.y176{bottom:502.455000px;}
.y1c0{bottom:504.435000px;}
.y262{bottom:505.335000px;}
.yea{bottom:505.695000px;}
.y1e8{bottom:507.135000px;}
.y218{bottom:507.675000px;}
.y1d{bottom:510.045000px;}
.y94{bottom:511.095000px;}
.y23f{bottom:511.455000px;}
.y65{bottom:511.995000px;}
.ybf{bottom:515.055000px;}
.y115{bottom:517.215000px;}
.y2c{bottom:518.505000px;}
.y149{bottom:520.635000px;}
.y175{bottom:521.175000px;}
.y261{bottom:522.435000px;}
.y1bf{bottom:523.695000px;}
.y1c{bottom:523.725000px;}
.ye9{bottom:525.135000px;}
.y1e7{bottom:526.395000px;}
.y217{bottom:527.835000px;}
.y64{bottom:530.175000px;}
.y23e{bottom:530.895000px;}
.ybe{bottom:533.955000px;}
.y114{bottom:536.115000px;}
.y2b{bottom:536.325000px;}
.y1b{bottom:536.685000px;}
.y19f{bottom:537.195000px;}
.y148{bottom:539.355000px;}
.y260{bottom:539.535000px;}
.y174{bottom:540.075000px;}
.y1be{bottom:543.135000px;}
.ye8{bottom:544.395000px;}
.y1e6{bottom:545.835000px;}
.y216{bottom:547.995000px;}
.y93{bottom:549.435000px;}
.y23d{bottom:550.155000px;}
.y1a{bottom:550.725000px;}
.ybd{bottom:552.855000px;}
.y2a{bottom:554.325000px;}
.y113{bottom:555.015000px;}
.y25f{bottom:556.455000px;}
.y147{bottom:558.075000px;}
.y173{bottom:558.795000px;}
.y63{bottom:560.595000px;}
.y1bd{bottom:562.395000px;}
.ye7{bottom:563.835000px;}
.y19{bottom:564.765000px;}
.y1e5{bottom:565.095000px;}
.y215{bottom:568.155000px;}
.y92{bottom:568.695000px;}
.y195{bottom:569.595000px;}
.ybc{bottom:571.755000px;}
.y29{bottom:572.325000px;}
.y112{bottom:573.915000px;}
.y146{bottom:577.005000px;}
.y172{bottom:577.545000px;}
.y62{bottom:578.625000px;}
.y18{bottom:578.985000px;}
.y1bc{bottom:581.865000px;}
.y25e{bottom:582.225000px;}
.ye6{bottom:583.125000px;}
.y1e4{bottom:584.565000px;}
.y91{bottom:587.805000px;}
.y214{bottom:588.345000px;}
.y23c{bottom:588.885000px;}
.y28{bottom:589.245000px;}
.ybb{bottom:590.865000px;}
.y17{bottom:593.025000px;}
.y13d{bottom:593.385000px;}
.y171{bottom:596.445000px;}
.y61{bottom:596.625000px;}
.y1bb{bottom:601.125000px;}
.ye5{bottom:602.565000px;}
.y1e3{bottom:603.825000px;}
.y27{bottom:604.185000px;}
.y16{bottom:607.065000px;}
.y199{bottom:608.325000px;}
.y213{bottom:608.505000px;}
.yba{bottom:609.765000px;}
.y111{bottom:611.925000px;}
.y60{bottom:614.625000px;}
.y170{bottom:615.165000px;}
.y141{bottom:618.765000px;}
.y1ba{bottom:620.565000px;}
.ye4{bottom:621.825000px;}
.y1e2{bottom:623.265000px;}
.y25d{bottom:625.425000px;}
.y90{bottom:626.145000px;}
.y23b{bottom:627.585000px;}
.yb9{bottom:628.665000px;}
.y110{bottom:630.825000px;}
.y5f{bottom:632.625000px;}
.y16f{bottom:633.885000px;}
.y1b9{bottom:640.005000px;}
.y18f{bottom:640.545000px;}
.ye3{bottom:641.265000px;}
.y1e1{bottom:642.525000px;}
.y8f{bottom:645.405000px;}
.y23a{bottom:647.025000px;}
.yb8{bottom:647.565000px;}
.y212{bottom:648.825000px;}
.y10f{bottom:649.725000px;}
.y5e{bottom:650.445000px;}
.y16e{bottom:652.785000px;}
.y136{bottom:655.665000px;}
.ye2{bottom:660.525000px;}
.y1e0{bottom:661.965000px;}
.y8e{bottom:664.485000px;}
.y239{bottom:666.285000px;}
.yb7{bottom:666.645000px;}
.y25c{bottom:668.265000px;}
.y5d{bottom:668.445000px;}
.y10e{bottom:668.805000px;}
.y211{bottom:668.985000px;}
.y16d{bottom:671.505000px;}
.ye1{bottom:679.965000px;}
.y1df{bottom:681.225000px;}
.y8d{bottom:683.745000px;}
.yb6{bottom:685.545000px;}
.y238{bottom:685.725000px;}
.y5c{bottom:686.445000px;}
.y13c{bottom:687.165000px;}
.y10d{bottom:687.705000px;}
.y210{bottom:689.145000px;}
.y16c{bottom:690.225000px;}
.y193{bottom:694.185000px;}
.ye0{bottom:699.225000px;}
.y1de{bottom:700.665000px;}
.y25b{bottom:702.465000px;}
.y8c{bottom:703.005000px;}
.y5b{bottom:704.265000px;}
.yb5{bottom:704.445000px;}
.y237{bottom:704.985000px;}
.y10c{bottom:706.605000px;}
.y16b{bottom:709.125000px;}
.y20f{bottom:709.305000px;}
.ydf{bottom:718.665000px;}
.y1dd{bottom:719.925000px;}
.y8b{bottom:722.085000px;}
.y5a{bottom:722.265000px;}
.y13b{bottom:723.165000px;}
.yb4{bottom:723.345000px;}
.y236{bottom:724.245000px;}
.y10b{bottom:725.505000px;}
.y16a{bottom:727.845000px;}
.y25a{bottom:728.385000px;}
.y20e{bottom:729.465000px;}
.y18d{bottom:730.005000px;}
.yde{bottom:737.925000px;}
.y1dc{bottom:739.365000px;}
.y59{bottom:740.265000px;}
.y8a{bottom:741.345000px;}
.yb3{bottom:742.245000px;}
.y235{bottom:743.505000px;}
.y10a{bottom:744.405000px;}
.y259{bottom:745.485000px;}
.y169{bottom:746.565000px;}
.y20d{bottom:749.625000px;}
.y13a{bottom:754.665000px;}
.y14{bottom:754.845000px;}
.ydd{bottom:757.365000px;}
.y58{bottom:758.265000px;}
.y1db{bottom:758.625000px;}
.y89{bottom:760.425000px;}
.yb2{bottom:761.325000px;}
.y234{bottom:761.505000px;}
.y258{bottom:762.585000px;}
.y109{bottom:763.485000px;}
.y18c{bottom:764.565000px;}
.y168{bottom:765.465000px;}
.y13{bottom:769.605000px;}
.y20c{bottom:769.785000px;}
.y57{bottom:776.085000px;}
.ydc{bottom:776.625000px;}
.y1da{bottom:778.065000px;}
.y257{bottom:779.505000px;}
.y88{bottom:779.685000px;}
.yb1{bottom:780.225000px;}
.y108{bottom:782.385000px;}
.y167{bottom:784.185000px;}
.y12{bottom:787.470000px;}
.y20b{bottom:789.990000px;}
.y12c{bottom:790.710000px;}
.y233{bottom:793.590000px;}
.y56{bottom:794.130000px;}
.ydb{bottom:795.930000px;}
.y1d9{bottom:797.370000px;}
.y87{bottom:798.810000px;}
.yb0{bottom:799.170000px;}
.y107{bottom:801.330000px;}
.y166{bottom:802.950000px;}
.y18b{bottom:803.130000px;}
.y256{bottom:805.290000px;}
.y11{bottom:807.090000px;}
.y20a{bottom:810.150000px;}
.y232{bottom:811.230000px;}
.y55{bottom:812.130000px;}
.yda{bottom:815.370000px;}
.y1d8{bottom:816.630000px;}
.y86{bottom:818.070000px;}
.y106{bottom:820.230000px;}
.y165{bottom:821.850000px;}
.y132{bottom:822.210000px;}
.y18a{bottom:822.570000px;}
.y10{bottom:826.890000px;}
.y231{bottom:828.690000px;}
.y54{bottom:830.130000px;}
.y209{bottom:830.310000px;}
.yd9{bottom:834.630000px;}
.y1d7{bottom:836.070000px;}
.yaf{bottom:837.150000px;}
.y85{bottom:837.330000px;}
.y105{bottom:839.310000px;}
.y255{bottom:839.490000px;}
.y164{bottom:840.570000px;}
.y230{bottom:846.330000px;}
.y53{bottom:847.950000px;}
.yf{bottom:848.130000px;}
.y208{bottom:850.290000px;}
.yd8{bottom:854.070000px;}
.y1d6{bottom:855.330000px;}
.yae{bottom:856.050000px;}
.y84{bottom:856.410000px;}
.y104{bottom:858.210000px;}
.y163{bottom:859.290000px;}
.y22f{bottom:863.970000px;}
.y254{bottom:865.410000px;}
.y52{bottom:865.950000px;}
.y207{bottom:870.450000px;}
.yd7{bottom:873.330000px;}
.y1d5{bottom:874.770000px;}
.yad{bottom:874.950000px;}
.y83{bottom:875.670000px;}
.ye{bottom:876.750000px;}
.y103{bottom:877.110000px;}
.y162{bottom:878.190000px;}
.y22e{bottom:881.790000px;}
.y253{bottom:882.510000px;}
.y51{bottom:883.590000px;}
.y206{bottom:890.610000px;}
.yd6{bottom:892.770000px;}
.yac{bottom:893.850000px;}
.y12a{bottom:894.030000px;}
.y82{bottom:894.750000px;}
.y102{bottom:896.010000px;}
.y161{bottom:896.910000px;}
.y252{bottom:899.610000px;}
.yd{bottom:900.870000px;}
.y205{bottom:910.770000px;}
.yd5{bottom:912.030000px;}
.yab{bottom:912.750000px;}
.y1d4{bottom:913.470000px;}
.y50{bottom:913.830000px;}
.y81{bottom:914.010000px;}
.y101{bottom:914.910000px;}
.y160{bottom:915.630000px;}
.y22d{bottom:918.510000px;}
.y251{bottom:925.350000px;}
.y204{bottom:930.930000px;}
.yd4{bottom:931.470000px;}
.yaa{bottom:931.830000px;}
.y129{bottom:932.730000px;}
.y80{bottom:933.090000px;}
.y100{bottom:933.990000px;}
.y15f{bottom:934.530000px;}
.y22c{bottom:935.970000px;}
.y4f{bottom:945.330000px;}
.yc{bottom:946.590000px;}
.ya9{bottom:950.730000px;}
.y203{bottom:951.090000px;}
.y250{bottom:951.810000px;}
.y1d3{bottom:952.170000px;}
.y7f{bottom:952.350000px;}
.yff{bottom:952.890000px;}
.y15e{bottom:953.250000px;}
.y22b{bottom:953.610000px;}
.yb{bottom:961.890000px;}
.y4e{bottom:968.730000px;}
.ya8{bottom:970.170000px;}
.y128{bottom:971.250000px;}
.y1d2{bottom:971.430000px;}
.y7e{bottom:971.610000px;}
.yfe{bottom:971.790000px;}
.y15d{bottom:971.970000px;}
.y8{bottom:992.130000px;}
.y6{bottom:993.210000px;}
.y7a{bottom:1005.300000px;}
.y49{bottom:1005.660000px;}
.y5{bottom:1022.940000px;}
.y4d{bottom:1038.600000px;}
.h8{height:13.716000px;}
.h18{height:14.400000px;}
.h4{height:14.760000px;}
.h1{height:16.920000px;}
.h24{height:24.660000px;}
.h25{height:25.560000px;}
.h1b{height:29.880000px;}
.h5{height:29.913047px;}
.h1e{height:30.780000px;}
.h29{height:31.500000px;}
.h1d{height:35.100000px;}
.h20{height:35.136000px;}
.h21{height:35.280000px;}
.h23{height:36.180000px;}
.h13{height:36.336094px;}
.h2f{height:36.936000px;}
.h1a{height:37.980000px;}
.h2a{height:38.016000px;}
.h16{height:40.843828px;}
.h12{height:41.974453px;}
.h10{height:42.351328px;}
.ha{height:45.116367px;}
.h17{height:46.986328px;}
.h14{height:50.597578px;}
.h15{height:51.998203px;}
.hf{height:52.465078px;}
.h2e{height:52.740000px;}
.h27{height:52.920000px;}
.h6{height:53.709961px;}
.h37{height:55.130625px;}
.h36{height:55.625625px;}
.h34{height:56.084062px;}
.hd{height:57.636562px;}
.he{height:58.154062px;}
.h9{height:59.439023px;}
.h35{height:60.960938px;}
.h22{height:61.560000px;}
.h33{height:62.648438px;}
.h7{height:65.884219px;}
.h3{height:68.084282px;}
.h2{height:69.086250px;}
.h28{height:70.236000px;}
.h2c{height:70.380000px;}
.h32{height:70.416000px;}
.h19{height:75.093750px;}
.h31{height:75.780000px;}
.hb{height:81.101250px;}
.hc{height:84.070547px;}
.h26{height:88.740000px;}
.h2d{height:90.576000px;}
.h1c{height:102.600000px;}
.h1f{height:134.136000px;}
.h2b{height:138.420000px;}
.h30{height:200.550000px;}
.h11{height:618.405000px;}
.h0{height:1093.500000px;}
.w1{width:36.000000px;}
.wc{width:84.816000px;}
.w10{width:95.796000px;}
.w9{width:112.500000px;}
.wd{width:125.136000px;}
.we{width:151.410000px;}
.wa{width:157.215000px;}
.w5{width:206.130000px;}
.wb{width:219.630000px;}
.wf{width:233.850000px;}
.w4{width:309.495000px;}
.w6{width:397.365000px;}
.w8{width:552.930000px;}
.w2{width:556.710000px;}
.w7{width:566.430000px;}
.w3{width:773.999988px;}
.w0{width:774.000000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x11{left:4.320000px;}
.x2c{left:8.100000px;}
.x23{left:9.540000px;}
.xc{left:10.800000px;}
.x18{left:12.060000px;}
.x29{left:13.545000px;}
.x2e{left:15.480000px;}
.x38{left:17.685000px;}
.x41{left:19.800000px;}
.x15{left:21.060000px;}
.x13{left:23.040000px;}
.x43{left:25.020000px;}
.x35{left:26.505000px;}
.x36{left:27.945000px;}
.x3f{left:29.520000px;}
.x31{left:31.005000px;}
.x2f{left:32.400000px;}
.x3{left:34.560000px;}
.x2d{left:36.045000px;}
.x44{left:37.260000px;}
.x34{left:38.925000px;}
.x3b{left:39.960000px;}
.x33{left:44.460000px;}
.x37{left:47.160000px;}
.x39{left:49.005000px;}
.x42{left:53.280000px;}
.x32{left:54.360000px;}
.x30{left:57.285000px;}
.x40{left:61.560000px;}
.xb{left:84.995988px;}
.x4{left:89.316000px;}
.x17{left:91.434000px;}
.x12{left:100.614000px;}
.x19{left:103.536000px;}
.x21{left:110.555988px;}
.x27{left:111.815988px;}
.x1f{left:113.975988px;}
.x26{left:127.475988px;}
.x3a{left:137.555988px;}
.x1d{left:148.896000px;}
.x14{left:160.059000px;}
.x16{left:162.039000px;}
.x20{left:164.189988px;}
.x1a{left:165.279000px;}
.x24{left:186.879000px;}
.x22{left:196.229988px;}
.x28{left:197.490000px;}
.x3c{left:210.135000px;}
.xf{left:249.014988px;}
.x1c{left:283.929000px;}
.xd{left:292.754988px;}
.x45{left:301.034988px;}
.x10{left:339.014988px;}
.x2a{left:354.705000px;}
.x3d{left:361.545000px;}
.xe{left:383.864988px;}
.x1b{left:402.414000px;}
.x6{left:448.664988px;}
.x7{left:482.864988px;}
.x5{left:528.774000px;}
.x1e{left:537.804000px;}
.x25{left:545.724000px;}
.x2b{left:574.350000px;}
.x8{left:577.589988px;}
.x9{left:587.129988px;}
.x3e{left:595.410000px;}
.x1{left:646.560000px;}
.xa{left:689.039988px;}
@media print{
.v1{vertical-align:-76.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.706667pt;}
.lsb{letter-spacing:-1.018667pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.624000pt;}
.ls21{letter-spacing:-0.549333pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.464000pt;}
.ls22{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.207467pt;}
.ls27{letter-spacing:-0.197333pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.163733pt;}
.ls17{letter-spacing:-0.153600pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls24{letter-spacing:-0.084267pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000667pt;}
.ls1c{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.011520pt;}
.ls1a{letter-spacing:0.020480pt;}
.ls15{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.066667pt;}
.ls1f{letter-spacing:0.089600pt;}
.ls14{letter-spacing:0.107733pt;}
.ls28{letter-spacing:0.173867pt;}
.ls1e{letter-spacing:0.227200pt;}
.ls25{letter-spacing:0.245867pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls20{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.274133pt;}
.ls19{letter-spacing:0.284160pt;}
.ls16{letter-spacing:0.291840pt;}
.ls2{letter-spacing:0.296533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.355733pt;}
.lsa{letter-spacing:0.965333pt;}
.ls1b{letter-spacing:1.766400pt;}
.ls13{letter-spacing:60.431360pt;}
.ls23{letter-spacing:89.446400pt;}
.ls0{letter-spacing:155.367680pt;}
.ws10{word-spacing:-13.227733pt;}
.ws14{word-spacing:-13.225067pt;}
.ws18{word-spacing:-13.199467pt;}
.wse{word-spacing:-13.020267pt;}
.ws15{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.953600pt;}
.ws17{word-spacing:-12.869333pt;}
.wsc{word-spacing:-12.856533pt;}
.ws12{word-spacing:-12.789867pt;}
.wsd{word-spacing:-12.746133pt;}
.ws16{word-spacing:-12.585067pt;}
.ws1a{word-spacing:-12.564267pt;}
.ws19{word-spacing:-12.390400pt;}
.wsf{word-spacing:-12.249600pt;}
.ws13{word-spacing:-11.913600pt;}
.ws1{word-spacing:-11.878400pt;}
.ws11{word-spacing:-11.697920pt;}
.ws7{word-spacing:-11.686400pt;}
.ws8{word-spacing:-11.222400pt;}
.wsa{word-spacing:-10.859733pt;}
.ws2{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.656000pt;}
.ws4{word-spacing:-10.224000pt;}
.ws0{word-spacing:-10.171733pt;}
.ws5{word-spacing:-9.434267pt;}
.ws6{word-spacing:-9.433600pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-5.217124pt;}
._7{margin-left:-3.879808pt;}
._1{margin-left:-2.561280pt;}
._0{margin-left:-1.633280pt;}
._2{width:0.889728pt;}
._8{width:1.805697pt;}
._e{width:3.067903pt;}
._29{width:3.961929pt;}
._c{width:4.851393pt;}
._d{width:5.861373pt;}
._3{width:6.808127pt;}
._10{width:7.742080pt;}
._1c{width:8.825153pt;}
._21{width:10.362880pt;}
._1e{width:11.797632pt;}
._f{width:12.788480pt;}
._1d{width:13.941760pt;}
._14{width:14.873600pt;}
._6{width:15.929600pt;}
._5{width:16.974080pt;}
._12{width:17.880960pt;}
._a{width:18.844800pt;}
._9{width:19.800320pt;}
._19{width:20.848385pt;}
._13{width:21.779200pt;}
._20{width:22.668800pt;}
._24{width:24.081920pt;}
._1f{width:25.848320pt;}
._11{width:26.825600pt;}
._23{width:27.890347pt;}
._22{width:29.323947pt;}
._16{width:30.967040pt;}
._b{width:32.974080pt;}
._18{width:34.753792pt;}
._17{width:35.696640pt;}
._25{width:37.271040pt;}
._26{width:38.256640pt;}
._1a{width:39.987413pt;}
._1b{width:41.539970pt;}
._27{width:43.865600pt;}
._28{width:45.911893pt;}
._15{width:47.148587pt;}
._30{width:48.529493pt;}
._2f{width:50.020267pt;}
._2c{width:88.806400pt;}
._2b{width:89.717760pt;}
._2a{width:90.626987pt;}
._2e{width:127.357440pt;}
._2d{width:128.640427pt;}
._35{width:142.607360pt;}
._34{width:144.371627pt;}
._31{width:150.715307pt;}
._32{width:151.618133pt;}
._33{width:191.124480pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.ya{bottom:-25.600000pt;}
.y4b{bottom:-9.466667pt;}
.y7d{bottom:-9.146667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800000pt;}
.y2{bottom:2.240000pt;}
.y131{bottom:3.040000pt;}
.y48{bottom:3.200000pt;}
.y143{bottom:3.360000pt;}
.y1a8{bottom:3.840000pt;}
.y4a{bottom:4.160000pt;}
.y4{bottom:4.480000pt;}
.y7c{bottom:4.960000pt;}
.y1b2{bottom:5.440000pt;}
.y145{bottom:6.080000pt;}
.y18e{bottom:6.560000pt;}
.y140{bottom:6.880000pt;}
.y12b{bottom:8.480000pt;}
.y135{bottom:8.800000pt;}
.y19a{bottom:9.280000pt;}
.y12f{bottom:10.720000pt;}
.y134{bottom:10.880000pt;}
.y144{bottom:11.200000pt;}
.y1a9{bottom:11.680000pt;}
.y19b{bottom:12.026667pt;}
.y130{bottom:18.560000pt;}
.y198{bottom:18.586667pt;}
.y133{bottom:18.720000pt;}
.y1b7{bottom:18.746667pt;}
.y142{bottom:19.040000pt;}
.y47{bottom:19.226667pt;}
.y1a7{bottom:19.520000pt;}
.y7b{bottom:20.960000pt;}
.y1b1{bottom:21.120000pt;}
.y13f{bottom:22.560000pt;}
.y1a1{bottom:26.400000pt;}
.y1b4{bottom:26.560000pt;}
.y1b5{bottom:26.586667pt;}
.y192{bottom:26.880000pt;}
.y1a6{bottom:27.720000pt;}
.y1ae{bottom:28.960000pt;}
.y139{bottom:31.360000pt;}
.y12e{bottom:32.960000pt;}
.y1a3{bottom:34.240000pt;}
.y197{bottom:34.266667pt;}
.y194{bottom:34.400000pt;}
.y1b6{bottom:34.426667pt;}
.y46{bottom:35.226667pt;}
.y1b0{bottom:36.640000pt;}
.y13e{bottom:38.240000pt;}
.y191{bottom:42.560000pt;}
.y1a5{bottom:43.400000pt;}
.y138{bottom:47.040000pt;}
.y12d{bottom:48.640000pt;}
.y19e{bottom:48.960000pt;}
.y1a2{bottom:49.920000pt;}
.y196{bottom:49.946667pt;}
.y1af{bottom:52.320000pt;}
.y190{bottom:58.080000pt;}
.y45{bottom:61.786667pt;}
.y137{bottom:62.720000pt;}
.y19d{bottom:64.640000pt;}
.y1ac{bottom:76.666667pt;}
.y44{bottom:77.786667pt;}
.y3{bottom:77.920000pt;}
.y4c{bottom:78.240000pt;}
.y1{bottom:79.840000pt;}
.y1ab{bottom:92.186667pt;}
.y43{bottom:93.786667pt;}
.y7{bottom:103.680000pt;}
.y1b8{bottom:107.840000pt;}
.yfd{bottom:108.160000pt;}
.y79{bottom:108.480000pt;}
.y42{bottom:109.786667pt;}
.y24f{bottom:110.720000pt;}
.y22a{bottom:111.040000pt;}
.y15c{bottom:112.160000pt;}
.y189{bottom:112.640000pt;}
.ya7{bottom:113.120000pt;}
.y202{bottom:118.400000pt;}
.y15{bottom:118.880000pt;}
.y273{bottom:119.360000pt;}
.y1d1{bottom:120.000000pt;}
.yd3{bottom:120.960000pt;}
.y1aa{bottom:122.400000pt;}
.y127{bottom:122.880000pt;}
.y1fa{bottom:124.000000pt;}
.yfc{bottom:124.960000pt;}
.y78{bottom:125.600000pt;}
.y41{bottom:125.626667pt;}
.y24e{bottom:127.840000pt;}
.y15b{bottom:128.800000pt;}
.y188{bottom:129.440000pt;}
.ya6{bottom:130.240000pt;}
.y201{bottom:136.320000pt;}
.y1d0{bottom:137.280000pt;}
.yd2{bottom:137.760000pt;}
.y126{bottom:139.706667pt;}
.y1f9{bottom:141.306667pt;}
.y40{bottom:141.626667pt;}
.yfb{bottom:141.786667pt;}
.y77{bottom:142.746667pt;}
.y24d{bottom:145.146667pt;}
.y15a{bottom:145.466667pt;}
.y187{bottom:146.106667pt;}
.y229{bottom:146.746667pt;}
.ya5{bottom:147.386667pt;}
.y272{bottom:151.386667pt;}
.y200{bottom:154.266667pt;}
.y1cf{bottom:154.426667pt;}
.yd1{bottom:154.746667pt;}
.y125{bottom:156.666667pt;}
.y3f{bottom:157.626667pt;}
.y1f8{bottom:158.426667pt;}
.yfa{bottom:158.586667pt;}
.y76{bottom:159.706667pt;}
.y159{bottom:162.266667pt;}
.y186{bottom:162.746667pt;}
.ya4{bottom:164.346667pt;}
.y228{bottom:164.666667pt;}
.yd0{bottom:171.546667pt;}
.y1ce{bottom:171.706667pt;}
.y1ff{bottom:172.186667pt;}
.y3e{bottom:173.466667pt;}
.y271{bottom:174.426667pt;}
.yf9{bottom:175.386667pt;}
.y1f7{bottom:175.706667pt;}
.y75{bottom:176.826667pt;}
.y158{bottom:178.906667pt;}
.y185{bottom:179.546667pt;}
.ya3{bottom:181.466667pt;}
.y227{bottom:182.586667pt;}
.y1b3{bottom:185.626667pt;}
.ycf{bottom:188.346667pt;}
.y1cd{bottom:188.826667pt;}
.y3d{bottom:189.466667pt;}
.y270{bottom:189.626667pt;}
.y1fe{bottom:189.946667pt;}
.y124{bottom:190.266667pt;}
.yf8{bottom:192.346667pt;}
.y1f6{bottom:192.826667pt;}
.y74{bottom:193.786667pt;}
.y157{bottom:195.546667pt;}
.y184{bottom:196.186667pt;}
.y24c{bottom:196.666667pt;}
.ya2{bottom:198.426667pt;}
.y226{bottom:200.506667pt;}
.yce{bottom:205.146667pt;}
.y3c{bottom:205.466667pt;}
.y1cc{bottom:206.106667pt;}
.y123{bottom:207.066667pt;}
.y1fd{bottom:207.866667pt;}
.yf7{bottom:209.146667pt;}
.y1f5{bottom:209.946667pt;}
.y73{bottom:210.906667pt;}
.y156{bottom:212.346667pt;}
.y26f{bottom:212.666667pt;}
.y183{bottom:212.826667pt;}
.y24b{bottom:213.946667pt;}
.ya1{bottom:215.546667pt;}
.y225{bottom:218.426667pt;}
.y3b{bottom:221.506667pt;}
.ycd{bottom:221.946667pt;}
.y1cb{bottom:223.226667pt;}
.y122{bottom:223.866667pt;}
.y1fc{bottom:225.786667pt;}
.yf6{bottom:225.946667pt;}
.y1f4{bottom:227.226667pt;}
.y72{bottom:227.866667pt;}
.y155{bottom:228.986667pt;}
.y182{bottom:229.626667pt;}
.y24a{bottom:231.066667pt;}
.ya0{bottom:232.506667pt;}
.y1ad{bottom:233.306667pt;}
.y26e{bottom:235.866667pt;}
.y224{bottom:236.346667pt;}
.y3a{bottom:237.346667pt;}
.ycc{bottom:238.906667pt;}
.y1ca{bottom:240.506667pt;}
.y121{bottom:240.826667pt;}
.yf5{bottom:243.226667pt;}
.y1f3{bottom:244.346667pt;}
.y71{bottom:244.986667pt;}
.y154{bottom:245.626667pt;}
.y181{bottom:246.266667pt;}
.y249{bottom:248.346667pt;}
.y9f{bottom:249.626667pt;}
.y26d{bottom:251.066667pt;}
.y39{bottom:253.346667pt;}
.y223{bottom:254.266667pt;}
.ycb{bottom:255.706667pt;}
.y120{bottom:257.626667pt;}
.yf4{bottom:260.346667pt;}
.y1fb{bottom:260.506667pt;}
.y1f2{bottom:261.626667pt;}
.y70{bottom:262.106667pt;}
.y153{bottom:262.426667pt;}
.y180{bottom:262.906667pt;}
.y248{bottom:265.466667pt;}
.y26c{bottom:266.106667pt;}
.y9e{bottom:266.746667pt;}
.y38{bottom:269.346667pt;}
.y222{bottom:272.186667pt;}
.yca{bottom:272.506667pt;}
.y11f{bottom:274.426667pt;}
.y1c9{bottom:274.746667pt;}
.yf3{bottom:277.626667pt;}
.y1f1{bottom:278.746667pt;}
.y6f{bottom:279.066667pt;}
.y17f{bottom:279.706667pt;}
.y247{bottom:282.746667pt;}
.y9d{bottom:283.706667pt;}
.y37{bottom:285.346667pt;}
.y26b{bottom:288.986667pt;}
.yc9{bottom:289.306667pt;}
.y221{bottom:290.106667pt;}
.y11e{bottom:291.226667pt;}
.y1c8{bottom:292.026667pt;}
.yf2{bottom:294.746667pt;}
.y152{bottom:295.706667pt;}
.y1f0{bottom:296.026667pt;}
.y6e{bottom:296.186667pt;}
.y17e{bottom:296.346667pt;}
.y246{bottom:299.866667pt;}
.y9c{bottom:300.826667pt;}
.y36{bottom:301.186667pt;}
.y1a4{bottom:301.306667pt;}
.y26a{bottom:304.346667pt;}
.yc8{bottom:306.266667pt;}
.y220{bottom:308.026667pt;}
.y11d{bottom:308.186667pt;}
.y1c7{bottom:309.146667pt;}
.yf1{bottom:312.026667pt;}
.y151{bottom:312.506667pt;}
.y17d{bottom:312.986667pt;}
.y6d{bottom:313.146667pt;}
.y245{bottom:317.146667pt;}
.y35{bottom:317.186667pt;}
.y9b{bottom:317.786667pt;}
.y269{bottom:319.386667pt;}
.yc7{bottom:323.066667pt;}
.y11c{bottom:325.026667pt;}
.y21f{bottom:325.986667pt;}
.y1c6{bottom:326.466667pt;}
.yf0{bottom:329.186667pt;}
.y17c{bottom:329.826667pt;}
.y6c{bottom:330.306667pt;}
.y1ef{bottom:330.466667pt;}
.y34{bottom:333.186667pt;}
.y244{bottom:334.306667pt;}
.y9a{bottom:334.946667pt;}
.yc6{bottom:339.906667pt;}
.y11b{bottom:341.826667pt;}
.y268{bottom:342.466667pt;}
.y1c5{bottom:343.586667pt;}
.y21e{bottom:343.906667pt;}
.y26{bottom:345.026667pt;}
.y150{bottom:345.826667pt;}
.yef{bottom:346.466667pt;}
.y6b{bottom:347.266667pt;}
.y1ee{bottom:347.586667pt;}
.y33{bottom:349.186667pt;}
.y243{bottom:351.586667pt;}
.y99{bottom:351.906667pt;}
.yc5{bottom:356.706667pt;}
.y25{bottom:357.026667pt;}
.y267{bottom:357.666667pt;}
.y11a{bottom:358.626667pt;}
.y1c4{bottom:360.866667pt;}
.y21d{bottom:361.826667pt;}
.y14f{bottom:362.626667pt;}
.y17b{bottom:363.106667pt;}
.yee{bottom:363.586667pt;}
.y6a{bottom:364.546667pt;}
.y1ed{bottom:364.866667pt;}
.y32{bottom:365.026667pt;}
.y242{bottom:368.706667pt;}
.y24{bottom:369.026667pt;}
.y266{bottom:372.866667pt;}
.yc4{bottom:373.666667pt;}
.y119{bottom:375.586667pt;}
.y1c3{bottom:377.986667pt;}
.y14e{bottom:379.266667pt;}
.y21c{bottom:379.746667pt;}
.y17a{bottom:379.906667pt;}
.y23{bottom:380.866667pt;}
.y31{bottom:381.026667pt;}
.y69{bottom:381.826667pt;}
.y1ec{bottom:381.986667pt;}
.y19c{bottom:382.466667pt;}
.y241{bottom:385.826667pt;}
.y98{bottom:386.146667pt;}
.yc3{bottom:390.466667pt;}
.y22{bottom:392.386667pt;}
.y1c2{bottom:395.266667pt;}
.y265{bottom:395.746667pt;}
.y14d{bottom:395.906667pt;}
.y179{bottom:396.546667pt;}
.y30{bottom:397.053333pt;}
.y21b{bottom:397.666667pt;}
.yed{bottom:397.986667pt;}
.y1eb{bottom:399.266667pt;}
.y68{bottom:400.226667pt;}
.y97{bottom:403.106667pt;}
.y21{bottom:403.933333pt;}
.yc2{bottom:407.266667pt;}
.y118{bottom:409.186667pt;}
.y264{bottom:411.106667pt;}
.y14c{bottom:412.706667pt;}
.y2f{bottom:412.893333pt;}
.y178{bottom:413.186667pt;}
.yec{bottom:415.266667pt;}
.y21a{bottom:415.586667pt;}
.y20{bottom:415.773333pt;}
.y1ea{bottom:416.386667pt;}
.y67{bottom:418.466667pt;}
.y96{bottom:420.226667pt;}
.yc1{bottom:424.066667pt;}
.y117{bottom:425.986667pt;}
.y263{bottom:426.146667pt;}
.y1f{bottom:428.253333pt;}
.y2e{bottom:428.893333pt;}
.y14b{bottom:429.346667pt;}
.y177{bottom:429.986667pt;}
.y1c1{bottom:431.106667pt;}
.yeb{bottom:432.386667pt;}
.y219{bottom:433.346667pt;}
.y1e9{bottom:433.666667pt;}
.y66{bottom:436.866667pt;}
.y95{bottom:437.186667pt;}
.y240{bottom:437.506667pt;}
.y1e{bottom:440.733333pt;}
.yc0{bottom:440.866667pt;}
.y116{bottom:442.786667pt;}
.y2d{bottom:444.893333pt;}
.y1a0{bottom:445.666667pt;}
.y14a{bottom:445.986667pt;}
.y176{bottom:446.626667pt;}
.y1c0{bottom:448.386667pt;}
.y262{bottom:449.186667pt;}
.yea{bottom:449.506667pt;}
.y1e8{bottom:450.786667pt;}
.y218{bottom:451.266667pt;}
.y1d{bottom:453.373333pt;}
.y94{bottom:454.306667pt;}
.y23f{bottom:454.626667pt;}
.y65{bottom:455.106667pt;}
.ybf{bottom:457.826667pt;}
.y115{bottom:459.746667pt;}
.y2c{bottom:460.893333pt;}
.y149{bottom:462.786667pt;}
.y175{bottom:463.266667pt;}
.y261{bottom:464.386667pt;}
.y1bf{bottom:465.506667pt;}
.y1c{bottom:465.533333pt;}
.ye9{bottom:466.786667pt;}
.y1e7{bottom:467.906667pt;}
.y217{bottom:469.186667pt;}
.y64{bottom:471.266667pt;}
.y23e{bottom:471.906667pt;}
.ybe{bottom:474.626667pt;}
.y114{bottom:476.546667pt;}
.y2b{bottom:476.733333pt;}
.y1b{bottom:477.053333pt;}
.y19f{bottom:477.506667pt;}
.y148{bottom:479.426667pt;}
.y260{bottom:479.586667pt;}
.y174{bottom:480.066667pt;}
.y1be{bottom:482.786667pt;}
.ye8{bottom:483.906667pt;}
.y1e6{bottom:485.186667pt;}
.y216{bottom:487.106667pt;}
.y93{bottom:488.386667pt;}
.y23d{bottom:489.026667pt;}
.y1a{bottom:489.533333pt;}
.ybd{bottom:491.426667pt;}
.y2a{bottom:492.733333pt;}
.y113{bottom:493.346667pt;}
.y25f{bottom:494.626667pt;}
.y147{bottom:496.066667pt;}
.y173{bottom:496.706667pt;}
.y63{bottom:498.306667pt;}
.y1bd{bottom:499.906667pt;}
.ye7{bottom:501.186667pt;}
.y19{bottom:502.013333pt;}
.y1e5{bottom:502.306667pt;}
.y215{bottom:505.026667pt;}
.y92{bottom:505.506667pt;}
.y195{bottom:506.306667pt;}
.ybc{bottom:508.226667pt;}
.y29{bottom:508.733333pt;}
.y112{bottom:510.146667pt;}
.y146{bottom:512.893333pt;}
.y172{bottom:513.373333pt;}
.y62{bottom:514.333333pt;}
.y18{bottom:514.653333pt;}
.y1bc{bottom:517.213333pt;}
.y25e{bottom:517.533333pt;}
.ye6{bottom:518.333333pt;}
.y1e4{bottom:519.613333pt;}
.y91{bottom:522.493333pt;}
.y214{bottom:522.973333pt;}
.y23c{bottom:523.453333pt;}
.y28{bottom:523.773333pt;}
.ybb{bottom:525.213333pt;}
.y17{bottom:527.133333pt;}
.y13d{bottom:527.453333pt;}
.y171{bottom:530.173333pt;}
.y61{bottom:530.333333pt;}
.y1bb{bottom:534.333333pt;}
.ye5{bottom:535.613333pt;}
.y1e3{bottom:536.733333pt;}
.y27{bottom:537.053333pt;}
.y16{bottom:539.613333pt;}
.y199{bottom:540.733333pt;}
.y213{bottom:540.893333pt;}
.yba{bottom:542.013333pt;}
.y111{bottom:543.933333pt;}
.y60{bottom:546.333333pt;}
.y170{bottom:546.813333pt;}
.y141{bottom:550.013333pt;}
.y1ba{bottom:551.613333pt;}
.ye4{bottom:552.733333pt;}
.y1e2{bottom:554.013333pt;}
.y25d{bottom:555.933333pt;}
.y90{bottom:556.573333pt;}
.y23b{bottom:557.853333pt;}
.yb9{bottom:558.813333pt;}
.y110{bottom:560.733333pt;}
.y5f{bottom:562.333333pt;}
.y16f{bottom:563.453333pt;}
.y1b9{bottom:568.893333pt;}
.y18f{bottom:569.373333pt;}
.ye3{bottom:570.013333pt;}
.y1e1{bottom:571.133333pt;}
.y8f{bottom:573.693333pt;}
.y23a{bottom:575.133333pt;}
.yb8{bottom:575.613333pt;}
.y212{bottom:576.733333pt;}
.y10f{bottom:577.533333pt;}
.y5e{bottom:578.173333pt;}
.y16e{bottom:580.253333pt;}
.y136{bottom:582.813333pt;}
.ye2{bottom:587.133333pt;}
.y1e0{bottom:588.413333pt;}
.y8e{bottom:590.653333pt;}
.y239{bottom:592.253333pt;}
.yb7{bottom:592.573333pt;}
.y25c{bottom:594.013333pt;}
.y5d{bottom:594.173333pt;}
.y10e{bottom:594.493333pt;}
.y211{bottom:594.653333pt;}
.y16d{bottom:596.893333pt;}
.ye1{bottom:604.413333pt;}
.y1df{bottom:605.533333pt;}
.y8d{bottom:607.773333pt;}
.yb6{bottom:609.373333pt;}
.y238{bottom:609.533333pt;}
.y5c{bottom:610.173333pt;}
.y13c{bottom:610.813333pt;}
.y10d{bottom:611.293333pt;}
.y210{bottom:612.573333pt;}
.y16c{bottom:613.533333pt;}
.y193{bottom:617.053333pt;}
.ye0{bottom:621.533333pt;}
.y1de{bottom:622.813333pt;}
.y25b{bottom:624.413333pt;}
.y8c{bottom:624.893333pt;}
.y5b{bottom:626.013333pt;}
.yb5{bottom:626.173333pt;}
.y237{bottom:626.653333pt;}
.y10c{bottom:628.093333pt;}
.y16b{bottom:630.333333pt;}
.y20f{bottom:630.493333pt;}
.ydf{bottom:638.813333pt;}
.y1dd{bottom:639.933333pt;}
.y8b{bottom:641.853333pt;}
.y5a{bottom:642.013333pt;}
.y13b{bottom:642.813333pt;}
.yb4{bottom:642.973333pt;}
.y236{bottom:643.773333pt;}
.y10b{bottom:644.893333pt;}
.y16a{bottom:646.973333pt;}
.y25a{bottom:647.453333pt;}
.y20e{bottom:648.413333pt;}
.y18d{bottom:648.893333pt;}
.yde{bottom:655.933333pt;}
.y1dc{bottom:657.213333pt;}
.y59{bottom:658.013333pt;}
.y8a{bottom:658.973333pt;}
.yb3{bottom:659.773333pt;}
.y235{bottom:660.893333pt;}
.y10a{bottom:661.693333pt;}
.y259{bottom:662.653333pt;}
.y169{bottom:663.613333pt;}
.y20d{bottom:666.333333pt;}
.y13a{bottom:670.813333pt;}
.y14{bottom:670.973333pt;}
.ydd{bottom:673.213333pt;}
.y58{bottom:674.013333pt;}
.y1db{bottom:674.333333pt;}
.y89{bottom:675.933333pt;}
.yb2{bottom:676.733333pt;}
.y234{bottom:676.893333pt;}
.y258{bottom:677.853333pt;}
.y109{bottom:678.653333pt;}
.y18c{bottom:679.613333pt;}
.y168{bottom:680.413333pt;}
.y13{bottom:684.093333pt;}
.y20c{bottom:684.253333pt;}
.y57{bottom:689.853333pt;}
.ydc{bottom:690.333333pt;}
.y1da{bottom:691.613333pt;}
.y257{bottom:692.893333pt;}
.y88{bottom:693.053333pt;}
.yb1{bottom:693.533333pt;}
.y108{bottom:695.453333pt;}
.y167{bottom:697.053333pt;}
.y12{bottom:699.973333pt;}
.y20b{bottom:702.213333pt;}
.y12c{bottom:702.853333pt;}
.y233{bottom:705.413333pt;}
.y56{bottom:705.893333pt;}
.ydb{bottom:707.493333pt;}
.y1d9{bottom:708.773333pt;}
.y87{bottom:710.053333pt;}
.yb0{bottom:710.373333pt;}
.y107{bottom:712.293333pt;}
.y166{bottom:713.733333pt;}
.y18b{bottom:713.893333pt;}
.y256{bottom:715.813333pt;}
.y11{bottom:717.413333pt;}
.y20a{bottom:720.133333pt;}
.y232{bottom:721.093333pt;}
.y55{bottom:721.893333pt;}
.yda{bottom:724.773333pt;}
.y1d8{bottom:725.893333pt;}
.y86{bottom:727.173333pt;}
.y106{bottom:729.093333pt;}
.y165{bottom:730.533333pt;}
.y132{bottom:730.853333pt;}
.y18a{bottom:731.173333pt;}
.y10{bottom:735.013333pt;}
.y231{bottom:736.613333pt;}
.y54{bottom:737.893333pt;}
.y209{bottom:738.053333pt;}
.yd9{bottom:741.893333pt;}
.y1d7{bottom:743.173333pt;}
.yaf{bottom:744.133333pt;}
.y85{bottom:744.293333pt;}
.y105{bottom:746.053333pt;}
.y255{bottom:746.213333pt;}
.y164{bottom:747.173333pt;}
.y230{bottom:752.293333pt;}
.y53{bottom:753.733333pt;}
.yf{bottom:753.893333pt;}
.y208{bottom:755.813333pt;}
.yd8{bottom:759.173333pt;}
.y1d6{bottom:760.293333pt;}
.yae{bottom:760.933333pt;}
.y84{bottom:761.253333pt;}
.y104{bottom:762.853333pt;}
.y163{bottom:763.813333pt;}
.y22f{bottom:767.973333pt;}
.y254{bottom:769.253333pt;}
.y52{bottom:769.733333pt;}
.y207{bottom:773.733333pt;}
.yd7{bottom:776.293333pt;}
.y1d5{bottom:777.573333pt;}
.yad{bottom:777.733333pt;}
.y83{bottom:778.373333pt;}
.ye{bottom:779.333333pt;}
.y103{bottom:779.653333pt;}
.y162{bottom:780.613333pt;}
.y22e{bottom:783.813333pt;}
.y253{bottom:784.453333pt;}
.y51{bottom:785.413333pt;}
.y206{bottom:791.653333pt;}
.yd6{bottom:793.573333pt;}
.yac{bottom:794.533333pt;}
.y12a{bottom:794.693333pt;}
.y82{bottom:795.333333pt;}
.y102{bottom:796.453333pt;}
.y161{bottom:797.253333pt;}
.y252{bottom:799.653333pt;}
.yd{bottom:800.773333pt;}
.y205{bottom:809.573333pt;}
.yd5{bottom:810.693333pt;}
.yab{bottom:811.333333pt;}
.y1d4{bottom:811.973333pt;}
.y50{bottom:812.293333pt;}
.y81{bottom:812.453333pt;}
.y101{bottom:813.253333pt;}
.y160{bottom:813.893333pt;}
.y22d{bottom:816.453333pt;}
.y251{bottom:822.533333pt;}
.y204{bottom:827.493333pt;}
.yd4{bottom:827.973333pt;}
.yaa{bottom:828.293333pt;}
.y129{bottom:829.093333pt;}
.y80{bottom:829.413333pt;}
.y100{bottom:830.213333pt;}
.y15f{bottom:830.693333pt;}
.y22c{bottom:831.973333pt;}
.y4f{bottom:840.293333pt;}
.yc{bottom:841.413333pt;}
.ya9{bottom:845.093333pt;}
.y203{bottom:845.413333pt;}
.y250{bottom:846.053333pt;}
.y1d3{bottom:846.373333pt;}
.y7f{bottom:846.533333pt;}
.yff{bottom:847.013333pt;}
.y15e{bottom:847.333333pt;}
.y22b{bottom:847.653333pt;}
.yb{bottom:855.013333pt;}
.y4e{bottom:861.093333pt;}
.ya8{bottom:862.373333pt;}
.y128{bottom:863.333333pt;}
.y1d2{bottom:863.493333pt;}
.y7e{bottom:863.653333pt;}
.yfe{bottom:863.813333pt;}
.y15d{bottom:863.973333pt;}
.y8{bottom:881.893333pt;}
.y6{bottom:882.853333pt;}
.y7a{bottom:893.600000pt;}
.y49{bottom:893.920000pt;}
.y5{bottom:909.280000pt;}
.y4d{bottom:923.200000pt;}
.h8{height:12.192000pt;}
.h18{height:12.800000pt;}
.h4{height:13.120000pt;}
.h1{height:15.040000pt;}
.h24{height:21.920000pt;}
.h25{height:22.720000pt;}
.h1b{height:26.560000pt;}
.h5{height:26.589375pt;}
.h1e{height:27.360000pt;}
.h29{height:28.000000pt;}
.h1d{height:31.200000pt;}
.h20{height:31.232000pt;}
.h21{height:31.360000pt;}
.h23{height:32.160000pt;}
.h13{height:32.298750pt;}
.h2f{height:32.832000pt;}
.h1a{height:33.760000pt;}
.h2a{height:33.792000pt;}
.h16{height:36.305625pt;}
.h12{height:37.310625pt;}
.h10{height:37.645625pt;}
.ha{height:40.103437pt;}
.h17{height:41.765625pt;}
.h14{height:44.975625pt;}
.h15{height:46.220625pt;}
.hf{height:46.635625pt;}
.h2e{height:46.880000pt;}
.h27{height:47.040000pt;}
.h6{height:47.742188pt;}
.h37{height:49.005000pt;}
.h36{height:49.445000pt;}
.h34{height:49.852500pt;}
.hd{height:51.232500pt;}
.he{height:51.692500pt;}
.h9{height:52.834688pt;}
.h35{height:54.187500pt;}
.h22{height:54.720000pt;}
.h33{height:55.687500pt;}
.h7{height:58.563750pt;}
.h3{height:60.519362pt;}
.h2{height:61.410000pt;}
.h28{height:62.432000pt;}
.h2c{height:62.560000pt;}
.h32{height:62.592000pt;}
.h19{height:66.750000pt;}
.h31{height:67.360000pt;}
.hb{height:72.090000pt;}
.hc{height:74.729375pt;}
.h26{height:78.880000pt;}
.h2d{height:80.512000pt;}
.h1c{height:91.200000pt;}
.h1f{height:119.232000pt;}
.h2b{height:123.040000pt;}
.h30{height:178.266667pt;}
.h11{height:549.693333pt;}
.h0{height:972.000000pt;}
.w1{width:32.000000pt;}
.wc{width:75.392000pt;}
.w10{width:85.152000pt;}
.w9{width:100.000000pt;}
.wd{width:111.232000pt;}
.we{width:134.586667pt;}
.wa{width:139.746667pt;}
.w5{width:183.226667pt;}
.wb{width:195.226667pt;}
.wf{width:207.866667pt;}
.w4{width:275.106667pt;}
.w6{width:353.213333pt;}
.w8{width:491.493333pt;}
.w2{width:494.853333pt;}
.w7{width:503.493333pt;}
.w3{width:687.999990pt;}
.w0{width:688.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x11{left:3.840000pt;}
.x2c{left:7.200000pt;}
.x23{left:8.480000pt;}
.xc{left:9.600000pt;}
.x18{left:10.720000pt;}
.x29{left:12.040000pt;}
.x2e{left:13.760000pt;}
.x38{left:15.720000pt;}
.x41{left:17.600000pt;}
.x15{left:18.720000pt;}
.x13{left:20.480000pt;}
.x43{left:22.240000pt;}
.x35{left:23.560000pt;}
.x36{left:24.840000pt;}
.x3f{left:26.240000pt;}
.x31{left:27.560000pt;}
.x2f{left:28.800000pt;}
.x3{left:30.720000pt;}
.x2d{left:32.040000pt;}
.x44{left:33.120000pt;}
.x34{left:34.600000pt;}
.x3b{left:35.520000pt;}
.x33{left:39.520000pt;}
.x37{left:41.920000pt;}
.x39{left:43.560000pt;}
.x42{left:47.360000pt;}
.x32{left:48.320000pt;}
.x30{left:50.920000pt;}
.x40{left:54.720000pt;}
.xb{left:75.551990pt;}
.x4{left:79.392000pt;}
.x17{left:81.274667pt;}
.x12{left:89.434667pt;}
.x19{left:92.032000pt;}
.x21{left:98.271990pt;}
.x27{left:99.391990pt;}
.x1f{left:101.311990pt;}
.x26{left:113.311990pt;}
.x3a{left:122.271990pt;}
.x1d{left:132.352000pt;}
.x14{left:142.274667pt;}
.x16{left:144.034667pt;}
.x20{left:145.946656pt;}
.x1a{left:146.914667pt;}
.x24{left:166.114667pt;}
.x22{left:174.426656pt;}
.x28{left:175.546667pt;}
.x3c{left:186.786667pt;}
.xf{left:221.346656pt;}
.x1c{left:252.381333pt;}
.xd{left:260.226656pt;}
.x45{left:267.586656pt;}
.x10{left:301.346656pt;}
.x2a{left:315.293333pt;}
.x3d{left:321.373333pt;}
.xe{left:341.213323pt;}
.x1b{left:357.701333pt;}
.x6{left:398.813323pt;}
.x7{left:429.213323pt;}
.x5{left:470.021333pt;}
.x1e{left:478.048000pt;}
.x25{left:485.088000pt;}
.x2b{left:510.533333pt;}
.x8{left:513.413323pt;}
.x9{left:521.893323pt;}
.x3e{left:529.253333pt;}
.x1{left:574.720000pt;}
.xa{left:612.479990pt;}
}




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