
    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_5f142375eaddf5748bdabfbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_96a79db52d84a3368317271f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_456f7985b86ed80eeb55e6a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_28e356c40b978f10efe3bd0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.108398;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_d76be750b4e809b6140a4747.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_8eb5913acc4b6405cf50954f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_de00868f5a811ed9af578bec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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;}
.m9{transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-ms-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-webkit-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.039998px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.019552px;}
.ls8{letter-spacing:0.019560px;}
.ls3{letter-spacing:0.025500px;}
.ls0{letter-spacing:0.158826px;}
.ls7{letter-spacing:0.166140px;}
.lsb{letter-spacing:0.237665px;}
.ls5{letter-spacing:0.297773px;}
.lsa{letter-spacing:33.295440px;}
.ls4{letter-spacing:44.822240px;}
.ls9{letter-spacing:54.908176px;}
.ls2{letter-spacing:196.253321px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-38.303985px;}
.ws6{word-spacing:-33.845746px;}
.ws8{word-spacing:-31.983827px;}
.ws4{word-spacing:-31.242228px;}
.ws5{word-spacing:-28.727989px;}
.wsc{word-spacing:-17.999993px;}
.wsb{word-spacing:-16.509658px;}
.ws0{word-spacing:-16.271993px;}
.ws9{word-spacing:-15.180003px;}
.ws2{word-spacing:-14.939994px;}
.wsa{word-spacing:-13.505755px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:321.304237px;}
._d{margin-left:-10.707881px;}
._9{margin-left:-3.182688px;}
._0{margin-left:-1.312244px;}
._1{width:1.021198px;}
._b{width:2.234964px;}
._a{width:3.316534px;}
._c{width:4.473892px;}
._13{width:6.170618px;}
._8{width:8.603056px;}
._7{width:10.021406px;}
._12{width:12.025607px;}
._11{width:13.068559px;}
._14{width:36.370236px;}
._10{width:61.714275px;}
._5{width:62.847732px;}
._15{width:90.014344px;}
._f{width:114.306566px;}
._e{width:115.685354px;}
._2{width:163.744202px;}
._3{width:196.248162px;}
._4{width:330.967308px;}
._6{width:419.239769px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(46,115,181);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.239981px;}
.fsb{font-size:53.999978px;}
.fsc{font-size:57.067680px;}
.fs6{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs8{font-size:107.999957px;}
.fs4{font-size:120.239952px;}
.fs5{font-size:131.759947px;}
.fs7{font-size:138.239945px;}
.fsa{font-size:143.999942px;}
.fs9{font-size:149.759940px;}
.fsd{font-size:167.759933px;}
.fs3{font-size:287.999885px;}
.y11f{bottom:-4.140805px;}
.y120{bottom:-3.960805px;}
.y0{bottom:0.000000px;}
.y1c1{bottom:2.879228px;}
.y1c7{bottom:3.059240px;}
.y143{bottom:3.959150px;}
.y1c3{bottom:4.319228px;}
.y6{bottom:4.800298px;}
.ydc{bottom:4.858990px;}
.y17b{bottom:4.859007px;}
.ye7{bottom:4.859016px;}
.yfc{bottom:4.859027px;}
.yfe{bottom:4.859044px;}
.yeb{bottom:4.859086px;}
.yd4{bottom:4.859296px;}
.y16b{bottom:4.859308px;}
.yda{bottom:4.859700px;}
.y5{bottom:23.520291px;}
.y3{bottom:39.539984px;}
.y4{bottom:39.540284px;}
.y30{bottom:114.059954px;}
.y163{bottom:115.499954px;}
.y20b{bottom:115.679954px;}
.y58{bottom:116.219954px;}
.y224{bottom:116.400253px;}
.y72{bottom:120.900252px;}
.y12d{bottom:123.239951px;}
.yb0{bottom:123.599951px;}
.y260{bottom:126.300249px;}
.y204{bottom:127.200249px;}
.y1dd{bottom:128.639949px;}
.y94{bottom:130.619948px;}
.y193{bottom:132.239947px;}
.y24e{bottom:136.740245px;}
.y223{bottom:138.179945px;}
.y20a{bottom:139.439944px;}
.yfa{bottom:141.239944px;}
.y217{bottom:142.139943px;}
.y1bf{bottom:143.579943px;}
.y16e{bottom:143.940242px;}
.yaf{bottom:145.559942px;}
.yd9{bottom:145.560240px;}
.y1c{bottom:145.919942px;}
.y3e{bottom:147.180241px;}
.y25f{bottom:148.440241px;}
.y2f{bottom:149.879940px;}
.y269{bottom:150.059940px;}
.yd8{bottom:150.239940px;}
.y203{bottom:150.779940px;}
.y162{bottom:151.319939px;}
.y57{bottom:151.859939px;}
.y93{bottom:152.399939px;}
.y13f{bottom:155.459938px;}
.y192{bottom:155.999938px;}
.y71{bottom:156.539937px;}
.y222{bottom:160.139936px;}
.y24d{bottom:160.499936px;}
.y209{bottom:163.199935px;}
.y16d{bottom:165.899934px;}
.yae{bottom:167.519933px;}
.y19c{bottom:168.419933px;}
.y25e{bottom:170.399932px;}
.y3d{bottom:170.939932px;}
.y1dc{bottom:171.659931px;}
.yd6{bottom:172.919931px;}
.y92{bottom:174.359930px;}
.y202{bottom:174.539930px;}
.y12c{bottom:178.859928px;}
.y1be{bottom:179.219928px;}
.y191{bottom:179.759928px;}
.y1b{bottom:181.739927px;}
.y216{bottom:185.159926px;}
.y2e{bottom:185.519926px;}
.y161{bottom:186.959925px;}
.y56{bottom:187.499925px;}
.y16c{bottom:187.859925px;}
.yad{bottom:189.479924px;}
.y19b{bottom:191.999923px;}
.y70{bottom:192.359923px;}
.y268{bottom:193.079923px;}
.y1e6{bottom:194.879922px;}
.y24c{bottom:196.139922px;}
.y91{bottom:196.319921px;}
.yf9{bottom:196.679921px;}
.y13e{bottom:198.479921px;}
.y208{bottom:198.839920px;}
.y190{bottom:203.339919px;}
.y3c{bottom:206.579917px;}
.y215{bottom:206.939917px;}
.y1af{bottom:209.999916px;}
.y1db{bottom:214.499914px;}
.y1bd{bottom:214.859914px;}
.y19a{bottom:215.759914px;}
.yd7{bottom:215.939914px;}
.yd5{bottom:216.119914px;}
.y1a{bottom:217.379913px;}
.y90{bottom:218.279913px;}
.y238{bottom:220.799912px;}
.y2d{bottom:221.159912px;}
.y110{bottom:221.339911px;}
.y55{bottom:223.319911px;}
.y16a{bottom:226.200600px;}
.y18f{bottom:227.099909px;}
.y6f{bottom:227.999909px;}
.y214{bottom:228.899908px;}
.y160{bottom:229.979908px;}
.y3b{bottom:230.339908px;}
.yac{bottom:232.679907px;}
.y12b{bottom:234.299906px;}
.y207{bottom:234.479906px;}
.y25d{bottom:235.379906px;}
.y267{bottom:236.099906px;}
.y1e5{bottom:237.899905px;}
.y8f{bottom:240.239904px;}
.y13d{bottom:241.499903px;}
.y10f{bottom:245.099902px;}
.y221{bottom:246.179902px;}
.y54{bottom:247.079901px;}
.y1bc{bottom:250.679900px;}
.y199{bottom:251.579899px;}
.y15f{bottom:251.759899px;}
.yf8{bottom:252.119899px;}
.y19{bottom:253.199899px;}
.y169{bottom:253.559899px;}
.y3a{bottom:254.099898px;}
.yd3{bottom:254.280600px;}
.y1ae{bottom:254.639898px;}
.y237{bottom:256.439897px;}
.y2c{bottom:256.979897px;}
.y25c{bottom:257.159897px;}
.y1da{bottom:257.519897px;}
.yd2{bottom:258.959896px;}
.y201{bottom:262.199895px;}
.y18e{bottom:262.739895px;}
.y8e{bottom:263.099895px;}
.y13c{bottom:263.279895px;}
.y6e{bottom:263.819894px;}
.y220{bottom:268.139893px;}
.y10e{bottom:268.679893px;}
.y206{bottom:270.299892px;}
.y213{bottom:272.099891px;}
.y15e{bottom:273.719891px;}
.y266{bottom:274.079890px;}
.yab{bottom:275.519890px;}
.y39{bottom:277.679889px;}
.y1ad{bottom:278.399889px;}
.y1d9{bottom:279.299888px;}
.y1e4{bottom:280.919888px;}
.y53{bottom:282.719887px;}
.y200{bottom:284.159886px;}
.y8d{bottom:285.239886px;}
.y1bb{bottom:286.319885px;}
.y198{bottom:287.219885px;}
.y18{bottom:288.839884px;}
.y12a{bottom:289.739884px;}
.y24b{bottom:291.719883px;}
.y236{bottom:292.259883px;}
.y2b{bottom:292.619883px;}
.y212{bottom:293.879882px;}
.y1e1{bottom:294.059882px;}
.yd1{bottom:295.499882px;}
.yaa{bottom:297.479881px;}
.y18d{bottom:298.559881px;}
.y6d{bottom:299.459880px;}
.y25b{bottom:300.359880px;}
.y1d8{bottom:301.259879px;}
.y1ac{bottom:302.159879px;}
.y10d{bottom:304.499878px;}
.y205{bottom:305.939878px;}
.y1ff{bottom:306.119878px;}
.y13b{bottom:306.479877px;}
.yf7{bottom:307.559877px;}
.y8c{bottom:308.099877px;}
.y21f{bottom:311.159876px;}
.y24a{bottom:311.339875px;}
.y247{bottom:312.239875px;}
.y38{bottom:313.499875px;}
.y15d{bottom:316.919873px;}
.y52{bottom:318.359873px;}
.y1e3{bottom:318.899872px;}
.y1ba{bottom:322.139871px;}
.y197{bottom:322.859871px;}
.y1f1{bottom:323.759870px;}
.y17{bottom:324.479870px;}
.y235{bottom:327.899869px;}
.y1fe{bottom:328.079869px;}
.y2a{bottom:328.439869px;}
.y8b{bottom:330.059868px;}
.yc9{bottom:330.779868px;}
.y249{bottom:331.139868px;}
.yd0{bottom:331.319867px;}
.y168{bottom:334.199866px;}
.y6c{bottom:335.099866px;}
.y1e0{bottom:336.899865px;}
.y129{bottom:339.779864px;}
.ya9{bottom:340.499864px;}
.y51{bottom:342.119863px;}
.y1d7{bottom:344.459862px;}
.y1ab{bottom:345.179862px;}
.y10c{bottom:347.519861px;}
.y246{bottom:347.879861px;}
.y37{bottom:349.139860px;}
.y11b{bottom:349.319860px;}
.y1fd{bottom:350.219860px;}
.y8a{bottom:352.019859px;}
.yc8{bottom:352.739859px;}
.y196{bottom:353.819858px;}
.y21e{bottom:354.179858px;}
.y1b9{bottom:357.779857px;}
.y18c{bottom:357.959857px;}
.y265{bottom:358.499857px;}
.y211{bottom:358.859856px;}
.y248{bottom:359.399856px;}
.y15c{bottom:359.939856px;}
.y16{bottom:360.299856px;}
.yf6{bottom:363.179855px;}
.y234{bottom:363.719855px;}
.y29{bottom:364.079854px;}
.y25a{bottom:365.339854px;}
.y1d6{bottom:366.239854px;}
.y1f0{bottom:366.779853px;}
.ycf{bottom:366.959853px;}
.y10b{bottom:369.299852px;}
.y167{bottom:369.839852px;}
.y6b{bottom:370.919852px;}
.y13a{bottom:371.099852px;}
.y245{bottom:371.639851px;}
.y1fc{bottom:372.179851px;}
.y89{bottom:373.979850px;}
.y1df{bottom:375.059850px;}
.y128{bottom:375.599850px;}
.y21d{bottom:375.959850px;}
.y50{bottom:377.939849px;}
.y15b{bottom:381.719847px;}
.ya8{bottom:383.519847px;}
.y36{bottom:384.779846px;}
.y11a{bottom:384.959846px;}
.y259{bottom:387.119845px;}
.y1d5{bottom:388.199845px;}
.y1aa{bottom:388.919844px;}
.y10a{bottom:391.259843px;}
.y139{bottom:393.239843px;}
.y1b8{bottom:393.419843px;}
.y18b{bottom:393.599843px;}
.y1fb{bottom:394.139842px;}
.yc7{bottom:395.759842px;}
.y15{bottom:395.939842px;}
.y1c6{bottom:397.200600px;}
.y233{bottom:399.359840px;}
.y28{bottom:399.719840px;}
.y1c5{bottom:400.259840px;}
.y264{bottom:401.519839px;}
.y210{bottom:401.879839px;}
.yce{bottom:402.599839px;}
.y15a{bottom:403.679839px;}
.y166{bottom:405.479838px;}
.y6a{bottom:406.559837px;}
.y244{bottom:407.279837px;}
.y35{bottom:408.539837px;}
.y1d4{bottom:410.159836px;}
.y127{bottom:411.239836px;}
.y4f{bottom:413.579835px;}
.y138{bottom:415.199834px;}
.y1c4{bottom:415.559834px;}
.y1fa{bottom:416.099834px;}
.y88{bottom:417.899833px;}
.yf5{bottom:418.619833px;}
.y21c{bottom:419.159832px;}
.y119{bottom:420.599832px;}
.y20f{bottom:423.659831px;}
.ya7{bottom:426.539829px;}
.y1c2{bottom:426.540600px;}
.y1c0{bottom:427.980600px;}
.y1b7{bottom:429.239828px;}
.y18a{bottom:429.419828px;}
.y69{bottom:430.319828px;}
.y14{bottom:431.759827px;}
.y1a9{bottom:431.939827px;}
.y126{bottom:434.999826px;}
.y27{bottom:435.539826px;}
.y109{bottom:436.079826px;}
.y137{bottom:437.159825px;}
.y4e{bottom:437.339825px;}
.y1f9{bottom:438.059825px;}
.y243{bottom:438.239825px;}
.ycd{bottom:438.419825px;}
.yc6{bottom:438.779824px;}
.y87{bottom:439.859824px;}
.y21b{bottom:440.939824px;}
.y165{bottom:441.299823px;}
.y34{bottom:444.359822px;}
.ya6{bottom:448.319821px;}
.y258{bottom:452.099819px;}
.y1a8{bottom:453.899818px;}
.y1d3{bottom:455.159818px;}
.y118{bottom:456.419817px;}
.y125{bottom:458.759816px;}
.y1f8{bottom:460.019816px;}
.yc5{bottom:460.559816px;}
.y86{bottom:461.819815px;}
.ycc{bottom:462.179815px;}
.y1b6{bottom:464.879814px;}
.y189{bottom:465.059814px;}
.y68{bottom:465.959814px;}
.y20e{bottom:466.859813px;}
.y13{bottom:467.399813px;}
.y232{bottom:470.819812px;}
.y26{bottom:471.179812px;}
.y108{bottom:471.899811px;}
.y4d{bottom:472.979811px;}
.yf4{bottom:474.059810px;}
.y33{bottom:475.139810px;}
.y159{bottom:476.939809px;}
.y136{bottom:480.179808px;}
.y1f7{bottom:481.979807px;}
.yc4{bottom:482.519807px;}
.y85{bottom:483.779806px;}
.y21a{bottom:484.139806px;}
.y263{bottom:487.379805px;}
.y188{bottom:488.819804px;}
.y1d2{bottom:490.799804px;}
.ya5{bottom:491.519803px;}
.y117{bottom:492.059803px;}
.y124{bottom:494.399802px;}
.y107{bottom:495.479802px;}
.y1b5{bottom:495.839802px;}
.y4c{bottom:496.559801px;}
.y1a7{bottom:496.919801px;}
.ycb{bottom:497.819801px;}
.y158{bottom:498.719801px;}
.y67{bottom:501.779799px;}
.y12{bottom:503.039799px;}
.y84{bottom:505.739798px;}
.y231{bottom:506.459797px;}
.y25{bottom:506.999797px;}
.y164{bottom:507.899797px;}
.y20d{bottom:511.499795px;}
.y187{bottom:512.579795px;}
.ya4{bottom:513.299795px;}
.y1d1{bottom:514.559794px;}
.y242{bottom:515.279794px;}
.y11e{bottom:516.540600px;}
.y257{bottom:517.259793px;}
.y106{bottom:519.239792px;}
.y157{bottom:520.679792px;}
.y135{bottom:524.999790px;}
.y1f6{bottom:525.179790px;}
.yc3{bottom:525.719790px;}
.y83{bottom:527.879789px;}
.y219{bottom:528.779788px;}
.yf3{bottom:529.499788px;}
.y175{bottom:532.919787px;}
.ya3{bottom:535.259786px;}
.y66{bottom:537.419785px;}
.y11{bottom:538.859784px;}
.y256{bottom:539.039784px;}
.y1a6{bottom:539.939784px;}
.y230{bottom:542.279783px;}
.y156{bottom:542.639783px;}
.y105{bottom:542.999783px;}
.y11d{bottom:545.699782px;}
.y24{bottom:546.959781px;}
.y20c{bottom:547.319781px;}
.y186{bottom:548.219781px;}
.y1d0{bottom:550.199780px;}
.y82{bottom:550.739780px;}
.y241{bottom:551.099780px;}
.y130{bottom:553.619779px;}
.y218{bottom:559.559776px;}
.y123{bottom:560.279776px;}
.y134{bottom:560.639776px;}
.y255{bottom:560.999776px;}
.y65{bottom:561.179776px;}
.y1a5{bottom:561.719775px;}
.y4b{bottom:562.619775px;}
.y1f5{bottom:563.159775px;}
.y116{bottom:563.519775px;}
.y155{bottom:564.599774px;}
.yca{bottom:566.039774px;}
.y262{bottom:567.119773px;}
.yc2{bottom:568.739773px;}
.y12f{bottom:571.979771px;}
.y81{bottom:572.699771px;}
.y10{bottom:574.499770px;}
.y22f{bottom:577.919769px;}
.ya2{bottom:578.279769px;}
.y104{bottom:578.639769px;}
.y185{bottom:583.859766px;}
.y64{bottom:584.939766px;}
.y1cf{bottom:586.019766px;}
.y154{bottom:586.559765px;}
.y240{bottom:586.739765px;}
.yf2{bottom:586.919765px;}
.y12e{bottom:590.339764px;}
.y174{bottom:593.939762px;}
.y80{bottom:595.559762px;}
.y122{bottom:595.919762px;}
.y133{bottom:596.459761px;}
.y4a{bottom:598.259761px;}
.y23{bottom:598.439761px;}
.y115{bottom:599.339760px;}
.ya1{bottom:600.059760px;}
.y1a4{bottom:604.919758px;}
.y153{bottom:608.519757px;}
.yf1{bottom:608.699757px;}
.yf{bottom:610.319756px;}
.y254{bottom:611.219756px;}
.yc1{bottom:611.579755px;}
.y22e{bottom:613.559755px;}
.y103{bottom:614.459754px;}
.y7f{bottom:617.519753px;}
.y23f{bottom:617.699753px;}
.y63{bottom:620.579752px;}
.y142{bottom:620.760600px;}
.y1ce{bottom:621.659751px;}
.y49{bottom:622.019751px;}
.ya0{bottom:622.199751px;}
.y173{bottom:624.539750px;}
.y141{bottom:624.719750px;}
.y1a3{bottom:626.699749px;}
.y121{bottom:626.879749px;}
.y152{bottom:630.479748px;}
.yf0{bottom:630.659748px;}
.y132{bottom:632.099747px;}
.yc0{bottom:633.359747px;}
.y114{bottom:634.979746px;}
.y1f4{bottom:636.419745px;}
.y7e{bottom:639.479744px;}
.y140{bottom:642.899743px;}
.ye{bottom:645.959742px;}
.y184{bottom:648.659741px;}
.y22d{bottom:649.379740px;}
.y22{bottom:649.919740px;}
.y102{bottom:650.099740px;}
.y151{bottom:652.439739px;}
.y253{bottom:654.779738px;}
.ybf{bottom:655.499738px;}
.y62{bottom:656.219738px;}
.y1cd{bottom:657.299737px;}
.y48{bottom:657.659737px;}
.y1f3{bottom:658.199737px;}
.y7d{bottom:661.619735px;}
.y131{bottom:662.879735px;}
.y9f{bottom:665.219734px;}
.y113{bottom:670.619732px;}
.y150{bottom:674.399730px;}
.yef{bottom:675.479730px;}
.ybe{bottom:677.459729px;}
.y47{bottom:681.419727px;}
.yd{bottom:681.599727px;}
.y7c{bottom:683.579727px;}
.y22c{bottom:685.019726px;}
.y9e{bottom:686.999725px;}
.y1a2{bottom:691.859723px;}
.y183{bottom:692.579723px;}
.y1cc{bottom:693.119723px;}
.y14f{bottom:696.359721px;}
.yee{bottom:698.159721px;}
.y61{bottom:699.239720px;}
.ybd{bottom:699.419720px;}
.y1f2{bottom:701.219720px;}
.y21{bottom:701.399719px;}
.y1ef{bottom:702.479719px;}
.y252{bottom:704.819718px;}
.y1e2{bottom:705.179718px;}
.y7b{bottom:705.539718px;}
.y112{bottom:706.439717px;}
.y9d{bottom:708.959716px;}
.y1a1{bottom:713.639715px;}
.y182{bottom:716.339713px;}
.y46{bottom:717.059713px;}
.y14e{bottom:718.499713px;}
.y22b{bottom:720.839712px;}
.y60{bottom:721.019712px;}
.ybc{bottom:721.379711px;}
.y7a{bottom:728.399709px;}
.y1cb{bottom:728.759708px;}
.y1a0{bottom:735.599706px;}
.yc{bottom:737.039705px;}
.y111{bottom:737.219705px;}
.y14d{bottom:740.459704px;}
.y45{bottom:740.819704px;}
.yec{bottom:740.999704px;}
.yed{bottom:741.179704px;}
.y5f{bottom:742.979703px;}
.ybb{bottom:743.339703px;}
.y1ee{bottom:745.499702px;}
.y79{bottom:750.359700px;}
.y9c{bottom:752.159699px;}
.y20{bottom:753.059699px;}
.y181{bottom:753.239699px;}
.y172{bottom:753.959698px;}
.y22a{bottom:756.479697px;}
.y1de{bottom:756.659697px;}
.y177{bottom:758.819696px;}
.y14c{bottom:762.419695px;}
.y1ca{bottom:764.579694px;}
.y5e{bottom:764.939694px;}
.yba{bottom:765.299694px;}
.y1ed{bottom:767.279693px;}
.y78{bottom:773.399691px;}
.y9b{bottom:773.939690px;}
.y251{bottom:776.279689px;}
.y44{bottom:776.459689px;}
.yea{bottom:779.340600px;}
.y19f{bottom:780.419688px;}
.y23e{bottom:783.299687px;}
.ye9{bottom:784.019686px;}
.y180{bottom:784.199686px;}
.y14b{bottom:784.379686px;}
.y5d{bottom:786.899685px;}
.yb9{bottom:787.259685px;}
.y176{bottom:789.419684px;}
.y171{bottom:790.679684px;}
.y229{bottom:792.119683px;}
.y16f{bottom:793.379683px;}
.y77{bottom:795.359682px;}
.y9a{bottom:795.899682px;}
.y1b4{bottom:798.419681px;}
.y43{bottom:800.219680px;}
.y1f{bottom:804.539678px;}
.y14a{bottom:806.339677px;}
.ye5{bottom:806.699677px;}
.yb8{bottom:809.219676px;}
.y1ec{bottom:810.299676px;}
.y250{bottom:811.919675px;}
.y19e{bottom:816.239674px;}
.y76{bottom:817.319673px;}
.y101{bottom:820.019672px;}
.y1b3{bottom:820.199672px;}
.y228{bottom:827.939669px;}
.y149{bottom:828.299669px;}
.ye4{bottom:828.659669px;}
.y5c{bottom:830.099668px;}
.yb{bottom:831.899667px;}
.y23d{bottom:833.339667px;}
.y42{bottom:835.859666px;}
.y99{bottom:839.099664px;}
.y75{bottom:839.279664px;}
.y1b2{bottom:842.159663px;}
.y100{bottom:843.599663px;}
.y24f{bottom:847.739661px;}
.y17f{bottom:849.899660px;}
.y148{bottom:850.259660px;}
.ye3{bottom:850.619660px;}
.yb7{bottom:852.419659px;}
.y1eb{bottom:853.319659px;}
.y1e{bottom:856.019658px;}
.y19d{bottom:857.279657px;}
.y1c9{bottom:859.619656px;}
.y74{bottom:861.239656px;}
.y227{bottom:863.579655px;}
.yff{bottom:867.359653px;}
.y5b{bottom:868.079653px;}
.y23c{bottom:869.159652px;}
.y41{bottom:871.679651px;}
.y147{bottom:872.219651px;}
.y17e{bottom:872.399651px;}
.y1ea{bottom:875.099650px;}
.y11c{bottom:877.439649px;}
.y98{bottom:882.119647px;}
.y73{bottom:883.199647px;}
.y1c8{bottom:883.379647px;}
.y1b1{bottom:885.359646px;}
.yfd{bottom:886.260600px;}
.y23b{bottom:892.919643px;}
.ye2{bottom:893.819642px;}
.y146{bottom:894.179642px;}
.yb6{bottom:895.439642px;}
.y1e9{bottom:897.059641px;}
.y226{bottom:899.399640px;}
.y97{bottom:903.899638px;}
.y40{bottom:907.319637px;}
.y1d{bottom:907.499637px;}
.ye1{bottom:915.599634px;}
.y145{bottom:916.139634px;}
.y23a{bottom:916.499633px;}
.ye8{bottom:916.679633px;}
.ya{bottom:919.019632px;}
.y1b0{bottom:923.519631px;}
.y96{bottom:925.859630px;}
.yfb{bottom:927.480600px;}
.y3f{bottom:931.079628px;}
.y17d{bottom:937.379625px;}
.ye0{bottom:937.559625px;}
.y144{bottom:938.099625px;}
.yb5{bottom:938.279625px;}
.y1e8{bottom:940.259624px;}
.y225{bottom:940.439624px;}
.y5a{bottom:943.139623px;}
.y9{bottom:954.839618px;}
.ye6{bottom:954.840600px;}
.y17c{bottom:959.339616px;}
.ydf{bottom:959.519616px;}
.yb4{bottom:960.059616px;}
.y59{bottom:966.719613px;}
.y170{bottom:967.979613px;}
.y32{bottom:970.679612px;}
.y95{bottom:976.079610px;}
.y17a{bottom:976.440600px;}
.y195{bottom:978.779608px;}
.y179{bottom:981.299607px;}
.y239{bottom:981.479607px;}
.yb3{bottom:982.019607px;}
.ydd{bottom:982.379607px;}
.y261{bottom:983.099607px;}
.y1e7{bottom:983.279607px;}
.y8{bottom:990.479604px;}
.y194{bottom:1002.539599px;}
.y178{bottom:1003.259599px;}
.yb2{bottom:1003.979598px;}
.y31{bottom:1011.899595px;}
.ydb{bottom:1020.540600px;}
.yde{bottom:1025.219590px;}
.yb1{bottom:1026.119590px;}
.y7{bottom:1026.299589px;}
.y2{bottom:1047.719581px;}
.y1{bottom:1063.379575px;}
.h10{height:12.240000px;}
.h19{height:15.120000px;}
.h1c{height:16.560000px;}
.h14{height:18.180000px;}
.h1d{height:19.260000px;}
.he{height:20.880000px;}
.hb{height:21.780000px;}
.h18{height:21.960000px;}
.h2{height:39.783851px;}
.h13{height:43.340608px;}
.h1a{height:48.515606px;}
.h12{height:49.284472px;}
.h1b{height:51.271744px;}
.h1{height:54.628572px;}
.h3{height:59.378882px;}
.h9{height:62.327788px;}
.ha{height:66.691380px;}
.h11{height:70.664034px;}
.h1f{height:72.562471px;}
.h8{height:75.093720px;}
.hf{height:89.068324px;}
.hd{height:97.031211px;}
.h5{height:99.162734px;}
.h17{height:108.028082px;}
.h7{height:108.663355px;}
.hc{height:119.047452px;}
.h15{height:123.508076px;}
.h6{height:125.406512px;}
.h16{height:129.374948px;}
.h1e{height:150.721815px;}
.h4{height:237.515530px;}
.h0{height:1263.000000px;}
.w13{width:3.600000px;}
.w10{width:7.200000px;}
.wf{width:8.100000px;}
.w9{width:9.000000px;}
.wa{width:10.080000px;}
.w4{width:10.440000px;}
.w1{width:10.620000px;}
.w8{width:10.980000px;}
.we{width:12.420000px;}
.w2{width:28.980000px;}
.w6{width:54.540000px;}
.w5{width:55.080000px;}
.wd{width:60.480000px;}
.w12{width:88.020000px;}
.w3{width:114.660000px;}
.w7{width:154.620000px;}
.w14{width:185.940000px;}
.wb{width:203.400000px;}
.w11{width:253.260000px;}
.wc{width:272.880000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x22{left:57.239977px;}
.x2{left:127.620537px;}
.x24{left:129.239948px;}
.xe{left:136.079635px;}
.x47{left:144.539942px;}
.x6{left:154.619980px;}
.x33{left:159.479936px;}
.x9{left:161.281064px;}
.x29{left:163.079935px;}
.x3{left:173.519931px;}
.xa{left:181.619927px;}
.x34{left:186.479925px;}
.x26{left:188.279923px;}
.x28{left:190.080000px;}
.xb{left:208.619917px;}
.x30{left:216.899913px;}
.xc{left:235.619906px;}
.x31{left:250.379900px;}
.x3b{left:253.799898px;}
.x45{left:262.619895px;}
.x1d{left:272.159891px;}
.x17{left:276.120000px;}
.x18{left:287.100000px;}
.x1f{left:308.159877px;}
.x1e{left:335.339866px;}
.xf{left:348.300000px;}
.x8{left:370.619852px;}
.x43{left:373.499837px;}
.x11{left:377.280000px;}
.x3e{left:391.679897px;}
.x4{left:394.920362px;}
.x23{left:401.939839px;}
.x13{left:403.380000px;}
.x2a{left:404.999838px;}
.x20{left:408.060000px;}
.x48{left:414.539834px;}
.x2b{left:419.759832px;}
.x49{left:431.279827px;}
.x2c{left:436.679825px;}
.x2e{left:438.659825px;}
.x1b{left:443.160000px;}
.x3d{left:446.399821px;}
.x2f{left:454.319818px;}
.x37{left:462.060000px;}
.x3c{left:469.620000px;}
.x5{left:497.879801px;}
.x15{left:502.920000px;}
.x38{left:548.460000px;}
.x39{left:552.060000px;}
.x10{left:560.700000px;}
.x46{left:561.779775px;}
.x19{left:583.380000px;}
.x36{left:587.519765px;}
.x1a{left:593.460000px;}
.x14{left:615.240000px;}
.x2d{left:618.119753px;}
.x12{left:675.360000px;}
.x7{left:694.619495px;}
.x1c{left:701.099867px;}
.x4a{left:705.780402px;}
.x16{left:715.320000px;}
.x3a{left:738.000000px;}
.x25{left:742.680000px;}
.x32{left:754.560000px;}
.xd{left:765.359694px;}
.x21{left:782.279687px;}
.x27{left:795.779682px;}
.x40{left:805.140160px;}
.x3f{left:816.119674px;}
.x42{left:820.619678px;}
.x44{left:825.659670px;}
.x41{left:832.139667px;}
.x1{left:865.619654px;}
.x35{left:879.120001px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.479998pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017380pt;}
.ls8{letter-spacing:0.017387pt;}
.ls3{letter-spacing:0.022667pt;}
.ls0{letter-spacing:0.141178pt;}
.ls7{letter-spacing:0.147680pt;}
.lsb{letter-spacing:0.211258pt;}
.ls5{letter-spacing:0.264687pt;}
.lsa{letter-spacing:29.595947pt;}
.ls4{letter-spacing:39.841991pt;}
.ls9{letter-spacing:48.807267pt;}
.ls2{letter-spacing:174.447397pt;}
.ws7{word-spacing:-34.047986pt;}
.ws6{word-spacing:-30.085108pt;}
.ws8{word-spacing:-28.430069pt;}
.ws4{word-spacing:-27.770869pt;}
.ws5{word-spacing:-25.535990pt;}
.wsc{word-spacing:-15.999994pt;}
.wsb{word-spacing:-14.675252pt;}
.ws0{word-spacing:-14.463994pt;}
.ws9{word-spacing:-13.493336pt;}
.ws2{word-spacing:-13.279995pt;}
.wsa{word-spacing:-12.005115pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:285.603766pt;}
._d{margin-left:-9.518116pt;}
._9{margin-left:-2.829056pt;}
._0{margin-left:-1.166439pt;}
._1{width:0.907731pt;}
._b{width:1.986634pt;}
._a{width:2.948030pt;}
._c{width:3.976793pt;}
._13{width:5.484994pt;}
._8{width:7.647161pt;}
._7{width:8.907916pt;}
._12{width:10.689429pt;}
._11{width:11.616497pt;}
._14{width:32.329098pt;}
._10{width:54.857133pt;}
._5{width:55.864651pt;}
._15{width:80.012750pt;}
._f{width:101.605836pt;}
._e{width:102.831426pt;}
._2{width:145.550402pt;}
._3{width:174.442810pt;}
._4{width:294.193162pt;}
._6{width:372.657573pt;}
.fs1{font-size:42.879983pt;}
.fsb{font-size:47.999981pt;}
.fsc{font-size:50.726827pt;}
.fs6{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs8{font-size:95.999962pt;}
.fs4{font-size:106.879957pt;}
.fs5{font-size:117.119953pt;}
.fs7{font-size:122.879951pt;}
.fsa{font-size:127.999949pt;}
.fs9{font-size:133.119947pt;}
.fsd{font-size:149.119940pt;}
.fs3{font-size:255.999898pt;}
.y11f{bottom:-3.680716pt;}
.y120{bottom:-3.520716pt;}
.y0{bottom:0.000000pt;}
.y1c1{bottom:2.559313pt;}
.y1c7{bottom:2.719324pt;}
.y143{bottom:3.519245pt;}
.y1c3{bottom:3.839313pt;}
.y6{bottom:4.266932pt;}
.ydc{bottom:4.319102pt;}
.y17b{bottom:4.319118pt;}
.ye7{bottom:4.319125pt;}
.yfc{bottom:4.319135pt;}
.yfe{bottom:4.319150pt;}
.yeb{bottom:4.319188pt;}
.yd4{bottom:4.319375pt;}
.y16b{bottom:4.319385pt;}
.yda{bottom:4.319733pt;}
.y5{bottom:20.906925pt;}
.y3{bottom:35.146653pt;}
.y4{bottom:35.146919pt;}
.y30{bottom:101.386626pt;}
.y163{bottom:102.666626pt;}
.y20b{bottom:102.826626pt;}
.y58{bottom:103.306625pt;}
.y224{bottom:103.466892pt;}
.y72{bottom:107.466890pt;}
.y12d{bottom:109.546623pt;}
.yb0{bottom:109.866623pt;}
.y260{bottom:112.266888pt;}
.y204{bottom:113.066888pt;}
.y1dd{bottom:114.346621pt;}
.y94{bottom:116.106620pt;}
.y193{bottom:117.546620pt;}
.y24e{bottom:121.546885pt;}
.y223{bottom:122.826618pt;}
.y20a{bottom:123.946617pt;}
.yfa{bottom:125.546616pt;}
.y217{bottom:126.346616pt;}
.y1bf{bottom:127.626616pt;}
.y16e{bottom:127.946882pt;}
.yaf{bottom:129.386615pt;}
.yd9{bottom:129.386880pt;}
.y1c{bottom:129.706615pt;}
.y3e{bottom:130.826881pt;}
.y25f{bottom:131.946881pt;}
.y2f{bottom:133.226613pt;}
.y269{bottom:133.386613pt;}
.yd8{bottom:133.546613pt;}
.y203{bottom:134.026613pt;}
.y162{bottom:134.506613pt;}
.y57{bottom:134.986613pt;}
.y93{bottom:135.466612pt;}
.y13f{bottom:138.186611pt;}
.y192{bottom:138.666611pt;}
.y71{bottom:139.146611pt;}
.y222{bottom:142.346610pt;}
.y24d{bottom:142.666610pt;}
.y209{bottom:145.066609pt;}
.y16d{bottom:147.466608pt;}
.yae{bottom:148.906607pt;}
.y19c{bottom:149.706607pt;}
.y25e{bottom:151.466606pt;}
.y3d{bottom:151.946606pt;}
.y1dc{bottom:152.586606pt;}
.yd6{bottom:153.706605pt;}
.y92{bottom:154.986605pt;}
.y202{bottom:155.146605pt;}
.y12c{bottom:158.986603pt;}
.y1be{bottom:159.306603pt;}
.y191{bottom:159.786603pt;}
.y1b{bottom:161.546602pt;}
.y216{bottom:164.586601pt;}
.y2e{bottom:164.906601pt;}
.y161{bottom:166.186600pt;}
.y56{bottom:166.666600pt;}
.y16c{bottom:166.986600pt;}
.yad{bottom:168.426599pt;}
.y19b{bottom:170.666598pt;}
.y70{bottom:170.986598pt;}
.y268{bottom:171.626598pt;}
.y1e6{bottom:173.226597pt;}
.y24c{bottom:174.346597pt;}
.y91{bottom:174.506597pt;}
.yf9{bottom:174.826597pt;}
.y13e{bottom:176.426596pt;}
.y208{bottom:176.746596pt;}
.y190{bottom:180.746594pt;}
.y3c{bottom:183.626593pt;}
.y215{bottom:183.946593pt;}
.y1af{bottom:186.666592pt;}
.y1db{bottom:190.666590pt;}
.y1bd{bottom:190.986590pt;}
.y19a{bottom:191.786590pt;}
.yd7{bottom:191.946590pt;}
.yd5{bottom:192.106590pt;}
.y1a{bottom:193.226589pt;}
.y90{bottom:194.026589pt;}
.y238{bottom:196.266588pt;}
.y2d{bottom:196.586588pt;}
.y110{bottom:196.746588pt;}
.y55{bottom:198.506587pt;}
.y16a{bottom:201.067200pt;}
.y18f{bottom:201.866586pt;}
.y6f{bottom:202.666586pt;}
.y214{bottom:203.466585pt;}
.y160{bottom:204.426585pt;}
.y3b{bottom:204.746585pt;}
.yac{bottom:206.826584pt;}
.y12b{bottom:208.266583pt;}
.y207{bottom:208.426583pt;}
.y25d{bottom:209.226583pt;}
.y267{bottom:209.866583pt;}
.y1e5{bottom:211.466582pt;}
.y8f{bottom:213.546581pt;}
.y13d{bottom:214.666581pt;}
.y10f{bottom:217.866580pt;}
.y221{bottom:218.826579pt;}
.y54{bottom:219.626579pt;}
.y1bc{bottom:222.826578pt;}
.y199{bottom:223.626577pt;}
.y15f{bottom:223.786577pt;}
.yf8{bottom:224.106577pt;}
.y19{bottom:225.066577pt;}
.y169{bottom:225.386577pt;}
.y3a{bottom:225.866576pt;}
.yd3{bottom:226.027200pt;}
.y1ae{bottom:226.346576pt;}
.y237{bottom:227.946575pt;}
.y2c{bottom:228.426575pt;}
.y25c{bottom:228.586575pt;}
.y1da{bottom:228.906575pt;}
.yd2{bottom:230.186575pt;}
.y201{bottom:233.066573pt;}
.y18e{bottom:233.546573pt;}
.y8e{bottom:233.866573pt;}
.y13c{bottom:234.026573pt;}
.y6e{bottom:234.506573pt;}
.y220{bottom:238.346571pt;}
.y10e{bottom:238.826571pt;}
.y206{bottom:240.266571pt;}
.y213{bottom:241.866570pt;}
.y15e{bottom:243.306569pt;}
.y266{bottom:243.626569pt;}
.yab{bottom:244.906569pt;}
.y39{bottom:246.826568pt;}
.y1ad{bottom:247.466568pt;}
.y1d9{bottom:248.266567pt;}
.y1e4{bottom:249.706567pt;}
.y53{bottom:251.306566pt;}
.y200{bottom:252.586566pt;}
.y8d{bottom:253.546565pt;}
.y1bb{bottom:254.506565pt;}
.y198{bottom:255.306565pt;}
.y18{bottom:256.746564pt;}
.y12a{bottom:257.546564pt;}
.y24b{bottom:259.306563pt;}
.y236{bottom:259.786563pt;}
.y2b{bottom:260.106563pt;}
.y212{bottom:261.226562pt;}
.y1e1{bottom:261.386562pt;}
.yd1{bottom:262.666562pt;}
.yaa{bottom:264.426561pt;}
.y18d{bottom:265.386561pt;}
.y6d{bottom:266.186560pt;}
.y25b{bottom:266.986560pt;}
.y1d8{bottom:267.786560pt;}
.y1ac{bottom:268.586559pt;}
.y10d{bottom:270.666558pt;}
.y205{bottom:271.946558pt;}
.y1ff{bottom:272.106558pt;}
.y13b{bottom:272.426558pt;}
.yf7{bottom:273.386557pt;}
.y8c{bottom:273.866557pt;}
.y21f{bottom:276.586556pt;}
.y24a{bottom:276.746556pt;}
.y247{bottom:277.546556pt;}
.y38{bottom:278.666555pt;}
.y15d{bottom:281.706554pt;}
.y52{bottom:282.986553pt;}
.y1e3{bottom:283.466553pt;}
.y1ba{bottom:286.346552pt;}
.y197{bottom:286.986552pt;}
.y1f1{bottom:287.786552pt;}
.y17{bottom:288.426551pt;}
.y235{bottom:291.466550pt;}
.y1fe{bottom:291.626550pt;}
.y2a{bottom:291.946550pt;}
.y8b{bottom:293.386549pt;}
.yc9{bottom:294.026549pt;}
.y249{bottom:294.346549pt;}
.yd0{bottom:294.506549pt;}
.y168{bottom:297.066548pt;}
.y6c{bottom:297.866548pt;}
.y1e0{bottom:299.466547pt;}
.y129{bottom:302.026546pt;}
.ya9{bottom:302.666546pt;}
.y51{bottom:304.106545pt;}
.y1d7{bottom:306.186544pt;}
.y1ab{bottom:306.826544pt;}
.y10c{bottom:308.906543pt;}
.y246{bottom:309.226543pt;}
.y37{bottom:310.346543pt;}
.y11b{bottom:310.506542pt;}
.y1fd{bottom:311.306542pt;}
.y8a{bottom:312.906542pt;}
.yc8{bottom:313.546541pt;}
.y196{bottom:314.506541pt;}
.y21e{bottom:314.826541pt;}
.y1b9{bottom:318.026539pt;}
.y18c{bottom:318.186539pt;}
.y265{bottom:318.666539pt;}
.y211{bottom:318.986539pt;}
.y248{bottom:319.466539pt;}
.y15c{bottom:319.946539pt;}
.y16{bottom:320.266539pt;}
.yf6{bottom:322.826538pt;}
.y234{bottom:323.306537pt;}
.y29{bottom:323.626537pt;}
.y25a{bottom:324.746537pt;}
.y1d6{bottom:325.546536pt;}
.y1f0{bottom:326.026536pt;}
.ycf{bottom:326.186536pt;}
.y10b{bottom:328.266535pt;}
.y167{bottom:328.746535pt;}
.y6b{bottom:329.706535pt;}
.y13a{bottom:329.866535pt;}
.y245{bottom:330.346535pt;}
.y1fc{bottom:330.826534pt;}
.y89{bottom:332.426534pt;}
.y1df{bottom:333.386533pt;}
.y128{bottom:333.866533pt;}
.y21d{bottom:334.186533pt;}
.y50{bottom:335.946532pt;}
.y15b{bottom:339.306531pt;}
.ya8{bottom:340.906530pt;}
.y36{bottom:342.026530pt;}
.y11a{bottom:342.186530pt;}
.y259{bottom:344.106529pt;}
.y1d5{bottom:345.066529pt;}
.y1aa{bottom:345.706528pt;}
.y10a{bottom:347.786528pt;}
.y139{bottom:349.546527pt;}
.y1b8{bottom:349.706527pt;}
.y18b{bottom:349.866527pt;}
.y1fb{bottom:350.346527pt;}
.yc7{bottom:351.786526pt;}
.y15{bottom:351.946526pt;}
.y1c6{bottom:353.067200pt;}
.y233{bottom:354.986525pt;}
.y28{bottom:355.306525pt;}
.y1c5{bottom:355.786524pt;}
.y264{bottom:356.906524pt;}
.y210{bottom:357.226524pt;}
.yce{bottom:357.866524pt;}
.y15a{bottom:358.826523pt;}
.y166{bottom:360.426522pt;}
.y6a{bottom:361.386522pt;}
.y244{bottom:362.026522pt;}
.y35{bottom:363.146521pt;}
.y1d4{bottom:364.586521pt;}
.y127{bottom:365.546520pt;}
.y4f{bottom:367.626520pt;}
.y138{bottom:369.066519pt;}
.y1c4{bottom:369.386519pt;}
.y1fa{bottom:369.866519pt;}
.y88{bottom:371.466518pt;}
.yf5{bottom:372.106518pt;}
.y21c{bottom:372.586518pt;}
.y119{bottom:373.866517pt;}
.y20f{bottom:376.586516pt;}
.ya7{bottom:379.146515pt;}
.y1c2{bottom:379.147200pt;}
.y1c0{bottom:380.427200pt;}
.y1b7{bottom:381.546514pt;}
.y18a{bottom:381.706514pt;}
.y69{bottom:382.506514pt;}
.y14{bottom:383.786513pt;}
.y1a9{bottom:383.946513pt;}
.y126{bottom:386.666512pt;}
.y27{bottom:387.146512pt;}
.y109{bottom:387.626512pt;}
.y137{bottom:388.586511pt;}
.y4e{bottom:388.746511pt;}
.y1f9{bottom:389.386511pt;}
.y243{bottom:389.546511pt;}
.ycd{bottom:389.706511pt;}
.yc6{bottom:390.026511pt;}
.y87{bottom:390.986510pt;}
.y21b{bottom:391.946510pt;}
.y165{bottom:392.266510pt;}
.y34{bottom:394.986509pt;}
.ya6{bottom:398.506507pt;}
.y258{bottom:401.866506pt;}
.y1a8{bottom:403.466505pt;}
.y1d3{bottom:404.586505pt;}
.y118{bottom:405.706504pt;}
.y125{bottom:407.786504pt;}
.y1f8{bottom:408.906503pt;}
.yc5{bottom:409.386503pt;}
.y86{bottom:410.506502pt;}
.ycc{bottom:410.826502pt;}
.y1b6{bottom:413.226501pt;}
.y189{bottom:413.386501pt;}
.y68{bottom:414.186501pt;}
.y20e{bottom:414.986501pt;}
.y13{bottom:415.466500pt;}
.y232{bottom:418.506499pt;}
.y26{bottom:418.826499pt;}
.y108{bottom:419.466499pt;}
.y4d{bottom:420.426498pt;}
.yf4{bottom:421.386498pt;}
.y33{bottom:422.346498pt;}
.y159{bottom:423.946497pt;}
.y136{bottom:426.826496pt;}
.y1f7{bottom:428.426495pt;}
.yc4{bottom:428.906495pt;}
.y85{bottom:430.026495pt;}
.y21a{bottom:430.346495pt;}
.y263{bottom:433.226493pt;}
.y188{bottom:434.506493pt;}
.y1d2{bottom:436.266492pt;}
.ya5{bottom:436.906492pt;}
.y117{bottom:437.386492pt;}
.y124{bottom:439.466491pt;}
.y107{bottom:440.426490pt;}
.y1b5{bottom:440.746490pt;}
.y4c{bottom:441.386490pt;}
.y1a7{bottom:441.706490pt;}
.ycb{bottom:442.506490pt;}
.y158{bottom:443.306489pt;}
.y67{bottom:446.026488pt;}
.y12{bottom:447.146488pt;}
.y84{bottom:449.546487pt;}
.y231{bottom:450.186487pt;}
.y25{bottom:450.666486pt;}
.y164{bottom:451.466486pt;}
.y20d{bottom:454.666485pt;}
.y187{bottom:455.626484pt;}
.ya4{bottom:456.266484pt;}
.y1d1{bottom:457.386484pt;}
.y242{bottom:458.026483pt;}
.y11e{bottom:459.147200pt;}
.y257{bottom:459.786483pt;}
.y106{bottom:461.546482pt;}
.y157{bottom:462.826482pt;}
.y135{bottom:466.666480pt;}
.y1f6{bottom:466.826480pt;}
.yc3{bottom:467.306480pt;}
.y83{bottom:469.226479pt;}
.y219{bottom:470.026479pt;}
.yf3{bottom:470.666478pt;}
.y175{bottom:473.706477pt;}
.ya3{bottom:475.786476pt;}
.y66{bottom:477.706476pt;}
.y11{bottom:478.986475pt;}
.y256{bottom:479.146475pt;}
.y1a6{bottom:479.946475pt;}
.y230{bottom:482.026474pt;}
.y156{bottom:482.346474pt;}
.y105{bottom:482.666474pt;}
.y11d{bottom:485.066473pt;}
.y24{bottom:486.186472pt;}
.y20c{bottom:486.506472pt;}
.y186{bottom:487.306472pt;}
.y1d0{bottom:489.066471pt;}
.y82{bottom:489.546471pt;}
.y241{bottom:489.866471pt;}
.y130{bottom:492.106470pt;}
.y218{bottom:497.386468pt;}
.y123{bottom:498.026467pt;}
.y134{bottom:498.346467pt;}
.y255{bottom:498.666467pt;}
.y65{bottom:498.826467pt;}
.y1a5{bottom:499.306467pt;}
.y4b{bottom:500.106467pt;}
.y1f5{bottom:500.586466pt;}
.y116{bottom:500.906466pt;}
.y155{bottom:501.866466pt;}
.yca{bottom:503.146465pt;}
.y262{bottom:504.106465pt;}
.yc2{bottom:505.546464pt;}
.y12f{bottom:508.426463pt;}
.y81{bottom:509.066463pt;}
.y10{bottom:510.666462pt;}
.y22f{bottom:513.706461pt;}
.ya2{bottom:514.026461pt;}
.y104{bottom:514.346461pt;}
.y185{bottom:518.986459pt;}
.y64{bottom:519.946459pt;}
.y1cf{bottom:520.906458pt;}
.y154{bottom:521.386458pt;}
.y240{bottom:521.546458pt;}
.yf2{bottom:521.706458pt;}
.y12e{bottom:524.746457pt;}
.y174{bottom:527.946455pt;}
.y80{bottom:529.386455pt;}
.y122{bottom:529.706455pt;}
.y133{bottom:530.186455pt;}
.y4a{bottom:531.786454pt;}
.y23{bottom:531.946454pt;}
.y115{bottom:532.746454pt;}
.ya1{bottom:533.386453pt;}
.y1a4{bottom:537.706452pt;}
.y153{bottom:540.906450pt;}
.yf1{bottom:541.066450pt;}
.yf{bottom:542.506450pt;}
.y254{bottom:543.306449pt;}
.yc1{bottom:543.626449pt;}
.y22e{bottom:545.386449pt;}
.y103{bottom:546.186448pt;}
.y7f{bottom:548.906447pt;}
.y23f{bottom:549.066447pt;}
.y63{bottom:551.626446pt;}
.y142{bottom:551.787200pt;}
.y1ce{bottom:552.586446pt;}
.y49{bottom:552.906446pt;}
.ya0{bottom:553.066445pt;}
.y173{bottom:555.146445pt;}
.y141{bottom:555.306445pt;}
.y1a3{bottom:557.066444pt;}
.y121{bottom:557.226444pt;}
.y152{bottom:560.426442pt;}
.yf0{bottom:560.586442pt;}
.y132{bottom:561.866442pt;}
.yc0{bottom:562.986441pt;}
.y114{bottom:564.426441pt;}
.y1f4{bottom:565.706440pt;}
.y7e{bottom:568.426439pt;}
.y140{bottom:571.466438pt;}
.ye{bottom:574.186437pt;}
.y184{bottom:576.586436pt;}
.y22d{bottom:577.226436pt;}
.y22{bottom:577.706436pt;}
.y102{bottom:577.866436pt;}
.y151{bottom:579.946435pt;}
.y253{bottom:582.026434pt;}
.ybf{bottom:582.666434pt;}
.y62{bottom:583.306433pt;}
.y1cd{bottom:584.266433pt;}
.y48{bottom:584.586433pt;}
.y1f3{bottom:585.066433pt;}
.y7d{bottom:588.106431pt;}
.y131{bottom:589.226431pt;}
.y9f{bottom:591.306430pt;}
.y113{bottom:596.106428pt;}
.y150{bottom:599.466427pt;}
.yef{bottom:600.426426pt;}
.ybe{bottom:602.186426pt;}
.y47{bottom:605.706424pt;}
.yd{bottom:605.866424pt;}
.y7c{bottom:607.626424pt;}
.y22c{bottom:608.906423pt;}
.y9e{bottom:610.666422pt;}
.y1a2{bottom:614.986421pt;}
.y183{bottom:615.626420pt;}
.y1cc{bottom:616.106420pt;}
.y14f{bottom:618.986419pt;}
.yee{bottom:620.586418pt;}
.y61{bottom:621.546418pt;}
.ybd{bottom:621.706418pt;}
.y1f2{bottom:623.306417pt;}
.y21{bottom:623.466417pt;}
.y1ef{bottom:624.426417pt;}
.y252{bottom:626.506416pt;}
.y1e2{bottom:626.826416pt;}
.y7b{bottom:627.146416pt;}
.y112{bottom:627.946415pt;}
.y9d{bottom:630.186415pt;}
.y1a1{bottom:634.346413pt;}
.y182{bottom:636.746412pt;}
.y46{bottom:637.386412pt;}
.y14e{bottom:638.666411pt;}
.y22b{bottom:640.746410pt;}
.y60{bottom:640.906410pt;}
.ybc{bottom:641.226410pt;}
.y7a{bottom:647.466408pt;}
.y1cb{bottom:647.786408pt;}
.y1a0{bottom:653.866405pt;}
.yc{bottom:655.146405pt;}
.y111{bottom:655.306405pt;}
.y14d{bottom:658.186403pt;}
.y45{bottom:658.506403pt;}
.yec{bottom:658.666403pt;}
.yed{bottom:658.826403pt;}
.y5f{bottom:660.426402pt;}
.ybb{bottom:660.746402pt;}
.y1ee{bottom:662.666402pt;}
.y79{bottom:666.986400pt;}
.y9c{bottom:668.586399pt;}
.y20{bottom:669.386399pt;}
.y181{bottom:669.546399pt;}
.y172{bottom:670.186399pt;}
.y22a{bottom:672.426398pt;}
.y1de{bottom:672.586398pt;}
.y177{bottom:674.506397pt;}
.y14c{bottom:677.706396pt;}
.y1ca{bottom:679.626395pt;}
.y5e{bottom:679.946395pt;}
.yba{bottom:680.266395pt;}
.y1ed{bottom:682.026394pt;}
.y78{bottom:687.466392pt;}
.y9b{bottom:687.946391pt;}
.y251{bottom:690.026391pt;}
.y44{bottom:690.186391pt;}
.yea{bottom:692.747200pt;}
.y19f{bottom:693.706389pt;}
.y23e{bottom:696.266388pt;}
.ye9{bottom:696.906388pt;}
.y180{bottom:697.066388pt;}
.y14b{bottom:697.226388pt;}
.y5d{bottom:699.466387pt;}
.yb9{bottom:699.786387pt;}
.y176{bottom:701.706386pt;}
.y171{bottom:702.826386pt;}
.y229{bottom:704.106385pt;}
.y16f{bottom:705.226385pt;}
.y77{bottom:706.986384pt;}
.y9a{bottom:707.466384pt;}
.y1b4{bottom:709.706383pt;}
.y43{bottom:711.306382pt;}
.y1f{bottom:715.146381pt;}
.y14a{bottom:716.746380pt;}
.ye5{bottom:717.066380pt;}
.yb8{bottom:719.306379pt;}
.y1ec{bottom:720.266379pt;}
.y250{bottom:721.706378pt;}
.y19e{bottom:725.546376pt;}
.y76{bottom:726.506376pt;}
.y101{bottom:728.906375pt;}
.y1b3{bottom:729.066375pt;}
.y228{bottom:735.946372pt;}
.y149{bottom:736.266372pt;}
.ye4{bottom:736.586372pt;}
.y5c{bottom:737.866372pt;}
.yb{bottom:739.466371pt;}
.y23d{bottom:740.746370pt;}
.y42{bottom:742.986369pt;}
.y99{bottom:745.866368pt;}
.y75{bottom:746.026368pt;}
.y1b2{bottom:748.586367pt;}
.y100{bottom:749.866367pt;}
.y24f{bottom:753.546365pt;}
.y17f{bottom:755.466364pt;}
.y148{bottom:755.786364pt;}
.ye3{bottom:756.106364pt;}
.yb7{bottom:757.706364pt;}
.y1eb{bottom:758.506363pt;}
.y1e{bottom:760.906362pt;}
.y19d{bottom:762.026362pt;}
.y1c9{bottom:764.106361pt;}
.y74{bottom:765.546360pt;}
.y227{bottom:767.626360pt;}
.yff{bottom:770.986358pt;}
.y5b{bottom:771.626358pt;}
.y23c{bottom:772.586358pt;}
.y41{bottom:774.826357pt;}
.y147{bottom:775.306357pt;}
.y17e{bottom:775.466356pt;}
.y1ea{bottom:777.866356pt;}
.y11c{bottom:779.946355pt;}
.y98{bottom:784.106353pt;}
.y73{bottom:785.066353pt;}
.y1c8{bottom:785.226353pt;}
.y1b1{bottom:786.986352pt;}
.yfd{bottom:787.787200pt;}
.y23b{bottom:793.706349pt;}
.ye2{bottom:794.506349pt;}
.y146{bottom:794.826349pt;}
.yb6{bottom:795.946348pt;}
.y1e9{bottom:797.386348pt;}
.y226{bottom:799.466347pt;}
.y97{bottom:803.466345pt;}
.y40{bottom:806.506344pt;}
.y1d{bottom:806.666344pt;}
.ye1{bottom:813.866341pt;}
.y145{bottom:814.346341pt;}
.y23a{bottom:814.666341pt;}
.ye8{bottom:814.826341pt;}
.ya{bottom:816.906340pt;}
.y1b0{bottom:820.906338pt;}
.y96{bottom:822.986337pt;}
.yfb{bottom:824.427200pt;}
.y3f{bottom:827.626336pt;}
.y17d{bottom:833.226333pt;}
.ye0{bottom:833.386333pt;}
.y144{bottom:833.866333pt;}
.yb5{bottom:834.026333pt;}
.y1e8{bottom:835.786332pt;}
.y225{bottom:835.946332pt;}
.y5a{bottom:838.346331pt;}
.y9{bottom:848.746327pt;}
.ye6{bottom:848.747200pt;}
.y17c{bottom:852.746326pt;}
.ydf{bottom:852.906326pt;}
.yb4{bottom:853.386325pt;}
.y59{bottom:859.306323pt;}
.y170{bottom:860.426322pt;}
.y32{bottom:862.826322pt;}
.y95{bottom:867.626320pt;}
.y17a{bottom:867.947200pt;}
.y195{bottom:870.026319pt;}
.y179{bottom:872.266318pt;}
.y239{bottom:872.426318pt;}
.yb3{bottom:872.906318pt;}
.ydd{bottom:873.226317pt;}
.y261{bottom:873.866317pt;}
.y1e7{bottom:874.026317pt;}
.y8{bottom:880.426314pt;}
.y194{bottom:891.146310pt;}
.y178{bottom:891.786310pt;}
.yb2{bottom:892.426310pt;}
.y31{bottom:899.466307pt;}
.ydb{bottom:907.147200pt;}
.yde{bottom:911.306302pt;}
.yb1{bottom:912.106302pt;}
.y7{bottom:912.266302pt;}
.y2{bottom:931.306294pt;}
.y1{bottom:945.226289pt;}
.h10{height:10.880000pt;}
.h19{height:13.440000pt;}
.h1c{height:14.720000pt;}
.h14{height:16.160000pt;}
.h1d{height:17.120000pt;}
.he{height:18.560000pt;}
.hb{height:19.360000pt;}
.h18{height:19.520000pt;}
.h2{height:35.363423pt;}
.h13{height:38.524985pt;}
.h1a{height:43.124983pt;}
.h12{height:43.808420pt;}
.h1b{height:45.574883pt;}
.h1{height:48.558731pt;}
.h3{height:52.781229pt;}
.h9{height:55.402478pt;}
.ha{height:59.281226pt;}
.h11{height:62.812475pt;}
.h1f{height:64.499974pt;}
.h8{height:66.749973pt;}
.hf{height:79.171843pt;}
.hd{height:86.249966pt;}
.h5{height:88.144652pt;}
.h17{height:96.024962pt;}
.h7{height:96.589649pt;}
.hc{height:105.819958pt;}
.h15{height:109.784956pt;}
.h6{height:111.472455pt;}
.h16{height:114.999954pt;}
.h1e{height:133.974946pt;}
.h4{height:211.124916pt;}
.h0{height:1122.666667pt;}
.w13{width:3.200000pt;}
.w10{width:6.400000pt;}
.wf{width:7.200000pt;}
.w9{width:8.000000pt;}
.wa{width:8.960000pt;}
.w4{width:9.280000pt;}
.w1{width:9.440000pt;}
.w8{width:9.760000pt;}
.we{width:11.040000pt;}
.w2{width:25.760000pt;}
.w6{width:48.480000pt;}
.w5{width:48.960000pt;}
.wd{width:53.760000pt;}
.w12{width:78.240000pt;}
.w3{width:101.920000pt;}
.w7{width:137.440000pt;}
.w14{width:165.280000pt;}
.wb{width:180.800000pt;}
.w11{width:225.120000pt;}
.wc{width:242.560000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x22{left:50.879980pt;}
.x2{left:113.440477pt;}
.x24{left:114.879954pt;}
.xe{left:120.959676pt;}
.x47{left:128.479949pt;}
.x6{left:137.439982pt;}
.x33{left:141.759943pt;}
.x9{left:143.360946pt;}
.x29{left:144.959942pt;}
.x3{left:154.239938pt;}
.xa{left:161.439935pt;}
.x34{left:165.759934pt;}
.x26{left:167.359932pt;}
.x28{left:168.960000pt;}
.xb{left:185.439926pt;}
.x30{left:192.799923pt;}
.xc{left:209.439916pt;}
.x31{left:222.559911pt;}
.x3b{left:225.599910pt;}
.x45{left:233.439907pt;}
.x1d{left:241.919903pt;}
.x17{left:245.440000pt;}
.x18{left:255.200000pt;}
.x1f{left:273.919890pt;}
.x1e{left:298.079881pt;}
.xf{left:309.600000pt;}
.x8{left:329.439868pt;}
.x43{left:331.999855pt;}
.x11{left:335.360000pt;}
.x3e{left:348.159909pt;}
.x4{left:351.040322pt;}
.x23{left:357.279857pt;}
.x13{left:358.560000pt;}
.x2a{left:359.999856pt;}
.x20{left:362.720000pt;}
.x48{left:368.479853pt;}
.x2b{left:373.119851pt;}
.x49{left:383.359847pt;}
.x2c{left:388.159845pt;}
.x2e{left:389.919844pt;}
.x1b{left:393.920000pt;}
.x3d{left:396.799841pt;}
.x2f{left:403.839838pt;}
.x37{left:410.720000pt;}
.x3c{left:417.440000pt;}
.x5{left:442.559823pt;}
.x15{left:447.040000pt;}
.x38{left:487.520000pt;}
.x39{left:490.720000pt;}
.x10{left:498.400000pt;}
.x46{left:499.359800pt;}
.x19{left:518.560000pt;}
.x36{left:522.239791pt;}
.x1a{left:527.520000pt;}
.x14{left:546.880000pt;}
.x2d{left:549.439780pt;}
.x12{left:600.320000pt;}
.x7{left:617.439551pt;}
.x1c{left:623.199881pt;}
.x4a{left:627.360357pt;}
.x16{left:635.840000pt;}
.x3a{left:656.000000pt;}
.x25{left:660.160000pt;}
.x32{left:670.720000pt;}
.xd{left:680.319728pt;}
.x21{left:695.359722pt;}
.x27{left:707.359717pt;}
.x40{left:715.680142pt;}
.x3f{left:725.439710pt;}
.x42{left:729.439713pt;}
.x44{left:733.919706pt;}
.x41{left:739.679704pt;}
.x1{left:769.439692pt;}
.x35{left:781.440001pt;}
}




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