
    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_71c07ea06b49f664764b5e8b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_bfd916822679427be16f94ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_9a166ec51cf17df5888958d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.335449;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_8e7aef18f2268d45fd421ad4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_288a47b46a15533ddc0563f7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_2cc325f87e8abdb389388edf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944336;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_830852bd0823ca3f1258a5a0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.089200px;}
.v1{vertical-align:29.887200px;}
.ls12{letter-spacing:-2.268000px;}
.lse{letter-spacing:-2.070000px;}
.ls3{letter-spacing:-1.215000px;}
.ls9{letter-spacing:-0.855000px;}
.lsc{letter-spacing:-0.627000px;}
.ls10{letter-spacing:-0.570000px;}
.lsd{letter-spacing:-0.243000px;}
.lsf{letter-spacing:-0.171000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls4{letter-spacing:2.400000px;}
.lsa{letter-spacing:2.829000px;}
.ls5{letter-spacing:4.125000px;}
.ls8{letter-spacing:4.200000px;}
.lsb{letter-spacing:4.650000px;}
.ls6{letter-spacing:6.000000px;}
.ls7{letter-spacing:6.300000px;}
.ls2{letter-spacing:7.260000px;}
.ls11{letter-spacing:8.820000px;}
.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:-26.523000px;}
.wsb{word-spacing:-25.725000px;}
.ws3{word-spacing:-25.200000px;}
.ws15{word-spacing:-21.861000px;}
.ws0{word-spacing:-21.546000px;}
.wse{word-spacing:-19.389000px;}
.ws4{word-spacing:-18.102000px;}
.ws16{word-spacing:-17.703000px;}
.wsa{word-spacing:-17.043000px;}
.ws14{word-spacing:-15.561000px;}
.wsf{word-spacing:-14.973000px;}
.ws19{word-spacing:-14.820000px;}
.ws17{word-spacing:-13.293000px;}
.ws9{word-spacing:-11.303787px;}
.ws2{word-spacing:-7.260000px;}
.ws18{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.ws7{word-spacing:-4.200000px;}
.ws5{word-spacing:-2.400000px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.171000px;}
.wsd{word-spacing:0.243000px;}
.ws11{word-spacing:0.570000px;}
.wsc{word-spacing:0.627000px;}
.ws8{word-spacing:0.855000px;}
.ws12{word-spacing:1.215000px;}
._23{margin-left:-18.536400px;}
._c{margin-left:-9.291600px;}
._6{margin-left:-7.842000px;}
._d{margin-left:-6.015600px;}
._b{margin-left:-4.156800px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._4{width:1.562400px;}
._a{width:2.626800px;}
._e{width:3.858000px;}
._5{width:5.436000px;}
._7{width:7.260000px;}
._8{width:8.370000px;}
._9{width:9.702000px;}
._13{width:10.715700px;}
._1e{width:12.098400px;}
._24{width:14.089800px;}
._1d{width:15.689700px;}
._12{width:17.172000px;}
._1b{width:20.672700px;}
._15{width:22.924800px;}
._f{width:24.392400px;}
._10{width:43.445160px;}
._1c{width:456.775200px;}
._16{width:459.399600px;}
._11{width:460.653000px;}
._22{width:540.900000px;}
._21{width:559.500000px;}
._0{width:578.400000px;}
._19{width:586.788000px;}
._20{width:602.400000px;}
._1a{width:653.400000px;}
._18{width:663.900000px;}
._17{width:1016.617200px;}
._3{width:1019.737200px;}
._14{width:1023.787200px;}
._1f{width:1025.767200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fsc{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y68{bottom:106.165350px;}
.y122{bottom:106.234350px;}
.y31{bottom:106.253850px;}
.ye7{bottom:106.296300px;}
.y42{bottom:106.296450px;}
.y98{bottom:106.301400px;}
.y79{bottom:106.326750px;}
.yc6{bottom:106.365600px;}
.y165{bottom:106.544100px;}
.y100{bottom:109.294800px;}
.y1e{bottom:109.294950px;}
.ye6{bottom:126.544800px;}
.y41{bottom:126.544950px;}
.y67{bottom:126.589350px;}
.y78{bottom:126.837000px;}
.yc5{bottom:127.169100px;}
.y164{bottom:127.349850px;}
.y1d{bottom:127.795500px;}
.y144{bottom:129.170700px;}
.y97{bottom:129.209400px;}
.y30{bottom:129.644850px;}
.y121{bottom:129.659850px;}
.y1c{bottom:145.048500px;}
.y66{bottom:147.013350px;}
.y77{bottom:147.347250px;}
.yc4{bottom:147.972600px;}
.y163{bottom:148.155600px;}
.y143{bottom:151.906200px;}
.y2f{bottom:153.035850px;}
.y120{bottom:153.085350px;}
.ya9{bottom:153.351450px;}
.yff{bottom:153.357900px;}
.y1b{bottom:165.297000px;}
.y65{bottom:167.437350px;}
.y76{bottom:167.857500px;}
.yc3{bottom:168.776100px;}
.ye5{bottom:170.550750px;}
.y40{bottom:170.573550px;}
.y96{bottom:173.379450px;}
.yfe{bottom:174.144150px;}
.ya8{bottom:174.189450px;}
.y142{bottom:174.641700px;}
.y2e{bottom:176.426850px;}
.y11f{bottom:176.510850px;}
.y162{bottom:177.466350px;}
.y64{bottom:187.861350px;}
.y75{bottom:188.367750px;}
.yc2{bottom:189.579600px;}
.ye4{bottom:191.337000px;}
.y3f{bottom:192.843300px;}
.yfd{bottom:194.930400px;}
.ya7{bottom:195.027450px;}
.y141{bottom:197.377200px;}
.y161{bottom:198.272100px;}
.y2d{bottom:199.817850px;}
.y11e{bottom:199.936350px;}
.y63{bottom:208.285350px;}
.y74{bottom:208.878000px;}
.yc1{bottom:210.383100px;}
.ye3{bottom:212.123250px;}
.y3e{bottom:215.113050px;}
.yfc{bottom:215.716650px;}
.ya6{bottom:215.865450px;}
.y140{bottom:220.112700px;}
.y2c{bottom:223.208850px;}
.y11d{bottom:223.361850px;}
.y160{bottom:227.582850px;}
.y62{bottom:228.709350px;}
.y73{bottom:229.388250px;}
.y1a{bottom:230.718000px;}
.yc0{bottom:231.186600px;}
.ye2{bottom:232.909500px;}
.yfb{bottom:236.502900px;}
.ya5{bottom:236.703450px;}
.y3d{bottom:237.382800px;}
.y95{bottom:238.369350px;}
.y13f{bottom:242.848200px;}
.y2b{bottom:246.599850px;}
.y11c{bottom:246.787350px;}
.y15f{bottom:248.388600px;}
.y61{bottom:249.133350px;}
.ybf{bottom:251.990100px;}
.y19{bottom:252.177000px;}
.ye1{bottom:253.695750px;}
.yfa{bottom:257.289150px;}
.ya4{bottom:257.541450px;}
.y3c{bottom:259.652550px;}
.y94{bottom:261.277350px;}
.y13e{bottom:265.583700px;}
.y60{bottom:269.557350px;}
.y2a{bottom:269.990850px;}
.y11b{bottom:270.212850px;}
.y72{bottom:270.412650px;}
.ybe{bottom:272.793600px;}
.y18{bottom:273.636000px;}
.ye0{bottom:274.482000px;}
.y15e{bottom:277.699350px;}
.yf9{bottom:278.075400px;}
.ya3{bottom:278.379450px;}
.y3b{bottom:281.922300px;}
.y93{bottom:284.185350px;}
.y13d{bottom:288.319200px;}
.y71{bottom:290.932650px;}
.y29{bottom:293.381850px;}
.y11a{bottom:293.638350px;}
.y17{bottom:295.095000px;}
.ydf{bottom:295.268250px;}
.y15d{bottom:298.505100px;}
.yf8{bottom:298.861650px;}
.ya2{bottom:299.217450px;}
.y3a{bottom:304.192050px;}
.y92{bottom:307.093350px;}
.y5f{bottom:310.405350px;}
.y13c{bottom:311.054700px;}
.y70{bottom:311.442300px;}
.ybd{bottom:314.417100px;}
.yde{bottom:316.054500px;}
.y16{bottom:316.554000px;}
.y28{bottom:316.772850px;}
.y119{bottom:317.063850px;}
.yf7{bottom:319.647900px;}
.ya1{bottom:320.055450px;}
.y39{bottom:326.461800px;}
.y15c{bottom:327.815850px;}
.y91{bottom:330.001350px;}
.y5e{bottom:330.829350px;}
.y13b{bottom:333.790200px;}
.ybc{bottom:335.228850px;}
.ydd{bottom:336.840750px;}
.y15{bottom:338.013000px;}
.y27{bottom:340.163850px;}
.yf6{bottom:340.439100px;}
.y118{bottom:340.489350px;}
.ya0{bottom:340.893450px;}
.y15b{bottom:348.621600px;}
.y38{bottom:348.731550px;}
.y5d{bottom:351.253350px;}
.y90{bottom:352.909350px;}
.y13a{bottom:356.525700px;}
.y14{bottom:359.472000px;}
.yf5{bottom:361.230450px;}
.y9f{bottom:361.731450px;}
.y26{bottom:363.554850px;}
.y117{bottom:363.914850px;}
.y15a{bottom:369.427350px;}
.y5c{bottom:371.677350px;}
.y8f{bottom:375.817350px;}
.ydc{bottom:378.877050px;}
.y139{bottom:379.261200px;}
.y13{bottom:380.931000px;}
.yf4{bottom:382.021650px;}
.y9e{bottom:382.569450px;}
.y25{bottom:386.945850px;}
.y116{bottom:387.340350px;}
.y5b{bottom:392.101350px;}
.y37{bottom:393.273150px;}
.y8e{bottom:398.725350px;}
.y159{bottom:398.738100px;}
.y138{bottom:401.996700px;}
.y12{bottom:402.390000px;}
.yf3{bottom:402.827850px;}
.ydb{bottom:403.420050px;}
.y24{bottom:410.336850px;}
.y115{bottom:410.765850px;}
.y5a{bottom:412.525350px;}
.y36{bottom:415.542900px;}
.y158{bottom:419.543850px;}
.y8d{bottom:421.633350px;}
.yf2{bottom:423.614100px;}
.y11{bottom:423.820950px;}
.y9d{bottom:424.258950px;}
.y137{bottom:424.732200px;}
.y59{bottom:432.949350px;}
.y23{bottom:433.727850px;}
.y114{bottom:434.191350px;}
.y35{bottom:437.812650px;}
.y157{bottom:440.349600px;}
.yf1{bottom:444.400350px;}
.y8c{bottom:444.541350px;}
.y9c{bottom:445.093950px;}
.y10{bottom:445.279950px;}
.y136{bottom:447.467700px;}
.y58{bottom:453.373350px;}
.y22{bottom:457.118850px;}
.y113{bottom:457.616850px;}
.yf0{bottom:465.186600px;}
.y9b{bottom:465.935850px;}
.yda{bottom:466.190100px;}
.yf{bottom:466.738950px;}
.y8b{bottom:467.449350px;}
.y156{bottom:469.660350px;}
.y135{bottom:470.203200px;}
.y57{bottom:473.797350px;}
.y112{bottom:481.042350px;}
.y34{bottom:481.343250px;}
.yef{bottom:485.972850px;}
.yd9{bottom:486.976350px;}
.ye{bottom:488.197950px;}
.y8a{bottom:490.357350px;}
.y155{bottom:490.466100px;}
.y134{bottom:492.938700px;}
.y56{bottom:494.221350px;}
.y21{bottom:501.766650px;}
.y111{bottom:504.467850px;}
.ybb{bottom:507.417600px;}
.yd8{bottom:507.762600px;}
.y6f{bottom:508.362300px;}
.yd{bottom:509.656950px;}
.y154{bottom:511.271850px;}
.y89{bottom:513.265350px;}
.y55{bottom:514.645350px;}
.y133{bottom:515.674200px;}
.y110{bottom:527.893350px;}
.yee{bottom:528.023850px;}
.yba{bottom:528.221100px;}
.yd7{bottom:528.548850px;}
.yc{bottom:531.115950px;}
.y54{bottom:535.069350px;}
.y88{bottom:536.173350px;}
.y132{bottom:538.409700px;}
.y153{bottom:540.582600px;}
.yb9{bottom:549.024600px;}
.yd6{bottom:549.335100px;}
.y10f{bottom:551.318850px;}
.y53{bottom:555.493350px;}
.y87{bottom:559.081350px;}
.y131{bottom:561.145200px;}
.y152{bottom:561.388350px;}
.y33{bottom:567.902550px;}
.yb8{bottom:569.828100px;}
.yd5{bottom:570.121350px;}
.yb{bottom:573.829200px;}
.y10e{bottom:574.744350px;}
.y52{bottom:575.917350px;}
.y86{bottom:581.989350px;}
.y151{bottom:582.194100px;}
.y130{bottom:583.880700px;}
.y20{bottom:590.560350px;}
.yb7{bottom:590.631600px;}
.yed{bottom:590.862750px;}
.yd4{bottom:590.907600px;}
.y51{bottom:596.341350px;}
.y10d{bottom:598.169850px;}
.y85{bottom:604.897350px;}
.y12f{bottom:606.616200px;}
.yb6{bottom:611.435100px;}
.y150{bottom:611.504850px;}
.yec{bottom:611.649000px;}
.yd3{bottom:611.693850px;}
.y50{bottom:616.765350px;}
.y10c{bottom:621.595350px;}
.y84{bottom:627.805350px;}
.y12e{bottom:629.351700px;}
.yb5{bottom:632.238600px;}
.y14f{bottom:632.310600px;}
.yeb{bottom:632.435250px;}
.y4f{bottom:637.189350px;}
.ya{bottom:637.319400px;}
.y10b{bottom:645.020850px;}
.y83{bottom:650.713350px;}
.y12d{bottom:652.087200px;}
.yb4{bottom:653.042100px;}
.yea{bottom:653.221500px;}
.yd2{bottom:653.266350px;}
.y9a{bottom:655.601850px;}
.y4e{bottom:657.613350px;}
.y14e{bottom:661.621350px;}
.y10a{bottom:668.446350px;}
.y9{bottom:670.016400px;}
.y16e{bottom:670.431150px;}
.yb3{bottom:673.845600px;}
.ye9{bottom:674.007750px;}
.yd1{bottom:674.052600px;}
.y12c{bottom:674.822700px;}
.y4d{bottom:678.037350px;}
.y14d{bottom:682.427100px;}
.y16d{bottom:690.681150px;}
.y109{bottom:691.871850px;}
.yb2{bottom:694.649100px;}
.ye8{bottom:694.794000px;}
.yd0{bottom:694.838850px;}
.y82{bottom:696.529350px;}
.y12b{bottom:697.558200px;}
.y4c{bottom:698.461350px;}
.y8{bottom:702.713400px;}
.y14c{bottom:703.232850px;}
.y16c{bottom:710.931150px;}
.y108{bottom:715.297350px;}
.yb1{bottom:715.452600px;}
.ycf{bottom:715.625100px;}
.y81{bottom:719.437350px;}
.y12a{bottom:720.293700px;}
.y16b{bottom:731.181150px;}
.y14b{bottom:732.543600px;}
.y7{bottom:735.410400px;}
.yb0{bottom:736.256100px;}
.yce{bottom:736.411350px;}
.y107{bottom:738.722850px;}
.y4b{bottom:739.309350px;}
.y80{bottom:742.345350px;}
.y129{bottom:743.029200px;}
.y14a{bottom:753.349350px;}
.yaf{bottom:757.059600px;}
.ycd{bottom:757.197600px;}
.y4a{bottom:759.733350px;}
.y106{bottom:762.148350px;}
.y16a{bottom:764.181150px;}
.y7f{bottom:765.253350px;}
.y128{bottom:765.764700px;}
.yae{bottom:777.863100px;}
.ycc{bottom:777.983850px;}
.y6e{bottom:779.639850px;}
.y49{bottom:780.157350px;}
.y149{bottom:782.660100px;}
.y105{bottom:785.573850px;}
.y7e{bottom:788.161350px;}
.y127{bottom:788.500200px;}
.y6{bottom:797.885550px;}
.ycb{bottom:798.770100px;}
.y6d{bottom:800.150100px;}
.y48{bottom:800.581350px;}
.y148{bottom:803.465850px;}
.y169{bottom:805.670850px;}
.y104{bottom:808.999350px;}
.y7d{bottom:811.069350px;}
.y126{bottom:811.235700px;}
.yad{bottom:819.487350px;}
.yca{bottom:819.556350px;}
.y6c{bottom:820.660350px;}
.y47{bottom:821.005350px;}
.y147{bottom:824.271600px;}
.y168{bottom:825.925350px;}
.y5{bottom:828.590550px;}
.y103{bottom:832.424850px;}
.y125{bottom:833.971200px;}
.y7c{bottom:833.977350px;}
.yac{bottom:840.290850px;}
.yc9{bottom:840.342600px;}
.y6b{bottom:841.170600px;}
.y46{bottom:841.429350px;}
.y167{bottom:846.179850px;}
.y4{bottom:850.790550px;}
.y146{bottom:853.582350px;}
.y102{bottom:855.850350px;}
.y124{bottom:856.706700px;}
.y7b{bottom:856.885350px;}
.yab{bottom:861.094350px;}
.yc8{bottom:861.128850px;}
.y6a{bottom:861.680850px;}
.y45{bottom:861.853350px;}
.y145{bottom:874.388100px;}
.y166{bottom:874.939350px;}
.y101{bottom:879.275850px;}
.y7a{bottom:879.793350px;}
.y3{bottom:881.495550px;}
.y99{bottom:881.863350px;}
.yaa{bottom:881.897850px;}
.yc7{bottom:881.915100px;}
.y69{bottom:882.191100px;}
.y44{bottom:882.277350px;}
.y123{bottom:900.706200px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:948.189000px;}
.y32{bottom:966.189000px;}
.h9{height:33.870539px;}
.hb{height:40.757812px;}
.ha{height:45.852539px;}
.he{height:46.236750px;}
.hd{height:47.988281px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h7{height:58.589355px;}
.h8{height:58.701555px;}
.h2{height:63.684082px;}
.h10{height:64.687500px;}
.hf{height:67.921875px;}
.h6{height:68.778809px;}
.hc{height:74.390625px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:80.921100px;}
.x6{left:82.214250px;}
.x5{left:83.630700px;}
.x1{left:85.039350px;}
.xb{left:102.197100px;}
.x7{left:104.217300px;}
.x4{left:105.952200px;}
.x8{left:135.067350px;}
.x3{left:212.319150px;}
.x2{left:233.439750px;}
.x9{left:246.901350px;}
.xa{left:291.889350px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.190400pt;}
.v1{vertical-align:26.566400pt;}
.ls12{letter-spacing:-2.016000pt;}
.lse{letter-spacing:-1.840000pt;}
.ls3{letter-spacing:-1.080000pt;}
.ls9{letter-spacing:-0.760000pt;}
.lsc{letter-spacing:-0.557333pt;}
.ls10{letter-spacing:-0.506667pt;}
.lsd{letter-spacing:-0.216000pt;}
.lsf{letter-spacing:-0.152000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls4{letter-spacing:2.133333pt;}
.lsa{letter-spacing:2.514667pt;}
.ls5{letter-spacing:3.666667pt;}
.ls8{letter-spacing:3.733333pt;}
.lsb{letter-spacing:4.133333pt;}
.ls6{letter-spacing:5.333333pt;}
.ls7{letter-spacing:5.600000pt;}
.ls2{letter-spacing:6.453333pt;}
.ls11{letter-spacing:7.840000pt;}
.ws13{word-spacing:-23.576000pt;}
.wsb{word-spacing:-22.866667pt;}
.ws3{word-spacing:-22.400000pt;}
.ws15{word-spacing:-19.432000pt;}
.ws0{word-spacing:-19.152000pt;}
.wse{word-spacing:-17.234667pt;}
.ws4{word-spacing:-16.090667pt;}
.ws16{word-spacing:-15.736000pt;}
.wsa{word-spacing:-15.149333pt;}
.ws14{word-spacing:-13.832000pt;}
.wsf{word-spacing:-13.309333pt;}
.ws19{word-spacing:-13.173333pt;}
.ws17{word-spacing:-11.816000pt;}
.ws9{word-spacing:-10.047811pt;}
.ws2{word-spacing:-6.453333pt;}
.ws18{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws7{word-spacing:-3.733333pt;}
.ws5{word-spacing:-2.133333pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.152000pt;}
.wsd{word-spacing:0.216000pt;}
.ws11{word-spacing:0.506667pt;}
.wsc{word-spacing:0.557333pt;}
.ws8{word-spacing:0.760000pt;}
.ws12{word-spacing:1.080000pt;}
._23{margin-left:-16.476800pt;}
._c{margin-left:-8.259200pt;}
._6{margin-left:-6.970667pt;}
._d{margin-left:-5.347200pt;}
._b{margin-left:-3.694933pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._4{width:1.388800pt;}
._a{width:2.334933pt;}
._e{width:3.429333pt;}
._5{width:4.832000pt;}
._7{width:6.453333pt;}
._8{width:7.440000pt;}
._9{width:8.624000pt;}
._13{width:9.525067pt;}
._1e{width:10.754133pt;}
._24{width:12.524267pt;}
._1d{width:13.946400pt;}
._12{width:15.264000pt;}
._1b{width:18.375733pt;}
._15{width:20.377600pt;}
._f{width:21.682133pt;}
._10{width:38.617920pt;}
._1c{width:406.022400pt;}
._16{width:408.355200pt;}
._11{width:409.469333pt;}
._22{width:480.800000pt;}
._21{width:497.333333pt;}
._0{width:514.133333pt;}
._19{width:521.589333pt;}
._20{width:535.466667pt;}
._1a{width:580.800000pt;}
._18{width:590.133333pt;}
._17{width:903.659733pt;}
._3{width:906.433067pt;}
._14{width:910.033067pt;}
._1f{width:911.793067pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fsc{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y68{bottom:94.369200pt;}
.y122{bottom:94.430533pt;}
.y31{bottom:94.447867pt;}
.ye7{bottom:94.485600pt;}
.y42{bottom:94.485733pt;}
.y98{bottom:94.490133pt;}
.y79{bottom:94.512667pt;}
.yc6{bottom:94.547200pt;}
.y165{bottom:94.705867pt;}
.y100{bottom:97.150933pt;}
.y1e{bottom:97.151067pt;}
.ye6{bottom:112.484267pt;}
.y41{bottom:112.484400pt;}
.y67{bottom:112.523867pt;}
.y78{bottom:112.744000pt;}
.yc5{bottom:113.039200pt;}
.y164{bottom:113.199867pt;}
.y1d{bottom:113.596000pt;}
.y144{bottom:114.818400pt;}
.y97{bottom:114.852800pt;}
.y30{bottom:115.239867pt;}
.y121{bottom:115.253200pt;}
.y1c{bottom:128.932000pt;}
.y66{bottom:130.678533pt;}
.y77{bottom:130.975333pt;}
.yc4{bottom:131.531200pt;}
.y163{bottom:131.693867pt;}
.y143{bottom:135.027733pt;}
.y2f{bottom:136.031867pt;}
.y120{bottom:136.075867pt;}
.ya9{bottom:136.312400pt;}
.yff{bottom:136.318133pt;}
.y1b{bottom:146.930667pt;}
.y65{bottom:148.833200pt;}
.y76{bottom:149.206667pt;}
.yc3{bottom:150.023200pt;}
.ye5{bottom:151.600667pt;}
.y40{bottom:151.620933pt;}
.y96{bottom:154.115067pt;}
.yfe{bottom:154.794800pt;}
.ya8{bottom:154.835067pt;}
.y142{bottom:155.237067pt;}
.y2e{bottom:156.823867pt;}
.y11f{bottom:156.898533pt;}
.y162{bottom:157.747867pt;}
.y64{bottom:166.987867pt;}
.y75{bottom:167.438000pt;}
.yc2{bottom:168.515200pt;}
.ye4{bottom:170.077333pt;}
.y3f{bottom:171.416267pt;}
.yfd{bottom:173.271467pt;}
.ya7{bottom:173.357733pt;}
.y141{bottom:175.446400pt;}
.y161{bottom:176.241867pt;}
.y2d{bottom:177.615867pt;}
.y11e{bottom:177.721200pt;}
.y63{bottom:185.142533pt;}
.y74{bottom:185.669333pt;}
.yc1{bottom:187.007200pt;}
.ye3{bottom:188.554000pt;}
.y3e{bottom:191.211600pt;}
.yfc{bottom:191.748133pt;}
.ya6{bottom:191.880400pt;}
.y140{bottom:195.655733pt;}
.y2c{bottom:198.407867pt;}
.y11d{bottom:198.543867pt;}
.y160{bottom:202.295867pt;}
.y62{bottom:203.297200pt;}
.y73{bottom:203.900667pt;}
.y1a{bottom:205.082667pt;}
.yc0{bottom:205.499200pt;}
.ye2{bottom:207.030667pt;}
.yfb{bottom:210.224800pt;}
.ya5{bottom:210.403067pt;}
.y3d{bottom:211.006933pt;}
.y95{bottom:211.883867pt;}
.y13f{bottom:215.865067pt;}
.y2b{bottom:219.199867pt;}
.y11c{bottom:219.366533pt;}
.y15f{bottom:220.789867pt;}
.y61{bottom:221.451867pt;}
.ybf{bottom:223.991200pt;}
.y19{bottom:224.157333pt;}
.ye1{bottom:225.507333pt;}
.yfa{bottom:228.701467pt;}
.ya4{bottom:228.925733pt;}
.y3c{bottom:230.802267pt;}
.y94{bottom:232.246533pt;}
.y13e{bottom:236.074400pt;}
.y60{bottom:239.606533pt;}
.y2a{bottom:239.991867pt;}
.y11b{bottom:240.189200pt;}
.y72{bottom:240.366800pt;}
.ybe{bottom:242.483200pt;}
.y18{bottom:243.232000pt;}
.ye0{bottom:243.984000pt;}
.y15e{bottom:246.843867pt;}
.yf9{bottom:247.178133pt;}
.ya3{bottom:247.448400pt;}
.y3b{bottom:250.597600pt;}
.y93{bottom:252.609200pt;}
.y13d{bottom:256.283733pt;}
.y71{bottom:258.606800pt;}
.y29{bottom:260.783867pt;}
.y11a{bottom:261.011867pt;}
.y17{bottom:262.306667pt;}
.ydf{bottom:262.460667pt;}
.y15d{bottom:265.337867pt;}
.yf8{bottom:265.654800pt;}
.ya2{bottom:265.971067pt;}
.y3a{bottom:270.392933pt;}
.y92{bottom:272.971867pt;}
.y5f{bottom:275.915867pt;}
.y13c{bottom:276.493067pt;}
.y70{bottom:276.837600pt;}
.ybd{bottom:279.481867pt;}
.yde{bottom:280.937333pt;}
.y16{bottom:281.381333pt;}
.y28{bottom:281.575867pt;}
.y119{bottom:281.834533pt;}
.yf7{bottom:284.131467pt;}
.ya1{bottom:284.493733pt;}
.y39{bottom:290.188267pt;}
.y15c{bottom:291.391867pt;}
.y91{bottom:293.334533pt;}
.y5e{bottom:294.070533pt;}
.y13b{bottom:296.702400pt;}
.ybc{bottom:297.981200pt;}
.ydd{bottom:299.414000pt;}
.y15{bottom:300.456000pt;}
.y27{bottom:302.367867pt;}
.yf6{bottom:302.612533pt;}
.y118{bottom:302.657200pt;}
.ya0{bottom:303.016400pt;}
.y15b{bottom:309.885867pt;}
.y38{bottom:309.983600pt;}
.y5d{bottom:312.225200pt;}
.y90{bottom:313.697200pt;}
.y13a{bottom:316.911733pt;}
.y14{bottom:319.530667pt;}
.yf5{bottom:321.093733pt;}
.y9f{bottom:321.539067pt;}
.y26{bottom:323.159867pt;}
.y117{bottom:323.479867pt;}
.y15a{bottom:328.379867pt;}
.y5c{bottom:330.379867pt;}
.y8f{bottom:334.059867pt;}
.ydc{bottom:336.779600pt;}
.y139{bottom:337.121067pt;}
.y13{bottom:338.605333pt;}
.yf4{bottom:339.574800pt;}
.y9e{bottom:340.061733pt;}
.y25{bottom:343.951867pt;}
.y116{bottom:344.302533pt;}
.y5b{bottom:348.534533pt;}
.y37{bottom:349.576133pt;}
.y8e{bottom:354.422533pt;}
.y159{bottom:354.433867pt;}
.y138{bottom:357.330400pt;}
.y12{bottom:357.680000pt;}
.yf3{bottom:358.069200pt;}
.ydb{bottom:358.595600pt;}
.y24{bottom:364.743867pt;}
.y115{bottom:365.125200pt;}
.y5a{bottom:366.689200pt;}
.y36{bottom:369.371467pt;}
.y158{bottom:372.927867pt;}
.y8d{bottom:374.785200pt;}
.yf2{bottom:376.545867pt;}
.y11{bottom:376.729733pt;}
.y9d{bottom:377.119067pt;}
.y137{bottom:377.539733pt;}
.y59{bottom:384.843867pt;}
.y23{bottom:385.535867pt;}
.y114{bottom:385.947867pt;}
.y35{bottom:389.166800pt;}
.y157{bottom:391.421867pt;}
.yf1{bottom:395.022533pt;}
.y8c{bottom:395.147867pt;}
.y9c{bottom:395.639067pt;}
.y10{bottom:395.804400pt;}
.y136{bottom:397.749067pt;}
.y58{bottom:402.998533pt;}
.y22{bottom:406.327867pt;}
.y113{bottom:406.770533pt;}
.yf0{bottom:413.499200pt;}
.y9b{bottom:414.165200pt;}
.yda{bottom:414.391200pt;}
.yf{bottom:414.879067pt;}
.y8b{bottom:415.510533pt;}
.y156{bottom:417.475867pt;}
.y135{bottom:417.958400pt;}
.y57{bottom:421.153200pt;}
.y112{bottom:427.593200pt;}
.y34{bottom:427.860667pt;}
.yef{bottom:431.975867pt;}
.yd9{bottom:432.867867pt;}
.ye{bottom:433.953733pt;}
.y8a{bottom:435.873200pt;}
.y155{bottom:435.969867pt;}
.y134{bottom:438.167733pt;}
.y56{bottom:439.307867pt;}
.y21{bottom:446.014800pt;}
.y111{bottom:448.415867pt;}
.ybb{bottom:451.037867pt;}
.yd8{bottom:451.344533pt;}
.y6f{bottom:451.877600pt;}
.yd{bottom:453.028400pt;}
.y154{bottom:454.463867pt;}
.y89{bottom:456.235867pt;}
.y55{bottom:457.462533pt;}
.y133{bottom:458.377067pt;}
.y110{bottom:469.238533pt;}
.yee{bottom:469.354533pt;}
.yba{bottom:469.529867pt;}
.yd7{bottom:469.821200pt;}
.yc{bottom:472.103067pt;}
.y54{bottom:475.617200pt;}
.y88{bottom:476.598533pt;}
.y132{bottom:478.586400pt;}
.y153{bottom:480.517867pt;}
.yb9{bottom:488.021867pt;}
.yd6{bottom:488.297867pt;}
.y10f{bottom:490.061200pt;}
.y53{bottom:493.771867pt;}
.y87{bottom:496.961200pt;}
.y131{bottom:498.795733pt;}
.y152{bottom:499.011867pt;}
.y33{bottom:504.802267pt;}
.yb8{bottom:506.513867pt;}
.yd5{bottom:506.774533pt;}
.yb{bottom:510.070400pt;}
.y10e{bottom:510.883867pt;}
.y52{bottom:511.926533pt;}
.y86{bottom:517.323867pt;}
.y151{bottom:517.505867pt;}
.y130{bottom:519.005067pt;}
.y20{bottom:524.942533pt;}
.yb7{bottom:525.005867pt;}
.yed{bottom:525.211333pt;}
.yd4{bottom:525.251200pt;}
.y51{bottom:530.081200pt;}
.y10d{bottom:531.706533pt;}
.y85{bottom:537.686533pt;}
.y12f{bottom:539.214400pt;}
.yb6{bottom:543.497867pt;}
.y150{bottom:543.559867pt;}
.yec{bottom:543.688000pt;}
.yd3{bottom:543.727867pt;}
.y50{bottom:548.235867pt;}
.y10c{bottom:552.529200pt;}
.y84{bottom:558.049200pt;}
.y12e{bottom:559.423733pt;}
.yb5{bottom:561.989867pt;}
.y14f{bottom:562.053867pt;}
.yeb{bottom:562.164667pt;}
.y4f{bottom:566.390533pt;}
.ya{bottom:566.506133pt;}
.y10b{bottom:573.351867pt;}
.y83{bottom:578.411867pt;}
.y12d{bottom:579.633067pt;}
.yb4{bottom:580.481867pt;}
.yea{bottom:580.641333pt;}
.yd2{bottom:580.681200pt;}
.y9a{bottom:582.757200pt;}
.y4e{bottom:584.545200pt;}
.y14e{bottom:588.107867pt;}
.y10a{bottom:594.174533pt;}
.y9{bottom:595.570133pt;}
.y16e{bottom:595.938800pt;}
.yb3{bottom:598.973867pt;}
.ye9{bottom:599.118000pt;}
.yd1{bottom:599.157867pt;}
.y12c{bottom:599.842400pt;}
.y4d{bottom:602.699867pt;}
.y14d{bottom:606.601867pt;}
.y16d{bottom:613.938800pt;}
.y109{bottom:614.997200pt;}
.yb2{bottom:617.465867pt;}
.ye8{bottom:617.594667pt;}
.yd0{bottom:617.634533pt;}
.y82{bottom:619.137200pt;}
.y12b{bottom:620.051733pt;}
.y4c{bottom:620.854533pt;}
.y8{bottom:624.634133pt;}
.y14c{bottom:625.095867pt;}
.y16c{bottom:631.938800pt;}
.y108{bottom:635.819867pt;}
.yb1{bottom:635.957867pt;}
.ycf{bottom:636.111200pt;}
.y81{bottom:639.499867pt;}
.y12a{bottom:640.261067pt;}
.y16b{bottom:649.938800pt;}
.y14b{bottom:651.149867pt;}
.y7{bottom:653.698133pt;}
.yb0{bottom:654.449867pt;}
.yce{bottom:654.587867pt;}
.y107{bottom:656.642533pt;}
.y4b{bottom:657.163867pt;}
.y80{bottom:659.862533pt;}
.y129{bottom:660.470400pt;}
.y14a{bottom:669.643867pt;}
.yaf{bottom:672.941867pt;}
.ycd{bottom:673.064533pt;}
.y4a{bottom:675.318533pt;}
.y106{bottom:677.465200pt;}
.y16a{bottom:679.272133pt;}
.y7f{bottom:680.225200pt;}
.y128{bottom:680.679733pt;}
.yae{bottom:691.433867pt;}
.ycc{bottom:691.541200pt;}
.y6e{bottom:693.013200pt;}
.y49{bottom:693.473200pt;}
.y149{bottom:695.697867pt;}
.y105{bottom:698.287867pt;}
.y7e{bottom:700.587867pt;}
.y127{bottom:700.889067pt;}
.y6{bottom:709.231600pt;}
.ycb{bottom:710.017867pt;}
.y6d{bottom:711.244533pt;}
.y48{bottom:711.627867pt;}
.y148{bottom:714.191867pt;}
.y169{bottom:716.151867pt;}
.y104{bottom:719.110533pt;}
.y7d{bottom:720.950533pt;}
.y126{bottom:721.098400pt;}
.yad{bottom:728.433200pt;}
.yca{bottom:728.494533pt;}
.y6c{bottom:729.475867pt;}
.y47{bottom:729.782533pt;}
.y147{bottom:732.685867pt;}
.y168{bottom:734.155867pt;}
.y5{bottom:736.524933pt;}
.y103{bottom:739.933200pt;}
.y125{bottom:741.307733pt;}
.y7c{bottom:741.313200pt;}
.yac{bottom:746.925200pt;}
.yc9{bottom:746.971200pt;}
.y6b{bottom:747.707200pt;}
.y46{bottom:747.937200pt;}
.y167{bottom:752.159867pt;}
.y4{bottom:756.258267pt;}
.y146{bottom:758.739867pt;}
.y102{bottom:760.755867pt;}
.y124{bottom:761.517067pt;}
.y7b{bottom:761.675867pt;}
.yab{bottom:765.417200pt;}
.yc8{bottom:765.447867pt;}
.y6a{bottom:765.938533pt;}
.y45{bottom:766.091867pt;}
.y145{bottom:777.233867pt;}
.y166{bottom:777.723867pt;}
.y101{bottom:781.578533pt;}
.y7a{bottom:782.038533pt;}
.y3{bottom:783.551600pt;}
.y99{bottom:783.878533pt;}
.yaa{bottom:783.909200pt;}
.yc7{bottom:783.924533pt;}
.y69{bottom:784.169867pt;}
.y44{bottom:784.246533pt;}
.y123{bottom:800.627733pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:842.834667pt;}
.y32{bottom:858.834667pt;}
.h9{height:30.107146pt;}
.hb{height:36.229167pt;}
.ha{height:40.757812pt;}
.he{height:41.099333pt;}
.hd{height:42.656250pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h7{height:52.079427pt;}
.h8{height:52.179160pt;}
.h2{height:56.608073pt;}
.h10{height:57.500000pt;}
.hf{height:60.375000pt;}
.h6{height:61.136719pt;}
.hc{height:66.125000pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:71.929867pt;}
.x6{left:73.079333pt;}
.x5{left:74.338400pt;}
.x1{left:75.590533pt;}
.xb{left:90.841867pt;}
.x7{left:92.637600pt;}
.x4{left:94.179733pt;}
.x8{left:120.059867pt;}
.x3{left:188.728133pt;}
.x2{left:207.502000pt;}
.x9{left:219.467867pt;}
.xa{left:259.457200pt;}
}




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