
    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_b7468674f1f054eec8028e35.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4e8a3b9f1d1e73027d074ba1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_68bae35874c5da8244dc295f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_14ff23a5b256f815abb8ed50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_550cb17c72355a718e27019c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_477bd7892a01d509e3e8110e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_256ed29b38ec53b0e5fcd41e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9e860f744229da344f5e0a13.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.m4{transform:matrix(0.000000,-0.249691,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249691,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249691,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249237,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249237,0.250000,0.000000,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.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-42.306145px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-2.880000px;}
.ls6{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.086372px;}
.ls11{letter-spacing:-0.079561px;}
.ls18{letter-spacing:-0.076446px;}
.ls13{letter-spacing:-0.049317px;}
.ls17{letter-spacing:-0.043649px;}
.ls12{letter-spacing:-0.038146px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000001px;}
.lsd{letter-spacing:0.087911px;}
.lsa{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.288000px;}
.lse{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.924000px;}
.ls2{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.560000px;}
.ls1{letter-spacing:2.160000px;}
.ls1a{letter-spacing:17.424000px;}
.ls19{letter-spacing:53.424000px;}
.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;}
}
.ws5{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.496000px;}
.ws1{word-spacing:-11.880000px;}
.ws6{word-spacing:-10.454487px;}
.wsb{word-spacing:-10.250903px;}
.wsd{word-spacing:-9.056302px;}
.wse{word-spacing:-9.045097px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:102.263441px;}
.ws9{word-spacing:116.895013px;}
.ws7{word-spacing:152.785373px;}
.ws8{word-spacing:170.727742px;}
._18{margin-left:-4.526400px;}
._b{margin-left:-3.473280px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.278560px;}
._4{width:3.528000px;}
._5{width:5.002560px;}
._6{width:6.422400px;}
._d{width:8.098560px;}
._e{width:9.636000px;}
._1b{width:10.674720px;}
._9{width:11.736000px;}
._a{width:13.140960px;}
._1c{width:14.515200px;}
._8{width:15.528960px;}
._7{width:16.643520px;}
._17{width:19.090560px;}
._c{width:20.195520px;}
._15{width:21.271680px;}
._1d{width:22.400160px;}
._14{width:23.420160px;}
._16{width:25.069920px;}
._1e{width:26.331840px;}
._f{width:27.581760px;}
._10{width:28.952160px;}
._11{width:29.954400px;}
._24{width:31.698240px;}
._13{width:38.116320px;}
._12{width:39.473280px;}
._1f{width:41.322240px;}
._21{width:61.699989px;}
._19{width:72.521280px;}
._1a{width:74.088000px;}
._20{width:105.577609px;}
._26{width:120.562560px;}
._25{width:122.328000px;}
._22{width:348.120000px;}
._23{width:349.482240px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.028541px;}
.fs9{font-size:33.284124px;}
.fsc{font-size:36.180388px;}
.fsb{font-size:36.225209px;}
.fs5{font-size:37.606068px;}
.fs6{font-size:40.878412px;}
.fs7{font-size:41.003611px;}
.fsd{font-size:42.153782px;}
.fs4{font-size:47.520000px;}
.fs8{font-size:47.627450px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y76{bottom:7.560000px;}
.y92{bottom:7.590000px;}
.y7c{bottom:7.920000px;}
.y90{bottom:7.950000px;}
.yc5{bottom:8.887962px;}
.y10b{bottom:9.903026px;}
.yf9{bottom:10.674107px;}
.yf7{bottom:10.674121px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.ye3{bottom:11.520000px;}
.yde{bottom:11.880000px;}
.ydf{bottom:12.600000px;}
.y9b{bottom:19.440000px;}
.y96{bottom:19.800000px;}
.y91{bottom:19.830000px;}
.ye1{bottom:23.400000px;}
.y100{bottom:24.420528px;}
.yb9{bottom:26.263276px;}
.y9e{bottom:31.320000px;}
.y99{bottom:31.350000px;}
.y94{bottom:31.680000px;}
.y8f{bottom:31.710000px;}
.y78{bottom:32.040000px;}
.y101{bottom:33.374593px;}
.yfd{bottom:35.141023px;}
.yfb{bottom:35.141037px;}
.ye2{bottom:35.280000px;}
.yb3{bottom:36.741007px;}
.yba{bottom:37.708315px;}
.ydb{bottom:41.400000px;}
.yb6{bottom:42.872899px;}
.y9f{bottom:43.200000px;}
.y9a{bottom:43.230000px;}
.y95{bottom:43.560000px;}
.y84{bottom:44.640000px;}
.y7f{bottom:44.670000px;}
.y102{bottom:50.832963px;}
.ya0{bottom:55.080000px;}
.y9c{bottom:55.110000px;}
.yb4{bottom:55.187094px;}
.ybb{bottom:55.285923px;}
.y97{bottom:55.440000px;}
.y8{bottom:57.240000px;}
.y103{bottom:68.289524px;}
.ybc{bottom:72.863531px;}
.y5{bottom:73.476000px;}
.yb7{bottom:82.423696px;}
.y104{bottom:85.747290px;}
.ybd{bottom:90.443182px;}
.y10a{bottom:92.348892px;}
.yc4{bottom:102.858881px;}
.y105{bottom:103.203852px;}
.y71{bottom:107.676000px;}
.ybe{bottom:108.020790px;}
.yb5{bottom:110.577882px;}
.yb2{bottom:113.185394px;}
.y8b{bottom:119.556000px;}
.y106{bottom:120.660413px;}
.ybf{bottom:125.649486px;}
.yaf{bottom:127.116000px;}
.y53{bottom:130.356000px;}
.y70{bottom:131.436000px;}
.yf5{bottom:131.796000px;}
.y107{bottom:138.118782px;}
.yc0{bottom:143.227094px;}
.y8a{bottom:143.316000px;}
.yfe{bottom:143.413293px;}
.yfc{bottom:143.413307px;}
.y32{bottom:146.196000px;}
.yfa{bottom:146.894962px;}
.yf8{bottom:146.894976px;}
.y121{bottom:150.510000px;}
.yae{bottom:150.870000px;}
.yd9{bottom:151.590000px;}
.y52{bottom:154.110000px;}
.y6f{bottom:155.190000px;}
.yf4{bottom:155.550000px;}
.y108{bottom:155.575343px;}
.yc1{bottom:160.806065px;}
.yb1{bottom:165.969320px;}
.y89{bottom:167.070000px;}
.y31{bottom:170.310000px;}
.y109{bottom:173.078327px;}
.y120{bottom:174.270000px;}
.yad{bottom:174.630000px;}
.yd8{bottom:175.350000px;}
.y51{bottom:177.870000px;}
.yc2{bottom:178.383673px;}
.y6e{bottom:179.310000px;}
.yf3{bottom:179.670000px;}
.y10d{bottom:185.832346px;}
.y88{bottom:190.830000px;}
.y30{bottom:194.115000px;}
.yc3{bottom:195.961281px;}
.y11f{bottom:198.075000px;}
.yac{bottom:198.435000px;}
.y10c{bottom:198.857695px;}
.yd7{bottom:199.155000px;}
.y50{bottom:201.675000px;}
.y6d{bottom:203.115000px;}
.yf2{bottom:203.475000px;}
.y83{bottom:207.795000px;}
.yc7{bottom:207.816999px;}
.y2f{bottom:217.875000px;}
.y11e{bottom:221.835000px;}
.yab{bottom:222.195000px;}
.yc6{bottom:222.532328px;}
.yd6{bottom:222.915000px;}
.y4f{bottom:225.435000px;}
.y6c{bottom:226.875000px;}
.yf1{bottom:227.235000px;}
.y87{bottom:232.635000px;}
.y2e{bottom:241.635000px;}
.y11d{bottom:245.595000px;}
.yaa{bottom:245.955000px;}
.yd5{bottom:247.035000px;}
.y4e{bottom:249.195000px;}
.y6b{bottom:250.635000px;}
.yf0{bottom:250.995000px;}
.y86{bottom:257.115000px;}
.y2d{bottom:265.395000px;}
.y11c{bottom:269.355000px;}
.ya9{bottom:270.075000px;}
.yd4{bottom:270.795000px;}
.y4d{bottom:272.955000px;}
.y6a{bottom:274.395000px;}
.yef{bottom:274.755000px;}
.y85{bottom:281.595000px;}
.y2c{bottom:289.155000px;}
.y11b{bottom:293.115000px;}
.ya8{bottom:293.835000px;}
.yd3{bottom:294.555000px;}
.y4c{bottom:296.715000px;}
.y69{bottom:298.155000px;}
.yee{bottom:298.515000px;}
.y7e{bottom:306.075000px;}
.y2b{bottom:312.915000px;}
.y11a{bottom:316.875000px;}
.ya7{bottom:317.595000px;}
.yd2{bottom:318.315000px;}
.y4b{bottom:320.865000px;}
.y68{bottom:321.945000px;}
.yed{bottom:322.305000px;}
.y82{bottom:330.585000px;}
.y2a{bottom:336.705000px;}
.y119{bottom:340.665000px;}
.ya6{bottom:341.385000px;}
.yd1{bottom:342.105000px;}
.y4a{bottom:344.625000px;}
.y67{bottom:345.705000px;}
.yec{bottom:346.065000px;}
.y81{bottom:355.425000px;}
.y29{bottom:360.825000px;}
.y118{bottom:364.785000px;}
.ya5{bottom:365.145000px;}
.yd0{bottom:365.865000px;}
.y49{bottom:368.385000px;}
.y66{bottom:369.825000px;}
.yeb{bottom:370.185000px;}
.y80{bottom:379.905000px;}
.y28{bottom:384.585000px;}
.y117{bottom:388.545000px;}
.ya4{bottom:388.905000px;}
.ycf{bottom:389.625000px;}
.y48{bottom:392.145000px;}
.y65{bottom:393.585000px;}
.yea{bottom:393.945000px;}
.y7a{bottom:404.385000px;}
.ye4{bottom:406.545000px;}
.y27{bottom:408.345000px;}
.y116{bottom:412.305000px;}
.ya3{bottom:412.665000px;}
.y47{bottom:415.905000px;}
.y64{bottom:417.345000px;}
.ye9{bottom:417.705000px;}
.y7d{bottom:428.865000px;}
.y26{bottom:432.105000px;}
.y115{bottom:436.065000px;}
.ya2{bottom:436.425000px;}
.y46{bottom:439.665000px;}
.y63{bottom:441.105000px;}
.ye8{bottom:441.465000px;}
.y7b{bottom:453.390000px;}
.ye0{bottom:455.190000px;}
.y25{bottom:455.910000px;}
.y114{bottom:459.870000px;}
.ya1{bottom:460.230000px;}
.y45{bottom:463.110000px;}
.y62{bottom:464.910000px;}
.ye7{bottom:465.270000px;}
.y9d{bottom:477.510000px;}
.y77{bottom:478.230000px;}
.y24{bottom:479.670000px;}
.y44{bottom:482.910000px;}
.y113{bottom:483.630000px;}
.y61{bottom:488.310000px;}
.y124{bottom:488.670000px;}
.ye6{bottom:489.030000px;}
.y79{bottom:502.710000px;}
.y23{bottom:503.430000px;}
.y112{bottom:507.390000px;}
.yda{bottom:511.710000px;}
.y60{bottom:512.430000px;}
.y22{bottom:527.190000px;}
.y111{bottom:531.150000px;}
.y5f{bottom:536.190000px;}
.ydd{bottom:546.270000px;}
.y98{bottom:549.510000px;}
.y21{bottom:550.950000px;}
.y75{bottom:551.670000px;}
.y110{bottom:554.910000px;}
.y5e{bottom:559.950000px;}
.y20{bottom:574.740000px;}
.y10f{bottom:578.700000px;}
.ydc{bottom:579.780000px;}
.y74{bottom:583.740000px;}
.y5d{bottom:584.100000px;}
.y10e{bottom:598.500000px;}
.y43{bottom:599.220000px;}
.yff{bottom:599.226243px;}
.y1f{bottom:607.500000px;}
.y5c{bottom:607.860000px;}
.y93{bottom:621.540000px;}
.yce{bottom:621.900000px;}
.y42{bottom:622.980000px;}
.y1e{bottom:631.620000px;}
.yf6{bottom:634.816412px;}
.ycd{bottom:645.660000px;}
.y41{bottom:647.100000px;}
.y1d{bottom:655.380000px;}
.ycc{bottom:669.780000px;}
.y40{bottom:670.860000px;}
.y1c{bottom:679.140000px;}
.y8e{bottom:693.900000px;}
.y3f{bottom:694.620000px;}
.y5b{bottom:702.570000px;}
.y1b{bottom:702.930000px;}
.ycb{bottom:717.690000px;}
.y3e{bottom:718.410000px;}
.y1a{bottom:726.690000px;}
.yca{bottom:741.090000px;}
.y3d{bottom:742.170000px;}
.y8d{bottom:750.090000px;}
.y19{bottom:750.450000px;}
.ye5{bottom:759.090000px;}
.yc9{bottom:764.850000px;}
.y3c{bottom:765.930000px;}
.y8c{bottom:774.210000px;}
.y18{bottom:774.570000px;}
.yc8{bottom:784.650000px;}
.yb8{bottom:785.470510px;}
.y3b{bottom:789.690000px;}
.y17{bottom:798.330000px;}
.y3a{bottom:813.450000px;}
.y16{bottom:822.090000px;}
.yb0{bottom:825.682067px;}
.y39{bottom:837.255000px;}
.y15{bottom:845.895000px;}
.y38{bottom:861.375000px;}
.y14{bottom:869.655000px;}
.y37{bottom:885.135000px;}
.y13{bottom:893.415000px;}
.y36{bottom:908.895000px;}
.y12{bottom:916.815000px;}
.y5a{bottom:917.175000px;}
.y35{bottom:932.295000px;}
.y11{bottom:940.575000px;}
.y59{bottom:940.935000px;}
.y34{bottom:956.085000px;}
.y73{bottom:964.725000px;}
.y10{bottom:965.085000px;}
.y33{bottom:975.885000px;}
.yf{bottom:988.845000px;}
.ye{bottom:1012.605000px;}
.yd{bottom:1036.005000px;}
.y58{bottom:1036.365000px;}
.yc{bottom:1059.765000px;}
.y72{bottom:1060.125000px;}
.y123{bottom:1083.570000px;}
.y57{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y122{bottom:1107.330000px;}
.y56{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y55{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y54{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hf{height:23.760000px;}
.hd{height:23.796000px;}
.h11{height:24.120000px;}
.h5{height:27.000000px;}
.h26{height:31.318829px;}
.h1f{height:32.796000px;}
.h20{height:33.840000px;}
.h24{height:34.714302px;}
.h28{height:36.463048px;}
.h27{height:36.508219px;}
.h19{height:39.221954px;}
.h1b{height:41.197774px;}
.h29{height:41.371631px;}
.h1c{height:42.145251px;}
.h1d{height:46.743738px;}
.h22{height:47.916000px;}
.h14{height:48.276000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h21{height:55.800000px;}
.hc{height:59.343750px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h17{height:71.280000px;}
.h16{height:71.316000px;}
.h15{height:71.640000px;}
.h2{height:72.562500px;}
.he{height:72.720000px;}
.h10{height:73.116000px;}
.ha{height:73.998281px;}
.h2a{height:74.004654px;}
.h9{height:75.251250px;}
.h1e{height:91.836000px;}
.h8{height:97.233750px;}
.h13{height:97.560000px;}
.h12{height:97.596000px;}
.h23{height:154.673418px;}
.h18{height:174.757786px;}
.h25{height:215.274315px;}
.h1a{height:243.227721px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:39.636000px;}
.wa{width:41.400000px;}
.w19{width:47.916000px;}
.w1c{width:49.680000px;}
.w1d{width:49.716000px;}
.w1e{width:50.040000px;}
.w11{width:51.876000px;}
.w1a{width:69.840000px;}
.wd{width:71.676000px;}
.we{width:72.000000px;}
.w9{width:78.876000px;}
.w16{width:90.396000px;}
.w18{width:91.116000px;}
.w17{width:100.476000px;}
.w4{width:104.076000px;}
.w6{width:115.956000px;}
.w15{width:118.476000px;}
.w12{width:137.556000px;}
.wb{width:144.072000px;}
.wc{width:144.396000px;}
.w7{width:169.635000px;}
.w1f{width:209.417121px;}
.w13{width:209.595000px;}
.wf{width:237.040951px;}
.w14{width:283.425000px;}
.w3{width:298.905000px;}
.w20{width:306.946072px;}
.w8{width:307.545000px;}
.w10{width:347.434768px;}
.w5{width:477.900000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:7.560000px;}
.x28{left:8.660281px;}
.x1a{left:10.440000px;}
.x49{left:30.880052px;}
.x2c{left:32.338553px;}
.x32{left:36.030196px;}
.x8{left:38.550000px;}
.x31{left:43.154521px;}
.x46{left:62.303956px;}
.x29{left:67.908905px;}
.x30{left:84.720453px;}
.x4a{left:86.663557px;}
.x5{left:95.796000px;}
.x51{left:97.235987px;}
.x43{left:101.555987px;}
.xb{left:104.075987px;}
.x14{left:108.035987px;}
.x47{left:114.646173px;}
.xf{left:117.395987px;}
.x36{left:120.275987px;}
.x17{left:123.155987px;}
.x2a{left:127.155480px;}
.x4b{left:135.565064px;}
.x4e{left:138.600138px;}
.x33{left:142.019741px;}
.x37{left:145.151987px;}
.xd{left:149.111987px;}
.x2d{left:150.833746px;}
.x39{left:157.035000px;}
.x19{left:159.915000px;}
.x48{left:166.988968px;}
.x1f{left:175.755000px;}
.x2b{left:186.402731px;}
.x4c{left:191.349776px;}
.x3{left:196.274987px;}
.x18{left:208.874987px;}
.x2e{left:210.080995px;}
.xa{left:216.794987px;}
.x20{left:217.875000px;}
.x52{left:236.984987px;}
.x11{left:239.144987px;}
.x38{left:267.224987px;}
.x44{left:277.304987px;}
.x4f{left:281.410577px;}
.x34{left:283.935590px;}
.x6{left:290.634000px;}
.x1d{left:293.144987px;}
.xe{left:294.584987px;}
.x2f{left:298.979989px;}
.x16{left:299.984987px;}
.x4d{left:319.154988px;}
.x12{left:322.664987px;}
.x1c{left:330.270000px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x3d{left:343.950000px;}
.x27{left:361.200777px;}
.x21{left:362.670000px;}
.x45{left:374.124808px;}
.x7{left:394.710000px;}
.x10{left:402.989987px;}
.xc{left:408.029987px;}
.x3b{left:414.510000px;}
.x24{left:435.060000px;}
.x3e{left:455.220000px;}
.x9{left:498.780000px;}
.x3a{left:505.620000px;}
.x22{left:507.780000px;}
.x3f{left:556.410000px;}
.x25{left:580.170000px;}
.x13{left:590.249987px;}
.x3c{left:606.810000px;}
.x50{left:627.374987px;}
.x1b{left:638.535000px;}
.x35{left:647.894987px;}
.x23{left:652.575000px;}
.x42{left:663.374987px;}
.x41{left:680.294987px;}
.x15{left:697.214987px;}
.x26{left:724.965000px;}
.x40{left:738.285000px;}
.x1{left:797.684987px;}
@media print{
.v3{vertical-align:-37.605463pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-2.560000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.076775pt;}
.ls11{letter-spacing:-0.070721pt;}
.ls18{letter-spacing:-0.067952pt;}
.ls13{letter-spacing:-0.043837pt;}
.ls17{letter-spacing:-0.038799pt;}
.ls12{letter-spacing:-0.033907pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000001pt;}
.lsd{letter-spacing:0.078143pt;}
.lsa{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.821333pt;}
.ls2{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.386667pt;}
.ls1{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:15.488000pt;}
.ls19{letter-spacing:47.488000pt;}
.ws5{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.292877pt;}
.wsb{word-spacing:-9.111914pt;}
.wsd{word-spacing:-8.050047pt;}
.wse{word-spacing:-8.040086pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:90.900836pt;}
.ws9{word-spacing:103.906678pt;}
.ws7{word-spacing:135.809220pt;}
.ws8{word-spacing:151.757993pt;}
._18{margin-left:-4.023467pt;}
._b{margin-left:-3.087360pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.025387pt;}
._4{width:3.136000pt;}
._5{width:4.446720pt;}
._6{width:5.708800pt;}
._d{width:7.198720pt;}
._e{width:8.565333pt;}
._1b{width:9.488640pt;}
._9{width:10.432000pt;}
._a{width:11.680853pt;}
._1c{width:12.902400pt;}
._8{width:13.803520pt;}
._7{width:14.794240pt;}
._17{width:16.969387pt;}
._c{width:17.951573pt;}
._15{width:18.908160pt;}
._1d{width:19.911253pt;}
._14{width:20.817920pt;}
._16{width:22.284373pt;}
._1e{width:23.406080pt;}
._f{width:24.517120pt;}
._10{width:25.735253pt;}
._11{width:26.626133pt;}
._24{width:28.176213pt;}
._13{width:33.881173pt;}
._12{width:35.087360pt;}
._1f{width:36.730880pt;}
._21{width:54.844434pt;}
._19{width:64.463360pt;}
._1a{width:65.856000pt;}
._20{width:93.846764pt;}
._26{width:107.166720pt;}
._25{width:108.736000pt;}
._22{width:309.440000pt;}
._23{width:310.650880pt;}
.fsa{font-size:26.692036pt;}
.fs9{font-size:29.585888pt;}
.fsc{font-size:32.160345pt;}
.fsb{font-size:32.200186pt;}
.fs5{font-size:33.427616pt;}
.fs6{font-size:36.336366pt;}
.fs7{font-size:36.447654pt;}
.fsd{font-size:37.470028pt;}
.fs4{font-size:42.240000pt;}
.fs8{font-size:42.335511pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:6.720000pt;}
.y92{bottom:6.746667pt;}
.y7c{bottom:7.040000pt;}
.y90{bottom:7.066667pt;}
.yc5{bottom:7.900411pt;}
.y10b{bottom:8.802690pt;}
.yf9{bottom:9.488095pt;}
.yf7{bottom:9.488108pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.ye3{bottom:10.240000pt;}
.yde{bottom:10.560000pt;}
.ydf{bottom:11.200000pt;}
.y9b{bottom:17.280000pt;}
.y96{bottom:17.600000pt;}
.y91{bottom:17.626667pt;}
.ye1{bottom:20.800000pt;}
.y100{bottom:21.707136pt;}
.yb9{bottom:23.345134pt;}
.y9e{bottom:27.840000pt;}
.y99{bottom:27.866667pt;}
.y94{bottom:28.160000pt;}
.y8f{bottom:28.186667pt;}
.y78{bottom:28.480000pt;}
.y101{bottom:29.666305pt;}
.yfd{bottom:31.236465pt;}
.yfb{bottom:31.236477pt;}
.ye2{bottom:31.360000pt;}
.yb3{bottom:32.658673pt;}
.yba{bottom:33.518502pt;}
.ydb{bottom:36.800000pt;}
.yb6{bottom:38.109244pt;}
.y9f{bottom:38.400000pt;}
.y9a{bottom:38.426667pt;}
.y95{bottom:38.720000pt;}
.y84{bottom:39.680000pt;}
.y7f{bottom:39.706667pt;}
.y102{bottom:45.184856pt;}
.ya0{bottom:48.960000pt;}
.y9c{bottom:48.986667pt;}
.yb4{bottom:49.055194pt;}
.ybb{bottom:49.143042pt;}
.y97{bottom:49.280000pt;}
.y8{bottom:50.880000pt;}
.y103{bottom:60.701799pt;}
.ybc{bottom:64.767583pt;}
.y5{bottom:65.312000pt;}
.yb7{bottom:73.265507pt;}
.y104{bottom:76.219814pt;}
.ybd{bottom:80.393940pt;}
.y10a{bottom:82.087904pt;}
.yc4{bottom:91.430116pt;}
.y105{bottom:91.736757pt;}
.y71{bottom:95.712000pt;}
.ybe{bottom:96.018480pt;}
.yb5{bottom:98.291450pt;}
.yb2{bottom:100.609240pt;}
.y8b{bottom:106.272000pt;}
.y106{bottom:107.253700pt;}
.ybf{bottom:111.688432pt;}
.yaf{bottom:112.992000pt;}
.y53{bottom:115.872000pt;}
.y70{bottom:116.832000pt;}
.yf5{bottom:117.152000pt;}
.y107{bottom:122.772251pt;}
.yc0{bottom:127.312973pt;}
.y8a{bottom:127.392000pt;}
.yfe{bottom:127.478483pt;}
.yfc{bottom:127.478495pt;}
.y32{bottom:129.952000pt;}
.yfa{bottom:130.573300pt;}
.yf8{bottom:130.573312pt;}
.y121{bottom:133.786667pt;}
.yae{bottom:134.106667pt;}
.yd9{bottom:134.746667pt;}
.y52{bottom:136.986667pt;}
.y6f{bottom:137.946667pt;}
.yf4{bottom:138.266667pt;}
.y108{bottom:138.289194pt;}
.yc1{bottom:142.938724pt;}
.yb1{bottom:147.528285pt;}
.y89{bottom:148.506667pt;}
.y31{bottom:151.386667pt;}
.y109{bottom:153.847401pt;}
.y120{bottom:154.906667pt;}
.yad{bottom:155.226667pt;}
.yd8{bottom:155.866667pt;}
.y51{bottom:158.106667pt;}
.yc2{bottom:158.563265pt;}
.y6e{bottom:159.386667pt;}
.yf3{bottom:159.706667pt;}
.y10d{bottom:165.184307pt;}
.y88{bottom:169.626667pt;}
.y30{bottom:172.546667pt;}
.yc3{bottom:174.187805pt;}
.y11f{bottom:176.066667pt;}
.yac{bottom:176.386667pt;}
.y10c{bottom:176.762396pt;}
.yd7{bottom:177.026667pt;}
.y50{bottom:179.266667pt;}
.y6d{bottom:180.546667pt;}
.yf2{bottom:180.866667pt;}
.y83{bottom:184.706667pt;}
.yc7{bottom:184.726222pt;}
.y2f{bottom:193.666667pt;}
.y11e{bottom:197.186667pt;}
.yab{bottom:197.506667pt;}
.yc6{bottom:197.806514pt;}
.yd6{bottom:198.146667pt;}
.y4f{bottom:200.386667pt;}
.y6c{bottom:201.666667pt;}
.yf1{bottom:201.986667pt;}
.y87{bottom:206.786667pt;}
.y2e{bottom:214.786667pt;}
.y11d{bottom:218.306667pt;}
.yaa{bottom:218.626667pt;}
.yd5{bottom:219.586667pt;}
.y4e{bottom:221.506667pt;}
.y6b{bottom:222.786667pt;}
.yf0{bottom:223.106667pt;}
.y86{bottom:228.546667pt;}
.y2d{bottom:235.906667pt;}
.y11c{bottom:239.426667pt;}
.ya9{bottom:240.066667pt;}
.yd4{bottom:240.706667pt;}
.y4d{bottom:242.626667pt;}
.y6a{bottom:243.906667pt;}
.yef{bottom:244.226667pt;}
.y85{bottom:250.306667pt;}
.y2c{bottom:257.026667pt;}
.y11b{bottom:260.546667pt;}
.ya8{bottom:261.186667pt;}
.yd3{bottom:261.826667pt;}
.y4c{bottom:263.746667pt;}
.y69{bottom:265.026667pt;}
.yee{bottom:265.346667pt;}
.y7e{bottom:272.066667pt;}
.y2b{bottom:278.146667pt;}
.y11a{bottom:281.666667pt;}
.ya7{bottom:282.306667pt;}
.yd2{bottom:282.946667pt;}
.y4b{bottom:285.213333pt;}
.y68{bottom:286.173333pt;}
.yed{bottom:286.493333pt;}
.y82{bottom:293.853333pt;}
.y2a{bottom:299.293333pt;}
.y119{bottom:302.813333pt;}
.ya6{bottom:303.453333pt;}
.yd1{bottom:304.093333pt;}
.y4a{bottom:306.333333pt;}
.y67{bottom:307.293333pt;}
.yec{bottom:307.613333pt;}
.y81{bottom:315.933333pt;}
.y29{bottom:320.733333pt;}
.y118{bottom:324.253333pt;}
.ya5{bottom:324.573333pt;}
.yd0{bottom:325.213333pt;}
.y49{bottom:327.453333pt;}
.y66{bottom:328.733333pt;}
.yeb{bottom:329.053333pt;}
.y80{bottom:337.693333pt;}
.y28{bottom:341.853333pt;}
.y117{bottom:345.373333pt;}
.ya4{bottom:345.693333pt;}
.ycf{bottom:346.333333pt;}
.y48{bottom:348.573333pt;}
.y65{bottom:349.853333pt;}
.yea{bottom:350.173333pt;}
.y7a{bottom:359.453333pt;}
.ye4{bottom:361.373333pt;}
.y27{bottom:362.973333pt;}
.y116{bottom:366.493333pt;}
.ya3{bottom:366.813333pt;}
.y47{bottom:369.693333pt;}
.y64{bottom:370.973333pt;}
.ye9{bottom:371.293333pt;}
.y7d{bottom:381.213333pt;}
.y26{bottom:384.093333pt;}
.y115{bottom:387.613333pt;}
.ya2{bottom:387.933333pt;}
.y46{bottom:390.813333pt;}
.y63{bottom:392.093333pt;}
.ye8{bottom:392.413333pt;}
.y7b{bottom:403.013333pt;}
.ye0{bottom:404.613333pt;}
.y25{bottom:405.253333pt;}
.y114{bottom:408.773333pt;}
.ya1{bottom:409.093333pt;}
.y45{bottom:411.653333pt;}
.y62{bottom:413.253333pt;}
.ye7{bottom:413.573333pt;}
.y9d{bottom:424.453333pt;}
.y77{bottom:425.093333pt;}
.y24{bottom:426.373333pt;}
.y44{bottom:429.253333pt;}
.y113{bottom:429.893333pt;}
.y61{bottom:434.053333pt;}
.y124{bottom:434.373333pt;}
.ye6{bottom:434.693333pt;}
.y79{bottom:446.853333pt;}
.y23{bottom:447.493333pt;}
.y112{bottom:451.013333pt;}
.yda{bottom:454.853333pt;}
.y60{bottom:455.493333pt;}
.y22{bottom:468.613333pt;}
.y111{bottom:472.133333pt;}
.y5f{bottom:476.613333pt;}
.ydd{bottom:485.573333pt;}
.y98{bottom:488.453333pt;}
.y21{bottom:489.733333pt;}
.y75{bottom:490.373333pt;}
.y110{bottom:493.253333pt;}
.y5e{bottom:497.733333pt;}
.y20{bottom:510.880000pt;}
.y10f{bottom:514.400000pt;}
.ydc{bottom:515.360000pt;}
.y74{bottom:518.880000pt;}
.y5d{bottom:519.200000pt;}
.y10e{bottom:532.000000pt;}
.y43{bottom:532.640000pt;}
.yff{bottom:532.645549pt;}
.y1f{bottom:540.000000pt;}
.y5c{bottom:540.320000pt;}
.y93{bottom:552.480000pt;}
.yce{bottom:552.800000pt;}
.y42{bottom:553.760000pt;}
.y1e{bottom:561.440000pt;}
.yf6{bottom:564.281255pt;}
.ycd{bottom:573.920000pt;}
.y41{bottom:575.200000pt;}
.y1d{bottom:582.560000pt;}
.ycc{bottom:595.360000pt;}
.y40{bottom:596.320000pt;}
.y1c{bottom:603.680000pt;}
.y8e{bottom:616.800000pt;}
.y3f{bottom:617.440000pt;}
.y5b{bottom:624.506667pt;}
.y1b{bottom:624.826667pt;}
.ycb{bottom:637.946667pt;}
.y3e{bottom:638.586667pt;}
.y1a{bottom:645.946667pt;}
.yca{bottom:658.746667pt;}
.y3d{bottom:659.706667pt;}
.y8d{bottom:666.746667pt;}
.y19{bottom:667.066667pt;}
.ye5{bottom:674.746667pt;}
.yc9{bottom:679.866667pt;}
.y3c{bottom:680.826667pt;}
.y8c{bottom:688.186667pt;}
.y18{bottom:688.506667pt;}
.yc8{bottom:697.466667pt;}
.yb8{bottom:698.196009pt;}
.y3b{bottom:701.946667pt;}
.y17{bottom:709.626667pt;}
.y3a{bottom:723.066667pt;}
.y16{bottom:730.746667pt;}
.yb0{bottom:733.939615pt;}
.y39{bottom:744.226667pt;}
.y15{bottom:751.906667pt;}
.y38{bottom:765.666667pt;}
.y14{bottom:773.026667pt;}
.y37{bottom:786.786667pt;}
.y13{bottom:794.146667pt;}
.y36{bottom:807.906667pt;}
.y12{bottom:814.946667pt;}
.y5a{bottom:815.266667pt;}
.y35{bottom:828.706667pt;}
.y11{bottom:836.066667pt;}
.y59{bottom:836.386667pt;}
.y34{bottom:849.853333pt;}
.y73{bottom:857.533333pt;}
.y10{bottom:857.853333pt;}
.y33{bottom:867.453333pt;}
.yf{bottom:878.973333pt;}
.ye{bottom:900.093333pt;}
.yd{bottom:920.893333pt;}
.y58{bottom:921.213333pt;}
.yc{bottom:942.013333pt;}
.y72{bottom:942.333333pt;}
.y123{bottom:963.173333pt;}
.y57{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y122{bottom:984.293333pt;}
.y56{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y55{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y54{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hf{height:21.120000pt;}
.hd{height:21.152000pt;}
.h11{height:21.440000pt;}
.h5{height:24.000000pt;}
.h26{height:27.838960pt;}
.h1f{height:29.152000pt;}
.h20{height:30.080000pt;}
.h24{height:30.857157pt;}
.h28{height:32.411598pt;}
.h27{height:32.451750pt;}
.h19{height:34.863959pt;}
.h1b{height:36.620244pt;}
.h29{height:36.774784pt;}
.h1c{height:37.462445pt;}
.h1d{height:41.549989pt;}
.h22{height:42.592000pt;}
.h14{height:42.912000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h21{height:49.600000pt;}
.hc{height:52.750000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h17{height:63.360000pt;}
.h16{height:63.392000pt;}
.h15{height:63.680000pt;}
.h2{height:64.500000pt;}
.he{height:64.640000pt;}
.h10{height:64.992000pt;}
.ha{height:65.776250pt;}
.h2a{height:65.781915pt;}
.h9{height:66.890000pt;}
.h1e{height:81.632000pt;}
.h8{height:86.430000pt;}
.h13{height:86.720000pt;}
.h12{height:86.752000pt;}
.h23{height:137.487483pt;}
.h18{height:155.340254pt;}
.h25{height:191.354947pt;}
.h1a{height:216.202418pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:35.232000pt;}
.wa{width:36.800000pt;}
.w19{width:42.592000pt;}
.w1c{width:44.160000pt;}
.w1d{width:44.192000pt;}
.w1e{width:44.480000pt;}
.w11{width:46.112000pt;}
.w1a{width:62.080000pt;}
.wd{width:63.712000pt;}
.we{width:64.000000pt;}
.w9{width:70.112000pt;}
.w16{width:80.352000pt;}
.w18{width:80.992000pt;}
.w17{width:89.312000pt;}
.w4{width:92.512000pt;}
.w6{width:103.072000pt;}
.w15{width:105.312000pt;}
.w12{width:122.272000pt;}
.wb{width:128.064000pt;}
.wc{width:128.352000pt;}
.w7{width:150.786667pt;}
.w1f{width:186.148552pt;}
.w13{width:186.306667pt;}
.wf{width:210.703068pt;}
.w14{width:251.933333pt;}
.w3{width:265.693333pt;}
.w20{width:272.840953pt;}
.w8{width:273.373333pt;}
.w10{width:308.830905pt;}
.w5{width:424.800000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.720000pt;}
.x28{left:7.698028pt;}
.x1a{left:9.280000pt;}
.x49{left:27.448935pt;}
.x2c{left:28.745380pt;}
.x32{left:32.026841pt;}
.x8{left:34.266667pt;}
.x31{left:38.359574pt;}
.x46{left:55.381294pt;}
.x29{left:60.363471pt;}
.x30{left:75.307069pt;}
.x4a{left:77.034273pt;}
.x5{left:85.152000pt;}
.x51{left:86.431988pt;}
.x43{left:90.271988pt;}
.xb{left:92.511988pt;}
.x14{left:96.031988pt;}
.x47{left:101.907709pt;}
.xf{left:104.351988pt;}
.x36{left:106.911988pt;}
.x17{left:109.471988pt;}
.x2a{left:113.027093pt;}
.x4b{left:120.502279pt;}
.x4e{left:123.200122pt;}
.x33{left:126.239770pt;}
.x37{left:129.023988pt;}
.xd{left:132.543988pt;}
.x2d{left:134.074441pt;}
.x39{left:139.586667pt;}
.x19{left:142.146667pt;}
.x48{left:148.434638pt;}
.x1f{left:156.226667pt;}
.x2b{left:165.691316pt;}
.x4c{left:170.088689pt;}
.x3{left:174.466655pt;}
.x18{left:185.666655pt;}
.x2e{left:186.738662pt;}
.xa{left:192.706655pt;}
.x20{left:193.666667pt;}
.x52{left:210.653322pt;}
.x11{left:212.573322pt;}
.x38{left:237.533322pt;}
.x44{left:246.493322pt;}
.x4f{left:250.142735pt;}
.x34{left:252.387191pt;}
.x6{left:258.341333pt;}
.x1d{left:260.573322pt;}
.xe{left:261.853322pt;}
.x2f{left:265.759990pt;}
.x16{left:266.653322pt;}
.x4d{left:283.693322pt;}
.x12{left:286.813322pt;}
.x1c{left:293.573333pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x3d{left:305.733333pt;}
.x27{left:321.067358pt;}
.x21{left:322.373333pt;}
.x45{left:332.555384pt;}
.x7{left:350.853333pt;}
.x10{left:358.213322pt;}
.xc{left:362.693322pt;}
.x3b{left:368.453333pt;}
.x24{left:386.720000pt;}
.x3e{left:404.640000pt;}
.x9{left:443.360000pt;}
.x3a{left:449.440000pt;}
.x22{left:451.360000pt;}
.x3f{left:494.586667pt;}
.x25{left:515.706667pt;}
.x13{left:524.666655pt;}
.x3c{left:539.386667pt;}
.x50{left:557.666655pt;}
.x1b{left:567.586667pt;}
.x35{left:575.906655pt;}
.x23{left:580.066667pt;}
.x42{left:589.666655pt;}
.x41{left:604.706655pt;}
.x15{left:619.746655pt;}
.x26{left:644.413333pt;}
.x40{left:656.253333pt;}
.x1{left:709.053322pt;}
}




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