
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_445048992a2c343d0c664e2a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aeaf1c8d685c46ee70265743.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_f803d75a8a99064f2d8882a7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_16a839d1d064f26647240a43.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_5e71ec1b32b72f31225a7042.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_899742ad8b729616ae57018e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1a538591ff62ca4c6508171d.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m2{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v6{vertical-align:-45.360000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:45.360000px;}
.lsd{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.ls12{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.274800px;}
.lsf{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.262080px;}
.lse{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:6.785280px;}
.ls7{letter-spacing:12.960000px;}
.ls8{letter-spacing:16.560000px;}
.ls6{letter-spacing:23.040000px;}
.ls14{letter-spacing:39.905280px;}
.ls9{letter-spacing:59.345280px;}
.ls13{letter-spacing:64.080000px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws7{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.297800px;}
.ws11{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.145400px;}
.wsf{word-spacing:-16.102200px;}
.ws10{word-spacing:-15.948000px;}
.wsa{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-13.939200px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._2a{margin-left:-5.080560px;}
._2b{margin-left:-3.576960px;}
._10{margin-left:-2.053440px;}
._0{margin-left:-1.044000px;}
._1{width:1.596000px;}
._12{width:2.650080px;}
._11{width:4.305120px;}
._4{width:5.738880px;}
._3{width:7.683840px;}
._e{width:9.074880px;}
._f{width:10.200960px;}
._1f{width:11.360160px;}
._6{width:12.508320px;}
._5{width:13.563360px;}
._7{width:15.099360px;}
._1e{width:17.818560px;}
._14{width:19.077120px;}
._15{width:20.534400px;}
._19{width:21.575520px;}
._18{width:22.654080px;}
._16{width:23.978880px;}
._17{width:25.429920px;}
._1a{width:26.760960px;}
._9{width:27.889920px;}
._8{width:28.946880px;}
._2f{width:29.985600px;}
._1b{width:31.126560px;}
._1c{width:32.921280px;}
._1d{width:34.246080px;}
._20{width:35.956800px;}
._b{width:37.226880px;}
._c{width:38.403360px;}
._27{width:39.608160px;}
._29{width:41.019840px;}
._a{width:42.086880px;}
._21{width:43.977600px;}
._28{width:45.994080px;}
._d{width:47.427840px;}
._13{width:48.437760px;}
._33{width:49.878720px;}
._34{width:51.932160px;}
._2d{width:53.149440px;}
._30{width:54.469440px;}
._31{width:55.499040px;}
._2e{width:57.381120px;}
._2c{width:60.209280px;}
._22{width:62.020800px;}
._24{width:63.600000px;}
._23{width:64.818480px;}
._35{width:66.090720px;}
._25{width:67.892160px;}
._26{width:69.145920px;}
._32{width:105.387840px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.ya{bottom:20.880000px;}
.y38{bottom:30.600000px;}
.y37{bottom:46.980000px;}
.y39{bottom:48.420000px;}
.y3a{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y36{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y35{bottom:79.056000px;}
.yec{bottom:95.976000px;}
.y30{bottom:97.596000px;}
.ya9{bottom:99.396000px;}
.y78{bottom:99.936000px;}
.ycc{bottom:104.616000px;}
.y10a{bottom:109.836000px;}
.y5d{bottom:112.176000px;}
.yeb{bottom:124.416000px;}
.y2f{bottom:126.036000px;}
.ya8{bottom:127.836000px;}
.ycb{bottom:133.056000px;}
.y109{bottom:138.456000px;}
.y5c{bottom:140.616000px;}
.y8e{bottom:142.776000px;}
.yc3{bottom:145.476000px;}
.yea{bottom:152.850000px;}
.y2e{bottom:154.470000px;}
.ya7{bottom:156.270000px;}
.yca{bottom:161.670000px;}
.y108{bottom:166.890000px;}
.y5b{bottom:169.050000px;}
.yc2{bottom:174.270000px;}
.y8d{bottom:176.430000px;}
.ye9{bottom:181.290000px;}
.y2d{bottom:182.910000px;}
.ya6{bottom:184.710000px;}
.yc9{bottom:190.110000px;}
.y107{bottom:195.330000px;}
.y5a{bottom:197.490000px;}
.y8c{bottom:204.870000px;}
.yc1{bottom:207.930000px;}
.ye8{bottom:209.730000px;}
.y32{bottom:210.990000px;}
.y2c{bottom:211.350000px;}
.ya5{bottom:213.330000px;}
.yc8{bottom:218.550000px;}
.y106{bottom:223.770000px;}
.y59{bottom:225.930000px;}
.y8b{bottom:233.310000px;}
.yc0{bottom:236.550000px;}
.ye7{bottom:238.170000px;}
.y2b{bottom:239.790000px;}
.ya4{bottom:241.770000px;}
.yc7{bottom:246.990000px;}
.y105{bottom:252.210000px;}
.y58{bottom:254.370000px;}
.y8a{bottom:261.750000px;}
.ybf{bottom:264.990000px;}
.ye6{bottom:266.610000px;}
.y2a{bottom:268.230000px;}
.ya3{bottom:269.850000px;}
.yf0{bottom:270.210000px;}
.yc6{bottom:275.430000px;}
.y104{bottom:280.650000px;}
.y57{bottom:282.810000px;}
.y89{bottom:290.190000px;}
.ybe{bottom:293.430000px;}
.ye5{bottom:295.230000px;}
.y29{bottom:296.850000px;}
.ya2{bottom:298.650000px;}
.yc5{bottom:303.870000px;}
.y103{bottom:309.090000px;}
.y56{bottom:311.430000px;}
.y88{bottom:318.675000px;}
.ybd{bottom:321.915000px;}
.ye4{bottom:323.715000px;}
.y28{bottom:325.335000px;}
.yef{bottom:326.775000px;}
.ya1{bottom:332.355000px;}
.y102{bottom:337.575000px;}
.y55{bottom:339.555000px;}
.y87{bottom:347.115000px;}
.ybc{bottom:350.355000px;}
.ye3{bottom:351.795000px;}
.y27{bottom:353.775000px;}
.yee{bottom:355.575000px;}
.ya0{bottom:360.795000px;}
.y101{bottom:366.015000px;}
.y54{bottom:368.355000px;}
.y86{bottom:375.555000px;}
.ybb{bottom:378.795000px;}
.ye2{bottom:381.855000px;}
.y26{bottom:382.215000px;}
.y77{bottom:383.295000px;}
.y9f{bottom:389.235000px;}
.y100{bottom:394.635000px;}
.y53{bottom:396.795000px;}
.y85{bottom:404.175000px;}
.yba{bottom:407.235000px;}
.y25{bottom:410.655000px;}
.y76{bottom:411.915000px;}
.ye1{bottom:412.095000px;}
.y9e{bottom:417.855000px;}
.yff{bottom:423.075000px;}
.y52{bottom:425.235000px;}
.y84{bottom:432.615000px;}
.yb9{bottom:435.675000px;}
.y24{bottom:439.095000px;}
.y75{bottom:440.355000px;}
.ye0{bottom:442.155000px;}
.y9d{bottom:446.295000px;}
.yfe{bottom:451.515000px;}
.y51{bottom:453.675000px;}
.y83{bottom:460.695000px;}
.y23{bottom:467.535000px;}
.y74{bottom:468.795000px;}
.yb8{bottom:469.515000px;}
.ydf{bottom:472.395000px;}
.y9c{bottom:474.735000px;}
.yfd{bottom:479.955000px;}
.y50{bottom:482.115000px;}
.y82{bottom:489.495000px;}
.y22{bottom:495.975000px;}
.y73{bottom:497.235000px;}
.yb7{bottom:497.955000px;}
.yde{bottom:502.455000px;}
.y9b{bottom:503.175000px;}
.yfc{bottom:508.395000px;}
.y4f{bottom:510.555000px;}
.y81{bottom:523.155000px;}
.y21{bottom:524.415000px;}
.y72{bottom:525.675000px;}
.yb6{bottom:526.395000px;}
.y9a{bottom:531.615000px;}
.ydd{bottom:532.515000px;}
.yfb{bottom:536.835000px;}
.y4e{bottom:538.995000px;}
.y80{bottom:551.595000px;}
.y20{bottom:552.675000px;}
.y31{bottom:553.035000px;}
.y71{bottom:554.295000px;}
.yb5{bottom:554.835000px;}
.y99{bottom:560.055000px;}
.ydc{bottom:562.755000px;}
.yfa{bottom:565.275000px;}
.y4d{bottom:567.615000px;}
.y7f{bottom:580.065000px;}
.yb4{bottom:583.305000px;}
.y70{bottom:583.845000px;}
.y1f{bottom:585.105000px;}
.y98{bottom:588.525000px;}
.ydb{bottom:592.845000px;}
.yf9{bottom:593.745000px;}
.y4c{bottom:596.085000px;}
.y7e{bottom:608.505000px;}
.yb3{bottom:611.745000px;}
.y6f{bottom:613.545000px;}
.y1e{bottom:613.725000px;}
.y97{bottom:616.965000px;}
.yf8{bottom:622.185000px;}
.yda{bottom:623.085000px;}
.y4b{bottom:624.525000px;}
.y7d{bottom:637.125000px;}
.yb2{bottom:640.185000px;}
.y6e{bottom:641.985000px;}
.y1d{bottom:642.165000px;}
.y96{bottom:645.405000px;}
.yf7{bottom:650.805000px;}
.y4a{bottom:652.965000px;}
.yd9{bottom:653.145000px;}
.y7c{bottom:665.565000px;}
.yb1{bottom:668.265000px;}
.y1c{bottom:670.605000px;}
.y6d{bottom:671.505000px;}
.y95{bottom:674.025000px;}
.yf6{bottom:679.245000px;}
.y49{bottom:681.405000px;}
.yd8{bottom:683.385000px;}
.y7b{bottom:693.645000px;}
.yb0{bottom:697.245000px;}
.y1b{bottom:699.045000px;}
.y6c{bottom:700.125000px;}
.y94{bottom:702.465000px;}
.yf5{bottom:707.685000px;}
.y48{bottom:709.845000px;}
.yd7{bottom:713.445000px;}
.y7a{bottom:718.485000px;}
.y1a{bottom:727.485000px;}
.y6b{bottom:729.645000px;}
.y93{bottom:730.545000px;}
.yaf{bottom:730.905000px;}
.yf4{bottom:736.125000px;}
.y47{bottom:743.505000px;}
.yd6{bottom:743.685000px;}
.y19{bottom:755.925000px;}
.y6a{bottom:758.265000px;}
.y92{bottom:758.985000px;}
.yae{bottom:759.345000px;}
.yf3{bottom:764.565000px;}
.y46{bottom:771.945000px;}
.yd5{bottom:773.745000px;}
.y18{bottom:784.365000px;}
.y69{bottom:787.785000px;}
.yf2{bottom:793.005000px;}
.y45{bottom:800.565000px;}
.yd4{bottom:803.985000px;}
.y17{bottom:812.805000px;}
.y68{bottom:816.225000px;}
.yf1{bottom:821.130000px;}
.y91{bottom:821.490000px;}
.y44{bottom:829.050000px;}
.yd3{bottom:834.090000px;}
.y67{bottom:844.710000px;}
.y16{bottom:847.230000px;}
.y90{bottom:849.930000px;}
.y43{bottom:862.710000px;}
.yd2{bottom:864.150000px;}
.y66{bottom:873.150000px;}
.y15{bottom:875.850000px;}
.y8f{bottom:878.370000px;}
.y42{bottom:891.150000px;}
.yd1{bottom:894.390000px;}
.yad{bottom:901.590000px;}
.yed{bottom:901.770000px;}
.y14{bottom:904.290000px;}
.y65{bottom:906.990000px;}
.y41{bottom:919.590000px;}
.yd0{bottom:924.450000px;}
.yac{bottom:930.210000px;}
.y13{bottom:932.730000px;}
.y64{bottom:935.430000px;}
.y40{bottom:948.030000px;}
.ycf{bottom:953.430000px;}
.yab{bottom:958.650000px;}
.y12{bottom:961.170000px;}
.y63{bottom:963.870000px;}
.y3f{bottom:976.470000px;}
.yaa{bottom:987.090000px;}
.y11{bottom:989.610000px;}
.y62{bottom:992.310000px;}
.y3e{bottom:1005.090000px;}
.y10{bottom:1011.750000px;}
.yce{bottom:1015.530000px;}
.y61{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y3d{bottom:1038.750000px;}
.ycd{bottom:1043.970000px;}
.y60{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y3c{bottom:1072.440000px;}
.y2{bottom:1072.620000px;}
.yc4{bottom:1077.300000px;}
.y5f{bottom:1077.660000px;}
.y3b{bottom:1100.880000px;}
.y79{bottom:1105.740000px;}
.y5e{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y34{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y33{bottom:1141.740000px;}
.h6{height:33.480000px;}
.hc{height:41.250938px;}
.hb{height:42.997500px;}
.h1{height:48.045938px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h13{height:57.992344px;}
.h2{height:58.621992px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.h17{height:65.465156px;}
.ha{height:66.757500px;}
.h14{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h16{height:86.321156px;}
.h12{height:86.345156px;}
.h15{height:111.043838px;}
.h10{height:111.043849px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x26{left:80.999986px;}
.x1c{left:95.435986px;}
.x1d{left:107.495986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x1a{left:143.855986px;}
.x22{left:146.735986px;}
.x1b{left:161.129986px;}
.x23{left:163.469986px;}
.x1e{left:185.609986px;}
.x14{left:187.049986px;}
.x1f{left:197.669986px;}
.x15{left:201.629986px;}
.x24{left:216.029986px;}
.x25{left:234.389986px;}
.x16{left:240.149986px;}
.x20{left:248.969986px;}
.x17{left:254.729986px;}
.x21{left:261.029986px;}
.x18{left:332.354986px;}
.x19{left:354.134986px;}
.x11{left:393.194986px;}
.xe{left:409.574986px;}
.x12{left:412.094986px;}
.x13{left:436.034986px;}
.x8{left:482.144986px;}
.xc{left:509.144986px;}
.x5{left:521.025000px;}
.xf{left:605.264986px;}
.x10{left:617.324986px;}
.xd{left:864.689986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v6{vertical-align:-40.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:40.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls12{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.244267pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:6.031360pt;}
.ls7{letter-spacing:11.520000pt;}
.ls8{letter-spacing:14.720000pt;}
.ls6{letter-spacing:20.480000pt;}
.ls14{letter-spacing:35.471360pt;}
.ls9{letter-spacing:52.751360pt;}
.ls13{letter-spacing:56.960000pt;}
.ls0{letter-spacing:184.370347pt;}
.wsc{word-spacing:-58.880000pt;}
.ws7{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.486933pt;}
.ws11{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.351467pt;}
.wsf{word-spacing:-14.313067pt;}
.ws10{word-spacing:-14.176000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-12.390400pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._2a{margin-left:-4.516053pt;}
._2b{margin-left:-3.179520pt;}
._10{margin-left:-1.825280pt;}
._0{margin-left:-0.928000pt;}
._1{width:1.418667pt;}
._12{width:2.355627pt;}
._11{width:3.826773pt;}
._4{width:5.101227pt;}
._3{width:6.830080pt;}
._e{width:8.066560pt;}
._f{width:9.067520pt;}
._1f{width:10.097920pt;}
._6{width:11.118507pt;}
._5{width:12.056320pt;}
._7{width:13.421653pt;}
._1e{width:15.838720pt;}
._14{width:16.957440pt;}
._15{width:18.252800pt;}
._19{width:19.178240pt;}
._18{width:20.136960pt;}
._16{width:21.314560pt;}
._17{width:22.604373pt;}
._1a{width:23.787520pt;}
._9{width:24.791040pt;}
._8{width:25.730560pt;}
._2f{width:26.653867pt;}
._1b{width:27.668053pt;}
._1c{width:29.263360pt;}
._1d{width:30.440960pt;}
._20{width:31.961600pt;}
._b{width:33.090560pt;}
._c{width:34.136320pt;}
._27{width:35.207253pt;}
._29{width:36.462080pt;}
._a{width:37.410560pt;}
._21{width:39.091200pt;}
._28{width:40.883627pt;}
._d{width:42.158080pt;}
._13{width:43.055787pt;}
._33{width:44.336640pt;}
._34{width:46.161920pt;}
._2d{width:47.243947pt;}
._30{width:48.417280pt;}
._31{width:49.332480pt;}
._2e{width:51.005440pt;}
._2c{width:53.519360pt;}
._22{width:55.129600pt;}
._24{width:56.533333pt;}
._23{width:57.616427pt;}
._35{width:58.747307pt;}
._25{width:60.348587pt;}
._26{width:61.463040pt;}
._32{width:93.678080pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.ya{bottom:18.560000pt;}
.y38{bottom:27.200000pt;}
.y37{bottom:41.760000pt;}
.y39{bottom:43.040000pt;}
.y3a{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y36{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y35{bottom:70.272000pt;}
.yec{bottom:85.312000pt;}
.y30{bottom:86.752000pt;}
.ya9{bottom:88.352000pt;}
.y78{bottom:88.832000pt;}
.ycc{bottom:92.992000pt;}
.y10a{bottom:97.632000pt;}
.y5d{bottom:99.712000pt;}
.yeb{bottom:110.592000pt;}
.y2f{bottom:112.032000pt;}
.ya8{bottom:113.632000pt;}
.ycb{bottom:118.272000pt;}
.y109{bottom:123.072000pt;}
.y5c{bottom:124.992000pt;}
.y8e{bottom:126.912000pt;}
.yc3{bottom:129.312000pt;}
.yea{bottom:135.866667pt;}
.y2e{bottom:137.306667pt;}
.ya7{bottom:138.906667pt;}
.yca{bottom:143.706667pt;}
.y108{bottom:148.346667pt;}
.y5b{bottom:150.266667pt;}
.yc2{bottom:154.906667pt;}
.y8d{bottom:156.826667pt;}
.ye9{bottom:161.146667pt;}
.y2d{bottom:162.586667pt;}
.ya6{bottom:164.186667pt;}
.yc9{bottom:168.986667pt;}
.y107{bottom:173.626667pt;}
.y5a{bottom:175.546667pt;}
.y8c{bottom:182.106667pt;}
.yc1{bottom:184.826667pt;}
.ye8{bottom:186.426667pt;}
.y32{bottom:187.546667pt;}
.y2c{bottom:187.866667pt;}
.ya5{bottom:189.626667pt;}
.yc8{bottom:194.266667pt;}
.y106{bottom:198.906667pt;}
.y59{bottom:200.826667pt;}
.y8b{bottom:207.386667pt;}
.yc0{bottom:210.266667pt;}
.ye7{bottom:211.706667pt;}
.y2b{bottom:213.146667pt;}
.ya4{bottom:214.906667pt;}
.yc7{bottom:219.546667pt;}
.y105{bottom:224.186667pt;}
.y58{bottom:226.106667pt;}
.y8a{bottom:232.666667pt;}
.ybf{bottom:235.546667pt;}
.ye6{bottom:236.986667pt;}
.y2a{bottom:238.426667pt;}
.ya3{bottom:239.866667pt;}
.yf0{bottom:240.186667pt;}
.yc6{bottom:244.826667pt;}
.y104{bottom:249.466667pt;}
.y57{bottom:251.386667pt;}
.y89{bottom:257.946667pt;}
.ybe{bottom:260.826667pt;}
.ye5{bottom:262.426667pt;}
.y29{bottom:263.866667pt;}
.ya2{bottom:265.466667pt;}
.yc5{bottom:270.106667pt;}
.y103{bottom:274.746667pt;}
.y56{bottom:276.826667pt;}
.y88{bottom:283.266667pt;}
.ybd{bottom:286.146667pt;}
.ye4{bottom:287.746667pt;}
.y28{bottom:289.186667pt;}
.yef{bottom:290.466667pt;}
.ya1{bottom:295.426667pt;}
.y102{bottom:300.066667pt;}
.y55{bottom:301.826667pt;}
.y87{bottom:308.546667pt;}
.ybc{bottom:311.426667pt;}
.ye3{bottom:312.706667pt;}
.y27{bottom:314.466667pt;}
.yee{bottom:316.066667pt;}
.ya0{bottom:320.706667pt;}
.y101{bottom:325.346667pt;}
.y54{bottom:327.426667pt;}
.y86{bottom:333.826667pt;}
.ybb{bottom:336.706667pt;}
.ye2{bottom:339.426667pt;}
.y26{bottom:339.746667pt;}
.y77{bottom:340.706667pt;}
.y9f{bottom:345.986667pt;}
.y100{bottom:350.786667pt;}
.y53{bottom:352.706667pt;}
.y85{bottom:359.266667pt;}
.yba{bottom:361.986667pt;}
.y25{bottom:365.026667pt;}
.y76{bottom:366.146667pt;}
.ye1{bottom:366.306667pt;}
.y9e{bottom:371.426667pt;}
.yff{bottom:376.066667pt;}
.y52{bottom:377.986667pt;}
.y84{bottom:384.546667pt;}
.yb9{bottom:387.266667pt;}
.y24{bottom:390.306667pt;}
.y75{bottom:391.426667pt;}
.ye0{bottom:393.026667pt;}
.y9d{bottom:396.706667pt;}
.yfe{bottom:401.346667pt;}
.y51{bottom:403.266667pt;}
.y83{bottom:409.506667pt;}
.y23{bottom:415.586667pt;}
.y74{bottom:416.706667pt;}
.yb8{bottom:417.346667pt;}
.ydf{bottom:419.906667pt;}
.y9c{bottom:421.986667pt;}
.yfd{bottom:426.626667pt;}
.y50{bottom:428.546667pt;}
.y82{bottom:435.106667pt;}
.y22{bottom:440.866667pt;}
.y73{bottom:441.986667pt;}
.yb7{bottom:442.626667pt;}
.yde{bottom:446.626667pt;}
.y9b{bottom:447.266667pt;}
.yfc{bottom:451.906667pt;}
.y4f{bottom:453.826667pt;}
.y81{bottom:465.026667pt;}
.y21{bottom:466.146667pt;}
.y72{bottom:467.266667pt;}
.yb6{bottom:467.906667pt;}
.y9a{bottom:472.546667pt;}
.ydd{bottom:473.346667pt;}
.yfb{bottom:477.186667pt;}
.y4e{bottom:479.106667pt;}
.y80{bottom:490.306667pt;}
.y20{bottom:491.266667pt;}
.y31{bottom:491.586667pt;}
.y71{bottom:492.706667pt;}
.yb5{bottom:493.186667pt;}
.y99{bottom:497.826667pt;}
.ydc{bottom:500.226667pt;}
.yfa{bottom:502.466667pt;}
.y4d{bottom:504.546667pt;}
.y7f{bottom:515.613333pt;}
.yb4{bottom:518.493333pt;}
.y70{bottom:518.973333pt;}
.y1f{bottom:520.093333pt;}
.y98{bottom:523.133333pt;}
.ydb{bottom:526.973333pt;}
.yf9{bottom:527.773333pt;}
.y4c{bottom:529.853333pt;}
.y7e{bottom:540.893333pt;}
.yb3{bottom:543.773333pt;}
.y6f{bottom:545.373333pt;}
.y1e{bottom:545.533333pt;}
.y97{bottom:548.413333pt;}
.yf8{bottom:553.053333pt;}
.yda{bottom:553.853333pt;}
.y4b{bottom:555.133333pt;}
.y7d{bottom:566.333333pt;}
.yb2{bottom:569.053333pt;}
.y6e{bottom:570.653333pt;}
.y1d{bottom:570.813333pt;}
.y96{bottom:573.693333pt;}
.yf7{bottom:578.493333pt;}
.y4a{bottom:580.413333pt;}
.yd9{bottom:580.573333pt;}
.y7c{bottom:591.613333pt;}
.yb1{bottom:594.013333pt;}
.y1c{bottom:596.093333pt;}
.y6d{bottom:596.893333pt;}
.y95{bottom:599.133333pt;}
.yf6{bottom:603.773333pt;}
.y49{bottom:605.693333pt;}
.yd8{bottom:607.453333pt;}
.y7b{bottom:616.573333pt;}
.yb0{bottom:619.773333pt;}
.y1b{bottom:621.373333pt;}
.y6c{bottom:622.333333pt;}
.y94{bottom:624.413333pt;}
.yf5{bottom:629.053333pt;}
.y48{bottom:630.973333pt;}
.yd7{bottom:634.173333pt;}
.y7a{bottom:638.653333pt;}
.y1a{bottom:646.653333pt;}
.y6b{bottom:648.573333pt;}
.y93{bottom:649.373333pt;}
.yaf{bottom:649.693333pt;}
.yf4{bottom:654.333333pt;}
.y47{bottom:660.893333pt;}
.yd6{bottom:661.053333pt;}
.y19{bottom:671.933333pt;}
.y6a{bottom:674.013333pt;}
.y92{bottom:674.653333pt;}
.yae{bottom:674.973333pt;}
.yf3{bottom:679.613333pt;}
.y46{bottom:686.173333pt;}
.yd5{bottom:687.773333pt;}
.y18{bottom:697.213333pt;}
.y69{bottom:700.253333pt;}
.yf2{bottom:704.893333pt;}
.y45{bottom:711.613333pt;}
.yd4{bottom:714.653333pt;}
.y17{bottom:722.493333pt;}
.y68{bottom:725.533333pt;}
.yf1{bottom:729.893333pt;}
.y91{bottom:730.213333pt;}
.y44{bottom:736.933333pt;}
.yd3{bottom:741.413333pt;}
.y67{bottom:750.853333pt;}
.y16{bottom:753.093333pt;}
.y90{bottom:755.493333pt;}
.y43{bottom:766.853333pt;}
.yd2{bottom:768.133333pt;}
.y66{bottom:776.133333pt;}
.y15{bottom:778.533333pt;}
.y8f{bottom:780.773333pt;}
.y42{bottom:792.133333pt;}
.yd1{bottom:795.013333pt;}
.yad{bottom:801.413333pt;}
.yed{bottom:801.573333pt;}
.y14{bottom:803.813333pt;}
.y65{bottom:806.213333pt;}
.y41{bottom:817.413333pt;}
.yd0{bottom:821.733333pt;}
.yac{bottom:826.853333pt;}
.y13{bottom:829.093333pt;}
.y64{bottom:831.493333pt;}
.y40{bottom:842.693333pt;}
.ycf{bottom:847.493333pt;}
.yab{bottom:852.133333pt;}
.y12{bottom:854.373333pt;}
.y63{bottom:856.773333pt;}
.y3f{bottom:867.973333pt;}
.yaa{bottom:877.413333pt;}
.y11{bottom:879.653333pt;}
.y62{bottom:882.053333pt;}
.y3e{bottom:893.413333pt;}
.y10{bottom:899.333333pt;}
.yce{bottom:902.693333pt;}
.y61{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y3d{bottom:923.333333pt;}
.ycd{bottom:927.973333pt;}
.y60{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y3c{bottom:953.280000pt;}
.y2{bottom:953.440000pt;}
.yc4{bottom:957.600000pt;}
.y5f{bottom:957.920000pt;}
.y3b{bottom:978.560000pt;}
.y79{bottom:982.880000pt;}
.y5e{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y34{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y33{bottom:1014.880000pt;}
.h6{height:29.760000pt;}
.hc{height:36.667500pt;}
.hb{height:38.220000pt;}
.h1{height:42.707500pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h13{height:51.548750pt;}
.h2{height:52.108438pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.h17{height:58.191250pt;}
.ha{height:59.340000pt;}
.h14{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h16{height:76.729917pt;}
.h12{height:76.751250pt;}
.h15{height:98.705634pt;}
.h10{height:98.705643pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x26{left:71.999988pt;}
.x1c{left:84.831988pt;}
.x1d{left:95.551988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x1a{left:127.871988pt;}
.x22{left:130.431988pt;}
.x1b{left:143.226655pt;}
.x23{left:145.306655pt;}
.x1e{left:164.986655pt;}
.x14{left:166.266655pt;}
.x1f{left:175.706655pt;}
.x15{left:179.226655pt;}
.x24{left:192.026655pt;}
.x25{left:208.346655pt;}
.x16{left:213.466655pt;}
.x20{left:221.306655pt;}
.x17{left:226.426655pt;}
.x21{left:232.026655pt;}
.x18{left:295.426655pt;}
.x19{left:314.786655pt;}
.x11{left:349.506655pt;}
.xe{left:364.066655pt;}
.x12{left:366.306655pt;}
.x13{left:387.586655pt;}
.x8{left:428.573321pt;}
.xc{left:452.573321pt;}
.x5{left:463.133333pt;}
.xf{left:538.013321pt;}
.x10{left:548.733321pt;}
.xd{left:768.613321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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