
    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_ad0a2e3fe463c7944b293c96.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_33064a0d123a5be6a23d695d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_de47e12f7acdb06fd579b330.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_66813c78d92fb23dc2145318.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_ae9e09d273ba6a7d440e63fd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_f29bbfdf80067f77030125d0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_c5db9448e322a9a1e05d86d8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_7621619c1cb382e7c49e439d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_763dc632e925340ee30b4acd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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:ffd;src:url('chunks/assets/font_4bc1d02c233fc623d716fe8d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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:ffe;src:url('chunks/assets/font_88580ef0a0c320f3b14e4ef0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls11{letter-spacing:-2.766000px;}
.lsb{letter-spacing:-2.724000px;}
.ls16{letter-spacing:-1.482000px;}
.lsf{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.256200px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls2{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls15{letter-spacing:1.992000px;}
.ls4{letter-spacing:2.086500px;}
.ls18{letter-spacing:2.164500px;}
.ls13{letter-spacing:2.244000px;}
.ls6{letter-spacing:2.250000px;}
.ls1b{letter-spacing:2.310000px;}
.ls7{letter-spacing:2.322000px;}
.ls19{letter-spacing:2.370000px;}
.ls1a{letter-spacing:2.430000px;}
.ls12{letter-spacing:3.375000px;}
.ls8{letter-spacing:4.779000px;}
.ls10{letter-spacing:5.526000px;}
.ls17{letter-spacing:46.887000px;}
.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;}
}
.ws8{word-spacing:-20.151000px;}
.ws6{word-spacing:-16.875000px;}
.wsd{word-spacing:-16.617000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.wsc{word-spacing:-14.368800px;}
.wse{word-spacing:-13.497000px;}
.ws7{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.wsb{word-spacing:-12.369000px;}
.ws9{word-spacing:-11.859000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._13{margin-left:-5.701050px;}
._7{margin-left:-4.165650px;}
._2{margin-left:-2.358000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.042000px;}
._5{width:4.164000px;}
._8{width:5.202000px;}
._3{width:6.288000px;}
._9{width:7.398000px;}
._b{width:8.695500px;}
._6{width:9.834000px;}
._10{width:11.181300px;}
._c{width:12.975150px;}
._f{width:16.726500px;}
._16{width:17.767500px;}
._a{width:19.143000px;}
._e{width:20.715150px;}
._11{width:22.552500px;}
._12{width:25.492500px;}
._d{width:26.559000px;}
._1a{width:44.235150px;}
._19{width:48.567000px;}
._14{width:57.631500px;}
._15{width:61.252500px;}
._17{width:124.744500px;}
._18{width:201.675000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fc6{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs2{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.367500px;}
.y4{bottom:3.375000px;}
.ya4{bottom:3.390000px;}
.y1c{bottom:4.500000px;}
.y9e{bottom:4.515000px;}
.y49{bottom:10.125000px;}
.yf{bottom:11.295000px;}
.ya9{bottom:12.390000px;}
.yd{bottom:13.500000px;}
.y1e{bottom:13.530000px;}
.y5{bottom:18.000000px;}
.y3{bottom:20.250000px;}
.y9a{bottom:20.280000px;}
.y8d{bottom:20.287500px;}
.y87{bottom:20.295000px;}
.y89{bottom:21.375000px;}
.y9d{bottom:21.390000px;}
.y46{bottom:21.405000px;}
.y90{bottom:21.412500px;}
.y4a{bottom:21.420000px;}
.y48{bottom:24.795000px;}
.y1b{bottom:27.045000px;}
.ya8{bottom:29.265000px;}
.yc{bottom:30.405000px;}
.y6{bottom:33.750000px;}
.y8a{bottom:38.250000px;}
.y45{bottom:38.280000px;}
.y8c{bottom:38.287500px;}
.y86{bottom:38.295000px;}
.y1a{bottom:42.795000px;}
.yb{bottom:46.155000px;}
.y2{bottom:55.162500px;}
.y44{bottom:56.295000px;}
.y19{bottom:59.715000px;}
.ya{bottom:73.185000px;}
.y43{bottom:73.200000px;}
.y18{bottom:76.590000px;}
.y42{bottom:90.075000px;}
.y17{bottom:92.340000px;}
.y9{bottom:93.435000px;}
.y8f{bottom:96.825000px;}
.y16{bottom:102.495000px;}
.y41{bottom:108.105000px;}
.ye7{bottom:109.200000px;}
.y56{bottom:110.325000px;}
.y8{bottom:110.355000px;}
.y15{bottom:117.120000px;}
.yf4{bottom:121.612500px;}
.y40{bottom:124.980000px;}
.y10c{bottom:126.112500px;}
.y55{bottom:127.237500px;}
.ycf{bottom:128.362500px;}
.y14{bottom:131.745000px;}
.y101{bottom:138.487500px;}
.y3f{bottom:141.855000px;}
.y10b{bottom:142.987500px;}
.ydd{bottom:144.112500px;}
.y54{bottom:145.237500px;}
.y8b{bottom:149.737500px;}
.y13{bottom:150.915000px;}
.ye6{bottom:157.620000px;}
.y3e{bottom:159.900000px;}
.y111{bottom:161.025000px;}
.y53{bottom:162.150000px;}
.y2e{bottom:167.775000px;}
.y3d{bottom:176.775000px;}
.y12{bottom:176.790000px;}
.y10a{bottom:177.900000px;}
.y52{bottom:179.025000px;}
.yce{bottom:180.150000px;}
.y2d{bottom:183.525000px;}
.yc3{bottom:192.525000px;}
.ycd{bottom:193.650000px;}
.y3c{bottom:193.695000px;}
.y109{bottom:194.775000px;}
.y51{bottom:197.025000px;}
.y2c{bottom:201.555000px;}
.y11{bottom:201.570000px;}
.y3b{bottom:211.680000px;}
.y108{bottom:211.695000px;}
.y110{bottom:212.820000px;}
.y50{bottom:213.945000px;}
.y2b{bottom:218.430000px;}
.y3a{bottom:228.600000px;}
.y107{bottom:229.695000px;}
.y4f{bottom:230.820000px;}
.y2a{bottom:236.475000px;}
.y39{bottom:245.475000px;}
.y106{bottom:246.600000px;}
.y4e{bottom:248.850000px;}
.y29{bottom:253.350000px;}
.y88{bottom:254.475000px;}
.y38{bottom:263.475000px;}
.y10f{bottom:264.600000px;}
.y4d{bottom:265.725000px;}
.y28{bottom:271.395000px;}
.y37{bottom:280.395000px;}
.y105{bottom:281.475000px;}
.y4c{bottom:282.600000px;}
.y27{bottom:288.270000px;}
.y36{bottom:297.270000px;}
.y104{bottom:298.395000px;}
.y4b{bottom:300.630000px;}
.y26{bottom:305.145000px;}
.y85{bottom:307.380000px;}
.y103{bottom:311.895000px;}
.y47{bottom:314.130000px;}
.y35{bottom:315.300000px;}
.y10e{bottom:316.380000px;}
.yb5{bottom:319.755000px;}
.y25{bottom:323.175000px;}
.y34{bottom:332.175000px;}
.y10d{bottom:333.300000px;}
.yb4{bottom:336.675000px;}
.y24{bottom:340.050000px;}
.y33{bottom:349.050000px;}
.y1f{bottom:350.175000px;}
.yb3{bottom:354.675000px;}
.y23{bottom:358.080000px;}
.y32{bottom:367.080000px;}
.y84{bottom:368.205000px;}
.yb2{bottom:371.580000px;}
.y22{bottom:374.955000px;}
.y31{bottom:383.955000px;}
.y83{bottom:385.080000px;}
.yb1{bottom:388.455000px;}
.y30{bottom:400.875000px;}
.y82{bottom:401.955000px;}
.y21{bottom:403.125000px;}
.y2f{bottom:418.875000px;}
.y81{bottom:420.000000px;}
.y20{bottom:421.125000px;}
.y97{bottom:426.750000px;}
.y80{bottom:436.875000px;}
.y96{bottom:444.750000px;}
.y7f{bottom:453.795000px;}
.y95{bottom:461.655000px;}
.y7e{bottom:471.780000px;}
.y94{bottom:478.530000px;}
.y7d{bottom:488.655000px;}
.y93{bottom:496.575000px;}
.y7c{bottom:505.575000px;}
.y92{bottom:513.450000px;}
.y100{bottom:516.825000px;}
.y7b{bottom:523.575000px;}
.y91{bottom:530.325000px;}
.yff{bottom:533.700000px;}
.yf3{bottom:534.855000px;}
.y7a{bottom:540.495000px;}
.ye5{bottom:542.745000px;}
.ya7{bottom:544.980000px;}
.yfe{bottom:550.620000px;}
.yf2{bottom:551.730000px;}
.y79{bottom:557.370000px;}
.ye4{bottom:560.745000px;}
.ydc{bottom:565.230000px;}
.yfd{bottom:568.605000px;}
.yf1{bottom:569.745000px;}
.y78{bottom:575.355000px;}
.ye3{bottom:577.650000px;}
.ycc{bottom:581.025000px;}
.ydb{bottom:582.150000px;}
.yc2{bottom:583.275000px;}
.yfc{bottom:585.525000px;}
.yf0{bottom:586.650000px;}
.y77{bottom:592.275000px;}
.ye2{bottom:594.525000px;}
.ya6{bottom:597.900000px;}
.yda{bottom:599.025000px;}
.yc1{bottom:601.275000px;}
.yfb{bottom:602.400000px;}
.yef{bottom:603.525000px;}
.y76{bottom:609.150000px;}
.ye1{bottom:612.525000px;}
.ycb{bottom:615.900000px;}
.yd9{bottom:617.025000px;}
.yc0{bottom:618.150000px;}
.yfa{bottom:620.445000px;}
.yee{bottom:621.570000px;}
.y75{bottom:627.195000px;}
.ye0{bottom:629.445000px;}
.yca{bottom:632.820000px;}
.yd8{bottom:633.945000px;}
.ybf{bottom:635.070000px;}
.yf9{bottom:637.320000px;}
.yed{bottom:638.445000px;}
.y74{bottom:644.070000px;}
.ydf{bottom:646.320000px;}
.ya5{bottom:649.695000px;}
.yd7{bottom:650.820000px;}
.ybe{bottom:653.070000px;}
.yf8{bottom:654.195000px;}
.yec{bottom:655.320000px;}
.yde{bottom:659.820000px;}
.y73{bottom:660.975000px;}
.yc9{bottom:667.725000px;}
.yd6{bottom:668.850000px;}
.ybd{bottom:669.975000px;}
.yf7{bottom:672.225000px;}
.yeb{bottom:673.350000px;}
.y72{bottom:678.975000px;}
.yc8{bottom:684.600000px;}
.yd5{bottom:685.725000px;}
.ybc{bottom:686.850000px;}
.yf6{bottom:689.100000px;}
.yea{bottom:690.225000px;}
.y71{bottom:695.850000px;}
.y102{bottom:700.350000px;}
.yc7{bottom:701.475000px;}
.ya3{bottom:702.630000px;}
.yd4{bottom:702.645000px;}
.ybb{bottom:704.880000px;}
.yf5{bottom:706.020000px;}
.ye9{bottom:707.130000px;}
.y70{bottom:712.770000px;}
.yb0{bottom:718.380000px;}
.yc6{bottom:719.520000px;}
.yd3{bottom:720.630000px;}
.yba{bottom:721.755000px;}
.ye8{bottom:725.130000px;}
.y6f{bottom:730.755000px;}
.yaf{bottom:736.395000px;}
.yd2{bottom:737.505000px;}
.yb9{bottom:738.630000px;}
.y6e{bottom:747.675000px;}
.yae{bottom:753.300000px;}
.yd1{bottom:754.425000px;}
.ya2{bottom:755.550000px;}
.yb8{bottom:756.675000px;}
.y6d{bottom:764.550000px;}
.yd0{bottom:767.925000px;}
.yad{bottom:770.175000px;}
.yc5{bottom:771.300000px;}
.yb7{bottom:773.550000px;}
.y1d{bottom:782.550000px;}
.yc4{bottom:784.800000px;}
.yb6{bottom:787.080000px;}
.yac{bottom:788.205000px;}
.y6c{bottom:799.455000px;}
.yab{bottom:805.080000px;}
.ya1{bottom:807.330000px;}
.y10{bottom:811.830000px;}
.y6b{bottom:816.330000px;}
.yaa{bottom:818.580000px;}
.y6a{bottom:834.375000px;}
.y69{bottom:851.250000px;}
.ya0{bottom:860.250000px;}
.y68{bottom:868.125000px;}
.y67{bottom:886.170000px;}
.y66{bottom:903.045000px;}
.y9f{bottom:913.200000px;}
.y65{bottom:919.950000px;}
.y64{bottom:937.950000px;}
.y63{bottom:954.870000px;}
.y9c{bottom:964.980000px;}
.y62{bottom:971.745000px;}
.y61{bottom:989.745000px;}
.y60{bottom:1006.650000px;}
.y9b{bottom:1017.900000px;}
.y5f{bottom:1023.525000px;}
.ye{bottom:1028.025000px;}
.y5e{bottom:1041.570000px;}
.y7{bottom:1053.945000px;}
.y5d{bottom:1058.445000px;}
.y99{bottom:1070.820000px;}
.y5c{bottom:1075.320000px;}
.y5b{bottom:1093.350000px;}
.y5a{bottom:1110.225000px;}
.y98{bottom:1122.630000px;}
.y59{bottom:1127.130000px;}
.y58{bottom:1145.130000px;}
.y57{bottom:1162.050000px;}
.y1{bottom:1193.550000px;}
.hc{height:25.912500px;}
.h16{height:29.287500px;}
.h15{height:29.773125px;}
.h14{height:29.953125px;}
.h3{height:32.662500px;}
.h13{height:35.806641px;}
.h1e{height:36.037500px;}
.h8{height:37.125000px;}
.h1b{height:39.832031px;}
.h1d{height:40.847168px;}
.h1c{height:41.275635px;}
.h1a{height:41.389893px;}
.h22{height:42.589600px;}
.hf{height:43.075195px;}
.ha{height:43.875000px;}
.h1f{height:46.278809px;}
.h19{height:47.074219px;}
.h18{height:49.234131px;}
.hd{height:50.625000px;}
.h20{height:51.787500px;}
.h21{height:51.825000px;}
.h5{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.h11{height:58.185791px;}
.h12{height:59.899658px;}
.h10{height:64.237500px;}
.h2{height:67.137451px;}
.h6{height:69.114990px;}
.hb{height:71.613281px;}
.h7{height:121.612500px;}
.he{height:216.180000px;}
.h17{height:432.375000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w9{width:59.700000px;}
.w3{width:74.362500px;}
.wd{width:84.487500px;}
.we{width:95.737500px;}
.wb{width:105.900000px;}
.wc{width:116.025000px;}
.w4{width:152.055000px;}
.wa{width:202.725000px;}
.w7{width:223.020000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w2{width:674.745000px;}
.w6{width:747.945000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.735000px;}
.x8{left:7.875000px;}
.x3{left:9.037500px;}
.x16{left:12.420000px;}
.x12{left:60.825000px;}
.x13{left:63.075000px;}
.xe{left:67.575000px;}
.x2{left:72.075000px;}
.x5{left:73.237500px;}
.x1{left:81.112487px;}
.x10{left:86.692500px;}
.x6{left:97.987500px;}
.x27{left:108.149987px;}
.xf{left:127.282500px;}
.x17{left:132.937500px;}
.x11{left:139.657500px;}
.x14{left:214.012500px;}
.x7{left:225.300000px;}
.xb{left:290.625000px;}
.x15{left:296.250000px;}
.x18{left:336.795000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x19{left:443.820000px;}
.xc{left:453.945000px;}
.x1a{left:560.970000px;}
.x26{left:639.824987px;}
.x1c{left:645.450000px;}
.x1d{left:741.195000px;}
.x1e{left:742.319987px;}
.x4{left:746.820000px;}
.x22{left:754.724987px;}
.x21{left:756.974987px;}
.x20{left:758.099987px;}
.x24{left:759.224987px;}
.x23{left:760.349987px;}
.x1f{left:761.474987px;}
.x25{left:762.599987px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls11{letter-spacing:-2.458667pt;}
.lsb{letter-spacing:-2.421333pt;}
.ls16{letter-spacing:-1.317333pt;}
.lsf{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.227733pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls15{letter-spacing:1.770667pt;}
.ls4{letter-spacing:1.854667pt;}
.ls18{letter-spacing:1.924000pt;}
.ls13{letter-spacing:1.994667pt;}
.ls6{letter-spacing:2.000000pt;}
.ls1b{letter-spacing:2.053333pt;}
.ls7{letter-spacing:2.064000pt;}
.ls19{letter-spacing:2.106667pt;}
.ls1a{letter-spacing:2.160000pt;}
.ls12{letter-spacing:3.000000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls10{letter-spacing:4.912000pt;}
.ls17{letter-spacing:41.677333pt;}
.ws8{word-spacing:-17.912000pt;}
.ws6{word-spacing:-15.000000pt;}
.wsd{word-spacing:-14.770667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.wsc{word-spacing:-12.772267pt;}
.wse{word-spacing:-11.997333pt;}
.ws7{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.wsb{word-spacing:-10.994667pt;}
.ws9{word-spacing:-10.541333pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._13{margin-left:-5.067600pt;}
._7{margin-left:-3.702800pt;}
._2{margin-left:-2.096000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.704000pt;}
._5{width:3.701333pt;}
._8{width:4.624000pt;}
._3{width:5.589333pt;}
._9{width:6.576000pt;}
._b{width:7.729333pt;}
._6{width:8.741333pt;}
._10{width:9.938933pt;}
._c{width:11.533467pt;}
._f{width:14.868000pt;}
._16{width:15.793333pt;}
._a{width:17.016000pt;}
._e{width:18.413467pt;}
._11{width:20.046667pt;}
._12{width:22.660000pt;}
._d{width:23.608000pt;}
._1a{width:39.320133pt;}
._19{width:43.170667pt;}
._14{width:51.228000pt;}
._15{width:54.446667pt;}
._17{width:110.884000pt;}
._18{width:179.266667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs2{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:2.993333pt;}
.y4{bottom:3.000000pt;}
.ya4{bottom:3.013333pt;}
.y1c{bottom:4.000000pt;}
.y9e{bottom:4.013333pt;}
.y49{bottom:9.000000pt;}
.yf{bottom:10.040000pt;}
.ya9{bottom:11.013333pt;}
.yd{bottom:12.000000pt;}
.y1e{bottom:12.026667pt;}
.y5{bottom:16.000000pt;}
.y3{bottom:18.000000pt;}
.y9a{bottom:18.026667pt;}
.y8d{bottom:18.033333pt;}
.y87{bottom:18.040000pt;}
.y89{bottom:19.000000pt;}
.y9d{bottom:19.013333pt;}
.y46{bottom:19.026667pt;}
.y90{bottom:19.033333pt;}
.y4a{bottom:19.040000pt;}
.y48{bottom:22.040000pt;}
.y1b{bottom:24.040000pt;}
.ya8{bottom:26.013333pt;}
.yc{bottom:27.026667pt;}
.y6{bottom:30.000000pt;}
.y8a{bottom:34.000000pt;}
.y45{bottom:34.026667pt;}
.y8c{bottom:34.033333pt;}
.y86{bottom:34.040000pt;}
.y1a{bottom:38.040000pt;}
.yb{bottom:41.026667pt;}
.y2{bottom:49.033333pt;}
.y44{bottom:50.040000pt;}
.y19{bottom:53.080000pt;}
.ya{bottom:65.053333pt;}
.y43{bottom:65.066667pt;}
.y18{bottom:68.080000pt;}
.y42{bottom:80.066667pt;}
.y17{bottom:82.080000pt;}
.y9{bottom:83.053333pt;}
.y8f{bottom:86.066667pt;}
.y16{bottom:91.106667pt;}
.y41{bottom:96.093333pt;}
.ye7{bottom:97.066667pt;}
.y56{bottom:98.066667pt;}
.y8{bottom:98.093333pt;}
.y15{bottom:104.106667pt;}
.yf4{bottom:108.100000pt;}
.y40{bottom:111.093333pt;}
.y10c{bottom:112.100000pt;}
.y55{bottom:113.100000pt;}
.ycf{bottom:114.100000pt;}
.y14{bottom:117.106667pt;}
.y101{bottom:123.100000pt;}
.y3f{bottom:126.093333pt;}
.y10b{bottom:127.100000pt;}
.ydd{bottom:128.100000pt;}
.y54{bottom:129.100000pt;}
.y8b{bottom:133.100000pt;}
.y13{bottom:134.146667pt;}
.ye6{bottom:140.106667pt;}
.y3e{bottom:142.133333pt;}
.y111{bottom:143.133333pt;}
.y53{bottom:144.133333pt;}
.y2e{bottom:149.133333pt;}
.y3d{bottom:157.133333pt;}
.y12{bottom:157.146667pt;}
.y10a{bottom:158.133333pt;}
.y52{bottom:159.133333pt;}
.yce{bottom:160.133333pt;}
.y2d{bottom:163.133333pt;}
.yc3{bottom:171.133333pt;}
.ycd{bottom:172.133333pt;}
.y3c{bottom:172.173333pt;}
.y109{bottom:173.133333pt;}
.y51{bottom:175.133333pt;}
.y2c{bottom:179.160000pt;}
.y11{bottom:179.173333pt;}
.y3b{bottom:188.160000pt;}
.y108{bottom:188.173333pt;}
.y110{bottom:189.173333pt;}
.y50{bottom:190.173333pt;}
.y2b{bottom:194.160000pt;}
.y3a{bottom:203.200000pt;}
.y107{bottom:204.173333pt;}
.y4f{bottom:205.173333pt;}
.y2a{bottom:210.200000pt;}
.y39{bottom:218.200000pt;}
.y106{bottom:219.200000pt;}
.y4e{bottom:221.200000pt;}
.y29{bottom:225.200000pt;}
.y88{bottom:226.200000pt;}
.y38{bottom:234.200000pt;}
.y10f{bottom:235.200000pt;}
.y4d{bottom:236.200000pt;}
.y28{bottom:241.240000pt;}
.y37{bottom:249.240000pt;}
.y105{bottom:250.200000pt;}
.y4c{bottom:251.200000pt;}
.y27{bottom:256.240000pt;}
.y36{bottom:264.240000pt;}
.y104{bottom:265.240000pt;}
.y4b{bottom:267.226667pt;}
.y26{bottom:271.240000pt;}
.y85{bottom:273.226667pt;}
.y103{bottom:277.240000pt;}
.y47{bottom:279.226667pt;}
.y35{bottom:280.266667pt;}
.y10e{bottom:281.226667pt;}
.yb5{bottom:284.226667pt;}
.y25{bottom:287.266667pt;}
.y34{bottom:295.266667pt;}
.y10d{bottom:296.266667pt;}
.yb4{bottom:299.266667pt;}
.y24{bottom:302.266667pt;}
.y33{bottom:310.266667pt;}
.y1f{bottom:311.266667pt;}
.yb3{bottom:315.266667pt;}
.y23{bottom:318.293333pt;}
.y32{bottom:326.293333pt;}
.y84{bottom:327.293333pt;}
.yb2{bottom:330.293333pt;}
.y22{bottom:333.293333pt;}
.y31{bottom:341.293333pt;}
.y83{bottom:342.293333pt;}
.yb1{bottom:345.293333pt;}
.y30{bottom:356.333333pt;}
.y82{bottom:357.293333pt;}
.y21{bottom:358.333333pt;}
.y2f{bottom:372.333333pt;}
.y81{bottom:373.333333pt;}
.y20{bottom:374.333333pt;}
.y97{bottom:379.333333pt;}
.y80{bottom:388.333333pt;}
.y96{bottom:395.333333pt;}
.y7f{bottom:403.373333pt;}
.y95{bottom:410.360000pt;}
.y7e{bottom:419.360000pt;}
.y94{bottom:425.360000pt;}
.y7d{bottom:434.360000pt;}
.y93{bottom:441.400000pt;}
.y7c{bottom:449.400000pt;}
.y92{bottom:456.400000pt;}
.y100{bottom:459.400000pt;}
.y7b{bottom:465.400000pt;}
.y91{bottom:471.400000pt;}
.yff{bottom:474.400000pt;}
.yf3{bottom:475.426667pt;}
.y7a{bottom:480.440000pt;}
.ye5{bottom:482.440000pt;}
.ya7{bottom:484.426667pt;}
.yfe{bottom:489.440000pt;}
.yf2{bottom:490.426667pt;}
.y79{bottom:495.440000pt;}
.ye4{bottom:498.440000pt;}
.ydc{bottom:502.426667pt;}
.yfd{bottom:505.426667pt;}
.yf1{bottom:506.440000pt;}
.y78{bottom:511.426667pt;}
.ye3{bottom:513.466667pt;}
.ycc{bottom:516.466667pt;}
.ydb{bottom:517.466667pt;}
.yc2{bottom:518.466667pt;}
.yfc{bottom:520.466667pt;}
.yf0{bottom:521.466667pt;}
.y77{bottom:526.466667pt;}
.ye2{bottom:528.466667pt;}
.ya6{bottom:531.466667pt;}
.yda{bottom:532.466667pt;}
.yc1{bottom:534.466667pt;}
.yfb{bottom:535.466667pt;}
.yef{bottom:536.466667pt;}
.y76{bottom:541.466667pt;}
.ye1{bottom:544.466667pt;}
.ycb{bottom:547.466667pt;}
.yd9{bottom:548.466667pt;}
.yc0{bottom:549.466667pt;}
.yfa{bottom:551.506667pt;}
.yee{bottom:552.506667pt;}
.y75{bottom:557.506667pt;}
.ye0{bottom:559.506667pt;}
.yca{bottom:562.506667pt;}
.yd8{bottom:563.506667pt;}
.ybf{bottom:564.506667pt;}
.yf9{bottom:566.506667pt;}
.yed{bottom:567.506667pt;}
.y74{bottom:572.506667pt;}
.ydf{bottom:574.506667pt;}
.ya5{bottom:577.506667pt;}
.yd7{bottom:578.506667pt;}
.ybe{bottom:580.506667pt;}
.yf8{bottom:581.506667pt;}
.yec{bottom:582.506667pt;}
.yde{bottom:586.506667pt;}
.y73{bottom:587.533333pt;}
.yc9{bottom:593.533333pt;}
.yd6{bottom:594.533333pt;}
.ybd{bottom:595.533333pt;}
.yf7{bottom:597.533333pt;}
.yeb{bottom:598.533333pt;}
.y72{bottom:603.533333pt;}
.yc8{bottom:608.533333pt;}
.yd5{bottom:609.533333pt;}
.ybc{bottom:610.533333pt;}
.yf6{bottom:612.533333pt;}
.yea{bottom:613.533333pt;}
.y71{bottom:618.533333pt;}
.y102{bottom:622.533333pt;}
.yc7{bottom:623.533333pt;}
.ya3{bottom:624.560000pt;}
.yd4{bottom:624.573333pt;}
.ybb{bottom:626.560000pt;}
.yf5{bottom:627.573333pt;}
.ye9{bottom:628.560000pt;}
.y70{bottom:633.573333pt;}
.yb0{bottom:638.560000pt;}
.yc6{bottom:639.573333pt;}
.yd3{bottom:640.560000pt;}
.yba{bottom:641.560000pt;}
.ye8{bottom:644.560000pt;}
.y6f{bottom:649.560000pt;}
.yaf{bottom:654.573333pt;}
.yd2{bottom:655.560000pt;}
.yb9{bottom:656.560000pt;}
.y6e{bottom:664.600000pt;}
.yae{bottom:669.600000pt;}
.yd1{bottom:670.600000pt;}
.ya2{bottom:671.600000pt;}
.yb8{bottom:672.600000pt;}
.y6d{bottom:679.600000pt;}
.yd0{bottom:682.600000pt;}
.yad{bottom:684.600000pt;}
.yc5{bottom:685.600000pt;}
.yb7{bottom:687.600000pt;}
.y1d{bottom:695.600000pt;}
.yc4{bottom:697.600000pt;}
.yb6{bottom:699.626667pt;}
.yac{bottom:700.626667pt;}
.y6c{bottom:710.626667pt;}
.yab{bottom:715.626667pt;}
.ya1{bottom:717.626667pt;}
.y10{bottom:721.626667pt;}
.y6b{bottom:725.626667pt;}
.yaa{bottom:727.626667pt;}
.y6a{bottom:741.666667pt;}
.y69{bottom:756.666667pt;}
.ya0{bottom:764.666667pt;}
.y68{bottom:771.666667pt;}
.y67{bottom:787.706667pt;}
.y66{bottom:802.706667pt;}
.y9f{bottom:811.733333pt;}
.y65{bottom:817.733333pt;}
.y64{bottom:833.733333pt;}
.y63{bottom:848.773333pt;}
.y9c{bottom:857.760000pt;}
.y62{bottom:863.773333pt;}
.y61{bottom:879.773333pt;}
.y60{bottom:894.800000pt;}
.y9b{bottom:904.800000pt;}
.y5f{bottom:909.800000pt;}
.ye{bottom:913.800000pt;}
.y5e{bottom:925.840000pt;}
.y7{bottom:936.840000pt;}
.y5d{bottom:940.840000pt;}
.y99{bottom:951.840000pt;}
.y5c{bottom:955.840000pt;}
.y5b{bottom:971.866667pt;}
.y5a{bottom:986.866667pt;}
.y98{bottom:997.893333pt;}
.y59{bottom:1001.893333pt;}
.y58{bottom:1017.893333pt;}
.y57{bottom:1032.933333pt;}
.y1{bottom:1060.933333pt;}
.hc{height:23.033333pt;}
.h16{height:26.033333pt;}
.h15{height:26.465000pt;}
.h14{height:26.625000pt;}
.h3{height:29.033333pt;}
.h13{height:31.828125pt;}
.h1e{height:32.033333pt;}
.h8{height:33.000000pt;}
.h1b{height:35.406250pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h1a{height:36.791016pt;}
.h22{height:37.857422pt;}
.hf{height:38.289062pt;}
.ha{height:39.000000pt;}
.h1f{height:41.136719pt;}
.h19{height:41.843750pt;}
.h18{height:43.763672pt;}
.hd{height:45.000000pt;}
.h20{height:46.033333pt;}
.h21{height:46.066667pt;}
.h5{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.h11{height:51.720703pt;}
.h12{height:53.244141pt;}
.h10{height:57.100000pt;}
.h2{height:59.677734pt;}
.h6{height:61.435547pt;}
.hb{height:63.656250pt;}
.h7{height:108.100000pt;}
.he{height:192.160000pt;}
.h17{height:384.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w9{width:53.066667pt;}
.w3{width:66.100000pt;}
.wd{width:75.100000pt;}
.we{width:85.100000pt;}
.wb{width:94.133333pt;}
.wc{width:103.133333pt;}
.w4{width:135.160000pt;}
.wa{width:180.200000pt;}
.w7{width:198.240000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w2{width:599.773333pt;}
.w6{width:664.840000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:5.986667pt;}
.x8{left:7.000000pt;}
.x3{left:8.033333pt;}
.x16{left:11.040000pt;}
.x12{left:54.066667pt;}
.x13{left:56.066667pt;}
.xe{left:60.066667pt;}
.x2{left:64.066667pt;}
.x5{left:65.100000pt;}
.x1{left:72.099988pt;}
.x10{left:77.060000pt;}
.x6{left:87.100000pt;}
.x27{left:96.133322pt;}
.xf{left:113.140000pt;}
.x17{left:118.166667pt;}
.x11{left:124.140000pt;}
.x14{left:190.233333pt;}
.x7{left:200.266667pt;}
.xb{left:258.333333pt;}
.x15{left:263.333333pt;}
.x18{left:299.373333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x19{left:394.506667pt;}
.xc{left:403.506667pt;}
.x1a{left:498.640000pt;}
.x26{left:568.733322pt;}
.x1c{left:573.733333pt;}
.x1d{left:658.840000pt;}
.x1e{left:659.839988pt;}
.x4{left:663.840000pt;}
.x22{left:670.866655pt;}
.x21{left:672.866655pt;}
.x20{left:673.866655pt;}
.x24{left:674.866655pt;}
.x23{left:675.866655pt;}
.x1f{left:676.866655pt;}
.x25{left:677.866655pt;}
}




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