
    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_4ffd21607fefdcff64aca06b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_9294396981ccc71ebf68a2b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_d19ffa6a823cff5f089bc895.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_ec6901f4c0bff0a87a5e1552.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_4ea38d6a7c686d0c02c29da1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_c952a51c025eb9284c9ddd7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_f53056505bd95e03976a7525.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v4{vertical-align:-83.160000px;}
.v2{vertical-align:-33.119400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.119400px;}
.v1{vertical-align:36.000000px;}
.ls69{letter-spacing:-0.460908px;}
.ls1e{letter-spacing:-0.453096px;}
.ls62{letter-spacing:-0.343728px;}
.ls65{letter-spacing:-0.304668px;}
.ls66{letter-spacing:-0.296856px;}
.ls58{letter-spacing:-0.273420px;}
.ls67{letter-spacing:-0.226548px;}
.ls50{letter-spacing:-0.210924px;}
.ls6a{letter-spacing:-0.195300px;}
.ls68{letter-spacing:-0.179676px;}
.ls6d{letter-spacing:-0.171864px;}
.ls61{letter-spacing:-0.132804px;}
.ls3d{letter-spacing:-0.124992px;}
.ls35{letter-spacing:-0.117180px;}
.ls2a{letter-spacing:-0.115344px;}
.ls23{letter-spacing:-0.115200px;}
.ls46{letter-spacing:-0.109368px;}
.ls37{letter-spacing:-0.101556px;}
.ls1c{letter-spacing:-0.093744px;}
.ls33{letter-spacing:-0.085932px;}
.ls1d{letter-spacing:-0.078120px;}
.ls2b{letter-spacing:-0.070308px;}
.ls1b{letter-spacing:-0.067284px;}
.ls19{letter-spacing:-0.062496px;}
.ls28{letter-spacing:-0.054684px;}
.ls21{letter-spacing:-0.050400px;}
.ls2c{letter-spacing:-0.046872px;}
.ls29{letter-spacing:-0.043200px;}
.ls18{letter-spacing:-0.039060px;}
.ls1a{letter-spacing:-0.038448px;}
.ls24{letter-spacing:-0.036000px;}
.ls30{letter-spacing:-0.031248px;}
.ls22{letter-spacing:-0.028800px;}
.ls31{letter-spacing:-0.023436px;}
.ls32{letter-spacing:-0.015624px;}
.ls20{letter-spacing:-0.014400px;}
.ls2e{letter-spacing:-0.007812px;}
.ls1f{letter-spacing:-0.007200px;}
.ls17{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.007812px;}
.ls11{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.015624px;}
.lse{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.023436px;}
.lsa{letter-spacing:0.028800px;}
.ls4{letter-spacing:0.031248px;}
.lsc{letter-spacing:0.036000px;}
.ls26{letter-spacing:0.039060px;}
.ls12{letter-spacing:0.043200px;}
.ls27{letter-spacing:0.046872px;}
.lsf{letter-spacing:0.050400px;}
.ls42{letter-spacing:0.054684px;}
.ls14{letter-spacing:0.057600px;}
.ls25{letter-spacing:0.062496px;}
.lsd{letter-spacing:0.064800px;}
.ls36{letter-spacing:0.070308px;}
.ls8{letter-spacing:0.072000px;}
.ls59{letter-spacing:0.078120px;}
.ls10{letter-spacing:0.081000px;}
.ls6{letter-spacing:0.085932px;}
.ls15{letter-spacing:0.093600px;}
.ls53{letter-spacing:0.093744px;}
.ls3a{letter-spacing:0.101556px;}
.ls55{letter-spacing:0.109368px;}
.ls41{letter-spacing:0.117180px;}
.ls1{letter-spacing:0.140616px;}
.lsb{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.158400px;}
.ls63{letter-spacing:0.179676px;}
.ls7{letter-spacing:0.180000px;}
.ls64{letter-spacing:0.273420px;}
.ls38{letter-spacing:0.570276px;}
.ls49{letter-spacing:0.992124px;}
.ls3b{letter-spacing:1.296792px;}
.ls3c{letter-spacing:1.351476px;}
.ls5d{letter-spacing:1.710828px;}
.ls4b{letter-spacing:2.070180px;}
.ls4d{letter-spacing:2.429532px;}
.ls60{letter-spacing:3.148236px;}
.ls45{letter-spacing:4.226292px;}
.ls44{letter-spacing:4.593456px;}
.ls5b{letter-spacing:4.687200px;}
.ls47{letter-spacing:4.952808px;}
.ls43{letter-spacing:5.312160px;}
.ls56{letter-spacing:5.671512px;}
.ls39{letter-spacing:6.030864px;}
.ls4a{letter-spacing:6.390216px;}
.ls5e{letter-spacing:7.468272px;}
.ls3e{letter-spacing:7.827624px;}
.ls57{letter-spacing:8.186976px;}
.ls51{letter-spacing:8.913492px;}
.ls2f{letter-spacing:9.632196px;}
.ls5c{letter-spacing:9.991548px;}
.ls6b{letter-spacing:10.296216px;}
.ls34{letter-spacing:10.350900px;}
.ls48{letter-spacing:10.710252px;}
.ls2d{letter-spacing:12.507012px;}
.ls5a{letter-spacing:12.991356px;}
.ls5f{letter-spacing:13.233528px;}
.ls3f{letter-spacing:14.670936px;}
.ls4c{letter-spacing:16.108344px;}
.ls40{letter-spacing:19.709676px;}
.ls54{letter-spacing:20.069028px;}
.ls6c{letter-spacing:25.107768px;}
.ls52{letter-spacing:29.427804px;}
.ls4f{letter-spacing:34.083756px;}
.ls4e{letter-spacing:37.325736px;}
.ls13{letter-spacing:634.680000px;}
.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;}
}
.ws9{word-spacing:-71.956800px;}
.wsa{word-spacing:-71.949600px;}
.ws0{word-spacing:-19.670616px;}
.ws1{word-spacing:-19.553436px;}
.wsb{word-spacing:-19.530000px;}
.ws48{word-spacing:-19.522188px;}
.ws54{word-spacing:-19.514376px;}
.ws1b{word-spacing:-19.506564px;}
.wsf{word-spacing:-19.498752px;}
.ws31{word-spacing:-19.490940px;}
.ws55{word-spacing:-19.483128px;}
.ws32{word-spacing:-19.475316px;}
.ws1a{word-spacing:-19.467504px;}
.wse{word-spacing:-19.444068px;}
.ws4{word-spacing:-18.028800px;}
.ws3{word-spacing:-17.949600px;}
.ws2{word-spacing:-12.780000px;}
.ws59{word-spacing:-0.507780px;}
.ws56{word-spacing:-0.468720px;}
.ws11{word-spacing:-0.460908px;}
.ws2d{word-spacing:-0.406224px;}
.ws30{word-spacing:-0.367164px;}
.ws40{word-spacing:-0.320292px;}
.ws26{word-spacing:-0.312480px;}
.ws4e{word-spacing:-0.289044px;}
.ws3d{word-spacing:-0.281232px;}
.ws14{word-spacing:-0.265608px;}
.ws3a{word-spacing:-0.242172px;}
.ws3f{word-spacing:-0.226548px;}
.ws16{word-spacing:-0.218736px;}
.ws33{word-spacing:-0.210924px;}
.ws34{word-spacing:-0.187488px;}
.ws4f{word-spacing:-0.171864px;}
.ws5e{word-spacing:-0.164052px;}
.ws7{word-spacing:-0.151200px;}
.ws19{word-spacing:-0.117180px;}
.ws3b{word-spacing:-0.109368px;}
.ws6{word-spacing:-0.108000px;}
.ws2f{word-spacing:-0.101556px;}
.ws27{word-spacing:-0.093744px;}
.ws49{word-spacing:-0.085932px;}
.ws13{word-spacing:-0.078120px;}
.ws1d{word-spacing:-0.070308px;}
.ws1f{word-spacing:-0.062496px;}
.ws25{word-spacing:-0.054684px;}
.ws1e{word-spacing:-0.046872px;}
.ws20{word-spacing:-0.039060px;}
.ws53{word-spacing:-0.023436px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:0.028800px;}
.ws39{word-spacing:0.664020px;}
.ws57{word-spacing:0.992124px;}
.ws24{word-spacing:1.007748px;}
.ws38{word-spacing:1.015560px;}
.ws36{word-spacing:1.788948px;}
.ws5f{word-spacing:1.960812px;}
.ws50{word-spacing:1.968624px;}
.ws37{word-spacing:2.085804px;}
.wsc{word-spacing:2.827944px;}
.ws58{word-spacing:3.882564px;}
.ws60{word-spacing:4.671576px;}
.ws17{word-spacing:5.007492px;}
.ws1c{word-spacing:5.538708px;}
.ws15{word-spacing:8.702568px;}
.ws35{word-spacing:9.624384px;}
.ws4d{word-spacing:9.679068px;}
.ws5a{word-spacing:10.304028px;}
.ws2c{word-spacing:11.108664px;}
.ws12{word-spacing:12.522636px;}
.ws18{word-spacing:13.233528px;}
.ws52{word-spacing:13.506948px;}
.ws5d{word-spacing:14.819364px;}
.ws5c{word-spacing:15.014664px;}
.ws5b{word-spacing:15.053724px;}
.wsd{word-spacing:15.256836px;}
.ws42{word-spacing:15.920856px;}
.ws43{word-spacing:16.139592px;}
.ws41{word-spacing:16.241148px;}
.ws45{word-spacing:17.077032px;}
.ws28{word-spacing:18.311328px;}
.ws47{word-spacing:20.983032px;}
.ws46{word-spacing:21.178332px;}
.ws3c{word-spacing:22.061088px;}
.ws2a{word-spacing:22.100148px;}
.ws29{word-spacing:22.178268px;}
.ws2b{word-spacing:22.193892px;}
.ws4b{word-spacing:22.397004px;}
.ws4c{word-spacing:22.428252px;}
.ws4a{word-spacing:22.670424px;}
.ws3e{word-spacing:22.865724px;}
.ws22{word-spacing:23.412564px;}
.ws23{word-spacing:23.701608px;}
.ws21{word-spacing:23.717232px;}
.ws51{word-spacing:29.099700px;}
.ws10{word-spacing:29.849652px;}
.ws2e{word-spacing:30.169944px;}
.ws44{word-spacing:31.943268px;}
._2d{margin-left:-30.068388px;}
._2c{margin-left:-28.974708px;}
._34{margin-left:-25.998336px;}
._33{margin-left:-24.857784px;}
._23{margin-left:-20.685924px;}
._22{margin-left:-19.014660px;}
._2a{margin-left:-17.173440px;}
._2b{margin-left:-16.094664px;}
._21{margin-left:-14.861268px;}
._11{margin-left:-13.524840px;}
._10{margin-left:-12.217212px;}
._15{margin-left:-11.009736px;}
._12{margin-left:-9.887364px;}
._13{margin-left:-8.702640px;}
._1e{margin-left:-7.168572px;}
._1d{margin-left:-5.512788px;}
._24{margin-left:-4.168044px;}
._1f{margin-left:-2.538900px;}
._0{margin-left:-1.390536px;}
._3{width:1.008000px;}
._5{width:2.599200px;}
._1c{width:3.608892px;}
._4{width:4.615200px;}
._6{width:6.508800px;}
._a{width:7.696800px;}
._2{width:9.158400px;}
._1{width:10.641600px;}
._9{width:12.348000px;}
._c{width:13.780800px;}
._b{width:15.098400px;}
._8{width:16.898400px;}
._f{width:18.225396px;}
._7{width:19.389600px;}
._14{width:20.795544px;}
._1a{width:21.897036px;}
._18{width:23.154768px;}
._19{width:24.717168px;}
._16{width:26.201448px;}
._25{width:27.623232px;}
._27{width:28.701288px;}
._20{width:30.154320px;}
._17{width:31.982328px;}
._26{width:33.068196px;}
._1b{width:34.146252px;}
._2e{width:35.255556px;}
._30{width:36.982008px;}
._32{width:39.020940px;}
._31{width:40.145868px;}
._28{width:42.044184px;}
._29{width:44.583084px;}
._2f{width:45.661140px;}
._d{width:67.384800px;}
._e{width:68.587200px;}
.fc4{color:rgb(132,60,11);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.880000px;}
.fs6{font-size:51.120000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.120000px;}
.fs2{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs4{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:57.690150px;}
.y56{bottom:58.050150px;}
.y2d{bottom:78.210000px;}
.y55{bottom:80.010150px;}
.y16a{bottom:105.016878px;}
.y99{bottom:105.300000px;}
.yc1{bottom:107.535006px;}
.y148{bottom:107.548650px;}
.y127{bottom:109.790280px;}
.y216{bottom:110.064237px;}
.y16e{bottom:111.940407px;}
.y1f8{bottom:112.316100px;}
.y7b{bottom:116.352234px;}
.y101{bottom:116.370000px;}
.y54{bottom:118.611198px;}
.y19a{bottom:120.763737px;}
.y1cf{bottom:123.297612px;}
.y169{bottom:127.427553px;}
.y98{bottom:127.800000px;}
.yc0{bottom:129.945681px;}
.y147{bottom:129.959325px;}
.y1a7{bottom:132.190920px;}
.y126{bottom:132.200955px;}
.y215{bottom:132.474912px;}
.y16d{bottom:134.351082px;}
.y1f7{bottom:134.726775px;}
.y181{bottom:136.602747px;}
.y1c7{bottom:138.762909px;}
.y53{bottom:141.021873px;}
.y199{bottom:143.264250px;}
.y1ce{bottom:145.798125px;}
.y168{bottom:149.838228px;}
.y97{bottom:150.210000px;}
.y146{bottom:152.349930px;}
.ybf{bottom:152.356356px;}
.y1a6{bottom:154.601595px;}
.y125{bottom:154.611630px;}
.y214{bottom:154.885587px;}
.y100{bottom:156.761433px;}
.y7a{bottom:156.761757px;}
.y230{bottom:157.123773px;}
.y1f6{bottom:157.137450px;}
.y180{bottom:159.013422px;}
.y1c6{bottom:161.263422px;}
.y52{bottom:163.432548px;}
.y1cd{bottom:168.208800px;}
.y167{bottom:172.248903px;}
.y96{bottom:172.620000px;}
.y145{bottom:174.760605px;}
.y2a{bottom:175.230000px;}
.y1a5{bottom:177.012270px;}
.y124{bottom:177.022305px;}
.y213{bottom:177.296262px;}
.y238{bottom:177.299487px;}
.yff{bottom:179.261946px;}
.y79{bottom:179.262270px;}
.y22f{bottom:179.534448px;}
.y1f5{bottom:179.548125px;}
.y17f{bottom:181.424097px;}
.y198{bottom:183.673773px;}
.y1c5{bottom:183.674097px;}
.y51{bottom:185.843223px;}
.y1cc{bottom:190.619475px;}
.ybe{bottom:192.765879px;}
.y166{bottom:194.749416px;}
.y95{bottom:195.030150px;}
.y29{bottom:195.930000px;}
.y144{bottom:197.261118px;}
.yda{bottom:199.422945px;}
.y123{bottom:199.432980px;}
.y237{bottom:199.774485px;}
.y212{bottom:199.796775px;}
.yfe{bottom:201.672621px;}
.y78{bottom:201.672945px;}
.y22e{bottom:201.945123px;}
.y1f4{bottom:201.958800px;}
.y17e{bottom:203.834772px;}
.y197{bottom:206.084448px;}
.y1c4{bottom:206.084772px;}
.y50{bottom:208.253898px;}
.y1cb{bottom:213.030150px;}
.ybd{bottom:215.266392px;}
.y28{bottom:216.540000px;}
.y165{bottom:217.160091px;}
.y94{bottom:217.440150px;}
.y143{bottom:219.671793px;}
.y1a4{bottom:221.833620px;}
.y122{bottom:221.843655px;}
.y236{bottom:222.185160px;}
.y211{bottom:222.207450px;}
.yfd{bottom:224.083296px;}
.y77{bottom:224.083620px;}
.y22d{bottom:224.355798px;}
.y1f3{bottom:224.369475px;}
.y17d{bottom:226.245447px;}
.y196{bottom:228.495123px;}
.y1c3{bottom:228.495447px;}
.y4f{bottom:230.754411px;}
.y1ca{bottom:235.440150px;}
.y27{bottom:237.330000px;}
.ybc{bottom:237.677067px;}
.y164{bottom:239.570766px;}
.yd9{bottom:239.832468px;}
.y93{bottom:239.850150px;}
.y142{bottom:242.082468px;}
.y1a3{bottom:244.244295px;}
.y121{bottom:244.254330px;}
.y235{bottom:244.595835px;}
.y210{bottom:244.618125px;}
.yfc{bottom:246.493971px;}
.y76{bottom:246.494295px;}
.y22c{bottom:246.766473px;}
.y1f2{bottom:246.780150px;}
.y17c{bottom:248.745960px;}
.y195{bottom:250.905798px;}
.y1c2{bottom:250.906122px;}
.y4e{bottom:253.165086px;}
.y1c9{bottom:257.850150px;}
.y26{bottom:258.030000px;}
.ybb{bottom:260.087742px;}
.yd8{bottom:262.243143px;}
.y141{bottom:264.493143px;}
.y120{bottom:266.754843px;}
.y234{bottom:267.006510px;}
.y20f{bottom:267.028800px;}
.yfb{bottom:268.904646px;}
.y75{bottom:268.904970px;}
.y22b{bottom:269.266986px;}
.y1f1{bottom:269.267499px;}
.y17b{bottom:271.156635px;}
.y194{bottom:273.316473px;}
.y1c1{bottom:273.316797px;}
.y4d{bottom:275.575761px;}
.y25{bottom:278.730000px;}
.y163{bottom:279.800613px;}
.y92{bottom:280.241991px;}
.yba{bottom:282.498417px;}
.yd7{bottom:284.743656px;}
.y16c{bottom:286.724142px;}
.y140{bottom:286.903818px;}
.y233{bottom:289.417185px;}
.y20e{bottom:289.439475px;}
.yfa{bottom:291.315321px;}
.y22a{bottom:291.677661px;}
.y1f0{bottom:291.678174px;}
.y17a{bottom:293.567310px;}
.y193{bottom:295.727148px;}
.y1c0{bottom:295.727472px;}
.y24{bottom:299.340000px;}
.y91{bottom:302.742504px;}
.yd6{bottom:307.154331px;}
.y11f{bottom:307.164366px;}
.y74{bottom:309.314493px;}
.y232{bottom:311.827860px;}
.y20d{bottom:311.850150px;}
.yf9{bottom:313.725996px;}
.y229{bottom:314.088336px;}
.y1ef{bottom:314.088849px;}
.y4c{bottom:315.985284px;}
.y192{bottom:318.227661px;}
.y1bf{bottom:318.227985px;}
.y23{bottom:320.040000px;}
.y162{bottom:320.389812px;}
.yb9{bottom:322.907940px;}
.y90{bottom:325.153179px;}
.y13f{bottom:327.313341px;}
.yd5{bottom:329.565006px;}
.y11e{bottom:329.575041px;}
.y73{bottom:331.725168px;}
.y179{bottom:333.797157px;}
.y231{bottom:334.238535px;}
.y20c{bottom:334.260150px;}
.yf8{bottom:336.226509px;}
.y228{bottom:336.499011px;}
.y1ee{bottom:336.499524px;}
.y4b{bottom:338.395959px;}
.y191{bottom:340.638336px;}
.y1be{bottom:340.638660px;}
.y22{bottom:340.740000px;}
.y161{bottom:342.800487px;}
.yb8{bottom:345.318615px;}
.y8f{bottom:347.563854px;}
.y13e{bottom:349.724016px;}
.y1a2{bottom:351.975681px;}
.y11d{bottom:351.985716px;}
.y72{bottom:354.225681px;}
.y20b{bottom:356.739048px;}
.yf7{bottom:358.637184px;}
.y227{bottom:358.909686px;}
.y1ed{bottom:358.910199px;}
.y4a{bottom:360.806634px;}
.y21{bottom:361.440000px;}
.y190{bottom:363.049011px;}
.y1bd{bottom:363.049335px;}
.y160{bottom:365.211162px;}
.yb7{bottom:367.729290px;}
.yd4{bottom:369.974529px;}
.y13d{bottom:372.224529px;}
.y178{bottom:374.386356px;}
.y11c{bottom:374.396391px;}
.y71{bottom:376.636356px;}
.y20a{bottom:379.149723px;}
.y226{bottom:381.320361px;}
.y1ec{bottom:381.320874px;}
.y20{bottom:382.140000px;}
.y49{bottom:383.217309px;}
.y18f{bottom:385.459686px;}
.y1bc{bottom:385.460010px;}
.y15f{bottom:387.711675px;}
.y8e{bottom:387.973377px;}
.yb6{bottom:390.229803px;}
.yd3{bottom:392.385204px;}
.y13c{bottom:394.635204px;}
.y177{bottom:396.797031px;}
.y11b{bottom:396.807066px;}
.yf6{bottom:399.046707px;}
.y209{bottom:401.560398px;}
.y1f{bottom:402.840000px;}
.y225{bottom:403.731036px;}
.y1eb{bottom:403.731549px;}
.y48{bottom:405.717822px;}
.y18e{bottom:407.870361px;}
.y8d{bottom:410.384052px;}
.yb5{bottom:412.640478px;}
.yd2{bottom:414.795879px;}
.y70{bottom:416.866203px;}
.y13b{bottom:417.045879px;}
.y176{bottom:419.207706px;}
.y11a{bottom:419.217741px;}
.yf5{bottom:421.457382px;}
.y1e{bottom:423.540000px;}
.y208{bottom:423.971073px;}
.y1bb{bottom:425.869533px;}
.y224{bottom:426.231549px;}
.y1ea{bottom:426.232062px;}
.y15e{bottom:427.941522px;}
.y8c{bottom:432.794727px;}
.yb4{bottom:435.051153px;}
.yd1{bottom:437.206554px;}
.y6f{bottom:439.276878px;}
.y13a{bottom:439.456554px;}
.y175{bottom:441.708219px;}
.y119{bottom:441.718254px;}
.yf4{bottom:443.868057px;}
.y1d{bottom:444.240000px;}
.y47{bottom:445.947669px;}
.y207{bottom:446.381748px;}
.y18d{bottom:448.100208px;}
.y1ba{bottom:448.280208px;}
.y223{bottom:448.642224px;}
.y1e9{bottom:448.642737px;}
.y8b{bottom:455.205402px;}
.yb3{bottom:457.461828px;}
.yd0{bottom:459.707067px;}
.y139{bottom:461.867229px;}
.y174{bottom:464.118894px;}
.y118{bottom:464.128929px;}
.y1c{bottom:464.760000px;}
.yf3{bottom:466.278732px;}
.y15d{bottom:468.530721px;}
.y206{bottom:468.792423px;}
.y1b9{bottom:470.690883px;}
.y222{bottom:471.052899px;}
.y1e8{bottom:471.053412px;}
.y8a{bottom:477.705915px;}
.y6e{bottom:479.866077px;}
.yb2{bottom:479.872503px;}
.ycf{bottom:482.117742px;}
.y138{bottom:484.277904px;}
.y46{bottom:486.536868px;}
.y117{bottom:486.539604px;}
.yf2{bottom:488.689407px;}
.y15c{bottom:490.941396px;}
.y205{bottom:491.203098px;}
.y1b8{bottom:493.191396px;}
.y221{bottom:493.463574px;}
.y1e7{bottom:493.464087px;}
.y89{bottom:500.116590px;}
.y6d{bottom:502.276752px;}
.yb1{bottom:502.283178px;}
.y173{bottom:504.348741px;}
.yce{bottom:504.528417px;}
.y1b{bottom:506.340000px;}
.y137{bottom:506.688579px;}
.y45{bottom:508.947543px;}
.y116{bottom:508.950279px;}
.yf1{bottom:511.189920px;}
.y15b{bottom:513.352071px;}
.y204{bottom:513.703611px;}
.y1b7{bottom:515.602071px;}
.y220{bottom:515.874249px;}
.y1e6{bottom:515.874762px;}
.y88{bottom:522.527265px;}
.y6c{bottom:524.687427px;}
.yb0{bottom:524.693853px;}
.ycd{bottom:526.939092px;}
.y1a{bottom:527.040000px;}
.y136{bottom:529.189092px;}
.yf0{bottom:533.600595px;}
.y15a{bottom:535.762746px;}
.y203{bottom:536.114286px;}
.y1b6{bottom:538.012746px;}
.y21f{bottom:538.284924px;}
.y1e5{bottom:538.285437px;}
.y87{bottom:544.937940px;}
.y6b{bottom:547.187940px;}
.y19{bottom:547.740000px;}
.y1a1{bottom:549.349767px;}
.y44{bottom:549.357066px;}
.y115{bottom:549.359802px;}
.y135{bottom:551.599767px;}
.yef{bottom:556.011270px;}
.y159{bottom:558.173421px;}
.y202{bottom:558.524961px;}
.y1b5{bottom:560.423421px;}
.y21e{bottom:560.695599px;}
.y1e4{bottom:560.696112px;}
.yaf{bottom:565.193214px;}
.ycc{bottom:567.348615px;}
.y18{bottom:568.440000px;}
.y6a{bottom:569.598615px;}
.y1a0{bottom:571.760442px;}
.y43{bottom:571.767741px;}
.y114{bottom:571.770477px;}
.y134{bottom:574.010442px;}
.yee{bottom:578.421945px;}
.y158{bottom:580.673934px;}
.y201{bottom:580.935636px;}
.y21d{bottom:583.196112px;}
.y1e3{bottom:583.196625px;}
.y86{bottom:585.347463px;}
.yae{bottom:587.603889px;}
.y17{bottom:589.140000px;}
.ycb{bottom:589.759290px;}
.y69{bottom:592.009290px;}
.y19f{bottom:594.171117px;}
.y42{bottom:594.178416px;}
.y133{bottom:596.421117px;}
.yed{bottom:600.832620px;}
.y1b4{bottom:600.832944px;}
.y157{bottom:603.084609px;}
.y200{bottom:603.346311px;}
.y21c{bottom:605.606787px;}
.y1e2{bottom:605.607300px;}
.y85{bottom:607.758138px;}
.y16{bottom:609.840000px;}
.yad{bottom:610.014564px;}
.yca{bottom:612.169965px;}
.y113{bottom:612.180000px;}
.y68{bottom:614.419965px;}
.y19e{bottom:616.671630px;}
.y41{bottom:616.678929px;}
.y132{bottom:618.831792px;}
.yec{bottom:623.243295px;}
.y1b3{bottom:623.243619px;}
.y156{bottom:625.495284px;}
.y1ff{bottom:625.756986px;}
.y21b{bottom:628.017462px;}
.y1e1{bottom:628.017975px;}
.y84{bottom:630.168813px;}
.y15{bottom:630.540000px;}
.yac{bottom:632.425239px;}
.yc9{bottom:634.670478px;}
.y112{bottom:634.680000px;}
.y67{bottom:636.830640px;}
.y19d{bottom:639.082305px;}
.y40{bottom:639.089604px;}
.y131{bottom:641.242467px;}
.y18c{bottom:645.743808px;}
.y1b2{bottom:645.744132px;}
.y1fe{bottom:648.167661px;}
.y21a{bottom:650.428137px;}
.y1e0{bottom:650.428650px;}
.y14{bottom:651.240000px;}
.y83{bottom:652.669326px;}
.yab{bottom:654.835914px;}
.yc8{bottom:657.081153px;}
.y111{bottom:657.090000px;}
.y66{bottom:659.241315px;}
.y19c{bottom:661.492980px;}
.y3f{bottom:661.500279px;}
.yeb{bottom:663.742656px;}
.y130{bottom:663.742980px;}
.y155{bottom:665.725131px;}
.y1b1{bottom:668.154807px;}
.y1fd{bottom:670.668174px;}
.y13{bottom:671.940000px;}
.y219{bottom:672.838812px;}
.y1df{bottom:672.839325px;}
.y82{bottom:675.080001px;}
.yaa{bottom:677.246589px;}
.yc7{bottom:679.491828px;}
.y110{bottom:679.500000px;}
.y19b{bottom:683.903655px;}
.y3e{bottom:683.910954px;}
.y18b{bottom:685.973655px;}
.yea{bottom:686.153331px;}
.y12f{bottom:686.153655px;}
.y1b0{bottom:690.565482px;}
.y12{bottom:692.640000px;}
.y1fc{bottom:693.078849px;}
.y218{bottom:695.249487px;}
.y1de{bottom:695.250000px;}
.y81{bottom:697.490676px;}
.y65{bottom:699.740676px;}
.ya9{bottom:699.747102px;}
.yc6{bottom:701.902503px;}
.y10f{bottom:701.910000px;}
.y16b{bottom:703.972827px;}
.y154{bottom:706.314330px;}
.ye9{bottom:708.564006px;}
.y12e{bottom:708.564330px;}
.y1af{bottom:712.976157px;}
.y11{bottom:713.430000px;}
.y1fb{bottom:715.489524px;}
.y1dd{bottom:717.739524px;}
.y217{bottom:717.750000px;}
.y80{bottom:719.901351px;}
.y64{bottom:722.151351px;}
.ya8{bottom:722.157777px;}
.y3d{bottom:724.140801px;}
.y172{bottom:724.313178px;}
.y10e{bottom:724.320000px;}
.y18a{bottom:726.562854px;}
.y153{bottom:728.725005px;}
.ye8{bottom:730.974681px;}
.y12d{bottom:730.975005px;}
.y1ae{bottom:735.386832px;}
.y10{bottom:735.750000px;}
.y1fa{bottom:737.900199px;}
.y1dc{bottom:740.150199px;}
.y7f{bottom:742.312026px;}
.y63{bottom:744.562026px;}
.ya7{bottom:744.568452px;}
.y1c8{bottom:746.544177px;}
.y171{bottom:746.723853px;}
.y10d{bottom:746.730000px;}
.y189{bottom:748.973529px;}
.y152{bottom:751.135680px;}
.ye7{bottom:753.385356px;}
.y12c{bottom:753.385680px;}
.yf{bottom:757.170000px;}
.y1f9{bottom:760.310874px;}
.y1db{bottom:762.560874px;}
.yc5{bottom:764.722701px;}
.y3c{bottom:764.730000px;}
.y62{bottom:766.972701px;}
.ya6{bottom:766.979127px;}
.y10c{bottom:769.140000px;}
.y188{bottom:771.384204px;}
.y151{bottom:773.636193px;}
.y1ad{bottom:775.616679px;}
.y12b{bottom:775.796355px;}
.y7e{bottom:782.721549px;}
.y1da{bottom:784.971549px;}
.yc4{bottom:787.133376px;}
.y3b{bottom:787.140000px;}
.ye{bottom:788.940000px;}
.y61{bottom:789.383376px;}
.ya5{bottom:789.389802px;}
.ye6{bottom:793.794879px;}
.y150{bottom:796.046868px;}
.y12a{bottom:798.207030px;}
.y7d{bottom:805.132224px;}
.y1d9{bottom:807.382224px;}
.yc3{bottom:809.633889px;}
.yd{bottom:809.640000px;}
.y60{bottom:811.794051px;}
.ya4{bottom:811.800477px;}
.ye5{bottom:816.205554px;}
.y1ac{bottom:816.205878px;}
.y14f{bottom:818.457543px;}
.y129{bottom:820.707543px;}
.yc{bottom:821.790000px;}
.y7c{bottom:827.632737px;}
.y1d8{bottom:829.792899px;}
.yc2{bottom:832.044564px;}
.y10b{bottom:832.050000px;}
.y187{bottom:834.204402px;}
.y5f{bottom:834.204726px;}
.ye4{bottom:838.706067px;}
.y1ab{bottom:838.706391px;}
.y3a{bottom:850.043412px;}
.yb{bottom:851.850000px;}
.y1d7{bottom:852.203574px;}
.ya3{bottom:852.210000px;}
.y170{bottom:854.455239px;}
.y10a{bottom:854.460000px;}
.y186{bottom:856.704915px;}
.y5e{bottom:856.705239px;}
.y14e{bottom:858.687390px;}
.y128{bottom:860.937390px;}
.ye3{bottom:861.116742px;}
.y1aa{bottom:861.117066px;}
.y39{bottom:872.454087px;}
.y1d6{bottom:874.704087px;}
.ya2{bottom:874.710000px;}
.y16f{bottom:876.865914px;}
.y109{bottom:876.870000px;}
.y185{bottom:879.115590px;}
.y5d{bottom:879.115914px;}
.ya{bottom:883.260000px;}
.ye2{bottom:883.527417px;}
.y1a9{bottom:883.527741px;}
.y38{bottom:894.864762px;}
.y1d5{bottom:897.114762px;}
.ya1{bottom:897.120000px;}
.y14d{bottom:899.276589px;}
.y108{bottom:899.280000px;}
.y184{bottom:901.526265px;}
.y5c{bottom:901.526589px;}
.y9{bottom:905.580000px;}
.ye1{bottom:905.938092px;}
.y1a8{bottom:905.938416px;}
.y37{bottom:917.275437px;}
.y1d4{bottom:919.525437px;}
.ya0{bottom:919.530000px;}
.y14c{bottom:921.687264px;}
.y107{bottom:921.690000px;}
.y183{bottom:923.936940px;}
.y5b{bottom:923.937264px;}
.y8{bottom:926.280000px;}
.ye0{bottom:928.348767px;}
.y36{bottom:939.686112px;}
.y1d3{bottom:941.936112px;}
.y9f{bottom:941.940000px;}
.y14b{bottom:944.097939px;}
.y106{bottom:944.100000px;}
.y182{bottom:946.347615px;}
.y5a{bottom:946.347939px;}
.y7{bottom:948.060000px;}
.y35{bottom:962.096787px;}
.y1d2{bottom:964.346787px;}
.y9e{bottom:964.350000px;}
.y14a{bottom:966.598452px;}
.y105{bottom:966.600000px;}
.ydf{bottom:968.758290px;}
.y59{bottom:968.758614px;}
.y6{bottom:974.970000px;}
.y34{bottom:984.597300px;}
.y1d1{bottom:986.757462px;}
.y9d{bottom:986.760000px;}
.y149{bottom:989.009127px;}
.yde{bottom:991.168965px;}
.y58{bottom:991.169289px;}
.y2{bottom:994.590150px;}
.y33{bottom:1007.007975px;}
.y104{bottom:1007.010000px;}
.y1d0{bottom:1009.168137px;}
.y9c{bottom:1009.170000px;}
.ydd{bottom:1013.669478px;}
.y57{bottom:1013.669802px;}
.y32{bottom:1029.418650px;}
.y103{bottom:1029.420000px;}
.y5{bottom:1031.668650px;}
.y9b{bottom:1031.670000px;}
.ydc{bottom:1036.080153px;}
.y31{bottom:1051.829325px;}
.y102{bottom:1051.830000px;}
.y4{bottom:1054.079325px;}
.y9a{bottom:1054.080000px;}
.y30{bottom:1074.240000px;}
.ydb{bottom:1076.310000px;}
.y3{bottom:1076.490000px;}
.y2c{bottom:1096.740000px;}
.y2f{bottom:1111.950000px;}
.y2b{bottom:1116.810000px;}
.y1{bottom:1119.150000px;}
.ha{height:42.011895px;}
.h2{height:45.099492px;}
.h1{height:45.646348px;}
.h9{height:49.289062px;}
.he{height:49.886719px;}
.hd{height:53.478633px;}
.h5{height:57.421758px;}
.h7{height:63.175781px;}
.hf{height:66.598770px;}
.h3{height:68.545723px;}
.h4{height:68.551123px;}
.h10{height:68.626003px;}
.hc{height:70.628906px;}
.h8{height:70.995234px;}
.hb{height:73.599785px;}
.h11{height:76.632363px;}
.h12{height:76.734423px;}
.h6{height:82.066289px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:85.500000px;}
.x1{left:112.050000px;}
.x16{left:138.239955px;}
.x8{left:147.420000px;}
.x7{left:160.020000px;}
.x17{left:170.280000px;}
.x18{left:206.011008px;}
.x2{left:237.960000px;}
.x14{left:246.330693px;}
.xc{left:249.840000px;}
.x15{left:259.111125px;}
.xb{left:267.030000px;}
.x3{left:299.430000px;}
.x9{left:300.690000px;}
.xd{left:320.400000px;}
.xf{left:322.739865px;}
.x10{left:333.900000px;}
.x19{left:335.158992px;}
.x1a{left:392.850612px;}
.xe{left:414.540630px;}
.x4{left:417.061143px;}
.x6{left:459.000000px;}
.x11{left:576.360000px;}
.x5{left:599.850225px;}
.x13{left:796.409850px;}
.x12{left:805.950000px;}
@media print{
.v4{vertical-align:-73.920000pt;}
.v2{vertical-align:-29.439467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.439467pt;}
.v1{vertical-align:32.000000pt;}
.ls69{letter-spacing:-0.409696pt;}
.ls1e{letter-spacing:-0.402752pt;}
.ls62{letter-spacing:-0.305536pt;}
.ls65{letter-spacing:-0.270816pt;}
.ls66{letter-spacing:-0.263872pt;}
.ls58{letter-spacing:-0.243040pt;}
.ls67{letter-spacing:-0.201376pt;}
.ls50{letter-spacing:-0.187488pt;}
.ls6a{letter-spacing:-0.173600pt;}
.ls68{letter-spacing:-0.159712pt;}
.ls6d{letter-spacing:-0.152768pt;}
.ls61{letter-spacing:-0.118048pt;}
.ls3d{letter-spacing:-0.111104pt;}
.ls35{letter-spacing:-0.104160pt;}
.ls2a{letter-spacing:-0.102528pt;}
.ls23{letter-spacing:-0.102400pt;}
.ls46{letter-spacing:-0.097216pt;}
.ls37{letter-spacing:-0.090272pt;}
.ls1c{letter-spacing:-0.083328pt;}
.ls33{letter-spacing:-0.076384pt;}
.ls1d{letter-spacing:-0.069440pt;}
.ls2b{letter-spacing:-0.062496pt;}
.ls1b{letter-spacing:-0.059808pt;}
.ls19{letter-spacing:-0.055552pt;}
.ls28{letter-spacing:-0.048608pt;}
.ls21{letter-spacing:-0.044800pt;}
.ls2c{letter-spacing:-0.041664pt;}
.ls29{letter-spacing:-0.038400pt;}
.ls18{letter-spacing:-0.034720pt;}
.ls1a{letter-spacing:-0.034176pt;}
.ls24{letter-spacing:-0.032000pt;}
.ls30{letter-spacing:-0.027776pt;}
.ls22{letter-spacing:-0.025600pt;}
.ls31{letter-spacing:-0.020832pt;}
.ls32{letter-spacing:-0.013888pt;}
.ls20{letter-spacing:-0.012800pt;}
.ls2e{letter-spacing:-0.006944pt;}
.ls1f{letter-spacing:-0.006400pt;}
.ls17{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.006944pt;}
.ls11{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.013888pt;}
.lse{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.020832pt;}
.lsa{letter-spacing:0.025600pt;}
.ls4{letter-spacing:0.027776pt;}
.lsc{letter-spacing:0.032000pt;}
.ls26{letter-spacing:0.034720pt;}
.ls12{letter-spacing:0.038400pt;}
.ls27{letter-spacing:0.041664pt;}
.lsf{letter-spacing:0.044800pt;}
.ls42{letter-spacing:0.048608pt;}
.ls14{letter-spacing:0.051200pt;}
.ls25{letter-spacing:0.055552pt;}
.lsd{letter-spacing:0.057600pt;}
.ls36{letter-spacing:0.062496pt;}
.ls8{letter-spacing:0.064000pt;}
.ls59{letter-spacing:0.069440pt;}
.ls10{letter-spacing:0.072000pt;}
.ls6{letter-spacing:0.076384pt;}
.ls15{letter-spacing:0.083200pt;}
.ls53{letter-spacing:0.083328pt;}
.ls3a{letter-spacing:0.090272pt;}
.ls55{letter-spacing:0.097216pt;}
.ls41{letter-spacing:0.104160pt;}
.ls1{letter-spacing:0.124992pt;}
.lsb{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.140800pt;}
.ls63{letter-spacing:0.159712pt;}
.ls7{letter-spacing:0.160000pt;}
.ls64{letter-spacing:0.243040pt;}
.ls38{letter-spacing:0.506912pt;}
.ls49{letter-spacing:0.881888pt;}
.ls3b{letter-spacing:1.152704pt;}
.ls3c{letter-spacing:1.201312pt;}
.ls5d{letter-spacing:1.520736pt;}
.ls4b{letter-spacing:1.840160pt;}
.ls4d{letter-spacing:2.159584pt;}
.ls60{letter-spacing:2.798432pt;}
.ls45{letter-spacing:3.756704pt;}
.ls44{letter-spacing:4.083072pt;}
.ls5b{letter-spacing:4.166400pt;}
.ls47{letter-spacing:4.402496pt;}
.ls43{letter-spacing:4.721920pt;}
.ls56{letter-spacing:5.041344pt;}
.ls39{letter-spacing:5.360768pt;}
.ls4a{letter-spacing:5.680192pt;}
.ls5e{letter-spacing:6.638464pt;}
.ls3e{letter-spacing:6.957888pt;}
.ls57{letter-spacing:7.277312pt;}
.ls51{letter-spacing:7.923104pt;}
.ls2f{letter-spacing:8.561952pt;}
.ls5c{letter-spacing:8.881376pt;}
.ls6b{letter-spacing:9.152192pt;}
.ls34{letter-spacing:9.200800pt;}
.ls48{letter-spacing:9.520224pt;}
.ls2d{letter-spacing:11.117344pt;}
.ls5a{letter-spacing:11.547872pt;}
.ls5f{letter-spacing:11.763136pt;}
.ls3f{letter-spacing:13.040832pt;}
.ls4c{letter-spacing:14.318528pt;}
.ls40{letter-spacing:17.519712pt;}
.ls54{letter-spacing:17.839136pt;}
.ls6c{letter-spacing:22.318016pt;}
.ls52{letter-spacing:26.158048pt;}
.ls4f{letter-spacing:30.296672pt;}
.ls4e{letter-spacing:33.178432pt;}
.ls13{letter-spacing:564.160000pt;}
.ws9{word-spacing:-63.961600pt;}
.wsa{word-spacing:-63.955200pt;}
.ws0{word-spacing:-17.484992pt;}
.ws1{word-spacing:-17.380832pt;}
.wsb{word-spacing:-17.360000pt;}
.ws48{word-spacing:-17.353056pt;}
.ws54{word-spacing:-17.346112pt;}
.ws1b{word-spacing:-17.339168pt;}
.wsf{word-spacing:-17.332224pt;}
.ws31{word-spacing:-17.325280pt;}
.ws55{word-spacing:-17.318336pt;}
.ws32{word-spacing:-17.311392pt;}
.ws1a{word-spacing:-17.304448pt;}
.wse{word-spacing:-17.283616pt;}
.ws4{word-spacing:-16.025600pt;}
.ws3{word-spacing:-15.955200pt;}
.ws2{word-spacing:-11.360000pt;}
.ws59{word-spacing:-0.451360pt;}
.ws56{word-spacing:-0.416640pt;}
.ws11{word-spacing:-0.409696pt;}
.ws2d{word-spacing:-0.361088pt;}
.ws30{word-spacing:-0.326368pt;}
.ws40{word-spacing:-0.284704pt;}
.ws26{word-spacing:-0.277760pt;}
.ws4e{word-spacing:-0.256928pt;}
.ws3d{word-spacing:-0.249984pt;}
.ws14{word-spacing:-0.236096pt;}
.ws3a{word-spacing:-0.215264pt;}
.ws3f{word-spacing:-0.201376pt;}
.ws16{word-spacing:-0.194432pt;}
.ws33{word-spacing:-0.187488pt;}
.ws34{word-spacing:-0.166656pt;}
.ws4f{word-spacing:-0.152768pt;}
.ws5e{word-spacing:-0.145824pt;}
.ws7{word-spacing:-0.134400pt;}
.ws19{word-spacing:-0.104160pt;}
.ws3b{word-spacing:-0.097216pt;}
.ws6{word-spacing:-0.096000pt;}
.ws2f{word-spacing:-0.090272pt;}
.ws27{word-spacing:-0.083328pt;}
.ws49{word-spacing:-0.076384pt;}
.ws13{word-spacing:-0.069440pt;}
.ws1d{word-spacing:-0.062496pt;}
.ws1f{word-spacing:-0.055552pt;}
.ws25{word-spacing:-0.048608pt;}
.ws1e{word-spacing:-0.041664pt;}
.ws20{word-spacing:-0.034720pt;}
.ws53{word-spacing:-0.020832pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:0.025600pt;}
.ws39{word-spacing:0.590240pt;}
.ws57{word-spacing:0.881888pt;}
.ws24{word-spacing:0.895776pt;}
.ws38{word-spacing:0.902720pt;}
.ws36{word-spacing:1.590176pt;}
.ws5f{word-spacing:1.742944pt;}
.ws50{word-spacing:1.749888pt;}
.ws37{word-spacing:1.854048pt;}
.wsc{word-spacing:2.513728pt;}
.ws58{word-spacing:3.451168pt;}
.ws60{word-spacing:4.152512pt;}
.ws17{word-spacing:4.451104pt;}
.ws1c{word-spacing:4.923296pt;}
.ws15{word-spacing:7.735616pt;}
.ws35{word-spacing:8.555008pt;}
.ws4d{word-spacing:8.603616pt;}
.ws5a{word-spacing:9.159136pt;}
.ws2c{word-spacing:9.874368pt;}
.ws12{word-spacing:11.131232pt;}
.ws18{word-spacing:11.763136pt;}
.ws52{word-spacing:12.006176pt;}
.ws5d{word-spacing:13.172768pt;}
.ws5c{word-spacing:13.346368pt;}
.ws5b{word-spacing:13.381088pt;}
.wsd{word-spacing:13.561632pt;}
.ws42{word-spacing:14.151872pt;}
.ws43{word-spacing:14.346304pt;}
.ws41{word-spacing:14.436576pt;}
.ws45{word-spacing:15.179584pt;}
.ws28{word-spacing:16.276736pt;}
.ws47{word-spacing:18.651584pt;}
.ws46{word-spacing:18.825184pt;}
.ws3c{word-spacing:19.609856pt;}
.ws2a{word-spacing:19.644576pt;}
.ws29{word-spacing:19.714016pt;}
.ws2b{word-spacing:19.727904pt;}
.ws4b{word-spacing:19.908448pt;}
.ws4c{word-spacing:19.936224pt;}
.ws4a{word-spacing:20.151488pt;}
.ws3e{word-spacing:20.325088pt;}
.ws22{word-spacing:20.811168pt;}
.ws23{word-spacing:21.068096pt;}
.ws21{word-spacing:21.081984pt;}
.ws51{word-spacing:25.866400pt;}
.ws10{word-spacing:26.533024pt;}
.ws2e{word-spacing:26.817728pt;}
.ws44{word-spacing:28.394016pt;}
._2d{margin-left:-26.727456pt;}
._2c{margin-left:-25.755296pt;}
._34{margin-left:-23.109632pt;}
._33{margin-left:-22.095808pt;}
._23{margin-left:-18.387488pt;}
._22{margin-left:-16.901920pt;}
._2a{margin-left:-15.265280pt;}
._2b{margin-left:-14.306368pt;}
._21{margin-left:-13.210016pt;}
._11{margin-left:-12.022080pt;}
._10{margin-left:-10.859744pt;}
._15{margin-left:-9.786432pt;}
._12{margin-left:-8.788768pt;}
._13{margin-left:-7.735680pt;}
._1e{margin-left:-6.372064pt;}
._1d{margin-left:-4.900256pt;}
._24{margin-left:-3.704928pt;}
._1f{margin-left:-2.256800pt;}
._0{margin-left:-1.236032pt;}
._3{width:0.896000pt;}
._5{width:2.310400pt;}
._1c{width:3.207904pt;}
._4{width:4.102400pt;}
._6{width:5.785600pt;}
._a{width:6.841600pt;}
._2{width:8.140800pt;}
._1{width:9.459200pt;}
._9{width:10.976000pt;}
._c{width:12.249600pt;}
._b{width:13.420800pt;}
._8{width:15.020800pt;}
._f{width:16.200352pt;}
._7{width:17.235200pt;}
._14{width:18.484928pt;}
._1a{width:19.464032pt;}
._18{width:20.582016pt;}
._19{width:21.970816pt;}
._16{width:23.290176pt;}
._25{width:24.553984pt;}
._27{width:25.512256pt;}
._20{width:26.803840pt;}
._17{width:28.428736pt;}
._26{width:29.393952pt;}
._1b{width:30.352224pt;}
._2e{width:31.338272pt;}
._30{width:32.872896pt;}
._32{width:34.685280pt;}
._31{width:35.685216pt;}
._28{width:37.372608pt;}
._29{width:39.629408pt;}
._2f{width:40.587680pt;}
._d{width:59.897600pt;}
._e{width:60.966400pt;}
.fs7{font-size:42.560000pt;}
.fs6{font-size:45.440000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.440000pt;}
.fs2{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs4{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:51.280133pt;}
.y56{bottom:51.600133pt;}
.y2d{bottom:69.520000pt;}
.y55{bottom:71.120133pt;}
.y16a{bottom:93.348336pt;}
.y99{bottom:93.600000pt;}
.yc1{bottom:95.586672pt;}
.y148{bottom:95.598800pt;}
.y127{bottom:97.591360pt;}
.y216{bottom:97.834877pt;}
.y16e{bottom:99.502584pt;}
.y1f8{bottom:99.836533pt;}
.y7b{bottom:103.424208pt;}
.y101{bottom:103.440000pt;}
.y54{bottom:105.432176pt;}
.y19a{bottom:107.345544pt;}
.y1cf{bottom:109.597877pt;}
.y169{bottom:113.268936pt;}
.y98{bottom:113.600000pt;}
.yc0{bottom:115.507272pt;}
.y147{bottom:115.519400pt;}
.y1a7{bottom:117.503040pt;}
.y126{bottom:117.511960pt;}
.y215{bottom:117.755477pt;}
.y16d{bottom:119.423184pt;}
.y1f7{bottom:119.757133pt;}
.y181{bottom:121.424664pt;}
.y1c7{bottom:123.344808pt;}
.y53{bottom:125.352776pt;}
.y199{bottom:127.346000pt;}
.y1ce{bottom:129.598333pt;}
.y168{bottom:133.189536pt;}
.y97{bottom:133.520000pt;}
.y146{bottom:135.422160pt;}
.ybf{bottom:135.427872pt;}
.y1a6{bottom:137.423640pt;}
.y125{bottom:137.432560pt;}
.y214{bottom:137.676077pt;}
.y100{bottom:139.343496pt;}
.y7a{bottom:139.343784pt;}
.y230{bottom:139.665576pt;}
.y1f6{bottom:139.677733pt;}
.y180{bottom:141.345264pt;}
.y1c6{bottom:143.345264pt;}
.y52{bottom:145.273376pt;}
.y1cd{bottom:149.518933pt;}
.y167{bottom:153.110136pt;}
.y96{bottom:153.440000pt;}
.y145{bottom:155.342760pt;}
.y2a{bottom:155.760000pt;}
.y1a5{bottom:157.344240pt;}
.y124{bottom:157.353160pt;}
.y213{bottom:157.596677pt;}
.y238{bottom:157.599544pt;}
.yff{bottom:159.343952pt;}
.y79{bottom:159.344240pt;}
.y22f{bottom:159.586176pt;}
.y1f5{bottom:159.598333pt;}
.y17f{bottom:161.265864pt;}
.y198{bottom:163.265576pt;}
.y1c5{bottom:163.265864pt;}
.y51{bottom:165.193976pt;}
.y1cc{bottom:169.439533pt;}
.ybe{bottom:171.347448pt;}
.y166{bottom:173.110592pt;}
.y95{bottom:173.360133pt;}
.y29{bottom:174.160000pt;}
.y144{bottom:175.343216pt;}
.yda{bottom:177.264840pt;}
.y123{bottom:177.273760pt;}
.y237{bottom:177.577320pt;}
.y212{bottom:177.597133pt;}
.yfe{bottom:179.264552pt;}
.y78{bottom:179.264840pt;}
.y22e{bottom:179.506776pt;}
.y1f4{bottom:179.518933pt;}
.y17e{bottom:181.186464pt;}
.y197{bottom:183.186176pt;}
.y1c4{bottom:183.186464pt;}
.y50{bottom:185.114576pt;}
.y1cb{bottom:189.360133pt;}
.ybd{bottom:191.347904pt;}
.y28{bottom:192.480000pt;}
.y165{bottom:193.031192pt;}
.y94{bottom:193.280133pt;}
.y143{bottom:195.263816pt;}
.y1a4{bottom:197.185440pt;}
.y122{bottom:197.194360pt;}
.y236{bottom:197.497920pt;}
.y211{bottom:197.517733pt;}
.yfd{bottom:199.185152pt;}
.y77{bottom:199.185440pt;}
.y22d{bottom:199.427376pt;}
.y1f3{bottom:199.439533pt;}
.y17d{bottom:201.107064pt;}
.y196{bottom:203.106776pt;}
.y1c3{bottom:203.107064pt;}
.y4f{bottom:205.115032pt;}
.y1ca{bottom:209.280133pt;}
.y27{bottom:210.960000pt;}
.ybc{bottom:211.268504pt;}
.y164{bottom:212.951792pt;}
.yd9{bottom:213.184416pt;}
.y93{bottom:213.200133pt;}
.y142{bottom:215.184416pt;}
.y1a3{bottom:217.106040pt;}
.y121{bottom:217.114960pt;}
.y235{bottom:217.418520pt;}
.y210{bottom:217.438333pt;}
.yfc{bottom:219.105752pt;}
.y76{bottom:219.106040pt;}
.y22c{bottom:219.347976pt;}
.y1f2{bottom:219.360133pt;}
.y17c{bottom:221.107520pt;}
.y195{bottom:223.027376pt;}
.y1c2{bottom:223.027664pt;}
.y4e{bottom:225.035632pt;}
.y1c9{bottom:229.200133pt;}
.y26{bottom:229.360000pt;}
.ybb{bottom:231.189104pt;}
.yd8{bottom:233.105016pt;}
.y141{bottom:235.105016pt;}
.y120{bottom:237.115416pt;}
.y234{bottom:237.339120pt;}
.y20f{bottom:237.358933pt;}
.yfb{bottom:239.026352pt;}
.y75{bottom:239.026640pt;}
.y22b{bottom:239.348432pt;}
.y1f1{bottom:239.348888pt;}
.y17b{bottom:241.028120pt;}
.y194{bottom:242.947976pt;}
.y1c1{bottom:242.948264pt;}
.y4d{bottom:244.956232pt;}
.y25{bottom:247.760000pt;}
.y163{bottom:248.711656pt;}
.y92{bottom:249.103992pt;}
.yba{bottom:251.109704pt;}
.yd7{bottom:253.105472pt;}
.y16c{bottom:254.865904pt;}
.y140{bottom:255.025616pt;}
.y233{bottom:257.259720pt;}
.y20e{bottom:257.279533pt;}
.yfa{bottom:258.946952pt;}
.y22a{bottom:259.269032pt;}
.y1f0{bottom:259.269488pt;}
.y17a{bottom:260.948720pt;}
.y193{bottom:262.868576pt;}
.y1c0{bottom:262.868864pt;}
.y24{bottom:266.080000pt;}
.y91{bottom:269.104448pt;}
.yd6{bottom:273.026072pt;}
.y11f{bottom:273.034992pt;}
.y74{bottom:274.946216pt;}
.y232{bottom:277.180320pt;}
.y20d{bottom:277.200133pt;}
.yf9{bottom:278.867552pt;}
.y229{bottom:279.189632pt;}
.y1ef{bottom:279.190088pt;}
.y4c{bottom:280.875808pt;}
.y192{bottom:282.869032pt;}
.y1bf{bottom:282.869320pt;}
.y23{bottom:284.480000pt;}
.y162{bottom:284.790944pt;}
.yb9{bottom:287.029280pt;}
.y90{bottom:289.025048pt;}
.y13f{bottom:290.945192pt;}
.yd5{bottom:292.946672pt;}
.y11e{bottom:292.955592pt;}
.y73{bottom:294.866816pt;}
.y179{bottom:296.708584pt;}
.y231{bottom:297.100920pt;}
.y20c{bottom:297.120133pt;}
.yf8{bottom:298.868008pt;}
.y228{bottom:299.110232pt;}
.y1ee{bottom:299.110688pt;}
.y4b{bottom:300.796408pt;}
.y191{bottom:302.789632pt;}
.y1be{bottom:302.789920pt;}
.y22{bottom:302.880000pt;}
.y161{bottom:304.711544pt;}
.yb8{bottom:306.949880pt;}
.y8f{bottom:308.945648pt;}
.y13e{bottom:310.865792pt;}
.y1a2{bottom:312.867272pt;}
.y11d{bottom:312.876192pt;}
.y72{bottom:314.867272pt;}
.y20b{bottom:317.101376pt;}
.yf7{bottom:318.788608pt;}
.y227{bottom:319.030832pt;}
.y1ed{bottom:319.031288pt;}
.y4a{bottom:320.717008pt;}
.y21{bottom:321.280000pt;}
.y190{bottom:322.710232pt;}
.y1bd{bottom:322.710520pt;}
.y160{bottom:324.632144pt;}
.yb7{bottom:326.870480pt;}
.yd4{bottom:328.866248pt;}
.y13d{bottom:330.866248pt;}
.y178{bottom:332.787872pt;}
.y11c{bottom:332.796792pt;}
.y71{bottom:334.787872pt;}
.y20a{bottom:337.021976pt;}
.y226{bottom:338.951432pt;}
.y1ec{bottom:338.951888pt;}
.y20{bottom:339.680000pt;}
.y49{bottom:340.637608pt;}
.y18f{bottom:342.630832pt;}
.y1bc{bottom:342.631120pt;}
.y15f{bottom:344.632600pt;}
.y8e{bottom:344.865224pt;}
.yb6{bottom:346.870936pt;}
.yd3{bottom:348.786848pt;}
.y13c{bottom:350.786848pt;}
.y177{bottom:352.708472pt;}
.y11b{bottom:352.717392pt;}
.yf6{bottom:354.708184pt;}
.y209{bottom:356.942576pt;}
.y1f{bottom:358.080000pt;}
.y225{bottom:358.872032pt;}
.y1eb{bottom:358.872488pt;}
.y48{bottom:360.638064pt;}
.y18e{bottom:362.551432pt;}
.y8d{bottom:364.785824pt;}
.yb5{bottom:366.791536pt;}
.yd2{bottom:368.707448pt;}
.y70{bottom:370.547736pt;}
.y13b{bottom:370.707448pt;}
.y176{bottom:372.629072pt;}
.y11a{bottom:372.637992pt;}
.yf5{bottom:374.628784pt;}
.y1e{bottom:376.480000pt;}
.y208{bottom:376.863176pt;}
.y1bb{bottom:378.550696pt;}
.y224{bottom:378.872488pt;}
.y1ea{bottom:378.872944pt;}
.y15e{bottom:380.392464pt;}
.y8c{bottom:384.706424pt;}
.yb4{bottom:386.712136pt;}
.yd1{bottom:388.628048pt;}
.y6f{bottom:390.468336pt;}
.y13a{bottom:390.628048pt;}
.y175{bottom:392.629528pt;}
.y119{bottom:392.638448pt;}
.yf4{bottom:394.549384pt;}
.y1d{bottom:394.880000pt;}
.y47{bottom:396.397928pt;}
.y207{bottom:396.783776pt;}
.y18d{bottom:398.311296pt;}
.y1ba{bottom:398.471296pt;}
.y223{bottom:398.793088pt;}
.y1e9{bottom:398.793544pt;}
.y8b{bottom:404.627024pt;}
.yb3{bottom:406.632736pt;}
.yd0{bottom:408.628504pt;}
.y139{bottom:410.548648pt;}
.y174{bottom:412.550128pt;}
.y118{bottom:412.559048pt;}
.y1c{bottom:413.120000pt;}
.yf3{bottom:414.469984pt;}
.y15d{bottom:416.471752pt;}
.y206{bottom:416.704376pt;}
.y1b9{bottom:418.391896pt;}
.y222{bottom:418.713688pt;}
.y1e8{bottom:418.714144pt;}
.y8a{bottom:424.627480pt;}
.y6e{bottom:426.547624pt;}
.yb2{bottom:426.553336pt;}
.ycf{bottom:428.549104pt;}
.y138{bottom:430.469248pt;}
.y46{bottom:432.477216pt;}
.y117{bottom:432.479648pt;}
.yf2{bottom:434.390584pt;}
.y15c{bottom:436.392352pt;}
.y205{bottom:436.624976pt;}
.y1b8{bottom:438.392352pt;}
.y221{bottom:438.634288pt;}
.y1e7{bottom:438.634744pt;}
.y89{bottom:444.548080pt;}
.y6d{bottom:446.468224pt;}
.yb1{bottom:446.473936pt;}
.y173{bottom:448.309992pt;}
.yce{bottom:448.469704pt;}
.y1b{bottom:450.080000pt;}
.y137{bottom:450.389848pt;}
.y45{bottom:452.397816pt;}
.y116{bottom:452.400248pt;}
.yf1{bottom:454.391040pt;}
.y15b{bottom:456.312952pt;}
.y204{bottom:456.625432pt;}
.y1b7{bottom:458.312952pt;}
.y220{bottom:458.554888pt;}
.y1e6{bottom:458.555344pt;}
.y88{bottom:464.468680pt;}
.y6c{bottom:466.388824pt;}
.yb0{bottom:466.394536pt;}
.ycd{bottom:468.390304pt;}
.y1a{bottom:468.480000pt;}
.y136{bottom:470.390304pt;}
.yf0{bottom:474.311640pt;}
.y15a{bottom:476.233552pt;}
.y203{bottom:476.546032pt;}
.y1b6{bottom:478.233552pt;}
.y21f{bottom:478.475488pt;}
.y1e5{bottom:478.475944pt;}
.y87{bottom:484.389280pt;}
.y6b{bottom:486.389280pt;}
.y19{bottom:486.880000pt;}
.y1a1{bottom:488.310904pt;}
.y44{bottom:488.317392pt;}
.y115{bottom:488.319824pt;}
.y135{bottom:490.310904pt;}
.yef{bottom:494.232240pt;}
.y159{bottom:496.154152pt;}
.y202{bottom:496.466632pt;}
.y1b5{bottom:498.154152pt;}
.y21e{bottom:498.396088pt;}
.y1e4{bottom:498.396544pt;}
.yaf{bottom:502.393968pt;}
.ycc{bottom:504.309880pt;}
.y18{bottom:505.280000pt;}
.y6a{bottom:506.309880pt;}
.y1a0{bottom:508.231504pt;}
.y43{bottom:508.237992pt;}
.y114{bottom:508.240424pt;}
.y134{bottom:510.231504pt;}
.yee{bottom:514.152840pt;}
.y158{bottom:516.154608pt;}
.y201{bottom:516.387232pt;}
.y21d{bottom:518.396544pt;}
.y1e3{bottom:518.397000pt;}
.y86{bottom:520.308856pt;}
.yae{bottom:522.314568pt;}
.y17{bottom:523.680000pt;}
.ycb{bottom:524.230480pt;}
.y69{bottom:526.230480pt;}
.y19f{bottom:528.152104pt;}
.y42{bottom:528.158592pt;}
.y133{bottom:530.152104pt;}
.yed{bottom:534.073440pt;}
.y1b4{bottom:534.073728pt;}
.y157{bottom:536.075208pt;}
.y200{bottom:536.307832pt;}
.y21c{bottom:538.317144pt;}
.y1e2{bottom:538.317600pt;}
.y85{bottom:540.229456pt;}
.y16{bottom:542.080000pt;}
.yad{bottom:542.235168pt;}
.yca{bottom:544.151080pt;}
.y113{bottom:544.160000pt;}
.y68{bottom:546.151080pt;}
.y19e{bottom:548.152560pt;}
.y41{bottom:548.159048pt;}
.y132{bottom:550.072704pt;}
.yec{bottom:553.994040pt;}
.y1b3{bottom:553.994328pt;}
.y156{bottom:555.995808pt;}
.y1ff{bottom:556.228432pt;}
.y21b{bottom:558.237744pt;}
.y1e1{bottom:558.238200pt;}
.y84{bottom:560.150056pt;}
.y15{bottom:560.480000pt;}
.yac{bottom:562.155768pt;}
.yc9{bottom:564.151536pt;}
.y112{bottom:564.160000pt;}
.y67{bottom:566.071680pt;}
.y19d{bottom:568.073160pt;}
.y40{bottom:568.079648pt;}
.y131{bottom:569.993304pt;}
.y18c{bottom:573.994496pt;}
.y1b2{bottom:573.994784pt;}
.y1fe{bottom:576.149032pt;}
.y21a{bottom:578.158344pt;}
.y1e0{bottom:578.158800pt;}
.y14{bottom:578.880000pt;}
.y83{bottom:580.150512pt;}
.yab{bottom:582.076368pt;}
.yc8{bottom:584.072136pt;}
.y111{bottom:584.080000pt;}
.y66{bottom:585.992280pt;}
.y19c{bottom:587.993760pt;}
.y3f{bottom:588.000248pt;}
.yeb{bottom:589.993472pt;}
.y130{bottom:589.993760pt;}
.y155{bottom:591.755672pt;}
.y1b1{bottom:593.915384pt;}
.y1fd{bottom:596.149488pt;}
.y13{bottom:597.280000pt;}
.y219{bottom:598.078944pt;}
.y1df{bottom:598.079400pt;}
.y82{bottom:600.071112pt;}
.yaa{bottom:601.996968pt;}
.yc7{bottom:603.992736pt;}
.y110{bottom:604.000000pt;}
.y19b{bottom:607.914360pt;}
.y3e{bottom:607.920848pt;}
.y18b{bottom:609.754360pt;}
.yea{bottom:609.914072pt;}
.y12f{bottom:609.914360pt;}
.y1b0{bottom:613.835984pt;}
.y12{bottom:615.680000pt;}
.y1fc{bottom:616.070088pt;}
.y218{bottom:617.999544pt;}
.y1de{bottom:618.000000pt;}
.y81{bottom:619.991712pt;}
.y65{bottom:621.991712pt;}
.ya9{bottom:621.997424pt;}
.yc6{bottom:623.913336pt;}
.y10f{bottom:623.920000pt;}
.y16b{bottom:625.753624pt;}
.y154{bottom:627.834960pt;}
.ye9{bottom:629.834672pt;}
.y12e{bottom:629.834960pt;}
.y1af{bottom:633.756584pt;}
.y11{bottom:634.160000pt;}
.y1fb{bottom:635.990688pt;}
.y1dd{bottom:637.990688pt;}
.y217{bottom:638.000000pt;}
.y80{bottom:639.912312pt;}
.y64{bottom:641.912312pt;}
.ya8{bottom:641.918024pt;}
.y3d{bottom:643.680712pt;}
.y172{bottom:643.833936pt;}
.y10e{bottom:643.840000pt;}
.y18a{bottom:645.833648pt;}
.y153{bottom:647.755560pt;}
.ye8{bottom:649.755272pt;}
.y12d{bottom:649.755560pt;}
.y1ae{bottom:653.677184pt;}
.y10{bottom:654.000000pt;}
.y1fa{bottom:655.911288pt;}
.y1dc{bottom:657.911288pt;}
.y7f{bottom:659.832912pt;}
.y63{bottom:661.832912pt;}
.ya7{bottom:661.838624pt;}
.y1c8{bottom:663.594824pt;}
.y171{bottom:663.754536pt;}
.y10d{bottom:663.760000pt;}
.y189{bottom:665.754248pt;}
.y152{bottom:667.676160pt;}
.ye7{bottom:669.675872pt;}
.y12c{bottom:669.676160pt;}
.yf{bottom:673.040000pt;}
.y1f9{bottom:675.831888pt;}
.y1db{bottom:677.831888pt;}
.yc5{bottom:679.753512pt;}
.y3c{bottom:679.760000pt;}
.y62{bottom:681.753512pt;}
.ya6{bottom:681.759224pt;}
.y10c{bottom:683.680000pt;}
.y188{bottom:685.674848pt;}
.y151{bottom:687.676616pt;}
.y1ad{bottom:689.437048pt;}
.y12b{bottom:689.596760pt;}
.y7e{bottom:695.752488pt;}
.y1da{bottom:697.752488pt;}
.yc4{bottom:699.674112pt;}
.y3b{bottom:699.680000pt;}
.ye{bottom:701.280000pt;}
.y61{bottom:701.674112pt;}
.ya5{bottom:701.679824pt;}
.ye6{bottom:705.595448pt;}
.y150{bottom:707.597216pt;}
.y12a{bottom:709.517360pt;}
.y7d{bottom:715.673088pt;}
.y1d9{bottom:717.673088pt;}
.yc3{bottom:719.674568pt;}
.yd{bottom:719.680000pt;}
.y60{bottom:721.594712pt;}
.ya4{bottom:721.600424pt;}
.ye5{bottom:725.516048pt;}
.y1ac{bottom:725.516336pt;}
.y14f{bottom:727.517816pt;}
.y129{bottom:729.517816pt;}
.yc{bottom:730.480000pt;}
.y7c{bottom:735.673544pt;}
.y1d8{bottom:737.593688pt;}
.yc2{bottom:739.595168pt;}
.y10b{bottom:739.600000pt;}
.y187{bottom:741.515024pt;}
.y5f{bottom:741.515312pt;}
.ye4{bottom:745.516504pt;}
.y1ab{bottom:745.516792pt;}
.y3a{bottom:755.594144pt;}
.yb{bottom:757.200000pt;}
.y1d7{bottom:757.514288pt;}
.ya3{bottom:757.520000pt;}
.y170{bottom:759.515768pt;}
.y10a{bottom:759.520000pt;}
.y186{bottom:761.515480pt;}
.y5e{bottom:761.515768pt;}
.y14e{bottom:763.277680pt;}
.y128{bottom:765.277680pt;}
.ye3{bottom:765.437104pt;}
.y1aa{bottom:765.437392pt;}
.y39{bottom:775.514744pt;}
.y1d6{bottom:777.514744pt;}
.ya2{bottom:777.520000pt;}
.y16f{bottom:779.436368pt;}
.y109{bottom:779.440000pt;}
.y185{bottom:781.436080pt;}
.y5d{bottom:781.436368pt;}
.ya{bottom:785.120000pt;}
.ye2{bottom:785.357704pt;}
.y1a9{bottom:785.357992pt;}
.y38{bottom:795.435344pt;}
.y1d5{bottom:797.435344pt;}
.ya1{bottom:797.440000pt;}
.y14d{bottom:799.356968pt;}
.y108{bottom:799.360000pt;}
.y184{bottom:801.356680pt;}
.y5c{bottom:801.356968pt;}
.y9{bottom:804.960000pt;}
.ye1{bottom:805.278304pt;}
.y1a8{bottom:805.278592pt;}
.y37{bottom:815.355944pt;}
.y1d4{bottom:817.355944pt;}
.ya0{bottom:817.360000pt;}
.y14c{bottom:819.277568pt;}
.y107{bottom:819.280000pt;}
.y183{bottom:821.277280pt;}
.y5b{bottom:821.277568pt;}
.y8{bottom:823.360000pt;}
.ye0{bottom:825.198904pt;}
.y36{bottom:835.276544pt;}
.y1d3{bottom:837.276544pt;}
.y9f{bottom:837.280000pt;}
.y14b{bottom:839.198168pt;}
.y106{bottom:839.200000pt;}
.y182{bottom:841.197880pt;}
.y5a{bottom:841.198168pt;}
.y7{bottom:842.720000pt;}
.y35{bottom:855.197144pt;}
.y1d2{bottom:857.197144pt;}
.y9e{bottom:857.200000pt;}
.y14a{bottom:859.198624pt;}
.y105{bottom:859.200000pt;}
.ydf{bottom:861.118480pt;}
.y59{bottom:861.118768pt;}
.y6{bottom:866.640000pt;}
.y34{bottom:875.197600pt;}
.y1d1{bottom:877.117744pt;}
.y9d{bottom:877.120000pt;}
.y149{bottom:879.119224pt;}
.yde{bottom:881.039080pt;}
.y58{bottom:881.039368pt;}
.y2{bottom:884.080133pt;}
.y33{bottom:895.118200pt;}
.y104{bottom:895.120000pt;}
.y1d0{bottom:897.038344pt;}
.y9c{bottom:897.040000pt;}
.ydd{bottom:901.039536pt;}
.y57{bottom:901.039824pt;}
.y32{bottom:915.038800pt;}
.y103{bottom:915.040000pt;}
.y5{bottom:917.038800pt;}
.y9b{bottom:917.040000pt;}
.ydc{bottom:920.960136pt;}
.y31{bottom:934.959400pt;}
.y102{bottom:934.960000pt;}
.y4{bottom:936.959400pt;}
.y9a{bottom:936.960000pt;}
.y30{bottom:954.880000pt;}
.ydb{bottom:956.720000pt;}
.y3{bottom:956.880000pt;}
.y2c{bottom:974.880000pt;}
.y2f{bottom:988.400000pt;}
.y2b{bottom:992.720000pt;}
.y1{bottom:994.800000pt;}
.ha{height:37.343906pt;}
.h2{height:40.088437pt;}
.h1{height:40.574531pt;}
.h9{height:43.812500pt;}
.he{height:44.343750pt;}
.hd{height:47.536563pt;}
.h5{height:51.041562pt;}
.h7{height:56.156250pt;}
.hf{height:59.198906pt;}
.h3{height:60.929531pt;}
.h4{height:60.934331pt;}
.h10{height:61.000891pt;}
.hc{height:62.781250pt;}
.h8{height:63.106875pt;}
.hb{height:65.422031pt;}
.h11{height:68.117656pt;}
.h12{height:68.208376pt;}
.h6{height:72.947812pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:76.000000pt;}
.x1{left:99.600000pt;}
.x16{left:122.879960pt;}
.x8{left:131.040000pt;}
.x7{left:142.240000pt;}
.x17{left:151.360000pt;}
.x18{left:183.120896pt;}
.x2{left:211.520000pt;}
.x14{left:218.960616pt;}
.xc{left:222.080000pt;}
.x15{left:230.321000pt;}
.xb{left:237.360000pt;}
.x3{left:266.160000pt;}
.x9{left:267.280000pt;}
.xd{left:284.800000pt;}
.xf{left:286.879880pt;}
.x10{left:296.800000pt;}
.x19{left:297.919104pt;}
.x1a{left:349.200544pt;}
.xe{left:368.480560pt;}
.x4{left:370.721016pt;}
.x6{left:408.000000pt;}
.x11{left:512.320000pt;}
.x5{left:533.200200pt;}
.x13{left:707.919867pt;}
.x12{left:716.400000pt;}
}




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