
    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_6047b82c6b0743063b9f6b8e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_c153fc31a11f353ee0df1261.woff')format("woff");}.ff2{font-family:ff2;line-height:0.978027;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_8e1a216cf8ee319d461e9c43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922363;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_9cf91f4bd0bc26171408a4d6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3d2d65aa86c634e7ff546998.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_929b028e66d034cef0afeb44.woff')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_460e8d497c1954cd090a449c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_cd8f1f9ef7aedef2313e3b28.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1117f3a448a56e861758601c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_51eb6b883b9f7d727dd0638d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.687500;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_27feb37ee99b468fabefb52a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_525906e4c7e30de63fc98ee8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d3c3377be7cbe50dc30baf91.woff')format("woff");}.ffd{font-family:ffd;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c620bc89958ded040de1bc15.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5e2c7ae3dc141d2492a7ce3e.woff')format("woff");}.fff{font-family:fff;line-height:0.833496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.472800px;}
.ls10{letter-spacing:-0.460200px;}
.ls1a{letter-spacing:-0.450600px;}
.lsa{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.053400px;}
.lse{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.333360px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.496080px;}
.ls1b{letter-spacing:0.496200px;}
.ls19{letter-spacing:0.513600px;}
.ls13{letter-spacing:0.613440px;}
.ls12{letter-spacing:0.666000px;}
.ls18{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.386720px;}
.ls15{letter-spacing:10.026720px;}
.ls0{letter-spacing:33.066720px;}
.ls14{letter-spacing:48.186720px;}
.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:-27.207360px;}
.wsc{word-spacing:-15.453600px;}
.wsa{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.118488px;}
.ws6{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993400px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.733600px;}
.ws1{word-spacing:-12.996000px;}
.wsf{word-spacing:-12.556200px;}
.ws3{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.700000px;}
.wse{word-spacing:-11.609400px;}
.ws0{word-spacing:-11.587200px;}
.ws11{word-spacing:-10.644480px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:14.240640px;}
._2d{margin-left:-9.640080px;}
._2b{margin-left:-7.332720px;}
._13{margin-left:-4.179947px;}
._12{margin-left:-2.749199px;}
._0{margin-left:-1.157953px;}
._1{width:1.670744px;}
._8{width:3.030489px;}
._7{width:4.055971px;}
._10{width:5.189952px;}
._11{width:6.559800px;}
._4{width:8.154000px;}
._5{width:9.336006px;}
._9{width:10.962000px;}
._a{width:12.252006px;}
._17{width:13.386001px;}
._35{width:14.530545px;}
._29{width:16.197854px;}
._1a{width:17.261060px;}
._2{width:18.377982px;}
._3{width:19.524024px;}
._24{width:20.540824px;}
._28{width:21.553417px;}
._b{width:22.896000px;}
._c{width:24.732000px;}
._14{width:26.473800px;}
._15{width:27.492255px;}
._16{width:28.744201px;}
._1c{width:30.298200px;}
._26{width:31.374000px;}
._19{width:32.401812px;}
._6{width:34.409988px;}
._d{width:36.132001px;}
._e{width:37.350000px;}
._f{width:38.476064px;}
._18{width:40.338000px;}
._2a{width:41.956711px;}
._1f{width:43.744141px;}
._2f{width:45.376701px;}
._1d{width:46.452420px;}
._1e{width:47.552715px;}
._25{width:54.322139px;}
._21{width:58.429451px;}
._20{width:59.480461px;}
._1b{width:60.716339px;}
._36{width:70.768273px;}
._2c{width:75.596340px;}
._31{width:78.564210px;}
._30{width:79.568886px;}
._2e{width:80.908765px;}
._27{width:89.042340px;}
._23{width:103.984996px;}
._22{width:105.356940px;}
._33{width:214.426945px;}
._32{width:234.121156px;}
._34{width:240.671520px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:60.473952px;}
.fs6{font-size:66.233376px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:71.992800px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.659634px;}
.yd{bottom:3.780000px;}
.yb{bottom:6.840000px;}
.y17b{bottom:14.400000px;}
.y9{bottom:17.100000px;}
.y108{bottom:19.611000px;}
.y11{bottom:29.880000px;}
.y10{bottom:47.160000px;}
.y6{bottom:48.780000px;}
.y5c{bottom:55.494450px;}
.y17a{bottom:57.096000px;}
.y5b{bottom:57.714228px;}
.y8{bottom:58.500000px;}
.y107{bottom:75.465000px;}
.y59{bottom:123.156000px;}
.y94{bottom:124.596000px;}
.yc9{bottom:126.756000px;}
.y179{bottom:136.476000px;}
.y58{bottom:140.436000px;}
.y35{bottom:141.876000px;}
.yc8{bottom:144.036000px;}
.y178{bottom:150.330000px;}
.y57{bottom:157.710000px;}
.y12e{bottom:158.250000px;}
.y93{bottom:158.970000px;}
.y34{bottom:159.150000px;}
.yc7{bottom:161.310000px;}
.y177{bottom:164.190000px;}
.y56{bottom:174.990000px;}
.y12d{bottom:175.530000px;}
.y92{bottom:176.250000px;}
.y33{bottom:176.430000px;}
.y176{bottom:177.870000px;}
.yc6{bottom:178.590000px;}
.y175{bottom:191.730000px;}
.y55{bottom:192.090000px;}
.y12c{bottom:192.810000px;}
.y91{bottom:193.530000px;}
.y32{bottom:193.710000px;}
.yc5{bottom:201.630000px;}
.y174{bottom:205.590000px;}
.y54{bottom:209.370000px;}
.y12b{bottom:210.090000px;}
.y90{bottom:210.810000px;}
.y31{bottom:210.990000px;}
.y173{bottom:219.270000px;}
.y53{bottom:226.650000px;}
.y12a{bottom:227.370000px;}
.y30{bottom:228.090000px;}
.y172{bottom:233.130000px;}
.yc4{bottom:237.090000px;}
.y52{bottom:243.930000px;}
.y129{bottom:244.470000px;}
.y2f{bottom:245.370000px;}
.y171{bottom:246.990000px;}
.yc3{bottom:254.370000px;}
.y170{bottom:260.670000px;}
.y51{bottom:261.210000px;}
.y128{bottom:261.750000px;}
.y8f{bottom:262.470000px;}
.y2e{bottom:262.650000px;}
.yc2{bottom:271.470000px;}
.y16f{bottom:274.530000px;}
.y50{bottom:278.490000px;}
.y8e{bottom:279.750000px;}
.y2d{bottom:279.930000px;}
.y127{bottom:288.030000px;}
.y16e{bottom:288.390000px;}
.yc1{bottom:288.750000px;}
.y4f{bottom:295.590000px;}
.y8d{bottom:297.030000px;}
.y2c{bottom:297.210000px;}
.y16d{bottom:302.070000px;}
.yc0{bottom:306.030000px;}
.y4e{bottom:312.870000px;}
.y2b{bottom:314.310000px;}
.y16c{bottom:315.930000px;}
.ybf{bottom:323.310000px;}
.y16b{bottom:329.790000px;}
.y4d{bottom:330.150000px;}
.y2a{bottom:331.590000px;}
.ybe{bottom:340.635000px;}
.y16a{bottom:343.515000px;}
.y4c{bottom:347.475000px;}
.y8c{bottom:348.735000px;}
.y29{bottom:348.915000px;}
.y169{bottom:357.375000px;}
.ybd{bottom:357.735000px;}
.y4b{bottom:364.755000px;}
.y8b{bottom:366.015000px;}
.y28{bottom:366.195000px;}
.y168{bottom:371.235000px;}
.ybc{bottom:375.015000px;}
.y4a{bottom:382.035000px;}
.y8a{bottom:383.295000px;}
.y27{bottom:383.475000px;}
.y167{bottom:384.915000px;}
.ybb{bottom:392.295000px;}
.y166{bottom:398.775000px;}
.y49{bottom:399.135000px;}
.y89{bottom:400.575000px;}
.y26{bottom:400.755000px;}
.yba{bottom:409.575000px;}
.y165{bottom:412.635000px;}
.y48{bottom:416.415000px;}
.y25{bottom:417.855000px;}
.y164{bottom:426.315000px;}
.yb9{bottom:426.855000px;}
.y47{bottom:433.695000px;}
.y88{bottom:435.135000px;}
.y163{bottom:440.175000px;}
.y24{bottom:441.075000px;}
.yb8{bottom:444.135000px;}
.y46{bottom:450.975000px;}
.y87{bottom:452.235000px;}
.y162{bottom:454.035000px;}
.yb7{bottom:461.235000px;}
.y161{bottom:467.715000px;}
.y45{bottom:468.255000px;}
.y86{bottom:469.515000px;}
.y23{bottom:475.635000px;}
.yb6{bottom:478.515000px;}
.y160{bottom:481.575000px;}
.y44{bottom:485.535000px;}
.y85{bottom:486.795000px;}
.y22{bottom:490.755000px;}
.y15f{bottom:495.435000px;}
.yb5{bottom:495.795000px;}
.y43{bottom:502.635000px;}
.y84{bottom:504.075000px;}
.y15e{bottom:509.115000px;}
.yb4{bottom:513.075000px;}
.y42{bottom:519.915000px;}
.y21{bottom:520.635000px;}
.y83{bottom:521.355000px;}
.y15d{bottom:522.975000px;}
.yb3{bottom:530.355000px;}
.y20{bottom:535.575000px;}
.y15c{bottom:536.835000px;}
.y41{bottom:537.195000px;}
.y82{bottom:538.635000px;}
.yb2{bottom:547.635000px;}
.y15b{bottom:550.515000px;}
.y1f{bottom:550.695000px;}
.y40{bottom:554.475000px;}
.y81{bottom:555.735000px;}
.y15a{bottom:564.375000px;}
.yb1{bottom:564.735000px;}
.y1e{bottom:565.635000px;}
.y3f{bottom:571.755000px;}
.y80{bottom:573.015000px;}
.ye7{bottom:576.255000px;}
.y159{bottom:578.235000px;}
.y1d{bottom:580.575000px;}
.yb0{bottom:582.015000px;}
.y106{bottom:582.915000px;}
.y3e{bottom:588.855000px;}
.y7f{bottom:590.295000px;}
.y158{bottom:591.915000px;}
.ye6{bottom:593.535000px;}
.y1c{bottom:595.695000px;}
.yaf{bottom:599.295000px;}
.y105{bottom:600.195000px;}
.y157{bottom:605.805000px;}
.y3d{bottom:606.165000px;}
.y7e{bottom:607.605000px;}
.y1b{bottom:610.665000px;}
.yae{bottom:616.605000px;}
.y104{bottom:617.505000px;}
.y156{bottom:619.665000px;}
.y3c{bottom:623.445000px;}
.y7d{bottom:624.885000px;}
.y1a{bottom:625.605000px;}
.ye5{bottom:627.945000px;}
.y155{bottom:633.345000px;}
.yad{bottom:633.885000px;}
.y103{bottom:634.785000px;}
.y126{bottom:639.645000px;}
.y19{bottom:640.725000px;}
.ye4{bottom:645.225000px;}
.y7c{bottom:646.485000px;}
.y154{bottom:647.205000px;}
.yac{bottom:650.985000px;}
.y102{bottom:652.065000px;}
.y18{bottom:655.665000px;}
.y3b{bottom:658.005000px;}
.y153{bottom:660.885000px;}
.ye3{bottom:662.505000px;}
.y101{bottom:669.165000px;}
.y17{bottom:670.605000px;}
.yab{bottom:672.765000px;}
.y7b{bottom:674.385000px;}
.y152{bottom:674.745000px;}
.y125{bottom:675.105000px;}
.y3a{bottom:675.285000px;}
.ye2{bottom:679.785000px;}
.y16{bottom:685.725000px;}
.y100{bottom:686.445000px;}
.y151{bottom:688.605000px;}
.y7a{bottom:691.485000px;}
.y39{bottom:692.385000px;}
.ye1{bottom:697.065000px;}
.yaa{bottom:700.485000px;}
.y15{bottom:700.665000px;}
.y150{bottom:702.285000px;}
.yff{bottom:703.725000px;}
.y79{bottom:708.765000px;}
.y124{bottom:709.485000px;}
.y38{bottom:709.665000px;}
.ye0{bottom:714.165000px;}
.y14{bottom:715.605000px;}
.y14f{bottom:716.145000px;}
.ya9{bottom:717.765000px;}
.yfe{bottom:721.005000px;}
.y78{bottom:726.045000px;}
.y123{bottom:726.765000px;}
.y37{bottom:726.945000px;}
.y14e{bottom:730.005000px;}
.y13{bottom:730.725000px;}
.ydf{bottom:731.445000px;}
.ya8{bottom:735.045000px;}
.yfd{bottom:738.285000px;}
.y77{bottom:743.325000px;}
.y14d{bottom:743.685000px;}
.y122{bottom:744.045000px;}
.y36{bottom:744.225000px;}
.y12{bottom:745.665000px;}
.yde{bottom:748.725000px;}
.ya7{bottom:752.325000px;}
.yfc{bottom:755.565000px;}
.y14c{bottom:757.545000px;}
.y76{bottom:760.605000px;}
.y121{bottom:761.325000px;}
.ydd{bottom:766.005000px;}
.ya6{bottom:769.605000px;}
.y14b{bottom:771.405000px;}
.yfb{bottom:772.665000px;}
.y75{bottom:777.885000px;}
.y120{bottom:778.605000px;}
.ydc{bottom:783.285000px;}
.y14a{bottom:785.085000px;}
.ya5{bottom:786.885000px;}
.yfa{bottom:789.945000px;}
.y74{bottom:794.985000px;}
.y11f{bottom:795.885000px;}
.y149{bottom:798.945000px;}
.ydb{bottom:800.385000px;}
.ya4{bottom:803.985000px;}
.yf{bottom:805.065000px;}
.yf9{bottom:811.545000px;}
.y73{bottom:812.265000px;}
.y148{bottom:812.805000px;}
.y11e{bottom:812.985000px;}
.yda{bottom:817.665000px;}
.ya3{bottom:821.265000px;}
.y147{bottom:826.485000px;}
.y11d{bottom:830.265000px;}
.yd9{bottom:834.945000px;}
.y72{bottom:835.305000px;}
.ya2{bottom:838.545000px;}
.yf8{bottom:839.389500px;}
.y146{bottom:840.345000px;}
.y11c{bottom:847.545000px;}
.yd8{bottom:852.225000px;}
.y145{bottom:854.205000px;}
.ya1{bottom:855.825000px;}
.yf7{bottom:856.653000px;}
.y11b{bottom:864.825000px;}
.y144{bottom:867.885000px;}
.yd7{bottom:869.505000px;}
.y71{bottom:870.810000px;}
.ya0{bottom:873.150000px;}
.yf6{bottom:873.916500px;}
.ye{bottom:874.770000px;}
.y143{bottom:881.790000px;}
.y11a{bottom:882.150000px;}
.yd6{bottom:886.830000px;}
.y70{bottom:888.090000px;}
.y9f{bottom:890.430000px;}
.yf5{bottom:891.180000px;}
.y142{bottom:895.650000px;}
.y119{bottom:899.430000px;}
.yc{bottom:901.050000px;}
.yd5{bottom:903.930000px;}
.y6f{bottom:905.370000px;}
.y9e{bottom:907.530000px;}
.yf4{bottom:908.443500px;}
.y141{bottom:909.330000px;}
.y118{bottom:916.530000px;}
.ya{bottom:918.330000px;}
.yd4{bottom:921.210000px;}
.y6e{bottom:922.650000px;}
.y140{bottom:923.190000px;}
.y9d{bottom:924.810000px;}
.yf3{bottom:925.707000px;}
.y117{bottom:933.810000px;}
.y13f{bottom:937.050000px;}
.yd3{bottom:938.490000px;}
.y6d{bottom:939.930000px;}
.y9c{bottom:942.090000px;}
.yf2{bottom:942.970500px;}
.y13e{bottom:950.730000px;}
.y116{bottom:951.090000px;}
.yd2{bottom:955.770000px;}
.y6c{bottom:957.030000px;}
.y9b{bottom:959.370000px;}
.y7{bottom:959.550000px;}
.yf1{bottom:960.234000px;}
.y13d{bottom:964.590000px;}
.y115{bottom:968.370000px;}
.yd1{bottom:973.050000px;}
.y6b{bottom:974.310000px;}
.y9a{bottom:976.650000px;}
.yf0{bottom:977.497500px;}
.y13c{bottom:978.450000px;}
.y114{bottom:985.650000px;}
.yd0{bottom:990.330000px;}
.y6a{bottom:991.590000px;}
.y13b{bottom:992.130000px;}
.y99{bottom:993.750000px;}
.yef{bottom:994.761000px;}
.y113{bottom:1002.750000px;}
.y13a{bottom:1005.990000px;}
.ycf{bottom:1007.430000px;}
.y69{bottom:1008.870000px;}
.y98{bottom:1011.030000px;}
.yee{bottom:1012.024500px;}
.y139{bottom:1019.850000px;}
.y112{bottom:1020.030000px;}
.yce{bottom:1024.710000px;}
.y68{bottom:1026.150000px;}
.y97{bottom:1028.310000px;}
.yed{bottom:1029.288000px;}
.y138{bottom:1033.530000px;}
.y111{bottom:1037.310000px;}
.ycd{bottom:1041.990000px;}
.y67{bottom:1043.250000px;}
.y96{bottom:1045.590000px;}
.yec{bottom:1046.551500px;}
.y137{bottom:1047.390000px;}
.y110{bottom:1054.590000px;}
.ycc{bottom:1059.270000px;}
.y66{bottom:1060.530000px;}
.y136{bottom:1061.250000px;}
.yeb{bottom:1063.815000px;}
.y95{bottom:1067.190000px;}
.y10f{bottom:1071.870000px;}
.y135{bottom:1074.930000px;}
.ycb{bottom:1076.550000px;}
.y65{bottom:1077.810000px;}
.yea{bottom:1081.078500px;}
.y134{bottom:1088.790000px;}
.y10e{bottom:1089.150000px;}
.y64{bottom:1095.090000px;}
.yca{bottom:1098.150000px;}
.ye9{bottom:1098.342000px;}
.y133{bottom:1102.650000px;}
.y10d{bottom:1106.250000px;}
.y63{bottom:1112.370000px;}
.ye8{bottom:1115.070000px;}
.y132{bottom:1116.330000px;}
.y10c{bottom:1123.530000px;}
.y62{bottom:1129.650000px;}
.y131{bottom:1130.190000px;}
.y10b{bottom:1140.840000px;}
.y130{bottom:1144.080000px;}
.y5{bottom:1146.060000px;}
.y61{bottom:1146.780000px;}
.y12f{bottom:1157.760000px;}
.y10a{bottom:1158.120000px;}
.y5e{bottom:1161.363852px;}
.y4{bottom:1161.540000px;}
.y60{bottom:1164.060000px;}
.y3{bottom:1177.020000px;}
.y109{bottom:1181.160000px;}
.y5f{bottom:1181.340000px;}
.y5a{bottom:1192.320756px;}
.y2{bottom:1192.680000px;}
.y1{bottom:1208.160000px;}
.h8{height:17.265000px;}
.h11{height:17.998200px;}
.h16{height:24.747188px;}
.ha{height:26.265000px;}
.h3{height:32.670352px;}
.h2{height:41.159180px;}
.h6{height:41.205000px;}
.h10{height:44.759274px;}
.h14{height:47.344922px;}
.hf{height:47.983482px;}
.hc{height:54.421875px;}
.h9{height:58.651172px;}
.h12{height:59.614102px;}
.hd{height:61.423863px;}
.h7{height:65.010937px;}
.hb{height:69.682500px;}
.h15{height:73.656000px;}
.h5{height:99.984375px;}
.h4{height:127.605000px;}
.h13{height:488.361000px;}
.he{height:1262.873700px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:-101.745000px;}
.w7{width:22.497750px;}
.w4{width:23.997600px;}
.w5{width:729.315000px;}
.w2{width:733.635000px;}
.w3{width:892.410750px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:10.785000px;}
.xd{left:14.571000px;}
.x8{left:24.651000px;}
.xa{left:76.665000px;}
.x1b{left:78.345000px;}
.x7{left:79.785000px;}
.x11{left:84.996000px;}
.x10{left:95.616000px;}
.xf{left:100.245000px;}
.x13{left:106.236000px;}
.x18{left:114.336000px;}
.x1c{left:127.476000px;}
.x9{left:179.670000px;}
.x1d{left:202.350000px;}
.x12{left:204.330000px;}
.x6{left:217.470000px;}
.xb{left:276.510000px;}
.xc{left:299.730000px;}
.xe{left:342.780000px;}
.x14{left:455.505000px;}
.x15{left:476.745000px;}
.x1f{left:482.505000px;}
.x19{left:524.445000px;}
.x1e{left:590.370000px;}
.x5{left:665.970000px;}
.x1{left:669.390000px;}
.x2{left:672.450000px;}
.x4{left:699.090000px;}
.x3{left:728.280000px;}
.x16{left:770.322960px;}
.x17{left:774.204990px;}
.x22{left:775.704840px;}
.x1a{left:779.760000px;}
.x20{left:994.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.420267pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls1a{letter-spacing:-0.400533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.047467pt;}
.lse{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.296320pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.440960pt;}
.ls1b{letter-spacing:0.441067pt;}
.ls19{letter-spacing:0.456533pt;}
.ls13{letter-spacing:0.545280pt;}
.ls12{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.232640pt;}
.ls15{letter-spacing:8.912640pt;}
.ls0{letter-spacing:29.392640pt;}
.ls14{letter-spacing:42.832640pt;}
.ws10{word-spacing:-24.184320pt;}
.wsc{word-spacing:-13.736533pt;}
.wsa{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.438656pt;}
.ws6{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327467pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.096533pt;}
.ws1{word-spacing:-11.552000pt;}
.wsf{word-spacing:-11.161067pt;}
.ws3{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.400000pt;}
.wse{word-spacing:-10.319467pt;}
.ws0{word-spacing:-10.299733pt;}
.ws11{word-spacing:-9.461760pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:12.658347pt;}
._2d{margin-left:-8.568960pt;}
._2b{margin-left:-6.517973pt;}
._13{margin-left:-3.715508pt;}
._12{margin-left:-2.443732pt;}
._0{margin-left:-1.029292pt;}
._1{width:1.485106pt;}
._8{width:2.693768pt;}
._7{width:3.605308pt;}
._10{width:4.613291pt;}
._11{width:5.830934pt;}
._4{width:7.248000pt;}
._5{width:8.298672pt;}
._9{width:9.744000pt;}
._a{width:10.890672pt;}
._17{width:11.898668pt;}
._35{width:12.916040pt;}
._29{width:14.398093pt;}
._1a{width:15.343165pt;}
._2{width:16.335984pt;}
._3{width:17.354688pt;}
._24{width:18.258510pt;}
._28{width:19.158593pt;}
._b{width:20.352000pt;}
._c{width:21.984000pt;}
._14{width:23.532266pt;}
._15{width:24.437560pt;}
._16{width:25.550401pt;}
._1c{width:26.931734pt;}
._26{width:27.888000pt;}
._19{width:28.801610pt;}
._6{width:30.586656pt;}
._d{width:32.117334pt;}
._e{width:33.200000pt;}
._f{width:34.200945pt;}
._18{width:35.856000pt;}
._2a{width:37.294854pt;}
._1f{width:38.883681pt;}
._2f{width:40.334846pt;}
._1d{width:41.291040pt;}
._1e{width:42.269080pt;}
._25{width:48.286346pt;}
._21{width:51.937290pt;}
._20{width:52.871521pt;}
._1b{width:53.970079pt;}
._36{width:62.905132pt;}
._2c{width:67.196747pt;}
._31{width:69.834854pt;}
._30{width:70.727899pt;}
._2e{width:71.918902pt;}
._27{width:79.148747pt;}
._23{width:92.431107pt;}
._22{width:93.650613pt;}
._33{width:190.601729pt;}
._32{width:208.107694pt;}
._34{width:213.930240pt;}
.fs8{font-size:26.880000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:53.754624pt;}
.fs6{font-size:58.874112pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:63.993600pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.253008pt;}
.yd{bottom:3.360000pt;}
.yb{bottom:6.080000pt;}
.y17b{bottom:12.800000pt;}
.y9{bottom:15.200000pt;}
.y108{bottom:17.432000pt;}
.y11{bottom:26.560000pt;}
.y10{bottom:41.920000pt;}
.y6{bottom:43.360000pt;}
.y5c{bottom:49.328400pt;}
.y17a{bottom:50.752000pt;}
.y5b{bottom:51.301536pt;}
.y8{bottom:52.000000pt;}
.y107{bottom:67.080000pt;}
.y59{bottom:109.472000pt;}
.y94{bottom:110.752000pt;}
.yc9{bottom:112.672000pt;}
.y179{bottom:121.312000pt;}
.y58{bottom:124.832000pt;}
.y35{bottom:126.112000pt;}
.yc8{bottom:128.032000pt;}
.y178{bottom:133.626667pt;}
.y57{bottom:140.186667pt;}
.y12e{bottom:140.666667pt;}
.y93{bottom:141.306667pt;}
.y34{bottom:141.466667pt;}
.yc7{bottom:143.386667pt;}
.y177{bottom:145.946667pt;}
.y56{bottom:155.546667pt;}
.y12d{bottom:156.026667pt;}
.y92{bottom:156.666667pt;}
.y33{bottom:156.826667pt;}
.y176{bottom:158.106667pt;}
.yc6{bottom:158.746667pt;}
.y175{bottom:170.426667pt;}
.y55{bottom:170.746667pt;}
.y12c{bottom:171.386667pt;}
.y91{bottom:172.026667pt;}
.y32{bottom:172.186667pt;}
.yc5{bottom:179.226667pt;}
.y174{bottom:182.746667pt;}
.y54{bottom:186.106667pt;}
.y12b{bottom:186.746667pt;}
.y90{bottom:187.386667pt;}
.y31{bottom:187.546667pt;}
.y173{bottom:194.906667pt;}
.y53{bottom:201.466667pt;}
.y12a{bottom:202.106667pt;}
.y30{bottom:202.746667pt;}
.y172{bottom:207.226667pt;}
.yc4{bottom:210.746667pt;}
.y52{bottom:216.826667pt;}
.y129{bottom:217.306667pt;}
.y2f{bottom:218.106667pt;}
.y171{bottom:219.546667pt;}
.yc3{bottom:226.106667pt;}
.y170{bottom:231.706667pt;}
.y51{bottom:232.186667pt;}
.y128{bottom:232.666667pt;}
.y8f{bottom:233.306667pt;}
.y2e{bottom:233.466667pt;}
.yc2{bottom:241.306667pt;}
.y16f{bottom:244.026667pt;}
.y50{bottom:247.546667pt;}
.y8e{bottom:248.666667pt;}
.y2d{bottom:248.826667pt;}
.y127{bottom:256.026667pt;}
.y16e{bottom:256.346667pt;}
.yc1{bottom:256.666667pt;}
.y4f{bottom:262.746667pt;}
.y8d{bottom:264.026667pt;}
.y2c{bottom:264.186667pt;}
.y16d{bottom:268.506667pt;}
.yc0{bottom:272.026667pt;}
.y4e{bottom:278.106667pt;}
.y2b{bottom:279.386667pt;}
.y16c{bottom:280.826667pt;}
.ybf{bottom:287.386667pt;}
.y16b{bottom:293.146667pt;}
.y4d{bottom:293.466667pt;}
.y2a{bottom:294.746667pt;}
.ybe{bottom:302.786667pt;}
.y16a{bottom:305.346667pt;}
.y4c{bottom:308.866667pt;}
.y8c{bottom:309.986667pt;}
.y29{bottom:310.146667pt;}
.y169{bottom:317.666667pt;}
.ybd{bottom:317.986667pt;}
.y4b{bottom:324.226667pt;}
.y8b{bottom:325.346667pt;}
.y28{bottom:325.506667pt;}
.y168{bottom:329.986667pt;}
.ybc{bottom:333.346667pt;}
.y4a{bottom:339.586667pt;}
.y8a{bottom:340.706667pt;}
.y27{bottom:340.866667pt;}
.y167{bottom:342.146667pt;}
.ybb{bottom:348.706667pt;}
.y166{bottom:354.466667pt;}
.y49{bottom:354.786667pt;}
.y89{bottom:356.066667pt;}
.y26{bottom:356.226667pt;}
.yba{bottom:364.066667pt;}
.y165{bottom:366.786667pt;}
.y48{bottom:370.146667pt;}
.y25{bottom:371.426667pt;}
.y164{bottom:378.946667pt;}
.yb9{bottom:379.426667pt;}
.y47{bottom:385.506667pt;}
.y88{bottom:386.786667pt;}
.y163{bottom:391.266667pt;}
.y24{bottom:392.066667pt;}
.yb8{bottom:394.786667pt;}
.y46{bottom:400.866667pt;}
.y87{bottom:401.986667pt;}
.y162{bottom:403.586667pt;}
.yb7{bottom:409.986667pt;}
.y161{bottom:415.746667pt;}
.y45{bottom:416.226667pt;}
.y86{bottom:417.346667pt;}
.y23{bottom:422.786667pt;}
.yb6{bottom:425.346667pt;}
.y160{bottom:428.066667pt;}
.y44{bottom:431.586667pt;}
.y85{bottom:432.706667pt;}
.y22{bottom:436.226667pt;}
.y15f{bottom:440.386667pt;}
.yb5{bottom:440.706667pt;}
.y43{bottom:446.786667pt;}
.y84{bottom:448.066667pt;}
.y15e{bottom:452.546667pt;}
.yb4{bottom:456.066667pt;}
.y42{bottom:462.146667pt;}
.y21{bottom:462.786667pt;}
.y83{bottom:463.426667pt;}
.y15d{bottom:464.866667pt;}
.yb3{bottom:471.426667pt;}
.y20{bottom:476.066667pt;}
.y15c{bottom:477.186667pt;}
.y41{bottom:477.506667pt;}
.y82{bottom:478.786667pt;}
.yb2{bottom:486.786667pt;}
.y15b{bottom:489.346667pt;}
.y1f{bottom:489.506667pt;}
.y40{bottom:492.866667pt;}
.y81{bottom:493.986667pt;}
.y15a{bottom:501.666667pt;}
.yb1{bottom:501.986667pt;}
.y1e{bottom:502.786667pt;}
.y3f{bottom:508.226667pt;}
.y80{bottom:509.346667pt;}
.ye7{bottom:512.226667pt;}
.y159{bottom:513.986667pt;}
.y1d{bottom:516.066667pt;}
.yb0{bottom:517.346667pt;}
.y106{bottom:518.146667pt;}
.y3e{bottom:523.426667pt;}
.y7f{bottom:524.706667pt;}
.y158{bottom:526.146667pt;}
.ye6{bottom:527.586667pt;}
.y1c{bottom:529.506667pt;}
.yaf{bottom:532.706667pt;}
.y105{bottom:533.506667pt;}
.y157{bottom:538.493333pt;}
.y3d{bottom:538.813333pt;}
.y7e{bottom:540.093333pt;}
.y1b{bottom:542.813333pt;}
.yae{bottom:548.093333pt;}
.y104{bottom:548.893333pt;}
.y156{bottom:550.813333pt;}
.y3c{bottom:554.173333pt;}
.y7d{bottom:555.453333pt;}
.y1a{bottom:556.093333pt;}
.ye5{bottom:558.173333pt;}
.y155{bottom:562.973333pt;}
.yad{bottom:563.453333pt;}
.y103{bottom:564.253333pt;}
.y126{bottom:568.573333pt;}
.y19{bottom:569.533333pt;}
.ye4{bottom:573.533333pt;}
.y7c{bottom:574.653333pt;}
.y154{bottom:575.293333pt;}
.yac{bottom:578.653333pt;}
.y102{bottom:579.613333pt;}
.y18{bottom:582.813333pt;}
.y3b{bottom:584.893333pt;}
.y153{bottom:587.453333pt;}
.ye3{bottom:588.893333pt;}
.y101{bottom:594.813333pt;}
.y17{bottom:596.093333pt;}
.yab{bottom:598.013333pt;}
.y7b{bottom:599.453333pt;}
.y152{bottom:599.773333pt;}
.y125{bottom:600.093333pt;}
.y3a{bottom:600.253333pt;}
.ye2{bottom:604.253333pt;}
.y16{bottom:609.533333pt;}
.y100{bottom:610.173333pt;}
.y151{bottom:612.093333pt;}
.y7a{bottom:614.653333pt;}
.y39{bottom:615.453333pt;}
.ye1{bottom:619.613333pt;}
.yaa{bottom:622.653333pt;}
.y15{bottom:622.813333pt;}
.y150{bottom:624.253333pt;}
.yff{bottom:625.533333pt;}
.y79{bottom:630.013333pt;}
.y124{bottom:630.653333pt;}
.y38{bottom:630.813333pt;}
.ye0{bottom:634.813333pt;}
.y14{bottom:636.093333pt;}
.y14f{bottom:636.573333pt;}
.ya9{bottom:638.013333pt;}
.yfe{bottom:640.893333pt;}
.y78{bottom:645.373333pt;}
.y123{bottom:646.013333pt;}
.y37{bottom:646.173333pt;}
.y14e{bottom:648.893333pt;}
.y13{bottom:649.533333pt;}
.ydf{bottom:650.173333pt;}
.ya8{bottom:653.373333pt;}
.yfd{bottom:656.253333pt;}
.y77{bottom:660.733333pt;}
.y14d{bottom:661.053333pt;}
.y122{bottom:661.373333pt;}
.y36{bottom:661.533333pt;}
.y12{bottom:662.813333pt;}
.yde{bottom:665.533333pt;}
.ya7{bottom:668.733333pt;}
.yfc{bottom:671.613333pt;}
.y14c{bottom:673.373333pt;}
.y76{bottom:676.093333pt;}
.y121{bottom:676.733333pt;}
.ydd{bottom:680.893333pt;}
.ya6{bottom:684.093333pt;}
.y14b{bottom:685.693333pt;}
.yfb{bottom:686.813333pt;}
.y75{bottom:691.453333pt;}
.y120{bottom:692.093333pt;}
.ydc{bottom:696.253333pt;}
.y14a{bottom:697.853333pt;}
.ya5{bottom:699.453333pt;}
.yfa{bottom:702.173333pt;}
.y74{bottom:706.653333pt;}
.y11f{bottom:707.453333pt;}
.y149{bottom:710.173333pt;}
.ydb{bottom:711.453333pt;}
.ya4{bottom:714.653333pt;}
.yf{bottom:715.613333pt;}
.yf9{bottom:721.373333pt;}
.y73{bottom:722.013333pt;}
.y148{bottom:722.493333pt;}
.y11e{bottom:722.653333pt;}
.yda{bottom:726.813333pt;}
.ya3{bottom:730.013333pt;}
.y147{bottom:734.653333pt;}
.y11d{bottom:738.013333pt;}
.yd9{bottom:742.173333pt;}
.y72{bottom:742.493333pt;}
.ya2{bottom:745.373333pt;}
.yf8{bottom:746.124000pt;}
.y146{bottom:746.973333pt;}
.y11c{bottom:753.373333pt;}
.yd8{bottom:757.533333pt;}
.y145{bottom:759.293333pt;}
.ya1{bottom:760.733333pt;}
.yf7{bottom:761.469333pt;}
.y11b{bottom:768.733333pt;}
.y144{bottom:771.453333pt;}
.yd7{bottom:772.893333pt;}
.y71{bottom:774.053333pt;}
.ya0{bottom:776.133333pt;}
.yf6{bottom:776.814667pt;}
.ye{bottom:777.573333pt;}
.y143{bottom:783.813333pt;}
.y11a{bottom:784.133333pt;}
.yd6{bottom:788.293333pt;}
.y70{bottom:789.413333pt;}
.y9f{bottom:791.493333pt;}
.yf5{bottom:792.160000pt;}
.y142{bottom:796.133333pt;}
.y119{bottom:799.493333pt;}
.yc{bottom:800.933333pt;}
.yd5{bottom:803.493333pt;}
.y6f{bottom:804.773333pt;}
.y9e{bottom:806.693333pt;}
.yf4{bottom:807.505333pt;}
.y141{bottom:808.293333pt;}
.y118{bottom:814.693333pt;}
.ya{bottom:816.293333pt;}
.yd4{bottom:818.853333pt;}
.y6e{bottom:820.133333pt;}
.y140{bottom:820.613333pt;}
.y9d{bottom:822.053333pt;}
.yf3{bottom:822.850667pt;}
.y117{bottom:830.053333pt;}
.y13f{bottom:832.933333pt;}
.yd3{bottom:834.213333pt;}
.y6d{bottom:835.493333pt;}
.y9c{bottom:837.413333pt;}
.yf2{bottom:838.196000pt;}
.y13e{bottom:845.093333pt;}
.y116{bottom:845.413333pt;}
.yd2{bottom:849.573333pt;}
.y6c{bottom:850.693333pt;}
.y9b{bottom:852.773333pt;}
.y7{bottom:852.933333pt;}
.yf1{bottom:853.541333pt;}
.y13d{bottom:857.413333pt;}
.y115{bottom:860.773333pt;}
.yd1{bottom:864.933333pt;}
.y6b{bottom:866.053333pt;}
.y9a{bottom:868.133333pt;}
.yf0{bottom:868.886667pt;}
.y13c{bottom:869.733333pt;}
.y114{bottom:876.133333pt;}
.yd0{bottom:880.293333pt;}
.y6a{bottom:881.413333pt;}
.y13b{bottom:881.893333pt;}
.y99{bottom:883.333333pt;}
.yef{bottom:884.232000pt;}
.y113{bottom:891.333333pt;}
.y13a{bottom:894.213333pt;}
.ycf{bottom:895.493333pt;}
.y69{bottom:896.773333pt;}
.y98{bottom:898.693333pt;}
.yee{bottom:899.577333pt;}
.y139{bottom:906.533333pt;}
.y112{bottom:906.693333pt;}
.yce{bottom:910.853333pt;}
.y68{bottom:912.133333pt;}
.y97{bottom:914.053333pt;}
.yed{bottom:914.922667pt;}
.y138{bottom:918.693333pt;}
.y111{bottom:922.053333pt;}
.ycd{bottom:926.213333pt;}
.y67{bottom:927.333333pt;}
.y96{bottom:929.413333pt;}
.yec{bottom:930.268000pt;}
.y137{bottom:931.013333pt;}
.y110{bottom:937.413333pt;}
.ycc{bottom:941.573333pt;}
.y66{bottom:942.693333pt;}
.y136{bottom:943.333333pt;}
.yeb{bottom:945.613333pt;}
.y95{bottom:948.613333pt;}
.y10f{bottom:952.773333pt;}
.y135{bottom:955.493333pt;}
.ycb{bottom:956.933333pt;}
.y65{bottom:958.053333pt;}
.yea{bottom:960.958667pt;}
.y134{bottom:967.813333pt;}
.y10e{bottom:968.133333pt;}
.y64{bottom:973.413333pt;}
.yca{bottom:976.133333pt;}
.ye9{bottom:976.304000pt;}
.y133{bottom:980.133333pt;}
.y10d{bottom:983.333333pt;}
.y63{bottom:988.773333pt;}
.ye8{bottom:991.173333pt;}
.y132{bottom:992.293333pt;}
.y10c{bottom:998.693333pt;}
.y62{bottom:1004.133333pt;}
.y131{bottom:1004.613333pt;}
.y10b{bottom:1014.080000pt;}
.y130{bottom:1016.960000pt;}
.y5{bottom:1018.720000pt;}
.y61{bottom:1019.360000pt;}
.y12f{bottom:1029.120000pt;}
.y10a{bottom:1029.440000pt;}
.y5e{bottom:1032.323424pt;}
.y4{bottom:1032.480000pt;}
.y60{bottom:1034.720000pt;}
.y3{bottom:1046.240000pt;}
.y109{bottom:1049.920000pt;}
.y5f{bottom:1050.080000pt;}
.y5a{bottom:1059.840672pt;}
.y2{bottom:1060.160000pt;}
.y1{bottom:1073.920000pt;}
.h8{height:15.346667pt;}
.h11{height:15.998400pt;}
.h16{height:21.997500pt;}
.ha{height:23.346667pt;}
.h3{height:29.040312pt;}
.h2{height:36.585938pt;}
.h6{height:36.626667pt;}
.h10{height:39.786021pt;}
.h14{height:42.084375pt;}
.hf{height:42.651984pt;}
.hc{height:48.375000pt;}
.h9{height:52.134375pt;}
.h12{height:52.990313pt;}
.hd{height:54.598989pt;}
.h7{height:57.787500pt;}
.hb{height:61.940000pt;}
.h15{height:65.472000pt;}
.h5{height:88.875000pt;}
.h4{height:113.426667pt;}
.h13{height:434.098667pt;}
.he{height:1122.554400pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:-90.440000pt;}
.w7{width:19.998000pt;}
.w4{width:21.331200pt;}
.w5{width:648.280000pt;}
.w2{width:652.120000pt;}
.w3{width:793.254000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:9.586667pt;}
.xd{left:12.952000pt;}
.x8{left:21.912000pt;}
.xa{left:68.146667pt;}
.x1b{left:69.640000pt;}
.x7{left:70.920000pt;}
.x11{left:75.552000pt;}
.x10{left:84.992000pt;}
.xf{left:89.106667pt;}
.x13{left:94.432000pt;}
.x18{left:101.632000pt;}
.x1c{left:113.312000pt;}
.x9{left:159.706667pt;}
.x1d{left:179.866667pt;}
.x12{left:181.626667pt;}
.x6{left:193.306667pt;}
.xb{left:245.786667pt;}
.xc{left:266.426667pt;}
.xe{left:304.693333pt;}
.x14{left:404.893333pt;}
.x15{left:423.773333pt;}
.x1f{left:428.893333pt;}
.x19{left:466.173333pt;}
.x1e{left:524.773333pt;}
.x5{left:591.973333pt;}
.x1{left:595.013333pt;}
.x2{left:597.733333pt;}
.x4{left:621.413333pt;}
.x3{left:647.360000pt;}
.x16{left:684.731520pt;}
.x17{left:688.182213pt;}
.x22{left:689.515413pt;}
.x1a{left:693.120000pt;}
.x20{left:884.200000pt;}
}




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