
    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_03c71b2566b4803dd83e7887.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_44c22b7390b2709342c01220.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_5c81e1905bb081bb27c9e536.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_fe88451811eb523f0503e414.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_2cf33046c06ca3f72f04b295.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.649414;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_9db8a832b5399d5b1b6a81a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_7329870c9a5dec21a429c417.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.000000,-0.250422,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250422,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250422,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249293,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249293,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249293,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,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);}
.m3{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-15.687975px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.v7{vertical-align:15.687978px;}
.v6{vertical-align:20.880000px;}
.v4{vertical-align:28.800000px;}
.v5{vertical-align:33.120000px;}
.v3{vertical-align:38.880000px;}
.ls1a{letter-spacing:-0.828000px;}
.ls14{letter-spacing:-0.513600px;}
.ls1f{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.116150px;}
.ls18{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.025920px;}
.ls19{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.022320px;}
.ls8{letter-spacing:0.023040px;}
.ls15{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.061223px;}
.ls9{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.093918px;}
.ls1c{letter-spacing:0.104692px;}
.ls1e{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws2{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.560000px;}
.ws26{word-spacing:-16.145400px;}
.ws20{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.146400px;}
.ws12{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.940000px;}
.wse{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.426400px;}
.ws19{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.482000px;}
.ws16{word-spacing:-13.392000px;}
.ws1a{word-spacing:-12.672000px;}
.ws9{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.790600px;}
.ws7{word-spacing:-10.440000px;}
.ws14{word-spacing:-10.350600px;}
.ws25{word-spacing:-8.569730px;}
.ws1f{word-spacing:-8.193292px;}
.ws22{word-spacing:-7.802700px;}
.ws15{word-spacing:-7.560000px;}
.ws1d{word-spacing:-7.493804px;}
.ws24{word-spacing:-5.121044px;}
.ws1e{word-spacing:-4.897685px;}
.ws1b{word-spacing:-3.657703px;}
.ws23{word-spacing:-3.063914px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:118.686884px;}
.ws1c{word-spacing:127.788646px;}
._11{margin-left:-2.343600px;}
._0{margin-left:-1.263600px;}
._1{width:1.263600px;}
._2{width:2.728800px;}
._d{width:4.015200px;}
._e{width:5.029200px;}
._9{width:6.048000px;}
._8{width:7.176000px;}
._f{width:8.784000px;}
._10{width:9.936000px;}
._6{width:11.088000px;}
._7{width:12.212400px;}
._b{width:13.752000px;}
._a{width:15.231600px;}
._c{width:16.488000px;}
._13{width:17.554320px;}
._15{width:19.052400px;}
._5{width:20.055600px;}
._12{width:21.451200px;}
._1a{width:23.581440px;}
._4{width:30.704400px;}
._3{width:32.439600px;}
._1b{width:40.500000px;}
._19{width:142.299158px;}
._17{width:150.778434px;}
._18{width:157.681111px;}
._16{width:165.539420px;}
._14{width:1852.153680px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:11.021273px;}
.fs9{font-size:13.157204px;}
.fsc{font-size:17.617572px;}
.fs11{font-size:18.421023px;}
.fsa{font-size:26.956129px;}
.fse{font-size:28.067265px;}
.fsb{font-size:29.472274px;}
.fsd{font-size:29.522052px;}
.fs7{font-size:30.240000px;}
.fs12{font-size:30.739247px;}
.fs10{font-size:30.826368px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:0.180000px;}
.y6b{bottom:2.880000px;}
.ybe{bottom:2.930197px;}
.y8a{bottom:2.948652px;}
.y5d{bottom:3.060000px;}
.y5a{bottom:3.240000px;}
.y69{bottom:3.420000px;}
.y5b{bottom:3.600000px;}
.y67{bottom:3.630000px;}
.y9b{bottom:3.780000px;}
.y53{bottom:6.120000px;}
.y8f{bottom:6.765000px;}
.y91{bottom:6.810000px;}
.y81{bottom:15.039742px;}
.yaf{bottom:15.564426px;}
.y65{bottom:17.670000px;}
.y82{bottom:22.967498px;}
.yb0{bottom:23.846007px;}
.y9f{bottom:32.760000px;}
.yb7{bottom:35.056089px;}
.y59{bottom:36.900000px;}
.y79{bottom:37.939918px;}
.yb8{bottom:38.401275px;}
.y7a{bottom:41.944264px;}
.y89{bottom:45.067927px;}
.ybd{bottom:46.096895px;}
.y83{bottom:48.992138px;}
.yb1{bottom:50.783280px;}
.y7b{bottom:54.676913px;}
.yb9{bottom:54.797762px;}
.y2{bottom:57.600000px;}
.y7c{bottom:67.488094px;}
.yba{bottom:71.110913px;}
.y84{bottom:75.096111px;}
.yb2{bottom:77.720552px;}
.y1{bottom:77.796000px;}
.y7d{bottom:80.221545px;}
.ybb{bottom:87.508703px;}
.y7e{bottom:93.032726px;}
.y85{bottom:101.120751px;}
.ybc{bottom:103.905190px;}
.yb3{bottom:104.657825px;}
.y7f{bottom:105.762971px;}
.y5c{bottom:113.760000px;}
.y80{bottom:118.576556px;}
.y4e{bottom:126.936000px;}
.y86{bottom:127.142987px;}
.y1b{bottom:130.356000px;}
.yb4{bottom:131.596399px;}
.y34{bottom:133.056000px;}
.y51{bottom:134.100000px;}
.ye5{bottom:144.216000px;}
.yad{bottom:151.050000px;}
.y87{bottom:153.247762px;}
.y8d{bottom:155.731144px;}
.yb5{bottom:158.533672px;}
.ye4{bottom:161.490000px;}
.yc1{bottom:161.546812px;}
.y8c{bottom:163.979439px;}
.y4d{bottom:168.330000px;}
.yc0{bottom:170.163041px;}
.y77{bottom:171.750000px;}
.y8b{bottom:172.226131px;}
.y33{bottom:174.450000px;}
.y99{bottom:178.560000px;}
.ye3{bottom:178.770000px;}
.ybf{bottom:178.780573px;}
.y88{bottom:179.271601px;}
.y9c{bottom:181.260000px;}
.y1a{bottom:183.810000px;}
.yb6{bottom:185.473548px;}
.yac{bottom:192.450000px;}
.ye2{bottom:196.050000px;}
.y4c{bottom:209.730000px;}
.y76{bottom:213.150000px;}
.ye1{bottom:213.330000px;}
.y32{bottom:215.850000px;}
.y57{bottom:217.125000px;}
.y19{bottom:225.210000px;}
.y58{bottom:229.905000px;}
.ye0{bottom:230.430000px;}
.yab{bottom:233.850000px;}
.y56{bottom:240.885000px;}
.ydf{bottom:247.710000px;}
.y4b{bottom:251.130000px;}
.y75{bottom:254.550000px;}
.y31{bottom:257.250000px;}
.y55{bottom:264.645000px;}
.yde{bottom:264.990000px;}
.y18{bottom:266.610000px;}
.yaa{bottom:275.250000px;}
.ydd{bottom:282.270000px;}
.y4a{bottom:292.530000px;}
.y74{bottom:295.950000px;}
.y30{bottom:298.650000px;}
.ydc{bottom:299.550000px;}
.y17{bottom:308.010000px;}
.ya9{bottom:316.650000px;}
.ydb{bottom:316.830000px;}
.y49{bottom:333.930000px;}
.y73{bottom:337.395000px;}
.y2f{bottom:340.095000px;}
.y16{bottom:349.455000px;}
.yda{bottom:351.255000px;}
.yd9{bottom:368.535000px;}
.ya8{bottom:369.615000px;}
.y48{bottom:375.375000px;}
.y72{bottom:378.795000px;}
.y2e{bottom:381.495000px;}
.yd8{bottom:385.815000px;}
.ya7{bottom:390.315000px;}
.y15{bottom:390.855000px;}
.yd7{bottom:403.095000px;}
.y47{bottom:416.775000px;}
.y71{bottom:420.195000px;}
.yd6{bottom:420.375000px;}
.y2d{bottom:422.895000px;}
.ya6{bottom:432.075000px;}
.y14{bottom:432.255000px;}
.yd5{bottom:437.475000px;}
.yd4{bottom:454.755000px;}
.y46{bottom:458.175000px;}
.y70{bottom:461.595000px;}
.y2c{bottom:464.295000px;}
.yd3{bottom:472.035000px;}
.ya5{bottom:473.475000px;}
.y13{bottom:473.655000px;}
.y6f{bottom:484.095000px;}
.yd2{bottom:489.315000px;}
.y45{bottom:499.575000px;}
.y6e{bottom:501.015000px;}
.y2b{bottom:505.695000px;}
.yd1{bottom:506.595000px;}
.ya4{bottom:514.875000px;}
.y6d{bottom:518.115000px;}
.yd0{bottom:523.695000px;}
.y12{bottom:526.755000px;}
.y6c{bottom:535.035000px;}
.y44{bottom:540.975000px;}
.y2a{bottom:547.095000px;}
.y11{bottom:547.815000px;}
.y6a{bottom:552.135000px;}
.ya3{bottom:556.275000px;}
.ycf{bottom:558.255000px;}
.y68{bottom:569.055000px;}
.yce{bottom:575.535000px;}
.ya2{bottom:576.975000px;}
.y43{bottom:582.375000px;}
.y64{bottom:586.155000px;}
.y29{bottom:588.495000px;}
.ycd{bottom:592.815000px;}
.y10{bottom:601.095000px;}
.y66{bottom:601.455000px;}
.ya1{bottom:611.745000px;}
.y42{bottom:623.805000px;}
.y63{bottom:625.605000px;}
.ya0{bottom:629.205000px;}
.y28{bottom:629.925000px;}
.ycc{bottom:631.185000px;}
.yf{bottom:642.525000px;}
.y98{bottom:642.705000px;}
.yae{bottom:642.809996px;}
.y62{bottom:642.885000px;}
.y41{bottom:665.205000px;}
.y27{bottom:671.325000px;}
.ycb{bottom:672.585000px;}
.y61{bottom:681.585000px;}
.yc2{bottom:683.100000px;}
.ye{bottom:683.925000px;}
.yc3{bottom:684.360000px;}
.yc4{bottom:685.980000px;}
.y60{bottom:701.565000px;}
.yca{bottom:702.645000px;}
.y40{bottom:706.605000px;}
.y26{bottom:712.725000px;}
.y5f{bottom:718.845000px;}
.yd{bottom:725.325000px;}
.yc9{bottom:731.085000px;}
.y5e{bottom:736.125000px;}
.y3f{bottom:748.005000px;}
.y54{bottom:749.625000px;}
.y25{bottom:754.125000px;}
.y8e{bottom:757.620000px;}
.yc8{bottom:759.525000px;}
.yc{bottom:766.725000px;}
.y78{bottom:786.584992px;}
.yc7{bottom:787.965000px;}
.y3e{bottom:789.405000px;}
.y24{bottom:795.345000px;}
.y9e{bottom:802.905000px;}
.yb{bottom:808.125000px;}
.y9a{bottom:820.185000px;}
.yc6{bottom:827.745000px;}
.y3d{bottom:830.805000px;}
.y23{bottom:836.745000px;}
.yc5{bottom:848.445000px;}
.ya{bottom:849.525000px;}
.y97{bottom:854.205000px;}
.y3c{bottom:872.250000px;}
.y22{bottom:878.190000px;}
.y50{bottom:880.170000px;}
.y92{bottom:887.940000px;}
.y96{bottom:890.250000px;}
.y90{bottom:891.180000px;}
.y9{bottom:902.670000px;}
.y3b{bottom:913.650000px;}
.y21{bottom:919.590000px;}
.y95{bottom:931.650000px;}
.y8{bottom:955.950000px;}
.y20{bottom:960.990000px;}
.y3a{bottom:966.570000px;}
.y94{bottom:973.050000px;}
.y1f{bottom:1002.390000px;}
.y39{bottom:1006.170000px;}
.y7{bottom:1007.610000px;}
.y52{bottom:1010.850000px;}
.y93{bottom:1014.450000px;}
.y6{bottom:1029.390000px;}
.y38{bottom:1043.250000px;}
.y1e{bottom:1043.790000px;}
.y5{bottom:1051.170000px;}
.y37{bottom:1051.530000px;}
.y4f{bottom:1055.850000px;}
.y1d{bottom:1085.190000px;}
.y4{bottom:1091.850000px;}
.y36{bottom:1097.250000px;}
.y3{bottom:1135.590000px;}
.y1c{bottom:1138.320000px;}
.y35{bottom:1138.680000px;}
.h28{height:11.494843px;}
.h1c{height:13.722553px;}
.h14{height:13.845000px;}
.h1a{height:15.465000px;}
.h17{height:15.645000px;}
.h23{height:17.280000px;}
.h20{height:18.180000px;}
.h13{height:18.930000px;}
.hb{height:19.785000px;}
.h1d{height:28.114400px;}
.h27{height:29.273281px;}
.h1f{height:30.790577px;}
.h2a{height:32.060074px;}
.h1e{height:34.062556px;}
.h12{height:34.230000px;}
.h29{height:35.624173px;}
.h16{height:47.344922px;}
.h21{height:47.980898px;}
.h15{height:50.558906px;}
.h19{height:52.998047px;}
.h18{height:54.421875px;}
.hc{height:58.651172px;}
.h11{height:60.226875px;}
.h4{height:65.010937px;}
.h2{height:65.884219px;}
.h5{height:66.757500px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h25{height:80.464922px;}
.h3{height:84.898125px;}
.h8{height:92.466914px;}
.h9{height:106.702031px;}
.h10{height:130.522500px;}
.he{height:130.665000px;}
.hf{height:130.671000px;}
.ha{height:150.465000px;}
.h24{height:160.200000px;}
.h1b{height:185.976496px;}
.h26{height:194.691364px;}
.h22{height:194.760000px;}
.hd{height:281.010000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:29.700000px;}
.w2{width:30.418500px;}
.w6{width:31.305000px;}
.w15{width:34.558500px;}
.w19{width:42.465000px;}
.wa{width:52.020000px;}
.wc{width:52.056000px;}
.we{width:52.185000px;}
.wd{width:55.425000px;}
.wf{width:57.081000px;}
.w14{width:60.120000px;}
.w12{width:61.920000px;}
.w13{width:63.180000px;}
.w11{width:63.540000px;}
.w1e{width:64.620000px;}
.w1f{width:67.140000px;}
.w9{width:100.281000px;}
.w18{width:148.896000px;}
.w4{width:156.795000px;}
.w8{width:156.810000px;}
.w5{width:156.990000px;}
.w3{width:159.328500px;}
.w1b{width:159.495000px;}
.w1c{width:159.510000px;}
.w16{width:159.688500px;}
.w17{width:170.115000px;}
.w10{width:229.497246px;}
.w7{width:247.695000px;}
.w1d{width:248.704968px;}
.w1a{width:254.580000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.278500px;}
.x21{left:9.540000px;}
.x26{left:10.965000px;}
.x1f{left:12.420000px;}
.x27{left:14.220000px;}
.x10{left:15.645000px;}
.x28{left:17.085000px;}
.x31{left:19.005000px;}
.x1c{left:21.225000px;}
.x3c{left:28.980000px;}
.xd{left:32.970000px;}
.xb{left:34.234500px;}
.x2b{left:39.061542px;}
.x2c{left:41.224739px;}
.x43{left:45.079721px;}
.x2e{left:50.591921px;}
.x8{left:55.261500px;}
.x2a{left:70.531093px;}
.x44{left:71.715955px;}
.x38{left:74.370000px;}
.x34{left:75.961500px;}
.x35{left:79.768500px;}
.xa{left:85.681500px;}
.x2d{left:97.354252px;}
.x45{left:105.219527px;}
.x2{left:108.036000px;}
.x16{left:109.296000px;}
.x17{left:121.356000px;}
.x12{left:123.870000px;}
.x19{left:125.676000px;}
.x5{left:131.976000px;}
.x49{left:136.836000px;}
.x14{left:147.645000px;}
.x4{left:149.076000px;}
.x15{left:150.508500px;}
.x3e{left:156.090000px;}
.x3d{left:157.528500px;}
.x40{left:158.790000px;}
.x46{left:168.120000px;}
.x2f{left:171.180000px;}
.x7{left:179.850000px;}
.x3{left:201.450000px;}
.x1b{left:221.085000px;}
.x36{left:235.665000px;}
.x13{left:238.530000px;}
.xc{left:245.025000px;}
.x3b{left:256.740000px;}
.x18{left:279.255000px;}
.x1a{left:305.895000px;}
.x41{left:307.875000px;}
.x1d{left:321.375000px;}
.x33{left:328.140000px;}
.x32{left:330.480000px;}
.x48{left:335.340000px;}
.x1e{left:373.395000px;}
.x3f{left:395.175000px;}
.x6{left:399.315000px;}
.xe{left:401.835000px;}
.x37{left:405.795000px;}
.x20{left:425.415000px;}
.x22{left:455.115000px;}
.x30{left:485.460000px;}
.x47{left:486.540000px;}
.x23{left:507.180000px;}
.x39{left:554.700000px;}
.xf{left:558.840000px;}
.x24{left:562.620000px;}
.x11{left:590.160000px;}
.x3a{left:597.180000px;}
.x29{left:599.174996px;}
.x42{left:605.174996px;}
.x25{left:614.820000px;}
.x1{left:776.850000px;}
@media print{
.v8{vertical-align:-13.944867pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.v7{vertical-align:13.944870pt;}
.v6{vertical-align:18.560000pt;}
.v4{vertical-align:25.600000pt;}
.v5{vertical-align:29.440000pt;}
.v3{vertical-align:34.560000pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls14{letter-spacing:-0.456533pt;}
.ls1f{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.103245pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.023040pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.019840pt;}
.ls8{letter-spacing:0.020480pt;}
.ls15{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.054421pt;}
.ls9{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.083483pt;}
.ls1c{letter-spacing:0.093059pt;}
.ls1e{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ws13{word-spacing:-58.880000pt;}
.ws2{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws26{word-spacing:-14.351467pt;}
.ws20{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.823467pt;}
.ws19{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.984000pt;}
.ws16{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.264000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.480533pt;}
.ws7{word-spacing:-9.280000pt;}
.ws14{word-spacing:-9.200533pt;}
.ws25{word-spacing:-7.617538pt;}
.ws1f{word-spacing:-7.282926pt;}
.ws22{word-spacing:-6.935733pt;}
.ws15{word-spacing:-6.720000pt;}
.ws1d{word-spacing:-6.661159pt;}
.ws24{word-spacing:-4.552039pt;}
.ws1e{word-spacing:-4.353498pt;}
.ws1b{word-spacing:-3.251291pt;}
.ws23{word-spacing:-2.723479pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:105.499452pt;}
.ws1c{word-spacing:113.589907pt;}
._11{margin-left:-2.083200pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.123200pt;}
._2{width:2.425600pt;}
._d{width:3.569067pt;}
._e{width:4.470400pt;}
._9{width:5.376000pt;}
._8{width:6.378667pt;}
._f{width:7.808000pt;}
._10{width:8.832000pt;}
._6{width:9.856000pt;}
._7{width:10.855467pt;}
._b{width:12.224000pt;}
._a{width:13.539200pt;}
._c{width:14.656000pt;}
._13{width:15.603840pt;}
._15{width:16.935467pt;}
._5{width:17.827200pt;}
._12{width:19.067733pt;}
._1a{width:20.961280pt;}
._4{width:27.292800pt;}
._3{width:28.835200pt;}
._1b{width:36.000000pt;}
._19{width:126.488140pt;}
._17{width:134.025275pt;}
._18{width:140.160988pt;}
._16{width:147.146151pt;}
._14{width:1646.358827pt;}
.fsf{font-size:9.796687pt;}
.fs9{font-size:11.695293pt;}
.fsc{font-size:15.660064pt;}
.fs11{font-size:16.374243pt;}
.fsa{font-size:23.961004pt;}
.fse{font-size:24.948680pt;}
.fsb{font-size:26.197577pt;}
.fsd{font-size:26.241824pt;}
.fs7{font-size:26.880000pt;}
.fs12{font-size:27.323775pt;}
.fs10{font-size:27.401216pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:0.160000pt;}
.y6b{bottom:2.560000pt;}
.ybe{bottom:2.604620pt;}
.y8a{bottom:2.621024pt;}
.y5d{bottom:2.720000pt;}
.y5a{bottom:2.880000pt;}
.y69{bottom:3.040000pt;}
.y5b{bottom:3.200000pt;}
.y67{bottom:3.226667pt;}
.y9b{bottom:3.360000pt;}
.y53{bottom:5.440000pt;}
.y8f{bottom:6.013333pt;}
.y91{bottom:6.053333pt;}
.y81{bottom:13.368660pt;}
.yaf{bottom:13.835046pt;}
.y65{bottom:15.706667pt;}
.y82{bottom:20.415553pt;}
.yb0{bottom:21.196451pt;}
.y9f{bottom:29.120000pt;}
.yb7{bottom:31.160968pt;}
.y59{bottom:32.800000pt;}
.y79{bottom:33.724371pt;}
.yb8{bottom:34.134467pt;}
.y7a{bottom:37.283790pt;}
.y89{bottom:40.060380pt;}
.ybd{bottom:40.975018pt;}
.y83{bottom:43.548567pt;}
.yb1{bottom:45.140693pt;}
.y7b{bottom:48.601701pt;}
.yb9{bottom:48.709122pt;}
.y2{bottom:51.200000pt;}
.y7c{bottom:59.989417pt;}
.yba{bottom:63.209700pt;}
.y84{bottom:66.752099pt;}
.yb2{bottom:69.084935pt;}
.y1{bottom:69.152000pt;}
.y7d{bottom:71.308040pt;}
.ybb{bottom:77.785513pt;}
.y7e{bottom:82.695756pt;}
.y85{bottom:89.885112pt;}
.ybc{bottom:92.360169pt;}
.yb3{bottom:93.029177pt;}
.y7f{bottom:94.011529pt;}
.y5c{bottom:101.120000pt;}
.y80{bottom:105.401383pt;}
.y4e{bottom:112.832000pt;}
.y86{bottom:113.015989pt;}
.y1b{bottom:115.872000pt;}
.yb4{bottom:116.974577pt;}
.y34{bottom:118.272000pt;}
.y51{bottom:119.200000pt;}
.ye5{bottom:128.192000pt;}
.yad{bottom:134.266667pt;}
.y87{bottom:136.220233pt;}
.y8d{bottom:138.427684pt;}
.yb5{bottom:140.918819pt;}
.ye4{bottom:143.546667pt;}
.yc1{bottom:143.597166pt;}
.y8c{bottom:145.759501pt;}
.y4d{bottom:149.626667pt;}
.yc0{bottom:151.256037pt;}
.y77{bottom:152.666667pt;}
.y8b{bottom:153.089894pt;}
.y33{bottom:155.066667pt;}
.y99{bottom:158.720000pt;}
.ye3{bottom:158.906667pt;}
.ybf{bottom:158.916064pt;}
.y88{bottom:159.352534pt;}
.y9c{bottom:161.120000pt;}
.y1a{bottom:163.386667pt;}
.yb6{bottom:164.865376pt;}
.yac{bottom:171.066667pt;}
.ye2{bottom:174.266667pt;}
.y4c{bottom:186.426667pt;}
.y76{bottom:189.466667pt;}
.ye1{bottom:189.626667pt;}
.y32{bottom:191.866667pt;}
.y57{bottom:193.000000pt;}
.y19{bottom:200.186667pt;}
.y58{bottom:204.360000pt;}
.ye0{bottom:204.826667pt;}
.yab{bottom:207.866667pt;}
.y56{bottom:214.120000pt;}
.ydf{bottom:220.186667pt;}
.y4b{bottom:223.226667pt;}
.y75{bottom:226.266667pt;}
.y31{bottom:228.666667pt;}
.y55{bottom:235.240000pt;}
.yde{bottom:235.546667pt;}
.y18{bottom:236.986667pt;}
.yaa{bottom:244.666667pt;}
.ydd{bottom:250.906667pt;}
.y4a{bottom:260.026667pt;}
.y74{bottom:263.066667pt;}
.y30{bottom:265.466667pt;}
.ydc{bottom:266.266667pt;}
.y17{bottom:273.786667pt;}
.ya9{bottom:281.466667pt;}
.ydb{bottom:281.626667pt;}
.y49{bottom:296.826667pt;}
.y73{bottom:299.906667pt;}
.y2f{bottom:302.306667pt;}
.y16{bottom:310.626667pt;}
.yda{bottom:312.226667pt;}
.yd9{bottom:327.586667pt;}
.ya8{bottom:328.546667pt;}
.y48{bottom:333.666667pt;}
.y72{bottom:336.706667pt;}
.y2e{bottom:339.106667pt;}
.yd8{bottom:342.946667pt;}
.ya7{bottom:346.946667pt;}
.y15{bottom:347.426667pt;}
.yd7{bottom:358.306667pt;}
.y47{bottom:370.466667pt;}
.y71{bottom:373.506667pt;}
.yd6{bottom:373.666667pt;}
.y2d{bottom:375.906667pt;}
.ya6{bottom:384.066667pt;}
.y14{bottom:384.226667pt;}
.yd5{bottom:388.866667pt;}
.yd4{bottom:404.226667pt;}
.y46{bottom:407.266667pt;}
.y70{bottom:410.306667pt;}
.y2c{bottom:412.706667pt;}
.yd3{bottom:419.586667pt;}
.ya5{bottom:420.866667pt;}
.y13{bottom:421.026667pt;}
.y6f{bottom:430.306667pt;}
.yd2{bottom:434.946667pt;}
.y45{bottom:444.066667pt;}
.y6e{bottom:445.346667pt;}
.y2b{bottom:449.506667pt;}
.yd1{bottom:450.306667pt;}
.ya4{bottom:457.666667pt;}
.y6d{bottom:460.546667pt;}
.yd0{bottom:465.506667pt;}
.y12{bottom:468.226667pt;}
.y6c{bottom:475.586667pt;}
.y44{bottom:480.866667pt;}
.y2a{bottom:486.306667pt;}
.y11{bottom:486.946667pt;}
.y6a{bottom:490.786667pt;}
.ya3{bottom:494.466667pt;}
.ycf{bottom:496.226667pt;}
.y68{bottom:505.826667pt;}
.yce{bottom:511.586667pt;}
.ya2{bottom:512.866667pt;}
.y43{bottom:517.666667pt;}
.y64{bottom:521.026667pt;}
.y29{bottom:523.106667pt;}
.ycd{bottom:526.946667pt;}
.y10{bottom:534.306667pt;}
.y66{bottom:534.626667pt;}
.ya1{bottom:543.773333pt;}
.y42{bottom:554.493333pt;}
.y63{bottom:556.093333pt;}
.ya0{bottom:559.293333pt;}
.y28{bottom:559.933333pt;}
.ycc{bottom:561.053333pt;}
.yf{bottom:571.133333pt;}
.y98{bottom:571.293333pt;}
.yae{bottom:571.386663pt;}
.y62{bottom:571.453333pt;}
.y41{bottom:591.293333pt;}
.y27{bottom:596.733333pt;}
.ycb{bottom:597.853333pt;}
.y61{bottom:605.853333pt;}
.yc2{bottom:607.200000pt;}
.ye{bottom:607.933333pt;}
.yc3{bottom:608.320000pt;}
.yc4{bottom:609.760000pt;}
.y60{bottom:623.613333pt;}
.yca{bottom:624.573333pt;}
.y40{bottom:628.093333pt;}
.y26{bottom:633.533333pt;}
.y5f{bottom:638.973333pt;}
.yd{bottom:644.733333pt;}
.yc9{bottom:649.853333pt;}
.y5e{bottom:654.333333pt;}
.y3f{bottom:664.893333pt;}
.y54{bottom:666.333333pt;}
.y25{bottom:670.333333pt;}
.y8e{bottom:673.440000pt;}
.yc8{bottom:675.133333pt;}
.yc{bottom:681.533333pt;}
.y78{bottom:699.186659pt;}
.yc7{bottom:700.413333pt;}
.y3e{bottom:701.693333pt;}
.y24{bottom:706.973333pt;}
.y9e{bottom:713.693333pt;}
.yb{bottom:718.333333pt;}
.y9a{bottom:729.053333pt;}
.yc6{bottom:735.773333pt;}
.y3d{bottom:738.493333pt;}
.y23{bottom:743.773333pt;}
.yc5{bottom:754.173333pt;}
.ya{bottom:755.133333pt;}
.y97{bottom:759.293333pt;}
.y3c{bottom:775.333333pt;}
.y22{bottom:780.613333pt;}
.y50{bottom:782.373333pt;}
.y92{bottom:789.280000pt;}
.y96{bottom:791.333333pt;}
.y90{bottom:792.160000pt;}
.y9{bottom:802.373333pt;}
.y3b{bottom:812.133333pt;}
.y21{bottom:817.413333pt;}
.y95{bottom:828.133333pt;}
.y8{bottom:849.733333pt;}
.y20{bottom:854.213333pt;}
.y3a{bottom:859.173333pt;}
.y94{bottom:864.933333pt;}
.y1f{bottom:891.013333pt;}
.y39{bottom:894.373333pt;}
.y7{bottom:895.653333pt;}
.y52{bottom:898.533333pt;}
.y93{bottom:901.733333pt;}
.y6{bottom:915.013333pt;}
.y38{bottom:927.333333pt;}
.y1e{bottom:927.813333pt;}
.y5{bottom:934.373333pt;}
.y37{bottom:934.693333pt;}
.y4f{bottom:938.533333pt;}
.y1d{bottom:964.613333pt;}
.y4{bottom:970.533333pt;}
.y36{bottom:975.333333pt;}
.y3{bottom:1009.413333pt;}
.y1c{bottom:1011.840000pt;}
.y35{bottom:1012.160000pt;}
.h28{height:10.217638pt;}
.h1c{height:12.197825pt;}
.h14{height:12.306667pt;}
.h1a{height:13.746667pt;}
.h17{height:13.906667pt;}
.h23{height:15.360000pt;}
.h20{height:16.160000pt;}
.h13{height:16.826667pt;}
.hb{height:17.586667pt;}
.h1d{height:24.990578pt;}
.h27{height:26.020694pt;}
.h1f{height:27.369402pt;}
.h2a{height:28.497844pt;}
.h1e{height:30.277828pt;}
.h12{height:30.426667pt;}
.h29{height:31.665931pt;}
.h16{height:42.084375pt;}
.h21{height:42.649687pt;}
.h15{height:44.941250pt;}
.h19{height:47.109375pt;}
.h18{height:48.375000pt;}
.hc{height:52.134375pt;}
.h11{height:53.535000pt;}
.h4{height:57.787500pt;}
.h2{height:58.563750pt;}
.h5{height:59.340000pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h25{height:71.524375pt;}
.h3{height:75.465000pt;}
.h8{height:82.192813pt;}
.h9{height:94.846250pt;}
.h10{height:116.020000pt;}
.he{height:116.146667pt;}
.hf{height:116.152000pt;}
.ha{height:133.746667pt;}
.h24{height:142.400000pt;}
.h1b{height:165.312441pt;}
.h26{height:173.058991pt;}
.h22{height:173.120000pt;}
.hd{height:249.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:26.400000pt;}
.w2{width:27.038667pt;}
.w6{width:27.826667pt;}
.w15{width:30.718667pt;}
.w19{width:37.746667pt;}
.wa{width:46.240000pt;}
.wc{width:46.272000pt;}
.we{width:46.386667pt;}
.wd{width:49.266667pt;}
.wf{width:50.738667pt;}
.w14{width:53.440000pt;}
.w12{width:55.040000pt;}
.w13{width:56.160000pt;}
.w11{width:56.480000pt;}
.w1e{width:57.440000pt;}
.w1f{width:59.680000pt;}
.w9{width:89.138667pt;}
.w18{width:132.352000pt;}
.w4{width:139.373333pt;}
.w8{width:139.386667pt;}
.w5{width:139.546667pt;}
.w3{width:141.625333pt;}
.w1b{width:141.773333pt;}
.w1c{width:141.786667pt;}
.w16{width:141.945333pt;}
.w17{width:151.213333pt;}
.w10{width:203.997552pt;}
.w7{width:220.173333pt;}
.w1d{width:221.071083pt;}
.w1a{width:226.293333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.358667pt;}
.x21{left:8.480000pt;}
.x26{left:9.746667pt;}
.x1f{left:11.040000pt;}
.x27{left:12.640000pt;}
.x10{left:13.906667pt;}
.x28{left:15.186667pt;}
.x31{left:16.893333pt;}
.x1c{left:18.866667pt;}
.x3c{left:25.760000pt;}
.xd{left:29.306667pt;}
.xb{left:30.430667pt;}
.x2b{left:34.721371pt;}
.x2c{left:36.644213pt;}
.x43{left:40.070863pt;}
.x2e{left:44.970597pt;}
.x8{left:49.121333pt;}
.x2a{left:62.694305pt;}
.x44{left:63.747515pt;}
.x38{left:66.106667pt;}
.x34{left:67.521333pt;}
.x35{left:70.905333pt;}
.xa{left:76.161333pt;}
.x2d{left:86.537113pt;}
.x45{left:93.528468pt;}
.x2{left:96.032000pt;}
.x16{left:97.152000pt;}
.x17{left:107.872000pt;}
.x12{left:110.106667pt;}
.x19{left:111.712000pt;}
.x5{left:117.312000pt;}
.x49{left:121.632000pt;}
.x14{left:131.240000pt;}
.x4{left:132.512000pt;}
.x15{left:133.785333pt;}
.x3e{left:138.746667pt;}
.x3d{left:140.025333pt;}
.x40{left:141.146667pt;}
.x46{left:149.440000pt;}
.x2f{left:152.160000pt;}
.x7{left:159.866667pt;}
.x3{left:179.066667pt;}
.x1b{left:196.520000pt;}
.x36{left:209.480000pt;}
.x13{left:212.026667pt;}
.xc{left:217.800000pt;}
.x3b{left:228.213333pt;}
.x18{left:248.226667pt;}
.x1a{left:271.906667pt;}
.x41{left:273.666667pt;}
.x1d{left:285.666667pt;}
.x33{left:291.680000pt;}
.x32{left:293.760000pt;}
.x48{left:298.080000pt;}
.x1e{left:331.906667pt;}
.x3f{left:351.266667pt;}
.x6{left:354.946667pt;}
.xe{left:357.186667pt;}
.x37{left:360.706667pt;}
.x20{left:378.146667pt;}
.x22{left:404.546667pt;}
.x30{left:431.520000pt;}
.x47{left:432.480000pt;}
.x23{left:450.826667pt;}
.x39{left:493.066667pt;}
.xf{left:496.746667pt;}
.x24{left:500.106667pt;}
.x11{left:524.586667pt;}
.x3a{left:530.826667pt;}
.x29{left:532.599996pt;}
.x42{left:537.933330pt;}
.x25{left:546.506667pt;}
.x1{left:690.533333pt;}
}




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