
    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_58a57cd5e94355f9690f6daf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_f56049cb4ce191682974eb02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_5b6439ef849900da403f9c1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b07c2e42198368e45f08ab5e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ccac8e2d2905d3dfb9c5ed8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.857910;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_544692d6c599e792f22820c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.856934;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;}
.v1{vertical-align:61.555248px;}
.ls47{letter-spacing:-4.279716px;}
.ls41{letter-spacing:-1.653264px;}
.ls3b{letter-spacing:-1.620000px;}
.ls10{letter-spacing:-1.528308px;}
.ls2e{letter-spacing:-1.252800px;}
.ls46{letter-spacing:-0.356400px;}
.lsc{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.183600px;}
.ls2f{letter-spacing:-0.129600px;}
.ls27{letter-spacing:-0.124956px;}
.ls33{letter-spacing:-0.118800px;}
.ls22{letter-spacing:-0.115344px;}
.ls36{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.105732px;}
.ls34{letter-spacing:-0.097200px;}
.ls23{letter-spacing:-0.096120px;}
.ls25{letter-spacing:-0.086508px;}
.ls21{letter-spacing:-0.083880px;}
.ls37{letter-spacing:-0.076896px;}
.ls3f{letter-spacing:-0.075600px;}
.ls38{letter-spacing:-0.067284px;}
.ls3{letter-spacing:-0.064800px;}
.ls1f{letter-spacing:-0.058716px;}
.ls26{letter-spacing:-0.057672px;}
.ls40{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.050328px;}
.ls24{letter-spacing:-0.048060px;}
.ls30{letter-spacing:-0.043200px;}
.ls29{letter-spacing:-0.038448px;}
.ls2c{letter-spacing:-0.033624px;}
.ls32{letter-spacing:-0.032400px;}
.lse{letter-spacing:-0.028836px;}
.ls3e{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.025164px;}
.lsb{letter-spacing:-0.021600px;}
.ls28{letter-spacing:-0.019224px;}
.ls12{letter-spacing:-0.014400px;}
.ls35{letter-spacing:-0.010800px;}
.lsf{letter-spacing:-0.009612px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.009612px;}
.ls2d{letter-spacing:0.010800px;}
.ls19{letter-spacing:0.011988px;}
.ls3d{letter-spacing:0.014400px;}
.ls1c{letter-spacing:0.021600px;}
.ls18{letter-spacing:0.023976px;}
.ls9{letter-spacing:0.028836px;}
.ls7{letter-spacing:0.032400px;}
.ls16{letter-spacing:0.035964px;}
.ls49{letter-spacing:0.038376px;}
.ls2{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.047952px;}
.ls8{letter-spacing:0.048060px;}
.ls0{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.057564px;}
.ls11{letter-spacing:0.057600px;}
.ls14{letter-spacing:0.059940px;}
.ls5{letter-spacing:0.064800px;}
.ls44{letter-spacing:0.071928px;}
.ls3c{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.075600px;}
.ls1a{letter-spacing:0.084060px;}
.ls6{letter-spacing:0.086400px;}
.lsa{letter-spacing:0.086508px;}
.ls45{letter-spacing:0.097200px;}
.ls2b{letter-spacing:0.107892px;}
.ls3a{letter-spacing:0.134568px;}
.ls48{letter-spacing:0.140400px;}
.ls15{letter-spacing:0.143856px;}
.ls1d{letter-spacing:0.159372px;}
.ls43{letter-spacing:0.179820px;}
.ls1b{letter-spacing:0.239760px;}
.ls2a{letter-spacing:93.038868px;}
.ls13{letter-spacing:120.035844px;}
.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;}
}
.ws34{word-spacing:-216.021600px;}
.ws7{word-spacing:-215.978400px;}
.ws6{word-spacing:-215.935200px;}
.ws8{word-spacing:-215.784000px;}
.ws5a{word-spacing:-191.937564px;}
.ws6a{word-spacing:-191.918376px;}
.ws2d{word-spacing:-168.086376px;}
.ws14{word-spacing:-144.057600px;}
.ws13{word-spacing:-143.985600px;}
.ws4e{word-spacing:-143.971200px;}
.ws4f{word-spacing:-143.956800px;}
.ws1f{word-spacing:-130.948668px;}
.ws17{word-spacing:-120.023856px;}
.ws30{word-spacing:-119.987892px;}
.ws5f{word-spacing:-119.951928px;}
.ws60{word-spacing:-119.939940px;}
.ws2f{word-spacing:-119.927952px;}
.ws66{word-spacing:-119.915964px;}
.ws2e{word-spacing:-119.903976px;}
.ws5d{word-spacing:-119.891988px;}
.ws5b{word-spacing:-119.880000px;}
.ws67{word-spacing:-115.600284px;}
.ws50{word-spacing:-111.600000px;}
.ws63{word-spacing:-108.097200px;}
.ws21{word-spacing:-108.086400px;}
.ws2{word-spacing:-108.075600px;}
.ws5{word-spacing:-108.064800px;}
.ws1{word-spacing:-108.054000px;}
.ws3{word-spacing:-108.043200px;}
.ws9{word-spacing:-108.032400px;}
.ws20{word-spacing:-108.021600px;}
.ws31{word-spacing:-108.010800px;}
.ws2c{word-spacing:-108.000000px;}
.ws53{word-spacing:-107.978400px;}
.ws64{word-spacing:-107.956800px;}
.ws52{word-spacing:-107.946000px;}
.ws0{word-spacing:-107.935200px;}
.ws51{word-spacing:-107.924400px;}
.ws46{word-spacing:-107.902800px;}
.ws3f{word-spacing:-107.892000px;}
.ws3b{word-spacing:-107.881200px;}
.ws45{word-spacing:-107.870400px;}
.ws38{word-spacing:-107.816400px;}
.ws32{word-spacing:-106.747200px;}
.ws49{word-spacing:-106.380000px;}
.wsf{word-spacing:-96.206508px;}
.wsc{word-spacing:-96.168060px;}
.wsd{word-spacing:-96.148836px;}
.ws29{word-spacing:-96.129612px;}
.ws12{word-spacing:-96.120000px;}
.ws10{word-spacing:-96.110388px;}
.ws28{word-spacing:-96.100776px;}
.wsb{word-spacing:-96.091164px;}
.ws2a{word-spacing:-96.081552px;}
.ws26{word-spacing:-96.071940px;}
.ws57{word-spacing:-96.062328px;}
.ws56{word-spacing:-96.052716px;}
.ws40{word-spacing:-96.043104px;}
.ws27{word-spacing:-96.033492px;}
.ws59{word-spacing:-96.023880px;}
.ws43{word-spacing:-96.014268px;}
.ws11{word-spacing:-94.591692px;}
.ws1d{word-spacing:-93.554352px;}
.ws5e{word-spacing:-93.422484px;}
.ws62{word-spacing:-92.942964px;}
.ws61{word-spacing:-92.751156px;}
.ws16{word-spacing:-92.727180px;}
.ws19{word-spacing:-92.703204px;}
.ws1e{word-spacing:-92.655252px;}
.ws5c{word-spacing:-92.583324px;}
.ws1c{word-spacing:-92.271636px;}
.ws15{word-spacing:-92.247660px;}
.ws1b{word-spacing:-92.067840px;}
.ws1a{word-spacing:-91.468440px;}
.ws18{word-spacing:-91.336572px;}
.ws65{word-spacing:-84.488400px;}
.ws25{word-spacing:-84.039372px;}
.ws4d{word-spacing:-83.883600px;}
.wse{word-spacing:-83.880000px;}
.ws23{word-spacing:-83.854836px;}
.wsa{word-spacing:-83.829672px;}
.ws22{word-spacing:-83.821284px;}
.ws24{word-spacing:-83.796120px;}
.ws4b{word-spacing:-83.592000px;}
.ws2b{word-spacing:-83.430000px;}
.ws33{word-spacing:-83.386800px;}
.ws69{word-spacing:-83.192400px;}
.ws4a{word-spacing:-83.008800px;}
.ws68{word-spacing:-81.216000px;}
.ws44{word-spacing:-75.329244px;}
.ws42{word-spacing:-75.050496px;}
.ws41{word-spacing:-74.608344px;}
.ws35{word-spacing:-29.980800px;}
.ws3d{word-spacing:-29.548800px;}
.ws39{word-spacing:-29.505600px;}
.ws37{word-spacing:-29.440800px;}
.ws3e{word-spacing:-29.430000px;}
.ws3c{word-spacing:-29.376000px;}
.ws3a{word-spacing:-29.332800px;}
.ws47{word-spacing:-28.134000px;}
.ws48{word-spacing:-28.112400px;}
.ws4c{word-spacing:-28.090800px;}
.ws36{word-spacing:-0.151200px;}
.ws4{word-spacing:0.000000px;}
.ws55{word-spacing:7.516584px;}
.ws54{word-spacing:851.306004px;}
.ws58{word-spacing:1574.186076px;}
._b{margin-left:-11.988000px;}
._10{margin-left:-10.951200px;}
._1{margin-left:-9.385200px;}
._d{margin-left:-8.229600px;}
._2{margin-left:-7.030800px;}
._9{margin-left:-5.555736px;}
._5{margin-left:-4.276800px;}
._3{margin-left:-2.797200px;}
._0{margin-left:-1.339200px;}
._4{width:1.188000px;}
._8{width:2.749968px;}
._7{width:4.168800px;}
._e{width:22.700304px;}
._c{width:23.824800px;}
._a{width:25.822800px;}
._6{width:28.496016px;}
._f{width:79.974000px;}
.fc5{color:rgb(28,29,30);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(46,117,182);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs4{font-size:96.120000px;}
.fs0{font-size:108.000000px;}
.fs6{font-size:119.880000px;}
.fs5{font-size:144.000000px;}
.fs7{font-size:168.120000px;}
.fs8{font-size:191.880000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:54.840150px;}
.y46{bottom:69.960000px;}
.y98{bottom:70.679100px;}
.y2{bottom:73.200150px;}
.y6{bottom:73.290000px;}
.y4e{bottom:86.520000px;}
.y75{bottom:87.240150px;}
.y97{bottom:108.120000px;}
.y9c{bottom:108.480000px;}
.y39{bottom:112.530000px;}
.y8a{bottom:135.205563px;}
.y61{bottom:136.740315px;}
.y96{bottom:140.520000px;}
.y45{bottom:143.669100px;}
.y14{bottom:159.958839px;}
.y60{bottom:165.540270px;}
.y89{bottom:165.985590px;}
.y6e{bottom:166.890000px;}
.y23{bottom:176.610468px;}
.y38{bottom:178.050000px;}
.y12{bottom:178.320000px;}
.y13{bottom:185.880000px;}
.y1{bottom:189.300000px;}
.y5f{bottom:194.340225px;}
.y6d{bottom:199.290000px;}
.y95{bottom:201.270396px;}
.y19{bottom:208.470000px;}
.y88{bottom:211.976607px;}
.y5e{bottom:223.140180px;}
.y37{bottom:229.705221px;}
.y22{bottom:230.610414px;}
.y6c{bottom:231.690000px;}
.ya6{bottom:232.500000px;}
.y94{bottom:237.270360px;}
.y87{bottom:242.756634px;}
.y18{bottom:251.670000px;}
.y5d{bottom:251.940135px;}
.y6b{bottom:264.090000px;}
.y21{bottom:266.610378px;}
.y5c{bottom:280.740090px;}
.y5{bottom:282.000000px;}
.y36{bottom:295.946319px;}
.y86{bottom:296.127264px;}
.y93{bottom:309.270288px;}
.y5b{bottom:309.540045px;}
.y20{bottom:320.610324px;}
.y6a{bottom:323.490000px;}
.y84{bottom:326.996202px;}
.y5a{bottom:338.340000px;}
.y9{bottom:348.421800px;}
.y35{bottom:353.005554px;}
.y69{bottom:355.890000px;}
.y85{bottom:357.776229px;}
.y16{bottom:367.320657px;}
.y7{bottom:369.930000px;}
.y11{bottom:372.358839px;}
.y1f{bottom:374.610270px;}
.y4{bottom:379.200000px;}
.y92{bottom:381.270216px;}
.y10{bottom:398.280000px;}
.y15{bottom:403.320000px;}
.yd{bottom:404.760000px;}
.y83{bottom:407.006490px;}
.y34{bottom:407.995806px;}
.y3{bottom:411.600000px;}
.y68{bottom:415.290000px;}
.y91{bottom:417.270180px;}
.y1e{bottom:428.610216px;}
.y82{bottom:437.786517px;}
.y49{bottom:441.030000px;}
.y8{bottom:444.630900px;}
.y67{bottom:447.690000px;}
.y90{bottom:453.270144px;}
.y59{bottom:456.420000px;}
.yc{bottom:463.710000px;}
.y81{bottom:476.578146px;}
.y1d{bottom:482.610162px;}
.y58{bottom:488.820000px;}
.y8f{bottom:489.270108px;}
.y33{bottom:489.536805px;}
.y48{bottom:505.830000px;}
.y66{bottom:507.090000px;}
.y80{bottom:507.358173px;}
.y57{bottom:521.220000px;}
.yb{bottom:522.030000px;}
.y1c{bottom:536.610108px;}
.ya{bottom:545.340000px;}
.y7f{bottom:548.399010px;}
.y56{bottom:553.620000px;}
.ya5{bottom:554.880000px;}
.y32{bottom:555.777903px;}
.y8e{bottom:561.270036px;}
.y65{bottom:566.490000px;}
.y74{bottom:570.450000px;}
.y47{bottom:570.630000px;}
.y7e{bottom:579.179037px;}
.y7c{bottom:579.267948px;}
.y55{bottom:586.020000px;}
.y1b{bottom:590.610054px;}
.y8d{bottom:597.270000px;}
.y64{bottom:598.890000px;}
.y31{bottom:601.588695px;}
.y40{bottom:603.210072px;}
.y17{bottom:608.700000px;}
.y7b{bottom:610.047975px;}
.y73{bottom:613.650000px;}
.y54{bottom:618.420000px;}
.y3f{bottom:639.210036px;}
.y7d{bottom:640.828002px;}
.y9e{bottom:642.630036px;}
.yf{bottom:644.430000px;}
.y1a{bottom:644.610000px;}
.y53{bottom:650.820000px;}
.y72{bottom:656.850000px;}
.y30{bottom:657.657894px;}
.y2c{bottom:668.191755px;}
.y3e{bottom:675.210000px;}
.y9d{bottom:678.630000px;}
.y7a{bottom:681.957750px;}
.y52{bottom:683.220000px;}
.y2b{bottom:693.391404px;}
.y63{bottom:696.090000px;}
.y79{bottom:697.348965px;}
.y71{bottom:700.050000px;}
.y51{bottom:715.620000px;}
.y2a{bottom:718.591053px;}
.y2f{bottom:723.898992px;}
.y62{bottom:728.490000px;}
.y25{bottom:728.670000px;}
.y4c{bottom:731.910000px;}
.y44{bottom:732.180000px;}
.y3c{bottom:737.040000px;}
.y9b{bottom:739.200000px;}
.y29{bottom:743.790702px;}
.y3d{bottom:746.760000px;}
.y50{bottom:748.020000px;}
.y8c{bottom:755.220000px;}
.y78{bottom:755.850000px;}
.ya4{bottom:759.540000px;}
.y4b{bottom:763.500000px;}
.ya0{bottom:764.310000px;}
.y43{bottom:764.580000px;}
.y24{bottom:768.540000px;}
.y28{bottom:768.990351px;}
.y3b{bottom:769.440000px;}
.y42{bottom:777.090000px;}
.ye{bottom:778.440000px;}
.ya2{bottom:779.520000px;}
.y2e{bottom:779.879280px;}
.y4f{bottom:780.420000px;}
.y9a{bottom:782.670000px;}
.ya1{bottom:787.530000px;}
.ya3{bottom:791.940000px;}
.y27{bottom:794.190000px;}
.y4a{bottom:795.900000px;}
.y9f{bottom:796.710000px;}
.y4d{bottom:796.800000px;}
.y6f{bottom:798.420000px;}
.y99{bottom:800.040000px;}
.y77{bottom:800.850150px;}
.y70{bottom:801.480000px;}
.y3a{bottom:801.840000px;}
.y8b{bottom:807.240000px;}
.y26{bottom:807.420900px;}
.y41{bottom:812.370000px;}
.y2d{bottom:823.710000px;}
.h3{height:51.679688px;}
.he{height:60.206836px;}
.h8{height:60.903105px;}
.hf{height:68.992383px;}
.h9{height:69.790254px;}
.h4{height:77.519531px;}
.h2{height:78.416016px;}
.h5{height:78.626953px;}
.h14{height:81.480937px;}
.hc{height:86.046680px;}
.h13{height:87.041777px;}
.hb{height:87.275918px;}
.ha{height:104.554688px;}
.h10{height:112.640625px;}
.hd{height:122.067598px;}
.h11{height:130.547631px;}
.h15{height:137.726367px;}
.h12{height:139.319121px;}
.h6{height:155.039062px;}
.h7{height:156.832031px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2b{left:102.315750px;}
.x2f{left:116.535900px;}
.x38{left:124.185900px;}
.x2e{left:125.895750px;}
.x37{left:128.686800px;}
.x19{left:131.565750px;}
.x26{left:135.435900px;}
.x34{left:138.315750px;}
.x41{left:139.395750px;}
.x1{left:144.525900px;}
.x3d{left:149.655750px;}
.x3b{left:153.075750px;}
.x18{left:158.565750px;}
.x16{left:161.985750px;}
.x2d{left:163.875750px;}
.x3c{left:166.665000px;}
.x3{left:168.555750px;}
.x36{left:169.815750px;}
.x35{left:171.525900px;}
.x29{left:174.585750px;}
.x5{left:176.566800px;}
.x4{left:181.785900px;}
.x6{left:183.315750px;}
.x28{left:185.385750px;}
.x42{left:187.815750px;}
.x2c{left:188.985750px;}
.x27{left:193.035750px;}
.x3e{left:195.915750px;}
.x15{left:200.865750px;}
.x17{left:202.478217px;}
.x33{left:220.665750px;}
.x40{left:241.815750px;}
.x3f{left:248.205750px;}
.x12{left:282.944670px;}
.x11{left:288.615750px;}
.x13{left:350.355750px;}
.xf{left:461.235750px;}
.x10{left:473.116182px;}
.x14{left:486.975750px;}
.x30{left:489.316800px;}
.x7{left:513.615750px;}
.x9{left:526.035750px;}
.x31{left:529.816800px;}
.x8{left:537.553950px;}
.x1f{left:552.674238px;}
.x1e{left:560.774751px;}
.x1d{left:566.895192px;}
.xa{left:581.205750px;}
.x1c{left:597.494994px;}
.x39{left:628.455450px;}
.x1b{left:642.315750px;}
.xe{left:718.275750px;}
.x3a{left:749.145750px;}
.x1a{left:774.165750px;}
.x32{left:808.365750px;}
.xb{left:819.075750px;}
.xd{left:882.706875px;}
.xc{left:905.835750px;}
.x24{left:912.315750px;}
.x25{left:949.035750px;}
.x23{left:965.322204px;}
.x22{left:974.501664px;}
.x21{left:983.592213px;}
.x20{left:1031.563302px;}
.x2a{left:1068.105750px;}
.x2{left:1077.195750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:54.715776pt;}
.ls47{letter-spacing:-3.804192pt;}
.ls41{letter-spacing:-1.469568pt;}
.ls3b{letter-spacing:-1.440000pt;}
.ls10{letter-spacing:-1.358496pt;}
.ls2e{letter-spacing:-1.113600pt;}
.ls46{letter-spacing:-0.316800pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.163200pt;}
.ls2f{letter-spacing:-0.115200pt;}
.ls27{letter-spacing:-0.111072pt;}
.ls33{letter-spacing:-0.105600pt;}
.ls22{letter-spacing:-0.102528pt;}
.ls36{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.093984pt;}
.ls34{letter-spacing:-0.086400pt;}
.ls23{letter-spacing:-0.085440pt;}
.ls25{letter-spacing:-0.076896pt;}
.ls21{letter-spacing:-0.074560pt;}
.ls37{letter-spacing:-0.068352pt;}
.ls3f{letter-spacing:-0.067200pt;}
.ls38{letter-spacing:-0.059808pt;}
.ls3{letter-spacing:-0.057600pt;}
.ls1f{letter-spacing:-0.052192pt;}
.ls26{letter-spacing:-0.051264pt;}
.ls40{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.044736pt;}
.ls24{letter-spacing:-0.042720pt;}
.ls30{letter-spacing:-0.038400pt;}
.ls29{letter-spacing:-0.034176pt;}
.ls2c{letter-spacing:-0.029888pt;}
.ls32{letter-spacing:-0.028800pt;}
.lse{letter-spacing:-0.025632pt;}
.ls3e{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.022368pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls28{letter-spacing:-0.017088pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls35{letter-spacing:-0.009600pt;}
.lsf{letter-spacing:-0.008544pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.008544pt;}
.ls2d{letter-spacing:0.009600pt;}
.ls19{letter-spacing:0.010656pt;}
.ls3d{letter-spacing:0.012800pt;}
.ls1c{letter-spacing:0.019200pt;}
.ls18{letter-spacing:0.021312pt;}
.ls9{letter-spacing:0.025632pt;}
.ls7{letter-spacing:0.028800pt;}
.ls16{letter-spacing:0.031968pt;}
.ls49{letter-spacing:0.034112pt;}
.ls2{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.042624pt;}
.ls8{letter-spacing:0.042720pt;}
.ls0{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.051168pt;}
.ls11{letter-spacing:0.051200pt;}
.ls14{letter-spacing:0.053280pt;}
.ls5{letter-spacing:0.057600pt;}
.ls44{letter-spacing:0.063936pt;}
.ls3c{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.067200pt;}
.ls1a{letter-spacing:0.074720pt;}
.ls6{letter-spacing:0.076800pt;}
.lsa{letter-spacing:0.076896pt;}
.ls45{letter-spacing:0.086400pt;}
.ls2b{letter-spacing:0.095904pt;}
.ls3a{letter-spacing:0.119616pt;}
.ls48{letter-spacing:0.124800pt;}
.ls15{letter-spacing:0.127872pt;}
.ls1d{letter-spacing:0.141664pt;}
.ls43{letter-spacing:0.159840pt;}
.ls1b{letter-spacing:0.213120pt;}
.ls2a{letter-spacing:82.701216pt;}
.ls13{letter-spacing:106.698528pt;}
.ws34{word-spacing:-192.019200pt;}
.ws7{word-spacing:-191.980800pt;}
.ws6{word-spacing:-191.942400pt;}
.ws8{word-spacing:-191.808000pt;}
.ws5a{word-spacing:-170.611168pt;}
.ws6a{word-spacing:-170.594112pt;}
.ws2d{word-spacing:-149.410112pt;}
.ws14{word-spacing:-128.051200pt;}
.ws13{word-spacing:-127.987200pt;}
.ws4e{word-spacing:-127.974400pt;}
.ws4f{word-spacing:-127.961600pt;}
.ws1f{word-spacing:-116.398816pt;}
.ws17{word-spacing:-106.687872pt;}
.ws30{word-spacing:-106.655904pt;}
.ws5f{word-spacing:-106.623936pt;}
.ws60{word-spacing:-106.613280pt;}
.ws2f{word-spacing:-106.602624pt;}
.ws66{word-spacing:-106.591968pt;}
.ws2e{word-spacing:-106.581312pt;}
.ws5d{word-spacing:-106.570656pt;}
.ws5b{word-spacing:-106.560000pt;}
.ws67{word-spacing:-102.755808pt;}
.ws50{word-spacing:-99.200000pt;}
.ws63{word-spacing:-96.086400pt;}
.ws21{word-spacing:-96.076800pt;}
.ws2{word-spacing:-96.067200pt;}
.ws5{word-spacing:-96.057600pt;}
.ws1{word-spacing:-96.048000pt;}
.ws3{word-spacing:-96.038400pt;}
.ws9{word-spacing:-96.028800pt;}
.ws20{word-spacing:-96.019200pt;}
.ws31{word-spacing:-96.009600pt;}
.ws2c{word-spacing:-96.000000pt;}
.ws53{word-spacing:-95.980800pt;}
.ws64{word-spacing:-95.961600pt;}
.ws52{word-spacing:-95.952000pt;}
.ws0{word-spacing:-95.942400pt;}
.ws51{word-spacing:-95.932800pt;}
.ws46{word-spacing:-95.913600pt;}
.ws3f{word-spacing:-95.904000pt;}
.ws3b{word-spacing:-95.894400pt;}
.ws45{word-spacing:-95.884800pt;}
.ws38{word-spacing:-95.836800pt;}
.ws32{word-spacing:-94.886400pt;}
.ws49{word-spacing:-94.560000pt;}
.wsf{word-spacing:-85.516896pt;}
.wsc{word-spacing:-85.482720pt;}
.wsd{word-spacing:-85.465632pt;}
.ws29{word-spacing:-85.448544pt;}
.ws12{word-spacing:-85.440000pt;}
.ws10{word-spacing:-85.431456pt;}
.ws28{word-spacing:-85.422912pt;}
.wsb{word-spacing:-85.414368pt;}
.ws2a{word-spacing:-85.405824pt;}
.ws26{word-spacing:-85.397280pt;}
.ws57{word-spacing:-85.388736pt;}
.ws56{word-spacing:-85.380192pt;}
.ws40{word-spacing:-85.371648pt;}
.ws27{word-spacing:-85.363104pt;}
.ws59{word-spacing:-85.354560pt;}
.ws43{word-spacing:-85.346016pt;}
.ws11{word-spacing:-84.081504pt;}
.ws1d{word-spacing:-83.159424pt;}
.ws5e{word-spacing:-83.042208pt;}
.ws62{word-spacing:-82.615968pt;}
.ws61{word-spacing:-82.445472pt;}
.ws16{word-spacing:-82.424160pt;}
.ws19{word-spacing:-82.402848pt;}
.ws1e{word-spacing:-82.360224pt;}
.ws5c{word-spacing:-82.296288pt;}
.ws1c{word-spacing:-82.019232pt;}
.ws15{word-spacing:-81.997920pt;}
.ws1b{word-spacing:-81.838080pt;}
.ws1a{word-spacing:-81.305280pt;}
.ws18{word-spacing:-81.188064pt;}
.ws65{word-spacing:-75.100800pt;}
.ws25{word-spacing:-74.701664pt;}
.ws4d{word-spacing:-74.563200pt;}
.wse{word-spacing:-74.560000pt;}
.ws23{word-spacing:-74.537632pt;}
.wsa{word-spacing:-74.515264pt;}
.ws22{word-spacing:-74.507808pt;}
.ws24{word-spacing:-74.485440pt;}
.ws4b{word-spacing:-74.304000pt;}
.ws2b{word-spacing:-74.160000pt;}
.ws33{word-spacing:-74.121600pt;}
.ws69{word-spacing:-73.948800pt;}
.ws4a{word-spacing:-73.785600pt;}
.ws68{word-spacing:-72.192000pt;}
.ws44{word-spacing:-66.959328pt;}
.ws42{word-spacing:-66.711552pt;}
.ws41{word-spacing:-66.318528pt;}
.ws35{word-spacing:-26.649600pt;}
.ws3d{word-spacing:-26.265600pt;}
.ws39{word-spacing:-26.227200pt;}
.ws37{word-spacing:-26.169600pt;}
.ws3e{word-spacing:-26.160000pt;}
.ws3c{word-spacing:-26.112000pt;}
.ws3a{word-spacing:-26.073600pt;}
.ws47{word-spacing:-25.008000pt;}
.ws48{word-spacing:-24.988800pt;}
.ws4c{word-spacing:-24.969600pt;}
.ws36{word-spacing:-0.134400pt;}
.ws4{word-spacing:0.000000pt;}
.ws55{word-spacing:6.681408pt;}
.ws54{word-spacing:756.716448pt;}
.ws58{word-spacing:1399.276512pt;}
._b{margin-left:-10.656000pt;}
._10{margin-left:-9.734400pt;}
._1{margin-left:-8.342400pt;}
._d{margin-left:-7.315200pt;}
._2{margin-left:-6.249600pt;}
._9{margin-left:-4.938432pt;}
._5{margin-left:-3.801600pt;}
._3{margin-left:-2.486400pt;}
._0{margin-left:-1.190400pt;}
._4{width:1.056000pt;}
._8{width:2.444416pt;}
._7{width:3.705600pt;}
._e{width:20.178048pt;}
._c{width:21.177600pt;}
._a{width:22.953600pt;}
._6{width:25.329792pt;}
._f{width:71.088000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs4{font-size:85.440000pt;}
.fs0{font-size:96.000000pt;}
.fs6{font-size:106.560000pt;}
.fs5{font-size:128.000000pt;}
.fs7{font-size:149.440000pt;}
.fs8{font-size:170.560000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:48.746800pt;}
.y46{bottom:62.186667pt;}
.y98{bottom:62.825867pt;}
.y2{bottom:65.066800pt;}
.y6{bottom:65.146667pt;}
.y4e{bottom:76.906667pt;}
.y75{bottom:77.546800pt;}
.y97{bottom:96.106667pt;}
.y9c{bottom:96.426667pt;}
.y39{bottom:100.026667pt;}
.y8a{bottom:120.182723pt;}
.y61{bottom:121.546947pt;}
.y96{bottom:124.906667pt;}
.y45{bottom:127.705867pt;}
.y14{bottom:142.185635pt;}
.y60{bottom:147.146907pt;}
.y89{bottom:147.542747pt;}
.y6e{bottom:148.346667pt;}
.y23{bottom:156.987083pt;}
.y38{bottom:158.266667pt;}
.y12{bottom:158.506667pt;}
.y13{bottom:165.226667pt;}
.y1{bottom:168.266667pt;}
.y5f{bottom:172.746867pt;}
.y6d{bottom:177.146667pt;}
.y95{bottom:178.907019pt;}
.y19{bottom:185.306667pt;}
.y88{bottom:188.423651pt;}
.y5e{bottom:198.346827pt;}
.y37{bottom:204.182419pt;}
.y22{bottom:204.987035pt;}
.y6c{bottom:205.946667pt;}
.ya6{bottom:206.666667pt;}
.y94{bottom:210.906987pt;}
.y87{bottom:215.783675pt;}
.y18{bottom:223.706667pt;}
.y5d{bottom:223.946787pt;}
.y6b{bottom:234.746667pt;}
.y21{bottom:236.987003pt;}
.y5c{bottom:249.546747pt;}
.y5{bottom:250.666667pt;}
.y36{bottom:263.063395pt;}
.y86{bottom:263.224235pt;}
.y93{bottom:274.906923pt;}
.y5b{bottom:275.146707pt;}
.y20{bottom:284.986955pt;}
.y6a{bottom:287.546667pt;}
.y84{bottom:290.663291pt;}
.y5a{bottom:300.746667pt;}
.y9{bottom:309.708267pt;}
.y35{bottom:313.782715pt;}
.y69{bottom:316.346667pt;}
.y85{bottom:318.023315pt;}
.y16{bottom:326.507251pt;}
.y7{bottom:328.826667pt;}
.y11{bottom:330.985635pt;}
.y1f{bottom:332.986907pt;}
.y4{bottom:337.066667pt;}
.y92{bottom:338.906859pt;}
.y10{bottom:354.026667pt;}
.y15{bottom:358.506667pt;}
.yd{bottom:359.786667pt;}
.y83{bottom:361.783547pt;}
.y34{bottom:362.662939pt;}
.y3{bottom:365.866667pt;}
.y68{bottom:369.146667pt;}
.y91{bottom:370.906827pt;}
.y1e{bottom:380.986859pt;}
.y82{bottom:389.143571pt;}
.y49{bottom:392.026667pt;}
.y8{bottom:395.227467pt;}
.y67{bottom:397.946667pt;}
.y90{bottom:402.906795pt;}
.y59{bottom:405.706667pt;}
.yc{bottom:412.186667pt;}
.y81{bottom:423.625019pt;}
.y1d{bottom:428.986811pt;}
.y58{bottom:434.506667pt;}
.y8f{bottom:434.906763pt;}
.y33{bottom:435.143827pt;}
.y48{bottom:449.626667pt;}
.y66{bottom:450.746667pt;}
.y80{bottom:450.985043pt;}
.y57{bottom:463.306667pt;}
.yb{bottom:464.026667pt;}
.y1c{bottom:476.986763pt;}
.ya{bottom:484.746667pt;}
.y7f{bottom:487.465787pt;}
.y56{bottom:492.106667pt;}
.ya5{bottom:493.226667pt;}
.y32{bottom:494.024803pt;}
.y8e{bottom:498.906699pt;}
.y65{bottom:503.546667pt;}
.y74{bottom:507.066667pt;}
.y47{bottom:507.226667pt;}
.y7e{bottom:514.825811pt;}
.y7c{bottom:514.904843pt;}
.y55{bottom:520.906667pt;}
.y1b{bottom:524.986715pt;}
.y8d{bottom:530.906667pt;}
.y64{bottom:532.346667pt;}
.y31{bottom:534.745507pt;}
.y40{bottom:536.186731pt;}
.y17{bottom:541.066667pt;}
.y7b{bottom:542.264867pt;}
.y73{bottom:545.466667pt;}
.y54{bottom:549.706667pt;}
.y3f{bottom:568.186699pt;}
.y7d{bottom:569.624891pt;}
.y9e{bottom:571.226699pt;}
.yf{bottom:572.826667pt;}
.y1a{bottom:572.986667pt;}
.y53{bottom:578.506667pt;}
.y72{bottom:583.866667pt;}
.y30{bottom:584.584795pt;}
.y2c{bottom:593.948227pt;}
.y3e{bottom:600.186667pt;}
.y9d{bottom:603.226667pt;}
.y7a{bottom:606.184667pt;}
.y52{bottom:607.306667pt;}
.y2b{bottom:616.347915pt;}
.y63{bottom:618.746667pt;}
.y79{bottom:619.865747pt;}
.y71{bottom:622.266667pt;}
.y51{bottom:636.106667pt;}
.y2a{bottom:638.747603pt;}
.y2f{bottom:643.465771pt;}
.y62{bottom:647.546667pt;}
.y25{bottom:647.706667pt;}
.y4c{bottom:650.586667pt;}
.y44{bottom:650.826667pt;}
.y3c{bottom:655.146667pt;}
.y9b{bottom:657.066667pt;}
.y29{bottom:661.147291pt;}
.y3d{bottom:663.786667pt;}
.y50{bottom:664.906667pt;}
.y8c{bottom:671.306667pt;}
.y78{bottom:671.866667pt;}
.ya4{bottom:675.146667pt;}
.y4b{bottom:678.666667pt;}
.ya0{bottom:679.386667pt;}
.y43{bottom:679.626667pt;}
.y24{bottom:683.146667pt;}
.y28{bottom:683.546979pt;}
.y3b{bottom:683.946667pt;}
.y42{bottom:690.746667pt;}
.ye{bottom:691.946667pt;}
.ya2{bottom:692.906667pt;}
.y2e{bottom:693.226027pt;}
.y4f{bottom:693.706667pt;}
.y9a{bottom:695.706667pt;}
.ya1{bottom:700.026667pt;}
.ya3{bottom:703.946667pt;}
.y27{bottom:705.946667pt;}
.y4a{bottom:707.466667pt;}
.y9f{bottom:708.186667pt;}
.y4d{bottom:708.266667pt;}
.y6f{bottom:709.706667pt;}
.y99{bottom:711.146667pt;}
.y77{bottom:711.866800pt;}
.y70{bottom:712.426667pt;}
.y3a{bottom:712.746667pt;}
.y8b{bottom:717.546667pt;}
.y26{bottom:717.707467pt;}
.y41{bottom:722.106667pt;}
.y2d{bottom:732.186667pt;}
.h3{height:45.937500pt;}
.he{height:53.517187pt;}
.h8{height:54.136094pt;}
.hf{height:61.326562pt;}
.h9{height:62.035781pt;}
.h4{height:68.906250pt;}
.h2{height:69.703125pt;}
.h5{height:69.890625pt;}
.h14{height:72.427500pt;}
.hc{height:76.485937pt;}
.h13{height:77.370469pt;}
.hb{height:77.578594pt;}
.ha{height:92.937500pt;}
.h10{height:100.125000pt;}
.hd{height:108.504531pt;}
.h11{height:116.042339pt;}
.h15{height:122.423437pt;}
.h12{height:123.839219pt;}
.h6{height:137.812500pt;}
.h7{height:139.406250pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2b{left:90.947333pt;}
.x2f{left:103.587467pt;}
.x38{left:110.387467pt;}
.x2e{left:111.907333pt;}
.x37{left:114.388267pt;}
.x19{left:116.947333pt;}
.x26{left:120.387467pt;}
.x34{left:122.947333pt;}
.x41{left:123.907333pt;}
.x1{left:128.467467pt;}
.x3d{left:133.027333pt;}
.x3b{left:136.067333pt;}
.x18{left:140.947333pt;}
.x16{left:143.987333pt;}
.x2d{left:145.667333pt;}
.x3c{left:148.146667pt;}
.x3{left:149.827333pt;}
.x36{left:150.947333pt;}
.x35{left:152.467467pt;}
.x29{left:155.187333pt;}
.x5{left:156.948267pt;}
.x4{left:161.587467pt;}
.x6{left:162.947333pt;}
.x28{left:164.787333pt;}
.x42{left:166.947333pt;}
.x2c{left:167.987333pt;}
.x27{left:171.587333pt;}
.x3e{left:174.147333pt;}
.x15{left:178.547333pt;}
.x17{left:179.980637pt;}
.x33{left:196.147333pt;}
.x40{left:214.947333pt;}
.x3f{left:220.627333pt;}
.x12{left:251.506373pt;}
.x11{left:256.547333pt;}
.x13{left:311.427333pt;}
.xf{left:409.987333pt;}
.x10{left:420.547717pt;}
.x14{left:432.867333pt;}
.x30{left:434.948267pt;}
.x7{left:456.547333pt;}
.x9{left:467.587333pt;}
.x31{left:470.948267pt;}
.x8{left:477.825733pt;}
.x1f{left:491.265989pt;}
.x1e{left:498.466445pt;}
.x1d{left:503.906837pt;}
.xa{left:516.627333pt;}
.x1c{left:531.106661pt;}
.x39{left:558.627067pt;}
.x1b{left:570.947333pt;}
.xe{left:638.467333pt;}
.x3a{left:665.907333pt;}
.x1a{left:688.147333pt;}
.x32{left:718.547333pt;}
.xb{left:728.067333pt;}
.xd{left:784.628333pt;}
.xc{left:805.187333pt;}
.x24{left:810.947333pt;}
.x25{left:843.587333pt;}
.x23{left:858.064181pt;}
.x22{left:866.223701pt;}
.x21{left:874.304189pt;}
.x20{left:916.945157pt;}
.x2a{left:949.427333pt;}
.x2{left:957.507333pt;}
}




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