
    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_f33e0f79f63c62269d881919.woff')format("woff");}.ff1{font-family:ff1;line-height:1.041000;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_c7fb2c24721eef9b132f4553.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_0fedae9c467104cdf736029b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_eaad208825affc160f629cec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944000;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_f89b04d2227754e35e695c28.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_d94d05cc74e7ffb72ac6a248.woff')format("woff");}.ff6{font-family:ff6;line-height:0.724000;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_e62245bd83c246611da94d8f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e71b67112a08e17df059af4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.795000;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_2f1cfd4d5cf0946747cc5160.woff')format("woff");}.ff9{font-family:ff9;line-height:1.044000;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_2adcd0da42f0768fb0bec3d1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.041000;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_d461f9af8d720089bad0823c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bde7ae127dc5908dd1628052.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_48a56374813faca1799a82be.woff')format("woff");}.ffd{font-family:ffd;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc153056acc29aba45c543d8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5128027b4daec13c2e171566.woff')format("woff");}.fff{font-family:fff;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f247a6033922e780b88eaa7c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.680176;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:ff11;src:url('chunks/assets/font_1aa6718c7e1f3c1c5bb8479e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000090px;}
.ls4{letter-spacing:0.000141px;}
.ls2{letter-spacing:0.000180px;}
.ls3{letter-spacing:8.986861px;}
.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;}
}
.ws5{word-spacing:-44.999999px;}
.ws6{word-spacing:-16.980000px;}
.ws1{word-spacing:-15.720000px;}
.ws2{word-spacing:-13.584000px;}
.ws4{word-spacing:-12.912000px;}
.ws3{word-spacing:-12.576000px;}
.ws7{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-4.408675px;}
._1{margin-left:-2.999605px;}
._0{margin-left:-1.656683px;}
._2{width:1.181808px;}
._36{width:2.455404px;}
._6{width:4.446344px;}
._34{width:5.464163px;}
._15{width:8.153610px;}
._13{width:9.309746px;}
._d{width:12.906675px;}
._c{width:13.981810px;}
._b{width:17.295345px;}
._a{width:18.612020px;}
._14{width:21.880510px;}
._16{width:22.955822px;}
._8{width:26.361662px;}
._9{width:27.820349px;}
._7{width:31.470971px;}
._32{width:32.479760px;}
._11{width:35.893534px;}
._38{width:36.923242px;}
._17{width:39.880510px;}
._18{width:40.922496px;}
._f{width:44.388399px;}
._10{width:45.448276px;}
._19{width:48.799748px;}
._e{width:50.266716px;}
._23{width:53.997384px;}
._21{width:63.630413px;}
._20{width:66.501396px;}
._1f{width:67.535425px;}
._33{width:69.750470px;}
._5{width:72.040018px;}
._37{width:75.698540px;}
._4{width:76.792782px;}
._26{width:80.407715px;}
._25{width:85.442994px;}
._28{width:94.648963px;}
._24{width:98.917599px;}
._1e{width:103.816611px;}
._2a{width:107.401337px;}
._35{width:117.207450px;}
._1d{width:121.816611px;}
._1a{width:125.947874px;}
._2e{width:131.048246px;}
._29{width:134.838442px;}
._31{width:137.520002px;}
._12{width:143.947874px;}
._2b{width:147.901337px;}
._1c{width:162.316611px;}
._2f{width:165.851391px;}
._2d{width:180.496845px;}
._30{width:215.251122px;}
._22{width:216.316611px;}
._1b{width:234.316611px;}
._2c{width:243.131480px;}
._27{width:324.154122px;}
.fc5{color:transparent;}
.fc3{color:rgb(3,72,96);}
.fc2{color:rgb(68,114,196);}
.fc4{color:rgb(9,56,77);}
.fc1{color:rgb(129,180,226);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(111,164,219);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.999999px;}
.fs1{font-size:48.000002px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.999999px;}
.y0{bottom:0.000000px;}
.y93{bottom:2.635437px;}
.y8c{bottom:2.635798px;}
.y96{bottom:2.635803px;}
.y7e{bottom:2.635804px;}
.ybe{bottom:3.011563px;}
.ya4{bottom:3.011919px;}
.yb9{bottom:3.011925px;}
.y98{bottom:3.011929px;}
.yac{bottom:3.011934px;}
.y79{bottom:3.012296px;}
.y7c{bottom:3.012300px;}
.yd9{bottom:3.012301px;}
.yc4{bottom:3.012660px;}
.yb2{bottom:3.012676px;}
.y30{bottom:3.764902px;}
.y39{bottom:3.764904px;}
.y73{bottom:3.764907px;}
.y4f{bottom:3.764911px;}
.y36{bottom:3.764917px;}
.y53{bottom:3.764919px;}
.y2d{bottom:3.765003px;}
.y45{bottom:3.765087px;}
.y41{bottom:3.765094px;}
.y58{bottom:3.765097px;}
.y69{bottom:3.765099px;}
.y62{bottom:3.765102px;}
.y6e{bottom:3.765280px;}
.y14d{bottom:6.463878px;}
.y145{bottom:6.464610px;}
.y151{bottom:6.464616px;}
.y158{bottom:6.464625px;}
.y153{bottom:6.465059px;}
.y14a{bottom:6.465348px;}
.y155{bottom:6.465360px;}
.y15c{bottom:6.465363px;}
.y142{bottom:6.465791px;}
.y111{bottom:12.907002px;}
.y118{bottom:12.907008px;}
.ycf{bottom:12.907368px;}
.y28{bottom:12.907459px;}
.y4{bottom:12.907506px;}
.y66{bottom:12.907734px;}
.y92{bottom:15.434877px;}
.y8b{bottom:15.435238px;}
.y95{bottom:15.435243px;}
.yb8{bottom:17.639850px;}
.yd8{bottom:17.639851px;}
.y9c{bottom:17.639854px;}
.ya3{bottom:17.639859px;}
.ya1{bottom:17.640220px;}
.yc1{bottom:17.640223px;}
.y7b{bottom:17.640225px;}
.yb1{bottom:17.640601px;}
.y1bc{bottom:18.764173px;}
.y1b0{bottom:18.764178px;}
.y1ab{bottom:18.764179px;}
.y1b7{bottom:18.764184px;}
.y1b3{bottom:18.765634px;}
.y1b9{bottom:18.765645px;}
.y1c3{bottom:18.765649px;}
.y72{bottom:22.049817px;}
.y52{bottom:22.049829px;}
.y38{bottom:22.049994px;}
.y4e{bottom:22.050001px;}
.y40{bottom:22.050004px;}
.y2f{bottom:22.050007px;}
.y44{bottom:22.050012px;}
.y5c{bottom:22.050177px;}
.y68{bottom:22.050189px;}
.y6d{bottom:22.050190px;}
.y61{bottom:22.050192px;}
.y149{bottom:24.749523px;}
.y150{bottom:24.749526px;}
.y15b{bottom:24.749538px;}
.y144{bottom:24.749970px;}
.y1d{bottom:26.267933px;}
.y19{bottom:26.267943px;}
.y14{bottom:26.267978px;}
.y16{bottom:26.268025px;}
.y91{bottom:28.234317px;}
.y8a{bottom:28.234678px;}
.y24{bottom:30.351045px;}
.ycd{bottom:31.641600px;}
.y75{bottom:31.641960px;}
.yab{bottom:32.267784px;}
.yc0{bottom:32.267788px;}
.yb7{bottom:32.267790px;}
.y9b{bottom:32.267794px;}
.ya0{bottom:32.268145px;}
.yc9{bottom:32.268154px;}
.ybc{bottom:32.268160px;}
.yb0{bottom:32.268166px;}
.yd7{bottom:32.268526px;}
.y1b6{bottom:37.048359px;}
.y1aa{bottom:37.049824px;}
.y1af{bottom:37.051278px;}
.y1bb{bottom:37.051288px;}
.y117{bottom:40.334736px;}
.y4d{bottom:40.334911px;}
.y35{bottom:40.334917px;}
.y27{bottom:40.334919px;}
.y3{bottom:40.335000px;}
.y3f{bottom:40.335094px;}
.y43{bottom:40.335101px;}
.yce{bottom:40.335468px;}
.y90{bottom:41.033757px;}
.y89{bottom:41.034118px;}
.y14f{bottom:43.034151px;}
.y14c{bottom:43.034883px;}
.y148{bottom:43.035168px;}
.y9a{bottom:46.895719px;}
.yaa{bottom:46.895724px;}
.yb6{bottom:46.896075px;}
.y9f{bottom:46.896085px;}
.ycc{bottom:46.896090px;}
.yd6{bottom:46.896091px;}
.yaf{bottom:46.896451px;}
.y1f2{bottom:52.048359px;}
.y23{bottom:53.583765px;}
.y63{bottom:53.583855px;}
.y8f{bottom:53.833557px;}
.y88{bottom:53.833558px;}
.y1ae{bottom:55.335468px;}
.y1b2{bottom:55.335469px;}
.y4c{bottom:58.620001px;}
.y3e{bottom:58.620019px;}
.y34{bottom:58.620022px;}
.y5f{bottom:58.620202px;}
.y18{bottom:59.180957px;}
.y147{bottom:61.320528px;}
.ya9{bottom:61.524009px;}
.yb5{bottom:61.524015px;}
.yd5{bottom:61.524376px;}
.yc8{bottom:61.524379px;}
.y25b{bottom:63.181172px;}
.y8e{bottom:66.632997px;}
.y87{bottom:66.633358px;}
.y137{bottom:67.761738px;}
.y26{bottom:67.762470px;}
.y2{bottom:67.762500px;}
.y65{bottom:67.762653px;}
.y212{bottom:67.763203px;}
.y115{bottom:68.939946px;}
.y1c6{bottom:70.123541px;}
.y1fe{bottom:70.854487px;}
.y1ad{bottom:73.621113px;}
.yc7{bottom:76.151944px;}
.ya8{bottom:76.151949px;}
.yd4{bottom:76.152316px;}
.y4b{bottom:76.904926px;}
.y5e{bottom:76.904932px;}
.y3d{bottom:76.905109px;}
.y33{bottom:76.905112px;}
.y22{bottom:76.977750px;}
.y166{bottom:78.085961px;}
.yf7{bottom:79.426290px;}
.y86{bottom:79.432798px;}
.ycb{bottom:80.111940px;}
.y25a{bottom:84.207536px;}
.y188{bottom:87.263199px;}
.y1e2{bottom:87.347160px;}
.y1c7{bottom:88.407720px;}
.ya7{bottom:90.779874px;}
.yd3{bottom:90.780240px;}
.y60{bottom:91.979913px;}
.y85{bottom:92.232238px;}
.y4a{bottom:95.190016px;}
.y32{bottom:95.190022px;}
.y114{bottom:97.492671px;}
.y239{bottom:98.761751px;}
.y84{bottom:105.031678px;}
.y259{bottom:105.236835px;}
.yd2{bottom:105.408169px;}
.y165{bottom:105.512965px;}
.y49{bottom:113.474926px;}
.y187{bottom:114.689463px;}
.y229{bottom:115.153834px;}
.y83{bottom:117.831118px;}
.y1c5{bottom:122.818361px;}
.yf6{bottom:124.854030px;}
.y113{bottom:126.045408px;}
.y258{bottom:126.263207px;}
.y211{bottom:129.012714px;}
.y82{bottom:130.630558px;}
.y1e1{bottom:131.222160px;}
.y48{bottom:131.759836px;}
.y164{bottom:132.939963px;}
.yca{bottom:138.624025px;}
.y1c4{bottom:141.102540px;}
.y186{bottom:142.117200px;}
.y228{bottom:142.583032px;}
.y81{bottom:143.430358px;}
.y257{bottom:147.292502px;}
.y47{bottom:150.044941px;}
.y5d{bottom:150.960022px;}
.yc6{bottom:154.376950px;}
.y112{bottom:154.597416px;}
.y80{bottom:156.229798px;}
.y210{bottom:156.438978px;}
.y163{bottom:160.367700px;}
.y1e0{bottom:166.097160px;}
.y136{bottom:167.294940px;}
.y256{bottom:168.318866px;}
.y185{bottom:169.544929px;}
.y1a1{bottom:169.544938px;}
.y227{bottom:170.009304px;}
.yf5{bottom:170.281755px;}
.y1c2{bottom:175.513181px;}
.y21{bottom:176.697035px;}
.y5b{bottom:178.387398px;}
.y20f{bottom:183.866715px;}
.y110{bottom:184.275153px;}
.y162{bottom:187.795425px;}
.y255{bottom:189.348165px;}
.y1c1{bottom:193.797360px;}
.y135{bottom:194.722673px;}
.y1a0{bottom:196.972666px;}
.y184{bottom:196.972676px;}
.y226{bottom:197.437032px;}
.y1df{bottom:200.972160px;}
.y20{bottom:204.124493px;}
.y254{bottom:210.374535px;}
.y20e{bottom:211.294443px;}
.y161{bottom:213.932247px;}
.yf4{bottom:215.709495px;}
.y134{bottom:222.150415px;}
.y19f{bottom:224.400404px;}
.y183{bottom:224.400412px;}
.y225{bottom:224.864762px;}
.y10f{bottom:226.859880px;}
.yc5{bottom:227.517331px;}
.y1c0{bottom:228.208001px;}
.y253{bottom:231.403830px;}
.y1f{bottom:231.552045px;}
.y1de{bottom:235.382805px;}
.y160{bottom:238.617060px;}
.y20d{bottom:238.722180px;}
.y1bf{bottom:246.492180px;}
.y133{bottom:249.578148px;}
.y182{bottom:251.828137px;}
.y19e{bottom:251.828141px;}
.y224{bottom:252.292498px;}
.y15e{bottom:252.810057px;}
.y10e{bottom:254.287620px;}
.y1e{bottom:258.979515px;}
.yf3{bottom:261.136500px;}
.y5a{bottom:264.795051px;}
.y20c{bottom:266.148450px;}
.yc3{bottom:272.513670px;}
.y59{bottom:273.937492px;}
.y1c{bottom:274.624506px;}
.y132{bottom:277.005150px;}
.y181{bottom:279.254411px;}
.y223{bottom:279.720235px;}
.y1be{bottom:280.902836px;}
.y10d{bottom:281.715344px;}
.y252{bottom:282.081578px;}
.y1dd{bottom:282.699720px;}
.yc2{bottom:287.142331px;}
.y15f{bottom:289.379881px;}
.y20b{bottom:292.287464px;}
.y1fd{bottom:298.635765px;}
.y1bd{bottom:299.187015px;}
.y131{bottom:304.432150px;}
.yf2{bottom:306.563490px;}
.y19d{bottom:306.682143px;}
.y180{bottom:306.682152px;}
.y222{bottom:307.147968px;}
.y10c{bottom:309.142343px;}
.y251{bottom:309.509303px;}
.y1dc{bottom:310.127455px;}
.y15a{bottom:314.189937px;}
.y20a{bottom:316.970084px;}
.ybf{bottom:317.511106px;}
.y57{bottom:323.774963px;}
.y1fc{bottom:326.063490px;}
.y1b{bottom:327.412444px;}
.y130{bottom:331.859883px;}
.y1ba{bottom:333.597661px;}
.y17f{bottom:334.109880px;}
.y221{bottom:334.575705px;}
.y10b{bottom:336.570085px;}
.y250{bottom:336.935574px;}
.y1db{bottom:337.555188px;}
.y209{bottom:341.655630px;}
.yf1{bottom:345.591324px;}
.ybd{bottom:346.767331px;}
.y15d{bottom:350.759029px;}
.y1b8{bottom:351.883305px;}
.y1fb{bottom:353.491239px;}
.y12f{bottom:359.287620px;}
.y19c{bottom:361.537607px;}
.y17e{bottom:361.537610px;}
.ybb{bottom:362.519900px;}
.y10a{bottom:363.997818px;}
.y24f{bottom:364.364762px;}
.y1da{bottom:364.982925px;}
.yf0{bottom:366.619155px;}
.y208{bottom:367.630380px;}
.y56{bottom:369.487420px;}
.y157{bottom:375.570555px;}
.y17{bottom:380.200557px;}
.y1fa{bottom:380.917503px;}
.y220{bottom:383.003445px;}
.y1b5{bottom:386.293941px;}
.y12e{bottom:386.714625px;}
.y17d{bottom:388.965338px;}
.y19b{bottom:388.965343px;}
.y109{bottom:391.424820px;}
.y24e{bottom:391.789573px;}
.y238{bottom:391.956566px;}
.y1d9{bottom:392.410661px;}
.y159{bottom:393.855466px;}
.y1a{bottom:396.656975px;}
.y1b4{bottom:404.578121px;}
.yef{bottom:405.646989px;}
.yba{bottom:406.404055px;}
.y1f9{bottom:408.345240px;}
.y21f{bottom:410.429713px;}
.y12d{bottom:414.141615px;}
.y17c{bottom:416.391616px;}
.y154{bottom:418.665525px;}
.y108{bottom:418.852560px;}
.y24d{bottom:419.218768px;}
.y237{bottom:419.385765px;}
.y1d8{bottom:419.838393px;}
.yb4{bottom:422.156985px;}
.yee{bottom:426.674820px;}
.y1f8{bottom:435.772965px;}
.y156{bottom:436.949704px;}
.y55{bottom:437.609988px;}
.y21e{bottom:437.858918px;}
.y1ac{bottom:438.987312px;}
.y12c{bottom:441.570829px;}
.y17b{bottom:443.820813px;}
.y107{bottom:446.279561px;}
.y24c{bottom:446.645042px;}
.y54{bottom:446.752447px;}
.y1d7{bottom:447.266130px;}
.y1b1{bottom:457.272956px;}
.y14e{bottom:461.760504px;}
.y1f7{bottom:461.910510px;}
.y21d{bottom:465.283711px;}
.y15{bottom:465.901520px;}
.y236{bottom:467.813490px;}
.y12b{bottom:468.997819px;}
.y17a{bottom:471.247815px;}
.y19a{bottom:471.248550px;}
.yed{bottom:472.102561px;}
.y106{bottom:473.708028px;}
.y24b{bottom:474.072776px;}
.y1d6{bottom:474.693879px;}
.y1a9{bottom:475.558601px;}
.yb3{bottom:480.669070px;}
.y1f6{bottom:486.594600px;}
.y21c{bottom:492.712916px;}
.yae{bottom:496.421624px;}
.y12a{bottom:496.424819px;}
.y51{bottom:496.590081px;}
.y152{bottom:498.329596px;}
.y179{bottom:498.674820px;}
.y199{bottom:498.674823px;}
.y1f5{bottom:500.787600px;}
.y105{bottom:501.135030px;}
.y24a{bottom:501.501975px;}
.y1d5{bottom:502.120139px;}
.y50{bottom:514.874995px;}
.y235{bottom:516.239760px;}
.yec{bottom:517.530300px;}
.y13{bottom:518.689551px;}
.y21b{bottom:520.139185px;}
.y146{bottom:523.139652px;}
.y129{bottom:523.852556px;}
.y198{bottom:526.102560px;}
.y178{bottom:526.102567px;}
.y104{bottom:528.562033px;}
.y1d4{bottom:529.547876px;}
.y1f4{bottom:535.198240px;}
.yad{bottom:540.305779px;}
.y1a8{bottom:541.159680px;}
.y14b{bottom:541.425297px;}
.yeb{bottom:544.957293px;}
.y21a{bottom:547.566918px;}
.y249{bottom:549.928215px;}
.y128{bottom:551.280294px;}
.y177{bottom:553.530292px;}
.y197{bottom:553.530300px;}
.y46{bottom:555.570014px;}
.y103{bottom:555.989770px;}
.ya6{bottom:556.059081px;}
.y1d3{bottom:556.975614px;}
.y143{bottom:559.710210px;}
.y234{bottom:564.667500px;}
.y1a7{bottom:568.587423px;}
.y1f3{bottom:569.607416px;}
.yea{bottom:572.385030px;}
.y1f1{bottom:572.894526px;}
.y219{bottom:574.994654px;}
.y248{bottom:577.355963px;}
.y127{bottom:578.707293px;}
.y196{bottom:580.956555px;}
.y176{bottom:580.957302px;}
.y102{bottom:583.417503px;}
.y12{bottom:584.385030px;}
.y1d2{bottom:584.401878px;}
.y1a6{bottom:596.015160px;}
.ye9{bottom:599.812758px;}
.y141{bottom:602.803714px;}
.y247{bottom:604.783710px;}
.y126{bottom:606.134295px;}
.y1f0{bottom:606.178705px;}
.y175{bottom:608.384292px;}
.y195{bottom:608.384295px;}
.y42{bottom:610.424928px;}
.y101{bottom:610.845240px;}
.y1d1{bottom:611.829615px;}
.y233{bottom:613.095240px;}
.y218{bottom:619.273950px;}
.y11{bottom:620.812493px;}
.y1a5{bottom:623.442885px;}
.ye8{bottom:627.239760px;}
.y246{bottom:632.211458px;}
.y125{bottom:633.562027px;}
.y194{bottom:635.812013px;}
.y174{bottom:635.812022px;}
.y100{bottom:638.272223px;}
.y1d0{bottom:639.258804px;}
.y140{bottom:640.522965px;}
.y217{bottom:642.550305px;}
.ya5{bottom:643.827025px;}
.y10{bottom:648.239955px;}
.y1a4{bottom:650.870625px;}
.y1ef{bottom:653.495625px;}
.ye7{bottom:654.667493px;}
.y9e{bottom:659.579960px;}
.y245{bottom:659.639183px;}
.y124{bottom:660.990496px;}
.y232{bottom:661.522965px;}
.y193{bottom:663.239760px;}
.y173{bottom:663.240488px;}
.y216{bottom:663.579615px;}
.yff{bottom:665.699965px;}
.y1cf{bottom:666.685068px;}
.y13f{bottom:667.950708px;}
.y1a3{bottom:677.006700px;}
.y1ee{bottom:680.923365px;}
.ye6{bottom:682.095235px;}
.y215{bottom:682.788450px;}
.yf{bottom:684.667495px;}
.y244{bottom:687.065454px;}
.y123{bottom:688.417486px;}
.ya2{bottom:688.836186px;}
.y172{bottom:690.667495px;}
.y192{bottom:690.667508px;}
.yfe{bottom:693.127698px;}
.y1ce{bottom:694.112805px;}
.y13e{bottom:695.377710px;}
.y1a2{bottom:702.982897px;}
.y9d{bottom:703.464115px;}
.y1ed{bottom:708.351099px;}
.y214{bottom:708.765645px;}
.ye5{bottom:709.522968px;}
.y231{bottom:709.950705px;}
.ye{bottom:712.095000px;}
.y243{bottom:714.494641px;}
.y122{bottom:715.845224px;}
.y171{bottom:718.095228px;}
.y191{bottom:718.095233px;}
.y99{bottom:719.217040px;}
.yfd{bottom:720.554700px;}
.y1cd{bottom:721.540545px;}
.y13d{bottom:722.804700px;}
.y3c{bottom:724.259951px;}
.y1ec{bottom:735.777363px;}
.y213{bottom:736.192375px;}
.ye4{bottom:736.949970px;}
.y242{bottom:741.919453px;}
.y121{bottom:743.272961px;}
.y190{bottom:745.522963px;}
.y170{bottom:745.522965px;}
.y1cc{bottom:747.678090px;}
.yfc{bottom:747.982440px;}
.yd{bottom:748.522515px;}
.y13c{bottom:750.232440px;}
.y3b{bottom:751.687493px;}
.y230{bottom:758.378430px;}
.y97{bottom:763.100830px;}
.y1eb{bottom:763.205100px;}
.ye3{bottom:764.376975px;}
.y241{bottom:769.348648px;}
.y120{bottom:770.699965px;}
.y16f{bottom:772.949981px;}
.y18f{bottom:772.950691px;}
.y265{bottom:773.519055px;}
.y1cb{bottom:773.652820px;}
.yfb{bottom:775.409914px;}
.y13b{bottom:777.660180px;}
.y7f{bottom:778.853762px;}
.yc{bottom:784.949970px;}
.y207{bottom:786.664569px;}
.y1ea{bottom:790.632827px;}
.ye2{bottom:791.805435px;}
.y240{bottom:796.774922px;}
.y74{bottom:796.912620px;}
.y11f{bottom:798.126963px;}
.y18e{bottom:800.376962px;}
.y16e{bottom:800.376986px;}
.y13a{bottom:805.087185px;}
.y22f{bottom:806.806171px;}
.y264{bottom:812.546889px;}
.y71{bottom:812.557623px;}
.y206{bottom:814.092301px;}
.y1e9{bottom:818.059095px;}
.ye1{bottom:819.232441px;}
.y37{bottom:819.810066px;}
.yb{bottom:821.377515px;}
.y23f{bottom:824.202656px;}
.y11e{bottom:825.554700px;}
.y18d{bottom:827.804698px;}
.y16d{bottom:827.804711px;}
.y3a{bottom:828.952508px;}
.y70{bottom:830.842528px;}
.y139{bottom:832.514175px;}
.y263{bottom:833.574720px;}
.y22e{bottom:834.230983px;}
.y205{bottom:841.518570px;}
.y1e8{bottom:845.486835px;}
.ye0{bottom:846.660179px;}
.y23e{bottom:851.631855px;}
.y11d{bottom:852.982440px;}
.y18c{bottom:855.232436px;}
.y16c{bottom:855.232441px;}
.ya{bottom:857.804985px;}
.y138{bottom:859.942378px;}
.y22d{bottom:861.660178px;}
.y8d{bottom:868.450563px;}
.y204{bottom:868.946310px;}
.y6f{bottom:871.537353px;}
.y1e7{bottom:871.624380px;}
.y262{bottom:872.602560px;}
.ydf{bottom:874.087178px;}
.y31{bottom:878.789977px;}
.y11c{bottom:880.410176px;}
.y6c{bottom:880.679810px;}
.y18b{bottom:882.660168px;}
.y16b{bottom:882.660169px;}
.y1e6{bottom:886.281735px;}
.y22c{bottom:889.086452px;}
.y261{bottom:893.630385px;}
.y9{bottom:894.232504px;}
.y203{bottom:895.083862px;}
.y23d{bottom:900.059595px;}
.yda{bottom:900.523950px;}
.yde{bottom:901.514920px;}
.y11b{bottom:907.837908px;}
.y18a{bottom:910.087905px;}
.y16a{bottom:910.087907px;}
.y260{bottom:914.658225px;}
.y2e{bottom:915.359992px;}
.yd1{bottom:916.168213px;}
.y22b{bottom:916.514186px;}
.y94{bottom:919.648317px;}
.y202{bottom:919.767944px;}
.y1e5{bottom:921.156735px;}
.ydd{bottom:928.942653px;}
.y6b{bottom:930.517453px;}
.y7d{bottom:932.447755px;}
.y11a{bottom:935.265645px;}
.y25f{bottom:935.686050px;}
.y169{bottom:937.515644px;}
.yfa{bottom:942.442650px;}
.y22a{bottom:943.943385px;}
.y201{bottom:944.453489px;}
.y23c{bottom:947.195672px;}
.y6a{bottom:952.927738px;}
.ydc{bottom:956.369655px;}
.y25e{bottom:956.713890px;}
.y119{bottom:962.692650px;}
.y7a{bottom:964.366335px;}
.y189{bottom:964.941914px;}
.y168{bottom:964.942648px;}
.y1e4{bottom:965.031735px;}
.y1ca{bottom:967.684095px;}
.y200{bottom:969.136108px;}
.yf9{bottom:969.869655px;}
.y23b{bottom:971.878287px;}
.y67{bottom:975.337281px;}
.y25d{bottom:977.741715px;}
.y116{bottom:978.337647px;}
.y78{bottom:978.994264px;}
.y167{bottom:992.369646px;}
.y2c{bottom:992.624999px;}
.y1ff{bottom:993.821655px;}
.y1c9{bottom:995.111835px;}
.y23a{bottom:996.565300px;}
.y25c{bottom:998.769550px;}
.y1e3{bottom:999.906738px;}
.y77{bottom:1001.512470px;}
.ydb{bottom:1001.797384px;}
.yf8{bottom:1017.547383px;}
.y8{bottom:1018.515003px;}
.yd0{bottom:1018.564453px;}
.y76{bottom:1019.797383px;}
.y1c8{bottom:1021.249383px;}
.y64{bottom:1034.317383px;}
.y2b{bottom:1036.942464px;}
.y7{bottom:1054.942486px;}
.y2a{bottom:1073.370015px;}
.y6{bottom:1082.369992px;}
.y5{bottom:1109.797497px;}
.y29{bottom:1109.797566px;}
.y1{bottom:1124.317497px;}
.y25{bottom:1124.317566px;}
.h1d{height:12.799805px;}
.h29{height:14.627564px;}
.h22{height:14.627930px;}
.h1b{height:14.628296px;}
.h17{height:21.284912px;}
.he{height:21.285004px;}
.h15{height:21.285095px;}
.h37{height:23.685059px;}
.h32{height:23.685791px;}
.h21{height:25.599243px;}
.h2f{height:27.427002px;}
.h30{height:27.427734px;}
.h25{height:29.255859px;}
.h1c{height:29.256225px;}
.h3c{height:33.284179px;}
.h3e{height:33.285645px;}
.h1e{height:35.363999px;}
.hf{height:39.570007px;}
.h18{height:39.570190px;}
.hc{height:40.416001px;}
.h33{height:41.969970px;}
.h2e{height:41.999999px;}
.h8{height:42.719999px;}
.h2a{height:43.883789px;}
.h4{height:44.519999px;}
.h6{height:44.819999px;}
.h1a{height:45.468000px;}
.h3{height:47.219999px;}
.h2{height:50.519999px;}
.h3d{height:51.568359px;}
.h39{height:51.569825px;}
.h3f{height:51.571288px;}
.ha{height:51.662934px;}
.h5{height:51.662979px;}
.h7{height:51.663025px;}
.h31{height:54.854736px;}
.h11{height:57.854919px;}
.h13{height:57.855102px;}
.h23{height:58.511720px;}
.h24{height:58.512086px;}
.h27{height:58.512451px;}
.h2c{height:58.724850px;}
.h19{height:58.725225px;}
.h38{height:58.725585px;}
.h36{height:60.254151px;}
.h35{height:60.254883px;}
.h40{height:66.568359px;}
.h3b{height:69.855470px;}
.h28{height:73.140015px;}
.h20{height:76.796997px;}
.h34{height:78.540528px;}
.h9{height:84.575958px;}
.h2b{height:87.767945px;}
.h3a{height:88.141113px;}
.hb{height:88.593750px;}
.h12{height:94.425109px;}
.h26{height:102.395874px;}
.h10{height:112.710023px;}
.h2d{height:117.024170px;}
.hd{height:138.682434px;}
.h1{height:138.682503px;}
.h1f{height:166.393799px;}
.h14{height:167.564942px;}
.h16{height:228.682617px;}
.h0{height:1263.000000px;}
.w16{width:59.625000px;}
.w17{width:60.750000px;}
.w18{width:61.874954px;}
.w15{width:66.375012px;}
.w1a{width:68.624954px;}
.w19{width:68.625000px;}
.w14{width:74.250012px;}
.wc{width:76.500000px;}
.w20{width:77.625000px;}
.w1f{width:83.250000px;}
.wb{width:94.499954px;}
.w1e{width:94.500000px;}
.w8{width:94.500023px;}
.w21{width:112.499954px;}
.wd{width:113.624954px;}
.w1c{width:125.999954px;}
.wa{width:126.000000px;}
.w1d{width:129.375000px;}
.w12{width:137.249954px;}
.w11{width:138.375000px;}
.w10{width:141.750023px;}
.wf{width:148.499954px;}
.w13{width:159.749954px;}
.w9{width:166.500000px;}
.w5{width:183.375023px;}
.we{width:212.625000px;}
.w1b{width:253.125000px;}
.w3{width:274.500030px;}
.w4{width:437.624910px;}
.w7{width:536.624910px;}
.w6{width:537.749910px;}
.w2{width:713.249910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2c{left:6.750000px;}
.x18{left:7.875000px;}
.x31{left:9.773223px;}
.x2e{left:11.572732px;}
.x32{left:20.370738px;}
.x35{left:26.176678px;}
.xc{left:28.125000px;}
.x10{left:29.250000px;}
.x12{left:30.375000px;}
.x2a{left:31.401912px;}
.x28{left:37.392285px;}
.x34{left:40.635337px;}
.x30{left:41.928068px;}
.x2d{left:43.075058px;}
.x2f{left:44.829514px;}
.x26{left:52.678791px;}
.x33{left:56.304442px;}
.x25{left:70.312500px;}
.xf{left:78.299996px;}
.x1{left:85.049996px;}
.xb{left:86.174995px;}
.x2{left:106.424996px;}
.x17{left:107.549995px;}
.x1e{left:112.049996px;}
.x9{left:127.478036px;}
.x7{left:130.956221px;}
.x24{left:139.049996px;}
.x4b{left:143.549996px;}
.x38{left:161.550007px;}
.x42{left:190.800018px;}
.x19{left:203.175018px;}
.x20{left:229.822317px;}
.x37{left:247.049996px;}
.x45{left:260.550015px;}
.x11{left:261.675015px;}
.x13{left:262.800015px;}
.x21{left:266.175015px;}
.x15{left:280.799996px;}
.x6{left:290.522707px;}
.x41{left:301.049996px;}
.x39{left:350.550015px;}
.x46{left:356.175015px;}
.xd{left:361.800015px;}
.x27{left:368.550015px;}
.x1a{left:370.800015px;}
.x3a{left:411.300015px;}
.x3{left:418.049996px;}
.x14{left:439.283651px;}
.xe{left:440.680934px;}
.x16{left:442.649651px;}
.x43{left:445.050015px;}
.x3b{left:473.175015px;}
.x4{left:476.509417px;}
.x22{left:478.800015px;}
.x1b{left:497.925015px;}
.x29{left:508.050015px;}
.x40{left:515.081696px;}
.x47{left:519.300015px;}
.x1f{left:526.331696px;}
.xa{left:531.552443px;}
.x3c{left:535.050015px;}
.x44{left:572.174970px;}
.x1c{left:593.549970px;}
.x3d{left:598.049970px;}
.x5{left:609.356921px;}
.x36{left:625.894196px;}
.x23{left:633.206696px;}
.x2b{left:646.424970px;}
.x3e{left:667.799970px;}
.x1d{left:671.174970px;}
.x8{left:690.819705px;}
.x4a{left:713.081662px;}
.x3f{left:737.549970px;}
.x49{left:771.019162px;}
.x48{left:812.924996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000080pt;}
.ls4{letter-spacing:0.000125pt;}
.ls2{letter-spacing:0.000160pt;}
.ls3{letter-spacing:7.988321pt;}
.ws5{word-spacing:-39.999999pt;}
.ws6{word-spacing:-15.093333pt;}
.ws1{word-spacing:-13.973333pt;}
.ws2{word-spacing:-12.074667pt;}
.ws4{word-spacing:-11.477334pt;}
.ws3{word-spacing:-11.178667pt;}
.ws7{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-3.918823pt;}
._1{margin-left:-2.666315pt;}
._0{margin-left:-1.472607pt;}
._2{width:1.050496pt;}
._36{width:2.182582pt;}
._6{width:3.952306pt;}
._34{width:4.857034pt;}
._15{width:7.247653pt;}
._13{width:8.275330pt;}
._d{width:11.472600pt;}
._c{width:12.428275pt;}
._b{width:15.373640pt;}
._a{width:16.544017pt;}
._14{width:19.449342pt;}
._16{width:20.405175pt;}
._8{width:23.432588pt;}
._9{width:24.729199pt;}
._7{width:27.974196pt;}
._32{width:28.870898pt;}
._11{width:31.905363pt;}
._38{width:32.820660pt;}
._17{width:35.449342pt;}
._18{width:36.375552pt;}
._f{width:39.456355pt;}
._10{width:40.398468pt;}
._19{width:43.377554pt;}
._e{width:44.681526pt;}
._23{width:47.997674pt;}
._21{width:56.560367pt;}
._20{width:59.112352pt;}
._1f{width:60.031489pt;}
._33{width:62.000417pt;}
._5{width:64.035571pt;}
._37{width:67.287591pt;}
._4{width:68.260250pt;}
._26{width:71.473525pt;}
._25{width:75.949328pt;}
._28{width:84.132412pt;}
._24{width:87.926755pt;}
._1e{width:92.281432pt;}
._2a{width:95.467855pt;}
._35{width:104.184400pt;}
._1d{width:108.281432pt;}
._1a{width:111.953666pt;}
._2e{width:116.487330pt;}
._29{width:119.856393pt;}
._31{width:122.240002pt;}
._12{width:127.953666pt;}
._2b{width:131.467855pt;}
._1c{width:144.281432pt;}
._2f{width:147.423459pt;}
._2d{width:160.441640pt;}
._30{width:191.334331pt;}
._22{width:192.281432pt;}
._1b{width:208.281432pt;}
._2c{width:216.116871pt;}
._27{width:288.136997pt;}
.fs3{font-size:37.333332pt;}
.fs1{font-size:42.666668pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333332pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:2.342610pt;}
.y8c{bottom:2.342932pt;}
.y96{bottom:2.342936pt;}
.y7e{bottom:2.342937pt;}
.ybe{bottom:2.676945pt;}
.ya4{bottom:2.677261pt;}
.yb9{bottom:2.677266pt;}
.y98{bottom:2.677271pt;}
.yac{bottom:2.677274pt;}
.y79{bottom:2.677596pt;}
.y7c{bottom:2.677600pt;}
.yd9{bottom:2.677601pt;}
.yc4{bottom:2.677920pt;}
.yb2{bottom:2.677934pt;}
.y30{bottom:3.346580pt;}
.y39{bottom:3.346581pt;}
.y73{bottom:3.346584pt;}
.y4f{bottom:3.346588pt;}
.y36{bottom:3.346593pt;}
.y53{bottom:3.346595pt;}
.y2d{bottom:3.346669pt;}
.y45{bottom:3.346744pt;}
.y41{bottom:3.346751pt;}
.y58{bottom:3.346753pt;}
.y69{bottom:3.346755pt;}
.y62{bottom:3.346757pt;}
.y6e{bottom:3.346916pt;}
.y14d{bottom:5.745669pt;}
.y145{bottom:5.746320pt;}
.y151{bottom:5.746325pt;}
.y158{bottom:5.746333pt;}
.y153{bottom:5.746719pt;}
.y14a{bottom:5.746976pt;}
.y155{bottom:5.746987pt;}
.y15c{bottom:5.746989pt;}
.y142{bottom:5.747370pt;}
.y111{bottom:11.472891pt;}
.y118{bottom:11.472896pt;}
.ycf{bottom:11.473216pt;}
.y28{bottom:11.473297pt;}
.y4{bottom:11.473339pt;}
.y66{bottom:11.473541pt;}
.y92{bottom:13.719890pt;}
.y8b{bottom:13.720212pt;}
.y95{bottom:13.720216pt;}
.yb8{bottom:15.679866pt;}
.yd8{bottom:15.679868pt;}
.y9c{bottom:15.679870pt;}
.ya3{bottom:15.679874pt;}
.ya1{bottom:15.680196pt;}
.yc1{bottom:15.680198pt;}
.y7b{bottom:15.680200pt;}
.yb1{bottom:15.680534pt;}
.y1bc{bottom:16.679265pt;}
.y1b0{bottom:16.679269pt;}
.y1ab{bottom:16.679271pt;}
.y1b7{bottom:16.679275pt;}
.y1b3{bottom:16.680564pt;}
.y1b9{bottom:16.680573pt;}
.y1c3{bottom:16.680577pt;}
.y72{bottom:19.599837pt;}
.y52{bottom:19.599848pt;}
.y38{bottom:19.599995pt;}
.y4e{bottom:19.600001pt;}
.y40{bottom:19.600004pt;}
.y2f{bottom:19.600006pt;}
.y44{bottom:19.600011pt;}
.y5c{bottom:19.600157pt;}
.y68{bottom:19.600168pt;}
.y6d{bottom:19.600169pt;}
.y61{bottom:19.600171pt;}
.y149{bottom:21.999576pt;}
.y150{bottom:21.999579pt;}
.y15b{bottom:21.999589pt;}
.y144{bottom:21.999974pt;}
.y1d{bottom:23.349274pt;}
.y19{bottom:23.349283pt;}
.y14{bottom:23.349314pt;}
.y16{bottom:23.349356pt;}
.y91{bottom:25.097170pt;}
.y8a{bottom:25.097492pt;}
.y24{bottom:26.978706pt;}
.ycd{bottom:28.125866pt;}
.y75{bottom:28.126186pt;}
.yab{bottom:28.682474pt;}
.yc0{bottom:28.682478pt;}
.yb7{bottom:28.682480pt;}
.y9b{bottom:28.682484pt;}
.ya0{bottom:28.682796pt;}
.yc9{bottom:28.682804pt;}
.ybc{bottom:28.682809pt;}
.yb0{bottom:28.682814pt;}
.yd7{bottom:28.683134pt;}
.y1b6{bottom:32.931875pt;}
.y1aa{bottom:32.933177pt;}
.y1af{bottom:32.934469pt;}
.y1bb{bottom:32.934479pt;}
.y117{bottom:35.853099pt;}
.y4d{bottom:35.853255pt;}
.y35{bottom:35.853260pt;}
.y27{bottom:35.853261pt;}
.y3{bottom:35.853333pt;}
.y3f{bottom:35.853417pt;}
.y43{bottom:35.853424pt;}
.yce{bottom:35.853749pt;}
.y90{bottom:36.474450pt;}
.y89{bottom:36.474772pt;}
.y14f{bottom:38.252579pt;}
.y14c{bottom:38.253230pt;}
.y148{bottom:38.253483pt;}
.y9a{bottom:41.685084pt;}
.yaa{bottom:41.685088pt;}
.yb6{bottom:41.685400pt;}
.y9f{bottom:41.685409pt;}
.ycc{bottom:41.685413pt;}
.yd6{bottom:41.685414pt;}
.yaf{bottom:41.685734pt;}
.y1f2{bottom:46.265208pt;}
.y23{bottom:47.630013pt;}
.y63{bottom:47.630093pt;}
.y8f{bottom:47.852050pt;}
.y88{bottom:47.852052pt;}
.y1ae{bottom:49.187083pt;}
.y1b2{bottom:49.187084pt;}
.y4c{bottom:52.106668pt;}
.y3e{bottom:52.106684pt;}
.y34{bottom:52.106687pt;}
.y5f{bottom:52.106847pt;}
.y18{bottom:52.605296pt;}
.y147{bottom:54.507136pt;}
.ya9{bottom:54.688008pt;}
.yb5{bottom:54.688013pt;}
.yd5{bottom:54.688334pt;}
.yc8{bottom:54.688337pt;}
.y25b{bottom:56.161042pt;}
.y8e{bottom:59.229330pt;}
.y87{bottom:59.229652pt;}
.y137{bottom:60.232656pt;}
.y26{bottom:60.233307pt;}
.y2{bottom:60.233333pt;}
.y65{bottom:60.233469pt;}
.y212{bottom:60.233959pt;}
.y115{bottom:61.279952pt;}
.y1c6{bottom:62.332036pt;}
.y1fe{bottom:62.981767pt;}
.y1ad{bottom:65.440989pt;}
.yc7{bottom:67.690617pt;}
.ya8{bottom:67.690621pt;}
.yd4{bottom:67.690948pt;}
.y4b{bottom:68.359935pt;}
.y5e{bottom:68.359940pt;}
.y3d{bottom:68.360097pt;}
.y33{bottom:68.360100pt;}
.y22{bottom:68.424666pt;}
.y166{bottom:69.409743pt;}
.yf7{bottom:70.601147pt;}
.y86{bottom:70.606932pt;}
.ycb{bottom:71.210613pt;}
.y25a{bottom:74.851143pt;}
.y188{bottom:77.567288pt;}
.y1e2{bottom:77.641920pt;}
.y1c7{bottom:78.584640pt;}
.ya7{bottom:80.693221pt;}
.yd3{bottom:80.693546pt;}
.y60{bottom:81.759923pt;}
.y85{bottom:81.984212pt;}
.y4a{bottom:84.613348pt;}
.y32{bottom:84.613353pt;}
.y114{bottom:86.660152pt;}
.y239{bottom:87.788223pt;}
.y84{bottom:93.361492pt;}
.y259{bottom:93.543853pt;}
.yd2{bottom:93.696150pt;}
.y165{bottom:93.789302pt;}
.y49{bottom:100.866601pt;}
.y187{bottom:101.946190pt;}
.y229{bottom:102.358963pt;}
.y83{bottom:104.738772pt;}
.y1c5{bottom:109.171876pt;}
.yf6{bottom:110.981360pt;}
.y113{bottom:112.040363pt;}
.y258{bottom:112.233962pt;}
.y211{bottom:114.677968pt;}
.y82{bottom:116.116052pt;}
.y1e1{bottom:116.641920pt;}
.y48{bottom:117.119855pt;}
.y164{bottom:118.168856pt;}
.yca{bottom:123.221356pt;}
.y1c4{bottom:125.424480pt;}
.y186{bottom:126.326400pt;}
.y228{bottom:126.740473pt;}
.y81{bottom:127.493652pt;}
.y257{bottom:130.926669pt;}
.y47{bottom:133.373281pt;}
.y5d{bottom:134.186687pt;}
.yc6{bottom:137.223956pt;}
.y112{bottom:137.419925pt;}
.y80{bottom:138.870932pt;}
.y210{bottom:139.056870pt;}
.y163{bottom:142.549067pt;}
.y1e0{bottom:147.641920pt;}
.y136{bottom:148.706613pt;}
.y256{bottom:149.616770pt;}
.y185{bottom:150.706603pt;}
.y1a1{bottom:150.706612pt;}
.y227{bottom:151.119381pt;}
.yf5{bottom:151.361560pt;}
.y1c2{bottom:156.011716pt;}
.y21{bottom:157.064031pt;}
.y5b{bottom:158.566576pt;}
.y20f{bottom:163.437080pt;}
.y110{bottom:163.800136pt;}
.y162{bottom:166.929267pt;}
.y255{bottom:168.309480pt;}
.y1c1{bottom:172.264320pt;}
.y135{bottom:173.086821pt;}
.y1a0{bottom:175.086815pt;}
.y184{bottom:175.086823pt;}
.y226{bottom:175.499584pt;}
.y1df{bottom:178.641920pt;}
.y20{bottom:181.443994pt;}
.y254{bottom:186.999587pt;}
.y20e{bottom:187.817283pt;}
.y161{bottom:190.161997pt;}
.yf4{bottom:191.741773pt;}
.y134{bottom:197.467036pt;}
.y19f{bottom:199.467026pt;}
.y183{bottom:199.467033pt;}
.y225{bottom:199.879788pt;}
.y10f{bottom:201.653227pt;}
.yc5{bottom:202.237628pt;}
.y1c0{bottom:202.851556pt;}
.y253{bottom:205.692293pt;}
.y1f{bottom:205.824040pt;}
.y1de{bottom:209.229160pt;}
.y160{bottom:212.104053pt;}
.y20d{bottom:212.197493pt;}
.y1bf{bottom:219.104160pt;}
.y133{bottom:221.847243pt;}
.y182{bottom:223.847233pt;}
.y19e{bottom:223.847237pt;}
.y224{bottom:224.259998pt;}
.y15e{bottom:224.720051pt;}
.y10e{bottom:226.033440pt;}
.y1e{bottom:230.204013pt;}
.yf3{bottom:232.121333pt;}
.y5a{bottom:235.373379pt;}
.y20c{bottom:236.576400pt;}
.yc3{bottom:242.234373pt;}
.y59{bottom:243.499993pt;}
.y1c{bottom:244.110672pt;}
.y132{bottom:246.226800pt;}
.y181{bottom:248.226143pt;}
.y223{bottom:248.640209pt;}
.y1be{bottom:249.691409pt;}
.y10d{bottom:250.413639pt;}
.y252{bottom:250.739180pt;}
.y1dd{bottom:251.288640pt;}
.yc2{bottom:255.237628pt;}
.y15f{bottom:257.226561pt;}
.y20b{bottom:259.811079pt;}
.y1fd{bottom:265.454013pt;}
.y1bd{bottom:265.944013pt;}
.y131{bottom:270.606356pt;}
.yf2{bottom:272.500880pt;}
.y19d{bottom:272.606350pt;}
.y180{bottom:272.606357pt;}
.y222{bottom:273.020416pt;}
.y10c{bottom:274.793194pt;}
.y251{bottom:275.119380pt;}
.y1dc{bottom:275.668849pt;}
.y15a{bottom:279.279944pt;}
.y20a{bottom:281.751185pt;}
.ybf{bottom:282.232095pt;}
.y57{bottom:287.799967pt;}
.y1fc{bottom:289.834213pt;}
.y1b{bottom:291.033284pt;}
.y130{bottom:294.986563pt;}
.y1ba{bottom:296.531255pt;}
.y17f{bottom:296.986560pt;}
.y221{bottom:297.400627pt;}
.y10b{bottom:299.173409pt;}
.y250{bottom:299.498288pt;}
.y1db{bottom:300.049056pt;}
.y209{bottom:303.693893pt;}
.yf1{bottom:307.192288pt;}
.ybd{bottom:308.237628pt;}
.y15d{bottom:311.785804pt;}
.y1b8{bottom:312.785160pt;}
.y1fb{bottom:314.214434pt;}
.y12f{bottom:319.366773pt;}
.y19c{bottom:321.366762pt;}
.y17e{bottom:321.366764pt;}
.ybb{bottom:322.239911pt;}
.y10a{bottom:323.553616pt;}
.y24f{bottom:323.879788pt;}
.y1da{bottom:324.429267pt;}
.yf0{bottom:325.883693pt;}
.y208{bottom:326.782560pt;}
.y56{bottom:328.433262pt;}
.y157{bottom:333.840493pt;}
.y17{bottom:337.956051pt;}
.y1fa{bottom:338.593336pt;}
.y220{bottom:340.447506pt;}
.y1b5{bottom:343.372392pt;}
.y12e{bottom:343.746333pt;}
.y17d{bottom:345.746967pt;}
.y19b{bottom:345.746972pt;}
.y109{bottom:347.933173pt;}
.y24e{bottom:348.257398pt;}
.y238{bottom:348.405836pt;}
.y1d9{bottom:348.809476pt;}
.y159{bottom:350.093748pt;}
.y1a{bottom:352.583977pt;}
.y1b4{bottom:359.624996pt;}
.yef{bottom:360.575101pt;}
.yba{bottom:361.248049pt;}
.y1f9{bottom:362.973547pt;}
.y21f{bottom:364.826411pt;}
.y12d{bottom:368.125880pt;}
.y17c{bottom:370.125881pt;}
.y154{bottom:372.147133pt;}
.y108{bottom:372.313387pt;}
.y24d{bottom:372.638905pt;}
.y237{bottom:372.787347pt;}
.y1d8{bottom:373.189683pt;}
.yb4{bottom:375.250653pt;}
.yee{bottom:379.266507pt;}
.y1f8{bottom:387.353747pt;}
.y156{bottom:388.399737pt;}
.y55{bottom:388.986656pt;}
.y21e{bottom:389.207927pt;}
.y1ac{bottom:390.210944pt;}
.y12c{bottom:392.507404pt;}
.y17b{bottom:394.507389pt;}
.y107{bottom:396.692943pt;}
.y24c{bottom:397.017815pt;}
.y54{bottom:397.113287pt;}
.y1d7{bottom:397.569893pt;}
.y1b1{bottom:406.464849pt;}
.y14e{bottom:410.453781pt;}
.y1f7{bottom:410.587120pt;}
.y21d{bottom:413.585521pt;}
.y15{bottom:414.134684pt;}
.y236{bottom:415.834213pt;}
.y12b{bottom:416.886951pt;}
.y17a{bottom:418.886947pt;}
.y19a{bottom:418.887600pt;}
.yed{bottom:419.646721pt;}
.y106{bottom:421.073803pt;}
.y24b{bottom:421.398023pt;}
.y1d6{bottom:421.950114pt;}
.y1a9{bottom:422.718756pt;}
.yb3{bottom:427.261396pt;}
.y1f6{bottom:432.528533pt;}
.y21c{bottom:437.967036pt;}
.yae{bottom:441.263665pt;}
.y12a{bottom:441.266506pt;}
.y51{bottom:441.413405pt;}
.y152{bottom:442.959641pt;}
.y179{bottom:443.266507pt;}
.y199{bottom:443.266510pt;}
.y1f5{bottom:445.144533pt;}
.y105{bottom:445.453360pt;}
.y24a{bottom:445.779533pt;}
.y1d5{bottom:446.329012pt;}
.y50{bottom:457.666662pt;}
.y235{bottom:458.879787pt;}
.yec{bottom:460.026933pt;}
.y13{bottom:461.057379pt;}
.y21b{bottom:462.345942pt;}
.y146{bottom:465.013024pt;}
.y129{bottom:465.646717pt;}
.y198{bottom:467.646720pt;}
.y178{bottom:467.646727pt;}
.y104{bottom:469.832918pt;}
.y1d4{bottom:470.709223pt;}
.y1f4{bottom:475.731769pt;}
.yad{bottom:480.271804pt;}
.y1a8{bottom:481.030827pt;}
.y14b{bottom:481.266931pt;}
.yeb{bottom:484.406483pt;}
.y21a{bottom:486.726149pt;}
.y249{bottom:488.825080pt;}
.y128{bottom:490.026928pt;}
.y177{bottom:492.026927pt;}
.y197{bottom:492.026933pt;}
.y46{bottom:493.840012pt;}
.y103{bottom:494.213129pt;}
.ya6{bottom:494.274739pt;}
.y1d3{bottom:495.089434pt;}
.y143{bottom:497.520187pt;}
.y234{bottom:501.926667pt;}
.y1a7{bottom:505.411043pt;}
.y1f3{bottom:506.317703pt;}
.yea{bottom:508.786693pt;}
.y1f1{bottom:509.239579pt;}
.y219{bottom:511.106360pt;}
.y248{bottom:513.205300pt;}
.y127{bottom:514.406483pt;}
.y196{bottom:516.405827pt;}
.y176{bottom:516.406491pt;}
.y102{bottom:518.593336pt;}
.y12{bottom:519.453360pt;}
.y1d2{bottom:519.468336pt;}
.y1a6{bottom:529.791253pt;}
.ye9{bottom:533.166896pt;}
.y141{bottom:535.825524pt;}
.y247{bottom:537.585520pt;}
.y126{bottom:538.786040pt;}
.y1f0{bottom:538.825516pt;}
.y175{bottom:540.786038pt;}
.y195{bottom:540.786040pt;}
.y42{bottom:542.599936pt;}
.y101{bottom:542.973547pt;}
.y1d1{bottom:543.848547pt;}
.y233{bottom:544.973547pt;}
.y218{bottom:550.465733pt;}
.y11{bottom:551.833327pt;}
.y1a5{bottom:554.171453pt;}
.ye8{bottom:557.546453pt;}
.y246{bottom:561.965740pt;}
.y125{bottom:563.166247pt;}
.y194{bottom:565.166233pt;}
.y174{bottom:565.166242pt;}
.y100{bottom:567.353087pt;}
.y1d0{bottom:568.230048pt;}
.y140{bottom:569.353747pt;}
.y217{bottom:571.155827pt;}
.ya5{bottom:572.290689pt;}
.y10{bottom:576.213293pt;}
.y1a4{bottom:578.551667pt;}
.y1ef{bottom:580.885000pt;}
.ye7{bottom:581.926661pt;}
.y9e{bottom:586.293297pt;}
.y245{bottom:586.345940pt;}
.y124{bottom:587.547108pt;}
.y232{bottom:588.020413pt;}
.y193{bottom:589.546453pt;}
.y173{bottom:589.547101pt;}
.y216{bottom:589.848547pt;}
.yff{bottom:591.733302pt;}
.y1cf{bottom:592.608950pt;}
.y13f{bottom:593.733963pt;}
.y1a3{bottom:601.783733pt;}
.y1ee{bottom:605.265213pt;}
.ye6{bottom:606.306876pt;}
.y215{bottom:606.923066pt;}
.yf{bottom:608.593329pt;}
.y244{bottom:610.724848pt;}
.y123{bottom:611.926655pt;}
.ya2{bottom:612.298832pt;}
.y172{bottom:613.926663pt;}
.y192{bottom:613.926673pt;}
.yfe{bottom:616.113509pt;}
.y1ce{bottom:616.989160pt;}
.y13e{bottom:618.113520pt;}
.y1a2{bottom:624.873687pt;}
.y9d{bottom:625.301436pt;}
.y1ed{bottom:629.645421pt;}
.y214{bottom:630.013907pt;}
.ye5{bottom:630.687083pt;}
.y231{bottom:631.067293pt;}
.ye{bottom:632.973333pt;}
.y243{bottom:635.106348pt;}
.y122{bottom:636.306866pt;}
.y171{bottom:638.306870pt;}
.y191{bottom:638.306873pt;}
.y99{bottom:639.304036pt;}
.yfd{bottom:640.493067pt;}
.y1cd{bottom:641.369373pt;}
.y13d{bottom:642.493067pt;}
.y3c{bottom:643.786623pt;}
.y1ec{bottom:654.024323pt;}
.y213{bottom:654.393223pt;}
.ye4{bottom:655.066640pt;}
.y242{bottom:659.483958pt;}
.y121{bottom:660.687077pt;}
.y190{bottom:662.687078pt;}
.y170{bottom:662.687080pt;}
.y1cc{bottom:664.602746pt;}
.yfc{bottom:664.873280pt;}
.yd{bottom:665.353347pt;}
.y13c{bottom:666.873280pt;}
.y3b{bottom:668.166660pt;}
.y230{bottom:674.114160pt;}
.y97{bottom:678.311849pt;}
.y1eb{bottom:678.404533pt;}
.ye3{bottom:679.446200pt;}
.y241{bottom:683.865465pt;}
.y120{bottom:685.066636pt;}
.y16f{bottom:687.066649pt;}
.y18f{bottom:687.067281pt;}
.y265{bottom:687.572493pt;}
.y1cb{bottom:687.691395pt;}
.yfb{bottom:689.253257pt;}
.y13b{bottom:691.253493pt;}
.y7f{bottom:692.314455pt;}
.yc{bottom:697.733307pt;}
.y207{bottom:699.257394pt;}
.y1ea{bottom:702.784735pt;}
.ye2{bottom:703.827053pt;}
.y240{bottom:708.244375pt;}
.y74{bottom:708.366773pt;}
.y11f{bottom:709.446190pt;}
.y18e{bottom:711.446188pt;}
.y16e{bottom:711.446209pt;}
.y13a{bottom:715.633053pt;}
.y22f{bottom:717.161041pt;}
.y264{bottom:722.263901pt;}
.y71{bottom:722.273443pt;}
.y206{bottom:723.637601pt;}
.y1e9{bottom:727.163640pt;}
.ye1{bottom:728.206615pt;}
.y37{bottom:728.720059pt;}
.yb{bottom:730.113347pt;}
.y23f{bottom:732.624583pt;}
.y11e{bottom:733.826400pt;}
.y18d{bottom:735.826398pt;}
.y16d{bottom:735.826409pt;}
.y3a{bottom:736.846673pt;}
.y70{bottom:738.526691pt;}
.y139{bottom:740.012600pt;}
.y263{bottom:740.955307pt;}
.y22e{bottom:741.538651pt;}
.y205{bottom:748.016507pt;}
.y1e8{bottom:751.543853pt;}
.ye0{bottom:752.586826pt;}
.y23e{bottom:757.006093pt;}
.y11d{bottom:758.206613pt;}
.y18c{bottom:760.206609pt;}
.y16c{bottom:760.206614pt;}
.ya{bottom:762.493320pt;}
.y138{bottom:764.393225pt;}
.y22d{bottom:765.920158pt;}
.y8d{bottom:771.956056pt;}
.y204{bottom:772.396720pt;}
.y6f{bottom:774.699869pt;}
.y1e7{bottom:774.777226pt;}
.y262{bottom:775.646720pt;}
.ydf{bottom:776.966381pt;}
.y31{bottom:781.146647pt;}
.y11c{bottom:782.586823pt;}
.y6c{bottom:782.826497pt;}
.y18b{bottom:784.586816pt;}
.y16b{bottom:784.586817pt;}
.y1e6{bottom:787.805987pt;}
.y22c{bottom:790.299068pt;}
.y261{bottom:794.338120pt;}
.y9{bottom:794.873337pt;}
.y203{bottom:795.630100pt;}
.y23d{bottom:800.052973pt;}
.yda{bottom:800.465733pt;}
.yde{bottom:801.346596pt;}
.y11b{bottom:806.967030pt;}
.y18a{bottom:808.967027pt;}
.y16a{bottom:808.967028pt;}
.y260{bottom:813.029533pt;}
.y2e{bottom:813.653327pt;}
.yd1{bottom:814.371745pt;}
.y22b{bottom:814.679276pt;}
.y94{bottom:817.465171pt;}
.y202{bottom:817.571506pt;}
.y1e5{bottom:818.805987pt;}
.ydd{bottom:825.726803pt;}
.y6b{bottom:827.126625pt;}
.y7d{bottom:828.842449pt;}
.y11a{bottom:831.347240pt;}
.y25f{bottom:831.720933pt;}
.y169{bottom:833.347239pt;}
.yfa{bottom:837.726800pt;}
.y22a{bottom:839.060787pt;}
.y201{bottom:839.514213pt;}
.y23c{bottom:841.951708pt;}
.y6a{bottom:847.046878pt;}
.ydc{bottom:850.106360pt;}
.y25e{bottom:850.412347pt;}
.y119{bottom:855.726800pt;}
.y7a{bottom:857.214520pt;}
.y189{bottom:857.726145pt;}
.y168{bottom:857.726798pt;}
.y1e4{bottom:857.805987pt;}
.y1ca{bottom:860.163640pt;}
.y200{bottom:861.454319pt;}
.yf9{bottom:862.106360pt;}
.y23b{bottom:863.891810pt;}
.y67{bottom:866.966472pt;}
.y25d{bottom:869.103747pt;}
.y116{bottom:869.633464pt;}
.y78{bottom:870.217124pt;}
.y167{bottom:882.106352pt;}
.y2c{bottom:882.333333pt;}
.y1ff{bottom:883.397026pt;}
.y1c9{bottom:884.543853pt;}
.y23a{bottom:885.835822pt;}
.y25c{bottom:887.795156pt;}
.y1e3{bottom:888.805989pt;}
.y77{bottom:890.233307pt;}
.ydb{bottom:890.486564pt;}
.yf8{bottom:904.486563pt;}
.y8{bottom:905.346669pt;}
.yd0{bottom:905.390625pt;}
.y76{bottom:906.486563pt;}
.y1c8{bottom:907.777229pt;}
.y64{bottom:919.393229pt;}
.y2b{bottom:921.726635pt;}
.y7{bottom:937.726655pt;}
.y2a{bottom:954.106680pt;}
.y6{bottom:962.106660pt;}
.y5{bottom:986.486664pt;}
.y29{bottom:986.486725pt;}
.y1{bottom:999.393331pt;}
.y25{bottom:999.393392pt;}
.h1d{height:11.377604pt;}
.h29{height:13.002279pt;}
.h22{height:13.002604pt;}
.h1b{height:13.002930pt;}
.h17{height:18.919922pt;}
.he{height:18.920003pt;}
.h15{height:18.920085pt;}
.h37{height:21.053385pt;}
.h32{height:21.054036pt;}
.h21{height:22.754883pt;}
.h2f{height:24.379557pt;}
.h30{height:24.380208pt;}
.h25{height:26.005208pt;}
.h1c{height:26.005533pt;}
.h3c{height:29.585937pt;}
.h3e{height:29.587240pt;}
.h1e{height:31.434666pt;}
.hf{height:35.173340pt;}
.h18{height:35.173503pt;}
.hc{height:35.925334pt;}
.h33{height:37.306640pt;}
.h2e{height:37.333332pt;}
.h8{height:37.973332pt;}
.h2a{height:39.007812pt;}
.h4{height:39.573332pt;}
.h6{height:39.839999pt;}
.h1a{height:40.416000pt;}
.h3{height:41.973332pt;}
.h2{height:44.906666pt;}
.h3d{height:45.838541pt;}
.h39{height:45.839844pt;}
.h3f{height:45.841145pt;}
.ha{height:45.922608pt;}
.h5{height:45.922648pt;}
.h7{height:45.922689pt;}
.h31{height:48.759765pt;}
.h11{height:51.426595pt;}
.h13{height:51.426757pt;}
.h23{height:52.010417pt;}
.h24{height:52.010743pt;}
.h27{height:52.011068pt;}
.h2c{height:52.199867pt;}
.h19{height:52.200200pt;}
.h38{height:52.200520pt;}
.h36{height:53.559245pt;}
.h35{height:53.559896pt;}
.h40{height:59.171875pt;}
.h3b{height:62.093751pt;}
.h28{height:65.013347pt;}
.h20{height:68.263997pt;}
.h34{height:69.813803pt;}
.h9{height:75.178629pt;}
.h2b{height:78.015951pt;}
.h3a{height:78.347656pt;}
.hb{height:78.750000pt;}
.h12{height:83.933431pt;}
.h26{height:91.018555pt;}
.h10{height:100.186687pt;}
.h2d{height:104.021484pt;}
.hd{height:123.273275pt;}
.h1{height:123.273336pt;}
.h1f{height:147.905599pt;}
.h14{height:148.946615pt;}
.h16{height:203.273437pt;}
.h0{height:1122.666667pt;}
.w16{width:53.000000pt;}
.w17{width:54.000000pt;}
.w18{width:54.999959pt;}
.w15{width:59.000011pt;}
.w1a{width:60.999959pt;}
.w19{width:61.000000pt;}
.w14{width:66.000011pt;}
.wc{width:68.000000pt;}
.w20{width:69.000000pt;}
.w1f{width:74.000000pt;}
.wb{width:83.999959pt;}
.w1e{width:84.000000pt;}
.w8{width:84.000020pt;}
.w21{width:99.999959pt;}
.wd{width:100.999959pt;}
.w1c{width:111.999959pt;}
.wa{width:112.000000pt;}
.w1d{width:115.000000pt;}
.w12{width:121.999959pt;}
.w11{width:123.000000pt;}
.w10{width:126.000020pt;}
.wf{width:131.999959pt;}
.w13{width:141.999959pt;}
.w9{width:148.000000pt;}
.w5{width:163.000020pt;}
.we{width:189.000000pt;}
.w1b{width:225.000000pt;}
.w3{width:244.000027pt;}
.w4{width:388.999920pt;}
.w7{width:476.999920pt;}
.w6{width:477.999920pt;}
.w2{width:633.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2c{left:6.000000pt;}
.x18{left:7.000000pt;}
.x31{left:8.687309pt;}
.x2e{left:10.286873pt;}
.x32{left:18.107323pt;}
.x35{left:23.268158pt;}
.xc{left:25.000000pt;}
.x10{left:26.000000pt;}
.x12{left:27.000000pt;}
.x2a{left:27.912811pt;}
.x28{left:33.237587pt;}
.x34{left:36.120300pt;}
.x30{left:37.269394pt;}
.x2d{left:38.288940pt;}
.x2f{left:39.848457pt;}
.x26{left:46.825592pt;}
.x33{left:50.048393pt;}
.x25{left:62.500000pt;}
.xf{left:69.599996pt;}
.x1{left:75.599996pt;}
.xb{left:76.599996pt;}
.x2{left:94.599996pt;}
.x17{left:95.599996pt;}
.x1e{left:99.599996pt;}
.x9{left:113.313810pt;}
.x7{left:116.405530pt;}
.x24{left:123.599996pt;}
.x4b{left:127.599996pt;}
.x38{left:143.600007pt;}
.x42{left:169.600016pt;}
.x19{left:180.600016pt;}
.x20{left:204.286504pt;}
.x37{left:219.599996pt;}
.x45{left:231.600013pt;}
.x11{left:232.600013pt;}
.x13{left:233.600013pt;}
.x21{left:236.600013pt;}
.x15{left:249.599996pt;}
.x6{left:258.242406pt;}
.x41{left:267.599996pt;}
.x39{left:311.600013pt;}
.x46{left:316.600013pt;}
.xd{left:321.600013pt;}
.x27{left:327.600013pt;}
.x1a{left:329.600013pt;}
.x3a{left:365.600013pt;}
.x3{left:371.599996pt;}
.x14{left:390.474356pt;}
.xe{left:391.716386pt;}
.x16{left:393.466356pt;}
.x43{left:395.600013pt;}
.x3b{left:420.600013pt;}
.x4{left:423.563926pt;}
.x22{left:425.600013pt;}
.x1b{left:442.600013pt;}
.x29{left:451.600013pt;}
.x40{left:457.850396pt;}
.x47{left:461.600013pt;}
.x1f{left:467.850396pt;}
.xa{left:472.491060pt;}
.x3c{left:475.600013pt;}
.x44{left:508.599973pt;}
.x1c{left:527.599973pt;}
.x3d{left:531.599973pt;}
.x5{left:541.650596pt;}
.x36{left:556.350396pt;}
.x23{left:562.850396pt;}
.x2b{left:574.599973pt;}
.x3e{left:593.599973pt;}
.x1d{left:596.599973pt;}
.x8{left:614.061960pt;}
.x4a{left:633.850366pt;}
.x3f{left:655.599973pt;}
.x49{left:685.350366pt;}
.x48{left:722.599996pt;}
}




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