
    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_23a4fdfc4b4d0a0d8fa9db2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ec54eda49d2fe73eb0bda99d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e3243a324b32c2e0d848d9df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b42909b13971d58111692ab5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3aa6da6b0a24d539f52009e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_b1f102a105e3e78656f54083.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_097502098326acc184ea61e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_42aa342ad08c90ff070d7ae9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_1f66b68f678238aa68cafabe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_3a180fe9325ccb7c81871831.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_d2f1f9cac913e1673afdaef2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.920000px;}
.v3{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.ls22{letter-spacing:-0.900000px;}
.ls13{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.109200px;}
.ls1d{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.045360px;}
.ls1c{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.031680px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.204932px;}
.ls1a{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.269280px;}
.ls19{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.410400px;}
.ls23{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.612000px;}
.ls21{letter-spacing:0.666720px;}
.ls12{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.878963px;}
.ls20{letter-spacing:1.080000px;}
.ls15{letter-spacing:3.024000px;}
.lsd{letter-spacing:5.904000px;}
.lsf{letter-spacing:8.760000px;}
.lse{letter-spacing:11.664000px;}
.ls16{letter-spacing:24.749280px;}
.ls0{letter-spacing:838.922880px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.014640px;}
.wsd{word-spacing:-20.736000px;}
.ws9{word-spacing:-20.520000px;}
.ws6{word-spacing:-20.426400px;}
.ws8{word-spacing:-20.304000px;}
.ws1b{word-spacing:-20.232000px;}
.ws4{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.872000px;}
.ws11{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.584000px;}
.ws1a{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.296000px;}
.wse{word-spacing:-19.152000px;}
.ws12{word-spacing:-18.305520px;}
.ws18{word-spacing:-17.693280px;}
.ws16{word-spacing:-17.225280px;}
.ws17{word-spacing:-16.973280px;}
.ws13{word-spacing:-16.613280px;}
.ws15{word-spacing:-16.506480px;}
.ws0{word-spacing:-15.001920px;}
.wsc{word-spacing:-13.410720px;}
.ws10{word-spacing:-13.229520px;}
.ws1c{word-spacing:-12.510720px;}
.ws19{word-spacing:-10.808640px;}
.ws14{word-spacing:-10.791360px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-17.748000px;}
._c{margin-left:-16.090560px;}
._7{margin-left:-13.236000px;}
._6{margin-left:-12.096000px;}
._a{margin-left:-10.608000px;}
._4{margin-left:-8.642640px;}
._9{margin-left:-7.176000px;}
._e{margin-left:-5.196000px;}
._2{margin-left:-3.453360px;}
._d{margin-left:-2.400000px;}
._0{margin-left:-1.258560px;}
._1{width:1.558560px;}
._17{width:2.656320px;}
._16{width:4.032000px;}
._13{width:6.009120px;}
._12{width:7.704000px;}
._10{width:9.492000px;}
._5{width:10.596000px;}
._11{width:12.024000px;}
._1e{width:13.176000px;}
._20{width:14.751840px;}
._1f{width:16.194240px;}
._15{width:17.496000px;}
._14{width:18.514560px;}
._1d{width:21.168000px;}
._23{width:22.597440px;}
._1a{width:23.760000px;}
._22{width:24.876000px;}
._27{width:26.736000px;}
._19{width:28.608000px;}
._18{width:30.528000px;}
._28{width:31.944000px;}
._2c{width:37.211520px;}
._2b{width:38.310240px;}
._2a{width:39.432000px;}
._26{width:41.278560px;}
._1c{width:42.877440px;}
._1b{width:43.954560px;}
._25{width:50.543040px;}
._24{width:51.832800px;}
._21{width:54.840000px;}
._b{width:226.200000px;}
._3{width:840.737280px;}
._f{width:844.140000px;}
._29{width:1381.956000px;}
.fc4{color:rgb(28,29,30);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(32,31,30);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fs1{font-size:45.360000px;}
.fsc{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fse{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs6{font-size:102.240000px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:131.760000px;}
.fs5{font-size:174.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600000px;}
.y3{bottom:57.240000px;}
.y2{bottom:57.780000px;}
.y11c{bottom:113.220000px;}
.y87{bottom:113.940000px;}
.y70{bottom:125.460000px;}
.ya5{bottom:127.800000px;}
.y63{bottom:131.400000px;}
.ya0{bottom:135.540000px;}
.y123{bottom:139.140000px;}
.yee{bottom:139.320000px;}
.ye0{bottom:140.400000px;}
.y4a{bottom:142.740000px;}
.yf4{bottom:142.920000px;}
.yc9{bottom:150.840000px;}
.y1a{bottom:151.740000px;}
.yb8{bottom:154.080000px;}
.y86{bottom:155.340000px;}
.y6f{bottom:167.040000px;}
.yfc{bottom:169.020000px;}
.yb2{bottom:169.200000px;}
.y19{bottom:170.280000px;}
.y11b{bottom:170.640000px;}
.y62{bottom:172.800000px;}
.y9f{bottom:177.120000px;}
.yed{bottom:180.720000px;}
.ydf{bottom:182.160000px;}
.ya4{bottom:184.140000px;}
.y49{bottom:184.320000px;}
.yc8{bottom:185.400000px;}
.y18{bottom:188.640000px;}
.yfa{bottom:195.300000px;}
.y85{bottom:196.740000px;}
.yd2{bottom:206.820000px;}
.y6e{bottom:209.520000px;}
.yb7{bottom:210.420000px;}
.yb1{bottom:210.600000px;}
.y11a{bottom:212.040000px;}
.y17{bottom:215.100000px;}
.y9e{bottom:218.520000px;}
.yc7{bottom:219.960000px;}
.y128{bottom:221.940000px;}
.y122{bottom:222.120000px;}
.y48{bottom:225.720000px;}
.y61{bottom:229.140000px;}
.yf9{bottom:229.680000px;}
.y109{bottom:232.410000px;}
.y2b{bottom:235.650000px;}
.y16{bottom:235.830000px;}
.yec{bottom:236.910000px;}
.y84{bottom:238.170000px;}
.yf3{bottom:240.510000px;}
.y6d{bottom:250.770000px;}
.yb0{bottom:252.030000px;}
.y119{bottom:253.470000px;}
.y15{bottom:255.090000px;}
.y9d{bottom:259.950000px;}
.yd1{bottom:263.370000px;}
.yf8{bottom:264.270000px;}
.y47{bottom:267.150000px;}
.y60{bottom:270.750000px;}
.y108{bottom:273.810000px;}
.yde{bottom:275.610000px;}
.y121{bottom:278.310000px;}
.y83{bottom:279.570000px;}
.yf2{bottom:282.090000px;}
.y2a{bottom:291.990000px;}
.y6c{bottom:292.170000px;}
.yc2{bottom:292.710000px;}
.yeb{bottom:293.250000px;}
.yaf{bottom:293.430000px;}
.y14{bottom:294.690000px;}
.yf7{bottom:298.830000px;}
.yd0{bottom:304.950000px;}
.yb6{bottom:308.370000px;}
.ya3{bottom:308.550000px;}
.ydd{bottom:310.350000px;}
.y118{bottom:310.710000px;}
.y5f{bottom:312.150000px;}
.y9c{bottom:316.110000px;}
.y120{bottom:319.890000px;}
.y82{bottom:320.970000px;}
.y46{bottom:323.310000px;}
.yf1{bottom:323.490000px;}
.y107{bottom:331.050000px;}
.y13{bottom:331.410000px;}
.yf6{bottom:333.390000px;}
.y6b{bottom:333.750000px;}
.yae{bottom:334.830000px;}
.ydc{bottom:344.730000px;}
.ycf{bottom:346.350000px;}
.y29{bottom:348.510000px;}
.yc1{bottom:349.230000px;}
.yb5{bottom:349.950000px;}
.y117{bottom:352.290000px;}
.y5e{bottom:353.550000px;}
.y9b{bottom:357.690000px;}
.y11f{bottom:361.290000px;}
.y81{bottom:362.370000px;}
.ya2{bottom:364.710000px;}
.y45{bottom:364.890000px;}
.y12{bottom:367.950000px;}
.y106{bottom:372.630000px;}
.yad{bottom:376.230000px;}
.yc0{bottom:390.810000px;}
.y3c{bottom:390.990000px;}
.yb4{bottom:391.170000px;}
.y5d{bottom:394.950000px;}
.yce{bottom:402.690000px;}
.y11{bottom:403.410000px;}
.y28{bottom:404.850000px;}
.y44{bottom:406.290000px;}
.y116{bottom:408.450000px;}
.y9a{bottom:413.850000px;}
.y105{bottom:414.030000px;}
.y11e{bottom:417.450000px;}
.yea{bottom:417.630000px;}
.y80{bottom:418.710000px;}
.ybf{bottom:432.210000px;}
.yac{bottom:432.390000px;}
.y3b{bottom:432.570000px;}
.y5c{bottom:436.170000px;}
.y43{bottom:447.690000px;}
.y115{bottom:450.030000px;}
.y10{bottom:454.710000px;}
.ycd{bottom:458.850000px;}
.ye9{bottom:459.030000px;}
.y7f{bottom:460.335000px;}
.y27{bottom:461.235000px;}
.y99{bottom:470.235000px;}
.ybe{bottom:473.655000px;}
.yfb{bottom:473.835000px;}
.y3a{bottom:474.015000px;}
.y5b{bottom:477.615000px;}
.y42{bottom:489.135000px;}
.ycc{bottom:500.475000px;}
.y7e{bottom:501.735000px;}
.y114{bottom:506.235000px;}
.y98{bottom:511.815000px;}
.y132{bottom:513.795000px;}
.ybd{bottom:515.235000px;}
.y39{bottom:515.415000px;}
.yf{bottom:516.855000px;}
.y26{bottom:517.755000px;}
.y5a{bottom:519.015000px;}
.yc6{bottom:519.735000px;}
.y104{bottom:526.755000px;}
.y41{bottom:530.535000px;}
.y127{bottom:541.875000px;}
.y7d{bottom:543.135000px;}
.y113{bottom:547.815000px;}
.y97{bottom:553.215000px;}
.yc5{bottom:554.475000px;}
.ycb{bottom:556.635000px;}
.y38{bottom:556.815000px;}
.y59{bottom:560.415000px;}
.y103{bottom:568.335000px;}
.y131{bottom:571.035000px;}
.ybc{bottom:571.395000px;}
.y6a{bottom:571.755000px;}
.y40{bottom:571.935000px;}
.ydb{bottom:572.115000px;}
.y25{bottom:574.095000px;}
.ye{bottom:578.595000px;}
.y126{bottom:583.275000px;}
.y7c{bottom:584.535000px;}
.yc4{bottom:589.035000px;}
.y112{bottom:589.215000px;}
.yab{bottom:598.215000px;}
.y58{bottom:601.815000px;}
.y96{bottom:609.555000px;}
.y37{bottom:613.155000px;}
.y3f{bottom:613.335000px;}
.yda{bottom:613.515000px;}
.yc3{bottom:623.415000px;}
.y102{bottom:624.495000px;}
.y7b{bottom:625.935000px;}
.ye4{bottom:627.195000px;}
.ybb{bottom:627.735000px;}
.yfe{bottom:628.095000px;}
.y130{bottom:628.455000px;}
.y24{bottom:630.435000px;}
.y125{bottom:639.435000px;}
.yaa{bottom:639.615000px;}
.y57{bottom:643.215000px;}
.y111{bottom:645.555000px;}
.y95{bottom:651.135000px;}
.yca{bottom:654.555000px;}
.y36{bottom:654.735000px;}
.yd9{bottom:655.095000px;}
.yd{bottom:659.235000px;}
.ye3{bottom:664.635000px;}
.y101{bottom:666.075000px;}
.yf0{bottom:669.495000px;}
.yba{bottom:680.115000px;}
.y8d{bottom:680.835000px;}
.ye8{bottom:681.015000px;}
.y7a{bottom:682.095000px;}
.yfd{bottom:684.435000px;}
.y56{bottom:684.615000px;}
.y12f{bottom:685.875000px;}
.y23{bottom:686.955000px;}
.y110{bottom:687.135000px;}
.y94{bottom:692.565000px;}
.ya9{bottom:695.985000px;}
.y35{bottom:696.165000px;}
.ye2{bottom:699.045000px;}
.y69{bottom:710.925000px;}
.yef{bottom:711.105000px;}
.yd8{bottom:711.285000px;}
.y100{bottom:722.265000px;}
.ye7{bottom:722.445000px;}
.y79{bottom:723.705000px;}
.y55{bottom:726.045000px;}
.y10f{bottom:728.565000px;}
.yc{bottom:732.165000px;}
.ye1{bottom:733.785000px;}
.y93{bottom:733.965000px;}
.y8c{bottom:737.385000px;}
.y34{bottom:737.565000px;}
.y22{bottom:743.325000px;}
.yd7{bottom:748.545000px;}
.y68{bottom:752.505000px;}
.ye6{bottom:763.845000px;}
.y78{bottom:765.105000px;}
.y54{bottom:767.445000px;}
.y33{bottom:778.965000px;}
.yb{bottom:781.845000px;}
.yd6{bottom:783.105000px;}
.y10e{bottom:784.725000px;}
.y92{bottom:790.125000px;}
.ya1{bottom:793.725000px;}
.y67{bottom:793.905000px;}
.y21{bottom:799.665000px;}
.y12e{bottom:800.565000px;}
.ye5{bottom:805.245000px;}
.y77{bottom:806.505000px;}
.yf5{bottom:808.665000px;}
.y53{bottom:808.845000px;}
.yd5{bottom:817.665000px;}
.yff{bottom:820.185000px;}
.y32{bottom:820.365000px;}
.ya{bottom:825.045000px;}
.y10d{bottom:826.305000px;}
.y11d{bottom:835.125000px;}
.y66{bottom:835.305000px;}
.y91{bottom:846.465000px;}
.y76{bottom:847.905000px;}
.y52{bottom:850.245000px;}
.yd4{bottom:852.225000px;}
.y20{bottom:856.185000px;}
.y12d{bottom:857.985000px;}
.ya7{bottom:861.585000px;}
.y9{bottom:861.765000px;}
.y3e{bottom:876.525000px;}
.y65{bottom:876.705000px;}
.y10c{bottom:882.465000px;}
.yd3{bottom:886.785000px;}
.y90{bottom:888.045000px;}
.y75{bottom:889.305000px;}
.yb3{bottom:891.465000px;}
.y51{bottom:891.645000px;}
.y8{bottom:893.265000px;}
.y8b{bottom:903.165000px;}
.y1f{bottom:912.525000px;}
.y12c{bottom:914.325000px;}
.y31{bottom:917.925000px;}
.y3d{bottom:918.105000px;}
.y10b{bottom:924.090000px;}
.y74{bottom:930.750000px;}
.y50{bottom:933.090000px;}
.y8f{bottom:944.430000px;}
.y8a{bottom:944.610000px;}
.ya8{bottom:959.370000px;}
.y30{bottom:959.550000px;}
.y10a{bottom:965.490000px;}
.y1e{bottom:968.910000px;}
.y12b{bottom:970.710000px;}
.y73{bottom:972.150000px;}
.y64{bottom:974.310000px;}
.y4f{bottom:974.490000px;}
.y89{bottom:986.010000px;}
.y8e{bottom:1000.770000px;}
.y2f{bottom:1000.950000px;}
.y72{bottom:1013.550000px;}
.ya6{bottom:1015.710000px;}
.y4e{bottom:1015.890000px;}
.y1d{bottom:1025.430000px;}
.y12a{bottom:1027.230000px;}
.y88{bottom:1042.170000px;}
.y2e{bottom:1042.350000px;}
.y7{bottom:1056.030000px;}
.y124{bottom:1057.110000px;}
.y4d{bottom:1057.290000px;}
.y1c{bottom:1079.970000px;}
.y129{bottom:1083.570000px;}
.y2d{bottom:1083.750000px;}
.yb9{bottom:1083.930000px;}
.y71{bottom:1097.610000px;}
.y4c{bottom:1098.690000px;}
.y6{bottom:1109.310000px;}
.y1b{bottom:1137.210000px;}
.y2c{bottom:1139.910000px;}
.y4b{bottom:1140.090000px;}
.y5{bottom:1145.670000px;}
.y1{bottom:1194.480000px;}
.h3{height:18.898500px;}
.h5{height:45.116367px;}
.h11{height:50.845430px;}
.hf{height:56.574492px;}
.h13{height:58.121719px;}
.h8{height:59.439023px;}
.h7{height:61.423863px;}
.h18{height:62.327813px;}
.h2{height:65.884219px;}
.h4{height:69.086250px;}
.h19{height:70.790625px;}
.h12{height:70.995234px;}
.h10{height:73.915664px;}
.h14{height:75.093750px;}
.ha{height:78.969727px;}
.h15{height:83.432813px;}
.h16{height:83.552813px;}
.h17{height:83.612813px;}
.h9{height:83.787539px;}
.h6{height:87.859687px;}
.hc{height:89.709609px;}
.hd{height:112.640625px;}
.he{height:115.611680px;}
.hb{height:175.601250px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:9.165000px;}
.w3{width:18.345000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.x16{left:132.156000px;}
.x9{left:135.756000px;}
.x7{left:147.996000px;}
.x18{left:154.650000px;}
.x17{left:159.150000px;}
.x19{left:181.650000px;}
.x8{left:198.030000px;}
.xa{left:256.530000px;}
.x1{left:274.755000px;}
.x6{left:330.555000px;}
.xb{left:340.275000px;}
.x14{left:393.015000px;}
.x15{left:397.875000px;}
.x1a{left:408.855000px;}
.xe{left:411.555000px;}
.x4{left:447.045000px;}
.xd{left:451.185000px;}
.x5{left:562.605000px;}
.x1d{left:627.090000px;}
.x1f{left:634.470000px;}
.xc{left:646.530000px;}
.x1e{left:699.090000px;}
.x1b{left:718.170000px;}
.x3{left:754.710000px;}
.x1c{left:765.510000px;}
.x12{left:779.190000px;}
.xf{left:795.750000px;}
.x11{left:802.260000px;}
.x13{left:807.660000px;}
.x10{left:829.440000px;}
@media print{
.v1{vertical-align:-73.706667pt;}
.v3{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.ls22{letter-spacing:-0.800000pt;}
.ls13{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.097067pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.040320pt;}
.ls1c{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.182162pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.239360pt;}
.ls19{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.364800pt;}
.ls23{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls21{letter-spacing:0.592640pt;}
.ls12{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.781301pt;}
.ls20{letter-spacing:0.960000pt;}
.ls15{letter-spacing:2.688000pt;}
.lsd{letter-spacing:5.248000pt;}
.lsf{letter-spacing:7.786667pt;}
.lse{letter-spacing:10.368000pt;}
.ls16{letter-spacing:21.999360pt;}
.ls0{letter-spacing:745.709227pt;}
.wsf{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.679680pt;}
.wsd{word-spacing:-18.432000pt;}
.ws9{word-spacing:-18.240000pt;}
.ws6{word-spacing:-18.156800pt;}
.ws8{word-spacing:-18.048000pt;}
.ws1b{word-spacing:-17.984000pt;}
.ws4{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.664000pt;}
.ws11{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws1a{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.152000pt;}
.wse{word-spacing:-17.024000pt;}
.ws12{word-spacing:-16.271573pt;}
.ws18{word-spacing:-15.727360pt;}
.ws16{word-spacing:-15.311360pt;}
.ws17{word-spacing:-15.087360pt;}
.ws13{word-spacing:-14.767360pt;}
.ws15{word-spacing:-14.672427pt;}
.ws0{word-spacing:-13.335040pt;}
.wsc{word-spacing:-11.920640pt;}
.ws10{word-spacing:-11.759573pt;}
.ws1c{word-spacing:-11.120640pt;}
.ws19{word-spacing:-9.607680pt;}
.ws14{word-spacing:-9.592320pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-15.776000pt;}
._c{margin-left:-14.302720pt;}
._7{margin-left:-11.765333pt;}
._6{margin-left:-10.752000pt;}
._a{margin-left:-9.429333pt;}
._4{margin-left:-7.682347pt;}
._9{margin-left:-6.378667pt;}
._e{margin-left:-4.618667pt;}
._2{margin-left:-3.069653pt;}
._d{margin-left:-2.133333pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.385387pt;}
._17{width:2.361173pt;}
._16{width:3.584000pt;}
._13{width:5.341440pt;}
._12{width:6.848000pt;}
._10{width:8.437333pt;}
._5{width:9.418667pt;}
._11{width:10.688000pt;}
._1e{width:11.712000pt;}
._20{width:13.112747pt;}
._1f{width:14.394880pt;}
._15{width:15.552000pt;}
._14{width:16.457387pt;}
._1d{width:18.816000pt;}
._23{width:20.086613pt;}
._1a{width:21.120000pt;}
._22{width:22.112000pt;}
._27{width:23.765333pt;}
._19{width:25.429333pt;}
._18{width:27.136000pt;}
._28{width:28.394667pt;}
._2c{width:33.076907pt;}
._2b{width:34.053547pt;}
._2a{width:35.050667pt;}
._26{width:36.692053pt;}
._1c{width:38.113280pt;}
._1b{width:39.070720pt;}
._25{width:44.927147pt;}
._24{width:46.073600pt;}
._21{width:48.746667pt;}
._b{width:201.066667pt;}
._3{width:747.322027pt;}
._f{width:750.346667pt;}
._29{width:1228.405333pt;}
.fsd{font-size:34.560000pt;}
.fs1{font-size:40.320000pt;}
.fsc{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fse{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs6{font-size:90.880000pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:117.120000pt;}
.fs5{font-size:154.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200000pt;}
.y3{bottom:50.880000pt;}
.y2{bottom:51.360000pt;}
.y11c{bottom:100.640000pt;}
.y87{bottom:101.280000pt;}
.y70{bottom:111.520000pt;}
.ya5{bottom:113.600000pt;}
.y63{bottom:116.800000pt;}
.ya0{bottom:120.480000pt;}
.y123{bottom:123.680000pt;}
.yee{bottom:123.840000pt;}
.ye0{bottom:124.800000pt;}
.y4a{bottom:126.880000pt;}
.yf4{bottom:127.040000pt;}
.yc9{bottom:134.080000pt;}
.y1a{bottom:134.880000pt;}
.yb8{bottom:136.960000pt;}
.y86{bottom:138.080000pt;}
.y6f{bottom:148.480000pt;}
.yfc{bottom:150.240000pt;}
.yb2{bottom:150.400000pt;}
.y19{bottom:151.360000pt;}
.y11b{bottom:151.680000pt;}
.y62{bottom:153.600000pt;}
.y9f{bottom:157.440000pt;}
.yed{bottom:160.640000pt;}
.ydf{bottom:161.920000pt;}
.ya4{bottom:163.680000pt;}
.y49{bottom:163.840000pt;}
.yc8{bottom:164.800000pt;}
.y18{bottom:167.680000pt;}
.yfa{bottom:173.600000pt;}
.y85{bottom:174.880000pt;}
.yd2{bottom:183.840000pt;}
.y6e{bottom:186.240000pt;}
.yb7{bottom:187.040000pt;}
.yb1{bottom:187.200000pt;}
.y11a{bottom:188.480000pt;}
.y17{bottom:191.200000pt;}
.y9e{bottom:194.240000pt;}
.yc7{bottom:195.520000pt;}
.y128{bottom:197.280000pt;}
.y122{bottom:197.440000pt;}
.y48{bottom:200.640000pt;}
.y61{bottom:203.680000pt;}
.yf9{bottom:204.160000pt;}
.y109{bottom:206.586667pt;}
.y2b{bottom:209.466667pt;}
.y16{bottom:209.626667pt;}
.yec{bottom:210.586667pt;}
.y84{bottom:211.706667pt;}
.yf3{bottom:213.786667pt;}
.y6d{bottom:222.906667pt;}
.yb0{bottom:224.026667pt;}
.y119{bottom:225.306667pt;}
.y15{bottom:226.746667pt;}
.y9d{bottom:231.066667pt;}
.yd1{bottom:234.106667pt;}
.yf8{bottom:234.906667pt;}
.y47{bottom:237.466667pt;}
.y60{bottom:240.666667pt;}
.y108{bottom:243.386667pt;}
.yde{bottom:244.986667pt;}
.y121{bottom:247.386667pt;}
.y83{bottom:248.506667pt;}
.yf2{bottom:250.746667pt;}
.y2a{bottom:259.546667pt;}
.y6c{bottom:259.706667pt;}
.yc2{bottom:260.186667pt;}
.yeb{bottom:260.666667pt;}
.yaf{bottom:260.826667pt;}
.y14{bottom:261.946667pt;}
.yf7{bottom:265.626667pt;}
.yd0{bottom:271.066667pt;}
.yb6{bottom:274.106667pt;}
.ya3{bottom:274.266667pt;}
.ydd{bottom:275.866667pt;}
.y118{bottom:276.186667pt;}
.y5f{bottom:277.466667pt;}
.y9c{bottom:280.986667pt;}
.y120{bottom:284.346667pt;}
.y82{bottom:285.306667pt;}
.y46{bottom:287.386667pt;}
.yf1{bottom:287.546667pt;}
.y107{bottom:294.266667pt;}
.y13{bottom:294.586667pt;}
.yf6{bottom:296.346667pt;}
.y6b{bottom:296.666667pt;}
.yae{bottom:297.626667pt;}
.ydc{bottom:306.426667pt;}
.ycf{bottom:307.866667pt;}
.y29{bottom:309.786667pt;}
.yc1{bottom:310.426667pt;}
.yb5{bottom:311.066667pt;}
.y117{bottom:313.146667pt;}
.y5e{bottom:314.266667pt;}
.y9b{bottom:317.946667pt;}
.y11f{bottom:321.146667pt;}
.y81{bottom:322.106667pt;}
.ya2{bottom:324.186667pt;}
.y45{bottom:324.346667pt;}
.y12{bottom:327.066667pt;}
.y106{bottom:331.226667pt;}
.yad{bottom:334.426667pt;}
.yc0{bottom:347.386667pt;}
.y3c{bottom:347.546667pt;}
.yb4{bottom:347.706667pt;}
.y5d{bottom:351.066667pt;}
.yce{bottom:357.946667pt;}
.y11{bottom:358.586667pt;}
.y28{bottom:359.866667pt;}
.y44{bottom:361.146667pt;}
.y116{bottom:363.066667pt;}
.y9a{bottom:367.866667pt;}
.y105{bottom:368.026667pt;}
.y11e{bottom:371.066667pt;}
.yea{bottom:371.226667pt;}
.y80{bottom:372.186667pt;}
.ybf{bottom:384.186667pt;}
.yac{bottom:384.346667pt;}
.y3b{bottom:384.506667pt;}
.y5c{bottom:387.706667pt;}
.y43{bottom:397.946667pt;}
.y115{bottom:400.026667pt;}
.y10{bottom:404.186667pt;}
.ycd{bottom:407.866667pt;}
.ye9{bottom:408.026667pt;}
.y7f{bottom:409.186667pt;}
.y27{bottom:409.986667pt;}
.y99{bottom:417.986667pt;}
.ybe{bottom:421.026667pt;}
.yfb{bottom:421.186667pt;}
.y3a{bottom:421.346667pt;}
.y5b{bottom:424.546667pt;}
.y42{bottom:434.786667pt;}
.ycc{bottom:444.866667pt;}
.y7e{bottom:445.986667pt;}
.y114{bottom:449.986667pt;}
.y98{bottom:454.946667pt;}
.y132{bottom:456.706667pt;}
.ybd{bottom:457.986667pt;}
.y39{bottom:458.146667pt;}
.yf{bottom:459.426667pt;}
.y26{bottom:460.226667pt;}
.y5a{bottom:461.346667pt;}
.yc6{bottom:461.986667pt;}
.y104{bottom:468.226667pt;}
.y41{bottom:471.586667pt;}
.y127{bottom:481.666667pt;}
.y7d{bottom:482.786667pt;}
.y113{bottom:486.946667pt;}
.y97{bottom:491.746667pt;}
.yc5{bottom:492.866667pt;}
.ycb{bottom:494.786667pt;}
.y38{bottom:494.946667pt;}
.y59{bottom:498.146667pt;}
.y103{bottom:505.186667pt;}
.y131{bottom:507.586667pt;}
.ybc{bottom:507.906667pt;}
.y6a{bottom:508.226667pt;}
.y40{bottom:508.386667pt;}
.ydb{bottom:508.546667pt;}
.y25{bottom:510.306667pt;}
.ye{bottom:514.306667pt;}
.y126{bottom:518.466667pt;}
.y7c{bottom:519.586667pt;}
.yc4{bottom:523.586667pt;}
.y112{bottom:523.746667pt;}
.yab{bottom:531.746667pt;}
.y58{bottom:534.946667pt;}
.y96{bottom:541.826667pt;}
.y37{bottom:545.026667pt;}
.y3f{bottom:545.186667pt;}
.yda{bottom:545.346667pt;}
.yc3{bottom:554.146667pt;}
.y102{bottom:555.106667pt;}
.y7b{bottom:556.386667pt;}
.ye4{bottom:557.506667pt;}
.ybb{bottom:557.986667pt;}
.yfe{bottom:558.306667pt;}
.y130{bottom:558.626667pt;}
.y24{bottom:560.386667pt;}
.y125{bottom:568.386667pt;}
.yaa{bottom:568.546667pt;}
.y57{bottom:571.746667pt;}
.y111{bottom:573.826667pt;}
.y95{bottom:578.786667pt;}
.yca{bottom:581.826667pt;}
.y36{bottom:581.986667pt;}
.yd9{bottom:582.306667pt;}
.yd{bottom:585.986667pt;}
.ye3{bottom:590.786667pt;}
.y101{bottom:592.066667pt;}
.yf0{bottom:595.106667pt;}
.yba{bottom:604.546667pt;}
.y8d{bottom:605.186667pt;}
.ye8{bottom:605.346667pt;}
.y7a{bottom:606.306667pt;}
.yfd{bottom:608.386667pt;}
.y56{bottom:608.546667pt;}
.y12f{bottom:609.666667pt;}
.y23{bottom:610.626667pt;}
.y110{bottom:610.786667pt;}
.y94{bottom:615.613333pt;}
.ya9{bottom:618.653333pt;}
.y35{bottom:618.813333pt;}
.ye2{bottom:621.373333pt;}
.y69{bottom:631.933333pt;}
.yef{bottom:632.093333pt;}
.yd8{bottom:632.253333pt;}
.y100{bottom:642.013333pt;}
.ye7{bottom:642.173333pt;}
.y79{bottom:643.293333pt;}
.y55{bottom:645.373333pt;}
.y10f{bottom:647.613333pt;}
.yc{bottom:650.813333pt;}
.ye1{bottom:652.253333pt;}
.y93{bottom:652.413333pt;}
.y8c{bottom:655.453333pt;}
.y34{bottom:655.613333pt;}
.y22{bottom:660.733333pt;}
.yd7{bottom:665.373333pt;}
.y68{bottom:668.893333pt;}
.ye6{bottom:678.973333pt;}
.y78{bottom:680.093333pt;}
.y54{bottom:682.173333pt;}
.y33{bottom:692.413333pt;}
.yb{bottom:694.973333pt;}
.yd6{bottom:696.093333pt;}
.y10e{bottom:697.533333pt;}
.y92{bottom:702.333333pt;}
.ya1{bottom:705.533333pt;}
.y67{bottom:705.693333pt;}
.y21{bottom:710.813333pt;}
.y12e{bottom:711.613333pt;}
.ye5{bottom:715.773333pt;}
.y77{bottom:716.893333pt;}
.yf5{bottom:718.813333pt;}
.y53{bottom:718.973333pt;}
.yd5{bottom:726.813333pt;}
.yff{bottom:729.053333pt;}
.y32{bottom:729.213333pt;}
.ya{bottom:733.373333pt;}
.y10d{bottom:734.493333pt;}
.y11d{bottom:742.333333pt;}
.y66{bottom:742.493333pt;}
.y91{bottom:752.413333pt;}
.y76{bottom:753.693333pt;}
.y52{bottom:755.773333pt;}
.yd4{bottom:757.533333pt;}
.y20{bottom:761.053333pt;}
.y12d{bottom:762.653333pt;}
.ya7{bottom:765.853333pt;}
.y9{bottom:766.013333pt;}
.y3e{bottom:779.133333pt;}
.y65{bottom:779.293333pt;}
.y10c{bottom:784.413333pt;}
.yd3{bottom:788.253333pt;}
.y90{bottom:789.373333pt;}
.y75{bottom:790.493333pt;}
.yb3{bottom:792.413333pt;}
.y51{bottom:792.573333pt;}
.y8{bottom:794.013333pt;}
.y8b{bottom:802.813333pt;}
.y1f{bottom:811.133333pt;}
.y12c{bottom:812.733333pt;}
.y31{bottom:815.933333pt;}
.y3d{bottom:816.093333pt;}
.y10b{bottom:821.413333pt;}
.y74{bottom:827.333333pt;}
.y50{bottom:829.413333pt;}
.y8f{bottom:839.493333pt;}
.y8a{bottom:839.653333pt;}
.ya8{bottom:852.773333pt;}
.y30{bottom:852.933333pt;}
.y10a{bottom:858.213333pt;}
.y1e{bottom:861.253333pt;}
.y12b{bottom:862.853333pt;}
.y73{bottom:864.133333pt;}
.y64{bottom:866.053333pt;}
.y4f{bottom:866.213333pt;}
.y89{bottom:876.453333pt;}
.y8e{bottom:889.573333pt;}
.y2f{bottom:889.733333pt;}
.y72{bottom:900.933333pt;}
.ya6{bottom:902.853333pt;}
.y4e{bottom:903.013333pt;}
.y1d{bottom:911.493333pt;}
.y12a{bottom:913.093333pt;}
.y88{bottom:926.373333pt;}
.y2e{bottom:926.533333pt;}
.y7{bottom:938.693333pt;}
.y124{bottom:939.653333pt;}
.y4d{bottom:939.813333pt;}
.y1c{bottom:959.973333pt;}
.y129{bottom:963.173333pt;}
.y2d{bottom:963.333333pt;}
.yb9{bottom:963.493333pt;}
.y71{bottom:975.653333pt;}
.y4c{bottom:976.613333pt;}
.y6{bottom:986.053333pt;}
.y1b{bottom:1010.853333pt;}
.y2c{bottom:1013.253333pt;}
.y4b{bottom:1013.413333pt;}
.y5{bottom:1018.373333pt;}
.y1{bottom:1061.760000pt;}
.h3{height:16.798667pt;}
.h5{height:40.103437pt;}
.h11{height:45.195937pt;}
.hf{height:50.288438pt;}
.h13{height:51.663750pt;}
.h8{height:52.834688pt;}
.h7{height:54.598989pt;}
.h18{height:55.402500pt;}
.h2{height:58.563750pt;}
.h4{height:61.410000pt;}
.h19{height:62.925000pt;}
.h12{height:63.106875pt;}
.h10{height:65.702812pt;}
.h14{height:66.750000pt;}
.ha{height:70.195312pt;}
.h15{height:74.162500pt;}
.h16{height:74.269167pt;}
.h17{height:74.322500pt;}
.h9{height:74.477812pt;}
.h6{height:78.097500pt;}
.hc{height:79.741875pt;}
.hd{height:100.125000pt;}
.he{height:102.765937pt;}
.hb{height:156.090000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:8.146667pt;}
.w3{width:16.306667pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.x16{left:117.472000pt;}
.x9{left:120.672000pt;}
.x7{left:131.552000pt;}
.x18{left:137.466667pt;}
.x17{left:141.466667pt;}
.x19{left:161.466667pt;}
.x8{left:176.026667pt;}
.xa{left:228.026667pt;}
.x1{left:244.226667pt;}
.x6{left:293.826667pt;}
.xb{left:302.466667pt;}
.x14{left:349.346667pt;}
.x15{left:353.666667pt;}
.x1a{left:363.426667pt;}
.xe{left:365.826667pt;}
.x4{left:397.373333pt;}
.xd{left:401.053333pt;}
.x5{left:500.093333pt;}
.x1d{left:557.413333pt;}
.x1f{left:563.973333pt;}
.xc{left:574.693333pt;}
.x1e{left:621.413333pt;}
.x1b{left:638.373333pt;}
.x3{left:670.853333pt;}
.x1c{left:680.453333pt;}
.x12{left:692.613333pt;}
.xf{left:707.333333pt;}
.x11{left:713.120000pt;}
.x13{left:717.920000pt;}
.x10{left:737.280000pt;}
}




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