
    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_087496669bb4b3d65f469537.woff2')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_7b4314ecc5292cb19fb15c85.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_28b0ca54100552967ed6014d.woff2')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_774ea97eb6e38d50218a5d3e.woff2')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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bab20f691253b66fc55034a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_608745d61bd732ee68cf4d12.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_4883b2177bb65e5880742c2d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fb711c4998e6efe46f44abed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_02eca33f10abac1413928e18.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3c0f4fe5acba864263747139.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_de78607caa8b9e546785f206.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.879883;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_b3c10fc8c37da81c194da2eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.879883;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);}
.v1{vertical-align:-81.480000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v2{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.057600px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls11{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.lsb{letter-spacing:173.755920px;}
.lsa{letter-spacing:196.243920px;}
.ls9{letter-spacing:201.204000px;}
.ls1{letter-spacing:1345.877760px;}
.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;}
}
.ws2{word-spacing:-23.529600px;}
.ws9{word-spacing:-19.900080px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.146400px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-3.499440px;}
._b{margin-left:-2.379600px;}
._0{margin-left:-1.080000px;}
._1{width:1.110000px;}
._12{width:2.244000px;}
._6{width:3.252480px;}
._c{width:4.691040px;}
._a{width:5.976000px;}
._9{width:7.171200px;}
._8{width:8.910960px;}
._7{width:10.036320px;}
._2{width:11.200560px;}
._2f{width:12.344160px;}
._10{width:13.915200px;}
._5{width:16.041120px;}
._13{width:17.390160px;}
._4{width:18.465840px;}
._3{width:19.686480px;}
._e{width:20.941440px;}
._d{width:22.375680px;}
._21{width:27.335760px;}
._2d{width:28.983600px;}
._2e{width:30.596400px;}
._11{width:36.777840px;}
._26{width:40.602480px;}
._25{width:41.883840px;}
._15{width:46.959840px;}
._1b{width:49.387200px;}
._16{width:51.444000px;}
._2b{width:66.706080px;}
._19{width:71.704080px;}
._2a{width:73.339440px;}
._17{width:76.839840px;}
._22{width:86.737200px;}
._1f{width:96.480000px;}
._29{width:110.340000px;}
._24{width:118.989360px;}
._1a{width:122.349840px;}
._1e{width:131.950080px;}
._23{width:140.700000px;}
._27{width:153.723600px;}
._2c{width:169.820160px;}
._14{width:180.120000px;}
._20{width:189.779520px;}
._28{width:196.532880px;}
._18{width:201.060000px;}
._1d{width:232.432080px;}
._1c{width:518.802000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{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;}
.y1c{bottom:0.180000px;}
.y54{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.yd{bottom:3.960000px;}
.yf{bottom:7.740000px;}
.y57{bottom:10.620000px;}
.y1d{bottom:12.600000px;}
.y4{bottom:17.280000px;}
.y8{bottom:18.000000px;}
.yc5{bottom:19.260000px;}
.y2{bottom:20.160000px;}
.yb9{bottom:20.340000px;}
.y53{bottom:20.520000px;}
.yc{bottom:22.140000px;}
.y58{bottom:22.320000px;}
.y1a{bottom:23.760000px;}
.y56{bottom:25.200000px;}
.y5{bottom:26.100000px;}
.yc4{bottom:36.540000px;}
.ybc{bottom:37.620000px;}
.yc0{bottom:37.665000px;}
.y52{bottom:37.800000px;}
.y19{bottom:40.320000px;}
.yb{bottom:40.500000px;}
.y1{bottom:48.600000px;}
.ybb{bottom:54.900000px;}
.y51{bottom:55.080000px;}
.y18{bottom:56.700000px;}
.y17{bottom:69.165000px;}
.ya{bottom:70.740000px;}
.y50{bottom:72.354000px;}
.y16{bottom:83.925000px;}
.y1e{bottom:87.696000px;}
.y4f{bottom:89.634000px;}
.y123{bottom:94.536000px;}
.y15{bottom:99.225000px;}
.y4e{bottom:106.734000px;}
.y122{bottom:111.816000px;}
.y9{bottom:113.070000px;}
.y94{bottom:117.936000px;}
.y14{bottom:118.125000px;}
.ye4{bottom:122.976000px;}
.y4d{bottom:124.014000px;}
.yf6{bottom:127.476000px;}
.y121{bottom:129.096000px;}
.y93{bottom:135.216000px;}
.ye3{bottom:140.076000px;}
.y4c{bottom:141.294000px;}
.y13{bottom:143.865000px;}
.yf5{bottom:144.756000px;}
.y120{bottom:146.376000px;}
.y92{bottom:152.490000px;}
.ye2{bottom:154.830000px;}
.y4b{bottom:158.574000px;}
.yf4{bottom:162.030000px;}
.y11f{bottom:163.470000px;}
.y91{bottom:169.590000px;}
.y12{bottom:169.605000px;}
.ye1{bottom:172.830000px;}
.y4a{bottom:175.854000px;}
.yf3{bottom:176.070000px;}
.y11e{bottom:180.750000px;}
.y90{bottom:186.870000px;}
.ye0{bottom:190.830000px;}
.y49{bottom:193.134000px;}
.y11{bottom:194.085000px;}
.y11d{bottom:198.030000px;}
.y8f{bottom:204.150000px;}
.ydf{bottom:208.830000px;}
.y48{bottom:210.234000px;}
.y11c{bottom:215.310000px;}
.y8e{bottom:221.430000px;}
.yde{bottom:226.830000px;}
.y47{bottom:227.514000px;}
.y11b{bottom:232.590000px;}
.y8d{bottom:238.710000px;}
.y46{bottom:244.794000px;}
.ydd{bottom:244.830000px;}
.y11a{bottom:249.690000px;}
.y8c{bottom:255.990000px;}
.y45{bottom:262.119000px;}
.ydc{bottom:262.830000px;}
.y119{bottom:266.970000px;}
.y8b{bottom:273.090000px;}
.y44{bottom:279.399000px;}
.ydb{bottom:284.070000px;}
.y118{bottom:284.250000px;}
.y8a{bottom:291.630000px;}
.y43{bottom:296.499000px;}
.yda{bottom:301.350000px;}
.y117{bottom:301.530000px;}
.y89{bottom:309.990000px;}
.y42{bottom:313.779000px;}
.yd9{bottom:318.630000px;}
.y116{bottom:318.810000px;}
.y88{bottom:327.090000px;}
.y41{bottom:331.059000px;}
.yd8{bottom:335.910000px;}
.y115{bottom:336.090000px;}
.y87{bottom:344.415000px;}
.y40{bottom:348.339000px;}
.yd7{bottom:353.235000px;}
.y86{bottom:361.695000px;}
.y3f{bottom:365.619000px;}
.yeb{bottom:365.655000px;}
.yd6{bottom:370.335000px;}
.y114{bottom:370.515000px;}
.y85{bottom:378.975000px;}
.yea{bottom:382.755000px;}
.y3e{bottom:382.899000px;}
.yd5{bottom:387.615000px;}
.y113{bottom:387.795000px;}
.y84{bottom:396.255000px;}
.ye9{bottom:396.795000px;}
.y3d{bottom:399.999000px;}
.yd4{bottom:404.895000px;}
.y112{bottom:405.075000px;}
.y83{bottom:413.535000px;}
.y3c{bottom:417.279000px;}
.yd3{bottom:422.175000px;}
.y111{bottom:422.355000px;}
.y82{bottom:430.635000px;}
.y3b{bottom:434.559000px;}
.yd2{bottom:439.455000px;}
.y110{bottom:439.635000px;}
.y2c{bottom:443.919000px;}
.y81{bottom:447.915000px;}
.y3a{bottom:451.839000px;}
.yd1{bottom:456.735000px;}
.yf2{bottom:457.095000px;}
.y2b{bottom:459.219000px;}
.y80{bottom:465.195000px;}
.y39{bottom:469.119000px;}
.yd0{bottom:473.835000px;}
.y10f{bottom:474.015000px;}
.yf1{bottom:474.375000px;}
.y2a{bottom:476.679000px;}
.y7f{bottom:482.475000px;}
.y38{bottom:486.399000px;}
.yf0{bottom:488.415000px;}
.ycf{bottom:491.115000px;}
.y10e{bottom:491.295000px;}
.y29{bottom:493.959000px;}
.y7e{bottom:499.755000px;}
.y37{bottom:503.499000px;}
.yce{bottom:508.395000px;}
.y10d{bottom:508.575000px;}
.y28{bottom:511.239000px;}
.y7d{bottom:517.035000px;}
.y36{bottom:520.809000px;}
.ycd{bottom:525.675000px;}
.y10c{bottom:525.855000px;}
.y27{bottom:529.089000px;}
.y7c{bottom:534.135000px;}
.y137{bottom:536.295000px;}
.y35{bottom:538.089000px;}
.ycc{bottom:542.955000px;}
.y10b{bottom:543.135000px;}
.y26{bottom:546.549000px;}
.y7b{bottom:551.415000px;}
.y136{bottom:553.575000px;}
.y34{bottom:555.369000px;}
.ycb{bottom:560.235000px;}
.y25{bottom:563.829000px;}
.y7a{bottom:568.695000px;}
.y135{bottom:570.855000px;}
.y33{bottom:572.649000px;}
.yca{bottom:577.335000px;}
.y10a{bottom:577.515000px;}
.y24{bottom:581.289000px;}
.y79{bottom:585.975000px;}
.y134{bottom:588.135000px;}
.y32{bottom:589.929000px;}
.yc9{bottom:594.615000px;}
.y109{bottom:594.795000px;}
.y23{bottom:598.569000px;}
.yb6{bottom:598.575000px;}
.y78{bottom:603.255000px;}
.y133{bottom:605.265000px;}
.y31{bottom:607.029000px;}
.yc8{bottom:611.925000px;}
.y108{bottom:612.105000px;}
.yb5{bottom:615.885000px;}
.y22{bottom:616.029000px;}
.y77{bottom:620.385000px;}
.y132{bottom:622.545000px;}
.y30{bottom:624.309000px;}
.yc7{bottom:629.205000px;}
.y107{bottom:629.385000px;}
.yb4{bottom:633.165000px;}
.y21{bottom:633.669000px;}
.y76{bottom:637.665000px;}
.y131{bottom:639.825000px;}
.y2f{bottom:641.589000px;}
.yc6{bottom:646.485000px;}
.yb3{bottom:650.265000px;}
.y75{bottom:654.945000px;}
.y130{bottom:657.105000px;}
.y2e{bottom:658.869000px;}
.y20{bottom:661.029000px;}
.y106{bottom:663.765000px;}
.yb2{bottom:667.545000px;}
.yc3{bottom:669.345000px;}
.y74{bottom:672.225000px;}
.y12f{bottom:674.385000px;}
.y2d{bottom:676.149000px;}
.y1f{bottom:678.669000px;}
.y105{bottom:681.045000px;}
.yb1{bottom:684.825000px;}
.y73{bottom:689.505000px;}
.y12e{bottom:691.665000px;}
.y104{bottom:698.325000px;}
.yb0{bottom:702.105000px;}
.y72{bottom:706.785000px;}
.y12d{bottom:708.765000px;}
.y103{bottom:715.605000px;}
.yaf{bottom:719.385000px;}
.ye8{bottom:721.185000px;}
.y71{bottom:723.885000px;}
.y12c{bottom:726.045000px;}
.y102{bottom:732.885000px;}
.yae{bottom:734.145000px;}
.yc2{bottom:736.305000px;}
.ye7{bottom:738.465000px;}
.y70{bottom:741.165000px;}
.y12b{bottom:743.325000px;}
.y101{bottom:749.985000px;}
.yad{bottom:752.145000px;}
.ye6{bottom:755.745000px;}
.y6f{bottom:758.445000px;}
.y12a{bottom:760.605000px;}
.y100{bottom:767.265000px;}
.ye5{bottom:769.605000px;}
.yac{bottom:770.145000px;}
.y6e{bottom:775.725000px;}
.y1b{bottom:777.705000px;}
.y129{bottom:777.885000px;}
.yff{bottom:784.545000px;}
.yc1{bottom:787.245000px;}
.yab{bottom:788.145000px;}
.y6d{bottom:793.005000px;}
.y128{bottom:795.165000px;}
.yef{bottom:800.385000px;}
.yfe{bottom:801.825000px;}
.yaa{bottom:806.145000px;}
.y10{bottom:807.405000px;}
.y6c{bottom:810.285000px;}
.y127{bottom:812.265000px;}
.yee{bottom:817.485000px;}
.yfd{bottom:819.105000px;}
.ya9{bottom:824.145000px;}
.y6b{bottom:827.385000px;}
.y126{bottom:829.545000px;}
.yed{bottom:834.765000px;}
.yfc{bottom:836.385000px;}
.ybf{bottom:838.365000px;}
.ya8{bottom:842.145000px;}
.y6a{bottom:844.665000px;}
.y125{bottom:846.825000px;}
.yec{bottom:848.805000px;}
.yfb{bottom:853.485000px;}
.ya7{bottom:860.145000px;}
.y69{bottom:861.945000px;}
.y124{bottom:864.105000px;}
.yfa{bottom:870.810000px;}
.y68{bottom:879.270000px;}
.ya6{bottom:881.430000px;}
.yf9{bottom:888.090000px;}
.y67{bottom:896.550000px;}
.ya5{bottom:898.530000px;}
.yf8{bottom:905.370000px;}
.ybe{bottom:906.630000px;}
.y66{bottom:913.650000px;}
.ya4{bottom:915.810000px;}
.yf7{bottom:919.410000px;}
.y65{bottom:930.930000px;}
.ya3{bottom:933.090000px;}
.ybd{bottom:940.290000px;}
.y64{bottom:948.210000px;}
.ya2{bottom:950.370000px;}
.y63{bottom:965.490000px;}
.ya1{bottom:967.650000px;}
.y62{bottom:982.770000px;}
.ya0{bottom:984.930000px;}
.y61{bottom:1000.050000px;}
.y9f{bottom:1002.030000px;}
.yba{bottom:1008.690000px;}
.ye{bottom:1016.610000px;}
.y60{bottom:1017.150000px;}
.y9e{bottom:1019.310000px;}
.y5f{bottom:1034.430000px;}
.y9d{bottom:1036.590000px;}
.y7{bottom:1042.350000px;}
.y5e{bottom:1051.710000px;}
.y9c{bottom:1053.870000px;}
.y5d{bottom:1068.990000px;}
.y9b{bottom:1071.150000px;}
.y5c{bottom:1086.270000px;}
.y9a{bottom:1088.430000px;}
.yb8{bottom:1094.190000px;}
.y5b{bottom:1103.550000px;}
.y99{bottom:1105.530000px;}
.y5a{bottom:1120.650000px;}
.y98{bottom:1122.810000px;}
.y59{bottom:1137.960000px;}
.y97{bottom:1140.120000px;}
.yb7{bottom:1145.160000px;}
.y55{bottom:1152.000000px;}
.y96{bottom:1157.400000px;}
.y6{bottom:1173.060000px;}
.y95{bottom:1174.680000px;}
.h1f{height:17.100000px;}
.h1e{height:17.136000px;}
.h20{height:17.280000px;}
.hc{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.700000px;}
.h2{height:32.976000px;}
.h21{height:34.380000px;}
.h25{height:34.560000px;}
.h1b{height:36.540000px;}
.h18{height:38.818125px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h17{height:42.281367px;}
.h27{height:43.506914px;}
.he{height:44.002969px;}
.h1d{height:44.119688px;}
.h16{height:45.770625px;}
.h14{height:47.980898px;}
.h1c{height:48.088125px;}
.h7{height:48.224531px;}
.h9{height:49.394180px;}
.h26{height:50.400000px;}
.h24{height:51.696000px;}
.h23{height:51.840000px;}
.h4{height:53.709961px;}
.h3{height:55.291992px;}
.h15{height:56.574492px;}
.hb{height:59.439023px;}
.h10{height:61.189805px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.h22{height:68.940000px;}
.h6{height:71.613281px;}
.ha{height:73.722656px;}
.h8{height:124.416000px;}
.hd{height:209.190000px;}
.h13{height:690.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w11{width:92.340000px;}
.w10{width:110.376000px;}
.we{width:123.336000px;}
.w14{width:148.860000px;}
.w5{width:151.950000px;}
.wd{width:165.810000px;}
.w13{width:171.750000px;}
.wc{width:175.320000px;}
.wa{width:186.150000px;}
.wb{width:217.155000px;}
.w8{width:223.275000px;}
.wf{width:246.630000px;}
.w12{width:424.545000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.660000px;}
.x2{left:8.640000px;}
.xc{left:10.080000px;}
.x14{left:12.600000px;}
.xd{left:36.036000px;}
.x1{left:72.360000px;}
.x16{left:73.620000px;}
.x1b{left:75.060000px;}
.x4{left:80.999987px;}
.x5{left:83.190000px;}
.xf{left:106.230000px;}
.x28{left:108.035987px;}
.x29{left:135.035987px;}
.x10{left:136.290000px;}
.x11{left:165.630000px;}
.x1d{left:199.830000px;}
.x12{left:215.175000px;}
.x1a{left:223.589987px;}
.x6{left:224.850000px;}
.x15{left:249.329987px;}
.x17{left:260.490000px;}
.x1f{left:292.394987px;}
.x13{left:296.175000px;}
.x8{left:302.835000px;}
.xe{left:345.675000px;}
.xa{left:363.495000px;}
.x7{left:367.095000px;}
.xb{left:373.575000px;}
.x9{left:448.140000px;}
.x18{left:478.365000px;}
.x20{left:498.885000px;}
.x1e{left:559.905000px;}
.x25{left:653.144987px;}
.x19{left:654.405000px;}
.x23{left:667.409987px;}
.x21{left:671.370000px;}
.x26{left:709.169987px;}
.x27{left:715.289987px;}
.x22{left:721.589987px;}
.x3{left:745.890000px;}
.x24{left:751.469987px;}
@media print{
.v1{vertical-align:-72.426667pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v2{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.051200pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls11{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.lsb{letter-spacing:154.449707pt;}
.lsa{letter-spacing:174.439040pt;}
.ls9{letter-spacing:178.848000pt;}
.ls1{letter-spacing:1196.335787pt;}
.ws2{word-spacing:-20.915200pt;}
.ws9{word-spacing:-17.688960pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-3.110613pt;}
._b{margin-left:-2.115200pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.986667pt;}
._12{width:1.994667pt;}
._6{width:2.891093pt;}
._c{width:4.169813pt;}
._a{width:5.312000pt;}
._9{width:6.374400pt;}
._8{width:7.920853pt;}
._7{width:8.921173pt;}
._2{width:9.956053pt;}
._2f{width:10.972587pt;}
._10{width:12.369067pt;}
._5{width:14.258773pt;}
._13{width:15.457920pt;}
._4{width:16.414080pt;}
._3{width:17.499093pt;}
._e{width:18.614613pt;}
._d{width:19.889493pt;}
._21{width:24.298453pt;}
._2d{width:25.763200pt;}
._2e{width:27.196800pt;}
._11{width:32.691413pt;}
._26{width:36.091093pt;}
._25{width:37.230080pt;}
._15{width:41.742080pt;}
._1b{width:43.899733pt;}
._16{width:45.728000pt;}
._2b{width:59.294293pt;}
._19{width:63.736960pt;}
._2a{width:65.190613pt;}
._17{width:68.302080pt;}
._22{width:77.099733pt;}
._1f{width:85.760000pt;}
._29{width:98.080000pt;}
._24{width:105.768320pt;}
._1a{width:108.755413pt;}
._1e{width:117.288960pt;}
._23{width:125.066667pt;}
._27{width:136.643200pt;}
._2c{width:150.951253pt;}
._14{width:160.106667pt;}
._20{width:168.692907pt;}
._28{width:174.695893pt;}
._18{width:178.720000pt;}
._1d{width:206.606293pt;}
._1c{width:461.157333pt;}
.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;}
.y1c{bottom:0.160000pt;}
.y54{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.yd{bottom:3.520000pt;}
.yf{bottom:6.880000pt;}
.y57{bottom:9.440000pt;}
.y1d{bottom:11.200000pt;}
.y4{bottom:15.360000pt;}
.y8{bottom:16.000000pt;}
.yc5{bottom:17.120000pt;}
.y2{bottom:17.920000pt;}
.yb9{bottom:18.080000pt;}
.y53{bottom:18.240000pt;}
.yc{bottom:19.680000pt;}
.y58{bottom:19.840000pt;}
.y1a{bottom:21.120000pt;}
.y56{bottom:22.400000pt;}
.y5{bottom:23.200000pt;}
.yc4{bottom:32.480000pt;}
.ybc{bottom:33.440000pt;}
.yc0{bottom:33.480000pt;}
.y52{bottom:33.600000pt;}
.y19{bottom:35.840000pt;}
.yb{bottom:36.000000pt;}
.y1{bottom:43.200000pt;}
.ybb{bottom:48.800000pt;}
.y51{bottom:48.960000pt;}
.y18{bottom:50.400000pt;}
.y17{bottom:61.480000pt;}
.ya{bottom:62.880000pt;}
.y50{bottom:64.314667pt;}
.y16{bottom:74.600000pt;}
.y1e{bottom:77.952000pt;}
.y4f{bottom:79.674667pt;}
.y123{bottom:84.032000pt;}
.y15{bottom:88.200000pt;}
.y4e{bottom:94.874667pt;}
.y122{bottom:99.392000pt;}
.y9{bottom:100.506667pt;}
.y94{bottom:104.832000pt;}
.y14{bottom:105.000000pt;}
.ye4{bottom:109.312000pt;}
.y4d{bottom:110.234667pt;}
.yf6{bottom:113.312000pt;}
.y121{bottom:114.752000pt;}
.y93{bottom:120.192000pt;}
.ye3{bottom:124.512000pt;}
.y4c{bottom:125.594667pt;}
.y13{bottom:127.880000pt;}
.yf5{bottom:128.672000pt;}
.y120{bottom:130.112000pt;}
.y92{bottom:135.546667pt;}
.ye2{bottom:137.626667pt;}
.y4b{bottom:140.954667pt;}
.yf4{bottom:144.026667pt;}
.y11f{bottom:145.306667pt;}
.y91{bottom:150.746667pt;}
.y12{bottom:150.760000pt;}
.ye1{bottom:153.626667pt;}
.y4a{bottom:156.314667pt;}
.yf3{bottom:156.506667pt;}
.y11e{bottom:160.666667pt;}
.y90{bottom:166.106667pt;}
.ye0{bottom:169.626667pt;}
.y49{bottom:171.674667pt;}
.y11{bottom:172.520000pt;}
.y11d{bottom:176.026667pt;}
.y8f{bottom:181.466667pt;}
.ydf{bottom:185.626667pt;}
.y48{bottom:186.874667pt;}
.y11c{bottom:191.386667pt;}
.y8e{bottom:196.826667pt;}
.yde{bottom:201.626667pt;}
.y47{bottom:202.234667pt;}
.y11b{bottom:206.746667pt;}
.y8d{bottom:212.186667pt;}
.y46{bottom:217.594667pt;}
.ydd{bottom:217.626667pt;}
.y11a{bottom:221.946667pt;}
.y8c{bottom:227.546667pt;}
.y45{bottom:232.994667pt;}
.ydc{bottom:233.626667pt;}
.y119{bottom:237.306667pt;}
.y8b{bottom:242.746667pt;}
.y44{bottom:248.354667pt;}
.ydb{bottom:252.506667pt;}
.y118{bottom:252.666667pt;}
.y8a{bottom:259.226667pt;}
.y43{bottom:263.554667pt;}
.yda{bottom:267.866667pt;}
.y117{bottom:268.026667pt;}
.y89{bottom:275.546667pt;}
.y42{bottom:278.914667pt;}
.yd9{bottom:283.226667pt;}
.y116{bottom:283.386667pt;}
.y88{bottom:290.746667pt;}
.y41{bottom:294.274667pt;}
.yd8{bottom:298.586667pt;}
.y115{bottom:298.746667pt;}
.y87{bottom:306.146667pt;}
.y40{bottom:309.634667pt;}
.yd7{bottom:313.986667pt;}
.y86{bottom:321.506667pt;}
.y3f{bottom:324.994667pt;}
.yeb{bottom:325.026667pt;}
.yd6{bottom:329.186667pt;}
.y114{bottom:329.346667pt;}
.y85{bottom:336.866667pt;}
.yea{bottom:340.226667pt;}
.y3e{bottom:340.354667pt;}
.yd5{bottom:344.546667pt;}
.y113{bottom:344.706667pt;}
.y84{bottom:352.226667pt;}
.ye9{bottom:352.706667pt;}
.y3d{bottom:355.554667pt;}
.yd4{bottom:359.906667pt;}
.y112{bottom:360.066667pt;}
.y83{bottom:367.586667pt;}
.y3c{bottom:370.914667pt;}
.yd3{bottom:375.266667pt;}
.y111{bottom:375.426667pt;}
.y82{bottom:382.786667pt;}
.y3b{bottom:386.274667pt;}
.yd2{bottom:390.626667pt;}
.y110{bottom:390.786667pt;}
.y2c{bottom:394.594667pt;}
.y81{bottom:398.146667pt;}
.y3a{bottom:401.634667pt;}
.yd1{bottom:405.986667pt;}
.yf2{bottom:406.306667pt;}
.y2b{bottom:408.194667pt;}
.y80{bottom:413.506667pt;}
.y39{bottom:416.994667pt;}
.yd0{bottom:421.186667pt;}
.y10f{bottom:421.346667pt;}
.yf1{bottom:421.666667pt;}
.y2a{bottom:423.714667pt;}
.y7f{bottom:428.866667pt;}
.y38{bottom:432.354667pt;}
.yf0{bottom:434.146667pt;}
.ycf{bottom:436.546667pt;}
.y10e{bottom:436.706667pt;}
.y29{bottom:439.074667pt;}
.y7e{bottom:444.226667pt;}
.y37{bottom:447.554667pt;}
.yce{bottom:451.906667pt;}
.y10d{bottom:452.066667pt;}
.y28{bottom:454.434667pt;}
.y7d{bottom:459.586667pt;}
.y36{bottom:462.941333pt;}
.ycd{bottom:467.266667pt;}
.y10c{bottom:467.426667pt;}
.y27{bottom:470.301333pt;}
.y7c{bottom:474.786667pt;}
.y137{bottom:476.706667pt;}
.y35{bottom:478.301333pt;}
.ycc{bottom:482.626667pt;}
.y10b{bottom:482.786667pt;}
.y26{bottom:485.821333pt;}
.y7b{bottom:490.146667pt;}
.y136{bottom:492.066667pt;}
.y34{bottom:493.661333pt;}
.ycb{bottom:497.986667pt;}
.y25{bottom:501.181333pt;}
.y7a{bottom:505.506667pt;}
.y135{bottom:507.426667pt;}
.y33{bottom:509.021333pt;}
.yca{bottom:513.186667pt;}
.y10a{bottom:513.346667pt;}
.y24{bottom:516.701333pt;}
.y79{bottom:520.866667pt;}
.y134{bottom:522.786667pt;}
.y32{bottom:524.381333pt;}
.yc9{bottom:528.546667pt;}
.y109{bottom:528.706667pt;}
.y23{bottom:532.061333pt;}
.yb6{bottom:532.066667pt;}
.y78{bottom:536.226667pt;}
.y133{bottom:538.013333pt;}
.y31{bottom:539.581333pt;}
.yc8{bottom:543.933333pt;}
.y108{bottom:544.093333pt;}
.yb5{bottom:547.453333pt;}
.y22{bottom:547.581333pt;}
.y77{bottom:551.453333pt;}
.y132{bottom:553.373333pt;}
.y30{bottom:554.941333pt;}
.yc7{bottom:559.293333pt;}
.y107{bottom:559.453333pt;}
.yb4{bottom:562.813333pt;}
.y21{bottom:563.261333pt;}
.y76{bottom:566.813333pt;}
.y131{bottom:568.733333pt;}
.y2f{bottom:570.301333pt;}
.yc6{bottom:574.653333pt;}
.yb3{bottom:578.013333pt;}
.y75{bottom:582.173333pt;}
.y130{bottom:584.093333pt;}
.y2e{bottom:585.661333pt;}
.y20{bottom:587.581333pt;}
.y106{bottom:590.013333pt;}
.yb2{bottom:593.373333pt;}
.yc3{bottom:594.973333pt;}
.y74{bottom:597.533333pt;}
.y12f{bottom:599.453333pt;}
.y2d{bottom:601.021333pt;}
.y1f{bottom:603.261333pt;}
.y105{bottom:605.373333pt;}
.yb1{bottom:608.733333pt;}
.y73{bottom:612.893333pt;}
.y12e{bottom:614.813333pt;}
.y104{bottom:620.733333pt;}
.yb0{bottom:624.093333pt;}
.y72{bottom:628.253333pt;}
.y12d{bottom:630.013333pt;}
.y103{bottom:636.093333pt;}
.yaf{bottom:639.453333pt;}
.ye8{bottom:641.053333pt;}
.y71{bottom:643.453333pt;}
.y12c{bottom:645.373333pt;}
.y102{bottom:651.453333pt;}
.yae{bottom:652.573333pt;}
.yc2{bottom:654.493333pt;}
.ye7{bottom:656.413333pt;}
.y70{bottom:658.813333pt;}
.y12b{bottom:660.733333pt;}
.y101{bottom:666.653333pt;}
.yad{bottom:668.573333pt;}
.ye6{bottom:671.773333pt;}
.y6f{bottom:674.173333pt;}
.y12a{bottom:676.093333pt;}
.y100{bottom:682.013333pt;}
.ye5{bottom:684.093333pt;}
.yac{bottom:684.573333pt;}
.y6e{bottom:689.533333pt;}
.y1b{bottom:691.293333pt;}
.y129{bottom:691.453333pt;}
.yff{bottom:697.373333pt;}
.yc1{bottom:699.773333pt;}
.yab{bottom:700.573333pt;}
.y6d{bottom:704.893333pt;}
.y128{bottom:706.813333pt;}
.yef{bottom:711.453333pt;}
.yfe{bottom:712.733333pt;}
.yaa{bottom:716.573333pt;}
.y10{bottom:717.693333pt;}
.y6c{bottom:720.253333pt;}
.y127{bottom:722.013333pt;}
.yee{bottom:726.653333pt;}
.yfd{bottom:728.093333pt;}
.ya9{bottom:732.573333pt;}
.y6b{bottom:735.453333pt;}
.y126{bottom:737.373333pt;}
.yed{bottom:742.013333pt;}
.yfc{bottom:743.453333pt;}
.ybf{bottom:745.213333pt;}
.ya8{bottom:748.573333pt;}
.y6a{bottom:750.813333pt;}
.y125{bottom:752.733333pt;}
.yec{bottom:754.493333pt;}
.yfb{bottom:758.653333pt;}
.ya7{bottom:764.573333pt;}
.y69{bottom:766.173333pt;}
.y124{bottom:768.093333pt;}
.yfa{bottom:774.053333pt;}
.y68{bottom:781.573333pt;}
.ya6{bottom:783.493333pt;}
.yf9{bottom:789.413333pt;}
.y67{bottom:796.933333pt;}
.ya5{bottom:798.693333pt;}
.yf8{bottom:804.773333pt;}
.ybe{bottom:805.893333pt;}
.y66{bottom:812.133333pt;}
.ya4{bottom:814.053333pt;}
.yf7{bottom:817.253333pt;}
.y65{bottom:827.493333pt;}
.ya3{bottom:829.413333pt;}
.ybd{bottom:835.813333pt;}
.y64{bottom:842.853333pt;}
.ya2{bottom:844.773333pt;}
.y63{bottom:858.213333pt;}
.ya1{bottom:860.133333pt;}
.y62{bottom:873.573333pt;}
.ya0{bottom:875.493333pt;}
.y61{bottom:888.933333pt;}
.y9f{bottom:890.693333pt;}
.yba{bottom:896.613333pt;}
.ye{bottom:903.653333pt;}
.y60{bottom:904.133333pt;}
.y9e{bottom:906.053333pt;}
.y5f{bottom:919.493333pt;}
.y9d{bottom:921.413333pt;}
.y7{bottom:926.533333pt;}
.y5e{bottom:934.853333pt;}
.y9c{bottom:936.773333pt;}
.y5d{bottom:950.213333pt;}
.y9b{bottom:952.133333pt;}
.y5c{bottom:965.573333pt;}
.y9a{bottom:967.493333pt;}
.yb8{bottom:972.613333pt;}
.y5b{bottom:980.933333pt;}
.y99{bottom:982.693333pt;}
.y5a{bottom:996.133333pt;}
.y98{bottom:998.053333pt;}
.y59{bottom:1011.520000pt;}
.y97{bottom:1013.440000pt;}
.yb7{bottom:1017.920000pt;}
.y55{bottom:1024.000000pt;}
.y96{bottom:1028.800000pt;}
.y6{bottom:1042.720000pt;}
.y95{bottom:1044.160000pt;}
.h1f{height:15.200000pt;}
.h1e{height:15.232000pt;}
.h20{height:15.360000pt;}
.hc{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.400000pt;}
.h2{height:29.312000pt;}
.h21{height:30.560000pt;}
.h25{height:30.720000pt;}
.h1b{height:32.480000pt;}
.h18{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h17{height:37.583438pt;}
.h27{height:38.672812pt;}
.he{height:39.113750pt;}
.h1d{height:39.217500pt;}
.h16{height:40.685000pt;}
.h14{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h7{height:42.866250pt;}
.h9{height:43.905937pt;}
.h26{height:44.800000pt;}
.h24{height:45.952000pt;}
.h23{height:46.080000pt;}
.h4{height:47.742188pt;}
.h3{height:49.148438pt;}
.h15{height:50.288438pt;}
.hb{height:52.834688pt;}
.h10{height:54.390938pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.h22{height:61.280000pt;}
.h6{height:63.656250pt;}
.ha{height:65.531250pt;}
.h8{height:110.592000pt;}
.hd{height:185.946667pt;}
.h13{height:613.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w11{width:82.080000pt;}
.w10{width:98.112000pt;}
.we{width:109.632000pt;}
.w14{width:132.320000pt;}
.w5{width:135.066667pt;}
.wd{width:147.386667pt;}
.w13{width:152.666667pt;}
.wc{width:155.840000pt;}
.wa{width:165.466667pt;}
.wb{width:193.026667pt;}
.w8{width:198.466667pt;}
.wf{width:219.226667pt;}
.w12{width:377.373333pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:5.920000pt;}
.x2{left:7.680000pt;}
.xc{left:8.960000pt;}
.x14{left:11.200000pt;}
.xd{left:32.032000pt;}
.x1{left:64.320000pt;}
.x16{left:65.440000pt;}
.x1b{left:66.720000pt;}
.x4{left:71.999988pt;}
.x5{left:73.946667pt;}
.xf{left:94.426667pt;}
.x28{left:96.031988pt;}
.x29{left:120.031988pt;}
.x10{left:121.146667pt;}
.x11{left:147.226667pt;}
.x1d{left:177.626667pt;}
.x12{left:191.266667pt;}
.x1a{left:198.746655pt;}
.x6{left:199.866667pt;}
.x15{left:221.626655pt;}
.x17{left:231.546667pt;}
.x1f{left:259.906655pt;}
.x13{left:263.266667pt;}
.x8{left:269.186667pt;}
.xe{left:307.266667pt;}
.xa{left:323.106667pt;}
.x7{left:326.306667pt;}
.xb{left:332.066667pt;}
.x9{left:398.346667pt;}
.x18{left:425.213333pt;}
.x20{left:443.453333pt;}
.x1e{left:497.693333pt;}
.x25{left:580.573322pt;}
.x19{left:581.693333pt;}
.x23{left:593.253322pt;}
.x21{left:596.773333pt;}
.x26{left:630.373322pt;}
.x27{left:635.813322pt;}
.x22{left:641.413322pt;}
.x3{left:663.013333pt;}
.x24{left:667.973322pt;}
}




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