
    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_c00581dcb5299c21347111c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_320a55527672c99718e0c6c3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d60a7cb0269dd7d04b3dc0c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_dbd308fac16a48d0a62ff70e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_64f4dbd5f1158a2d67d661b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_89f168757e77cab2d591de71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_4404d2dc5d5d17f3354b77da.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e3312124c3e4da3aabcb7ce5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_f010e9d2bf5dcdac4df47018.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_523c1121d89150940f2ff224.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117188;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-82.800000px;}
.v4{vertical-align:-77.040000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-1.512000px;}
.lsd{letter-spacing:-0.732000px;}
.ls18{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.027360px;}
.lsc{letter-spacing:-0.012960px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls10{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.106800px;}
.ls31{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.149760px;}
.ls26{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.707040px;}
.ls1b{letter-spacing:0.720000px;}
.ls19{letter-spacing:13.860000px;}
.ls12{letter-spacing:19.440000px;}
.ls1a{letter-spacing:20.340000px;}
.ls14{letter-spacing:21.060000px;}
.ls17{letter-spacing:33.984000px;}
.ls30{letter-spacing:52.560000px;}
.ls20{letter-spacing:64.224000px;}
.ls11{letter-spacing:109.440000px;}
.ls16{letter-spacing:110.160000px;}
.ls1f{letter-spacing:131.909760px;}
.ls2f{letter-spacing:476.076000px;}
.ls2b{letter-spacing:483.276000px;}
.ls28{letter-spacing:505.596000px;}
.ls27{letter-spacing:521.436000px;}
.ls2c{letter-spacing:527.196000px;}
.ls2e{letter-spacing:554.556000px;}
.ls2d{letter-spacing:615.756000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws12{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.wsd{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.712400px;}
.wse{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.297800px;}
.wsf{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.220000px;}
.ws0{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1c{margin-left:-5.444640px;}
._b{margin-left:-3.618000px;}
._c{margin-left:-2.214000px;}
._4{margin-left:-1.053360px;}
._1{width:1.308000px;}
._a{width:2.526000px;}
._9{width:4.222320px;}
._11{width:5.940000px;}
._16{width:7.089360px;}
._e{width:8.100000px;}
._d{width:9.651360px;}
._8{width:10.725120px;}
._18{width:12.734880px;}
._19{width:13.749120px;}
._1a{width:14.841120px;}
._1f{width:16.272000px;}
._13{width:17.334000px;}
._14{width:18.360000px;}
._1b{width:19.399200px;}
._5{width:20.571600px;}
._17{width:21.791760px;}
._f{width:23.544000px;}
._10{width:24.624000px;}
._2b{width:25.681920px;}
._3{width:26.717040px;}
._1d{width:28.268880px;}
._27{width:29.394720px;}
._20{width:30.888000px;}
._21{width:32.256000px;}
._2a{width:33.600000px;}
._28{width:35.136000px;}
._3e{width:36.521040px;}
._40{width:37.612320px;}
._3f{width:39.530640px;}
._15{width:40.878000px;}
._26{width:42.258000px;}
._25{width:43.290000px;}
._2c{width:44.640000px;}
._2d{width:45.720000px;}
._24{width:47.303280px;}
._7{width:49.167360px;}
._6{width:50.674800px;}
._39{width:52.226400px;}
._44{width:53.896800px;}
._22{width:58.680000px;}
._23{width:59.748000px;}
._34{width:61.776000px;}
._35{width:63.072000px;}
._45{width:105.840000px;}
._43{width:117.216000px;}
._1e{width:165.089520px;}
._41{width:299.088000px;}
._42{width:300.096000px;}
._3b{width:457.560000px;}
._3c{width:479.880000px;}
._3d{width:486.360000px;}
._3a{width:493.560000px;}
._0{width:510.636000px;}
._32{width:912.540000px;}
._30{width:936.156000px;}
._31{width:940.620000px;}
._2f{width:954.300000px;}
._38{width:957.900000px;}
._37{width:962.940000px;}
._33{width:990.300000px;}
._2e{width:1012.620000px;}
._36{width:1040.700000px;}
._2{width:1080.300000px;}
._29{width:1274.826000px;}
._12{width:1308.922080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y214{bottom:1.980000px;}
.y213{bottom:3.240000px;}
.y23e{bottom:3.600000px;}
.y20f{bottom:4.680000px;}
.y240{bottom:5.940000px;}
.yb0{bottom:6.120000px;}
.yb5{bottom:6.300000px;}
.y264{bottom:7.560000px;}
.y217{bottom:8.820000px;}
.y27f{bottom:10.620000px;}
.y27d{bottom:10.800000px;}
.yc5{bottom:16.560000px;}
.ybd{bottom:16.740000px;}
.y2a0{bottom:17.325000px;}
.y21a{bottom:20.340000px;}
.y212{bottom:20.520000px;}
.y281{bottom:20.880000px;}
.y23f{bottom:23.250000px;}
.yd3{bottom:23.394000px;}
.yb8{bottom:23.400000px;}
.yb4{bottom:23.580000px;}
.yc3{bottom:23.610000px;}
.y263{bottom:24.840000px;}
.yc8{bottom:25.380000px;}
.y24f{bottom:32.040000px;}
.yba{bottom:33.840000px;}
.y219{bottom:37.620000px;}
.y211{bottom:37.800000px;}
.y26f{bottom:37.845000px;}
.y280{bottom:37.980000px;}
.yd2{bottom:40.674000px;}
.ycf{bottom:40.680000px;}
.yd1{bottom:40.860000px;}
.y262{bottom:42.120000px;}
.yc1{bottom:43.020000px;}
.y5{bottom:45.180000px;}
.y33{bottom:45.900000px;}
.y23c{bottom:54.900000px;}
.y260{bottom:55.110000px;}
.y26e{bottom:55.125000px;}
.y261{bottom:59.400000px;}
.y4{bottom:60.840000px;}
.y32{bottom:61.740000px;}
.yc0{bottom:63.210000px;}
.yb2{bottom:63.585000px;}
.y23b{bottom:72.180000px;}
.y25f{bottom:72.210000px;}
.y26d{bottom:72.405000px;}
.y3{bottom:76.320000px;}
.y31{bottom:77.220000px;}
.y299{bottom:87.120000px;}
.ycc{bottom:88.014000px;}
.y23a{bottom:89.460000px;}
.y25e{bottom:89.490000px;}
.y289{bottom:89.505000px;}
.y26c{bottom:89.685000px;}
.y2{bottom:91.836000px;}
.y30{bottom:92.916000px;}
.y2a2{bottom:95.760000px;}
.y259{bottom:95.790000px;}
.y29f{bottom:101.565000px;}
.y29d{bottom:106.560000px;}
.y239{bottom:106.740000px;}
.y25d{bottom:106.770000px;}
.y26b{bottom:106.785000px;}
.ycb{bottom:108.174000px;}
.y108{bottom:109.836000px;}
.y1a2{bottom:110.736000px;}
.y1fd{bottom:111.816000px;}
.y2d{bottom:113.076000px;}
.y5a{bottom:113.616000px;}
.y182{bottom:114.696000px;}
.y227{bottom:116.856000px;}
.y98{bottom:118.836000px;}
.y2ca{bottom:119.376000px;}
.y29c{bottom:123.840000px;}
.y238{bottom:124.020000px;}
.y25c{bottom:124.050000px;}
.y26a{bottom:124.065000px;}
.y94{bottom:125.316000px;}
.yae{bottom:125.496000px;}
.y20d{bottom:125.676000px;}
.y159{bottom:126.216000px;}
.y16b{bottom:126.756000px;}
.yf6{bottom:127.836000px;}
.y107{bottom:128.916000px;}
.y2c{bottom:129.456000px;}
.y1fc{bottom:130.716000px;}
.y126{bottom:131.076000px;}
.y1a1{bottom:131.436000px;}
.y181{bottom:133.776000px;}
.y1ce{bottom:133.956000px;}
.y59{bottom:134.316000px;}
.y226{bottom:137.556000px;}
.y97{bottom:139.536000px;}
.y2c8{bottom:140.076000px;}
.y287{bottom:140.616000px;}
.y2a3{bottom:141.120000px;}
.y29b{bottom:141.165000px;}
.y237{bottom:141.300000px;}
.y25b{bottom:141.330000px;}
.y269{bottom:141.345000px;}
.y140{bottom:142.596000px;}
.yca{bottom:143.316000px;}
.y158{bottom:145.296000px;}
.y16a{bottom:145.656000px;}
.y2b{bottom:146.016000px;}
.yad{bottom:146.196000px;}
.y20c{bottom:146.376000px;}
.y106{bottom:147.816000px;}
.yf5{bottom:148.536000px;}
.y1ea{bottom:149.436000px;}
.y1fb{bottom:149.796000px;}
.y125{bottom:149.976000px;}
.y1a0{bottom:152.130000px;}
.y180{bottom:152.670000px;}
.y1cd{bottom:153.030000px;}
.y58{bottom:155.010000px;}
.y225{bottom:158.250000px;}
.y236{bottom:158.400000px;}
.y29a{bottom:158.445000px;}
.y25a{bottom:158.610000px;}
.y268{bottom:158.625000px;}
.y96{bottom:160.230000px;}
.y2c7{bottom:160.770000px;}
.y298{bottom:160.950000px;}
.y286{bottom:161.130000px;}
.y13f{bottom:161.670000px;}
.y2a{bottom:162.570000px;}
.y157{bottom:164.190000px;}
.y169{bottom:164.730000px;}
.y93{bottom:166.710000px;}
.yac{bottom:166.890000px;}
.y20b{bottom:167.070000px;}
.y1fa{bottom:168.690000px;}
.yf4{bottom:169.230000px;}
.y1e9{bottom:169.770000px;}
.y17f{bottom:171.570000px;}
.y1cc{bottom:171.930000px;}
.y19f{bottom:172.830000px;}
.y235{bottom:175.680000px;}
.y57{bottom:175.710000px;}
.y24d{bottom:175.890000px;}
.y267{bottom:175.905000px;}
.y29{bottom:178.950000px;}
.y13e{bottom:180.570000px;}
.y95{bottom:180.930000px;}
.y2c6{bottom:181.470000px;}
.y285{bottom:181.830000px;}
.y156{bottom:183.270000px;}
.y168{bottom:183.630000px;}
.y105{bottom:185.790000px;}
.y92{bottom:187.410000px;}
.yab{bottom:187.590000px;}
.y20a{bottom:187.770000px;}
.y1f9{bottom:187.950000px;}
.y1e8{bottom:188.850000px;}
.yf3{bottom:189.930000px;}
.y228{bottom:190.620000px;}
.y17e{bottom:190.650000px;}
.y1cb{bottom:191.010000px;}
.y234{bottom:193.005000px;}
.y19e{bottom:193.170000px;}
.y266{bottom:193.185000px;}
.y28{bottom:195.510000px;}
.y56{bottom:196.410000px;}
.y24c{bottom:196.590000px;}
.yd0{bottom:198.750000px;}
.y13d{bottom:199.470000px;}
.y224{bottom:199.650000px;}
.y7d{bottom:201.630000px;}
.y155{bottom:202.170000px;}
.y167{bottom:202.530000px;}
.y104{bottom:204.690000px;}
.y229{bottom:205.785000px;}
.y1e7{bottom:207.750000px;}
.y91{bottom:208.110000px;}
.yaa{bottom:208.290000px;}
.y209{bottom:208.470000px;}
.y1f8{bottom:208.650000px;}
.y17d{bottom:209.550000px;}
.y1ca{bottom:210.270000px;}
.y233{bottom:210.285000px;}
.yf2{bottom:210.630000px;}
.y27{bottom:211.890000px;}
.y19d{bottom:212.250000px;}
.y55{bottom:217.110000px;}
.y24b{bottom:217.290000px;}
.y13c{bottom:218.550000px;}
.y223{bottom:220.350000px;}
.y154{bottom:221.070000px;}
.y166{bottom:221.610000px;}
.y7c{bottom:222.330000px;}
.y2c5{bottom:222.870000px;}
.y284{bottom:223.230000px;}
.y103{bottom:223.770000px;}
.y1e6{bottom:226.830000px;}
.y232{bottom:227.565000px;}
.y26{bottom:228.450000px;}
.y17c{bottom:228.630000px;}
.y90{bottom:228.810000px;}
.ya9{bottom:228.990000px;}
.y208{bottom:229.170000px;}
.y1f7{bottom:229.350000px;}
.y1c9{bottom:230.970000px;}
.y19c{bottom:231.150000px;}
.yf1{bottom:231.330000px;}
.y1b2{bottom:232.590000px;}
.y13b{bottom:237.450000px;}
.y54{bottom:237.810000px;}
.y24a{bottom:237.990000px;}
.y153{bottom:240.150000px;}
.y165{bottom:240.510000px;}
.y222{bottom:241.050000px;}
.y102{bottom:242.670000px;}
.y7b{bottom:243.030000px;}
.y2c4{bottom:243.570000px;}
.y283{bottom:243.930000px;}
.y25{bottom:244.830000px;}
.y231{bottom:244.845000px;}
.y1e5{bottom:245.730000px;}
.y17b{bottom:247.530000px;}
.y8f{bottom:249.510000px;}
.ya8{bottom:249.690000px;}
.y207{bottom:249.870000px;}
.y1f6{bottom:250.050000px;}
.y19b{bottom:250.230000px;}
.y1c8{bottom:251.670000px;}
.yf0{bottom:252.030000px;}
.y1b1{bottom:253.110000px;}
.yce{bottom:254.370000px;}
.y13a{bottom:256.530000px;}
.y53{bottom:258.510000px;}
.y249{bottom:258.690000px;}
.y152{bottom:259.050000px;}
.y164{bottom:259.590000px;}
.y24{bottom:261.390000px;}
.y101{bottom:261.570000px;}
.y221{bottom:261.750000px;}
.y230{bottom:261.945000px;}
.y7a{bottom:263.730000px;}
.y2c3{bottom:264.270000px;}
.y1e4{bottom:264.630000px;}
.y17a{bottom:266.430000px;}
.y19a{bottom:269.130000px;}
.y8e{bottom:270.210000px;}
.ya7{bottom:270.390000px;}
.y206{bottom:270.570000px;}
.y1b0{bottom:272.010000px;}
.y1c7{bottom:272.370000px;}
.yef{bottom:272.730000px;}
.y139{bottom:275.430000px;}
.y23{bottom:277.770000px;}
.y151{bottom:278.130000px;}
.y163{bottom:278.490000px;}
.y52{bottom:279.210000px;}
.y22f{bottom:279.225000px;}
.y248{bottom:279.390000px;}
.y100{bottom:280.650000px;}
.y220{bottom:282.450000px;}
.y1e3{bottom:283.710000px;}
.y79{bottom:284.430000px;}
.y2c2{bottom:284.970000px;}
.y282{bottom:285.330000px;}
.y179{bottom:285.510000px;}
.y1f5{bottom:285.690000px;}
.y199{bottom:288.030000px;}
.y8d{bottom:290.910000px;}
.ya6{bottom:291.090000px;}
.y205{bottom:291.270000px;}
.y1c6{bottom:293.070000px;}
.yee{bottom:293.430000px;}
.y22{bottom:294.330000px;}
.y138{bottom:294.510000px;}
.y22e{bottom:296.505000px;}
.y150{bottom:297.075000px;}
.y162{bottom:297.795000px;}
.yff{bottom:299.595000px;}
.y51{bottom:299.955000px;}
.y247{bottom:300.135000px;}
.y1e2{bottom:302.655000px;}
.y27e{bottom:303.015000px;}
.y178{bottom:304.455000px;}
.y78{bottom:305.175000px;}
.y2c1{bottom:305.715000px;}
.y198{bottom:307.155000px;}
.ycd{bottom:309.855000px;}
.y1af{bottom:310.035000px;}
.y21{bottom:310.935000px;}
.y8c{bottom:311.295000px;}
.ya5{bottom:311.835000px;}
.y204{bottom:312.015000px;}
.y137{bottom:313.455000px;}
.y22d{bottom:313.785000px;}
.y1c5{bottom:313.815000px;}
.yed{bottom:314.175000px;}
.y14f{bottom:315.975000px;}
.y161{bottom:318.495000px;}
.yfe{bottom:318.675000px;}
.y50{bottom:320.655000px;}
.y246{bottom:320.835000px;}
.y1e1{bottom:321.735000px;}
.y177{bottom:323.535000px;}
.y21f{bottom:323.895000px;}
.y77{bottom:325.875000px;}
.y197{bottom:326.055000px;}
.y2c0{bottom:326.415000px;}
.y20{bottom:327.315000px;}
.y1ae{bottom:328.935000px;}
.y8b{bottom:330.375000px;}
.y22c{bottom:331.065000px;}
.y136{bottom:332.355000px;}
.ya4{bottom:332.535000px;}
.y203{bottom:332.715000px;}
.y1c4{bottom:334.515000px;}
.yec{bottom:334.875000px;}
.y14e{bottom:335.055000px;}
.yfd{bottom:337.575000px;}
.y160{bottom:339.195000px;}
.y1e0{bottom:340.635000px;}
.y4f{bottom:341.355000px;}
.y245{bottom:341.535000px;}
.y176{bottom:342.435000px;}
.y1f{bottom:343.875000px;}
.y21e{bottom:344.595000px;}
.y196{bottom:345.135000px;}
.y76{bottom:346.575000px;}
.y2bf{bottom:347.115000px;}
.yc7{bottom:348.015000px;}
.y22b{bottom:348.345000px;}
.y8a{bottom:349.275000px;}
.y135{bottom:351.435000px;}
.ya3{bottom:353.235000px;}
.y202{bottom:353.415000px;}
.y14d{bottom:353.955000px;}
.y124{bottom:355.215000px;}
.yeb{bottom:355.575000px;}
.y27c{bottom:355.755000px;}
.yfc{bottom:356.655000px;}
.y297{bottom:357.015000px;}
.y1df{bottom:359.535000px;}
.y15f{bottom:359.895000px;}
.y1e{bottom:360.255000px;}
.y175{bottom:361.335000px;}
.y4e{bottom:362.055000px;}
.y244{bottom:362.235000px;}
.y195{bottom:364.035000px;}
.y21d{bottom:365.295000px;}
.y22a{bottom:365.445000px;}
.y1ad{bottom:366.915000px;}
.y75{bottom:367.275000px;}
.y2be{bottom:367.815000px;}
.y89{bottom:368.175000px;}
.y134{bottom:370.335000px;}
.y14c{bottom:373.035000px;}
.y201{bottom:373.755000px;}
.ya2{bottom:373.935000px;}
.yfb{bottom:375.555000px;}
.y123{bottom:375.915000px;}
.yea{bottom:376.275000px;}
.y1d{bottom:376.815000px;}
.y296{bottom:377.715000px;}
.y1de{bottom:378.615000px;}
.y174{bottom:380.415000px;}
.y15e{bottom:380.595000px;}
.y4d{bottom:382.755000px;}
.y194{bottom:382.935000px;}
.y21c{bottom:385.635000px;}
.y1ac{bottom:385.815000px;}
.yc9{bottom:386.355000px;}
.y88{bottom:387.255000px;}
.y2a9{bottom:387.795000px;}
.y74{bottom:387.975000px;}
.y2bd{bottom:388.515000px;}
.y2c9{bottom:389.055000px;}
.y133{bottom:389.415000px;}
.y14b{bottom:391.935000px;}
.y1c3{bottom:392.295000px;}
.y200{bottom:392.835000px;}
.y1c{bottom:393.195000px;}
.yfa{bottom:394.455000px;}
.ya1{bottom:394.635000px;}
.y122{bottom:396.435000px;}
.ye9{bottom:396.975000px;}
.y1dd{bottom:397.515000px;}
.y295{bottom:398.415000px;}
.y173{bottom:399.675000px;}
.y15d{bottom:401.295000px;}
.y193{bottom:402.015000px;}
.y4c{bottom:403.455000px;}
.y243{bottom:403.635000px;}
.y21b{bottom:404.535000px;}
.y1ab{bottom:404.895000px;}
.yc4{bottom:407.415000px;}
.y132{bottom:408.315000px;}
.y2a8{bottom:408.495000px;}
.y73{bottom:408.675000px;}
.y2bc{bottom:409.215000px;}
.y1b{bottom:409.755000px;}
.y14a{bottom:410.835000px;}
.y1ff{bottom:411.735000px;}
.y1c2{bottom:412.995000px;}
.yf9{bottom:413.535000px;}
.ya0{bottom:415.335000px;}
.y1dc{bottom:416.595000px;}
.y121{bottom:417.135000px;}
.ye8{bottom:417.675000px;}
.y294{bottom:419.115000px;}
.y172{bottom:420.375000px;}
.y218{bottom:420.735000px;}
.y192{bottom:420.915000px;}
.y15c{bottom:421.995000px;}
.y1aa{bottom:423.795000px;}
.y4b{bottom:424.155000px;}
.y242{bottom:424.335000px;}
.y87{bottom:425.415000px;}
.y1a{bottom:426.135000px;}
.y1fe{bottom:427.035000px;}
.y131{bottom:427.215000px;}
.yc6{bottom:428.295000px;}
.y2a7{bottom:429.195000px;}
.y72{bottom:429.375000px;}
.y2bb{bottom:429.915000px;}
.y149{bottom:430.095000px;}
.y27b{bottom:431.175000px;}
.yf8{bottom:432.435000px;}
.y1c1{bottom:433.695000px;}
.y1db{bottom:435.495000px;}
.y9f{bottom:436.035000px;}
.y120{bottom:437.835000px;}
.ye7{bottom:438.375000px;}
.y293{bottom:439.815000px;}
.y191{bottom:439.995000px;}
.y171{bottom:441.075000px;}
.y19{bottom:442.335000px;}
.y1a9{bottom:442.875000px;}
.y4a{bottom:444.855000px;}
.y241{bottom:445.035000px;}
.y86{bottom:446.115000px;}
.y130{bottom:446.295000px;}
.ybf{bottom:449.355000px;}
.y2a6{bottom:449.895000px;}
.y71{bottom:450.075000px;}
.y2ba{bottom:450.615000px;}
.y148{bottom:450.795000px;}
.yf7{bottom:451.515000px;}
.y27a{bottom:451.875000px;}
.y1c0{bottom:454.395000px;}
.y1da{bottom:454.575000px;}
.y258{bottom:455.835000px;}
.y9e{bottom:456.735000px;}
.y15b{bottom:457.635000px;}
.y11f{bottom:458.535000px;}
.y190{bottom:458.895000px;}
.ye6{bottom:459.075000px;}
.y18{bottom:459.615000px;}
.y292{bottom:460.515000px;}
.y170{bottom:461.775000px;}
.y12f{bottom:465.195000px;}
.y49{bottom:465.555000px;}
.y1f4{bottom:465.735000px;}
.y85{bottom:466.815000px;}
.y2a5{bottom:470.595000px;}
.y70{bottom:470.775000px;}
.y2b9{bottom:471.315000px;}
.y147{bottom:471.495000px;}
.y216{bottom:472.395000px;}
.y279{bottom:472.575000px;}
.y1d9{bottom:473.475000px;}
.y1bf{bottom:475.095000px;}
.y17{bottom:476.895000px;}
.y9d{bottom:477.435000px;}
.y18f{bottom:477.975000px;}
.y11e{bottom:479.235000px;}
.ye5{bottom:479.775000px;}
.y1a8{bottom:480.675000px;}
.y291{bottom:481.215000px;}
.y16f{bottom:482.475000px;}
.y23d{bottom:483.195000px;}
.y12e{bottom:484.275000px;}
.y48{bottom:486.255000px;}
.y84{bottom:487.515000px;}
.y2a4{bottom:491.295000px;}
.y6f{bottom:491.475000px;}
.y2b8{bottom:492.015000px;}
.y146{bottom:492.195000px;}
.y1d8{bottom:492.375000px;}
.y278{bottom:493.275000px;}
.y16{bottom:493.995000px;}
.y1be{bottom:495.795000px;}
.y18e{bottom:496.875000px;}
.y9c{bottom:498.135000px;}
.y1a7{bottom:499.755000px;}
.y11d{bottom:499.935000px;}
.ye4{bottom:500.475000px;}
.y290{bottom:501.915000px;}
.y12d{bottom:503.175000px;}
.y47{bottom:506.985000px;}
.y83{bottom:508.245000px;}
.y2a1{bottom:508.965000px;}
.y1d7{bottom:511.485000px;}
.y6e{bottom:512.205000px;}
.y2b7{bottom:512.745000px;}
.y145{bottom:512.925000px;}
.y277{bottom:514.005000px;}
.y15{bottom:515.265000px;}
.y18d{bottom:515.805000px;}
.y1bd{bottom:516.525000px;}
.y1a6{bottom:518.685000px;}
.y11c{bottom:520.665000px;}
.ye3{bottom:521.205000px;}
.y12c{bottom:522.105000px;}
.y28f{bottom:522.645000px;}
.y16e{bottom:523.545000px;}
.yc2{bottom:525.885000px;}
.y46{bottom:527.685000px;}
.y82{bottom:528.945000px;}
.y1d6{bottom:530.385000px;}
.y9b{bottom:532.005000px;}
.y14{bottom:532.545000px;}
.y6d{bottom:532.905000px;}
.y144{bottom:533.445000px;}
.y276{bottom:534.705000px;}
.y18c{bottom:534.885000px;}
.y1bc{bottom:537.225000px;}
.y1a5{bottom:537.765000px;}
.y16d{bottom:538.845000px;}
.y12b{bottom:541.185000px;}
.y11b{bottom:541.365000px;}
.ye2{bottom:541.905000px;}
.y28e{bottom:543.345000px;}
.y45{bottom:548.385000px;}
.y143{bottom:548.745000px;}
.y81{bottom:549.645000px;}
.y13{bottom:549.825000px;}
.y9a{bottom:552.345000px;}
.y6c{bottom:553.605000px;}
.y18b{bottom:553.785000px;}
.y2b6{bottom:554.145000px;}
.y275{bottom:555.405000px;}
.y1a4{bottom:556.665000px;}
.y1bb{bottom:557.925000px;}
.y12a{bottom:560.085000px;}
.y11a{bottom:562.065000px;}
.ye1{bottom:562.425000px;}
.ybc{bottom:564.045000px;}
.y12{bottom:567.105000px;}
.y44{bottom:569.085000px;}
.y80{bottom:570.165000px;}
.y1d5{bottom:570.345000px;}
.y215{bottom:572.145000px;}
.y18a{bottom:572.865000px;}
.y6b{bottom:574.125000px;}
.y2b5{bottom:574.845000px;}
.y1a3{bottom:575.565000px;}
.y274{bottom:576.105000px;}
.y1ba{bottom:578.625000px;}
.y129{bottom:579.165000px;}
.y99{bottom:581.325000px;}
.y119{bottom:582.585000px;}
.ye0{bottom:583.125000px;}
.y28d{bottom:584.745000px;}
.ybe{bottom:585.105000px;}
.y7f{bottom:589.065000px;}
.y11{bottom:589.605000px;}
.y43{bottom:589.785000px;}
.y1d4{bottom:591.045000px;}
.y189{bottom:591.765000px;}
.y6a{bottom:594.825000px;}
.y2b4{bottom:595.545000px;}
.y273{bottom:596.805000px;}
.y128{bottom:598.065000px;}
.y1b9{bottom:599.325000px;}
.y118{bottom:601.485000px;}
.ydf{bottom:603.825000px;}
.y28c{bottom:605.445000px;}
.yb9{bottom:606.165000px;}
.y10{bottom:606.885000px;}
.y42{bottom:610.485000px;}
.y188{bottom:611.025000px;}
.y1d3{bottom:611.745000px;}
.y7e{bottom:614.625000px;}
.y69{bottom:615.525000px;}
.y2b3{bottom:616.245000px;}
.y127{bottom:616.965000px;}
.y272{bottom:617.505000px;}
.y1b8{bottom:620.025000px;}
.y117{bottom:620.565000px;}
.yf{bottom:623.985000px;}
.yde{bottom:624.525000px;}
.y28b{bottom:626.145000px;}
.y41{bottom:631.185000px;}
.y187{bottom:631.725000px;}
.y1d2{bottom:632.265000px;}
.y68{bottom:636.225000px;}
.ye{bottom:636.765000px;}
.y2b2{bottom:636.945000px;}
.y15a{bottom:638.025000px;}
.y271{bottom:638.205000px;}
.y116{bottom:639.465000px;}
.y1b7{bottom:640.725000px;}
.ybb{bottom:644.325000px;}
.ydd{bottom:645.225000px;}
.y28a{bottom:646.845000px;}
.y1f3{bottom:650.085000px;}
.y1d1{bottom:651.165000px;}
.y186{bottom:652.425000px;}
.y67{bottom:656.925000px;}
.y2b1{bottom:657.645000px;}
.y115{bottom:658.365000px;}
.y270{bottom:658.905000px;}
.y1b6{bottom:661.425000px;}
.y288{bottom:664.305000px;}
.ydc{bottom:665.925000px;}
.y1d0{bottom:666.465000px;}
.y257{bottom:669.345000px;}
.y1f2{bottom:670.605000px;}
.y40{bottom:672.585000px;}
.y185{bottom:673.125000px;}
.yd{bottom:673.485000px;}
.y265{bottom:676.365000px;}
.y114{bottom:677.445000px;}
.y66{bottom:677.625000px;}
.y2b0{bottom:678.345000px;}
.y1b5{bottom:681.765000px;}
.yb1{bottom:682.665000px;}
.ydb{bottom:686.625000px;}
.y1f1{bottom:689.505000px;}
.y256{bottom:690.045000px;}
.y3f{bottom:693.105000px;}
.y184{bottom:693.465000px;}
.y113{bottom:696.345000px;}
.y65{bottom:698.325000px;}
.y2af{bottom:699.045000px;}
.y29e{bottom:699.405000px;}
.y1b4{bottom:700.665000px;}
.yc{bottom:702.825000px;}
.yda{bottom:707.325000px;}
.y1f0{bottom:708.405000px;}
.y183{bottom:708.765000px;}
.y255{bottom:710.745000px;}
.y3e{bottom:713.805000px;}
.y112{bottom:715.470000px;}
.y1b3{bottom:716.010000px;}
.y210{bottom:716.910000px;}
.y64{bottom:719.070000px;}
.y2ae{bottom:719.790000px;}
.yb7{bottom:720.870000px;}
.y1ef{bottom:727.530000px;}
.yd9{bottom:728.070000px;}
.y142{bottom:731.130000px;}
.y254{bottom:731.490000px;}
.yb{bottom:732.210000px;}
.y16c{bottom:732.930000px;}
.y111{bottom:734.370000px;}
.y63{bottom:739.770000px;}
.y3d{bottom:740.130000px;}
.y2ad{bottom:740.490000px;}
.y1ee{bottom:746.430000px;}
.y141{bottom:751.830000px;}
.y253{bottom:752.190000px;}
.y110{bottom:753.270000px;}
.y3c{bottom:756.690000px;}
.yb6{bottom:759.210000px;}
.y62{bottom:760.470000px;}
.y2ac{bottom:761.010000px;}
.ya{bottom:761.550000px;}
.y1ed{bottom:765.510000px;}
.y20e{bottom:768.750000px;}
.yd8{bottom:769.470000px;}
.y10f{bottom:772.350000px;}
.y252{bottom:772.890000px;}
.y3b{bottom:773.250000px;}
.yb3{bottom:780.090000px;}
.y61{bottom:781.170000px;}
.y2ab{bottom:781.710000px;}
.y1ec{bottom:784.410000px;}
.y3a{bottom:789.630000px;}
.yd7{bottom:789.990000px;}
.y9{bottom:790.710000px;}
.y10e{bottom:791.250000px;}
.y251{bottom:793.590000px;}
.y60{bottom:801.870000px;}
.y2aa{bottom:802.950000px;}
.y1eb{bottom:803.310000px;}
.y39{bottom:806.190000px;}
.yd6{bottom:808.890000px;}
.y10d{bottom:810.330000px;}
.y250{bottom:814.290000px;}
.yaf{bottom:818.430000px;}
.y8{bottom:820.050000px;}
.y5f{bottom:822.570000px;}
.y38{bottom:822.750000px;}
.yd5{bottom:824.910000px;}
.y10c{bottom:829.230000px;}
.y24e{bottom:831.750000px;}
.y37{bottom:839.130000px;}
.y5e{bottom:843.270000px;}
.y1cf{bottom:846.870000px;}
.y10b{bottom:848.310000px;}
.y7{bottom:849.390000px;}
.y36{bottom:855.690000px;}
.yd4{bottom:863.250000px;}
.y5d{bottom:863.970000px;}
.y10a{bottom:867.210000px;}
.y35{bottom:872.070000px;}
.y6{bottom:878.730000px;}
.y5c{bottom:884.670000px;}
.y109{bottom:886.110000px;}
.y34{bottom:888.630000px;}
.y2f{bottom:916.710000px;}
.y5b{bottom:917.070000px;}
.y1{bottom:924.120000px;}
.y2e{bottom:936.900000px;}
.he{height:20.160000px;}
.h16{height:20.340000px;}
.h25{height:37.296000px;}
.h12{height:37.440000px;}
.h13{height:37.476000px;}
.h11{height:37.620000px;}
.h18{height:37.656000px;}
.h6{height:38.158594px;}
.h15{height:41.220000px;}
.h23{height:51.660000px;}
.h20{height:51.840000px;}
.h2a{height:52.020000px;}
.h3{height:52.998047px;}
.h9{height:53.709961px;}
.h1c{height:54.720000px;}
.h1b{height:54.756000px;}
.h8{height:55.291992px;}
.h19{height:58.500000px;}
.h7{height:58.651172px;}
.hf{height:60.226875px;}
.h1d{height:64.546875px;}
.h1e{height:64.898438px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.h26{height:68.940000px;}
.hc{height:70.628906px;}
.h5{height:70.664062px;}
.ha{height:72.562500px;}
.h28{height:73.260000px;}
.hd{height:74.004654px;}
.h14{height:75.600000px;}
.h1f{height:90.540000px;}
.h21{height:92.196000px;}
.h4{height:95.245664px;}
.h22{height:99.036000px;}
.h17{height:113.976000px;}
.h10{height:135.036000px;}
.h2b{height:155.370000px;}
.h2c{height:172.470000px;}
.h2e{height:189.720000px;}
.h27{height:189.750000px;}
.h2d{height:201.270000px;}
.h1a{height:203.970000px;}
.h29{height:224.310000px;}
.h24{height:379.470000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w9{width:43.560000px;}
.wb{width:52.380000px;}
.w7{width:55.620000px;}
.w3{width:137.700000px;}
.w5{width:264.450000px;}
.w6{width:264.675000px;}
.w4{width:393.045000px;}
.w8{width:473.685000px;}
.wc{width:476.925000px;}
.wa{width:485.745000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x25{left:24.300000px;}
.x29{left:27.000000px;}
.x2b{left:31.500000px;}
.x28{left:33.120000px;}
.x21{left:39.780000px;}
.x26{left:41.940000px;}
.x1{left:95.795989px;}
.x6{left:97.955989px;}
.x1c{left:100.115989px;}
.x2d{left:110.205000px;}
.x12{left:112.175989px;}
.x23{left:114.335989px;}
.xe{left:116.135989px;}
.x9{left:119.375989px;}
.x1a{left:120.635989px;}
.xb{left:122.795989px;}
.x20{left:124.734000px;}
.x4{left:127.655989px;}
.x1f{left:129.234000px;}
.x2a{left:140.796000px;}
.x3{left:146.195989px;}
.x10{left:149.795989px;}
.x27{left:152.850000px;}
.x22{left:197.859000px;}
.x7{left:202.529989px;}
.xf{left:228.269989px;}
.xd{left:234.390000px;}
.x2{left:262.874989px;}
.x18{left:270.974989px;}
.x13{left:297.794989px;}
.x2f{left:306.794989px;}
.x2c{left:310.215000px;}
.x24{left:338.474989px;}
.xa{left:339.554989px;}
.x11{left:349.814989px;}
.x2e{left:361.514989px;}
.x19{left:362.774989px;}
.x14{left:366.374989px;}
.x1b{left:368.534989px;}
.x17{left:375.374989px;}
.x1e{left:377.534989px;}
.x16{left:386.534989px;}
.x15{left:504.644989px;}
.x1d{left:516.164989px;}
.x5{left:552.884989px;}
.x8{left:602.429989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v4{vertical-align:-68.480000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-1.344000pt;}
.lsd{letter-spacing:-0.650667pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.024320pt;}
.lsc{letter-spacing:-0.011520pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls10{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.094933pt;}
.ls31{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.133120pt;}
.ls26{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.628480pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls19{letter-spacing:12.320000pt;}
.ls12{letter-spacing:17.280000pt;}
.ls1a{letter-spacing:18.080000pt;}
.ls14{letter-spacing:18.720000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls30{letter-spacing:46.720000pt;}
.ls20{letter-spacing:57.088000pt;}
.ls11{letter-spacing:97.280000pt;}
.ls16{letter-spacing:97.920000pt;}
.ls1f{letter-spacing:117.253120pt;}
.ls2f{letter-spacing:423.178667pt;}
.ls2b{letter-spacing:429.578667pt;}
.ls28{letter-spacing:449.418667pt;}
.ls27{letter-spacing:463.498667pt;}
.ls2c{letter-spacing:468.618667pt;}
.ls2e{letter-spacing:492.938667pt;}
.ls2d{letter-spacing:547.338667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws12{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsd{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.486933pt;}
.wsf{word-spacing:-14.176000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.640000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1c{margin-left:-4.839680pt;}
._b{margin-left:-3.216000pt;}
._c{margin-left:-1.968000pt;}
._4{margin-left:-0.936320pt;}
._1{width:1.162667pt;}
._a{width:2.245333pt;}
._9{width:3.753173pt;}
._11{width:5.280000pt;}
._16{width:6.301653pt;}
._e{width:7.200000pt;}
._d{width:8.578987pt;}
._8{width:9.533440pt;}
._18{width:11.319893pt;}
._19{width:12.221440pt;}
._1a{width:13.192107pt;}
._1f{width:14.464000pt;}
._13{width:15.408000pt;}
._14{width:16.320000pt;}
._1b{width:17.243733pt;}
._5{width:18.285867pt;}
._17{width:19.370453pt;}
._f{width:20.928000pt;}
._10{width:21.888000pt;}
._2b{width:22.828373pt;}
._3{width:23.748480pt;}
._1d{width:25.127893pt;}
._27{width:26.128640pt;}
._20{width:27.456000pt;}
._21{width:28.672000pt;}
._2a{width:29.866667pt;}
._28{width:31.232000pt;}
._3e{width:32.463147pt;}
._40{width:33.433173pt;}
._3f{width:35.138347pt;}
._15{width:36.336000pt;}
._26{width:37.562667pt;}
._25{width:38.480000pt;}
._2c{width:39.680000pt;}
._2d{width:40.640000pt;}
._24{width:42.047360pt;}
._7{width:43.704320pt;}
._6{width:45.044267pt;}
._39{width:46.423467pt;}
._44{width:47.908267pt;}
._22{width:52.160000pt;}
._23{width:53.109333pt;}
._34{width:54.912000pt;}
._35{width:56.064000pt;}
._45{width:94.080000pt;}
._43{width:104.192000pt;}
._1e{width:146.746240pt;}
._41{width:265.856000pt;}
._42{width:266.752000pt;}
._3b{width:406.720000pt;}
._3c{width:426.560000pt;}
._3d{width:432.320000pt;}
._3a{width:438.720000pt;}
._0{width:453.898667pt;}
._32{width:811.146667pt;}
._30{width:832.138667pt;}
._31{width:836.106667pt;}
._2f{width:848.266667pt;}
._38{width:851.466667pt;}
._37{width:855.946667pt;}
._33{width:880.266667pt;}
._2e{width:900.106667pt;}
._36{width:925.066667pt;}
._2{width:960.266667pt;}
._29{width:1133.178667pt;}
._12{width:1163.486293pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y214{bottom:1.760000pt;}
.y213{bottom:2.880000pt;}
.y23e{bottom:3.200000pt;}
.y20f{bottom:4.160000pt;}
.y240{bottom:5.280000pt;}
.yb0{bottom:5.440000pt;}
.yb5{bottom:5.600000pt;}
.y264{bottom:6.720000pt;}
.y217{bottom:7.840000pt;}
.y27f{bottom:9.440000pt;}
.y27d{bottom:9.600000pt;}
.yc5{bottom:14.720000pt;}
.ybd{bottom:14.880000pt;}
.y2a0{bottom:15.400000pt;}
.y21a{bottom:18.080000pt;}
.y212{bottom:18.240000pt;}
.y281{bottom:18.560000pt;}
.y23f{bottom:20.666667pt;}
.yd3{bottom:20.794667pt;}
.yb8{bottom:20.800000pt;}
.yb4{bottom:20.960000pt;}
.yc3{bottom:20.986667pt;}
.y263{bottom:22.080000pt;}
.yc8{bottom:22.560000pt;}
.y24f{bottom:28.480000pt;}
.yba{bottom:30.080000pt;}
.y219{bottom:33.440000pt;}
.y211{bottom:33.600000pt;}
.y26f{bottom:33.640000pt;}
.y280{bottom:33.760000pt;}
.yd2{bottom:36.154667pt;}
.ycf{bottom:36.160000pt;}
.yd1{bottom:36.320000pt;}
.y262{bottom:37.440000pt;}
.yc1{bottom:38.240000pt;}
.y5{bottom:40.160000pt;}
.y33{bottom:40.800000pt;}
.y23c{bottom:48.800000pt;}
.y260{bottom:48.986667pt;}
.y26e{bottom:49.000000pt;}
.y261{bottom:52.800000pt;}
.y4{bottom:54.080000pt;}
.y32{bottom:54.880000pt;}
.yc0{bottom:56.186667pt;}
.yb2{bottom:56.520000pt;}
.y23b{bottom:64.160000pt;}
.y25f{bottom:64.186667pt;}
.y26d{bottom:64.360000pt;}
.y3{bottom:67.840000pt;}
.y31{bottom:68.640000pt;}
.y299{bottom:77.440000pt;}
.ycc{bottom:78.234667pt;}
.y23a{bottom:79.520000pt;}
.y25e{bottom:79.546667pt;}
.y289{bottom:79.560000pt;}
.y26c{bottom:79.720000pt;}
.y2{bottom:81.632000pt;}
.y30{bottom:82.592000pt;}
.y2a2{bottom:85.120000pt;}
.y259{bottom:85.146667pt;}
.y29f{bottom:90.280000pt;}
.y29d{bottom:94.720000pt;}
.y239{bottom:94.880000pt;}
.y25d{bottom:94.906667pt;}
.y26b{bottom:94.920000pt;}
.ycb{bottom:96.154667pt;}
.y108{bottom:97.632000pt;}
.y1a2{bottom:98.432000pt;}
.y1fd{bottom:99.392000pt;}
.y2d{bottom:100.512000pt;}
.y5a{bottom:100.992000pt;}
.y182{bottom:101.952000pt;}
.y227{bottom:103.872000pt;}
.y98{bottom:105.632000pt;}
.y2ca{bottom:106.112000pt;}
.y29c{bottom:110.080000pt;}
.y238{bottom:110.240000pt;}
.y25c{bottom:110.266667pt;}
.y26a{bottom:110.280000pt;}
.y94{bottom:111.392000pt;}
.yae{bottom:111.552000pt;}
.y20d{bottom:111.712000pt;}
.y159{bottom:112.192000pt;}
.y16b{bottom:112.672000pt;}
.yf6{bottom:113.632000pt;}
.y107{bottom:114.592000pt;}
.y2c{bottom:115.072000pt;}
.y1fc{bottom:116.192000pt;}
.y126{bottom:116.512000pt;}
.y1a1{bottom:116.832000pt;}
.y181{bottom:118.912000pt;}
.y1ce{bottom:119.072000pt;}
.y59{bottom:119.392000pt;}
.y226{bottom:122.272000pt;}
.y97{bottom:124.032000pt;}
.y2c8{bottom:124.512000pt;}
.y287{bottom:124.992000pt;}
.y2a3{bottom:125.440000pt;}
.y29b{bottom:125.480000pt;}
.y237{bottom:125.600000pt;}
.y25b{bottom:125.626667pt;}
.y269{bottom:125.640000pt;}
.y140{bottom:126.752000pt;}
.yca{bottom:127.392000pt;}
.y158{bottom:129.152000pt;}
.y16a{bottom:129.472000pt;}
.y2b{bottom:129.792000pt;}
.yad{bottom:129.952000pt;}
.y20c{bottom:130.112000pt;}
.y106{bottom:131.392000pt;}
.yf5{bottom:132.032000pt;}
.y1ea{bottom:132.832000pt;}
.y1fb{bottom:133.152000pt;}
.y125{bottom:133.312000pt;}
.y1a0{bottom:135.226667pt;}
.y180{bottom:135.706667pt;}
.y1cd{bottom:136.026667pt;}
.y58{bottom:137.786667pt;}
.y225{bottom:140.666667pt;}
.y236{bottom:140.800000pt;}
.y29a{bottom:140.840000pt;}
.y25a{bottom:140.986667pt;}
.y268{bottom:141.000000pt;}
.y96{bottom:142.426667pt;}
.y2c7{bottom:142.906667pt;}
.y298{bottom:143.066667pt;}
.y286{bottom:143.226667pt;}
.y13f{bottom:143.706667pt;}
.y2a{bottom:144.506667pt;}
.y157{bottom:145.946667pt;}
.y169{bottom:146.426667pt;}
.y93{bottom:148.186667pt;}
.yac{bottom:148.346667pt;}
.y20b{bottom:148.506667pt;}
.y1fa{bottom:149.946667pt;}
.yf4{bottom:150.426667pt;}
.y1e9{bottom:150.906667pt;}
.y17f{bottom:152.506667pt;}
.y1cc{bottom:152.826667pt;}
.y19f{bottom:153.626667pt;}
.y235{bottom:156.160000pt;}
.y57{bottom:156.186667pt;}
.y24d{bottom:156.346667pt;}
.y267{bottom:156.360000pt;}
.y29{bottom:159.066667pt;}
.y13e{bottom:160.506667pt;}
.y95{bottom:160.826667pt;}
.y2c6{bottom:161.306667pt;}
.y285{bottom:161.626667pt;}
.y156{bottom:162.906667pt;}
.y168{bottom:163.226667pt;}
.y105{bottom:165.146667pt;}
.y92{bottom:166.586667pt;}
.yab{bottom:166.746667pt;}
.y20a{bottom:166.906667pt;}
.y1f9{bottom:167.066667pt;}
.y1e8{bottom:167.866667pt;}
.yf3{bottom:168.826667pt;}
.y228{bottom:169.440000pt;}
.y17e{bottom:169.466667pt;}
.y1cb{bottom:169.786667pt;}
.y234{bottom:171.560000pt;}
.y19e{bottom:171.706667pt;}
.y266{bottom:171.720000pt;}
.y28{bottom:173.786667pt;}
.y56{bottom:174.586667pt;}
.y24c{bottom:174.746667pt;}
.yd0{bottom:176.666667pt;}
.y13d{bottom:177.306667pt;}
.y224{bottom:177.466667pt;}
.y7d{bottom:179.226667pt;}
.y155{bottom:179.706667pt;}
.y167{bottom:180.026667pt;}
.y104{bottom:181.946667pt;}
.y229{bottom:182.920000pt;}
.y1e7{bottom:184.666667pt;}
.y91{bottom:184.986667pt;}
.yaa{bottom:185.146667pt;}
.y209{bottom:185.306667pt;}
.y1f8{bottom:185.466667pt;}
.y17d{bottom:186.266667pt;}
.y1ca{bottom:186.906667pt;}
.y233{bottom:186.920000pt;}
.yf2{bottom:187.226667pt;}
.y27{bottom:188.346667pt;}
.y19d{bottom:188.666667pt;}
.y55{bottom:192.986667pt;}
.y24b{bottom:193.146667pt;}
.y13c{bottom:194.266667pt;}
.y223{bottom:195.866667pt;}
.y154{bottom:196.506667pt;}
.y166{bottom:196.986667pt;}
.y7c{bottom:197.626667pt;}
.y2c5{bottom:198.106667pt;}
.y284{bottom:198.426667pt;}
.y103{bottom:198.906667pt;}
.y1e6{bottom:201.626667pt;}
.y232{bottom:202.280000pt;}
.y26{bottom:203.066667pt;}
.y17c{bottom:203.226667pt;}
.y90{bottom:203.386667pt;}
.ya9{bottom:203.546667pt;}
.y208{bottom:203.706667pt;}
.y1f7{bottom:203.866667pt;}
.y1c9{bottom:205.306667pt;}
.y19c{bottom:205.466667pt;}
.yf1{bottom:205.626667pt;}
.y1b2{bottom:206.746667pt;}
.y13b{bottom:211.066667pt;}
.y54{bottom:211.386667pt;}
.y24a{bottom:211.546667pt;}
.y153{bottom:213.466667pt;}
.y165{bottom:213.786667pt;}
.y222{bottom:214.266667pt;}
.y102{bottom:215.706667pt;}
.y7b{bottom:216.026667pt;}
.y2c4{bottom:216.506667pt;}
.y283{bottom:216.826667pt;}
.y25{bottom:217.626667pt;}
.y231{bottom:217.640000pt;}
.y1e5{bottom:218.426667pt;}
.y17b{bottom:220.026667pt;}
.y8f{bottom:221.786667pt;}
.ya8{bottom:221.946667pt;}
.y207{bottom:222.106667pt;}
.y1f6{bottom:222.266667pt;}
.y19b{bottom:222.426667pt;}
.y1c8{bottom:223.706667pt;}
.yf0{bottom:224.026667pt;}
.y1b1{bottom:224.986667pt;}
.yce{bottom:226.106667pt;}
.y13a{bottom:228.026667pt;}
.y53{bottom:229.786667pt;}
.y249{bottom:229.946667pt;}
.y152{bottom:230.266667pt;}
.y164{bottom:230.746667pt;}
.y24{bottom:232.346667pt;}
.y101{bottom:232.506667pt;}
.y221{bottom:232.666667pt;}
.y230{bottom:232.840000pt;}
.y7a{bottom:234.426667pt;}
.y2c3{bottom:234.906667pt;}
.y1e4{bottom:235.226667pt;}
.y17a{bottom:236.826667pt;}
.y19a{bottom:239.226667pt;}
.y8e{bottom:240.186667pt;}
.ya7{bottom:240.346667pt;}
.y206{bottom:240.506667pt;}
.y1b0{bottom:241.786667pt;}
.y1c7{bottom:242.106667pt;}
.yef{bottom:242.426667pt;}
.y139{bottom:244.826667pt;}
.y23{bottom:246.906667pt;}
.y151{bottom:247.226667pt;}
.y163{bottom:247.546667pt;}
.y52{bottom:248.186667pt;}
.y22f{bottom:248.200000pt;}
.y248{bottom:248.346667pt;}
.y100{bottom:249.466667pt;}
.y220{bottom:251.066667pt;}
.y1e3{bottom:252.186667pt;}
.y79{bottom:252.826667pt;}
.y2c2{bottom:253.306667pt;}
.y282{bottom:253.626667pt;}
.y179{bottom:253.786667pt;}
.y1f5{bottom:253.946667pt;}
.y199{bottom:256.026667pt;}
.y8d{bottom:258.586667pt;}
.ya6{bottom:258.746667pt;}
.y205{bottom:258.906667pt;}
.y1c6{bottom:260.506667pt;}
.yee{bottom:260.826667pt;}
.y22{bottom:261.626667pt;}
.y138{bottom:261.786667pt;}
.y22e{bottom:263.560000pt;}
.y150{bottom:264.066667pt;}
.y162{bottom:264.706667pt;}
.yff{bottom:266.306667pt;}
.y51{bottom:266.626667pt;}
.y247{bottom:266.786667pt;}
.y1e2{bottom:269.026667pt;}
.y27e{bottom:269.346667pt;}
.y178{bottom:270.626667pt;}
.y78{bottom:271.266667pt;}
.y2c1{bottom:271.746667pt;}
.y198{bottom:273.026667pt;}
.ycd{bottom:275.426667pt;}
.y1af{bottom:275.586667pt;}
.y21{bottom:276.386667pt;}
.y8c{bottom:276.706667pt;}
.ya5{bottom:277.186667pt;}
.y204{bottom:277.346667pt;}
.y137{bottom:278.626667pt;}
.y22d{bottom:278.920000pt;}
.y1c5{bottom:278.946667pt;}
.yed{bottom:279.266667pt;}
.y14f{bottom:280.866667pt;}
.y161{bottom:283.106667pt;}
.yfe{bottom:283.266667pt;}
.y50{bottom:285.026667pt;}
.y246{bottom:285.186667pt;}
.y1e1{bottom:285.986667pt;}
.y177{bottom:287.586667pt;}
.y21f{bottom:287.906667pt;}
.y77{bottom:289.666667pt;}
.y197{bottom:289.826667pt;}
.y2c0{bottom:290.146667pt;}
.y20{bottom:290.946667pt;}
.y1ae{bottom:292.386667pt;}
.y8b{bottom:293.666667pt;}
.y22c{bottom:294.280000pt;}
.y136{bottom:295.426667pt;}
.ya4{bottom:295.586667pt;}
.y203{bottom:295.746667pt;}
.y1c4{bottom:297.346667pt;}
.yec{bottom:297.666667pt;}
.y14e{bottom:297.826667pt;}
.yfd{bottom:300.066667pt;}
.y160{bottom:301.506667pt;}
.y1e0{bottom:302.786667pt;}
.y4f{bottom:303.426667pt;}
.y245{bottom:303.586667pt;}
.y176{bottom:304.386667pt;}
.y1f{bottom:305.666667pt;}
.y21e{bottom:306.306667pt;}
.y196{bottom:306.786667pt;}
.y76{bottom:308.066667pt;}
.y2bf{bottom:308.546667pt;}
.yc7{bottom:309.346667pt;}
.y22b{bottom:309.640000pt;}
.y8a{bottom:310.466667pt;}
.y135{bottom:312.386667pt;}
.ya3{bottom:313.986667pt;}
.y202{bottom:314.146667pt;}
.y14d{bottom:314.626667pt;}
.y124{bottom:315.746667pt;}
.yeb{bottom:316.066667pt;}
.y27c{bottom:316.226667pt;}
.yfc{bottom:317.026667pt;}
.y297{bottom:317.346667pt;}
.y1df{bottom:319.586667pt;}
.y15f{bottom:319.906667pt;}
.y1e{bottom:320.226667pt;}
.y175{bottom:321.186667pt;}
.y4e{bottom:321.826667pt;}
.y244{bottom:321.986667pt;}
.y195{bottom:323.586667pt;}
.y21d{bottom:324.706667pt;}
.y22a{bottom:324.840000pt;}
.y1ad{bottom:326.146667pt;}
.y75{bottom:326.466667pt;}
.y2be{bottom:326.946667pt;}
.y89{bottom:327.266667pt;}
.y134{bottom:329.186667pt;}
.y14c{bottom:331.586667pt;}
.y201{bottom:332.226667pt;}
.ya2{bottom:332.386667pt;}
.yfb{bottom:333.826667pt;}
.y123{bottom:334.146667pt;}
.yea{bottom:334.466667pt;}
.y1d{bottom:334.946667pt;}
.y296{bottom:335.746667pt;}
.y1de{bottom:336.546667pt;}
.y174{bottom:338.146667pt;}
.y15e{bottom:338.306667pt;}
.y4d{bottom:340.226667pt;}
.y194{bottom:340.386667pt;}
.y21c{bottom:342.786667pt;}
.y1ac{bottom:342.946667pt;}
.yc9{bottom:343.426667pt;}
.y88{bottom:344.226667pt;}
.y2a9{bottom:344.706667pt;}
.y74{bottom:344.866667pt;}
.y2bd{bottom:345.346667pt;}
.y2c9{bottom:345.826667pt;}
.y133{bottom:346.146667pt;}
.y14b{bottom:348.386667pt;}
.y1c3{bottom:348.706667pt;}
.y200{bottom:349.186667pt;}
.y1c{bottom:349.506667pt;}
.yfa{bottom:350.626667pt;}
.ya1{bottom:350.786667pt;}
.y122{bottom:352.386667pt;}
.ye9{bottom:352.866667pt;}
.y1dd{bottom:353.346667pt;}
.y295{bottom:354.146667pt;}
.y173{bottom:355.266667pt;}
.y15d{bottom:356.706667pt;}
.y193{bottom:357.346667pt;}
.y4c{bottom:358.626667pt;}
.y243{bottom:358.786667pt;}
.y21b{bottom:359.586667pt;}
.y1ab{bottom:359.906667pt;}
.yc4{bottom:362.146667pt;}
.y132{bottom:362.946667pt;}
.y2a8{bottom:363.106667pt;}
.y73{bottom:363.266667pt;}
.y2bc{bottom:363.746667pt;}
.y1b{bottom:364.226667pt;}
.y14a{bottom:365.186667pt;}
.y1ff{bottom:365.986667pt;}
.y1c2{bottom:367.106667pt;}
.yf9{bottom:367.586667pt;}
.ya0{bottom:369.186667pt;}
.y1dc{bottom:370.306667pt;}
.y121{bottom:370.786667pt;}
.ye8{bottom:371.266667pt;}
.y294{bottom:372.546667pt;}
.y172{bottom:373.666667pt;}
.y218{bottom:373.986667pt;}
.y192{bottom:374.146667pt;}
.y15c{bottom:375.106667pt;}
.y1aa{bottom:376.706667pt;}
.y4b{bottom:377.026667pt;}
.y242{bottom:377.186667pt;}
.y87{bottom:378.146667pt;}
.y1a{bottom:378.786667pt;}
.y1fe{bottom:379.586667pt;}
.y131{bottom:379.746667pt;}
.yc6{bottom:380.706667pt;}
.y2a7{bottom:381.506667pt;}
.y72{bottom:381.666667pt;}
.y2bb{bottom:382.146667pt;}
.y149{bottom:382.306667pt;}
.y27b{bottom:383.266667pt;}
.yf8{bottom:384.386667pt;}
.y1c1{bottom:385.506667pt;}
.y1db{bottom:387.106667pt;}
.y9f{bottom:387.586667pt;}
.y120{bottom:389.186667pt;}
.ye7{bottom:389.666667pt;}
.y293{bottom:390.946667pt;}
.y191{bottom:391.106667pt;}
.y171{bottom:392.066667pt;}
.y19{bottom:393.186667pt;}
.y1a9{bottom:393.666667pt;}
.y4a{bottom:395.426667pt;}
.y241{bottom:395.586667pt;}
.y86{bottom:396.546667pt;}
.y130{bottom:396.706667pt;}
.ybf{bottom:399.426667pt;}
.y2a6{bottom:399.906667pt;}
.y71{bottom:400.066667pt;}
.y2ba{bottom:400.546667pt;}
.y148{bottom:400.706667pt;}
.yf7{bottom:401.346667pt;}
.y27a{bottom:401.666667pt;}
.y1c0{bottom:403.906667pt;}
.y1da{bottom:404.066667pt;}
.y258{bottom:405.186667pt;}
.y9e{bottom:405.986667pt;}
.y15b{bottom:406.786667pt;}
.y11f{bottom:407.586667pt;}
.y190{bottom:407.906667pt;}
.ye6{bottom:408.066667pt;}
.y18{bottom:408.546667pt;}
.y292{bottom:409.346667pt;}
.y170{bottom:410.466667pt;}
.y12f{bottom:413.506667pt;}
.y49{bottom:413.826667pt;}
.y1f4{bottom:413.986667pt;}
.y85{bottom:414.946667pt;}
.y2a5{bottom:418.306667pt;}
.y70{bottom:418.466667pt;}
.y2b9{bottom:418.946667pt;}
.y147{bottom:419.106667pt;}
.y216{bottom:419.906667pt;}
.y279{bottom:420.066667pt;}
.y1d9{bottom:420.866667pt;}
.y1bf{bottom:422.306667pt;}
.y17{bottom:423.906667pt;}
.y9d{bottom:424.386667pt;}
.y18f{bottom:424.866667pt;}
.y11e{bottom:425.986667pt;}
.ye5{bottom:426.466667pt;}
.y1a8{bottom:427.266667pt;}
.y291{bottom:427.746667pt;}
.y16f{bottom:428.866667pt;}
.y23d{bottom:429.506667pt;}
.y12e{bottom:430.466667pt;}
.y48{bottom:432.226667pt;}
.y84{bottom:433.346667pt;}
.y2a4{bottom:436.706667pt;}
.y6f{bottom:436.866667pt;}
.y2b8{bottom:437.346667pt;}
.y146{bottom:437.506667pt;}
.y1d8{bottom:437.666667pt;}
.y278{bottom:438.466667pt;}
.y16{bottom:439.106667pt;}
.y1be{bottom:440.706667pt;}
.y18e{bottom:441.666667pt;}
.y9c{bottom:442.786667pt;}
.y1a7{bottom:444.226667pt;}
.y11d{bottom:444.386667pt;}
.ye4{bottom:444.866667pt;}
.y290{bottom:446.146667pt;}
.y12d{bottom:447.266667pt;}
.y47{bottom:450.653333pt;}
.y83{bottom:451.773333pt;}
.y2a1{bottom:452.413333pt;}
.y1d7{bottom:454.653333pt;}
.y6e{bottom:455.293333pt;}
.y2b7{bottom:455.773333pt;}
.y145{bottom:455.933333pt;}
.y277{bottom:456.893333pt;}
.y15{bottom:458.013333pt;}
.y18d{bottom:458.493333pt;}
.y1bd{bottom:459.133333pt;}
.y1a6{bottom:461.053333pt;}
.y11c{bottom:462.813333pt;}
.ye3{bottom:463.293333pt;}
.y12c{bottom:464.093333pt;}
.y28f{bottom:464.573333pt;}
.y16e{bottom:465.373333pt;}
.yc2{bottom:467.453333pt;}
.y46{bottom:469.053333pt;}
.y82{bottom:470.173333pt;}
.y1d6{bottom:471.453333pt;}
.y9b{bottom:472.893333pt;}
.y14{bottom:473.373333pt;}
.y6d{bottom:473.693333pt;}
.y144{bottom:474.173333pt;}
.y276{bottom:475.293333pt;}
.y18c{bottom:475.453333pt;}
.y1bc{bottom:477.533333pt;}
.y1a5{bottom:478.013333pt;}
.y16d{bottom:478.973333pt;}
.y12b{bottom:481.053333pt;}
.y11b{bottom:481.213333pt;}
.ye2{bottom:481.693333pt;}
.y28e{bottom:482.973333pt;}
.y45{bottom:487.453333pt;}
.y143{bottom:487.773333pt;}
.y81{bottom:488.573333pt;}
.y13{bottom:488.733333pt;}
.y9a{bottom:490.973333pt;}
.y6c{bottom:492.093333pt;}
.y18b{bottom:492.253333pt;}
.y2b6{bottom:492.573333pt;}
.y275{bottom:493.693333pt;}
.y1a4{bottom:494.813333pt;}
.y1bb{bottom:495.933333pt;}
.y12a{bottom:497.853333pt;}
.y11a{bottom:499.613333pt;}
.ye1{bottom:499.933333pt;}
.ybc{bottom:501.373333pt;}
.y12{bottom:504.093333pt;}
.y44{bottom:505.853333pt;}
.y80{bottom:506.813333pt;}
.y1d5{bottom:506.973333pt;}
.y215{bottom:508.573333pt;}
.y18a{bottom:509.213333pt;}
.y6b{bottom:510.333333pt;}
.y2b5{bottom:510.973333pt;}
.y1a3{bottom:511.613333pt;}
.y274{bottom:512.093333pt;}
.y1ba{bottom:514.333333pt;}
.y129{bottom:514.813333pt;}
.y99{bottom:516.733333pt;}
.y119{bottom:517.853333pt;}
.ye0{bottom:518.333333pt;}
.y28d{bottom:519.773333pt;}
.ybe{bottom:520.093333pt;}
.y7f{bottom:523.613333pt;}
.y11{bottom:524.093333pt;}
.y43{bottom:524.253333pt;}
.y1d4{bottom:525.373333pt;}
.y189{bottom:526.013333pt;}
.y6a{bottom:528.733333pt;}
.y2b4{bottom:529.373333pt;}
.y273{bottom:530.493333pt;}
.y128{bottom:531.613333pt;}
.y1b9{bottom:532.733333pt;}
.y118{bottom:534.653333pt;}
.ydf{bottom:536.733333pt;}
.y28c{bottom:538.173333pt;}
.yb9{bottom:538.813333pt;}
.y10{bottom:539.453333pt;}
.y42{bottom:542.653333pt;}
.y188{bottom:543.133333pt;}
.y1d3{bottom:543.773333pt;}
.y7e{bottom:546.333333pt;}
.y69{bottom:547.133333pt;}
.y2b3{bottom:547.773333pt;}
.y127{bottom:548.413333pt;}
.y272{bottom:548.893333pt;}
.y1b8{bottom:551.133333pt;}
.y117{bottom:551.613333pt;}
.yf{bottom:554.653333pt;}
.yde{bottom:555.133333pt;}
.y28b{bottom:556.573333pt;}
.y41{bottom:561.053333pt;}
.y187{bottom:561.533333pt;}
.y1d2{bottom:562.013333pt;}
.y68{bottom:565.533333pt;}
.ye{bottom:566.013333pt;}
.y2b2{bottom:566.173333pt;}
.y15a{bottom:567.133333pt;}
.y271{bottom:567.293333pt;}
.y116{bottom:568.413333pt;}
.y1b7{bottom:569.533333pt;}
.ybb{bottom:572.733333pt;}
.ydd{bottom:573.533333pt;}
.y28a{bottom:574.973333pt;}
.y1f3{bottom:577.853333pt;}
.y1d1{bottom:578.813333pt;}
.y186{bottom:579.933333pt;}
.y67{bottom:583.933333pt;}
.y2b1{bottom:584.573333pt;}
.y115{bottom:585.213333pt;}
.y270{bottom:585.693333pt;}
.y1b6{bottom:587.933333pt;}
.y288{bottom:590.493333pt;}
.ydc{bottom:591.933333pt;}
.y1d0{bottom:592.413333pt;}
.y257{bottom:594.973333pt;}
.y1f2{bottom:596.093333pt;}
.y40{bottom:597.853333pt;}
.y185{bottom:598.333333pt;}
.yd{bottom:598.653333pt;}
.y265{bottom:601.213333pt;}
.y114{bottom:602.173333pt;}
.y66{bottom:602.333333pt;}
.y2b0{bottom:602.973333pt;}
.y1b5{bottom:606.013333pt;}
.yb1{bottom:606.813333pt;}
.ydb{bottom:610.333333pt;}
.y1f1{bottom:612.893333pt;}
.y256{bottom:613.373333pt;}
.y3f{bottom:616.093333pt;}
.y184{bottom:616.413333pt;}
.y113{bottom:618.973333pt;}
.y65{bottom:620.733333pt;}
.y2af{bottom:621.373333pt;}
.y29e{bottom:621.693333pt;}
.y1b4{bottom:622.813333pt;}
.yc{bottom:624.733333pt;}
.yda{bottom:628.733333pt;}
.y1f0{bottom:629.693333pt;}
.y183{bottom:630.013333pt;}
.y255{bottom:631.773333pt;}
.y3e{bottom:634.493333pt;}
.y112{bottom:635.973333pt;}
.y1b3{bottom:636.453333pt;}
.y210{bottom:637.253333pt;}
.y64{bottom:639.173333pt;}
.y2ae{bottom:639.813333pt;}
.yb7{bottom:640.773333pt;}
.y1ef{bottom:646.693333pt;}
.yd9{bottom:647.173333pt;}
.y142{bottom:649.893333pt;}
.y254{bottom:650.213333pt;}
.yb{bottom:650.853333pt;}
.y16c{bottom:651.493333pt;}
.y111{bottom:652.773333pt;}
.y63{bottom:657.573333pt;}
.y3d{bottom:657.893333pt;}
.y2ad{bottom:658.213333pt;}
.y1ee{bottom:663.493333pt;}
.y141{bottom:668.293333pt;}
.y253{bottom:668.613333pt;}
.y110{bottom:669.573333pt;}
.y3c{bottom:672.613333pt;}
.yb6{bottom:674.853333pt;}
.y62{bottom:675.973333pt;}
.y2ac{bottom:676.453333pt;}
.ya{bottom:676.933333pt;}
.y1ed{bottom:680.453333pt;}
.y20e{bottom:683.333333pt;}
.yd8{bottom:683.973333pt;}
.y10f{bottom:686.533333pt;}
.y252{bottom:687.013333pt;}
.y3b{bottom:687.333333pt;}
.yb3{bottom:693.413333pt;}
.y61{bottom:694.373333pt;}
.y2ab{bottom:694.853333pt;}
.y1ec{bottom:697.253333pt;}
.y3a{bottom:701.893333pt;}
.yd7{bottom:702.213333pt;}
.y9{bottom:702.853333pt;}
.y10e{bottom:703.333333pt;}
.y251{bottom:705.413333pt;}
.y60{bottom:712.773333pt;}
.y2aa{bottom:713.733333pt;}
.y1eb{bottom:714.053333pt;}
.y39{bottom:716.613333pt;}
.yd6{bottom:719.013333pt;}
.y10d{bottom:720.293333pt;}
.y250{bottom:723.813333pt;}
.yaf{bottom:727.493333pt;}
.y8{bottom:728.933333pt;}
.y5f{bottom:731.173333pt;}
.y38{bottom:731.333333pt;}
.yd5{bottom:733.253333pt;}
.y10c{bottom:737.093333pt;}
.y24e{bottom:739.333333pt;}
.y37{bottom:745.893333pt;}
.y5e{bottom:749.573333pt;}
.y1cf{bottom:752.773333pt;}
.y10b{bottom:754.053333pt;}
.y7{bottom:755.013333pt;}
.y36{bottom:760.613333pt;}
.yd4{bottom:767.333333pt;}
.y5d{bottom:767.973333pt;}
.y10a{bottom:770.853333pt;}
.y35{bottom:775.173333pt;}
.y6{bottom:781.093333pt;}
.y5c{bottom:786.373333pt;}
.y109{bottom:787.653333pt;}
.y34{bottom:789.893333pt;}
.y2f{bottom:814.853333pt;}
.y5b{bottom:815.173333pt;}
.y1{bottom:821.440000pt;}
.y2e{bottom:832.800000pt;}
.he{height:17.920000pt;}
.h16{height:18.080000pt;}
.h25{height:33.152000pt;}
.h12{height:33.280000pt;}
.h13{height:33.312000pt;}
.h11{height:33.440000pt;}
.h18{height:33.472000pt;}
.h6{height:33.918750pt;}
.h15{height:36.640000pt;}
.h23{height:45.920000pt;}
.h20{height:46.080000pt;}
.h2a{height:46.240000pt;}
.h3{height:47.109375pt;}
.h9{height:47.742188pt;}
.h1c{height:48.640000pt;}
.h1b{height:48.672000pt;}
.h8{height:49.148438pt;}
.h19{height:52.000000pt;}
.h7{height:52.134375pt;}
.hf{height:53.535000pt;}
.h1d{height:57.375000pt;}
.h1e{height:57.687500pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.h26{height:61.280000pt;}
.hc{height:62.781250pt;}
.h5{height:62.812500pt;}
.ha{height:64.500000pt;}
.h28{height:65.120000pt;}
.hd{height:65.781915pt;}
.h14{height:67.200000pt;}
.h1f{height:80.480000pt;}
.h21{height:81.952000pt;}
.h4{height:84.662813pt;}
.h22{height:88.032000pt;}
.h17{height:101.312000pt;}
.h10{height:120.032000pt;}
.h2b{height:138.106667pt;}
.h2c{height:153.306667pt;}
.h2e{height:168.640000pt;}
.h27{height:168.666667pt;}
.h2d{height:178.906667pt;}
.h1a{height:181.306667pt;}
.h29{height:199.386667pt;}
.h24{height:337.306667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w9{width:38.720000pt;}
.wb{width:46.560000pt;}
.w7{width:49.440000pt;}
.w3{width:122.400000pt;}
.w5{width:235.066667pt;}
.w6{width:235.266667pt;}
.w4{width:349.373333pt;}
.w8{width:421.053333pt;}
.wc{width:423.933333pt;}
.wa{width:431.773333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x25{left:21.600000pt;}
.x29{left:24.000000pt;}
.x2b{left:28.000000pt;}
.x28{left:29.440000pt;}
.x21{left:35.360000pt;}
.x26{left:37.280000pt;}
.x1{left:85.151990pt;}
.x6{left:87.071990pt;}
.x1c{left:88.991990pt;}
.x2d{left:97.960000pt;}
.x12{left:99.711990pt;}
.x23{left:101.631990pt;}
.xe{left:103.231990pt;}
.x9{left:106.111990pt;}
.x1a{left:107.231990pt;}
.xb{left:109.151990pt;}
.x20{left:110.874667pt;}
.x4{left:113.471990pt;}
.x1f{left:114.874667pt;}
.x2a{left:125.152000pt;}
.x3{left:129.951990pt;}
.x10{left:133.151990pt;}
.x27{left:135.866667pt;}
.x22{left:175.874667pt;}
.x7{left:180.026657pt;}
.xf{left:202.906657pt;}
.xd{left:208.346667pt;}
.x2{left:233.666657pt;}
.x18{left:240.866657pt;}
.x13{left:264.706657pt;}
.x2f{left:272.706657pt;}
.x2c{left:275.746667pt;}
.x24{left:300.866657pt;}
.xa{left:301.826657pt;}
.x11{left:310.946657pt;}
.x2e{left:321.346657pt;}
.x19{left:322.466657pt;}
.x14{left:325.666657pt;}
.x1b{left:327.586657pt;}
.x17{left:333.666657pt;}
.x1e{left:335.586657pt;}
.x16{left:343.586657pt;}
.x15{left:448.573324pt;}
.x1d{left:458.813324pt;}
.x5{left:491.453324pt;}
.x8{left:535.493324pt;}
}




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