
    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_826ac75df57ce70bb52ff709.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5998478dcaee86c0a6862c4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.889160;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_a3544d8e20781bd0ab70aade.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_691dc14127ac454ad934a9b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_9790f2ede01530eabf107728.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_c989d7447545645073665960.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_f34612e25e086f6251738479.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_20b8db9271ccd25f0cfe11d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9477cd4c619954f7a8df424e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ee8f858cce854badf135bd6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755371;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_c441f9261cbb60edb001c216.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_58053db4266684b077ebe9f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ce7a5e8bc9709ea8e7010a98.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.883301;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:ffe;src:url('chunks/assets/font_6f55ef9d3e8f0f37e15ac4bd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.765625;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:fff;src:url('chunks/assets/font_d1df01d4c26ae02e6923c9db.woff2')format("woff");}.fff{font-family:fff;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0da77b6596e3ed46baa04d3a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439999px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003793px;}
.ls5{letter-spacing:0.078482px;}
.ls6{letter-spacing:0.110882px;}
.ls9{letter-spacing:0.113882px;}
.lsa{letter-spacing:0.163327px;}
.ls3{letter-spacing:0.215951px;}
.ls0{letter-spacing:0.285949px;}
.lsb{letter-spacing:0.365401px;}
.ls7{letter-spacing:0.368221px;}
.ls4{letter-spacing:27.089990px;}
.ls2{letter-spacing:55.981959px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-39.740744px;}
.ws7{word-spacing:-33.117287px;}
.ws0{word-spacing:-23.938040px;}
.ws1{word-spacing:-23.416709px;}
.ws2{word-spacing:-18.413211px;}
.ws8{word-spacing:-17.998493px;}
.wsa{word-spacing:-16.611889px;}
.wsb{word-spacing:-16.558643px;}
.ws5{word-spacing:-14.938749px;}
.ws4{word-spacing:-11.608308px;}
.ws6{word-spacing:-9.719186px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-3295.901792px;}
._2{margin-left:-3100.971035px;}
._3{margin-left:-2672.735814px;}
._9{margin-left:-1470.757916px;}
._4{margin-left:-522.586191px;}
._b{margin-left:-347.896694px;}
._5{margin-left:-284.125755px;}
._a{margin-left:-166.408794px;}
._7{margin-left:-22.493236px;}
._80{margin-left:-2.467188px;}
._d{margin-left:-1.374904px;}
._1{width:1.378084px;}
._6{width:2.609263px;}
._1a{width:3.625581px;}
._14{width:5.321703px;}
._13{width:7.181583px;}
._19{width:8.998133px;}
._e{width:10.567544px;}
._c{width:11.882331px;}
._f{width:13.007927px;}
._20{width:14.384760px;}
._1f{width:15.764528px;}
._1b{width:16.822512px;}
._18{width:18.383055px;}
._17{width:19.639667px;}
._1c{width:21.036280px;}
._25{width:22.835541px;}
._22{width:24.322584px;}
._26{width:25.663689px;}
._23{width:26.808136px;}
._11{width:28.311465px;}
._10{width:29.759040px;}
._27{width:31.998784px;}
._16{width:33.893183px;}
._15{width:35.146931px;}
._24{width:36.399564px;}
._82{width:46.300765px;}
._81{width:47.544475px;}
._12{width:48.669123px;}
._37{width:50.785764px;}
._4e{width:55.864310px;}
._51{width:61.044008px;}
._4a{width:62.051052px;}
._4d{width:65.171693px;}
._6b{width:66.706051px;}
._4b{width:69.505946px;}
._79{width:71.138851px;}
._44{width:72.655547px;}
._4c{width:74.799734px;}
._3f{width:76.498564px;}
._3e{width:78.434552px;}
._49{width:80.443227px;}
._45{width:81.526233px;}
._50{width:82.597867px;}
._42{width:84.675834px;}
._62{width:86.281931px;}
._41{width:87.565337px;}
._3c{width:89.732463px;}
._3d{width:92.627986px;}
._64{width:94.451941px;}
._46{width:97.193378px;}
._6a{width:99.467031px;}
._40{width:102.995322px;}
._3b{width:104.440074px;}
._58{width:105.694505px;}
._52{width:107.206379px;}
._59{width:108.447108px;}
._6d{width:109.806995px;}
._63{width:111.066625px;}
._43{width:112.132127px;}
._6c{width:114.405780px;}
._39{width:118.165210px;}
._3a{width:119.543294px;}
._21{width:121.033829px;}
._5c{width:122.170968px;}
._48{width:133.601216px;}
._1e{width:139.435913px;}
._7a{width:143.890076px;}
._7f{width:148.611715px;}
._5a{width:151.064739px;}
._5d{width:153.953755px;}
._69{width:158.877420px;}
._38{width:161.044547px;}
._73{width:164.113793px;}
._70{width:171.427833px;}
._47{width:175.486039px;}
._2b{width:181.831149px;}
._76{width:184.387896px;}
._53{width:189.440421px;}
._71{width:193.001902px;}
._66{width:195.172759px;}
._30{width:199.774928px;}
._65{width:202.076984px;}
._56{width:203.164034px;}
._78{width:204.610161px;}
._6e{width:212.764049px;}
._5b{width:215.575411px;}
._61{width:219.057481px;}
._28{width:225.968785px;}
._54{width:232.057861px;}
._77{width:233.498541px;}
._57{width:234.946981px;}
._7b{width:242.573182px;}
._1d{width:255.099345px;}
._2a{width:260.447911px;}
._2d{width:262.372081px;}
._72{width:269.571282px;}
._29{width:271.884348px;}
._2f{width:278.501118px;}
._60{width:284.203557px;}
._2e{width:289.828126px;}
._31{width:295.953425px;}
._55{width:310.067650px;}
._2c{width:314.012652px;}
._6f{width:337.945129px;}
._33{width:349.183616px;}
._4f{width:557.126354px;}
._36{width:569.954224px;}
._32{width:599.808748px;}
._35{width:675.227829px;}
._34{width:699.337589px;}
._5f{width:962.182361px;}
._7d{width:983.064521px;}
._75{width:990.636436px;}
._68{width:1034.034604px;}
._7e{width:1040.486255px;}
._67{width:1046.957454px;}
._7c{width:1082.892739px;}
._5e{width:1093.475852px;}
._74{width:1119.977366px;}
._0{width:1207.033017px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.876744px;}
.fs8{font-size:41.756503px;}
.fs4{font-size:48.235961px;}
.fs3{font-size:53.995478px;}
.fs7{font-size:59.754996px;}
.fs5{font-size:66.234574px;}
.fs0{font-size:71.993971px;}
.fs2{font-size:84.232766px;}
.fs6{font-size:89.992164px;}
.fs1{font-size:95.752162px;}
.y0{bottom:0.000000px;}
.y14b{bottom:3.600396px;}
.y37{bottom:3.958301px;}
.yff{bottom:3.959477px;}
.y3{bottom:4.319197px;}
.y102{bottom:4.319477px;}
.y31{bottom:6.839802px;}
.y2{bottom:53.260380px;}
.y1{bottom:57.579577px;}
.yc0{bottom:109.955206px;}
.y9d{bottom:109.955356px;}
.y76{bottom:109.955506px;}
.ye3{bottom:110.494906px;}
.y17d{bottom:113.197155px;}
.y2f{bottom:120.574602px;}
.y19a{bottom:122.553851px;}
.y12d{bottom:125.254000px;}
.ybf{bottom:127.233849px;}
.y9c{bottom:127.233999px;}
.y75{bottom:127.234149px;}
.y9b{bottom:134.073246px;}
.y1f2{bottom:134.428146px;}
.y1d8{bottom:135.868296px;}
.ye2{bottom:138.932794px;}
.y224{bottom:139.111594px;}
.yf9{bottom:141.451293px;}
.y17c{bottom:141.635043px;}
.ybe{bottom:144.512492px;}
.y74{bottom:144.512792px;}
.y157{bottom:144.872042px;}
.y2a{bottom:147.212341px;}
.y1b8{bottom:149.551290px;}
.y199{bottom:151.170990px;}
.ybd{bottom:151.351439px;}
.y12c{bottom:154.950988px;}
.ybc{bottom:161.791135px;}
.y73{bottom:161.791435px;}
.y1f1{bottom:162.866035px;}
.y208{bottom:162.867535px;}
.y1d7{bottom:164.306184px;}
.ydf{bottom:167.367233px;}
.ye1{bottom:167.369933px;}
.y223{bottom:167.548733px;}
.y72{bottom:168.629933px;}
.yf8{bottom:169.888432px;}
.y17b{bottom:170.072182px;}
.y156{bottom:173.309931px;}
.ye0{bottom:174.929930px;}
.y29{bottom:175.649480px;}
.y1b7{bottom:177.808429px;}
.y71{bottom:179.069778px;}
.y12b{bottom:184.468126px;}
.y1f0{bottom:191.303923px;}
.y207{bottom:191.485423px;}
.y155{bottom:192.208723px;}
.y1d6{bottom:192.743323px;}
.y198{bottom:194.547522px;}
.yde{bottom:195.985122px;}
.y222{bottom:195.986622px;}
.y70{bottom:196.348421px;}
.yf7{bottom:198.326321px;}
.y17a{bottom:198.690071px;}
.y6f{bottom:203.186919px;}
.y28{bottom:204.087368px;}
.y154{bottom:209.306616px;}
.y12a{bottom:212.906015px;}
.y6e{bottom:213.446615px;}
.ybb{bottom:213.446765px;}
.y1ef{bottom:219.741812px;}
.y206{bottom:219.923312px;}
.y1d5{bottom:221.361211px;}
.y1b6{bottom:221.544961px;}
.y197{bottom:222.805411px;}
.ydd{bottom:224.423010px;}
.y221{bottom:224.424510px;}
.y153{bottom:226.585259px;}
.yf6{bottom:226.764209px;}
.y179{bottom:227.127209px;}
.y2e{bottom:230.005408px;}
.y2d{bottom:230.006008px;}
.y6d{bottom:230.725258px;}
.yba{bottom:230.725408px;}
.y27{bottom:232.525257px;}
.yb9{bottom:237.565405px;}
.y129{bottom:241.343903px;}
.y152{bottom:243.863902px;}
.y6c{bottom:248.003901px;}
.y1ee{bottom:248.179701px;}
.yb8{bottom:248.723901px;}
.y1d4{bottom:249.799100px;}
.y1b5{bottom:249.802850px;}
.y196{bottom:251.243300px;}
.ydc{bottom:252.860899px;}
.y220{bottom:252.862399px;}
.y6b{bottom:254.843898px;}
.yf5{bottom:255.202098px;}
.y178{bottom:255.564348px;}
.y2b{bottom:259.523146px;}
.y2c{bottom:259.523896px;}
.y26{bottom:260.962396px;}
.y205{bottom:263.119845px;}
.y6a{bottom:265.282094px;}
.y128{bottom:269.781792px;}
.y151{bottom:270.682392px;}
.y1ed{bottom:276.617589px;}
.y1d3{bottom:278.236989px;}
.y1b4{bottom:278.239989px;}
.y195{bottom:279.860438px;}
.ydb{bottom:281.298787px;}
.y21f{bottom:281.300287px;}
.y69{bottom:282.560737px;}
.yf4{bottom:283.639987px;}
.y177{bottom:284.002236px;}
.y25{bottom:289.400284px;}
.y150{bottom:297.319381px;}
.y127{bottom:298.219681px;}
.y68{bottom:299.659380px;}
.y1ec{bottom:305.055478px;}
.y67{bottom:306.499377px;}
.y1d2{bottom:306.674877px;}
.y204{bottom:306.676377px;}
.y1b3{bottom:306.677877px;}
.yda{bottom:309.736676px;}
.y21e{bottom:309.738176px;}
.yb7{bottom:309.738476px;}
.yf3{bottom:312.077875px;}
.y176{bottom:312.439375px;}
.y66{bottom:316.937723px;}
.y9a{bottom:316.938923px;}
.y24{bottom:317.658173px;}
.y194{bottom:323.416971px;}
.y14f{bottom:323.957870px;}
.y126{bottom:326.657569px;}
.y23f{bottom:327.197869px;}
.y1eb{bottom:333.493367px;}
.y65{bottom:334.216366px;}
.y99{bottom:334.217566px;}
.y1d1{bottom:335.112766px;}
.y1b2{bottom:335.295766px;}
.yd9{bottom:338.174565px;}
.yb6{bottom:338.175615px;}
.y21d{bottom:338.176065px;}
.yf2{bottom:339.616364px;}
.y175{bottom:340.876514px;}
.y64{bottom:341.056364px;}
.y23{bottom:346.095312px;}
.y203{bottom:350.232910px;}
.y14e{bottom:350.594860px;}
.y98{bottom:351.496209px;}
.y193{bottom:351.854859px;}
.y63{bottom:352.214859px;}
.y125{bottom:355.095458px;}
.y23e{bottom:356.713957px;}
.y1ea{bottom:362.110505px;}
.y1d0{bottom:363.550655px;}
.y1b1{bottom:363.552905px;}
.yd8{bottom:366.612453px;}
.yb5{bottom:366.613503px;}
.y21c{bottom:366.613953px;}
.yf1{bottom:368.053353px;}
.y97{bottom:368.774852px;}
.y174{bottom:369.313652px;}
.y22{bottom:374.533200px;}
.y96{bottom:375.613350px;}
.y14d{bottom:377.233349px;}
.y62{bottom:379.757548px;}
.y192{bottom:380.111998px;}
.y124{bottom:383.533347px;}
.y23d{bottom:385.151846px;}
.y95{bottom:386.771845px;}
.y1e9{bottom:390.548394px;}
.y1cf{bottom:391.988543px;}
.y1b0{bottom:391.990793px;}
.y202{bottom:393.609443px;}
.yd7{bottom:395.050342px;}
.y21b{bottom:395.051092px;}
.yb4{bottom:395.051392px;}
.y173{bottom:397.750791px;}
.y107{bottom:399.371840px;}
.y123{bottom:402.430639px;}
.y21{bottom:402.971089px;}
.y14c{bottom:403.870338px;}
.y61{bottom:408.194687px;}
.y191{bottom:408.549887px;}
.y23c{bottom:413.589735px;}
.y1e8{bottom:418.986282px;}
.y122{bottom:419.709282px;}
.y1ce{bottom:420.426432px;}
.y1af{bottom:420.607932px;}
.yd6{bottom:423.488231px;}
.y21a{bottom:423.488981px;}
.y94{bottom:423.489281px;}
.y172{bottom:426.188680px;}
.y106{bottom:430.508828px;}
.y108{bottom:430.868828px;}
.y20{bottom:431.228228px;}
.y60{bottom:436.631825px;}
.y201{bottom:436.985225px;}
.y190{bottom:436.987025px;}
.y121{bottom:436.987175px;}
.y23b{bottom:442.027623px;}
.y1e7{bottom:447.424171px;}
.y1cd{bottom:448.864320px;}
.y1ae{bottom:449.045820px;}
.yd5{bottom:452.106119px;}
.y219{bottom:452.106869px;}
.y93{bottom:452.107169px;}
.y120{bottom:454.265818px;}
.y171{bottom:454.805818px;}
.y149{bottom:456.965817px;}
.y1f{bottom:459.666116px;}
.y5f{bottom:465.068964px;}
.y23a{bottom:470.465512px;}
.y1e6{bottom:475.862060px;}
.y1cc{bottom:477.482209px;}
.y105{bottom:477.664309px;}
.yd4{bottom:480.543258px;}
.y92{bottom:480.544308px;}
.y90{bottom:480.544608px;}
.y218{bottom:480.544758px;}
.yb3{bottom:480.545058px;}
.y200{bottom:480.721758px;}
.y18f{bottom:480.723558px;}
.y11f{bottom:481.084308px;}
.y148{bottom:482.884307px;}
.y170{bottom:483.243707px;}
.y91{bottom:488.102805px;}
.y1e{bottom:488.103255px;}
.y1ad{bottom:492.602353px;}
.y5e{bottom:493.506103px;}
.y239{bottom:499.982650px;}
.y1e5{bottom:504.299948px;}
.y14a{bottom:505.202400px;}
.y1cb{bottom:505.920098px;}
.y11e{bottom:507.722797px;}
.y147{bottom:508.802796px;}
.y1ff{bottom:508.979646px;}
.yd3{bottom:508.981146px;}
.y18e{bottom:508.981446px;}
.y8f{bottom:508.982496px;}
.y217{bottom:508.982646px;}
.yb2{bottom:508.982946px;}
.y104{bottom:509.702796px;}
.y16f{bottom:511.681595px;}
.y1d{bottom:516.541143px;}
.y1ac{bottom:520.860242px;}
.y5d{bottom:521.943241px;}
.y101{bottom:526.981289px;}
.y238{bottom:528.600539px;}
.y1e4{bottom:532.737837px;}
.y1ca{bottom:534.357986px;}
.y11d{bottom:534.359786px;}
.y146{bottom:535.439786px;}
.y1fe{bottom:537.417535px;}
.yd2{bottom:537.419035px;}
.y18d{bottom:537.419335px;}
.y8e{bottom:537.419635px;}
.y216{bottom:537.420535px;}
.yb1{bottom:537.420835px;}
.y16e{bottom:540.298734px;}
.y103{bottom:540.839784px;}
.y1c{bottom:544.979032px;}
.y1ab{bottom:549.298130px;}
.y5c{bottom:550.381130px;}
.yfe{bottom:553.618800px;}
.yfd{bottom:557.578277px;}
.y100{bottom:557.938277px;}
.y237{bottom:558.117677px;}
.y11c{bottom:560.818276px;}
.y1e3{bottom:561.175726px;}
.y1c9{bottom:562.795875px;}
.y1fd{bottom:565.854674px;}
.y8d{bottom:565.856774px;}
.yd1{bottom:565.856924px;}
.y18c{bottom:565.857224px;}
.y215{bottom:565.858424px;}
.yb0{bottom:565.858724px;}
.y16d{bottom:568.556623px;}
.y1b{bottom:573.236171px;}
.y1aa{bottom:577.736019px;}
.y145{bottom:577.916619px;}
.y5b{bottom:578.818268px;}
.y236{bottom:586.555565px;}
.y11b{bottom:587.455265px;}
.yfc{bottom:588.715265px;}
.yfb{bottom:589.075264px;}
.y1c8{bottom:591.233764px;}
.y1fc{bottom:594.292562px;}
.yd0{bottom:594.294812px;}
.y18b{bottom:594.295112px;}
.y8c{bottom:594.295262px;}
.y214{bottom:594.296312px;}
.yaf{bottom:594.296612px;}
.y16c{bottom:596.993761px;}
.y1a{bottom:601.674059px;}
.y1e2{bottom:604.912258px;}
.y1a9{bottom:606.173908px;}
.y5a{bottom:607.255407px;}
.y144{bottom:607.433757px;}
.y11a{bottom:614.092254px;}
.y235{bottom:616.072704px;}
.y1c7{bottom:619.671652px;}
.y1fb{bottom:622.730451px;}
.y8a{bottom:622.732251px;}
.ycf{bottom:622.732701px;}
.y18a{bottom:622.733001px;}
.yae{bottom:622.733751px;}
.y213{bottom:622.734201px;}
.y16b{bottom:624.532250px;}
.y16a{bottom:624.532850px;}
.y19{bottom:630.111948px;}
.y8b{bottom:630.292248px;}
.y1a8{bottom:634.611796px;}
.y142{bottom:634.790746px;}
.y143{bottom:634.792246px;}
.y59{bottom:635.692546px;}
.yfa{bottom:636.952245px;}
.y119{bottom:640.730744px;}
.y234{bottom:644.510592px;}
.y1c6{bottom:648.108791px;}
.y1e1{bottom:648.288041px;}
.y169{bottom:650.450740px;}
.y1fa{bottom:651.168340px;}
.yce{bottom:651.170590px;}
.y89{bottom:651.170740px;}
.y189{bottom:651.170890px;}
.yad{bottom:651.171640px;}
.y212{bottom:651.172090px;}
.y18{bottom:658.549087px;}
.y141{bottom:660.708636px;}
.y1a7{bottom:663.228935px;}
.y58{bottom:664.129684px;}
.y118{bottom:667.369233px;}
.y233{bottom:674.207730px;}
.y168{bottom:676.188630px;}
.y1c5{bottom:676.546679px;}
.y1f9{bottom:679.606228px;}
.y88{bottom:679.607728px;}
.ycd{bottom:679.608478px;}
.y188{bottom:679.608778px;}
.yac{bottom:679.609528px;}
.y211{bottom:679.609978px;}
.y140{bottom:686.626525px;}
.y17{bottom:690.406224px;}
.y1e0{bottom:691.844573px;}
.y1a6{bottom:691.846073px;}
.y57{bottom:692.566823px;}
.y117{bottom:693.286223px;}
.y167{bottom:702.106519px;}
.y232{bottom:702.645619px;}
.y1c4{bottom:704.984568px;}
.y1f8{bottom:708.223367px;}
.yf0{bottom:708.224117px;}
.y87{bottom:708.224717px;}
.ycc{bottom:708.225617px;}
.y187{bottom:708.225917px;}
.y210{bottom:708.227117px;}
.yab{bottom:708.406667px;}
.y13f{bottom:712.544415px;}
.y16{bottom:713.444715px;}
.y116{bottom:719.204712px;}
.y1a5{bottom:720.283962px;}
.y54{bottom:721.004262px;}
.y56{bottom:721.004712px;}
.y166{bottom:728.024409px;}
.y55{bottom:728.563209px;}
.y15{bottom:730.003208px;}
.y231{bottom:731.083508px;}
.y1c3{bottom:733.601707px;}
.y1df{bottom:735.221106px;}
.y1f7{bottom:736.661255px;}
.yef{bottom:736.662005px;}
.ycb{bottom:736.663505px;}
.y86{bottom:736.663805px;}
.y20f{bottom:736.665005px;}
.yaa{bottom:736.843805px;}
.y13e{bottom:738.282305px;}
.y115{bottom:745.661702px;}
.y53{bottom:749.621400px;}
.y165{bottom:753.762298px;}
.y14{bottom:759.160196px;}
.y13{bottom:759.520196px;}
.y230{bottom:759.520646px;}
.y1c2{bottom:762.039595px;}
.y1a4{bottom:763.660495px;}
.y12{bottom:764.020194px;}
.y13d{bottom:764.200194px;}
.y1f6{bottom:765.099144px;}
.yee{bottom:765.099894px;}
.y83{bottom:765.100644px;}
.yca{bottom:765.101394px;}
.y85{bottom:765.101694px;}
.y20e{bottom:765.102144px;}
.ya9{bottom:765.103494px;}
.y186{bottom:765.281694px;}
.y84{bottom:772.660191px;}
.y114{bottom:774.640190px;}
.y52{bottom:778.059289px;}
.y1de{bottom:778.777638px;}
.y164{bottom:779.680188px;}
.y22f{bottom:789.038534px;}
.y13c{bottom:790.118684px;}
.y1c1{bottom:790.477484px;}
.y1a3{bottom:791.917633px;}
.y10{bottom:792.818683px;}
.y1f5{bottom:793.536283px;}
.y82{bottom:793.537783px;}
.yc9{bottom:793.538533px;}
.y185{bottom:793.538833px;}
.y20d{bottom:793.539283px;}
.ya8{bottom:793.540633px;}
.yed{bottom:793.717033px;}
.y11{bottom:798.038681px;}
.y113{bottom:804.336728px;}
.y163{bottom:805.597178px;}
.y51{bottom:806.497177px;}
.y4f{bottom:806.498677px;}
.y1dd{bottom:807.035527px;}
.y50{bottom:814.057174px;}
.y13b{bottom:814.957174px;}
.y22e{bottom:817.475673px;}
.y1c0{bottom:818.914622px;}
.y1a2{bottom:820.355522px;}
.yec{bottom:821.974921px;}
.y81{bottom:821.975671px;}
.yc8{bottom:821.976421px;}
.y184{bottom:821.976721px;}
.ya7{bottom:821.977771px;}
.y1f4{bottom:822.154171px;}
.ye{bottom:828.995668px;}
.y162{bottom:830.435668px;}
.y112{bottom:833.673867px;}
.yf{bottom:834.214166px;}
.y4e{bottom:834.935816px;}
.y139{bottom:839.614764px;}
.y22d{bottom:846.093562px;}
.y1bf{bottom:847.352511px;}
.y1a1{bottom:849.153410px;}
.y1f3{bottom:850.411310px;}
.y80{bottom:850.413560px;}
.y183{bottom:850.413860px;}
.yc7{bottom:850.414310px;}
.ya6{bottom:850.414910px;}
.y1dc{bottom:850.591310px;}
.yeb{bottom:850.592060px;}
.y161{bottom:855.272658px;}
.y111{bottom:862.111755px;}
.y138{bottom:863.012655px;}
.y13a{bottom:863.372655px;}
.y4d{bottom:863.372955px;}
.yd{bottom:869.131152px;}
.yc{bottom:869.491152px;}
.y22c{bottom:875.610700px;}
.y1be{bottom:875.790400px;}
.y160{bottom:878.491149px;}
.y1db{bottom:878.849198px;}
.yea{bottom:878.849948px;}
.y20c{bottom:878.850698px;}
.y7f{bottom:878.851448px;}
.y182{bottom:878.851748px;}
.ya5{bottom:878.852048px;}
.yc6{bottom:878.852198px;}
.y137{bottom:887.669645px;}
.y110{bottom:890.729644px;}
.y4c{bottom:891.810093px;}
.y1a0{bottom:892.529193px;}
.y15f{bottom:903.329639px;}
.y22b{bottom:904.048588px;}
.y1bd{bottom:904.228288px;}
.y1da{bottom:907.287087px;}
.ye9{bottom:907.287837px;}
.y20b{bottom:907.288587px;}
.ya4{bottom:907.289187px;}
.y7e{bottom:907.289337px;}
.yc5{bottom:907.290087px;}
.y181{bottom:907.467087px;}
.yb{bottom:909.988136px;}
.ya{bottom:910.348136px;}
.y136{bottom:911.068136px;}
.y4b{bottom:920.247232px;}
.y10f{bottom:920.608132px;}
.y19f{bottom:920.967082px;}
.y15e{bottom:927.986629px;}
.y22a{bottom:932.486477px;}
.y1bc{bottom:932.666177px;}
.y180{bottom:935.724226px;}
.ye8{bottom:935.724976px;}
.y20a{bottom:935.725726px;}
.ya3{bottom:935.726326px;}
.y7d{bottom:935.726476px;}
.yc4{bottom:935.727226px;}
.y135{bottom:935.906626px;}
.y4a{bottom:948.685121px;}
.y48{bottom:948.685871px;}
.y19e{bottom:949.224970px;}
.y10e{bottom:949.225120px;}
.y9{bottom:950.845120px;}
.y8{bottom:951.205120px;}
.y15d{bottom:952.825119px;}
.y49{bottom:956.245118px;}
.y134{bottom:960.563616px;}
.y229{bottom:962.003615px;}
.y17f{bottom:964.342114px;}
.ye7{bottom:964.342864px;}
.y209{bottom:964.343614px;}
.ya2{bottom:964.344214px;}
.y7c{bottom:964.344364px;}
.yc3{bottom:964.345114px;}
.y1bb{bottom:976.401959px;}
.y47{bottom:977.123009px;}
.y15c{bottom:977.662109px;}
.y10d{bottom:978.022109px;}
.y133{bottom:985.402106px;}
.y228{bottom:990.441504px;}
.y7{bottom:991.522103px;}
.y6{bottom:991.882103px;}
.y17e{bottom:992.780003px;}
.ye6{bottom:992.780753px;}
.y7b{bottom:992.781503px;}
.ya1{bottom:992.782103px;}
.yc2{bottom:992.782253px;}
.y1d9{bottom:992.960003px;}
.ya0{bottom:1000.340600px;}
.y15b{bottom:1002.500599px;}
.y46{bottom:1005.740898px;}
.y19d{bottom:1006.099998px;}
.y10c{bottom:1009.700596px;}
.y132{bottom:1010.239096px;}
.y227{bottom:1019.058642px;}
.y1ba{bottom:1019.778492px;}
.ye5{bottom:1021.217892px;}
.y7a{bottom:1021.218642px;}
.yc1{bottom:1021.219392px;}
.y15a{bottom:1027.157589px;}
.y5{bottom:1032.377587px;}
.y4{bottom:1032.737587px;}
.y45{bottom:1034.178036px;}
.y19c{bottom:1034.717886px;}
.y131{bottom:1034.899086px;}
.y10b{bottom:1041.557583px;}
.y226{bottom:1048.576531px;}
.ye4{bottom:1049.655780px;}
.y79{bottom:1049.656530px;}
.y159{bottom:1051.996079px;}
.y130{bottom:1059.736076px;}
.y39{bottom:1059.916076px;}
.y44{bottom:1062.615175px;}
.y1b9{bottom:1063.335025px;}
.y10a{bottom:1073.414571px;}
.y158{bottom:1076.834569px;}
.y225{bottom:1077.014419px;}
.y78{bottom:1078.093669px;}
.y19b{bottom:1078.273669px;}
.y12f{bottom:1084.574566px;}
.y43{bottom:1091.233064px;}
.y109{bottom:1105.451558px;}
.y9e{bottom:1106.531557px;}
.y77{bottom:1106.711557px;}
.y12e{bottom:1107.791557px;}
.y42{bottom:1109.231556px;}
.y9f{bottom:1114.091554px;}
.y3c{bottom:1115.170504px;}
.y41{bottom:1126.330649px;}
.y40{bottom:1145.408542px;}
.y3b{bottom:1155.487038px;}
.y3f{bottom:1161.606735px;}
.y35{bottom:1172.406131px;}
.y3e{bottom:1178.705379px;}
.y3a{bottom:1187.525525px;}
.y3d{bottom:1195.984022px;}
.y33{bottom:1198.323871px;}
.y34{bottom:1198.324021px;}
.y32{bottom:1218.662513px;}
.y38{bottom:1225.862510px;}
.y30{bottom:1237.381200px;}
.y36{bottom:1242.421200px;}
.h27{height:16.918200px;}
.h12{height:19.078200px;}
.h1f{height:20.518200px;}
.h3{height:20.518560px;}
.hf{height:24.118200px;}
.h1a{height:34.112065px;}
.h14{height:35.564600px;}
.h19{height:37.434053px;}
.h17{height:39.362915px;}
.h7{height:43.878708px;}
.h25{height:47.377869px;}
.h22{height:47.957898px;}
.h1d{height:48.220581px;}
.hc{height:48.285263px;}
.ha{height:48.406103px;}
.h24{height:48.815054px;}
.h23{height:48.817868px;}
.h6{height:49.117957px;}
.h11{height:52.431508px;}
.h8{height:52.483886px;}
.h1c{height:53.948725px;}
.h13{height:53.995478px;}
.h16{height:54.357206px;}
.h18{height:59.378260px;}
.h9{height:59.798695px;}
.hd{height:60.251470px;}
.h2{height:63.170491px;}
.h1e{height:63.943864px;}
.h1b{height:64.541470px;}
.h21{height:64.604491px;}
.h20{height:64.610491px;}
.h26{height:64.998463px;}
.he{height:65.490610px;}
.h15{height:66.351644px;}
.h10{height:67.494123px;}
.hb{height:76.048040px;}
.h5{height:76.623849px;}
.h4{height:84.157173px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.360000px;}
.w6{width:3.420000px;}
.w8{width:5.760000px;}
.w7{width:7.920000px;}
.w5{width:8.998200px;}
.w4{width:13.318740px;}
.w3{width:84.232980px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:31.918337px;}
.x9{left:37.317585px;}
.x25{left:52.256880px;}
.x1e{left:54.775121px;}
.x2a{left:64.135474px;}
.x4{left:65.755474px;}
.x3{left:77.814869px;}
.x76{left:95.631199px;}
.x2b{left:97.792761px;}
.x1{left:127.670499px;}
.x71{left:128.931246px;}
.x34{left:132.529897px;}
.x74{left:133.969896px;}
.x26{left:136.489860px;}
.x63{left:137.749145px;}
.x27{left:147.648391px;}
.x72{left:151.609901px;}
.x49{left:154.667663px;}
.x1a{left:159.347936px;}
.x75{left:161.866331px;}
.x1b{left:164.926434px;}
.x77{left:168.166874px;}
.x5c{left:170.500432px;}
.x4a{left:181.666472px;}
.x64{left:182.746143px;}
.x32{left:184.544926px;}
.x33{left:190.304924px;}
.x1d{left:192.644923px;}
.xa{left:197.144921px;}
.xf{left:209.023416px;}
.x10{left:215.143414px;}
.x24{left:220.903412px;}
.x43{left:228.461909px;}
.x4f{left:229.721908px;}
.x44{left:239.980404px;}
.x5d{left:241.240404px;}
.x58{left:244.660402px;}
.x4e{left:249.160400px;}
.x2c{left:264.097918px;}
.x35{left:268.058893px;}
.x36{left:273.817390px;}
.x65{left:282.816884px;}
.x50{left:294.515882px;}
.x59{left:308.914376px;}
.x5e{left:311.794375px;}
.x45{left:315.754374px;}
.x46{left:327.274369px;}
.x5a{left:333.572867px;}
.x17{left:353.191359px;}
.x51{left:361.290600px;}
.x6b{left:364.890600px;}
.x52{left:377.669849px;}
.x6c{left:379.109848px;}
.x5f{left:382.528347px;}
.x2d{left:399.806840px;}
.x6a{left:417.805333px;}
.x5b{left:420.325332px;}
.x6{left:425.725330px;}
.x2e{left:446.423821px;}
.x6d{left:448.763820px;}
.x20{left:451.823140px;}
.x60{left:453.622319px;}
.x2{left:459.923400px;}
.x53{left:467.661600px;}
.x11{left:469.822312px;}
.x4c{left:473.422311px;}
.x12{left:475.940810px;}
.x3f{left:479.720808px;}
.x55{left:485.480806px;}
.x68{left:488.720214px;}
.x40{left:491.240804px;}
.x3d{left:493.939302px;}
.x73{left:495.559302px;}
.x7{left:496.819678px;}
.x29{left:498.619301px;}
.x54{left:500.419300px;}
.x8{left:502.938972px;}
.x67{left:504.019298px;}
.x3e{left:505.459298px;}
.x6e{left:518.417793px;}
.x61{left:524.717790px;}
.x18{left:530.476288px;}
.x19{left:536.416285px;}
.x4d{left:538.756284px;}
.x31{left:541.816283px;}
.x21{left:549.014780px;}
.x22{left:558.374777px;}
.xb{left:563.415056px;}
.x37{left:570.073272px;}
.x38{left:575.833270px;}
.x1f{left:585.731766px;}
.x6f{left:588.071765px;}
.x56{left:590.591764px;}
.x23{left:594.191762px;}
.x62{left:595.810262px;}
.xc{left:605.531488px;}
.x2f{left:609.670256px;}
.x30{left:626.948749px;}
.x39{left:647.287241px;}
.x70{left:651.787239px;}
.x3a{left:653.045739px;}
.x28{left:654.307200px;}
.x57{left:658.265737px;}
.x13{left:661.685735px;}
.x14{left:667.625733px;}
.x47{left:670.504232px;}
.x48{left:678.964228px;}
.x66{left:680.764228px;}
.xd{left:692.822723px;}
.x4b{left:701.822719px;}
.x3b{left:716.401213px;}
.x3c{left:722.159711px;}
.x1c{left:730.619708px;}
.x5{left:731.877064px;}
.x41{left:753.838198px;}
.x69{left:755.638198px;}
.x42{left:765.356694px;}
.x15{left:846.709161px;}
.x16{left:852.829159px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003372pt;}
.ls5{letter-spacing:0.069762pt;}
.ls6{letter-spacing:0.098562pt;}
.ls9{letter-spacing:0.101228pt;}
.lsa{letter-spacing:0.145179pt;}
.ls3{letter-spacing:0.191957pt;}
.ls0{letter-spacing:0.254177pt;}
.lsb{letter-spacing:0.324801pt;}
.ls7{letter-spacing:0.327308pt;}
.ls4{letter-spacing:24.079991pt;}
.ls2{letter-spacing:49.761741pt;}
.ws9{word-spacing:-35.325106pt;}
.ws7{word-spacing:-29.437588pt;}
.ws0{word-spacing:-21.278258pt;}
.ws1{word-spacing:-20.814852pt;}
.ws2{word-spacing:-16.367299pt;}
.ws8{word-spacing:-15.998660pt;}
.wsa{word-spacing:-14.766123pt;}
.wsb{word-spacing:-14.718794pt;}
.ws5{word-spacing:-13.278888pt;}
.ws4{word-spacing:-10.318496pt;}
.ws6{word-spacing:-8.639277pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-2929.690482pt;}
._2{margin-left:-2756.418698pt;}
._3{margin-left:-2375.765168pt;}
._9{margin-left:-1307.340370pt;}
._4{margin-left:-464.521059pt;}
._b{margin-left:-309.241506pt;}
._5{margin-left:-252.556226pt;}
._a{margin-left:-147.918928pt;}
._7{margin-left:-19.993988pt;}
._80{margin-left:-2.193056pt;}
._d{margin-left:-1.222137pt;}
._1{width:1.224964pt;}
._6{width:2.319345pt;}
._1a{width:3.222739pt;}
._14{width:4.730403pt;}
._13{width:6.383629pt;}
._19{width:7.998341pt;}
._e{width:9.393372pt;}
._c{width:10.562072pt;}
._f{width:11.562602pt;}
._20{width:12.786454pt;}
._1f{width:14.012914pt;}
._1b{width:14.953344pt;}
._18{width:16.340494pt;}
._17{width:17.457481pt;}
._1c{width:18.698915pt;}
._25{width:20.298259pt;}
._22{width:21.620075pt;}
._26{width:22.812168pt;}
._23{width:23.829454pt;}
._11{width:25.165747pt;}
._10{width:26.452480pt;}
._27{width:28.443363pt;}
._16{width:30.127274pt;}
._15{width:31.241716pt;}
._24{width:32.355168pt;}
._82{width:41.156236pt;}
._81{width:42.261755pt;}
._12{width:43.261443pt;}
._37{width:45.142901pt;}
._4e{width:49.657165pt;}
._51{width:54.261340pt;}
._4a{width:55.156490pt;}
._4d{width:57.930394pt;}
._6b{width:59.294267pt;}
._4b{width:61.783063pt;}
._79{width:63.234534pt;}
._44{width:64.582708pt;}
._4c{width:66.488653pt;}
._3f{width:67.998723pt;}
._3e{width:69.719602pt;}
._49{width:71.505090pt;}
._45{width:72.467763pt;}
._50{width:73.420326pt;}
._42{width:75.267408pt;}
._62{width:76.695050pt;}
._41{width:77.835855pt;}
._3c{width:79.762190pt;}
._3d{width:82.335987pt;}
._64{width:83.957281pt;}
._46{width:86.394114pt;}
._6a{width:88.415139pt;}
._40{width:91.551398pt;}
._3b{width:92.835621pt;}
._58{width:93.950671pt;}
._52{width:95.294559pt;}
._59{width:96.397429pt;}
._6d{width:97.606218pt;}
._63{width:98.725889pt;}
._43{width:99.673002pt;}
._6c{width:101.694027pt;}
._39{width:105.035742pt;}
._3a{width:106.260706pt;}
._21{width:107.585626pt;}
._5c{width:108.596416pt;}
._48{width:118.756636pt;}
._1e{width:123.943034pt;}
._7a{width:127.902290pt;}
._7f{width:132.099302pt;}
._5a{width:134.279768pt;}
._5d{width:136.847783pt;}
._69{width:141.224374pt;}
._38{width:143.150708pt;}
._73{width:145.878927pt;}
._70{width:152.380296pt;}
._47{width:155.987591pt;}
._2b{width:161.627688pt;}
._76{width:163.900352pt;}
._53{width:168.391486pt;}
._71{width:171.557246pt;}
._66{width:173.486897pt;}
._30{width:177.577713pt;}
._65{width:179.623986pt;}
._56{width:180.590253pt;}
._78{width:181.875699pt;}
._6e{width:189.123599pt;}
._5b{width:191.622588pt;}
._61{width:194.717761pt;}
._28{width:200.861142pt;}
._54{width:206.273654pt;}
._77{width:207.554258pt;}
._57{width:208.841761pt;}
._7b{width:215.620606pt;}
._1d{width:226.754974pt;}
._2a{width:231.509254pt;}
._2d{width:233.219628pt;}
._72{width:239.618917pt;}
._29{width:241.674976pt;}
._2f{width:247.556550pt;}
._60{width:252.625384pt;}
._2e{width:257.625001pt;}
._31{width:263.069711pt;}
._55{width:275.615689pt;}
._2c{width:279.122357pt;}
._6f{width:300.395670pt;}
._33{width:310.385436pt;}
._4f{width:495.223425pt;}
._36{width:506.625976pt;}
._32{width:533.163332pt;}
._35{width:600.202515pt;}
._34{width:621.633412pt;}
._5f{width:855.273210pt;}
._7d{width:873.835130pt;}
._75{width:880.565721pt;}
._68{width:919.141870pt;}
._7e{width:924.876671pt;}
._67{width:930.628848pt;}
._7c{width:962.571323pt;}
._5e{width:971.978536pt;}
._74{width:995.535436pt;}
._0{width:1072.918237pt;}
.fs9{font-size:34.557106pt;}
.fs8{font-size:37.116892pt;}
.fs4{font-size:42.876410pt;}
.fs3{font-size:47.995981pt;}
.fs7{font-size:53.115552pt;}
.fs5{font-size:58.875176pt;}
.fs0{font-size:63.994641pt;}
.fs2{font-size:74.873570pt;}
.fs6{font-size:79.993035pt;}
.fs1{font-size:85.113033pt;}
.y0{bottom:0.000000pt;}
.y14b{bottom:3.200352pt;}
.y37{bottom:3.518490pt;}
.yff{bottom:3.519535pt;}
.y3{bottom:3.839286pt;}
.y102{bottom:3.839535pt;}
.y31{bottom:6.079824pt;}
.y2{bottom:47.342560pt;}
.y1{bottom:51.181846pt;}
.yc0{bottom:97.737961pt;}
.y9d{bottom:97.738094pt;}
.y76{bottom:97.738228pt;}
.ye3{bottom:98.217694pt;}
.y17d{bottom:100.619693pt;}
.y2f{bottom:107.177424pt;}
.y19a{bottom:108.936756pt;}
.y12d{bottom:111.336889pt;}
.ybf{bottom:113.096755pt;}
.y9c{bottom:113.096888pt;}
.y75{bottom:113.097021pt;}
.y9b{bottom:119.176219pt;}
.y1f2{bottom:119.491686pt;}
.y1d8{bottom:120.771818pt;}
.ye2{bottom:123.495817pt;}
.y224{bottom:123.654751pt;}
.yf9{bottom:125.734483pt;}
.y17c{bottom:125.897816pt;}
.ybe{bottom:128.455549pt;}
.y74{bottom:128.455815pt;}
.y157{bottom:128.775148pt;}
.y2a{bottom:130.855414pt;}
.y1b8{bottom:132.934480pt;}
.y199{bottom:134.374213pt;}
.ybd{bottom:134.534613pt;}
.y12c{bottom:137.734212pt;}
.ybc{bottom:143.814342pt;}
.y73{bottom:143.814609pt;}
.y1f1{bottom:144.769809pt;}
.y208{bottom:144.771142pt;}
.y1d7{bottom:146.049942pt;}
.ydf{bottom:148.770874pt;}
.ye1{bottom:148.773274pt;}
.y223{bottom:148.932207pt;}
.y72{bottom:149.893273pt;}
.yf8{bottom:151.011940pt;}
.y17b{bottom:151.175273pt;}
.y156{bottom:154.053272pt;}
.ye0{bottom:155.493271pt;}
.y29{bottom:156.132871pt;}
.y1b7{bottom:158.051937pt;}
.y71{bottom:159.173136pt;}
.y12b{bottom:163.971668pt;}
.y1f0{bottom:170.047932pt;}
.y207{bottom:170.209265pt;}
.y155{bottom:170.852198pt;}
.y1d6{bottom:171.327398pt;}
.y198{bottom:172.931131pt;}
.yde{bottom:174.208997pt;}
.y222{bottom:174.210330pt;}
.y70{bottom:174.531930pt;}
.yf7{bottom:176.290063pt;}
.y17a{bottom:176.613396pt;}
.y6f{bottom:180.610594pt;}
.y28{bottom:181.410994pt;}
.y154{bottom:186.050326pt;}
.y12a{bottom:189.249791pt;}
.y6e{bottom:189.730324pt;}
.ybb{bottom:189.730457pt;}
.y1ef{bottom:195.326055pt;}
.y206{bottom:195.487388pt;}
.y1d5{bottom:196.765521pt;}
.y1b6{bottom:196.928855pt;}
.y197{bottom:198.049254pt;}
.ydd{bottom:199.487120pt;}
.y221{bottom:199.488454pt;}
.y153{bottom:201.409119pt;}
.yf6{bottom:201.568186pt;}
.y179{bottom:201.890853pt;}
.y2e{bottom:204.449252pt;}
.y2d{bottom:204.449785pt;}
.y6d{bottom:205.089118pt;}
.yba{bottom:205.089251pt;}
.y27{bottom:206.689117pt;}
.yb9{bottom:211.169249pt;}
.y129{bottom:214.527914pt;}
.y152{bottom:216.767913pt;}
.y6c{bottom:220.447912pt;}
.y1ee{bottom:220.604178pt;}
.yb8{bottom:221.087912pt;}
.y1d4{bottom:222.043645pt;}
.y1b5{bottom:222.046978pt;}
.y196{bottom:223.327377pt;}
.ydc{bottom:224.765243pt;}
.y220{bottom:224.766577pt;}
.y6b{bottom:226.527909pt;}
.yf5{bottom:226.846309pt;}
.y178{bottom:227.168309pt;}
.y2b{bottom:230.687241pt;}
.y2c{bottom:230.687908pt;}
.y26{bottom:231.966574pt;}
.y205{bottom:233.884306pt;}
.y6a{bottom:235.806306pt;}
.y128{bottom:239.806037pt;}
.y151{bottom:240.606570pt;}
.y1ed{bottom:245.882302pt;}
.y1d3{bottom:247.321768pt;}
.y1b4{bottom:247.324434pt;}
.y195{bottom:248.764834pt;}
.ydb{bottom:250.043367pt;}
.y21f{bottom:250.044700pt;}
.y69{bottom:251.165100pt;}
.yf4{bottom:252.124432pt;}
.y177{bottom:252.446432pt;}
.y25{bottom:257.244697pt;}
.y150{bottom:264.283894pt;}
.y127{bottom:265.084161pt;}
.y68{bottom:266.363893pt;}
.y1ec{bottom:271.160425pt;}
.y67{bottom:272.443891pt;}
.y1d2{bottom:272.599891pt;}
.y204{bottom:272.601224pt;}
.y1b3{bottom:272.602558pt;}
.yda{bottom:275.321490pt;}
.y21e{bottom:275.322823pt;}
.yb7{bottom:275.323090pt;}
.yf3{bottom:277.402556pt;}
.y176{bottom:277.723889pt;}
.y66{bottom:281.722421pt;}
.y9a{bottom:281.723487pt;}
.y24{bottom:282.362820pt;}
.y194{bottom:287.481752pt;}
.y14f{bottom:287.962551pt;}
.y126{bottom:290.362284pt;}
.y23f{bottom:290.842550pt;}
.y1eb{bottom:296.438548pt;}
.y65{bottom:297.081215pt;}
.y99{bottom:297.082281pt;}
.y1d1{bottom:297.878014pt;}
.y1b2{bottom:298.040681pt;}
.yd9{bottom:300.599613pt;}
.yb6{bottom:300.600546pt;}
.y21d{bottom:300.600946pt;}
.yf2{bottom:301.881213pt;}
.y175{bottom:303.001345pt;}
.y64{bottom:303.161212pt;}
.y23{bottom:307.640277pt;}
.y203{bottom:311.318142pt;}
.y14e{bottom:311.639875pt;}
.y98{bottom:312.441075pt;}
.y193{bottom:312.759875pt;}
.y63{bottom:313.079875pt;}
.y125{bottom:315.640407pt;}
.y23e{bottom:317.079073pt;}
.y1ea{bottom:321.876005pt;}
.y1d0{bottom:323.156137pt;}
.y1b1{bottom:323.158137pt;}
.yd8{bottom:325.877736pt;}
.yb5{bottom:325.878670pt;}
.y21c{bottom:325.879070pt;}
.yf1{bottom:327.158536pt;}
.y97{bottom:327.799869pt;}
.y174{bottom:328.278802pt;}
.y22{bottom:332.918400pt;}
.y96{bottom:333.878533pt;}
.y14d{bottom:335.318533pt;}
.y62{bottom:337.562265pt;}
.y192{bottom:337.877332pt;}
.y124{bottom:340.918530pt;}
.y23d{bottom:342.357196pt;}
.y95{bottom:343.797196pt;}
.y1e9{bottom:347.154128pt;}
.y1cf{bottom:348.434261pt;}
.y1b0{bottom:348.436261pt;}
.y202{bottom:349.875060pt;}
.yd7{bottom:351.155860pt;}
.y21b{bottom:351.156526pt;}
.yb4{bottom:351.156793pt;}
.y173{bottom:353.556259pt;}
.y107{bottom:354.997191pt;}
.y123{bottom:357.716124pt;}
.y21{bottom:358.196523pt;}
.y14c{bottom:358.995856pt;}
.y61{bottom:362.839722pt;}
.y191{bottom:363.155455pt;}
.y23c{bottom:367.635320pt;}
.y1e8{bottom:372.432251pt;}
.y122{bottom:373.074917pt;}
.y1ce{bottom:373.712384pt;}
.y1af{bottom:373.873717pt;}
.yd6{bottom:376.433983pt;}
.y21a{bottom:376.434649pt;}
.y94{bottom:376.434916pt;}
.y172{bottom:378.834382pt;}
.y106{bottom:382.674514pt;}
.y108{bottom:382.994513pt;}
.y20{bottom:383.313980pt;}
.y60{bottom:388.117178pt;}
.y201{bottom:388.431311pt;}
.y190{bottom:388.432911pt;}
.y121{bottom:388.433045pt;}
.y23b{bottom:392.913443pt;}
.y1e7{bottom:397.710374pt;}
.y1cd{bottom:398.990507pt;}
.y1ae{bottom:399.151840pt;}
.yd5{bottom:401.872106pt;}
.y219{bottom:401.872773pt;}
.y93{bottom:401.873039pt;}
.y120{bottom:403.791838pt;}
.y171{bottom:404.271838pt;}
.y149{bottom:406.191838pt;}
.y1f{bottom:408.592103pt;}
.y5f{bottom:413.394635pt;}
.y23a{bottom:418.191566pt;}
.y1e6{bottom:422.988497pt;}
.y1cc{bottom:424.428630pt;}
.y105{bottom:424.590497pt;}
.yd4{bottom:427.149562pt;}
.y92{bottom:427.150496pt;}
.y90{bottom:427.150762pt;}
.y218{bottom:427.150896pt;}
.yb3{bottom:427.151162pt;}
.y200{bottom:427.308229pt;}
.y18f{bottom:427.309829pt;}
.y11f{bottom:427.630496pt;}
.y148{bottom:429.230495pt;}
.y170{bottom:429.549962pt;}
.y91{bottom:433.869160pt;}
.y1e{bottom:433.869560pt;}
.y1ad{bottom:437.868758pt;}
.y5e{bottom:438.672091pt;}
.y239{bottom:444.429022pt;}
.y1e5{bottom:448.266621pt;}
.y14a{bottom:449.068800pt;}
.y1cb{bottom:449.706753pt;}
.y11e{bottom:451.309153pt;}
.y147{bottom:452.269152pt;}
.y1ff{bottom:452.426352pt;}
.yd3{bottom:452.427686pt;}
.y18e{bottom:452.427952pt;}
.y8f{bottom:452.428886pt;}
.y217{bottom:452.429019pt;}
.yb2{bottom:452.429286pt;}
.y104{bottom:453.069152pt;}
.y16f{bottom:454.828085pt;}
.y1d{bottom:459.147683pt;}
.y1ac{bottom:462.986881pt;}
.y5d{bottom:463.949548pt;}
.y101{bottom:468.427813pt;}
.y238{bottom:469.867145pt;}
.y1e4{bottom:473.544744pt;}
.y1ca{bottom:474.984877pt;}
.y11d{bottom:474.986477pt;}
.y146{bottom:475.946476pt;}
.y1fe{bottom:477.704476pt;}
.yd2{bottom:477.705809pt;}
.y18d{bottom:477.706076pt;}
.y8e{bottom:477.706342pt;}
.y216{bottom:477.707142pt;}
.yb1{bottom:477.707409pt;}
.y16e{bottom:480.265541pt;}
.y103{bottom:480.746474pt;}
.y1c{bottom:484.425806pt;}
.y1ab{bottom:488.265005pt;}
.y5c{bottom:489.227671pt;}
.yfe{bottom:492.105600pt;}
.yfd{bottom:495.625135pt;}
.y100{bottom:495.945135pt;}
.y237{bottom:496.104602pt;}
.y11c{bottom:498.505134pt;}
.y1e3{bottom:498.822867pt;}
.y1c9{bottom:500.263000pt;}
.y1fd{bottom:502.981932pt;}
.y8d{bottom:502.983799pt;}
.yd1{bottom:502.983932pt;}
.y18c{bottom:502.984199pt;}
.y215{bottom:502.985265pt;}
.yb0{bottom:502.985532pt;}
.y16d{bottom:505.383665pt;}
.y1b{bottom:509.543263pt;}
.y1aa{bottom:513.543128pt;}
.y145{bottom:513.703661pt;}
.y5b{bottom:514.505128pt;}
.y236{bottom:521.382725pt;}
.y11b{bottom:522.182458pt;}
.yfc{bottom:523.302457pt;}
.yfb{bottom:523.622457pt;}
.y1c8{bottom:525.541123pt;}
.y1fc{bottom:528.260055pt;}
.yd0{bottom:528.262055pt;}
.y18b{bottom:528.262322pt;}
.y8c{bottom:528.262455pt;}
.y214{bottom:528.263389pt;}
.yaf{bottom:528.263655pt;}
.y16c{bottom:530.661121pt;}
.y1a{bottom:534.821386pt;}
.y1e2{bottom:537.699785pt;}
.y1a9{bottom:538.821251pt;}
.y5a{bottom:539.782584pt;}
.y144{bottom:539.941117pt;}
.y11a{bottom:545.859782pt;}
.y235{bottom:547.620181pt;}
.y1c7{bottom:550.819246pt;}
.y1fb{bottom:553.538179pt;}
.y8a{bottom:553.539779pt;}
.ycf{bottom:553.540179pt;}
.y18a{bottom:553.540445pt;}
.yae{bottom:553.541112pt;}
.y213{bottom:553.541512pt;}
.y16b{bottom:555.139778pt;}
.y16a{bottom:555.140311pt;}
.y19{bottom:560.099509pt;}
.y8b{bottom:560.259776pt;}
.y1a8{bottom:564.099374pt;}
.y142{bottom:564.258441pt;}
.y143{bottom:564.259774pt;}
.y59{bottom:565.060041pt;}
.yfa{bottom:566.179774pt;}
.y119{bottom:569.538439pt;}
.y234{bottom:572.898304pt;}
.y1c6{bottom:576.096703pt;}
.y1e1{bottom:576.256036pt;}
.y169{bottom:578.178435pt;}
.y1fa{bottom:578.816302pt;}
.yce{bottom:578.818302pt;}
.y89{bottom:578.818435pt;}
.y189{bottom:578.818568pt;}
.yad{bottom:578.819235pt;}
.y212{bottom:578.819635pt;}
.y18{bottom:585.376966pt;}
.y141{bottom:587.296565pt;}
.y1a7{bottom:589.536831pt;}
.y58{bottom:590.337497pt;}
.y118{bottom:593.217096pt;}
.y233{bottom:599.295760pt;}
.y168{bottom:601.056560pt;}
.y1c5{bottom:601.374826pt;}
.y1f9{bottom:604.094425pt;}
.y88{bottom:604.095758pt;}
.ycd{bottom:604.096425pt;}
.y188{bottom:604.096692pt;}
.yac{bottom:604.097358pt;}
.y211{bottom:604.097758pt;}
.y140{bottom:610.334689pt;}
.y17{bottom:613.694421pt;}
.y1e0{bottom:614.972954pt;}
.y1a6{bottom:614.974287pt;}
.y57{bottom:615.614954pt;}
.y117{bottom:616.254420pt;}
.y167{bottom:624.094684pt;}
.y232{bottom:624.573884pt;}
.y1c4{bottom:626.652949pt;}
.y1f8{bottom:629.531882pt;}
.yf0{bottom:629.532548pt;}
.y87{bottom:629.533082pt;}
.ycc{bottom:629.533882pt;}
.y187{bottom:629.534148pt;}
.y210{bottom:629.535215pt;}
.yab{bottom:629.694815pt;}
.y13f{bottom:633.372813pt;}
.y16{bottom:634.173080pt;}
.y116{bottom:639.293078pt;}
.y1a5{bottom:640.252411pt;}
.y54{bottom:640.892677pt;}
.y56{bottom:640.893077pt;}
.y166{bottom:647.132808pt;}
.y55{bottom:647.611741pt;}
.y15{bottom:648.891740pt;}
.y231{bottom:649.852007pt;}
.y1c3{bottom:652.090406pt;}
.y1df{bottom:653.529872pt;}
.y1f7{bottom:654.810005pt;}
.yef{bottom:654.810671pt;}
.ycb{bottom:654.812005pt;}
.y86{bottom:654.812271pt;}
.y20f{bottom:654.813338pt;}
.yaa{bottom:654.972271pt;}
.y13e{bottom:656.250937pt;}
.y115{bottom:662.810402pt;}
.y53{bottom:666.330133pt;}
.y165{bottom:670.010932pt;}
.y14{bottom:674.809063pt;}
.y13{bottom:675.129063pt;}
.y230{bottom:675.129463pt;}
.y1c2{bottom:677.368529pt;}
.y1a4{bottom:678.809328pt;}
.y12{bottom:679.129062pt;}
.y13d{bottom:679.289062pt;}
.y1f6{bottom:680.088128pt;}
.yee{bottom:680.088795pt;}
.y83{bottom:680.089461pt;}
.yca{bottom:680.090128pt;}
.y85{bottom:680.090395pt;}
.y20e{bottom:680.090795pt;}
.ya9{bottom:680.091995pt;}
.y186{bottom:680.250395pt;}
.y84{bottom:686.809059pt;}
.y114{bottom:688.569058pt;}
.y52{bottom:691.608257pt;}
.y1de{bottom:692.246790pt;}
.y164{bottom:693.049056pt;}
.y22f{bottom:701.367586pt;}
.y13c{bottom:702.327719pt;}
.y1c1{bottom:702.646652pt;}
.y1a3{bottom:703.926785pt;}
.y10{bottom:704.727718pt;}
.y1f5{bottom:705.365585pt;}
.y82{bottom:705.366918pt;}
.yc9{bottom:705.367585pt;}
.y185{bottom:705.367851pt;}
.y20d{bottom:705.368251pt;}
.ya8{bottom:705.369451pt;}
.yed{bottom:705.526251pt;}
.y11{bottom:709.367716pt;}
.y113{bottom:714.965981pt;}
.y163{bottom:716.086380pt;}
.y51{bottom:716.886380pt;}
.y4f{bottom:716.887713pt;}
.y1dd{bottom:717.364913pt;}
.y50{bottom:723.606377pt;}
.y13b{bottom:724.406377pt;}
.y22e{bottom:726.645043pt;}
.y1c0{bottom:727.924109pt;}
.y1a2{bottom:729.204908pt;}
.yec{bottom:730.644374pt;}
.y81{bottom:730.645041pt;}
.yc8{bottom:730.645708pt;}
.y184{bottom:730.645974pt;}
.ya7{bottom:730.646908pt;}
.y1f4{bottom:730.803708pt;}
.ye{bottom:736.885039pt;}
.y162{bottom:738.165038pt;}
.y112{bottom:741.043437pt;}
.yf{bottom:741.523703pt;}
.y4e{bottom:742.165170pt;}
.y139{bottom:746.324235pt;}
.y22d{bottom:752.083166pt;}
.y1bf{bottom:753.202232pt;}
.y1a1{bottom:754.803031pt;}
.y1f3{bottom:755.921164pt;}
.y80{bottom:755.923164pt;}
.y183{bottom:755.923431pt;}
.yc7{bottom:755.923831pt;}
.ya6{bottom:755.924364pt;}
.y1dc{bottom:756.081164pt;}
.yeb{bottom:756.081831pt;}
.y161{bottom:760.242363pt;}
.y111{bottom:766.321560pt;}
.y138{bottom:767.122360pt;}
.y13a{bottom:767.442360pt;}
.y4d{bottom:767.442626pt;}
.yd{bottom:772.561024pt;}
.yc{bottom:772.881024pt;}
.y22c{bottom:778.320622pt;}
.y1be{bottom:778.480355pt;}
.y160{bottom:780.881021pt;}
.y1db{bottom:781.199288pt;}
.yea{bottom:781.199954pt;}
.y20c{bottom:781.200621pt;}
.y7f{bottom:781.201288pt;}
.y182{bottom:781.201554pt;}
.ya5{bottom:781.201821pt;}
.yc6{bottom:781.201954pt;}
.y137{bottom:789.039684pt;}
.y110{bottom:791.759683pt;}
.y4c{bottom:792.720083pt;}
.y1a0{bottom:793.359283pt;}
.y15f{bottom:802.959679pt;}
.y22b{bottom:803.598745pt;}
.y1bd{bottom:803.758478pt;}
.y1da{bottom:806.477411pt;}
.ye9{bottom:806.478077pt;}
.y20b{bottom:806.478744pt;}
.ya4{bottom:806.479277pt;}
.y7e{bottom:806.479411pt;}
.yc5{bottom:806.480077pt;}
.y181{bottom:806.637411pt;}
.yb{bottom:808.878343pt;}
.ya{bottom:809.198343pt;}
.y136{bottom:809.838343pt;}
.y4b{bottom:817.997539pt;}
.y10f{bottom:818.318339pt;}
.y19f{bottom:818.637406pt;}
.y15e{bottom:824.877003pt;}
.y22a{bottom:828.876868pt;}
.y1bc{bottom:829.036602pt;}
.y180{bottom:831.754867pt;}
.ye8{bottom:831.755534pt;}
.y20a{bottom:831.756201pt;}
.ya3{bottom:831.756734pt;}
.y7d{bottom:831.756867pt;}
.yc4{bottom:831.757534pt;}
.y135{bottom:831.917001pt;}
.y4a{bottom:843.275663pt;}
.y48{bottom:843.276329pt;}
.y19e{bottom:843.755529pt;}
.y10e{bottom:843.755662pt;}
.y9{bottom:845.195662pt;}
.y8{bottom:845.515662pt;}
.y15d{bottom:846.955661pt;}
.y49{bottom:849.995660pt;}
.y134{bottom:853.834325pt;}
.y229{bottom:855.114325pt;}
.y17f{bottom:857.192990pt;}
.ye7{bottom:857.193657pt;}
.y209{bottom:857.194324pt;}
.ya2{bottom:857.194857pt;}
.y7c{bottom:857.194990pt;}
.yc3{bottom:857.195657pt;}
.y1bb{bottom:867.912853pt;}
.y47{bottom:868.553786pt;}
.y15c{bottom:869.032986pt;}
.y10d{bottom:869.352986pt;}
.y133{bottom:875.912983pt;}
.y228{bottom:880.392448pt;}
.y7{bottom:881.352981pt;}
.y6{bottom:881.672981pt;}
.y17e{bottom:882.471114pt;}
.ye6{bottom:882.471780pt;}
.y7b{bottom:882.472447pt;}
.ya1{bottom:882.472980pt;}
.yc2{bottom:882.473114pt;}
.y1d9{bottom:882.631114pt;}
.ya0{bottom:889.191644pt;}
.y15b{bottom:891.111644pt;}
.y46{bottom:893.991909pt;}
.y19d{bottom:894.311109pt;}
.y10c{bottom:897.511641pt;}
.y132{bottom:897.990307pt;}
.y227{bottom:905.829904pt;}
.y1ba{bottom:906.469771pt;}
.ye5{bottom:907.749237pt;}
.y7a{bottom:907.749904pt;}
.yc1{bottom:907.750570pt;}
.y15a{bottom:913.028968pt;}
.y5{bottom:917.668966pt;}
.y4{bottom:917.988966pt;}
.y45{bottom:919.269366pt;}
.y19c{bottom:919.749232pt;}
.y131{bottom:919.910299pt;}
.y10b{bottom:925.828963pt;}
.y226{bottom:932.068027pt;}
.ye4{bottom:933.027360pt;}
.y79{bottom:933.028027pt;}
.y159{bottom:935.107626pt;}
.y130{bottom:941.987623pt;}
.y39{bottom:942.147623pt;}
.y44{bottom:944.546822pt;}
.y1b9{bottom:945.186689pt;}
.y10a{bottom:954.146285pt;}
.y158{bottom:957.186284pt;}
.y225{bottom:957.346150pt;}
.y78{bottom:958.305483pt;}
.y19b{bottom:958.465483pt;}
.y12f{bottom:964.066281pt;}
.y43{bottom:969.984945pt;}
.y109{bottom:982.623607pt;}
.y9e{bottom:983.583607pt;}
.y77{bottom:983.743607pt;}
.y12e{bottom:984.703606pt;}
.y42{bottom:985.983606pt;}
.y9f{bottom:990.303604pt;}
.y3c{bottom:991.262670pt;}
.y41{bottom:1001.182800pt;}
.y40{bottom:1018.140926pt;}
.y3b{bottom:1027.099589pt;}
.y3f{bottom:1032.539320pt;}
.y35{bottom:1042.138783pt;}
.y3e{bottom:1047.738114pt;}
.y3a{bottom:1055.578244pt;}
.y3d{bottom:1063.096908pt;}
.y33{bottom:1065.176774pt;}
.y34{bottom:1065.176907pt;}
.y32{bottom:1083.255567pt;}
.y38{bottom:1089.655564pt;}
.y30{bottom:1099.894400pt;}
.y36{bottom:1104.374400pt;}
.h27{height:15.038400pt;}
.h12{height:16.958400pt;}
.h1f{height:18.238400pt;}
.h3{height:18.238720pt;}
.hf{height:21.438400pt;}
.h1a{height:30.321836pt;}
.h14{height:31.612978pt;}
.h19{height:33.274714pt;}
.h17{height:34.989257pt;}
.h7{height:39.003296pt;}
.h25{height:42.113661pt;}
.h22{height:42.629243pt;}
.h1d{height:42.862738pt;}
.hc{height:42.920234pt;}
.ha{height:43.027647pt;}
.h24{height:43.391159pt;}
.h23{height:43.393660pt;}
.h6{height:43.660406pt;}
.h11{height:46.605785pt;}
.h8{height:46.652343pt;}
.h1c{height:47.954422pt;}
.h13{height:47.995981pt;}
.h16{height:48.317516pt;}
.h18{height:52.780676pt;}
.h9{height:53.154395pt;}
.hd{height:53.556862pt;}
.h2{height:56.151548pt;}
.h1e{height:56.838990pt;}
.h1b{height:57.370196pt;}
.h21{height:57.426214pt;}
.h20{height:57.431547pt;}
.h26{height:57.776412pt;}
.he{height:58.213875pt;}
.h15{height:58.979239pt;}
.h10{height:59.994776pt;}
.hb{height:67.598257pt;}
.h5{height:68.110088pt;}
.h4{height:74.806376pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.320000pt;}
.w6{width:3.040000pt;}
.w8{width:5.120000pt;}
.w7{width:7.040000pt;}
.w5{width:7.998400pt;}
.w4{width:11.838880pt;}
.w3{width:74.873760pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:28.371855pt;}
.x9{left:33.171187pt;}
.x25{left:46.450560pt;}
.x1e{left:48.688997pt;}
.x2a{left:57.009311pt;}
.x4{left:58.449310pt;}
.x3{left:69.168772pt;}
.x76{left:85.005510pt;}
.x2b{left:86.926899pt;}
.x1{left:113.484888pt;}
.x71{left:114.605552pt;}
.x34{left:117.804353pt;}
.x74{left:119.084352pt;}
.x26{left:121.324320pt;}
.x63{left:122.443684pt;}
.x27{left:131.243014pt;}
.x72{left:134.764356pt;}
.x49{left:137.482367pt;}
.x1a{left:141.642610pt;}
.x75{left:143.881183pt;}
.x1b{left:146.601275pt;}
.x77{left:149.481665pt;}
.x5c{left:151.555939pt;}
.x4a{left:161.481309pt;}
.x64{left:162.441016pt;}
.x32{left:164.039934pt;}
.x33{left:169.159932pt;}
.x1d{left:171.239932pt;}
.xa{left:175.239930pt;}
.xf{left:185.798592pt;}
.x10{left:191.238590pt;}
.x24{left:196.358588pt;}
.x43{left:203.077252pt;}
.x4f{left:204.197252pt;}
.x44{left:213.315915pt;}
.x5d{left:214.435914pt;}
.x58{left:217.475913pt;}
.x4e{left:221.475911pt;}
.x2c{left:234.753705pt;}
.x35{left:238.274571pt;}
.x36{left:243.393236pt;}
.x65{left:251.392786pt;}
.x50{left:261.791895pt;}
.x59{left:274.590557pt;}
.x5e{left:277.150556pt;}
.x45{left:280.670554pt;}
.x46{left:290.910550pt;}
.x5a{left:296.509215pt;}
.x17{left:313.947874pt;}
.x51{left:321.147200pt;}
.x6b{left:324.347200pt;}
.x52{left:335.706532pt;}
.x6c{left:336.986532pt;}
.x5f{left:340.025197pt;}
.x2d{left:355.383858pt;}
.x6a{left:371.382518pt;}
.x5b{left:373.622517pt;}
.x6{left:378.422515pt;}
.x2e{left:396.821175pt;}
.x6d{left:398.901174pt;}
.x20{left:401.620569pt;}
.x60{left:403.219839pt;}
.x2{left:408.820800pt;}
.x53{left:415.699200pt;}
.x11{left:417.619833pt;}
.x4c{left:420.819832pt;}
.x12{left:423.058497pt;}
.x3f{left:426.418496pt;}
.x55{left:431.538494pt;}
.x68{left:434.417968pt;}
.x40{left:436.658492pt;}
.x3d{left:439.057158pt;}
.x73{left:440.497157pt;}
.x7{left:441.617492pt;}
.x29{left:443.217156pt;}
.x54{left:444.817155pt;}
.x8{left:447.056864pt;}
.x67{left:448.017154pt;}
.x3e{left:449.297154pt;}
.x6e{left:460.815816pt;}
.x61{left:466.415813pt;}
.x18{left:471.534478pt;}
.x19{left:476.814476pt;}
.x4d{left:478.894475pt;}
.x31{left:481.614474pt;}
.x21{left:488.013138pt;}
.x22{left:496.333135pt;}
.xb{left:500.813383pt;}
.x37{left:506.731797pt;}
.x38{left:511.851795pt;}
.x1f{left:520.650458pt;}
.x6f{left:522.730458pt;}
.x56{left:524.970457pt;}
.x23{left:528.170455pt;}
.x62{left:529.609121pt;}
.xc{left:538.250212pt;}
.x2f{left:541.929117pt;}
.x30{left:557.287777pt;}
.x39{left:575.366437pt;}
.x70{left:579.366435pt;}
.x3a{left:580.485101pt;}
.x28{left:581.606400pt;}
.x57{left:585.125099pt;}
.x13{left:588.165098pt;}
.x14{left:593.445096pt;}
.x47{left:596.003762pt;}
.x48{left:603.523759pt;}
.x66{left:605.123758pt;}
.xd{left:615.842420pt;}
.x4b{left:623.842417pt;}
.x3b{left:636.801079pt;}
.x3c{left:641.919743pt;}
.x1c{left:649.439740pt;}
.x5{left:650.557391pt;}
.x41{left:670.078399pt;}
.x69{left:671.678398pt;}
.x42{left:680.317061pt;}
.x15{left:752.630366pt;}
.x16{left:758.070363pt;}
}




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