
    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_6fbe34ad2719a6a3ab99f681.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_5f7cf4dbcc3951c9c674fe4b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_87479d847e8a140d5df51a8a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_7b8436ebdb87f595904ad32f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_d0fcac772dcf8917a79ca6b2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7996684d18b641d23a29dc2c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_9587c04823426477bc834822.woff')format("woff");}.ff9{font-family:ff9;line-height:0.729412;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_99bb7eb3a4f2a1f611eeef43.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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_7261eaab2652048e3805facb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0f59e7eac21e517e0141ac4c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.139200px;}
.lsb{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.239040px;}
.ls9{letter-spacing:0.514200px;}
.ls8{letter-spacing:0.624000px;}
.ls1{letter-spacing:10.080000px;}
.lsc{letter-spacing:13.680000px;}
.lsd{letter-spacing:16.560000px;}
.lsf{letter-spacing:142.680000px;}
.lse{letter-spacing:159.762720px;}
.ls5{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws7{word-spacing:-23.726400px;}
.ws1{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.247000px;}
.ws4{word-spacing:-17.136000px;}
.ws5{word-spacing:0.000000px;}
._20{margin-left:-5.118000px;}
._19{margin-left:-3.906000px;}
._9{margin-left:-2.646000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._7{width:4.752000px;}
._8{width:5.832000px;}
._1d{width:7.020000px;}
._16{width:8.604000px;}
._12{width:9.630000px;}
._b{width:11.322000px;}
._a{width:12.528000px;}
._c{width:14.472000px;}
._11{width:15.840000px;}
._18{width:16.884000px;}
._17{width:19.398000px;}
._10{width:20.766000px;}
._f{width:21.888000px;}
._21{width:22.992000px;}
._14{width:24.336000px;}
._13{width:25.344000px;}
._1e{width:26.640000px;}
._d{width:29.016000px;}
._e{width:30.240000px;}
._25{width:31.848000px;}
._1b{width:33.192000px;}
._1a{width:34.272000px;}
._1c{width:35.280000px;}
._22{width:36.792000px;}
._1f{width:38.448000px;}
._23{width:40.392000px;}
._24{width:41.724000px;}
._2b{width:59.250000px;}
._2a{width:60.840000px;}
._6{width:71.892000px;}
._27{width:136.872000px;}
._26{width:137.952000px;}
._2c{width:149.736000px;}
._29{width:160.488000px;}
._28{width:352.008000px;}
._5{width:470.916000px;}
._15{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:1.800000px;}
.y37{bottom:8.100000px;}
.y33{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y36{bottom:67.680000px;}
.y34{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y32{bottom:122.580000px;}
.y3{bottom:137.520000px;}
.y8c{bottom:140.580000px;}
.yaf{bottom:141.840000px;}
.yd2{bottom:144.000000px;}
.yf2{bottom:147.240000px;}
.y145{bottom:153.030000px;}
.y61{bottom:160.770000px;}
.y8b{bottom:160.950000px;}
.yae{bottom:162.030000px;}
.y2f{bottom:167.430000px;}
.yf1{bottom:167.610000px;}
.yd1{bottom:173.190000px;}
.y144{bottom:173.370000px;}
.y8a{bottom:181.110000px;}
.y108{bottom:182.370000px;}
.y2e{bottom:187.770000px;}
.yf0{bottom:187.950000px;}
.y123{bottom:189.030000px;}
.y60{bottom:190.110000px;}
.yad{bottom:191.190000px;}
.y164{bottom:192.270000px;}
.y89{bottom:201.450000px;}
.yd0{bottom:202.530000px;}
.y2d{bottom:207.930000px;}
.yef{bottom:208.110000px;}
.y122{bottom:209.370000px;}
.y135{bottom:210.450000px;}
.yac{bottom:211.530000px;}
.y163{bottom:212.610000px;}
.y5f{bottom:219.270000px;}
.yfe{bottom:220.530000px;}
.y88{bottom:221.610000px;}
.ycf{bottom:222.870000px;}
.y2c{bottom:228.270000px;}
.yee{bottom:228.450000px;}
.y121{bottom:229.530000px;}
.y134{bottom:230.610000px;}
.yab{bottom:231.870000px;}
.y162{bottom:232.950000px;}
.y5e{bottom:239.610000px;}
.yfd{bottom:240.870000px;}
.yce{bottom:243.030000px;}
.y87{bottom:250.770000px;}
.y133{bottom:250.950000px;}
.yaa{bottom:252.030000px;}
.y2b{bottom:257.430000px;}
.yed{bottom:257.610000px;}
.y120{bottom:258.690000px;}
.y5d{bottom:259.950000px;}
.y161{bottom:262.110000px;}
.ycd{bottom:263.370000px;}
.yfc{bottom:270.030000px;}
.y86{bottom:271.110000px;}
.y107{bottom:272.370000px;}
.y2a{bottom:277.770000px;}
.yec{bottom:277.950000px;}
.y11f{bottom:279.030000px;}
.y5c{bottom:280.110000px;}
.ya9{bottom:281.190000px;}
.y160{bottom:282.450000px;}
.y143{bottom:283.530000px;}
.yfb{bottom:290.370000px;}
.y85{bottom:291.450000px;}
.ycc{bottom:292.530000px;}
.y29{bottom:297.930000px;}
.yeb{bottom:298.110000px;}
.y11e{bottom:299.370000px;}
.y5b{bottom:300.450000px;}
.ya8{bottom:301.530000px;}
.y15f{bottom:302.610000px;}
.yfa{bottom:310.530000px;}
.y84{bottom:311.610000px;}
.y142{bottom:312.690000px;}
.ycb{bottom:312.870000px;}
.y28{bottom:318.270000px;}
.yea{bottom:318.450000px;}
.ya7{bottom:321.870000px;}
.y11d{bottom:328.530000px;}
.y5a{bottom:329.610000px;}
.yf9{bottom:330.870000px;}
.y15e{bottom:331.770000px;}
.y83{bottom:331.950000px;}
.yca{bottom:333.030000px;}
.y27{bottom:338.430000px;}
.ye9{bottom:338.610000px;}
.y132{bottom:340.770000px;}
.ya6{bottom:342.030000px;}
.y82{bottom:352.110000px;}
.yc9{bottom:353.370000px;}
.y11c{bottom:357.690000px;}
.y59{bottom:358.770000px;}
.ye8{bottom:358.950000px;}
.yf8{bottom:360.030000px;}
.y106{bottom:362.370000px;}
.y26{bottom:368.490000px;}
.y131{bottom:370.110000px;}
.ya5{bottom:371.190000px;}
.y15d{bottom:372.450000px;}
.y141{bottom:373.530000px;}
.y58{bottom:379.110000px;}
.yf7{bottom:380.370000px;}
.y81{bottom:381.270000px;}
.yc8{bottom:382.530000px;}
.y11b{bottom:387.030000px;}
.ye7{bottom:388.110000px;}
.y130{bottom:390.450000px;}
.y105{bottom:391.530000px;}
.y57{bottom:399.450000px;}
.y25{bottom:400.350000px;}
.ya4{bottom:400.575000px;}
.y15c{bottom:401.655000px;}
.y140{bottom:402.735000px;}
.yc7{bottom:402.915000px;}
.y11a{bottom:407.415000px;}
.ye6{bottom:408.495000px;}
.y80{bottom:410.655000px;}
.y56{bottom:419.655000px;}
.y104{bottom:420.735000px;}
.ya3{bottom:420.915000px;}
.y15b{bottom:421.995000px;}
.yc6{bottom:423.075000px;}
.y119{bottom:427.575000px;}
.ye5{bottom:428.655000px;}
.y24{bottom:429.555000px;}
.y7f{bottom:430.995000px;}
.y13f{bottom:432.075000px;}
.yf6{bottom:441.075000px;}
.yc5{bottom:443.415000px;}
.y118{bottom:447.915000px;}
.y55{bottom:448.815000px;}
.ye4{bottom:448.995000px;}
.y23{bottom:449.895000px;}
.ya2{bottom:450.075000px;}
.y7e{bottom:451.155000px;}
.y13e{bottom:452.415000px;}
.yc4{bottom:463.575000px;}
.y16a{bottom:465.735000px;}
.ye3{bottom:469.155000px;}
.y22{bottom:470.235000px;}
.ya1{bottom:470.415000px;}
.y7d{bottom:471.495000px;}
.y13d{bottom:472.575000px;}
.y117{bottom:477.075000px;}
.y54{bottom:478.155000px;}
.ya0{bottom:490.575000px;}
.y7c{bottom:491.655000px;}
.yc3{bottom:492.735000px;}
.y13c{bottom:492.915000px;}
.y169{bottom:495.075000px;}
.ye2{bottom:498.315000px;}
.y53{bottom:498.495000px;}
.y21{bottom:499.395000px;}
.y15a{bottom:500.655000px;}
.y116{bottom:506.235000px;}
.y9f{bottom:510.915000px;}
.y7b{bottom:511.995000px;}
.y168{bottom:515.415000px;}
.y52{bottom:518.655000px;}
.y12f{bottom:520.815000px;}
.y159{bottom:520.995000px;}
.yc2{bottom:522.075000px;}
.y115{bottom:526.575000px;}
.ye1{bottom:527.655000px;}
.y20{bottom:528.555000px;}
.yf5{bottom:531.075000px;}
.y7a{bottom:532.155000px;}
.y51{bottom:538.995000px;}
.y9e{bottom:540.075000px;}
.y158{bottom:541.155000px;}
.yc1{bottom:542.415000px;}
.y167{bottom:544.575000px;}
.ye0{bottom:547.995000px;}
.y12e{bottom:550.155000px;}
.yf4{bottom:551.415000px;}
.y114{bottom:555.735000px;}
.y1f{bottom:557.895000px;}
.y103{bottom:560.235000px;}
.y9d{bottom:560.415000px;}
.y79{bottom:562.215000px;}
.y13b{bottom:562.575000px;}
.y166{bottom:564.915000px;}
.y50{bottom:568.155000px;}
.y157{bottom:570.315000px;}
.y12d{bottom:570.495000px;}
.yc0{bottom:571.575000px;}
.y113{bottom:576.075000px;}
.y9c{bottom:580.575000px;}
.y1e{bottom:587.055000px;}
.ydf{bottom:588.495000px;}
.y12c{bottom:590.655000px;}
.y13a{bottom:591.735000px;}
.ybf{bottom:591.915000px;}
.y78{bottom:594.075000px;}
.y4f{bottom:597.315000px;}
.yf3{bottom:600.735000px;}
.y9b{bottom:600.915000px;}
.y112{bottom:605.235000px;}
.y1d{bottom:607.395000px;}
.yde{bottom:608.655000px;}
.y12b{bottom:610.995000px;}
.ybe{bottom:612.075000px;}
.y165{bottom:614.415000px;}
.y4e{bottom:617.655000px;}
.y102{bottom:621.075000px;}
.y77{bottom:623.235000px;}
.y1c{bottom:627.735000px;}
.ydd{bottom:628.995000px;}
.y9a{bottom:630.075000px;}
.y12a{bottom:631.155000px;}
.ybd{bottom:632.415000px;}
.y111{bottom:634.575000px;}
.y4d{bottom:637.995000px;}
.y156{bottom:640.155000px;}
.y101{bottom:641.415000px;}
.y76{bottom:643.575000px;}
.y1b{bottom:647.895000px;}
.ydc{bottom:649.185000px;}
.y99{bottom:650.445000px;}
.y129{bottom:651.525000px;}
.y139{bottom:652.605000px;}
.y4c{bottom:658.185000px;}
.y155{bottom:660.525000px;}
.ybc{bottom:661.605000px;}
.y110{bottom:663.765000px;}
.y75{bottom:663.945000px;}
.y1a{bottom:668.265000px;}
.ydb{bottom:669.525000px;}
.y98{bottom:670.605000px;}
.y128{bottom:681.585000px;}
.y138{bottom:681.765000px;}
.ybb{bottom:681.945000px;}
.y74{bottom:684.105000px;}
.y4b{bottom:688.245000px;}
.y19{bottom:688.425000px;}
.y154{bottom:689.685000px;}
.y97{bottom:690.945000px;}
.yda{bottom:699.585000px;}
.yba{bottom:702.105000px;}
.y73{bottom:704.445000px;}
.y18{bottom:708.765000px;}
.y153{bottom:710.025000px;}
.y96{bottom:711.105000px;}
.y10f{bottom:713.265000px;}
.y4a{bottom:720.105000px;}
.y137{bottom:722.445000px;}
.y17{bottom:728.925000px;}
.yb9{bottom:731.265000px;}
.y100{bottom:731.445000px;}
.y72{bottom:733.605000px;}
.y152{bottom:739.185000px;}
.y95{bottom:740.265000px;}
.y10e{bottom:742.605000px;}
.y16{bottom:749.265000px;}
.yb8{bottom:751.605000px;}
.y151{bottom:759.525000px;}
.y94{bottom:760.605000px;}
.y71{bottom:762.765000px;}
.y10d{bottom:762.945000px;}
.y15{bottom:769.425000px;}
.y49{bottom:769.605000px;}
.yb7{bottom:771.945000px;}
.y150{bottom:779.685000px;}
.yff{bottom:780.765000px;}
.y93{bottom:780.945000px;}
.y70{bottom:783.105000px;}
.y14{bottom:789.765000px;}
.y48{bottom:789.945000px;}
.yb6{bottom:792.105000px;}
.y92{bottom:801.105000px;}
.y6f{bottom:803.445000px;}
.y14f{bottom:808.845000px;}
.y13{bottom:809.925000px;}
.y47{bottom:810.105000px;}
.y10c{bottom:812.445000px;}
.yb5{bottom:821.265000px;}
.y91{bottom:821.445000px;}
.y6e{bottom:823.605000px;}
.y14e{bottom:829.185000px;}
.y12{bottom:830.265000px;}
.y46{bottom:830.445000px;}
.y10b{bottom:832.605000px;}
.y90{bottom:841.605000px;}
.y127{bottom:843.945000px;}
.y14d{bottom:849.525000px;}
.y11{bottom:850.425000px;}
.yd9{bottom:850.605000px;}
.y6d{bottom:852.765000px;}
.y45{bottom:859.605000px;}
.y10a{bottom:861.765000px;}
.yb4{bottom:861.945000px;}
.y14c{bottom:869.685000px;}
.y10{bottom:870.765000px;}
.yd8{bottom:870.945000px;}
.y126{bottom:873.105000px;}
.y44{bottom:879.945000px;}
.y6c{bottom:882.105000px;}
.yd7{bottom:891.105000px;}
.y14b{bottom:898.890000px;}
.y43{bottom:900.150000px;}
.yf{bottom:900.690000px;}
.y125{bottom:902.310000px;}
.y6b{bottom:902.490000px;}
.yd6{bottom:911.490000px;}
.y14a{bottom:919.230000px;}
.y136{bottom:920.310000px;}
.y42{bottom:920.490000px;}
.y6a{bottom:922.650000px;}
.yb3{bottom:931.650000px;}
.ye{bottom:932.550000px;}
.y149{bottom:939.570000px;}
.yd5{bottom:940.650000px;}
.y69{bottom:942.990000px;}
.y41{bottom:949.650000px;}
.y124{bottom:951.810000px;}
.yb2{bottom:960.810000px;}
.yd4{bottom:960.990000px;}
.yd{bottom:961.710000px;}
.y148{bottom:968.730000px;}
.y40{bottom:969.990000px;}
.y68{bottom:972.150000px;}
.yb1{bottom:981.150000px;}
.yc{bottom:982.230000px;}
.y147{bottom:989.070000px;}
.y3f{bottom:990.150000px;}
.y109{bottom:992.490000px;}
.y67{bottom:1001.310000px;}
.yd3{bottom:1001.490000px;}
.yb0{bottom:1010.310000px;}
.y3e{bottom:1010.490000px;}
.y146{bottom:1019.130000px;}
.y66{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.y3d{bottom:1030.650000px;}
.y65{bottom:1050.810000px;}
.y3c{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.y8f{bottom:1059.810000px;}
.y3b{bottom:1071.150000px;}
.y8e{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y64{bottom:1091.490000px;}
.y3a{bottom:1100.310000px;}
.y8d{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y63{bottom:1111.650000px;}
.y39{bottom:1120.650000px;}
.y62{bottom:1140.810000px;}
.y38{bottom:1140.990000px;}
.y31{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y30{bottom:1196.280000px;}
.hd{height:22.500000px;}
.hf{height:24.120000px;}
.h3{height:36.571289px;}
.hb{height:41.610234px;}
.hc{height:47.796328px;}
.h8{height:48.761719px;}
.h4{height:50.132812px;}
.h10{height:51.398851px;}
.h11{height:52.417969px;}
.h7{height:56.437031px;}
.h9{height:57.051211px;}
.ha{height:59.439023px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.800000px;}
.x3{left:106.415987px;}
.x14{left:148.895987px;}
.xa{left:180.209987px;}
.x5{left:257.249987px;}
.x4{left:264.449987px;}
.x7{left:267.194987px;}
.xe{left:283.934987px;}
.x11{left:319.034987px;}
.xd{left:342.074987px;}
.x6{left:369.254987px;}
.x9{left:390.134987px;}
.x12{left:391.754987px;}
.x13{left:397.694987px;}
.x8{left:409.394987px;}
.x1{left:446.504987px;}
.x10{left:543.704987px;}
.xf{left:736.529987px;}
.x2{left:786.749987px;}
.xb{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.123733pt;}
.lsb{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.212480pt;}
.ls9{letter-spacing:0.457067pt;}
.ls8{letter-spacing:0.554667pt;}
.ls1{letter-spacing:8.960000pt;}
.lsc{letter-spacing:12.160000pt;}
.lsd{letter-spacing:14.720000pt;}
.lsf{letter-spacing:126.826667pt;}
.lse{letter-spacing:142.011307pt;}
.ls5{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws7{word-spacing:-21.090133pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.330667pt;}
.ws4{word-spacing:-15.232000pt;}
.ws5{word-spacing:0.000000pt;}
._20{margin-left:-4.549333pt;}
._19{margin-left:-3.472000pt;}
._9{margin-left:-2.352000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._7{width:4.224000pt;}
._8{width:5.184000pt;}
._1d{width:6.240000pt;}
._16{width:7.648000pt;}
._12{width:8.560000pt;}
._b{width:10.064000pt;}
._a{width:11.136000pt;}
._c{width:12.864000pt;}
._11{width:14.080000pt;}
._18{width:15.008000pt;}
._17{width:17.242667pt;}
._10{width:18.458667pt;}
._f{width:19.456000pt;}
._21{width:20.437333pt;}
._14{width:21.632000pt;}
._13{width:22.528000pt;}
._1e{width:23.680000pt;}
._d{width:25.792000pt;}
._e{width:26.880000pt;}
._25{width:28.309333pt;}
._1b{width:29.504000pt;}
._1a{width:30.464000pt;}
._1c{width:31.360000pt;}
._22{width:32.704000pt;}
._1f{width:34.176000pt;}
._23{width:35.904000pt;}
._24{width:37.088000pt;}
._2b{width:52.666667pt;}
._2a{width:54.080000pt;}
._6{width:63.904000pt;}
._27{width:121.664000pt;}
._26{width:122.624000pt;}
._2c{width:133.098667pt;}
._29{width:142.656000pt;}
._28{width:312.896000pt;}
._5{width:418.592000pt;}
._15{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:1.600000pt;}
.y37{bottom:7.200000pt;}
.y33{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y36{bottom:60.160000pt;}
.y34{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y32{bottom:108.960000pt;}
.y3{bottom:122.240000pt;}
.y8c{bottom:124.960000pt;}
.yaf{bottom:126.080000pt;}
.yd2{bottom:128.000000pt;}
.yf2{bottom:130.880000pt;}
.y145{bottom:136.026667pt;}
.y61{bottom:142.906667pt;}
.y8b{bottom:143.066667pt;}
.yae{bottom:144.026667pt;}
.y2f{bottom:148.826667pt;}
.yf1{bottom:148.986667pt;}
.yd1{bottom:153.946667pt;}
.y144{bottom:154.106667pt;}
.y8a{bottom:160.986667pt;}
.y108{bottom:162.106667pt;}
.y2e{bottom:166.906667pt;}
.yf0{bottom:167.066667pt;}
.y123{bottom:168.026667pt;}
.y60{bottom:168.986667pt;}
.yad{bottom:169.946667pt;}
.y164{bottom:170.906667pt;}
.y89{bottom:179.066667pt;}
.yd0{bottom:180.026667pt;}
.y2d{bottom:184.826667pt;}
.yef{bottom:184.986667pt;}
.y122{bottom:186.106667pt;}
.y135{bottom:187.066667pt;}
.yac{bottom:188.026667pt;}
.y163{bottom:188.986667pt;}
.y5f{bottom:194.906667pt;}
.yfe{bottom:196.026667pt;}
.y88{bottom:196.986667pt;}
.ycf{bottom:198.106667pt;}
.y2c{bottom:202.906667pt;}
.yee{bottom:203.066667pt;}
.y121{bottom:204.026667pt;}
.y134{bottom:204.986667pt;}
.yab{bottom:206.106667pt;}
.y162{bottom:207.066667pt;}
.y5e{bottom:212.986667pt;}
.yfd{bottom:214.106667pt;}
.yce{bottom:216.026667pt;}
.y87{bottom:222.906667pt;}
.y133{bottom:223.066667pt;}
.yaa{bottom:224.026667pt;}
.y2b{bottom:228.826667pt;}
.yed{bottom:228.986667pt;}
.y120{bottom:229.946667pt;}
.y5d{bottom:231.066667pt;}
.y161{bottom:232.986667pt;}
.ycd{bottom:234.106667pt;}
.yfc{bottom:240.026667pt;}
.y86{bottom:240.986667pt;}
.y107{bottom:242.106667pt;}
.y2a{bottom:246.906667pt;}
.yec{bottom:247.066667pt;}
.y11f{bottom:248.026667pt;}
.y5c{bottom:248.986667pt;}
.ya9{bottom:249.946667pt;}
.y160{bottom:251.066667pt;}
.y143{bottom:252.026667pt;}
.yfb{bottom:258.106667pt;}
.y85{bottom:259.066667pt;}
.ycc{bottom:260.026667pt;}
.y29{bottom:264.826667pt;}
.yeb{bottom:264.986667pt;}
.y11e{bottom:266.106667pt;}
.y5b{bottom:267.066667pt;}
.ya8{bottom:268.026667pt;}
.y15f{bottom:268.986667pt;}
.yfa{bottom:276.026667pt;}
.y84{bottom:276.986667pt;}
.y142{bottom:277.946667pt;}
.ycb{bottom:278.106667pt;}
.y28{bottom:282.906667pt;}
.yea{bottom:283.066667pt;}
.ya7{bottom:286.106667pt;}
.y11d{bottom:292.026667pt;}
.y5a{bottom:292.986667pt;}
.yf9{bottom:294.106667pt;}
.y15e{bottom:294.906667pt;}
.y83{bottom:295.066667pt;}
.yca{bottom:296.026667pt;}
.y27{bottom:300.826667pt;}
.ye9{bottom:300.986667pt;}
.y132{bottom:302.906667pt;}
.ya6{bottom:304.026667pt;}
.y82{bottom:312.986667pt;}
.yc9{bottom:314.106667pt;}
.y11c{bottom:317.946667pt;}
.y59{bottom:318.906667pt;}
.ye8{bottom:319.066667pt;}
.yf8{bottom:320.026667pt;}
.y106{bottom:322.106667pt;}
.y26{bottom:327.546667pt;}
.y131{bottom:328.986667pt;}
.ya5{bottom:329.946667pt;}
.y15d{bottom:331.066667pt;}
.y141{bottom:332.026667pt;}
.y58{bottom:336.986667pt;}
.yf7{bottom:338.106667pt;}
.y81{bottom:338.906667pt;}
.yc8{bottom:340.026667pt;}
.y11b{bottom:344.026667pt;}
.ye7{bottom:344.986667pt;}
.y130{bottom:347.066667pt;}
.y105{bottom:348.026667pt;}
.y57{bottom:355.066667pt;}
.y25{bottom:355.866667pt;}
.ya4{bottom:356.066667pt;}
.y15c{bottom:357.026667pt;}
.y140{bottom:357.986667pt;}
.yc7{bottom:358.146667pt;}
.y11a{bottom:362.146667pt;}
.ye6{bottom:363.106667pt;}
.y80{bottom:365.026667pt;}
.y56{bottom:373.026667pt;}
.y104{bottom:373.986667pt;}
.ya3{bottom:374.146667pt;}
.y15b{bottom:375.106667pt;}
.yc6{bottom:376.066667pt;}
.y119{bottom:380.066667pt;}
.ye5{bottom:381.026667pt;}
.y24{bottom:381.826667pt;}
.y7f{bottom:383.106667pt;}
.y13f{bottom:384.066667pt;}
.yf6{bottom:392.066667pt;}
.yc5{bottom:394.146667pt;}
.y118{bottom:398.146667pt;}
.y55{bottom:398.946667pt;}
.ye4{bottom:399.106667pt;}
.y23{bottom:399.906667pt;}
.ya2{bottom:400.066667pt;}
.y7e{bottom:401.026667pt;}
.y13e{bottom:402.146667pt;}
.yc4{bottom:412.066667pt;}
.y16a{bottom:413.986667pt;}
.ye3{bottom:417.026667pt;}
.y22{bottom:417.986667pt;}
.ya1{bottom:418.146667pt;}
.y7d{bottom:419.106667pt;}
.y13d{bottom:420.066667pt;}
.y117{bottom:424.066667pt;}
.y54{bottom:425.026667pt;}
.ya0{bottom:436.066667pt;}
.y7c{bottom:437.026667pt;}
.yc3{bottom:437.986667pt;}
.y13c{bottom:438.146667pt;}
.y169{bottom:440.066667pt;}
.ye2{bottom:442.946667pt;}
.y53{bottom:443.106667pt;}
.y21{bottom:443.906667pt;}
.y15a{bottom:445.026667pt;}
.y116{bottom:449.986667pt;}
.y9f{bottom:454.146667pt;}
.y7b{bottom:455.106667pt;}
.y168{bottom:458.146667pt;}
.y52{bottom:461.026667pt;}
.y12f{bottom:462.946667pt;}
.y159{bottom:463.106667pt;}
.yc2{bottom:464.066667pt;}
.y115{bottom:468.066667pt;}
.ye1{bottom:469.026667pt;}
.y20{bottom:469.826667pt;}
.yf5{bottom:472.066667pt;}
.y7a{bottom:473.026667pt;}
.y51{bottom:479.106667pt;}
.y9e{bottom:480.066667pt;}
.y158{bottom:481.026667pt;}
.yc1{bottom:482.146667pt;}
.y167{bottom:484.066667pt;}
.ye0{bottom:487.106667pt;}
.y12e{bottom:489.026667pt;}
.yf4{bottom:490.146667pt;}
.y114{bottom:493.986667pt;}
.y1f{bottom:495.906667pt;}
.y103{bottom:497.986667pt;}
.y9d{bottom:498.146667pt;}
.y79{bottom:499.746667pt;}
.y13b{bottom:500.066667pt;}
.y166{bottom:502.146667pt;}
.y50{bottom:505.026667pt;}
.y157{bottom:506.946667pt;}
.y12d{bottom:507.106667pt;}
.yc0{bottom:508.066667pt;}
.y113{bottom:512.066667pt;}
.y9c{bottom:516.066667pt;}
.y1e{bottom:521.826667pt;}
.ydf{bottom:523.106667pt;}
.y12c{bottom:525.026667pt;}
.y13a{bottom:525.986667pt;}
.ybf{bottom:526.146667pt;}
.y78{bottom:528.066667pt;}
.y4f{bottom:530.946667pt;}
.yf3{bottom:533.986667pt;}
.y9b{bottom:534.146667pt;}
.y112{bottom:537.986667pt;}
.y1d{bottom:539.906667pt;}
.yde{bottom:541.026667pt;}
.y12b{bottom:543.106667pt;}
.ybe{bottom:544.066667pt;}
.y165{bottom:546.146667pt;}
.y4e{bottom:549.026667pt;}
.y102{bottom:552.066667pt;}
.y77{bottom:553.986667pt;}
.y1c{bottom:557.986667pt;}
.ydd{bottom:559.106667pt;}
.y9a{bottom:560.066667pt;}
.y12a{bottom:561.026667pt;}
.ybd{bottom:562.146667pt;}
.y111{bottom:564.066667pt;}
.y4d{bottom:567.106667pt;}
.y156{bottom:569.026667pt;}
.y101{bottom:570.146667pt;}
.y76{bottom:572.066667pt;}
.y1b{bottom:575.906667pt;}
.ydc{bottom:577.053333pt;}
.y99{bottom:578.173333pt;}
.y129{bottom:579.133333pt;}
.y139{bottom:580.093333pt;}
.y4c{bottom:585.053333pt;}
.y155{bottom:587.133333pt;}
.ybc{bottom:588.093333pt;}
.y110{bottom:590.013333pt;}
.y75{bottom:590.173333pt;}
.y1a{bottom:594.013333pt;}
.ydb{bottom:595.133333pt;}
.y98{bottom:596.093333pt;}
.y128{bottom:605.853333pt;}
.y138{bottom:606.013333pt;}
.ybb{bottom:606.173333pt;}
.y74{bottom:608.093333pt;}
.y4b{bottom:611.773333pt;}
.y19{bottom:611.933333pt;}
.y154{bottom:613.053333pt;}
.y97{bottom:614.173333pt;}
.yda{bottom:621.853333pt;}
.yba{bottom:624.093333pt;}
.y73{bottom:626.173333pt;}
.y18{bottom:630.013333pt;}
.y153{bottom:631.133333pt;}
.y96{bottom:632.093333pt;}
.y10f{bottom:634.013333pt;}
.y4a{bottom:640.093333pt;}
.y137{bottom:642.173333pt;}
.y17{bottom:647.933333pt;}
.yb9{bottom:650.013333pt;}
.y100{bottom:650.173333pt;}
.y72{bottom:652.093333pt;}
.y152{bottom:657.053333pt;}
.y95{bottom:658.013333pt;}
.y10e{bottom:660.093333pt;}
.y16{bottom:666.013333pt;}
.yb8{bottom:668.093333pt;}
.y151{bottom:675.133333pt;}
.y94{bottom:676.093333pt;}
.y71{bottom:678.013333pt;}
.y10d{bottom:678.173333pt;}
.y15{bottom:683.933333pt;}
.y49{bottom:684.093333pt;}
.yb7{bottom:686.173333pt;}
.y150{bottom:693.053333pt;}
.yff{bottom:694.013333pt;}
.y93{bottom:694.173333pt;}
.y70{bottom:696.093333pt;}
.y14{bottom:702.013333pt;}
.y48{bottom:702.173333pt;}
.yb6{bottom:704.093333pt;}
.y92{bottom:712.093333pt;}
.y6f{bottom:714.173333pt;}
.y14f{bottom:718.973333pt;}
.y13{bottom:719.933333pt;}
.y47{bottom:720.093333pt;}
.y10c{bottom:722.173333pt;}
.yb5{bottom:730.013333pt;}
.y91{bottom:730.173333pt;}
.y6e{bottom:732.093333pt;}
.y14e{bottom:737.053333pt;}
.y12{bottom:738.013333pt;}
.y46{bottom:738.173333pt;}
.y10b{bottom:740.093333pt;}
.y90{bottom:748.093333pt;}
.y127{bottom:750.173333pt;}
.y14d{bottom:755.133333pt;}
.y11{bottom:755.933333pt;}
.yd9{bottom:756.093333pt;}
.y6d{bottom:758.013333pt;}
.y45{bottom:764.093333pt;}
.y10a{bottom:766.013333pt;}
.yb4{bottom:766.173333pt;}
.y14c{bottom:773.053333pt;}
.y10{bottom:774.013333pt;}
.yd8{bottom:774.173333pt;}
.y126{bottom:776.093333pt;}
.y44{bottom:782.173333pt;}
.y6c{bottom:784.093333pt;}
.yd7{bottom:792.093333pt;}
.y14b{bottom:799.013333pt;}
.y43{bottom:800.133333pt;}
.yf{bottom:800.613333pt;}
.y125{bottom:802.053333pt;}
.y6b{bottom:802.213333pt;}
.yd6{bottom:810.213333pt;}
.y14a{bottom:817.093333pt;}
.y136{bottom:818.053333pt;}
.y42{bottom:818.213333pt;}
.y6a{bottom:820.133333pt;}
.yb3{bottom:828.133333pt;}
.ye{bottom:828.933333pt;}
.y149{bottom:835.173333pt;}
.yd5{bottom:836.133333pt;}
.y69{bottom:838.213333pt;}
.y41{bottom:844.133333pt;}
.y124{bottom:846.053333pt;}
.yb2{bottom:854.053333pt;}
.yd4{bottom:854.213333pt;}
.yd{bottom:854.853333pt;}
.y148{bottom:861.093333pt;}
.y40{bottom:862.213333pt;}
.y68{bottom:864.133333pt;}
.yb1{bottom:872.133333pt;}
.yc{bottom:873.093333pt;}
.y147{bottom:879.173333pt;}
.y3f{bottom:880.133333pt;}
.y109{bottom:882.213333pt;}
.y67{bottom:890.053333pt;}
.yd3{bottom:890.213333pt;}
.yb0{bottom:898.053333pt;}
.y3e{bottom:898.213333pt;}
.y146{bottom:905.893333pt;}
.y66{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.y3d{bottom:916.133333pt;}
.y65{bottom:934.053333pt;}
.y3c{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.y8f{bottom:942.053333pt;}
.y3b{bottom:952.133333pt;}
.y8e{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y64{bottom:970.213333pt;}
.y3a{bottom:978.053333pt;}
.y8d{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y63{bottom:988.133333pt;}
.y39{bottom:996.133333pt;}
.y62{bottom:1014.053333pt;}
.y38{bottom:1014.213333pt;}
.y31{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y30{bottom:1063.360000pt;}
.hd{height:20.000000pt;}
.hf{height:21.440000pt;}
.h3{height:32.507812pt;}
.hb{height:36.986875pt;}
.hc{height:42.485625pt;}
.h8{height:43.343750pt;}
.h4{height:44.562500pt;}
.h10{height:45.687867pt;}
.h11{height:46.593750pt;}
.h7{height:50.166250pt;}
.h9{height:50.712187pt;}
.ha{height:52.834688pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.600000pt;}
.x3{left:94.591988pt;}
.x14{left:132.351988pt;}
.xa{left:160.186655pt;}
.x5{left:228.666655pt;}
.x4{left:235.066655pt;}
.x7{left:237.506655pt;}
.xe{left:252.386655pt;}
.x11{left:283.586655pt;}
.xd{left:304.066655pt;}
.x6{left:328.226655pt;}
.x9{left:346.786655pt;}
.x12{left:348.226655pt;}
.x13{left:353.506655pt;}
.x8{left:363.906655pt;}
.x1{left:396.893322pt;}
.x10{left:483.293322pt;}
.xf{left:654.693322pt;}
.x2{left:699.333322pt;}
.xb{left:701.413333pt;}
}




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