
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_36c6446184253fd4db8b0793.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f4d96fb45079a04bf7f6fd41.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3955b517536709e4644a7a0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_12357844663cf2eeb35865a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_87b17bf9a8856542ac83834e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b296f3a88243a12e2df774a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_60802aa8738a0101418b3e2e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.463800px;}
.ls1d{letter-spacing:-0.431400px;}
.ls12{letter-spacing:-0.252000px;}
.ls2e{letter-spacing:-0.234600px;}
.ls14{letter-spacing:-0.214800px;}
.ls1b{letter-spacing:-0.208800px;}
.ls8{letter-spacing:-0.058320px;}
.ls2f{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.023760px;}
.ls28{letter-spacing:0.060480px;}
.lsa{letter-spacing:0.060600px;}
.ls1a{letter-spacing:0.067200px;}
.ls23{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.174000px;}
.ls1c{letter-spacing:0.174240px;}
.ls27{letter-spacing:0.179280px;}
.ls30{letter-spacing:0.186600px;}
.ls2a{letter-spacing:0.220200px;}
.ls2c{letter-spacing:0.220320px;}
.ls15{letter-spacing:0.314400px;}
.ls9{letter-spacing:0.393600px;}
.ls24{letter-spacing:0.479400px;}
.ls2b{letter-spacing:0.479520px;}
.ls2d{letter-spacing:0.780480px;}
.lse{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.334240px;}
.ls1f{letter-spacing:3.054240px;}
.ls1e{letter-spacing:3.774240px;}
.ls25{letter-spacing:5.214240px;}
.ls17{letter-spacing:8.814240px;}
.ls22{letter-spacing:9.534240px;}
.ls16{letter-spacing:10.254240px;}
.ls21{letter-spacing:11.469600px;}
.ls29{letter-spacing:12.186720px;}
.ls3{letter-spacing:12.414240px;}
.ls7{letter-spacing:21.054240px;}
.ls19{letter-spacing:37.386720px;}
.lsf{letter-spacing:38.826720px;}
.ls11{letter-spacing:41.706720px;}
.ls26{letter-spacing:42.426720px;}
.ls18{letter-spacing:43.866720px;}
.lsb{letter-spacing:46.026720px;}
.ls10{letter-spacing:46.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws5{word-spacing:-13.899360px;}
.ws9{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.725960px;}
.ws11{word-spacing:-13.692360px;}
.wsc{word-spacing:-13.646160px;}
.wsa{word-spacing:-13.572960px;}
.ws7{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.464720px;}
.ws4{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.296960px;}
.ws8{word-spacing:-13.290960px;}
.wse{word-spacing:-13.271160px;}
.ws6{word-spacing:-8.534880px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.177760px;}
._7{margin-left:-4.788000px;}
._6{margin-left:-3.312000px;}
._12{margin-left:-2.268000px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:2.852640px;}
._11{width:3.853200px;}
._c{width:5.079600px;}
._d{width:6.095520px;}
._f{width:7.550400px;}
._9{width:8.644560px;}
._8{width:9.810720px;}
._e{width:11.315280px;}
._a{width:12.469200px;}
._10{width:14.892960px;}
._13{width:15.936240px;}
._17{width:17.834160px;}
._16{width:18.884160px;}
._14{width:19.939920px;}
._15{width:21.981120px;}
._1f{width:23.306400px;}
._22{width:29.304240px;}
._21{width:31.314240px;}
._20{width:32.569200px;}
._18{width:88.710240px;}
._19{width:114.078240px;}
._1a{width:189.132480px;}
._1b{width:202.638240px;}
._1e{width:242.565840px;}
._1c{width:261.987840px;}
._1d{width:293.720400px;}
.fc8{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc3{color:rgb(6,4,4);}
.fc2{color:rgb(0,0,255);}
.fc7{color:rgb(35,31,32);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(1,2,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:7.200000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:6.480000px;}
.ya2{bottom:6.660000px;}
.ya4{bottom:6.690000px;}
.yd5{bottom:6.705000px;}
.yc9{bottom:7.380000px;}
.y12d{bottom:9.540000px;}
.y134{bottom:11.700000px;}
.y131{bottom:12.420000px;}
.y13b{bottom:13.680000px;}
.yfe{bottom:17.145000px;}
.y126{bottom:17.280000px;}
.ydf{bottom:17.460000px;}
.ye2{bottom:17.640000px;}
.y129{bottom:20.910000px;}
.y137{bottom:25.020000px;}
.y14f{bottom:25.200000px;}
.ycc{bottom:27.720000px;}
.ycd{bottom:27.750000px;}
.yfd{bottom:27.765000px;}
.y13d{bottom:28.440000px;}
.yc8{bottom:28.470000px;}
.y10c{bottom:28.800000px;}
.y12b{bottom:31.350000px;}
.y130{bottom:33.480000px;}
.y139{bottom:35.640000px;}
.y10e{bottom:39.240000px;}
.y128{bottom:41.970000px;}
.y136{bottom:46.080000px;}
.y14e{bottom:46.260000px;}
.ycb{bottom:48.780000px;}
.yc7{bottom:49.530000px;}
.y10b{bottom:49.860000px;}
.y100{bottom:50.220000px;}
.y105{bottom:50.400000px;}
.y12f{bottom:54.540000px;}
.y6{bottom:61.560000px;}
.yc6{bottom:70.590000px;}
.y10a{bottom:86.940000px;}
.ya0{bottom:91.080000px;}
.y198{bottom:91.260000px;}
.yc5{bottom:91.650000px;}
.ycf{bottom:93.240000px;}
.y17a{bottom:97.380000px;}
.y84{bottom:106.380000px;}
.y110{bottom:108.720000px;}
.y9f{bottom:112.140000px;}
.y197{bottom:112.320000px;}
.yce{bottom:114.300000px;}
.y64{bottom:115.380000px;}
.y31{bottom:116.820000px;}
.y179{bottom:118.440000px;}
.y83{bottom:127.440000px;}
.yc4{bottom:129.420000px;}
.y14b{bottom:129.600000px;}
.y10f{bottom:130.500000px;}
.y9e{bottom:133.200000px;}
.y196{bottom:133.380000px;}
.y63{bottom:136.440000px;}
.y30{bottom:137.880000px;}
.y178{bottom:139.500000px;}
.y82{bottom:148.500000px;}
.y14a{bottom:150.660000px;}
.y10d{bottom:152.310000px;}
.y9d{bottom:154.290000px;}
.y195{bottom:154.470000px;}
.y62{bottom:157.530000px;}
.y2f{bottom:158.970000px;}
.y177{bottom:160.590000px;}
.y81{bottom:169.590000px;}
.y149{bottom:171.750000px;}
.yca{bottom:172.290000px;}
.y104{bottom:174.090000px;}
.y9c{bottom:175.350000px;}
.y194{bottom:175.530000px;}
.y61{bottom:178.590000px;}
.y2e{bottom:180.030000px;}
.y176{bottom:181.650000px;}
.y80{bottom:190.650000px;}
.y148{bottom:192.810000px;}
.y109{bottom:196.050000px;}
.y193{bottom:196.590000px;}
.y60{bottom:199.650000px;}
.y2d{bottom:201.090000px;}
.y175{bottom:202.710000px;}
.y7f{bottom:211.710000px;}
.yae{bottom:212.430000px;}
.y147{bottom:213.870000px;}
.y192{bottom:217.650000px;}
.y108{bottom:217.830000px;}
.y5f{bottom:220.710000px;}
.y2c{bottom:222.150000px;}
.y174{bottom:223.770000px;}
.y7e{bottom:232.770000px;}
.yad{bottom:234.210000px;}
.y146{bottom:234.930000px;}
.y191{bottom:238.710000px;}
.y107{bottom:239.610000px;}
.y5e{bottom:241.770000px;}
.yc3{bottom:242.850000px;}
.y2b{bottom:243.210000px;}
.y173{bottom:244.830000px;}
.y7d{bottom:253.830000px;}
.yac{bottom:255.990000px;}
.y190{bottom:259.770000px;}
.y106{bottom:261.390000px;}
.y5d{bottom:262.830000px;}
.yc2{bottom:263.910000px;}
.y2a{bottom:264.270000px;}
.y172{bottom:265.890000px;}
.y7c{bottom:274.890000px;}
.y145{bottom:277.050000px;}
.yab{bottom:277.770000px;}
.y18f{bottom:280.830000px;}
.yff{bottom:283.170000px;}
.y5c{bottom:283.890000px;}
.yc1{bottom:284.970000px;}
.y29{bottom:285.330000px;}
.y171{bottom:286.950000px;}
.y7b{bottom:295.950000px;}
.y144{bottom:298.110000px;}
.yaa{bottom:299.550000px;}
.y18e{bottom:301.890000px;}
.y5b{bottom:304.950000px;}
.yc0{bottom:306.030000px;}
.y28{bottom:306.390000px;}
.y170{bottom:308.010000px;}
.y7a{bottom:317.010000px;}
.y143{bottom:319.170000px;}
.ya9{bottom:321.330000px;}
.y18d{bottom:322.950000px;}
.y5a{bottom:326.010000px;}
.y103{bottom:326.730000px;}
.ybf{bottom:327.090000px;}
.y27{bottom:327.450000px;}
.y16f{bottom:329.070000px;}
.y79{bottom:338.070000px;}
.y142{bottom:340.230000px;}
.y18c{bottom:344.010000px;}
.y59{bottom:347.070000px;}
.ybe{bottom:348.150000px;}
.y26{bottom:348.510000px;}
.y102{bottom:348.690000px;}
.y9b{bottom:349.950000px;}
.y16e{bottom:350.130000px;}
.y141{bottom:361.290000px;}
.y18b{bottom:365.070000px;}
.y78{bottom:368.130000px;}
.ybd{bottom:369.210000px;}
.y25{bottom:369.570000px;}
.y101{bottom:370.470000px;}
.y9a{bottom:371.010000px;}
.y16d{bottom:371.190000px;}
.y58{bottom:377.130000px;}
.y140{bottom:382.350000px;}
.y18a{bottom:386.130000px;}
.y77{bottom:389.190000px;}
.ybc{bottom:390.270000px;}
.y24{bottom:390.630000px;}
.y99{bottom:392.070000px;}
.yfc{bottom:392.250000px;}
.y57{bottom:398.190000px;}
.y13f{bottom:403.455000px;}
.y189{bottom:407.235000px;}
.y76{bottom:410.295000px;}
.ybb{bottom:411.375000px;}
.y23{bottom:411.555000px;}
.y98{bottom:413.175000px;}
.y16c{bottom:413.355000px;}
.y13c{bottom:418.575000px;}
.y56{bottom:419.295000px;}
.ydc{bottom:426.495000px;}
.y188{bottom:428.295000px;}
.y75{bottom:431.355000px;}
.y22{bottom:432.615000px;}
.y97{bottom:434.235000px;}
.y16b{bottom:434.415000px;}
.y55{bottom:440.355000px;}
.yfb{bottom:441.795000px;}
.ydb{bottom:448.455000px;}
.y187{bottom:449.355000px;}
.y74{bottom:452.415000px;}
.y21{bottom:453.675000px;}
.y96{bottom:455.295000px;}
.y16a{bottom:455.475000px;}
.y54{bottom:461.415000px;}
.y13e{bottom:462.315000px;}
.yfa{bottom:462.855000px;}
.y186{bottom:470.415000px;}
.y73{bottom:473.475000px;}
.y20{bottom:474.735000px;}
.y95{bottom:476.355000px;}
.y169{bottom:476.535000px;}
.y53{bottom:482.475000px;}
.yf9{bottom:483.915000px;}
.y135{bottom:484.095000px;}
.yda{bottom:491.295000px;}
.y185{bottom:491.475000px;}
.y72{bottom:494.535000px;}
.y1f{bottom:495.795000px;}
.y94{bottom:497.415000px;}
.y168{bottom:497.595000px;}
.y52{bottom:503.535000px;}
.yf8{bottom:504.975000px;}
.y184{bottom:512.535000px;}
.y71{bottom:515.595000px;}
.y1e{bottom:516.855000px;}
.y93{bottom:518.475000px;}
.y167{bottom:518.655000px;}
.y13a{bottom:520.095000px;}
.y51{bottom:524.595000px;}
.yf7{bottom:526.035000px;}
.ya8{bottom:533.595000px;}
.yd9{bottom:534.135000px;}
.y70{bottom:536.655000px;}
.y1d{bottom:537.915000px;}
.y166{bottom:539.715000px;}
.y138{bottom:541.875000px;}
.y50{bottom:545.655000px;}
.yf6{bottom:547.095000px;}
.y183{bottom:554.655000px;}
.ya7{bottom:555.375000px;}
.y6f{bottom:557.715000px;}
.y1c{bottom:558.975000px;}
.y165{bottom:560.775000px;}
.y12e{bottom:563.835000px;}
.y4f{bottom:566.715000px;}
.yf5{bottom:568.155000px;}
.y182{bottom:575.715000px;}
.yd8{bottom:576.975000px;}
.ya6{bottom:577.155000px;}
.y6e{bottom:578.775000px;}
.y1b{bottom:580.035000px;}
.y164{bottom:581.835000px;}
.y4e{bottom:587.775000px;}
.yf4{bottom:589.215000px;}
.y133{bottom:595.695000px;}
.y181{bottom:596.775000px;}
.yd7{bottom:598.755000px;}
.ya5{bottom:598.935000px;}
.y6d{bottom:599.835000px;}
.y1a{bottom:601.095000px;}
.y163{bottom:602.895000px;}
.y4d{bottom:608.835000px;}
.yf3{bottom:610.275000px;}
.y132{bottom:617.475000px;}
.y180{bottom:617.835000px;}
.y6c{bottom:620.895000px;}
.y19{bottom:622.155000px;}
.y162{bottom:623.955000px;}
.y4c{bottom:629.895000px;}
.yf2{bottom:631.335000px;}
.y17f{bottom:638.895000px;}
.y127{bottom:639.255000px;}
.yd6{bottom:641.595000px;}
.y6b{bottom:641.775000px;}
.ya3{bottom:642.675000px;}
.y18{bottom:643.215000px;}
.y161{bottom:645.015000px;}
.y4b{bottom:650.805000px;}
.yf1{bottom:652.425000px;}
.y17e{bottom:659.805000px;}
.y6a{bottom:662.865000px;}
.y17{bottom:664.305000px;}
.ya1{bottom:664.485000px;}
.y160{bottom:666.105000px;}
.y12c{bottom:666.825000px;}
.yba{bottom:670.245000px;}
.y4a{bottom:671.865000px;}
.yf0{bottom:673.485000px;}
.y17d{bottom:680.865000px;}
.y69{bottom:683.925000px;}
.y16{bottom:685.365000px;}
.y15f{bottom:687.165000px;}
.y12a{bottom:688.605000px;}
.yb9{bottom:691.305000px;}
.y49{bottom:692.925000px;}
.yef{bottom:694.545000px;}
.y17c{bottom:701.925000px;}
.y15{bottom:706.425000px;}
.y15e{bottom:708.225000px;}
.y125{bottom:710.385000px;}
.yb8{bottom:712.365000px;}
.y48{bottom:713.985000px;}
.yee{bottom:715.605000px;}
.y17b{bottom:722.985000px;}
.y14{bottom:727.485000px;}
.yb7{bottom:733.425000px;}
.y68{bottom:735.045000px;}
.yed{bottom:736.665000px;}
.y15d{bottom:738.285000px;}
.y47{bottom:744.045000px;}
.y13{bottom:748.545000px;}
.yb6{bottom:754.485000px;}
.y67{bottom:756.105000px;}
.yec{bottom:757.725000px;}
.y15c{bottom:759.345000px;}
.y124{bottom:759.885000px;}
.y46{bottom:765.105000px;}
.y12{bottom:769.605000px;}
.yb5{bottom:775.545000px;}
.y66{bottom:777.165000px;}
.yeb{bottom:778.785000px;}
.y15b{bottom:780.225000px;}
.y123{bottom:780.945000px;}
.y45{bottom:786.165000px;}
.y11{bottom:790.665000px;}
.yb4{bottom:796.605000px;}
.y65{bottom:798.225000px;}
.yea{bottom:799.845000px;}
.y15a{bottom:801.285000px;}
.y122{bottom:802.005000px;}
.y44{bottom:807.225000px;}
.y10{bottom:811.725000px;}
.yb3{bottom:817.665000px;}
.y92{bottom:819.285000px;}
.ye9{bottom:820.905000px;}
.y159{bottom:822.345000px;}
.y121{bottom:823.065000px;}
.y43{bottom:828.285000px;}
.yf{bottom:832.785000px;}
.yb2{bottom:838.725000px;}
.y91{bottom:840.345000px;}
.ye8{bottom:841.965000px;}
.y120{bottom:844.125000px;}
.y42{bottom:849.345000px;}
.y158{bottom:852.405000px;}
.ye{bottom:853.845000px;}
.ye6{bottom:857.085000px;}
.yb1{bottom:859.785000px;}
.y90{bottom:861.405000px;}
.y11f{bottom:865.185000px;}
.y41{bottom:870.405000px;}
.y157{bottom:873.465000px;}
.yd{bottom:874.905000px;}
.ye7{bottom:878.865000px;}
.yb0{bottom:880.845000px;}
.y8f{bottom:882.465000px;}
.y11e{bottom:886.245000px;}
.y40{bottom:891.465000px;}
.y156{bottom:894.525000px;}
.yc{bottom:895.965000px;}
.ye4{bottom:900.690000px;}
.y8e{bottom:903.570000px;}
.y11d{bottom:907.350000px;}
.y3f{bottom:912.570000px;}
.y155{bottom:915.630000px;}
.yb{bottom:917.070000px;}
.yd4{bottom:917.790000px;}
.ye5{bottom:922.470000px;}
.y8d{bottom:924.630000px;}
.y11c{bottom:928.410000px;}
.y3e{bottom:933.630000px;}
.y154{bottom:936.690000px;}
.ya{bottom:939.030000px;}
.yd3{bottom:939.570000px;}
.ye1{bottom:944.250000px;}
.y8c{bottom:945.690000px;}
.y11b{bottom:949.470000px;}
.y3d{bottom:954.690000px;}
.y153{bottom:957.750000px;}
.y9{bottom:961.350000px;}
.ye3{bottom:966.210000px;}
.y8b{bottom:966.750000px;}
.y11a{bottom:970.530000px;}
.y3c{bottom:975.750000px;}
.y152{bottom:978.810000px;}
.yd2{bottom:983.130000px;}
.y8{bottom:986.550000px;}
.y8a{bottom:987.810000px;}
.yde{bottom:987.990000px;}
.y119{bottom:991.590000px;}
.y3b{bottom:996.810000px;}
.y151{bottom:999.870000px;}
.yd1{bottom:1005.090000px;}
.y89{bottom:1008.870000px;}
.ye0{bottom:1009.770000px;}
.y118{bottom:1012.650000px;}
.y3a{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.y150{bottom:1020.930000px;}
.yd0{bottom:1026.870000px;}
.y88{bottom:1029.930000px;}
.ydd{bottom:1031.550000px;}
.y117{bottom:1033.710000px;}
.y14d{bottom:1036.050000px;}
.y39{bottom:1038.930000px;}
.y112{bottom:1048.830000px;}
.y87{bottom:1050.990000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y116{bottom:1070.610000px;}
.y86{bottom:1072.050000px;}
.y37{bottom:1081.050000px;}
.y115{bottom:1092.390000px;}
.y4{bottom:1092.570000px;}
.y85{bottom:1093.110000px;}
.y36{bottom:1102.110000px;}
.y114{bottom:1114.350000px;}
.y14c{bottom:1115.790000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y113{bottom:1136.130000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1156.860000px;}
.y111{bottom:1157.940000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.hc{height:20.880000px;}
.ha{height:21.060000px;}
.hb{height:21.096000px;}
.h18{height:26.856000px;}
.h1a{height:31.140000px;}
.h1c{height:35.280000px;}
.h10{height:42.120000px;}
.hf{height:42.156000px;}
.h11{height:42.840000px;}
.h13{height:42.876000px;}
.h12{height:43.020000px;}
.h9{height:48.088125px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h8{height:59.551172px;}
.h5{height:61.189805px;}
.he{height:63.180000px;}
.h1d{height:64.800000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h17{height:70.416000px;}
.h19{height:74.700000px;}
.h1b{height:78.840000px;}
.h1e{height:79.020000px;}
.h15{height:86.436000px;}
.h4{height:98.051133px;}
.hd{height:106.056000px;}
.h14{height:108.360000px;}
.h16{height:108.396000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:68.796000px;}
.w20{width:70.236000px;}
.w22{width:71.496000px;}
.w4{width:74.880000px;}
.w1b{width:75.420000px;}
.w10{width:80.136000px;}
.w1a{width:85.896000px;}
.w16{width:87.696000px;}
.wd{width:89.496000px;}
.w15{width:90.180000px;}
.w14{width:90.216000px;}
.w21{width:91.800000px;}
.w26{width:95.940000px;}
.w27{width:95.976000px;}
.w25{width:101.916000px;}
.w7{width:112.536000px;}
.w23{width:116.820000px;}
.w13{width:117.720000px;}
.w29{width:123.480000px;}
.w5{width:127.116000px;}
.w18{width:129.420000px;}
.w2a{width:129.636000px;}
.w11{width:137.196000px;}
.w1e{width:137.340000px;}
.w1d{width:137.880000px;}
.w28{width:138.060000px;}
.w19{width:146.376000px;}
.w17{width:154.290000px;}
.w8{width:172.470000px;}
.we{width:178.590000px;}
.w1f{width:185.430000px;}
.w12{width:195.195000px;}
.wa{width:207.390000px;}
.wb{width:208.110000px;}
.w9{width:226.110000px;}
.w24{width:253.830000px;}
.w6{width:497.085000px;}
.wc{width:514.185000px;}
.wf{width:564.945000px;}
.w3{width:580.290000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x6{left:34.776000px;}
.x1{left:53.999987px;}
.x2b{left:60.839987px;}
.x2{left:69.479987px;}
.x14{left:77.040000px;}
.x4{left:80.999987px;}
.x25{left:102.276000px;}
.x3{left:108.035987px;}
.x1a{left:122.796000px;}
.xc{left:124.956000px;}
.x5{left:136.475987px;}
.xf{left:162.029987px;}
.x2a{left:226.470000px;}
.x20{left:246.090000px;}
.x1b{left:252.930000px;}
.x15{left:272.955000px;}
.xd{left:351.975000px;}
.x26{left:356.835000px;}
.x16{left:391.395000px;}
.x1c{left:400.035000px;}
.x21{left:432.435000px;}
.x27{left:459.465000px;}
.x17{left:482.325000px;}
.x1d{left:486.645000px;}
.x22{left:503.565000px;}
.xa{left:552.705000px;}
.x28{left:556.125000px;}
.xe{left:560.085000px;}
.x1e{left:562.785000px;}
.x10{left:569.625000px;}
.x18{left:573.405000px;}
.x23{left:596.085000px;}
.x12{left:620.385000px;}
.x1f{left:632.310000px;}
.x7{left:635.730000px;}
.x29{left:652.830000px;}
.x11{left:659.850000px;}
.x19{left:661.830000px;}
.xb{left:665.970000px;}
.x24{left:668.310000px;}
.x13{left:701.250000px;}
.x9{left:711.330000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1d{letter-spacing:-0.383467pt;}
.ls12{letter-spacing:-0.224000pt;}
.ls2e{letter-spacing:-0.208533pt;}
.ls14{letter-spacing:-0.190933pt;}
.ls1b{letter-spacing:-0.185600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls2f{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.021120pt;}
.ls28{letter-spacing:0.053760pt;}
.lsa{letter-spacing:0.053867pt;}
.ls1a{letter-spacing:0.059733pt;}
.ls23{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.154667pt;}
.ls1c{letter-spacing:0.154880pt;}
.ls27{letter-spacing:0.159360pt;}
.ls30{letter-spacing:0.165867pt;}
.ls2a{letter-spacing:0.195733pt;}
.ls2c{letter-spacing:0.195840pt;}
.ls15{letter-spacing:0.279467pt;}
.ls9{letter-spacing:0.349867pt;}
.ls24{letter-spacing:0.426133pt;}
.ls2b{letter-spacing:0.426240pt;}
.ls2d{letter-spacing:0.693760pt;}
.lse{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls20{letter-spacing:2.074880pt;}
.ls1f{letter-spacing:2.714880pt;}
.ls1e{letter-spacing:3.354880pt;}
.ls25{letter-spacing:4.634880pt;}
.ls17{letter-spacing:7.834880pt;}
.ls22{letter-spacing:8.474880pt;}
.ls16{letter-spacing:9.114880pt;}
.ls21{letter-spacing:10.195200pt;}
.ls29{letter-spacing:10.832640pt;}
.ls3{letter-spacing:11.034880pt;}
.ls7{letter-spacing:18.714880pt;}
.ls19{letter-spacing:33.232640pt;}
.lsf{letter-spacing:34.512640pt;}
.ls11{letter-spacing:37.072640pt;}
.ls26{letter-spacing:37.712640pt;}
.ls18{letter-spacing:38.992640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls10{letter-spacing:41.040640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.354987pt;}
.ws9{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.200853pt;}
.ws11{word-spacing:-12.170987pt;}
.wsc{word-spacing:-12.129920pt;}
.wsa{word-spacing:-12.064853pt;}
.ws7{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.968640pt;}
.ws4{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.819520pt;}
.ws8{word-spacing:-11.814187pt;}
.wse{word-spacing:-11.796587pt;}
.ws6{word-spacing:-7.586560pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-516.602453pt;}
._7{margin-left:-4.256000pt;}
._6{margin-left:-2.944000pt;}
._12{margin-left:-2.016000pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.535680pt;}
._11{width:3.425067pt;}
._c{width:4.515200pt;}
._d{width:5.418240pt;}
._f{width:6.711467pt;}
._9{width:7.684053pt;}
._8{width:8.720640pt;}
._e{width:10.058027pt;}
._a{width:11.083733pt;}
._10{width:13.238187pt;}
._13{width:14.165547pt;}
._17{width:15.852587pt;}
._16{width:16.785920pt;}
._14{width:17.724373pt;}
._15{width:19.538773pt;}
._1f{width:20.716800pt;}
._22{width:26.048213pt;}
._21{width:27.834880pt;}
._20{width:28.950400pt;}
._18{width:78.853547pt;}
._19{width:101.402880pt;}
._1a{width:168.117760pt;}
._1b{width:180.122880pt;}
._1e{width:215.614080pt;}
._1c{width:232.878080pt;}
._1d{width:261.084800pt;}
.fs5{font-size:6.400000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:5.760000pt;}
.ya2{bottom:5.920000pt;}
.ya4{bottom:5.946667pt;}
.yd5{bottom:5.960000pt;}
.yc9{bottom:6.560000pt;}
.y12d{bottom:8.480000pt;}
.y134{bottom:10.400000pt;}
.y131{bottom:11.040000pt;}
.y13b{bottom:12.160000pt;}
.yfe{bottom:15.240000pt;}
.y126{bottom:15.360000pt;}
.ydf{bottom:15.520000pt;}
.ye2{bottom:15.680000pt;}
.y129{bottom:18.586667pt;}
.y137{bottom:22.240000pt;}
.y14f{bottom:22.400000pt;}
.ycc{bottom:24.640000pt;}
.ycd{bottom:24.666667pt;}
.yfd{bottom:24.680000pt;}
.y13d{bottom:25.280000pt;}
.yc8{bottom:25.306667pt;}
.y10c{bottom:25.600000pt;}
.y12b{bottom:27.866667pt;}
.y130{bottom:29.760000pt;}
.y139{bottom:31.680000pt;}
.y10e{bottom:34.880000pt;}
.y128{bottom:37.306667pt;}
.y136{bottom:40.960000pt;}
.y14e{bottom:41.120000pt;}
.ycb{bottom:43.360000pt;}
.yc7{bottom:44.026667pt;}
.y10b{bottom:44.320000pt;}
.y100{bottom:44.640000pt;}
.y105{bottom:44.800000pt;}
.y12f{bottom:48.480000pt;}
.y6{bottom:54.720000pt;}
.yc6{bottom:62.746667pt;}
.y10a{bottom:77.280000pt;}
.ya0{bottom:80.960000pt;}
.y198{bottom:81.120000pt;}
.yc5{bottom:81.466667pt;}
.ycf{bottom:82.880000pt;}
.y17a{bottom:86.560000pt;}
.y84{bottom:94.560000pt;}
.y110{bottom:96.640000pt;}
.y9f{bottom:99.680000pt;}
.y197{bottom:99.840000pt;}
.yce{bottom:101.600000pt;}
.y64{bottom:102.560000pt;}
.y31{bottom:103.840000pt;}
.y179{bottom:105.280000pt;}
.y83{bottom:113.280000pt;}
.yc4{bottom:115.040000pt;}
.y14b{bottom:115.200000pt;}
.y10f{bottom:116.000000pt;}
.y9e{bottom:118.400000pt;}
.y196{bottom:118.560000pt;}
.y63{bottom:121.280000pt;}
.y30{bottom:122.560000pt;}
.y178{bottom:124.000000pt;}
.y82{bottom:132.000000pt;}
.y14a{bottom:133.920000pt;}
.y10d{bottom:135.386667pt;}
.y9d{bottom:137.146667pt;}
.y195{bottom:137.306667pt;}
.y62{bottom:140.026667pt;}
.y2f{bottom:141.306667pt;}
.y177{bottom:142.746667pt;}
.y81{bottom:150.746667pt;}
.y149{bottom:152.666667pt;}
.yca{bottom:153.146667pt;}
.y104{bottom:154.746667pt;}
.y9c{bottom:155.866667pt;}
.y194{bottom:156.026667pt;}
.y61{bottom:158.746667pt;}
.y2e{bottom:160.026667pt;}
.y176{bottom:161.466667pt;}
.y80{bottom:169.466667pt;}
.y148{bottom:171.386667pt;}
.y109{bottom:174.266667pt;}
.y193{bottom:174.746667pt;}
.y60{bottom:177.466667pt;}
.y2d{bottom:178.746667pt;}
.y175{bottom:180.186667pt;}
.y7f{bottom:188.186667pt;}
.yae{bottom:188.826667pt;}
.y147{bottom:190.106667pt;}
.y192{bottom:193.466667pt;}
.y108{bottom:193.626667pt;}
.y5f{bottom:196.186667pt;}
.y2c{bottom:197.466667pt;}
.y174{bottom:198.906667pt;}
.y7e{bottom:206.906667pt;}
.yad{bottom:208.186667pt;}
.y146{bottom:208.826667pt;}
.y191{bottom:212.186667pt;}
.y107{bottom:212.986667pt;}
.y5e{bottom:214.906667pt;}
.yc3{bottom:215.866667pt;}
.y2b{bottom:216.186667pt;}
.y173{bottom:217.626667pt;}
.y7d{bottom:225.626667pt;}
.yac{bottom:227.546667pt;}
.y190{bottom:230.906667pt;}
.y106{bottom:232.346667pt;}
.y5d{bottom:233.626667pt;}
.yc2{bottom:234.586667pt;}
.y2a{bottom:234.906667pt;}
.y172{bottom:236.346667pt;}
.y7c{bottom:244.346667pt;}
.y145{bottom:246.266667pt;}
.yab{bottom:246.906667pt;}
.y18f{bottom:249.626667pt;}
.yff{bottom:251.706667pt;}
.y5c{bottom:252.346667pt;}
.yc1{bottom:253.306667pt;}
.y29{bottom:253.626667pt;}
.y171{bottom:255.066667pt;}
.y7b{bottom:263.066667pt;}
.y144{bottom:264.986667pt;}
.yaa{bottom:266.266667pt;}
.y18e{bottom:268.346667pt;}
.y5b{bottom:271.066667pt;}
.yc0{bottom:272.026667pt;}
.y28{bottom:272.346667pt;}
.y170{bottom:273.786667pt;}
.y7a{bottom:281.786667pt;}
.y143{bottom:283.706667pt;}
.ya9{bottom:285.626667pt;}
.y18d{bottom:287.066667pt;}
.y5a{bottom:289.786667pt;}
.y103{bottom:290.426667pt;}
.ybf{bottom:290.746667pt;}
.y27{bottom:291.066667pt;}
.y16f{bottom:292.506667pt;}
.y79{bottom:300.506667pt;}
.y142{bottom:302.426667pt;}
.y18c{bottom:305.786667pt;}
.y59{bottom:308.506667pt;}
.ybe{bottom:309.466667pt;}
.y26{bottom:309.786667pt;}
.y102{bottom:309.946667pt;}
.y9b{bottom:311.066667pt;}
.y16e{bottom:311.226667pt;}
.y141{bottom:321.146667pt;}
.y18b{bottom:324.506667pt;}
.y78{bottom:327.226667pt;}
.ybd{bottom:328.186667pt;}
.y25{bottom:328.506667pt;}
.y101{bottom:329.306667pt;}
.y9a{bottom:329.786667pt;}
.y16d{bottom:329.946667pt;}
.y58{bottom:335.226667pt;}
.y140{bottom:339.866667pt;}
.y18a{bottom:343.226667pt;}
.y77{bottom:345.946667pt;}
.ybc{bottom:346.906667pt;}
.y24{bottom:347.226667pt;}
.y99{bottom:348.506667pt;}
.yfc{bottom:348.666667pt;}
.y57{bottom:353.946667pt;}
.y13f{bottom:358.626667pt;}
.y189{bottom:361.986667pt;}
.y76{bottom:364.706667pt;}
.ybb{bottom:365.666667pt;}
.y23{bottom:365.826667pt;}
.y98{bottom:367.266667pt;}
.y16c{bottom:367.426667pt;}
.y13c{bottom:372.066667pt;}
.y56{bottom:372.706667pt;}
.ydc{bottom:379.106667pt;}
.y188{bottom:380.706667pt;}
.y75{bottom:383.426667pt;}
.y22{bottom:384.546667pt;}
.y97{bottom:385.986667pt;}
.y16b{bottom:386.146667pt;}
.y55{bottom:391.426667pt;}
.yfb{bottom:392.706667pt;}
.ydb{bottom:398.626667pt;}
.y187{bottom:399.426667pt;}
.y74{bottom:402.146667pt;}
.y21{bottom:403.266667pt;}
.y96{bottom:404.706667pt;}
.y16a{bottom:404.866667pt;}
.y54{bottom:410.146667pt;}
.y13e{bottom:410.946667pt;}
.yfa{bottom:411.426667pt;}
.y186{bottom:418.146667pt;}
.y73{bottom:420.866667pt;}
.y20{bottom:421.986667pt;}
.y95{bottom:423.426667pt;}
.y169{bottom:423.586667pt;}
.y53{bottom:428.866667pt;}
.yf9{bottom:430.146667pt;}
.y135{bottom:430.306667pt;}
.yda{bottom:436.706667pt;}
.y185{bottom:436.866667pt;}
.y72{bottom:439.586667pt;}
.y1f{bottom:440.706667pt;}
.y94{bottom:442.146667pt;}
.y168{bottom:442.306667pt;}
.y52{bottom:447.586667pt;}
.yf8{bottom:448.866667pt;}
.y184{bottom:455.586667pt;}
.y71{bottom:458.306667pt;}
.y1e{bottom:459.426667pt;}
.y93{bottom:460.866667pt;}
.y167{bottom:461.026667pt;}
.y13a{bottom:462.306667pt;}
.y51{bottom:466.306667pt;}
.yf7{bottom:467.586667pt;}
.ya8{bottom:474.306667pt;}
.yd9{bottom:474.786667pt;}
.y70{bottom:477.026667pt;}
.y1d{bottom:478.146667pt;}
.y166{bottom:479.746667pt;}
.y138{bottom:481.666667pt;}
.y50{bottom:485.026667pt;}
.yf6{bottom:486.306667pt;}
.y183{bottom:493.026667pt;}
.ya7{bottom:493.666667pt;}
.y6f{bottom:495.746667pt;}
.y1c{bottom:496.866667pt;}
.y165{bottom:498.466667pt;}
.y12e{bottom:501.186667pt;}
.y4f{bottom:503.746667pt;}
.yf5{bottom:505.026667pt;}
.y182{bottom:511.746667pt;}
.yd8{bottom:512.866667pt;}
.ya6{bottom:513.026667pt;}
.y6e{bottom:514.466667pt;}
.y1b{bottom:515.586667pt;}
.y164{bottom:517.186667pt;}
.y4e{bottom:522.466667pt;}
.yf4{bottom:523.746667pt;}
.y133{bottom:529.506667pt;}
.y181{bottom:530.466667pt;}
.yd7{bottom:532.226667pt;}
.ya5{bottom:532.386667pt;}
.y6d{bottom:533.186667pt;}
.y1a{bottom:534.306667pt;}
.y163{bottom:535.906667pt;}
.y4d{bottom:541.186667pt;}
.yf3{bottom:542.466667pt;}
.y132{bottom:548.866667pt;}
.y180{bottom:549.186667pt;}
.y6c{bottom:551.906667pt;}
.y19{bottom:553.026667pt;}
.y162{bottom:554.626667pt;}
.y4c{bottom:559.906667pt;}
.yf2{bottom:561.186667pt;}
.y17f{bottom:567.906667pt;}
.y127{bottom:568.226667pt;}
.yd6{bottom:570.306667pt;}
.y6b{bottom:570.466667pt;}
.ya3{bottom:571.266667pt;}
.y18{bottom:571.746667pt;}
.y161{bottom:573.346667pt;}
.y4b{bottom:578.493333pt;}
.yf1{bottom:579.933333pt;}
.y17e{bottom:586.493333pt;}
.y6a{bottom:589.213333pt;}
.y17{bottom:590.493333pt;}
.ya1{bottom:590.653333pt;}
.y160{bottom:592.093333pt;}
.y12c{bottom:592.733333pt;}
.yba{bottom:595.773333pt;}
.y4a{bottom:597.213333pt;}
.yf0{bottom:598.653333pt;}
.y17d{bottom:605.213333pt;}
.y69{bottom:607.933333pt;}
.y16{bottom:609.213333pt;}
.y15f{bottom:610.813333pt;}
.y12a{bottom:612.093333pt;}
.yb9{bottom:614.493333pt;}
.y49{bottom:615.933333pt;}
.yef{bottom:617.373333pt;}
.y17c{bottom:623.933333pt;}
.y15{bottom:627.933333pt;}
.y15e{bottom:629.533333pt;}
.y125{bottom:631.453333pt;}
.yb8{bottom:633.213333pt;}
.y48{bottom:634.653333pt;}
.yee{bottom:636.093333pt;}
.y17b{bottom:642.653333pt;}
.y14{bottom:646.653333pt;}
.yb7{bottom:651.933333pt;}
.y68{bottom:653.373333pt;}
.yed{bottom:654.813333pt;}
.y15d{bottom:656.253333pt;}
.y47{bottom:661.373333pt;}
.y13{bottom:665.373333pt;}
.yb6{bottom:670.653333pt;}
.y67{bottom:672.093333pt;}
.yec{bottom:673.533333pt;}
.y15c{bottom:674.973333pt;}
.y124{bottom:675.453333pt;}
.y46{bottom:680.093333pt;}
.y12{bottom:684.093333pt;}
.yb5{bottom:689.373333pt;}
.y66{bottom:690.813333pt;}
.yeb{bottom:692.253333pt;}
.y15b{bottom:693.533333pt;}
.y123{bottom:694.173333pt;}
.y45{bottom:698.813333pt;}
.y11{bottom:702.813333pt;}
.yb4{bottom:708.093333pt;}
.y65{bottom:709.533333pt;}
.yea{bottom:710.973333pt;}
.y15a{bottom:712.253333pt;}
.y122{bottom:712.893333pt;}
.y44{bottom:717.533333pt;}
.y10{bottom:721.533333pt;}
.yb3{bottom:726.813333pt;}
.y92{bottom:728.253333pt;}
.ye9{bottom:729.693333pt;}
.y159{bottom:730.973333pt;}
.y121{bottom:731.613333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:740.253333pt;}
.yb2{bottom:745.533333pt;}
.y91{bottom:746.973333pt;}
.ye8{bottom:748.413333pt;}
.y120{bottom:750.333333pt;}
.y42{bottom:754.973333pt;}
.y158{bottom:757.693333pt;}
.ye{bottom:758.973333pt;}
.ye6{bottom:761.853333pt;}
.yb1{bottom:764.253333pt;}
.y90{bottom:765.693333pt;}
.y11f{bottom:769.053333pt;}
.y41{bottom:773.693333pt;}
.y157{bottom:776.413333pt;}
.yd{bottom:777.693333pt;}
.ye7{bottom:781.213333pt;}
.yb0{bottom:782.973333pt;}
.y8f{bottom:784.413333pt;}
.y11e{bottom:787.773333pt;}
.y40{bottom:792.413333pt;}
.y156{bottom:795.133333pt;}
.yc{bottom:796.413333pt;}
.ye4{bottom:800.613333pt;}
.y8e{bottom:803.173333pt;}
.y11d{bottom:806.533333pt;}
.y3f{bottom:811.173333pt;}
.y155{bottom:813.893333pt;}
.yb{bottom:815.173333pt;}
.yd4{bottom:815.813333pt;}
.ye5{bottom:819.973333pt;}
.y8d{bottom:821.893333pt;}
.y11c{bottom:825.253333pt;}
.y3e{bottom:829.893333pt;}
.y154{bottom:832.613333pt;}
.ya{bottom:834.693333pt;}
.yd3{bottom:835.173333pt;}
.ye1{bottom:839.333333pt;}
.y8c{bottom:840.613333pt;}
.y11b{bottom:843.973333pt;}
.y3d{bottom:848.613333pt;}
.y153{bottom:851.333333pt;}
.y9{bottom:854.533333pt;}
.ye3{bottom:858.853333pt;}
.y8b{bottom:859.333333pt;}
.y11a{bottom:862.693333pt;}
.y3c{bottom:867.333333pt;}
.y152{bottom:870.053333pt;}
.yd2{bottom:873.893333pt;}
.y8{bottom:876.933333pt;}
.y8a{bottom:878.053333pt;}
.yde{bottom:878.213333pt;}
.y119{bottom:881.413333pt;}
.y3b{bottom:886.053333pt;}
.y151{bottom:888.773333pt;}
.yd1{bottom:893.413333pt;}
.y89{bottom:896.773333pt;}
.ye0{bottom:897.573333pt;}
.y118{bottom:900.133333pt;}
.y3a{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.y150{bottom:907.493333pt;}
.yd0{bottom:912.773333pt;}
.y88{bottom:915.493333pt;}
.ydd{bottom:916.933333pt;}
.y117{bottom:918.853333pt;}
.y14d{bottom:920.933333pt;}
.y39{bottom:923.493333pt;}
.y112{bottom:932.293333pt;}
.y87{bottom:934.213333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y116{bottom:951.653333pt;}
.y86{bottom:952.933333pt;}
.y37{bottom:960.933333pt;}
.y115{bottom:971.013333pt;}
.y4{bottom:971.173333pt;}
.y85{bottom:971.653333pt;}
.y36{bottom:979.653333pt;}
.y114{bottom:990.533333pt;}
.y14c{bottom:991.813333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y113{bottom:1009.893333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1028.320000pt;}
.y111{bottom:1029.280000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.hc{height:18.560000pt;}
.ha{height:18.720000pt;}
.hb{height:18.752000pt;}
.h18{height:23.872000pt;}
.h1a{height:27.680000pt;}
.h1c{height:31.360000pt;}
.h10{height:37.440000pt;}
.hf{height:37.472000pt;}
.h11{height:38.080000pt;}
.h13{height:38.112000pt;}
.h12{height:38.240000pt;}
.h9{height:42.745000pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h8{height:52.934375pt;}
.h5{height:54.390938pt;}
.he{height:56.160000pt;}
.h1d{height:57.600000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h17{height:62.592000pt;}
.h19{height:66.400000pt;}
.h1b{height:70.080000pt;}
.h1e{height:70.240000pt;}
.h15{height:76.832000pt;}
.h4{height:87.156562pt;}
.hd{height:94.272000pt;}
.h14{height:96.320000pt;}
.h16{height:96.352000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:61.152000pt;}
.w20{width:62.432000pt;}
.w22{width:63.552000pt;}
.w4{width:66.560000pt;}
.w1b{width:67.040000pt;}
.w10{width:71.232000pt;}
.w1a{width:76.352000pt;}
.w16{width:77.952000pt;}
.wd{width:79.552000pt;}
.w15{width:80.160000pt;}
.w14{width:80.192000pt;}
.w21{width:81.600000pt;}
.w26{width:85.280000pt;}
.w27{width:85.312000pt;}
.w25{width:90.592000pt;}
.w7{width:100.032000pt;}
.w23{width:103.840000pt;}
.w13{width:104.640000pt;}
.w29{width:109.760000pt;}
.w5{width:112.992000pt;}
.w18{width:115.040000pt;}
.w2a{width:115.232000pt;}
.w11{width:121.952000pt;}
.w1e{width:122.080000pt;}
.w1d{width:122.560000pt;}
.w28{width:122.720000pt;}
.w19{width:130.112000pt;}
.w17{width:137.146667pt;}
.w8{width:153.306667pt;}
.we{width:158.746667pt;}
.w1f{width:164.826667pt;}
.w12{width:173.506667pt;}
.wa{width:184.346667pt;}
.wb{width:184.986667pt;}
.w9{width:200.986667pt;}
.w24{width:225.626667pt;}
.w6{width:441.853333pt;}
.wc{width:457.053333pt;}
.wf{width:502.173333pt;}
.w3{width:515.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x6{left:30.912000pt;}
.x1{left:47.999988pt;}
.x2b{left:54.079988pt;}
.x2{left:61.759988pt;}
.x14{left:68.480000pt;}
.x4{left:71.999988pt;}
.x25{left:90.912000pt;}
.x3{left:96.031988pt;}
.x1a{left:109.152000pt;}
.xc{left:111.072000pt;}
.x5{left:121.311988pt;}
.xf{left:144.026655pt;}
.x2a{left:201.306667pt;}
.x20{left:218.746667pt;}
.x1b{left:224.826667pt;}
.x15{left:242.626667pt;}
.xd{left:312.866667pt;}
.x26{left:317.186667pt;}
.x16{left:347.906667pt;}
.x1c{left:355.586667pt;}
.x21{left:384.386667pt;}
.x27{left:408.413333pt;}
.x17{left:428.733333pt;}
.x1d{left:432.573333pt;}
.x22{left:447.613333pt;}
.xa{left:491.293333pt;}
.x28{left:494.333333pt;}
.xe{left:497.853333pt;}
.x1e{left:500.253333pt;}
.x10{left:506.333333pt;}
.x18{left:509.693333pt;}
.x23{left:529.853333pt;}
.x12{left:551.453333pt;}
.x1f{left:562.053333pt;}
.x7{left:565.093333pt;}
.x29{left:580.293333pt;}
.x11{left:586.533333pt;}
.x19{left:588.293333pt;}
.xb{left:591.973333pt;}
.x24{left:594.053333pt;}
.x13{left:623.333333pt;}
.x9{left:632.293333pt;}
}




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