
    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_8d4b0ffe0e2db611e217d8c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9334de7b1c28815a7009cdaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_db3a0349af5bb4e388c805cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e7643d55f23eb8b5cde5b67d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_66dedff427bc86133f2a181c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5cdb3d38a80356fdd8206021.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f6b2aae59076ae5b971e35dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986816;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_31698dd7ee038a9a8d1d1138.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_b8062037fc3973b993d7fec9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0f1310048a13762437ef483d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;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_060e3e3afa072f62415a9aa4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5ceb85b74cb6906063d16730.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690430;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);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.666000px;}
.ls1d{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.379470px;}
.ls18{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.537920px;}
.lsf{letter-spacing:1.548000px;}
.ls6{letter-spacing:1.717920px;}
.ls9{letter-spacing:2.424000px;}
.lsa{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls3{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.144000px;}
.ls1e{letter-spacing:3.780000px;}
.ls21{letter-spacing:5.220000px;}
.ls1a{letter-spacing:8.100000px;}
.lse{letter-spacing:8.820000px;}
.ls14{letter-spacing:27.540000px;}
.ls15{letter-spacing:50.220000px;}
.ls1f{letter-spacing:688.116000px;}
.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;}
}
.ws0{word-spacing:-19.642080px;}
.ws1{word-spacing:-18.922080px;}
.ws8{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.020000px;}
.ws15{word-spacing:-15.747985px;}
.wsf{word-spacing:-15.606000px;}
.ws2{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.246600px;}
.ws3{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199920px;}
.ws6{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.400000px;}
.ws12{word-spacing:-14.274000px;}
.ws1c{word-spacing:-1.854240px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:31.680000px;}
.ws11{word-spacing:131.040000px;}
.ws13{word-spacing:168.480000px;}
.ws18{word-spacing:626.995560px;}
.ws19{word-spacing:677.496000px;}
.ws1a{word-spacing:718.536000px;}
._2a{margin-left:-793.345920px;}
._29{margin-left:-753.133200px;}
._2f{margin-left:-716.636640px;}
._26{margin-left:-550.776000px;}
._33{margin-left:-488.888044px;}
._2c{margin-left:-403.917840px;}
._31{margin-left:-324.813011px;}
._32{margin-left:-300.407049px;}
._1e{margin-left:-241.902720px;}
._1d{margin-left:-235.572480px;}
._1c{margin-left:-208.554960px;}
._1a{margin-left:-205.991280px;}
._25{margin-left:-155.607120px;}
._24{margin-left:-118.540080px;}
._19{margin-left:-106.670160px;}
._18{margin-left:-78.941520px;}
._1b{margin-left:-45.720000px;}
._1f{margin-left:-4.601520px;}
._15{margin-left:-2.410320px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._a{width:6.054960px;}
._7{width:7.350480px;}
._6{width:8.605440px;}
._8{width:9.829440px;}
._b{width:11.354400px;}
._e{width:12.549600px;}
._9{width:13.744800px;}
._11{width:16.434000px;}
._14{width:17.559360px;}
._23{width:19.395840px;}
._17{width:20.800800px;}
._d{width:22.111200px;}
._c{width:23.306400px;}
._21{width:25.156800px;}
._20{width:26.734080px;}
._f{width:27.738240px;}
._10{width:29.401920px;}
._16{width:30.517680px;}
._2e{width:31.600080px;}
._30{width:36.261360px;}
._13{width:38.256000px;}
._12{width:39.989040px;}
._28{width:61.456080px;}
._35{width:62.632080px;}
._22{width:108.158400px;}
._34{width:121.850640px;}
._27{width:178.161600px;}
._2b{width:235.516080px;}
._2d{width:406.432080px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc6{color:rgb(77,81,86);}
.fc4{color:rgb(91,155,213);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(44,44,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.ycf{bottom:3.240000px;}
.y12{bottom:3.420000px;}
.yb4{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.yd9{bottom:4.725000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.y9a{bottom:20.520000px;}
.y9d{bottom:20.700000px;}
.y97{bottom:20.730000px;}
.y17{bottom:20.880000px;}
.yaf{bottom:21.054000px;}
.y9f{bottom:21.060000px;}
.y2e{bottom:21.105000px;}
.ybd{bottom:21.960000px;}
.yd8{bottom:22.185000px;}
.y2{bottom:28.980000px;}
.y99{bottom:37.800000px;}
.y9c{bottom:37.980000px;}
.y2f{bottom:38.025000px;}
.yae{bottom:38.154000px;}
.y16{bottom:38.160000px;}
.y9e{bottom:38.340000px;}
.y2d{bottom:38.385000px;}
.ybc{bottom:39.420000px;}
.yd7{bottom:39.465000px;}
.yac{bottom:55.074000px;}
.ya2{bottom:55.080000px;}
.yb2{bottom:55.110000px;}
.yd1{bottom:55.260000px;}
.ya4{bottom:55.305000px;}
.yad{bottom:55.434000px;}
.y15{bottom:55.440000px;}
.yb3{bottom:55.470000px;}
.yaa{bottom:55.620000px;}
.ya5{bottom:55.665000px;}
.ydb{bottom:56.205000px;}
.ybe{bottom:56.385000px;}
.yd6{bottom:56.565000px;}
.yb{bottom:56.700000px;}
.ybb{bottom:56.745000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.ya9{bottom:72.900000px;}
.yda{bottom:73.485000px;}
.yb9{bottom:73.665000px;}
.yd5{bottom:73.845000px;}
.ya{bottom:73.980000px;}
.yba{bottom:74.025000px;}
.ya8{bottom:89.640000px;}
.y2b{bottom:90.000000px;}
.yd3{bottom:90.765000px;}
.yd4{bottom:91.125000px;}
.ya7{bottom:106.920000px;}
.y2a{bottom:107.280000px;}
.ycc{bottom:109.476000px;}
.yb0{bottom:112.896000px;}
.y127{bottom:113.616000px;}
.y107{bottom:118.476000px;}
.y36{bottom:122.940000px;}
.y11f{bottom:122.976000px;}
.y91{bottom:123.336000px;}
.yc8{bottom:124.200000px;}
.y29{bottom:124.380000px;}
.yc2{bottom:124.560000px;}
.y53{bottom:128.376000px;}
.yab{bottom:130.896000px;}
.y106{bottom:135.756000px;}
.y35{bottom:139.860000px;}
.y11e{bottom:140.256000px;}
.y90{bottom:140.616000px;}
.yc7{bottom:141.525000px;}
.y28{bottom:141.660000px;}
.yca{bottom:141.885000px;}
.y52{bottom:145.476000px;}
.y126{bottom:148.176000px;}
.y105{bottom:153.030000px;}
.y34{bottom:157.500000px;}
.y11d{bottom:157.530000px;}
.y8f{bottom:157.890000px;}
.yc1{bottom:158.580000px;}
.yc6{bottom:158.805000px;}
.y27{bottom:158.940000px;}
.yc9{bottom:159.165000px;}
.ycb{bottom:162.030000px;}
.y51{bottom:162.750000px;}
.y125{bottom:165.450000px;}
.y104{bottom:170.310000px;}
.y33{bottom:174.780000px;}
.y11c{bottom:174.810000px;}
.y8e{bottom:175.170000px;}
.yc0{bottom:175.860000px;}
.y26{bottom:176.220000px;}
.y50{bottom:180.030000px;}
.y124{bottom:182.730000px;}
.y103{bottom:187.590000px;}
.y32{bottom:191.880000px;}
.y11b{bottom:192.090000px;}
.y8d{bottom:192.450000px;}
.y25{bottom:193.500000px;}
.y4f{bottom:197.310000px;}
.y123{bottom:200.010000px;}
.ya6{bottom:200.550000px;}
.y102{bottom:204.690000px;}
.y31{bottom:209.160000px;}
.y11a{bottom:209.190000px;}
.y8c{bottom:209.550000px;}
.y24{bottom:210.780000px;}
.y4e{bottom:214.590000px;}
.y122{bottom:217.110000px;}
.y101{bottom:221.970000px;}
.y30{bottom:226.080000px;}
.y119{bottom:226.470000px;}
.y8b{bottom:226.830000px;}
.y23{bottom:227.880000px;}
.y4d{bottom:231.690000px;}
.y121{bottom:234.390000px;}
.y100{bottom:239.250000px;}
.y118{bottom:243.750000px;}
.y8a{bottom:244.110000px;}
.y22{bottom:245.160000px;}
.y120{bottom:248.070000px;}
.y4c{bottom:248.970000px;}
.yff{bottom:256.530000px;}
.y117{bottom:261.030000px;}
.y89{bottom:261.390000px;}
.y21{bottom:262.485000px;}
.y4b{bottom:266.250000px;}
.yfe{bottom:273.810000px;}
.y88{bottom:278.670000px;}
.y20{bottom:279.765000px;}
.y4a{bottom:283.530000px;}
.yfd{bottom:290.910000px;}
.y87{bottom:295.950000px;}
.y1f{bottom:297.045000px;}
.y49{bottom:300.810000px;}
.yfc{bottom:308.190000px;}
.y86{bottom:313.050000px;}
.y1e{bottom:314.145000px;}
.y48{bottom:318.090000px;}
.ya3{bottom:322.050000px;}
.yfb{bottom:325.470000px;}
.y116{bottom:329.970000px;}
.y85{bottom:330.330000px;}
.y1d{bottom:331.425000px;}
.y47{bottom:335.190000px;}
.yfa{bottom:342.750000px;}
.y84{bottom:347.610000px;}
.y1c{bottom:348.705000px;}
.y46{bottom:352.470000px;}
.yf9{bottom:360.075000px;}
.y83{bottom:364.935000px;}
.y1b{bottom:365.985000px;}
.y45{bottom:369.795000px;}
.yf8{bottom:377.355000px;}
.y82{bottom:382.215000px;}
.y44{bottom:387.075000px;}
.ya1{bottom:391.935000px;}
.yf7{bottom:394.455000px;}
.y81{bottom:399.495000px;}
.y43{bottom:404.355000px;}
.yc5{bottom:405.075000px;}
.yf6{bottom:411.735000px;}
.y80{bottom:416.595000px;}
.y42{bottom:421.635000px;}
.yf5{bottom:429.015000px;}
.y7f{bottom:433.875000px;}
.y41{bottom:438.735000px;}
.yf4{bottom:446.295000px;}
.y7e{bottom:451.155000px;}
.y40{bottom:456.015000px;}
.ya0{bottom:461.595000px;}
.yf3{bottom:463.575000px;}
.y7d{bottom:468.435000px;}
.y3f{bottom:473.295000px;}
.yc4{bottom:474.735000px;}
.yf2{bottom:480.855000px;}
.y7c{bottom:485.715000px;}
.y3e{bottom:490.575000px;}
.y9b{bottom:496.875000px;}
.yf1{bottom:497.955000px;}
.y7b{bottom:502.815000px;}
.y3d{bottom:507.855000px;}
.yf0{bottom:515.235000px;}
.y7a{bottom:520.095000px;}
.y3c{bottom:524.955000px;}
.yef{bottom:532.515000px;}
.y79{bottom:537.375000px;}
.y3b{bottom:542.235000px;}
.y98{bottom:549.435000px;}
.yee{bottom:549.795000px;}
.y78{bottom:554.655000px;}
.y3a{bottom:559.515000px;}
.yed{bottom:567.075000px;}
.y77{bottom:571.935000px;}
.y39{bottom:576.795000px;}
.yc3{bottom:578.955000px;}
.yec{bottom:583.995000px;}
.y76{bottom:589.215000px;}
.y38{bottom:593.715000px;}
.yeb{bottom:601.095000px;}
.y96{bottom:601.815000px;}
.y75{bottom:606.315000px;}
.y37{bottom:610.995000px;}
.yea{bottom:618.405000px;}
.y74{bottom:623.625000px;}
.y1a{bottom:625.605000px;}
.ybf{bottom:631.545000px;}
.ye9{bottom:635.685000px;}
.y95{bottom:640.545000px;}
.y73{bottom:640.905000px;}
.ye8{bottom:652.965000px;}
.y115{bottom:657.825000px;}
.y72{bottom:658.185000px;}
.ye7{bottom:670.245000px;}
.y114{bottom:675.105000px;}
.y71{bottom:675.465000px;}
.ye6{bottom:687.345000px;}
.y113{bottom:692.385000px;}
.y70{bottom:692.745000px;}
.ye5{bottom:704.625000px;}
.y6f{bottom:709.485000px;}
.y94{bottom:709.845000px;}
.ye4{bottom:721.905000px;}
.y112{bottom:726.765000px;}
.y6e{bottom:727.125000px;}
.ye3{bottom:739.545000px;}
.y111{bottom:744.045000px;}
.y6d{bottom:744.405000px;}
.ye2{bottom:756.825000px;}
.y110{bottom:761.325000px;}
.y6c{bottom:761.685000px;}
.ye1{bottom:774.105000px;}
.y10f{bottom:778.605000px;}
.y6b{bottom:778.965000px;}
.ye0{bottom:791.205000px;}
.y10e{bottom:795.705000px;}
.y6a{bottom:796.065000px;}
.ydf{bottom:808.485000px;}
.y93{bottom:812.985000px;}
.y69{bottom:813.345000px;}
.yb8{bottom:821.985000px;}
.yde{bottom:825.405000px;}
.y10d{bottom:830.265000px;}
.y68{bottom:830.625000px;}
.ydd{bottom:842.685000px;}
.y10c{bottom:847.545000px;}
.y67{bottom:847.905000px;}
.ydc{bottom:859.965000px;}
.y10b{bottom:864.825000px;}
.y66{bottom:865.185000px;}
.y2c{bottom:866.265000px;}
.yd2{bottom:874.545000px;}
.y10a{bottom:882.150000px;}
.y65{bottom:882.510000px;}
.y109{bottom:899.250000px;}
.y64{bottom:899.610000px;}
.yb7{bottom:910.230000px;}
.y12b{bottom:914.730000px;}
.y63{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.y12a{bottom:928.950000px;}
.y62{bottom:934.170000px;}
.yb6{bottom:945.510000px;}
.y129{bottom:946.230000px;}
.y61{bottom:951.450000px;}
.y108{bottom:968.370000px;}
.y60{bottom:968.730000px;}
.yd0{bottom:979.890000px;}
.y5f{bottom:986.010000px;}
.y128{bottom:998.610000px;}
.y5e{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.y5d{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.yb5{bottom:1032.450000px;}
.y5c{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.y5b{bottom:1054.590000px;}
.y92{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.yce{bottom:1067.010000px;}
.y5a{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.yb1{bottom:1085.010000px;}
.y59{bottom:1089.510000px;}
.yc{bottom:1104.450000px;}
.y58{bottom:1106.610000px;}
.y57{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.ycd{bottom:1136.700000px;}
.y56{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y55{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y54{bottom:1196.100000px;}
.hc{height:17.280000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h1d{height:34.380000px;}
.h18{height:34.560000px;}
.h13{height:34.596000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h12{height:41.522695px;}
.h2{height:44.280000px;}
.h24{height:48.812603px;}
.h14{height:51.660000px;}
.h17{height:51.840000px;}
.h10{height:51.876000px;}
.h16{height:52.348359px;}
.h4{height:54.421875px;}
.h23{height:55.179464px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h15{height:61.423863px;}
.h25{height:63.484066px;}
.h3{height:66.757500px;}
.h19{height:68.940000px;}
.h1c{height:68.976000px;}
.h1a{height:69.156000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h1e{height:87.516000px;}
.h20{height:103.500000px;}
.h22{height:104.616000px;}
.h1b{height:120.780000px;}
.h21{height:172.650000px;}
.h1f{height:189.720000px;}
.h11{height:239.940000px;}
.hf{height:379.470000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w9{width:57.996000px;}
.wc{width:83.376000px;}
.wd{width:99.540000px;}
.wa{width:112.500000px;}
.we{width:125.856000px;}
.w6{width:176.250000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.wb{width:287.895000px;}
.w10{width:337.755000px;}
.w11{width:340.275000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.wf{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x22{left:9.360000px;}
.x20{left:10.485000px;}
.x28{left:11.880000px;}
.x18{left:13.140000px;}
.x1b{left:14.760000px;}
.x1f{left:15.834000px;}
.x2d{left:17.994000px;}
.x13{left:19.656000px;}
.x26{left:21.240000px;}
.x32{left:22.320000px;}
.x24{left:23.985000px;}
.x1e{left:25.056000px;}
.x3a{left:26.100000px;}
.x1d{left:27.720000px;}
.x15{left:29.514000px;}
.x2b{left:30.774000px;}
.x38{left:31.860000px;}
.x1a{left:33.480000px;}
.x5{left:34.920000px;}
.x2a{left:36.720000px;}
.x2f{left:37.794000px;}
.x23{left:38.880000px;}
.x39{left:39.954000px;}
.x35{left:41.070000px;}
.x27{left:42.840000px;}
.x36{left:44.094000px;}
.x33{left:45.405000px;}
.x25{left:50.445000px;}
.x34{left:58.365000px;}
.x29{left:62.145000px;}
.x3d{left:63.225000px;}
.x3f{left:64.305000px;}
.x30{left:67.905000px;}
.x3c{left:70.965000px;}
.x2c{left:75.105000px;}
.x12{left:79.740000px;}
.x2e{left:87.345000px;}
.x1{left:90.396000px;}
.x31{left:97.785000px;}
.x3b{left:105.525000px;}
.x7{left:108.036000px;}
.x40{left:116.325000px;}
.x37{left:120.105000px;}
.x9{left:121.536000px;}
.x3e{left:124.245000px;}
.x5a{left:130.896000px;}
.x10{left:135.036000px;}
.x14{left:138.636000px;}
.x21{left:144.045000px;}
.x50{left:162.030000px;}
.x5b{left:224.130000px;}
.x48{left:230.250000px;}
.x4e{left:243.930000px;}
.x16{left:251.850000px;}
.x49{left:255.855000px;}
.x4f{left:270.255000px;}
.x5e{left:274.539000px;}
.xd{left:283.755000px;}
.x3{left:306.975000px;}
.x56{left:313.455000px;}
.xe{left:314.895000px;}
.xa{left:330.015000px;}
.x53{left:348.375000px;}
.xb{left:373.215000px;}
.x42{left:387.435000px;}
.x54{left:397.695000px;}
.x11{left:411.375000px;}
.x43{left:416.775000px;}
.x4b{left:423.105000px;}
.x5f{left:445.245000px;}
.x4a{left:462.705000px;}
.x44{left:477.105000px;}
.x57{left:492.045000px;}
.x45{left:508.965000px;}
.x58{left:530.565000px;}
.x17{left:540.645000px;}
.x6{left:576.825000px;}
.x46{left:600.090000px;}
.x47{left:621.870000px;}
.x19{left:624.750000px;}
.x55{left:640.950000px;}
.x5d{left:647.430000px;}
.x51{left:659.850000px;}
.x41{left:686.850000px;}
.x4c{left:692.610000px;}
.x4d{left:715.110000px;}
.x1c{left:725.190000px;}
.x52{left:737.790000px;}
.x59{left:744.270000px;}
.x8{left:770.040000px;}
.x5c{left:796.680000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.592000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.337306pt;}
.ls18{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.367040pt;}
.lsf{letter-spacing:1.376000pt;}
.ls6{letter-spacing:1.527040pt;}
.ls9{letter-spacing:2.154667pt;}
.lsa{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls8{letter-spacing:2.794667pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls21{letter-spacing:4.640000pt;}
.ls1a{letter-spacing:7.200000pt;}
.lse{letter-spacing:7.840000pt;}
.ls14{letter-spacing:24.480000pt;}
.ls15{letter-spacing:44.640000pt;}
.ls1f{letter-spacing:611.658667pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-16.819627pt;}
.ws8{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.240000pt;}
.ws15{word-spacing:-13.998209pt;}
.wsf{word-spacing:-13.872000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.552533pt;}
.ws3{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.511040pt;}
.ws6{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.800000pt;}
.ws12{word-spacing:-12.688000pt;}
.ws1c{word-spacing:-1.648213pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:28.160000pt;}
.ws11{word-spacing:116.480000pt;}
.ws13{word-spacing:149.760000pt;}
.ws18{word-spacing:557.329387pt;}
.ws19{word-spacing:602.218667pt;}
.ws1a{word-spacing:638.698667pt;}
._2a{margin-left:-705.196373pt;}
._29{margin-left:-669.451733pt;}
._2f{margin-left:-637.010347pt;}
._26{margin-left:-489.578667pt;}
._33{margin-left:-434.567150pt;}
._2c{margin-left:-359.038080pt;}
._31{margin-left:-288.722677pt;}
._32{margin-left:-267.028488pt;}
._1e{margin-left:-215.024640pt;}
._1d{margin-left:-209.397760pt;}
._1c{margin-left:-185.382187pt;}
._1a{margin-left:-183.103360pt;}
._25{margin-left:-138.317440pt;}
._24{margin-left:-105.368960pt;}
._19{margin-left:-94.817920pt;}
._18{margin-left:-70.170240pt;}
._1b{margin-left:-40.640000pt;}
._1f{margin-left:-4.090240pt;}
._15{margin-left:-2.142507pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._a{width:5.382187pt;}
._7{width:6.533760pt;}
._6{width:7.649280pt;}
._8{width:8.737280pt;}
._b{width:10.092800pt;}
._e{width:11.155200pt;}
._9{width:12.217600pt;}
._11{width:14.608000pt;}
._14{width:15.608320pt;}
._23{width:17.240747pt;}
._17{width:18.489600pt;}
._d{width:19.654400pt;}
._c{width:20.716800pt;}
._21{width:22.361600pt;}
._20{width:23.763627pt;}
._f{width:24.656213pt;}
._10{width:26.135040pt;}
._16{width:27.126827pt;}
._2e{width:28.088960pt;}
._30{width:32.232320pt;}
._13{width:34.005333pt;}
._12{width:35.545813pt;}
._28{width:54.627627pt;}
._35{width:55.672960pt;}
._22{width:96.140800pt;}
._34{width:108.311680pt;}
._27{width:158.365867pt;}
._2b{width:209.347627pt;}
._2d{width:361.272960pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.ycf{bottom:2.880000pt;}
.y12{bottom:3.040000pt;}
.yb4{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.yd9{bottom:4.200000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.y9a{bottom:18.240000pt;}
.y9d{bottom:18.400000pt;}
.y97{bottom:18.426667pt;}
.y17{bottom:18.560000pt;}
.yaf{bottom:18.714667pt;}
.y9f{bottom:18.720000pt;}
.y2e{bottom:18.760000pt;}
.ybd{bottom:19.520000pt;}
.yd8{bottom:19.720000pt;}
.y2{bottom:25.760000pt;}
.y99{bottom:33.600000pt;}
.y9c{bottom:33.760000pt;}
.y2f{bottom:33.800000pt;}
.yae{bottom:33.914667pt;}
.y16{bottom:33.920000pt;}
.y9e{bottom:34.080000pt;}
.y2d{bottom:34.120000pt;}
.ybc{bottom:35.040000pt;}
.yd7{bottom:35.080000pt;}
.yac{bottom:48.954667pt;}
.ya2{bottom:48.960000pt;}
.yb2{bottom:48.986667pt;}
.yd1{bottom:49.120000pt;}
.ya4{bottom:49.160000pt;}
.yad{bottom:49.274667pt;}
.y15{bottom:49.280000pt;}
.yb3{bottom:49.306667pt;}
.yaa{bottom:49.440000pt;}
.ya5{bottom:49.480000pt;}
.ydb{bottom:49.960000pt;}
.ybe{bottom:50.120000pt;}
.yd6{bottom:50.280000pt;}
.yb{bottom:50.400000pt;}
.ybb{bottom:50.440000pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.ya9{bottom:64.800000pt;}
.yda{bottom:65.320000pt;}
.yb9{bottom:65.480000pt;}
.yd5{bottom:65.640000pt;}
.ya{bottom:65.760000pt;}
.yba{bottom:65.800000pt;}
.ya8{bottom:79.680000pt;}
.y2b{bottom:80.000000pt;}
.yd3{bottom:80.680000pt;}
.yd4{bottom:81.000000pt;}
.ya7{bottom:95.040000pt;}
.y2a{bottom:95.360000pt;}
.ycc{bottom:97.312000pt;}
.yb0{bottom:100.352000pt;}
.y127{bottom:100.992000pt;}
.y107{bottom:105.312000pt;}
.y36{bottom:109.280000pt;}
.y11f{bottom:109.312000pt;}
.y91{bottom:109.632000pt;}
.yc8{bottom:110.400000pt;}
.y29{bottom:110.560000pt;}
.yc2{bottom:110.720000pt;}
.y53{bottom:114.112000pt;}
.yab{bottom:116.352000pt;}
.y106{bottom:120.672000pt;}
.y35{bottom:124.320000pt;}
.y11e{bottom:124.672000pt;}
.y90{bottom:124.992000pt;}
.yc7{bottom:125.800000pt;}
.y28{bottom:125.920000pt;}
.yca{bottom:126.120000pt;}
.y52{bottom:129.312000pt;}
.y126{bottom:131.712000pt;}
.y105{bottom:136.026667pt;}
.y34{bottom:140.000000pt;}
.y11d{bottom:140.026667pt;}
.y8f{bottom:140.346667pt;}
.yc1{bottom:140.960000pt;}
.yc6{bottom:141.160000pt;}
.y27{bottom:141.280000pt;}
.yc9{bottom:141.480000pt;}
.ycb{bottom:144.026667pt;}
.y51{bottom:144.666667pt;}
.y125{bottom:147.066667pt;}
.y104{bottom:151.386667pt;}
.y33{bottom:155.360000pt;}
.y11c{bottom:155.386667pt;}
.y8e{bottom:155.706667pt;}
.yc0{bottom:156.320000pt;}
.y26{bottom:156.640000pt;}
.y50{bottom:160.026667pt;}
.y124{bottom:162.426667pt;}
.y103{bottom:166.746667pt;}
.y32{bottom:170.560000pt;}
.y11b{bottom:170.746667pt;}
.y8d{bottom:171.066667pt;}
.y25{bottom:172.000000pt;}
.y4f{bottom:175.386667pt;}
.y123{bottom:177.786667pt;}
.ya6{bottom:178.266667pt;}
.y102{bottom:181.946667pt;}
.y31{bottom:185.920000pt;}
.y11a{bottom:185.946667pt;}
.y8c{bottom:186.266667pt;}
.y24{bottom:187.360000pt;}
.y4e{bottom:190.746667pt;}
.y122{bottom:192.986667pt;}
.y101{bottom:197.306667pt;}
.y30{bottom:200.960000pt;}
.y119{bottom:201.306667pt;}
.y8b{bottom:201.626667pt;}
.y23{bottom:202.560000pt;}
.y4d{bottom:205.946667pt;}
.y121{bottom:208.346667pt;}
.y100{bottom:212.666667pt;}
.y118{bottom:216.666667pt;}
.y8a{bottom:216.986667pt;}
.y22{bottom:217.920000pt;}
.y120{bottom:220.506667pt;}
.y4c{bottom:221.306667pt;}
.yff{bottom:228.026667pt;}
.y117{bottom:232.026667pt;}
.y89{bottom:232.346667pt;}
.y21{bottom:233.320000pt;}
.y4b{bottom:236.666667pt;}
.yfe{bottom:243.386667pt;}
.y88{bottom:247.706667pt;}
.y20{bottom:248.680000pt;}
.y4a{bottom:252.026667pt;}
.yfd{bottom:258.586667pt;}
.y87{bottom:263.066667pt;}
.y1f{bottom:264.040000pt;}
.y49{bottom:267.386667pt;}
.yfc{bottom:273.946667pt;}
.y86{bottom:278.266667pt;}
.y1e{bottom:279.240000pt;}
.y48{bottom:282.746667pt;}
.ya3{bottom:286.266667pt;}
.yfb{bottom:289.306667pt;}
.y116{bottom:293.306667pt;}
.y85{bottom:293.626667pt;}
.y1d{bottom:294.600000pt;}
.y47{bottom:297.946667pt;}
.yfa{bottom:304.666667pt;}
.y84{bottom:308.986667pt;}
.y1c{bottom:309.960000pt;}
.y46{bottom:313.306667pt;}
.yf9{bottom:320.066667pt;}
.y83{bottom:324.386667pt;}
.y1b{bottom:325.320000pt;}
.y45{bottom:328.706667pt;}
.yf8{bottom:335.426667pt;}
.y82{bottom:339.746667pt;}
.y44{bottom:344.066667pt;}
.ya1{bottom:348.386667pt;}
.yf7{bottom:350.626667pt;}
.y81{bottom:355.106667pt;}
.y43{bottom:359.426667pt;}
.yc5{bottom:360.066667pt;}
.yf6{bottom:365.986667pt;}
.y80{bottom:370.306667pt;}
.y42{bottom:374.786667pt;}
.yf5{bottom:381.346667pt;}
.y7f{bottom:385.666667pt;}
.y41{bottom:389.986667pt;}
.yf4{bottom:396.706667pt;}
.y7e{bottom:401.026667pt;}
.y40{bottom:405.346667pt;}
.ya0{bottom:410.306667pt;}
.yf3{bottom:412.066667pt;}
.y7d{bottom:416.386667pt;}
.y3f{bottom:420.706667pt;}
.yc4{bottom:421.986667pt;}
.yf2{bottom:427.426667pt;}
.y7c{bottom:431.746667pt;}
.y3e{bottom:436.066667pt;}
.y9b{bottom:441.666667pt;}
.yf1{bottom:442.626667pt;}
.y7b{bottom:446.946667pt;}
.y3d{bottom:451.426667pt;}
.yf0{bottom:457.986667pt;}
.y7a{bottom:462.306667pt;}
.y3c{bottom:466.626667pt;}
.yef{bottom:473.346667pt;}
.y79{bottom:477.666667pt;}
.y3b{bottom:481.986667pt;}
.y98{bottom:488.386667pt;}
.yee{bottom:488.706667pt;}
.y78{bottom:493.026667pt;}
.y3a{bottom:497.346667pt;}
.yed{bottom:504.066667pt;}
.y77{bottom:508.386667pt;}
.y39{bottom:512.706667pt;}
.yc3{bottom:514.626667pt;}
.yec{bottom:519.106667pt;}
.y76{bottom:523.746667pt;}
.y38{bottom:527.746667pt;}
.yeb{bottom:534.306667pt;}
.y96{bottom:534.946667pt;}
.y75{bottom:538.946667pt;}
.y37{bottom:543.106667pt;}
.yea{bottom:549.693333pt;}
.y74{bottom:554.333333pt;}
.y1a{bottom:556.093333pt;}
.ybf{bottom:561.373333pt;}
.ye9{bottom:565.053333pt;}
.y95{bottom:569.373333pt;}
.y73{bottom:569.693333pt;}
.ye8{bottom:580.413333pt;}
.y115{bottom:584.733333pt;}
.y72{bottom:585.053333pt;}
.ye7{bottom:595.773333pt;}
.y114{bottom:600.093333pt;}
.y71{bottom:600.413333pt;}
.ye6{bottom:610.973333pt;}
.y113{bottom:615.453333pt;}
.y70{bottom:615.773333pt;}
.ye5{bottom:626.333333pt;}
.y6f{bottom:630.653333pt;}
.y94{bottom:630.973333pt;}
.ye4{bottom:641.693333pt;}
.y112{bottom:646.013333pt;}
.y6e{bottom:646.333333pt;}
.ye3{bottom:657.373333pt;}
.y111{bottom:661.373333pt;}
.y6d{bottom:661.693333pt;}
.ye2{bottom:672.733333pt;}
.y110{bottom:676.733333pt;}
.y6c{bottom:677.053333pt;}
.ye1{bottom:688.093333pt;}
.y10f{bottom:692.093333pt;}
.y6b{bottom:692.413333pt;}
.ye0{bottom:703.293333pt;}
.y10e{bottom:707.293333pt;}
.y6a{bottom:707.613333pt;}
.ydf{bottom:718.653333pt;}
.y93{bottom:722.653333pt;}
.y69{bottom:722.973333pt;}
.yb8{bottom:730.653333pt;}
.yde{bottom:733.693333pt;}
.y10d{bottom:738.013333pt;}
.y68{bottom:738.333333pt;}
.ydd{bottom:749.053333pt;}
.y10c{bottom:753.373333pt;}
.y67{bottom:753.693333pt;}
.ydc{bottom:764.413333pt;}
.y10b{bottom:768.733333pt;}
.y66{bottom:769.053333pt;}
.y2c{bottom:770.013333pt;}
.yd2{bottom:777.373333pt;}
.y10a{bottom:784.133333pt;}
.y65{bottom:784.453333pt;}
.y109{bottom:799.333333pt;}
.y64{bottom:799.653333pt;}
.yb7{bottom:809.093333pt;}
.y12b{bottom:813.093333pt;}
.y63{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.y12a{bottom:825.733333pt;}
.y62{bottom:830.373333pt;}
.yb6{bottom:840.453333pt;}
.y129{bottom:841.093333pt;}
.y61{bottom:845.733333pt;}
.y108{bottom:860.773333pt;}
.y60{bottom:861.093333pt;}
.yd0{bottom:871.013333pt;}
.y5f{bottom:876.453333pt;}
.y128{bottom:887.653333pt;}
.y5e{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.y5d{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.yb5{bottom:917.733333pt;}
.y5c{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.y5b{bottom:937.413333pt;}
.y92{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.yce{bottom:948.453333pt;}
.y5a{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.yb1{bottom:964.453333pt;}
.y59{bottom:968.453333pt;}
.yc{bottom:981.733333pt;}
.y58{bottom:983.653333pt;}
.y57{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.ycd{bottom:1010.400000pt;}
.y56{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y55{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y54{bottom:1063.200000pt;}
.hc{height:15.360000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h1d{height:30.560000pt;}
.h18{height:30.720000pt;}
.h13{height:30.752000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h12{height:36.909063pt;}
.h2{height:39.360000pt;}
.h24{height:43.388980pt;}
.h14{height:45.920000pt;}
.h17{height:46.080000pt;}
.h10{height:46.112000pt;}
.h16{height:46.531875pt;}
.h4{height:48.375000pt;}
.h23{height:49.048412pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h15{height:54.598989pt;}
.h25{height:56.430281pt;}
.h3{height:59.340000pt;}
.h19{height:61.280000pt;}
.h1c{height:61.312000pt;}
.h1a{height:61.472000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h1e{height:77.792000pt;}
.h20{height:92.000000pt;}
.h22{height:92.992000pt;}
.h1b{height:107.360000pt;}
.h21{height:153.466667pt;}
.h1f{height:168.640000pt;}
.h11{height:213.280000pt;}
.hf{height:337.306667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w9{width:51.552000pt;}
.wc{width:74.112000pt;}
.wd{width:88.480000pt;}
.wa{width:100.000000pt;}
.we{width:111.872000pt;}
.w6{width:156.666667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.wb{width:255.906667pt;}
.w10{width:300.226667pt;}
.w11{width:302.466667pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.wf{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x22{left:8.320000pt;}
.x20{left:9.320000pt;}
.x28{left:10.560000pt;}
.x18{left:11.680000pt;}
.x1b{left:13.120000pt;}
.x1f{left:14.074667pt;}
.x2d{left:15.994667pt;}
.x13{left:17.472000pt;}
.x26{left:18.880000pt;}
.x32{left:19.840000pt;}
.x24{left:21.320000pt;}
.x1e{left:22.272000pt;}
.x3a{left:23.200000pt;}
.x1d{left:24.640000pt;}
.x15{left:26.234667pt;}
.x2b{left:27.354667pt;}
.x38{left:28.320000pt;}
.x1a{left:29.760000pt;}
.x5{left:31.040000pt;}
.x2a{left:32.640000pt;}
.x2f{left:33.594667pt;}
.x23{left:34.560000pt;}
.x39{left:35.514667pt;}
.x35{left:36.506667pt;}
.x27{left:38.080000pt;}
.x36{left:39.194667pt;}
.x33{left:40.360000pt;}
.x25{left:44.840000pt;}
.x34{left:51.880000pt;}
.x29{left:55.240000pt;}
.x3d{left:56.200000pt;}
.x3f{left:57.160000pt;}
.x30{left:60.360000pt;}
.x3c{left:63.080000pt;}
.x2c{left:66.760000pt;}
.x12{left:70.880000pt;}
.x2e{left:77.640000pt;}
.x1{left:80.352000pt;}
.x31{left:86.920000pt;}
.x3b{left:93.800000pt;}
.x7{left:96.032000pt;}
.x40{left:103.400000pt;}
.x37{left:106.760000pt;}
.x9{left:108.032000pt;}
.x3e{left:110.440000pt;}
.x5a{left:116.352000pt;}
.x10{left:120.032000pt;}
.x14{left:123.232000pt;}
.x21{left:128.040000pt;}
.x50{left:144.026667pt;}
.x5b{left:199.226667pt;}
.x48{left:204.666667pt;}
.x4e{left:216.826667pt;}
.x16{left:223.866667pt;}
.x49{left:227.426667pt;}
.x4f{left:240.226667pt;}
.x5e{left:244.034667pt;}
.xd{left:252.226667pt;}
.x3{left:272.866667pt;}
.x56{left:278.626667pt;}
.xe{left:279.906667pt;}
.xa{left:293.346667pt;}
.x53{left:309.666667pt;}
.xb{left:331.746667pt;}
.x42{left:344.386667pt;}
.x54{left:353.506667pt;}
.x11{left:365.666667pt;}
.x43{left:370.466667pt;}
.x4b{left:376.093333pt;}
.x5f{left:395.773333pt;}
.x4a{left:411.293333pt;}
.x44{left:424.093333pt;}
.x57{left:437.373333pt;}
.x45{left:452.413333pt;}
.x58{left:471.613333pt;}
.x17{left:480.573333pt;}
.x6{left:512.733333pt;}
.x46{left:533.413333pt;}
.x47{left:552.773333pt;}
.x19{left:555.333333pt;}
.x55{left:569.733333pt;}
.x5d{left:575.493333pt;}
.x51{left:586.533333pt;}
.x41{left:610.533333pt;}
.x4c{left:615.653333pt;}
.x4d{left:635.653333pt;}
.x1c{left:644.613333pt;}
.x52{left:655.813333pt;}
.x59{left:661.573333pt;}
.x8{left:684.480000pt;}
.x5c{left:708.160000pt;}
}




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