
    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_5883168b97fd40a3195bcef9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_279854f2b785395d83491ee7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_74d9bdb8dd64178bbfc95545.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8c291ab09a2a4d5ac1b43c5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_6d0318f044031e7afdfe9b60.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_78b30b921214b247cdf780ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_09b7c27b8c7868d4246b4e63.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_6193fc93719873dbca485474.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;}
.m1{transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,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);}
.m6{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-2.214000px;}
.ls1a{letter-spacing:-1.800000px;}
.ls24{letter-spacing:-1.386000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.924000px;}
.ls12{letter-spacing:-0.774000px;}
.ls27{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.409200px;}
.ls9{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.262200px;}
.ls29{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.ls23{letter-spacing:-0.121200px;}
.lsc{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.153600px;}
.lsf{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.198000px;}
.ls2a{letter-spacing:0.206400px;}
.ls1e{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.298800px;}
.ls25{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.562800px;}
.ls14{letter-spacing:0.666000px;}
.ls5{letter-spacing:0.756000px;}
.ls26{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.080000px;}
.lse{letter-spacing:1.620000px;}
.ls1f{letter-spacing:4.500000px;}
.ls22{letter-spacing:5.940000px;}
.ls2c{letter-spacing:8.100000px;}
.ls2b{letter-spacing:8.820000px;}
.ls17{letter-spacing:9.540000px;}
.ls2d{letter-spacing:10.980000px;}
.ls19{letter-spacing:14.160000px;}
.ls18{letter-spacing:18.060000px;}
.ls16{letter-spacing:87.300000px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.297800px;}
.ws0{word-spacing:-16.254600px;}
.wsf{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.246600px;}
.ws14{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.146400px;}
.ws1b{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws15{word-spacing:-14.328000px;}
.ws18{word-spacing:-14.274000px;}
.wse{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.554000px;}
.ws11{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.726000px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._8{margin-left:-8.942400px;}
._15{margin-left:-5.449200px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:3.001680px;}
._e{width:4.362480px;}
._10{width:6.115680px;}
._d{width:7.178400px;}
._c{width:8.545680px;}
._11{width:9.681120px;}
._28{width:10.969680px;}
._b{width:12.071520px;}
._a{width:13.326480px;}
._34{width:15.955920px;}
._35{width:17.509680px;}
._12{width:18.863040px;}
._2d{width:22.099680px;}
._31{width:24.023520px;}
._21{width:25.475280px;}
._33{width:29.124480px;}
._2c{width:30.836160px;}
._2b{width:31.911840px;}
._14{width:33.535440px;}
._32{width:35.208720px;}
._30{width:36.563040px;}
._2e{width:38.196720px;}
._29{width:41.065200px;}
._18{width:43.804080px;}
._17{width:44.879760px;}
._2a{width:50.019120px;}
._20{width:52.020000px;}
._1f{width:53.747040px;}
._25{width:57.777600px;}
._1a{width:61.999920px;}
._23{width:76.519920px;}
._1b{width:81.594720px;}
._1e{width:83.147280px;}
._27{width:85.616400px;}
._19{width:97.560000px;}
._1c{width:101.904480px;}
._24{width:108.180000px;}
._26{width:119.320080px;}
._13{width:141.241920px;}
._1d{width:185.086800px;}
._2f{width:188.672400px;}
._22{width:191.700000px;}
._16{width:306.848880px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:5.760000px;}
.y72{bottom:5.940000px;}
.y101{bottom:10.620000px;}
.yc2{bottom:20.340000px;}
.y7b{bottom:25.560000px;}
.y71{bottom:25.740000px;}
.y100{bottom:30.600000px;}
.yfd{bottom:34.740000px;}
.y7a{bottom:45.360000px;}
.y70{bottom:45.540000px;}
.y76{bottom:45.570000px;}
.yff{bottom:50.400000px;}
.y6{bottom:60.300000px;}
.y78{bottom:65.340000px;}
.y75{bottom:65.370000px;}
.yfe{bottom:70.200000px;}
.yc6{bottom:85.140000px;}
.y74{bottom:85.170000px;}
.y34{bottom:89.100000px;}
.y90{bottom:90.000000px;}
.yf7{bottom:93.060000px;}
.y6c{bottom:94.500000px;}
.ybd{bottom:96.480000px;}
.yc5{bottom:104.970000px;}
.yfb{bottom:105.480000px;}
.y33{bottom:109.080000px;}
.y8f{bottom:109.980000px;}
.yf6{bottom:112.860000px;}
.y6b{bottom:114.480000px;}
.ybc{bottom:116.280000px;}
.yfc{bottom:119.160000px;}
.yfa{bottom:125.280000px;}
.y32{bottom:128.880000px;}
.y8e{bottom:129.780000px;}
.yf5{bottom:132.660000px;}
.y6a{bottom:134.280000px;}
.ybb{bottom:136.080000px;}
.yf9{bottom:145.080000px;}
.y31{bottom:148.680000px;}
.y8d{bottom:149.580000px;}
.yf4{bottom:152.640000px;}
.y69{bottom:154.080000px;}
.yc3{bottom:162.720000px;}
.yba{bottom:164.880000px;}
.y30{bottom:168.480000px;}
.y8c{bottom:169.380000px;}
.yf3{bottom:172.440000px;}
.y68{bottom:173.880000px;}
.yb9{bottom:184.680000px;}
.y2f{bottom:188.280000px;}
.y8b{bottom:189.180000px;}
.yf2{bottom:192.240000px;}
.y67{bottom:193.680000px;}
.yb8{bottom:204.660000px;}
.y2e{bottom:208.260000px;}
.y8a{bottom:209.160000px;}
.yf1{bottom:212.070000px;}
.y66{bottom:213.690000px;}
.yb7{bottom:224.490000px;}
.y2d{bottom:228.090000px;}
.y89{bottom:228.990000px;}
.yf0{bottom:231.870000px;}
.y65{bottom:233.490000px;}
.yb6{bottom:244.290000px;}
.y2c{bottom:247.890000px;}
.y88{bottom:248.790000px;}
.yef{bottom:251.850000px;}
.y64{bottom:253.290000px;}
.yc1{bottom:262.830000px;}
.yb5{bottom:264.090000px;}
.y2b{bottom:267.690000px;}
.y87{bottom:268.590000px;}
.yee{bottom:271.650000px;}
.y63{bottom:273.090000px;}
.yb4{bottom:283.890000px;}
.y2a{bottom:287.490000px;}
.y86{bottom:288.390000px;}
.yed{bottom:291.450000px;}
.y62{bottom:292.890000px;}
.yb3{bottom:303.870000px;}
.y29{bottom:307.470000px;}
.y85{bottom:308.370000px;}
.yec{bottom:311.250000px;}
.y61{bottom:312.870000px;}
.yb2{bottom:323.670000px;}
.y28{bottom:327.270000px;}
.y84{bottom:328.170000px;}
.yeb{bottom:331.050000px;}
.y60{bottom:332.670000px;}
.yb1{bottom:343.470000px;}
.y27{bottom:347.070000px;}
.y83{bottom:347.970000px;}
.yea{bottom:351.030000px;}
.y5f{bottom:352.470000px;}
.yb0{bottom:363.270000px;}
.y26{bottom:366.870000px;}
.y82{bottom:367.770000px;}
.ye9{bottom:370.830000px;}
.y5e{bottom:372.270000px;}
.yaf{bottom:383.070000px;}
.y25{bottom:386.670000px;}
.y81{bottom:387.570000px;}
.ye8{bottom:390.630000px;}
.y5d{bottom:392.070000px;}
.yae{bottom:403.050000px;}
.y24{bottom:406.650000px;}
.y80{bottom:407.550000px;}
.ye7{bottom:410.430000px;}
.y5c{bottom:412.050000px;}
.yad{bottom:422.850000px;}
.y23{bottom:426.450000px;}
.y7f{bottom:427.350000px;}
.ye6{bottom:430.230000px;}
.y5b{bottom:431.850000px;}
.yac{bottom:442.650000px;}
.y22{bottom:446.295000px;}
.y7e{bottom:447.195000px;}
.ye5{bottom:450.255000px;}
.y5a{bottom:451.695000px;}
.yab{bottom:462.495000px;}
.y21{bottom:466.095000px;}
.y7d{bottom:466.995000px;}
.ye4{bottom:470.055000px;}
.y59{bottom:471.495000px;}
.yaa{bottom:482.295000px;}
.y20{bottom:485.895000px;}
.y7c{bottom:486.795000px;}
.ye3{bottom:489.855000px;}
.y58{bottom:491.295000px;}
.y79{bottom:501.735000px;}
.ya9{bottom:502.275000px;}
.y1f{bottom:505.875000px;}
.ye2{bottom:509.655000px;}
.y57{bottom:511.275000px;}
.ya8{bottom:522.075000px;}
.y1e{bottom:525.675000px;}
.ye1{bottom:529.455000px;}
.y56{bottom:531.075000px;}
.ya7{bottom:541.875000px;}
.y1d{bottom:545.475000px;}
.ye0{bottom:549.435000px;}
.y55{bottom:550.875000px;}
.ya6{bottom:561.675000px;}
.y77{bottom:561.855000px;}
.y1c{bottom:565.275000px;}
.ydf{bottom:569.235000px;}
.y54{bottom:570.675000px;}
.ya5{bottom:581.475000px;}
.y1b{bottom:585.075000px;}
.yde{bottom:589.035000px;}
.y53{bottom:590.475000px;}
.ya4{bottom:601.455000px;}
.y1a{bottom:605.055000px;}
.ydd{bottom:608.835000px;}
.y52{bottom:610.455000px;}
.ya3{bottom:621.255000px;}
.y19{bottom:624.855000px;}
.ydc{bottom:628.635000px;}
.y51{bottom:630.255000px;}
.ya2{bottom:641.055000px;}
.y73{bottom:641.955000px;}
.y18{bottom:644.655000px;}
.ydb{bottom:648.615000px;}
.y50{bottom:650.055000px;}
.ya1{bottom:660.855000px;}
.y17{bottom:664.455000px;}
.yda{bottom:668.415000px;}
.y4f{bottom:669.855000px;}
.ya0{bottom:680.655000px;}
.y16{bottom:686.625000px;}
.yd9{bottom:688.245000px;}
.y4e{bottom:689.685000px;}
.y9f{bottom:700.665000px;}
.yd8{bottom:708.045000px;}
.y4d{bottom:709.665000px;}
.y15{bottom:715.425000px;}
.y9e{bottom:720.465000px;}
.yd7{bottom:727.845000px;}
.y4c{bottom:729.465000px;}
.y14{bottom:735.225000px;}
.y9d{bottom:740.265000px;}
.y6f{bottom:741.885000px;}
.yd6{bottom:747.825000px;}
.y4b{bottom:749.265000px;}
.y13{bottom:755.025000px;}
.y9c{bottom:760.065000px;}
.yd5{bottom:767.625000px;}
.y4a{bottom:769.065000px;}
.y12{bottom:775.005000px;}
.y9b{bottom:779.865000px;}
.yd4{bottom:787.425000px;}
.y49{bottom:788.865000px;}
.y11{bottom:794.805000px;}
.y9a{bottom:799.845000px;}
.y6d{bottom:802.185000px;}
.yd3{bottom:807.225000px;}
.y48{bottom:808.845000px;}
.y10{bottom:814.605000px;}
.y99{bottom:819.645000px;}
.yd2{bottom:827.025000px;}
.y47{bottom:828.645000px;}
.yf{bottom:834.405000px;}
.y98{bottom:839.445000px;}
.yd1{bottom:847.005000px;}
.y46{bottom:848.445000px;}
.ye{bottom:854.205000px;}
.y97{bottom:859.245000px;}
.yd0{bottom:866.805000px;}
.y45{bottom:868.245000px;}
.yd{bottom:874.005000px;}
.y96{bottom:879.045000px;}
.ycf{bottom:886.605000px;}
.y44{bottom:888.045000px;}
.yc{bottom:896.145000px;}
.y95{bottom:899.025000px;}
.yce{bottom:906.405000px;}
.y43{bottom:908.025000px;}
.y94{bottom:918.870000px;}
.yb{bottom:921.390000px;}
.ycd{bottom:926.250000px;}
.y42{bottom:927.870000px;}
.ya{bottom:936.510000px;}
.y93{bottom:938.670000px;}
.ycc{bottom:946.230000px;}
.y41{bottom:947.670000px;}
.y9{bottom:957.750000px;}
.y92{bottom:958.470000px;}
.ycb{bottom:966.030000px;}
.y40{bottom:967.470000px;}
.y91{bottom:978.270000px;}
.y8{bottom:981.150000px;}
.yca{bottom:985.830000px;}
.y3f{bottom:987.270000px;}
.yc0{bottom:998.250000px;}
.yc9{bottom:1005.630000px;}
.y3e{bottom:1007.250000px;}
.y7{bottom:1013.010000px;}
.ybf{bottom:1018.050000px;}
.yc8{bottom:1025.430000px;}
.y3d{bottom:1027.050000px;}
.ybe{bottom:1037.850000px;}
.yc7{bottom:1045.410000px;}
.y3c{bottom:1046.850000px;}
.y5{bottom:1051.350000px;}
.yf8{bottom:1057.650000px;}
.yc4{bottom:1060.170000px;}
.y3b{bottom:1066.650000px;}
.y4{bottom:1082.130000px;}
.y3a{bottom:1086.450000px;}
.y39{bottom:1106.430000px;}
.y3{bottom:1112.910000px;}
.y38{bottom:1126.230000px;}
.y2{bottom:1143.870000px;}
.y37{bottom:1146.030000px;}
.y36{bottom:1165.860000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.400000px;}
.h15{height:2.010938px;}
.hd{height:19.800000px;}
.h7{height:27.147656px;}
.h12{height:34.380000px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:43.302656px;}
.h9{height:43.506914px;}
.ha{height:43.681992px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:53.224453px;}
.h11{height:59.400000px;}
.he{height:59.580000px;}
.h2{height:67.565039px;}
.hb{height:67.824844px;}
.h10{height:79.380000px;}
.h14{height:84.240000px;}
.hf{height:99.216000px;}
.h13{height:119.016000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:115.020000px;}
.w5{width:137.556000px;}
.w4{width:148.176000px;}
.w3{width:169.410000px;}
.wa{width:190.650000px;}
.w6{width:190.830000px;}
.w8{width:191.055000px;}
.w9{width:209.550000px;}
.wb{width:210.855000px;}
.wc{width:580.965000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x11{left:-3.240000px;}
.x0{left:0.000000px;}
.x2f{left:7.740000px;}
.x1{left:54.179987px;}
.x2{left:62.819987px;}
.xd{left:65.159987px;}
.x4{left:68.219987px;}
.x14{left:70.199987px;}
.x5{left:73.619987px;}
.x3{left:75.599987px;}
.x15{left:81.935987px;}
.xe{left:86.075987px;}
.x19{left:89.495987px;}
.x16{left:96.515987px;}
.x17{left:108.935987px;}
.x18{left:111.995987px;}
.xf{left:120.996000px;}
.x6{left:135.036000px;}
.xa{left:153.930000px;}
.x1a{left:161.309987px;}
.x1b{left:173.009987px;}
.xb{left:178.230000px;}
.xc{left:190.650000px;}
.x1c{left:232.949987px;}
.x10{left:236.730000px;}
.x1d{left:244.334987px;}
.x2e{left:264.855000px;}
.x1e{left:276.914987px;}
.x1f{left:288.434987px;}
.x7{left:305.175000px;}
.x20{left:331.814987px;}
.x21{left:343.154987px;}
.x22{left:382.214987px;}
.x23{left:393.554987px;}
.x12{left:428.505000px;}
.x24{left:445.964987px;}
.x8{left:454.065000px;}
.x25{left:457.664987px;}
.x26{left:560.084987px;}
.x27{left:571.649987px;}
.x9{left:592.350000px;}
.x28{left:604.049987px;}
.x29{left:615.569987px;}
.x13{left:638.790000px;}
.x2a{left:668.129987px;}
.x2b{left:679.469987px;}
.x2c{left:765.359987px;}
.x2d{left:776.699987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-1.968000pt;}
.ls1a{letter-spacing:-1.600000pt;}
.ls24{letter-spacing:-1.232000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls27{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.363733pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls29{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls23{letter-spacing:-0.107733pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.136533pt;}
.lsf{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.176000pt;}
.ls2a{letter-spacing:0.183467pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.265600pt;}
.ls25{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.500267pt;}
.ls14{letter-spacing:0.592000pt;}
.ls5{letter-spacing:0.672000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:4.000000pt;}
.ls22{letter-spacing:5.280000pt;}
.ls2c{letter-spacing:7.200000pt;}
.ls2b{letter-spacing:7.840000pt;}
.ls17{letter-spacing:8.480000pt;}
.ls2d{letter-spacing:9.760000pt;}
.ls19{letter-spacing:12.586667pt;}
.ls18{letter-spacing:16.053333pt;}
.ls16{letter-spacing:77.600000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.486933pt;}
.ws0{word-spacing:-14.448533pt;}
.wsf{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.552533pt;}
.ws14{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.463467pt;}
.ws1b{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws15{word-spacing:-12.736000pt;}
.ws18{word-spacing:-12.688000pt;}
.wse{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.048000pt;}
.ws11{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.312000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._8{margin-left:-7.948800pt;}
._15{margin-left:-4.843733pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.668160pt;}
._e{width:3.877760pt;}
._10{width:5.436160pt;}
._d{width:6.380800pt;}
._c{width:7.596160pt;}
._11{width:8.605440pt;}
._28{width:9.750827pt;}
._b{width:10.730240pt;}
._a{width:11.845760pt;}
._34{width:14.183040pt;}
._35{width:15.564160pt;}
._12{width:16.767147pt;}
._2d{width:19.644160pt;}
._31{width:21.354240pt;}
._21{width:22.644693pt;}
._33{width:25.888427pt;}
._2c{width:27.409920pt;}
._2b{width:28.366080pt;}
._14{width:29.809280pt;}
._32{width:31.296640pt;}
._30{width:32.500480pt;}
._2e{width:33.952640pt;}
._29{width:36.502400pt;}
._18{width:38.936960pt;}
._17{width:39.893120pt;}
._2a{width:44.461440pt;}
._20{width:46.240000pt;}
._1f{width:47.775147pt;}
._25{width:51.357867pt;}
._1a{width:55.111040pt;}
._23{width:68.017707pt;}
._1b{width:72.528640pt;}
._1e{width:73.908693pt;}
._27{width:76.103467pt;}
._19{width:86.720000pt;}
._1c{width:90.581760pt;}
._24{width:96.160000pt;}
._26{width:106.062293pt;}
._13{width:125.548373pt;}
._1d{width:164.521600pt;}
._2f{width:167.708800pt;}
._22{width:170.400000pt;}
._16{width:272.754560pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:5.120000pt;}
.y72{bottom:5.280000pt;}
.y101{bottom:9.440000pt;}
.yc2{bottom:18.080000pt;}
.y7b{bottom:22.720000pt;}
.y71{bottom:22.880000pt;}
.y100{bottom:27.200000pt;}
.yfd{bottom:30.880000pt;}
.y7a{bottom:40.320000pt;}
.y70{bottom:40.480000pt;}
.y76{bottom:40.506667pt;}
.yff{bottom:44.800000pt;}
.y6{bottom:53.600000pt;}
.y78{bottom:58.080000pt;}
.y75{bottom:58.106667pt;}
.yfe{bottom:62.400000pt;}
.yc6{bottom:75.680000pt;}
.y74{bottom:75.706667pt;}
.y34{bottom:79.200000pt;}
.y90{bottom:80.000000pt;}
.yf7{bottom:82.720000pt;}
.y6c{bottom:84.000000pt;}
.ybd{bottom:85.760000pt;}
.yc5{bottom:93.306667pt;}
.yfb{bottom:93.760000pt;}
.y33{bottom:96.960000pt;}
.y8f{bottom:97.760000pt;}
.yf6{bottom:100.320000pt;}
.y6b{bottom:101.760000pt;}
.ybc{bottom:103.360000pt;}
.yfc{bottom:105.920000pt;}
.yfa{bottom:111.360000pt;}
.y32{bottom:114.560000pt;}
.y8e{bottom:115.360000pt;}
.yf5{bottom:117.920000pt;}
.y6a{bottom:119.360000pt;}
.ybb{bottom:120.960000pt;}
.yf9{bottom:128.960000pt;}
.y31{bottom:132.160000pt;}
.y8d{bottom:132.960000pt;}
.yf4{bottom:135.680000pt;}
.y69{bottom:136.960000pt;}
.yc3{bottom:144.640000pt;}
.yba{bottom:146.560000pt;}
.y30{bottom:149.760000pt;}
.y8c{bottom:150.560000pt;}
.yf3{bottom:153.280000pt;}
.y68{bottom:154.560000pt;}
.yb9{bottom:164.160000pt;}
.y2f{bottom:167.360000pt;}
.y8b{bottom:168.160000pt;}
.yf2{bottom:170.880000pt;}
.y67{bottom:172.160000pt;}
.yb8{bottom:181.920000pt;}
.y2e{bottom:185.120000pt;}
.y8a{bottom:185.920000pt;}
.yf1{bottom:188.506667pt;}
.y66{bottom:189.946667pt;}
.yb7{bottom:199.546667pt;}
.y2d{bottom:202.746667pt;}
.y89{bottom:203.546667pt;}
.yf0{bottom:206.106667pt;}
.y65{bottom:207.546667pt;}
.yb6{bottom:217.146667pt;}
.y2c{bottom:220.346667pt;}
.y88{bottom:221.146667pt;}
.yef{bottom:223.866667pt;}
.y64{bottom:225.146667pt;}
.yc1{bottom:233.626667pt;}
.yb5{bottom:234.746667pt;}
.y2b{bottom:237.946667pt;}
.y87{bottom:238.746667pt;}
.yee{bottom:241.466667pt;}
.y63{bottom:242.746667pt;}
.yb4{bottom:252.346667pt;}
.y2a{bottom:255.546667pt;}
.y86{bottom:256.346667pt;}
.yed{bottom:259.066667pt;}
.y62{bottom:260.346667pt;}
.yb3{bottom:270.106667pt;}
.y29{bottom:273.306667pt;}
.y85{bottom:274.106667pt;}
.yec{bottom:276.666667pt;}
.y61{bottom:278.106667pt;}
.yb2{bottom:287.706667pt;}
.y28{bottom:290.906667pt;}
.y84{bottom:291.706667pt;}
.yeb{bottom:294.266667pt;}
.y60{bottom:295.706667pt;}
.yb1{bottom:305.306667pt;}
.y27{bottom:308.506667pt;}
.y83{bottom:309.306667pt;}
.yea{bottom:312.026667pt;}
.y5f{bottom:313.306667pt;}
.yb0{bottom:322.906667pt;}
.y26{bottom:326.106667pt;}
.y82{bottom:326.906667pt;}
.ye9{bottom:329.626667pt;}
.y5e{bottom:330.906667pt;}
.yaf{bottom:340.506667pt;}
.y25{bottom:343.706667pt;}
.y81{bottom:344.506667pt;}
.ye8{bottom:347.226667pt;}
.y5d{bottom:348.506667pt;}
.yae{bottom:358.266667pt;}
.y24{bottom:361.466667pt;}
.y80{bottom:362.266667pt;}
.ye7{bottom:364.826667pt;}
.y5c{bottom:366.266667pt;}
.yad{bottom:375.866667pt;}
.y23{bottom:379.066667pt;}
.y7f{bottom:379.866667pt;}
.ye6{bottom:382.426667pt;}
.y5b{bottom:383.866667pt;}
.yac{bottom:393.466667pt;}
.y22{bottom:396.706667pt;}
.y7e{bottom:397.506667pt;}
.ye5{bottom:400.226667pt;}
.y5a{bottom:401.506667pt;}
.yab{bottom:411.106667pt;}
.y21{bottom:414.306667pt;}
.y7d{bottom:415.106667pt;}
.ye4{bottom:417.826667pt;}
.y59{bottom:419.106667pt;}
.yaa{bottom:428.706667pt;}
.y20{bottom:431.906667pt;}
.y7c{bottom:432.706667pt;}
.ye3{bottom:435.426667pt;}
.y58{bottom:436.706667pt;}
.y79{bottom:445.986667pt;}
.ya9{bottom:446.466667pt;}
.y1f{bottom:449.666667pt;}
.ye2{bottom:453.026667pt;}
.y57{bottom:454.466667pt;}
.ya8{bottom:464.066667pt;}
.y1e{bottom:467.266667pt;}
.ye1{bottom:470.626667pt;}
.y56{bottom:472.066667pt;}
.ya7{bottom:481.666667pt;}
.y1d{bottom:484.866667pt;}
.ye0{bottom:488.386667pt;}
.y55{bottom:489.666667pt;}
.ya6{bottom:499.266667pt;}
.y77{bottom:499.426667pt;}
.y1c{bottom:502.466667pt;}
.ydf{bottom:505.986667pt;}
.y54{bottom:507.266667pt;}
.ya5{bottom:516.866667pt;}
.y1b{bottom:520.066667pt;}
.yde{bottom:523.586667pt;}
.y53{bottom:524.866667pt;}
.ya4{bottom:534.626667pt;}
.y1a{bottom:537.826667pt;}
.ydd{bottom:541.186667pt;}
.y52{bottom:542.626667pt;}
.ya3{bottom:552.226667pt;}
.y19{bottom:555.426667pt;}
.ydc{bottom:558.786667pt;}
.y51{bottom:560.226667pt;}
.ya2{bottom:569.826667pt;}
.y73{bottom:570.626667pt;}
.y18{bottom:573.026667pt;}
.ydb{bottom:576.546667pt;}
.y50{bottom:577.826667pt;}
.ya1{bottom:587.426667pt;}
.y17{bottom:590.626667pt;}
.yda{bottom:594.146667pt;}
.y4f{bottom:595.426667pt;}
.ya0{bottom:605.026667pt;}
.y16{bottom:610.333333pt;}
.yd9{bottom:611.773333pt;}
.y4e{bottom:613.053333pt;}
.y9f{bottom:622.813333pt;}
.yd8{bottom:629.373333pt;}
.y4d{bottom:630.813333pt;}
.y15{bottom:635.933333pt;}
.y9e{bottom:640.413333pt;}
.yd7{bottom:646.973333pt;}
.y4c{bottom:648.413333pt;}
.y14{bottom:653.533333pt;}
.y9d{bottom:658.013333pt;}
.y6f{bottom:659.453333pt;}
.yd6{bottom:664.733333pt;}
.y4b{bottom:666.013333pt;}
.y13{bottom:671.133333pt;}
.y9c{bottom:675.613333pt;}
.yd5{bottom:682.333333pt;}
.y4a{bottom:683.613333pt;}
.y12{bottom:688.893333pt;}
.y9b{bottom:693.213333pt;}
.yd4{bottom:699.933333pt;}
.y49{bottom:701.213333pt;}
.y11{bottom:706.493333pt;}
.y9a{bottom:710.973333pt;}
.y6d{bottom:713.053333pt;}
.yd3{bottom:717.533333pt;}
.y48{bottom:718.973333pt;}
.y10{bottom:724.093333pt;}
.y99{bottom:728.573333pt;}
.yd2{bottom:735.133333pt;}
.y47{bottom:736.573333pt;}
.yf{bottom:741.693333pt;}
.y98{bottom:746.173333pt;}
.yd1{bottom:752.893333pt;}
.y46{bottom:754.173333pt;}
.ye{bottom:759.293333pt;}
.y97{bottom:763.773333pt;}
.yd0{bottom:770.493333pt;}
.y45{bottom:771.773333pt;}
.yd{bottom:776.893333pt;}
.y96{bottom:781.373333pt;}
.ycf{bottom:788.093333pt;}
.y44{bottom:789.373333pt;}
.yc{bottom:796.573333pt;}
.y95{bottom:799.133333pt;}
.yce{bottom:805.693333pt;}
.y43{bottom:807.133333pt;}
.y94{bottom:816.773333pt;}
.yb{bottom:819.013333pt;}
.ycd{bottom:823.333333pt;}
.y42{bottom:824.773333pt;}
.ya{bottom:832.453333pt;}
.y93{bottom:834.373333pt;}
.ycc{bottom:841.093333pt;}
.y41{bottom:842.373333pt;}
.y9{bottom:851.333333pt;}
.y92{bottom:851.973333pt;}
.ycb{bottom:858.693333pt;}
.y40{bottom:859.973333pt;}
.y91{bottom:869.573333pt;}
.y8{bottom:872.133333pt;}
.yca{bottom:876.293333pt;}
.y3f{bottom:877.573333pt;}
.yc0{bottom:887.333333pt;}
.yc9{bottom:893.893333pt;}
.y3e{bottom:895.333333pt;}
.y7{bottom:900.453333pt;}
.ybf{bottom:904.933333pt;}
.yc8{bottom:911.493333pt;}
.y3d{bottom:912.933333pt;}
.ybe{bottom:922.533333pt;}
.yc7{bottom:929.253333pt;}
.y3c{bottom:930.533333pt;}
.y5{bottom:934.533333pt;}
.yf8{bottom:940.133333pt;}
.yc4{bottom:942.373333pt;}
.y3b{bottom:948.133333pt;}
.y4{bottom:961.893333pt;}
.y3a{bottom:965.733333pt;}
.y39{bottom:983.493333pt;}
.y3{bottom:989.253333pt;}
.y38{bottom:1001.093333pt;}
.y2{bottom:1016.773333pt;}
.y37{bottom:1018.693333pt;}
.y36{bottom:1036.320000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.800000pt;}
.h15{height:1.787500pt;}
.hd{height:17.600000pt;}
.h7{height:24.131250pt;}
.h12{height:30.560000pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:38.491250pt;}
.h9{height:38.672812pt;}
.ha{height:38.828437pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:47.310625pt;}
.h11{height:52.800000pt;}
.he{height:52.960000pt;}
.h2{height:60.057813pt;}
.hb{height:60.288750pt;}
.h10{height:70.560000pt;}
.h14{height:74.880000pt;}
.hf{height:88.192000pt;}
.h13{height:105.792000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:102.240000pt;}
.w5{width:122.272000pt;}
.w4{width:131.712000pt;}
.w3{width:150.586667pt;}
.wa{width:169.466667pt;}
.w6{width:169.626667pt;}
.w8{width:169.826667pt;}
.w9{width:186.266667pt;}
.wb{width:187.426667pt;}
.wc{width:516.413333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x11{left:-2.880000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.880000pt;}
.x1{left:48.159988pt;}
.x2{left:55.839988pt;}
.xd{left:57.919988pt;}
.x4{left:60.639988pt;}
.x14{left:62.399988pt;}
.x5{left:65.439988pt;}
.x3{left:67.199988pt;}
.x15{left:72.831988pt;}
.xe{left:76.511988pt;}
.x19{left:79.551988pt;}
.x16{left:85.791988pt;}
.x17{left:96.831988pt;}
.x18{left:99.551988pt;}
.xf{left:107.552000pt;}
.x6{left:120.032000pt;}
.xa{left:136.826667pt;}
.x1a{left:143.386655pt;}
.x1b{left:153.786655pt;}
.xb{left:158.426667pt;}
.xc{left:169.466667pt;}
.x1c{left:207.066655pt;}
.x10{left:210.426667pt;}
.x1d{left:217.186655pt;}
.x2e{left:235.426667pt;}
.x1e{left:246.146655pt;}
.x1f{left:256.386655pt;}
.x7{left:271.266667pt;}
.x20{left:294.946655pt;}
.x21{left:305.026655pt;}
.x22{left:339.746655pt;}
.x23{left:349.826655pt;}
.x12{left:380.893333pt;}
.x24{left:396.413321pt;}
.x8{left:403.613333pt;}
.x25{left:406.813321pt;}
.x26{left:497.853322pt;}
.x27{left:508.133322pt;}
.x9{left:526.533333pt;}
.x28{left:536.933321pt;}
.x29{left:547.173321pt;}
.x13{left:567.813333pt;}
.x2a{left:593.893321pt;}
.x2b{left:603.973321pt;}
.x2c{left:680.319988pt;}
.x2d{left:690.399988pt;}
}




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