
    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_8f68c5df167a41d94277f2ec.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_21e3f76d5718b7e674d8728a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_b9bcc381dfab68e5153924e7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_39c227c10eae374963b6b000.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.715820;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_59ef96f05a2a18dcd38957bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b0ed56577ed31ad4c83523d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_9b31265bbf1b6140cfbf58ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715820;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_ebeeca5d668ca1cdc1cc6727.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_ff9b4b9645a728a80fda37cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937500;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_a116bc5b193513d3699ca730.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766602;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_3501b7918b47cc738ee577e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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;}
.m1{transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.273862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273862,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:49.380000px;}
.v4{vertical-align:54.720000px;}
.v3{vertical-align:58.200000px;}
.v1{vertical-align:84.360000px;}
.ls11{letter-spacing:-1.488000px;}
.ls1e{letter-spacing:-0.310200px;}
.ls18{letter-spacing:-0.291600px;}
.lsb{letter-spacing:-0.146400px;}
.ls1d{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.104109px;}
.ls1f{letter-spacing:-0.086400px;}
.ls2{letter-spacing:-0.058740px;}
.ls9{letter-spacing:-0.027098px;}
.ls17{letter-spacing:-0.012660px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007920px;}
.ls15{letter-spacing:0.044040px;}
.ls16{letter-spacing:0.139824px;}
.ls1a{letter-spacing:0.175800px;}
.ls4{letter-spacing:0.204600px;}
.ls20{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.295200px;}
.ls19{letter-spacing:0.367800px;}
.ls1b{letter-spacing:18.756288px;}
.ls1c{letter-spacing:18.828000px;}
.lsd{letter-spacing:27.576000px;}
.ls14{letter-spacing:52.123968px;}
.ls13{letter-spacing:52.189920px;}
.ls5{letter-spacing:94.665600px;}
.ls6{letter-spacing:94.716000px;}
.lsa{letter-spacing:103.284000px;}
.ls12{letter-spacing:105.403968px;}
.lse{letter-spacing:178.375200px;}
.lsc{letter-spacing:191.997600px;}
.ls10{letter-spacing:197.005920px;}
.lsf{letter-spacing:213.132480px;}
.ls7{letter-spacing:214.800781px;}
.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;}
}
.ws35{word-spacing:-89.496000px;}
.ws38{word-spacing:-71.596800px;}
.ws0{word-spacing:-59.750784px;}
.ws2f{word-spacing:-54.553560px;}
.ws28{word-spacing:-54.262344px;}
.ws26{word-spacing:-54.218304px;}
.ws27{word-spacing:-54.185760px;}
.ws4{word-spacing:-47.709504px;}
.ws6{word-spacing:-47.676960px;}
.wsb{word-spacing:-43.478784px;}
.wsa{word-spacing:-43.446240px;}
.ws2c{word-spacing:-39.085344px;}
.ws2e{word-spacing:-32.576544px;}
.ws1c{word-spacing:-32.544000px;}
.ws21{word-spacing:-24.408000px;}
.ws1f{word-spacing:-18.414720px;}
.ws30{word-spacing:-17.749560px;}
.ws31{word-spacing:-17.573760px;}
.ws1e{word-spacing:-15.002784px;}
.ws1d{word-spacing:-14.970240px;}
.ws25{word-spacing:-1.466640px;}
.ws22{word-spacing:-1.200192px;}
.ws24{word-spacing:-0.715392px;}
.ws7{word-spacing:0.000000px;}
.ws23{word-spacing:3.129984px;}
.ws2d{word-spacing:8.416800px;}
.ws29{word-spacing:8.761104px;}
.ws2a{word-spacing:9.005868px;}
.ws2b{word-spacing:10.630080px;}
.ws20{word-spacing:11.815872px;}
.ws2{word-spacing:12.010428px;}
.ws5{word-spacing:12.224160px;}
.ws3{word-spacing:12.283776px;}
.ws9{word-spacing:12.302424px;}
.ws8{word-spacing:12.416352px;}
.ws1{word-spacing:12.635040px;}
.ws36{word-spacing:17.112000px;}
.ws37{word-spacing:18.115200px;}
.ws19{word-spacing:112.762620px;}
.ws16{word-spacing:121.612583px;}
.ws12{word-spacing:129.427086px;}
.ws32{word-spacing:129.849960px;}
.ws18{word-spacing:130.030664px;}
.wsf{word-spacing:133.353287px;}
.ws15{word-spacing:143.284598px;}
.ws13{word-spacing:143.284832px;}
.wsd{word-spacing:147.612731px;}
.ws14{word-spacing:161.712619px;}
.ws1b{word-spacing:163.902859px;}
.wse{word-spacing:175.570131px;}
.ws10{word-spacing:179.898264px;}
.ws33{word-spacing:184.469424px;}
.wsc{word-spacing:193.883280px;}
.ws1a{word-spacing:197.775053px;}
.ws34{word-spacing:200.283960px;}
.ws11{word-spacing:223.946024px;}
.ws17{word-spacing:619.395632px;}
._2d{margin-left:-24.076800px;}
._2b{margin-left:-17.991360px;}
._28{margin-left:-16.323120px;}
._6{margin-left:-14.441760px;}
._5{margin-left:-12.096000px;}
._2a{margin-left:-10.944000px;}
._25{margin-left:-9.604080px;}
._26{margin-left:-6.910080px;}
._0{margin-left:-5.034528px;}
._1{margin-left:-3.588768px;}
._2{margin-left:-1.898640px;}
._3{width:1.006560px;}
._4{width:2.376000px;}
._27{width:25.574640px;}
._29{width:49.467168px;}
._2c{width:91.003968px;}
._20{width:130.037786px;}
._1e{width:143.633188px;}
._1d{width:161.367304px;}
._15{width:164.362857px;}
._b{width:181.308299px;}
._c{width:191.660960px;}
._f{width:195.988859px;}
._8{width:212.137942px;}
._e{width:213.593832px;}
._9{width:218.279212px;}
._14{width:244.364752px;}
._13{width:261.969726px;}
._11{width:300.571291px;}
._23{width:305.622669px;}
._10{width:456.744384px;}
._1b{width:464.750384px;}
._21{width:726.617342px;}
._7{width:882.719797px;}
._22{width:936.685917px;}
._1c{width:956.066555px;}
._24{width:1012.706874px;}
._1f{width:1031.213311px;}
._18{width:1137.390075px;}
._d{width:1151.696955px;}
._19{width:1206.187754px;}
._a{width:1242.904219px;}
._12{width:1254.550283px;}
._17{width:1354.368507px;}
._1a{width:1440.444655px;}
._16{width:1472.892317px;}
.fcf{color:rgb(255,0,0);}
.fce{color:rgb(255,51,0);}
.fc0{color:rgb(37,64,97);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(255,255,255);}
.fc2{color:rgb(255,51,204);}
.fc3{color:rgb(96,74,123);}
.fc5{color:rgb(119,147,60);}
.fc6{color:rgb(153,153,255);}
.fca{color:rgb(0,176,80);}
.fc9{color:rgb(0,0,128);}
.fc4{color:rgb(228,108,10);}
.fc8{color:rgb(128,0,0);}
.fcd{color:transparent;}
.fcc{color:rgb(0,32,96);}
.fcb{color:rgb(0,102,102);}
.fsb{font-size:58.254331px;}
.fsc{font-size:60.969950px;}
.fsa{font-size:64.571066px;}
.fs12{font-size:66.240000px;}
.fs13{font-size:66.384000px;}
.fs1e{font-size:77.760000px;}
.fs10{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs20{font-size:108.144000px;}
.fs14{font-size:113.760000px;}
.fs15{font-size:113.904000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs5{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs4{font-size:167.760000px;}
.fs1b{font-size:172.800000px;}
.fs1a{font-size:172.944000px;}
.fs8{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs2{font-size:210.960000px;}
.fs1{font-size:211.104000px;}
.fs19{font-size:216.144000px;}
.fs21{font-size:234.000000px;}
.fs1f{font-size:234.144000px;}
.fs18{font-size:239.760000px;}
.fs17{font-size:239.904000px;}
.fs3{font-size:264.240000px;}
.fs0{font-size:264.384000px;}
.fs1c{font-size:288.000000px;}
.fs23{font-size:316.800000px;}
.fs16{font-size:360.000000px;}
.fs22{font-size:396.000000px;}
.fs1d{font-size:527.760000px;}
.fs7{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.684718px;}
.y16{bottom:3.684762px;}
.y18{bottom:3.728628px;}
.y31{bottom:4.299207px;}
.ya1{bottom:21.600000px;}
.y36{bottom:22.716000px;}
.y6{bottom:29.628000px;}
.y30{bottom:32.986675px;}
.y2a{bottom:34.574508px;}
.yd{bottom:43.704000px;}
.y10{bottom:52.236000px;}
.ya0{bottom:54.000000px;}
.y35{bottom:58.752000px;}
.y63{bottom:60.156000px;}
.y2f{bottom:61.673818px;}
.y5{bottom:62.028000px;}
.y71{bottom:62.604000px;}
.y6c{bottom:85.392000px;}
.y2e{bottom:90.334906px;}
.y9a{bottom:93.456000px;}
.y34{bottom:94.752000px;}
.yc{bottom:101.304000px;}
.y7a{bottom:103.320000px;}
.y73{bottom:103.356000px;}
.y91{bottom:108.000000px;}
.y2d{bottom:119.023135px;}
.y6f{bottom:138.024000px;}
.y90{bottom:146.880000px;}
.y2c{bottom:147.705935px;}
.y70{bottom:149.004000px;}
.y72{bottom:151.950000px;}
.y6e{bottom:156.060000px;}
.y2b{bottom:176.367023px;}
.y8f{bottom:185.760000px;}
.y5c{bottom:186.405000px;}
.y60{bottom:186.585000px;}
.y6d{bottom:188.460000px;}
.y6b{bottom:189.180000px;}
.y79{bottom:189.720000px;}
.y5b{bottom:206.205000px;}
.y5f{bottom:206.385000px;}
.y33{bottom:208.590000px;}
.y99{bottom:212.970000px;}
.y48{bottom:218.310000px;}
.y85{bottom:224.565000px;}
.y8e{bottom:224.670000px;}
.y5a{bottom:226.005000px;}
.y5e{bottom:226.230000px;}
.y51{bottom:228.210000px;}
.y47{bottom:238.140000px;}
.y59{bottom:245.805000px;}
.y5d{bottom:246.030000px;}
.y28{bottom:246.860022px;}
.y50{bottom:248.040000px;}
.y46{bottom:257.940000px;}
.y32{bottom:258.990000px;}
.y8d{bottom:263.550000px;}
.y27{bottom:265.670249px;}
.y84{bottom:267.765000px;}
.y4f{bottom:267.840000px;}
.y78{bottom:276.150000px;}
.y45{bottom:277.740000px;}
.y26{bottom:283.743128px;}
.y41{bottom:291.240000px;}
.y68{bottom:292.965000px;}
.y6a{bottom:296.820000px;}
.y25{bottom:301.816008px;}
.y8{bottom:306.870000px;}
.y83{bottom:311.010000px;}
.y8c{bottom:311.070000px;}
.y24{bottom:319.888888px;}
.y40{bottom:323.670000px;}
.y69{bottom:331.380000px;}
.y98{bottom:332.460000px;}
.y54{bottom:335.520000px;}
.y9f{bottom:337.470000px;}
.y23{bottom:337.996861px;}
.y4a{bottom:345.420000px;}
.y82{bottom:354.210000px;}
.y53{bottom:355.320000px;}
.y22{bottom:356.069740px;}
.y77{bottom:362.550000px;}
.y49{bottom:365.250000px;}
.y21{bottom:374.142620px;}
.y52{bottom:375.150000px;}
.y9e{bottom:380.700000px;}
.yb{bottom:381.270000px;}
.y20{bottom:392.221349px;}
.y67{bottom:396.795000px;}
.y81{bottom:397.410000px;}
.y95{bottom:400.140000px;}
.yf{bottom:406.590000px;}
.y1f{bottom:410.323473px;}
.y9d{bottom:423.900000px;}
.y1e{bottom:428.396352px;}
.y4e{bottom:432.720000px;}
.ya{bottom:438.870000px;}
.y80{bottom:440.640000px;}
.y44{bottom:442.620000px;}
.y1d{bottom:446.469232px;}
.y76{bottom:448.995000px;}
.y97{bottom:451.080000px;}
.y4d{bottom:452.520000px;}
.y3d{bottom:453.855000px;}
.y43{bottom:462.420000px;}
.y58{bottom:463.605000px;}
.ye{bottom:464.220000px;}
.y1c{bottom:464.542112px;}
.y9c{bottom:467.100000px;}
.y4c{bottom:472.320000px;}
.y93{bottom:473.610000px;}
.y42{bottom:482.220000px;}
.y1b{bottom:482.644236px;}
.y3c{bottom:482.655000px;}
.y62{bottom:483.225000px;}
.y57{bottom:483.405000px;}
.y7f{bottom:483.840000px;}
.y4b{bottom:492.120000px;}
.y4{bottom:492.450000px;}
.y66{bottom:500.580000px;}
.y1a{bottom:500.717115px;}
.y61{bottom:503.025000px;}
.y56{bottom:503.205000px;}
.y8b{bottom:505.875000px;}
.y3b{bottom:511.455000px;}
.y9b{bottom:512.640000px;}
.y12{bottom:512.925000px;}
.y19{bottom:518.789995px;}
.y55{bottom:523.005000px;}
.y3{bottom:528.630000px;}
.y7e{bottom:530.100000px;}
.y75{bottom:535.425000px;}
.y17{bottom:536.862875px;}
.y3a{bottom:540.285000px;}
.y8a{bottom:549.285000px;}
.y88{bottom:551.730000px;}
.y15{bottom:554.979621px;}
.y92{bottom:560.055000px;}
.y9{bottom:565.485000px;}
.y39{bottom:569.085000px;}
.y3f{bottom:569.805000px;}
.y11{bottom:570.525000px;}
.y94{bottom:571.215000px;}
.y96{bottom:572.760000px;}
.y14{bottom:583.815000px;}
.y2{bottom:585.360000px;}
.y89{bottom:592.485000px;}
.y87{bottom:594.975000px;}
.y7d{bottom:599.250000px;}
.y38{bottom:601.125000px;}
.y65{bottom:603.360000px;}
.y74{bottom:621.825000px;}
.y3e{bottom:630.330000px;}
.y64{bottom:635.760000px;}
.y13{bottom:641.445000px;}
.y37{bottom:644.325000px;}
.y86{bottom:649.875000px;}
.y7c{bottom:659.445000px;}
.y1{bottom:664.560000px;}
.y7{bottom:721.620000px;}
.y7b{bottom:724.245000px;}
.hd{height:16.669161px;}
.hb{height:16.704254px;}
.h9{height:17.371020px;}
.he{height:17.406113px;}
.h16{height:54.628594px;}
.h17{height:54.747352px;}
.hc{height:60.757447px;}
.h10{height:63.589752px;}
.ha{height:67.345603px;}
.h18{height:69.086250px;}
.h19{height:69.236437px;}
.h14{height:78.973945px;}
.h15{height:79.092703px;}
.h5{height:82.476562px;}
.h1a{height:89.068359px;}
.h1d{height:93.937430px;}
.h11{height:99.162773px;}
.h12{height:99.281531px;}
.h4{height:118.757812px;}
.h13{height:118.876570px;}
.h3{height:138.352852px;}
.h22{height:142.509375px;}
.h7{height:158.541680px;}
.h8{height:158.660438px;}
.h1c{height:173.308359px;}
.h1b{height:173.428359px;}
.h21{height:178.255477px;}
.h20{height:197.731758px;}
.h1f{height:197.850516px;}
.hf{height:201.669834px;}
.h2{height:217.920586px;}
.h1{height:218.039344px;}
.h23{height:237.515625px;}
.h25{height:242.480203px;}
.h28{height:247.581445px;}
.h29{height:247.701445px;}
.h27{height:247.820203px;}
.h26{height:251.181445px;}
.h1e{height:296.894531px;}
.h2a{height:326.583984px;}
.h24{height:435.247383px;}
.h6{height:475.031250px;}
.h0{height:810.000000px;}
.w2{width:713.133457px;}
.w1{width:774.727179px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x12{left:2.001017px;}
.x17{left:3.567808px;}
.xb{left:10.800000px;}
.x1e{left:36.108000px;}
.x44{left:47.412000px;}
.x48{left:51.300000px;}
.x1d{left:52.992000px;}
.x3d{left:55.188000px;}
.x24{left:60.624000px;}
.xe{left:64.800000px;}
.x49{left:67.500000px;}
.xa{left:69.876000px;}
.x23{left:74.124000px;}
.x21{left:75.924000px;}
.x20{left:77.724000px;}
.x22{left:87.984000px;}
.x25{left:92.484000px;}
.x4b{left:93.708000px;}
.xf{left:105.300000px;}
.x1f{left:118.836000px;}
.x4a{left:120.420000px;}
.x43{left:123.048000px;}
.x11{left:138.431485px;}
.x16{left:153.724953px;}
.x26{left:165.030000px;}
.x27{left:174.210000px;}
.x14{left:200.796523px;}
.x18{left:208.811908px;}
.x9{left:275.685000px;}
.x15{left:278.430000px;}
.x10{left:279.764011px;}
.x33{left:334.470000px;}
.x34{left:342.210000px;}
.x3e{left:345.165000px;}
.x40{left:346.245000px;}
.x3a{left:349.845000px;}
.x36{left:350.850000px;}
.x35{left:353.370000px;}
.x13{left:373.120237px;}
.x8{left:397.905000px;}
.x45{left:398.985000px;}
.x3f{left:410.655000px;}
.x1{left:414.540000px;}
.x7{left:430.170000px;}
.x6{left:452.730000px;}
.x3b{left:458.610000px;}
.x46{left:460.185000px;}
.x3c{left:482.730000px;}
.x5{left:515.235000px;}
.x19{left:559.335000px;}
.x37{left:576.900000px;}
.x1b{left:580.170000px;}
.x2f{left:592.095000px;}
.x38{left:594.720000px;}
.x1a{left:599.835000px;}
.x30{left:601.275000px;}
.x1c{left:603.795000px;}
.x39{left:612.540000px;}
.x32{left:614.415000px;}
.x31{left:616.935000px;}
.x2{left:621.390000px;}
.x47{left:626.325000px;}
.xc{left:660.600000px;}
.xd{left:685.905000px;}
.x4e{left:690.915000px;}
.x4c{left:724.035000px;}
.x4{left:732.450000px;}
.x3{left:773.715000px;}
.x42{left:776.985000px;}
.x4d{left:794.775000px;}
.x41{left:805.065000px;}
.x2e{left:822.855000px;}
.x28{left:831.420000px;}
.x29{left:838.800000px;}
.x2b{left:843.120000px;}
.x2a{left:850.860000px;}
.x2c{left:867.780000px;}
.x2d{left:877.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:43.893333pt;}
.v4{vertical-align:48.640000pt;}
.v3{vertical-align:51.733333pt;}
.v1{vertical-align:74.986667pt;}
.ls11{letter-spacing:-1.322667pt;}
.ls1e{letter-spacing:-0.275733pt;}
.ls18{letter-spacing:-0.259200pt;}
.lsb{letter-spacing:-0.130133pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.092541pt;}
.ls1f{letter-spacing:-0.076800pt;}
.ls2{letter-spacing:-0.052213pt;}
.ls9{letter-spacing:-0.024087pt;}
.ls17{letter-spacing:-0.011253pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007040pt;}
.ls15{letter-spacing:0.039147pt;}
.ls16{letter-spacing:0.124288pt;}
.ls1a{letter-spacing:0.156267pt;}
.ls4{letter-spacing:0.181867pt;}
.ls20{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.262400pt;}
.ls19{letter-spacing:0.326933pt;}
.ls1b{letter-spacing:16.672256pt;}
.ls1c{letter-spacing:16.736000pt;}
.lsd{letter-spacing:24.512000pt;}
.ls14{letter-spacing:46.332416pt;}
.ls13{letter-spacing:46.391040pt;}
.ls5{letter-spacing:84.147200pt;}
.ls6{letter-spacing:84.192000pt;}
.lsa{letter-spacing:91.808000pt;}
.ls12{letter-spacing:93.692416pt;}
.lse{letter-spacing:158.555733pt;}
.lsc{letter-spacing:170.664533pt;}
.ls10{letter-spacing:175.116373pt;}
.lsf{letter-spacing:189.451093pt;}
.ls7{letter-spacing:190.934028pt;}
.ws35{word-spacing:-79.552000pt;}
.ws38{word-spacing:-63.641600pt;}
.ws0{word-spacing:-53.111808pt;}
.ws2f{word-spacing:-48.492053pt;}
.ws28{word-spacing:-48.233195pt;}
.ws26{word-spacing:-48.194048pt;}
.ws27{word-spacing:-48.165120pt;}
.ws4{word-spacing:-42.408448pt;}
.ws6{word-spacing:-42.379520pt;}
.wsb{word-spacing:-38.647808pt;}
.wsa{word-spacing:-38.618880pt;}
.ws2c{word-spacing:-34.742528pt;}
.ws2e{word-spacing:-28.956928pt;}
.ws1c{word-spacing:-28.928000pt;}
.ws21{word-spacing:-21.696000pt;}
.ws1f{word-spacing:-16.368640pt;}
.ws30{word-spacing:-15.777387pt;}
.ws31{word-spacing:-15.621120pt;}
.ws1e{word-spacing:-13.335808pt;}
.ws1d{word-spacing:-13.306880pt;}
.ws25{word-spacing:-1.303680pt;}
.ws22{word-spacing:-1.066837pt;}
.ws24{word-spacing:-0.635904pt;}
.ws7{word-spacing:0.000000pt;}
.ws23{word-spacing:2.782208pt;}
.ws2d{word-spacing:7.481600pt;}
.ws29{word-spacing:7.787648pt;}
.ws2a{word-spacing:8.005216pt;}
.ws2b{word-spacing:9.448960pt;}
.ws20{word-spacing:10.502997pt;}
.ws2{word-spacing:10.675936pt;}
.ws5{word-spacing:10.865920pt;}
.ws3{word-spacing:10.918912pt;}
.ws9{word-spacing:10.935488pt;}
.ws8{word-spacing:11.036757pt;}
.ws1{word-spacing:11.231147pt;}
.ws36{word-spacing:15.210667pt;}
.ws37{word-spacing:16.102400pt;}
.ws19{word-spacing:100.233440pt;}
.ws16{word-spacing:108.100074pt;}
.ws12{word-spacing:115.046299pt;}
.ws32{word-spacing:115.422187pt;}
.ws18{word-spacing:115.582813pt;}
.wsf{word-spacing:118.536256pt;}
.ws15{word-spacing:127.364087pt;}
.ws13{word-spacing:127.364295pt;}
.wsd{word-spacing:131.211317pt;}
.ws14{word-spacing:143.744550pt;}
.ws1b{word-spacing:145.691430pt;}
.wse{word-spacing:156.062339pt;}
.ws10{word-spacing:159.909568pt;}
.ws33{word-spacing:163.972821pt;}
.wsc{word-spacing:172.340694pt;}
.ws1a{word-spacing:175.800047pt;}
.ws34{word-spacing:178.030187pt;}
.ws11{word-spacing:199.063133pt;}
.ws17{word-spacing:550.573895pt;}
._2d{margin-left:-21.401600pt;}
._2b{margin-left:-15.992320pt;}
._28{margin-left:-14.509440pt;}
._6{margin-left:-12.837120pt;}
._5{margin-left:-10.752000pt;}
._2a{margin-left:-9.728000pt;}
._25{margin-left:-8.536960pt;}
._26{margin-left:-6.142293pt;}
._0{margin-left:-4.475136pt;}
._1{margin-left:-3.190016pt;}
._2{margin-left:-1.687680pt;}
._3{width:0.894720pt;}
._4{width:2.112000pt;}
._27{width:22.733013pt;}
._29{width:43.970816pt;}
._2c{width:80.892416pt;}
._20{width:115.589143pt;}
._1e{width:127.673945pt;}
._1d{width:143.437603pt;}
._15{width:146.100317pt;}
._b{width:161.162933pt;}
._c{width:170.365297pt;}
._f{width:174.212319pt;}
._8{width:188.567059pt;}
._e{width:189.861184pt;}
._9{width:194.025966pt;}
._14{width:217.213113pt;}
._13{width:232.861978pt;}
._11{width:267.174481pt;}
._23{width:271.664595pt;}
._10{width:405.995008pt;}
._1b{width:413.111453pt;}
._21{width:645.882082pt;}
._7{width:784.639820pt;}
._22{width:832.609704pt;}
._1c{width:849.836938pt;}
._24{width:900.183888pt;}
._1f{width:916.634054pt;}
._18{width:1011.013400pt;}
._d{width:1023.730626pt;}
._19{width:1072.166893pt;}
._a{width:1104.803750pt;}
._12{width:1115.155807pt;}
._17{width:1203.883117pt;}
._1a{width:1280.395249pt;}
._16{width:1309.237615pt;}
.fsb{font-size:51.781627pt;}
.fsc{font-size:54.195511pt;}
.fsa{font-size:57.396503pt;}
.fs12{font-size:58.880000pt;}
.fs13{font-size:59.008000pt;}
.fs1e{font-size:69.120000pt;}
.fs10{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs20{font-size:96.128000pt;}
.fs14{font-size:101.120000pt;}
.fs15{font-size:101.248000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs5{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs4{font-size:149.120000pt;}
.fs1b{font-size:153.600000pt;}
.fs1a{font-size:153.728000pt;}
.fs8{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs2{font-size:187.520000pt;}
.fs1{font-size:187.648000pt;}
.fs19{font-size:192.128000pt;}
.fs21{font-size:208.000000pt;}
.fs1f{font-size:208.128000pt;}
.fs18{font-size:213.120000pt;}
.fs17{font-size:213.248000pt;}
.fs3{font-size:234.880000pt;}
.fs0{font-size:235.008000pt;}
.fs1c{font-size:256.000000pt;}
.fs23{font-size:281.600000pt;}
.fs16{font-size:320.000000pt;}
.fs22{font-size:352.000000pt;}
.fs1d{font-size:469.120000pt;}
.fs7{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.275305pt;}
.y16{bottom:3.275344pt;}
.y18{bottom:3.314336pt;}
.y31{bottom:3.821517pt;}
.ya1{bottom:19.200000pt;}
.y36{bottom:20.192000pt;}
.y6{bottom:26.336000pt;}
.y30{bottom:29.321489pt;}
.y2a{bottom:30.732896pt;}
.yd{bottom:38.848000pt;}
.y10{bottom:46.432000pt;}
.ya0{bottom:48.000000pt;}
.y35{bottom:52.224000pt;}
.y63{bottom:53.472000pt;}
.y2f{bottom:54.821172pt;}
.y5{bottom:55.136000pt;}
.y71{bottom:55.648000pt;}
.y6c{bottom:75.904000pt;}
.y2e{bottom:80.297694pt;}
.y9a{bottom:83.072000pt;}
.y34{bottom:84.224000pt;}
.yc{bottom:90.048000pt;}
.y7a{bottom:91.840000pt;}
.y73{bottom:91.872000pt;}
.y91{bottom:96.000000pt;}
.y2d{bottom:105.798342pt;}
.y6f{bottom:122.688000pt;}
.y90{bottom:130.560000pt;}
.y2c{bottom:131.294165pt;}
.y70{bottom:132.448000pt;}
.y72{bottom:135.066667pt;}
.y6e{bottom:138.720000pt;}
.y2b{bottom:156.770687pt;}
.y8f{bottom:165.120000pt;}
.y5c{bottom:165.693333pt;}
.y60{bottom:165.853333pt;}
.y6d{bottom:167.520000pt;}
.y6b{bottom:168.160000pt;}
.y79{bottom:168.640000pt;}
.y5b{bottom:183.293333pt;}
.y5f{bottom:183.453333pt;}
.y33{bottom:185.413333pt;}
.y99{bottom:189.306667pt;}
.y48{bottom:194.053333pt;}
.y85{bottom:199.613333pt;}
.y8e{bottom:199.706667pt;}
.y5a{bottom:200.893333pt;}
.y5e{bottom:201.093333pt;}
.y51{bottom:202.853333pt;}
.y47{bottom:211.680000pt;}
.y59{bottom:218.493333pt;}
.y5d{bottom:218.693333pt;}
.y28{bottom:219.431130pt;}
.y50{bottom:220.480000pt;}
.y46{bottom:229.280000pt;}
.y32{bottom:230.213333pt;}
.y8d{bottom:234.266667pt;}
.y27{bottom:236.151332pt;}
.y84{bottom:238.013333pt;}
.y4f{bottom:238.080000pt;}
.y78{bottom:245.466667pt;}
.y45{bottom:246.880000pt;}
.y26{bottom:252.216114pt;}
.y41{bottom:258.880000pt;}
.y68{bottom:260.413333pt;}
.y6a{bottom:263.840000pt;}
.y25{bottom:268.280896pt;}
.y8{bottom:272.773333pt;}
.y83{bottom:276.453333pt;}
.y8c{bottom:276.506667pt;}
.y24{bottom:284.345678pt;}
.y40{bottom:287.706667pt;}
.y69{bottom:294.560000pt;}
.y98{bottom:295.520000pt;}
.y54{bottom:298.240000pt;}
.y9f{bottom:299.973333pt;}
.y23{bottom:300.441654pt;}
.y4a{bottom:307.040000pt;}
.y82{bottom:314.853333pt;}
.y53{bottom:315.840000pt;}
.y22{bottom:316.506436pt;}
.y77{bottom:322.266667pt;}
.y49{bottom:324.666667pt;}
.y21{bottom:332.571218pt;}
.y52{bottom:333.466667pt;}
.y9e{bottom:338.400000pt;}
.yb{bottom:338.906667pt;}
.y20{bottom:348.641199pt;}
.y67{bottom:352.706667pt;}
.y81{bottom:353.253333pt;}
.y95{bottom:355.680000pt;}
.yf{bottom:361.413333pt;}
.y1f{bottom:364.731976pt;}
.y9d{bottom:376.800000pt;}
.y1e{bottom:380.796758pt;}
.y4e{bottom:384.640000pt;}
.ya{bottom:390.106667pt;}
.y80{bottom:391.680000pt;}
.y44{bottom:393.440000pt;}
.y1d{bottom:396.861540pt;}
.y76{bottom:399.106667pt;}
.y97{bottom:400.960000pt;}
.y4d{bottom:402.240000pt;}
.y3d{bottom:403.426667pt;}
.y43{bottom:411.040000pt;}
.y58{bottom:412.093333pt;}
.ye{bottom:412.640000pt;}
.y1c{bottom:412.926322pt;}
.y9c{bottom:415.200000pt;}
.y4c{bottom:419.840000pt;}
.y93{bottom:420.986667pt;}
.y42{bottom:428.640000pt;}
.y1b{bottom:429.017098pt;}
.y3c{bottom:429.026667pt;}
.y62{bottom:429.533333pt;}
.y57{bottom:429.693333pt;}
.y7f{bottom:430.080000pt;}
.y4b{bottom:437.440000pt;}
.y4{bottom:437.733333pt;}
.y66{bottom:444.960000pt;}
.y1a{bottom:445.081880pt;}
.y61{bottom:447.133333pt;}
.y56{bottom:447.293333pt;}
.y8b{bottom:449.666667pt;}
.y3b{bottom:454.626667pt;}
.y9b{bottom:455.680000pt;}
.y12{bottom:455.933333pt;}
.y19{bottom:461.146662pt;}
.y55{bottom:464.893333pt;}
.y3{bottom:469.893333pt;}
.y7e{bottom:471.200000pt;}
.y75{bottom:475.933333pt;}
.y17{bottom:477.211444pt;}
.y3a{bottom:480.253333pt;}
.y8a{bottom:488.253333pt;}
.y88{bottom:490.426667pt;}
.y15{bottom:493.315219pt;}
.y92{bottom:497.826667pt;}
.y9{bottom:502.653333pt;}
.y39{bottom:505.853333pt;}
.y3f{bottom:506.493333pt;}
.y11{bottom:507.133333pt;}
.y94{bottom:507.746667pt;}
.y96{bottom:509.120000pt;}
.y14{bottom:518.946667pt;}
.y2{bottom:520.320000pt;}
.y89{bottom:526.653333pt;}
.y87{bottom:528.866667pt;}
.y7d{bottom:532.666667pt;}
.y38{bottom:534.333333pt;}
.y65{bottom:536.320000pt;}
.y74{bottom:552.733333pt;}
.y3e{bottom:560.293333pt;}
.y64{bottom:565.120000pt;}
.y13{bottom:570.173333pt;}
.y37{bottom:572.733333pt;}
.y86{bottom:577.666667pt;}
.y7c{bottom:586.173333pt;}
.y1{bottom:590.720000pt;}
.y7{bottom:641.440000pt;}
.y7b{bottom:643.773333pt;}
.hd{height:14.817032pt;}
.hb{height:14.848226pt;}
.h9{height:15.440907pt;}
.he{height:15.472101pt;}
.h16{height:48.558750pt;}
.h17{height:48.664313pt;}
.hc{height:54.006619pt;}
.h10{height:56.524224pt;}
.ha{height:59.862759pt;}
.h18{height:61.410000pt;}
.h19{height:61.543500pt;}
.h14{height:70.199062pt;}
.h15{height:70.304625pt;}
.h5{height:73.312500pt;}
.h1a{height:79.171875pt;}
.h1d{height:83.499938pt;}
.h11{height:88.144687pt;}
.h12{height:88.250250pt;}
.h4{height:105.562500pt;}
.h13{height:105.668063pt;}
.h3{height:122.980312pt;}
.h22{height:126.675000pt;}
.h7{height:140.925938pt;}
.h8{height:141.031500pt;}
.h1c{height:154.051875pt;}
.h1b{height:154.158542pt;}
.h21{height:158.449312pt;}
.h20{height:175.761562pt;}
.h1f{height:175.867125pt;}
.hf{height:179.262075pt;}
.h2{height:193.707188pt;}
.h1{height:193.812750pt;}
.h23{height:211.125000pt;}
.h25{height:215.537958pt;}
.h28{height:220.072396pt;}
.h29{height:220.179063pt;}
.h27{height:220.284625pt;}
.h26{height:223.272396pt;}
.h1e{height:263.906250pt;}
.h2a{height:290.296875pt;}
.h24{height:386.886562pt;}
.h6{height:422.250000pt;}
.h0{height:720.000000pt;}
.w2{width:633.896406pt;}
.w1{width:688.646381pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.778682pt;}
.x17{left:3.171385pt;}
.xb{left:9.600000pt;}
.x1e{left:32.096000pt;}
.x44{left:42.144000pt;}
.x48{left:45.600000pt;}
.x1d{left:47.104000pt;}
.x3d{left:49.056000pt;}
.x24{left:53.888000pt;}
.xe{left:57.600000pt;}
.x49{left:60.000000pt;}
.xa{left:62.112000pt;}
.x23{left:65.888000pt;}
.x21{left:67.488000pt;}
.x20{left:69.088000pt;}
.x22{left:78.208000pt;}
.x25{left:82.208000pt;}
.x4b{left:83.296000pt;}
.xf{left:93.600000pt;}
.x1f{left:105.632000pt;}
.x4a{left:107.040000pt;}
.x43{left:109.376000pt;}
.x11{left:123.050209pt;}
.x16{left:136.644402pt;}
.x26{left:146.693333pt;}
.x27{left:154.853333pt;}
.x14{left:178.485798pt;}
.x18{left:185.610585pt;}
.x9{left:245.053333pt;}
.x15{left:247.493333pt;}
.x10{left:248.679121pt;}
.x33{left:297.306667pt;}
.x34{left:304.186667pt;}
.x3e{left:306.813333pt;}
.x40{left:307.773333pt;}
.x3a{left:310.973333pt;}
.x36{left:311.866667pt;}
.x35{left:314.106667pt;}
.x13{left:331.662433pt;}
.x8{left:353.693333pt;}
.x45{left:354.653333pt;}
.x3f{left:365.026667pt;}
.x1{left:368.480000pt;}
.x7{left:382.373333pt;}
.x6{left:402.426667pt;}
.x3b{left:407.653333pt;}
.x46{left:409.053333pt;}
.x3c{left:429.093333pt;}
.x5{left:457.986667pt;}
.x19{left:497.186667pt;}
.x37{left:512.800000pt;}
.x1b{left:515.706667pt;}
.x2f{left:526.306667pt;}
.x38{left:528.640000pt;}
.x1a{left:533.186667pt;}
.x30{left:534.466667pt;}
.x1c{left:536.706667pt;}
.x39{left:544.480000pt;}
.x32{left:546.146667pt;}
.x31{left:548.386667pt;}
.x2{left:552.346667pt;}
.x47{left:556.733333pt;}
.xc{left:587.200000pt;}
.xd{left:609.693333pt;}
.x4e{left:614.146667pt;}
.x4c{left:643.586667pt;}
.x4{left:651.066667pt;}
.x3{left:687.746667pt;}
.x42{left:690.653333pt;}
.x4d{left:706.466667pt;}
.x41{left:715.613333pt;}
.x2e{left:731.426667pt;}
.x28{left:739.040000pt;}
.x29{left:745.600000pt;}
.x2b{left:749.440000pt;}
.x2a{left:756.320000pt;}
.x2c{left:771.360000pt;}
.x2d{left:780.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; }
  