
    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_4c32f9dee0421f5adb95c713.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_fac2a6e86b3f12638dee6e8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_98f92ee6815bce96d8d5e138.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_3bc5cda11b02cdc59d62e6ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_6c19fa4b7462b97547026927.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_cba6e4917e883516c24848a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976155;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_0510bf8594ffb98e1982b767.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_d884b5082dbd2934e1e1c3ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964868;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_240015fa98849dd68e5dddda.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_ee515e27c9a5222ea0aba184.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.770020;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_68dc7b6bd61f1c9ae5a22ff8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964852;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_9467ad59138165d5083967ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968262;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_991893fdbba72225cb174f38.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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:ffe;src:url('chunks/assets/font_4e61c6b53b3132977aecdc45.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls7{letter-spacing:-1.326000px;}
.lsb{letter-spacing:-0.918000px;}
.lsc{letter-spacing:-0.756000px;}
.ls9{letter-spacing:-0.714000px;}
.lsa{letter-spacing:-0.691200px;}
.ls8{letter-spacing:-0.306000px;}
.ls6{letter-spacing:-0.204000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001242px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.015000px;}
.ls4{letter-spacing:0.025800px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws2{word-spacing:-25.398000px;}
.ws1{word-spacing:-24.684000px;}
.ws48{word-spacing:-17.928000px;}
.ws3e{word-spacing:-16.434000px;}
.ws8{word-spacing:-14.880000px;}
.ws3f{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.230000px;}
.ws3d{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.772000px;}
.ws5{word-spacing:-11.371200px;}
.wsb{word-spacing:-11.232000px;}
.ws6{word-spacing:-10.896000px;}
.wsa{word-spacing:-10.854000px;}
.ws26{word-spacing:-10.800000px;}
.wsc{word-spacing:-10.464000px;}
.ws2e{word-spacing:-10.416000px;}
.ws3{word-spacing:-9.542544px;}
.ws7{word-spacing:-9.417600px;}
.ws21{word-spacing:-1.920000px;}
.ws18{word-spacing:-1.254000px;}
.ws47{word-spacing:-1.026000px;}
.ws19{word-spacing:-0.912000px;}
.ws25{word-spacing:-0.798000px;}
.ws1a{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.060000px;}
.ws3c{word-spacing:-0.054000px;}
.ws14{word-spacing:0.000000px;}
.ws4c{word-spacing:0.108000px;}
.ws15{word-spacing:0.204000px;}
.ws16{word-spacing:0.306000px;}
.ws1b{word-spacing:0.691200px;}
.ws0{word-spacing:1.224000px;}
.ws17{word-spacing:2.178000px;}
.ws24{word-spacing:3.618000px;}
.ws23{word-spacing:3.672000px;}
.ws4b{word-spacing:3.780000px;}
.ws4d{word-spacing:4.536000px;}
.ws22{word-spacing:4.560000px;}
.ws4a{word-spacing:4.806000px;}
.ws49{word-spacing:5.562000px;}
.ws1c{word-spacing:7.200000px;}
.ws1d{word-spacing:8.580000px;}
.ws1e{word-spacing:8.640000px;}
.ws20{word-spacing:10.980000px;}
.ws28{word-spacing:33.377400px;}
.ws2d{word-spacing:33.419400px;}
.ws4{word-spacing:33.651135px;}
.ws3a{word-spacing:53.439600px;}
.ws34{word-spacing:55.294800px;}
.wsf{word-spacing:56.981400px;}
.ws13{word-spacing:57.023400px;}
.ws30{word-spacing:59.683800px;}
.ws3b{word-spacing:63.557400px;}
.ws33{word-spacing:67.177800px;}
.ws2a{word-spacing:67.968000px;}
.ws32{word-spacing:67.999800px;}
.ws31{word-spacing:70.719000px;}
.ws43{word-spacing:72.345000px;}
.ws36{word-spacing:76.097400px;}
.ws35{word-spacing:76.129200px;}
.ws11{word-spacing:76.372200px;}
.ws2c{word-spacing:77.408400px;}
.ws40{word-spacing:78.065400px;}
.ws27{word-spacing:78.321000px;}
.ws12{word-spacing:79.044600px;}
.ws29{word-spacing:79.076400px;}
.ws38{word-spacing:79.900800px;}
.ws2b{word-spacing:80.173200px;}
.ws44{word-spacing:80.373600px;}
.ws45{word-spacing:80.848800px;}
.ws46{word-spacing:89.976600px;}
.ws2f{word-spacing:101.972400px;}
.ws42{word-spacing:103.005000px;}
.ws10{word-spacing:104.285400px;}
.ws39{word-spacing:115.381800px;}
.wse{word-spacing:117.629400px;}
.ws41{word-spacing:208.242600px;}
.ws37{word-spacing:208.306200px;}
._5{margin-left:-10.108200px;}
._1{margin-left:-8.017200px;}
._6{margin-left:-6.262800px;}
._38{margin-left:-5.137800px;}
._4{margin-left:-3.784200px;}
._0{margin-left:-1.846200px;}
._2{width:1.254600px;}
._3{width:2.305200px;}
._8{width:8.614200px;}
._7{width:36.624000px;}
._39{width:42.997800px;}
._3a{width:45.127200px;}
._4c{width:70.399200px;}
._23{width:71.442000px;}
._11{width:73.987200px;}
._31{width:77.974200px;}
._47{width:84.349800px;}
._3c{width:85.606200px;}
._13{width:88.320600px;}
._33{width:89.880600px;}
._37{width:92.795400px;}
._42{width:94.900200px;}
._4b{width:97.120800px;}
._1f{width:98.776200px;}
._22{width:100.909200px;}
._c{width:104.892000px;}
._f{width:106.567200px;}
._30{width:108.915600px;}
._1b{width:110.762400px;}
._18{width:116.085000px;}
._26{width:117.395400px;}
._49{width:120.807600px;}
._17{width:121.827600px;}
._4d{width:124.093200px;}
._48{width:126.370800px;}
._2a{width:129.235800px;}
._3f{width:131.541600px;}
._15{width:135.473400px;}
._45{width:137.273400px;}
._2c{width:139.698000px;}
._2b{width:144.105000px;}
._9{width:150.008400px;}
._28{width:169.243200px;}
._d{width:171.186600px;}
._40{width:179.446200px;}
._b{width:188.676000px;}
._a{width:195.237600px;}
._41{width:244.846800px;}
._35{width:253.346400px;}
._4a{width:260.600400px;}
._46{width:262.408200px;}
._1c{width:273.069600px;}
._1e{width:275.902200px;}
._12{width:281.145000px;}
._3b{width:283.289400px;}
._3d{width:286.191600px;}
._2d{width:289.540200px;}
._1a{width:295.090800px;}
._14{width:296.665200px;}
._10{width:299.891400px;}
._16{width:301.338600px;}
._19{width:303.786000px;}
._34{width:320.401800px;}
._29{width:322.515000px;}
._e{width:329.847600px;}
._1d{width:335.447400px;}
._2f{width:344.133000px;}
._36{width:347.551200px;}
._21{width:357.588000px;}
._4e{width:369.873600px;}
._27{width:371.990400px;}
._20{width:380.597400px;}
._2e{width:383.859000px;}
._44{width:402.966000px;}
._25{width:405.195600px;}
._3e{width:410.363400px;}
._43{width:432.833400px;}
._24{width:448.462200px;}
._32{width:458.118600px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.036150px;}
.y9e{bottom:113.078700px;}
.y14{bottom:117.875550px;}
.y7e{bottom:119.678850px;}
.y3a{bottom:123.142950px;}
.y13{bottom:132.275550px;}
.y7d{bottom:133.178850px;}
.y9d{bottom:134.078700px;}
.y39{bottom:136.642950px;}
.y12{bottom:146.675550px;}
.y7c{bottom:152.108850px;}
.y38{bottom:154.722600px;}
.y9c{bottom:155.078700px;}
.y11{bottom:161.075550px;}
.y7b{bottom:165.608850px;}
.y37{bottom:168.222600px;}
.y9b{bottom:176.078700px;}
.y7a{bottom:184.539000px;}
.y36{bottom:186.302400px;}
.y25{bottom:195.282300px;}
.y79{bottom:198.039000px;}
.y35{bottom:199.802400px;}
.y9a{bottom:202.529250px;}
.y24{bottom:213.282450px;}
.y78{bottom:216.543900px;}
.y34{bottom:217.882050px;}
.y77{bottom:230.043900px;}
.y33{bottom:231.382050px;}
.y99{bottom:239.078700px;}
.y76{bottom:243.543900px;}
.y23{bottom:248.290200px;}
.y32{bottom:249.461850px;}
.y75{bottom:262.048950px;}
.y31{bottom:262.961850px;}
.y98{bottom:265.529250px;}
.y22{bottom:266.290200px;}
.y74{bottom:275.548950px;}
.y30{bottom:281.041500px;}
.y21{bottom:284.290200px;}
.y73{bottom:294.053850px;}
.y2f{bottom:294.541500px;}
.y97{bottom:302.078700px;}
.y72{bottom:307.553850px;}
.y2e{bottom:312.621300px;}
.y20{bottom:319.298100px;}
.y71{bottom:325.633500px;}
.y2d{bottom:326.121300px;}
.y96{bottom:328.529250px;}
.y1f{bottom:337.298100px;}
.y70{bottom:339.133500px;}
.y2c{bottom:344.200950px;}
.y1e{bottom:355.298100px;}
.y6f{bottom:357.213300px;}
.y2b{bottom:357.700950px;}
.y95{bottom:365.078700px;}
.y6e{bottom:370.713300px;}
.y1d{bottom:373.298100px;}
.y2a{bottom:376.080750px;}
.y6d{bottom:388.792950px;}
.y94{bottom:391.529250px;}
.y6c{bottom:402.292950px;}
.y29{bottom:405.862800px;}
.y6b{bottom:420.372750px;}
.y28{bottom:425.662800px;}
.y93{bottom:428.078700px;}
.y6a{bottom:433.872750px;}
.y69{bottom:447.372750px;}
.y92{bottom:454.529250px;}
.y68{bottom:465.452400px;}
.y1c{bottom:474.212550px;}
.y67{bottom:478.952400px;}
.y91{bottom:491.078700px;}
.y1b{bottom:495.212550px;}
.y66{bottom:497.032200px;}
.y65{bottom:510.532200px;}
.y1a{bottom:516.212550px;}
.y64{bottom:528.611850px;}
.y90{bottom:535.263750px;}
.y19{bottom:537.212550px;}
.y63{bottom:542.111850px;}
.y18{bottom:558.212550px;}
.y62{bottom:560.191650px;}
.y8f{bottom:564.767700px;}
.y61{bottom:573.691650px;}
.y17{bottom:579.212550px;}
.y60{bottom:591.771300px;}
.y16{bottom:600.212550px;}
.y5f{bottom:605.271300px;}
.yab{bottom:609.851100px;}
.y5e{bottom:623.351100px;}
.y5d{bottom:636.851100px;}
.yaa{bottom:641.430750px;}
.y5c{bottom:654.930750px;}
.y5b{bottom:668.430750px;}
.ya9{bottom:673.010400px;}
.y10{bottom:684.666900px;}
.y5a{bottom:686.510400px;}
.y59{bottom:700.010400px;}
.yf{bottom:702.666900px;}
.ya8{bottom:704.590200px;}
.y58{bottom:718.090200px;}
.ye{bottom:720.666900px;}
.y57{bottom:731.590200px;}
.ya7{bottom:736.170000px;}
.yd{bottom:738.666900px;}
.y56{bottom:749.670000px;}
.yc{bottom:756.666900px;}
.y55{bottom:763.170000px;}
.ya6{bottom:767.749650px;}
.yb{bottom:774.666900px;}
.y54{bottom:781.249650px;}
.ya{bottom:792.666900px;}
.y53{bottom:794.749650px;}
.ya5{bottom:799.329300px;}
.y52{bottom:812.829300px;}
.y51{bottom:826.329300px;}
.y9{bottom:827.674650px;}
.ya4{bottom:830.909100px;}
.y50{bottom:844.409100px;}
.y8{bottom:847.474800px;}
.y4f{bottom:857.909100px;}
.y8e{bottom:861.953850px;}
.ya3{bottom:862.488900px;}
.yb5{bottom:869.078850px;}
.y4e{bottom:875.988900px;}
.y8d{bottom:879.953850px;}
.y7{bottom:884.282550px;}
.y4d{bottom:889.488900px;}
.yb4{bottom:890.078850px;}
.ya2{bottom:894.068550px;}
.y8c{bottom:897.953850px;}
.y4c{bottom:907.568550px;}
.yb3{bottom:911.078850px;}
.y8b{bottom:915.953850px;}
.y6{bottom:917.282550px;}
.y4b{bottom:921.068550px;}
.ya1{bottom:925.648350px;}
.yb2{bottom:932.078850px;}
.y8a{bottom:933.953850px;}
.y4a{bottom:939.148350px;}
.y5{bottom:950.282550px;}
.y89{bottom:951.953850px;}
.y49{bottom:952.648350px;}
.ya0{bottom:957.228000px;}
.yb1{bottom:967.441050px;}
.y88{bottom:969.953850px;}
.y48{bottom:970.728000px;}
.y4{bottom:983.282550px;}
.y47{bottom:984.228000px;}
.y87{bottom:987.953850px;}
.y9f{bottom:988.807650px;}
.y46{bottom:1002.307650px;}
.y86{bottom:1005.953850px;}
.y45{bottom:1015.807650px;}
.yb0{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y85{bottom:1023.953850px;}
.y44{bottom:1033.887450px;}
.y84{bottom:1041.953850px;}
.yaf{bottom:1042.529250px;}
.y43{bottom:1047.387450px;}
.y2{bottom:1049.282550px;}
.y83{bottom:1059.953850px;}
.y42{bottom:1065.467250px;}
.y82{bottom:1077.953850px;}
.y41{bottom:1078.967250px;}
.yae{bottom:1079.078700px;}
.y81{bottom:1095.953850px;}
.y40{bottom:1097.046900px;}
.yad{bottom:1100.078700px;}
.y15{bottom:1109.815500px;}
.y3f{bottom:1110.546900px;}
.y80{bottom:1113.953850px;}
.yac{bottom:1121.078700px;}
.y3e{bottom:1128.926550px;}
.y7f{bottom:1131.953850px;}
.y27{bottom:1155.615300px;}
.y26{bottom:1175.115300px;}
.y3d{bottom:1178.691750px;}
.hd{height:33.448242px;}
.he{height:33.694336px;}
.h7{height:34.446094px;}
.h6{height:36.540019px;}
.h2{height:38.039062px;}
.hf{height:38.273438px;}
.h5{height:38.531250px;}
.h12{height:41.053711px;}
.hb{height:42.793945px;}
.h8{height:43.004883px;}
.ha{height:43.057617px;}
.hc{height:43.321289px;}
.h9{height:48.134766px;}
.h11{height:50.176758px;}
.h4{height:52.948242px;}
.h10{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x14{left:107.068950px;}
.x29{left:108.286950px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x4{left:300.189000px;}
.xa{left:304.762200px;}
.x2e{left:317.196900px;}
.xb{left:329.952750px;}
.x3{left:406.436100px;}
.x1a{left:462.205650px;}
.x28{left:463.456650px;}
.x26{left:464.751300px;}
.x1d{left:466.784100px;}
.x16{left:469.737150px;}
.xc{left:473.346600px;}
.x20{left:477.607050px;}
.x24{left:556.518150px;}
.x2b{left:557.607600px;}
.x17{left:559.481400px;}
.x23{left:560.950350px;}
.x27{left:562.316700px;}
.x15{left:564.675000px;}
.x1b{left:567.233400px;}
.x21{left:568.433100px;}
.x22{left:575.018700px;}
.xf{left:576.082500px;}
.x19{left:578.248650px;}
.x13{left:581.148000px;}
.x1e{left:582.591150px;}
.x2d{left:587.400300px;}
.xd{left:588.992250px;}
.x11{left:595.121550px;}
.x1f{left:597.074850px;}
.x9{left:652.471650px;}
.x8{left:672.129900px;}
.x25{left:675.070650px;}
.x1c{left:676.437000px;}
.xe{left:678.236550px;}
.x10{left:750.516600px;}
.x12{left:756.312600px;}
.x2a{left:759.932250px;}
.x18{left:763.123800px;}
.x2c{left:766.743450px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls7{letter-spacing:-1.178667pt;}
.lsb{letter-spacing:-0.816000pt;}
.lsc{letter-spacing:-0.672000pt;}
.ls9{letter-spacing:-0.634667pt;}
.lsa{letter-spacing:-0.614400pt;}
.ls8{letter-spacing:-0.272000pt;}
.ls6{letter-spacing:-0.181333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001104pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.013333pt;}
.ls4{letter-spacing:0.022933pt;}
.ls0{letter-spacing:38.383435pt;}
.ws2{word-spacing:-22.576000pt;}
.ws1{word-spacing:-21.941333pt;}
.ws48{word-spacing:-15.936000pt;}
.ws3e{word-spacing:-14.608000pt;}
.ws8{word-spacing:-13.226667pt;}
.ws3f{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.760000pt;}
.ws3d{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.464000pt;}
.ws5{word-spacing:-10.107733pt;}
.wsb{word-spacing:-9.984000pt;}
.ws6{word-spacing:-9.685333pt;}
.wsa{word-spacing:-9.648000pt;}
.ws26{word-spacing:-9.600000pt;}
.wsc{word-spacing:-9.301333pt;}
.ws2e{word-spacing:-9.258667pt;}
.ws3{word-spacing:-8.482261pt;}
.ws7{word-spacing:-8.371200pt;}
.ws21{word-spacing:-1.706667pt;}
.ws18{word-spacing:-1.114667pt;}
.ws47{word-spacing:-0.912000pt;}
.ws19{word-spacing:-0.810667pt;}
.ws25{word-spacing:-0.709333pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.053333pt;}
.ws3c{word-spacing:-0.048000pt;}
.ws14{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.096000pt;}
.ws15{word-spacing:0.181333pt;}
.ws16{word-spacing:0.272000pt;}
.ws1b{word-spacing:0.614400pt;}
.ws0{word-spacing:1.088000pt;}
.ws17{word-spacing:1.936000pt;}
.ws24{word-spacing:3.216000pt;}
.ws23{word-spacing:3.264000pt;}
.ws4b{word-spacing:3.360000pt;}
.ws4d{word-spacing:4.032000pt;}
.ws22{word-spacing:4.053333pt;}
.ws4a{word-spacing:4.272000pt;}
.ws49{word-spacing:4.944000pt;}
.ws1c{word-spacing:6.400000pt;}
.ws1d{word-spacing:7.626667pt;}
.ws1e{word-spacing:7.680000pt;}
.ws20{word-spacing:9.760000pt;}
.ws28{word-spacing:29.668800pt;}
.ws2d{word-spacing:29.706133pt;}
.ws4{word-spacing:29.912120pt;}
.ws3a{word-spacing:47.501867pt;}
.ws34{word-spacing:49.150933pt;}
.wsf{word-spacing:50.650133pt;}
.ws13{word-spacing:50.687467pt;}
.ws30{word-spacing:53.052267pt;}
.ws3b{word-spacing:56.495467pt;}
.ws33{word-spacing:59.713600pt;}
.ws2a{word-spacing:60.416000pt;}
.ws32{word-spacing:60.444267pt;}
.ws31{word-spacing:62.861333pt;}
.ws43{word-spacing:64.306667pt;}
.ws36{word-spacing:67.642133pt;}
.ws35{word-spacing:67.670400pt;}
.ws11{word-spacing:67.886400pt;}
.ws2c{word-spacing:68.807467pt;}
.ws40{word-spacing:69.391467pt;}
.ws27{word-spacing:69.618667pt;}
.ws12{word-spacing:70.261867pt;}
.ws29{word-spacing:70.290133pt;}
.ws38{word-spacing:71.022933pt;}
.ws2b{word-spacing:71.265067pt;}
.ws44{word-spacing:71.443200pt;}
.ws45{word-spacing:71.865600pt;}
.ws46{word-spacing:79.979200pt;}
.ws2f{word-spacing:90.642133pt;}
.ws42{word-spacing:91.560000pt;}
.ws10{word-spacing:92.698133pt;}
.ws39{word-spacing:102.561600pt;}
.wse{word-spacing:104.559467pt;}
.ws41{word-spacing:185.104533pt;}
.ws37{word-spacing:185.161067pt;}
._5{margin-left:-8.985067pt;}
._1{margin-left:-7.126400pt;}
._6{margin-left:-5.566933pt;}
._38{margin-left:-4.566933pt;}
._4{margin-left:-3.363733pt;}
._0{margin-left:-1.641067pt;}
._2{width:1.115200pt;}
._3{width:2.049067pt;}
._8{width:7.657067pt;}
._7{width:32.554667pt;}
._39{width:38.220267pt;}
._3a{width:40.113067pt;}
._4c{width:62.577067pt;}
._23{width:63.504000pt;}
._11{width:65.766400pt;}
._31{width:69.310400pt;}
._47{width:74.977600pt;}
._3c{width:76.094400pt;}
._13{width:78.507200pt;}
._33{width:79.893867pt;}
._37{width:82.484800pt;}
._42{width:84.355733pt;}
._4b{width:86.329600pt;}
._1f{width:87.801067pt;}
._22{width:89.697067pt;}
._c{width:93.237333pt;}
._f{width:94.726400pt;}
._30{width:96.813867pt;}
._1b{width:98.455467pt;}
._18{width:103.186667pt;}
._26{width:104.351467pt;}
._49{width:107.384533pt;}
._17{width:108.291200pt;}
._4d{width:110.305067pt;}
._48{width:112.329600pt;}
._2a{width:114.876267pt;}
._3f{width:116.925867pt;}
._15{width:120.420800pt;}
._45{width:122.020800pt;}
._2c{width:124.176000pt;}
._2b{width:128.093333pt;}
._9{width:133.340800pt;}
._28{width:150.438400pt;}
._d{width:152.165867pt;}
._40{width:159.507733pt;}
._b{width:167.712000pt;}
._a{width:173.544533pt;}
._41{width:217.641600pt;}
._35{width:225.196800pt;}
._4a{width:231.644800pt;}
._46{width:233.251733pt;}
._1c{width:242.728533pt;}
._1e{width:245.246400pt;}
._12{width:249.906667pt;}
._3b{width:251.812800pt;}
._3d{width:254.392533pt;}
._2d{width:257.369067pt;}
._1a{width:262.302933pt;}
._14{width:263.702400pt;}
._10{width:266.570133pt;}
._16{width:267.856533pt;}
._19{width:270.032000pt;}
._34{width:284.801600pt;}
._29{width:286.680000pt;}
._e{width:293.197867pt;}
._1d{width:298.175467pt;}
._2f{width:305.896000pt;}
._36{width:308.934400pt;}
._21{width:317.856000pt;}
._4e{width:328.776533pt;}
._27{width:330.658133pt;}
._20{width:338.308800pt;}
._2e{width:341.208000pt;}
._44{width:358.192000pt;}
._25{width:360.173867pt;}
._3e{width:364.767467pt;}
._43{width:384.740800pt;}
._24{width:398.633067pt;}
._32{width:407.216533pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.698800pt;}
.y9e{bottom:100.514400pt;}
.y14{bottom:104.778267pt;}
.y7e{bottom:106.381200pt;}
.y3a{bottom:109.460400pt;}
.y13{bottom:117.578267pt;}
.y7d{bottom:118.381200pt;}
.y9d{bottom:119.181067pt;}
.y39{bottom:121.460400pt;}
.y12{bottom:130.378267pt;}
.y7c{bottom:135.207867pt;}
.y38{bottom:137.531200pt;}
.y9c{bottom:137.847733pt;}
.y11{bottom:143.178267pt;}
.y7b{bottom:147.207867pt;}
.y37{bottom:149.531200pt;}
.y9b{bottom:156.514400pt;}
.y7a{bottom:164.034667pt;}
.y36{bottom:165.602133pt;}
.y25{bottom:173.584267pt;}
.y79{bottom:176.034667pt;}
.y35{bottom:177.602133pt;}
.y9a{bottom:180.026000pt;}
.y24{bottom:189.584400pt;}
.y78{bottom:192.483467pt;}
.y34{bottom:193.672933pt;}
.y77{bottom:204.483467pt;}
.y33{bottom:205.672933pt;}
.y99{bottom:212.514400pt;}
.y76{bottom:216.483467pt;}
.y23{bottom:220.702400pt;}
.y32{bottom:221.743867pt;}
.y75{bottom:232.932400pt;}
.y31{bottom:233.743867pt;}
.y98{bottom:236.026000pt;}
.y22{bottom:236.702400pt;}
.y74{bottom:244.932400pt;}
.y30{bottom:249.814667pt;}
.y21{bottom:252.702400pt;}
.y73{bottom:261.381200pt;}
.y2f{bottom:261.814667pt;}
.y97{bottom:268.514400pt;}
.y72{bottom:273.381200pt;}
.y2e{bottom:277.885600pt;}
.y20{bottom:283.820533pt;}
.y71{bottom:289.452000pt;}
.y2d{bottom:289.885600pt;}
.y96{bottom:292.026000pt;}
.y1f{bottom:299.820533pt;}
.y70{bottom:301.452000pt;}
.y2c{bottom:305.956400pt;}
.y1e{bottom:315.820533pt;}
.y6f{bottom:317.522933pt;}
.y2b{bottom:317.956400pt;}
.y95{bottom:324.514400pt;}
.y6e{bottom:329.522933pt;}
.y1d{bottom:331.820533pt;}
.y2a{bottom:334.294000pt;}
.y6d{bottom:345.593733pt;}
.y94{bottom:348.026000pt;}
.y6c{bottom:357.593733pt;}
.y29{bottom:360.766933pt;}
.y6b{bottom:373.664667pt;}
.y28{bottom:378.366933pt;}
.y93{bottom:380.514400pt;}
.y6a{bottom:385.664667pt;}
.y69{bottom:397.664667pt;}
.y92{bottom:404.026000pt;}
.y68{bottom:413.735467pt;}
.y1c{bottom:421.522267pt;}
.y67{bottom:425.735467pt;}
.y91{bottom:436.514400pt;}
.y1b{bottom:440.188933pt;}
.y66{bottom:441.806400pt;}
.y65{bottom:453.806400pt;}
.y1a{bottom:458.855600pt;}
.y64{bottom:469.877200pt;}
.y90{bottom:475.790000pt;}
.y19{bottom:477.522267pt;}
.y63{bottom:481.877200pt;}
.y18{bottom:496.188933pt;}
.y62{bottom:497.948133pt;}
.y8f{bottom:502.015733pt;}
.y61{bottom:509.948133pt;}
.y17{bottom:514.855600pt;}
.y60{bottom:526.018933pt;}
.y16{bottom:533.522267pt;}
.y5f{bottom:538.018933pt;}
.yab{bottom:542.089867pt;}
.y5e{bottom:554.089867pt;}
.y5d{bottom:566.089867pt;}
.yaa{bottom:570.160667pt;}
.y5c{bottom:582.160667pt;}
.y5b{bottom:594.160667pt;}
.ya9{bottom:598.231467pt;}
.y10{bottom:608.592800pt;}
.y5a{bottom:610.231467pt;}
.y59{bottom:622.231467pt;}
.yf{bottom:624.592800pt;}
.ya8{bottom:626.302400pt;}
.y58{bottom:638.302400pt;}
.ye{bottom:640.592800pt;}
.y57{bottom:650.302400pt;}
.ya7{bottom:654.373333pt;}
.yd{bottom:656.592800pt;}
.y56{bottom:666.373333pt;}
.yc{bottom:672.592800pt;}
.y55{bottom:678.373333pt;}
.ya6{bottom:682.444133pt;}
.yb{bottom:688.592800pt;}
.y54{bottom:694.444133pt;}
.ya{bottom:704.592800pt;}
.y53{bottom:706.444133pt;}
.ya5{bottom:710.514933pt;}
.y52{bottom:722.514933pt;}
.y51{bottom:734.514933pt;}
.y9{bottom:735.710800pt;}
.ya4{bottom:738.585867pt;}
.y50{bottom:750.585867pt;}
.y8{bottom:753.310933pt;}
.y4f{bottom:762.585867pt;}
.y8e{bottom:766.181200pt;}
.ya3{bottom:766.656800pt;}
.yb5{bottom:772.514533pt;}
.y4e{bottom:778.656800pt;}
.y8d{bottom:782.181200pt;}
.y7{bottom:786.028933pt;}
.y4d{bottom:790.656800pt;}
.yb4{bottom:791.181200pt;}
.ya2{bottom:794.727600pt;}
.y8c{bottom:798.181200pt;}
.y4c{bottom:806.727600pt;}
.yb3{bottom:809.847867pt;}
.y8b{bottom:814.181200pt;}
.y6{bottom:815.362267pt;}
.y4b{bottom:818.727600pt;}
.ya1{bottom:822.798533pt;}
.yb2{bottom:828.514533pt;}
.y8a{bottom:830.181200pt;}
.y4a{bottom:834.798533pt;}
.y5{bottom:844.695600pt;}
.y89{bottom:846.181200pt;}
.y49{bottom:846.798533pt;}
.ya0{bottom:850.869333pt;}
.yb1{bottom:859.947600pt;}
.y88{bottom:862.181200pt;}
.y48{bottom:862.869333pt;}
.y4{bottom:874.028933pt;}
.y47{bottom:874.869333pt;}
.y87{bottom:878.181200pt;}
.y9f{bottom:878.940133pt;}
.y46{bottom:890.940133pt;}
.y86{bottom:894.181200pt;}
.y45{bottom:902.940133pt;}
.yb0{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y85{bottom:910.181200pt;}
.y44{bottom:919.011067pt;}
.y84{bottom:926.181200pt;}
.yaf{bottom:926.692667pt;}
.y43{bottom:931.011067pt;}
.y2{bottom:932.695600pt;}
.y83{bottom:942.181200pt;}
.y42{bottom:947.082000pt;}
.y82{bottom:958.181200pt;}
.y41{bottom:959.082000pt;}
.yae{bottom:959.181067pt;}
.y81{bottom:974.181200pt;}
.y40{bottom:975.152800pt;}
.yad{bottom:977.847733pt;}
.y15{bottom:986.502667pt;}
.y3f{bottom:987.152800pt;}
.y80{bottom:990.181200pt;}
.yac{bottom:996.514400pt;}
.y3e{bottom:1003.490267pt;}
.y7f{bottom:1006.181200pt;}
.y27{bottom:1027.213600pt;}
.y26{bottom:1044.546933pt;}
.y3d{bottom:1047.726000pt;}
.hd{height:29.731771pt;}
.he{height:29.950521pt;}
.h7{height:30.618750pt;}
.h6{height:32.480017pt;}
.h2{height:33.812500pt;}
.hf{height:34.020833pt;}
.h5{height:34.250000pt;}
.h12{height:36.492188pt;}
.hb{height:38.039062pt;}
.h8{height:38.226562pt;}
.ha{height:38.273438pt;}
.hc{height:38.507812pt;}
.h9{height:42.786458pt;}
.h11{height:44.601562pt;}
.h4{height:47.065104pt;}
.h10{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x14{left:95.172400pt;}
.x29{left:96.255067pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x4{left:266.834667pt;}
.xa{left:270.899733pt;}
.x2e{left:281.952800pt;}
.xb{left:293.291333pt;}
.x3{left:361.276533pt;}
.x1a{left:410.849467pt;}
.x28{left:411.961467pt;}
.x26{left:413.112267pt;}
.x1d{left:414.919200pt;}
.x16{left:417.544133pt;}
.xc{left:420.752533pt;}
.x20{left:424.539600pt;}
.x24{left:494.682800pt;}
.x2b{left:495.651200pt;}
.x17{left:497.316800pt;}
.x23{left:498.622533pt;}
.x27{left:499.837067pt;}
.x15{left:501.933333pt;}
.x1b{left:504.207467pt;}
.x21{left:505.273867pt;}
.x22{left:511.127733pt;}
.xf{left:512.073333pt;}
.x19{left:513.998800pt;}
.x13{left:516.576000pt;}
.x1e{left:517.858800pt;}
.x2d{left:522.133600pt;}
.xd{left:523.548667pt;}
.x11{left:528.996933pt;}
.x1f{left:530.733200pt;}
.x9{left:579.974800pt;}
.x8{left:597.448800pt;}
.x25{left:600.062800pt;}
.x1c{left:601.277333pt;}
.xe{left:602.876933pt;}
.x10{left:667.125867pt;}
.x12{left:672.277867pt;}
.x2a{left:675.495333pt;}
.x18{left:678.332267pt;}
.x2c{left:681.549733pt;}
.x1{left:712.311867pt;}
}




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