
    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_72b7e227a773312f8e8eef95.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_af12bfc81e7dd81b51542ad8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_128bedc092d632a74520b876.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967773;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_3f0d5e57185c192bf0f4b21e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.915039;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_05b071780b856bf1866d1741.woff')format("woff");}.ff5{font-family:ff5;line-height:0.857422;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_6b5c35c0fc3827dbc9a400b8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_04674eafc13bfc8dde6dfb88.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_a283d3f4ea3585a4feb6d7a0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_7fd14d1229d7963bc822d2ca.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_5576220f145d18d6f76aaabe.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_74df1eb4b8a13287ee603355.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.597600px;}
.ls11{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.168480px;}
.lsc{letter-spacing:-0.162000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.059760px;}
.ls10{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.179280px;}
.ls5{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.358560px;}
.ls3{letter-spacing:0.418320px;}
.ls4{letter-spacing:0.478080px;}
.ls6{letter-spacing:0.537840px;}
.ls14{letter-spacing:0.657360px;}
.ls15{letter-spacing:1.195200px;}
.ls13{letter-spacing:1.584000px;}
.ls12{letter-spacing:10.080000px;}
.lse{letter-spacing:54.864000px;}
.lsf{letter-spacing:848.160000px;}
.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:-14.328000px;}
.ws1{word-spacing:-12.310560px;}
.ws2{word-spacing:-12.250800px;}
.ws16{word-spacing:-10.800000px;}
.ws27{word-spacing:-9.360000px;}
.ws2a{word-spacing:-8.640000px;}
.ws41{word-spacing:-7.200000px;}
.wsd{word-spacing:-5.760000px;}
.ws10{word-spacing:-5.040000px;}
.ws20{word-spacing:-4.320000px;}
.ws29{word-spacing:-3.600000px;}
.ws40{word-spacing:-2.880000px;}
.ws42{word-spacing:-1.434240px;}
.ws6{word-spacing:-0.717120px;}
.ws24{word-spacing:-0.270000px;}
.ws4{word-spacing:-0.119520px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:0.108000px;}
.ws25{word-spacing:0.162000px;}
.ws43{word-spacing:0.597600px;}
.ws5{word-spacing:2.928240px;}
.wsb{word-spacing:3.645360px;}
.wsf{word-spacing:4.320000px;}
.ws37{word-spacing:5.040000px;}
.ws1c{word-spacing:5.760000px;}
.wse{word-spacing:6.480000px;}
.ws21{word-spacing:7.200000px;}
.ws7{word-spacing:7.230960px;}
.ws2d{word-spacing:7.920000px;}
.ws2b{word-spacing:8.640000px;}
.wsa{word-spacing:8.665200px;}
.ws1e{word-spacing:9.360000px;}
.ws2c{word-spacing:10.080000px;}
.ws1b{word-spacing:10.800000px;}
.ws13{word-spacing:12.960000px;}
.ws8{word-spacing:12.967920px;}
.ws14{word-spacing:14.400000px;}
.ws15{word-spacing:16.560000px;}
.ws30{word-spacing:18.000000px;}
.ws17{word-spacing:18.720000px;}
.ws3e{word-spacing:19.440000px;}
.ws11{word-spacing:21.600000px;}
.ws3b{word-spacing:24.480000px;}
.ws32{word-spacing:25.200000px;}
.ws18{word-spacing:27.360000px;}
.ws19{word-spacing:28.800000px;}
.ws35{word-spacing:30.960000px;}
.ws9{word-spacing:31.672800px;}
.ws31{word-spacing:32.400000px;}
.ws26{word-spacing:35.280000px;}
.ws2e{word-spacing:36.000000px;}
.ws23{word-spacing:37.440000px;}
.ws1f{word-spacing:43.200000px;}
.ws1a{word-spacing:43.920000px;}
.ws28{word-spacing:48.960000px;}
.ws39{word-spacing:50.400000px;}
.ws12{word-spacing:52.560000px;}
.ws33{word-spacing:54.720000px;}
.ws3a{word-spacing:56.160000px;}
.ws1d{word-spacing:57.600000px;}
.ws38{word-spacing:61.200000px;}
.ws36{word-spacing:64.800000px;}
.ws3f{word-spacing:69.840000px;}
.ws3c{word-spacing:72.000000px;}
.ws22{word-spacing:78.480000px;}
.ws3d{word-spacing:93.600000px;}
.ws2f{word-spacing:104.400000px;}
.ws34{word-spacing:119.520000px;}
._2{margin-left:-3.663288px;}
._4{margin-left:-2.222280px;}
._3{margin-left:-1.129464px;}
._0{width:1.008000px;}
._1{width:2.025864px;}
._6{width:4.320000px;}
._7{width:19.440000px;}
._5{width:22.464000px;}
._8{width:24.480000px;}
.fc2{color:rgb(14,40,65);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.240000px;}
.y12d{bottom:117.360000px;}
.y80{bottom:127.620000px;}
.y114{bottom:133.380000px;}
.y60{bottom:133.920000px;}
.y1b{bottom:135.900000px;}
.y12c{bottom:140.940000px;}
.y7f{bottom:151.200000px;}
.y113{bottom:156.960000px;}
.ye6{bottom:157.140000px;}
.y5f{bottom:157.500000px;}
.ycc{bottom:158.220000px;}
.y12b{bottom:164.520000px;}
.y1a{bottom:170.100000px;}
.y7e{bottom:174.780000px;}
.yab{bottom:179.820000px;}
.y112{bottom:180.540000px;}
.ye5{bottom:180.900000px;}
.y5e{bottom:181.260000px;}
.y12a{bottom:188.100000px;}
.y33{bottom:193.140000px;}
.ycb{bottom:193.860000px;}
.y19{bottom:201.823200px;}
.ye4{bottom:204.480000px;}
.y7d{bottom:210.420000px;}
.y146{bottom:213.120000px;}
.yaa{bottom:215.460000px;}
.y111{bottom:216.180000px;}
.y32{bottom:216.900000px;}
.yca{bottom:217.440000px;}
.y129{bottom:223.740000px;}
.ye3{bottom:228.060000px;}
.y9b{bottom:231.660000px;}
.y145{bottom:232.783200px;}
.y18{bottom:233.496000px;}
.y7c{bottom:234.000000px;}
.ya9{bottom:239.040000px;}
.y5d{bottom:240.480000px;}
.yc9{bottom:241.020000px;}
.y128{bottom:247.320000px;}
.ye2{bottom:251.640000px;}
.y110{bottom:251.820000px;}
.y31{bottom:252.360000px;}
.y7b{bottom:257.580000px;}
.y5c{bottom:264.060000px;}
.y144{bottom:264.456000px;}
.yc8{bottom:264.780000px;}
.y17{bottom:265.168800px;}
.y9a{bottom:267.300000px;}
.y127{bottom:271.080000px;}
.ya8{bottom:274.680000px;}
.ye1{bottom:275.400000px;}
.y30{bottom:276.120000px;}
.y7a{bottom:284.400000px;}
.y5b{bottom:287.640000px;}
.y99{bottom:290.880000px;}
.y126{bottom:294.660000px;}
.y143{bottom:296.128800px;}
.y16{bottom:296.841600px;}
.ya7{bottom:298.260000px;}
.ye0{bottom:298.980000px;}
.y10f{bottom:299.160000px;}
.y2f{bottom:299.700000px;}
.yc7{bottom:300.240000px;}
.y79{bottom:307.980000px;}
.y5a{bottom:311.220000px;}
.y98{bottom:314.460000px;}
.y125{bottom:318.240000px;}
.ydf{bottom:322.560000px;}
.y10e{bottom:322.740000px;}
.y2e{bottom:323.280000px;}
.yc6{bottom:324.000000px;}
.y142{bottom:327.801600px;}
.y15{bottom:328.514400px;}
.y55{bottom:331.020000px;}
.ya6{bottom:333.900000px;}
.y78{bottom:334.800000px;}
.y59{bottom:334.980000px;}
.y97{bottom:338.220000px;}
.y124{bottom:341.820000px;}
.yde{bottom:346.140000px;}
.y10d{bottom:346.320000px;}
.y2d{bottom:346.860000px;}
.ya5{bottom:357.660000px;}
.y77{bottom:358.200000px;}
.y141{bottom:359.474400px;}
.yc5{bottom:359.640000px;}
.y14{bottom:360.187200px;}
.y123{bottom:365.400000px;}
.y54{bottom:366.660000px;}
.ydd{bottom:369.720000px;}
.y10c{bottom:369.900000px;}
.y2c{bottom:370.620000px;}
.y96{bottom:373.860000px;}
.yc4{bottom:383.220000px;}
.y103{bottom:385.560000px;}
.y122{bottom:389.160000px;}
.y53{bottom:390.060000px;}
.y140{bottom:391.147200px;}
.y13{bottom:391.860000px;}
.ya4{bottom:393.120000px;}
.ydc{bottom:393.480000px;}
.y10b{bottom:393.660000px;}
.y2b{bottom:394.200000px;}
.y76{bottom:397.080000px;}
.y95{bottom:397.260000px;}
.y52{bottom:416.880000px;}
.ydb{bottom:417.060000px;}
.y2a{bottom:417.780000px;}
.yc3{bottom:418.860000px;}
.y75{bottom:420.840000px;}
.y102{bottom:421.020000px;}
.y13f{bottom:422.820000px;}
.y12{bottom:423.583020px;}
.y94{bottom:424.080000px;}
.y121{bottom:424.620000px;}
.ya3{bottom:428.760000px;}
.y10a{bottom:429.120000px;}
.y51{bottom:440.460000px;}
.yda{bottom:440.640000px;}
.y29{bottom:441.360000px;}
.y74{bottom:444.420000px;}
.y101{bottom:444.780000px;}
.y120{bottom:448.380000px;}
.y93{bottom:450.720000px;}
.ya2{bottom:452.520000px;}
.y109{bottom:452.880000px;}
.yc2{bottom:454.500000px;}
.y11{bottom:455.255820px;}
.y13e{bottom:455.940000px;}
.yd9{bottom:464.220000px;}
.y58{bottom:464.940000px;}
.y50{bottom:467.280000px;}
.y73{bottom:468.000000px;}
.y100{bottom:468.360000px;}
.y11f{bottom:471.960000px;}
.y10{bottom:475.051320px;}
.ya1{bottom:476.100000px;}
.y108{bottom:476.460000px;}
.y28{bottom:477.000000px;}
.y92{bottom:477.540000px;}
.yc1{bottom:478.080000px;}
.y13d{bottom:479.520000px;}
.yd8{bottom:487.800000px;}
.y57{bottom:488.700000px;}
.y4f{bottom:490.860000px;}
.y72{bottom:491.580000px;}
.yff{bottom:491.940000px;}
.yf{bottom:494.667540px;}
.y11e{bottom:495.540000px;}
.ya0{bottom:499.680000px;}
.y107{bottom:500.040000px;}
.y27{bottom:500.580000px;}
.y13c{bottom:503.100000px;}
.yd7{bottom:511.560000px;}
.y56{bottom:512.280000px;}
.yc0{bottom:513.720000px;}
.ye{bottom:514.283760px;}
.yfe{bottom:515.520000px;}
.y91{bottom:516.240000px;}
.y4e{bottom:517.680000px;}
.y11d{bottom:519.120000px;}
.y9f{bottom:523.260000px;}
.y106{bottom:523.620000px;}
.y26{bottom:524.340000px;}
.y13b{bottom:526.860000px;}
.y71{bottom:527.220000px;}
.yd{bottom:534.079260px;}
.yd6{bottom:535.140000px;}
.ybf{bottom:537.300000px;}
.y4d{bottom:541.080000px;}
.y11c{bottom:542.880000px;}
.y105{bottom:547.380000px;}
.y25{bottom:547.920000px;}
.y13a{bottom:550.440000px;}
.yfd{bottom:551.160000px;}
.y90{bottom:551.880000px;}
.yc{bottom:553.695480px;}
.y9e{bottom:558.900000px;}
.y70{bottom:562.860000px;}
.y11b{bottom:566.460000px;}
.y4c{bottom:567.900000px;}
.yd5{bottom:570.780000px;}
.y104{bottom:570.960000px;}
.y24{bottom:571.500000px;}
.ybe{bottom:572.940000px;}
.yb{bottom:573.311700px;}
.y139{bottom:574.020000px;}
.yfc{bottom:574.740000px;}
.y8f{bottom:587.520000px;}
.y11a{bottom:590.040000px;}
.ya{bottom:593.107200px;}
.yd4{bottom:594.360000px;}
.y9d{bottom:594.540000px;}
.y23{bottom:595.080000px;}
.ybd{bottom:596.520000px;}
.y138{bottom:597.600000px;}
.y6f{bottom:598.500000px;}
.y4b{bottom:606.780000px;}
.yd3{bottom:617.940000px;}
.y22{bottom:618.660000px;}
.y137{bottom:621.360000px;}
.yfb{bottom:622.080000px;}
.y8e{bottom:623.160000px;}
.y9{bottom:624.780000px;}
.y119{bottom:625.680000px;}
.y4a{bottom:630.360000px;}
.y9c{bottom:631.620000px;}
.ybc{bottom:632.160000px;}
.y6e{bottom:634.140000px;}
.yd2{bottom:641.520000px;}
.y21{bottom:642.420000px;}
.yfa{bottom:645.660000px;}
.y8d{bottom:646.740000px;}
.y8{bottom:655.920000px;}
.y47{bottom:656.460000px;}
.y136{bottom:656.820000px;}
.y118{bottom:661.320000px;}
.yd1{bottom:665.280000px;}
.y20{bottom:666.000000px;}
.ybb{bottom:667.800000px;}
.yf9{bottom:669.240000px;}
.y6d{bottom:669.780000px;}
.y8c{bottom:682.380000px;}
.y7{bottom:684.000000px;}
.yba{bottom:691.380000px;}
.y46{bottom:692.100000px;}
.y135{bottom:692.460000px;}
.yf8{bottom:692.820000px;}
.y117{bottom:696.960000px;}
.yd0{bottom:700.920000px;}
.y1f{bottom:701.640000px;}
.y6c{bottom:703.260000px;}
.y8b{bottom:705.960000px;}
.y45{bottom:715.680000px;}
.y134{bottom:716.220000px;}
.yf7{bottom:716.580000px;}
.yb9{bottom:727.020000px;}
.y6b{bottom:731.340000px;}
.y116{bottom:733.860000px;}
.y49{bottom:735.300000px;}
.ycf{bottom:736.380000px;}
.y1e{bottom:737.280000px;}
.y44{bottom:739.260000px;}
.y133{bottom:739.800000px;}
.yf6{bottom:740.160000px;}
.y8a{bottom:741.600000px;}
.yb8{bottom:750.600000px;}
.y43{bottom:763.020000px;}
.y48{bottom:763.200000px;}
.y132{bottom:763.380000px;}
.yf5{bottom:763.740000px;}
.y89{bottom:765.360000px;}
.yce{bottom:770.040000px;}
.y1d{bottom:770.760000px;}
.yb7{bottom:774.180000px;}
.y42{bottom:786.600000px;}
.y131{bottom:786.960000px;}
.yf4{bottom:787.320000px;}
.ycd{bottom:798.120000px;}
.y1c{bottom:798.840000px;}
.y88{bottom:800.820000px;}
.yb6{bottom:809.820000px;}
.y41{bottom:810.180000px;}
.yf3{bottom:811.080000px;}
.y130{bottom:822.600000px;}
.y40{bottom:833.760000px;}
.yf2{bottom:834.660000px;}
.y87{bottom:836.460000px;}
.yb5{bottom:845.460000px;}
.y115{bottom:846.180000px;}
.y3f{bottom:857.340000px;}
.yf1{bottom:858.240000px;}
.y12f{bottom:869.940000px;}
.y86{bottom:872.100000px;}
.yb4{bottom:881.100000px;}
.y6a{bottom:881.460000px;}
.yf0{bottom:881.820000px;}
.y3e{bottom:892.980000px;}
.y12e{bottom:893.520000px;}
.y85{bottom:895.680000px;}
.yb3{bottom:904.680000px;}
.yef{bottom:905.400000px;}
.y3d{bottom:916.560000px;}
.y69{bottom:917.100000px;}
.y84{bottom:922.500000px;}
.yb2{bottom:928.260000px;}
.yee{bottom:929.160000px;}
.y68{bottom:940.680000px;}
.y3c{bottom:943.380000px;}
.y83{bottom:945.900000px;}
.yed{bottom:952.740000px;}
.yb1{bottom:963.900000px;}
.y67{bottom:964.260000px;}
.y3b{bottom:966.780000px;}
.y82{bottom:972.900000px;}
.yec{bottom:976.320000px;}
.yb0{bottom:987.480000px;}
.y66{bottom:988.020000px;}
.y3a{bottom:993.780000px;}
.y81{bottom:996.300000px;}
.yeb{bottom:999.900000px;}
.y65{bottom:1011.600000px;}
.y39{bottom:1017.360000px;}
.yaf{bottom:1023.120000px;}
.yea{bottom:1023.480000px;}
.y64{bottom:1035.180000px;}
.y38{bottom:1040.940000px;}
.yae{bottom:1046.880000px;}
.ye9{bottom:1047.240000px;}
.y63{bottom:1058.760000px;}
.y6{bottom:1063.980000px;}
.y37{bottom:1064.520000px;}
.yad{bottom:1070.460000px;}
.ye8{bottom:1070.820000px;}
.y62{bottom:1082.340000px;}
.y36{bottom:1091.340000px;}
.ye7{bottom:1094.400000px;}
.y5{bottom:1103.580000px;}
.yac{bottom:1106.100000px;}
.y35{bottom:1114.920000px;}
.y61{bottom:1117.980000px;}
.y34{bottom:1138.500000px;}
.y4{bottom:1141.740000px;}
.y2{bottom:1173.600000px;}
.y1{bottom:1192.860000px;}
.h7{height:36.360352px;}
.h3{height:39.830273px;}
.h8{height:42.193828px;}
.h9{height:46.570781px;}
.h2{height:47.988281px;}
.ha{height:50.835938px;}
.h4{height:56.109375px;}
.h6{height:59.478047px;}
.h5{height:65.647969px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x6{left:154.620000px;}
.x7{left:181.620000px;}
.x3{left:326.700000px;}
.x2{left:347.760000px;}
.x8{left:543.420000px;}
.x5{left:595.080000px;}
.x4{left:765.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.531200pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.149760pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053120pt;}
.ls10{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.159360pt;}
.ls5{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.318720pt;}
.ls3{letter-spacing:0.371840pt;}
.ls4{letter-spacing:0.424960pt;}
.ls6{letter-spacing:0.478080pt;}
.ls14{letter-spacing:0.584320pt;}
.ls15{letter-spacing:1.062400pt;}
.ls13{letter-spacing:1.408000pt;}
.ls12{letter-spacing:8.960000pt;}
.lse{letter-spacing:48.768000pt;}
.lsf{letter-spacing:753.920000pt;}
.ws0{word-spacing:-12.736000pt;}
.ws1{word-spacing:-10.942720pt;}
.ws2{word-spacing:-10.889600pt;}
.ws16{word-spacing:-9.600000pt;}
.ws27{word-spacing:-8.320000pt;}
.ws2a{word-spacing:-7.680000pt;}
.ws41{word-spacing:-6.400000pt;}
.wsd{word-spacing:-5.120000pt;}
.ws10{word-spacing:-4.480000pt;}
.ws20{word-spacing:-3.840000pt;}
.ws29{word-spacing:-3.200000pt;}
.ws40{word-spacing:-2.560000pt;}
.ws42{word-spacing:-1.274880pt;}
.ws6{word-spacing:-0.637440pt;}
.ws24{word-spacing:-0.240000pt;}
.ws4{word-spacing:-0.106240pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:0.096000pt;}
.ws25{word-spacing:0.144000pt;}
.ws43{word-spacing:0.531200pt;}
.ws5{word-spacing:2.602880pt;}
.wsb{word-spacing:3.240320pt;}
.wsf{word-spacing:3.840000pt;}
.ws37{word-spacing:4.480000pt;}
.ws1c{word-spacing:5.120000pt;}
.wse{word-spacing:5.760000pt;}
.ws21{word-spacing:6.400000pt;}
.ws7{word-spacing:6.427520pt;}
.ws2d{word-spacing:7.040000pt;}
.ws2b{word-spacing:7.680000pt;}
.wsa{word-spacing:7.702400pt;}
.ws1e{word-spacing:8.320000pt;}
.ws2c{word-spacing:8.960000pt;}
.ws1b{word-spacing:9.600000pt;}
.ws13{word-spacing:11.520000pt;}
.ws8{word-spacing:11.527040pt;}
.ws14{word-spacing:12.800000pt;}
.ws15{word-spacing:14.720000pt;}
.ws30{word-spacing:16.000000pt;}
.ws17{word-spacing:16.640000pt;}
.ws3e{word-spacing:17.280000pt;}
.ws11{word-spacing:19.200000pt;}
.ws3b{word-spacing:21.760000pt;}
.ws32{word-spacing:22.400000pt;}
.ws18{word-spacing:24.320000pt;}
.ws19{word-spacing:25.600000pt;}
.ws35{word-spacing:27.520000pt;}
.ws9{word-spacing:28.153600pt;}
.ws31{word-spacing:28.800000pt;}
.ws26{word-spacing:31.360000pt;}
.ws2e{word-spacing:32.000000pt;}
.ws23{word-spacing:33.280000pt;}
.ws1f{word-spacing:38.400000pt;}
.ws1a{word-spacing:39.040000pt;}
.ws28{word-spacing:43.520000pt;}
.ws39{word-spacing:44.800000pt;}
.ws12{word-spacing:46.720000pt;}
.ws33{word-spacing:48.640000pt;}
.ws3a{word-spacing:49.920000pt;}
.ws1d{word-spacing:51.200000pt;}
.ws38{word-spacing:54.400000pt;}
.ws36{word-spacing:57.600000pt;}
.ws3f{word-spacing:62.080000pt;}
.ws3c{word-spacing:64.000000pt;}
.ws22{word-spacing:69.760000pt;}
.ws3d{word-spacing:83.200000pt;}
.ws2f{word-spacing:92.800000pt;}
.ws34{word-spacing:106.240000pt;}
._2{margin-left:-3.256256pt;}
._4{margin-left:-1.975360pt;}
._3{margin-left:-1.003968pt;}
._0{width:0.896000pt;}
._1{width:1.800768pt;}
._6{width:3.840000pt;}
._7{width:17.280000pt;}
._5{width:19.968000pt;}
._8{width:21.760000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.880000pt;}
.y12d{bottom:104.320000pt;}
.y80{bottom:113.440000pt;}
.y114{bottom:118.560000pt;}
.y60{bottom:119.040000pt;}
.y1b{bottom:120.800000pt;}
.y12c{bottom:125.280000pt;}
.y7f{bottom:134.400000pt;}
.y113{bottom:139.520000pt;}
.ye6{bottom:139.680000pt;}
.y5f{bottom:140.000000pt;}
.ycc{bottom:140.640000pt;}
.y12b{bottom:146.240000pt;}
.y1a{bottom:151.200000pt;}
.y7e{bottom:155.360000pt;}
.yab{bottom:159.840000pt;}
.y112{bottom:160.480000pt;}
.ye5{bottom:160.800000pt;}
.y5e{bottom:161.120000pt;}
.y12a{bottom:167.200000pt;}
.y33{bottom:171.680000pt;}
.ycb{bottom:172.320000pt;}
.y19{bottom:179.398400pt;}
.ye4{bottom:181.760000pt;}
.y7d{bottom:187.040000pt;}
.y146{bottom:189.440000pt;}
.yaa{bottom:191.520000pt;}
.y111{bottom:192.160000pt;}
.y32{bottom:192.800000pt;}
.yca{bottom:193.280000pt;}
.y129{bottom:198.880000pt;}
.ye3{bottom:202.720000pt;}
.y9b{bottom:205.920000pt;}
.y145{bottom:206.918400pt;}
.y18{bottom:207.552000pt;}
.y7c{bottom:208.000000pt;}
.ya9{bottom:212.480000pt;}
.y5d{bottom:213.760000pt;}
.yc9{bottom:214.240000pt;}
.y128{bottom:219.840000pt;}
.ye2{bottom:223.680000pt;}
.y110{bottom:223.840000pt;}
.y31{bottom:224.320000pt;}
.y7b{bottom:228.960000pt;}
.y5c{bottom:234.720000pt;}
.y144{bottom:235.072000pt;}
.yc8{bottom:235.360000pt;}
.y17{bottom:235.705600pt;}
.y9a{bottom:237.600000pt;}
.y127{bottom:240.960000pt;}
.ya8{bottom:244.160000pt;}
.ye1{bottom:244.800000pt;}
.y30{bottom:245.440000pt;}
.y7a{bottom:252.800000pt;}
.y5b{bottom:255.680000pt;}
.y99{bottom:258.560000pt;}
.y126{bottom:261.920000pt;}
.y143{bottom:263.225600pt;}
.y16{bottom:263.859200pt;}
.ya7{bottom:265.120000pt;}
.ye0{bottom:265.760000pt;}
.y10f{bottom:265.920000pt;}
.y2f{bottom:266.400000pt;}
.yc7{bottom:266.880000pt;}
.y79{bottom:273.760000pt;}
.y5a{bottom:276.640000pt;}
.y98{bottom:279.520000pt;}
.y125{bottom:282.880000pt;}
.ydf{bottom:286.720000pt;}
.y10e{bottom:286.880000pt;}
.y2e{bottom:287.360000pt;}
.yc6{bottom:288.000000pt;}
.y142{bottom:291.379200pt;}
.y15{bottom:292.012800pt;}
.y55{bottom:294.240000pt;}
.ya6{bottom:296.800000pt;}
.y78{bottom:297.600000pt;}
.y59{bottom:297.760000pt;}
.y97{bottom:300.640000pt;}
.y124{bottom:303.840000pt;}
.yde{bottom:307.680000pt;}
.y10d{bottom:307.840000pt;}
.y2d{bottom:308.320000pt;}
.ya5{bottom:317.920000pt;}
.y77{bottom:318.400000pt;}
.y141{bottom:319.532800pt;}
.yc5{bottom:319.680000pt;}
.y14{bottom:320.166400pt;}
.y123{bottom:324.800000pt;}
.y54{bottom:325.920000pt;}
.ydd{bottom:328.640000pt;}
.y10c{bottom:328.800000pt;}
.y2c{bottom:329.440000pt;}
.y96{bottom:332.320000pt;}
.yc4{bottom:340.640000pt;}
.y103{bottom:342.720000pt;}
.y122{bottom:345.920000pt;}
.y53{bottom:346.720000pt;}
.y140{bottom:347.686400pt;}
.y13{bottom:348.320000pt;}
.ya4{bottom:349.440000pt;}
.ydc{bottom:349.760000pt;}
.y10b{bottom:349.920000pt;}
.y2b{bottom:350.400000pt;}
.y76{bottom:352.960000pt;}
.y95{bottom:353.120000pt;}
.y52{bottom:370.560000pt;}
.ydb{bottom:370.720000pt;}
.y2a{bottom:371.360000pt;}
.yc3{bottom:372.320000pt;}
.y75{bottom:374.080000pt;}
.y102{bottom:374.240000pt;}
.y13f{bottom:375.840000pt;}
.y12{bottom:376.518240pt;}
.y94{bottom:376.960000pt;}
.y121{bottom:377.440000pt;}
.ya3{bottom:381.120000pt;}
.y10a{bottom:381.440000pt;}
.y51{bottom:391.520000pt;}
.yda{bottom:391.680000pt;}
.y29{bottom:392.320000pt;}
.y74{bottom:395.040000pt;}
.y101{bottom:395.360000pt;}
.y120{bottom:398.560000pt;}
.y93{bottom:400.640000pt;}
.ya2{bottom:402.240000pt;}
.y109{bottom:402.560000pt;}
.yc2{bottom:404.000000pt;}
.y11{bottom:404.671840pt;}
.y13e{bottom:405.280000pt;}
.yd9{bottom:412.640000pt;}
.y58{bottom:413.280000pt;}
.y50{bottom:415.360000pt;}
.y73{bottom:416.000000pt;}
.y100{bottom:416.320000pt;}
.y11f{bottom:419.520000pt;}
.y10{bottom:422.267840pt;}
.ya1{bottom:423.200000pt;}
.y108{bottom:423.520000pt;}
.y28{bottom:424.000000pt;}
.y92{bottom:424.480000pt;}
.yc1{bottom:424.960000pt;}
.y13d{bottom:426.240000pt;}
.yd8{bottom:433.600000pt;}
.y57{bottom:434.400000pt;}
.y4f{bottom:436.320000pt;}
.y72{bottom:436.960000pt;}
.yff{bottom:437.280000pt;}
.yf{bottom:439.704480pt;}
.y11e{bottom:440.480000pt;}
.ya0{bottom:444.160000pt;}
.y107{bottom:444.480000pt;}
.y27{bottom:444.960000pt;}
.y13c{bottom:447.200000pt;}
.yd7{bottom:454.720000pt;}
.y56{bottom:455.360000pt;}
.yc0{bottom:456.640000pt;}
.ye{bottom:457.141120pt;}
.yfe{bottom:458.240000pt;}
.y91{bottom:458.880000pt;}
.y4e{bottom:460.160000pt;}
.y11d{bottom:461.440000pt;}
.y9f{bottom:465.120000pt;}
.y106{bottom:465.440000pt;}
.y26{bottom:466.080000pt;}
.y13b{bottom:468.320000pt;}
.y71{bottom:468.640000pt;}
.yd{bottom:474.737120pt;}
.yd6{bottom:475.680000pt;}
.ybf{bottom:477.600000pt;}
.y4d{bottom:480.960000pt;}
.y11c{bottom:482.560000pt;}
.y105{bottom:486.560000pt;}
.y25{bottom:487.040000pt;}
.y13a{bottom:489.280000pt;}
.yfd{bottom:489.920000pt;}
.y90{bottom:490.560000pt;}
.yc{bottom:492.173760pt;}
.y9e{bottom:496.800000pt;}
.y70{bottom:500.320000pt;}
.y11b{bottom:503.520000pt;}
.y4c{bottom:504.800000pt;}
.yd5{bottom:507.360000pt;}
.y104{bottom:507.520000pt;}
.y24{bottom:508.000000pt;}
.ybe{bottom:509.280000pt;}
.yb{bottom:509.610400pt;}
.y139{bottom:510.240000pt;}
.yfc{bottom:510.880000pt;}
.y8f{bottom:522.240000pt;}
.y11a{bottom:524.480000pt;}
.ya{bottom:527.206400pt;}
.yd4{bottom:528.320000pt;}
.y9d{bottom:528.480000pt;}
.y23{bottom:528.960000pt;}
.ybd{bottom:530.240000pt;}
.y138{bottom:531.200000pt;}
.y6f{bottom:532.000000pt;}
.y4b{bottom:539.360000pt;}
.yd3{bottom:549.280000pt;}
.y22{bottom:549.920000pt;}
.y137{bottom:552.320000pt;}
.yfb{bottom:552.960000pt;}
.y8e{bottom:553.920000pt;}
.y9{bottom:555.360000pt;}
.y119{bottom:556.160000pt;}
.y4a{bottom:560.320000pt;}
.y9c{bottom:561.440000pt;}
.ybc{bottom:561.920000pt;}
.y6e{bottom:563.680000pt;}
.yd2{bottom:570.240000pt;}
.y21{bottom:571.040000pt;}
.yfa{bottom:573.920000pt;}
.y8d{bottom:574.880000pt;}
.y8{bottom:583.040000pt;}
.y47{bottom:583.520000pt;}
.y136{bottom:583.840000pt;}
.y118{bottom:587.840000pt;}
.yd1{bottom:591.360000pt;}
.y20{bottom:592.000000pt;}
.ybb{bottom:593.600000pt;}
.yf9{bottom:594.880000pt;}
.y6d{bottom:595.360000pt;}
.y8c{bottom:606.560000pt;}
.y7{bottom:608.000000pt;}
.yba{bottom:614.560000pt;}
.y46{bottom:615.200000pt;}
.y135{bottom:615.520000pt;}
.yf8{bottom:615.840000pt;}
.y117{bottom:619.520000pt;}
.yd0{bottom:623.040000pt;}
.y1f{bottom:623.680000pt;}
.y6c{bottom:625.120000pt;}
.y8b{bottom:627.520000pt;}
.y45{bottom:636.160000pt;}
.y134{bottom:636.640000pt;}
.yf7{bottom:636.960000pt;}
.yb9{bottom:646.240000pt;}
.y6b{bottom:650.080000pt;}
.y116{bottom:652.320000pt;}
.y49{bottom:653.600000pt;}
.ycf{bottom:654.560000pt;}
.y1e{bottom:655.360000pt;}
.y44{bottom:657.120000pt;}
.y133{bottom:657.600000pt;}
.yf6{bottom:657.920000pt;}
.y8a{bottom:659.200000pt;}
.yb8{bottom:667.200000pt;}
.y43{bottom:678.240000pt;}
.y48{bottom:678.400000pt;}
.y132{bottom:678.560000pt;}
.yf5{bottom:678.880000pt;}
.y89{bottom:680.320000pt;}
.yce{bottom:684.480000pt;}
.y1d{bottom:685.120000pt;}
.yb7{bottom:688.160000pt;}
.y42{bottom:699.200000pt;}
.y131{bottom:699.520000pt;}
.yf4{bottom:699.840000pt;}
.ycd{bottom:709.440000pt;}
.y1c{bottom:710.080000pt;}
.y88{bottom:711.840000pt;}
.yb6{bottom:719.840000pt;}
.y41{bottom:720.160000pt;}
.yf3{bottom:720.960000pt;}
.y130{bottom:731.200000pt;}
.y40{bottom:741.120000pt;}
.yf2{bottom:741.920000pt;}
.y87{bottom:743.520000pt;}
.yb5{bottom:751.520000pt;}
.y115{bottom:752.160000pt;}
.y3f{bottom:762.080000pt;}
.yf1{bottom:762.880000pt;}
.y12f{bottom:773.280000pt;}
.y86{bottom:775.200000pt;}
.yb4{bottom:783.200000pt;}
.y6a{bottom:783.520000pt;}
.yf0{bottom:783.840000pt;}
.y3e{bottom:793.760000pt;}
.y12e{bottom:794.240000pt;}
.y85{bottom:796.160000pt;}
.yb3{bottom:804.160000pt;}
.yef{bottom:804.800000pt;}
.y3d{bottom:814.720000pt;}
.y69{bottom:815.200000pt;}
.y84{bottom:820.000000pt;}
.yb2{bottom:825.120000pt;}
.yee{bottom:825.920000pt;}
.y68{bottom:836.160000pt;}
.y3c{bottom:838.560000pt;}
.y83{bottom:840.800000pt;}
.yed{bottom:846.880000pt;}
.yb1{bottom:856.800000pt;}
.y67{bottom:857.120000pt;}
.y3b{bottom:859.360000pt;}
.y82{bottom:864.800000pt;}
.yec{bottom:867.840000pt;}
.yb0{bottom:877.760000pt;}
.y66{bottom:878.240000pt;}
.y3a{bottom:883.360000pt;}
.y81{bottom:885.600000pt;}
.yeb{bottom:888.800000pt;}
.y65{bottom:899.200000pt;}
.y39{bottom:904.320000pt;}
.yaf{bottom:909.440000pt;}
.yea{bottom:909.760000pt;}
.y64{bottom:920.160000pt;}
.y38{bottom:925.280000pt;}
.yae{bottom:930.560000pt;}
.ye9{bottom:930.880000pt;}
.y63{bottom:941.120000pt;}
.y6{bottom:945.760000pt;}
.y37{bottom:946.240000pt;}
.yad{bottom:951.520000pt;}
.ye8{bottom:951.840000pt;}
.y62{bottom:962.080000pt;}
.y36{bottom:970.080000pt;}
.ye7{bottom:972.800000pt;}
.y5{bottom:980.960000pt;}
.yac{bottom:983.200000pt;}
.y35{bottom:991.040000pt;}
.y61{bottom:993.760000pt;}
.y34{bottom:1012.000000pt;}
.y4{bottom:1014.880000pt;}
.y2{bottom:1043.200000pt;}
.y1{bottom:1060.320000pt;}
.h7{height:32.320312pt;}
.h3{height:35.404688pt;}
.h8{height:37.505625pt;}
.h9{height:41.396250pt;}
.h2{height:42.656250pt;}
.ha{height:45.187500pt;}
.h4{height:49.875000pt;}
.h6{height:52.869375pt;}
.h5{height:58.353750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x6{left:137.440000pt;}
.x7{left:161.440000pt;}
.x3{left:290.400000pt;}
.x2{left:309.120000pt;}
.x8{left:483.040000pt;}
.x5{left:528.960000pt;}
.x4{left:680.000000pt;}
}




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