
    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_34e904a7c87b300b3196d7a6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_2119592aabca752288475767.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_455c5050d28857d930e1b6e1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f7c900738eab175bb296a025.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_0801ab5bc9734164a6481bdf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_9f69bb473c37518f5172755c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.034180;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_10ec9b4f7ddb4c4eaea0cd62.woff')format("woff");}.ff7{font-family:ff7;line-height:1.042480;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_cc5e6359193cdaced6aae381.woff')format("woff");}.ff8{font-family:ff8;line-height:1.042480;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_3e4b057c82824bdbfe7776fb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.034180;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_953e3eb80c92bdf71e0fa936.woff')format("woff");}.ffa{font-family:ffa;line-height:0.768555;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_17896d77c244f7dcb93f67e0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.302400px;}
.ls1f{letter-spacing:-0.280200px;}
.ls1b{letter-spacing:-0.274800px;}
.ls2b{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.237600px;}
.ls21{letter-spacing:-0.217200px;}
.ls20{letter-spacing:-0.212400px;}
.ls2d{letter-spacing:-0.169800px;}
.ls1{letter-spacing:-0.136800px;}
.ls18{letter-spacing:-0.127200px;}
.ls12{letter-spacing:-0.075000px;}
.ls7{letter-spacing:-0.032400px;}
.ls8{letter-spacing:-0.025920px;}
.ls1e{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.017280px;}
.ls25{letter-spacing:-0.008640px;}
.lsd{letter-spacing:-0.005040px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.005040px;}
.ls3{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.052560px;}
.ls13{letter-spacing:0.055403px;}
.ls5{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.175200px;}
.ls26{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.217200px;}
.ls1c{letter-spacing:0.232800px;}
.lsf{letter-spacing:0.280080px;}
.ls14{letter-spacing:0.280200px;}
.ls6{letter-spacing:0.302400px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.364800px;}
.lse{letter-spacing:0.392400px;}
.ls15{letter-spacing:0.479520px;}
.ls23{letter-spacing:0.482400px;}
.ls1d{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.592560px;}
.ls17{letter-spacing:0.738000px;}
.ls2a{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.620000px;}
.ls28{letter-spacing:22.266720px;}
.ls27{letter-spacing:50.346720px;}
.ls4{letter-spacing:847.560000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws0{word-spacing:-40.039920px;}
.ws17{word-spacing:-26.632080px;}
.ws19{word-spacing:-25.920000px;}
.wsf{word-spacing:-25.911360px;}
.ws20{word-spacing:-25.894080px;}
.ws16{word-spacing:-25.876800px;}
.ws6{word-spacing:-25.868160px;}
.ws1b{word-spacing:-17.964000px;}
.ws5{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.803388px;}
.ws1e{word-spacing:-15.422400px;}
.wsc{word-spacing:-15.332400px;}
.ws9{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.220200px;}
.ws1a{word-spacing:-15.172800px;}
.wsa{word-spacing:-15.157200px;}
.ws8{word-spacing:-15.120000px;}
.ws21{word-spacing:-15.119280px;}
.ws1f{word-spacing:-15.115200px;}
.wsd{word-spacing:-14.992560px;}
.ws23{word-spacing:-14.945040px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.934960px;}
.ws4{word-spacing:-14.907600px;}
.ws13{word-spacing:-14.865000px;}
.ws2{word-spacing:-14.803200px;}
.ws24{word-spacing:-14.770200px;}
.ws1d{word-spacing:-14.722800px;}
.ws18{word-spacing:-14.702400px;}
.ws22{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.659800px;}
.wse{word-spacing:-14.637600px;}
.ws7{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.360000px;}
.ws12{word-spacing:-8.640000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._1{width:1.015920px;}
._2{width:2.023920px;}
._5{width:3.518880px;}
._8{width:4.726320px;}
._7{width:9.540000px;}
._c{width:19.720800px;}
._b{width:20.796480px;}
._e{width:35.856000px;}
._d{width:37.828080px;}
._9{width:39.561120px;}
._a{width:40.666080px;}
._6{width:91.458000px;}
._4{width:127.458000px;}
._3{width:658.938000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fsc{font-size:90.000000px;}
.fs0{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.960000px;}
.y9c{bottom:3.990000px;}
.ya7{bottom:4.005000px;}
.y51{bottom:4.140000px;}
.y31{bottom:4.320000px;}
.y1c3{bottom:4.680000px;}
.y28{bottom:6.120000px;}
.y268{bottom:8.280000px;}
.y26b{bottom:8.460000px;}
.y9a{bottom:20.700000px;}
.y9d{bottom:20.730000px;}
.yeb{bottom:20.745000px;}
.y3f{bottom:20.880000px;}
.yba{bottom:20.910000px;}
.y4c{bottom:20.925000px;}
.yc3{bottom:22.320000px;}
.y130{bottom:22.860000px;}
.y114{bottom:23.040000px;}
.y1c1{bottom:33.480000px;}
.y21c{bottom:33.525000px;}
.y33{bottom:33.660000px;}
.y27{bottom:33.690000px;}
.y75{bottom:37.620000px;}
.y3e{bottom:37.650000px;}
.y172{bottom:37.665000px;}
.y87{bottom:37.800000px;}
.y1bd{bottom:37.830000px;}
.yb4{bottom:37.845000px;}
.y23f{bottom:39.780000px;}
.y266{bottom:48.420000px;}
.y290{bottom:48.465000px;}
.y12f{bottom:50.400000px;}
.y113{bottom:50.580000px;}
.y74{bottom:54.540000px;}
.y3d{bottom:54.570000px;}
.y86{bottom:54.585000px;}
.yd1{bottom:54.720000px;}
.y1c6{bottom:54.750000px;}
.y139{bottom:54.765000px;}
.y244{bottom:56.700000px;}
.y24f{bottom:56.925000px;}
.y44{bottom:57.780000px;}
.y1b7{bottom:57.960000px;}
.y17d{bottom:59.940000px;}
.y216{bottom:60.120000px;}
.y1f8{bottom:60.840000px;}
.y238{bottom:61.020000px;}
.y26d{bottom:61.560000px;}
.y23b{bottom:62.100000px;}
.y230{bottom:64.980000px;}
.y294{bottom:65.160000px;}
.ya0{bottom:65.700000px;}
.y1c4{bottom:67.320000px;}
.y142{bottom:67.500000px;}
.y53{bottom:67.860000px;}
.y282{bottom:68.580000px;}
.y190{bottom:68.940000px;}
.ybc{bottom:70.020000px;}
.y73{bottom:71.460000px;}
.y3c{bottom:71.490000px;}
.y85{bottom:71.505000px;}
.y105{bottom:73.620000px;}
.yff{bottom:73.650000px;}
.y43{bottom:74.700000px;}
.y26c{bottom:75.060000px;}
.y15f{bottom:76.860000px;}
.y42{bottom:78.480000px;}
.y17c{bottom:81.900000px;}
.y215{bottom:82.260000px;}
.y243{bottom:84.240000px;}
.y24e{bottom:84.285000px;}
.y99{bottom:88.200000px;}
.y72{bottom:88.380000px;}
.y3b{bottom:88.410000px;}
.y84{bottom:88.425000px;}
.y237{bottom:88.560000px;}
.y141{bottom:89.460000px;}
.y23d{bottom:89.850000px;}
.yce{bottom:90.360000px;}
.y122{bottom:91.440000px;}
.y41{bottom:91.800000px;}
.y121{bottom:95.220000px;}
.y15e{bottom:98.820000px;}
.y9f{bottom:100.260000px;}
.yfe{bottom:101.010000px;}
.y104{bottom:101.160000px;}
.ye0{bottom:102.420000px;}
.y26a{bottom:102.600000px;}
.y214{bottom:104.220000px;}
.y71{bottom:105.120000px;}
.y3a{bottom:105.150000px;}
.yb7{bottom:105.300000px;}
.y1bc{bottom:105.330000px;}
.y83{bottom:105.345000px;}
.y1a9{bottom:108.360000px;}
.y120{bottom:108.720000px;}
.y1f7{bottom:112.140000px;}
.yfd{bottom:115.920000px;}
.y17b{bottom:116.460000px;}
.ycd{bottom:117.900000px;}
.y18f{bottom:120.240000px;}
.ybb{bottom:121.320000px;}
.y98{bottom:122.040000px;}
.y39{bottom:122.070000px;}
.y82{bottom:122.085000px;}
.y262{bottom:122.220000px;}
.y19a{bottom:122.250000px;}
.y1b4{bottom:122.265000px;}
.y140{bottom:124.020000px;}
.yf3{bottom:124.230000px;}
.y269{bottom:124.740000px;}
.y1a8{bottom:125.280000px;}
.y256{bottom:125.640000px;}
.y213{bottom:126.360000px;}
.y11f{bottom:127.620000px;}
.y40{bottom:127.800000px;}
.y1a7{bottom:129.060000px;}
.y1d5{bottom:130.860000px;}
.y15d{bottom:133.380000px;}
.y1f6{bottom:134.280000px;}
.y281{bottom:136.800000px;}
.ydf{bottom:136.980000px;}
.y17a{bottom:138.420000px;}
.y97{bottom:138.960000px;}
.y38{bottom:138.990000px;}
.y81{bottom:139.005000px;}
.y1a6{bottom:142.560000px;}
.y37{bottom:142.740000px;}
.y212{bottom:148.320000px;}
.y255{bottom:149.940000px;}
.yf2{bottom:151.770000px;}
.y18e{bottom:154.800000px;}
.y96{bottom:155.700000px;}
.ya5{bottom:155.880000px;}
.y70{bottom:155.910000px;}
.y80{bottom:155.925000px;}
.y9e{bottom:156.060000px;}
.y1f5{bottom:156.240000px;}
.y13f{bottom:158.400000px;}
.y267{bottom:159.300000px;}
.y11e{bottom:162.180000px;}
.y1d4{bottom:165.420000px;}
.y15c{bottom:167.940000px;}
.y211{bottom:170.460000px;}
.yde{bottom:171.360000px;}
.ya4{bottom:172.620000px;}
.y6f{bottom:172.650000px;}
.y95{bottom:172.665000px;}
.y1b9{bottom:172.830000px;}
.y7f{bottom:172.845000px;}
.y179{bottom:172.980000px;}
.y9b{bottom:173.700000px;}
.y18d{bottom:176.970000px;}
.y1f4{bottom:178.410000px;}
.y1a5{bottom:180.390000px;}
.y239{bottom:181.110000px;}
.y265{bottom:181.290000px;}
.y22f{bottom:183.990000px;}
.y254{bottom:184.530000px;}
.y280{bottom:188.310000px;}
.ya3{bottom:189.540000px;}
.y6e{bottom:189.570000px;}
.y7e{bottom:189.585000px;}
.y1b8{bottom:189.750000px;}
.y1b3{bottom:189.765000px;}
.yb9{bottom:190.290000px;}
.y210{bottom:192.450000px;}
.y13e{bottom:192.990000px;}
.y11d{bottom:196.590000px;}
.y1f3{bottom:200.370000px;}
.y15b{bottom:202.350000px;}
.y1a4{bottom:202.530000px;}
.ydd{bottom:205.950000px;}
.ya2{bottom:206.460000px;}
.y6d{bottom:206.490000px;}
.y7d{bottom:206.505000px;}
.y178{bottom:207.570000px;}
.y18c{bottom:211.350000px;}
.y20f{bottom:214.590000px;}
.y11c{bottom:218.730000px;}
.y253{bottom:218.910000px;}
.y1f2{bottom:222.510000px;}
.y94{bottom:223.245000px;}
.y23a{bottom:223.380000px;}
.y6c{bottom:223.410000px;}
.y7c{bottom:223.425000px;}
.y1a3{bottom:224.490000px;}
.yb8{bottom:224.850000px;}
.y13d{bottom:227.550000px;}
.ydc{bottom:228.090000px;}
.y18b{bottom:233.490000px;}
.y20e{bottom:236.550000px;}
.y15a{bottom:236.910000px;}
.yfc{bottom:239.070000px;}
.y22e{bottom:239.610000px;}
.y6b{bottom:240.150000px;}
.y93{bottom:240.165000px;}
.y261{bottom:240.330000px;}
.y7b{bottom:240.345000px;}
.y23{bottom:241.050000px;}
.y177{bottom:241.950000px;}
.yb6{bottom:242.490000px;}
.y264{bottom:243.390000px;}
.y1f1{bottom:244.470000px;}
.y1a2{bottom:246.630000px;}
.ydb{bottom:250.050000px;}
.y293{bottom:253.830000px;}
.y6a{bottom:257.070000px;}
.y7a{bottom:257.085000px;}
.y260{bottom:257.250000px;}
.y1b2{bottom:257.265000px;}
.y20d{bottom:258.690000px;}
.y88{bottom:258.870000px;}
.y22{bottom:259.590000px;}
.yfb{bottom:261.210000px;}
.y13c{bottom:261.930000px;}
.y1f0{bottom:266.610000px;}
.y1d3{bottom:267.510000px;}
.y1a1{bottom:268.590000px;}
.y11b{bottom:270.030000px;}
.yda{bottom:272.190000px;}
.y69{bottom:273.990000px;}
.y79{bottom:274.005000px;}
.y1b1{bottom:274.035000px;}
.y176{bottom:276.510000px;}
.y21{bottom:278.130000px;}
.y20c{bottom:280.650000px;}
.y159{bottom:281.010000px;}
.y252{bottom:287.310000px;}
.y1ef{bottom:288.570000px;}
.y1d2{bottom:289.470000px;}
.y1a0{bottom:290.730000px;}
.y92{bottom:290.745000px;}
.y68{bottom:290.910000px;}
.y78{bottom:290.925000px;}
.y1b0{bottom:290.955000px;}
.y22d{bottom:291.090000px;}
.y1c2{bottom:292.530000px;}
.y1b6{bottom:295.050000px;}
.y36{bottom:295.410000px;}
.yfa{bottom:295.770000px;}
.y13b{bottom:296.490000px;}
.y20{bottom:296.850000px;}
.y18a{bottom:301.710000px;}
.y20b{bottom:302.790000px;}
.y158{bottom:302.970000px;}
.y11a{bottom:304.590000px;}
.y292{bottom:305.130000px;}
.yd9{bottom:306.570000px;}
.y67{bottom:307.650000px;}
.y91{bottom:307.665000px;}
.y25f{bottom:307.830000px;}
.y77{bottom:307.875000px;}
.y1c9{bottom:310.005000px;}
.y1ee{bottom:310.710000px;}
.y175{bottom:311.070000px;}
.y22c{bottom:313.050000px;}
.y1f{bottom:315.390000px;}
.y251{bottom:321.690000px;}
.y66{bottom:324.570000px;}
.y90{bottom:324.585000px;}
.y25e{bottom:324.750000px;}
.y1af{bottom:324.795000px;}
.y157{bottom:325.110000px;}
.y119{bottom:326.550000px;}
.yd8{bottom:328.710000px;}
.yf9{bottom:330.150000px;}
.y13a{bottom:331.050000px;}
.y1ed{bottom:332.670000px;}
.y1e{bottom:334.110000px;}
.y1c8{bottom:337.365000px;}
.y65{bottom:341.490000px;}
.y8f{bottom:341.505000px;}
.y1ae{bottom:341.535000px;}
.y27f{bottom:342.390000px;}
.y174{bottom:345.450000px;}
.y156{bottom:347.070000px;}
.y22b{bottom:347.610000px;}
.y118{bottom:348.690000px;}
.yd7{bottom:350.670000px;}
.y1b5{bottom:350.850000px;}
.y35{bottom:351.210000px;}
.yf8{bottom:352.290000px;}
.y2a4{bottom:353.730000px;}
.y1ec{bottom:354.810000px;}
.y250{bottom:356.250000px;}
.y291{bottom:356.610000px;}
.y8e{bottom:358.245000px;}
.y64{bottom:358.455000px;}
.yb5{bottom:361.290000px;}
.y1d{bottom:364.710000px;}
.y138{bottom:365.430000px;}
.y34{bottom:368.670000px;}
.y155{bottom:369.210000px;}
.y22a{bottom:369.570000px;}
.y117{bottom:370.650000px;}
.y20a{bottom:371.010000px;}
.y2a3{bottom:372.630000px;}
.y8d{bottom:375.165000px;}
.y63{bottom:375.195000px;}
.y1eb{bottom:376.770000px;}
.y24d{bottom:378.210000px;}
.y173{bottom:380.010000px;}
.y1c{bottom:383.250000px;}
.y263{bottom:383.430000px;}
.yd6{bottom:385.230000px;}
.yf7{bottom:386.670000px;}
.y28f{bottom:390.990000px;}
.y1d1{bottom:391.530000px;}
.y8c{bottom:392.085000px;}
.y62{bottom:392.115000px;}
.y209{bottom:392.970000px;}
.y27e{bottom:393.690000px;}
.yb3{bottom:395.850000px;}
.y1ea{bottom:398.910000px;}
.y1b{bottom:401.970000px;}
.y154{bottom:403.770000px;}
.y229{bottom:404.130000px;}
.y116{bottom:405.210000px;}
.yd5{bottom:407.190000px;}
.y61{bottom:409.035000px;}
.y171{bottom:414.570000px;}
.y208{bottom:415.110000px;}
.y1a{bottom:420.555000px;}
.y1e9{bottom:420.915000px;}
.yf6{bottom:421.275000px;}
.y2a2{bottom:424.155000px;}
.y8b{bottom:425.775000px;}
.y60{bottom:425.955000px;}
.y1d0{bottom:426.135000px;}
.y19f{bottom:426.495000px;}
.yd4{bottom:429.375000px;}
.y207{bottom:437.115000px;}
.y189{bottom:438.195000px;}
.y228{bottom:438.735000px;}
.y19{bottom:439.095000px;}
.y5f{bottom:442.695000px;}
.y1e8{bottom:443.055000px;}
.y27d{bottom:445.215000px;}
.y19e{bottom:448.455000px;}
.y137{bottom:450.615000px;}
.yd3{bottom:451.335000px;}
.y28e{bottom:453.135000px;}
.y115{bottom:456.735000px;}
.y2a1{bottom:458.535000px;}
.y206{bottom:459.255000px;}
.y5e{bottom:459.615000px;}
.y18{bottom:460.155000px;}
.y153{bottom:460.335000px;}
.y1cf{bottom:460.515000px;}
.y19d{bottom:470.595000px;}
.yf5{bottom:472.575000px;}
.y136{bottom:472.755000px;}
.y227{bottom:473.115000px;}
.yd2{bottom:473.475000px;}
.y5d{bottom:476.535000px;}
.y112{bottom:478.695000px;}
.y1c0{bottom:479.055000px;}
.y205{bottom:481.215000px;}
.y24c{bottom:484.635000px;}
.y17{bottom:485.175000px;}
.y19c{bottom:492.555000px;}
.y8a{bottom:493.275000px;}
.y5c{bottom:493.455000px;}
.y135{bottom:494.715000px;}
.y1ce{bottom:495.075000px;}
.y226{bottom:495.255000px;}
.y27c{bottom:496.515000px;}
.y170{bottom:499.755000px;}
.y25d{bottom:502.275000px;}
.y204{bottom:503.355000px;}
.y28d{bottom:504.435000px;}
.y188{bottom:507.315000px;}
.y5b{bottom:510.195000px;}
.y16{bottom:510.375000px;}
.y1e7{bottom:511.275000px;}
.y19b{bottom:514.695000px;}
.y134{bottom:516.855000px;}
.y24b{bottom:519.195000px;}
.y2a0{bottom:520.635000px;}
.y16f{bottom:521.715000px;}
.yd0{bottom:524.775000px;}
.y5a{bottom:527.115000px;}
.y187{bottom:529.275000px;}
.y1cd{bottom:529.635000px;}
.y1bf{bottom:534.675000px;}
.y15{bottom:535.395000px;}
.y236{bottom:536.295000px;}
.y199{bottom:536.655000px;}
.y203{bottom:537.915000px;}
.y133{bottom:538.815000px;}
.y59{bottom:544.035000px;}
.y1e6{bottom:545.835000px;}
.y27b{bottom:547.995000px;}
.y111{bottom:551.415000px;}
.yf4{bottom:557.715000px;}
.y202{bottom:559.875000px;}
.y14{bottom:560.595000px;}
.y89{bottom:560.775000px;}
.y58{bottom:560.955000px;}
.y152{bottom:562.215000px;}
.y186{bottom:563.835000px;}
.yb2{bottom:565.455000px;}
.y24a{bottom:570.495000px;}
.y29f{bottom:571.935000px;}
.y28c{bottom:572.655000px;}
.y132{bottom:573.375000px;}
.y57{bottom:577.695000px;}
.yf1{bottom:579.855000px;}
.y1e5{bottom:580.215000px;}
.y201{bottom:582.015000px;}
.y151{bottom:584.355000px;}
.y13{bottom:585.615000px;}
.y110{bottom:585.795000px;}
.y16e{bottom:594.435000px;}
.y56{bottom:594.645000px;}
.y225{bottom:597.315000px;}
.y185{bottom:598.215000px;}
.y27a{bottom:599.295000px;}
.yb1{bottom:599.835000px;}
.y1e4{bottom:602.355000px;}
.y1be{bottom:602.895000px;}
.y200{bottom:603.975000px;}
.y249{bottom:605.055000px;}
.y12{bottom:610.815000px;}
.y55{bottom:611.565000px;}
.y1cc{bottom:614.595000px;}
.y16d{bottom:616.395000px;}
.yb0{bottom:617.475000px;}
.y224{bottom:619.275000px;}
.y10f{bottom:620.355000px;}
.y29e{bottom:623.415000px;}
.y1e3{bottom:624.315000px;}
.ycf{bottom:626.835000px;}
.y54{bottom:628.485000px;}
.y184{bottom:632.775000px;}
.y279{bottom:633.855000px;}
.y248{bottom:639.615000px;}
.y28b{bottom:641.055000px;}
.y11{bottom:641.775000px;}
.y1e2{bottom:646.455000px;}
.y235{bottom:646.995000px;}
.yaf{bottom:652.035000px;}
.y223{bottom:653.835000px;}
.y10e{bottom:654.915000px;}
.y150{bottom:656.895000px;}
.y131{bottom:658.515000px;}
.y1bb{bottom:658.695000px;}
.ycc{bottom:661.425000px;}
.y183{bottom:667.365000px;}
.y278{bottom:668.265000px;}
.y1e1{bottom:668.445000px;}
.yae{bottom:669.705000px;}
.y1cb{bottom:670.425000px;}
.y1ff{bottom:672.225000px;}
.y198{bottom:672.405000px;}
.y29d{bottom:674.745000px;}
.y222{bottom:675.825000px;}
.y14f{bottom:679.065000px;}
.y10{bottom:681.585000px;}
.y16c{bottom:684.645000px;}
.yad{bottom:687.345000px;}
.y182{bottom:689.325000px;}
.y1e0{bottom:690.585000px;}
.y247{bottom:690.945000px;}
.y28a{bottom:692.385000px;}
.y1ca{bottom:692.565000px;}
.y12e{bottom:693.105000px;}
.y1fe{bottom:694.365000px;}
.y221{bottom:697.965000px;}
.y10d{bottom:706.245000px;}
.y16b{bottom:706.785000px;}
.y29c{bottom:709.305000px;}
.y52{bottom:710.025000px;}
.y181{bottom:711.465000px;}
.yf{bottom:712.545000px;}
.y14e{bottom:713.445000px;}
.y1fd{bottom:716.325000px;}
.y220{bottom:719.925000px;}
.yac{bottom:721.905000px;}
.y246{bottom:725.505000px;}
.y32{bottom:727.305000px;}
.y50{bottom:729.645000px;}
.y277{bottom:730.365000px;}
.y1df{bottom:734.685000px;}
.y1fc{bottom:738.465000px;}
.y1ad{bottom:740.445000px;}
.y10c{bottom:740.805000px;}
.y21f{bottom:742.065000px;}
.y289{bottom:743.685000px;}
.y1c7{bottom:743.865000px;}
.y245{bottom:747.465000px;}
.y14d{bottom:748.005000px;}
.y4f{bottom:749.445000px;}
.yf0{bottom:753.765000px;}
.yab{bottom:756.285000px;}
.y197{bottom:757.545000px;}
.y1fb{bottom:760.425000px;}
.ye{bottom:760.605000px;}
.y10b{bottom:762.765000px;}
.y21e{bottom:764.025000px;}
.y12d{bottom:765.645000px;}
.yaa{bottom:773.925000px;}
.y16a{bottom:775.005000px;}
.yef{bottom:775.725000px;}
.y276{bottom:781.665000px;}
.y242{bottom:782.025000px;}
.y14c{bottom:782.565000px;}
.y234{bottom:782.745000px;}
.y30{bottom:783.105000px;}
.y180{bottom:784.005000px;}
.y21d{bottom:786.165000px;}
.y1ac{bottom:791.925000px;}
.y1ba{bottom:794.445000px;}
.y288{bottom:795.165000px;}
.y169{bottom:797.145000px;}
.y10a{bottom:797.325000px;}
.y12c{bottom:800.205000px;}
.ycb{bottom:801.465000px;}
.y2f{bottom:802.365000px;}
.y1de{bottom:802.905000px;}
.y275{bottom:803.805000px;}
.y4e{bottom:805.245000px;}
.yee{bottom:810.285000px;}
.y29b{bottom:812.085000px;}
.yd{bottom:812.985000px;}
.y196{bottom:813.345000px;}
.y14b{bottom:816.945000px;}
.y17f{bottom:818.565000px;}
.y1dd{bottom:825.045000px;}
.ya9{bottom:825.405000px;}
.y109{bottom:831.705000px;}
.yed{bottom:832.245000px;}
.y12b{bottom:834.585000px;}
.yca{bottom:836.025000px;}
.y233{bottom:838.545000px;}
.y25c{bottom:840.705000px;}
.ya8{bottom:844.305000px;}
.y287{bottom:846.465000px;}
.y1dc{bottom:847.005000px;}
.y1ab{bottom:847.545000px;}
.y195{bottom:847.905000px;}
.y76{bottom:850.245000px;}
.y14a{bottom:851.505000px;}
.yc{bottom:852.765000px;}
.yec{bottom:854.385000px;}
.y274{bottom:855.105000px;}
.y4d{bottom:861.045000px;}
.y108{bottom:866.265000px;}
.y12a{bottom:869.145000px;}
.y168{bottom:869.685000px;}
.y17e{bottom:869.865000px;}
.y21b{bottom:871.305000px;}
.yc9{bottom:871.845000px;}
.y273{bottom:877.245000px;}
.yb{bottom:877.965000px;}
.y29a{bottom:880.305000px;}
.y4b{bottom:880.485000px;}
.y149{bottom:886.065000px;}
.y241{bottom:888.405000px;}
.yea{bottom:888.945000px;}
.y1db{bottom:891.105000px;}
.y167{bottom:891.645000px;}
.yc8{bottom:893.985000px;}
.y25b{bottom:896.325000px;}
.y286{bottom:897.945000px;}
.ya6{bottom:900.105000px;}
.y107{bottom:900.870000px;}
.ya{bottom:903.030000px;}
.y129{bottom:903.750000px;}
.y194{bottom:904.470000px;}
.y1fa{bottom:908.070000px;}
.y240{bottom:910.410000px;}
.y1da{bottom:913.290000px;}
.y166{bottom:913.830000px;}
.y299{bottom:914.730000px;}
.y4a{bottom:915.090000px;}
.yc7{bottom:915.990000px;}
.y148{bottom:920.490000px;}
.y106{bottom:922.830000px;}
.ye9{bottom:923.370000px;}
.y232{bottom:923.730000px;}
.y128{bottom:925.710000px;}
.y193{bottom:926.430000px;}
.y21a{bottom:926.970000px;}
.y9{bottom:928.230000px;}
.y272{bottom:928.590000px;}
.y49{bottom:934.530000px;}
.ya1{bottom:934.710000px;}
.y1d9{bottom:935.250000px;}
.y165{bottom:935.790000px;}
.yc6{bottom:938.130000px;}
.y25a{bottom:947.850000px;}
.y219{bottom:949.110000px;}
.y285{bottom:949.290000px;}
.y271{bottom:950.730000px;}
.y8{bottom:953.250000px;}
.y147{bottom:955.050000px;}
.y103{bottom:957.390000px;}
.ye8{bottom:957.930000px;}
.yc5{bottom:960.090000px;}
.y127{bottom:960.270000px;}
.y298{bottom:966.210000px;}
.y48{bottom:969.090000px;}
.y218{bottom:971.070000px;}
.y7{bottom:978.450000px;}
.y23e{bottom:978.810000px;}
.y1d8{bottom:979.350000px;}
.y164{bottom:979.890000px;}
.yc4{bottom:982.230000px;}
.y270{bottom:985.110000px;}
.y146{bottom:989.610000px;}
.ye7{bottom:992.490000px;}
.y1f9{bottom:993.210000px;}
.y126{bottom:994.830000px;}
.y259{bottom:999.150000px;}
.y284{bottom:1000.590000px;}
.y1d7{bottom:1001.490000px;}
.y6{bottom:1003.470000px;}
.yc2{bottom:1004.190000px;}
.y26f{bottom:1007.250000px;}
.y192{bottom:1011.570000px;}
.y163{bottom:1014.450000px;}
.y217{bottom:1015.170000px;}
.y297{bottom:1017.510000px;}
.y145{bottom:1023.990000px;}
.ye6{bottom:1026.870000px;}
.y5{bottom:1028.670000px;}
.y125{bottom:1029.210000px;}
.y258{bottom:1033.710000px;}
.y1aa{bottom:1036.590000px;}
.yc1{bottom:1040.190000px;}
.y26e{bottom:1041.630000px;}
.y2e{bottom:1043.970000px;}
.y2d{bottom:1044.690000px;}
.y191{bottom:1046.130000px;}
.y231{bottom:1047.750000px;}
.y162{bottom:1049.010000px;}
.y283{bottom:1052.070000px;}
.y4{bottom:1053.690000px;}
.y144{bottom:1058.550000px;}
.y47{bottom:1059.270000px;}
.ye5{bottom:1061.430000px;}
.y2c{bottom:1062.330000px;}
.y124{bottom:1063.770000px;}
.y257{bottom:1068.090000px;}
.y23c{bottom:1068.270000px;}
.y296{bottom:1068.990000px;}
.y1d6{bottom:1069.710000px;}
.y161{bottom:1070.970000px;}
.y46{bottom:1078.890000px;}
.y2b{bottom:1079.970000px;}
.y102{bottom:1080.690000px;}
.ye4{bottom:1083.390000px;}
.y3{bottom:1084.650000px;}
.y123{bottom:1085.730000px;}
.y143{bottom:1093.110000px;}
.yc0{bottom:1096.710000px;}
.y29{bottom:1097.610000px;}
.y45{bottom:1098.330000px;}
.y101{bottom:1102.650000px;}
.y1c5{bottom:1103.370000px;}
.ye3{bottom:1105.530000px;}
.y160{bottom:1115.070000px;}
.y26{bottom:1115.970000px;}
.ybf{bottom:1118.850000px;}
.y295{bottom:1120.290000px;}
.ye2{bottom:1127.490000px;}
.y2{bottom:1130.190000px;}
.ybe{bottom:1136.490000px;}
.y100{bottom:1137.210000px;}
.ye1{bottom:1149.660000px;}
.ybd{bottom:1154.160000px;}
.y25{bottom:1175.760000px;}
.y1{bottom:1175.940000px;}
.y24{bottom:1194.840000px;}
.h10{height:2.172656px;}
.ha{height:16.740000px;}
.h30{height:16.776000px;}
.hc{height:16.920000px;}
.h2b{height:16.956000px;}
.h29{height:18.180000px;}
.h12{height:18.540000px;}
.h1d{height:18.720000px;}
.h22{height:18.900000px;}
.h21{height:19.080000px;}
.h32{height:21.240000px;}
.h34{height:21.276000px;}
.h31{height:21.420000px;}
.h39{height:21.456000px;}
.h1c{height:29.976328px;}
.h1e{height:33.660000px;}
.h2f{height:33.696000px;}
.h1f{height:33.840000px;}
.h20{height:33.876000px;}
.h35{height:35.100000px;}
.h33{height:35.280000px;}
.h27{height:38.549138px;}
.hd{height:40.472227px;}
.h7{height:40.737305px;}
.he{height:42.661046px;}
.h4b{height:45.082617px;}
.hb{height:46.074727px;}
.h16{height:46.979297px;}
.h2d{height:49.180781px;}
.h3{height:49.971094px;}
.h2a{height:50.580000px;}
.h3e{height:50.616000px;}
.h40{height:50.760000px;}
.h5b{height:50.796000px;}
.h1b{height:51.070781px;}
.h13{height:52.073437px;}
.h41{height:52.662656px;}
.h17{height:54.900000px;}
.h8{height:54.936000px;}
.h14{height:55.080000px;}
.h4e{height:55.116000px;}
.h6{height:58.651172px;}
.h9{height:58.661719px;}
.h56{height:59.614102px;}
.h5{height:60.226875px;}
.h5d{height:61.200000px;}
.h5e{height:61.380000px;}
.h5f{height:61.416000px;}
.h1a{height:66.757500px;}
.h44{height:67.500000px;}
.h45{height:67.536000px;}
.h37{height:67.895508px;}
.h19{height:70.664062px;}
.hf{height:71.280000px;}
.h3f{height:71.820000px;}
.h46{height:72.000000px;}
.h4f{height:84.240000px;}
.h26{height:84.276000px;}
.h3b{height:84.420000px;}
.h42{height:84.456000px;}
.h58{height:88.740000px;}
.h2{height:90.708398px;}
.h43{height:101.160000px;}
.h51{height:101.196000px;}
.h38{height:101.340000px;}
.h50{height:101.376000px;}
.h57{height:102.636000px;}
.h59{height:105.660000px;}
.h5a{height:105.696000px;}
.h4{height:108.632812px;}
.h53{height:109.980000px;}
.h2e{height:118.080000px;}
.h52{height:118.116000px;}
.h55{height:118.296000px;}
.h3d{height:122.400000px;}
.h3c{height:122.436000px;}
.h47{height:135.036000px;}
.h36{height:139.320000px;}
.h18{height:151.950000px;}
.h4c{height:168.690000px;}
.h2c{height:168.870000px;}
.h3a{height:173.190000px;}
.h4a{height:185.610000px;}
.h28{height:236.190000px;}
.h49{height:236.370000px;}
.h11{height:240.870000px;}
.h24{height:320.655000px;}
.h5c{height:337.530000px;}
.h54{height:354.450000px;}
.h48{height:354.495000px;}
.h15{height:357.915000px;}
.h4d{height:358.770000px;}
.h25{height:590.655000px;}
.h23{height:641.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:63.360000px;}
.w7{width:63.396000px;}
.w9{width:63.540000px;}
.wb{width:148.896000px;}
.w5{width:191.730000px;}
.wd{width:308.415000px;}
.we{width:329.610000px;}
.w4{width:384.195000px;}
.wc{width:638.025000px;}
.w6{width:769.290000px;}
.w3{width:786.930000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x1f{left:16.920000px;}
.x1d{left:23.580000px;}
.x35{left:35.100000px;}
.x19{left:52.245000px;}
.x7{left:53.999987px;}
.x2c{left:58.499987px;}
.x15{left:62.820000px;}
.x1e{left:126.936000px;}
.x16{left:169.230000px;}
.x37{left:183.090000px;}
.x31{left:186.870000px;}
.x20{left:191.190000px;}
.x30{left:199.470000px;}
.x2d{left:202.890000px;}
.x2f{left:223.770000px;}
.x32{left:225.930000px;}
.x36{left:230.610000px;}
.x4{left:238.529987px;}
.x2a{left:251.175000px;}
.x18{left:255.270000px;}
.x5{left:257.969987px;}
.x2b{left:270.029987px;}
.x2e{left:276.195000px;}
.x6{left:288.929987px;}
.x21{left:319.575000px;}
.x13{left:329.654987px;}
.x1b{left:342.255000px;}
.x3{left:350.714987px;}
.x22{left:383.655000px;}
.x38{left:403.995000px;}
.x1c{left:427.065000px;}
.x2{left:446.474987px;}
.x17{left:447.915000px;}
.x23{left:512.025000px;}
.x33{left:535.785000px;}
.x24{left:576.105000px;}
.x1{left:601.844987px;}
.xd{left:607.604987px;}
.xf{left:610.124987px;}
.x12{left:617.684987px;}
.x34{left:628.890000px;}
.x10{left:631.904987px;}
.x11{left:636.044987px;}
.x1a{left:640.365000px;}
.xe{left:651.704987px;}
.xc{left:663.224987px;}
.x29{left:672.630000px;}
.xb{left:675.284987px;}
.x28{left:680.730000px;}
.x8{left:697.469987px;}
.x9{left:699.989987px;}
.x25{left:704.490000px;}
.x26{left:768.570000px;}
.x27{left:778.650000px;}
.xa{left:839.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.268800pt;}
.ls1f{letter-spacing:-0.249067pt;}
.ls1b{letter-spacing:-0.244267pt;}
.ls2b{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.211200pt;}
.ls21{letter-spacing:-0.193067pt;}
.ls20{letter-spacing:-0.188800pt;}
.ls2d{letter-spacing:-0.150933pt;}
.ls1{letter-spacing:-0.121600pt;}
.ls18{letter-spacing:-0.113067pt;}
.ls12{letter-spacing:-0.066667pt;}
.ls7{letter-spacing:-0.028800pt;}
.ls8{letter-spacing:-0.023040pt;}
.ls1e{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.015360pt;}
.ls25{letter-spacing:-0.007680pt;}
.lsd{letter-spacing:-0.004480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.004480pt;}
.ls3{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.046720pt;}
.ls13{letter-spacing:0.049247pt;}
.ls5{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.155733pt;}
.ls26{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.193067pt;}
.ls1c{letter-spacing:0.206933pt;}
.lsf{letter-spacing:0.248960pt;}
.ls14{letter-spacing:0.249067pt;}
.ls6{letter-spacing:0.268800pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.324267pt;}
.lse{letter-spacing:0.348800pt;}
.ls15{letter-spacing:0.426240pt;}
.ls23{letter-spacing:0.428800pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.526720pt;}
.ls17{letter-spacing:0.656000pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.440000pt;}
.ls28{letter-spacing:19.792640pt;}
.ls27{letter-spacing:44.752640pt;}
.ls4{letter-spacing:753.386667pt;}
.ws10{word-spacing:-53.120000pt;}
.ws0{word-spacing:-35.591040pt;}
.ws17{word-spacing:-23.672960pt;}
.ws19{word-spacing:-23.040000pt;}
.wsf{word-spacing:-23.032320pt;}
.ws20{word-spacing:-23.016960pt;}
.ws16{word-spacing:-23.001600pt;}
.ws6{word-spacing:-22.993920pt;}
.ws1b{word-spacing:-15.968000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.047456pt;}
.ws1e{word-spacing:-13.708800pt;}
.wsc{word-spacing:-13.628800pt;}
.ws9{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.529067pt;}
.ws1a{word-spacing:-13.486933pt;}
.wsa{word-spacing:-13.473067pt;}
.ws8{word-spacing:-13.440000pt;}
.ws21{word-spacing:-13.439360pt;}
.ws1f{word-spacing:-13.435733pt;}
.wsd{word-spacing:-13.326720pt;}
.ws23{word-spacing:-13.284480pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.275520pt;}
.ws4{word-spacing:-13.251200pt;}
.ws13{word-spacing:-13.213333pt;}
.ws2{word-spacing:-13.158400pt;}
.ws24{word-spacing:-13.129067pt;}
.ws1d{word-spacing:-13.086933pt;}
.ws18{word-spacing:-13.068800pt;}
.ws22{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-13.030933pt;}
.wse{word-spacing:-13.011200pt;}
.ws7{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.320000pt;}
.ws12{word-spacing:-7.680000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._1{width:0.903040pt;}
._2{width:1.799040pt;}
._5{width:3.127893pt;}
._8{width:4.201173pt;}
._7{width:8.480000pt;}
._c{width:17.529600pt;}
._b{width:18.485760pt;}
._e{width:31.872000pt;}
._d{width:33.624960pt;}
._9{width:35.165440pt;}
._a{width:36.147627pt;}
._6{width:81.296000pt;}
._4{width:113.296000pt;}
._3{width:585.722667pt;}
.fs7{font-size:2.560000pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fsc{font-size:80.000000pt;}
.fs0{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:3.520000pt;}
.y9c{bottom:3.546667pt;}
.ya7{bottom:3.560000pt;}
.y51{bottom:3.680000pt;}
.y31{bottom:3.840000pt;}
.y1c3{bottom:4.160000pt;}
.y28{bottom:5.440000pt;}
.y268{bottom:7.360000pt;}
.y26b{bottom:7.520000pt;}
.y9a{bottom:18.400000pt;}
.y9d{bottom:18.426667pt;}
.yeb{bottom:18.440000pt;}
.y3f{bottom:18.560000pt;}
.yba{bottom:18.586667pt;}
.y4c{bottom:18.600000pt;}
.yc3{bottom:19.840000pt;}
.y130{bottom:20.320000pt;}
.y114{bottom:20.480000pt;}
.y1c1{bottom:29.760000pt;}
.y21c{bottom:29.800000pt;}
.y33{bottom:29.920000pt;}
.y27{bottom:29.946667pt;}
.y75{bottom:33.440000pt;}
.y3e{bottom:33.466667pt;}
.y172{bottom:33.480000pt;}
.y87{bottom:33.600000pt;}
.y1bd{bottom:33.626667pt;}
.yb4{bottom:33.640000pt;}
.y23f{bottom:35.360000pt;}
.y266{bottom:43.040000pt;}
.y290{bottom:43.080000pt;}
.y12f{bottom:44.800000pt;}
.y113{bottom:44.960000pt;}
.y74{bottom:48.480000pt;}
.y3d{bottom:48.506667pt;}
.y86{bottom:48.520000pt;}
.yd1{bottom:48.640000pt;}
.y1c6{bottom:48.666667pt;}
.y139{bottom:48.680000pt;}
.y244{bottom:50.400000pt;}
.y24f{bottom:50.600000pt;}
.y44{bottom:51.360000pt;}
.y1b7{bottom:51.520000pt;}
.y17d{bottom:53.280000pt;}
.y216{bottom:53.440000pt;}
.y1f8{bottom:54.080000pt;}
.y238{bottom:54.240000pt;}
.y26d{bottom:54.720000pt;}
.y23b{bottom:55.200000pt;}
.y230{bottom:57.760000pt;}
.y294{bottom:57.920000pt;}
.ya0{bottom:58.400000pt;}
.y1c4{bottom:59.840000pt;}
.y142{bottom:60.000000pt;}
.y53{bottom:60.320000pt;}
.y282{bottom:60.960000pt;}
.y190{bottom:61.280000pt;}
.ybc{bottom:62.240000pt;}
.y73{bottom:63.520000pt;}
.y3c{bottom:63.546667pt;}
.y85{bottom:63.560000pt;}
.y105{bottom:65.440000pt;}
.yff{bottom:65.466667pt;}
.y43{bottom:66.400000pt;}
.y26c{bottom:66.720000pt;}
.y15f{bottom:68.320000pt;}
.y42{bottom:69.760000pt;}
.y17c{bottom:72.800000pt;}
.y215{bottom:73.120000pt;}
.y243{bottom:74.880000pt;}
.y24e{bottom:74.920000pt;}
.y99{bottom:78.400000pt;}
.y72{bottom:78.560000pt;}
.y3b{bottom:78.586667pt;}
.y84{bottom:78.600000pt;}
.y237{bottom:78.720000pt;}
.y141{bottom:79.520000pt;}
.y23d{bottom:79.866667pt;}
.yce{bottom:80.320000pt;}
.y122{bottom:81.280000pt;}
.y41{bottom:81.600000pt;}
.y121{bottom:84.640000pt;}
.y15e{bottom:87.840000pt;}
.y9f{bottom:89.120000pt;}
.yfe{bottom:89.786667pt;}
.y104{bottom:89.920000pt;}
.ye0{bottom:91.040000pt;}
.y26a{bottom:91.200000pt;}
.y214{bottom:92.640000pt;}
.y71{bottom:93.440000pt;}
.y3a{bottom:93.466667pt;}
.yb7{bottom:93.600000pt;}
.y1bc{bottom:93.626667pt;}
.y83{bottom:93.640000pt;}
.y1a9{bottom:96.320000pt;}
.y120{bottom:96.640000pt;}
.y1f7{bottom:99.680000pt;}
.yfd{bottom:103.040000pt;}
.y17b{bottom:103.520000pt;}
.ycd{bottom:104.800000pt;}
.y18f{bottom:106.880000pt;}
.ybb{bottom:107.840000pt;}
.y98{bottom:108.480000pt;}
.y39{bottom:108.506667pt;}
.y82{bottom:108.520000pt;}
.y262{bottom:108.640000pt;}
.y19a{bottom:108.666667pt;}
.y1b4{bottom:108.680000pt;}
.y140{bottom:110.240000pt;}
.yf3{bottom:110.426667pt;}
.y269{bottom:110.880000pt;}
.y1a8{bottom:111.360000pt;}
.y256{bottom:111.680000pt;}
.y213{bottom:112.320000pt;}
.y11f{bottom:113.440000pt;}
.y40{bottom:113.600000pt;}
.y1a7{bottom:114.720000pt;}
.y1d5{bottom:116.320000pt;}
.y15d{bottom:118.560000pt;}
.y1f6{bottom:119.360000pt;}
.y281{bottom:121.600000pt;}
.ydf{bottom:121.760000pt;}
.y17a{bottom:123.040000pt;}
.y97{bottom:123.520000pt;}
.y38{bottom:123.546667pt;}
.y81{bottom:123.560000pt;}
.y1a6{bottom:126.720000pt;}
.y37{bottom:126.880000pt;}
.y212{bottom:131.840000pt;}
.y255{bottom:133.280000pt;}
.yf2{bottom:134.906667pt;}
.y18e{bottom:137.600000pt;}
.y96{bottom:138.400000pt;}
.ya5{bottom:138.560000pt;}
.y70{bottom:138.586667pt;}
.y80{bottom:138.600000pt;}
.y9e{bottom:138.720000pt;}
.y1f5{bottom:138.880000pt;}
.y13f{bottom:140.800000pt;}
.y267{bottom:141.600000pt;}
.y11e{bottom:144.160000pt;}
.y1d4{bottom:147.040000pt;}
.y15c{bottom:149.280000pt;}
.y211{bottom:151.520000pt;}
.yde{bottom:152.320000pt;}
.ya4{bottom:153.440000pt;}
.y6f{bottom:153.466667pt;}
.y95{bottom:153.480000pt;}
.y1b9{bottom:153.626667pt;}
.y7f{bottom:153.640000pt;}
.y179{bottom:153.760000pt;}
.y9b{bottom:154.400000pt;}
.y18d{bottom:157.306667pt;}
.y1f4{bottom:158.586667pt;}
.y1a5{bottom:160.346667pt;}
.y239{bottom:160.986667pt;}
.y265{bottom:161.146667pt;}
.y22f{bottom:163.546667pt;}
.y254{bottom:164.026667pt;}
.y280{bottom:167.386667pt;}
.ya3{bottom:168.480000pt;}
.y6e{bottom:168.506667pt;}
.y7e{bottom:168.520000pt;}
.y1b8{bottom:168.666667pt;}
.y1b3{bottom:168.680000pt;}
.yb9{bottom:169.146667pt;}
.y210{bottom:171.066667pt;}
.y13e{bottom:171.546667pt;}
.y11d{bottom:174.746667pt;}
.y1f3{bottom:178.106667pt;}
.y15b{bottom:179.866667pt;}
.y1a4{bottom:180.026667pt;}
.ydd{bottom:183.066667pt;}
.ya2{bottom:183.520000pt;}
.y6d{bottom:183.546667pt;}
.y7d{bottom:183.560000pt;}
.y178{bottom:184.506667pt;}
.y18c{bottom:187.866667pt;}
.y20f{bottom:190.746667pt;}
.y11c{bottom:194.426667pt;}
.y253{bottom:194.586667pt;}
.y1f2{bottom:197.786667pt;}
.y94{bottom:198.440000pt;}
.y23a{bottom:198.560000pt;}
.y6c{bottom:198.586667pt;}
.y7c{bottom:198.600000pt;}
.y1a3{bottom:199.546667pt;}
.yb8{bottom:199.866667pt;}
.y13d{bottom:202.266667pt;}
.ydc{bottom:202.746667pt;}
.y18b{bottom:207.546667pt;}
.y20e{bottom:210.266667pt;}
.y15a{bottom:210.586667pt;}
.yfc{bottom:212.506667pt;}
.y22e{bottom:212.986667pt;}
.y6b{bottom:213.466667pt;}
.y93{bottom:213.480000pt;}
.y261{bottom:213.626667pt;}
.y7b{bottom:213.640000pt;}
.y23{bottom:214.266667pt;}
.y177{bottom:215.066667pt;}
.yb6{bottom:215.546667pt;}
.y264{bottom:216.346667pt;}
.y1f1{bottom:217.306667pt;}
.y1a2{bottom:219.226667pt;}
.ydb{bottom:222.266667pt;}
.y293{bottom:225.626667pt;}
.y6a{bottom:228.506667pt;}
.y7a{bottom:228.520000pt;}
.y260{bottom:228.666667pt;}
.y1b2{bottom:228.680000pt;}
.y20d{bottom:229.946667pt;}
.y88{bottom:230.106667pt;}
.y22{bottom:230.746667pt;}
.yfb{bottom:232.186667pt;}
.y13c{bottom:232.826667pt;}
.y1f0{bottom:236.986667pt;}
.y1d3{bottom:237.786667pt;}
.y1a1{bottom:238.746667pt;}
.y11b{bottom:240.026667pt;}
.yda{bottom:241.946667pt;}
.y69{bottom:243.546667pt;}
.y79{bottom:243.560000pt;}
.y1b1{bottom:243.586667pt;}
.y176{bottom:245.786667pt;}
.y21{bottom:247.226667pt;}
.y20c{bottom:249.466667pt;}
.y159{bottom:249.786667pt;}
.y252{bottom:255.386667pt;}
.y1ef{bottom:256.506667pt;}
.y1d2{bottom:257.306667pt;}
.y1a0{bottom:258.426667pt;}
.y92{bottom:258.440000pt;}
.y68{bottom:258.586667pt;}
.y78{bottom:258.600000pt;}
.y1b0{bottom:258.626667pt;}
.y22d{bottom:258.746667pt;}
.y1c2{bottom:260.026667pt;}
.y1b6{bottom:262.266667pt;}
.y36{bottom:262.586667pt;}
.yfa{bottom:262.906667pt;}
.y13b{bottom:263.546667pt;}
.y20{bottom:263.866667pt;}
.y18a{bottom:268.186667pt;}
.y20b{bottom:269.146667pt;}
.y158{bottom:269.306667pt;}
.y11a{bottom:270.746667pt;}
.y292{bottom:271.226667pt;}
.yd9{bottom:272.506667pt;}
.y67{bottom:273.466667pt;}
.y91{bottom:273.480000pt;}
.y25f{bottom:273.626667pt;}
.y77{bottom:273.666667pt;}
.y1c9{bottom:275.560000pt;}
.y1ee{bottom:276.186667pt;}
.y175{bottom:276.506667pt;}
.y22c{bottom:278.266667pt;}
.y1f{bottom:280.346667pt;}
.y251{bottom:285.946667pt;}
.y66{bottom:288.506667pt;}
.y90{bottom:288.520000pt;}
.y25e{bottom:288.666667pt;}
.y1af{bottom:288.706667pt;}
.y157{bottom:288.986667pt;}
.y119{bottom:290.266667pt;}
.yd8{bottom:292.186667pt;}
.yf9{bottom:293.466667pt;}
.y13a{bottom:294.266667pt;}
.y1ed{bottom:295.706667pt;}
.y1e{bottom:296.986667pt;}
.y1c8{bottom:299.880000pt;}
.y65{bottom:303.546667pt;}
.y8f{bottom:303.560000pt;}
.y1ae{bottom:303.586667pt;}
.y27f{bottom:304.346667pt;}
.y174{bottom:307.066667pt;}
.y156{bottom:308.506667pt;}
.y22b{bottom:308.986667pt;}
.y118{bottom:309.946667pt;}
.yd7{bottom:311.706667pt;}
.y1b5{bottom:311.866667pt;}
.y35{bottom:312.186667pt;}
.yf8{bottom:313.146667pt;}
.y2a4{bottom:314.426667pt;}
.y1ec{bottom:315.386667pt;}
.y250{bottom:316.666667pt;}
.y291{bottom:316.986667pt;}
.y8e{bottom:318.440000pt;}
.y64{bottom:318.626667pt;}
.yb5{bottom:321.146667pt;}
.y1d{bottom:324.186667pt;}
.y138{bottom:324.826667pt;}
.y34{bottom:327.706667pt;}
.y155{bottom:328.186667pt;}
.y22a{bottom:328.506667pt;}
.y117{bottom:329.466667pt;}
.y20a{bottom:329.786667pt;}
.y2a3{bottom:331.226667pt;}
.y8d{bottom:333.480000pt;}
.y63{bottom:333.506667pt;}
.y1eb{bottom:334.906667pt;}
.y24d{bottom:336.186667pt;}
.y173{bottom:337.786667pt;}
.y1c{bottom:340.666667pt;}
.y263{bottom:340.826667pt;}
.yd6{bottom:342.426667pt;}
.yf7{bottom:343.706667pt;}
.y28f{bottom:347.546667pt;}
.y1d1{bottom:348.026667pt;}
.y8c{bottom:348.520000pt;}
.y62{bottom:348.546667pt;}
.y209{bottom:349.306667pt;}
.y27e{bottom:349.946667pt;}
.yb3{bottom:351.866667pt;}
.y1ea{bottom:354.586667pt;}
.y1b{bottom:357.306667pt;}
.y154{bottom:358.906667pt;}
.y229{bottom:359.226667pt;}
.y116{bottom:360.186667pt;}
.yd5{bottom:361.946667pt;}
.y61{bottom:363.586667pt;}
.y171{bottom:368.506667pt;}
.y208{bottom:368.986667pt;}
.y1a{bottom:373.826667pt;}
.y1e9{bottom:374.146667pt;}
.yf6{bottom:374.466667pt;}
.y2a2{bottom:377.026667pt;}
.y8b{bottom:378.466667pt;}
.y60{bottom:378.626667pt;}
.y1d0{bottom:378.786667pt;}
.y19f{bottom:379.106667pt;}
.yd4{bottom:381.666667pt;}
.y207{bottom:388.546667pt;}
.y189{bottom:389.506667pt;}
.y228{bottom:389.986667pt;}
.y19{bottom:390.306667pt;}
.y5f{bottom:393.506667pt;}
.y1e8{bottom:393.826667pt;}
.y27d{bottom:395.746667pt;}
.y19e{bottom:398.626667pt;}
.y137{bottom:400.546667pt;}
.yd3{bottom:401.186667pt;}
.y28e{bottom:402.786667pt;}
.y115{bottom:405.986667pt;}
.y2a1{bottom:407.586667pt;}
.y206{bottom:408.226667pt;}
.y5e{bottom:408.546667pt;}
.y18{bottom:409.026667pt;}
.y153{bottom:409.186667pt;}
.y1cf{bottom:409.346667pt;}
.y19d{bottom:418.306667pt;}
.yf5{bottom:420.066667pt;}
.y136{bottom:420.226667pt;}
.y227{bottom:420.546667pt;}
.yd2{bottom:420.866667pt;}
.y5d{bottom:423.586667pt;}
.y112{bottom:425.506667pt;}
.y1c0{bottom:425.826667pt;}
.y205{bottom:427.746667pt;}
.y24c{bottom:430.786667pt;}
.y17{bottom:431.266667pt;}
.y19c{bottom:437.826667pt;}
.y8a{bottom:438.466667pt;}
.y5c{bottom:438.626667pt;}
.y135{bottom:439.746667pt;}
.y1ce{bottom:440.066667pt;}
.y226{bottom:440.226667pt;}
.y27c{bottom:441.346667pt;}
.y170{bottom:444.226667pt;}
.y25d{bottom:446.466667pt;}
.y204{bottom:447.426667pt;}
.y28d{bottom:448.386667pt;}
.y188{bottom:450.946667pt;}
.y5b{bottom:453.506667pt;}
.y16{bottom:453.666667pt;}
.y1e7{bottom:454.466667pt;}
.y19b{bottom:457.506667pt;}
.y134{bottom:459.426667pt;}
.y24b{bottom:461.506667pt;}
.y2a0{bottom:462.786667pt;}
.y16f{bottom:463.746667pt;}
.yd0{bottom:466.466667pt;}
.y5a{bottom:468.546667pt;}
.y187{bottom:470.466667pt;}
.y1cd{bottom:470.786667pt;}
.y1bf{bottom:475.266667pt;}
.y15{bottom:475.906667pt;}
.y236{bottom:476.706667pt;}
.y199{bottom:477.026667pt;}
.y203{bottom:478.146667pt;}
.y133{bottom:478.946667pt;}
.y59{bottom:483.586667pt;}
.y1e6{bottom:485.186667pt;}
.y27b{bottom:487.106667pt;}
.y111{bottom:490.146667pt;}
.yf4{bottom:495.746667pt;}
.y202{bottom:497.666667pt;}
.y14{bottom:498.306667pt;}
.y89{bottom:498.466667pt;}
.y58{bottom:498.626667pt;}
.y152{bottom:499.746667pt;}
.y186{bottom:501.186667pt;}
.yb2{bottom:502.626667pt;}
.y24a{bottom:507.106667pt;}
.y29f{bottom:508.386667pt;}
.y28c{bottom:509.026667pt;}
.y132{bottom:509.666667pt;}
.y57{bottom:513.506667pt;}
.yf1{bottom:515.426667pt;}
.y1e5{bottom:515.746667pt;}
.y201{bottom:517.346667pt;}
.y151{bottom:519.426667pt;}
.y13{bottom:520.546667pt;}
.y110{bottom:520.706667pt;}
.y16e{bottom:528.386667pt;}
.y56{bottom:528.573333pt;}
.y225{bottom:530.946667pt;}
.y185{bottom:531.746667pt;}
.y27a{bottom:532.706667pt;}
.yb1{bottom:533.186667pt;}
.y1e4{bottom:535.426667pt;}
.y1be{bottom:535.906667pt;}
.y200{bottom:536.866667pt;}
.y249{bottom:537.826667pt;}
.y12{bottom:542.946667pt;}
.y55{bottom:543.613333pt;}
.y1cc{bottom:546.306667pt;}
.y16d{bottom:547.906667pt;}
.yb0{bottom:548.866667pt;}
.y224{bottom:550.466667pt;}
.y10f{bottom:551.426667pt;}
.y29e{bottom:554.146667pt;}
.y1e3{bottom:554.946667pt;}
.ycf{bottom:557.186667pt;}
.y54{bottom:558.653333pt;}
.y184{bottom:562.466667pt;}
.y279{bottom:563.426667pt;}
.y248{bottom:568.546667pt;}
.y28b{bottom:569.826667pt;}
.y11{bottom:570.466667pt;}
.y1e2{bottom:574.626667pt;}
.y235{bottom:575.106667pt;}
.yaf{bottom:579.586667pt;}
.y223{bottom:581.186667pt;}
.y10e{bottom:582.146667pt;}
.y150{bottom:583.906667pt;}
.y131{bottom:585.346667pt;}
.y1bb{bottom:585.506667pt;}
.ycc{bottom:587.933333pt;}
.y183{bottom:593.213333pt;}
.y278{bottom:594.013333pt;}
.y1e1{bottom:594.173333pt;}
.yae{bottom:595.293333pt;}
.y1cb{bottom:595.933333pt;}
.y1ff{bottom:597.533333pt;}
.y198{bottom:597.693333pt;}
.y29d{bottom:599.773333pt;}
.y222{bottom:600.733333pt;}
.y14f{bottom:603.613333pt;}
.y10{bottom:605.853333pt;}
.y16c{bottom:608.573333pt;}
.yad{bottom:610.973333pt;}
.y182{bottom:612.733333pt;}
.y1e0{bottom:613.853333pt;}
.y247{bottom:614.173333pt;}
.y28a{bottom:615.453333pt;}
.y1ca{bottom:615.613333pt;}
.y12e{bottom:616.093333pt;}
.y1fe{bottom:617.213333pt;}
.y221{bottom:620.413333pt;}
.y10d{bottom:627.773333pt;}
.y16b{bottom:628.253333pt;}
.y29c{bottom:630.493333pt;}
.y52{bottom:631.133333pt;}
.y181{bottom:632.413333pt;}
.yf{bottom:633.373333pt;}
.y14e{bottom:634.173333pt;}
.y1fd{bottom:636.733333pt;}
.y220{bottom:639.933333pt;}
.yac{bottom:641.693333pt;}
.y246{bottom:644.893333pt;}
.y32{bottom:646.493333pt;}
.y50{bottom:648.573333pt;}
.y277{bottom:649.213333pt;}
.y1df{bottom:653.053333pt;}
.y1fc{bottom:656.413333pt;}
.y1ad{bottom:658.173333pt;}
.y10c{bottom:658.493333pt;}
.y21f{bottom:659.613333pt;}
.y289{bottom:661.053333pt;}
.y1c7{bottom:661.213333pt;}
.y245{bottom:664.413333pt;}
.y14d{bottom:664.893333pt;}
.y4f{bottom:666.173333pt;}
.yf0{bottom:670.013333pt;}
.yab{bottom:672.253333pt;}
.y197{bottom:673.373333pt;}
.y1fb{bottom:675.933333pt;}
.ye{bottom:676.093333pt;}
.y10b{bottom:678.013333pt;}
.y21e{bottom:679.133333pt;}
.y12d{bottom:680.573333pt;}
.yaa{bottom:687.933333pt;}
.y16a{bottom:688.893333pt;}
.yef{bottom:689.533333pt;}
.y276{bottom:694.813333pt;}
.y242{bottom:695.133333pt;}
.y14c{bottom:695.613333pt;}
.y234{bottom:695.773333pt;}
.y30{bottom:696.093333pt;}
.y180{bottom:696.893333pt;}
.y21d{bottom:698.813333pt;}
.y1ac{bottom:703.933333pt;}
.y1ba{bottom:706.173333pt;}
.y288{bottom:706.813333pt;}
.y169{bottom:708.573333pt;}
.y10a{bottom:708.733333pt;}
.y12c{bottom:711.293333pt;}
.ycb{bottom:712.413333pt;}
.y2f{bottom:713.213333pt;}
.y1de{bottom:713.693333pt;}
.y275{bottom:714.493333pt;}
.y4e{bottom:715.773333pt;}
.yee{bottom:720.253333pt;}
.y29b{bottom:721.853333pt;}
.yd{bottom:722.653333pt;}
.y196{bottom:722.973333pt;}
.y14b{bottom:726.173333pt;}
.y17f{bottom:727.613333pt;}
.y1dd{bottom:733.373333pt;}
.ya9{bottom:733.693333pt;}
.y109{bottom:739.293333pt;}
.yed{bottom:739.773333pt;}
.y12b{bottom:741.853333pt;}
.yca{bottom:743.133333pt;}
.y233{bottom:745.373333pt;}
.y25c{bottom:747.293333pt;}
.ya8{bottom:750.493333pt;}
.y287{bottom:752.413333pt;}
.y1dc{bottom:752.893333pt;}
.y1ab{bottom:753.373333pt;}
.y195{bottom:753.693333pt;}
.y76{bottom:755.773333pt;}
.y14a{bottom:756.893333pt;}
.yc{bottom:758.013333pt;}
.yec{bottom:759.453333pt;}
.y274{bottom:760.093333pt;}
.y4d{bottom:765.373333pt;}
.y108{bottom:770.013333pt;}
.y12a{bottom:772.573333pt;}
.y168{bottom:773.053333pt;}
.y17e{bottom:773.213333pt;}
.y21b{bottom:774.493333pt;}
.yc9{bottom:774.973333pt;}
.y273{bottom:779.773333pt;}
.yb{bottom:780.413333pt;}
.y29a{bottom:782.493333pt;}
.y4b{bottom:782.653333pt;}
.y149{bottom:787.613333pt;}
.y241{bottom:789.693333pt;}
.yea{bottom:790.173333pt;}
.y1db{bottom:792.093333pt;}
.y167{bottom:792.573333pt;}
.yc8{bottom:794.653333pt;}
.y25b{bottom:796.733333pt;}
.y286{bottom:798.173333pt;}
.ya6{bottom:800.093333pt;}
.y107{bottom:800.773333pt;}
.ya{bottom:802.693333pt;}
.y129{bottom:803.333333pt;}
.y194{bottom:803.973333pt;}
.y1fa{bottom:807.173333pt;}
.y240{bottom:809.253333pt;}
.y1da{bottom:811.813333pt;}
.y166{bottom:812.293333pt;}
.y299{bottom:813.093333pt;}
.y4a{bottom:813.413333pt;}
.yc7{bottom:814.213333pt;}
.y148{bottom:818.213333pt;}
.y106{bottom:820.293333pt;}
.ye9{bottom:820.773333pt;}
.y232{bottom:821.093333pt;}
.y128{bottom:822.853333pt;}
.y193{bottom:823.493333pt;}
.y21a{bottom:823.973333pt;}
.y9{bottom:825.093333pt;}
.y272{bottom:825.413333pt;}
.y49{bottom:830.693333pt;}
.ya1{bottom:830.853333pt;}
.y1d9{bottom:831.333333pt;}
.y165{bottom:831.813333pt;}
.yc6{bottom:833.893333pt;}
.y25a{bottom:842.533333pt;}
.y219{bottom:843.653333pt;}
.y285{bottom:843.813333pt;}
.y271{bottom:845.093333pt;}
.y8{bottom:847.333333pt;}
.y147{bottom:848.933333pt;}
.y103{bottom:851.013333pt;}
.ye8{bottom:851.493333pt;}
.yc5{bottom:853.413333pt;}
.y127{bottom:853.573333pt;}
.y298{bottom:858.853333pt;}
.y48{bottom:861.413333pt;}
.y218{bottom:863.173333pt;}
.y7{bottom:869.733333pt;}
.y23e{bottom:870.053333pt;}
.y1d8{bottom:870.533333pt;}
.y164{bottom:871.013333pt;}
.yc4{bottom:873.093333pt;}
.y270{bottom:875.653333pt;}
.y146{bottom:879.653333pt;}
.ye7{bottom:882.213333pt;}
.y1f9{bottom:882.853333pt;}
.y126{bottom:884.293333pt;}
.y259{bottom:888.133333pt;}
.y284{bottom:889.413333pt;}
.y1d7{bottom:890.213333pt;}
.y6{bottom:891.973333pt;}
.yc2{bottom:892.613333pt;}
.y26f{bottom:895.333333pt;}
.y192{bottom:899.173333pt;}
.y163{bottom:901.733333pt;}
.y217{bottom:902.373333pt;}
.y297{bottom:904.453333pt;}
.y145{bottom:910.213333pt;}
.ye6{bottom:912.773333pt;}
.y5{bottom:914.373333pt;}
.y125{bottom:914.853333pt;}
.y258{bottom:918.853333pt;}
.y1aa{bottom:921.413333pt;}
.yc1{bottom:924.613333pt;}
.y26e{bottom:925.893333pt;}
.y2e{bottom:927.973333pt;}
.y2d{bottom:928.613333pt;}
.y191{bottom:929.893333pt;}
.y231{bottom:931.333333pt;}
.y162{bottom:932.453333pt;}
.y283{bottom:935.173333pt;}
.y4{bottom:936.613333pt;}
.y144{bottom:940.933333pt;}
.y47{bottom:941.573333pt;}
.ye5{bottom:943.493333pt;}
.y2c{bottom:944.293333pt;}
.y124{bottom:945.573333pt;}
.y257{bottom:949.413333pt;}
.y23c{bottom:949.573333pt;}
.y296{bottom:950.213333pt;}
.y1d6{bottom:950.853333pt;}
.y161{bottom:951.973333pt;}
.y46{bottom:959.013333pt;}
.y2b{bottom:959.973333pt;}
.y102{bottom:960.613333pt;}
.ye4{bottom:963.013333pt;}
.y3{bottom:964.133333pt;}
.y123{bottom:965.093333pt;}
.y143{bottom:971.653333pt;}
.yc0{bottom:974.853333pt;}
.y29{bottom:975.653333pt;}
.y45{bottom:976.293333pt;}
.y101{bottom:980.133333pt;}
.y1c5{bottom:980.773333pt;}
.ye3{bottom:982.693333pt;}
.y160{bottom:991.173333pt;}
.y26{bottom:991.973333pt;}
.ybf{bottom:994.533333pt;}
.y295{bottom:995.813333pt;}
.ye2{bottom:1002.213333pt;}
.y2{bottom:1004.613333pt;}
.ybe{bottom:1010.213333pt;}
.y100{bottom:1010.853333pt;}
.ye1{bottom:1021.920000pt;}
.ybd{bottom:1025.920000pt;}
.y25{bottom:1045.120000pt;}
.y1{bottom:1045.280000pt;}
.y24{bottom:1062.080000pt;}
.h10{height:1.931250pt;}
.ha{height:14.880000pt;}
.h30{height:14.912000pt;}
.hc{height:15.040000pt;}
.h2b{height:15.072000pt;}
.h29{height:16.160000pt;}
.h12{height:16.480000pt;}
.h1d{height:16.640000pt;}
.h22{height:16.800000pt;}
.h21{height:16.960000pt;}
.h32{height:18.880000pt;}
.h34{height:18.912000pt;}
.h31{height:19.040000pt;}
.h39{height:19.072000pt;}
.h1c{height:26.645625pt;}
.h1e{height:29.920000pt;}
.h2f{height:29.952000pt;}
.h1f{height:30.080000pt;}
.h20{height:30.112000pt;}
.h35{height:31.200000pt;}
.h33{height:31.360000pt;}
.h27{height:34.265900pt;}
.hd{height:35.975313pt;}
.h7{height:36.210938pt;}
.he{height:37.920930pt;}
.h4b{height:40.073438pt;}
.hb{height:40.955312pt;}
.h16{height:41.759375pt;}
.h2d{height:43.716250pt;}
.h3{height:44.418750pt;}
.h2a{height:44.960000pt;}
.h3e{height:44.992000pt;}
.h40{height:45.120000pt;}
.h5b{height:45.152000pt;}
.h1b{height:45.396250pt;}
.h13{height:46.287500pt;}
.h41{height:46.811250pt;}
.h17{height:48.800000pt;}
.h8{height:48.832000pt;}
.h14{height:48.960000pt;}
.h4e{height:48.992000pt;}
.h6{height:52.134375pt;}
.h9{height:52.143750pt;}
.h56{height:52.990313pt;}
.h5{height:53.535000pt;}
.h5d{height:54.400000pt;}
.h5e{height:54.560000pt;}
.h5f{height:54.592000pt;}
.h1a{height:59.340000pt;}
.h44{height:60.000000pt;}
.h45{height:60.032000pt;}
.h37{height:60.351562pt;}
.h19{height:62.812500pt;}
.hf{height:63.360000pt;}
.h3f{height:63.840000pt;}
.h46{height:64.000000pt;}
.h4f{height:74.880000pt;}
.h26{height:74.912000pt;}
.h3b{height:75.040000pt;}
.h42{height:75.072000pt;}
.h58{height:78.880000pt;}
.h2{height:80.629687pt;}
.h43{height:89.920000pt;}
.h51{height:89.952000pt;}
.h38{height:90.080000pt;}
.h50{height:90.112000pt;}
.h57{height:91.232000pt;}
.h59{height:93.920000pt;}
.h5a{height:93.952000pt;}
.h4{height:96.562500pt;}
.h53{height:97.760000pt;}
.h2e{height:104.960000pt;}
.h52{height:104.992000pt;}
.h55{height:105.152000pt;}
.h3d{height:108.800000pt;}
.h3c{height:108.832000pt;}
.h47{height:120.032000pt;}
.h36{height:123.840000pt;}
.h18{height:135.066667pt;}
.h4c{height:149.946667pt;}
.h2c{height:150.106667pt;}
.h3a{height:153.946667pt;}
.h4a{height:164.986667pt;}
.h28{height:209.946667pt;}
.h49{height:210.106667pt;}
.h11{height:214.106667pt;}
.h24{height:285.026667pt;}
.h5c{height:300.026667pt;}
.h54{height:315.066667pt;}
.h48{height:315.106667pt;}
.h15{height:318.146667pt;}
.h4d{height:318.906667pt;}
.h25{height:525.026667pt;}
.h23{height:570.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:56.320000pt;}
.w7{width:56.352000pt;}
.w9{width:56.480000pt;}
.wb{width:132.352000pt;}
.w5{width:170.426667pt;}
.wd{width:274.146667pt;}
.we{width:292.986667pt;}
.w4{width:341.506667pt;}
.wc{width:567.133333pt;}
.w6{width:683.813333pt;}
.w3{width:699.493333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x1f{left:15.040000pt;}
.x1d{left:20.960000pt;}
.x35{left:31.200000pt;}
.x19{left:46.440000pt;}
.x7{left:47.999988pt;}
.x2c{left:51.999988pt;}
.x15{left:55.840000pt;}
.x1e{left:112.832000pt;}
.x16{left:150.426667pt;}
.x37{left:162.746667pt;}
.x31{left:166.106667pt;}
.x20{left:169.946667pt;}
.x30{left:177.306667pt;}
.x2d{left:180.346667pt;}
.x2f{left:198.906667pt;}
.x32{left:200.826667pt;}
.x36{left:204.986667pt;}
.x4{left:212.026655pt;}
.x2a{left:223.266667pt;}
.x18{left:226.906667pt;}
.x5{left:229.306655pt;}
.x2b{left:240.026655pt;}
.x2e{left:245.506667pt;}
.x6{left:256.826655pt;}
.x21{left:284.066667pt;}
.x13{left:293.026655pt;}
.x1b{left:304.226667pt;}
.x3{left:311.746655pt;}
.x22{left:341.026667pt;}
.x38{left:359.106667pt;}
.x1c{left:379.613333pt;}
.x2{left:396.866655pt;}
.x17{left:398.146667pt;}
.x23{left:455.133333pt;}
.x33{left:476.253333pt;}
.x24{left:512.093333pt;}
.x1{left:534.973322pt;}
.xd{left:540.093322pt;}
.xf{left:542.333322pt;}
.x12{left:549.053322pt;}
.x34{left:559.013333pt;}
.x10{left:561.693322pt;}
.x11{left:565.373322pt;}
.x1a{left:569.213333pt;}
.xe{left:579.293322pt;}
.xc{left:589.533322pt;}
.x29{left:597.893333pt;}
.xb{left:600.253322pt;}
.x28{left:605.093333pt;}
.x8{left:619.973322pt;}
.x9{left:622.213322pt;}
.x25{left:626.213333pt;}
.x26{left:683.173333pt;}
.x27{left:692.133333pt;}
.xa{left:745.893322pt;}
}




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