
    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_ddf2470eada7b1aac4a0ad86.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_3023cd3d90d3ac685d9cd1bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_bd4ec6349bf82db4fa072954.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003418;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_204bde4642a481f2958fbb0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_c2cd0a6158048e956494a20d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9fc671a69a6928a6f442be68.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_263493bb6bbcb697c2a5f128.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_15fa2f18140e16d11d8dc8c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003418;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);}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-1.026000px;}
.ls23{letter-spacing:-0.948000px;}
.ls37{letter-spacing:-0.912000px;}
.ls4{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.750000px;}
.ls10{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.537600px;}
.ls1a{letter-spacing:-0.385200px;}
.lsf{letter-spacing:-0.353400px;}
.lsc{letter-spacing:-0.348600px;}
.ls31{letter-spacing:-0.348000px;}
.ls33{letter-spacing:-0.324600px;}
.ls21{letter-spacing:-0.318000px;}
.ls6{letter-spacing:-0.306000px;}
.ls35{letter-spacing:-0.245400px;}
.ls32{letter-spacing:-0.232800px;}
.ls9{letter-spacing:-0.229800px;}
.ls2{letter-spacing:-0.191400px;}
.ls7{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.172200px;}
.ls2a{letter-spacing:-0.140400px;}
.ls27{letter-spacing:-0.100800px;}
.ls30{letter-spacing:-0.076800px;}
.ls25{letter-spacing:-0.069000px;}
.ls13{letter-spacing:-0.030960px;}
.ls34{letter-spacing:-0.015120px;}
.ls5{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.064800px;}
.ls16{letter-spacing:0.067680px;}
.ls2b{letter-spacing:0.067800px;}
.ls36{letter-spacing:0.078480px;}
.lsa{letter-spacing:0.078600px;}
.ls22{letter-spacing:0.083400px;}
.ls2c{letter-spacing:0.107400px;}
.ls18{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.123000px;}
.lse{letter-spacing:0.145200px;}
.ls8{letter-spacing:0.150000px;}
.ls1b{letter-spacing:0.157200px;}
.ls1c{letter-spacing:0.182400px;}
.ls1e{letter-spacing:0.194400px;}
.ls2f{letter-spacing:0.213600px;}
.ls17{letter-spacing:0.226800px;}
.ls20{letter-spacing:0.236400px;}
.ls12{letter-spacing:0.245400px;}
.ls1f{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.301200px;}
.ls3{letter-spacing:0.371400px;}
.ls2e{letter-spacing:0.414000px;}
.ls11{letter-spacing:0.528600px;}
.ls26{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.547800px;}
.ls24{letter-spacing:0.787680px;}
.ls2d{letter-spacing:1.121760px;}
.lsd{letter-spacing:4.721760px;}
.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;}
}
.ws9{word-spacing:-19.566840px;}
.ws1a{word-spacing:-19.452240px;}
.ws14{word-spacing:-19.409640px;}
.ws1d{word-spacing:-19.283640px;}
.ws12{word-spacing:-19.274640px;}
.wsb{word-spacing:-19.265040px;}
.ws1b{word-spacing:-19.251840px;}
.wse{word-spacing:-19.220640px;}
.wsf{word-spacing:-19.195440px;}
.ws11{word-spacing:-19.183440px;}
.ws18{word-spacing:-19.161240px;}
.wsc{word-spacing:-19.158240px;}
.ws19{word-spacing:-19.145640px;}
.ws13{word-spacing:-19.121640px;}
.ws4{word-spacing:-19.116840px;}
.ws5{word-spacing:-19.103040px;}
.ws1{word-spacing:-19.038240px;}
.ws21{word-spacing:-19.023120px;}
.wsa{word-spacing:-19.007280px;}
.ws15{word-spacing:-18.969240px;}
.ws1c{word-spacing:-18.961440px;}
.ws16{word-spacing:-18.937440px;}
.ws17{word-spacing:-18.897840px;}
.ws23{word-spacing:-18.866040px;}
.ws0{word-spacing:-18.846840px;}
.ws8{word-spacing:-18.808440px;}
.ws1f{word-spacing:-18.805440px;}
.ws22{word-spacing:-18.792840px;}
.ws3{word-spacing:-18.732240px;}
.ws20{word-spacing:-18.713640px;}
.ws1e{word-spacing:-18.690240px;}
.ws6{word-spacing:-18.689640px;}
.ws7{word-spacing:-18.684840px;}
.wsd{word-spacing:-18.653040px;}
.ws10{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-5.910240px;}
._c{margin-left:-4.882560px;}
._d{margin-left:-3.829680px;}
._b{margin-left:-2.516640px;}
._0{margin-left:-1.516320px;}
._3{width:1.516320px;}
._4{width:2.948400px;}
._5{width:4.085040px;}
._6{width:5.389920px;}
._2{width:7.338720px;}
._1{width:8.508240px;}
._16{width:9.540720px;}
._1e{width:10.581360px;}
._11{width:11.625120px;}
._12{width:12.804480px;}
._e{width:14.152320px;}
._7{width:15.247440px;}
._8{width:17.100720px;}
._21{width:20.347920px;}
._10{width:21.481200px;}
._f{width:22.492080px;}
._13{width:24.092640px;}
._14{width:25.252320px;}
._17{width:26.788320px;}
._18{width:28.253280px;}
._1b{width:29.557680px;}
._1a{width:30.579120px;}
._20{width:31.872000px;}
._2b{width:32.979360px;}
._1f{width:34.195920px;}
._1c{width:35.300640px;}
._1d{width:36.577680px;}
._22{width:38.413920px;}
._23{width:40.275840px;}
._24{width:41.801040px;}
._27{width:43.072320px;}
._15{width:44.310240px;}
._9{width:47.717040px;}
._a{width:49.146720px;}
._2c{width:50.476800px;}
._2f{width:53.323920px;}
._2d{width:54.503280px;}
._2e{width:56.019600px;}
._28{width:57.535920px;}
._29{width:58.715280px;}
._2a{width:60.147360px;}
._25{width:62.115120px;}
._26{width:63.400800px;}
._30{width:65.959920px;}
._31{width:67.476240px;}
.fc2{color:transparent;}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y1{bottom:77.796000px;}
.y56{bottom:110.196000px;}
.y109{bottom:111.816000px;}
.y47{bottom:120.276000px;}
.y25{bottom:123.876000px;}
.y107{bottom:127.476000px;}
.yf2{bottom:130.356000px;}
.yf3{bottom:135.936000px;}
.y108{bottom:139.536000px;}
.y55{bottom:142.056000px;}
.y124{bottom:142.236000px;}
.y46{bottom:147.816000px;}
.y24{bottom:151.590000px;}
.y9e{bottom:151.770000px;}
.y106{bottom:155.190000px;}
.yf1{bottom:158.070000px;}
.y7d{bottom:158.970000px;}
.yc0{bottom:159.870000px;}
.y54{bottom:162.570000px;}
.y62{bottom:163.470000px;}
.y53{bottom:168.510000px;}
.ye4{bottom:173.730000px;}
.y45{bottom:175.530000px;}
.yc8{bottom:177.510000px;}
.y23{bottom:179.130000px;}
.y9d{bottom:179.310000px;}
.y123{bottom:181.830000px;}
.y52{bottom:182.550000px;}
.yf0{bottom:185.790000px;}
.y7c{bottom:186.510000px;}
.ybc{bottom:187.590000px;}
.y61{bottom:191.190000px;}
.y105{bottom:194.970000px;}
.ye3{bottom:201.450000px;}
.y44{bottom:203.250000px;}
.y22{bottom:206.850000px;}
.y9c{bottom:207.030000px;}
.yef{bottom:213.330000px;}
.y7b{bottom:214.230000px;}
.ybb{bottom:215.130000px;}
.y60{bottom:218.910000px;}
.y122{bottom:221.430000px;}
.y104{bottom:222.510000px;}
.ye2{bottom:228.990000px;}
.y43{bottom:230.970000px;}
.y21{bottom:234.570000px;}
.y9b{bottom:234.750000px;}
.y110{bottom:238.170000px;}
.y7a{bottom:241.950000px;}
.yba{bottom:242.850000px;}
.y5f{bottom:246.630000px;}
.y51{bottom:250.230000px;}
.yee{bottom:253.110000px;}
.ye1{bottom:256.710000px;}
.y42{bottom:258.510000px;}
.y121{bottom:261.210000px;}
.y20{bottom:262.290000px;}
.y9a{bottom:262.470000px;}
.yb9{bottom:270.570000px;}
.y111{bottom:274.215000px;}
.y103{bottom:277.995000px;}
.y79{bottom:281.595000px;}
.ye0{bottom:284.475000px;}
.y41{bottom:286.275000px;}
.y50{bottom:289.875000px;}
.y99{bottom:290.055000px;}
.yed{bottom:292.755000px;}
.yb8{bottom:298.335000px;}
.y120{bottom:300.855000px;}
.y1f{bottom:301.935000px;}
.yff{bottom:305.535000px;}
.y78{bottom:309.315000px;}
.ydf{bottom:312.015000px;}
.y40{bottom:313.995000px;}
.y102{bottom:317.595000px;}
.y98{bottom:317.775000px;}
.yec{bottom:320.475000px;}
.yb7{bottom:325.875000px;}
.y11f{bottom:328.575000px;}
.y1e{bottom:329.655000px;}
.yfe{bottom:333.255000px;}
.y77{bottom:336.855000px;}
.yde{bottom:339.735000px;}
.y3f{bottom:341.535000px;}
.y101{bottom:345.315000px;}
.yeb{bottom:348.015000px;}
.ybf{bottom:353.595000px;}
.y11e{bottom:356.115000px;}
.y1d{bottom:357.195000px;}
.y97{bottom:357.375000px;}
.yfd{bottom:360.975000px;}
.yb6{bottom:365.655000px;}
.y3e{bottom:369.255000px;}
.y10f{bottom:372.855000px;}
.yea{bottom:375.735000px;}
.y76{bottom:376.635000px;}
.ydd{bottom:379.335000px;}
.y5e{bottom:381.315000px;}
.y11d{bottom:383.835000px;}
.y1c{bottom:384.915000px;}
.y96{bottom:385.095000px;}
.y4f{bottom:392.475000px;}
.yb5{bottom:393.195000px;}
.y3d{bottom:396.975000px;}
.yfc{bottom:400.575000px;}
.ye9{bottom:403.455000px;}
.ydc{bottom:407.055000px;}
.y5d{bottom:408.855000px;}
.y11c{bottom:411.555000px;}
.y1b{bottom:412.635000px;}
.y95{bottom:412.815000px;}
.y75{bottom:416.235000px;}
.yb4{bottom:420.915000px;}
.y3c{bottom:424.515000px;}
.yfb{bottom:428.295000px;}
.ye8{bottom:429.015000px;}
.ydb{bottom:434.775000px;}
.y5c{bottom:436.575000px;}
.y11b{bottom:439.095000px;}
.y1a{bottom:440.175000px;}
.y94{bottom:440.355000px;}
.y74{bottom:443.955000px;}
.yb3{bottom:448.635000px;}
.y3b{bottom:452.235000px;}
.ye7{bottom:454.755000px;}
.yfa{bottom:455.835000px;}
.yda{bottom:462.315000px;}
.y5b{bottom:464.295000px;}
.y11a{bottom:464.835000px;}
.y100{bottom:467.895000px;}
.y93{bottom:468.075000px;}
.y73{bottom:471.495000px;}
.yb2{bottom:476.175000px;}
.y19{bottom:479.955000px;}
.ye6{bottom:480.315000px;}
.yf9{bottom:483.555000px;}
.yd9{bottom:490.035000px;}
.y119{bottom:490.395000px;}
.y5a{bottom:491.835000px;}
.y10e{bottom:495.615000px;}
.y92{bottom:495.795000px;}
.y72{bottom:499.215000px;}
.yb1{bottom:503.895000px;}
.ye5{bottom:505.875000px;}
.y18{bottom:507.495000px;}
.yf8{bottom:511.275000px;}
.y118{bottom:516.135000px;}
.y3a{bottom:519.555000px;}
.y10d{bottom:523.155000px;}
.y71{bottom:526.935000px;}
.yd8{bottom:529.635000px;}
.y59{bottom:531.615000px;}
.y17{bottom:535.215000px;}
.y91{bottom:535.395000px;}
.yf7{bottom:538.815000px;}
.y117{bottom:541.695000px;}
.yb0{bottom:543.495000px;}
.y39{bottom:547.275000px;}
.y10c{bottom:550.875000px;}
.yd7{bottom:557.385000px;}
.y58{bottom:559.185000px;}
.y16{bottom:562.965000px;}
.y70{bottom:566.565000px;}
.y116{bottom:567.465000px;}
.yaf{bottom:571.245000px;}
.y38{bottom:574.845000px;}
.y90{bottom:575.025000px;}
.y10b{bottom:578.625000px;}
.yd6{bottom:585.105000px;}
.y57{bottom:586.905000px;}
.y15{bottom:590.505000px;}
.y115{bottom:593.025000px;}
.y6f{bottom:594.285000px;}
.yae{bottom:598.965000px;}
.y4e{bottom:602.565000px;}
.y8f{bottom:602.745000px;}
.yf6{bottom:606.345000px;}
.yd5{bottom:612.825000px;}
.y37{bottom:614.625000px;}
.y14{bottom:618.225000px;}
.y114{bottom:618.585000px;}
.y6e{bottom:622.005000px;}
.yad{bottom:626.505000px;}
.y4d{bottom:630.285000px;}
.y8e{bottom:630.465000px;}
.yc7{bottom:638.565000px;}
.yd4{bottom:640.365000px;}
.y36{bottom:642.345000px;}
.y113{bottom:644.325000px;}
.y13{bottom:645.945000px;}
.y6d{bottom:649.545000px;}
.yac{bottom:654.225000px;}
.y4c{bottom:658.005000px;}
.y8d{bottom:658.185000px;}
.yc6{bottom:666.285000px;}
.yd3{bottom:668.085000px;}
.y35{bottom:669.885000px;}
.y12{bottom:673.665000px;}
.y6c{bottom:677.265000px;}
.yab{bottom:681.945000px;}
.y112{bottom:685.545000px;}
.y8c{bottom:685.725000px;}
.yc5{bottom:694.005000px;}
.y34{bottom:697.605000px;}
.y11{bottom:701.205000px;}
.y6b{bottom:704.985000px;}
.yd2{bottom:707.685000px;}
.yaa{bottom:709.665000px;}
.y10a{bottom:713.265000px;}
.y8b{bottom:713.445000px;}
.yc4{bottom:721.545000px;}
.y33{bottom:725.325000px;}
.yf5{bottom:728.925000px;}
.y6a{bottom:732.525000px;}
.yd1{bottom:735.405000px;}
.ya9{bottom:737.205000px;}
.y10{bottom:740.985000px;}
.y8a{bottom:741.165000px;}
.yc3{bottom:749.265000px;}
.y32{bottom:752.865000px;}
.yf4{bottom:756.645000px;}
.yd0{bottom:763.125000px;}
.ya8{bottom:764.925000px;}
.yf{bottom:768.525000px;}
.y89{bottom:768.705000px;}
.y69{bottom:772.305000px;}
.yc2{bottom:776.985000px;}
.y31{bottom:780.585000px;}
.ycf{bottom:790.665000px;}
.ya7{bottom:792.645000px;}
.ye{bottom:796.245000px;}
.y88{bottom:796.425000px;}
.y68{bottom:799.845000px;}
.yc1{bottom:804.525000px;}
.y30{bottom:808.305000px;}
.yce{bottom:818.385000px;}
.ybe{bottom:820.185000px;}
.yd{bottom:823.965000px;}
.y67{bottom:827.565000px;}
.ya6{bottom:832.245000px;}
.y2f{bottom:835.845000px;}
.y87{bottom:836.025000px;}
.ycd{bottom:846.150000px;}
.ybd{bottom:847.950000px;}
.yc{bottom:851.550000px;}
.y66{bottom:855.330000px;}
.ya5{bottom:860.010000px;}
.y4b{bottom:863.610000px;}
.y86{bottom:863.790000px;}
.ycc{bottom:873.690000px;}
.y2e{bottom:875.670000px;}
.yb{bottom:879.270000px;}
.ya4{bottom:887.550000px;}
.y4a{bottom:891.330000px;}
.y65{bottom:894.930000px;}
.y2d{bottom:903.210000px;}
.y85{bottom:903.390000px;}
.ya{bottom:906.990000px;}
.ycb{bottom:913.470000px;}
.ya3{bottom:915.270000px;}
.y49{bottom:918.870000px;}
.y2c{bottom:930.930000px;}
.y9{bottom:934.530000px;}
.ya2{bottom:942.990000px;}
.y84{bottom:943.170000px;}
.y48{bottom:946.590000px;}
.yca{bottom:953.070000px;}
.y2b{bottom:958.650000px;}
.ya1{bottom:970.530000px;}
.y8{bottom:974.310000px;}
.yc9{bottom:980.790000px;}
.y83{bottom:982.770000px;}
.y2a{bottom:986.190000px;}
.ya0{bottom:998.250000px;}
.y7{bottom:1001.850000px;}
.y82{bottom:1008.510000px;}
.y29{bottom:1013.910000px;}
.y9f{bottom:1025.970000px;}
.y6{bottom:1029.570000px;}
.y81{bottom:1034.070000px;}
.y28{bottom:1041.630000px;}
.y64{bottom:1053.690000px;}
.y5{bottom:1057.290000px;}
.y80{bottom:1059.630000px;}
.y27{bottom:1069.350000px;}
.y63{bottom:1081.230000px;}
.y7f{bottom:1085.370000px;}
.y4{bottom:1096.890000px;}
.y26{bottom:1108.950000px;}
.y7e{bottom:1110.930000px;}
.y3{bottom:1136.700000px;}
.h6{height:34.439766px;}
.h5{height:44.534180px;}
.h7{height:49.284492px;}
.h2{height:54.628594px;}
.h3{height:69.473320px;}
.h9{height:86.585445px;}
.h8{height:87.695156px;}
.h4{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.x7{left:132.876000px;}
.x10{left:241.230000px;}
.x9{left:269.490000px;}
.x8{left:271.650000px;}
.x1f{left:273.810000px;}
.xa{left:275.970000px;}
.x11{left:282.810000px;}
.x21{left:285.375000px;}
.x20{left:290.415000px;}
.xe{left:295.095000px;}
.x1e{left:301.755000px;}
.x1a{left:311.475000px;}
.x1d{left:314.715000px;}
.x22{left:317.415000px;}
.x17{left:318.855000px;}
.xd{left:321.195000px;}
.x16{left:326.415000px;}
.x13{left:332.355000px;}
.xc{left:334.695000px;}
.x1c{left:335.955000px;}
.x6{left:343.695000px;}
.x1b{left:345.855000px;}
.x19{left:350.355000px;}
.xb{left:354.855000px;}
.x12{left:356.295000px;}
.x14{left:375.195000px;}
.x18{left:384.195000px;}
.x15{left:390.315000px;}
.xf{left:438.195000px;}
.x1{left:442.335000px;}
.x2{left:446.475000px;}
.x4{left:580.942500px;}
.x5{left:587.805000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-0.912000pt;}
.ls23{letter-spacing:-0.842667pt;}
.ls37{letter-spacing:-0.810667pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.666667pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.477867pt;}
.ls1a{letter-spacing:-0.342400pt;}
.lsf{letter-spacing:-0.314133pt;}
.lsc{letter-spacing:-0.309867pt;}
.ls31{letter-spacing:-0.309333pt;}
.ls33{letter-spacing:-0.288533pt;}
.ls21{letter-spacing:-0.282667pt;}
.ls6{letter-spacing:-0.272000pt;}
.ls35{letter-spacing:-0.218133pt;}
.ls32{letter-spacing:-0.206933pt;}
.ls9{letter-spacing:-0.204267pt;}
.ls2{letter-spacing:-0.170133pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.153067pt;}
.ls2a{letter-spacing:-0.124800pt;}
.ls27{letter-spacing:-0.089600pt;}
.ls30{letter-spacing:-0.068267pt;}
.ls25{letter-spacing:-0.061333pt;}
.ls13{letter-spacing:-0.027520pt;}
.ls34{letter-spacing:-0.013440pt;}
.ls5{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.057600pt;}
.ls16{letter-spacing:0.060160pt;}
.ls2b{letter-spacing:0.060267pt;}
.ls36{letter-spacing:0.069760pt;}
.lsa{letter-spacing:0.069867pt;}
.ls22{letter-spacing:0.074133pt;}
.ls2c{letter-spacing:0.095467pt;}
.ls18{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.109333pt;}
.lse{letter-spacing:0.129067pt;}
.ls8{letter-spacing:0.133333pt;}
.ls1b{letter-spacing:0.139733pt;}
.ls1c{letter-spacing:0.162133pt;}
.ls1e{letter-spacing:0.172800pt;}
.ls2f{letter-spacing:0.189867pt;}
.ls17{letter-spacing:0.201600pt;}
.ls20{letter-spacing:0.210133pt;}
.ls12{letter-spacing:0.218133pt;}
.ls1f{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.267733pt;}
.ls3{letter-spacing:0.330133pt;}
.ls2e{letter-spacing:0.368000pt;}
.ls11{letter-spacing:0.469867pt;}
.ls26{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.486933pt;}
.ls24{letter-spacing:0.700160pt;}
.ls2d{letter-spacing:0.997120pt;}
.lsd{letter-spacing:4.197120pt;}
.ws9{word-spacing:-17.392747pt;}
.ws1a{word-spacing:-17.290880pt;}
.ws14{word-spacing:-17.253013pt;}
.ws1d{word-spacing:-17.141013pt;}
.ws12{word-spacing:-17.133013pt;}
.wsb{word-spacing:-17.124480pt;}
.ws1b{word-spacing:-17.112747pt;}
.wse{word-spacing:-17.085013pt;}
.wsf{word-spacing:-17.062613pt;}
.ws11{word-spacing:-17.051947pt;}
.ws18{word-spacing:-17.032213pt;}
.wsc{word-spacing:-17.029547pt;}
.ws19{word-spacing:-17.018347pt;}
.ws13{word-spacing:-16.997013pt;}
.ws4{word-spacing:-16.992747pt;}
.ws5{word-spacing:-16.980480pt;}
.ws1{word-spacing:-16.922880pt;}
.ws21{word-spacing:-16.909440pt;}
.wsa{word-spacing:-16.895360pt;}
.ws15{word-spacing:-16.861547pt;}
.ws1c{word-spacing:-16.854613pt;}
.ws16{word-spacing:-16.833280pt;}
.ws17{word-spacing:-16.798080pt;}
.ws23{word-spacing:-16.769813pt;}
.ws0{word-spacing:-16.752747pt;}
.ws8{word-spacing:-16.718613pt;}
.ws1f{word-spacing:-16.715947pt;}
.ws22{word-spacing:-16.704747pt;}
.ws3{word-spacing:-16.650880pt;}
.ws20{word-spacing:-16.634347pt;}
.ws1e{word-spacing:-16.613547pt;}
.ws6{word-spacing:-16.613013pt;}
.ws7{word-spacing:-16.608747pt;}
.wsd{word-spacing:-16.580480pt;}
.ws10{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-5.253547pt;}
._c{margin-left:-4.340053pt;}
._d{margin-left:-3.404160pt;}
._b{margin-left:-2.237013pt;}
._0{margin-left:-1.347840pt;}
._3{width:1.347840pt;}
._4{width:2.620800pt;}
._5{width:3.631147pt;}
._6{width:4.791040pt;}
._2{width:6.523307pt;}
._1{width:7.562880pt;}
._16{width:8.480640pt;}
._1e{width:9.405653pt;}
._11{width:10.333440pt;}
._12{width:11.381760pt;}
._e{width:12.579840pt;}
._7{width:13.553280pt;}
._8{width:15.200640pt;}
._21{width:18.087040pt;}
._10{width:19.094400pt;}
._f{width:19.992960pt;}
._13{width:21.415680pt;}
._14{width:22.446507pt;}
._17{width:23.811840pt;}
._18{width:25.114027pt;}
._1b{width:26.273493pt;}
._1a{width:27.181440pt;}
._20{width:28.330667pt;}
._2b{width:29.314987pt;}
._1f{width:30.396373pt;}
._1c{width:31.378347pt;}
._1d{width:32.513493pt;}
._22{width:34.145707pt;}
._23{width:35.800747pt;}
._24{width:37.156480pt;}
._27{width:38.286507pt;}
._15{width:39.386880pt;}
._9{width:42.415147pt;}
._a{width:43.685973pt;}
._2c{width:44.868267pt;}
._2f{width:47.399040pt;}
._2d{width:48.447360pt;}
._2e{width:49.795200pt;}
._28{width:51.143040pt;}
._29{width:52.191360pt;}
._2a{width:53.464320pt;}
._25{width:55.213440pt;}
._26{width:56.356267pt;}
._30{width:58.631040pt;}
._31{width:59.978880pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y1{bottom:69.152000pt;}
.y56{bottom:97.952000pt;}
.y109{bottom:99.392000pt;}
.y47{bottom:106.912000pt;}
.y25{bottom:110.112000pt;}
.y107{bottom:113.312000pt;}
.yf2{bottom:115.872000pt;}
.yf3{bottom:120.832000pt;}
.y108{bottom:124.032000pt;}
.y55{bottom:126.272000pt;}
.y124{bottom:126.432000pt;}
.y46{bottom:131.392000pt;}
.y24{bottom:134.746667pt;}
.y9e{bottom:134.906667pt;}
.y106{bottom:137.946667pt;}
.yf1{bottom:140.506667pt;}
.y7d{bottom:141.306667pt;}
.yc0{bottom:142.106667pt;}
.y54{bottom:144.506667pt;}
.y62{bottom:145.306667pt;}
.y53{bottom:149.786667pt;}
.ye4{bottom:154.426667pt;}
.y45{bottom:156.026667pt;}
.yc8{bottom:157.786667pt;}
.y23{bottom:159.226667pt;}
.y9d{bottom:159.386667pt;}
.y123{bottom:161.626667pt;}
.y52{bottom:162.266667pt;}
.yf0{bottom:165.146667pt;}
.y7c{bottom:165.786667pt;}
.ybc{bottom:166.746667pt;}
.y61{bottom:169.946667pt;}
.y105{bottom:173.306667pt;}
.ye3{bottom:179.066667pt;}
.y44{bottom:180.666667pt;}
.y22{bottom:183.866667pt;}
.y9c{bottom:184.026667pt;}
.yef{bottom:189.626667pt;}
.y7b{bottom:190.426667pt;}
.ybb{bottom:191.226667pt;}
.y60{bottom:194.586667pt;}
.y122{bottom:196.826667pt;}
.y104{bottom:197.786667pt;}
.ye2{bottom:203.546667pt;}
.y43{bottom:205.306667pt;}
.y21{bottom:208.506667pt;}
.y9b{bottom:208.666667pt;}
.y110{bottom:211.706667pt;}
.y7a{bottom:215.066667pt;}
.yba{bottom:215.866667pt;}
.y5f{bottom:219.226667pt;}
.y51{bottom:222.426667pt;}
.yee{bottom:224.986667pt;}
.ye1{bottom:228.186667pt;}
.y42{bottom:229.786667pt;}
.y121{bottom:232.186667pt;}
.y20{bottom:233.146667pt;}
.y9a{bottom:233.306667pt;}
.yb9{bottom:240.506667pt;}
.y111{bottom:243.746667pt;}
.y103{bottom:247.106667pt;}
.y79{bottom:250.306667pt;}
.ye0{bottom:252.866667pt;}
.y41{bottom:254.466667pt;}
.y50{bottom:257.666667pt;}
.y99{bottom:257.826667pt;}
.yed{bottom:260.226667pt;}
.yb8{bottom:265.186667pt;}
.y120{bottom:267.426667pt;}
.y1f{bottom:268.386667pt;}
.yff{bottom:271.586667pt;}
.y78{bottom:274.946667pt;}
.ydf{bottom:277.346667pt;}
.y40{bottom:279.106667pt;}
.y102{bottom:282.306667pt;}
.y98{bottom:282.466667pt;}
.yec{bottom:284.866667pt;}
.yb7{bottom:289.666667pt;}
.y11f{bottom:292.066667pt;}
.y1e{bottom:293.026667pt;}
.yfe{bottom:296.226667pt;}
.y77{bottom:299.426667pt;}
.yde{bottom:301.986667pt;}
.y3f{bottom:303.586667pt;}
.y101{bottom:306.946667pt;}
.yeb{bottom:309.346667pt;}
.ybf{bottom:314.306667pt;}
.y11e{bottom:316.546667pt;}
.y1d{bottom:317.506667pt;}
.y97{bottom:317.666667pt;}
.yfd{bottom:320.866667pt;}
.yb6{bottom:325.026667pt;}
.y3e{bottom:328.226667pt;}
.y10f{bottom:331.426667pt;}
.yea{bottom:333.986667pt;}
.y76{bottom:334.786667pt;}
.ydd{bottom:337.186667pt;}
.y5e{bottom:338.946667pt;}
.y11d{bottom:341.186667pt;}
.y1c{bottom:342.146667pt;}
.y96{bottom:342.306667pt;}
.y4f{bottom:348.866667pt;}
.yb5{bottom:349.506667pt;}
.y3d{bottom:352.866667pt;}
.yfc{bottom:356.066667pt;}
.ye9{bottom:358.626667pt;}
.ydc{bottom:361.826667pt;}
.y5d{bottom:363.426667pt;}
.y11c{bottom:365.826667pt;}
.y1b{bottom:366.786667pt;}
.y95{bottom:366.946667pt;}
.y75{bottom:369.986667pt;}
.yb4{bottom:374.146667pt;}
.y3c{bottom:377.346667pt;}
.yfb{bottom:380.706667pt;}
.ye8{bottom:381.346667pt;}
.ydb{bottom:386.466667pt;}
.y5c{bottom:388.066667pt;}
.y11b{bottom:390.306667pt;}
.y1a{bottom:391.266667pt;}
.y94{bottom:391.426667pt;}
.y74{bottom:394.626667pt;}
.yb3{bottom:398.786667pt;}
.y3b{bottom:401.986667pt;}
.ye7{bottom:404.226667pt;}
.yfa{bottom:405.186667pt;}
.yda{bottom:410.946667pt;}
.y5b{bottom:412.706667pt;}
.y11a{bottom:413.186667pt;}
.y100{bottom:415.906667pt;}
.y93{bottom:416.066667pt;}
.y73{bottom:419.106667pt;}
.yb2{bottom:423.266667pt;}
.y19{bottom:426.626667pt;}
.ye6{bottom:426.946667pt;}
.yf9{bottom:429.826667pt;}
.yd9{bottom:435.586667pt;}
.y119{bottom:435.906667pt;}
.y5a{bottom:437.186667pt;}
.y10e{bottom:440.546667pt;}
.y92{bottom:440.706667pt;}
.y72{bottom:443.746667pt;}
.yb1{bottom:447.906667pt;}
.ye5{bottom:449.666667pt;}
.y18{bottom:451.106667pt;}
.yf8{bottom:454.466667pt;}
.y118{bottom:458.786667pt;}
.y3a{bottom:461.826667pt;}
.y10d{bottom:465.026667pt;}
.y71{bottom:468.386667pt;}
.yd8{bottom:470.786667pt;}
.y59{bottom:472.546667pt;}
.y17{bottom:475.746667pt;}
.y91{bottom:475.906667pt;}
.yf7{bottom:478.946667pt;}
.y117{bottom:481.506667pt;}
.yb0{bottom:483.106667pt;}
.y39{bottom:486.466667pt;}
.y10c{bottom:489.666667pt;}
.yd7{bottom:495.453333pt;}
.y58{bottom:497.053333pt;}
.y16{bottom:500.413333pt;}
.y70{bottom:503.613333pt;}
.y116{bottom:504.413333pt;}
.yaf{bottom:507.773333pt;}
.y38{bottom:510.973333pt;}
.y90{bottom:511.133333pt;}
.y10b{bottom:514.333333pt;}
.yd6{bottom:520.093333pt;}
.y57{bottom:521.693333pt;}
.y15{bottom:524.893333pt;}
.y115{bottom:527.133333pt;}
.y6f{bottom:528.253333pt;}
.yae{bottom:532.413333pt;}
.y4e{bottom:535.613333pt;}
.y8f{bottom:535.773333pt;}
.yf6{bottom:538.973333pt;}
.yd5{bottom:544.733333pt;}
.y37{bottom:546.333333pt;}
.y14{bottom:549.533333pt;}
.y114{bottom:549.853333pt;}
.y6e{bottom:552.893333pt;}
.yad{bottom:556.893333pt;}
.y4d{bottom:560.253333pt;}
.y8e{bottom:560.413333pt;}
.yc7{bottom:567.613333pt;}
.yd4{bottom:569.213333pt;}
.y36{bottom:570.973333pt;}
.y113{bottom:572.733333pt;}
.y13{bottom:574.173333pt;}
.y6d{bottom:577.373333pt;}
.yac{bottom:581.533333pt;}
.y4c{bottom:584.893333pt;}
.y8d{bottom:585.053333pt;}
.yc6{bottom:592.253333pt;}
.yd3{bottom:593.853333pt;}
.y35{bottom:595.453333pt;}
.y12{bottom:598.813333pt;}
.y6c{bottom:602.013333pt;}
.yab{bottom:606.173333pt;}
.y112{bottom:609.373333pt;}
.y8c{bottom:609.533333pt;}
.yc5{bottom:616.893333pt;}
.y34{bottom:620.093333pt;}
.y11{bottom:623.293333pt;}
.y6b{bottom:626.653333pt;}
.yd2{bottom:629.053333pt;}
.yaa{bottom:630.813333pt;}
.y10a{bottom:634.013333pt;}
.y8b{bottom:634.173333pt;}
.yc4{bottom:641.373333pt;}
.y33{bottom:644.733333pt;}
.yf5{bottom:647.933333pt;}
.y6a{bottom:651.133333pt;}
.yd1{bottom:653.693333pt;}
.ya9{bottom:655.293333pt;}
.y10{bottom:658.653333pt;}
.y8a{bottom:658.813333pt;}
.yc3{bottom:666.013333pt;}
.y32{bottom:669.213333pt;}
.yf4{bottom:672.573333pt;}
.yd0{bottom:678.333333pt;}
.ya8{bottom:679.933333pt;}
.yf{bottom:683.133333pt;}
.y89{bottom:683.293333pt;}
.y69{bottom:686.493333pt;}
.yc2{bottom:690.653333pt;}
.y31{bottom:693.853333pt;}
.ycf{bottom:702.813333pt;}
.ya7{bottom:704.573333pt;}
.ye{bottom:707.773333pt;}
.y88{bottom:707.933333pt;}
.y68{bottom:710.973333pt;}
.yc1{bottom:715.133333pt;}
.y30{bottom:718.493333pt;}
.yce{bottom:727.453333pt;}
.ybe{bottom:729.053333pt;}
.yd{bottom:732.413333pt;}
.y67{bottom:735.613333pt;}
.ya6{bottom:739.773333pt;}
.y2f{bottom:742.973333pt;}
.y87{bottom:743.133333pt;}
.ycd{bottom:752.133333pt;}
.ybd{bottom:753.733333pt;}
.yc{bottom:756.933333pt;}
.y66{bottom:760.293333pt;}
.ya5{bottom:764.453333pt;}
.y4b{bottom:767.653333pt;}
.y86{bottom:767.813333pt;}
.ycc{bottom:776.613333pt;}
.y2e{bottom:778.373333pt;}
.yb{bottom:781.573333pt;}
.ya4{bottom:788.933333pt;}
.y4a{bottom:792.293333pt;}
.y65{bottom:795.493333pt;}
.y2d{bottom:802.853333pt;}
.y85{bottom:803.013333pt;}
.ya{bottom:806.213333pt;}
.ycb{bottom:811.973333pt;}
.ya3{bottom:813.573333pt;}
.y49{bottom:816.773333pt;}
.y2c{bottom:827.493333pt;}
.y9{bottom:830.693333pt;}
.ya2{bottom:838.213333pt;}
.y84{bottom:838.373333pt;}
.y48{bottom:841.413333pt;}
.yca{bottom:847.173333pt;}
.y2b{bottom:852.133333pt;}
.ya1{bottom:862.693333pt;}
.y8{bottom:866.053333pt;}
.yc9{bottom:871.813333pt;}
.y83{bottom:873.573333pt;}
.y2a{bottom:876.613333pt;}
.ya0{bottom:887.333333pt;}
.y7{bottom:890.533333pt;}
.y82{bottom:896.453333pt;}
.y29{bottom:901.253333pt;}
.y9f{bottom:911.973333pt;}
.y6{bottom:915.173333pt;}
.y81{bottom:919.173333pt;}
.y28{bottom:925.893333pt;}
.y64{bottom:936.613333pt;}
.y5{bottom:939.813333pt;}
.y80{bottom:941.893333pt;}
.y27{bottom:950.533333pt;}
.y63{bottom:961.093333pt;}
.y7f{bottom:964.773333pt;}
.y4{bottom:975.013333pt;}
.y26{bottom:985.733333pt;}
.y7e{bottom:987.493333pt;}
.y3{bottom:1010.400000pt;}
.h6{height:30.613125pt;}
.h5{height:39.585938pt;}
.h7{height:43.808438pt;}
.h2{height:48.558750pt;}
.h3{height:61.754062pt;}
.h9{height:76.964840pt;}
.h8{height:77.951250pt;}
.h4{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.x7{left:118.112000pt;}
.x10{left:214.426667pt;}
.x9{left:239.546667pt;}
.x8{left:241.466667pt;}
.x1f{left:243.386667pt;}
.xa{left:245.306667pt;}
.x11{left:251.386667pt;}
.x21{left:253.666667pt;}
.x20{left:258.146667pt;}
.xe{left:262.306667pt;}
.x1e{left:268.226667pt;}
.x1a{left:276.866667pt;}
.x1d{left:279.746667pt;}
.x22{left:282.146667pt;}
.x17{left:283.426667pt;}
.xd{left:285.506667pt;}
.x16{left:290.146667pt;}
.x13{left:295.426667pt;}
.xc{left:297.506667pt;}
.x1c{left:298.626667pt;}
.x6{left:305.506667pt;}
.x1b{left:307.426667pt;}
.x19{left:311.426667pt;}
.xb{left:315.426667pt;}
.x12{left:316.706667pt;}
.x14{left:333.506667pt;}
.x18{left:341.506667pt;}
.x15{left:346.946667pt;}
.xf{left:389.506667pt;}
.x1{left:393.186667pt;}
.x2{left:396.866667pt;}
.x4{left:516.393333pt;}
.x5{left:522.493333pt;}
}




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