
    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_1f55ac4c2bc290085483875d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_34b6a10a7b6b4a818bc9916b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_a753daeb8fb950c7b0f2858f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_77dae407fe0d0a22b41cc4c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_317472023f7788cb0834f24d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_a07bbde681b53850813d470f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.038574;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_76962b2fecc40c50376238a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.748047;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_683d4baf2e34cf2c9be438b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_b2f1d64d26787ccfdf535b8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7566b3492f02bf566e0ef12e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d3f76c695053f66b5f28ba7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.748047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_696d1def81914f3a5eb026e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-55.500000px;}
.v5{vertical-align:-39.300000px;}
.v3{vertical-align:-32.100000px;}
.v1{vertical-align:-29.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.400000px;}
.ls18{letter-spacing:-1.782000px;}
.ls20{letter-spacing:-1.686000px;}
.ls1c{letter-spacing:-1.632000px;}
.ls24{letter-spacing:-1.608000px;}
.ls16{letter-spacing:-1.584000px;}
.ls19{letter-spacing:-1.560000px;}
.ls0{letter-spacing:-1.350000px;}
.ls9{letter-spacing:-0.726000px;}
.ls15{letter-spacing:-0.476400px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.017550px;}
.ls1b{letter-spacing:0.081900px;}
.ls4{letter-spacing:0.137550px;}
.lsa{letter-spacing:0.188400px;}
.lsd{letter-spacing:0.660000px;}
.ls13{letter-spacing:0.757050px;}
.ls14{letter-spacing:0.774000px;}
.lsf{letter-spacing:0.924000px;}
.ls1d{letter-spacing:1.212000px;}
.ls1e{letter-spacing:1.236000px;}
.ls25{letter-spacing:1.428000px;}
.ls1a{letter-spacing:1.632000px;}
.ls1f{letter-spacing:1.734000px;}
.lse{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.310000px;}
.lsc{letter-spacing:2.988000px;}
.lsb{letter-spacing:3.138000px;}
.ls2{letter-spacing:10.082100px;}
.ls3{letter-spacing:10.142100px;}
.ls6{letter-spacing:10.181700px;}
.ls5{letter-spacing:50.162100px;}
.ls7{letter-spacing:65.026650px;}
.ls22{letter-spacing:92.490000px;}
.ls21{letter-spacing:92.542500px;}
.ls23{letter-spacing:92.572500px;}
.ls12{letter-spacing:111.645000px;}
.ls10{letter-spacing:111.697500px;}
.ls8{letter-spacing:165.697500px;}
.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;}
}
.ws11{word-spacing:-144.300000px;}
.wsf{word-spacing:-144.150000px;}
.ws10{word-spacing:-42.636000px;}
.ws18{word-spacing:-39.341400px;}
.ws16{word-spacing:-36.570450px;}
.ws4{word-spacing:-31.713000px;}
.ws1c{word-spacing:-30.690450px;}
.ws19{word-spacing:-30.474450px;}
.wsd{word-spacing:-29.952900px;}
.wsc{word-spacing:-29.292900px;}
.wsb{word-spacing:-29.262450px;}
.ws15{word-spacing:-28.786050px;}
.ws17{word-spacing:-27.702450px;}
.ws1b{word-spacing:-27.684900px;}
.ws1a{word-spacing:-27.606900px;}
.ws1{word-spacing:-27.526800px;}
.wsa{word-spacing:-25.791000px;}
.ws13{word-spacing:-24.725400px;}
.ws12{word-spacing:-24.694950px;}
.ws9{word-spacing:-22.991400px;}
.ws14{word-spacing:-22.711500px;}
.wse{word-spacing:-21.954450px;}
.ws0{word-spacing:-19.690950px;}
.ws2{word-spacing:-0.108150px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:8.289300px;}
.ws5{word-spacing:8.349300px;}
.ws7{word-spacing:78.609300px;}
.ws8{word-spacing:78.789300px;}
._10{margin-left:-70.320000px;}
._18{margin-left:-16.581450px;}
._b{margin-left:-11.816100px;}
._1c{margin-left:-10.678200px;}
._16{margin-left:-9.421500px;}
._12{margin-left:-7.821000px;}
._5{margin-left:-6.322650px;}
._c{margin-left:-5.127000px;}
._7{margin-left:-4.104450px;}
._6{margin-left:-2.549700px;}
._2{margin-left:-1.347450px;}
._0{width:1.305900px;}
._d{width:2.397300px;}
._a{width:3.659850px;}
._13{width:4.701600px;}
._15{width:6.273600px;}
._14{width:7.672350px;}
._11{width:11.223450px;}
._1b{width:30.504900px;}
._e{width:32.422650px;}
._f{width:69.948900px;}
._9{width:82.193550px;}
._8{width:106.110600px;}
._19{width:196.787700px;}
._1a{width:230.674800px;}
._17{width:272.209950px;}
._1{width:326.209050px;}
._3{width:328.625850px;}
._4{width:411.379050px;}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(192,0,0);}
.fca{color:rgb(89,89,89);}
.fc9{color:rgb(150,150,150);}
.fc6{color:rgb(116,116,116);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(233,113,50);}
.fc0{color:rgb(78,149,217);}
.fsc{font-size:72.000000px;}
.fse{font-size:94.500000px;}
.fsb{font-size:94.650000px;}
.fs0{font-size:103.650000px;}
.fs5{font-size:108.150000px;}
.fs4{font-size:121.650000px;}
.fs3{font-size:121.800000px;}
.fsf{font-size:139.650000px;}
.fs7{font-size:144.150000px;}
.fs8{font-size:144.300000px;}
.fs11{font-size:162.150000px;}
.fs12{font-size:166.650000px;}
.fs13{font-size:166.800000px;}
.fs6{font-size:180.150000px;}
.fsd{font-size:193.650000px;}
.fs9{font-size:193.800000px;}
.fs10{font-size:216.300000px;}
.fs2{font-size:247.800000px;}
.fs1{font-size:247.950000px;}
.fsa{font-size:265.800000px;}
.y0{bottom:0.000000px;}
.y1{bottom:28.087500px;}
.y98{bottom:89.737500px;}
.y8{bottom:102.975000px;}
.y24{bottom:106.237500px;}
.y34{bottom:108.600000px;}
.yf0{bottom:119.700000px;}
.yc5{bottom:120.825000px;}
.yac{bottom:125.062500px;}
.y1c{bottom:131.325000px;}
.y9a{bottom:135.900000px;}
.ya5{bottom:137.700000px;}
.y23{bottom:142.275000px;}
.y33{bottom:144.637500px;}
.y13{bottom:148.387500px;}
.ycf{bottom:153.975000px;}
.yef{bottom:163.650000px;}
.yc4{bottom:164.745000px;}
.y5a{bottom:166.125000px;}
.yd{bottom:166.275000px;}
.y4e{bottom:169.800000px;}
.y40{bottom:171.180000px;}
.ye5{bottom:177.930000px;}
.ya4{bottom:181.650000px;}
.y6e{bottom:183.120000px;}
.y31{bottom:185.925000px;}
.yce{bottom:196.800000px;}
.y1d{bottom:198.495000px;}
.y3a{bottom:201.375000px;}
.y8c{bottom:203.130000px;}
.yee{bottom:206.445000px;}
.y62{bottom:208.950000px;}
.y59{bottom:210.075000px;}
.y7c{bottom:216.750000px;}
.y88{bottom:216.945000px;}
.ya3{bottom:224.445000px;}
.yc3{bottom:225.600000px;}
.y30{bottom:229.875000px;}
.yb5{bottom:236.625000px;}
.y8d{bottom:239.745000px;}
.y6d{bottom:243.945000px;}
.yab{bottom:250.005000px;}
.ybe{bottom:251.475000px;}
.y61{bottom:251.730000px;}
.y58{bottom:252.870000px;}
.ycd{bottom:258.750000px;}
.y7b{bottom:259.530000px;}
.y87{bottom:260.895000px;}
.ye3{bottom:263.550000px;}
.y1b{bottom:266.145000px;}
.yed{bottom:268.380000px;}
.y2f{bottom:272.670000px;}
.yb4{bottom:280.575000px;}
.ya2{bottom:285.300000px;}
.yc2{bottom:287.550000px;}
.y6c{bottom:287.895000px;}
.ybd{bottom:294.300000px;}
.y57{bottom:296.820000px;}
.y74{bottom:299.250000px;}
.ycc{bottom:301.575000px;}
.y4d{bottom:306.300000px;}
.y60{bottom:312.600000px;}
.y2e{bottom:315.495000px;}
.yd3{bottom:317.025000px;}
.y7a{bottom:320.370000px;}
.y86{bottom:321.720000px;}
.y1a{bottom:321.870000px;}
.ya1{bottom:329.220000px;}
.yec{bottom:329.250000px;}
.yc1{bottom:330.345000px;}
.y6b{bottom:330.675000px;}
.y43{bottom:330.900000px;}
.y73{bottom:331.950000px;}
.y39{bottom:337.875000px;}
.y44{bottom:339.345000px;}
.ye2{bottom:339.375000px;}
.yb3{bottom:341.400000px;}
.yd2{bottom:348.570000px;}
.y97{bottom:353.355000px;}
.ybc{bottom:355.125000px;}
.yaa{bottom:356.700000px;}
.y56{bottom:357.630000px;}
.y7{bottom:362.100000px;}
.ycb{bottom:362.400000px;}
.y79{bottom:364.320000px;}
.y85{bottom:364.530000px;}
.yeb{bottom:372.045000px;}
.yc0{bottom:373.155000px;}
.y42{bottom:373.695000px;}
.yd7{bottom:373.755000px;}
.y5f{bottom:374.550000px;}
.y26{bottom:375.495000px;}
.y2d{bottom:377.445000px;}
.y36{bottom:377.850000px;}
.yd1{bottom:381.225000px;}
.y3c{bottom:381.570000px;}
.yb2{bottom:384.225000px;}
.y8a{bottom:385.530000px;}
.ya0{bottom:390.030000px;}
.y6a{bottom:391.530000px;}
.y6{bottom:398.130000px;}
.ya9{bottom:399.525000px;}
.y55{bottom:400.470000px;}
.y99{bottom:406.470000px;}
.y19{bottom:409.695000px;}
.y25{bottom:411.525000px;}
.y35{bottom:413.880000px;}
.ye1{bottom:414.525000px;}
.y41{bottom:416.505000px;}
.yd6{bottom:416.550000px;}
.ybb{bottom:417.120000px;}
.y5e{bottom:417.345000px;}
.y89{bottom:418.200000px;}
.y49{bottom:418.575000px;}
.y2c{bottom:420.270000px;}
.yca{bottom:424.350000px;}
.y78{bottom:425.130000px;}
.y84{bottom:426.495000px;}
.y9f{bottom:433.995000px;}
.yea{bottom:434.025000px;}
.y5{bottom:434.175000px;}
.ybf{bottom:435.120000px;}
.y69{bottom:435.450000px;}
.y54{bottom:444.375000px;}
.yb1{bottom:446.175000px;}
.y96{bottom:450.420000px;}
.y18{bottom:453.600000px;}
.y7f{bottom:457.620000px;}
.y91{bottom:457.875000px;}
.yd5{bottom:459.375000px;}
.y63{bottom:465.975000px;}
.y77{bottom:469.095000px;}
.y83{bottom:469.320000px;}
.y4{bottom:470.250000px;}
.ye9{bottom:476.820000px;}
.yba{bottom:477.945000px;}
.y68{bottom:478.275000px;}
.y5d{bottom:479.325000px;}
.y48{bottom:479.400000px;}
.y2b{bottom:482.220000px;}
.y12{bottom:483.375000px;}
.yc9{bottom:485.220000px;}
.yb0{bottom:489.000000px;}
.ye0{bottom:489.705000px;}
.y7e{bottom:490.275000px;}
.y95{bottom:493.245000px;}
.yd0{bottom:493.875000px;}
.yb6{bottom:494.220000px;}
.y9e{bottom:494.820000px;}
.y8b{bottom:500.130000px;}
.y4f{bottom:504.945000px;}
.y53{bottom:505.200000px;}
.ya8{bottom:506.820000px;}
.y20{bottom:508.620000px;}
.yb{bottom:510.225000px;}
.y28{bottom:511.350000px;}
.y76{bottom:511.875000px;}
.y82{bottom:513.225000px;}
.y38{bottom:513.720000px;}
.y17{bottom:514.470000px;}
.yb9{bottom:521.850000px;}
.y5c{bottom:522.120000px;}
.y7d{bottom:522.945000px;}
.yc{bottom:524.100000px;}
.y2a{bottom:525.000000px;}
.yc8{bottom:529.125000px;}
.yaf{bottom:532.920000px;}
.y3b{bottom:536.475000px;}
.y9d{bottom:538.755000px;}
.y90{bottom:540.000000px;}
.y67{bottom:540.225000px;}
.y3e{bottom:541.320000px;}
.y47{bottom:541.380000px;}
.y71{bottom:545.280000px;}
.y27{bottom:547.425000px;}
.y52{bottom:549.150000px;}
.y11{bottom:549.255000px;}
.y37{bottom:549.750000px;}
.y94{bottom:555.195000px;}
.ya{bottom:557.550000px;}
.y16{bottom:558.375000px;}
.ydf{bottom:562.380000px;}
.y5b{bottom:564.945000px;}
.y29{bottom:567.825000px;}
.y75{bottom:572.745000px;}
.y81{bottom:574.080000px;}
.ye8{bottom:581.580000px;}
.yb8{bottom:582.720000px;}
.y8f{bottom:582.795000px;}
.y66{bottom:583.050000px;}
.ydc{bottom:583.620000px;}
.y46{bottom:584.175000px;}
.y1f{bottom:588.600000px;}
.yc7{bottom:589.950000px;}
.y10{bottom:592.050000px;}
.yae{bottom:593.775000px;}
.y93{bottom:597.975000px;}
.y64{bottom:598.200000px;}
.y9c{bottom:599.595000px;}
.y51{bottom:609.975000px;}
.y3f{bottom:610.095000px;}
.y72{bottom:612.450000px;}
.ydd{bottom:615.030000px;}
.ya7{bottom:616.500000px;}
.y80{bottom:616.875000px;}
.y15{bottom:619.245000px;}
.ydb{bottom:619.695000px;}
.ye7{bottom:624.405000px;}
.yb7{bottom:625.500000px;}
.yad{bottom:636.570000px;}
.yde{bottom:638.175000px;}
.ye{bottom:639.300000px;}
.y92{bottom:640.800000px;}
.y9b{bottom:642.405000px;}
.y22{bottom:643.500000px;}
.y8e{bottom:643.620000px;}
.y65{bottom:643.875000px;}
.y45{bottom:645.000000px;}
.yc6{bottom:650.820000px;}
.y50{bottom:652.800000px;}
.yf{bottom:652.875000px;}
.y3{bottom:653.850000px;}
.yda{bottom:655.725000px;}
.ya6{bottom:659.325000px;}
.y14{bottom:662.025000px;}
.y4a{bottom:663.375000px;}
.y70{bottom:680.070000px;}
.y21{bottom:702.075000px;}
.ye6{bottom:710.250000px;}
.y2{bottom:713.595000px;}
.ye4{bottom:715.275000px;}
.y32{bottom:718.650000px;}
.y1e{bottom:719.475000px;}
.y9{bottom:721.200000px;}
.yd9{bottom:722.130000px;}
.y4c{bottom:724.650000px;}
.y6f{bottom:735.825000px;}
.y3d{bottom:754.575000px;}
.y4b{bottom:757.350000px;}
.yd8{bottom:778.875000px;}
.yd4{bottom:779.820000px;}
.h14{height:52.628906px;}
.h18{height:69.075439px;}
.h17{height:75.092432px;}
.h7{height:77.151929px;}
.h13{height:79.053003px;}
.h12{height:82.033081px;}
.ha{height:87.353467px;}
.h1{height:89.985205px;}
.h16{height:91.145947px;}
.h1b{height:93.733521px;}
.hb{height:93.891943px;}
.h1d{height:105.433960px;}
.h1e{height:105.563965px;}
.h5{height:105.612158px;}
.h4{height:105.742383px;}
.h1a{height:124.560571px;}
.h6{height:124.714160px;}
.h9{height:124.934692px;}
.hd{height:125.064697px;}
.hc{height:125.145850px;}
.he{height:125.276074px;}
.h1c{height:140.772803px;}
.h1f{height:144.679541px;}
.h20{height:144.809766px;}
.h8{height:156.399756px;}
.h15{height:163.203076px;}
.hf{height:163.329492px;}
.h10{height:168.250195px;}
.h19{height:187.783887px;}
.h3{height:215.131055px;}
.h2{height:215.261279px;}
.h11{height:230.368652px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x24{left:10.799979px;}
.x9{left:20.812479px;}
.x25{left:28.837479px;}
.x19{left:41.699979px;}
.x1{left:54.074979px;}
.x17{left:61.574979px;}
.x46{left:66.149979px;}
.x7{left:77.062479px;}
.x3f{left:79.349979px;}
.x8{left:82.912479px;}
.x2{left:85.087479px;}
.x36{left:89.099979px;}
.x43{left:94.012479px;}
.x49{left:96.637479px;}
.x18{left:102.112479px;}
.x3{left:105.674979px;}
.x35{left:111.112479px;}
.x44{left:115.724979px;}
.x40{left:119.887479px;}
.xf{left:123.449979px;}
.x51{left:134.437479px;}
.xc{left:136.949979px;}
.x1b{left:152.249979px;}
.x12{left:162.599979px;}
.x48{left:165.674979px;}
.x23{left:195.299979px;}
.x37{left:214.874979px;}
.x1a{left:229.574979px;}
.x1c{left:272.369979px;}
.xa{left:286.019979px;}
.x13{left:360.074979px;}
.xb{left:370.574979px;}
.x41{left:437.444979px;}
.x11{left:467.879979px;}
.x20{left:469.799979px;}
.x5{left:470.999979px;}
.x10{left:480.524979px;}
.x42{left:543.599979px;}
.x4{left:576.974979px;}
.x6{left:646.754979px;}
.x15{left:657.779979px;}
.xd{left:665.324979px;}
.x22{left:708.674979px;}
.x3b{left:721.499979px;}
.x21{left:729.119979px;}
.x14{left:735.119979px;}
.x3a{left:754.829979px;}
.x33{left:762.569979px;}
.x1d{left:766.469979px;}
.x31{left:767.849979px;}
.x16{left:777.899979px;}
.x27{left:778.919979px;}
.x4a{left:787.649979px;}
.x50{left:788.879979px;}
.x2d{left:790.649979px;}
.x2e{left:793.079979px;}
.x30{left:797.774979px;}
.x2c{left:803.294979px;}
.x34{left:809.774979px;}
.x38{left:812.294979px;}
.x4d{left:815.819979px;}
.x2b{left:832.919979px;}
.x4e{left:836.444979px;}
.x4c{left:870.749979px;}
.x4b{left:881.294979px;}
.x4f{left:898.994979px;}
.x3c{left:930.494979px;}
.x39{left:940.379979px;}
.x3e{left:951.254979px;}
.x3d{left:956.849979px;}
.x45{left:1000.274979px;}
.x47{left:1048.169979px;}
.x2a{left:1054.244979px;}
.x1e{left:1073.174979px;}
.x28{left:1085.624979px;}
.xe{left:1115.669979px;}
.x32{left:1150.724979px;}
.x26{left:1163.699979px;}
.x1f{left:1214.954979px;}
.x29{left:1227.404979px;}
.x2f{left:1255.544979px;}
@media print{
.v4{vertical-align:-49.333333pt;}
.v5{vertical-align:-34.933333pt;}
.v3{vertical-align:-28.533333pt;}
.v1{vertical-align:-26.133333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.133333pt;}
.ls18{letter-spacing:-1.584000pt;}
.ls20{letter-spacing:-1.498667pt;}
.ls1c{letter-spacing:-1.450667pt;}
.ls24{letter-spacing:-1.429333pt;}
.ls16{letter-spacing:-1.408000pt;}
.ls19{letter-spacing:-1.386667pt;}
.ls0{letter-spacing:-1.200000pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls15{letter-spacing:-0.423467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.015600pt;}
.ls1b{letter-spacing:0.072800pt;}
.ls4{letter-spacing:0.122267pt;}
.lsa{letter-spacing:0.167467pt;}
.lsd{letter-spacing:0.586667pt;}
.ls13{letter-spacing:0.672933pt;}
.ls14{letter-spacing:0.688000pt;}
.lsf{letter-spacing:0.821333pt;}
.ls1d{letter-spacing:1.077333pt;}
.ls1e{letter-spacing:1.098667pt;}
.ls25{letter-spacing:1.269333pt;}
.ls1a{letter-spacing:1.450667pt;}
.ls1f{letter-spacing:1.541333pt;}
.lse{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.053333pt;}
.lsc{letter-spacing:2.656000pt;}
.lsb{letter-spacing:2.789333pt;}
.ls2{letter-spacing:8.961867pt;}
.ls3{letter-spacing:9.015200pt;}
.ls6{letter-spacing:9.050400pt;}
.ls5{letter-spacing:44.588533pt;}
.ls7{letter-spacing:57.801467pt;}
.ls22{letter-spacing:82.213333pt;}
.ls21{letter-spacing:82.260000pt;}
.ls23{letter-spacing:82.286667pt;}
.ls12{letter-spacing:99.240000pt;}
.ls10{letter-spacing:99.286667pt;}
.ls8{letter-spacing:147.286667pt;}
.ws11{word-spacing:-128.266667pt;}
.wsf{word-spacing:-128.133333pt;}
.ws10{word-spacing:-37.898667pt;}
.ws18{word-spacing:-34.970133pt;}
.ws16{word-spacing:-32.507067pt;}
.ws4{word-spacing:-28.189333pt;}
.ws1c{word-spacing:-27.280400pt;}
.ws19{word-spacing:-27.088400pt;}
.wsd{word-spacing:-26.624800pt;}
.wsc{word-spacing:-26.038133pt;}
.wsb{word-spacing:-26.011067pt;}
.ws15{word-spacing:-25.587600pt;}
.ws17{word-spacing:-24.624400pt;}
.ws1b{word-spacing:-24.608800pt;}
.ws1a{word-spacing:-24.539467pt;}
.ws1{word-spacing:-24.468267pt;}
.wsa{word-spacing:-22.925333pt;}
.ws13{word-spacing:-21.978133pt;}
.ws12{word-spacing:-21.951067pt;}
.ws9{word-spacing:-20.436800pt;}
.ws14{word-spacing:-20.188000pt;}
.wse{word-spacing:-19.515067pt;}
.ws0{word-spacing:-17.503067pt;}
.ws2{word-spacing:-0.096133pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:7.368267pt;}
.ws5{word-spacing:7.421600pt;}
.ws7{word-spacing:69.874933pt;}
.ws8{word-spacing:70.034933pt;}
._10{margin-left:-62.506667pt;}
._18{margin-left:-14.739067pt;}
._b{margin-left:-10.503200pt;}
._1c{margin-left:-9.491733pt;}
._16{margin-left:-8.374667pt;}
._12{margin-left:-6.952000pt;}
._5{margin-left:-5.620133pt;}
._c{margin-left:-4.557333pt;}
._7{margin-left:-3.648400pt;}
._6{margin-left:-2.266400pt;}
._2{margin-left:-1.197733pt;}
._0{width:1.160800pt;}
._d{width:2.130933pt;}
._a{width:3.253200pt;}
._13{width:4.179200pt;}
._15{width:5.576533pt;}
._14{width:6.819867pt;}
._11{width:9.976400pt;}
._1b{width:27.115467pt;}
._e{width:28.820133pt;}
._f{width:62.176800pt;}
._9{width:73.060933pt;}
._8{width:94.320533pt;}
._19{width:174.922400pt;}
._1a{width:205.044267pt;}
._17{width:241.964400pt;}
._1{width:289.963600pt;}
._3{width:292.111867pt;}
._4{width:365.670267pt;}
.fsc{font-size:64.000000pt;}
.fse{font-size:84.000000pt;}
.fsb{font-size:84.133333pt;}
.fs0{font-size:92.133333pt;}
.fs5{font-size:96.133333pt;}
.fs4{font-size:108.133333pt;}
.fs3{font-size:108.266667pt;}
.fsf{font-size:124.133333pt;}
.fs7{font-size:128.133333pt;}
.fs8{font-size:128.266667pt;}
.fs11{font-size:144.133333pt;}
.fs12{font-size:148.133333pt;}
.fs13{font-size:148.266667pt;}
.fs6{font-size:160.133333pt;}
.fsd{font-size:172.133333pt;}
.fs9{font-size:172.266667pt;}
.fs10{font-size:192.266667pt;}
.fs2{font-size:220.266667pt;}
.fs1{font-size:220.400000pt;}
.fsa{font-size:236.266667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.966667pt;}
.y98{bottom:79.766667pt;}
.y8{bottom:91.533333pt;}
.y24{bottom:94.433333pt;}
.y34{bottom:96.533333pt;}
.yf0{bottom:106.400000pt;}
.yc5{bottom:107.400000pt;}
.yac{bottom:111.166667pt;}
.y1c{bottom:116.733333pt;}
.y9a{bottom:120.800000pt;}
.ya5{bottom:122.400000pt;}
.y23{bottom:126.466667pt;}
.y33{bottom:128.566667pt;}
.y13{bottom:131.900000pt;}
.ycf{bottom:136.866667pt;}
.yef{bottom:145.466667pt;}
.yc4{bottom:146.440000pt;}
.y5a{bottom:147.666667pt;}
.yd{bottom:147.800000pt;}
.y4e{bottom:150.933333pt;}
.y40{bottom:152.160000pt;}
.ye5{bottom:158.160000pt;}
.ya4{bottom:161.466667pt;}
.y6e{bottom:162.773333pt;}
.y31{bottom:165.266667pt;}
.yce{bottom:174.933333pt;}
.y1d{bottom:176.440000pt;}
.y3a{bottom:179.000000pt;}
.y8c{bottom:180.560000pt;}
.yee{bottom:183.506667pt;}
.y62{bottom:185.733333pt;}
.y59{bottom:186.733333pt;}
.y7c{bottom:192.666667pt;}
.y88{bottom:192.840000pt;}
.ya3{bottom:199.506667pt;}
.yc3{bottom:200.533333pt;}
.y30{bottom:204.333333pt;}
.yb5{bottom:210.333333pt;}
.y8d{bottom:213.106667pt;}
.y6d{bottom:216.840000pt;}
.yab{bottom:222.226667pt;}
.ybe{bottom:223.533333pt;}
.y61{bottom:223.760000pt;}
.y58{bottom:224.773333pt;}
.ycd{bottom:230.000000pt;}
.y7b{bottom:230.693333pt;}
.y87{bottom:231.906667pt;}
.ye3{bottom:234.266667pt;}
.y1b{bottom:236.573333pt;}
.yed{bottom:238.560000pt;}
.y2f{bottom:242.373333pt;}
.yb4{bottom:249.400000pt;}
.ya2{bottom:253.600000pt;}
.yc2{bottom:255.600000pt;}
.y6c{bottom:255.906667pt;}
.ybd{bottom:261.600000pt;}
.y57{bottom:263.840000pt;}
.y74{bottom:266.000000pt;}
.ycc{bottom:268.066667pt;}
.y4d{bottom:272.266667pt;}
.y60{bottom:277.866667pt;}
.y2e{bottom:280.440000pt;}
.yd3{bottom:281.800000pt;}
.y7a{bottom:284.773333pt;}
.y86{bottom:285.973333pt;}
.y1a{bottom:286.106667pt;}
.ya1{bottom:292.640000pt;}
.yec{bottom:292.666667pt;}
.yc1{bottom:293.640000pt;}
.y6b{bottom:293.933333pt;}
.y43{bottom:294.133333pt;}
.y73{bottom:295.066667pt;}
.y39{bottom:300.333333pt;}
.y44{bottom:301.640000pt;}
.ye2{bottom:301.666667pt;}
.yb3{bottom:303.466667pt;}
.yd2{bottom:309.840000pt;}
.y97{bottom:314.093333pt;}
.ybc{bottom:315.666667pt;}
.yaa{bottom:317.066667pt;}
.y56{bottom:317.893333pt;}
.y7{bottom:321.866667pt;}
.ycb{bottom:322.133333pt;}
.y79{bottom:323.840000pt;}
.y85{bottom:324.026667pt;}
.yeb{bottom:330.706667pt;}
.yc0{bottom:331.693333pt;}
.y42{bottom:332.173333pt;}
.yd7{bottom:332.226667pt;}
.y5f{bottom:332.933333pt;}
.y26{bottom:333.773333pt;}
.y2d{bottom:335.506667pt;}
.y36{bottom:335.866667pt;}
.yd1{bottom:338.866667pt;}
.y3c{bottom:339.173333pt;}
.yb2{bottom:341.533333pt;}
.y8a{bottom:342.693333pt;}
.ya0{bottom:346.693333pt;}
.y6a{bottom:348.026667pt;}
.y6{bottom:353.893333pt;}
.ya9{bottom:355.133333pt;}
.y55{bottom:355.973333pt;}
.y99{bottom:361.306667pt;}
.y19{bottom:364.173333pt;}
.y25{bottom:365.800000pt;}
.y35{bottom:367.893333pt;}
.ye1{bottom:368.466667pt;}
.y41{bottom:370.226667pt;}
.yd6{bottom:370.266667pt;}
.ybb{bottom:370.773333pt;}
.y5e{bottom:370.973333pt;}
.y89{bottom:371.733333pt;}
.y49{bottom:372.066667pt;}
.y2c{bottom:373.573333pt;}
.yca{bottom:377.200000pt;}
.y78{bottom:377.893333pt;}
.y84{bottom:379.106667pt;}
.y9f{bottom:385.773333pt;}
.yea{bottom:385.800000pt;}
.y5{bottom:385.933333pt;}
.ybf{bottom:386.773333pt;}
.y69{bottom:387.066667pt;}
.y54{bottom:395.000000pt;}
.yb1{bottom:396.600000pt;}
.y96{bottom:400.373333pt;}
.y18{bottom:403.200000pt;}
.y7f{bottom:406.773333pt;}
.y91{bottom:407.000000pt;}
.yd5{bottom:408.333333pt;}
.y63{bottom:414.200000pt;}
.y77{bottom:416.973333pt;}
.y83{bottom:417.173333pt;}
.y4{bottom:418.000000pt;}
.ye9{bottom:423.840000pt;}
.yba{bottom:424.840000pt;}
.y68{bottom:425.133333pt;}
.y5d{bottom:426.066667pt;}
.y48{bottom:426.133333pt;}
.y2b{bottom:428.640000pt;}
.y12{bottom:429.666667pt;}
.yc9{bottom:431.306667pt;}
.yb0{bottom:434.666667pt;}
.ye0{bottom:435.293333pt;}
.y7e{bottom:435.800000pt;}
.y95{bottom:438.440000pt;}
.yd0{bottom:439.000000pt;}
.yb6{bottom:439.306667pt;}
.y9e{bottom:439.840000pt;}
.y8b{bottom:444.560000pt;}
.y4f{bottom:448.840000pt;}
.y53{bottom:449.066667pt;}
.ya8{bottom:450.506667pt;}
.y20{bottom:452.106667pt;}
.yb{bottom:453.533333pt;}
.y28{bottom:454.533333pt;}
.y76{bottom:455.000000pt;}
.y82{bottom:456.200000pt;}
.y38{bottom:456.640000pt;}
.y17{bottom:457.306667pt;}
.yb9{bottom:463.866667pt;}
.y5c{bottom:464.106667pt;}
.y7d{bottom:464.840000pt;}
.yc{bottom:465.866667pt;}
.y2a{bottom:466.666667pt;}
.yc8{bottom:470.333333pt;}
.yaf{bottom:473.706667pt;}
.y3b{bottom:476.866667pt;}
.y9d{bottom:478.893333pt;}
.y90{bottom:480.000000pt;}
.y67{bottom:480.200000pt;}
.y3e{bottom:481.173333pt;}
.y47{bottom:481.226667pt;}
.y71{bottom:484.693333pt;}
.y27{bottom:486.600000pt;}
.y52{bottom:488.133333pt;}
.y11{bottom:488.226667pt;}
.y37{bottom:488.666667pt;}
.y94{bottom:493.506667pt;}
.ya{bottom:495.600000pt;}
.y16{bottom:496.333333pt;}
.ydf{bottom:499.893333pt;}
.y5b{bottom:502.173333pt;}
.y29{bottom:504.733333pt;}
.y75{bottom:509.106667pt;}
.y81{bottom:510.293333pt;}
.ye8{bottom:516.960000pt;}
.yb8{bottom:517.973333pt;}
.y8f{bottom:518.040000pt;}
.y66{bottom:518.266667pt;}
.ydc{bottom:518.773333pt;}
.y46{bottom:519.266667pt;}
.y1f{bottom:523.200000pt;}
.yc7{bottom:524.400000pt;}
.y10{bottom:526.266667pt;}
.yae{bottom:527.800000pt;}
.y93{bottom:531.533333pt;}
.y64{bottom:531.733333pt;}
.y9c{bottom:532.973333pt;}
.y51{bottom:542.200000pt;}
.y3f{bottom:542.306667pt;}
.y72{bottom:544.400000pt;}
.ydd{bottom:546.693333pt;}
.ya7{bottom:548.000000pt;}
.y80{bottom:548.333333pt;}
.y15{bottom:550.440000pt;}
.ydb{bottom:550.840000pt;}
.ye7{bottom:555.026667pt;}
.yb7{bottom:556.000000pt;}
.yad{bottom:565.840000pt;}
.yde{bottom:567.266667pt;}
.ye{bottom:568.266667pt;}
.y92{bottom:569.600000pt;}
.y9b{bottom:571.026667pt;}
.y22{bottom:572.000000pt;}
.y8e{bottom:572.106667pt;}
.y65{bottom:572.333333pt;}
.y45{bottom:573.333333pt;}
.yc6{bottom:578.506667pt;}
.y50{bottom:580.266667pt;}
.yf{bottom:580.333333pt;}
.y3{bottom:581.200000pt;}
.yda{bottom:582.866667pt;}
.ya6{bottom:586.066667pt;}
.y14{bottom:588.466667pt;}
.y4a{bottom:589.666667pt;}
.y70{bottom:604.506667pt;}
.y21{bottom:624.066667pt;}
.ye6{bottom:631.333333pt;}
.y2{bottom:634.306667pt;}
.ye4{bottom:635.800000pt;}
.y32{bottom:638.800000pt;}
.y1e{bottom:639.533333pt;}
.y9{bottom:641.066667pt;}
.yd9{bottom:641.893333pt;}
.y4c{bottom:644.133333pt;}
.y6f{bottom:654.066667pt;}
.y3d{bottom:670.733333pt;}
.y4b{bottom:673.200000pt;}
.yd8{bottom:692.333333pt;}
.yd4{bottom:693.173333pt;}
.h14{height:46.781250pt;}
.h18{height:61.400391pt;}
.h17{height:66.748828pt;}
.h7{height:68.579492pt;}
.h13{height:70.269336pt;}
.h12{height:72.918294pt;}
.ha{height:77.647526pt;}
.h1{height:79.986849pt;}
.h16{height:81.018620pt;}
.h1b{height:83.318685pt;}
.hb{height:83.459505pt;}
.h1d{height:93.719076pt;}
.h1e{height:93.834635pt;}
.h5{height:93.877474pt;}
.h4{height:93.993229pt;}
.h1a{height:110.720508pt;}
.h6{height:110.857031pt;}
.h9{height:111.053060pt;}
.hd{height:111.168620pt;}
.hc{height:111.240755pt;}
.he{height:111.356510pt;}
.h1c{height:125.131380pt;}
.h1f{height:128.604036pt;}
.h20{height:128.719792pt;}
.h8{height:139.022005pt;}
.h15{height:145.069401pt;}
.hf{height:145.181771pt;}
.h10{height:149.555729pt;}
.h19{height:166.919010pt;}
.h3{height:191.227604pt;}
.h2{height:191.343359pt;}
.h11{height:204.772135pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x24{left:9.599981pt;}
.x9{left:18.499981pt;}
.x25{left:25.633314pt;}
.x19{left:37.066648pt;}
.x1{left:48.066648pt;}
.x17{left:54.733314pt;}
.x46{left:58.799981pt;}
.x7{left:68.499981pt;}
.x3f{left:70.533314pt;}
.x8{left:73.699981pt;}
.x2{left:75.633314pt;}
.x36{left:79.199981pt;}
.x43{left:83.566648pt;}
.x49{left:85.899981pt;}
.x18{left:90.766648pt;}
.x3{left:93.933314pt;}
.x35{left:98.766648pt;}
.x44{left:102.866648pt;}
.x40{left:106.566648pt;}
.xf{left:109.733314pt;}
.x51{left:119.499981pt;}
.xc{left:121.733314pt;}
.x1b{left:135.333314pt;}
.x12{left:144.533314pt;}
.x48{left:147.266648pt;}
.x23{left:173.599981pt;}
.x37{left:190.999981pt;}
.x1a{left:204.066648pt;}
.x1c{left:242.106648pt;}
.xa{left:254.239981pt;}
.x13{left:320.066648pt;}
.xb{left:329.399981pt;}
.x41{left:388.839981pt;}
.x11{left:415.893314pt;}
.x20{left:417.599981pt;}
.x5{left:418.666648pt;}
.x10{left:427.133314pt;}
.x42{left:483.199981pt;}
.x4{left:512.866648pt;}
.x6{left:574.893314pt;}
.x15{left:584.693314pt;}
.xd{left:591.399981pt;}
.x22{left:629.933314pt;}
.x3b{left:641.333314pt;}
.x21{left:648.106648pt;}
.x14{left:653.439981pt;}
.x3a{left:670.959981pt;}
.x33{left:677.839981pt;}
.x1d{left:681.306648pt;}
.x31{left:682.533314pt;}
.x16{left:691.466648pt;}
.x27{left:692.373314pt;}
.x4a{left:700.133314pt;}
.x50{left:701.226648pt;}
.x2d{left:702.799981pt;}
.x2e{left:704.959981pt;}
.x30{left:709.133314pt;}
.x2c{left:714.039981pt;}
.x34{left:719.799981pt;}
.x38{left:722.039981pt;}
.x4d{left:725.173314pt;}
.x2b{left:740.373314pt;}
.x4e{left:743.506648pt;}
.x4c{left:773.999981pt;}
.x4b{left:783.373314pt;}
.x4f{left:799.106648pt;}
.x3c{left:827.106648pt;}
.x39{left:835.893314pt;}
.x3e{left:845.559981pt;}
.x3d{left:850.533314pt;}
.x45{left:889.133314pt;}
.x47{left:931.706648pt;}
.x2a{left:937.106648pt;}
.x1e{left:953.933314pt;}
.x28{left:964.999981pt;}
.xe{left:991.706648pt;}
.x32{left:1022.866648pt;}
.x26{left:1034.399981pt;}
.x1f{left:1079.959981pt;}
.x29{left:1091.026648pt;}
.x2f{left:1116.039981pt;}
}




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