
    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_576bf430b05a951f3cecc2dc.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_b9c957af4f46fe767817fef2.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_65ee2b4fb3218841f58cafef.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1286cbd1853bbae095c23062.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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.281250;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_e97976cfa88a08d32af8965c.woff2')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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.813600px;}
.ls1{letter-spacing:-0.331200px;}
.ls4{letter-spacing:-0.325440px;}
.ls7{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.081360px;}
.ls11{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.081360px;}
.ls18{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.236160px;}
.ls8{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.325440px;}
.lsc{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.727200px;}
.ls17{letter-spacing:33.984000px;}
.ls19{letter-spacing:55.411200px;}
.ls16{letter-spacing:64.016640px;}
.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;}
}
.ws22{word-spacing:-59.760000px;}
.ws21{word-spacing:-27.324000px;}
.ws18{word-spacing:-26.784000px;}
.ws1f{word-spacing:-26.676000px;}
.ws4{word-spacing:-20.665440px;}
.ws1{word-spacing:-20.340000px;}
.ws1a{word-spacing:-20.258640px;}
.ws3{word-spacing:-20.014560px;}
.ws12{word-spacing:-19.526400px;}
.ws5{word-spacing:-18.288000px;}
.ws13{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.295040px;}
.ws0{word-spacing:-16.228800px;}
.ws24{word-spacing:-15.840000px;}
.ws11{word-spacing:-1.220400px;}
.ws19{word-spacing:-0.976320px;}
.ws1b{word-spacing:-0.813600px;}
.ws20{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.488160px;}
.wsf{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws16{word-spacing:0.144000px;}
.ws1d{word-spacing:0.216000px;}
.wsd{word-spacing:0.288000px;}
.ws23{word-spacing:0.324000px;}
.ws9{word-spacing:0.331200px;}
.wsc{word-spacing:0.648000px;}
.ws14{word-spacing:0.720000px;}
.ws1c{word-spacing:1.008000px;}
.wse{word-spacing:1.440000px;}
._2{margin-left:-4.053312px;}
._5{margin-left:-2.376000px;}
._1{margin-left:-1.292544px;}
._0{width:1.066464px;}
._3{width:2.125152px;}
._4{width:3.188160px;}
._6{width:4.876992px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y66{bottom:111.240000px;}
.y12f{bottom:113.220000px;}
.y115{bottom:113.580000px;}
.y4a{bottom:113.940000px;}
.y152{bottom:114.120000px;}
.y87{bottom:121.860000px;}
.ye4{bottom:123.660000px;}
.y1e{bottom:124.740000px;}
.yab{bottom:131.580000px;}
.y65{bottom:131.940000px;}
.y12e{bottom:133.920000px;}
.y114{bottom:134.280000px;}
.y49{bottom:134.640000px;}
.y151{bottom:134.820000px;}
.y86{bottom:142.560000px;}
.y103{bottom:144.000000px;}
.ye3{bottom:144.360000px;}
.y1d{bottom:145.440000px;}
.yaa{bottom:152.280000px;}
.y64{bottom:152.640000px;}
.y12d{bottom:154.620000px;}
.y113{bottom:154.980000px;}
.y48{bottom:155.160000px;}
.y150{bottom:155.520000px;}
.yba{bottom:163.080000px;}
.y85{bottom:163.260000px;}
.y102{bottom:164.700000px;}
.yd4{bottom:165.600000px;}
.y1c{bottom:166.140000px;}
.ya9{bottom:172.980000px;}
.y63{bottom:173.340000px;}
.y12c{bottom:175.320000px;}
.y112{bottom:175.680000px;}
.y47{bottom:175.860000px;}
.y14f{bottom:176.220000px;}
.yb9{bottom:183.780000px;}
.y84{bottom:183.960000px;}
.y101{bottom:185.400000px;}
.ye2{bottom:185.940000px;}
.yd3{bottom:186.300000px;}
.y1b{bottom:186.840000px;}
.y62{bottom:194.040000px;}
.y12b{bottom:196.020000px;}
.y46{bottom:196.560000px;}
.y14e{bottom:196.920000px;}
.yb8{bottom:204.480000px;}
.y83{bottom:204.660000px;}
.y100{bottom:206.100000px;}
.ye1{bottom:206.640000px;}
.yd2{bottom:207.000000px;}
.y1a{bottom:207.540000px;}
.y61{bottom:214.740000px;}
.ya8{bottom:216.540000px;}
.y12a{bottom:216.720000px;}
.y45{bottom:217.260000px;}
.y14d{bottom:217.620000px;}
.yb7{bottom:225.180000px;}
.y82{bottom:225.360000px;}
.yff{bottom:226.800000px;}
.yd1{bottom:227.700000px;}
.y19{bottom:228.240000px;}
.y60{bottom:235.440000px;}
.y129{bottom:237.420000px;}
.y44{bottom:237.960000px;}
.y14c{bottom:238.320000px;}
.yb6{bottom:245.880000px;}
.yfe{bottom:247.500000px;}
.yd0{bottom:248.400000px;}
.y18{bottom:248.940000px;}
.y5f{bottom:256.140000px;}
.y128{bottom:258.120000px;}
.y43{bottom:258.660000px;}
.y14b{bottom:259.020000px;}
.y119{bottom:260.820000px;}
.yb5{bottom:266.580000px;}
.ya7{bottom:266.760000px;}
.y81{bottom:267.120000px;}
.ycf{bottom:269.100000px;}
.y127{bottom:278.820000px;}
.y42{bottom:279.360000px;}
.y14a{bottom:279.720000px;}
.yb4{bottom:287.280000px;}
.ya6{bottom:287.460000px;}
.y80{bottom:287.820000px;}
.yfd{bottom:289.260000px;}
.ye0{bottom:289.800000px;}
.y17{bottom:292.140000px;}
.y5e{bottom:297.900000px;}
.y126{bottom:299.520000px;}
.y41{bottom:300.060000px;}
.y149{bottom:300.420000px;}
.yb3{bottom:307.980000px;}
.ya5{bottom:308.160000px;}
.y7f{bottom:308.520000px;}
.yfc{bottom:309.960000px;}
.yce{bottom:310.500000px;}
.y118{bottom:311.040000px;}
.y5d{bottom:318.600000px;}
.y125{bottom:320.220000px;}
.y40{bottom:320.760000px;}
.y148{bottom:321.120000px;}
.yb2{bottom:328.680000px;}
.ya4{bottom:328.860000px;}
.y7e{bottom:329.220000px;}
.yfb{bottom:330.660000px;}
.ydf{bottom:331.200000px;}
.y117{bottom:331.740000px;}
.y5c{bottom:339.300000px;}
.y124{bottom:340.920000px;}
.y3f{bottom:341.460000px;}
.yb1{bottom:349.380000px;}
.ya3{bottom:349.560000px;}
.y7d{bottom:349.920000px;}
.yfa{bottom:351.360000px;}
.yde{bottom:351.900000px;}
.ycd{bottom:352.440000px;}
.y5b{bottom:360.000000px;}
.y123{bottom:361.620000px;}
.y3e{bottom:362.160000px;}
.y147{bottom:364.500000px;}
.ya2{bottom:370.260000px;}
.y7c{bottom:370.620000px;}
.ycc{bottom:373.140000px;}
.y5a{bottom:380.700000px;}
.y3d{bottom:382.860000px;}
.y111{bottom:383.220000px;}
.ya1{bottom:390.960000px;}
.y7b{bottom:391.320000px;}
.y16{bottom:391.500000px;}
.yf9{bottom:392.580000px;}
.ydd{bottom:393.660000px;}
.ycb{bottom:393.840000px;}
.y59{bottom:401.400000px;}
.y3c{bottom:403.560000px;}
.y110{bottom:403.920000px;}
.y122{bottom:405.000000px;}
.ya0{bottom:411.660000px;}
.y7a{bottom:412.020000px;}
.y15{bottom:412.200000px;}
.ydc{bottom:414.360000px;}
.yca{bottom:414.540000px;}
.y146{bottom:414.900000px;}
.y159{bottom:416.340000px;}
.y58{bottom:422.100000px;}
.y10f{bottom:424.620000px;}
.y9f{bottom:432.360000px;}
.y79{bottom:432.720000px;}
.y14{bottom:432.900000px;}
.yf8{bottom:434.700000px;}
.ydb{bottom:435.060000px;}
.yc9{bottom:435.240000px;}
.y145{bottom:435.600000px;}
.y57{bottom:442.800000px;}
.y10e{bottom:445.320000px;}
.y3b{bottom:447.120000px;}
.y9e{bottom:453.060000px;}
.y13{bottom:453.600000px;}
.yf7{bottom:455.400000px;}
.yda{bottom:455.760000px;}
.yc8{bottom:455.940000px;}
.y144{bottom:456.300000px;}
.y158{bottom:457.200000px;}
.y56{bottom:463.500000px;}
.y10d{bottom:466.020000px;}
.y9d{bottom:473.760000px;}
.y12{bottom:474.300000px;}
.yf6{bottom:476.100000px;}
.yd9{bottom:476.460000px;}
.yc7{bottom:476.640000px;}
.y157{bottom:477.900000px;}
.y55{bottom:484.200000px;}
.y10c{bottom:486.720000px;}
.y11{bottom:495.000000px;}
.yf5{bottom:496.800000px;}
.yd8{bottom:497.160000px;}
.y3a{bottom:497.340000px;}
.y143{bottom:497.700000px;}
.y156{bottom:498.600000px;}
.y10b{bottom:507.420000px;}
.y9c{bottom:515.520000px;}
.y10{bottom:515.700000px;}
.yf4{bottom:517.500000px;}
.y39{bottom:518.040000px;}
.y155{bottom:519.300000px;}
.y121{bottom:519.480000px;}
.y54{bottom:525.780000px;}
.y10a{bottom:528.120000px;}
.y142{bottom:535.320000px;}
.y9b{bottom:536.220000px;}
.yf{bottom:536.400000px;}
.yf3{bottom:538.200000px;}
.y38{bottom:538.740000px;}
.yc6{bottom:539.100000px;}
.y154{bottom:540.000000px;}
.y53{bottom:546.480000px;}
.y9a{bottom:556.920000px;}
.ye{bottom:557.100000px;}
.y37{bottom:559.440000px;}
.yc5{bottom:559.800000px;}
.y153{bottom:560.700000px;}
.y52{bottom:567.180000px;}
.y120{bottom:569.880000px;}
.y109{bottom:571.500000px;}
.y99{bottom:577.620000px;}
.yd{bottom:577.800000px;}
.yf2{bottom:579.780000px;}
.y36{bottom:580.140000px;}
.yc4{bottom:580.500000px;}
.y141{bottom:581.400000px;}
.y51{bottom:587.880000px;}
.y11f{bottom:590.580000px;}
.y98{bottom:598.320000px;}
.yc{bottom:598.500000px;}
.yf1{bottom:600.480000px;}
.y35{bottom:600.840000px;}
.yc3{bottom:601.200000px;}
.y140{bottom:602.100000px;}
.y50{bottom:608.580000px;}
.y11e{bottom:611.280000px;}
.y97{bottom:619.020000px;}
.yb{bottom:619.200000px;}
.yf0{bottom:621.180000px;}
.y34{bottom:621.540000px;}
.yc2{bottom:621.900000px;}
.y13f{bottom:622.800000px;}
.y4f{bottom:629.280000px;}
.y11d{bottom:631.980000px;}
.yb0{bottom:639.540000px;}
.y96{bottom:639.720000px;}
.ya{bottom:639.900000px;}
.yef{bottom:641.880000px;}
.yd7{bottom:642.240000px;}
.yc1{bottom:642.600000px;}
.y13e{bottom:643.500000px;}
.y4e{bottom:649.980000px;}
.y11c{bottom:652.680000px;}
.y9{bottom:660.600000px;}
.y33{bottom:663.300000px;}
.y13d{bottom:664.200000px;}
.y4d{bottom:670.680000px;}
.y8{bottom:681.300000px;}
.y78{bottom:681.660000px;}
.yee{bottom:683.640000px;}
.y32{bottom:684.000000px;}
.yd6{bottom:684.180000px;}
.y13c{bottom:684.900000px;}
.y11b{bottom:696.060000px;}
.y7{bottom:702.000000px;}
.y77{bottom:702.360000px;}
.yed{bottom:704.340000px;}
.y108{bottom:704.700000px;}
.yc0{bottom:704.880000px;}
.y13b{bottom:705.600000px;}
.y4c{bottom:712.440000px;}
.y6{bottom:722.700000px;}
.y76{bottom:723.060000px;}
.yec{bottom:725.040000px;}
.y107{bottom:725.400000px;}
.y31{bottom:725.580000px;}
.y13a{bottom:726.300000px;}
.y95{bottom:743.400000px;}
.y75{bottom:743.760000px;}
.yeb{bottom:745.740000px;}
.y30{bottom:746.280000px;}
.y139{bottom:747.000000px;}
.y4b{bottom:758.340000px;}
.y94{bottom:764.100000px;}
.y74{bottom:764.460000px;}
.yea{bottom:766.440000px;}
.ybf{bottom:766.980000px;}
.yd5{bottom:767.340000px;}
.y138{bottom:767.700000px;}
.y93{bottom:784.800000px;}
.y73{bottom:785.160000px;}
.y5{bottom:786.780000px;}
.ye9{bottom:787.140000px;}
.ybe{bottom:787.680000px;}
.y2f{bottom:788.040000px;}
.y137{bottom:788.400000px;}
.y92{bottom:805.500000px;}
.y72{bottom:805.860000px;}
.ybd{bottom:808.380000px;}
.y2e{bottom:808.740000px;}
.y136{bottom:809.100000px;}
.y91{bottom:826.200000px;}
.y71{bottom:826.560000px;}
.ye8{bottom:828.900000px;}
.ybc{bottom:829.080000px;}
.y2d{bottom:829.440000px;}
.y135{bottom:829.800000px;}
.y90{bottom:846.900000px;}
.y70{bottom:847.260000px;}
.ye7{bottom:849.600000px;}
.ybb{bottom:849.780000px;}
.y2c{bottom:850.140000px;}
.y134{bottom:850.500000px;}
.y8f{bottom:867.600000px;}
.y6f{bottom:867.960000px;}
.ye6{bottom:870.300000px;}
.y106{bottom:870.480000px;}
.y2b{bottom:870.840000px;}
.y133{bottom:871.200000px;}
.y4{bottom:882.180000px;}
.y8e{bottom:888.300000px;}
.yaf{bottom:888.660000px;}
.y105{bottom:891.180000px;}
.y2a{bottom:891.540000px;}
.y132{bottom:891.900000px;}
.yae{bottom:909.360000px;}
.y6e{bottom:909.720000px;}
.ye5{bottom:911.520000px;}
.y104{bottom:911.880000px;}
.y29{bottom:912.240000px;}
.y131{bottom:912.600000px;}
.y3{bottom:923.580000px;}
.y8d{bottom:930.060000px;}
.y11a{bottom:932.580000px;}
.y28{bottom:932.940000px;}
.y130{bottom:933.300000px;}
.y8c{bottom:950.760000px;}
.y27{bottom:953.640000px;}
.y6d{bottom:954.000000px;}
.y8b{bottom:971.460000px;}
.y26{bottom:974.340000px;}
.y6c{bottom:974.700000px;}
.y8a{bottom:992.160000px;}
.y25{bottom:995.040000px;}
.y6b{bottom:995.400000px;}
.y89{bottom:1012.860000px;}
.y24{bottom:1015.740000px;}
.y6a{bottom:1016.100000px;}
.y2{bottom:1021.320000px;}
.yad{bottom:1033.560000px;}
.y23{bottom:1036.440000px;}
.y69{bottom:1036.800000px;}
.y88{bottom:1054.620000px;}
.y22{bottom:1057.140000px;}
.y68{bottom:1057.500000px;}
.y1{bottom:1067.940000px;}
.yac{bottom:1075.320000px;}
.y116{bottom:1077.840000px;}
.y67{bottom:1078.200000px;}
.y21{bottom:1098.900000px;}
.y20{bottom:1119.600000px;}
.y1f{bottom:1140.300000px;}
.h9{height:44.149219px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:75.093750px;}
.h2{height:81.995625px;}
.h4{height:108.843750px;}
.h3{height:145.125000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.960000px;}
.x2{left:111.960000px;}
.x3{left:138.960000px;}
.x6{left:165.960000px;}
.x7{left:192.960000px;}
.x5{left:361.800000px;}
.x4{left:807.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.723200pt;}
.ls1{letter-spacing:-0.294400pt;}
.ls4{letter-spacing:-0.289280pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.072320pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.072320pt;}
.ls18{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.209920pt;}
.ls8{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.289280pt;}
.lsc{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.646400pt;}
.ls17{letter-spacing:30.208000pt;}
.ls19{letter-spacing:49.254400pt;}
.ls16{letter-spacing:56.903680pt;}
.ws22{word-spacing:-53.120000pt;}
.ws21{word-spacing:-24.288000pt;}
.ws18{word-spacing:-23.808000pt;}
.ws1f{word-spacing:-23.712000pt;}
.ws4{word-spacing:-18.369280pt;}
.ws1{word-spacing:-18.080000pt;}
.ws1a{word-spacing:-18.007680pt;}
.ws3{word-spacing:-17.790720pt;}
.ws12{word-spacing:-17.356800pt;}
.ws5{word-spacing:-16.256000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.484480pt;}
.ws0{word-spacing:-14.425600pt;}
.ws24{word-spacing:-14.080000pt;}
.ws11{word-spacing:-1.084800pt;}
.ws19{word-spacing:-0.867840pt;}
.ws1b{word-spacing:-0.723200pt;}
.ws20{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.433920pt;}
.wsf{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws16{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.192000pt;}
.wsd{word-spacing:0.256000pt;}
.ws23{word-spacing:0.288000pt;}
.ws9{word-spacing:0.294400pt;}
.wsc{word-spacing:0.576000pt;}
.ws14{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.896000pt;}
.wse{word-spacing:1.280000pt;}
._2{margin-left:-3.602944pt;}
._5{margin-left:-2.112000pt;}
._1{margin-left:-1.148928pt;}
._0{width:0.947968pt;}
._3{width:1.889024pt;}
._4{width:2.833920pt;}
._6{width:4.335104pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:98.880000pt;}
.y12f{bottom:100.640000pt;}
.y115{bottom:100.960000pt;}
.y4a{bottom:101.280000pt;}
.y152{bottom:101.440000pt;}
.y87{bottom:108.320000pt;}
.ye4{bottom:109.920000pt;}
.y1e{bottom:110.880000pt;}
.yab{bottom:116.960000pt;}
.y65{bottom:117.280000pt;}
.y12e{bottom:119.040000pt;}
.y114{bottom:119.360000pt;}
.y49{bottom:119.680000pt;}
.y151{bottom:119.840000pt;}
.y86{bottom:126.720000pt;}
.y103{bottom:128.000000pt;}
.ye3{bottom:128.320000pt;}
.y1d{bottom:129.280000pt;}
.yaa{bottom:135.360000pt;}
.y64{bottom:135.680000pt;}
.y12d{bottom:137.440000pt;}
.y113{bottom:137.760000pt;}
.y48{bottom:137.920000pt;}
.y150{bottom:138.240000pt;}
.yba{bottom:144.960000pt;}
.y85{bottom:145.120000pt;}
.y102{bottom:146.400000pt;}
.yd4{bottom:147.200000pt;}
.y1c{bottom:147.680000pt;}
.ya9{bottom:153.760000pt;}
.y63{bottom:154.080000pt;}
.y12c{bottom:155.840000pt;}
.y112{bottom:156.160000pt;}
.y47{bottom:156.320000pt;}
.y14f{bottom:156.640000pt;}
.yb9{bottom:163.360000pt;}
.y84{bottom:163.520000pt;}
.y101{bottom:164.800000pt;}
.ye2{bottom:165.280000pt;}
.yd3{bottom:165.600000pt;}
.y1b{bottom:166.080000pt;}
.y62{bottom:172.480000pt;}
.y12b{bottom:174.240000pt;}
.y46{bottom:174.720000pt;}
.y14e{bottom:175.040000pt;}
.yb8{bottom:181.760000pt;}
.y83{bottom:181.920000pt;}
.y100{bottom:183.200000pt;}
.ye1{bottom:183.680000pt;}
.yd2{bottom:184.000000pt;}
.y1a{bottom:184.480000pt;}
.y61{bottom:190.880000pt;}
.ya8{bottom:192.480000pt;}
.y12a{bottom:192.640000pt;}
.y45{bottom:193.120000pt;}
.y14d{bottom:193.440000pt;}
.yb7{bottom:200.160000pt;}
.y82{bottom:200.320000pt;}
.yff{bottom:201.600000pt;}
.yd1{bottom:202.400000pt;}
.y19{bottom:202.880000pt;}
.y60{bottom:209.280000pt;}
.y129{bottom:211.040000pt;}
.y44{bottom:211.520000pt;}
.y14c{bottom:211.840000pt;}
.yb6{bottom:218.560000pt;}
.yfe{bottom:220.000000pt;}
.yd0{bottom:220.800000pt;}
.y18{bottom:221.280000pt;}
.y5f{bottom:227.680000pt;}
.y128{bottom:229.440000pt;}
.y43{bottom:229.920000pt;}
.y14b{bottom:230.240000pt;}
.y119{bottom:231.840000pt;}
.yb5{bottom:236.960000pt;}
.ya7{bottom:237.120000pt;}
.y81{bottom:237.440000pt;}
.ycf{bottom:239.200000pt;}
.y127{bottom:247.840000pt;}
.y42{bottom:248.320000pt;}
.y14a{bottom:248.640000pt;}
.yb4{bottom:255.360000pt;}
.ya6{bottom:255.520000pt;}
.y80{bottom:255.840000pt;}
.yfd{bottom:257.120000pt;}
.ye0{bottom:257.600000pt;}
.y17{bottom:259.680000pt;}
.y5e{bottom:264.800000pt;}
.y126{bottom:266.240000pt;}
.y41{bottom:266.720000pt;}
.y149{bottom:267.040000pt;}
.yb3{bottom:273.760000pt;}
.ya5{bottom:273.920000pt;}
.y7f{bottom:274.240000pt;}
.yfc{bottom:275.520000pt;}
.yce{bottom:276.000000pt;}
.y118{bottom:276.480000pt;}
.y5d{bottom:283.200000pt;}
.y125{bottom:284.640000pt;}
.y40{bottom:285.120000pt;}
.y148{bottom:285.440000pt;}
.yb2{bottom:292.160000pt;}
.ya4{bottom:292.320000pt;}
.y7e{bottom:292.640000pt;}
.yfb{bottom:293.920000pt;}
.ydf{bottom:294.400000pt;}
.y117{bottom:294.880000pt;}
.y5c{bottom:301.600000pt;}
.y124{bottom:303.040000pt;}
.y3f{bottom:303.520000pt;}
.yb1{bottom:310.560000pt;}
.ya3{bottom:310.720000pt;}
.y7d{bottom:311.040000pt;}
.yfa{bottom:312.320000pt;}
.yde{bottom:312.800000pt;}
.ycd{bottom:313.280000pt;}
.y5b{bottom:320.000000pt;}
.y123{bottom:321.440000pt;}
.y3e{bottom:321.920000pt;}
.y147{bottom:324.000000pt;}
.ya2{bottom:329.120000pt;}
.y7c{bottom:329.440000pt;}
.ycc{bottom:331.680000pt;}
.y5a{bottom:338.400000pt;}
.y3d{bottom:340.320000pt;}
.y111{bottom:340.640000pt;}
.ya1{bottom:347.520000pt;}
.y7b{bottom:347.840000pt;}
.y16{bottom:348.000000pt;}
.yf9{bottom:348.960000pt;}
.ydd{bottom:349.920000pt;}
.ycb{bottom:350.080000pt;}
.y59{bottom:356.800000pt;}
.y3c{bottom:358.720000pt;}
.y110{bottom:359.040000pt;}
.y122{bottom:360.000000pt;}
.ya0{bottom:365.920000pt;}
.y7a{bottom:366.240000pt;}
.y15{bottom:366.400000pt;}
.ydc{bottom:368.320000pt;}
.yca{bottom:368.480000pt;}
.y146{bottom:368.800000pt;}
.y159{bottom:370.080000pt;}
.y58{bottom:375.200000pt;}
.y10f{bottom:377.440000pt;}
.y9f{bottom:384.320000pt;}
.y79{bottom:384.640000pt;}
.y14{bottom:384.800000pt;}
.yf8{bottom:386.400000pt;}
.ydb{bottom:386.720000pt;}
.yc9{bottom:386.880000pt;}
.y145{bottom:387.200000pt;}
.y57{bottom:393.600000pt;}
.y10e{bottom:395.840000pt;}
.y3b{bottom:397.440000pt;}
.y9e{bottom:402.720000pt;}
.y13{bottom:403.200000pt;}
.yf7{bottom:404.800000pt;}
.yda{bottom:405.120000pt;}
.yc8{bottom:405.280000pt;}
.y144{bottom:405.600000pt;}
.y158{bottom:406.400000pt;}
.y56{bottom:412.000000pt;}
.y10d{bottom:414.240000pt;}
.y9d{bottom:421.120000pt;}
.y12{bottom:421.600000pt;}
.yf6{bottom:423.200000pt;}
.yd9{bottom:423.520000pt;}
.yc7{bottom:423.680000pt;}
.y157{bottom:424.800000pt;}
.y55{bottom:430.400000pt;}
.y10c{bottom:432.640000pt;}
.y11{bottom:440.000000pt;}
.yf5{bottom:441.600000pt;}
.yd8{bottom:441.920000pt;}
.y3a{bottom:442.080000pt;}
.y143{bottom:442.400000pt;}
.y156{bottom:443.200000pt;}
.y10b{bottom:451.040000pt;}
.y9c{bottom:458.240000pt;}
.y10{bottom:458.400000pt;}
.yf4{bottom:460.000000pt;}
.y39{bottom:460.480000pt;}
.y155{bottom:461.600000pt;}
.y121{bottom:461.760000pt;}
.y54{bottom:467.360000pt;}
.y10a{bottom:469.440000pt;}
.y142{bottom:475.840000pt;}
.y9b{bottom:476.640000pt;}
.yf{bottom:476.800000pt;}
.yf3{bottom:478.400000pt;}
.y38{bottom:478.880000pt;}
.yc6{bottom:479.200000pt;}
.y154{bottom:480.000000pt;}
.y53{bottom:485.760000pt;}
.y9a{bottom:495.040000pt;}
.ye{bottom:495.200000pt;}
.y37{bottom:497.280000pt;}
.yc5{bottom:497.600000pt;}
.y153{bottom:498.400000pt;}
.y52{bottom:504.160000pt;}
.y120{bottom:506.560000pt;}
.y109{bottom:508.000000pt;}
.y99{bottom:513.440000pt;}
.yd{bottom:513.600000pt;}
.yf2{bottom:515.360000pt;}
.y36{bottom:515.680000pt;}
.yc4{bottom:516.000000pt;}
.y141{bottom:516.800000pt;}
.y51{bottom:522.560000pt;}
.y11f{bottom:524.960000pt;}
.y98{bottom:531.840000pt;}
.yc{bottom:532.000000pt;}
.yf1{bottom:533.760000pt;}
.y35{bottom:534.080000pt;}
.yc3{bottom:534.400000pt;}
.y140{bottom:535.200000pt;}
.y50{bottom:540.960000pt;}
.y11e{bottom:543.360000pt;}
.y97{bottom:550.240000pt;}
.yb{bottom:550.400000pt;}
.yf0{bottom:552.160000pt;}
.y34{bottom:552.480000pt;}
.yc2{bottom:552.800000pt;}
.y13f{bottom:553.600000pt;}
.y4f{bottom:559.360000pt;}
.y11d{bottom:561.760000pt;}
.yb0{bottom:568.480000pt;}
.y96{bottom:568.640000pt;}
.ya{bottom:568.800000pt;}
.yef{bottom:570.560000pt;}
.yd7{bottom:570.880000pt;}
.yc1{bottom:571.200000pt;}
.y13e{bottom:572.000000pt;}
.y4e{bottom:577.760000pt;}
.y11c{bottom:580.160000pt;}
.y9{bottom:587.200000pt;}
.y33{bottom:589.600000pt;}
.y13d{bottom:590.400000pt;}
.y4d{bottom:596.160000pt;}
.y8{bottom:605.600000pt;}
.y78{bottom:605.920000pt;}
.yee{bottom:607.680000pt;}
.y32{bottom:608.000000pt;}
.yd6{bottom:608.160000pt;}
.y13c{bottom:608.800000pt;}
.y11b{bottom:618.720000pt;}
.y7{bottom:624.000000pt;}
.y77{bottom:624.320000pt;}
.yed{bottom:626.080000pt;}
.y108{bottom:626.400000pt;}
.yc0{bottom:626.560000pt;}
.y13b{bottom:627.200000pt;}
.y4c{bottom:633.280000pt;}
.y6{bottom:642.400000pt;}
.y76{bottom:642.720000pt;}
.yec{bottom:644.480000pt;}
.y107{bottom:644.800000pt;}
.y31{bottom:644.960000pt;}
.y13a{bottom:645.600000pt;}
.y95{bottom:660.800000pt;}
.y75{bottom:661.120000pt;}
.yeb{bottom:662.880000pt;}
.y30{bottom:663.360000pt;}
.y139{bottom:664.000000pt;}
.y4b{bottom:674.080000pt;}
.y94{bottom:679.200000pt;}
.y74{bottom:679.520000pt;}
.yea{bottom:681.280000pt;}
.ybf{bottom:681.760000pt;}
.yd5{bottom:682.080000pt;}
.y138{bottom:682.400000pt;}
.y93{bottom:697.600000pt;}
.y73{bottom:697.920000pt;}
.y5{bottom:699.360000pt;}
.ye9{bottom:699.680000pt;}
.ybe{bottom:700.160000pt;}
.y2f{bottom:700.480000pt;}
.y137{bottom:700.800000pt;}
.y92{bottom:716.000000pt;}
.y72{bottom:716.320000pt;}
.ybd{bottom:718.560000pt;}
.y2e{bottom:718.880000pt;}
.y136{bottom:719.200000pt;}
.y91{bottom:734.400000pt;}
.y71{bottom:734.720000pt;}
.ye8{bottom:736.800000pt;}
.ybc{bottom:736.960000pt;}
.y2d{bottom:737.280000pt;}
.y135{bottom:737.600000pt;}
.y90{bottom:752.800000pt;}
.y70{bottom:753.120000pt;}
.ye7{bottom:755.200000pt;}
.ybb{bottom:755.360000pt;}
.y2c{bottom:755.680000pt;}
.y134{bottom:756.000000pt;}
.y8f{bottom:771.200000pt;}
.y6f{bottom:771.520000pt;}
.ye6{bottom:773.600000pt;}
.y106{bottom:773.760000pt;}
.y2b{bottom:774.080000pt;}
.y133{bottom:774.400000pt;}
.y4{bottom:784.160000pt;}
.y8e{bottom:789.600000pt;}
.yaf{bottom:789.920000pt;}
.y105{bottom:792.160000pt;}
.y2a{bottom:792.480000pt;}
.y132{bottom:792.800000pt;}
.yae{bottom:808.320000pt;}
.y6e{bottom:808.640000pt;}
.ye5{bottom:810.240000pt;}
.y104{bottom:810.560000pt;}
.y29{bottom:810.880000pt;}
.y131{bottom:811.200000pt;}
.y3{bottom:820.960000pt;}
.y8d{bottom:826.720000pt;}
.y11a{bottom:828.960000pt;}
.y28{bottom:829.280000pt;}
.y130{bottom:829.600000pt;}
.y8c{bottom:845.120000pt;}
.y27{bottom:847.680000pt;}
.y6d{bottom:848.000000pt;}
.y8b{bottom:863.520000pt;}
.y26{bottom:866.080000pt;}
.y6c{bottom:866.400000pt;}
.y8a{bottom:881.920000pt;}
.y25{bottom:884.480000pt;}
.y6b{bottom:884.800000pt;}
.y89{bottom:900.320000pt;}
.y24{bottom:902.880000pt;}
.y6a{bottom:903.200000pt;}
.y2{bottom:907.840000pt;}
.yad{bottom:918.720000pt;}
.y23{bottom:921.280000pt;}
.y69{bottom:921.600000pt;}
.y88{bottom:937.440000pt;}
.y22{bottom:939.680000pt;}
.y68{bottom:940.000000pt;}
.y1{bottom:949.280000pt;}
.yac{bottom:955.840000pt;}
.y116{bottom:958.080000pt;}
.y67{bottom:958.400000pt;}
.y21{bottom:976.800000pt;}
.y20{bottom:995.200000pt;}
.y1f{bottom:1013.600000pt;}
.h9{height:39.243750pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:66.750000pt;}
.h2{height:72.885000pt;}
.h4{height:96.750000pt;}
.h3{height:129.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.520000pt;}
.x2{left:99.520000pt;}
.x3{left:123.520000pt;}
.x6{left:147.520000pt;}
.x7{left:171.520000pt;}
.x5{left:321.600000pt;}
.x4{left:718.080000pt;}
}




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