
    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_6ae0588af632904bc5819b65.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ba3b68ef4db762d584da695.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23395042de4eeea1b2f824cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_1076414245cd78820d46ca8c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_f584dfdf6785abff2d864140.woff')format("woff");}.ff5{font-family:ff5;line-height:0.964844;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_da1dc2a4ef2fcd98682ce618.woff')format("woff");}.ff6{font-family:ff6;line-height:0.880371;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_17844914457fae11c2171175.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_90ef8ea78092e450d5884465.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_bc6b17069df600905b90de2d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_d9ebbc3417806697e5b41452.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_090e2451366c6bdb147dd711.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.ls12{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.760000px;}
.ls6{letter-spacing:8.640000px;}
.lse{letter-spacing:11.520000px;}
.ls10{letter-spacing:18.720000px;}
.lsa{letter-spacing:33.960000px;}
.lsd{letter-spacing:64.002720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-98.856000px;}
._1c{margin-left:-6.264000px;}
._18{margin-left:-4.579920px;}
._10{margin-left:-3.052080px;}
._0{margin-left:-1.267920px;}
._2{width:1.056000px;}
._1{width:2.335440px;}
._8{width:4.278240px;}
._9{width:5.976000px;}
._a{width:7.368000px;}
._15{width:8.808000px;}
._b{width:10.008000px;}
._13{width:11.880000px;}
._14{width:12.960000px;}
._7{width:13.968000px;}
._17{width:15.192000px;}
._1b{width:16.800000px;}
._6{width:19.800000px;}
._c{width:21.168000px;}
._d{width:22.416000px;}
._11{width:23.424000px;}
._30{width:24.456000px;}
._19{width:25.992000px;}
._e{width:27.576000px;}
._f{width:28.656000px;}
._28{width:29.736000px;}
._12{width:30.888000px;}
._3{width:32.064000px;}
._31{width:33.931920px;}
._16{width:35.640000px;}
._1a{width:37.411920px;}
._24{width:39.024000px;}
._25{width:40.176000px;}
._20{width:47.736000px;}
._21{width:48.888000px;}
._22{width:59.040000px;}
._1d{width:63.864000px;}
._27{width:73.728000px;}
._1f{width:80.424000px;}
._4{width:83.380080px;}
._29{width:95.832000px;}
._2a{width:96.840000px;}
._23{width:97.992000px;}
._2d{width:109.512000px;}
._2e{width:110.664000px;}
._2b{width:114.336000px;}
._2f{width:116.496000px;}
._1e{width:140.184000px;}
._2c{width:142.776000px;}
._26{width:210.168000px;}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(237,125,49);}
.fc3{color:rgb(13,13,13);}
.fca{color:rgb(244,244,244);}
.fc5{color:rgb(205,196,214);}
.fc6{color:rgb(225,216,236);}
.fc7{color:rgb(153,142,164);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(180,172,188);}
.fc8{color:rgb(243,238,248);}
.fc9{color:rgb(0,166,237);}
.fcd{color:rgb(0,0,255);}
.fcb{color:transparent;}
.fcc{color:rgb(255,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:77.904000px;}
.fs0{font-size:84.240000px;}
.yd{bottom:-17.280000px;}
.y2e{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.954000px;}
.yba{bottom:3.960000px;}
.ycb{bottom:5.580000px;}
.yca{bottom:6.300000px;}
.yc{bottom:7.740000px;}
.y2d{bottom:7.920000px;}
.yde{bottom:8.460000px;}
.ya8{bottom:19.620000px;}
.ya5{bottom:20.520000px;}
.yaa{bottom:20.700000px;}
.yc1{bottom:24.654000px;}
.yb9{bottom:24.660000px;}
.yd2{bottom:24.705000px;}
.y2b{bottom:26.100000px;}
.yc9{bottom:27.000000px;}
.yb7{bottom:28.620000px;}
.ydc{bottom:29.160000px;}
.yb{bottom:31.536000px;}
.y2c{bottom:31.680000px;}
.ya{bottom:40.500000px;}
.y2a{bottom:43.200000px;}
.ycd{bottom:45.360000px;}
.yd1{bottom:45.405000px;}
.yb6{bottom:49.320000px;}
.ydb{bottom:49.860000px;}
.y9{bottom:58.356000px;}
.y29{bottom:64.836000px;}
.y8{bottom:79.056000px;}
.y28{bottom:85.896000px;}
.y7{bottom:100.116000px;}
.y27{bottom:106.056000px;}
.y105{bottom:127.116000px;}
.yc3{bottom:127.476000px;}
.y71{bottom:130.536000px;}
.y59{bottom:133.776000px;}
.yf3{bottom:142.416000px;}
.y104{bottom:147.816000px;}
.yc0{bottom:148.176000px;}
.y70{bottom:151.230000px;}
.y58{bottom:154.470000px;}
.ye5{bottom:156.450000px;}
.yf4{bottom:163.110000px;}
.y103{bottom:168.510000px;}
.y6f{bottom:171.930000px;}
.ye4{bottom:173.910000px;}
.y57{bottom:175.170000px;}
.yd6{bottom:177.690000px;}
.y88{bottom:179.310000px;}
.y126{bottom:182.730000px;}
.yf1{bottom:183.810000px;}
.y102{bottom:189.210000px;}
.ybf{bottom:189.570000px;}
.y6e{bottom:192.630000px;}
.ye3{bottom:194.610000px;}
.yd5{bottom:195.150000px;}
.y56{bottom:195.870000px;}
.y87{bottom:200.010000px;}
.y125{bottom:203.430000px;}
.yf2{bottom:204.510000px;}
.y6d{bottom:213.330000px;}
.yd4{bottom:215.850000px;}
.y55{bottom:216.570000px;}
.y86{bottom:220.710000px;}
.y101{bottom:221.970000px;}
.y124{bottom:224.130000px;}
.yf0{bottom:225.210000px;}
.ybe{bottom:230.970000px;}
.y6c{bottom:234.030000px;}
.ye2{bottom:236.010000px;}
.y54{bottom:237.270000px;}
.y100{bottom:242.670000px;}
.y111{bottom:245.910000px;}
.y85{bottom:253.470000px;}
.y9e{bottom:254.730000px;}
.y123{bottom:256.710000px;}
.yd3{bottom:257.250000px;}
.y10b{bottom:257.970000px;}
.yff{bottom:263.370000px;}
.y6b{bottom:266.610000px;}
.y53{bottom:270.030000px;}
.ybd{bottom:272.370000px;}
.y84{bottom:274.170000px;}
.y122{bottom:277.410000px;}
.y10a{bottom:278.670000px;}
.yfe{bottom:284.070000px;}
.y6a{bottom:287.310000px;}
.yef{bottom:288.030000px;}
.y52{bottom:290.730000px;}
.ye1{bottom:298.110000px;}
.yd0{bottom:298.650000px;}
.y109{bottom:299.370000px;}
.yfd{bottom:304.770000px;}
.y83{bottom:306.930000px;}
.y69{bottom:308.010000px;}
.y121{bottom:310.215000px;}
.y51{bottom:311.475000px;}
.ybc{bottom:313.815000px;}
.yfc{bottom:325.515000px;}
.y82{bottom:327.675000px;}
.y68{bottom:328.755000px;}
.y120{bottom:330.915000px;}
.y50{bottom:332.175000px;}
.yee{bottom:346.215000px;}
.y67{bottom:349.455000px;}
.y4f{bottom:352.875000px;}
.ybb{bottom:355.215000px;}
.y81{bottom:360.255000px;}
.ycf{bottom:360.795000px;}
.y11f{bottom:363.675000px;}
.yed{bottom:366.915000px;}
.y66{bottom:370.155000px;}
.y4e{bottom:373.575000px;}
.y80{bottom:380.955000px;}
.y26{bottom:383.295000px;}
.y11e{bottom:384.375000px;}
.yfb{bottom:387.615000px;}
.y65{bottom:390.855000px;}
.y4d{bottom:394.275000px;}
.yb5{bottom:397.335000px;}
.yec{bottom:399.675000px;}
.ye0{bottom:401.655000px;}
.yce{bottom:402.195000px;}
.y110{bottom:402.915000px;}
.y25{bottom:403.995000px;}
.y11d{bottom:405.075000px;}
.yfa{bottom:408.315000px;}
.y64{bottom:411.555000px;}
.y7f{bottom:413.715000px;}
.y4c{bottom:414.975000px;}
.yeb{bottom:420.375000px;}
.yb8{bottom:421.995000px;}
.y9d{bottom:432.255000px;}
.y7e{bottom:434.415000px;}
.y108{bottom:435.675000px;}
.y24{bottom:436.575000px;}
.y11c{bottom:437.655000px;}
.yf9{bottom:441.075000px;}
.ycc{bottom:443.595000px;}
.y63{bottom:444.315000px;}
.y4b{bottom:447.555000px;}
.yea{bottom:452.955000px;}
.y107{bottom:456.375000px;}
.y23{bottom:457.275000px;}
.y11b{bottom:458.355000px;}
.yf8{bottom:461.775000px;}
.ydf{bottom:463.755000px;}
.y9c{bottom:465.015000px;}
.y7d{bottom:467.175000px;}
.y4a{bottom:468.255000px;}
.ye9{bottom:473.655000px;}
.y62{bottom:477.075000px;}
.y22{bottom:477.975000px;}
.yb4{bottom:480.135000px;}
.y9b{bottom:485.715000px;}
.y49{bottom:488.955000px;}
.y11a{bottom:491.115000px;}
.ye8{bottom:494.355000px;}
.y61{bottom:497.775000px;}
.y21{bottom:498.675000px;}
.y7c{bottom:499.755000px;}
.yb3{bottom:500.835000px;}
.yda{bottom:505.875000px;}
.y9a{bottom:506.415000px;}
.y48{bottom:509.655000px;}
.y119{bottom:511.815000px;}
.y10f{bottom:518.475000px;}
.y20{bottom:519.375000px;}
.ydd{bottom:526.575000px;}
.y99{bottom:527.115000px;}
.yc8{bottom:528.735000px;}
.y47{bottom:530.355000px;}
.y7b{bottom:532.515000px;}
.yb2{bottom:533.595000px;}
.y10e{bottom:539.175000px;}
.y1f{bottom:540.075000px;}
.y118{bottom:544.575000px;}
.y98{bottom:547.815000px;}
.y46{bottom:551.055000px;}
.y7a{bottom:553.215000px;}
.yb1{bottom:554.295000px;}
.y10d{bottom:559.875000px;}
.y1e{bottom:560.805000px;}
.y117{bottom:565.305000px;}
.y97{bottom:568.545000px;}
.y45{bottom:571.785000px;}
.y1d{bottom:581.505000px;}
.y79{bottom:586.005000px;}
.yb0{bottom:586.905000px;}
.y96{bottom:589.245000px;}
.y44{bottom:592.485000px;}
.ye7{bottom:601.305000px;}
.y1c{bottom:602.205000px;}
.y78{bottom:606.705000px;}
.yaf{bottom:607.605000px;}
.yc7{bottom:609.945000px;}
.y60{bottom:613.185000px;}
.y12d{bottom:615.345000px;}
.y116{bottom:618.585000px;}
.y95{bottom:622.005000px;}
.y1b{bottom:622.905000px;}
.y43{bottom:625.245000px;}
.yae{bottom:628.305000px;}
.y5f{bottom:633.885000px;}
.y77{bottom:639.285000px;}
.y94{bottom:642.705000px;}
.y1a{bottom:643.605000px;}
.y42{bottom:645.945000px;}
.y12c{bottom:647.925000px;}
.yad{bottom:649.005000px;}
.y5e{bottom:654.585000px;}
.y76{bottom:659.985000px;}
.y93{bottom:663.405000px;}
.y19{bottom:664.305000px;}
.y41{bottom:666.645000px;}
.yac{bottom:669.705000px;}
.y115{bottom:672.045000px;}
.y5d{bottom:675.285000px;}
.y12b{bottom:680.685000px;}
.y92{bottom:683.925000px;}
.y18{bottom:685.005000px;}
.y40{bottom:687.345000px;}
.yab{bottom:690.405000px;}
.y75{bottom:692.745000px;}
.yc6{bottom:695.985000px;}
.y12a{bottom:701.385000px;}
.y91{bottom:704.625000px;}
.y17{bottom:705.705000px;}
.ya9{bottom:707.865000px;}
.y3f{bottom:708.045000px;}
.y114{bottom:713.445000px;}
.yc5{bottom:716.685000px;}
.y74{bottom:725.325000px;}
.y16{bottom:726.405000px;}
.y3e{bottom:728.745000px;}
.y129{bottom:734.145000px;}
.yc4{bottom:737.385000px;}
.ya7{bottom:745.305000px;}
.y90{bottom:746.025000px;}
.y15{bottom:747.105000px;}
.y3d{bottom:749.445000px;}
.y128{bottom:754.845000px;}
.y73{bottom:758.085000px;}
.y106{bottom:761.325000px;}
.y113{bottom:766.725000px;}
.y3c{bottom:770.145000px;}
.y72{bottom:778.785000px;}
.y14{bottom:779.865000px;}
.ya6{bottom:781.665000px;}
.ye6{bottom:782.025000px;}
.y112{bottom:787.425000px;}
.y3b{bottom:790.845000px;}
.y8f{bottom:799.485000px;}
.yd9{bottom:802.725000px;}
.y127{bottom:808.125000px;}
.y3a{bottom:811.590000px;}
.y13{bottom:813.210000px;}
.ya4{bottom:819.690000px;}
.y8e{bottom:820.230000px;}
.yd8{bottom:823.470000px;}
.y5c{bottom:832.290000px;}
.y12{bottom:836.610000px;}
.y8d{bottom:840.930000px;}
.y39{bottom:844.170000px;}
.y5b{bottom:852.990000px;}
.y11{bottom:857.310000px;}
.y8c{bottom:861.630000px;}
.y38{bottom:864.870000px;}
.ya3{bottom:873.690000px;}
.y10{bottom:878.010000px;}
.y8b{bottom:882.330000px;}
.y37{bottom:885.570000px;}
.yf7{bottom:894.390000px;}
.y10c{bottom:897.630000px;}
.y36{bottom:906.270000px;}
.yf{bottom:910.590000px;}
.y8a{bottom:915.090000px;}
.yd7{bottom:918.330000px;}
.y35{bottom:926.970000px;}
.ye{bottom:931.290000px;}
.yf6{bottom:935.790000px;}
.ya2{bottom:939.030000px;}
.y34{bottom:947.670000px;}
.y6{bottom:952.530000px;}
.yf5{bottom:956.490000px;}
.ya1{bottom:959.730000px;}
.y33{bottom:968.370000px;}
.y5{bottom:972.690000px;}
.ya0{bottom:980.430000px;}
.y32{bottom:989.070000px;}
.y9f{bottom:1001.130000px;}
.y31{bottom:1009.770000px;}
.y4{bottom:1013.190000px;}
.y89{bottom:1021.830000px;}
.y30{bottom:1030.470000px;}
.y5a{bottom:1042.530000px;}
.y3{bottom:1055.670000px;}
.y2f{bottom:1063.260000px;}
.y2{bottom:1079.280000px;}
.y1{bottom:1114.380000px;}
.h17{height:20.700000px;}
.h1a{height:22.320000px;}
.h15{height:24.660000px;}
.h11{height:36.360000px;}
.hf{height:37.260000px;}
.h10{height:37.296000px;}
.h12{height:37.440000px;}
.h14{height:41.400000px;}
.h16{height:41.436000px;}
.h19{height:43.776000px;}
.h1e{height:45.936000px;}
.h7{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.he{height:52.417969px;}
.h6{height:54.000000px;}
.h9{height:54.316406px;}
.ha{height:57.796523px;}
.hd{height:58.320000px;}
.h8{height:58.428000px;}
.hc{height:58.429688px;}
.hb{height:59.343750px;}
.h3{height:59.436914px;}
.h1b{height:62.100000px;}
.h1c{height:62.136000px;}
.h5{height:65.884219px;}
.h13{height:66.060000px;}
.h18{height:66.096000px;}
.h1d{height:66.636000px;}
.h1{height:71.613281px;}
.h0{height:1188.000000px;}
.w6{width:44.280000px;}
.w11{width:46.836000px;}
.wf{width:47.340000px;}
.wb{width:47.700000px;}
.wc{width:47.736000px;}
.w12{width:54.180000px;}
.w13{width:57.240000px;}
.w10{width:60.660000px;}
.we{width:74.196000px;}
.wa{width:87.300000px;}
.w9{width:95.400000px;}
.w8{width:95.436000px;}
.wd{width:114.300000px;}
.w2{width:116.460000px;}
.w14{width:138.276000px;}
.w3{width:157.530000px;}
.w4{width:200.730000px;}
.w5{width:212.610000px;}
.w7{width:284.250000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:8.100000px;}
.x6{left:10.799986px;}
.x31{left:12.270000px;}
.x41{left:13.905000px;}
.x3b{left:15.300000px;}
.x2f{left:17.280000px;}
.x40{left:18.540000px;}
.x2b{left:19.620000px;}
.x21{left:22.140000px;}
.x7{left:23.219986px;}
.x36{left:24.480000px;}
.x28{left:27.000000px;}
.x27{left:28.080000px;}
.x12{left:29.160000px;}
.x1d{left:31.680000px;}
.x2d{left:34.200000px;}
.x14{left:36.720000px;}
.x1e{left:38.520000px;}
.x19{left:39.780000px;}
.x35{left:43.560000px;}
.x16{left:44.640000px;}
.x18{left:46.620000px;}
.x29{left:47.700000px;}
.x1a{left:65.160000px;}
.x34{left:78.480000px;}
.x25{left:83.880000px;}
.x1f{left:86.760000px;}
.x1b{left:91.260000px;}
.x20{left:92.700000px;}
.x1c{left:97.245000px;}
.x4{left:108.035986px;}
.x9{left:131.615986px;}
.x10{left:135.035986px;}
.x24{left:142.245000px;}
.x23{left:152.310000px;}
.x11{left:162.029986px;}
.x1{left:176.249986px;}
.xc{left:211.529986px;}
.x37{left:222.330000px;}
.x13{left:224.490000px;}
.xd{left:253.289986px;}
.xa{left:254.549986px;}
.xb{left:279.029986px;}
.x2{left:282.449986px;}
.x38{left:296.535000px;}
.xe{left:342.974986px;}
.x15{left:382.035000px;}
.x39{left:404.535000px;}
.x26{left:436.575000px;}
.x3a{left:452.235000px;}
.x8{left:459.074986px;}
.x30{left:484.275000px;}
.x3c{left:499.065000px;}
.x2a{left:532.005000px;}
.x3d{left:553.245000px;}
.x32{left:579.705000px;}
.x17{left:582.765000px;}
.x3e{left:613.905000px;}
.x2c{left:627.405000px;}
.x3f{left:671.145000px;}
.x33{left:675.105000px;}
.x2e{left:722.850000px;}
.x5{left:771.089986px;}
.xf{left:793.409986px;}
.x3{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls12{letter-spacing:3.840000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls6{letter-spacing:7.680000pt;}
.lse{letter-spacing:10.240000pt;}
.ls10{letter-spacing:16.640000pt;}
.lsa{letter-spacing:30.186667pt;}
.lsd{letter-spacing:56.891307pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.534613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-87.872000pt;}
._1c{margin-left:-5.568000pt;}
._18{margin-left:-4.071040pt;}
._10{margin-left:-2.712960pt;}
._0{margin-left:-1.127040pt;}
._2{width:0.938667pt;}
._1{width:2.075947pt;}
._8{width:3.802880pt;}
._9{width:5.312000pt;}
._a{width:6.549333pt;}
._15{width:7.829333pt;}
._b{width:8.896000pt;}
._13{width:10.560000pt;}
._14{width:11.520000pt;}
._7{width:12.416000pt;}
._17{width:13.504000pt;}
._1b{width:14.933333pt;}
._6{width:17.600000pt;}
._c{width:18.816000pt;}
._d{width:19.925333pt;}
._11{width:20.821333pt;}
._30{width:21.738667pt;}
._19{width:23.104000pt;}
._e{width:24.512000pt;}
._f{width:25.472000pt;}
._28{width:26.432000pt;}
._12{width:27.456000pt;}
._3{width:28.501333pt;}
._31{width:30.161707pt;}
._16{width:31.680000pt;}
._1a{width:33.255040pt;}
._24{width:34.688000pt;}
._25{width:35.712000pt;}
._20{width:42.432000pt;}
._21{width:43.456000pt;}
._22{width:52.480000pt;}
._1d{width:56.768000pt;}
._27{width:65.536000pt;}
._1f{width:71.488000pt;}
._4{width:74.115627pt;}
._29{width:85.184000pt;}
._2a{width:86.080000pt;}
._23{width:87.104000pt;}
._2d{width:97.344000pt;}
._2e{width:98.368000pt;}
._2b{width:101.632000pt;}
._2f{width:103.552000pt;}
._1e{width:124.608000pt;}
._2c{width:126.912000pt;}
._26{width:186.816000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:69.248000pt;}
.fs0{font-size:74.880000pt;}
.yd{bottom:-15.360000pt;}
.y2e{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:3.514667pt;}
.yba{bottom:3.520000pt;}
.ycb{bottom:4.960000pt;}
.yca{bottom:5.600000pt;}
.yc{bottom:6.880000pt;}
.y2d{bottom:7.040000pt;}
.yde{bottom:7.520000pt;}
.ya8{bottom:17.440000pt;}
.ya5{bottom:18.240000pt;}
.yaa{bottom:18.400000pt;}
.yc1{bottom:21.914667pt;}
.yb9{bottom:21.920000pt;}
.yd2{bottom:21.960000pt;}
.y2b{bottom:23.200000pt;}
.yc9{bottom:24.000000pt;}
.yb7{bottom:25.440000pt;}
.ydc{bottom:25.920000pt;}
.yb{bottom:28.032000pt;}
.y2c{bottom:28.160000pt;}
.ya{bottom:36.000000pt;}
.y2a{bottom:38.400000pt;}
.ycd{bottom:40.320000pt;}
.yd1{bottom:40.360000pt;}
.yb6{bottom:43.840000pt;}
.ydb{bottom:44.320000pt;}
.y9{bottom:51.872000pt;}
.y29{bottom:57.632000pt;}
.y8{bottom:70.272000pt;}
.y28{bottom:76.352000pt;}
.y7{bottom:88.992000pt;}
.y27{bottom:94.272000pt;}
.y105{bottom:112.992000pt;}
.yc3{bottom:113.312000pt;}
.y71{bottom:116.032000pt;}
.y59{bottom:118.912000pt;}
.yf3{bottom:126.592000pt;}
.y104{bottom:131.392000pt;}
.yc0{bottom:131.712000pt;}
.y70{bottom:134.426667pt;}
.y58{bottom:137.306667pt;}
.ye5{bottom:139.066667pt;}
.yf4{bottom:144.986667pt;}
.y103{bottom:149.786667pt;}
.y6f{bottom:152.826667pt;}
.ye4{bottom:154.586667pt;}
.y57{bottom:155.706667pt;}
.yd6{bottom:157.946667pt;}
.y88{bottom:159.386667pt;}
.y126{bottom:162.426667pt;}
.yf1{bottom:163.386667pt;}
.y102{bottom:168.186667pt;}
.ybf{bottom:168.506667pt;}
.y6e{bottom:171.226667pt;}
.ye3{bottom:172.986667pt;}
.yd5{bottom:173.466667pt;}
.y56{bottom:174.106667pt;}
.y87{bottom:177.786667pt;}
.y125{bottom:180.826667pt;}
.yf2{bottom:181.786667pt;}
.y6d{bottom:189.626667pt;}
.yd4{bottom:191.866667pt;}
.y55{bottom:192.506667pt;}
.y86{bottom:196.186667pt;}
.y101{bottom:197.306667pt;}
.y124{bottom:199.226667pt;}
.yf0{bottom:200.186667pt;}
.ybe{bottom:205.306667pt;}
.y6c{bottom:208.026667pt;}
.ye2{bottom:209.786667pt;}
.y54{bottom:210.906667pt;}
.y100{bottom:215.706667pt;}
.y111{bottom:218.586667pt;}
.y85{bottom:225.306667pt;}
.y9e{bottom:226.426667pt;}
.y123{bottom:228.186667pt;}
.yd3{bottom:228.666667pt;}
.y10b{bottom:229.306667pt;}
.yff{bottom:234.106667pt;}
.y6b{bottom:236.986667pt;}
.y53{bottom:240.026667pt;}
.ybd{bottom:242.106667pt;}
.y84{bottom:243.706667pt;}
.y122{bottom:246.586667pt;}
.y10a{bottom:247.706667pt;}
.yfe{bottom:252.506667pt;}
.y6a{bottom:255.386667pt;}
.yef{bottom:256.026667pt;}
.y52{bottom:258.426667pt;}
.ye1{bottom:264.986667pt;}
.yd0{bottom:265.466667pt;}
.y109{bottom:266.106667pt;}
.yfd{bottom:270.906667pt;}
.y83{bottom:272.826667pt;}
.y69{bottom:273.786667pt;}
.y121{bottom:275.746667pt;}
.y51{bottom:276.866667pt;}
.ybc{bottom:278.946667pt;}
.yfc{bottom:289.346667pt;}
.y82{bottom:291.266667pt;}
.y68{bottom:292.226667pt;}
.y120{bottom:294.146667pt;}
.y50{bottom:295.266667pt;}
.yee{bottom:307.746667pt;}
.y67{bottom:310.626667pt;}
.y4f{bottom:313.666667pt;}
.ybb{bottom:315.746667pt;}
.y81{bottom:320.226667pt;}
.ycf{bottom:320.706667pt;}
.y11f{bottom:323.266667pt;}
.yed{bottom:326.146667pt;}
.y66{bottom:329.026667pt;}
.y4e{bottom:332.066667pt;}
.y80{bottom:338.626667pt;}
.y26{bottom:340.706667pt;}
.y11e{bottom:341.666667pt;}
.yfb{bottom:344.546667pt;}
.y65{bottom:347.426667pt;}
.y4d{bottom:350.466667pt;}
.yb5{bottom:353.186667pt;}
.yec{bottom:355.266667pt;}
.ye0{bottom:357.026667pt;}
.yce{bottom:357.506667pt;}
.y110{bottom:358.146667pt;}
.y25{bottom:359.106667pt;}
.y11d{bottom:360.066667pt;}
.yfa{bottom:362.946667pt;}
.y64{bottom:365.826667pt;}
.y7f{bottom:367.746667pt;}
.y4c{bottom:368.866667pt;}
.yeb{bottom:373.666667pt;}
.yb8{bottom:375.106667pt;}
.y9d{bottom:384.226667pt;}
.y7e{bottom:386.146667pt;}
.y108{bottom:387.266667pt;}
.y24{bottom:388.066667pt;}
.y11c{bottom:389.026667pt;}
.yf9{bottom:392.066667pt;}
.ycc{bottom:394.306667pt;}
.y63{bottom:394.946667pt;}
.y4b{bottom:397.826667pt;}
.yea{bottom:402.626667pt;}
.y107{bottom:405.666667pt;}
.y23{bottom:406.466667pt;}
.y11b{bottom:407.426667pt;}
.yf8{bottom:410.466667pt;}
.ydf{bottom:412.226667pt;}
.y9c{bottom:413.346667pt;}
.y7d{bottom:415.266667pt;}
.y4a{bottom:416.226667pt;}
.ye9{bottom:421.026667pt;}
.y62{bottom:424.066667pt;}
.y22{bottom:424.866667pt;}
.yb4{bottom:426.786667pt;}
.y9b{bottom:431.746667pt;}
.y49{bottom:434.626667pt;}
.y11a{bottom:436.546667pt;}
.ye8{bottom:439.426667pt;}
.y61{bottom:442.466667pt;}
.y21{bottom:443.266667pt;}
.y7c{bottom:444.226667pt;}
.yb3{bottom:445.186667pt;}
.yda{bottom:449.666667pt;}
.y9a{bottom:450.146667pt;}
.y48{bottom:453.026667pt;}
.y119{bottom:454.946667pt;}
.y10f{bottom:460.866667pt;}
.y20{bottom:461.666667pt;}
.ydd{bottom:468.066667pt;}
.y99{bottom:468.546667pt;}
.yc8{bottom:469.986667pt;}
.y47{bottom:471.426667pt;}
.y7b{bottom:473.346667pt;}
.yb2{bottom:474.306667pt;}
.y10e{bottom:479.266667pt;}
.y1f{bottom:480.066667pt;}
.y118{bottom:484.066667pt;}
.y98{bottom:486.946667pt;}
.y46{bottom:489.826667pt;}
.y7a{bottom:491.746667pt;}
.yb1{bottom:492.706667pt;}
.y10d{bottom:497.666667pt;}
.y1e{bottom:498.493333pt;}
.y117{bottom:502.493333pt;}
.y97{bottom:505.373333pt;}
.y45{bottom:508.253333pt;}
.y1d{bottom:516.893333pt;}
.y79{bottom:520.893333pt;}
.yb0{bottom:521.693333pt;}
.y96{bottom:523.773333pt;}
.y44{bottom:526.653333pt;}
.ye7{bottom:534.493333pt;}
.y1c{bottom:535.293333pt;}
.y78{bottom:539.293333pt;}
.yaf{bottom:540.093333pt;}
.yc7{bottom:542.173333pt;}
.y60{bottom:545.053333pt;}
.y12d{bottom:546.973333pt;}
.y116{bottom:549.853333pt;}
.y95{bottom:552.893333pt;}
.y1b{bottom:553.693333pt;}
.y43{bottom:555.773333pt;}
.yae{bottom:558.493333pt;}
.y5f{bottom:563.453333pt;}
.y77{bottom:568.253333pt;}
.y94{bottom:571.293333pt;}
.y1a{bottom:572.093333pt;}
.y42{bottom:574.173333pt;}
.y12c{bottom:575.933333pt;}
.yad{bottom:576.893333pt;}
.y5e{bottom:581.853333pt;}
.y76{bottom:586.653333pt;}
.y93{bottom:589.693333pt;}
.y19{bottom:590.493333pt;}
.y41{bottom:592.573333pt;}
.yac{bottom:595.293333pt;}
.y115{bottom:597.373333pt;}
.y5d{bottom:600.253333pt;}
.y12b{bottom:605.053333pt;}
.y92{bottom:607.933333pt;}
.y18{bottom:608.893333pt;}
.y40{bottom:610.973333pt;}
.yab{bottom:613.693333pt;}
.y75{bottom:615.773333pt;}
.yc6{bottom:618.653333pt;}
.y12a{bottom:623.453333pt;}
.y91{bottom:626.333333pt;}
.y17{bottom:627.293333pt;}
.ya9{bottom:629.213333pt;}
.y3f{bottom:629.373333pt;}
.y114{bottom:634.173333pt;}
.yc5{bottom:637.053333pt;}
.y74{bottom:644.733333pt;}
.y16{bottom:645.693333pt;}
.y3e{bottom:647.773333pt;}
.y129{bottom:652.573333pt;}
.yc4{bottom:655.453333pt;}
.ya7{bottom:662.493333pt;}
.y90{bottom:663.133333pt;}
.y15{bottom:664.093333pt;}
.y3d{bottom:666.173333pt;}
.y128{bottom:670.973333pt;}
.y73{bottom:673.853333pt;}
.y106{bottom:676.733333pt;}
.y113{bottom:681.533333pt;}
.y3c{bottom:684.573333pt;}
.y72{bottom:692.253333pt;}
.y14{bottom:693.213333pt;}
.ya6{bottom:694.813333pt;}
.ye6{bottom:695.133333pt;}
.y112{bottom:699.933333pt;}
.y3b{bottom:702.973333pt;}
.y8f{bottom:710.653333pt;}
.yd9{bottom:713.533333pt;}
.y127{bottom:718.333333pt;}
.y3a{bottom:721.413333pt;}
.y13{bottom:722.853333pt;}
.ya4{bottom:728.613333pt;}
.y8e{bottom:729.093333pt;}
.yd8{bottom:731.973333pt;}
.y5c{bottom:739.813333pt;}
.y12{bottom:743.653333pt;}
.y8d{bottom:747.493333pt;}
.y39{bottom:750.373333pt;}
.y5b{bottom:758.213333pt;}
.y11{bottom:762.053333pt;}
.y8c{bottom:765.893333pt;}
.y38{bottom:768.773333pt;}
.ya3{bottom:776.613333pt;}
.y10{bottom:780.453333pt;}
.y8b{bottom:784.293333pt;}
.y37{bottom:787.173333pt;}
.yf7{bottom:795.013333pt;}
.y10c{bottom:797.893333pt;}
.y36{bottom:805.573333pt;}
.yf{bottom:809.413333pt;}
.y8a{bottom:813.413333pt;}
.yd7{bottom:816.293333pt;}
.y35{bottom:823.973333pt;}
.ye{bottom:827.813333pt;}
.yf6{bottom:831.813333pt;}
.ya2{bottom:834.693333pt;}
.y34{bottom:842.373333pt;}
.y6{bottom:846.693333pt;}
.yf5{bottom:850.213333pt;}
.ya1{bottom:853.093333pt;}
.y33{bottom:860.773333pt;}
.y5{bottom:864.613333pt;}
.ya0{bottom:871.493333pt;}
.y32{bottom:879.173333pt;}
.y9f{bottom:889.893333pt;}
.y31{bottom:897.573333pt;}
.y4{bottom:900.613333pt;}
.y89{bottom:908.293333pt;}
.y30{bottom:915.973333pt;}
.y5a{bottom:926.693333pt;}
.y3{bottom:938.373333pt;}
.y2f{bottom:945.120000pt;}
.y2{bottom:959.360000pt;}
.y1{bottom:990.560000pt;}
.h17{height:18.400000pt;}
.h1a{height:19.840000pt;}
.h15{height:21.920000pt;}
.h11{height:32.320000pt;}
.hf{height:33.120000pt;}
.h10{height:33.152000pt;}
.h12{height:33.280000pt;}
.h14{height:36.800000pt;}
.h16{height:36.832000pt;}
.h19{height:38.912000pt;}
.h1e{height:40.832000pt;}
.h7{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.he{height:46.593750pt;}
.h6{height:48.000000pt;}
.h9{height:48.281250pt;}
.ha{height:51.374688pt;}
.hd{height:51.840000pt;}
.h8{height:51.936000pt;}
.hc{height:51.937500pt;}
.hb{height:52.750000pt;}
.h3{height:52.832812pt;}
.h1b{height:55.200000pt;}
.h1c{height:55.232000pt;}
.h5{height:58.563750pt;}
.h13{height:58.720000pt;}
.h18{height:58.752000pt;}
.h1d{height:59.232000pt;}
.h1{height:63.656250pt;}
.h0{height:1056.000000pt;}
.w6{width:39.360000pt;}
.w11{width:41.632000pt;}
.wf{width:42.080000pt;}
.wb{width:42.400000pt;}
.wc{width:42.432000pt;}
.w12{width:48.160000pt;}
.w13{width:50.880000pt;}
.w10{width:53.920000pt;}
.we{width:65.952000pt;}
.wa{width:77.600000pt;}
.w9{width:84.800000pt;}
.w8{width:84.832000pt;}
.wd{width:101.600000pt;}
.w2{width:103.520000pt;}
.w14{width:122.912000pt;}
.w3{width:140.026667pt;}
.w4{width:178.426667pt;}
.w5{width:188.986667pt;}
.w7{width:252.666667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.200000pt;}
.x6{left:9.599988pt;}
.x31{left:10.906667pt;}
.x41{left:12.360000pt;}
.x3b{left:13.600000pt;}
.x2f{left:15.360000pt;}
.x40{left:16.480000pt;}
.x2b{left:17.440000pt;}
.x21{left:19.680000pt;}
.x7{left:20.639988pt;}
.x36{left:21.760000pt;}
.x28{left:24.000000pt;}
.x27{left:24.960000pt;}
.x12{left:25.920000pt;}
.x1d{left:28.160000pt;}
.x2d{left:30.400000pt;}
.x14{left:32.640000pt;}
.x1e{left:34.240000pt;}
.x19{left:35.360000pt;}
.x35{left:38.720000pt;}
.x16{left:39.680000pt;}
.x18{left:41.440000pt;}
.x29{left:42.400000pt;}
.x1a{left:57.920000pt;}
.x34{left:69.760000pt;}
.x25{left:74.560000pt;}
.x1f{left:77.120000pt;}
.x1b{left:81.120000pt;}
.x20{left:82.400000pt;}
.x1c{left:86.440000pt;}
.x4{left:96.031988pt;}
.x9{left:116.991988pt;}
.x10{left:120.031988pt;}
.x24{left:126.440000pt;}
.x23{left:135.386667pt;}
.x11{left:144.026655pt;}
.x1{left:156.666655pt;}
.xc{left:188.026655pt;}
.x37{left:197.626667pt;}
.x13{left:199.546667pt;}
.xd{left:225.146655pt;}
.xa{left:226.266655pt;}
.xb{left:248.026655pt;}
.x2{left:251.066655pt;}
.x38{left:263.586667pt;}
.xe{left:304.866655pt;}
.x15{left:339.586667pt;}
.x39{left:359.586667pt;}
.x26{left:388.066667pt;}
.x3a{left:401.986667pt;}
.x8{left:408.066655pt;}
.x30{left:430.466667pt;}
.x3c{left:443.613333pt;}
.x2a{left:472.893333pt;}
.x3d{left:491.773333pt;}
.x32{left:515.293333pt;}
.x17{left:518.013333pt;}
.x3e{left:545.693333pt;}
.x2c{left:557.693333pt;}
.x3f{left:596.573333pt;}
.x33{left:600.093333pt;}
.x2e{left:642.533333pt;}
.x5{left:685.413321pt;}
.xf{left:705.253321pt;}
.x3{left:720.133321pt;}
}




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