
    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_b83885e0914ae03ce19da855.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.683000;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_2ab9f48efcbe51a9fc85ecd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_812dd3b8d269d211d91726d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_09c3d36122a88c83c771bba7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915000;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_3768f8c0789e1450a9c97920.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_48cdc28a357eb59bf4e5b10c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_b73be89081abe226f7e93147.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_4c918a8fc345c5f62acf99bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_250da430fe0357c41a5b4d14.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.845000;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_17cf3e25a288d3378e71c11f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_319648d1a40f74203de38b01.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000120px;}
.ls27{letter-spacing:0.000300px;}
.ls1d{letter-spacing:0.000390px;}
.ls53{letter-spacing:0.000480px;}
.ls1e{letter-spacing:0.000780px;}
.ls9{letter-spacing:0.001050px;}
.ls44{letter-spacing:0.001350px;}
.ls1b{letter-spacing:0.001530px;}
.ls37{letter-spacing:0.001620px;}
.ls1c{letter-spacing:0.002010px;}
.ls23{letter-spacing:0.002400px;}
.ls43{letter-spacing:0.002970px;}
.ls50{letter-spacing:0.003060px;}
.ls4{letter-spacing:0.003810px;}
.ls30{letter-spacing:0.004500px;}
.ls20{letter-spacing:0.004860px;}
.ls36{letter-spacing:31.377150px;}
.ls8{letter-spacing:31.377810px;}
.ls47{letter-spacing:31.378200px;}
.ls31{letter-spacing:31.378290px;}
.ls4b{letter-spacing:31.378860px;}
.ls2d{letter-spacing:31.379250px;}
.ls14{letter-spacing:31.379340px;}
.ls29{letter-spacing:31.379430px;}
.ls16{letter-spacing:31.379820px;}
.ls2b{letter-spacing:31.379910px;}
.ls51{letter-spacing:31.380300px;}
.lsc{letter-spacing:31.380480px;}
.ls3a{letter-spacing:31.380960px;}
.lsd{letter-spacing:31.381050px;}
.ls3c{letter-spacing:31.381440px;}
.ls11{letter-spacing:31.381530px;}
.ls7{letter-spacing:31.381620px;}
.ls1a{letter-spacing:31.382010px;}
.ls10{letter-spacing:31.382100px;}
.ls0{letter-spacing:31.382190px;}
.ls28{letter-spacing:31.382490px;}
.ls35{letter-spacing:31.382580px;}
.ls2e{letter-spacing:31.382670px;}
.ls46{letter-spacing:31.382790px;}
.ls25{letter-spacing:31.383060px;}
.ls2c{letter-spacing:31.383150px;}
.ls5{letter-spacing:31.383240px;}
.ls4f{letter-spacing:31.383630px;}
.lse{letter-spacing:31.383720px;}
.ls6{letter-spacing:31.383810px;}
.ls19{letter-spacing:31.383840px;}
.lsa{letter-spacing:31.384110px;}
.ls40{letter-spacing:31.384200px;}
.lsf{letter-spacing:31.384290px;}
.ls49{letter-spacing:31.384590px;}
.ls24{letter-spacing:31.384680px;}
.ls41{letter-spacing:31.384770px;}
.ls3{letter-spacing:31.384860px;}
.ls21{letter-spacing:31.385160px;}
.ls13{letter-spacing:31.385340px;}
.ls15{letter-spacing:31.385430px;}
.ls17{letter-spacing:31.385730px;}
.ls2f{letter-spacing:31.385820px;}
.ls12{letter-spacing:31.385910px;}
.ls39{letter-spacing:31.386390px;}
.ls32{letter-spacing:31.386480px;}
.ls26{letter-spacing:31.386780px;}
.ls18{letter-spacing:31.386960px;}
.ls3e{letter-spacing:31.387170px;}
.ls42{letter-spacing:31.387260px;}
.ls22{letter-spacing:31.387350px;}
.ls52{letter-spacing:31.387620px;}
.ls48{letter-spacing:31.388100px;}
.ls4a{letter-spacing:31.388400px;}
.ls3f{letter-spacing:31.388700px;}
.ls3d{letter-spacing:62.760960px;}
.ls4e{letter-spacing:62.762010px;}
.ls45{letter-spacing:62.763240px;}
.ls2a{letter-spacing:62.763810px;}
.lsb{letter-spacing:62.764200px;}
.ls33{letter-spacing:62.764290px;}
.ls1{letter-spacing:62.764380px;}
.ls1f{letter-spacing:62.764860px;}
.ls3b{letter-spacing:62.766480px;}
.ls38{letter-spacing:62.767050px;}
.ls34{letter-spacing:62.769810px;}
.ls4d{letter-spacing:94.151430px;}
.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;}
}
.ws38{word-spacing:-62.764380px;}
.ws7{word-spacing:-48.418425px;}
.ws3b{word-spacing:-31.441966px;}
.ws8{word-spacing:-31.382190px;}
.ws12{word-spacing:-16.139475px;}
.ws25{word-spacing:-13.449600px;}
.ws49{word-spacing:-11.476915px;}
.ws37{word-spacing:-6.204749px;}
.ws20{word-spacing:-5.379825px;}
.ws51{word-spacing:-1.613941px;}
.ws1{word-spacing:-0.059776px;}
.ws5a{word-spacing:-0.005520px;}
.ws3c{word-spacing:-0.005040px;}
.ws2b{word-spacing:-0.004950px;}
.ws2e{word-spacing:-0.004470px;}
.ws2f{word-spacing:-0.003990px;}
.ws15{word-spacing:-0.003900px;}
.ws53{word-spacing:-0.003420px;}
.ws1b{word-spacing:-0.003330px;}
.ws48{word-spacing:-0.003120px;}
.ws31{word-spacing:-0.002940px;}
.ws21{word-spacing:-0.002850px;}
.ws16{word-spacing:-0.002760px;}
.ws56{word-spacing:-0.002460px;}
.ws58{word-spacing:-0.002370px;}
.wsd{word-spacing:-0.002280px;}
.ws5e{word-spacing:-0.001980px;}
.ws22{word-spacing:-0.001800px;}
.wse{word-spacing:-0.001710px;}
.ws39{word-spacing:-0.001410px;}
.ws14{word-spacing:-0.001230px;}
.ws19{word-spacing:-0.001140px;}
.ws4d{word-spacing:-0.000840px;}
.ws42{word-spacing:-0.000750px;}
.wsa{word-spacing:-0.000660px;}
.ws9{word-spacing:-0.000570px;}
.ws62{word-spacing:-0.000270px;}
.ws28{word-spacing:-0.000180px;}
.ws4{word-spacing:-0.000090px;}
.ws5{word-spacing:0.000000px;}
.ws61{word-spacing:0.000300px;}
.ws41{word-spacing:0.000390px;}
.ws2{word-spacing:0.000480px;}
.ws50{word-spacing:0.000870px;}
.ws3f{word-spacing:0.000960px;}
.wsb{word-spacing:0.001050px;}
.ws32{word-spacing:0.001170px;}
.ws35{word-spacing:0.001350px;}
.ws4a{word-spacing:0.001440px;}
.ws30{word-spacing:0.001530px;}
.ws24{word-spacing:0.001920px;}
.ws40{word-spacing:0.002010px;}
.ws34{word-spacing:0.002100px;}
.ws5c{word-spacing:0.002130px;}
.ws59{word-spacing:0.002220px;}
.ws4f{word-spacing:0.002490px;}
.ws3a{word-spacing:0.002580px;}
.ws18{word-spacing:0.002670px;}
.ws54{word-spacing:0.003060px;}
.ws13{word-spacing:0.003150px;}
.ws11{word-spacing:0.003240px;}
.ws33{word-spacing:0.003630px;}
.ws26{word-spacing:0.003720px;}
.ws2a{word-spacing:0.004110px;}
.ws47{word-spacing:0.004200px;}
.ws1a{word-spacing:0.004290px;}
.ws3e{word-spacing:0.004680px;}
.ws4c{word-spacing:0.004770px;}
.ws10{word-spacing:0.004860px;}
.ws57{word-spacing:0.004980px;}
.ws45{word-spacing:0.005250px;}
.ws5b{word-spacing:0.005340px;}
.ws1d{word-spacing:0.005430px;}
.ws55{word-spacing:0.005820px;}
.ws43{word-spacing:0.005910px;}
.ws2c{word-spacing:19.845499px;}
.ws0{word-spacing:23.312640px;}
.ws29{word-spacing:31.317464px;}
.wsc{word-spacing:31.319654px;}
.ws17{word-spacing:31.321844px;}
.ws3{word-spacing:31.322414px;}
.ws23{word-spacing:31.323464px;}
.ws27{word-spacing:31.325654px;}
.ws1c{word-spacing:31.327844px;}
.ws5f{word-spacing:31.379340px;}
.ws4e{word-spacing:31.379430px;}
.ws36{word-spacing:31.381050px;}
.ws6{word-spacing:31.382190px;}
.ws46{word-spacing:31.382580px;}
.ws2d{word-spacing:31.384290px;}
.ws4b{word-spacing:31.384770px;}
.ws44{word-spacing:31.385340px;}
.ws3d{word-spacing:31.385430px;}
.ws5d{word-spacing:31.386390px;}
.wsf{word-spacing:62.704604px;}
.ws52{word-spacing:62.705654px;}
.ws60{word-spacing:62.764380px;}
.ws1e{word-spacing:156.851174px;}
.ws1f{word-spacing:282.379934px;}
._9{margin-left:-31.382190px;}
._b{margin-left:-8.091257px;}
._0{margin-left:-5.881958px;}
._6{margin-left:-3.471775px;}
._1{margin-left:-1.865011px;}
._c{width:1.252924px;}
._4{width:2.668393px;}
._d{width:30.545332px;}
._7{width:35.865600px;}
._2{width:43.038600px;}
._8{width:50.283571px;}
._5{width:62.763150px;}
._a{width:94.146570px;}
._3{width:156.910950px;}
._e{width:282.439710px;}
.fc5{color:rgb(0,0,207);}
.fc4{color:rgb(207,92,0);}
.fc3{color:rgb(79,153,5);}
.fc2{color:rgb(143,89,3);}
.fc1{color:rgb(33,74,135);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y1b1{bottom:101.644500px;}
.y9a{bottom:101.943000px;}
.y120{bottom:106.549500px;}
.y140{bottom:108.400500px;}
.yfa{bottom:117.310500px;}
.y26{bottom:117.862500px;}
.y1b0{bottom:119.577000px;}
.y99{bottom:119.875500px;}
.y177{bottom:120.820500px;}
.y11f{bottom:120.955500px;}
.y1d9{bottom:123.124500px;}
.y69{bottom:124.483500px;}
.y13f{bottom:126.333000px;}
.yf9{bottom:135.243000px;}
.yd2{bottom:135.795000px;}
.y25{bottom:135.796500px;}
.y98{bottom:137.808000px;}
.y1f1{bottom:137.974500px;}
.y176{bottom:138.753000px;}
.y11e{bottom:138.888000px;}
.y1d8{bottom:141.057000px;}
.y20c{bottom:141.067500px;}
.y68{bottom:142.416000px;}
.y190{bottom:143.952000px;}
.y13e{bottom:144.265500px;}
.yf8{bottom:153.175500px;}
.y24{bottom:153.729000px;}
.y97{bottom:155.742000px;}
.y175{bottom:156.685500px;}
.y11d{bottom:156.820500px;}
.y1d7{bottom:158.989500px;}
.y20b{bottom:159.000000px;}
.y67{bottom:160.348500px;}
.y18f{bottom:161.884500px;}
.y13d{bottom:162.198000px;}
.yf7{bottom:171.108000px;}
.y191{bottom:171.417000px;}
.y23{bottom:171.661500px;}
.y1af{bottom:173.376000px;}
.y96{bottom:173.674500px;}
.y1f0{bottom:173.839500px;}
.y221{bottom:174.618000px;}
.y1d6{bottom:176.922000px;}
.y20a{bottom:176.932500px;}
.y66{bottom:178.281000px;}
.yf6{bottom:189.040500px;}
.y22{bottom:189.594000px;}
.y95{bottom:191.607000px;}
.y174{bottom:192.552000px;}
.y1d5{bottom:194.854500px;}
.y209{bottom:194.866500px;}
.y65{bottom:196.213500px;}
.y48{bottom:196.746000px;}
.y18e{bottom:197.751000px;}
.y13c{bottom:198.063000px;}
.yf5{bottom:206.973000px;}
.yb4{bottom:207.526500px;}
.y94{bottom:209.539500px;}
.y1ef{bottom:209.706000px;}
.y220{bottom:210.484500px;}
.y1d4{bottom:212.788500px;}
.y208{bottom:212.799000px;}
.y64{bottom:214.146000px;}
.yfb{bottom:214.147500px;}
.y18d{bottom:215.683500px;}
.yf4{bottom:224.907000px;}
.y21{bottom:225.459000px;}
.y1ae{bottom:227.173500px;}
.y1ee{bottom:227.638500px;}
.y21f{bottom:228.417000px;}
.y11c{bottom:228.552000px;}
.y1d3{bottom:230.721000px;}
.y63{bottom:232.080000px;}
.y13b{bottom:233.929500px;}
.yf3{bottom:242.839500px;}
.yb3{bottom:243.391500px;}
.yb6{bottom:243.393000px;}
.y21e{bottom:246.349500px;}
.y1d2{bottom:248.653500px;}
.y173{bottom:249.126000px;}
.y62{bottom:250.012500px;}
.y18c{bottom:251.548500px;}
.y13a{bottom:251.862000px;}
.y93{bottom:252.577500px;}
.yf2{bottom:260.772000px;}
.yc5{bottom:261.325500px;}
.y1ad{bottom:263.038500px;}
.y1ed{bottom:263.503500px;}
.y21d{bottom:264.282000px;}
.y11b{bottom:264.417000px;}
.y47{bottom:264.634500px;}
.y1d1{bottom:266.586000px;}
.y61{bottom:267.945000px;}
.y139{bottom:269.794500px;}
.y92{bottom:270.511500px;}
.y20{bottom:272.733000px;}
.yb5{bottom:277.650000px;}
.yf1{bottom:278.704500px;}
.yb2{bottom:279.258000px;}
.y1ac{bottom:280.972500px;}
.y1d0{bottom:284.518500px;}
.y207{bottom:284.529000px;}
.y60{bottom:285.877500px;}
.y138{bottom:287.727000px;}
.y91{bottom:288.444000px;}
.y1f{bottom:290.665500px;}
.yf0{bottom:296.637000px;}
.y158{bottom:296.667000px;}
.yb1{bottom:297.190500px;}
.y1ab{bottom:298.905000px;}
.y15a{bottom:299.095500px;}
.y1ec{bottom:299.370000px;}
.y21c{bottom:300.148500px;}
.y11a{bottom:300.282000px;}
.y46{bottom:300.501000px;}
.y1cf{bottom:302.451000px;}
.y206{bottom:302.463000px;}
.y5f{bottom:303.810000px;}
.y137{bottom:305.661000px;}
.y90{bottom:306.376500px;}
.y1e{bottom:308.599500px;}
.y172{bottom:309.787500px;}
.y18b{bottom:313.272000px;}
.yef{bottom:314.569500px;}
.yb0{bottom:315.123000px;}
.y1aa{bottom:316.837500px;}
.y1eb{bottom:317.302500px;}
.y1ce{bottom:320.385000px;}
.y5e{bottom:321.742500px;}
.y6d{bottom:321.744000px;}
.y136{bottom:323.593500px;}
.y8f{bottom:324.309000px;}
.y171{bottom:327.721500px;}
.yee{bottom:332.503500px;}
.ycc{bottom:333.055500px;}
.y1ea{bottom:335.235000px;}
.y21b{bottom:336.013500px;}
.y119{bottom:336.148500px;}
.y45{bottom:336.366000px;}
.y1cd{bottom:338.317500px;}
.y205{bottom:338.328000px;}
.y5d{bottom:339.676500px;}
.y135{bottom:341.526000px;}
.y8e{bottom:342.241500px;}
.y159{bottom:343.564500px;}
.y1d{bottom:344.464500px;}
.y170{bottom:345.654000px;}
.yed{bottom:350.436000px;}
.yaf{bottom:350.988000px;}
.ycf{bottom:350.989500px;}
.y1e9{bottom:353.167500px;}
.y118{bottom:354.081000px;}
.y157{bottom:355.792500px;}
.y1cc{bottom:356.250000px;}
.y204{bottom:356.260500px;}
.y5c{bottom:357.609000px;}
.y134{bottom:359.458500px;}
.y8d{bottom:360.174000px;}
.y1c{bottom:362.397000px;}
.y16f{bottom:363.586500px;}
.yec{bottom:368.368500px;}
.yae{bottom:368.922000px;}
.y1e8{bottom:371.100000px;}
.y1da{bottom:371.677500px;}
.y117{bottom:372.013500px;}
.y44{bottom:372.231000px;}
.y1cb{bottom:374.182500px;}
.y203{bottom:374.193000px;}
.y5b{bottom:375.541500px;}
.y8c{bottom:378.108000px;}
.y1b{bottom:380.329500px;}
.y16e{bottom:381.519000px;}
.y21a{bottom:383.833500px;}
.yeb{bottom:386.301000px;}
.yad{bottom:386.854500px;}
.y1e7{bottom:389.034000px;}
.y116{bottom:389.946000px;}
.y43{bottom:390.165000px;}
.y1ca{bottom:392.115000px;}
.y202{bottom:392.127000px;}
.y5a{bottom:393.474000px;}
.y8b{bottom:396.040500px;}
.y1a{bottom:398.262000px;}
.y16d{bottom:399.451500px;}
.y219{bottom:401.766000px;}
.yce{bottom:403.462500px;}
.yea{bottom:404.233500px;}
.yac{bottom:404.787000px;}
.y1e6{bottom:406.966500px;}
.y115{bottom:407.878500px;}
.y42{bottom:408.097500px;}
.y1c9{bottom:410.049000px;}
.y201{bottom:410.059500px;}
.y59{bottom:411.406500px;}
.y8a{bottom:413.973000px;}
.y19{bottom:416.196000px;}
.y16c{bottom:417.384000px;}
.y18a{bottom:417.385500px;}
.y218{bottom:419.700000px;}
.ye9{bottom:422.166000px;}
.yab{bottom:422.719500px;}
.ycd{bottom:424.384500px;}
.y1e5{bottom:424.899000px;}
.y41{bottom:426.030000px;}
.y156{bottom:427.524000px;}
.y1c8{bottom:427.981500px;}
.y6b{bottom:429.339000px;}
.y58{bottom:429.340500px;}
.y89{bottom:431.905500px;}
.y18{bottom:434.128500px;}
.y16b{bottom:435.318000px;}
.y217{bottom:437.632500px;}
.ye8{bottom:440.100000px;}
.yaa{bottom:440.652000px;}
.y1a9{bottom:442.366500px;}
.y1e4{bottom:442.831500px;}
.y114{bottom:443.745000px;}
.y40{bottom:443.962500px;}
.y155{bottom:445.456500px;}
.y57{bottom:447.273000px;}
.y133{bottom:449.122500px;}
.y88{bottom:449.838000px;}
.y17{bottom:452.061000px;}
.y189{bottom:453.250500px;}
.y216{bottom:455.565000px;}
.ye7{bottom:458.032500px;}
.yc4{bottom:458.584500px;}
.yd1{bottom:458.586000px;}
.y1e3{bottom:460.764000px;}
.y113{bottom:461.677500px;}
.y3f{bottom:461.895000px;}
.y154{bottom:463.389000px;}
.y1c7{bottom:463.846500px;}
.y56{bottom:465.205500px;}
.y200{bottom:466.633500px;}
.y132{bottom:467.055000px;}
.y87{bottom:467.770500px;}
.y16{bottom:469.993500px;}
.y215{bottom:473.497500px;}
.ye6{bottom:475.965000px;}
.yc3{bottom:476.518500px;}
.y3e{bottom:479.827500px;}
.y153{bottom:481.323000px;}
.y1c6{bottom:481.779000px;}
.y55{bottom:483.138000px;}
.y131{bottom:484.987500px;}
.y86{bottom:485.704500px;}
.y15{bottom:487.926000px;}
.y16a{bottom:489.115500px;}
.y214{bottom:491.430000px;}
.ye5{bottom:493.897500px;}
.ya9{bottom:494.451000px;}
.y1a8{bottom:496.165500px;}
.y1e2{bottom:496.630500px;}
.y224{bottom:497.206500px;}
.y112{bottom:497.542500px;}
.y3d{bottom:497.761500px;}
.y152{bottom:499.255500px;}
.y1c5{bottom:499.711500px;}
.y54{bottom:501.070500px;}
.y130{bottom:502.920000px;}
.y85{bottom:503.637000px;}
.y14{bottom:505.860000px;}
.y213{bottom:509.362500px;}
.ye4{bottom:511.830000px;}
.ya8{bottom:512.383500px;}
.y1a7{bottom:514.098000px;}
.y1e1{bottom:514.563000px;}
.y111{bottom:515.475000px;}
.y3c{bottom:515.694000px;}
.y151{bottom:517.188000px;}
.y53{bottom:519.003000px;}
.y12f{bottom:520.854000px;}
.y84{bottom:521.569500px;}
.y13{bottom:523.792500px;}
.y169{bottom:524.980500px;}
.y1ff{bottom:527.296500px;}
.ye3{bottom:529.764000px;}
.ya7{bottom:530.316000px;}
.y1e0{bottom:532.495500px;}
.y110{bottom:533.409000px;}
.y1c4{bottom:535.578000px;}
.y52{bottom:536.937000px;}
.y83{bottom:539.502000px;}
.y12{bottom:541.725000px;}
.y212{bottom:545.229000px;}
.ye2{bottom:547.696500px;}
.ya6{bottom:548.248500px;}
.y1a6{bottom:549.963000px;}
.y1df{bottom:550.428000px;}
.y10f{bottom:551.341500px;}
.y150{bottom:553.053000px;}
.y51{bottom:554.869500px;}
.y82{bottom:557.434500px;}
.y11{bottom:559.657500px;}
.y1fe{bottom:563.161500px;}
.ye1{bottom:565.629000px;}
.ya5{bottom:566.182500px;}
.y1a5{bottom:567.895500px;}
.y10e{bottom:569.274000px;}
.y14f{bottom:570.987000px;}
.y1c3{bottom:571.443000px;}
.y50{bottom:572.802000px;}
.y81{bottom:575.368500px;}
.y10{bottom:577.590000px;}
.y188{bottom:578.779500px;}
.y1fd{bottom:581.094000px;}
.ye0{bottom:583.561500px;}
.ya4{bottom:584.115000px;}
.y10d{bottom:587.206500px;}
.y3b{bottom:587.424000px;}
.y4f{bottom:590.734500px;}
.y12e{bottom:592.584000px;}
.y80{bottom:593.301000px;}
.yf{bottom:595.522500px;}
.y168{bottom:596.712000px;}
.y1fc{bottom:599.026500px;}
.ydf{bottom:601.494000px;}
.ya3{bottom:602.047500px;}
.y10c{bottom:605.139000px;}
.y1c2{bottom:607.308000px;}
.y6c{bottom:608.667000px;}
.y12d{bottom:610.516500px;}
.y7f{bottom:611.233500px;}
.ye{bottom:613.456500px;}
.y167{bottom:614.644500px;}
.y1fb{bottom:616.960500px;}
.yde{bottom:619.426500px;}
.ya2{bottom:619.980000px;}
.y227{bottom:622.735500px;}
.y10b{bottom:623.071500px;}
.y1a4{bottom:623.341500px;}
.y14e{bottom:624.784500px;}
.y1c1{bottom:625.242000px;}
.y4e{bottom:626.599500px;}
.y7e{bottom:629.166000px;}
.yd{bottom:631.389000px;}
.y186{bottom:631.612500px;}
.y187{bottom:632.578500px;}
.y1fa{bottom:634.893000px;}
.ydd{bottom:637.360500px;}
.ya1{bottom:637.912500px;}
.y1de{bottom:640.092000px;}
.y226{bottom:640.668000px;}
.y10a{bottom:641.005500px;}
.y14d{bottom:642.717000px;}
.y4d{bottom:644.533500px;}
.y12c{bottom:646.383000px;}
.y7d{bottom:647.098500px;}
.y3a{bottom:648.375000px;}
.yc{bottom:649.321500px;}
.y185{bottom:649.545000px;}
.y166{bottom:650.511000px;}
.y1f9{bottom:652.825500px;}
.ydc{bottom:655.293000px;}
.ya0{bottom:655.845000px;}
.y14c{bottom:660.649500px;}
.y1c0{bottom:661.107000px;}
.y4c{bottom:662.466000px;}
.y12b{bottom:664.315500px;}
.yb{bottom:667.254000px;}
.y184{bottom:667.477500px;}
.y165{bottom:668.443500px;}
.y211{bottom:670.758000px;}
.ydb{bottom:673.225500px;}
.y9f{bottom:673.779000px;}
.y1dd{bottom:675.957000px;}
.y109{bottom:676.870500px;}
.y14b{bottom:678.583500px;}
.y1bf{bottom:679.039500px;}
.y4b{bottom:680.398500px;}
.y7c{bottom:682.965000px;}
.ya{bottom:685.186500px;}
.y164{bottom:686.376000px;}
.y210{bottom:688.690500px;}
.y1a3{bottom:689.365500px;}
.yda{bottom:691.158000px;}
.y9e{bottom:691.711500px;}
.y225{bottom:694.467000px;}
.y108{bottom:694.803000px;}
.y14a{bottom:696.516000px;}
.y4a{bottom:698.331000px;}
.y12a{bottom:700.180500px;}
.y7b{bottom:700.897500px;}
.y9{bottom:703.119000px;}
.y183{bottom:703.342500px;}
.y163{bottom:704.308500px;}
.y1f8{bottom:706.623000px;}
.y1a2{bottom:707.298000px;}
.yd9{bottom:709.090500px;}
.y9d{bottom:709.644000px;}
.y107{bottom:712.735500px;}
.y149{bottom:714.448500px;}
.y39{bottom:716.263500px;}
.y129{bottom:718.113000px;}
.y7a{bottom:718.830000px;}
.y8{bottom:721.053000px;}
.y182{bottom:721.276500px;}
.y162{bottom:722.241000px;}
.y1f7{bottom:724.557000px;}
.y1a1{bottom:725.230500px;}
.yd8{bottom:727.023000px;}
.yc2{bottom:727.576500px;}
.y6a{bottom:734.196000px;}
.y1be{bottom:735.615000px;}
.y128{bottom:736.047000px;}
.y79{bottom:736.762500px;}
.y1dc{bottom:737.679000px;}
.y7{bottom:738.985500px;}
.y181{bottom:739.209000px;}
.y1a0{bottom:743.163000px;}
.y9c{bottom:745.509000px;}
.y106{bottom:748.602000px;}
.y38{bottom:752.130000px;}
.y127{bottom:753.979500px;}
.y78{bottom:754.695000px;}
.y6{bottom:756.918000px;}
.y1f6{bottom:760.422000px;}
.yd7{bottom:762.889500px;}
.yc1{bottom:763.441500px;}
.y148{bottom:768.246000px;}
.y37{bottom:770.062500px;}
.y126{bottom:771.912000px;}
.y5{bottom:774.850500px;}
.y180{bottom:775.074000px;}
.y1f5{bottom:778.354500px;}
.y19f{bottom:779.028000px;}
.yc0{bottom:781.375500px;}
.y105{bottom:784.467000px;}
.y147{bottom:786.180000px;}
.y36{bottom:787.995000px;}
.y125{bottom:789.844500px;}
.y77{bottom:790.561500px;}
.y1bd{bottom:793.288500px;}
.y161{bottom:793.972500px;}
.yd6{bottom:798.754500px;}
.ycb{bottom:799.308000px;}
.y9b{bottom:800.023500px;}
.y141{bottom:802.063500px;}
.y104{bottom:802.399500px;}
.y146{bottom:804.112500px;}
.y35{bottom:805.927500px;}
.y124{bottom:807.777000px;}
.y76{bottom:808.494000px;}
.y1bc{bottom:811.221000px;}
.y160{bottom:811.905000px;}
.y1f4{bottom:814.219500px;}
.yd5{bottom:816.687000px;}
.yd0{bottom:817.240500px;}
.y103{bottom:820.332000px;}
.y34{bottom:823.860000px;}
.y123{bottom:825.711000px;}
.y75{bottom:826.426500px;}
.ybf{bottom:826.600500px;}
.y17f{bottom:828.873000px;}
.y1bb{bottom:829.153500px;}
.y15f{bottom:829.837500px;}
.y1f3{bottom:832.153500px;}
.y19e{bottom:832.827000px;}
.yd4{bottom:834.619500px;}
.yca{bottom:835.173000px;}
.y4{bottom:836.026500px;}
.y102{bottom:838.264500px;}
.y33{bottom:841.792500px;}
.yc6{bottom:841.794000px;}
.y122{bottom:843.643500px;}
.y74{bottom:844.359000px;}
.ybe{bottom:844.533000px;}
.y17e{bottom:846.805500px;}
.y15e{bottom:847.771500px;}
.y19d{bottom:850.759500px;}
.yd3{bottom:852.553500px;}
.yc9{bottom:853.105500px;}
.y1db{bottom:853.821000px;}
.y101{bottom:856.198500px;}
.y145{bottom:857.910000px;}
.y32{bottom:859.726500px;}
.y73{bottom:862.291500px;}
.ybd{bottom:862.467000px;}
.y1ba{bottom:865.018500px;}
.y20f{bottom:868.018500px;}
.y19c{bottom:868.692000px;}
.y100{bottom:874.131000px;}
.y144{bottom:875.842500px;}
.y31{bottom:877.659000px;}
.y72{bottom:880.224000px;}
.ybc{bottom:880.399500px;}
.y17d{bottom:882.670500px;}
.y1b9{bottom:882.951000px;}
.y20e{bottom:885.951000px;}
.y19b{bottom:886.624500px;}
.y1f2{bottom:888.727500px;}
.y223{bottom:890.877000px;}
.yff{bottom:892.063500px;}
.y143{bottom:893.776500px;}
.y121{bottom:893.941500px;}
.y30{bottom:895.591500px;}
.y71{bottom:898.158000px;}
.ybb{bottom:898.332000px;}
.y1b8{bottom:900.885000px;}
.y19a{bottom:904.558500px;}
.y3{bottom:908.418000px;}
.yc8{bottom:908.809500px;}
.y2f{bottom:913.524000px;}
.y70{bottom:916.090500px;}
.y17c{bottom:918.535500px;}
.y1b7{bottom:918.817500px;}
.y199{bottom:922.491000px;}
.yfe{bottom:927.928500px;}
.y49{bottom:931.456500px;}
.y6f{bottom:934.023000px;}
.yba{bottom:934.197000px;}
.y222{bottom:935.346000px;}
.y17b{bottom:936.469500px;}
.y1b6{bottom:936.750000px;}
.y15d{bottom:937.434000px;}
.y198{bottom:940.423500px;}
.y20d{bottom:942.526500px;}
.y142{bottom:947.050500px;}
.y2e{bottom:949.390500px;}
.y2{bottom:950.124000px;}
.yb9{bottom:952.129500px;}
.yc7{bottom:953.278500px;}
.y17a{bottom:954.402000px;}
.y1b5{bottom:954.682500px;}
.y15c{bottom:955.368000px;}
.y197{bottom:958.356000px;}
.yfd{bottom:963.795000px;}
.y2d{bottom:967.323000px;}
.y1b4{bottom:972.615000px;}
.y15b{bottom:973.300500px;}
.y196{bottom:976.288500px;}
.y2c{bottom:985.255500px;}
.y1b3{bottom:990.547500px;}
.y6e{bottom:990.963000px;}
.y195{bottom:994.221000px;}
.y1{bottom:1002.291000px;}
.y2b{bottom:1003.188000px;}
.yb8{bottom:1005.928500px;}
.y1b2{bottom:1008.481500px;}
.y179{bottom:1010.653500px;}
.y194{bottom:1012.155000px;}
.yfc{bottom:1020.369000px;}
.y2a{bottom:1021.120500px;}
.y178{bottom:1028.586000px;}
.y193{bottom:1030.087500px;}
.y29{bottom:1039.053000px;}
.y192{bottom:1048.020000px;}
.y28{bottom:1056.987000px;}
.yb7{bottom:1065.055500px;}
.h5{height:37.180423px;}
.h4{height:41.484266px;}
.h7{height:41.842920px;}
.h2{height:49.781453px;}
.h6{height:50.211840px;}
.h3{height:60.254040px;}
.h1{height:70.548709px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x9{left:115.845000px;}
.x8{left:123.691500px;}
.x1c{left:131.536500px;}
.x6{left:139.381500px;}
.x1e{left:147.228000px;}
.xd{left:155.073000px;}
.x18{left:162.919500px;}
.x7{left:170.764500px;}
.x12{left:178.609500px;}
.xf{left:186.456000px;}
.x16{left:194.301000px;}
.xa{left:202.146000px;}
.xb{left:233.529000px;}
.x10{left:241.374000px;}
.x11{left:249.220500px;}
.x13{left:257.065500px;}
.xc{left:264.910500px;}
.x1d{left:272.757000px;}
.x1f{left:280.602000px;}
.x15{left:288.448500px;}
.x14{left:296.293500px;}
.x19{left:327.675000px;}
.x1a{left:359.058000px;}
.x1b{left:390.439500px;}
.x2{left:391.452000px;}
.x3{left:418.029000px;}
.x20{left:429.667500px;}
.x1{left:431.631000px;}
.x17{left:451.528500px;}
.x5{left:455.263500px;}
.xe{left:515.968500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000107pt;}
.ls27{letter-spacing:0.000267pt;}
.ls1d{letter-spacing:0.000347pt;}
.ls53{letter-spacing:0.000427pt;}
.ls1e{letter-spacing:0.000693pt;}
.ls9{letter-spacing:0.000933pt;}
.ls44{letter-spacing:0.001200pt;}
.ls1b{letter-spacing:0.001360pt;}
.ls37{letter-spacing:0.001440pt;}
.ls1c{letter-spacing:0.001787pt;}
.ls23{letter-spacing:0.002133pt;}
.ls43{letter-spacing:0.002640pt;}
.ls50{letter-spacing:0.002720pt;}
.ls4{letter-spacing:0.003387pt;}
.ls30{letter-spacing:0.004000pt;}
.ls20{letter-spacing:0.004320pt;}
.ls36{letter-spacing:27.890800pt;}
.ls8{letter-spacing:27.891387pt;}
.ls47{letter-spacing:27.891733pt;}
.ls31{letter-spacing:27.891813pt;}
.ls4b{letter-spacing:27.892320pt;}
.ls2d{letter-spacing:27.892667pt;}
.ls14{letter-spacing:27.892747pt;}
.ls29{letter-spacing:27.892827pt;}
.ls16{letter-spacing:27.893173pt;}
.ls2b{letter-spacing:27.893253pt;}
.ls51{letter-spacing:27.893600pt;}
.lsc{letter-spacing:27.893760pt;}
.ls3a{letter-spacing:27.894187pt;}
.lsd{letter-spacing:27.894267pt;}
.ls3c{letter-spacing:27.894613pt;}
.ls11{letter-spacing:27.894693pt;}
.ls7{letter-spacing:27.894773pt;}
.ls1a{letter-spacing:27.895120pt;}
.ls10{letter-spacing:27.895200pt;}
.ls0{letter-spacing:27.895280pt;}
.ls28{letter-spacing:27.895547pt;}
.ls35{letter-spacing:27.895627pt;}
.ls2e{letter-spacing:27.895707pt;}
.ls46{letter-spacing:27.895813pt;}
.ls25{letter-spacing:27.896053pt;}
.ls2c{letter-spacing:27.896133pt;}
.ls5{letter-spacing:27.896213pt;}
.ls4f{letter-spacing:27.896560pt;}
.lse{letter-spacing:27.896640pt;}
.ls6{letter-spacing:27.896720pt;}
.ls19{letter-spacing:27.896747pt;}
.lsa{letter-spacing:27.896987pt;}
.ls40{letter-spacing:27.897067pt;}
.lsf{letter-spacing:27.897147pt;}
.ls49{letter-spacing:27.897413pt;}
.ls24{letter-spacing:27.897493pt;}
.ls41{letter-spacing:27.897573pt;}
.ls3{letter-spacing:27.897653pt;}
.ls21{letter-spacing:27.897920pt;}
.ls13{letter-spacing:27.898080pt;}
.ls15{letter-spacing:27.898160pt;}
.ls17{letter-spacing:27.898427pt;}
.ls2f{letter-spacing:27.898507pt;}
.ls12{letter-spacing:27.898587pt;}
.ls39{letter-spacing:27.899013pt;}
.ls32{letter-spacing:27.899093pt;}
.ls26{letter-spacing:27.899360pt;}
.ls18{letter-spacing:27.899520pt;}
.ls3e{letter-spacing:27.899707pt;}
.ls42{letter-spacing:27.899787pt;}
.ls22{letter-spacing:27.899867pt;}
.ls52{letter-spacing:27.900107pt;}
.ls48{letter-spacing:27.900533pt;}
.ls4a{letter-spacing:27.900800pt;}
.ls3f{letter-spacing:27.901067pt;}
.ls3d{letter-spacing:55.787520pt;}
.ls4e{letter-spacing:55.788453pt;}
.ls45{letter-spacing:55.789547pt;}
.ls2a{letter-spacing:55.790053pt;}
.lsb{letter-spacing:55.790400pt;}
.ls33{letter-spacing:55.790480pt;}
.ls1{letter-spacing:55.790560pt;}
.ls1f{letter-spacing:55.790987pt;}
.ls3b{letter-spacing:55.792427pt;}
.ls38{letter-spacing:55.792933pt;}
.ls34{letter-spacing:55.795387pt;}
.ls4d{letter-spacing:83.690160pt;}
.ws38{word-spacing:-55.790560pt;}
.ws7{word-spacing:-43.038600pt;}
.ws3b{word-spacing:-27.948414pt;}
.ws8{word-spacing:-27.895280pt;}
.ws12{word-spacing:-14.346200pt;}
.ws25{word-spacing:-11.955200pt;}
.ws49{word-spacing:-10.201702pt;}
.ws37{word-spacing:-5.515332pt;}
.ws20{word-spacing:-4.782067pt;}
.ws51{word-spacing:-1.434614pt;}
.ws1{word-spacing:-0.053134pt;}
.ws5a{word-spacing:-0.004907pt;}
.ws3c{word-spacing:-0.004480pt;}
.ws2b{word-spacing:-0.004400pt;}
.ws2e{word-spacing:-0.003973pt;}
.ws2f{word-spacing:-0.003547pt;}
.ws15{word-spacing:-0.003467pt;}
.ws53{word-spacing:-0.003040pt;}
.ws1b{word-spacing:-0.002960pt;}
.ws48{word-spacing:-0.002773pt;}
.ws31{word-spacing:-0.002613pt;}
.ws21{word-spacing:-0.002533pt;}
.ws16{word-spacing:-0.002453pt;}
.ws56{word-spacing:-0.002187pt;}
.ws58{word-spacing:-0.002107pt;}
.wsd{word-spacing:-0.002027pt;}
.ws5e{word-spacing:-0.001760pt;}
.ws22{word-spacing:-0.001600pt;}
.wse{word-spacing:-0.001520pt;}
.ws39{word-spacing:-0.001253pt;}
.ws14{word-spacing:-0.001093pt;}
.ws19{word-spacing:-0.001013pt;}
.ws4d{word-spacing:-0.000747pt;}
.ws42{word-spacing:-0.000667pt;}
.wsa{word-spacing:-0.000587pt;}
.ws9{word-spacing:-0.000507pt;}
.ws62{word-spacing:-0.000240pt;}
.ws28{word-spacing:-0.000160pt;}
.ws4{word-spacing:-0.000080pt;}
.ws5{word-spacing:0.000000pt;}
.ws61{word-spacing:0.000267pt;}
.ws41{word-spacing:0.000347pt;}
.ws2{word-spacing:0.000427pt;}
.ws50{word-spacing:0.000773pt;}
.ws3f{word-spacing:0.000853pt;}
.wsb{word-spacing:0.000933pt;}
.ws32{word-spacing:0.001040pt;}
.ws35{word-spacing:0.001200pt;}
.ws4a{word-spacing:0.001280pt;}
.ws30{word-spacing:0.001360pt;}
.ws24{word-spacing:0.001707pt;}
.ws40{word-spacing:0.001787pt;}
.ws34{word-spacing:0.001867pt;}
.ws5c{word-spacing:0.001893pt;}
.ws59{word-spacing:0.001973pt;}
.ws4f{word-spacing:0.002213pt;}
.ws3a{word-spacing:0.002293pt;}
.ws18{word-spacing:0.002373pt;}
.ws54{word-spacing:0.002720pt;}
.ws13{word-spacing:0.002800pt;}
.ws11{word-spacing:0.002880pt;}
.ws33{word-spacing:0.003227pt;}
.ws26{word-spacing:0.003307pt;}
.ws2a{word-spacing:0.003653pt;}
.ws47{word-spacing:0.003733pt;}
.ws1a{word-spacing:0.003813pt;}
.ws3e{word-spacing:0.004160pt;}
.ws4c{word-spacing:0.004240pt;}
.ws10{word-spacing:0.004320pt;}
.ws57{word-spacing:0.004427pt;}
.ws45{word-spacing:0.004667pt;}
.ws5b{word-spacing:0.004747pt;}
.ws1d{word-spacing:0.004827pt;}
.ws55{word-spacing:0.005173pt;}
.ws43{word-spacing:0.005253pt;}
.ws2c{word-spacing:17.640444pt;}
.ws0{word-spacing:20.722347pt;}
.ws29{word-spacing:27.837746pt;}
.wsc{word-spacing:27.839693pt;}
.ws17{word-spacing:27.841639pt;}
.ws3{word-spacing:27.842146pt;}
.ws23{word-spacing:27.843079pt;}
.ws27{word-spacing:27.845026pt;}
.ws1c{word-spacing:27.846973pt;}
.ws5f{word-spacing:27.892747pt;}
.ws4e{word-spacing:27.892827pt;}
.ws36{word-spacing:27.894267pt;}
.ws6{word-spacing:27.895280pt;}
.ws46{word-spacing:27.895627pt;}
.ws2d{word-spacing:27.897147pt;}
.ws4b{word-spacing:27.897573pt;}
.ws44{word-spacing:27.898080pt;}
.ws3d{word-spacing:27.898160pt;}
.ws5d{word-spacing:27.899013pt;}
.wsf{word-spacing:55.737426pt;}
.ws52{word-spacing:55.738359pt;}
.ws60{word-spacing:55.790560pt;}
.ws1e{word-spacing:139.423266pt;}
.ws1f{word-spacing:251.004386pt;}
._9{margin-left:-27.895280pt;}
._b{margin-left:-7.192228pt;}
._0{margin-left:-5.228407pt;}
._6{margin-left:-3.086022pt;}
._1{margin-left:-1.657788pt;}
._c{width:1.113710pt;}
._4{width:2.371905pt;}
._d{width:27.151406pt;}
._7{width:31.880533pt;}
._2{width:38.256533pt;}
._8{width:44.696508pt;}
._5{width:55.789467pt;}
._a{width:83.685840pt;}
._3{width:139.476400pt;}
._e{width:251.057520pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y1b1{bottom:90.350667pt;}
.y9a{bottom:90.616000pt;}
.y120{bottom:94.710667pt;}
.y140{bottom:96.356000pt;}
.yfa{bottom:104.276000pt;}
.y26{bottom:104.766667pt;}
.y1b0{bottom:106.290667pt;}
.y99{bottom:106.556000pt;}
.y177{bottom:107.396000pt;}
.y11f{bottom:107.516000pt;}
.y1d9{bottom:109.444000pt;}
.y69{bottom:110.652000pt;}
.y13f{bottom:112.296000pt;}
.yf9{bottom:120.216000pt;}
.yd2{bottom:120.706667pt;}
.y25{bottom:120.708000pt;}
.y98{bottom:122.496000pt;}
.y1f1{bottom:122.644000pt;}
.y176{bottom:123.336000pt;}
.y11e{bottom:123.456000pt;}
.y1d8{bottom:125.384000pt;}
.y20c{bottom:125.393333pt;}
.y68{bottom:126.592000pt;}
.y190{bottom:127.957333pt;}
.y13e{bottom:128.236000pt;}
.yf8{bottom:136.156000pt;}
.y24{bottom:136.648000pt;}
.y97{bottom:138.437333pt;}
.y175{bottom:139.276000pt;}
.y11d{bottom:139.396000pt;}
.y1d7{bottom:141.324000pt;}
.y20b{bottom:141.333333pt;}
.y67{bottom:142.532000pt;}
.y18f{bottom:143.897333pt;}
.y13d{bottom:144.176000pt;}
.yf7{bottom:152.096000pt;}
.y191{bottom:152.370667pt;}
.y23{bottom:152.588000pt;}
.y1af{bottom:154.112000pt;}
.y96{bottom:154.377333pt;}
.y1f0{bottom:154.524000pt;}
.y221{bottom:155.216000pt;}
.y1d6{bottom:157.264000pt;}
.y20a{bottom:157.273333pt;}
.y66{bottom:158.472000pt;}
.yf6{bottom:168.036000pt;}
.y22{bottom:168.528000pt;}
.y95{bottom:170.317333pt;}
.y174{bottom:171.157333pt;}
.y1d5{bottom:173.204000pt;}
.y209{bottom:173.214667pt;}
.y65{bottom:174.412000pt;}
.y48{bottom:174.885333pt;}
.y18e{bottom:175.778667pt;}
.y13c{bottom:176.056000pt;}
.yf5{bottom:183.976000pt;}
.yb4{bottom:184.468000pt;}
.y94{bottom:186.257333pt;}
.y1ef{bottom:186.405333pt;}
.y220{bottom:187.097333pt;}
.y1d4{bottom:189.145333pt;}
.y208{bottom:189.154667pt;}
.y64{bottom:190.352000pt;}
.yfb{bottom:190.353333pt;}
.y18d{bottom:191.718667pt;}
.yf4{bottom:199.917333pt;}
.y21{bottom:200.408000pt;}
.y1ae{bottom:201.932000pt;}
.y1ee{bottom:202.345333pt;}
.y21f{bottom:203.037333pt;}
.y11c{bottom:203.157333pt;}
.y1d3{bottom:205.085333pt;}
.y63{bottom:206.293333pt;}
.y13b{bottom:207.937333pt;}
.yf3{bottom:215.857333pt;}
.yb3{bottom:216.348000pt;}
.yb6{bottom:216.349333pt;}
.y21e{bottom:218.977333pt;}
.y1d2{bottom:221.025333pt;}
.y173{bottom:221.445333pt;}
.y62{bottom:222.233333pt;}
.y18c{bottom:223.598667pt;}
.y13a{bottom:223.877333pt;}
.y93{bottom:224.513333pt;}
.yf2{bottom:231.797333pt;}
.yc5{bottom:232.289333pt;}
.y1ad{bottom:233.812000pt;}
.y1ed{bottom:234.225333pt;}
.y21d{bottom:234.917333pt;}
.y11b{bottom:235.037333pt;}
.y47{bottom:235.230667pt;}
.y1d1{bottom:236.965333pt;}
.y61{bottom:238.173333pt;}
.y139{bottom:239.817333pt;}
.y92{bottom:240.454667pt;}
.y20{bottom:242.429333pt;}
.yb5{bottom:246.800000pt;}
.yf1{bottom:247.737333pt;}
.yb2{bottom:248.229333pt;}
.y1ac{bottom:249.753333pt;}
.y1d0{bottom:252.905333pt;}
.y207{bottom:252.914667pt;}
.y60{bottom:254.113333pt;}
.y138{bottom:255.757333pt;}
.y91{bottom:256.394667pt;}
.y1f{bottom:258.369333pt;}
.yf0{bottom:263.677333pt;}
.y158{bottom:263.704000pt;}
.yb1{bottom:264.169333pt;}
.y1ab{bottom:265.693333pt;}
.y15a{bottom:265.862667pt;}
.y1ec{bottom:266.106667pt;}
.y21c{bottom:266.798667pt;}
.y11a{bottom:266.917333pt;}
.y46{bottom:267.112000pt;}
.y1cf{bottom:268.845333pt;}
.y206{bottom:268.856000pt;}
.y5f{bottom:270.053333pt;}
.y137{bottom:271.698667pt;}
.y90{bottom:272.334667pt;}
.y1e{bottom:274.310667pt;}
.y172{bottom:275.366667pt;}
.y18b{bottom:278.464000pt;}
.yef{bottom:279.617333pt;}
.yb0{bottom:280.109333pt;}
.y1aa{bottom:281.633333pt;}
.y1eb{bottom:282.046667pt;}
.y1ce{bottom:284.786667pt;}
.y5e{bottom:285.993333pt;}
.y6d{bottom:285.994667pt;}
.y136{bottom:287.638667pt;}
.y8f{bottom:288.274667pt;}
.y171{bottom:291.308000pt;}
.yee{bottom:295.558667pt;}
.ycc{bottom:296.049333pt;}
.y1ea{bottom:297.986667pt;}
.y21b{bottom:298.678667pt;}
.y119{bottom:298.798667pt;}
.y45{bottom:298.992000pt;}
.y1cd{bottom:300.726667pt;}
.y205{bottom:300.736000pt;}
.y5d{bottom:301.934667pt;}
.y135{bottom:303.578667pt;}
.y8e{bottom:304.214667pt;}
.y159{bottom:305.390667pt;}
.y1d{bottom:306.190667pt;}
.y170{bottom:307.248000pt;}
.yed{bottom:311.498667pt;}
.yaf{bottom:311.989333pt;}
.ycf{bottom:311.990667pt;}
.y1e9{bottom:313.926667pt;}
.y118{bottom:314.738667pt;}
.y157{bottom:316.260000pt;}
.y1cc{bottom:316.666667pt;}
.y204{bottom:316.676000pt;}
.y5c{bottom:317.874667pt;}
.y134{bottom:319.518667pt;}
.y8d{bottom:320.154667pt;}
.y1c{bottom:322.130667pt;}
.y16f{bottom:323.188000pt;}
.yec{bottom:327.438667pt;}
.yae{bottom:327.930667pt;}
.y1e8{bottom:329.866667pt;}
.y1da{bottom:330.380000pt;}
.y117{bottom:330.678667pt;}
.y44{bottom:330.872000pt;}
.y1cb{bottom:332.606667pt;}
.y203{bottom:332.616000pt;}
.y5b{bottom:333.814667pt;}
.y8c{bottom:336.096000pt;}
.y1b{bottom:338.070667pt;}
.y16e{bottom:339.128000pt;}
.y21a{bottom:341.185333pt;}
.yeb{bottom:343.378667pt;}
.yad{bottom:343.870667pt;}
.y1e7{bottom:345.808000pt;}
.y116{bottom:346.618667pt;}
.y43{bottom:346.813333pt;}
.y1ca{bottom:348.546667pt;}
.y202{bottom:348.557333pt;}
.y5a{bottom:349.754667pt;}
.y8b{bottom:352.036000pt;}
.y1a{bottom:354.010667pt;}
.y16d{bottom:355.068000pt;}
.y219{bottom:357.125333pt;}
.yce{bottom:358.633333pt;}
.yea{bottom:359.318667pt;}
.yac{bottom:359.810667pt;}
.y1e6{bottom:361.748000pt;}
.y115{bottom:362.558667pt;}
.y42{bottom:362.753333pt;}
.y1c9{bottom:364.488000pt;}
.y201{bottom:364.497333pt;}
.y59{bottom:365.694667pt;}
.y8a{bottom:367.976000pt;}
.y19{bottom:369.952000pt;}
.y16c{bottom:371.008000pt;}
.y18a{bottom:371.009333pt;}
.y218{bottom:373.066667pt;}
.ye9{bottom:375.258667pt;}
.yab{bottom:375.750667pt;}
.ycd{bottom:377.230667pt;}
.y1e5{bottom:377.688000pt;}
.y41{bottom:378.693333pt;}
.y156{bottom:380.021333pt;}
.y1c8{bottom:380.428000pt;}
.y6b{bottom:381.634667pt;}
.y58{bottom:381.636000pt;}
.y89{bottom:383.916000pt;}
.y18{bottom:385.892000pt;}
.y16b{bottom:386.949333pt;}
.y217{bottom:389.006667pt;}
.ye8{bottom:391.200000pt;}
.yaa{bottom:391.690667pt;}
.y1a9{bottom:393.214667pt;}
.y1e4{bottom:393.628000pt;}
.y114{bottom:394.440000pt;}
.y40{bottom:394.633333pt;}
.y155{bottom:395.961333pt;}
.y57{bottom:397.576000pt;}
.y133{bottom:399.220000pt;}
.y88{bottom:399.856000pt;}
.y17{bottom:401.832000pt;}
.y189{bottom:402.889333pt;}
.y216{bottom:404.946667pt;}
.ye7{bottom:407.140000pt;}
.yc4{bottom:407.630667pt;}
.yd1{bottom:407.632000pt;}
.y1e3{bottom:409.568000pt;}
.y113{bottom:410.380000pt;}
.y3f{bottom:410.573333pt;}
.y154{bottom:411.901333pt;}
.y1c7{bottom:412.308000pt;}
.y56{bottom:413.516000pt;}
.y200{bottom:414.785333pt;}
.y132{bottom:415.160000pt;}
.y87{bottom:415.796000pt;}
.y16{bottom:417.772000pt;}
.y215{bottom:420.886667pt;}
.ye6{bottom:423.080000pt;}
.yc3{bottom:423.572000pt;}
.y3e{bottom:426.513333pt;}
.y153{bottom:427.842667pt;}
.y1c6{bottom:428.248000pt;}
.y55{bottom:429.456000pt;}
.y131{bottom:431.100000pt;}
.y86{bottom:431.737333pt;}
.y15{bottom:433.712000pt;}
.y16a{bottom:434.769333pt;}
.y214{bottom:436.826667pt;}
.ye5{bottom:439.020000pt;}
.ya9{bottom:439.512000pt;}
.y1a8{bottom:441.036000pt;}
.y1e2{bottom:441.449333pt;}
.y224{bottom:441.961333pt;}
.y112{bottom:442.260000pt;}
.y3d{bottom:442.454667pt;}
.y152{bottom:443.782667pt;}
.y1c5{bottom:444.188000pt;}
.y54{bottom:445.396000pt;}
.y130{bottom:447.040000pt;}
.y85{bottom:447.677333pt;}
.y14{bottom:449.653333pt;}
.y213{bottom:452.766667pt;}
.ye4{bottom:454.960000pt;}
.ya8{bottom:455.452000pt;}
.y1a7{bottom:456.976000pt;}
.y1e1{bottom:457.389333pt;}
.y111{bottom:458.200000pt;}
.y3c{bottom:458.394667pt;}
.y151{bottom:459.722667pt;}
.y53{bottom:461.336000pt;}
.y12f{bottom:462.981333pt;}
.y84{bottom:463.617333pt;}
.y13{bottom:465.593333pt;}
.y169{bottom:466.649333pt;}
.y1ff{bottom:468.708000pt;}
.ye3{bottom:470.901333pt;}
.ya7{bottom:471.392000pt;}
.y1e0{bottom:473.329333pt;}
.y110{bottom:474.141333pt;}
.y1c4{bottom:476.069333pt;}
.y52{bottom:477.277333pt;}
.y83{bottom:479.557333pt;}
.y12{bottom:481.533333pt;}
.y212{bottom:484.648000pt;}
.ye2{bottom:486.841333pt;}
.ya6{bottom:487.332000pt;}
.y1a6{bottom:488.856000pt;}
.y1df{bottom:489.269333pt;}
.y10f{bottom:490.081333pt;}
.y150{bottom:491.602667pt;}
.y51{bottom:493.217333pt;}
.y82{bottom:495.497333pt;}
.y11{bottom:497.473333pt;}
.y1fe{bottom:500.588000pt;}
.ye1{bottom:502.781333pt;}
.ya5{bottom:503.273333pt;}
.y1a5{bottom:504.796000pt;}
.y10e{bottom:506.021333pt;}
.y14f{bottom:507.544000pt;}
.y1c3{bottom:507.949333pt;}
.y50{bottom:509.157333pt;}
.y81{bottom:511.438667pt;}
.y10{bottom:513.413333pt;}
.y188{bottom:514.470667pt;}
.y1fd{bottom:516.528000pt;}
.ye0{bottom:518.721333pt;}
.ya4{bottom:519.213333pt;}
.y10d{bottom:521.961333pt;}
.y3b{bottom:522.154667pt;}
.y4f{bottom:525.097333pt;}
.y12e{bottom:526.741333pt;}
.y80{bottom:527.378667pt;}
.yf{bottom:529.353333pt;}
.y168{bottom:530.410667pt;}
.y1fc{bottom:532.468000pt;}
.ydf{bottom:534.661333pt;}
.ya3{bottom:535.153333pt;}
.y10c{bottom:537.901333pt;}
.y1c2{bottom:539.829333pt;}
.y6c{bottom:541.037333pt;}
.y12d{bottom:542.681333pt;}
.y7f{bottom:543.318667pt;}
.ye{bottom:545.294667pt;}
.y167{bottom:546.350667pt;}
.y1fb{bottom:548.409333pt;}
.yde{bottom:550.601333pt;}
.ya2{bottom:551.093333pt;}
.y227{bottom:553.542667pt;}
.y10b{bottom:553.841333pt;}
.y1a4{bottom:554.081333pt;}
.y14e{bottom:555.364000pt;}
.y1c1{bottom:555.770667pt;}
.y4e{bottom:556.977333pt;}
.y7e{bottom:559.258667pt;}
.yd{bottom:561.234667pt;}
.y186{bottom:561.433333pt;}
.y187{bottom:562.292000pt;}
.y1fa{bottom:564.349333pt;}
.ydd{bottom:566.542667pt;}
.ya1{bottom:567.033333pt;}
.y1de{bottom:568.970667pt;}
.y226{bottom:569.482667pt;}
.y10a{bottom:569.782667pt;}
.y14d{bottom:571.304000pt;}
.y4d{bottom:572.918667pt;}
.y12c{bottom:574.562667pt;}
.y7d{bottom:575.198667pt;}
.y3a{bottom:576.333333pt;}
.yc{bottom:577.174667pt;}
.y185{bottom:577.373333pt;}
.y166{bottom:578.232000pt;}
.y1f9{bottom:580.289333pt;}
.ydc{bottom:582.482667pt;}
.ya0{bottom:582.973333pt;}
.y14c{bottom:587.244000pt;}
.y1c0{bottom:587.650667pt;}
.y4c{bottom:588.858667pt;}
.y12b{bottom:590.502667pt;}
.yb{bottom:593.114667pt;}
.y184{bottom:593.313333pt;}
.y165{bottom:594.172000pt;}
.y211{bottom:596.229333pt;}
.ydb{bottom:598.422667pt;}
.y9f{bottom:598.914667pt;}
.y1dd{bottom:600.850667pt;}
.y109{bottom:601.662667pt;}
.y14b{bottom:603.185333pt;}
.y1bf{bottom:603.590667pt;}
.y4b{bottom:604.798667pt;}
.y7c{bottom:607.080000pt;}
.ya{bottom:609.054667pt;}
.y164{bottom:610.112000pt;}
.y210{bottom:612.169333pt;}
.y1a3{bottom:612.769333pt;}
.yda{bottom:614.362667pt;}
.y9e{bottom:614.854667pt;}
.y225{bottom:617.304000pt;}
.y108{bottom:617.602667pt;}
.y14a{bottom:619.125333pt;}
.y4a{bottom:620.738667pt;}
.y12a{bottom:622.382667pt;}
.y7b{bottom:623.020000pt;}
.y9{bottom:624.994667pt;}
.y183{bottom:625.193333pt;}
.y163{bottom:626.052000pt;}
.y1f8{bottom:628.109333pt;}
.y1a2{bottom:628.709333pt;}
.yd9{bottom:630.302667pt;}
.y9d{bottom:630.794667pt;}
.y107{bottom:633.542667pt;}
.y149{bottom:635.065333pt;}
.y39{bottom:636.678667pt;}
.y129{bottom:638.322667pt;}
.y7a{bottom:638.960000pt;}
.y8{bottom:640.936000pt;}
.y182{bottom:641.134667pt;}
.y162{bottom:641.992000pt;}
.y1f7{bottom:644.050667pt;}
.y1a1{bottom:644.649333pt;}
.yd8{bottom:646.242667pt;}
.yc2{bottom:646.734667pt;}
.y6a{bottom:652.618667pt;}
.y1be{bottom:653.880000pt;}
.y128{bottom:654.264000pt;}
.y79{bottom:654.900000pt;}
.y1dc{bottom:655.714667pt;}
.y7{bottom:656.876000pt;}
.y181{bottom:657.074667pt;}
.y1a0{bottom:660.589333pt;}
.y9c{bottom:662.674667pt;}
.y106{bottom:665.424000pt;}
.y38{bottom:668.560000pt;}
.y127{bottom:670.204000pt;}
.y78{bottom:670.840000pt;}
.y6{bottom:672.816000pt;}
.y1f6{bottom:675.930667pt;}
.yd7{bottom:678.124000pt;}
.yc1{bottom:678.614667pt;}
.y148{bottom:682.885333pt;}
.y37{bottom:684.500000pt;}
.y126{bottom:686.144000pt;}
.y5{bottom:688.756000pt;}
.y180{bottom:688.954667pt;}
.y1f5{bottom:691.870667pt;}
.y19f{bottom:692.469333pt;}
.yc0{bottom:694.556000pt;}
.y105{bottom:697.304000pt;}
.y147{bottom:698.826667pt;}
.y36{bottom:700.440000pt;}
.y125{bottom:702.084000pt;}
.y77{bottom:702.721333pt;}
.y1bd{bottom:705.145333pt;}
.y161{bottom:705.753333pt;}
.yd6{bottom:710.004000pt;}
.ycb{bottom:710.496000pt;}
.y9b{bottom:711.132000pt;}
.y141{bottom:712.945333pt;}
.y104{bottom:713.244000pt;}
.y146{bottom:714.766667pt;}
.y35{bottom:716.380000pt;}
.y124{bottom:718.024000pt;}
.y76{bottom:718.661333pt;}
.y1bc{bottom:721.085333pt;}
.y160{bottom:721.693333pt;}
.y1f4{bottom:723.750667pt;}
.yd5{bottom:725.944000pt;}
.yd0{bottom:726.436000pt;}
.y103{bottom:729.184000pt;}
.y34{bottom:732.320000pt;}
.y123{bottom:733.965333pt;}
.y75{bottom:734.601333pt;}
.ybf{bottom:734.756000pt;}
.y17f{bottom:736.776000pt;}
.y1bb{bottom:737.025333pt;}
.y15f{bottom:737.633333pt;}
.y1f3{bottom:739.692000pt;}
.y19e{bottom:740.290667pt;}
.yd4{bottom:741.884000pt;}
.yca{bottom:742.376000pt;}
.y4{bottom:743.134667pt;}
.y102{bottom:745.124000pt;}
.y33{bottom:748.260000pt;}
.yc6{bottom:748.261333pt;}
.y122{bottom:749.905333pt;}
.y74{bottom:750.541333pt;}
.ybe{bottom:750.696000pt;}
.y17e{bottom:752.716000pt;}
.y15e{bottom:753.574667pt;}
.y19d{bottom:756.230667pt;}
.yd3{bottom:757.825333pt;}
.yc9{bottom:758.316000pt;}
.y1db{bottom:758.952000pt;}
.y101{bottom:761.065333pt;}
.y145{bottom:762.586667pt;}
.y32{bottom:764.201333pt;}
.y73{bottom:766.481333pt;}
.ybd{bottom:766.637333pt;}
.y1ba{bottom:768.905333pt;}
.y20f{bottom:771.572000pt;}
.y19c{bottom:772.170667pt;}
.y100{bottom:777.005333pt;}
.y144{bottom:778.526667pt;}
.y31{bottom:780.141333pt;}
.y72{bottom:782.421333pt;}
.ybc{bottom:782.577333pt;}
.y17d{bottom:784.596000pt;}
.y1b9{bottom:784.845333pt;}
.y20e{bottom:787.512000pt;}
.y19b{bottom:788.110667pt;}
.y1f2{bottom:789.980000pt;}
.y223{bottom:791.890667pt;}
.yff{bottom:792.945333pt;}
.y143{bottom:794.468000pt;}
.y121{bottom:794.614667pt;}
.y30{bottom:796.081333pt;}
.y71{bottom:798.362667pt;}
.ybb{bottom:798.517333pt;}
.y1b8{bottom:800.786667pt;}
.y19a{bottom:804.052000pt;}
.y3{bottom:807.482667pt;}
.yc8{bottom:807.830667pt;}
.y2f{bottom:812.021333pt;}
.y70{bottom:814.302667pt;}
.y17c{bottom:816.476000pt;}
.y1b7{bottom:816.726667pt;}
.y199{bottom:819.992000pt;}
.yfe{bottom:824.825333pt;}
.y49{bottom:827.961333pt;}
.y6f{bottom:830.242667pt;}
.yba{bottom:830.397333pt;}
.y222{bottom:831.418667pt;}
.y17b{bottom:832.417333pt;}
.y1b6{bottom:832.666667pt;}
.y15d{bottom:833.274667pt;}
.y198{bottom:835.932000pt;}
.y20d{bottom:837.801333pt;}
.y142{bottom:841.822667pt;}
.y2e{bottom:843.902667pt;}
.y2{bottom:844.554667pt;}
.yb9{bottom:846.337333pt;}
.yc7{bottom:847.358667pt;}
.y17a{bottom:848.357333pt;}
.y1b5{bottom:848.606667pt;}
.y15c{bottom:849.216000pt;}
.y197{bottom:851.872000pt;}
.yfd{bottom:856.706667pt;}
.y2d{bottom:859.842667pt;}
.y1b4{bottom:864.546667pt;}
.y15b{bottom:865.156000pt;}
.y196{bottom:867.812000pt;}
.y2c{bottom:875.782667pt;}
.y1b3{bottom:880.486667pt;}
.y6e{bottom:880.856000pt;}
.y195{bottom:883.752000pt;}
.y1{bottom:890.925333pt;}
.y2b{bottom:891.722667pt;}
.yb8{bottom:894.158667pt;}
.y1b2{bottom:896.428000pt;}
.y179{bottom:898.358667pt;}
.y194{bottom:899.693333pt;}
.yfc{bottom:906.994667pt;}
.y2a{bottom:907.662667pt;}
.y178{bottom:914.298667pt;}
.y193{bottom:915.633333pt;}
.y29{bottom:923.602667pt;}
.y192{bottom:931.573333pt;}
.y28{bottom:939.544000pt;}
.yb7{bottom:946.716000pt;}
.h5{height:33.049265pt;}
.h4{height:36.874903pt;}
.h7{height:37.193707pt;}
.h2{height:44.250180pt;}
.h6{height:44.632747pt;}
.h3{height:53.559147pt;}
.h1{height:62.709964pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x9{left:102.973333pt;}
.x8{left:109.948000pt;}
.x1c{left:116.921333pt;}
.x6{left:123.894667pt;}
.x1e{left:130.869333pt;}
.xd{left:137.842667pt;}
.x18{left:144.817333pt;}
.x7{left:151.790667pt;}
.x12{left:158.764000pt;}
.xf{left:165.738667pt;}
.x16{left:172.712000pt;}
.xa{left:179.685333pt;}
.xb{left:207.581333pt;}
.x10{left:214.554667pt;}
.x11{left:221.529333pt;}
.x13{left:228.502667pt;}
.xc{left:235.476000pt;}
.x1d{left:242.450667pt;}
.x1f{left:249.424000pt;}
.x15{left:256.398667pt;}
.x14{left:263.372000pt;}
.x19{left:291.266667pt;}
.x1a{left:319.162667pt;}
.x1b{left:347.057333pt;}
.x2{left:347.957333pt;}
.x3{left:371.581333pt;}
.x20{left:381.926667pt;}
.x1{left:383.672000pt;}
.x17{left:401.358667pt;}
.x5{left:404.678667pt;}
.xe{left:458.638667pt;}
}




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