
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e810ebd1b98b18b54f61a45a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_6453cdd7cd8ef7c87132cc07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_f102274eca21c372983268fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_98aad57d6686115e231abf5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.684000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e63b4d9c4fcf089d04763aa4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d4f48599791dd29a777b7878.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_82ba2636228de0f7411b3b15.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2f4501332f8597a086649da2.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.399000;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f332536863fd7955cacbbe99.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.726000;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);}
.v5{vertical-align:-10.662000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.744000px;}
.v6{vertical-align:23.754000px;}
.v2{vertical-align:27.528000px;}
.v4{vertical-align:42.498000px;}
.v7{vertical-align:44.280000px;}
.va{vertical-align:89.178000px;}
.v8{vertical-align:92.292000px;}
.v9{vertical-align:137.190000px;}
.ls1a{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000141px;}
.ls28{letter-spacing:0.001062px;}
.ls4{letter-spacing:0.001866px;}
.ls1d{letter-spacing:0.002147px;}
.ls3{letter-spacing:0.002338px;}
.ls16{letter-spacing:0.002682px;}
.ls19{letter-spacing:0.002700px;}
.ls1e{letter-spacing:0.002706px;}
.ls7{letter-spacing:0.002712px;}
.lsa{letter-spacing:0.003056px;}
.ls2{letter-spacing:0.004200px;}
.lsb{letter-spacing:2.984915px;}
.ls22{letter-spacing:2.990915px;}
.ls30{letter-spacing:6.563412px;}
.ls10{letter-spacing:7.043428px;}
.ls21{letter-spacing:7.140493px;}
.ls29{letter-spacing:7.174869px;}
.ls1c{letter-spacing:9.092147px;}
.ls25{letter-spacing:10.160915px;}
.ls2f{letter-spacing:10.904712px;}
.ls13{letter-spacing:10.910712px;}
.ls14{letter-spacing:10.930918px;}
.ls23{letter-spacing:13.898915px;}
.ls24{letter-spacing:14.380869px;}
.ls20{letter-spacing:14.540712px;}
.ls2c{letter-spacing:14.542861px;}
.ls33{letter-spacing:14.543412px;}
.ls2b{letter-spacing:14.546149px;}
.ls32{letter-spacing:14.546700px;}
.ls1f{letter-spacing:14.546706px;}
.ls2d{letter-spacing:14.546712px;}
.ls27{letter-spacing:18.080700px;}
.ls18{letter-spacing:18.179412px;}
.ls31{letter-spacing:18.182700px;}
.ls26{letter-spacing:18.184869px;}
.lsf{letter-spacing:18.185412px;}
.ls2a{letter-spacing:19.310915px;}
.lsd{letter-spacing:20.393412px;}
.lsc{letter-spacing:20.396706px;}
.lse{letter-spacing:21.164915px;}
.ls11{letter-spacing:21.169289px;}
.ls2e{letter-spacing:21.170915px;}
.ls34{letter-spacing:23.450915px;}
.ls1{letter-spacing:23.754538px;}
.ls0{letter-spacing:23.758896px;}
.ls17{letter-spacing:25.223428px;}
.ls1b{letter-spacing:25.349412px;}
.ls15{letter-spacing:26.237412px;}
.ls6{letter-spacing:29.766538px;}
.ls5{letter-spacing:32.750525px;}
.ls8{letter-spacing:35.796960px;}
.ls12{letter-spacing:71.537412px;}
.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;}
}
.ws4c{word-spacing:-65.454600px;}
.ws30{word-spacing:-53.568045px;}
.ws1a{word-spacing:-42.637126px;}
.ws9{word-spacing:-38.937826px;}
.ws3e{word-spacing:-31.706208px;}
.ws2e{word-spacing:-24.458315px;}
.ws13{word-spacing:-18.183288px;}
.wsa{word-spacing:-16.605662px;}
.ws1f{word-spacing:-7.317824px;}
.ws37{word-spacing:-7.252370px;}
.ws3c{word-spacing:-3.652367px;}
.ws1c{word-spacing:-0.047821px;}
.ws3a{word-spacing:-0.017549px;}
.ws42{word-spacing:-0.013744px;}
.wsf{word-spacing:0.000000px;}
.ws2f{word-spacing:0.013091px;}
.ws1b{word-spacing:14.609467px;}
.ws27{word-spacing:14.923649px;}
.ws55{word-spacing:15.381831px;}
.ws54{word-spacing:15.447286px;}
.ws12{word-spacing:15.970922px;}
.ws19{word-spacing:16.429105px;}
.ws41{word-spacing:17.738197px;}
.wsb{word-spacing:17.753353px;}
.ws4e{word-spacing:18.654561px;}
.ws11{word-spacing:18.850925px;}
.wse{word-spacing:18.889090px;}
.ws23{word-spacing:18.916379px;}
.ws6{word-spacing:19.187968px;}
.ws3{word-spacing:19.905275px;}
.ws4{word-spacing:19.965050px;}
.ws7{word-spacing:20.204153px;}
.ws51{word-spacing:20.880017px;}
.ws45{word-spacing:20.945472px;}
.ws25{word-spacing:21.338200px;}
.ws4a{word-spacing:21.469109px;}
.ws29{word-spacing:21.534563px;}
.ws15{word-spacing:21.600018px;}
.ws26{word-spacing:21.665473px;}
.ws20{word-spacing:21.730927px;}
.ws59{word-spacing:22.385473px;}
.wsc{word-spacing:22.475626px;}
.ws3b{word-spacing:22.778201px;}
.ws5a{word-spacing:23.040019px;}
.ws2{word-spacing:23.384371px;}
.ws5{word-spacing:23.456102px;}
.ws8{word-spacing:24.209118px;}
.ws18{word-spacing:24.349111px;}
.ws21{word-spacing:24.807293px;}
.ws1e{word-spacing:24.895433px;}
.ws3d{word-spacing:24.938203px;}
.ws14{word-spacing:25.330930px;}
.ws56{word-spacing:25.527294px;}
.ws38{word-spacing:25.592749px;}
.ws24{word-spacing:26.509113px;}
.ws5c{word-spacing:26.540366px;}
.ws49{word-spacing:26.574568px;}
.ws32{word-spacing:26.827469px;}
.ws2c{word-spacing:26.899200px;}
.ws2a{word-spacing:26.901841px;}
.ws43{word-spacing:27.098204px;}
.wsd{word-spacing:27.795654px;}
.ws53{word-spacing:27.883660px;}
.ws4d{word-spacing:28.800024px;}
.ws28{word-spacing:29.127297px;}
.ws31{word-spacing:29.180981px;}
.ws33{word-spacing:29.323661px;}
.ws1d{word-spacing:30.436389px;}
.ws52{word-spacing:30.894571px;}
.ws2b{word-spacing:31.504255px;}
.ws5d{word-spacing:31.561517px;}
.ws36{word-spacing:31.590332px;}
.ws5e{word-spacing:31.621292px;}
.ws4b{word-spacing:32.727300px;}
.ws16{word-spacing:33.120028px;}
.ws17{word-spacing:33.512755px;}
.ws58{word-spacing:34.690938px;}
.ws50{word-spacing:35.280029px;}
.ws5b{word-spacing:36.283789px;}
.ws22{word-spacing:36.981849px;}
.ws1{word-spacing:37.081972px;}
.ws2d{word-spacing:37.112758px;}
.ws0{word-spacing:37.185264px;}
.ws57{word-spacing:38.160032px;}
.ws39{word-spacing:41.563671px;}
.ws4f{word-spacing:42.283672px;}
.ws5f{word-spacing:43.277534px;}
.ws60{word-spacing:54.933776px;}
.ws34{word-spacing:71.738242px;}
.ws10{word-spacing:94.684920px;}
.ws3f{word-spacing:130.189199px;}
.ws35{word-spacing:133.003747px;}
.ws40{word-spacing:162.916499px;}
.ws44{word-spacing:188.705612px;}
.ws47{word-spacing:234.458377px;}
.ws46{word-spacing:244.407476px;}
.ws48{word-spacing:292.582062px;}
._2{margin-left:-9.399608px;}
._4{margin-left:-5.810227px;}
._26{margin-left:-4.440170px;}
._0{margin-left:-3.098772px;}
._5{margin-left:-1.936742px;}
._6{width:1.936742px;}
._1{width:3.098772px;}
._1a{width:6.552439px;}
._8{width:10.245551px;}
._3{width:11.763917px;}
._f{width:16.429105px;}
._c{width:17.541833px;}
._18{width:21.834941px;}
._7{width:26.387398px;}
._28{width:27.425477px;}
._e{width:28.734569px;}
._a{width:29.887800px;}
._25{width:32.727300px;}
._29{width:38.584991px;}
._19{width:41.692232px;}
._13{width:44.493896px;}
._9{width:50.211504px;}
._b{width:63.098234px;}
._2a{width:64.576324px;}
._27{width:69.578240px;}
._16{width:71.645891px;}
._d{width:74.487335px;}
._12{width:75.992791px;}
._11{width:80.697600px;}
._10{width:94.684920px;}
._17{width:97.034539px;}
._1e{width:105.709179px;}
._15{width:117.390919px;}
._14{width:137.635792px;}
._21{width:151.854672px;}
._22{width:163.074304px;}
._1d{width:168.087413px;}
._1f{width:171.910675px;}
._24{width:197.214710px;}
._20{width:218.160182px;}
._1c{width:234.458377px;}
._1b{width:250.691118px;}
._23{width:256.320214px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y32{bottom:40.207500px;}
.y28{bottom:85.039500px;}
.y54{bottom:85.083000px;}
.y27{bottom:105.363000px;}
.y53{bottom:122.380500px;}
.y26{bottom:125.686500px;}
.y31{bottom:127.471500px;}
.y73{bottom:141.399000px;}
.y25{bottom:146.011500px;}
.y52{bottom:156.868500px;}
.y72{bottom:161.724000px;}
.y24{bottom:170.664000px;}
.y51{bottom:177.192000px;}
.y23{bottom:190.987500px;}
.y71{bottom:197.760000px;}
.y30{bottom:205.233000px;}
.y22{bottom:211.311000px;}
.y50{bottom:211.678500px;}
.y2f{bottom:225.556500px;}
.y21{bottom:231.634500px;}
.y4f{bottom:232.003500px;}
.y70{bottom:233.796000px;}
.y20{bottom:251.958000px;}
.y6f{bottom:265.785000px;}
.y4e{bottom:266.490000px;}
.y1f{bottom:272.283000px;}
.y2e{bottom:275.250000px;}
.y2d{bottom:286.476000px;}
.y1e{bottom:292.606500px;}
.y4d{bottom:303.966000px;}
.y6e{bottom:312.831000px;}
.y1d{bottom:317.259000px;}
.y4c{bottom:328.773000px;}
.y1c{bottom:332.896500px;}
.y6d{bottom:333.154500px;}
.y1b{bottom:337.582500px;}
.y91{bottom:337.954500px;}
.y2c{bottom:348.186000px;}
.y6c{bottom:353.478000px;}
.y90{bottom:355.887000px;}
.y1a{bottom:357.906000px;}
.y4b{bottom:366.072000px;}
.y2b{bottom:368.509500px;}
.y19{bottom:378.229500px;}
.y8f{bottom:382.786500px;}
.y6b{bottom:385.467000px;}
.y18{bottom:398.554500px;}
.y4a{bottom:400.558500px;}
.y8e{bottom:400.719000px;}
.y2a{bottom:410.941500px;}
.y17{bottom:418.878000px;}
.y6a{bottom:423.687000px;}
.y8d{bottom:427.618500px;}
.y49{bottom:435.046500px;}
.y16{bottom:439.201500px;}
.y8c{bottom:445.551000px;}
.y15{bottom:459.525000px;}
.y29{bottom:459.607500px;}
.y48{bottom:469.533000px;}
.y8b{bottom:472.450500px;}
.y14{bottom:479.848500px;}
.y8a{bottom:490.383000px;}
.y13{bottom:500.173500px;}
.y47{bottom:503.593500px;}
.y69{bottom:503.701500px;}
.y46{bottom:514.818000px;}
.y68{bottom:524.025000px;}
.y89{bottom:524.517000px;}
.y67{bottom:544.348500px;}
.y12{bottom:545.106000px;}
.y45{bottom:560.194500px;}
.y66{bottom:564.672000px;}
.y88{bottom:576.069000px;}
.y44{bottom:580.518000px;}
.y65{bottom:593.205000px;}
.y11{bottom:594.171000px;}
.y87{bottom:596.392500px;}
.y43{bottom:617.815500px;}
.y64{bottom:617.986500px;}
.y10{bottom:621.069000px;}
.y86{bottom:630.165000px;}
.yf{bottom:639.001500px;}
.y42{bottom:655.113000px;}
.ye{bottom:656.935500px;}
.y85{bottom:663.939000px;}
.yd{bottom:674.868000px;}
.y41{bottom:675.436500px;}
.y63{bottom:677.850000px;}
.yc{bottom:692.800500px;}
.y84{bottom:697.711500px;}
.y40{bottom:706.674000px;}
.yb{bottom:710.733000px;}
.y83{bottom:718.036500px;}
.y62{bottom:724.896000px;}
.ya{bottom:728.665500px;}
.y82{bottom:738.360000px;}
.y61{bottom:745.219500px;}
.y9{bottom:746.599500px;}
.y3f{bottom:751.506000px;}
.y81{bottom:758.683500px;}
.y3e{bottom:771.831000px;}
.y80{bottom:779.007000px;}
.y60{bottom:782.844000px;}
.y8{bottom:787.779000px;}
.y7f{bottom:799.330500px;}
.y3c{bottom:804.750000px;}
.y3d{bottom:815.974500px;}
.y3b{bottom:827.347500px;}
.y7e{bottom:835.855500px;}
.y5f{bottom:840.517500px;}
.y7{bottom:848.050500px;}
.y3a{bottom:860.361000px;}
.y5e{bottom:860.841000px;}
.y5d{bottom:881.164500px;}
.y6{bottom:884.442000px;}
.y7d{bottom:887.407500px;}
.y39{bottom:891.597000px;}
.y5c{bottom:901.489500px;}
.y5{bottom:905.364000px;}
.y7c{bottom:907.731000px;}
.y5b{bottom:921.813000px;}
.y4{bottom:926.286000px;}
.y7b{bottom:928.054500px;}
.y38{bottom:929.065500px;}
.y5a{bottom:942.136500px;}
.y7a{bottom:948.379500px;}
.y59{bottom:962.460000px;}
.y79{bottom:968.703000px;}
.y3{bottom:971.613000px;}
.y58{bottom:982.783500px;}
.y37{bottom:985.965000px;}
.y78{bottom:989.026500px;}
.y57{bottom:1003.108500px;}
.y2{bottom:1004.665500px;}
.y36{bottom:1006.288500px;}
.y77{bottom:1009.350000px;}
.y56{bottom:1023.432000px;}
.y76{bottom:1029.673500px;}
.y35{bottom:1034.821500px;}
.y1{bottom:1037.542500px;}
.y75{bottom:1049.998500px;}
.y55{bottom:1051.965000px;}
.y34{bottom:1056.423000px;}
.y33{bottom:1076.746500px;}
.y74{bottom:1086.522000px;}
.h4{height:44.831700px;}
.h13{height:45.752765px;}
.he{height:46.145493px;}
.hc{height:46.865494px;}
.h7{height:49.090950px;}
.h3{height:56.786820px;}
.ha{height:57.419702px;}
.hb{height:59.613450px;}
.h6{height:62.181870px;}
.h8{height:63.393450px;}
.h2{height:68.144640px;}
.h9{height:76.163702px;}
.h5{height:81.773340px;}
.hd{height:90.425493px;}
.hf{height:93.376950px;}
.h10{height:93.988950px;}
.h11{height:94.910184px;}
.h1{height:98.127780px;}
.h12{height:139.808184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:85.039500px;}
.x2f{left:93.513000px;}
.x63{left:95.934000px;}
.x65{left:97.965000px;}
.x1b{left:101.403000px;}
.x5f{left:103.111500px;}
.x3a{left:108.661500px;}
.xa{left:117.766500px;}
.x1f{left:119.392500px;}
.x1{left:128.188500px;}
.x20{left:132.120000px;}
.x9{left:134.130000px;}
.x30{left:138.301500px;}
.x44{left:141.546000px;}
.x42{left:143.430000px;}
.x33{left:146.962500px;}
.x31{left:151.029000px;}
.x18{left:157.120500px;}
.x46{left:161.515500px;}
.x60{left:170.788500px;}
.x48{left:171.997500px;}
.x39{left:178.131000px;}
.x61{left:183.514500px;}
.x64{left:184.599000px;}
.x11{left:187.428000px;}
.x43{left:191.253000px;}
.x38{left:193.695000px;}
.x34{left:200.341500px;}
.x35{left:202.900500px;}
.x3{left:204.246000px;}
.x5e{left:210.037500px;}
.x3b{left:216.213000px;}
.x1a{left:227.592000px;}
.x12{left:237.918000px;}
.x36{left:239.433000px;}
.x3e{left:253.687500px;}
.x19{left:260.566500px;}
.x2{left:262.261500px;}
.x1c{left:265.882500px;}
.x3f{left:273.577500px;}
.x3c{left:276.954000px;}
.x1e{left:286.729500px;}
.x40{left:294.712500px;}
.x14{left:301.333500px;}
.x21{left:306.411000px;}
.x1d{left:311.539500px;}
.x41{left:314.602500px;}
.x22{left:319.138500px;}
.x15{left:322.242000px;}
.x16{left:330.378000px;}
.x5{left:337.527000px;}
.x2d{left:346.003500px;}
.x17{left:348.496500px;}
.x2e{left:354.237000px;}
.x6{left:362.302500px;}
.x4{left:364.720500px;}
.x3d{left:367.239000px;}
.x45{left:369.717000px;}
.x47{left:383.638500px;}
.x68{left:389.427000px;}
.x66{left:395.730000px;}
.x7{left:400.606500px;}
.x69{left:415.200000px;}
.x62{left:418.575000px;}
.x67{left:421.503000px;}
.x8{left:426.130500px;}
.x37{left:430.735500px;}
.xb{left:446.043000px;}
.x2c{left:454.932000px;}
.x23{left:466.471500px;}
.x32{left:471.789000px;}
.x4c{left:473.326500px;}
.x57{left:478.360500px;}
.x4f{left:493.150500px;}
.x2a{left:499.923000px;}
.xc{left:503.631000px;}
.x50{left:504.952500px;}
.x4e{left:511.279500px;}
.x28{left:514.678500px;}
.x58{left:516.820500px;}
.x49{left:518.818500px;}
.x4a{left:523.606500px;}
.x5b{left:540.919500px;}
.x24{left:552.427500px;}
.x59{left:557.638500px;}
.x2b{left:576.952500px;}
.x25{left:589.122000px;}
.x55{left:596.469000px;}
.x29{left:601.057500px;}
.x4d{left:603.934500px;}
.x26{left:619.644000px;}
.x51{left:631.023000px;}
.x52{left:643.750500px;}
.x56{left:666.867000px;}
.xd{left:687.858000px;}
.x5a{left:692.428500px;}
.x53{left:701.124000px;}
.x5c{left:718.623000px;}
.x4b{left:723.637500px;}
.x54{left:735.175500px;}
.xe{left:745.446000px;}
.xf{left:752.916000px;}
.x5d{left:758.685000px;}
.x10{left:779.482500px;}
.x27{left:812.167500px;}
@media print{
.v5{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.661333pt;}
.v6{vertical-align:21.114667pt;}
.v2{vertical-align:24.469333pt;}
.v4{vertical-align:37.776000pt;}
.v7{vertical-align:39.360000pt;}
.va{vertical-align:79.269333pt;}
.v8{vertical-align:82.037333pt;}
.v9{vertical-align:121.946667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000125pt;}
.ls28{letter-spacing:0.000944pt;}
.ls4{letter-spacing:0.001659pt;}
.ls1d{letter-spacing:0.001908pt;}
.ls3{letter-spacing:0.002079pt;}
.ls16{letter-spacing:0.002384pt;}
.ls19{letter-spacing:0.002400pt;}
.ls1e{letter-spacing:0.002405pt;}
.ls7{letter-spacing:0.002411pt;}
.lsa{letter-spacing:0.002717pt;}
.ls2{letter-spacing:0.003733pt;}
.lsb{letter-spacing:2.653258pt;}
.ls22{letter-spacing:2.658591pt;}
.ls30{letter-spacing:5.834144pt;}
.ls10{letter-spacing:6.260825pt;}
.ls21{letter-spacing:6.347104pt;}
.ls29{letter-spacing:6.377661pt;}
.ls1c{letter-spacing:8.081908pt;}
.ls25{letter-spacing:9.031925pt;}
.ls2f{letter-spacing:9.693077pt;}
.ls13{letter-spacing:9.698411pt;}
.ls14{letter-spacing:9.716372pt;}
.ls23{letter-spacing:12.354591pt;}
.ls24{letter-spacing:12.782995pt;}
.ls20{letter-spacing:12.925077pt;}
.ls2c{letter-spacing:12.926988pt;}
.ls33{letter-spacing:12.927477pt;}
.ls2b{letter-spacing:12.929910pt;}
.ls32{letter-spacing:12.930400pt;}
.ls1f{letter-spacing:12.930405pt;}
.ls2d{letter-spacing:12.930411pt;}
.ls27{letter-spacing:16.071733pt;}
.ls18{letter-spacing:16.159477pt;}
.ls31{letter-spacing:16.162400pt;}
.ls26{letter-spacing:16.164328pt;}
.lsf{letter-spacing:16.164811pt;}
.ls2a{letter-spacing:17.165258pt;}
.lsd{letter-spacing:18.127477pt;}
.lsc{letter-spacing:18.130405pt;}
.lse{letter-spacing:18.813258pt;}
.ls11{letter-spacing:18.817146pt;}
.ls2e{letter-spacing:18.818591pt;}
.ls34{letter-spacing:20.845258pt;}
.ls1{letter-spacing:21.115145pt;}
.ls0{letter-spacing:21.119018pt;}
.ls17{letter-spacing:22.420825pt;}
.ls1b{letter-spacing:22.532811pt;}
.ls15{letter-spacing:23.322144pt;}
.ls6{letter-spacing:26.459145pt;}
.ls5{letter-spacing:29.111578pt;}
.ls8{letter-spacing:31.819520pt;}
.ls12{letter-spacing:63.588811pt;}
.ws4c{word-spacing:-58.181867pt;}
.ws30{word-spacing:-47.616040pt;}
.ws1a{word-spacing:-37.899668pt;}
.ws9{word-spacing:-34.611401pt;}
.ws3e{word-spacing:-28.183296pt;}
.ws2e{word-spacing:-21.740724pt;}
.ws13{word-spacing:-16.162923pt;}
.wsa{word-spacing:-14.760588pt;}
.ws1f{word-spacing:-6.504733pt;}
.ws37{word-spacing:-6.446551pt;}
.ws3c{word-spacing:-3.246548pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws3a{word-spacing:-0.015599pt;}
.ws42{word-spacing:-0.012217pt;}
.wsf{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.011636pt;}
.ws1b{word-spacing:12.986193pt;}
.ws27{word-spacing:13.265466pt;}
.ws55{word-spacing:13.672739pt;}
.ws54{word-spacing:13.730921pt;}
.ws12{word-spacing:14.196375pt;}
.ws19{word-spacing:14.603649pt;}
.ws41{word-spacing:15.767286pt;}
.wsb{word-spacing:15.780758pt;}
.ws4e{word-spacing:16.581832pt;}
.ws11{word-spacing:16.756378pt;}
.wse{word-spacing:16.790302pt;}
.ws23{word-spacing:16.814559pt;}
.ws6{word-spacing:17.055971pt;}
.ws3{word-spacing:17.693578pt;}
.ws4{word-spacing:17.746711pt;}
.ws7{word-spacing:17.959247pt;}
.ws51{word-spacing:18.560015pt;}
.ws45{word-spacing:18.618197pt;}
.ws25{word-spacing:18.967289pt;}
.ws4a{word-spacing:19.083652pt;}
.ws29{word-spacing:19.141834pt;}
.ws15{word-spacing:19.200016pt;}
.ws26{word-spacing:19.258198pt;}
.ws20{word-spacing:19.316380pt;}
.ws59{word-spacing:19.898198pt;}
.wsc{word-spacing:19.978334pt;}
.ws3b{word-spacing:20.247290pt;}
.ws5a{word-spacing:20.480017pt;}
.ws2{word-spacing:20.786108pt;}
.ws5{word-spacing:20.849869pt;}
.ws8{word-spacing:21.519216pt;}
.ws18{word-spacing:21.643654pt;}
.ws21{word-spacing:22.050927pt;}
.ws1e{word-spacing:22.129274pt;}
.ws3d{word-spacing:22.167291pt;}
.ws14{word-spacing:22.516382pt;}
.ws56{word-spacing:22.690928pt;}
.ws38{word-spacing:22.749110pt;}
.ws24{word-spacing:23.563656pt;}
.ws5c{word-spacing:23.591437pt;}
.ws49{word-spacing:23.621838pt;}
.ws32{word-spacing:23.846639pt;}
.ws2c{word-spacing:23.910400pt;}
.ws2a{word-spacing:23.912747pt;}
.ws43{word-spacing:24.087293pt;}
.wsd{word-spacing:24.707248pt;}
.ws53{word-spacing:24.785475pt;}
.ws4d{word-spacing:25.600021pt;}
.ws28{word-spacing:25.890931pt;}
.ws31{word-spacing:25.938650pt;}
.ws33{word-spacing:26.065476pt;}
.ws1d{word-spacing:27.054568pt;}
.ws52{word-spacing:27.461841pt;}
.ws2b{word-spacing:28.003782pt;}
.ws5d{word-spacing:28.054682pt;}
.ws36{word-spacing:28.080295pt;}
.ws5e{word-spacing:28.107815pt;}
.ws4b{word-spacing:29.090933pt;}
.ws16{word-spacing:29.440025pt;}
.ws17{word-spacing:29.789116pt;}
.ws58{word-spacing:30.836389pt;}
.ws50{word-spacing:31.360026pt;}
.ws5b{word-spacing:32.252257pt;}
.ws22{word-spacing:32.872755pt;}
.ws1{word-spacing:32.961753pt;}
.ws2d{word-spacing:32.989118pt;}
.ws0{word-spacing:33.053568pt;}
.ws57{word-spacing:33.920028pt;}
.ws39{word-spacing:36.945485pt;}
.ws4f{word-spacing:37.585486pt;}
.ws5f{word-spacing:38.468919pt;}
.ws60{word-spacing:48.830023pt;}
.ws34{word-spacing:63.767326pt;}
.ws10{word-spacing:84.164373pt;}
.ws3f{word-spacing:115.723733pt;}
.ws35{word-spacing:118.225553pt;}
.ws40{word-spacing:144.814666pt;}
.ws44{word-spacing:167.738322pt;}
.ws47{word-spacing:208.407446pt;}
.ws46{word-spacing:217.251090pt;}
.ws48{word-spacing:260.072944pt;}
._2{margin-left:-8.355207pt;}
._4{margin-left:-5.164646pt;}
._26{margin-left:-3.946818pt;}
._0{margin-left:-2.754464pt;}
._5{margin-left:-1.721549pt;}
._6{width:1.721549pt;}
._1{width:2.754464pt;}
._1a{width:5.824391pt;}
._8{width:9.107156pt;}
._3{width:10.456815pt;}
._f{width:14.603649pt;}
._c{width:15.592740pt;}
._18{width:19.408836pt;}
._7{width:23.455465pt;}
._28{width:24.378202pt;}
._e{width:25.541839pt;}
._a{width:26.566933pt;}
._25{width:29.090933pt;}
._29{width:34.297770pt;}
._19{width:37.059762pt;}
._13{width:39.550130pt;}
._9{width:44.632448pt;}
._b{width:56.087319pt;}
._2a{width:57.401177pt;}
._27{width:61.847324pt;}
._16{width:63.685237pt;}
._d{width:66.210964pt;}
._12{width:67.549147pt;}
._11{width:71.731200pt;}
._10{width:84.164373pt;}
._17{width:86.252923pt;}
._1e{width:93.963715pt;}
._15{width:104.347484pt;}
._14{width:122.342926pt;}
._21{width:134.981931pt;}
._22{width:144.954937pt;}
._1d{width:149.411034pt;}
._1f{width:152.809489pt;}
._24{width:175.301964pt;}
._20{width:193.920162pt;}
._1c{width:208.407446pt;}
._1b{width:222.836549pt;}
._23{width:227.840190pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:35.740000pt;}
.y28{bottom:75.590667pt;}
.y54{bottom:75.629333pt;}
.y27{bottom:93.656000pt;}
.y53{bottom:108.782667pt;}
.y26{bottom:111.721333pt;}
.y31{bottom:113.308000pt;}
.y73{bottom:125.688000pt;}
.y25{bottom:129.788000pt;}
.y52{bottom:139.438667pt;}
.y72{bottom:143.754667pt;}
.y24{bottom:151.701333pt;}
.y51{bottom:157.504000pt;}
.y23{bottom:169.766667pt;}
.y71{bottom:175.786667pt;}
.y30{bottom:182.429333pt;}
.y22{bottom:187.832000pt;}
.y50{bottom:188.158667pt;}
.y2f{bottom:200.494667pt;}
.y21{bottom:205.897333pt;}
.y4f{bottom:206.225333pt;}
.y70{bottom:207.818667pt;}
.y20{bottom:223.962667pt;}
.y6f{bottom:236.253333pt;}
.y4e{bottom:236.880000pt;}
.y1f{bottom:242.029333pt;}
.y2e{bottom:244.666667pt;}
.y2d{bottom:254.645333pt;}
.y1e{bottom:260.094667pt;}
.y4d{bottom:270.192000pt;}
.y6e{bottom:278.072000pt;}
.y1d{bottom:282.008000pt;}
.y4c{bottom:292.242667pt;}
.y1c{bottom:295.908000pt;}
.y6d{bottom:296.137333pt;}
.y1b{bottom:300.073333pt;}
.y91{bottom:300.404000pt;}
.y2c{bottom:309.498667pt;}
.y6c{bottom:314.202667pt;}
.y90{bottom:316.344000pt;}
.y1a{bottom:318.138667pt;}
.y4b{bottom:325.397333pt;}
.y2b{bottom:327.564000pt;}
.y19{bottom:336.204000pt;}
.y8f{bottom:340.254667pt;}
.y6b{bottom:342.637333pt;}
.y18{bottom:354.270667pt;}
.y4a{bottom:356.052000pt;}
.y8e{bottom:356.194667pt;}
.y2a{bottom:365.281333pt;}
.y17{bottom:372.336000pt;}
.y6a{bottom:376.610667pt;}
.y8d{bottom:380.105333pt;}
.y49{bottom:386.708000pt;}
.y16{bottom:390.401333pt;}
.y8c{bottom:396.045333pt;}
.y15{bottom:408.466667pt;}
.y29{bottom:408.540000pt;}
.y48{bottom:417.362667pt;}
.y8b{bottom:419.956000pt;}
.y14{bottom:426.532000pt;}
.y8a{bottom:435.896000pt;}
.y13{bottom:444.598667pt;}
.y47{bottom:447.638667pt;}
.y69{bottom:447.734667pt;}
.y46{bottom:457.616000pt;}
.y68{bottom:465.800000pt;}
.y89{bottom:466.237333pt;}
.y67{bottom:483.865333pt;}
.y12{bottom:484.538667pt;}
.y45{bottom:497.950667pt;}
.y66{bottom:501.930667pt;}
.y88{bottom:512.061333pt;}
.y44{bottom:516.016000pt;}
.y65{bottom:527.293333pt;}
.y11{bottom:528.152000pt;}
.y87{bottom:530.126667pt;}
.y43{bottom:549.169333pt;}
.y64{bottom:549.321333pt;}
.y10{bottom:552.061333pt;}
.y86{bottom:560.146667pt;}
.yf{bottom:568.001333pt;}
.y42{bottom:582.322667pt;}
.ye{bottom:583.942667pt;}
.y85{bottom:590.168000pt;}
.yd{bottom:599.882667pt;}
.y41{bottom:600.388000pt;}
.y63{bottom:602.533333pt;}
.yc{bottom:615.822667pt;}
.y84{bottom:620.188000pt;}
.y40{bottom:628.154667pt;}
.yb{bottom:631.762667pt;}
.y83{bottom:638.254667pt;}
.y62{bottom:644.352000pt;}
.ya{bottom:647.702667pt;}
.y82{bottom:656.320000pt;}
.y61{bottom:662.417333pt;}
.y9{bottom:663.644000pt;}
.y3f{bottom:668.005333pt;}
.y81{bottom:674.385333pt;}
.y3e{bottom:686.072000pt;}
.y80{bottom:692.450667pt;}
.y60{bottom:695.861333pt;}
.y8{bottom:700.248000pt;}
.y7f{bottom:710.516000pt;}
.y3c{bottom:715.333333pt;}
.y3d{bottom:725.310667pt;}
.y3b{bottom:735.420000pt;}
.y7e{bottom:742.982667pt;}
.y5f{bottom:747.126667pt;}
.y7{bottom:753.822667pt;}
.y3a{bottom:764.765333pt;}
.y5e{bottom:765.192000pt;}
.y5d{bottom:783.257333pt;}
.y6{bottom:786.170667pt;}
.y7d{bottom:788.806667pt;}
.y39{bottom:792.530667pt;}
.y5c{bottom:801.324000pt;}
.y5{bottom:804.768000pt;}
.y7c{bottom:806.872000pt;}
.y5b{bottom:819.389333pt;}
.y4{bottom:823.365333pt;}
.y7b{bottom:824.937333pt;}
.y38{bottom:825.836000pt;}
.y5a{bottom:837.454667pt;}
.y7a{bottom:843.004000pt;}
.y59{bottom:855.520000pt;}
.y79{bottom:861.069333pt;}
.y3{bottom:863.656000pt;}
.y58{bottom:873.585333pt;}
.y37{bottom:876.413333pt;}
.y78{bottom:879.134667pt;}
.y57{bottom:891.652000pt;}
.y2{bottom:893.036000pt;}
.y36{bottom:894.478667pt;}
.y77{bottom:897.200000pt;}
.y56{bottom:909.717333pt;}
.y76{bottom:915.265333pt;}
.y35{bottom:919.841333pt;}
.y1{bottom:922.260000pt;}
.y75{bottom:933.332000pt;}
.y55{bottom:935.080000pt;}
.y34{bottom:939.042667pt;}
.y33{bottom:957.108000pt;}
.y74{bottom:965.797333pt;}
.h4{height:39.850400pt;}
.h13{height:40.669125pt;}
.he{height:41.018216pt;}
.hc{height:41.658217pt;}
.h7{height:43.636400pt;}
.h3{height:50.477173pt;}
.ha{height:51.039735pt;}
.hb{height:52.989733pt;}
.h6{height:55.272773pt;}
.h8{height:56.349733pt;}
.h2{height:60.573013pt;}
.h9{height:67.701069pt;}
.h5{height:72.687413pt;}
.hd{height:80.378216pt;}
.hf{height:83.001733pt;}
.h10{height:83.545733pt;}
.h11{height:84.364608pt;}
.h1{height:87.224693pt;}
.h12{height:124.273941pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:75.590667pt;}
.x2f{left:83.122667pt;}
.x63{left:85.274667pt;}
.x65{left:87.080000pt;}
.x1b{left:90.136000pt;}
.x5f{left:91.654667pt;}
.x3a{left:96.588000pt;}
.xa{left:104.681333pt;}
.x1f{left:106.126667pt;}
.x1{left:113.945333pt;}
.x20{left:117.440000pt;}
.x9{left:119.226667pt;}
.x30{left:122.934667pt;}
.x44{left:125.818667pt;}
.x42{left:127.493333pt;}
.x33{left:130.633333pt;}
.x31{left:134.248000pt;}
.x18{left:139.662667pt;}
.x46{left:143.569333pt;}
.x60{left:151.812000pt;}
.x48{left:152.886667pt;}
.x39{left:158.338667pt;}
.x61{left:163.124000pt;}
.x64{left:164.088000pt;}
.x11{left:166.602667pt;}
.x43{left:170.002667pt;}
.x38{left:172.173333pt;}
.x34{left:178.081333pt;}
.x35{left:180.356000pt;}
.x3{left:181.552000pt;}
.x5e{left:186.700000pt;}
.x3b{left:192.189333pt;}
.x1a{left:202.304000pt;}
.x12{left:211.482667pt;}
.x36{left:212.829333pt;}
.x3e{left:225.500000pt;}
.x19{left:231.614667pt;}
.x2{left:233.121333pt;}
.x1c{left:236.340000pt;}
.x3f{left:243.180000pt;}
.x3c{left:246.181333pt;}
.x1e{left:254.870667pt;}
.x40{left:261.966667pt;}
.x14{left:267.852000pt;}
.x21{left:272.365333pt;}
.x1d{left:276.924000pt;}
.x41{left:279.646667pt;}
.x22{left:283.678667pt;}
.x15{left:286.437333pt;}
.x16{left:293.669333pt;}
.x5{left:300.024000pt;}
.x2d{left:307.558667pt;}
.x17{left:309.774667pt;}
.x2e{left:314.877333pt;}
.x6{left:322.046667pt;}
.x4{left:324.196000pt;}
.x3d{left:326.434667pt;}
.x45{left:328.637333pt;}
.x47{left:341.012000pt;}
.x68{left:346.157333pt;}
.x66{left:351.760000pt;}
.x7{left:356.094667pt;}
.x69{left:369.066667pt;}
.x62{left:372.066667pt;}
.x67{left:374.669333pt;}
.x8{left:378.782667pt;}
.x37{left:382.876000pt;}
.xb{left:396.482667pt;}
.x2c{left:404.384000pt;}
.x23{left:414.641333pt;}
.x32{left:419.368000pt;}
.x4c{left:420.734667pt;}
.x57{left:425.209333pt;}
.x4f{left:438.356000pt;}
.x2a{left:444.376000pt;}
.xc{left:447.672000pt;}
.x50{left:448.846667pt;}
.x4e{left:454.470667pt;}
.x28{left:457.492000pt;}
.x58{left:459.396000pt;}
.x49{left:461.172000pt;}
.x4a{left:465.428000pt;}
.x5b{left:480.817333pt;}
.x24{left:491.046667pt;}
.x59{left:495.678667pt;}
.x2b{left:512.846667pt;}
.x25{left:523.664000pt;}
.x55{left:530.194667pt;}
.x29{left:534.273333pt;}
.x4d{left:536.830667pt;}
.x26{left:550.794667pt;}
.x51{left:560.909333pt;}
.x52{left:572.222667pt;}
.x56{left:592.770667pt;}
.xd{left:611.429333pt;}
.x5a{left:615.492000pt;}
.x53{left:623.221333pt;}
.x5c{left:638.776000pt;}
.x4b{left:643.233333pt;}
.x54{left:653.489333pt;}
.xe{left:662.618667pt;}
.xf{left:669.258667pt;}
.x5d{left:674.386667pt;}
.x10{left:692.873333pt;}
.x27{left:721.926667pt;}
}




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