
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8b9b2a05aaad7fcda2ce9bac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5ec95a813a654d4574d15439.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_d0b96da83aab76146a1dc61c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_db00aebafc54fb2bcf5ac92d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_b8443bfb7f8d8506e4666730.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_230e388212f0dd72ae51364c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_56236e177194ae1e054852d4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_f1b93c6ab08ff24d7df6666a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_bdad5cf6eac978339bf06723.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f63af9f95d39852d934b5079.woff')format("woff");}.ffc{font-family:ffc;line-height:0.776855;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_adc15217aeb57d2c0f10c185.woff')format("woff");}.ffd{font-family:ffd;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:20.880000px;}
.ls21{letter-spacing:-0.444600px;}
.ls24{letter-spacing:-0.409800px;}
.ls1d{letter-spacing:-0.262200px;}
.ls15{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls27{letter-spacing:-0.096600px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.012960px;}
.ls10{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.051840px;}
.lsa{letter-spacing:0.053400px;}
.ls11{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.064800px;}
.lsf{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.097800px;}
.ls14{letter-spacing:0.098400px;}
.ls1b{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.153600px;}
.ls16{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.180600px;}
.ls17{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:1.173600px;}
.ls1c{letter-spacing:1.893600px;}
.ls22{letter-spacing:2.607120px;}
.ls26{letter-spacing:47.726640px;}
.ls1a{letter-spacing:63.566640px;}
.ls25{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.380000px;}
.wsd{word-spacing:-13.324800px;}
.ws11{word-spacing:-13.324200px;}
.ws14{word-spacing:-13.278240px;}
.wsf{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wse{word-spacing:-12.964200px;}
.ws13{word-spacing:-12.816600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws15{word-spacing:-9.732960px;}
.wsa{word-spacing:-8.625600px;}
.wsc{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._16{margin-left:-6.432240px;}
._17{margin-left:-4.957800px;}
._14{margin-left:-3.667320px;}
._b{margin-left:-2.214120px;}
._3{margin-left:-1.117440px;}
._1{width:1.232412px;}
._5{width:2.592480px;}
._4{width:3.684960px;}
._a{width:4.834560px;}
._9{width:5.987040px;}
._f{width:7.220296px;}
._d{width:8.537984px;}
._6{width:9.869160px;}
._7{width:11.214122px;}
._8{width:14.488800px;}
._c{width:15.839040px;}
._e{width:17.407560px;}
._10{width:18.428124px;}
._2{width:19.627836px;}
._0{width:20.744400px;}
._12{width:22.110589px;}
._11{width:23.144760px;}
._1c{width:24.348600px;}
._18{width:28.917720px;}
._19{width:40.220280px;}
._13{width:44.308440px;}
._15{width:88.677000px;}
._1b{width:105.089760px;}
._1a{width:138.456360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y59{bottom:7.830000px;}
.y57{bottom:7.920000px;}
.y5b{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd6{bottom:117.750000px;}
.y82{bottom:117.930000px;}
.ya8{bottom:121.710000px;}
.y129{bottom:124.320000px;}
.yd5{bottom:135.300000px;}
.y81{bottom:135.570000px;}
.ya7{bottom:139.350000px;}
.y28{bottom:140.070000px;}
.y128{bottom:141.870000px;}
.y5a{bottom:146.640000px;}
.yd4{bottom:152.850000px;}
.y80{bottom:153.120000px;}
.ya6{bottom:156.900000px;}
.y27{bottom:157.620000px;}
.y100{bottom:164.190000px;}
.y127{bottom:168.510000px;}
.yd3{bottom:170.490000px;}
.y7f{bottom:170.760000px;}
.ya5{bottom:174.450000px;}
.y126{bottom:186.060000px;}
.y7e{bottom:188.310000px;}
.yff{bottom:190.830000px;}
.y58{bottom:191.640000px;}
.ya4{bottom:192.090000px;}
.y26{bottom:193.260000px;}
.yd2{bottom:197.040000px;}
.y7d{bottom:205.860000px;}
.yfe{bottom:208.380000px;}
.ya3{bottom:209.640000px;}
.y25{bottom:210.810000px;}
.y125{bottom:212.610000px;}
.y56{bottom:218.910000px;}
.y7c{bottom:223.500000px;}
.ya2{bottom:227.280000px;}
.y24{bottom:228.360000px;}
.y124{bottom:230.250000px;}
.yd1{bottom:232.500000px;}
.yfd{bottom:234.930000px;}
.y7b{bottom:241.050000px;}
.ya1{bottom:244.830000px;}
.y23{bottom:246.000000px;}
.yd0{bottom:249.870000px;}
.yfc{bottom:252.570000px;}
.y123{bottom:256.800000px;}
.ycf{bottom:267.510000px;}
.y55{bottom:267.600000px;}
.y7a{bottom:267.690000px;}
.ya0{bottom:271.380000px;}
.y22{bottom:272.910000px;}
.y122{bottom:274.440000px;}
.yfb{bottom:279.120000px;}
.yce{bottom:285.060000px;}
.yfa{bottom:296.760000px;}
.y121{bottom:300.990000px;}
.ycd{bottom:302.610000px;}
.y54{bottom:303.240000px;}
.y9f{bottom:307.020000px;}
.y120{bottom:318.540000px;}
.ycc{bottom:320.250000px;}
.y53{bottom:320.790000px;}
.y21{bottom:321.150000px;}
.yf9{bottom:323.310000px;}
.y9e{bottom:328.350000px;}
.ycb{bottom:337.800000px;}
.y52{bottom:338.430000px;}
.y20{bottom:339.060000px;}
.yf8{bottom:340.860000px;}
.y9d{bottom:342.120000px;}
.y11f{bottom:345.180000px;}
.yca{bottom:355.440000px;}
.y51{bottom:355.980000px;}
.y9c{bottom:359.760000px;}
.y11e{bottom:362.730000px;}
.yf7{bottom:367.500000px;}
.yc9{bottom:372.990000px;}
.y50{bottom:373.530000px;}
.y1f{bottom:376.050000px;}
.y9b{bottom:377.310000px;}
.y79{bottom:377.400000px;}
.y11d{bottom:389.370000px;}
.yc8{bottom:390.540000px;}
.y4f{bottom:391.170000px;}
.y1e{bottom:393.690000px;}
.yf6{bottom:394.410000px;}
.y9a{bottom:394.950000px;}
.y11c{bottom:406.920000px;}
.yc7{bottom:408.180000px;}
.y4e{bottom:408.720000px;}
.y1d{bottom:411.240000px;}
.y99{bottom:412.500000px;}
.y11b{bottom:424.470000px;}
.y4d{bottom:426.360000px;}
.y1c{bottom:428.880000px;}
.y98{bottom:430.050000px;}
.yc6{bottom:434.730000px;}
.yf5{bottom:442.650000px;}
.y4c{bottom:443.910000px;}
.y1b{bottom:446.430000px;}
.y11a{bottom:451.110000px;}
.y97{bottom:456.690000px;}
.y4b{bottom:461.460000px;}
.y78{bottom:461.550000px;}
.y1a{bottom:463.980000px;}
.yf4{bottom:469.560000px;}
.yc5{bottom:470.400000px;}
.y119{bottom:477.690000px;}
.y4a{bottom:479.130000px;}
.y19{bottom:481.650000px;}
.yc4{bottom:487.950000px;}
.y96{bottom:489.300000px;}
.y118{bottom:495.330000px;}
.y49{bottom:496.680000px;}
.y18{bottom:499.200000px;}
.y13d{bottom:504.690000px;}
.yc3{bottom:505.500000px;}
.y77{bottom:505.680000px;}
.yf3{bottom:506.580000px;}
.y48{bottom:514.230000px;}
.y17{bottom:516.840000px;}
.y117{bottom:521.880000px;}
.y95{bottom:522.240000px;}
.y13c{bottom:522.330000px;}
.yc2{bottom:523.140000px;}
.y47{bottom:531.870000px;}
.yf2{bottom:533.490000px;}
.y16{bottom:534.390000px;}
.y116{bottom:539.430000px;}
.y13b{bottom:539.880000px;}
.yc1{bottom:540.690000px;}
.y76{bottom:544.200000px;}
.y15{bottom:551.940000px;}
.y46{bottom:553.200000px;}
.y75{bottom:561.840000px;}
.yc0{bottom:562.110000px;}
.y115{bottom:566.070000px;}
.y13a{bottom:566.430000px;}
.y45{bottom:567.060000px;}
.y94{bottom:567.150000px;}
.y14{bottom:569.580000px;}
.yf1{bottom:570.840000px;}
.ybf{bottom:575.880000px;}
.y74{bottom:579.480000px;}
.y114{bottom:583.620000px;}
.y139{bottom:584.070000px;}
.y44{bottom:584.610000px;}
.y13{bottom:587.130000px;}
.ybe{bottom:593.430000px;}
.y93{bottom:594.510000px;}
.y73{bottom:597.030000px;}
.y43{bottom:602.160000px;}
.y12{bottom:604.770000px;}
.y113{bottom:610.260000px;}
.y138{bottom:610.620000px;}
.ybd{bottom:611.070000px;}
.y72{bottom:614.670000px;}
.yf0{bottom:619.170000px;}
.y42{bottom:619.800000px;}
.y92{bottom:621.870000px;}
.y11{bottom:622.320000px;}
.y112{bottom:627.810000px;}
.y137{bottom:628.260000px;}
.ybc{bottom:628.620000px;}
.y71{bottom:632.220000px;}
.yef{bottom:636.720000px;}
.y41{bottom:637.350000px;}
.y10{bottom:639.870000px;}
.y70{bottom:653.550000px;}
.yee{bottom:654.270000px;}
.y111{bottom:654.360000px;}
.y136{bottom:654.810000px;}
.y40{bottom:654.990000px;}
.ybb{bottom:655.260000px;}
.y91{bottom:666.780000px;}
.yf{bottom:666.870000px;}
.y6f{bottom:667.410000px;}
.yed{bottom:671.910000px;}
.y110{bottom:672.000000px;}
.y135{bottom:672.360000px;}
.y3f{bottom:681.900000px;}
.y6e{bottom:684.960000px;}
.yec{bottom:689.460000px;}
.yba{bottom:690.810000px;}
.y10f{bottom:698.550000px;}
.y134{bottom:699.000000px;}
.y6d{bottom:702.600000px;}
.yeb{bottom:707.100000px;}
.yb9{bottom:708.360000px;}
.y90{bottom:711.690000px;}
.ye{bottom:713.580000px;}
.y10e{bottom:716.190000px;}
.y133{bottom:716.550000px;}
.y6c{bottom:720.150000px;}
.yb8{bottom:726.000000px;}
.y3e{bottom:730.140000px;}
.y6b{bottom:737.700000px;}
.yea{bottom:742.650000px;}
.y10d{bottom:742.740000px;}
.y132{bottom:743.190000px;}
.y3d{bottom:747.690000px;}
.yd{bottom:749.130000px;}
.y6a{bottom:756.150000px;}
.y8f{bottom:756.600000px;}
.ye9{bottom:760.200000px;}
.y10c{bottom:760.290000px;}
.y131{bottom:760.740000px;}
.yb7{bottom:761.550000px;}
.y3c{bottom:765.330000px;}
.y69{bottom:773.700000px;}
.ye8{bottom:777.840000px;}
.yb6{bottom:779.190000px;}
.y3b{bottom:782.880000px;}
.yc{bottom:784.950000px;}
.y10b{bottom:786.930000px;}
.y130{bottom:787.290000px;}
.y68{bottom:791.340000px;}
.ye7{bottom:795.390000px;}
.yb5{bottom:796.740000px;}
.y3a{bottom:800.520000px;}
.y10a{bottom:804.480000px;}
.y12f{bottom:804.930000px;}
.y8e{bottom:805.290000px;}
.y67{bottom:808.890000px;}
.ye6{bottom:813.030000px;}
.yb4{bottom:814.290000px;}
.y39{bottom:818.070000px;}
.y109{bottom:822.030000px;}
.yb{bottom:824.730000px;}
.y66{bottom:826.530000px;}
.y12e{bottom:831.480000px;}
.yb3{bottom:831.930000px;}
.y38{bottom:835.620000px;}
.ya{bottom:838.950000px;}
.ye5{bottom:839.940000px;}
.y8d{bottom:840.930000px;}
.y65{bottom:844.080000px;}
.y108{bottom:848.670000px;}
.y12d{bottom:849.030000px;}
.yb2{bottom:849.480000px;}
.y37{bottom:853.260000px;}
.y8c{bottom:858.480000px;}
.y9{bottom:860.730000px;}
.y64{bottom:861.630000px;}
.y107{bottom:866.220000px;}
.yb1{bottom:867.030000px;}
.y8{bottom:874.950000px;}
.y12c{bottom:875.670000px;}
.y8b{bottom:876.030000px;}
.y63{bottom:879.180000px;}
.y36{bottom:880.170000px;}
.yb0{bottom:884.670000px;}
.ye4{bottom:888.180000px;}
.y106{bottom:892.860000px;}
.y12b{bottom:893.220000px;}
.y8a{bottom:893.670000px;}
.y7{bottom:896.730000px;}
.yaf{bottom:902.220000px;}
.ye3{bottom:905.730000px;}
.y105{bottom:910.410000px;}
.y89{bottom:911.220000px;}
.y6{bottom:914.730000px;}
.y62{bottom:918.690000px;}
.yae{bottom:919.860000px;}
.ye2{bottom:923.370000px;}
.y35{bottom:928.410000px;}
.y88{bottom:928.860000px;}
.y104{bottom:936.960000px;}
.yad{bottom:937.410000px;}
.ye1{bottom:940.920000px;}
.y34{bottom:945.960000px;}
.y87{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y61{bottom:954.600000px;}
.yac{bottom:954.960000px;}
.y33{bottom:963.600000px;}
.y86{bottom:963.960000px;}
.yab{bottom:972.600000px;}
.ye0{bottom:979.440000px;}
.y32{bottom:981.150000px;}
.y85{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yaa{bottom:990.150000px;}
.ydf{bottom:997.080000px;}
.y84{bottom:999.150000px;}
.y60{bottom:1000.230000px;}
.ya9{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.yde{bottom:1014.750000px;}
.y31{bottom:1016.820000px;}
.y103{bottom:1025.370000px;}
.y5f{bottom:1027.620000px;}
.ydd{bottom:1032.300000px;}
.y30{bottom:1034.370000px;}
.ydc{bottom:1050.750000px;}
.y2f{bottom:1051.920000px;}
.y5e{bottom:1054.890000px;}
.y12a{bottom:1060.920000px;}
.ydb{bottom:1068.300000px;}
.y83{bottom:1069.920000px;}
.y102{bottom:1078.560000px;}
.y5d{bottom:1082.250000px;}
.yda{bottom:1085.850000px;}
.y2e{bottom:1087.560000px;}
.y101{bottom:1096.110000px;}
.yd9{bottom:1104.300000px;}
.y2d{bottom:1105.110000px;}
.y5c{bottom:1109.610000px;}
.yd8{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.yd7{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hc{height:26.580000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h11{height:59.004492px;}
.h12{height:59.038594px;}
.hf{height:59.973223px;}
.he{height:61.793886px;}
.hd{height:62.585859px;}
.h10{height:68.581055px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:96.420000px;}
.w3{width:161.490000px;}
.w7{width:206.370000px;}
.w9{width:219.060000px;}
.w8{width:231.690000px;}
.w5{width:289.080000px;}
.w4{width:303.510000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.x7{left:95.039987px;}
.xc{left:111.239987px;}
.x8{left:122.039987px;}
.x9{left:165.900000px;}
.x2{left:192.719987px;}
.x5{left:231.060000px;}
.xa{left:372.990000px;}
.x6{left:535.380000px;}
.xb{left:605.400000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:18.560000pt;}
.ls21{letter-spacing:-0.395200pt;}
.ls24{letter-spacing:-0.364267pt;}
.ls1d{letter-spacing:-0.233067pt;}
.ls15{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls27{letter-spacing:-0.085867pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.011520pt;}
.ls10{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.046080pt;}
.lsa{letter-spacing:0.047467pt;}
.ls11{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.057600pt;}
.lsf{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.086933pt;}
.ls14{letter-spacing:0.087467pt;}
.ls1b{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.136533pt;}
.ls16{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.160533pt;}
.ls17{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:1.043200pt;}
.ls1c{letter-spacing:1.683200pt;}
.ls22{letter-spacing:2.317440pt;}
.ls26{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:56.503680pt;}
.ls25{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.893333pt;}
.wsd{word-spacing:-11.844267pt;}
.ws11{word-spacing:-11.843733pt;}
.ws14{word-spacing:-11.802880pt;}
.wsf{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.523733pt;}
.ws13{word-spacing:-11.392533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws15{word-spacing:-8.651520pt;}
.wsa{word-spacing:-7.667200pt;}
.wsc{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._16{margin-left:-5.717546pt;}
._17{margin-left:-4.406933pt;}
._14{margin-left:-3.259840pt;}
._b{margin-left:-1.968107pt;}
._3{margin-left:-0.993280pt;}
._1{width:1.095477pt;}
._5{width:2.304427pt;}
._4{width:3.275520pt;}
._a{width:4.297387pt;}
._9{width:5.321813pt;}
._f{width:6.418041pt;}
._d{width:7.589319pt;}
._6{width:8.772586pt;}
._7{width:9.968108pt;}
._8{width:12.878933pt;}
._c{width:14.079147pt;}
._e{width:15.473387pt;}
._10{width:16.380555pt;}
._2{width:17.446965pt;}
._0{width:18.439467pt;}
._12{width:19.653857pt;}
._11{width:20.573120pt;}
._1c{width:21.643200pt;}
._18{width:25.704640pt;}
._19{width:35.751360pt;}
._13{width:39.385280pt;}
._15{width:78.824000pt;}
._1b{width:93.413120pt;}
._1a{width:123.072320pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:6.960000pt;}
.y57{bottom:7.040000pt;}
.y5b{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd6{bottom:104.666667pt;}
.y82{bottom:104.826667pt;}
.ya8{bottom:108.186667pt;}
.y129{bottom:110.506667pt;}
.yd5{bottom:120.266667pt;}
.y81{bottom:120.506667pt;}
.ya7{bottom:123.866667pt;}
.y28{bottom:124.506667pt;}
.y128{bottom:126.106667pt;}
.y5a{bottom:130.346667pt;}
.yd4{bottom:135.866667pt;}
.y80{bottom:136.106667pt;}
.ya6{bottom:139.466667pt;}
.y27{bottom:140.106667pt;}
.y100{bottom:145.946667pt;}
.y127{bottom:149.786667pt;}
.yd3{bottom:151.546667pt;}
.y7f{bottom:151.786667pt;}
.ya5{bottom:155.066667pt;}
.y126{bottom:165.386667pt;}
.y7e{bottom:167.386667pt;}
.yff{bottom:169.626667pt;}
.y58{bottom:170.346667pt;}
.ya4{bottom:170.746667pt;}
.y26{bottom:171.786667pt;}
.yd2{bottom:175.146667pt;}
.y7d{bottom:182.986667pt;}
.yfe{bottom:185.226667pt;}
.ya3{bottom:186.346667pt;}
.y25{bottom:187.386667pt;}
.y125{bottom:188.986667pt;}
.y56{bottom:194.586667pt;}
.y7c{bottom:198.666667pt;}
.ya2{bottom:202.026667pt;}
.y24{bottom:202.986667pt;}
.y124{bottom:204.666667pt;}
.yd1{bottom:206.666667pt;}
.yfd{bottom:208.826667pt;}
.y7b{bottom:214.266667pt;}
.ya1{bottom:217.626667pt;}
.y23{bottom:218.666667pt;}
.yd0{bottom:222.106667pt;}
.yfc{bottom:224.506667pt;}
.y123{bottom:228.266667pt;}
.ycf{bottom:237.786667pt;}
.y55{bottom:237.866667pt;}
.y7a{bottom:237.946667pt;}
.ya0{bottom:241.226667pt;}
.y22{bottom:242.586667pt;}
.y122{bottom:243.946667pt;}
.yfb{bottom:248.106667pt;}
.yce{bottom:253.386667pt;}
.yfa{bottom:263.786667pt;}
.y121{bottom:267.546667pt;}
.ycd{bottom:268.986667pt;}
.y54{bottom:269.546667pt;}
.y9f{bottom:272.906667pt;}
.y120{bottom:283.146667pt;}
.ycc{bottom:284.666667pt;}
.y53{bottom:285.146667pt;}
.y21{bottom:285.466667pt;}
.yf9{bottom:287.386667pt;}
.y9e{bottom:291.866667pt;}
.ycb{bottom:300.266667pt;}
.y52{bottom:300.826667pt;}
.y20{bottom:301.386667pt;}
.yf8{bottom:302.986667pt;}
.y9d{bottom:304.106667pt;}
.y11f{bottom:306.826667pt;}
.yca{bottom:315.946667pt;}
.y51{bottom:316.426667pt;}
.y9c{bottom:319.786667pt;}
.y11e{bottom:322.426667pt;}
.yf7{bottom:326.666667pt;}
.yc9{bottom:331.546667pt;}
.y50{bottom:332.026667pt;}
.y1f{bottom:334.266667pt;}
.y9b{bottom:335.386667pt;}
.y79{bottom:335.466667pt;}
.y11d{bottom:346.106667pt;}
.yc8{bottom:347.146667pt;}
.y4f{bottom:347.706667pt;}
.y1e{bottom:349.946667pt;}
.yf6{bottom:350.586667pt;}
.y9a{bottom:351.066667pt;}
.y11c{bottom:361.706667pt;}
.yc7{bottom:362.826667pt;}
.y4e{bottom:363.306667pt;}
.y1d{bottom:365.546667pt;}
.y99{bottom:366.666667pt;}
.y11b{bottom:377.306667pt;}
.y4d{bottom:378.986667pt;}
.y1c{bottom:381.226667pt;}
.y98{bottom:382.266667pt;}
.yc6{bottom:386.426667pt;}
.yf5{bottom:393.466667pt;}
.y4c{bottom:394.586667pt;}
.y1b{bottom:396.826667pt;}
.y11a{bottom:400.986667pt;}
.y97{bottom:405.946667pt;}
.y4b{bottom:410.186667pt;}
.y78{bottom:410.266667pt;}
.y1a{bottom:412.426667pt;}
.yf4{bottom:417.386667pt;}
.yc5{bottom:418.133333pt;}
.y119{bottom:424.613333pt;}
.y4a{bottom:425.893333pt;}
.y19{bottom:428.133333pt;}
.yc4{bottom:433.733333pt;}
.y96{bottom:434.933333pt;}
.y118{bottom:440.293333pt;}
.y49{bottom:441.493333pt;}
.y18{bottom:443.733333pt;}
.y13d{bottom:448.613333pt;}
.yc3{bottom:449.333333pt;}
.y77{bottom:449.493333pt;}
.yf3{bottom:450.293333pt;}
.y48{bottom:457.093333pt;}
.y17{bottom:459.413333pt;}
.y117{bottom:463.893333pt;}
.y95{bottom:464.213333pt;}
.y13c{bottom:464.293333pt;}
.yc2{bottom:465.013333pt;}
.y47{bottom:472.773333pt;}
.yf2{bottom:474.213333pt;}
.y16{bottom:475.013333pt;}
.y116{bottom:479.493333pt;}
.y13b{bottom:479.893333pt;}
.yc1{bottom:480.613333pt;}
.y76{bottom:483.733333pt;}
.y15{bottom:490.613333pt;}
.y46{bottom:491.733333pt;}
.y75{bottom:499.413333pt;}
.yc0{bottom:499.653333pt;}
.y115{bottom:503.173333pt;}
.y13a{bottom:503.493333pt;}
.y45{bottom:504.053333pt;}
.y94{bottom:504.133333pt;}
.y14{bottom:506.293333pt;}
.yf1{bottom:507.413333pt;}
.ybf{bottom:511.893333pt;}
.y74{bottom:515.093333pt;}
.y114{bottom:518.773333pt;}
.y139{bottom:519.173333pt;}
.y44{bottom:519.653333pt;}
.y13{bottom:521.893333pt;}
.ybe{bottom:527.493333pt;}
.y93{bottom:528.453333pt;}
.y73{bottom:530.693333pt;}
.y43{bottom:535.253333pt;}
.y12{bottom:537.573333pt;}
.y113{bottom:542.453333pt;}
.y138{bottom:542.773333pt;}
.ybd{bottom:543.173333pt;}
.y72{bottom:546.373333pt;}
.yf0{bottom:550.373333pt;}
.y42{bottom:550.933333pt;}
.y92{bottom:552.773333pt;}
.y11{bottom:553.173333pt;}
.y112{bottom:558.053333pt;}
.y137{bottom:558.453333pt;}
.ybc{bottom:558.773333pt;}
.y71{bottom:561.973333pt;}
.yef{bottom:565.973333pt;}
.y41{bottom:566.533333pt;}
.y10{bottom:568.773333pt;}
.y70{bottom:580.933333pt;}
.yee{bottom:581.573333pt;}
.y111{bottom:581.653333pt;}
.y136{bottom:582.053333pt;}
.y40{bottom:582.213333pt;}
.ybb{bottom:582.453333pt;}
.y91{bottom:592.693333pt;}
.yf{bottom:592.773333pt;}
.y6f{bottom:593.253333pt;}
.yed{bottom:597.253333pt;}
.y110{bottom:597.333333pt;}
.y135{bottom:597.653333pt;}
.y3f{bottom:606.133333pt;}
.y6e{bottom:608.853333pt;}
.yec{bottom:612.853333pt;}
.yba{bottom:614.053333pt;}
.y10f{bottom:620.933333pt;}
.y134{bottom:621.333333pt;}
.y6d{bottom:624.533333pt;}
.yeb{bottom:628.533333pt;}
.yb9{bottom:629.653333pt;}
.y90{bottom:632.613333pt;}
.ye{bottom:634.293333pt;}
.y10e{bottom:636.613333pt;}
.y133{bottom:636.933333pt;}
.y6c{bottom:640.133333pt;}
.yb8{bottom:645.333333pt;}
.y3e{bottom:649.013333pt;}
.y6b{bottom:655.733333pt;}
.yea{bottom:660.133333pt;}
.y10d{bottom:660.213333pt;}
.y132{bottom:660.613333pt;}
.y3d{bottom:664.613333pt;}
.yd{bottom:665.893333pt;}
.y6a{bottom:672.133333pt;}
.y8f{bottom:672.533333pt;}
.ye9{bottom:675.733333pt;}
.y10c{bottom:675.813333pt;}
.y131{bottom:676.213333pt;}
.yb7{bottom:676.933333pt;}
.y3c{bottom:680.293333pt;}
.y69{bottom:687.733333pt;}
.ye8{bottom:691.413333pt;}
.yb6{bottom:692.613333pt;}
.y3b{bottom:695.893333pt;}
.yc{bottom:697.733333pt;}
.y10b{bottom:699.493333pt;}
.y130{bottom:699.813333pt;}
.y68{bottom:703.413333pt;}
.ye7{bottom:707.013333pt;}
.yb5{bottom:708.213333pt;}
.y3a{bottom:711.573333pt;}
.y10a{bottom:715.093333pt;}
.y12f{bottom:715.493333pt;}
.y8e{bottom:715.813333pt;}
.y67{bottom:719.013333pt;}
.ye6{bottom:722.693333pt;}
.yb4{bottom:723.813333pt;}
.y39{bottom:727.173333pt;}
.y109{bottom:730.693333pt;}
.yb{bottom:733.093333pt;}
.y66{bottom:734.693333pt;}
.y12e{bottom:739.093333pt;}
.yb3{bottom:739.493333pt;}
.y38{bottom:742.773333pt;}
.ya{bottom:745.733333pt;}
.ye5{bottom:746.613333pt;}
.y8d{bottom:747.493333pt;}
.y65{bottom:750.293333pt;}
.y108{bottom:754.373333pt;}
.y12d{bottom:754.693333pt;}
.yb2{bottom:755.093333pt;}
.y37{bottom:758.453333pt;}
.y8c{bottom:763.093333pt;}
.y9{bottom:765.093333pt;}
.y64{bottom:765.893333pt;}
.y107{bottom:769.973333pt;}
.yb1{bottom:770.693333pt;}
.y8{bottom:777.733333pt;}
.y12c{bottom:778.373333pt;}
.y8b{bottom:778.693333pt;}
.y63{bottom:781.493333pt;}
.y36{bottom:782.373333pt;}
.yb0{bottom:786.373333pt;}
.ye4{bottom:789.493333pt;}
.y106{bottom:793.653333pt;}
.y12b{bottom:793.973333pt;}
.y8a{bottom:794.373333pt;}
.y7{bottom:797.093333pt;}
.yaf{bottom:801.973333pt;}
.ye3{bottom:805.093333pt;}
.y105{bottom:809.253333pt;}
.y89{bottom:809.973333pt;}
.y6{bottom:813.093333pt;}
.y62{bottom:816.613333pt;}
.yae{bottom:817.653333pt;}
.ye2{bottom:820.773333pt;}
.y35{bottom:825.253333pt;}
.y88{bottom:825.653333pt;}
.y104{bottom:832.853333pt;}
.yad{bottom:833.253333pt;}
.ye1{bottom:836.373333pt;}
.y34{bottom:840.853333pt;}
.y87{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y61{bottom:848.533333pt;}
.yac{bottom:848.853333pt;}
.y33{bottom:856.533333pt;}
.y86{bottom:856.853333pt;}
.yab{bottom:864.533333pt;}
.ye0{bottom:870.613333pt;}
.y32{bottom:872.133333pt;}
.y85{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yaa{bottom:880.133333pt;}
.ydf{bottom:886.293333pt;}
.y84{bottom:888.133333pt;}
.y60{bottom:889.093333pt;}
.ya9{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.yde{bottom:902.000000pt;}
.y31{bottom:903.840000pt;}
.y103{bottom:911.440000pt;}
.y5f{bottom:913.440000pt;}
.ydd{bottom:917.600000pt;}
.y30{bottom:919.440000pt;}
.ydc{bottom:934.000000pt;}
.y2f{bottom:935.040000pt;}
.y5e{bottom:937.680000pt;}
.y12a{bottom:943.040000pt;}
.ydb{bottom:949.600000pt;}
.y83{bottom:951.040000pt;}
.y102{bottom:958.720000pt;}
.y5d{bottom:962.000000pt;}
.yda{bottom:965.200000pt;}
.y2e{bottom:966.720000pt;}
.y101{bottom:974.320000pt;}
.yd9{bottom:981.600000pt;}
.y2d{bottom:982.320000pt;}
.y5c{bottom:986.320000pt;}
.yd8{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.yd7{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hc{height:23.626667pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h11{height:52.448437pt;}
.h12{height:52.478750pt;}
.hf{height:53.309531pt;}
.he{height:54.927899pt;}
.hd{height:55.631875pt;}
.h10{height:60.960938pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:85.706667pt;}
.w3{width:143.546667pt;}
.w7{width:183.440000pt;}
.w9{width:194.720000pt;}
.w8{width:205.946667pt;}
.w5{width:256.960000pt;}
.w4{width:269.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.x7{left:84.479988pt;}
.xc{left:98.879988pt;}
.x8{left:108.479988pt;}
.x9{left:147.466667pt;}
.x2{left:171.306655pt;}
.x5{left:205.386667pt;}
.xa{left:331.546667pt;}
.x6{left:475.893333pt;}
.xb{left:538.133333pt;}
.x3{left:711.413322pt;}
}




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