
    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_cc67ca40082dfac25447c1a8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935059;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_c9974b4c7fe47b2cf68bc21e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_0bf933be670d3ed012432722.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_f32f89348987e63e3595e5b7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_d8fb0854aa38b6340e9fec9e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.057617;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_587743c9ba885356a6482fe9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_e64f0576f50b677d1d8adb28.woff')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_5747bbcb11a57ad9ed3c0883.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_e9fccdeca6e70cdb11922cd9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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_3c005be57fa16269faeddfe2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_c1cd06c7c5eec0da87a08431.woff')format("woff");}.ffb{font-family:ffb;line-height:4.335938;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_246b24255f6a18e1c534d48c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_1f07bcdc608576daec0dc397.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_e7bccc2dcc8bd2cc839c9b62.woff')format("woff");}.ffe{font-family:ffe;line-height:1.163086;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_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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_2ca68ec49353d663d12714bc.woff')format("woff");}.ff10{font-family:ff10;line-height:1.014160;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);}
.v10{vertical-align:-34.200000px;}
.ve{vertical-align:-19.440000px;}
.v1{vertical-align:-13.680000px;}
.v15{vertical-align:-11.520000px;}
.v4{vertical-align:-9.720000px;}
.v6{vertical-align:-3.240000px;}
.v14{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v1a{vertical-align:1.800000px;}
.v17{vertical-align:2.880000px;}
.v2{vertical-align:13.680000px;}
.v8{vertical-align:17.040000px;}
.v18{vertical-align:20.880000px;}
.v11{vertical-align:26.640000px;}
.v1b{vertical-align:28.080000px;}
.v5{vertical-align:35.640000px;}
.va{vertical-align:40.320000px;}
.v19{vertical-align:43.560000px;}
.v16{vertical-align:48.960000px;}
.vf{vertical-align:53.640000px;}
.v12{vertical-align:55.440000px;}
.v13{vertical-align:57.600000px;}
.vc{vertical-align:66.240000px;}
.vd{vertical-align:83.160000px;}
.vb{vertical-align:87.120000px;}
.v7{vertical-align:89.280000px;}
.v3{vertical-align:113.040000px;}
.v9{vertical-align:115.560000px;}
.ls38{letter-spacing:-20.820000px;}
.ls3d{letter-spacing:-6.060000px;}
.ls27{letter-spacing:-3.150000px;}
.ls26{letter-spacing:-2.790000px;}
.ls6{letter-spacing:-0.270000px;}
.ls40{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.134400px;}
.ls39{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.019800px;}
.ls7{letter-spacing:0.029520px;}
.ls34{letter-spacing:0.050400px;}
.ls29{letter-spacing:0.086400px;}
.ls0{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.114000px;}
.ls25{letter-spacing:0.118800px;}
.lsb{letter-spacing:0.121680px;}
.ls1{letter-spacing:0.123000px;}
.ls13{letter-spacing:0.139800px;}
.ls3a{letter-spacing:0.147000px;}
.ls3{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.215280px;}
.ls17{letter-spacing:0.228000px;}
.ls14{letter-spacing:0.267120px;}
.ls32{letter-spacing:0.277920px;}
.lsa{letter-spacing:0.309960px;}
.ls1b{letter-spacing:0.358920px;}
.ls15{letter-spacing:0.379800px;}
.ls3e{letter-spacing:0.450000px;}
.ls36{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.314360px;}
.ls12{letter-spacing:1.434360px;}
.ls8{letter-spacing:2.877480px;}
.ls2b{letter-spacing:4.184280px;}
.ls1f{letter-spacing:4.349520px;}
.ls24{letter-spacing:5.148000px;}
.ls1a{letter-spacing:6.386400px;}
.lsd{letter-spacing:6.746400px;}
.ls1d{letter-spacing:10.459800px;}
.ls1c{letter-spacing:10.579800px;}
.ls22{letter-spacing:10.655280px;}
.ls16{letter-spacing:10.819800px;}
.ls21{letter-spacing:10.974600px;}
.ls18{letter-spacing:11.015280px;}
.ls10{letter-spacing:14.419800px;}
.ls11{letter-spacing:14.779800px;}
.ls20{letter-spacing:15.149520px;}
.ls2c{letter-spacing:18.467640px;}
.ls1e{letter-spacing:21.237480px;}
.ls9{letter-spacing:21.357480px;}
.ls23{letter-spacing:22.709520px;}
.ls2f{letter-spacing:22.794120px;}
.ls37{letter-spacing:34.605360px;}
.ls3b{letter-spacing:34.725360px;}
.ls30{letter-spacing:52.667640px;}
.ls3f{letter-spacing:65.610000px;}
.ls28{letter-spacing:72.947640px;}
.ls2a{letter-spacing:74.893080px;}
.ls31{letter-spacing:75.133080px;}
.ls33{letter-spacing:93.853080px;}
.ls2d{letter-spacing:98.131080px;}
.ls3c{letter-spacing:98.370000px;}
.ls2e{letter-spacing:165.451080px;}
.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;}
}
.ws6{word-spacing:-49.937040px;}
.ws8{word-spacing:-36.407040px;}
.ws7{word-spacing:-36.293040px;}
.wsb{word-spacing:-29.471040px;}
.ws2{word-spacing:-16.650000px;}
.ws13{word-spacing:-16.593000px;}
.ws1{word-spacing:-16.470000px;}
.ws0{word-spacing:-15.030000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.373640px;}
.wsd{word-spacing:-11.970000px;}
.wse{word-spacing:-10.820880px;}
.ws10{word-spacing:-6.030000px;}
.ws12{word-spacing:-5.451120px;}
.ws11{word-spacing:-3.780000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:47.115360px;}
.ws9{word-spacing:48.555360px;}
.wsa{word-spacing:62.704440px;}
.wsf{word-spacing:69.234000px;}
._19{margin-left:-22.444920px;}
._1a{margin-left:-14.097720px;}
._18{margin-left:-7.909680px;}
._17{margin-left:-6.798600px;}
._f{margin-left:-4.866600px;}
._a{margin-left:-3.372480px;}
._6{margin-left:-2.187360px;}
._0{margin-left:-1.082160px;}
._1{width:1.295040px;}
._5{width:2.648040px;}
._c{width:3.865560px;}
._9{width:5.086920px;}
._4{width:6.126840px;}
._e{width:7.645080px;}
._11{width:9.025560px;}
._14{width:10.277280px;}
._3{width:11.924280px;}
._2{width:13.176000px;}
._d{width:14.230080px;}
._12{width:15.304800px;}
._10{width:18.215760px;}
._b{width:20.159280px;}
._13{width:21.170040px;}
._15{width:22.237920px;}
._16{width:23.256240px;}
._1e{width:24.279120px;}
._1c{width:25.363800px;}
._1b{width:26.747280px;}
._1d{width:27.780000px;}
._8{width:30.502440px;}
._7{width:31.688280px;}
._22{width:33.200640px;}
._21{width:34.257600px;}
._20{width:37.854720px;}
._25{width:44.539440px;}
._26{width:45.687480px;}
._24{width:46.704360px;}
._23{width:48.421800px;}
._1f{width:65.472960px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:15.120000px;}
.fs7{font-size:24.120000px;}
.fs6{font-size:29.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:83.880000px;}
.y88{bottom:-5.400000px;}
.y7e{bottom:-4.320000px;}
.y60{bottom:-4.230000px;}
.y93{bottom:-2.610000px;}
.y6d{bottom:-2.520000px;}
.y70{bottom:-2.430000px;}
.y5e{bottom:-1.530000px;}
.y0{bottom:0.000000px;}
.y188{bottom:1.620000px;}
.y18d{bottom:1.710000px;}
.y183{bottom:1.800000px;}
.yf1{bottom:3.240000px;}
.y107{bottom:3.270000px;}
.yef{bottom:3.600000px;}
.y106{bottom:3.630000px;}
.y28{bottom:7.470000px;}
.y19a{bottom:8.910000px;}
.y18c{bottom:9.000000px;}
.y187{bottom:9.030000px;}
.yff{bottom:13.500000px;}
.y18a{bottom:15.660000px;}
.y185{bottom:15.690000px;}
.y190{bottom:15.750000px;}
.y18b{bottom:16.290000px;}
.y186{bottom:16.320000px;}
.y193{bottom:16.380000px;}
.yf9{bottom:30.930000px;}
.y120{bottom:57.660000px;}
.y141{bottom:57.750000px;}
.y3{bottom:57.870000px;}
.y2{bottom:74.700000px;}
.y121{bottom:87.660000px;}
.y1{bottom:91.620000px;}
.y2b{bottom:92.340000px;}
.y142{bottom:95.250000px;}
.yfa{bottom:96.300000px;}
.yc9{bottom:113.760000px;}
.y5a{bottom:113.850000px;}
.y122{bottom:117.660000px;}
.y161{bottom:117.990000px;}
.y182{bottom:118.710000px;}
.yf7{bottom:120.240000px;}
.y1dc{bottom:121.320000px;}
.y1b4{bottom:121.950000px;}
.ye0{bottom:125.640000px;}
.y13f{bottom:130.410000px;}
.yad{bottom:131.670000px;}
.y143{bottom:132.750000px;}
.y1f9{bottom:135.450000px;}
.yf6{bottom:137.250000px;}
.y50{bottom:137.790000px;}
.y26{bottom:141.480000px;}
.y1db{bottom:144.120000px;}
.y1b3{bottom:144.660000px;}
.y123{bottom:147.660000px;}
.ydf{bottom:149.700000px;}
.yc8{bottom:149.790000px;}
.y59{bottom:149.880000px;}
.y160{bottom:152.220000px;}
.yf5{bottom:154.200000px;}
.y13e{bottom:154.380000px;}
.y11e{bottom:154.740000px;}
.yac{bottom:155.730000px;}
.yfb{bottom:161.670000px;}
.y4f{bottom:161.850000px;}
.y25{bottom:165.540000px;}
.y1da{bottom:166.800000px;}
.y1b2{bottom:167.430000px;}
.y144{bottom:170.250000px;}
.yf4{bottom:171.120000px;}
.y1f8{bottom:171.480000px;}
.yde{bottom:173.730000px;}
.y15f{bottom:174.540000px;}
.y124{bottom:177.660000px;}
.y13d{bottom:178.410000px;}
.yc7{bottom:180.840000px;}
.y11d{bottom:185.790000px;}
.y4e{bottom:185.880000px;}
.y11f{bottom:185.940000px;}
.yf3{bottom:188.040000px;}
.y24{bottom:189.570000px;}
.y1b1{bottom:190.110000px;}
.y181{bottom:190.830000px;}
.yab{bottom:191.730000px;}
.y15e{bottom:196.860000px;}
.ydd{bottom:197.760000px;}
.y13c{bottom:202.440000px;}
.yf2{bottom:204.960000px;}
.y125{bottom:207.660000px;}
.y145{bottom:207.750000px;}
.y4d{bottom:209.910000px;}
.y1d9{bottom:212.250000px;}
.y23{bottom:213.600000px;}
.y1b0{bottom:217.740000px;}
.yf0{bottom:221.970000px;}
.y90{bottom:226.290000px;}
.y13b{bottom:226.470000px;}
.y180{bottom:226.830000px;}
.yfc{bottom:227.040000px;}
.y15d{bottom:230.970000px;}
.ydc{bottom:233.760000px;}
.y4c{bottom:233.940000px;}
.yaa{bottom:234.390000px;}
.y1d8{bottom:235.020000px;}
.y22{bottom:237.540000px;}
.y126{bottom:237.660000px;}
.yee{bottom:238.890000px;}
.y146{bottom:245.280000px;}
.y13a{bottom:250.500000px;}
.y15c{bottom:253.380000px;}
.y1af{bottom:253.740000px;}
.y1d7{bottom:257.700000px;}
.ydb{bottom:257.790000px;}
.y4b{bottom:257.970000px;}
.y21{bottom:261.570000px;}
.y17f{bottom:262.830000px;}
.y91{bottom:264.360000px;}
.y127{bottom:267.690000px;}
.y1ae{bottom:271.740000px;}
.ya9{bottom:274.440000px;}
.yed{bottom:274.530000px;}
.y1d6{bottom:280.470000px;}
.yda{bottom:281.820000px;}
.y4a{bottom:282.000000px;}
.y147{bottom:282.780000px;}
.y92{bottom:282.900000px;}
.y20{bottom:285.600000px;}
.y15b{bottom:287.490000px;}
.yfd{bottom:292.410000px;}
.y1ad{bottom:294.510000px;}
.y17e{bottom:297.030000px;}
.ya7{bottom:297.570000px;}
.y128{bottom:297.690000px;}
.y139{bottom:298.560000px;}
.y94{bottom:300.360000px;}
.y1d5{bottom:303.150000px;}
.yd9{bottom:305.850000px;}
.y49{bottom:306.030000px;}
.y15a{bottom:309.900000px;}
.yec{bottom:310.620000px;}
.ya8{bottom:314.400000px;}
.y1ac{bottom:317.190000px;}
.y95{bottom:317.820000px;}
.y58{bottom:318.000000px;}
.y17d{bottom:319.350000px;}
.y148{bottom:320.280000px;}
.y1f{bottom:321.690000px;}
.y138{bottom:322.590000px;}
.y1ea{bottom:325.830000px;}
.y129{bottom:327.690000px;}
.yd8{bottom:329.880000px;}
.y1d4{bottom:330.780000px;}
.yeb{bottom:334.560000px;}
.y96{bottom:335.280000px;}
.y1ab{bottom:339.960000px;}
.y17c{bottom:341.670000px;}
.y48{bottom:342.030000px;}
.y159{bottom:344.010000px;}
.y9f{bottom:346.350000px;}
.y137{bottom:346.620000px;}
.y1e9{bottom:348.600000px;}
.y97{bottom:352.740000px;}
.y57{bottom:354.000000px;}
.ya5{bottom:354.450000px;}
.y8f{bottom:355.440000px;}
.y1e{bottom:357.690000px;}
.yfe{bottom:357.780000px;}
.yea{bottom:358.590000px;}
.y1aa{bottom:362.640000px;}
.yd7{bottom:365.880000px;}
.y158{bottom:366.420000px;}
.y1d3{bottom:366.780000px;}
.y98{bottom:370.290000px;}
.y136{bottom:370.650000px;}
.y1e8{bottom:371.280000px;}
.y17b{bottom:375.780000px;}
.y47{bottom:378.030000px;}
.ye9{bottom:382.620000px;}
.ya0{bottom:384.420000px;}
.y1d2{bottom:384.780000px;}
.y1a9{bottom:385.410000px;}
.y99{bottom:387.750000px;}
.yd6{bottom:389.910000px;}
.y1d{bottom:393.690000px;}
.y1e7{bottom:394.050000px;}
.ya4{bottom:394.500000px;}
.y135{bottom:394.680000px;}
.ya6{bottom:395.490000px;}
.y17a{bottom:398.190000px;}
.y157{bottom:400.530000px;}
.y46{bottom:402.060000px;}
.ya1{bottom:402.960000px;}
.y9a{bottom:405.210000px;}
.ye8{bottom:406.650000px;}
.y1d1{bottom:407.550000px;}
.y1a8{bottom:408.090000px;}
.yd5{bottom:413.940000px;}
.y1e6{bottom:416.730000px;}
.ya2{bottom:417.630000px;}
.y1c{bottom:417.720000px;}
.y134{bottom:418.710000px;}
.y179{bottom:420.420000px;}
.y9b{bottom:422.670000px;}
.y156{bottom:422.940000px;}
.y45{bottom:426.090000px;}
.y1d0{bottom:430.230000px;}
.ye7{bottom:430.680000px;}
.y1a7{bottom:430.770000px;}
.ya3{bottom:434.460000px;}
.yd4{bottom:437.970000px;}
.y1f7{bottom:439.500000px;}
.y9c{bottom:440.130000px;}
.y133{bottom:442.650000px;}
.y1e5{bottom:444.360000px;}
.y44{bottom:450.120000px;}
.y1cf{bottom:453.000000px;}
.y1a6{bottom:453.540000px;}
.y1b{bottom:453.720000px;}
.y178{bottom:454.620000px;}
.ye6{bottom:454.710000px;}
.y155{bottom:457.050000px;}
.y9d{bottom:457.590000px;}
.yd3{bottom:462.000000px;}
.y1f6{bottom:462.180000px;}
.y132{bottom:466.680000px;}
.y43{bottom:474.150000px;}
.y9e{bottom:474.510000px;}
.y1ce{bottom:475.680000px;}
.y1a5{bottom:476.220000px;}
.y177{bottom:476.940000px;}
.y1a{bottom:477.750000px;}
.ye5{bottom:478.740000px;}
.y154{bottom:479.460000px;}
.y1e4{bottom:480.360000px;}
.y1f5{bottom:484.950000px;}
.y131{bottom:490.710000px;}
.yd2{bottom:498.000000px;}
.y42{bottom:498.180000px;}
.y1cd{bottom:498.360000px;}
.y1a4{bottom:498.990000px;}
.y176{bottom:499.170000px;}
.y153{bottom:501.690000px;}
.y19{bottom:501.780000px;}
.ye4{bottom:502.770000px;}
.y1f4{bottom:507.630000px;}
.y130{bottom:514.740000px;}
.y7c{bottom:517.260000px;}
.y1cc{bottom:521.130000px;}
.y1a3{bottom:521.670000px;}
.yd1{bottom:522.030000px;}
.y41{bottom:522.210000px;}
.y8e{bottom:525.450000px;}
.y18{bottom:525.810000px;}
.ye3{bottom:526.800000px;}
.y1f3{bottom:530.400000px;}
.y175{bottom:533.370000px;}
.y56{bottom:534.180000px;}
.y152{bottom:535.890000px;}
.y12f{bottom:538.770000px;}
.y1cb{bottom:543.810000px;}
.y1a2{bottom:544.440000px;}
.yd0{bottom:546.060000px;}
.y17{bottom:549.840000px;}
.y7d{bottom:555.330000px;}
.y174{bottom:555.690000px;}
.yc6{bottom:557.310000px;}
.y1f2{bottom:557.940000px;}
.y40{bottom:558.210000px;}
.ye2{bottom:562.830000px;}
.y8d{bottom:565.440000px;}
.y1ca{bottom:566.610000px;}
.y1a1{bottom:567.150000px;}
.ycf{bottom:570.120000px;}
.y16{bottom:573.900000px;}
.y173{bottom:578.040000px;}
.y3f{bottom:582.270000px;}
.y11c{bottom:582.630000px;}
.y12e{bottom:586.860000px;}
.y1c9{bottom:589.290000px;}
.y7f{bottom:589.650000px;}
.y1a0{bottom:589.920000px;}
.yc3{bottom:591.810000px;}
.ye1{bottom:593.880000px;}
.yf8{bottom:593.910000px;}
.yc5{bottom:593.970000px;}
.yce{bottom:594.150000px;}
.y151{bottom:594.240000px;}
.y85{bottom:597.390000px;}
.yc2{bottom:597.840000px;}
.y15{bottom:597.930000px;}
.y11b{bottom:600.630000px;}
.yc4{bottom:602.790000px;}
.y80{bottom:605.490000px;}
.y3e{bottom:606.300000px;}
.y7b{bottom:606.480000px;}
.ybf{bottom:607.560000px;}
.y12d{bottom:610.890000px;}
.y1c8{bottom:612.060000px;}
.y172{bottom:612.150000px;}
.y19f{bottom:612.600000px;}
.yc1{bottom:614.040000px;}
.y11a{bottom:617.550000px;}
.ycd{bottom:618.180000px;}
.y81{bottom:621.240000px;}
.y14{bottom:621.960000px;}
.yc0{bottom:622.860000px;}
.y150{bottom:630.240000px;}
.y3d{bottom:630.330000px;}
.y119{bottom:634.470000px;}
.y171{bottom:634.560000px;}
.y1c7{bottom:634.740000px;}
.y12c{bottom:634.920000px;}
.y86{bottom:635.460000px;}
.y82{bottom:636.990000px;}
.y19e{bottom:640.230000px;}
.y8b{bottom:645.540000px;}
.y13{bottom:645.990000px;}
.y8c{bottom:646.530000px;}
.ybe{bottom:648.960000px;}
.y118{bottom:651.480000px;}
.y83{bottom:652.830000px;}
.y87{bottom:654.000000px;}
.ycc{bottom:654.180000px;}
.y14f{bottom:654.270000px;}
.y3c{bottom:654.360000px;}
.y170{bottom:656.790000px;}
.y1c6{bottom:657.510000px;}
.y19d{bottom:658.230000px;}
.y117{bottom:668.400000px;}
.y84{bottom:668.580000px;}
.y89{bottom:668.670000px;}
.y12{bottom:670.020000px;}
.y12b{bottom:670.920000px;}
.y20a{bottom:676.230000px;}
.y14e{bottom:678.300000px;}
.y3b{bottom:678.390000px;}
.y1c5{bottom:680.190000px;}
.y19c{bottom:681.000000px;}
.ybd{bottom:685.050000px;}
.y116{bottom:685.320000px;}
.y8a{bottom:685.500000px;}
.ycb{bottom:690.180000px;}
.y16f{bottom:690.990000px;}
.y11{bottom:693.960000px;}
.y12a{bottom:701.970000px;}
.y140{bottom:702.000000px;}
.y115{bottom:702.240000px;}
.y3a{bottom:702.330000px;}
.y1c4{bottom:702.960000px;}
.y19b{bottom:703.680000px;}
.y209{bottom:712.230000px;}
.y16e{bottom:713.310000px;}
.y55{bottom:714.390000px;}
.y10{bottom:717.990000px;}
.y114{bottom:719.160000px;}
.ybc{bottom:721.050000px;}
.yca{bottom:721.230000px;}
.y1c3{bottom:725.640000px;}
.y39{bottom:726.360000px;}
.y199{bottom:726.450000px;}
.y6a{bottom:729.330000px;}
.y208{bottom:730.320000px;}
.y7a{bottom:735.000000px;}
.y113{bottom:736.170000px;}
.y54{bottom:738.420000px;}
.yf{bottom:742.020000px;}
.y16d{bottom:747.510000px;}
.y1e3{bottom:748.410000px;}
.y198{bottom:749.130000px;}
.y38{bottom:750.390000px;}
.y207{bottom:753.000000px;}
.y112{bottom:753.090000px;}
.y1c2{bottom:753.270000px;}
.ybb{bottom:754.440000px;}
.y78{bottom:757.590000px;}
.yb9{bottom:759.660000px;}
.y79{bottom:760.740000px;}
.y53{bottom:762.450000px;}
.ye{bottom:766.050000px;}
.y6b{bottom:767.400000px;}
.yba{bottom:768.210000px;}
.y16c{bottom:769.830000px;}
.y111{bottom:770.010000px;}
.y1e2{bottom:771.090000px;}
.y197{bottom:771.810000px;}
.y14d{bottom:774.420000px;}
.y206{bottom:775.770000px;}
.y6c{bottom:785.940000px;}
.y37{bottom:786.480000px;}
.y110{bottom:786.930000px;}
.y1c1{bottom:789.270000px;}
.yd{bottom:790.080000px;}
.y16b{bottom:792.060000px;}
.yb8{bottom:793.050000px;}
.y1e1{bottom:793.860000px;}
.y196{bottom:794.580000px;}
.yb6{bottom:798.270000px;}
.y14c{bottom:798.450000px;}
.y6e{bottom:803.490000px;}
.y10f{bottom:803.940000px;}
.yb7{bottom:806.820000px;}
.y1c0{bottom:807.270000px;}
.y36{bottom:810.420000px;}
.y77{bottom:812.130000px;}
.yc{bottom:814.110000px;}
.y69{bottom:815.100000px;}
.y1e0{bottom:816.540000px;}
.y195{bottom:817.260000px;}
.y10e{bottom:820.860000px;}
.y6f{bottom:821.040000px;}
.y205{bottom:821.220000px;}
.y14b{bottom:822.480000px;}
.y16a{bottom:826.260000px;}
.y1bf{bottom:830.040000px;}
.yb5{bottom:834.270000px;}
.y35{bottom:834.450000px;}
.y75{bottom:835.260000px;}
.y10d{bottom:837.780000px;}
.y76{bottom:837.870000px;}
.yb{bottom:838.140000px;}
.y71{bottom:838.680000px;}
.y1df{bottom:839.310000px;}
.y194{bottom:840.030000px;}
.y204{bottom:843.900000px;}
.y14a{bottom:846.510000px;}
.y169{bottom:848.580000px;}
.y1be{bottom:852.720000px;}
.y10c{bottom:854.700000px;}
.y72{bottom:856.230000px;}
.y34{bottom:858.480000px;}
.y1f1{bottom:861.990000px;}
.ya{bottom:862.170000px;}
.y192{bottom:862.710000px;}
.y203{bottom:866.580000px;}
.y1de{bottom:866.850000px;}
.y149{bottom:870.540000px;}
.yb4{bottom:870.990000px;}
.y73{bottom:873.780000px;}
.y1bd{bottom:875.490000px;}
.y33{bottom:882.510000px;}
.y168{bottom:882.780000px;}
.y1f0{bottom:884.760000px;}
.y191{bottom:885.480000px;}
.y9{bottom:886.200000px;}
.y202{bottom:889.350000px;}
.y10b{bottom:890.430000px;}
.y74{bottom:892.860000px;}
.y52{bottom:894.570000px;}
.y1bc{bottom:898.170000px;}
.y1dd{bottom:902.850000px;}
.y167{bottom:905.100000px;}
.y32{bottom:906.540000px;}
.yb3{bottom:907.170000px;}
.y1ef{bottom:907.440000px;}
.y18f{bottom:908.160000px;}
.y201{bottom:912.030000px;}
.y51{bottom:918.510000px;}
.y1bb{bottom:920.940000px;}
.y10a{bottom:926.430000px;}
.y166{bottom:927.420000px;}
.y1ee{bottom:930.120000px;}
.y8{bottom:930.750000px;}
.y18e{bottom:930.930000px;}
.y5c{bottom:933.450000px;}
.y200{bottom:934.800000px;}
.yb2{bottom:938.760000px;}
.y68{bottom:941.640000px;}
.y31{bottom:942.540000px;}
.yb0{bottom:943.080000px;}
.y1ba{bottom:943.620000px;}
.y109{bottom:944.430000px;}
.yb1{bottom:947.580000px;}
.yaf{bottom:951.000000px;}
.y1ed{bottom:952.890000px;}
.y189{bottom:953.610000px;}
.y1ff{bottom:957.480000px;}
.y7{bottom:959.100000px;}
.y108{bottom:961.350000px;}
.y165{bottom:961.530000px;}
.y1b9{bottom:966.390000px;}
.y30{bottom:966.570000px;}
.y5d{bottom:971.520000px;}
.y184{bottom:976.380000px;}
.y105{bottom:978.360000px;}
.y67{bottom:979.560000px;}
.y1fe{bottom:980.280000px;}
.y1ec{bottom:980.460000px;}
.y164{bottom:983.970000px;}
.y1b8{bottom:989.100000px;}
.y5f{bottom:990.090000px;}
.y2f{bottom:990.630000px;}
.y104{bottom:995.310000px;}
.y5b{bottom:999.090000px;}
.y1fd{bottom:1002.960000px;}
.y61{bottom:1005.930000px;}
.y163{bottom:1006.200000px;}
.y6{bottom:1008.900000px;}
.y1b7{bottom:1011.870000px;}
.y103{bottom:1012.230000px;}
.y66{bottom:1013.850000px;}
.y2e{bottom:1014.660000px;}
.y1eb{bottom:1016.550000px;}
.y62{bottom:1021.770000px;}
.y27{bottom:1021.860000px;}
.y1fc{bottom:1025.730000px;}
.yae{bottom:1026.720000px;}
.y102{bottom:1029.150000px;}
.y5{bottom:1034.460000px;}
.y1b6{bottom:1034.550000px;}
.y64{bottom:1036.980000px;}
.y63{bottom:1037.610000px;}
.y2d{bottom:1038.690000px;}
.y65{bottom:1039.500000px;}
.y162{bottom:1040.400000px;}
.y101{bottom:1046.160000px;}
.y1fb{bottom:1048.410000px;}
.y1b5{bottom:1057.320000px;}
.y4{bottom:1062.630000px;}
.y2c{bottom:1062.720000px;}
.y100{bottom:1063.080000px;}
.y1fa{bottom:1071.180000px;}
.y2a{bottom:1101.690000px;}
.y29{bottom:1119.870000px;}
.h37{height:8.100000px;}
.h1f{height:14.670000px;}
.h1c{height:15.750000px;}
.hd{height:15.840000px;}
.h32{height:16.110000px;}
.h30{height:16.140000px;}
.h2d{height:16.200000px;}
.h33{height:16.230000px;}
.h23{height:17.460000px;}
.h38{height:17.536465px;}
.h15{height:17.550000px;}
.h16{height:17.640000px;}
.h14{height:18.540000px;}
.hc{height:18.570000px;}
.h7{height:20.160000px;}
.h3b{height:21.960000px;}
.h39{height:21.990000px;}
.h3c{height:22.050000px;}
.h3d{height:22.080000px;}
.h3a{height:23.990449px;}
.h2e{height:34.811191px;}
.h9{height:39.260742px;}
.h1{height:40.716035px;}
.h8{height:46.801758px;}
.h2f{height:47.622832px;}
.h6{height:47.898105px;}
.h35{height:47.962441px;}
.h4{height:48.091113px;}
.h36{height:48.284121px;}
.h3{height:51.114902px;}
.h2{height:57.098145px;}
.h5{height:61.230762px;}
.h29{height:95.396484px;}
.h2a{height:96.858105px;}
.h2c{height:102.258105px;}
.h28{height:117.479004px;}
.h2b{height:123.476484px;}
.he{height:150.390000px;}
.ha{height:161.644043px;}
.h12{height:164.524043px;}
.h10{height:164.884043px;}
.h21{height:186.599004px;}
.h1a{height:252.004043px;}
.h11{height:254.164043px;}
.h22{height:264.360000px;}
.hf{height:277.924043px;}
.h18{height:278.284043px;}
.h19{height:280.444043px;}
.h17{height:314.220000px;}
.h34{height:377.910000px;}
.h31{height:378.000000px;}
.h25{height:384.420000px;}
.h20{height:519.330000px;}
.h1d{height:519.420000px;}
.h1b{height:555.330000px;}
.h1e{height:635.460000px;}
.h24{height:730.410000px;}
.h13{height:767.400000px;}
.h26{height:770.370000px;}
.h27{height:890.430000px;}
.hb{height:971.520000px;}
.h0{height:1188.000000px;}
.wa{width:34.290000px;}
.w5{width:62.370000px;}
.w7{width:62.460000px;}
.w6{width:62.490000px;}
.w8{width:65.250000px;}
.wd{width:65.880000px;}
.wb{width:65.910000px;}
.wc{width:65.970000px;}
.w4{width:66.360000px;}
.w2{width:166.680000px;}
.w9{width:648.000000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x42{left:8.370000px;}
.x43{left:9.720000px;}
.xb{left:10.800000px;}
.x48{left:12.780000px;}
.x38{left:14.760000px;}
.x41{left:16.380000px;}
.x4a{left:20.850000px;}
.x4e{left:22.950000px;}
.x45{left:24.210000px;}
.x37{left:33.120000px;}
.x46{left:64.980000px;}
.x1{left:107.999986px;}
.x4{left:113.579986px;}
.x7{left:128.519986px;}
.x44{left:135.000000px;}
.x53{left:143.820000px;}
.x23{left:149.939973px;}
.x4b{left:155.969986px;}
.x2d{left:158.219986px;}
.x1b{left:161.009973px;}
.x24{left:162.479986px;}
.x2e{left:165.719986px;}
.x20{left:173.549986px;}
.x1f{left:174.989986px;}
.xc{left:180.029973px;}
.x10{left:192.539986px;}
.xf{left:198.479986px;}
.x25{left:205.229973px;}
.x29{left:206.759973px;}
.x2f{left:210.809986px;}
.x1c{left:215.399973px;}
.x26{left:217.739986px;}
.x2a{left:219.359986px;}
.x5{left:221.429986px;}
.x30{left:223.319986px;}
.x16{left:227.279986px;}
.x13{left:230.159986px;}
.xe{left:236.909986px;}
.x39{left:238.890000px;}
.xd{left:240.869986px;}
.x18{left:241.949986px;}
.x15{left:244.829986px;}
.x17{left:245.909986px;}
.x14{left:248.789986px;}
.x54{left:277.140000px;}
.x3a{left:301.980000px;}
.x32{left:308.459986px;}
.x36{left:324.839986px;}
.x47{left:333.659986px;}
.x55{left:343.830000px;}
.x34{left:347.429986px;}
.x9{left:348.599986px;}
.x6{left:352.559986px;}
.x2{left:364.979986px;}
.x49{left:367.859986px;}
.x52{left:369.569986px;}
.x4f{left:372.359986px;}
.x51{left:373.799986px;}
.x27{left:375.059973px;}
.x50{left:378.119986px;}
.x2b{left:379.649973px;}
.x4d{left:382.259986px;}
.x1d{left:388.019973px;}
.x28{left:390.359986px;}
.x1e{left:403.229986px;}
.x56{left:410.430000px;}
.x8{left:411.509986px;}
.x4c{left:421.409986px;}
.x3b{left:428.250000px;}
.x2c{left:436.529973px;}
.x21{left:448.499973px;}
.x33{left:459.029986px;}
.x22{left:461.009986px;}
.x57{left:477.030000px;}
.x3c{left:491.460000px;}
.x58{left:543.660000px;}
.x11{left:545.009973px;}
.x19{left:549.779973px;}
.x3d{left:554.640000px;}
.x12{left:557.519986px;}
.x1a{left:562.289986px;}
.x3{left:589.559986px;}
.xa{left:603.600000px;}
.x59{left:610.260000px;}
.x3e{left:617.730000px;}
.x5a{left:676.860000px;}
.x3f{left:680.910000px;}
.x31{left:729.059986px;}
.x40{left:744.090000px;}
.x35{left:783.059986px;}
@media print{
.v10{vertical-align:-30.400000pt;}
.ve{vertical-align:-17.280000pt;}
.v1{vertical-align:-12.160000pt;}
.v15{vertical-align:-10.240000pt;}
.v4{vertical-align:-8.640000pt;}
.v6{vertical-align:-2.880000pt;}
.v14{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1a{vertical-align:1.600000pt;}
.v17{vertical-align:2.560000pt;}
.v2{vertical-align:12.160000pt;}
.v8{vertical-align:15.146667pt;}
.v18{vertical-align:18.560000pt;}
.v11{vertical-align:23.680000pt;}
.v1b{vertical-align:24.960000pt;}
.v5{vertical-align:31.680000pt;}
.va{vertical-align:35.840000pt;}
.v19{vertical-align:38.720000pt;}
.v16{vertical-align:43.520000pt;}
.vf{vertical-align:47.680000pt;}
.v12{vertical-align:49.280000pt;}
.v13{vertical-align:51.200000pt;}
.vc{vertical-align:58.880000pt;}
.vd{vertical-align:73.920000pt;}
.vb{vertical-align:77.440000pt;}
.v7{vertical-align:79.360000pt;}
.v3{vertical-align:100.480000pt;}
.v9{vertical-align:102.720000pt;}
.ls38{letter-spacing:-18.506667pt;}
.ls3d{letter-spacing:-5.386667pt;}
.ls27{letter-spacing:-2.800000pt;}
.ls26{letter-spacing:-2.480000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.119467pt;}
.ls39{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017600pt;}
.ls7{letter-spacing:0.026240pt;}
.ls34{letter-spacing:0.044800pt;}
.ls29{letter-spacing:0.076800pt;}
.ls0{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.101333pt;}
.ls25{letter-spacing:0.105600pt;}
.lsb{letter-spacing:0.108160pt;}
.ls1{letter-spacing:0.109333pt;}
.ls13{letter-spacing:0.124267pt;}
.ls3a{letter-spacing:0.130667pt;}
.ls3{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.191360pt;}
.ls17{letter-spacing:0.202667pt;}
.ls14{letter-spacing:0.237440pt;}
.ls32{letter-spacing:0.247040pt;}
.lsa{letter-spacing:0.275520pt;}
.ls1b{letter-spacing:0.319040pt;}
.ls15{letter-spacing:0.337600pt;}
.ls3e{letter-spacing:0.400000pt;}
.ls36{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.168320pt;}
.ls12{letter-spacing:1.274987pt;}
.ls8{letter-spacing:2.557760pt;}
.ls2b{letter-spacing:3.719360pt;}
.ls1f{letter-spacing:3.866240pt;}
.ls24{letter-spacing:4.576000pt;}
.ls1a{letter-spacing:5.676800pt;}
.lsd{letter-spacing:5.996800pt;}
.ls1d{letter-spacing:9.297600pt;}
.ls1c{letter-spacing:9.404267pt;}
.ls22{letter-spacing:9.471360pt;}
.ls16{letter-spacing:9.617600pt;}
.ls21{letter-spacing:9.755200pt;}
.ls18{letter-spacing:9.791360pt;}
.ls10{letter-spacing:12.817600pt;}
.ls11{letter-spacing:13.137600pt;}
.ls20{letter-spacing:13.466240pt;}
.ls2c{letter-spacing:16.415680pt;}
.ls1e{letter-spacing:18.877760pt;}
.ls9{letter-spacing:18.984427pt;}
.ls23{letter-spacing:20.186240pt;}
.ls2f{letter-spacing:20.261440pt;}
.ls37{letter-spacing:30.760320pt;}
.ls3b{letter-spacing:30.866987pt;}
.ls30{letter-spacing:46.815680pt;}
.ls3f{letter-spacing:58.320000pt;}
.ls28{letter-spacing:64.842347pt;}
.ls2a{letter-spacing:66.571627pt;}
.ls31{letter-spacing:66.784960pt;}
.ls33{letter-spacing:83.424960pt;}
.ls2d{letter-spacing:87.227627pt;}
.ls3c{letter-spacing:87.440000pt;}
.ls2e{letter-spacing:147.067627pt;}
.ws6{word-spacing:-44.388480pt;}
.ws8{word-spacing:-32.361813pt;}
.ws7{word-spacing:-32.260480pt;}
.wsb{word-spacing:-26.196480pt;}
.ws2{word-spacing:-14.800000pt;}
.ws13{word-spacing:-14.749333pt;}
.ws1{word-spacing:-14.640000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.887680pt;}
.wsd{word-spacing:-10.640000pt;}
.wse{word-spacing:-9.618560pt;}
.ws10{word-spacing:-5.360000pt;}
.ws12{word-spacing:-4.845440pt;}
.ws11{word-spacing:-3.360000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:41.880320pt;}
.ws9{word-spacing:43.160320pt;}
.wsa{word-spacing:55.737280pt;}
.wsf{word-spacing:61.541333pt;}
._19{margin-left:-19.951040pt;}
._1a{margin-left:-12.531307pt;}
._18{margin-left:-7.030827pt;}
._17{margin-left:-6.043200pt;}
._f{margin-left:-4.325867pt;}
._a{margin-left:-2.997760pt;}
._6{margin-left:-1.944320pt;}
._0{margin-left:-0.961920pt;}
._1{width:1.151147pt;}
._5{width:2.353813pt;}
._c{width:3.436053pt;}
._9{width:4.521707pt;}
._4{width:5.446080pt;}
._e{width:6.795627pt;}
._11{width:8.022720pt;}
._14{width:9.135360pt;}
._3{width:10.599360pt;}
._2{width:11.712000pt;}
._d{width:12.648960pt;}
._12{width:13.604267pt;}
._10{width:16.191787pt;}
._b{width:17.919360pt;}
._13{width:18.817813pt;}
._15{width:19.767040pt;}
._16{width:20.672213pt;}
._1e{width:21.581440pt;}
._1c{width:22.545600pt;}
._1b{width:23.775360pt;}
._1d{width:24.693333pt;}
._8{width:27.113280pt;}
._7{width:28.167360pt;}
._22{width:29.511680pt;}
._21{width:30.451200pt;}
._20{width:33.648640pt;}
._25{width:39.590613pt;}
._26{width:40.611093pt;}
._24{width:41.514987pt;}
._23{width:43.041600pt;}
._1f{width:58.198187pt;}
.fs8{font-size:13.440000pt;}
.fs7{font-size:21.440000pt;}
.fs6{font-size:26.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:74.560000pt;}
.y88{bottom:-4.800000pt;}
.y7e{bottom:-3.840000pt;}
.y60{bottom:-3.760000pt;}
.y93{bottom:-2.320000pt;}
.y6d{bottom:-2.240000pt;}
.y70{bottom:-2.160000pt;}
.y5e{bottom:-1.360000pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:1.440000pt;}
.y18d{bottom:1.520000pt;}
.y183{bottom:1.600000pt;}
.yf1{bottom:2.880000pt;}
.y107{bottom:2.906667pt;}
.yef{bottom:3.200000pt;}
.y106{bottom:3.226667pt;}
.y28{bottom:6.640000pt;}
.y19a{bottom:7.920000pt;}
.y18c{bottom:8.000000pt;}
.y187{bottom:8.026667pt;}
.yff{bottom:12.000000pt;}
.y18a{bottom:13.920000pt;}
.y185{bottom:13.946667pt;}
.y190{bottom:14.000000pt;}
.y18b{bottom:14.480000pt;}
.y186{bottom:14.506667pt;}
.y193{bottom:14.560000pt;}
.yf9{bottom:27.493333pt;}
.y120{bottom:51.253333pt;}
.y141{bottom:51.333333pt;}
.y3{bottom:51.440000pt;}
.y2{bottom:66.400000pt;}
.y121{bottom:77.920000pt;}
.y1{bottom:81.440000pt;}
.y2b{bottom:82.080000pt;}
.y142{bottom:84.666667pt;}
.yfa{bottom:85.600000pt;}
.yc9{bottom:101.120000pt;}
.y5a{bottom:101.200000pt;}
.y122{bottom:104.586667pt;}
.y161{bottom:104.880000pt;}
.y182{bottom:105.520000pt;}
.yf7{bottom:106.880000pt;}
.y1dc{bottom:107.840000pt;}
.y1b4{bottom:108.400000pt;}
.ye0{bottom:111.680000pt;}
.y13f{bottom:115.920000pt;}
.yad{bottom:117.040000pt;}
.y143{bottom:118.000000pt;}
.y1f9{bottom:120.400000pt;}
.yf6{bottom:122.000000pt;}
.y50{bottom:122.480000pt;}
.y26{bottom:125.760000pt;}
.y1db{bottom:128.106667pt;}
.y1b3{bottom:128.586667pt;}
.y123{bottom:131.253333pt;}
.ydf{bottom:133.066667pt;}
.yc8{bottom:133.146667pt;}
.y59{bottom:133.226667pt;}
.y160{bottom:135.306667pt;}
.yf5{bottom:137.066667pt;}
.y13e{bottom:137.226667pt;}
.y11e{bottom:137.546667pt;}
.yac{bottom:138.426667pt;}
.yfb{bottom:143.706667pt;}
.y4f{bottom:143.866667pt;}
.y25{bottom:147.146667pt;}
.y1da{bottom:148.266667pt;}
.y1b2{bottom:148.826667pt;}
.y144{bottom:151.333333pt;}
.yf4{bottom:152.106667pt;}
.y1f8{bottom:152.426667pt;}
.yde{bottom:154.426667pt;}
.y15f{bottom:155.146667pt;}
.y124{bottom:157.920000pt;}
.y13d{bottom:158.586667pt;}
.yc7{bottom:160.746667pt;}
.y11d{bottom:165.146667pt;}
.y4e{bottom:165.226667pt;}
.y11f{bottom:165.280000pt;}
.yf3{bottom:167.146667pt;}
.y24{bottom:168.506667pt;}
.y1b1{bottom:168.986667pt;}
.y181{bottom:169.626667pt;}
.yab{bottom:170.426667pt;}
.y15e{bottom:174.986667pt;}
.ydd{bottom:175.786667pt;}
.y13c{bottom:179.946667pt;}
.yf2{bottom:182.186667pt;}
.y125{bottom:184.586667pt;}
.y145{bottom:184.666667pt;}
.y4d{bottom:186.586667pt;}
.y1d9{bottom:188.666667pt;}
.y23{bottom:189.866667pt;}
.y1b0{bottom:193.546667pt;}
.yf0{bottom:197.306667pt;}
.y90{bottom:201.146667pt;}
.y13b{bottom:201.306667pt;}
.y180{bottom:201.626667pt;}
.yfc{bottom:201.813333pt;}
.y15d{bottom:205.306667pt;}
.ydc{bottom:207.786667pt;}
.y4c{bottom:207.946667pt;}
.yaa{bottom:208.346667pt;}
.y1d8{bottom:208.906667pt;}
.y22{bottom:211.146667pt;}
.y126{bottom:211.253333pt;}
.yee{bottom:212.346667pt;}
.y146{bottom:218.026667pt;}
.y13a{bottom:222.666667pt;}
.y15c{bottom:225.226667pt;}
.y1af{bottom:225.546667pt;}
.y1d7{bottom:229.066667pt;}
.ydb{bottom:229.146667pt;}
.y4b{bottom:229.306667pt;}
.y21{bottom:232.506667pt;}
.y17f{bottom:233.626667pt;}
.y91{bottom:234.986667pt;}
.y127{bottom:237.946667pt;}
.y1ae{bottom:241.546667pt;}
.ya9{bottom:243.946667pt;}
.yed{bottom:244.026667pt;}
.y1d6{bottom:249.306667pt;}
.yda{bottom:250.506667pt;}
.y4a{bottom:250.666667pt;}
.y147{bottom:251.360000pt;}
.y92{bottom:251.466667pt;}
.y20{bottom:253.866667pt;}
.y15b{bottom:255.546667pt;}
.yfd{bottom:259.920000pt;}
.y1ad{bottom:261.786667pt;}
.y17e{bottom:264.026667pt;}
.ya7{bottom:264.506667pt;}
.y128{bottom:264.613333pt;}
.y139{bottom:265.386667pt;}
.y94{bottom:266.986667pt;}
.y1d5{bottom:269.466667pt;}
.yd9{bottom:271.866667pt;}
.y49{bottom:272.026667pt;}
.y15a{bottom:275.466667pt;}
.yec{bottom:276.106667pt;}
.ya8{bottom:279.466667pt;}
.y1ac{bottom:281.946667pt;}
.y95{bottom:282.506667pt;}
.y58{bottom:282.666667pt;}
.y17d{bottom:283.866667pt;}
.y148{bottom:284.693333pt;}
.y1f{bottom:285.946667pt;}
.y138{bottom:286.746667pt;}
.y1ea{bottom:289.626667pt;}
.y129{bottom:291.280000pt;}
.yd8{bottom:293.226667pt;}
.y1d4{bottom:294.026667pt;}
.yeb{bottom:297.386667pt;}
.y96{bottom:298.026667pt;}
.y1ab{bottom:302.186667pt;}
.y17c{bottom:303.706667pt;}
.y48{bottom:304.026667pt;}
.y159{bottom:305.786667pt;}
.y9f{bottom:307.866667pt;}
.y137{bottom:308.106667pt;}
.y1e9{bottom:309.866667pt;}
.y97{bottom:313.546667pt;}
.y57{bottom:314.666667pt;}
.ya5{bottom:315.066667pt;}
.y8f{bottom:315.946667pt;}
.y1e{bottom:317.946667pt;}
.yfe{bottom:318.026667pt;}
.yea{bottom:318.746667pt;}
.y1aa{bottom:322.346667pt;}
.yd7{bottom:325.226667pt;}
.y158{bottom:325.706667pt;}
.y1d3{bottom:326.026667pt;}
.y98{bottom:329.146667pt;}
.y136{bottom:329.466667pt;}
.y1e8{bottom:330.026667pt;}
.y17b{bottom:334.026667pt;}
.y47{bottom:336.026667pt;}
.ye9{bottom:340.106667pt;}
.ya0{bottom:341.706667pt;}
.y1d2{bottom:342.026667pt;}
.y1a9{bottom:342.586667pt;}
.y99{bottom:344.666667pt;}
.yd6{bottom:346.586667pt;}
.y1d{bottom:349.946667pt;}
.y1e7{bottom:350.266667pt;}
.ya4{bottom:350.666667pt;}
.y135{bottom:350.826667pt;}
.ya6{bottom:351.546667pt;}
.y17a{bottom:353.946667pt;}
.y157{bottom:356.026667pt;}
.y46{bottom:357.386667pt;}
.ya1{bottom:358.186667pt;}
.y9a{bottom:360.186667pt;}
.ye8{bottom:361.466667pt;}
.y1d1{bottom:362.266667pt;}
.y1a8{bottom:362.746667pt;}
.yd5{bottom:367.946667pt;}
.y1e6{bottom:370.426667pt;}
.ya2{bottom:371.226667pt;}
.y1c{bottom:371.306667pt;}
.y134{bottom:372.186667pt;}
.y179{bottom:373.706667pt;}
.y9b{bottom:375.706667pt;}
.y156{bottom:375.946667pt;}
.y45{bottom:378.746667pt;}
.y1d0{bottom:382.426667pt;}
.ye7{bottom:382.826667pt;}
.y1a7{bottom:382.906667pt;}
.ya3{bottom:386.186667pt;}
.yd4{bottom:389.306667pt;}
.y1f7{bottom:390.666667pt;}
.y9c{bottom:391.226667pt;}
.y133{bottom:393.466667pt;}
.y1e5{bottom:394.986667pt;}
.y44{bottom:400.106667pt;}
.y1cf{bottom:402.666667pt;}
.y1a6{bottom:403.146667pt;}
.y1b{bottom:403.306667pt;}
.y178{bottom:404.106667pt;}
.ye6{bottom:404.186667pt;}
.y155{bottom:406.266667pt;}
.y9d{bottom:406.746667pt;}
.yd3{bottom:410.666667pt;}
.y1f6{bottom:410.826667pt;}
.y132{bottom:414.826667pt;}
.y43{bottom:421.466667pt;}
.y9e{bottom:421.786667pt;}
.y1ce{bottom:422.826667pt;}
.y1a5{bottom:423.306667pt;}
.y177{bottom:423.946667pt;}
.y1a{bottom:424.666667pt;}
.ye5{bottom:425.546667pt;}
.y154{bottom:426.186667pt;}
.y1e4{bottom:426.986667pt;}
.y1f5{bottom:431.066667pt;}
.y131{bottom:436.186667pt;}
.yd2{bottom:442.666667pt;}
.y42{bottom:442.826667pt;}
.y1cd{bottom:442.986667pt;}
.y1a4{bottom:443.546667pt;}
.y176{bottom:443.706667pt;}
.y153{bottom:445.946667pt;}
.y19{bottom:446.026667pt;}
.ye4{bottom:446.906667pt;}
.y1f4{bottom:451.226667pt;}
.y130{bottom:457.546667pt;}
.y7c{bottom:459.786667pt;}
.y1cc{bottom:463.226667pt;}
.y1a3{bottom:463.706667pt;}
.yd1{bottom:464.026667pt;}
.y41{bottom:464.186667pt;}
.y8e{bottom:467.066667pt;}
.y18{bottom:467.386667pt;}
.ye3{bottom:468.266667pt;}
.y1f3{bottom:471.466667pt;}
.y175{bottom:474.106667pt;}
.y56{bottom:474.826667pt;}
.y152{bottom:476.346667pt;}
.y12f{bottom:478.906667pt;}
.y1cb{bottom:483.386667pt;}
.y1a2{bottom:483.946667pt;}
.yd0{bottom:485.386667pt;}
.y17{bottom:488.746667pt;}
.y7d{bottom:493.626667pt;}
.y174{bottom:493.946667pt;}
.yc6{bottom:495.386667pt;}
.y1f2{bottom:495.946667pt;}
.y40{bottom:496.186667pt;}
.ye2{bottom:500.293333pt;}
.y8d{bottom:502.613333pt;}
.y1ca{bottom:503.653333pt;}
.y1a1{bottom:504.133333pt;}
.ycf{bottom:506.773333pt;}
.y16{bottom:510.133333pt;}
.y173{bottom:513.813333pt;}
.y3f{bottom:517.573333pt;}
.y11c{bottom:517.893333pt;}
.y12e{bottom:521.653333pt;}
.y1c9{bottom:523.813333pt;}
.y7f{bottom:524.133333pt;}
.y1a0{bottom:524.373333pt;}
.yc3{bottom:526.053333pt;}
.ye1{bottom:527.893333pt;}
.yf8{bottom:527.920000pt;}
.yc5{bottom:527.973333pt;}
.yce{bottom:528.133333pt;}
.y151{bottom:528.213333pt;}
.y85{bottom:531.013333pt;}
.yc2{bottom:531.413333pt;}
.y15{bottom:531.493333pt;}
.y11b{bottom:533.893333pt;}
.yc4{bottom:535.813333pt;}
.y80{bottom:538.213333pt;}
.y3e{bottom:538.933333pt;}
.y7b{bottom:539.093333pt;}
.ybf{bottom:540.053333pt;}
.y12d{bottom:543.013333pt;}
.y1c8{bottom:544.053333pt;}
.y172{bottom:544.133333pt;}
.y19f{bottom:544.533333pt;}
.yc1{bottom:545.813333pt;}
.y11a{bottom:548.933333pt;}
.ycd{bottom:549.493333pt;}
.y81{bottom:552.213333pt;}
.y14{bottom:552.853333pt;}
.yc0{bottom:553.653333pt;}
.y150{bottom:560.213333pt;}
.y3d{bottom:560.293333pt;}
.y119{bottom:563.973333pt;}
.y171{bottom:564.053333pt;}
.y1c7{bottom:564.213333pt;}
.y12c{bottom:564.373333pt;}
.y86{bottom:564.853333pt;}
.y82{bottom:566.213333pt;}
.y19e{bottom:569.093333pt;}
.y8b{bottom:573.813333pt;}
.y13{bottom:574.213333pt;}
.y8c{bottom:574.693333pt;}
.ybe{bottom:576.853333pt;}
.y118{bottom:579.093333pt;}
.y83{bottom:580.293333pt;}
.y87{bottom:581.333333pt;}
.ycc{bottom:581.493333pt;}
.y14f{bottom:581.573333pt;}
.y3c{bottom:581.653333pt;}
.y170{bottom:583.813333pt;}
.y1c6{bottom:584.453333pt;}
.y19d{bottom:585.093333pt;}
.y117{bottom:594.133333pt;}
.y84{bottom:594.293333pt;}
.y89{bottom:594.373333pt;}
.y12{bottom:595.573333pt;}
.y12b{bottom:596.373333pt;}
.y20a{bottom:601.093333pt;}
.y14e{bottom:602.933333pt;}
.y3b{bottom:603.013333pt;}
.y1c5{bottom:604.613333pt;}
.y19c{bottom:605.333333pt;}
.ybd{bottom:608.933333pt;}
.y116{bottom:609.173333pt;}
.y8a{bottom:609.333333pt;}
.ycb{bottom:613.493333pt;}
.y16f{bottom:614.213333pt;}
.y11{bottom:616.853333pt;}
.y12a{bottom:623.973333pt;}
.y140{bottom:624.000000pt;}
.y115{bottom:624.213333pt;}
.y3a{bottom:624.293333pt;}
.y1c4{bottom:624.853333pt;}
.y19b{bottom:625.493333pt;}
.y209{bottom:633.093333pt;}
.y16e{bottom:634.053333pt;}
.y55{bottom:635.013333pt;}
.y10{bottom:638.213333pt;}
.y114{bottom:639.253333pt;}
.ybc{bottom:640.933333pt;}
.yca{bottom:641.093333pt;}
.y1c3{bottom:645.013333pt;}
.y39{bottom:645.653333pt;}
.y199{bottom:645.733333pt;}
.y6a{bottom:648.293333pt;}
.y208{bottom:649.173333pt;}
.y7a{bottom:653.333333pt;}
.y113{bottom:654.373333pt;}
.y54{bottom:656.373333pt;}
.yf{bottom:659.573333pt;}
.y16d{bottom:664.453333pt;}
.y1e3{bottom:665.253333pt;}
.y198{bottom:665.893333pt;}
.y38{bottom:667.013333pt;}
.y207{bottom:669.333333pt;}
.y112{bottom:669.413333pt;}
.y1c2{bottom:669.573333pt;}
.ybb{bottom:670.613333pt;}
.y78{bottom:673.413333pt;}
.yb9{bottom:675.253333pt;}
.y79{bottom:676.213333pt;}
.y53{bottom:677.733333pt;}
.ye{bottom:680.933333pt;}
.y6b{bottom:682.133333pt;}
.yba{bottom:682.853333pt;}
.y16c{bottom:684.293333pt;}
.y111{bottom:684.453333pt;}
.y1e2{bottom:685.413333pt;}
.y197{bottom:686.053333pt;}
.y14d{bottom:688.373333pt;}
.y206{bottom:689.573333pt;}
.y6c{bottom:698.613333pt;}
.y37{bottom:699.093333pt;}
.y110{bottom:699.493333pt;}
.y1c1{bottom:701.573333pt;}
.yd{bottom:702.293333pt;}
.y16b{bottom:704.053333pt;}
.yb8{bottom:704.933333pt;}
.y1e1{bottom:705.653333pt;}
.y196{bottom:706.293333pt;}
.yb6{bottom:709.573333pt;}
.y14c{bottom:709.733333pt;}
.y6e{bottom:714.213333pt;}
.y10f{bottom:714.613333pt;}
.yb7{bottom:717.173333pt;}
.y1c0{bottom:717.573333pt;}
.y36{bottom:720.373333pt;}
.y77{bottom:721.893333pt;}
.yc{bottom:723.653333pt;}
.y69{bottom:724.533333pt;}
.y1e0{bottom:725.813333pt;}
.y195{bottom:726.453333pt;}
.y10e{bottom:729.653333pt;}
.y6f{bottom:729.813333pt;}
.y205{bottom:729.973333pt;}
.y14b{bottom:731.093333pt;}
.y16a{bottom:734.453333pt;}
.y1bf{bottom:737.813333pt;}
.yb5{bottom:741.573333pt;}
.y35{bottom:741.733333pt;}
.y75{bottom:742.453333pt;}
.y10d{bottom:744.693333pt;}
.y76{bottom:744.773333pt;}
.yb{bottom:745.013333pt;}
.y71{bottom:745.493333pt;}
.y1df{bottom:746.053333pt;}
.y194{bottom:746.693333pt;}
.y204{bottom:750.133333pt;}
.y14a{bottom:752.453333pt;}
.y169{bottom:754.293333pt;}
.y1be{bottom:757.973333pt;}
.y10c{bottom:759.733333pt;}
.y72{bottom:761.093333pt;}
.y34{bottom:763.093333pt;}
.y1f1{bottom:766.213333pt;}
.ya{bottom:766.373333pt;}
.y192{bottom:766.853333pt;}
.y203{bottom:770.293333pt;}
.y1de{bottom:770.533333pt;}
.y149{bottom:773.813333pt;}
.yb4{bottom:774.213333pt;}
.y73{bottom:776.693333pt;}
.y1bd{bottom:778.213333pt;}
.y33{bottom:784.453333pt;}
.y168{bottom:784.693333pt;}
.y1f0{bottom:786.453333pt;}
.y191{bottom:787.093333pt;}
.y9{bottom:787.733333pt;}
.y202{bottom:790.533333pt;}
.y10b{bottom:791.493333pt;}
.y74{bottom:793.653333pt;}
.y52{bottom:795.173333pt;}
.y1bc{bottom:798.373333pt;}
.y1dd{bottom:802.533333pt;}
.y167{bottom:804.533333pt;}
.y32{bottom:805.813333pt;}
.yb3{bottom:806.373333pt;}
.y1ef{bottom:806.613333pt;}
.y18f{bottom:807.253333pt;}
.y201{bottom:810.693333pt;}
.y51{bottom:816.453333pt;}
.y1bb{bottom:818.613333pt;}
.y10a{bottom:823.493333pt;}
.y166{bottom:824.373333pt;}
.y1ee{bottom:826.773333pt;}
.y8{bottom:827.333333pt;}
.y18e{bottom:827.493333pt;}
.y5c{bottom:829.733333pt;}
.y200{bottom:830.933333pt;}
.yb2{bottom:834.453333pt;}
.y68{bottom:837.013333pt;}
.y31{bottom:837.813333pt;}
.yb0{bottom:838.293333pt;}
.y1ba{bottom:838.773333pt;}
.y109{bottom:839.493333pt;}
.yb1{bottom:842.293333pt;}
.yaf{bottom:845.333333pt;}
.y1ed{bottom:847.013333pt;}
.y189{bottom:847.653333pt;}
.y1ff{bottom:851.093333pt;}
.y7{bottom:852.533333pt;}
.y108{bottom:854.533333pt;}
.y165{bottom:854.693333pt;}
.y1b9{bottom:859.013333pt;}
.y30{bottom:859.173333pt;}
.y5d{bottom:863.573333pt;}
.y184{bottom:867.893333pt;}
.y105{bottom:869.653333pt;}
.y67{bottom:870.720000pt;}
.y1fe{bottom:871.360000pt;}
.y1ec{bottom:871.520000pt;}
.y164{bottom:874.640000pt;}
.y1b8{bottom:879.200000pt;}
.y5f{bottom:880.080000pt;}
.y2f{bottom:880.560000pt;}
.y104{bottom:884.720000pt;}
.y5b{bottom:888.080000pt;}
.y1fd{bottom:891.520000pt;}
.y61{bottom:894.160000pt;}
.y163{bottom:894.400000pt;}
.y6{bottom:896.800000pt;}
.y1b7{bottom:899.440000pt;}
.y103{bottom:899.760000pt;}
.y66{bottom:901.200000pt;}
.y2e{bottom:901.920000pt;}
.y1eb{bottom:903.600000pt;}
.y62{bottom:908.240000pt;}
.y27{bottom:908.320000pt;}
.y1fc{bottom:911.760000pt;}
.yae{bottom:912.640000pt;}
.y102{bottom:914.800000pt;}
.y5{bottom:919.520000pt;}
.y1b6{bottom:919.600000pt;}
.y64{bottom:921.760000pt;}
.y63{bottom:922.320000pt;}
.y2d{bottom:923.280000pt;}
.y65{bottom:924.000000pt;}
.y162{bottom:924.800000pt;}
.y101{bottom:929.920000pt;}
.y1fb{bottom:931.920000pt;}
.y1b5{bottom:939.840000pt;}
.y4{bottom:944.560000pt;}
.y2c{bottom:944.640000pt;}
.y100{bottom:944.960000pt;}
.y1fa{bottom:952.160000pt;}
.y2a{bottom:979.280000pt;}
.y29{bottom:995.440000pt;}
.h37{height:7.200000pt;}
.h1f{height:13.040000pt;}
.h1c{height:14.000000pt;}
.hd{height:14.080000pt;}
.h32{height:14.320000pt;}
.h30{height:14.346667pt;}
.h2d{height:14.400000pt;}
.h33{height:14.426667pt;}
.h23{height:15.520000pt;}
.h38{height:15.587969pt;}
.h15{height:15.600000pt;}
.h16{height:15.680000pt;}
.h14{height:16.480000pt;}
.hc{height:16.506667pt;}
.h7{height:17.920000pt;}
.h3b{height:19.520000pt;}
.h39{height:19.546667pt;}
.h3c{height:19.600000pt;}
.h3d{height:19.626667pt;}
.h3a{height:21.324844pt;}
.h2e{height:30.943281pt;}
.h9{height:34.898438pt;}
.h1{height:36.192031pt;}
.h8{height:41.601562pt;}
.h2f{height:42.331406pt;}
.h6{height:42.576094pt;}
.h35{height:42.633281pt;}
.h4{height:42.747656pt;}
.h36{height:42.919219pt;}
.h3{height:45.435469pt;}
.h2{height:50.753906pt;}
.h5{height:54.427344pt;}
.h29{height:84.796875pt;}
.h2a{height:86.096094pt;}
.h2c{height:90.896094pt;}
.h28{height:104.425781pt;}
.h2b{height:109.756875pt;}
.he{height:133.680000pt;}
.ha{height:143.683594pt;}
.h12{height:146.243594pt;}
.h10{height:146.563594pt;}
.h21{height:165.865781pt;}
.h1a{height:224.003594pt;}
.h11{height:225.923594pt;}
.h22{height:234.986667pt;}
.hf{height:247.043594pt;}
.h18{height:247.363594pt;}
.h19{height:249.283594pt;}
.h17{height:279.306667pt;}
.h34{height:335.920000pt;}
.h31{height:336.000000pt;}
.h25{height:341.706667pt;}
.h20{height:461.626667pt;}
.h1d{height:461.706667pt;}
.h1b{height:493.626667pt;}
.h1e{height:564.853333pt;}
.h24{height:649.253333pt;}
.h13{height:682.133333pt;}
.h26{height:684.773333pt;}
.h27{height:791.493333pt;}
.hb{height:863.573333pt;}
.h0{height:1056.000000pt;}
.wa{width:30.480000pt;}
.w5{width:55.440000pt;}
.w7{width:55.520000pt;}
.w6{width:55.546667pt;}
.w8{width:58.000000pt;}
.wd{width:58.560000pt;}
.wb{width:58.586667pt;}
.wc{width:58.640000pt;}
.w4{width:58.986667pt;}
.w2{width:148.160000pt;}
.w9{width:576.000000pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x42{left:7.440000pt;}
.x43{left:8.640000pt;}
.xb{left:9.600000pt;}
.x48{left:11.360000pt;}
.x38{left:13.120000pt;}
.x41{left:14.560000pt;}
.x4a{left:18.533333pt;}
.x4e{left:20.400000pt;}
.x45{left:21.520000pt;}
.x37{left:29.440000pt;}
.x46{left:57.760000pt;}
.x1{left:95.999988pt;}
.x4{left:100.959988pt;}
.x7{left:114.239988pt;}
.x44{left:120.000000pt;}
.x53{left:127.840000pt;}
.x23{left:133.279976pt;}
.x4b{left:138.639988pt;}
.x2d{left:140.639988pt;}
.x1b{left:143.119976pt;}
.x24{left:144.426655pt;}
.x2e{left:147.306655pt;}
.x20{left:154.266655pt;}
.x1f{left:155.546655pt;}
.xc{left:160.026642pt;}
.x10{left:171.146655pt;}
.xf{left:176.426655pt;}
.x25{left:182.426642pt;}
.x29{left:183.786642pt;}
.x2f{left:187.386655pt;}
.x1c{left:191.466642pt;}
.x26{left:193.546655pt;}
.x2a{left:194.986655pt;}
.x5{left:196.826655pt;}
.x30{left:198.506655pt;}
.x16{left:202.026655pt;}
.x13{left:204.586655pt;}
.xe{left:210.586655pt;}
.x39{left:212.346667pt;}
.xd{left:214.106655pt;}
.x18{left:215.066655pt;}
.x15{left:217.626655pt;}
.x17{left:218.586655pt;}
.x14{left:221.146655pt;}
.x54{left:246.346667pt;}
.x3a{left:268.426667pt;}
.x32{left:274.186655pt;}
.x36{left:288.746655pt;}
.x47{left:296.586655pt;}
.x55{left:305.626667pt;}
.x34{left:308.826655pt;}
.x9{left:309.866655pt;}
.x6{left:313.386655pt;}
.x2{left:324.426655pt;}
.x49{left:326.986655pt;}
.x52{left:328.506655pt;}
.x4f{left:330.986655pt;}
.x51{left:332.266655pt;}
.x27{left:333.386642pt;}
.x50{left:336.106655pt;}
.x2b{left:337.466642pt;}
.x4d{left:339.786655pt;}
.x1d{left:344.906642pt;}
.x28{left:346.986655pt;}
.x1e{left:358.426655pt;}
.x56{left:364.826667pt;}
.x8{left:365.786655pt;}
.x4c{left:374.586655pt;}
.x3b{left:380.666667pt;}
.x2c{left:388.026642pt;}
.x21{left:398.666642pt;}
.x33{left:408.026655pt;}
.x22{left:409.786655pt;}
.x57{left:424.026667pt;}
.x3c{left:436.853333pt;}
.x58{left:483.253333pt;}
.x11{left:484.453309pt;}
.x19{left:488.693309pt;}
.x3d{left:493.013333pt;}
.x12{left:495.573321pt;}
.x1a{left:499.813321pt;}
.x3{left:524.053321pt;}
.xa{left:536.533333pt;}
.x59{left:542.453333pt;}
.x3e{left:549.093333pt;}
.x5a{left:601.653333pt;}
.x3f{left:605.253333pt;}
.x31{left:648.053321pt;}
.x40{left:661.413333pt;}
.x35{left:696.053321pt;}
}




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