
    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_baaa3b0f8ae9d30f1a8976bf.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6ad98c0696d9f4c707e61349.woff')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_424fff9e702ae443d58ac6f9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0da38a0cf7c293a4addcd063.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9522fe45a123029b316d06de.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_a705bb87df793c158dd94634.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_98cf9aa5cb33c9f01d5ce046.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_a4226273fb0081d44bbd76cf.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_63f0b9727f72ff12dd4559df.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_625aea1f1a005e04f7843739.woff')format("woff");}.ffc{font-family:ffc;line-height:0.976562;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_a692ed45b96d694153e0b6da.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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_96e3b4029c0434bbcad310c3.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5354bf99fe3aa6b72f0a0877.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fccbf32dee1531c1e56c9d2d.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a3f1fdca102a8a9de6bb957f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_d8216c0937596b8d122aba0f.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_da442d30bb39a6b39fb1b997.woff')format("woff");}.ff13{font-family:ff13;line-height:0.937988;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.066240px;}
.ls2{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.421920px;}
.ls5{letter-spacing:0.447840px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.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.626360px;}
.ws4{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-9.720000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._17{margin-left:-8.047440px;}
._c{margin-left:-6.537600px;}
._4{margin-left:-4.844160px;}
._2{margin-left:-3.168000px;}
._3{margin-left:-2.157120px;}
._1{margin-left:-1.044000px;}
._0{width:1.008000px;}
._5{width:2.568000px;}
._a{width:3.595200px;}
._6{width:5.366880px;}
._7{width:6.513840px;}
._e{width:7.994880px;}
._9{width:9.262800px;}
._8{width:10.338480px;}
._10{width:12.245760px;}
._f{width:13.646880px;}
._11{width:16.084080px;}
._13{width:17.177760px;}
._12{width:18.286560px;}
._19{width:20.079360px;}
._18{width:21.239280px;}
._d{width:22.589280px;}
._16{width:25.159680px;}
._b{width:27.796320px;}
._14{width:102.070800px;}
._15{width:103.273200px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(50,62,79);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y7a{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y4b{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.yc{bottom:9.720000px;}
.y49{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y45{bottom:20.520000px;}
.y7d{bottom:21.240000px;}
.y4a{bottom:22.320000px;}
.y19{bottom:23.940000px;}
.y48{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.760000px;}
.y44{bottom:37.620000px;}
.yc1{bottom:39.240000px;}
.ybd{bottom:39.285000px;}
.y18{bottom:40.545000px;}
.ya{bottom:46.620000px;}
.y43{bottom:54.900000px;}
.y1{bottom:55.260000px;}
.y17{bottom:56.925000px;}
.y80{bottom:57.240000px;}
.y42{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y16{bottom:73.485000px;}
.y85{bottom:75.240000px;}
.y15{bottom:86.445000px;}
.y41{bottom:89.460000px;}
.yba{bottom:91.080000px;}
.y8{bottom:93.090000px;}
.y57{bottom:97.776000px;}
.yaf{bottom:100.476000px;}
.yfc{bottom:101.376000px;}
.ycc{bottom:102.816000px;}
.y14{bottom:104.805000px;}
.y40{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.y56{bottom:115.056000px;}
.yae{bottom:117.756000px;}
.yfb{bottom:118.656000px;}
.ycb{bottom:120.096000px;}
.y13{bottom:123.165000px;}
.y3f{bottom:123.840000px;}
.y55{bottom:132.156000px;}
.y2d{bottom:132.840000px;}
.yad{bottom:135.216000px;}
.yfa{bottom:135.756000px;}
.yca{bottom:137.196000px;}
.y3e{bottom:141.120000px;}
.y12{bottom:142.065000px;}
.y96{bottom:145.476000px;}
.y2c{bottom:148.140000px;}
.y54{bottom:149.436000px;}
.yc7{bottom:151.950000px;}
.yf9{bottom:153.030000px;}
.y3d{bottom:158.400000px;}
.y2b{bottom:165.600000px;}
.y53{bottom:166.710000px;}
.y11{bottom:167.805000px;}
.yc9{bottom:169.950000px;}
.yf8{bottom:170.310000px;}
.y95{bottom:174.810000px;}
.y3c{bottom:175.680000px;}
.y2a{bottom:182.880000px;}
.y52{bottom:183.990000px;}
.yf7{bottom:187.590000px;}
.yc8{bottom:187.950000px;}
.y94{bottom:192.090000px;}
.y10{bottom:192.285000px;}
.y3b{bottom:192.960000px;}
.y29{bottom:200.160000px;}
.y51{bottom:201.270000px;}
.yf6{bottom:204.870000px;}
.yc4{bottom:205.950000px;}
.y93{bottom:209.370000px;}
.y3a{bottom:210.240000px;}
.y28{bottom:217.980000px;}
.y50{bottom:218.550000px;}
.yf5{bottom:221.970000px;}
.yc6{bottom:223.950000px;}
.y92{bottom:226.470000px;}
.y39{bottom:227.340000px;}
.y27{bottom:235.290000px;}
.y4f{bottom:235.650000px;}
.yf4{bottom:239.250000px;}
.y8e{bottom:241.230000px;}
.yc5{bottom:241.950000px;}
.y38{bottom:244.650000px;}
.y26{bottom:252.750000px;}
.y4e{bottom:252.930000px;}
.yf3{bottom:256.530000px;}
.y91{bottom:259.230000px;}
.yc0{bottom:259.950000px;}
.y111{bottom:260.310000px;}
.y37{bottom:261.930000px;}
.y25{bottom:270.210000px;}
.yf2{bottom:273.810000px;}
.y90{bottom:277.230000px;}
.y110{bottom:277.590000px;}
.yc3{bottom:277.950000px;}
.y36{bottom:279.210000px;}
.ya6{bottom:284.970000px;}
.y24{bottom:287.490000px;}
.yf1{bottom:291.090000px;}
.y10f{bottom:294.870000px;}
.y8f{bottom:295.230000px;}
.yc2{bottom:295.950000px;}
.y35{bottom:296.490000px;}
.ya5{bottom:302.250000px;}
.y4d{bottom:304.770000px;}
.y23{bottom:304.950000px;}
.yf0{bottom:308.370000px;}
.y10e{bottom:311.970000px;}
.y8c{bottom:313.230000px;}
.y34{bottom:313.770000px;}
.ybc{bottom:313.950000px;}
.ya4{bottom:319.530000px;}
.y22{bottom:322.410000px;}
.y4c{bottom:322.590000px;}
.yef{bottom:325.470000px;}
.y10d{bottom:329.250000px;}
.y33{bottom:330.870000px;}
.y8d{bottom:331.230000px;}
.ybf{bottom:331.950000px;}
.ya3{bottom:336.855000px;}
.y47{bottom:337.035000px;}
.y21{bottom:339.690000px;}
.yee{bottom:342.795000px;}
.y10c{bottom:346.575000px;}
.y32{bottom:348.150000px;}
.y8a{bottom:349.275000px;}
.ybe{bottom:349.995000px;}
.ya2{bottom:353.955000px;}
.y20{bottom:357.150000px;}
.yed{bottom:360.075000px;}
.y10b{bottom:363.855000px;}
.y31{bottom:365.430000px;}
.y8b{bottom:367.275000px;}
.yb9{bottom:367.995000px;}
.ya1{bottom:371.415000px;}
.y1c{bottom:373.755000px;}
.y1f{bottom:374.790000px;}
.yec{bottom:377.355000px;}
.y10a{bottom:381.135000px;}
.y30{bottom:382.710000px;}
.y84{bottom:385.275000px;}
.yeb{bottom:394.635000px;}
.y109{bottom:398.415000px;}
.y2f{bottom:399.990000px;}
.y1e{bottom:402.150000px;}
.y89{bottom:403.275000px;}
.yea{bottom:411.915000px;}
.y108{bottom:415.515000px;}
.y2e{bottom:417.090000px;}
.y1d{bottom:419.790000px;}
.y88{bottom:421.275000px;}
.ye9{bottom:429.015000px;}
.y107{bottom:432.795000px;}
.ybb{bottom:438.555000px;}
.y87{bottom:439.275000px;}
.ye8{bottom:446.295000px;}
.y106{bottom:450.075000px;}
.y86{bottom:457.275000px;}
.ye7{bottom:463.575000px;}
.y105{bottom:467.355000px;}
.yb8{bottom:473.835000px;}
.y7f{bottom:475.275000px;}
.ye6{bottom:480.855000px;}
.y104{bottom:484.635000px;}
.y83{bottom:493.275000px;}
.yb7{bottom:495.075000px;}
.ye5{bottom:498.135000px;}
.y103{bottom:501.735000px;}
.y82{bottom:511.275000px;}
.yb6{bottom:512.355000px;}
.ye4{bottom:515.235000px;}
.y102{bottom:519.015000px;}
.y81{bottom:529.275000px;}
.yb5{bottom:529.455000px;}
.ye3{bottom:532.515000px;}
.y101{bottom:536.295000px;}
.yb4{bottom:546.735000px;}
.y7c{bottom:547.275000px;}
.ye2{bottom:549.795000px;}
.y100{bottom:553.575000px;}
.yb3{bottom:564.015000px;}
.y7e{bottom:565.275000px;}
.ye1{bottom:567.075000px;}
.yff{bottom:570.855000px;}
.yb2{bottom:581.295000px;}
.y7b{bottom:583.275000px;}
.ye0{bottom:584.355000px;}
.yfe{bottom:588.135000px;}
.yb1{bottom:598.575000px;}
.y79{bottom:601.275000px;}
.ydf{bottom:601.635000px;}
.yfd{bottom:605.265000px;}
.yb0{bottom:616.065000px;}
.yde{bottom:618.765000px;}
.y78{bottom:622.545000px;}
.ydd{bottom:636.045000px;}
.y77{bottom:639.825000px;}
.ydc{bottom:653.325000px;}
.y76{bottom:657.105000px;}
.ydb{bottom:670.605000px;}
.y75{bottom:674.385000px;}
.yda{bottom:687.885000px;}
.y74{bottom:691.665000px;}
.yd9{bottom:705.165000px;}
.y73{bottom:708.765000px;}
.yd8{bottom:722.265000px;}
.y72{bottom:726.045000px;}
.yac{bottom:731.985000px;}
.yd7{bottom:739.545000px;}
.y71{bottom:743.325000px;}
.yab{bottom:749.265000px;}
.yd6{bottom:756.825000px;}
.y70{bottom:760.605000px;}
.yaa{bottom:766.545000px;}
.yd5{bottom:774.105000px;}
.y6f{bottom:777.885000px;}
.ya9{bottom:783.825000px;}
.yd4{bottom:791.385000px;}
.y6e{bottom:795.165000px;}
.ya8{bottom:801.105000px;}
.y1a{bottom:804.885000px;}
.yd3{bottom:808.665000px;}
.y6d{bottom:812.265000px;}
.ya7{bottom:818.385000px;}
.yd2{bottom:825.765000px;}
.y6c{bottom:829.545000px;}
.yf{bottom:834.405000px;}
.yd1{bottom:843.045000px;}
.y6b{bottom:846.825000px;}
.yd0{bottom:860.325000px;}
.y6a{bottom:864.105000px;}
.ycf{bottom:877.650000px;}
.y69{bottom:881.430000px;}
.yce{bottom:894.930000px;}
.y68{bottom:898.530000px;}
.ycd{bottom:912.030000px;}
.y67{bottom:915.810000px;}
.ya0{bottom:929.310000px;}
.y66{bottom:933.090000px;}
.y9f{bottom:946.590000px;}
.y65{bottom:950.370000px;}
.y9e{bottom:963.870000px;}
.y64{bottom:967.650000px;}
.y9d{bottom:981.150000px;}
.y63{bottom:984.930000px;}
.y9c{bottom:998.430000px;}
.y62{bottom:1002.030000px;}
.y9b{bottom:1015.530000px;}
.y61{bottom:1019.310000px;}
.y9a{bottom:1030.290000px;}
.y60{bottom:1036.590000px;}
.yd{bottom:1041.810000px;}
.y99{bottom:1048.290000px;}
.y5f{bottom:1053.870000px;}
.y98{bottom:1066.290000px;}
.y6{bottom:1067.010000px;}
.y5e{bottom:1071.150000px;}
.y97{bottom:1084.290000px;}
.y5d{bottom:1088.430000px;}
.y5c{bottom:1105.530000px;}
.y5b{bottom:1122.810000px;}
.y5a{bottom:1140.120000px;}
.y59{bottom:1157.400000px;}
.y58{bottom:1174.680000px;}
.h20{height:17.280000px;}
.h1f{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:33.156000px;}
.h26{height:34.560000px;}
.h21{height:35.280000px;}
.h24{height:35.316000px;}
.h8{height:36.180000px;}
.h1b{height:36.720000px;}
.h19{height:38.818125px;}
.h1d{height:42.164648px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.461953px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h28{height:53.280000px;}
.h27{height:53.316000px;}
.h1a{height:53.573906px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h1e{height:55.735313px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h22{height:71.280000px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h23{height:89.280000px;}
.h25{height:105.120000px;}
.h7{height:121.536000px;}
.hc{height:207.390000px;}
.h14{height:431.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wf{width:87.876000px;}
.w15{width:119.916000px;}
.w16{width:129.420000px;}
.wc{width:131.040000px;}
.w12{width:148.320000px;}
.w5{width:151.950000px;}
.w11{width:157.170000px;}
.wd{width:165.450000px;}
.wb{width:169.590000px;}
.w10{width:176.250000px;}
.w14{width:200.910000px;}
.w8{width:223.455000px;}
.w18{width:239.790000px;}
.wa{width:261.435000px;}
.w13{width:277.275000px;}
.we{width:467.535000px;}
.w17{width:489.165000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x15{left:12.600000px;}
.xc{left:24.876000px;}
.xf{left:78.330000px;}
.x1{left:81.000000px;}
.x10{left:90.030000px;}
.x11{left:93.630000px;}
.x4{left:98.130000px;}
.x12{left:102.630000px;}
.x2c{left:108.035987px;}
.x2d{left:135.035987px;}
.xe{left:162.210000px;}
.x1c{left:170.310000px;}
.xd{left:175.710000px;}
.x1a{left:195.870000px;}
.x13{left:215.175000px;}
.x5{left:232.950000px;}
.x21{left:248.249987px;}
.x27{left:258.149987px;}
.x25{left:261.209987px;}
.x28{left:269.129987px;}
.x8{left:272.235000px;}
.x1b{left:279.074987px;}
.x14{left:304.455000px;}
.x16{left:317.414987px;}
.x6{left:331.995000px;}
.x17{left:343.875000px;}
.x1d{left:347.295000px;}
.x7{left:351.255000px;}
.x29{left:359.715000px;}
.xb{left:365.475000px;}
.x9{left:439.500000px;}
.x22{left:446.474987px;}
.x1e{left:505.185000px;}
.x18{left:514.185000px;}
.x2a{left:561.345000px;}
.xa{left:571.080000px;}
.x19{left:645.945000px;}
.x1f{left:654.225000px;}
.x26{left:674.789987px;}
.x23{left:675.869987px;}
.x24{left:680.369987px;}
.x2b{left:681.990000px;}
.x20{left:686.489987px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.058880pt;}
.ls2{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.375040pt;}
.ls5{letter-spacing:0.398080pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws4{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._17{margin-left:-7.153280pt;}
._c{margin-left:-5.811200pt;}
._4{margin-left:-4.305920pt;}
._2{margin-left:-2.816000pt;}
._3{margin-left:-1.917440pt;}
._1{margin-left:-0.928000pt;}
._0{width:0.896000pt;}
._5{width:2.282667pt;}
._a{width:3.195733pt;}
._6{width:4.770560pt;}
._7{width:5.790080pt;}
._e{width:7.106560pt;}
._9{width:8.233600pt;}
._8{width:9.189760pt;}
._10{width:10.885120pt;}
._f{width:12.130560pt;}
._11{width:14.296960pt;}
._13{width:15.269120pt;}
._12{width:16.254720pt;}
._19{width:17.848320pt;}
._18{width:18.879360pt;}
._d{width:20.079360pt;}
._16{width:22.364160pt;}
._b{width:24.707840pt;}
._14{width:90.729600pt;}
._15{width:91.798400pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y7a{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y4b{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.yc{bottom:8.640000pt;}
.y49{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y45{bottom:18.240000pt;}
.y7d{bottom:18.880000pt;}
.y4a{bottom:19.840000pt;}
.y19{bottom:21.280000pt;}
.y48{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.120000pt;}
.y44{bottom:33.440000pt;}
.yc1{bottom:34.880000pt;}
.ybd{bottom:34.920000pt;}
.y18{bottom:36.040000pt;}
.ya{bottom:41.440000pt;}
.y43{bottom:48.800000pt;}
.y1{bottom:49.120000pt;}
.y17{bottom:50.600000pt;}
.y80{bottom:50.880000pt;}
.y42{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y16{bottom:65.320000pt;}
.y85{bottom:66.880000pt;}
.y15{bottom:76.840000pt;}
.y41{bottom:79.520000pt;}
.yba{bottom:80.960000pt;}
.y8{bottom:82.746667pt;}
.y57{bottom:86.912000pt;}
.yaf{bottom:89.312000pt;}
.yfc{bottom:90.112000pt;}
.ycc{bottom:91.392000pt;}
.y14{bottom:93.160000pt;}
.y40{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.y56{bottom:102.272000pt;}
.yae{bottom:104.672000pt;}
.yfb{bottom:105.472000pt;}
.ycb{bottom:106.752000pt;}
.y13{bottom:109.480000pt;}
.y3f{bottom:110.080000pt;}
.y55{bottom:117.472000pt;}
.y2d{bottom:118.080000pt;}
.yad{bottom:120.192000pt;}
.yfa{bottom:120.672000pt;}
.yca{bottom:121.952000pt;}
.y3e{bottom:125.440000pt;}
.y12{bottom:126.280000pt;}
.y96{bottom:129.312000pt;}
.y2c{bottom:131.680000pt;}
.y54{bottom:132.832000pt;}
.yc7{bottom:135.066667pt;}
.yf9{bottom:136.026667pt;}
.y3d{bottom:140.800000pt;}
.y2b{bottom:147.200000pt;}
.y53{bottom:148.186667pt;}
.y11{bottom:149.160000pt;}
.yc9{bottom:151.066667pt;}
.yf8{bottom:151.386667pt;}
.y95{bottom:155.386667pt;}
.y3c{bottom:156.160000pt;}
.y2a{bottom:162.560000pt;}
.y52{bottom:163.546667pt;}
.yf7{bottom:166.746667pt;}
.yc8{bottom:167.066667pt;}
.y94{bottom:170.746667pt;}
.y10{bottom:170.920000pt;}
.y3b{bottom:171.520000pt;}
.y29{bottom:177.920000pt;}
.y51{bottom:178.906667pt;}
.yf6{bottom:182.106667pt;}
.yc4{bottom:183.066667pt;}
.y93{bottom:186.106667pt;}
.y3a{bottom:186.880000pt;}
.y28{bottom:193.760000pt;}
.y50{bottom:194.266667pt;}
.yf5{bottom:197.306667pt;}
.yc6{bottom:199.066667pt;}
.y92{bottom:201.306667pt;}
.y39{bottom:202.080000pt;}
.y27{bottom:209.146667pt;}
.y4f{bottom:209.466667pt;}
.yf4{bottom:212.666667pt;}
.y8e{bottom:214.426667pt;}
.yc5{bottom:215.066667pt;}
.y38{bottom:217.466667pt;}
.y26{bottom:224.666667pt;}
.y4e{bottom:224.826667pt;}
.yf3{bottom:228.026667pt;}
.y91{bottom:230.426667pt;}
.yc0{bottom:231.066667pt;}
.y111{bottom:231.386667pt;}
.y37{bottom:232.826667pt;}
.y25{bottom:240.186667pt;}
.yf2{bottom:243.386667pt;}
.y90{bottom:246.426667pt;}
.y110{bottom:246.746667pt;}
.yc3{bottom:247.066667pt;}
.y36{bottom:248.186667pt;}
.ya6{bottom:253.306667pt;}
.y24{bottom:255.546667pt;}
.yf1{bottom:258.746667pt;}
.y10f{bottom:262.106667pt;}
.y8f{bottom:262.426667pt;}
.yc2{bottom:263.066667pt;}
.y35{bottom:263.546667pt;}
.ya5{bottom:268.666667pt;}
.y4d{bottom:270.906667pt;}
.y23{bottom:271.066667pt;}
.yf0{bottom:274.106667pt;}
.y10e{bottom:277.306667pt;}
.y8c{bottom:278.426667pt;}
.y34{bottom:278.906667pt;}
.ybc{bottom:279.066667pt;}
.ya4{bottom:284.026667pt;}
.y22{bottom:286.586667pt;}
.y4c{bottom:286.746667pt;}
.yef{bottom:289.306667pt;}
.y10d{bottom:292.666667pt;}
.y33{bottom:294.106667pt;}
.y8d{bottom:294.426667pt;}
.ybf{bottom:295.066667pt;}
.ya3{bottom:299.426667pt;}
.y47{bottom:299.586667pt;}
.y21{bottom:301.946667pt;}
.yee{bottom:304.706667pt;}
.y10c{bottom:308.066667pt;}
.y32{bottom:309.466667pt;}
.y8a{bottom:310.466667pt;}
.ybe{bottom:311.106667pt;}
.ya2{bottom:314.626667pt;}
.y20{bottom:317.466667pt;}
.yed{bottom:320.066667pt;}
.y10b{bottom:323.426667pt;}
.y31{bottom:324.826667pt;}
.y8b{bottom:326.466667pt;}
.yb9{bottom:327.106667pt;}
.ya1{bottom:330.146667pt;}
.y1c{bottom:332.226667pt;}
.y1f{bottom:333.146667pt;}
.yec{bottom:335.426667pt;}
.y10a{bottom:338.786667pt;}
.y30{bottom:340.186667pt;}
.y84{bottom:342.466667pt;}
.yeb{bottom:350.786667pt;}
.y109{bottom:354.146667pt;}
.y2f{bottom:355.546667pt;}
.y1e{bottom:357.466667pt;}
.y89{bottom:358.466667pt;}
.yea{bottom:366.146667pt;}
.y108{bottom:369.346667pt;}
.y2e{bottom:370.746667pt;}
.y1d{bottom:373.146667pt;}
.y88{bottom:374.466667pt;}
.ye9{bottom:381.346667pt;}
.y107{bottom:384.706667pt;}
.ybb{bottom:389.826667pt;}
.y87{bottom:390.466667pt;}
.ye8{bottom:396.706667pt;}
.y106{bottom:400.066667pt;}
.y86{bottom:406.466667pt;}
.ye7{bottom:412.066667pt;}
.y105{bottom:415.426667pt;}
.yb8{bottom:421.186667pt;}
.y7f{bottom:422.466667pt;}
.ye6{bottom:427.426667pt;}
.y104{bottom:430.786667pt;}
.y83{bottom:438.466667pt;}
.yb7{bottom:440.066667pt;}
.ye5{bottom:442.786667pt;}
.y103{bottom:445.986667pt;}
.y82{bottom:454.466667pt;}
.yb6{bottom:455.426667pt;}
.ye4{bottom:457.986667pt;}
.y102{bottom:461.346667pt;}
.y81{bottom:470.466667pt;}
.yb5{bottom:470.626667pt;}
.ye3{bottom:473.346667pt;}
.y101{bottom:476.706667pt;}
.yb4{bottom:485.986667pt;}
.y7c{bottom:486.466667pt;}
.ye2{bottom:488.706667pt;}
.y100{bottom:492.066667pt;}
.yb3{bottom:501.346667pt;}
.y7e{bottom:502.466667pt;}
.ye1{bottom:504.066667pt;}
.yff{bottom:507.426667pt;}
.yb2{bottom:516.706667pt;}
.y7b{bottom:518.466667pt;}
.ye0{bottom:519.426667pt;}
.yfe{bottom:522.786667pt;}
.yb1{bottom:532.066667pt;}
.y79{bottom:534.466667pt;}
.ydf{bottom:534.786667pt;}
.yfd{bottom:538.013333pt;}
.yb0{bottom:547.613333pt;}
.yde{bottom:550.013333pt;}
.y78{bottom:553.373333pt;}
.ydd{bottom:565.373333pt;}
.y77{bottom:568.733333pt;}
.ydc{bottom:580.733333pt;}
.y76{bottom:584.093333pt;}
.ydb{bottom:596.093333pt;}
.y75{bottom:599.453333pt;}
.yda{bottom:611.453333pt;}
.y74{bottom:614.813333pt;}
.yd9{bottom:626.813333pt;}
.y73{bottom:630.013333pt;}
.yd8{bottom:642.013333pt;}
.y72{bottom:645.373333pt;}
.yac{bottom:650.653333pt;}
.yd7{bottom:657.373333pt;}
.y71{bottom:660.733333pt;}
.yab{bottom:666.013333pt;}
.yd6{bottom:672.733333pt;}
.y70{bottom:676.093333pt;}
.yaa{bottom:681.373333pt;}
.yd5{bottom:688.093333pt;}
.y6f{bottom:691.453333pt;}
.ya9{bottom:696.733333pt;}
.yd4{bottom:703.453333pt;}
.y6e{bottom:706.813333pt;}
.ya8{bottom:712.093333pt;}
.y1a{bottom:715.453333pt;}
.yd3{bottom:718.813333pt;}
.y6d{bottom:722.013333pt;}
.ya7{bottom:727.453333pt;}
.yd2{bottom:734.013333pt;}
.y6c{bottom:737.373333pt;}
.yf{bottom:741.693333pt;}
.yd1{bottom:749.373333pt;}
.y6b{bottom:752.733333pt;}
.yd0{bottom:764.733333pt;}
.y6a{bottom:768.093333pt;}
.ycf{bottom:780.133333pt;}
.y69{bottom:783.493333pt;}
.yce{bottom:795.493333pt;}
.y68{bottom:798.693333pt;}
.ycd{bottom:810.693333pt;}
.y67{bottom:814.053333pt;}
.ya0{bottom:826.053333pt;}
.y66{bottom:829.413333pt;}
.y9f{bottom:841.413333pt;}
.y65{bottom:844.773333pt;}
.y9e{bottom:856.773333pt;}
.y64{bottom:860.133333pt;}
.y9d{bottom:872.133333pt;}
.y63{bottom:875.493333pt;}
.y9c{bottom:887.493333pt;}
.y62{bottom:890.693333pt;}
.y9b{bottom:902.693333pt;}
.y61{bottom:906.053333pt;}
.y9a{bottom:915.813333pt;}
.y60{bottom:921.413333pt;}
.yd{bottom:926.053333pt;}
.y99{bottom:931.813333pt;}
.y5f{bottom:936.773333pt;}
.y98{bottom:947.813333pt;}
.y6{bottom:948.453333pt;}
.y5e{bottom:952.133333pt;}
.y97{bottom:963.813333pt;}
.y5d{bottom:967.493333pt;}
.y5c{bottom:982.693333pt;}
.y5b{bottom:998.053333pt;}
.y5a{bottom:1013.440000pt;}
.y59{bottom:1028.800000pt;}
.y58{bottom:1044.160000pt;}
.h20{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.472000pt;}
.h26{height:30.720000pt;}
.h21{height:31.360000pt;}
.h24{height:31.392000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.640000pt;}
.h19{height:34.505000pt;}
.h1d{height:37.479688pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.410625pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h28{height:47.360000pt;}
.h27{height:47.392000pt;}
.h1a{height:47.621250pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h1e{height:49.542500pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h22{height:63.360000pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h23{height:79.360000pt;}
.h25{height:93.440000pt;}
.h7{height:108.032000pt;}
.hc{height:184.346667pt;}
.h14{height:383.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wf{width:78.112000pt;}
.w15{width:106.592000pt;}
.w16{width:115.040000pt;}
.wc{width:116.480000pt;}
.w12{width:131.840000pt;}
.w5{width:135.066667pt;}
.w11{width:139.706667pt;}
.wd{width:147.066667pt;}
.wb{width:150.746667pt;}
.w10{width:156.666667pt;}
.w14{width:178.586667pt;}
.w8{width:198.626667pt;}
.w18{width:213.146667pt;}
.wa{width:232.386667pt;}
.w13{width:246.466667pt;}
.we{width:415.586667pt;}
.w17{width:434.813333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x15{left:11.200000pt;}
.xc{left:22.112000pt;}
.xf{left:69.626667pt;}
.x1{left:72.000000pt;}
.x10{left:80.026667pt;}
.x11{left:83.226667pt;}
.x4{left:87.226667pt;}
.x12{left:91.226667pt;}
.x2c{left:96.031988pt;}
.x2d{left:120.031988pt;}
.xe{left:144.186667pt;}
.x1c{left:151.386667pt;}
.xd{left:156.186667pt;}
.x1a{left:174.106667pt;}
.x13{left:191.266667pt;}
.x5{left:207.066667pt;}
.x21{left:220.666655pt;}
.x27{left:229.466655pt;}
.x25{left:232.186655pt;}
.x28{left:239.226655pt;}
.x8{left:241.986667pt;}
.x1b{left:248.066655pt;}
.x14{left:270.626667pt;}
.x16{left:282.146655pt;}
.x6{left:295.106667pt;}
.x17{left:305.666667pt;}
.x1d{left:308.706667pt;}
.x7{left:312.226667pt;}
.x29{left:319.746667pt;}
.xb{left:324.866667pt;}
.x9{left:390.666667pt;}
.x22{left:396.866655pt;}
.x1e{left:449.053333pt;}
.x18{left:457.053333pt;}
.x2a{left:498.973333pt;}
.xa{left:507.626667pt;}
.x19{left:574.173333pt;}
.x1f{left:581.533333pt;}
.x26{left:599.813322pt;}
.x23{left:600.773322pt;}
.x24{left:604.773322pt;}
.x2b{left:606.213333pt;}
.x20{left:610.213322pt;}
.x3{left:656.933333pt;}
}




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