
    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_8679f61b32e033fd936bd772.woff')format("woff");}.ff1{font-family:ff1;line-height:0.716000;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_b0f896e93bcc7fc35b978128.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097656;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_1d75940a00efca44640db78e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097656;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_bdbbd90c5e3f2de32e29b1a5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_06b7161c31193a827e0c690d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_f952fa01707fb6ea5f6f66fa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_dc6f82d2e2335613913df9bb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.716000;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_f29cc2fda21882e05ae56568.woff')format("woff");}.ff8{font-family:ff8;line-height:0.894531;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_3a56f901f90358f41b44c128.woff')format("woff");}.ff9{font-family:ff9;line-height:0.901855;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_2632e717d5f41fb11a99f058.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901855;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_b005ec199abf2e6d81376202.woff')format("woff");}.ffb{font-family:ffb;line-height:0.945312;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_78eeb764605a2168dcc738d6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.330566;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_1bfbbf606b341124e264b7c1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_e249b90213cd3b72e31de271.woff')format("woff");}.ffe{font-family:ffe;line-height:0.901855;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_2c5744635f217296bc54e17c.woff')format("woff");}.fff{font-family:fff;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.ls7{letter-spacing:-0.069553px;}
.ls6{letter-spacing:-0.053503px;}
.ls4{letter-spacing:-0.041613px;}
.ls5{letter-spacing:-0.023184px;}
.ls3{letter-spacing:-0.017834px;}
.ls1{letter-spacing:-0.007134px;}
.ls2{letter-spacing:-0.005945px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-60.000000px;}
.ws7{word-spacing:-19.320300px;}
.ws9{word-spacing:-19.297116px;}
.wsb{word-spacing:-19.250747px;}
.ws4{word-spacing:-17.826966px;}
.ws5{word-spacing:-14.861850px;}
.ws6{word-spacing:-14.855905px;}
.wsa{word-spacing:-14.844016px;}
.ws2{word-spacing:-13.620000px;}
.ws8{word-spacing:-10.217550px;}
.ws0{word-spacing:-0.612829px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-2145.088930px;}
._e{margin-left:-1692.872558px;}
._10{margin-left:-1603.701458px;}
._11{margin-left:-1454.618431px;}
._c{margin-left:-1323.838895px;}
._f{margin-left:-1299.746902px;}
._d{margin-left:-1226.697099px;}
._b{margin-left:-463.868062px;}
._2{margin-left:-8.322000px;}
._9{margin-left:-6.836451px;}
._8{margin-left:-4.992000px;}
._1{margin-left:-3.534000px;}
._7{margin-left:-2.340000px;}
._3{margin-left:-1.200000px;}
._5{width:1.296000px;}
._4{width:2.496000px;}
._6{width:6.180000px;}
._0{width:1000.008000px;}
.fc3{color:rgb(85,34,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:40.870200px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs9{font-size:59.447400px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:71.336400px;}
.fs7{font-size:77.281200px;}
.fs5{font-size:180.000000px;}
.fs1{font-size:504.682800px;}
.fs0{font-size:612.829200px;}
.y0{bottom:0.000000px;}
.y51{bottom:2.526000px;}
.y124{bottom:8.718739px;}
.y1c4{bottom:10.414980px;}
.y99{bottom:17.539598px;}
.y147{bottom:19.078767px;}
.y1a1{bottom:23.307941px;}
.y172{bottom:23.456559px;}
.y80{bottom:24.416187px;}
.y123{bottom:28.485000px;}
.y1c3{bottom:30.181241px;}
.y146{bottom:32.668108px;}
.y98{bottom:37.305858px;}
.y50{bottom:40.799927px;}
.y1a0{bottom:43.074201px;}
.y171{bottom:43.222820px;}
.y2{bottom:43.317900px;}
.y7f{bottom:44.182448px;}
.y145{bottom:46.257450px;}
.yca{bottom:49.789939px;}
.y1c2{bottom:49.947501px;}
.y97{bottom:57.072118px;}
.y102{bottom:59.480751px;}
.y122{bottom:61.227600px;}
.y19f{bottom:62.840462px;}
.y170{bottom:62.989080px;}
.y4{bottom:63.078600px;}
.y7e{bottom:63.948708px;}
.y217{bottom:67.175240px;}
.yc9{bottom:69.559340px;}
.y101{bottom:73.070092px;}
.y96{bottom:76.838379px;}
.y19e{bottom:82.606722px;}
.y16f{bottom:82.755341px;}
.y7d{bottom:83.714968px;}
.y1c1{bottom:84.575612px;}
.y100{bottom:86.659434px;}
.y216{bottom:86.941500px;}
.yc8{bottom:89.337558px;}
.yfb{bottom:90.987526px;}
.y95{bottom:96.604640px;}
.y121{bottom:98.250411px;}
.yff{bottom:100.248775px;}
.y19d{bottom:102.372983px;}
.y16e{bottom:102.521601px;}
.y1c0{bottom:104.341872px;}
.yfa{bottom:110.753787px;}
.yfe{bottom:113.838117px;}
.y28{bottom:114.000000px;}
.y94{bottom:116.370900px;}
.y120{bottom:118.016672px;}
.y7c{bottom:118.343079px;}
.y215{bottom:121.581719px;}
.y19c{bottom:122.139243px;}
.y16d{bottom:122.287862px;}
.yc7{bottom:123.965668px;}
.y1bf{bottom:124.108133px;}
.yfd{bottom:127.427459px;}
.yf9{bottom:130.520047px;}
.y11f{bottom:137.782932px;}
.y7b{bottom:138.109340px;}
.y93{bottom:139.394309px;}
.y2d{bottom:140.462458px;}
.yfc{bottom:141.016800px;}
.y214{bottom:141.347979px;}
.y16c{bottom:142.054122px;}
.yc6{bottom:143.731929px;}
.yf8{bottom:150.286308px;}
.y92{bottom:152.983650px;}
.y2c{bottom:154.051800px;}
.y19b{bottom:156.767354px;}
.y25f{bottom:157.504122px;}
.y11e{bottom:157.549193px;}
.y7a{bottom:157.875600px;}
.y1be{bottom:158.736243px;}
.y213{bottom:161.114240px;}
.y16b{bottom:161.820383px;}
.yc5{bottom:163.498190px;}
.y23d{bottom:165.643734px;}
.y4f{bottom:165.903516px;}
.y19a{bottom:176.533614px;}
.y25e{bottom:177.270383px;}
.y1f5{bottom:177.960567px;}
.y1bd{bottom:178.502504px;}
.y23c{bottom:179.233076px;}
.y212{bottom:180.880500px;}
.y16a{bottom:181.586643px;}
.yc4{bottom:183.264450px;}
.yf7{bottom:184.914419px;}
.y4e{bottom:185.669777px;}
.y79{bottom:190.618050px;}
.y1f4{bottom:191.549908px;}
.y11d{bottom:192.177303px;}
.y23b{bottom:192.822417px;}
.y199{bottom:196.299875px;}
.y25d{bottom:197.036643px;}
.y1f3{bottom:205.139250px;}
.y4d{bottom:205.436037px;}
.y23a{bottom:206.411759px;}
.y11c{bottom:211.943563px;}
.y1bc{bottom:213.130614px;}
.y211{bottom:215.532676px;}
.yc3{bottom:216.006900px;}
.y169{bottom:216.214754px;}
.y25c{bottom:216.802904px;}
.yf6{bottom:219.542529px;}
.y239{bottom:220.001100px;}
.y4c{bottom:225.202297px;}
.y78{bottom:227.625913px;}
.y198{bottom:230.927985px;}
.y11b{bottom:231.709824px;}
.y1bb{bottom:232.896875px;}
.y210{bottom:235.298937px;}
.y168{bottom:235.981014px;}
.y25b{bottom:236.569164px;}
.yf5{bottom:239.308789px;}
.y4b{bottom:244.968558px;}
.y77{bottom:247.392174px;}
.y197{bottom:250.694246px;}
.y11a{bottom:251.476084px;}
.y1d6{bottom:252.576140px;}
.y1ba{bottom:252.663135px;}
.yc2{bottom:252.978589px;}
.y20f{bottom:255.065197px;}
.y167{bottom:255.747275px;}
.y25a{bottom:256.335425px;}
.yf4{bottom:259.075050px;}
.y4a{bottom:264.734819px;}
.y76{bottom:267.158434px;}
.y119{bottom:271.242345px;}
.y1d5{bottom:272.342400px;}
.y1b9{bottom:272.429396px;}
.yc1{bottom:272.786853px;}
.y20e{bottom:274.831458px;}
.y166{bottom:275.513535px;}
.y259{bottom:276.101685px;}
.y49{bottom:284.501079px;}
.y196{bottom:285.322356px;}
.y75{bottom:286.924695px;}
.y118{bottom:291.008605px;}
.yf3{bottom:291.817500px;}
.y1b8{bottom:292.195656px;}
.y20d{bottom:294.597718px;}
.y165{bottom:295.279796px;}
.y258{bottom:295.867946px;}
.y48{bottom:304.267340px;}
.y195{bottom:305.088617px;}
.y74{bottom:306.690955px;}
.yc0{bottom:307.414963px;}
.y117{bottom:310.774866px;}
.y22e{bottom:311.571300px;}
.y20c{bottom:314.363979px;}
.y257{bottom:315.634206px;}
.yd7{bottom:319.627467px;}
.y47{bottom:324.033600px;}
.y194{bottom:324.854877px;}
.y73{bottom:326.457216px;}
.y1b7{bottom:326.823767px;}
.ybf{bottom:327.181224px;}
.yf2{bottom:328.822374px;}
.y164{bottom:329.907906px;}
.y22d{bottom:331.373735px;}
.yd6{bottom:333.216809px;}
.y20b{bottom:334.130239px;}
.y256{bottom:335.400467px;}
.y16{bottom:336.015150px;}
.y1ef{bottom:339.796189px;}
.y193{bottom:344.621138px;}
.y116{bottom:345.402976px;}
.y72{bottom:346.223476px;}
.y1b6{bottom:346.590027px;}
.yd5{bottom:346.806150px;}
.ybe{bottom:346.947484px;}
.yf1{bottom:348.588635px;}
.y163{bottom:349.674167px;}
.y27c{bottom:350.113698px;}
.y20a{bottom:353.896500px;}
.y15{bottom:354.015150px;}
.y255{bottom:355.166727px;}
.y144{bottom:359.354876px;}
.y1ee{bottom:359.565439px;}
.y46{bottom:359.748300px;}
.y1d4{bottom:361.451877px;}
.y192{bottom:364.387398px;}
.y115{bottom:365.169237px;}
.y22c{bottom:366.001845px;}
.y1b5{bottom:366.356288px;}
.ybd{bottom:366.713745px;}
.yf0{bottom:368.354895px;}
.y162{bottom:369.440427px;}
.y14{bottom:372.015150px;}
.y143{bottom:372.944217px;}
.y179{bottom:374.551108px;}
.y254{bottom:374.932988px;}
.y71{bottom:380.851587px;}
.y1d3{bottom:381.218138px;}
.y27b{bottom:384.741809px;}
.y114{bottom:384.935497px;}
.y22b{bottom:385.768106px;}
.y142{bottom:386.533559px;}
.yef{bottom:388.121155px;}
.y178{bottom:388.140450px;}
.y209{bottom:388.572743px;}
.y161{bottom:389.206688px;}
.y1ed{bottom:394.196539px;}
.y253{bottom:394.699248px;}
.y45{bottom:396.735087px;}
.y191{bottom:399.015509px;}
.y141{bottom:400.122900px;}
.y70{bottom:400.617847px;}
.y1b4{bottom:400.984398px;}
.ybc{bottom:401.341856px;}
.y27a{bottom:404.508069px;}
.y113{bottom:404.701758px;}
.y22a{bottom:405.534366px;}
.yee{bottom:407.887416px;}
.y13{bottom:408.015150px;}
.y208{bottom:408.339003px;}
.y160{bottom:408.972948px;}
.y1d2{bottom:415.846248px;}
.y44{bottom:416.501347px;}
.y190{bottom:418.781769px;}
.y26{bottom:419.265150px;}
.y6f{bottom:420.384108px;}
.y1b3{bottom:420.750659px;}
.ybb{bottom:421.108116px;}
.y279{bottom:424.274330px;}
.y112{bottom:424.468018px;}
.y229{bottom:425.300627px;}
.y12{bottom:426.015150px;}
.yed{bottom:427.653676px;}
.y207{bottom:428.105263px;}
.y15f{bottom:428.739209px;}
.y1ec{bottom:428.824650px;}
.y252{bottom:429.327358px;}
.y1d1{bottom:435.612509px;}
.y43{bottom:436.267608px;}
.y25{bottom:437.265150px;}
.y18f{bottom:438.548030px;}
.y6e{bottom:440.150368px;}
.yba{bottom:440.874376px;}
.y292{bottom:443.892069px;}
.y11{bottom:444.015150px;}
.y111{bottom:444.234279px;}
.y228{bottom:445.066887px;}
.y15e{bottom:448.505469px;}
.y251{bottom:449.093619px;}
.y24{bottom:455.265150px;}
.y1b2{bottom:455.378769px;}
.y42{bottom:456.033868px;}
.y18e{bottom:458.314290px;}
.y278{bottom:458.902440px;}
.y6d{bottom:459.916629px;}
.yec{bottom:462.281787px;}
.y206{bottom:462.733374px;}
.y1eb{bottom:463.458740px;}
.y110{bottom:464.000539px;}
.y227{bottom:464.833147px;}
.y15d{bottom:468.271730px;}
.y250{bottom:468.859879px;}
.y1b1{bottom:475.145030px;}
.yb9{bottom:475.502487px;}
.y41{bottom:475.800129px;}
.y291{bottom:478.520180px;}
.y277{bottom:478.668701px;}
.y6c{bottom:479.682889px;}
.y10{bottom:480.015150px;}
.yeb{bottom:482.048047px;}
.y205{bottom:482.499634px;}
.y1f2{bottom:483.262017px;}
.y10f{bottom:483.766800px;}
.y226{bottom:484.599408px;}
.y15c{bottom:488.037990px;}
.y23{bottom:491.265150px;}
.y18d{bottom:492.942401px;}
.y1d0{bottom:494.911290px;}
.yb8{bottom:495.268748px;}
.y40{bottom:495.566390px;}
.y1f1{bottom:496.851359px;}
.yf{bottom:498.015150px;}
.y1ea{bottom:498.086850px;}
.y290{bottom:498.286440px;}
.y276{bottom:498.434961px;}
.y6b{bottom:499.449150px;}
.yea{bottom:501.814308px;}
.y204{bottom:502.265895px;}
.y24f{bottom:503.487990px;}
.y91{bottom:504.368658px;}
.y15b{bottom:507.804251px;}
.y22{bottom:509.265150px;}
.y1b0{bottom:509.773140px;}
.y1f0{bottom:510.440700px;}
.y18c{bottom:512.708661px;}
.ya2{bottom:514.644366px;}
.y1cf{bottom:514.677551px;}
.yb7{bottom:515.035008px;}
.y3f{bottom:515.332650px;}
.ye{bottom:516.015150px;}
.y28f{bottom:518.052701px;}
.y225{bottom:519.227519px;}
.y10e{bottom:519.481650px;}
.ye9{bottom:521.580569px;}
.y203{bottom:522.032156px;}
.y24e{bottom:523.254250px;}
.y90{bottom:524.134918px;}
.y21{bottom:527.265150px;}
.y15a{bottom:527.570511px;}
.y1af{bottom:529.539401px;}
.y6a{bottom:532.191450px;}
.y18b{bottom:532.474922px;}
.y1e9{bottom:532.717950px;}
.y275{bottom:533.063071px;}
.yb6{bottom:534.801268px;}
.y27e{bottom:537.272309px;}
.y28e{bottom:537.818961px;}
.y224{bottom:538.993779px;}
.ye8{bottom:541.346829px;}
.y202{bottom:541.798416px;}
.y24d{bottom:543.020511px;}
.y8f{bottom:543.901179px;}
.y159{bottom:547.336772px;}
.y3e{bottom:548.075100px;}
.ya1{bottom:549.272476px;}
.y1ae{bottom:549.305661px;}
.y27d{bottom:550.861650px;}
.yd{bottom:552.015150px;}
.y18a{bottom:552.241182px;}
.y1e8{bottom:552.487200px;}
.y274{bottom:552.829332px;}
.y10d{bottom:556.474416px;}
.y28d{bottom:557.585222px;}
.y223{bottom:558.760040px;}
.ye7{bottom:561.113090px;}
.y24c{bottom:562.786771px;}
.y20{bottom:563.265150px;}
.y8e{bottom:563.667440px;}
.y158{bottom:567.103032px;}
.y1ad{bottom:569.071922px;}
.y69{bottom:569.220540px;}
.yb5{bottom:569.429379px;}
.yc{bottom:570.015150px;}
.y189{bottom:572.007443px;}
.y1e7{bottom:572.259440px;}
.y13c{bottom:572.395800px;}
.y2b{bottom:574.027317px;}
.y10c{bottom:576.240676px;}
.y201{bottom:576.426526px;}
.y222{bottom:578.535268px;}
.ye6{bottom:580.879350px;}
.y1f{bottom:581.265150px;}
.y24b{bottom:582.553032px;}
.y8d{bottom:583.433700px;}
.y12a{bottom:583.473776px;}
.ya0{bottom:583.900587px;}
.y3d{bottom:585.079974px;}
.y157{bottom:586.869293px;}
.y273{bottom:587.457442px;}
.y2a{bottom:587.616659px;}
.yb{bottom:588.015150px;}
.y1ce{bottom:588.838182px;}
.y68{bottom:588.986801px;}
.yb4{bottom:589.195639px;}
.y188{bottom:591.773703px;}
.y1e6{bottom:592.025700px;}
.y13b{bottom:592.189116px;}
.y28c{bottom:592.213332px;}
.y10b{bottom:596.006937px;}
.y200{bottom:596.192787px;}
.y129{bottom:597.063117px;}
.y221{bottom:598.301529px;}
.y1e{bottom:599.265150px;}
.y29{bottom:601.206000px;}
.y299{bottom:601.982989px;}
.y24a{bottom:602.319292px;}
.y9f{bottom:603.666847px;}
.y1ac{bottom:603.700032px;}
.y3c{bottom:604.846235px;}
.y272{bottom:607.223703px;}
.y1cd{bottom:608.604443px;}
.y67{bottom:608.753061px;}
.yb3{bottom:608.961900px;}
.y54{bottom:610.407717px;}
.y128{bottom:610.652459px;}
.y187{bottom:611.539963px;}
.y1e5{bottom:611.794950px;}
.y28b{bottom:611.979593px;}
.y26a{bottom:613.609340px;}
.y10a{bottom:615.773197px;}
.y1ff{bottom:615.959047px;}
.y8c{bottom:616.176150px;}
.ye5{bottom:616.594050px;}
.y1d{bottom:617.265150px;}
.y220{bottom:618.067790px;}
.y156{bottom:621.497403px;}
.y298{bottom:621.788413px;}
.y249{bottom:622.085553px;}
.y1ab{bottom:623.466293px;}
.y53{bottom:623.997059px;}
.ya{bottom:624.015150px;}
.y127{bottom:624.241800px;}
.y3b{bottom:624.612495px;}
.y13a{bottom:626.817227px;}
.y1cc{bottom:628.370703px;}
.y66{bottom:628.519322px;}
.y1e4{bottom:631.564200px;}
.y28a{bottom:631.745853px;}
.y269{bottom:633.381579px;}
.y1c{bottom:635.265150px;}
.y109{bottom:635.539458px;}
.y1fe{bottom:635.725308px;}
.y52{bottom:637.586400px;}
.y21f{bottom:637.834050px;}
.y9e{bottom:638.294958px;}
.y140{bottom:639.840176px;}
.y180{bottom:640.205301px;}
.y155{bottom:641.263664px;}
.yb2{bottom:641.704350px;}
.y248{bottom:641.851813px;}
.y9{bottom:642.015150px;}
.y1aa{bottom:643.232553px;}
.y3a{bottom:644.378756px;}
.y186{bottom:646.168074px;}
.y139{bottom:646.583487px;}
.y1cb{bottom:648.136964px;}
.y1e3{bottom:651.336589px;}
.y289{bottom:651.512113px;}
.y268{bottom:653.147840px;}
.y8b{bottom:653.189993px;}
.y1b{bottom:653.265150px;}
.y13f{bottom:653.429517px;}
.ye4{bottom:653.562900px;}
.y17f{bottom:653.794643px;}
.y1fd{bottom:655.491568px;}
.y297{bottom:656.416524px;}
.ya4{bottom:657.374158px;}
.y9d{bottom:658.061218px;}
.y154{bottom:661.029924px;}
.y271{bottom:661.618074px;}
.y1a9{bottom:662.998814px;}
.y65{bottom:663.147432px;}
.y39{bottom:664.145016px;}
.y185{bottom:665.934334px;}
.y138{bottom:666.349747px;}
.y13e{bottom:667.018859px;}
.y17e{bottom:667.383984px;}
.y108{bottom:670.167569px;}
.y21e{bottom:670.576500px;}
.y293{bottom:670.684800px;}
.ya3{bottom:670.963500px;}
.y1e2{bottom:671.102850px;}
.y1a{bottom:671.265150px;}
.y288{bottom:671.278374px;}
.y8a{bottom:672.956253px;}
.ye3{bottom:673.332150px;}
.y1fc{bottom:675.257829px;}
.y296{bottom:676.182784px;}
.y247{bottom:676.479924px;}
.y9c{bottom:677.827479px;}
.y8{bottom:678.015150px;}
.yb1{bottom:678.703095px;}
.y13d{bottom:680.608200px;}
.y153{bottom:680.796185px;}
.y17d{bottom:680.973325px;}
.y1a8{bottom:682.765074px;}
.y64{bottom:682.913693px;}
.y38{bottom:683.911277px;}
.y184{bottom:685.700595px;}
.y137{bottom:686.116008px;}
.y267{bottom:687.781929px;}
.y107{bottom:689.933829px;}
.y1e1{bottom:690.872100px;}
.y287{bottom:691.044635px;}
.y89{bottom:692.722514px;}
.y26b{bottom:693.008550px;}
.ye2{bottom:693.101400px;}
.y17c{bottom:694.562667px;}
.y1fb{bottom:695.024089px;}
.y7{bottom:696.015150px;}
.y246{bottom:696.246184px;}
.y9b{bottom:697.593739px;}
.yb0{bottom:698.469355px;}
.y152{bottom:700.562445px;}
.y1ca{bottom:702.531335px;}
.y63{bottom:702.679953px;}
.y37{bottom:703.677537px;}
.y136{bottom:705.882269px;}
.y19{bottom:707.265150px;}
.y21d{bottom:707.545200px;}
.y266{bottom:707.548190px;}
.y17b{bottom:708.152008px;}
.y106{bottom:709.700089px;}
.y1e0{bottom:710.644339px;}
.y286{bottom:710.810895px;}
.y88{bottom:712.488774px;}
.ye1{bottom:712.891726px;}
.y6{bottom:714.015150px;}
.y1fa{bottom:714.790350px;}
.y245{bottom:716.012445px;}
.y1a7{bottom:717.393184px;}
.yaf{bottom:718.235616px;}
.y151{bottom:720.328706px;}
.yd4{bottom:720.889950px;}
.y17a{bottom:721.741350px;}
.y1c9{bottom:722.297595px;}
.y62{bottom:722.446213px;}
.y36{bottom:723.443798px;}
.y18{bottom:725.265150px;}
.y135{bottom:725.648529px;}
.y265{bottom:727.314450px;}
.y21c{bottom:727.350624px;}
.y105{bottom:729.466350px;}
.y1df{bottom:730.410600px;}
.y295{bottom:730.577155px;}
.y5{bottom:732.015150px;}
.y9a{bottom:732.221850px;}
.y87{bottom:732.255034px;}
.ye0{bottom:732.657987px;}
.y244{bottom:735.778705px;}
.y150{bottom:740.094966px;}
.yd3{bottom:740.662039px;}
.y1c8{bottom:742.063856px;}
.y61{bottom:742.212474px;}
.y17{bottom:743.265150px;}
.y134{bottom:745.414789px;}
.y285{bottom:745.439006px;}
.y264{bottom:747.083700px;}
.y21b{bottom:747.116885px;}
.y1de{bottom:750.180000px;}
.y294{bottom:750.343416px;}
.y1f9{bottom:750.505050px;}
.y86{bottom:752.021295px;}
.y104{bottom:752.489759px;}
.yae{bottom:752.863726px;}
.y219{bottom:754.037758px;}
.y243{bottom:755.544966px;}
.y35{bottom:758.071908px;}
.y14f{bottom:759.861227px;}
.y1c7{bottom:761.830116px;}
.y60{bottom:761.978734px;}
.y284{bottom:765.205266px;}
.y103{bottom:766.079100px;}
.y21a{bottom:766.883145px;}
.ydf{bottom:767.286097px;}
.y218{bottom:767.627100px;}
.y263{bottom:767.728976px;}
.y1dd{bottom:769.967337px;}
.y1a6{bottom:771.787556px;}
.yad{bottom:772.629987px;}
.yd2{bottom:775.290150px;}
.y270{bottom:775.311226px;}
.y177{bottom:776.691966px;}
.y34{bottom:777.838169px;}
.y14e{bottom:779.627487px;}
.y133{bottom:780.067116px;}
.y262{bottom:781.318317px;}
.y5f{bottom:781.744995px;}
.y27{bottom:783.465450px;}
.y283{bottom:784.971526px;}
.y85{bottom:786.649406px;}
.yde{bottom:787.052358px;}
.y1f8{bottom:787.491837px;}
.y1dc{bottom:789.733597px;}
.y242{bottom:790.173076px;}
.y1a5{bottom:791.553816px;}
.yac{bottom:792.396247px;}
.y238{bottom:792.842005px;}
.y261{bottom:794.907659px;}
.y26f{bottom:795.077487px;}
.y1c6{bottom:796.458227px;}
.y33{bottom:797.604429px;}
.y14d{bottom:799.393748px;}
.y132{bottom:799.833376px;}
.y5e{bottom:801.511255px;}
.y282{bottom:804.737787px;}
.y84{bottom:806.415666px;}
.ydd{bottom:806.818618px;}
.y1f7{bottom:807.258097px;}
.y260{bottom:808.497000px;}
.y1db{bottom:809.499858px;}
.yd1{bottom:809.924389px;}
.y176{bottom:811.320076px;}
.yab{bottom:812.162508px;}
.y237{bottom:812.608266px;}
.y26e{bottom:814.843747px;}
.y32{bottom:817.370690px;}
.y14c{bottom:819.160008px;}
.y131{bottom:819.599637px;}
.y5d{bottom:821.277516px;}
.y281{bottom:824.504047px;}
.y241{bottom:824.801187px;}
.y83{bottom:826.181927px;}
.y1f6{bottom:827.024358px;}
.y1da{bottom:829.266119px;}
.yd0{bottom:829.690650px;}
.y175{bottom:831.086337px;}
.y236{bottom:832.374527px;}
.y26d{bottom:834.610008px;}
.y31{bottom:837.136950px;}
.y14b{bottom:838.926268px;}
.y130{bottom:839.365898px;}
.y5c{bottom:841.043776px;}
.ydc{bottom:841.446729px;}
.y280{bottom:844.270308px;}
.y240{bottom:844.567447px;}
.y82{bottom:845.948187px;}
.yaa{bottom:846.790618px;}
.ycf{bottom:849.471858px;}
.y1a4{bottom:850.852598px;}
.y235{bottom:852.140787px;}
.y183{bottom:853.788119px;}
.y14a{bottom:858.692529px;}
.y12f{bottom:859.132158px;}
.y5b{bottom:860.810037px;}
.ydb{bottom:861.212989px;}
.y1d9{bottom:863.894229px;}
.y27f{bottom:864.036568px;}
.y23f{bottom:864.333708px;}
.y81{bottom:865.714448px;}
.ya9{bottom:866.556879px;}
.y1{bottom:868.525500px;}
.yce{bottom:869.238118px;}
.y1a3{bottom:870.618858px;}
.y234{bottom:871.907048px;}
.y30{bottom:872.851650px;}
.y182{bottom:873.554379px;}
.y3{bottom:874.772700px;}
.y149{bottom:878.458789px;}
.y12e{bottom:878.898418px;}
.y5a{bottom:880.576298px;}
.yda{bottom:880.979250px;}
.y23e{bottom:884.099968px;}
.y174{bottom:885.480708px;}
.ya8{bottom:886.323139px;}
.y26c{bottom:889.004379px;}
.y1a2{bottom:890.385119px;}
.y233{bottom:891.673308px;}
.y181{bottom:893.320639px;}
.y1d8{bottom:898.522340px;}
.y12d{bottom:898.664679px;}
.y59{bottom:900.342558px;}
.ycd{bottom:903.866229px;}
.y173{bottom:905.246968px;}
.ya7{bottom:906.089400px;}
.y2f{bottom:909.504660px;}
.y1c5{bottom:910.151379px;}
.y232{bottom:911.439568px;}
.y148{bottom:913.086900px;}
.yd9{bottom:913.721700px;}
.y1d7{bottom:918.288600px;}
.y12c{bottom:918.430940px;}
.y58{bottom:920.108819px;}
.ycc{bottom:923.632489px;}
.y126{bottom:925.013229px;}
.y231{bottom:931.205829px;}
.y2e{bottom:934.621050px;}
.y12b{bottom:938.197200px;}
.ya6{bottom:938.831850px;}
.y57{bottom:939.875079px;}
.ycb{bottom:943.398750px;}
.y125{bottom:944.779489px;}
.yd8{bottom:950.374560px;}
.y230{bottom:950.972090px;}
.y56{bottom:959.641339px;}
.y22f{bottom:970.738350px;}
.ya5{bottom:975.490950px;}
.y55{bottom:979.407600px;}
.hc{height:13.200074px;}
.h8{height:28.038394px;}
.h4{height:40.218750px;}
.hf{height:40.724952px;}
.he{height:41.276466px;}
.h5{height:42.840000px;}
.hb{height:43.192252px;}
.h3{height:47.759766px;}
.hd{height:48.281250px;}
.ha{height:49.531426px;}
.h9{height:53.659114px;}
.h6{height:126.000000px;}
.h1{height:249.636000px;}
.h2{height:428.980440px;}
.h7{height:993.000000px;}
.h0{height:1188.000000px;}
.w3{width:6.675000px;}
.w4{width:13.348500px;}
.w2{width:756.000000px;}
.w1{width:827.280000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:31.581300px;}
.x1d{left:42.727688px;}
.x1{left:45.360000px;}
.x1a{left:48.300900px;}
.x1c{left:55.112550px;}
.x3{left:60.750000px;}
.x4{left:62.887500px;}
.x8{left:81.000000px;}
.x5{left:102.222000px;}
.x7{left:111.654000px;}
.xd{left:162.365100px;}
.x18{left:176.948250px;}
.x2{left:178.168650px;}
.x11{left:212.724900px;}
.x13{left:241.504200px;}
.x12{left:261.053911px;}
.x17{left:273.086363px;}
.xe{left:285.507013px;}
.xc{left:296.307000px;}
.x19{left:358.738900px;}
.x6{left:484.405800px;}
.x9{left:496.012350px;}
.x1b{left:499.727850px;}
.x1e{left:519.233850px;}
.x15{left:542.455500px;}
.x10{left:546.170850px;}
.x16{left:565.677000px;}
.xf{left:612.120150px;}
.x14{left:796.651520px;}
.xb{left:803.324982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.061825pt;}
.ls6{letter-spacing:-0.047558pt;}
.ls4{letter-spacing:-0.036989pt;}
.ls5{letter-spacing:-0.020608pt;}
.ls3{letter-spacing:-0.015853pt;}
.ls1{letter-spacing:-0.006341pt;}
.ls2{letter-spacing:-0.005284pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-53.333333pt;}
.ws7{word-spacing:-17.173600pt;}
.ws9{word-spacing:-17.152992pt;}
.wsb{word-spacing:-17.111775pt;}
.ws4{word-spacing:-15.846192pt;}
.ws5{word-spacing:-13.210533pt;}
.ws6{word-spacing:-13.205249pt;}
.wsa{word-spacing:-13.194681pt;}
.ws2{word-spacing:-12.106667pt;}
.ws8{word-spacing:-9.082267pt;}
.ws0{word-spacing:-0.544737pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-1906.745715pt;}
._e{margin-left:-1504.775607pt;}
._10{margin-left:-1425.512407pt;}
._11{margin-left:-1292.994161pt;}
._c{margin-left:-1176.745685pt;}
._f{margin-left:-1155.330579pt;}
._d{margin-left:-1090.397421pt;}
._b{margin-left:-412.327166pt;}
._2{margin-left:-7.397333pt;}
._9{margin-left:-6.076845pt;}
._8{margin-left:-4.437333pt;}
._1{margin-left:-3.141333pt;}
._7{margin-left:-2.080000pt;}
._3{margin-left:-1.066667pt;}
._5{width:1.152000pt;}
._4{width:2.218667pt;}
._6{width:5.493333pt;}
._0{width:888.896000pt;}
.fs6{font-size:36.329067pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs9{font-size:52.842133pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:63.410133pt;}
.fs7{font-size:68.694400pt;}
.fs5{font-size:160.000000pt;}
.fs1{font-size:448.606933pt;}
.fs0{font-size:544.737067pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:2.245333pt;}
.y124{bottom:7.749991pt;}
.y1c4{bottom:9.257760pt;}
.y99{bottom:15.590753pt;}
.y147{bottom:16.958904pt;}
.y1a1{bottom:20.718169pt;}
.y172{bottom:20.850275pt;}
.y80{bottom:21.703277pt;}
.y123{bottom:25.320000pt;}
.y1c3{bottom:26.827769pt;}
.y146{bottom:29.038319pt;}
.y98{bottom:33.160763pt;}
.y50{bottom:36.266602pt;}
.y1a0{bottom:38.288179pt;}
.y171{bottom:38.420284pt;}
.y2{bottom:38.504800pt;}
.y7f{bottom:39.273287pt;}
.y145{bottom:41.117733pt;}
.yca{bottom:44.257724pt;}
.y1c2{bottom:44.397779pt;}
.y97{bottom:50.730772pt;}
.y102{bottom:52.871779pt;}
.y122{bottom:54.424533pt;}
.y19f{bottom:55.858188pt;}
.y170{bottom:55.990293pt;}
.y4{bottom:56.069867pt;}
.y7e{bottom:56.843296pt;}
.y217{bottom:59.711324pt;}
.yc9{bottom:61.830524pt;}
.y101{bottom:64.951193pt;}
.y96{bottom:68.300781pt;}
.y19e{bottom:73.428197pt;}
.y16f{bottom:73.560303pt;}
.y7d{bottom:74.413305pt;}
.y1c1{bottom:75.178321pt;}
.y100{bottom:77.030608pt;}
.y216{bottom:77.281333pt;}
.yc8{bottom:79.411163pt;}
.yfb{bottom:80.877801pt;}
.y95{bottom:85.870791pt;}
.y121{bottom:87.333699pt;}
.yff{bottom:89.110023pt;}
.y19d{bottom:90.998207pt;}
.y16e{bottom:91.130312pt;}
.y1c0{bottom:92.748331pt;}
.yfa{bottom:98.447811pt;}
.yfe{bottom:101.189437pt;}
.y28{bottom:101.333333pt;}
.y94{bottom:103.440800pt;}
.y120{bottom:104.903708pt;}
.y7c{bottom:105.193848pt;}
.y215{bottom:108.072639pt;}
.y19c{bottom:108.568216pt;}
.y16d{bottom:108.700321pt;}
.yc7{bottom:110.191705pt;}
.y1bf{bottom:110.318340pt;}
.yfd{bottom:113.268852pt;}
.yf9{bottom:116.017820pt;}
.y11f{bottom:122.473717pt;}
.y7b{bottom:122.763857pt;}
.y93{bottom:123.906052pt;}
.y2d{bottom:124.855519pt;}
.yfc{bottom:125.348267pt;}
.y214{bottom:125.642648pt;}
.y16c{bottom:126.270331pt;}
.yc6{bottom:127.761715pt;}
.yf8{bottom:133.587829pt;}
.y92{bottom:135.985467pt;}
.y2c{bottom:136.934933pt;}
.y19b{bottom:139.348759pt;}
.y25f{bottom:140.003664pt;}
.y11e{bottom:140.043727pt;}
.y7a{bottom:140.333867pt;}
.y1be{bottom:141.098883pt;}
.y213{bottom:143.212657pt;}
.y16b{bottom:143.840340pt;}
.yc5{bottom:145.331724pt;}
.y23d{bottom:147.238875pt;}
.y4f{bottom:147.469792pt;}
.y19a{bottom:156.918768pt;}
.y25e{bottom:157.573673pt;}
.y1f5{bottom:158.187171pt;}
.y1bd{bottom:158.668892pt;}
.y23c{bottom:159.318289pt;}
.y212{bottom:160.782667pt;}
.y16a{bottom:161.410349pt;}
.yc4{bottom:162.901733pt;}
.yf7{bottom:164.368372pt;}
.y4e{bottom:165.039801pt;}
.y79{bottom:169.438267pt;}
.y1f4{bottom:170.266585pt;}
.y11d{bottom:170.824269pt;}
.y23b{bottom:171.397704pt;}
.y199{bottom:174.488777pt;}
.y25d{bottom:175.143683pt;}
.y1f3{bottom:182.346000pt;}
.y4d{bottom:182.609811pt;}
.y23a{bottom:183.477119pt;}
.y11c{bottom:188.394279pt;}
.y1bc{bottom:189.449435pt;}
.y211{bottom:191.584601pt;}
.yc3{bottom:192.006133pt;}
.y169{bottom:192.190892pt;}
.y25c{bottom:192.713692pt;}
.yf6{bottom:195.148915pt;}
.y239{bottom:195.556533pt;}
.y4c{bottom:200.179820pt;}
.y78{bottom:202.334145pt;}
.y198{bottom:205.269320pt;}
.y11b{bottom:205.964288pt;}
.y1bb{bottom:207.019444pt;}
.y210{bottom:209.154611pt;}
.y168{bottom:209.760901pt;}
.y25b{bottom:210.283701pt;}
.yf5{bottom:212.718924pt;}
.y4b{bottom:217.749829pt;}
.y77{bottom:219.904155pt;}
.y197{bottom:222.839329pt;}
.y11a{bottom:223.534297pt;}
.y1d6{bottom:224.512124pt;}
.y1ba{bottom:224.589453pt;}
.yc2{bottom:224.869857pt;}
.y20f{bottom:226.724620pt;}
.y167{bottom:227.330911pt;}
.y25a{bottom:227.853711pt;}
.yf4{bottom:230.288933pt;}
.y4a{bottom:235.319839pt;}
.y76{bottom:237.474164pt;}
.y119{bottom:241.104307pt;}
.y1d5{bottom:242.082133pt;}
.y1b9{bottom:242.159463pt;}
.yc1{bottom:242.477203pt;}
.y20e{bottom:244.294629pt;}
.y166{bottom:244.900920pt;}
.y259{bottom:245.423720pt;}
.y49{bottom:252.889848pt;}
.y196{bottom:253.619872pt;}
.y75{bottom:255.044173pt;}
.y118{bottom:258.674316pt;}
.yf3{bottom:259.393333pt;}
.y1b8{bottom:259.729472pt;}
.y20d{bottom:261.864639pt;}
.y165{bottom:262.470929pt;}
.y258{bottom:262.993729pt;}
.y48{bottom:270.459857pt;}
.y195{bottom:271.189881pt;}
.y74{bottom:272.614183pt;}
.yc0{bottom:273.257745pt;}
.y117{bottom:276.244325pt;}
.y22e{bottom:276.952267pt;}
.y20c{bottom:279.434648pt;}
.y257{bottom:280.563739pt;}
.yd7{bottom:284.113304pt;}
.y47{bottom:288.029867pt;}
.y194{bottom:288.759891pt;}
.y73{bottom:290.184192pt;}
.y1b7{bottom:290.510015pt;}
.ybf{bottom:290.827755pt;}
.yf2{bottom:292.286555pt;}
.y164{bottom:293.251472pt;}
.y22d{bottom:294.554431pt;}
.yd6{bottom:296.192719pt;}
.y20b{bottom:297.004657pt;}
.y256{bottom:298.133748pt;}
.y16{bottom:298.680133pt;}
.y1ef{bottom:302.041057pt;}
.y193{bottom:306.329900pt;}
.y116{bottom:307.024868pt;}
.y72{bottom:307.754201pt;}
.y1b6{bottom:308.080024pt;}
.yd5{bottom:308.272133pt;}
.ybe{bottom:308.397764pt;}
.yf1{bottom:309.856564pt;}
.y163{bottom:310.821481pt;}
.y27c{bottom:311.212176pt;}
.y20a{bottom:314.574667pt;}
.y15{bottom:314.680133pt;}
.y255{bottom:315.703757pt;}
.y144{bottom:319.426556pt;}
.y1ee{bottom:319.613724pt;}
.y46{bottom:319.776267pt;}
.y1d4{bottom:321.290557pt;}
.y192{bottom:323.899909pt;}
.y115{bottom:324.594877pt;}
.y22c{bottom:325.334973pt;}
.y1b5{bottom:325.650033pt;}
.ybd{bottom:325.967773pt;}
.yf0{bottom:327.426573pt;}
.y162{bottom:328.391491pt;}
.y14{bottom:330.680133pt;}
.y143{bottom:331.505971pt;}
.y179{bottom:332.934319pt;}
.y254{bottom:333.273767pt;}
.y71{bottom:338.534744pt;}
.y1d3{bottom:338.860567pt;}
.y27b{bottom:341.992719pt;}
.y114{bottom:342.164887pt;}
.y22b{bottom:342.904983pt;}
.y142{bottom:343.585385pt;}
.yef{bottom:344.996583pt;}
.y178{bottom:345.013733pt;}
.y209{bottom:345.397993pt;}
.y161{bottom:345.961500pt;}
.y1ed{bottom:350.396924pt;}
.y253{bottom:350.843776pt;}
.y45{bottom:352.653411pt;}
.y191{bottom:354.680452pt;}
.y141{bottom:355.664800pt;}
.y70{bottom:356.104753pt;}
.y1b4{bottom:356.430576pt;}
.ybc{bottom:356.748316pt;}
.y27a{bottom:359.562728pt;}
.y113{bottom:359.734896pt;}
.y22a{bottom:360.474992pt;}
.yee{bottom:362.566592pt;}
.y13{bottom:362.680133pt;}
.y208{bottom:362.968003pt;}
.y160{bottom:363.531509pt;}
.y1d2{bottom:369.641109pt;}
.y44{bottom:370.223420pt;}
.y190{bottom:372.250461pt;}
.y26{bottom:372.680133pt;}
.y6f{bottom:373.674763pt;}
.y1b3{bottom:374.000585pt;}
.ybb{bottom:374.318325pt;}
.y279{bottom:377.132737pt;}
.y112{bottom:377.304905pt;}
.y229{bottom:378.045001pt;}
.y12{bottom:378.680133pt;}
.yed{bottom:380.136601pt;}
.y207{bottom:380.538012pt;}
.y15f{bottom:381.101519pt;}
.y1ec{bottom:381.177467pt;}
.y252{bottom:381.624319pt;}
.y1d1{bottom:387.211119pt;}
.y43{bottom:387.793429pt;}
.y25{bottom:388.680133pt;}
.y18f{bottom:389.820471pt;}
.y6e{bottom:391.244772pt;}
.yba{bottom:391.888335pt;}
.y292{bottom:394.570728pt;}
.y11{bottom:394.680133pt;}
.y111{bottom:394.874915pt;}
.y228{bottom:395.615011pt;}
.y15e{bottom:398.671528pt;}
.y251{bottom:399.194328pt;}
.y24{bottom:404.680133pt;}
.y1b2{bottom:404.781128pt;}
.y42{bottom:405.363439pt;}
.y18e{bottom:407.390480pt;}
.y278{bottom:407.913280pt;}
.y6d{bottom:408.814781pt;}
.yec{bottom:410.917144pt;}
.y206{bottom:411.318555pt;}
.y1eb{bottom:411.963324pt;}
.y110{bottom:412.444924pt;}
.y227{bottom:413.185020pt;}
.y15d{bottom:416.241537pt;}
.y250{bottom:416.764337pt;}
.y1b1{bottom:422.351137pt;}
.yb9{bottom:422.668877pt;}
.y41{bottom:422.933448pt;}
.y291{bottom:425.351271pt;}
.y277{bottom:425.483289pt;}
.y6c{bottom:426.384791pt;}
.y10{bottom:426.680133pt;}
.yeb{bottom:428.487153pt;}
.y205{bottom:428.888564pt;}
.y1f2{bottom:429.566237pt;}
.y10f{bottom:430.014933pt;}
.y226{bottom:430.755029pt;}
.y15c{bottom:433.811547pt;}
.y23{bottom:436.680133pt;}
.y18d{bottom:438.171023pt;}
.y1d0{bottom:439.921147pt;}
.yb8{bottom:440.238887pt;}
.y40{bottom:440.503457pt;}
.y1f1{bottom:441.645652pt;}
.yf{bottom:442.680133pt;}
.y1ea{bottom:442.743867pt;}
.y290{bottom:442.921280pt;}
.y276{bottom:443.053299pt;}
.y6b{bottom:443.954800pt;}
.yea{bottom:446.057163pt;}
.y204{bottom:446.458573pt;}
.y24f{bottom:447.544880pt;}
.y91{bottom:448.327696pt;}
.y15b{bottom:451.381556pt;}
.y22{bottom:452.680133pt;}
.y1b0{bottom:453.131680pt;}
.y1f0{bottom:453.725067pt;}
.y18c{bottom:455.741032pt;}
.ya2{bottom:457.461659pt;}
.y1cf{bottom:457.491156pt;}
.yb7{bottom:457.808896pt;}
.y3f{bottom:458.073467pt;}
.ye{bottom:458.680133pt;}
.y28f{bottom:460.491289pt;}
.y225{bottom:461.535572pt;}
.y10e{bottom:461.761467pt;}
.ye9{bottom:463.627172pt;}
.y203{bottom:464.028583pt;}
.y24e{bottom:465.114889pt;}
.y90{bottom:465.897705pt;}
.y21{bottom:468.680133pt;}
.y15a{bottom:468.951565pt;}
.y1af{bottom:470.701689pt;}
.y6a{bottom:473.059067pt;}
.y18b{bottom:473.311041pt;}
.y1e9{bottom:473.527067pt;}
.y275{bottom:473.833841pt;}
.yb6{bottom:475.378905pt;}
.y27e{bottom:477.575385pt;}
.y28e{bottom:478.061299pt;}
.y224{bottom:479.105581pt;}
.ye8{bottom:481.197181pt;}
.y202{bottom:481.598592pt;}
.y24d{bottom:482.684899pt;}
.y8f{bottom:483.467715pt;}
.y159{bottom:486.521575pt;}
.y3e{bottom:487.177867pt;}
.ya1{bottom:488.242201pt;}
.y1ae{bottom:488.271699pt;}
.y27d{bottom:489.654800pt;}
.yd{bottom:490.680133pt;}
.y18a{bottom:490.881051pt;}
.y1e8{bottom:491.099733pt;}
.y274{bottom:491.403851pt;}
.y10d{bottom:494.643925pt;}
.y28d{bottom:495.631308pt;}
.y223{bottom:496.675591pt;}
.ye7{bottom:498.767191pt;}
.y24c{bottom:500.254908pt;}
.y20{bottom:500.680133pt;}
.y8e{bottom:501.037724pt;}
.y158{bottom:504.091584pt;}
.y1ad{bottom:505.841708pt;}
.y69{bottom:505.973813pt;}
.yb5{bottom:506.159448pt;}
.yc{bottom:506.680133pt;}
.y189{bottom:508.451060pt;}
.y1e7{bottom:508.675057pt;}
.y13c{bottom:508.796267pt;}
.y2b{bottom:510.246504pt;}
.y10c{bottom:512.213935pt;}
.y201{bottom:512.379135pt;}
.y222{bottom:514.253572pt;}
.ye6{bottom:516.337200pt;}
.y1f{bottom:516.680133pt;}
.y24b{bottom:517.824917pt;}
.y8d{bottom:518.607733pt;}
.y12a{bottom:518.643356pt;}
.ya0{bottom:519.022744pt;}
.y3d{bottom:520.071088pt;}
.y157{bottom:521.661593pt;}
.y273{bottom:522.184393pt;}
.y2a{bottom:522.325919pt;}
.yb{bottom:522.680133pt;}
.y1ce{bottom:523.411717pt;}
.y68{bottom:523.543823pt;}
.yb4{bottom:523.729457pt;}
.y188{bottom:526.021069pt;}
.y1e6{bottom:526.245067pt;}
.y13b{bottom:526.390325pt;}
.y28c{bottom:526.411851pt;}
.y10b{bottom:529.783944pt;}
.y200{bottom:529.949144pt;}
.y129{bottom:530.722771pt;}
.y221{bottom:531.823581pt;}
.y1e{bottom:532.680133pt;}
.y29{bottom:534.405333pt;}
.y299{bottom:535.095991pt;}
.y24a{bottom:535.394927pt;}
.y9f{bottom:536.592753pt;}
.y1ac{bottom:536.622251pt;}
.y3c{bottom:537.641097pt;}
.y272{bottom:539.754403pt;}
.y1cd{bottom:540.981727pt;}
.y67{bottom:541.113832pt;}
.yb3{bottom:541.299467pt;}
.y54{bottom:542.584637pt;}
.y128{bottom:542.802185pt;}
.y187{bottom:543.591079pt;}
.y1e5{bottom:543.817733pt;}
.y28b{bottom:543.981860pt;}
.y26a{bottom:545.430524pt;}
.y10a{bottom:547.353953pt;}
.y1ff{bottom:547.519153pt;}
.y8c{bottom:547.712133pt;}
.ye5{bottom:548.083600pt;}
.y1d{bottom:548.680133pt;}
.y220{bottom:549.393591pt;}
.y156{bottom:552.442136pt;}
.y298{bottom:552.700812pt;}
.y249{bottom:552.964936pt;}
.y1ab{bottom:554.192260pt;}
.y53{bottom:554.664052pt;}
.ya{bottom:554.680133pt;}
.y127{bottom:554.881600pt;}
.y3b{bottom:555.211107pt;}
.y13a{bottom:557.170868pt;}
.y1cc{bottom:558.551736pt;}
.y66{bottom:558.683841pt;}
.y1e4{bottom:561.390400pt;}
.y28a{bottom:561.551869pt;}
.y269{bottom:563.005848pt;}
.y1c{bottom:564.680133pt;}
.y109{bottom:564.923963pt;}
.y1fe{bottom:565.089163pt;}
.y52{bottom:566.743467pt;}
.y21f{bottom:566.963600pt;}
.y9e{bottom:567.373296pt;}
.y140{bottom:568.746823pt;}
.y180{bottom:569.071379pt;}
.y155{bottom:570.012145pt;}
.yb2{bottom:570.403867pt;}
.y248{bottom:570.534945pt;}
.y9{bottom:570.680133pt;}
.y1aa{bottom:571.762269pt;}
.y3a{bottom:572.781116pt;}
.y186{bottom:574.371621pt;}
.y139{bottom:574.740877pt;}
.y1cb{bottom:576.121745pt;}
.y1e3{bottom:578.965857pt;}
.y289{bottom:579.121879pt;}
.y268{bottom:580.575857pt;}
.y8b{bottom:580.613327pt;}
.y1b{bottom:580.680133pt;}
.y13f{bottom:580.826237pt;}
.ye4{bottom:580.944800pt;}
.y17f{bottom:581.150793pt;}
.y1fd{bottom:582.659172pt;}
.y297{bottom:583.481355pt;}
.ya4{bottom:584.332585pt;}
.y9d{bottom:584.943305pt;}
.y154{bottom:587.582155pt;}
.y271{bottom:588.104955pt;}
.y1a9{bottom:589.332279pt;}
.y65{bottom:589.464384pt;}
.y39{bottom:590.351125pt;}
.y185{bottom:591.941631pt;}
.y138{bottom:592.310887pt;}
.y13e{bottom:592.905652pt;}
.y17e{bottom:593.230208pt;}
.y108{bottom:595.704505pt;}
.y21e{bottom:596.068000pt;}
.y293{bottom:596.164267pt;}
.ya3{bottom:596.412000pt;}
.y1e2{bottom:596.535867pt;}
.y1a{bottom:596.680133pt;}
.y288{bottom:596.691888pt;}
.y8a{bottom:598.183336pt;}
.ye3{bottom:598.517467pt;}
.y1fc{bottom:600.229181pt;}
.y296{bottom:601.051364pt;}
.y247{bottom:601.315488pt;}
.y9c{bottom:602.513315pt;}
.y8{bottom:602.680133pt;}
.yb1{bottom:603.291640pt;}
.y13d{bottom:604.985067pt;}
.y153{bottom:605.152164pt;}
.y17d{bottom:605.309623pt;}
.y1a8{bottom:606.902288pt;}
.y64{bottom:607.034393pt;}
.y38{bottom:607.921135pt;}
.y184{bottom:609.511640pt;}
.y137{bottom:609.880896pt;}
.y267{bottom:611.361715pt;}
.y107{bottom:613.274515pt;}
.y1e1{bottom:614.108533pt;}
.y287{bottom:614.261897pt;}
.y89{bottom:615.753345pt;}
.y26b{bottom:616.007600pt;}
.ye2{bottom:616.090133pt;}
.y17c{bottom:617.389037pt;}
.y1fb{bottom:617.799191pt;}
.y7{bottom:618.680133pt;}
.y246{bottom:618.885497pt;}
.y9b{bottom:620.083324pt;}
.yb0{bottom:620.861649pt;}
.y152{bottom:622.722173pt;}
.y1ca{bottom:624.472297pt;}
.y63{bottom:624.604403pt;}
.y37{bottom:625.491144pt;}
.y136{bottom:627.450905pt;}
.y19{bottom:628.680133pt;}
.y21d{bottom:628.929067pt;}
.y266{bottom:628.931724pt;}
.y17b{bottom:629.468452pt;}
.y106{bottom:630.844524pt;}
.y1e0{bottom:631.683857pt;}
.y286{bottom:631.831907pt;}
.y88{bottom:633.323355pt;}
.ye1{bottom:633.681535pt;}
.y6{bottom:634.680133pt;}
.y1fa{bottom:635.369200pt;}
.y245{bottom:636.455507pt;}
.y1a7{bottom:637.682831pt;}
.yaf{bottom:638.431659pt;}
.y151{bottom:640.292183pt;}
.yd4{bottom:640.791067pt;}
.y17a{bottom:641.547867pt;}
.y1c9{bottom:642.042307pt;}
.y62{bottom:642.174412pt;}
.y36{bottom:643.061153pt;}
.y18{bottom:644.680133pt;}
.y135{bottom:645.020915pt;}
.y265{bottom:646.501733pt;}
.y21c{bottom:646.533888pt;}
.y105{bottom:648.414533pt;}
.y1df{bottom:649.253867pt;}
.y295{bottom:649.401916pt;}
.y5{bottom:650.680133pt;}
.y9a{bottom:650.863867pt;}
.y87{bottom:650.893364pt;}
.ye0{bottom:651.251544pt;}
.y244{bottom:654.025516pt;}
.y150{bottom:657.862192pt;}
.yd3{bottom:658.366257pt;}
.y1c8{bottom:659.612316pt;}
.y61{bottom:659.744421pt;}
.y17{bottom:660.680133pt;}
.y134{bottom:662.590924pt;}
.y285{bottom:662.612449pt;}
.y264{bottom:664.074400pt;}
.y21b{bottom:664.103897pt;}
.y1de{bottom:666.826667pt;}
.y294{bottom:666.971925pt;}
.y1f9{bottom:667.115600pt;}
.y86{bottom:668.463373pt;}
.y104{bottom:668.879785pt;}
.yae{bottom:669.212201pt;}
.y219{bottom:670.255785pt;}
.y243{bottom:671.595525pt;}
.y35{bottom:673.841696pt;}
.y14f{bottom:675.432201pt;}
.y1c7{bottom:677.182325pt;}
.y60{bottom:677.314431pt;}
.y284{bottom:680.182459pt;}
.y103{bottom:680.959200pt;}
.y21a{bottom:681.673907pt;}
.ydf{bottom:682.032087pt;}
.y218{bottom:682.335200pt;}
.y263{bottom:682.425756pt;}
.y1dd{bottom:684.415411pt;}
.y1a6{bottom:686.033383pt;}
.yad{bottom:686.782211pt;}
.yd2{bottom:689.146800pt;}
.y270{bottom:689.165535pt;}
.y177{bottom:690.392859pt;}
.y34{bottom:691.411705pt;}
.y14e{bottom:693.002211pt;}
.y133{bottom:693.392992pt;}
.y262{bottom:694.505171pt;}
.y5f{bottom:694.884440pt;}
.y27{bottom:696.413733pt;}
.y283{bottom:697.752468pt;}
.y85{bottom:699.243916pt;}
.yde{bottom:699.602096pt;}
.y1f8{bottom:699.992744pt;}
.y1dc{bottom:701.985420pt;}
.y242{bottom:702.376068pt;}
.y1a5{bottom:703.603392pt;}
.yac{bottom:704.352220pt;}
.y238{bottom:704.748449pt;}
.y261{bottom:706.584585pt;}
.y26f{bottom:706.735544pt;}
.y1c6{bottom:707.962868pt;}
.y33{bottom:708.981715pt;}
.y14d{bottom:710.572220pt;}
.y132{bottom:710.963001pt;}
.y5e{bottom:712.454449pt;}
.y282{bottom:715.322477pt;}
.y84{bottom:716.813925pt;}
.ydd{bottom:717.172105pt;}
.y1f7{bottom:717.562753pt;}
.y260{bottom:718.664000pt;}
.y1db{bottom:719.555429pt;}
.yd1{bottom:719.932791pt;}
.y176{bottom:721.173401pt;}
.yab{bottom:721.922229pt;}
.y237{bottom:722.318459pt;}
.y26e{bottom:724.305553pt;}
.y32{bottom:726.551724pt;}
.y14c{bottom:728.142229pt;}
.y131{bottom:728.533011pt;}
.y5d{bottom:730.024459pt;}
.y281{bottom:732.892487pt;}
.y241{bottom:733.156611pt;}
.y83{bottom:734.383935pt;}
.y1f6{bottom:735.132763pt;}
.y1da{bottom:737.125439pt;}
.yd0{bottom:737.502800pt;}
.y175{bottom:738.743411pt;}
.y236{bottom:739.888468pt;}
.y26d{bottom:741.875563pt;}
.y31{bottom:744.121733pt;}
.y14b{bottom:745.712239pt;}
.y130{bottom:746.103020pt;}
.y5c{bottom:747.594468pt;}
.ydc{bottom:747.952648pt;}
.y280{bottom:750.462496pt;}
.y240{bottom:750.726620pt;}
.y82{bottom:751.953944pt;}
.yaa{bottom:752.702772pt;}
.ycf{bottom:755.086096pt;}
.y1a4{bottom:756.313420pt;}
.y235{bottom:757.458477pt;}
.y183{bottom:758.922772pt;}
.y14a{bottom:763.282248pt;}
.y12f{bottom:763.673029pt;}
.y5b{bottom:765.164477pt;}
.ydb{bottom:765.522657pt;}
.y1d9{bottom:767.905981pt;}
.y27f{bottom:768.032505pt;}
.y23f{bottom:768.296629pt;}
.y81{bottom:769.523953pt;}
.ya9{bottom:770.272781pt;}
.y1{bottom:772.022667pt;}
.yce{bottom:772.656105pt;}
.y1a3{bottom:773.883429pt;}
.y234{bottom:775.028487pt;}
.y30{bottom:775.868133pt;}
.y182{bottom:776.492781pt;}
.y3{bottom:777.575733pt;}
.y149{bottom:780.852257pt;}
.y12e{bottom:781.243039pt;}
.y5a{bottom:782.734487pt;}
.yda{bottom:783.092667pt;}
.y23e{bottom:785.866639pt;}
.y174{bottom:787.093963pt;}
.ya8{bottom:787.842791pt;}
.y26c{bottom:790.226115pt;}
.y1a2{bottom:791.453439pt;}
.y233{bottom:792.598496pt;}
.y181{bottom:794.062791pt;}
.y1d8{bottom:798.686524pt;}
.y12d{bottom:798.813048pt;}
.y59{bottom:800.304496pt;}
.ycd{bottom:803.436648pt;}
.y173{bottom:804.663972pt;}
.ya7{bottom:805.412800pt;}
.y2f{bottom:808.448587pt;}
.y1c5{bottom:809.023448pt;}
.y232{bottom:810.168505pt;}
.y148{bottom:811.632800pt;}
.yd9{bottom:812.197067pt;}
.y1d7{bottom:816.256533pt;}
.y12c{bottom:816.383057pt;}
.y58{bottom:817.874505pt;}
.ycc{bottom:821.006657pt;}
.y126{bottom:822.233981pt;}
.y231{bottom:827.738515pt;}
.y2e{bottom:830.774267pt;}
.y12b{bottom:833.953067pt;}
.ya6{bottom:834.517200pt;}
.y57{bottom:835.444515pt;}
.ycb{bottom:838.576667pt;}
.y125{bottom:839.803991pt;}
.yd8{bottom:844.777387pt;}
.y230{bottom:845.308524pt;}
.y56{bottom:853.014524pt;}
.y22f{bottom:862.878533pt;}
.ya5{bottom:867.103067pt;}
.y55{bottom:870.584533pt;}
.hc{height:11.733399pt;}
.h8{height:24.923017pt;}
.h4{height:35.750000pt;}
.hf{height:36.199958pt;}
.he{height:36.690192pt;}
.h5{height:38.080000pt;}
.hb{height:38.393113pt;}
.h3{height:42.453125pt;}
.hd{height:42.916667pt;}
.ha{height:44.027934pt;}
.h9{height:47.696991pt;}
.h6{height:112.000000pt;}
.h1{height:221.898667pt;}
.h2{height:381.315947pt;}
.h7{height:882.666667pt;}
.h0{height:1056.000000pt;}
.w3{width:5.933333pt;}
.w4{width:11.865333pt;}
.w2{width:672.000000pt;}
.w1{width:735.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:28.072267pt;}
.x1d{left:37.980167pt;}
.x1{left:40.320000pt;}
.x1a{left:42.934133pt;}
.x1c{left:48.988933pt;}
.x3{left:54.000000pt;}
.x4{left:55.900000pt;}
.x8{left:72.000000pt;}
.x5{left:90.864000pt;}
.x7{left:99.248000pt;}
.xd{left:144.324533pt;}
.x18{left:157.287333pt;}
.x2{left:158.372133pt;}
.x11{left:189.088800pt;}
.x13{left:214.670400pt;}
.x12{left:232.047921pt;}
.x17{left:242.743433pt;}
.xe{left:253.784011pt;}
.xc{left:263.384000pt;}
.x19{left:318.879022pt;}
.x6{left:430.582933pt;}
.x9{left:440.899867pt;}
.x1b{left:444.202533pt;}
.x1e{left:461.541200pt;}
.x15{left:482.182667pt;}
.x10{left:485.485200pt;}
.x16{left:502.824000pt;}
.xf{left:544.106800pt;}
.x14{left:708.134684pt;}
.xb{left:714.066650pt;}
}




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