
    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_e624ffee899c146fcd6757a6.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_0f5197c62d63ccd820bec4da.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c7bd975fb896a532a78f3ff8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_62d03babcbf78102768b82c8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d650745443f514f6759c242d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d7cf89e94c8cac4cc0bf16a.woff2')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_cdd060d55b83c7d7d38035d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_74ba705ab9034efb8f9ad048.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fd2b5a99360383b9ea55d329.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-1.494000px;}
.lsd{letter-spacing:-1.332000px;}
.ls5{letter-spacing:-1.176000px;}
.ls1e{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.924000px;}
.ls20{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.666000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls2f{letter-spacing:-0.566400px;}
.ls6{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.413400px;}
.ls21{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.357000px;}
.ls15{letter-spacing:-0.322800px;}
.ls30{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls2e{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.666000px;}
.ls2a{letter-spacing:0.828000px;}
.ls2c{letter-spacing:0.840000px;}
.ls27{letter-spacing:0.900000px;}
.ls28{letter-spacing:0.924000px;}
.ls9{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.620000px;}
.ls29{letter-spacing:2.340000px;}
.ls26{letter-spacing:3.060000px;}
.ls2{letter-spacing:6.660000px;}
.ls13{letter-spacing:8.100000px;}
.ls1{letter-spacing:8.586720px;}
.ls19{letter-spacing:10.170720px;}
.ls32{letter-spacing:11.466720px;}
.ls25{letter-spacing:11.700000px;}
.ls11{letter-spacing:13.626720px;}
.ls2d{letter-spacing:14.346720px;}
.ls2b{letter-spacing:15.066720px;}
.ls23{letter-spacing:15.300000px;}
.ls33{letter-spacing:16.020000px;}
.ls17{letter-spacing:17.946720px;}
.ls24{letter-spacing:19.386720px;}
.ls1b{letter-spacing:20.106720px;}
.ls1c{letter-spacing:23.940000px;}
.ls31{letter-spacing:41.850720px;}
.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;}
}
.ws15{word-spacing:-59.760000px;}
.ws2{word-spacing:-24.300000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.020000px;}
.ws1b{word-spacing:-15.864000px;}
.ws1d{word-spacing:-15.768000px;}
.wsb{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.453600px;}
.ws1{word-spacing:-15.384000px;}
.ws7{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.146400px;}
.ws1e{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.046800px;}
.ws21{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws20{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.647440px;}
.ws10{word-spacing:-14.613240px;}
.ws1a{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.526600px;}
.ws1f{word-spacing:-14.373600px;}
.ws14{word-spacing:-14.328000px;}
.ws16{word-spacing:-14.274000px;}
.ws19{word-spacing:-14.166000px;}
.wsa{word-spacing:-14.016000px;}
.ws17{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.ws18{word-spacing:-13.446000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsf{word-spacing:0.000000px;}
._1{margin-left:-2540.748240px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1442.119920px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-575.089920px;}
._22{margin-left:-14.940000px;}
._23{margin-left:-12.481680px;}
._7{margin-left:-8.405520px;}
._8{margin-left:-5.472480px;}
._9{margin-left:-3.908160px;}
._e{margin-left:-2.745600px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.331600px;}
._14{width:4.022400px;}
._15{width:5.888160px;}
._13{width:7.217280px;}
._16{width:8.687760px;}
._17{width:10.440960px;}
._18{width:11.547360px;}
._19{width:13.505760px;}
._1a{width:16.045920px;}
._10{width:17.449920px;}
._12{width:18.847920px;}
._1f{width:20.559120px;}
._1e{width:21.642960px;}
._1d{width:22.828320px;}
._1b{width:24.069360px;}
._20{width:25.086240px;}
._25{width:26.261280px;}
._1c{width:27.764400px;}
._11{width:29.671680px;}
._24{width:32.310720px;}
._26{width:35.368320px;}
._b{width:37.996800px;}
._a{width:39.450000px;}
._c{width:41.713200px;}
._d{width:44.010000px;}
._29{width:54.740160px;}
._28{width:62.064720px;}
._27{width:63.226080px;}
._2a{width:118.956000px;}
._21{width:205.380000px;}
._2b{width:617.880000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:3.240000px;}
.yc3{bottom:3.420000px;}
.ybc{bottom:3.600000px;}
.yc2{bottom:3.780000px;}
.yb7{bottom:4.500000px;}
.yb5{bottom:4.860000px;}
.yc9{bottom:5.040000px;}
.yc7{bottom:5.400000px;}
.ye0{bottom:6.120000px;}
.y10b{bottom:8.100000px;}
.yb0{bottom:19.440000px;}
.ybd{bottom:20.520000px;}
.yd8{bottom:20.700000px;}
.ybb{bottom:20.880000px;}
.yc1{bottom:21.060000px;}
.yb6{bottom:21.825000px;}
.yb4{bottom:22.185000px;}
.yc8{bottom:22.320000px;}
.yc6{bottom:22.680000px;}
.ydf{bottom:25.965000px;}
.y10a{bottom:28.116000px;}
.ydd{bottom:28.305000px;}
.ydb{bottom:28.665000px;}
.y107{bottom:32.076000px;}
.ybe{bottom:37.800000px;}
.yce{bottom:37.830000px;}
.yd7{bottom:37.980000px;}
.yba{bottom:38.160000px;}
.ycd{bottom:38.190000px;}
.yd5{bottom:38.340000px;}
.yb3{bottom:39.285000px;}
.yd1{bottom:39.420000px;}
.ycb{bottom:39.600000px;}
.yd0{bottom:39.780000px;}
.yc5{bottom:39.960000px;}
.ydc{bottom:45.585000px;}
.yde{bottom:45.765000px;}
.yda{bottom:45.945000px;}
.y109{bottom:47.910000px;}
.yd6{bottom:55.260000px;}
.yb9{bottom:55.440000px;}
.yd4{bottom:55.620000px;}
.yb2{bottom:56.565000px;}
.y6{bottom:61.020000px;}
.y108{bottom:67.710000px;}
.y34{bottom:89.460000px;}
.y6c{bottom:91.980000px;}
.yee{bottom:95.400000px;}
.y7f{bottom:97.200000px;}
.ya8{bottom:102.060000px;}
.yfa{bottom:102.780000px;}
.y106{bottom:109.260000px;}
.y33{bottom:109.440000px;}
.y6b{bottom:111.780000px;}
.yed{bottom:115.380000px;}
.y7e{bottom:117.000000px;}
.ya7{bottom:121.860000px;}
.yf9{bottom:122.580000px;}
.y32{bottom:129.276000px;}
.y6a{bottom:131.616000px;}
.yec{bottom:135.216000px;}
.y7d{bottom:136.836000px;}
.ya6{bottom:141.876000px;}
.yf8{bottom:142.416000px;}
.y31{bottom:149.076000px;}
.y69{bottom:151.410000px;}
.yeb{bottom:155.010000px;}
.y7c{bottom:156.630000px;}
.ya5{bottom:161.310000px;}
.yf7{bottom:162.210000px;}
.y30{bottom:168.870000px;}
.y68{bottom:171.210000px;}
.yea{bottom:174.810000px;}
.y7b{bottom:176.610000px;}
.yf6{bottom:182.190000px;}
.y2f{bottom:188.670000px;}
.ya4{bottom:190.470000px;}
.y67{bottom:191.190000px;}
.ye9{bottom:194.610000px;}
.y7a{bottom:196.410000px;}
.yf5{bottom:201.990000px;}
.y2e{bottom:208.650000px;}
.ya3{bottom:210.270000px;}
.y66{bottom:210.990000px;}
.ye8{bottom:214.590000px;}
.y79{bottom:216.210000px;}
.yf4{bottom:221.790000px;}
.y2d{bottom:228.450000px;}
.ya2{bottom:230.070000px;}
.y65{bottom:230.790000px;}
.ye7{bottom:234.390000px;}
.y78{bottom:236.010000px;}
.yf3{bottom:241.590000px;}
.y2c{bottom:248.250000px;}
.ya1{bottom:250.050000px;}
.y64{bottom:250.590000px;}
.ye6{bottom:254.190000px;}
.y77{bottom:255.810000px;}
.yfb{bottom:261.030000px;}
.yf2{bottom:261.390000px;}
.y2b{bottom:268.050000px;}
.ya0{bottom:269.490000px;}
.y63{bottom:270.390000px;}
.ye5{bottom:271.650000px;}
.y76{bottom:275.790000px;}
.yf1{bottom:281.370000px;}
.y2a{bottom:287.850000px;}
.ye4{bottom:288.930000px;}
.y62{bottom:290.370000px;}
.y75{bottom:295.590000px;}
.y9f{bottom:298.650000px;}
.yf0{bottom:300.810000px;}
.ye3{bottom:306.030000px;}
.y29{bottom:307.830000px;}
.y61{bottom:310.170000px;}
.y74{bottom:315.390000px;}
.y9e{bottom:318.450000px;}
.ye2{bottom:323.310000px;}
.y28{bottom:327.630000px;}
.y60{bottom:329.970000px;}
.y73{bottom:335.190000px;}
.y9d{bottom:338.250000px;}
.ye1{bottom:343.110000px;}
.y27{bottom:347.430000px;}
.y5f{bottom:349.770000px;}
.y72{bottom:354.990000px;}
.yd9{bottom:357.510000px;}
.y9c{bottom:358.230000px;}
.y26{bottom:367.230000px;}
.y5e{bottom:369.570000px;}
.y71{bottom:374.970000px;}
.y9b{bottom:378.030000px;}
.y25{bottom:387.075000px;}
.y5d{bottom:389.595000px;}
.y70{bottom:394.815000px;}
.y105{bottom:396.075000px;}
.y9a{bottom:397.875000px;}
.y24{bottom:407.055000px;}
.y5c{bottom:409.395000px;}
.y6f{bottom:414.615000px;}
.y104{bottom:414.975000px;}
.y99{bottom:417.315000px;}
.yd3{bottom:417.675000px;}
.y23{bottom:426.855000px;}
.y5b{bottom:429.195000px;}
.y103{bottom:433.875000px;}
.y6e{bottom:434.055000px;}
.y98{bottom:446.475000px;}
.y22{bottom:446.655000px;}
.y5a{bottom:448.995000px;}
.y102{bottom:452.955000px;}
.y6d{bottom:453.855000px;}
.y21{bottom:466.455000px;}
.yfc{bottom:468.435000px;}
.y59{bottom:468.795000px;}
.y101{bottom:471.855000px;}
.y20{bottom:486.255000px;}
.yd2{bottom:487.515000px;}
.y58{bottom:488.775000px;}
.y100{bottom:490.935000px;}
.y97{bottom:506.055000px;}
.y1f{bottom:506.235000px;}
.y57{bottom:508.215000px;}
.yef{bottom:508.575000px;}
.yff{bottom:509.835000px;}
.y96{bottom:525.855000px;}
.y1e{bottom:526.035000px;}
.y56{bottom:528.375000px;}
.yfe{bottom:528.915000px;}
.ycf{bottom:541.695000px;}
.y1d{bottom:545.835000px;}
.y95{bottom:546.735000px;}
.yfd{bottom:547.815000px;}
.y55{bottom:548.175000px;}
.y1c{bottom:565.275000px;}
.y94{bottom:566.715000px;}
.y54{bottom:567.975000px;}
.y1b{bottom:585.435000px;}
.y93{bottom:586.515000px;}
.y53{bottom:587.955000px;}
.ycc{bottom:595.875000px;}
.y92{bottom:607.395000px;}
.y1a{bottom:607.575000px;}
.y52{bottom:607.755000px;}
.y91{bottom:627.195000px;}
.y51{bottom:627.555000px;}
.y19{bottom:636.405000px;}
.y50{bottom:647.385000px;}
.y90{bottom:648.105000px;}
.yca{bottom:648.285000px;}
.y18{bottom:656.205000px;}
.y4f{bottom:667.185000px;}
.y8f{bottom:669.165000px;}
.y17{bottom:676.185000px;}
.y4e{bottom:687.165000px;}
.y8e{bottom:688.965000px;}
.y16{bottom:695.985000px;}
.yc4{bottom:702.465000px;}
.y4d{bottom:706.965000px;}
.y8d{bottom:708.405000px;}
.y15{bottom:715.785000px;}
.y4c{bottom:726.765000px;}
.y14{bottom:735.585000px;}
.y8c{bottom:737.565000px;}
.y4b{bottom:746.565000px;}
.y13{bottom:755.385000px;}
.yc0{bottom:756.645000px;}
.y8b{bottom:757.365000px;}
.y4a{bottom:766.365000px;}
.y12{bottom:775.365000px;}
.y8a{bottom:777.345000px;}
.y49{bottom:786.345000px;}
.y11{bottom:795.165000px;}
.y89{bottom:797.145000px;}
.y48{bottom:806.145000px;}
.yb8{bottom:809.205000px;}
.y10{bottom:814.965000px;}
.y88{bottom:816.945000px;}
.y47{bottom:825.945000px;}
.yf{bottom:834.765000px;}
.y87{bottom:836.745000px;}
.y46{bottom:845.745000px;}
.ye{bottom:854.565000px;}
.y86{bottom:856.545000px;}
.y45{bottom:865.545000px;}
.y85{bottom:876.525000px;}
.yd{bottom:876.705000px;}
.yb1{bottom:878.865000px;}
.y44{bottom:885.570000px;}
.y84{bottom:896.370000px;}
.yc{bottom:901.770000px;}
.y43{bottom:905.370000px;}
.y83{bottom:916.170000px;}
.yb{bottom:921.750000px;}
.y42{bottom:925.170000px;}
.y82{bottom:935.970000px;}
.ya{bottom:936.690000px;}
.y41{bottom:944.970000px;}
.yaf{bottom:949.650000px;}
.y81{bottom:955.410000px;}
.y9{bottom:957.750000px;}
.y40{bottom:964.770000px;}
.y8{bottom:981.150000px;}
.y3f{bottom:984.750000px;}
.yae{bottom:989.790000px;}
.y3e{bottom:1004.550000px;}
.yad{bottom:1006.890000px;}
.y7{bottom:1013.010000px;}
.yac{bottom:1024.170000px;}
.y3d{bottom:1024.350000px;}
.yab{bottom:1043.790000px;}
.y3c{bottom:1044.150000px;}
.y5{bottom:1051.890000px;}
.yaa{bottom:1063.590000px;}
.y3b{bottom:1063.950000px;}
.y4{bottom:1082.670000px;}
.ya9{bottom:1083.570000px;}
.y3a{bottom:1083.930000px;}
.y39{bottom:1103.730000px;}
.y3{bottom:1113.450000px;}
.y38{bottom:1123.530000px;}
.y37{bottom:1143.360000px;}
.y2{bottom:1144.080000px;}
.y80{bottom:1162.800000px;}
.y36{bottom:1163.160000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.580000px;}
.h16{height:2.826563px;}
.hc{height:33.300000px;}
.h6{height:38.158594px;}
.hf{height:51.660000px;}
.h11{height:51.696000px;}
.h12{height:53.280000px;}
.h10{height:53.460000px;}
.h8{height:58.621992px;}
.h7{height:58.651172px;}
.h14{height:59.436000px;}
.h5{height:60.226875px;}
.hb{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.he{height:68.940000px;}
.h13{height:69.120000px;}
.hd{height:70.056000px;}
.h15{height:81.396000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:42.336000px;}
.w7{width:44.136000px;}
.w8{width:166.890000px;}
.w4{width:168.690000px;}
.w5{width:200.190000px;}
.w9{width:209.775000px;}
.w6{width:349.995000px;}
.wa{width:578.085000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2b{left:1.260000px;}
.x18{left:3.420000px;}
.x1d{left:5.040000px;}
.x22{left:6.480000px;}
.x14{left:7.740000px;}
.xb{left:10.620000px;}
.x2d{left:11.700000px;}
.x28{left:12.780000px;}
.x20{left:14.220000px;}
.x12{left:17.640000px;}
.x17{left:18.900000px;}
.x11{left:21.096000px;}
.x32{left:24.840000px;}
.x2a{left:25.920000px;}
.x1e{left:28.620000px;}
.x30{left:32.040000px;}
.xf{left:34.560000px;}
.x25{left:37.260000px;}
.x1b{left:38.880000px;}
.x1a{left:41.400000px;}
.x23{left:44.100000px;}
.x3d{left:45.900000px;}
.x2f{left:47.514000px;}
.x15{left:49.674000px;}
.xd{left:50.754000px;}
.x2{left:52.019987px;}
.x1{left:54.179987px;}
.x26{left:57.600000px;}
.x29{left:59.214000px;}
.x27{left:61.554000px;}
.xa{left:64.980000px;}
.x9{left:67.499987px;}
.x1c{left:69.840000px;}
.x2c{left:72.360000px;}
.x7{left:74.339987px;}
.x21{left:76.320000px;}
.x33{left:80.999987px;}
.x13{left:84.234000px;}
.x8{left:87.875987px;}
.x3{left:96.515987px;}
.x16{left:100.080000px;}
.xc{left:108.036000px;}
.x24{left:109.836000px;}
.x4{left:119.555987px;}
.x2e{left:123.525000px;}
.x31{left:135.945000px;}
.x19{left:137.385000px;}
.x1f{left:158.085000px;}
.x39{left:167.969987px;}
.x3a{left:181.289987px;}
.x3e{left:191.370000px;}
.x3b{left:255.314987px;}
.x3c{left:268.634987px;}
.xe{left:277.455000px;}
.x5{left:339.914987px;}
.x6{left:446.684987px;}
.x10{left:478.365000px;}
.x34{left:691.889987px;}
.x35{left:704.309987px;}
.x36{left:736.709987px;}
.x37{left:749.309987px;}
.x38{left:839.519987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-1.328000pt;}
.lsd{letter-spacing:-1.184000pt;}
.ls5{letter-spacing:-1.045333pt;}
.ls1e{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.821333pt;}
.ls20{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.592000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls2f{letter-spacing:-0.503467pt;}
.ls6{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.367467pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.317333pt;}
.ls15{letter-spacing:-0.286933pt;}
.ls30{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls2e{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.592000pt;}
.ls2a{letter-spacing:0.736000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls27{letter-spacing:0.800000pt;}
.ls28{letter-spacing:0.821333pt;}
.ls9{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.440000pt;}
.ls29{letter-spacing:2.080000pt;}
.ls26{letter-spacing:2.720000pt;}
.ls2{letter-spacing:5.920000pt;}
.ls13{letter-spacing:7.200000pt;}
.ls1{letter-spacing:7.632640pt;}
.ls19{letter-spacing:9.040640pt;}
.ls32{letter-spacing:10.192640pt;}
.ls25{letter-spacing:10.400000pt;}
.ls11{letter-spacing:12.112640pt;}
.ls2d{letter-spacing:12.752640pt;}
.ls2b{letter-spacing:13.392640pt;}
.ls23{letter-spacing:13.600000pt;}
.ls33{letter-spacing:14.240000pt;}
.ls17{letter-spacing:15.952640pt;}
.ls24{letter-spacing:17.232640pt;}
.ls1b{letter-spacing:17.872640pt;}
.ls1c{letter-spacing:21.280000pt;}
.ls31{letter-spacing:37.200640pt;}
.ws15{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.240000pt;}
.ws1b{word-spacing:-14.101333pt;}
.ws1d{word-spacing:-14.016000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.736533pt;}
.ws1{word-spacing:-13.674667pt;}
.ws7{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.463467pt;}
.ws1e{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.374933pt;}
.ws21{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws20{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.019947pt;}
.ws10{word-spacing:-12.989547pt;}
.ws1a{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.912533pt;}
.ws1f{word-spacing:-12.776533pt;}
.ws14{word-spacing:-12.736000pt;}
.ws16{word-spacing:-12.688000pt;}
.ws19{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.458667pt;}
.ws17{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws18{word-spacing:-11.952000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsf{word-spacing:0.000000pt;}
._1{margin-left:-2258.442880pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1281.884373pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-511.191040pt;}
._22{margin-left:-13.280000pt;}
._23{margin-left:-11.094827pt;}
._7{margin-left:-7.471573pt;}
._8{margin-left:-4.864427pt;}
._9{margin-left:-3.473920pt;}
._e{margin-left:-2.440533pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.072533pt;}
._14{width:3.575467pt;}
._15{width:5.233920pt;}
._13{width:6.415360pt;}
._16{width:7.722453pt;}
._17{width:9.280853pt;}
._18{width:10.264320pt;}
._19{width:12.005120pt;}
._1a{width:14.263040pt;}
._10{width:15.511040pt;}
._12{width:16.753707pt;}
._1f{width:18.274773pt;}
._1e{width:19.238187pt;}
._1d{width:20.291840pt;}
._1b{width:21.394987pt;}
._20{width:22.298880pt;}
._25{width:23.343360pt;}
._1c{width:24.679467pt;}
._11{width:26.374827pt;}
._24{width:28.720640pt;}
._26{width:31.438507pt;}
._b{width:33.774933pt;}
._a{width:35.066667pt;}
._c{width:37.078400pt;}
._d{width:39.120000pt;}
._29{width:48.657920pt;}
._28{width:55.168640pt;}
._27{width:56.200960pt;}
._2a{width:105.738667pt;}
._21{width:182.560000pt;}
._2b{width:549.226667pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:2.880000pt;}
.yc3{bottom:3.040000pt;}
.ybc{bottom:3.200000pt;}
.yc2{bottom:3.360000pt;}
.yb7{bottom:4.000000pt;}
.yb5{bottom:4.320000pt;}
.yc9{bottom:4.480000pt;}
.yc7{bottom:4.800000pt;}
.ye0{bottom:5.440000pt;}
.y10b{bottom:7.200000pt;}
.yb0{bottom:17.280000pt;}
.ybd{bottom:18.240000pt;}
.yd8{bottom:18.400000pt;}
.ybb{bottom:18.560000pt;}
.yc1{bottom:18.720000pt;}
.yb6{bottom:19.400000pt;}
.yb4{bottom:19.720000pt;}
.yc8{bottom:19.840000pt;}
.yc6{bottom:20.160000pt;}
.ydf{bottom:23.080000pt;}
.y10a{bottom:24.992000pt;}
.ydd{bottom:25.160000pt;}
.ydb{bottom:25.480000pt;}
.y107{bottom:28.512000pt;}
.ybe{bottom:33.600000pt;}
.yce{bottom:33.626667pt;}
.yd7{bottom:33.760000pt;}
.yba{bottom:33.920000pt;}
.ycd{bottom:33.946667pt;}
.yd5{bottom:34.080000pt;}
.yb3{bottom:34.920000pt;}
.yd1{bottom:35.040000pt;}
.ycb{bottom:35.200000pt;}
.yd0{bottom:35.360000pt;}
.yc5{bottom:35.520000pt;}
.ydc{bottom:40.520000pt;}
.yde{bottom:40.680000pt;}
.yda{bottom:40.840000pt;}
.y109{bottom:42.586667pt;}
.yd6{bottom:49.120000pt;}
.yb9{bottom:49.280000pt;}
.yd4{bottom:49.440000pt;}
.yb2{bottom:50.280000pt;}
.y6{bottom:54.240000pt;}
.y108{bottom:60.186667pt;}
.y34{bottom:79.520000pt;}
.y6c{bottom:81.760000pt;}
.yee{bottom:84.800000pt;}
.y7f{bottom:86.400000pt;}
.ya8{bottom:90.720000pt;}
.yfa{bottom:91.360000pt;}
.y106{bottom:97.120000pt;}
.y33{bottom:97.280000pt;}
.y6b{bottom:99.360000pt;}
.yed{bottom:102.560000pt;}
.y7e{bottom:104.000000pt;}
.ya7{bottom:108.320000pt;}
.yf9{bottom:108.960000pt;}
.y32{bottom:114.912000pt;}
.y6a{bottom:116.992000pt;}
.yec{bottom:120.192000pt;}
.y7d{bottom:121.632000pt;}
.ya6{bottom:126.112000pt;}
.yf8{bottom:126.592000pt;}
.y31{bottom:132.512000pt;}
.y69{bottom:134.586667pt;}
.yeb{bottom:137.786667pt;}
.y7c{bottom:139.226667pt;}
.ya5{bottom:143.386667pt;}
.yf7{bottom:144.186667pt;}
.y30{bottom:150.106667pt;}
.y68{bottom:152.186667pt;}
.yea{bottom:155.386667pt;}
.y7b{bottom:156.986667pt;}
.yf6{bottom:161.946667pt;}
.y2f{bottom:167.706667pt;}
.ya4{bottom:169.306667pt;}
.y67{bottom:169.946667pt;}
.ye9{bottom:172.986667pt;}
.y7a{bottom:174.586667pt;}
.yf5{bottom:179.546667pt;}
.y2e{bottom:185.466667pt;}
.ya3{bottom:186.906667pt;}
.y66{bottom:187.546667pt;}
.ye8{bottom:190.746667pt;}
.y79{bottom:192.186667pt;}
.yf4{bottom:197.146667pt;}
.y2d{bottom:203.066667pt;}
.ya2{bottom:204.506667pt;}
.y65{bottom:205.146667pt;}
.ye7{bottom:208.346667pt;}
.y78{bottom:209.786667pt;}
.yf3{bottom:214.746667pt;}
.y2c{bottom:220.666667pt;}
.ya1{bottom:222.266667pt;}
.y64{bottom:222.746667pt;}
.ye6{bottom:225.946667pt;}
.y77{bottom:227.386667pt;}
.yfb{bottom:232.026667pt;}
.yf2{bottom:232.346667pt;}
.y2b{bottom:238.266667pt;}
.ya0{bottom:239.546667pt;}
.y63{bottom:240.346667pt;}
.ye5{bottom:241.466667pt;}
.y76{bottom:245.146667pt;}
.yf1{bottom:250.106667pt;}
.y2a{bottom:255.866667pt;}
.ye4{bottom:256.826667pt;}
.y62{bottom:258.106667pt;}
.y75{bottom:262.746667pt;}
.y9f{bottom:265.466667pt;}
.yf0{bottom:267.386667pt;}
.ye3{bottom:272.026667pt;}
.y29{bottom:273.626667pt;}
.y61{bottom:275.706667pt;}
.y74{bottom:280.346667pt;}
.y9e{bottom:283.066667pt;}
.ye2{bottom:287.386667pt;}
.y28{bottom:291.226667pt;}
.y60{bottom:293.306667pt;}
.y73{bottom:297.946667pt;}
.y9d{bottom:300.666667pt;}
.ye1{bottom:304.986667pt;}
.y27{bottom:308.826667pt;}
.y5f{bottom:310.906667pt;}
.y72{bottom:315.546667pt;}
.yd9{bottom:317.786667pt;}
.y9c{bottom:318.426667pt;}
.y26{bottom:326.426667pt;}
.y5e{bottom:328.506667pt;}
.y71{bottom:333.306667pt;}
.y9b{bottom:336.026667pt;}
.y25{bottom:344.066667pt;}
.y5d{bottom:346.306667pt;}
.y70{bottom:350.946667pt;}
.y105{bottom:352.066667pt;}
.y9a{bottom:353.666667pt;}
.y24{bottom:361.826667pt;}
.y5c{bottom:363.906667pt;}
.y6f{bottom:368.546667pt;}
.y104{bottom:368.866667pt;}
.y99{bottom:370.946667pt;}
.yd3{bottom:371.266667pt;}
.y23{bottom:379.426667pt;}
.y5b{bottom:381.506667pt;}
.y103{bottom:385.666667pt;}
.y6e{bottom:385.826667pt;}
.y98{bottom:396.866667pt;}
.y22{bottom:397.026667pt;}
.y5a{bottom:399.106667pt;}
.y102{bottom:402.626667pt;}
.y6d{bottom:403.426667pt;}
.y21{bottom:414.626667pt;}
.yfc{bottom:416.386667pt;}
.y59{bottom:416.706667pt;}
.y101{bottom:419.426667pt;}
.y20{bottom:432.226667pt;}
.yd2{bottom:433.346667pt;}
.y58{bottom:434.466667pt;}
.y100{bottom:436.386667pt;}
.y97{bottom:449.826667pt;}
.y1f{bottom:449.986667pt;}
.y57{bottom:451.746667pt;}
.yef{bottom:452.066667pt;}
.yff{bottom:453.186667pt;}
.y96{bottom:467.426667pt;}
.y1e{bottom:467.586667pt;}
.y56{bottom:469.666667pt;}
.yfe{bottom:470.146667pt;}
.ycf{bottom:481.506667pt;}
.y1d{bottom:485.186667pt;}
.y95{bottom:485.986667pt;}
.yfd{bottom:486.946667pt;}
.y55{bottom:487.266667pt;}
.y1c{bottom:502.466667pt;}
.y94{bottom:503.746667pt;}
.y54{bottom:504.866667pt;}
.y1b{bottom:520.386667pt;}
.y93{bottom:521.346667pt;}
.y53{bottom:522.626667pt;}
.ycc{bottom:529.666667pt;}
.y92{bottom:539.906667pt;}
.y1a{bottom:540.066667pt;}
.y52{bottom:540.226667pt;}
.y91{bottom:557.506667pt;}
.y51{bottom:557.826667pt;}
.y19{bottom:565.693333pt;}
.y50{bottom:575.453333pt;}
.y90{bottom:576.093333pt;}
.yca{bottom:576.253333pt;}
.y18{bottom:583.293333pt;}
.y4f{bottom:593.053333pt;}
.y8f{bottom:594.813333pt;}
.y17{bottom:601.053333pt;}
.y4e{bottom:610.813333pt;}
.y8e{bottom:612.413333pt;}
.y16{bottom:618.653333pt;}
.yc4{bottom:624.413333pt;}
.y4d{bottom:628.413333pt;}
.y8d{bottom:629.693333pt;}
.y15{bottom:636.253333pt;}
.y4c{bottom:646.013333pt;}
.y14{bottom:653.853333pt;}
.y8c{bottom:655.613333pt;}
.y4b{bottom:663.613333pt;}
.y13{bottom:671.453333pt;}
.yc0{bottom:672.573333pt;}
.y8b{bottom:673.213333pt;}
.y4a{bottom:681.213333pt;}
.y12{bottom:689.213333pt;}
.y8a{bottom:690.973333pt;}
.y49{bottom:698.973333pt;}
.y11{bottom:706.813333pt;}
.y89{bottom:708.573333pt;}
.y48{bottom:716.573333pt;}
.yb8{bottom:719.293333pt;}
.y10{bottom:724.413333pt;}
.y88{bottom:726.173333pt;}
.y47{bottom:734.173333pt;}
.yf{bottom:742.013333pt;}
.y87{bottom:743.773333pt;}
.y46{bottom:751.773333pt;}
.ye{bottom:759.613333pt;}
.y86{bottom:761.373333pt;}
.y45{bottom:769.373333pt;}
.y85{bottom:779.133333pt;}
.yd{bottom:779.293333pt;}
.yb1{bottom:781.213333pt;}
.y44{bottom:787.173333pt;}
.y84{bottom:796.773333pt;}
.yc{bottom:801.573333pt;}
.y43{bottom:804.773333pt;}
.y83{bottom:814.373333pt;}
.yb{bottom:819.333333pt;}
.y42{bottom:822.373333pt;}
.y82{bottom:831.973333pt;}
.ya{bottom:832.613333pt;}
.y41{bottom:839.973333pt;}
.yaf{bottom:844.133333pt;}
.y81{bottom:849.253333pt;}
.y9{bottom:851.333333pt;}
.y40{bottom:857.573333pt;}
.y8{bottom:872.133333pt;}
.y3f{bottom:875.333333pt;}
.yae{bottom:879.813333pt;}
.y3e{bottom:892.933333pt;}
.yad{bottom:895.013333pt;}
.y7{bottom:900.453333pt;}
.yac{bottom:910.373333pt;}
.y3d{bottom:910.533333pt;}
.yab{bottom:927.813333pt;}
.y3c{bottom:928.133333pt;}
.y5{bottom:935.013333pt;}
.yaa{bottom:945.413333pt;}
.y3b{bottom:945.733333pt;}
.y4{bottom:962.373333pt;}
.ya9{bottom:963.173333pt;}
.y3a{bottom:963.493333pt;}
.y39{bottom:981.093333pt;}
.y3{bottom:989.733333pt;}
.y38{bottom:998.693333pt;}
.y37{bottom:1016.320000pt;}
.y2{bottom:1016.960000pt;}
.y80{bottom:1033.600000pt;}
.y36{bottom:1033.920000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.960000pt;}
.h16{height:2.512500pt;}
.hc{height:29.600000pt;}
.h6{height:33.918750pt;}
.hf{height:45.920000pt;}
.h11{height:45.952000pt;}
.h12{height:47.360000pt;}
.h10{height:47.520000pt;}
.h8{height:52.108438pt;}
.h7{height:52.134375pt;}
.h14{height:52.832000pt;}
.h5{height:53.535000pt;}
.hb{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.he{height:61.280000pt;}
.h13{height:61.440000pt;}
.hd{height:62.272000pt;}
.h15{height:72.352000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:37.632000pt;}
.w7{width:39.232000pt;}
.w8{width:148.346667pt;}
.w4{width:149.946667pt;}
.w5{width:177.946667pt;}
.w9{width:186.466667pt;}
.w6{width:311.106667pt;}
.wa{width:513.853333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.120000pt;}
.x18{left:3.040000pt;}
.x1d{left:4.480000pt;}
.x22{left:5.760000pt;}
.x14{left:6.880000pt;}
.xb{left:9.440000pt;}
.x2d{left:10.400000pt;}
.x28{left:11.360000pt;}
.x20{left:12.640000pt;}
.x12{left:15.680000pt;}
.x17{left:16.800000pt;}
.x11{left:18.752000pt;}
.x32{left:22.080000pt;}
.x2a{left:23.040000pt;}
.x1e{left:25.440000pt;}
.x30{left:28.480000pt;}
.xf{left:30.720000pt;}
.x25{left:33.120000pt;}
.x1b{left:34.560000pt;}
.x1a{left:36.800000pt;}
.x23{left:39.200000pt;}
.x3d{left:40.800000pt;}
.x2f{left:42.234667pt;}
.x15{left:44.154667pt;}
.xd{left:45.114667pt;}
.x2{left:46.239988pt;}
.x1{left:48.159988pt;}
.x26{left:51.200000pt;}
.x29{left:52.634667pt;}
.x27{left:54.714667pt;}
.xa{left:57.760000pt;}
.x9{left:59.999988pt;}
.x1c{left:62.080000pt;}
.x2c{left:64.320000pt;}
.x7{left:66.079988pt;}
.x21{left:67.840000pt;}
.x33{left:71.999988pt;}
.x13{left:74.874667pt;}
.x8{left:78.111988pt;}
.x3{left:85.791988pt;}
.x16{left:88.960000pt;}
.xc{left:96.032000pt;}
.x24{left:97.632000pt;}
.x4{left:106.271988pt;}
.x2e{left:109.800000pt;}
.x31{left:120.840000pt;}
.x19{left:122.120000pt;}
.x1f{left:140.520000pt;}
.x39{left:149.306655pt;}
.x3a{left:161.146655pt;}
.x3e{left:170.106667pt;}
.x3b{left:226.946655pt;}
.x3c{left:238.786655pt;}
.xe{left:246.626667pt;}
.x5{left:302.146655pt;}
.x6{left:397.053321pt;}
.x10{left:425.213333pt;}
.x34{left:615.013321pt;}
.x35{left:626.053322pt;}
.x36{left:654.853321pt;}
.x37{left:666.053322pt;}
.x38{left:746.239988pt;}
}




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