
    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_04f522c117f47dcd8a29907d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_4c59f8c2fb9f2abbaed79687.woff')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_0d81a4f967d7e6957432c7f5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_5ea0dea99b2251bcb7241d15.woff')format("woff");}.ff4{font-family:ff4;line-height:1.043083;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_7c19678727cea4d585adb85f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.043083;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_538b0ea49bcfaaac4eea0b47.woff')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_bd2f4fadc42477172f77f73c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_9a733cc4b78d9ba5f64d8509.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.672000px;}
.ls20{letter-spacing:-0.490800px;}
.ls16{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.052560px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000001px;}
.ls1a{letter-spacing:0.000003px;}
.ls13{letter-spacing:0.010080px;}
.ls6{letter-spacing:0.046800px;}
.ls17{letter-spacing:0.066960px;}
.ls7{letter-spacing:0.123000px;}
.ls9{letter-spacing:0.129600px;}
.ls19{letter-spacing:0.138240px;}
.lsb{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls1c{letter-spacing:0.229200px;}
.ls14{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.296400px;}
.lsd{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.371520px;}
.ls15{letter-spacing:0.485280px;}
.ls12{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.948000px;}
.ls10{letter-spacing:14.400000px;}
.ls1d{letter-spacing:20.340000px;}
.lsf{letter-spacing:23.040000px;}
.lsa{letter-spacing:29.520000px;}
.lse{letter-spacing:34.560000px;}
.ls18{letter-spacing:39.600000px;}
.ls11{letter-spacing:175.680000px;}
.ls0{letter-spacing:520.020000px;}
.ls1b{letter-spacing:844.284000px;}
.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:-15.480000px;}
.ws9{word-spacing:-15.408000px;}
.wsb{word-spacing:-15.120003px;}
.wsf{word-spacing:-15.120001px;}
.ws1{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.904000px;}
.wsa{word-spacing:-14.832000px;}
.ws0{word-spacing:-14.616000px;}
.wse{word-spacing:-13.497600px;}
.wsd{word-spacing:-12.778800px;}
.ws4{word-spacing:-12.596400px;}
.ws2{word-spacing:-12.549600px;}
.ws3{word-spacing:-12.497040px;}
.ws7{word-spacing:-12.131280px;}
.ws5{word-spacing:-12.071520px;}
.ws10{word-spacing:-12.058800px;}
.ws6{word-spacing:-11.877600px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._3e{margin-left:-9.576000px;}
._6{margin-left:-6.612000px;}
._a{margin-left:-5.472000px;}
._b{margin-left:-4.121280px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._7{width:1.176480px;}
._5{width:2.208000px;}
._23{width:3.311520px;}
._2f{width:4.392000px;}
._25{width:5.904000px;}
._24{width:7.704000px;}
._3b{width:8.710080px;}
._20{width:9.912000px;}
._1c{width:11.160000px;}
._14{width:12.960000px;}
._21{width:13.968000px;}
._12{width:16.776000px;}
._2c{width:17.856000px;}
._1a{width:19.872000px;}
._19{width:21.168000px;}
._1b{width:22.536000px;}
._18{width:23.544000px;}
._3f{width:24.552000px;}
._2a{width:25.560000px;}
._2d{width:27.864000px;}
._10{width:29.136000px;}
._11{width:30.528000px;}
._1f{width:31.824000px;}
._1e{width:32.832000px;}
._1d{width:33.912000px;}
._17{width:35.640000px;}
._38{width:36.767520px;}
._37{width:37.824000px;}
._2b{width:38.880000px;}
._d{width:40.032000px;}
._e{width:41.832000px;}
._f{width:42.887520px;}
._16{width:43.992000px;}
._15{width:45.216000px;}
._13{width:46.368000px;}
._2e{width:47.376000px;}
._31{width:50.184000px;}
._36{width:53.184000px;}
._29{width:55.080000px;}
._28{width:56.808000px;}
._22{width:59.184000px;}
._30{width:60.840000px;}
._34{width:66.528000px;}
._26{width:70.488000px;}
._33{width:80.424000px;}
._32{width:81.648000px;}
._3c{width:175.680000px;}
._2{width:475.164000px;}
._8{width:544.749120px;}
._3{width:1295.580000px;}
._35{width:1456.717920px;}
._3a{width:1458.157920px;}
._3d{width:1460.317920px;}
._39{width:1463.917920px;}
._27{width:1484.797920px;}
._c{width:1486.237920px;}
._9{width:1491.110400px;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:0.900000px;}
.ycc{bottom:1.440000px;}
.y39{bottom:4.500000px;}
.ycf{bottom:5.400000px;}
.y16{bottom:5.760000px;}
.y98{bottom:6.660000px;}
.y38{bottom:22.500000px;}
.yce{bottom:27.000000px;}
.ydb{bottom:27.030000px;}
.yd5{bottom:27.045000px;}
.y15{bottom:27.900000px;}
.y37{bottom:40.494000px;}
.y14{bottom:46.800000px;}
.yd1{bottom:48.600000px;}
.yda{bottom:48.630000px;}
.ye1{bottom:48.645000px;}
.y5{bottom:57.600000px;}
.yd{bottom:58.140000px;}
.y36{bottom:58.494000px;}
.y13{bottom:68.400000px;}
.y35{bottom:76.494000px;}
.yc{bottom:78.840000px;}
.y4{bottom:79.056000px;}
.y12{bottom:90.405000px;}
.y34{bottom:95.394000px;}
.yb{bottom:97.740000px;}
.y11{bottom:113.805000px;}
.y33{bottom:116.994000px;}
.ya{bottom:119.340000px;}
.ye6{bottom:119.556000px;}
.ye8{bottom:120.636000px;}
.y17{bottom:124.956000px;}
.y68{bottom:128.736000px;}
.yaa{bottom:130.536000px;}
.yab{bottom:132.336000px;}
.yca{bottom:133.236000px;}
.y10{bottom:137.205000px;}
.y32{bottom:138.594000px;}
.yf{bottom:138.645000px;}
.ye5{bottom:141.156000px;}
.y9{bottom:141.300000px;}
.y9d{bottom:142.236000px;}
.y67{bottom:150.330000px;}
.ya9{bottom:152.130000px;}
.y96{bottom:153.930000px;}
.yc9{bottom:154.830000px;}
.y31{bottom:160.194000px;}
.ye4{bottom:162.750000px;}
.y9c{bottom:163.830000px;}
.y8{bottom:164.700000px;}
.y66{bottom:171.930000px;}
.ya8{bottom:173.730000px;}
.y95{bottom:175.530000px;}
.yc8{bottom:176.430000px;}
.ye3{bottom:179.670000px;}
.y30{bottom:181.794000px;}
.y108{bottom:184.350000px;}
.y9b{bottom:185.430000px;}
.y65{bottom:193.530000px;}
.ya7{bottom:195.330000px;}
.y94{bottom:197.130000px;}
.yc7{bottom:198.030000px;}
.ye7{bottom:201.630000px;}
.y2f{bottom:203.394000px;}
.y107{bottom:205.950000px;}
.y9a{bottom:207.030000px;}
.y64{bottom:215.130000px;}
.ya6{bottom:216.930000px;}
.y93{bottom:218.730000px;}
.yc6{bottom:219.630000px;}
.y2e{bottom:225.039000px;}
.y106{bottom:227.550000px;}
.y99{bottom:228.630000px;}
.y63{bottom:236.730000px;}
.ya5{bottom:238.530000px;}
.y92{bottom:240.330000px;}
.yc5{bottom:241.230000px;}
.y97{bottom:244.830000px;}
.ye2{bottom:245.190000px;}
.y2d{bottom:246.639000px;}
.y105{bottom:249.150000px;}
.y62{bottom:258.330000px;}
.ya4{bottom:260.130000px;}
.y91{bottom:261.930000px;}
.yc4{bottom:262.830000px;}
.y2c{bottom:268.239000px;}
.y104{bottom:270.750000px;}
.y61{bottom:279.930000px;}
.ya3{bottom:281.730000px;}
.y90{bottom:283.530000px;}
.yc3{bottom:284.430000px;}
.ye0{bottom:289.290000px;}
.y2b{bottom:289.839000px;}
.y103{bottom:292.350000px;}
.y60{bottom:301.530000px;}
.ya2{bottom:303.330000px;}
.y8f{bottom:305.130000px;}
.yc2{bottom:306.030000px;}
.y2a{bottom:311.439000px;}
.y102{bottom:313.950000px;}
.y5f{bottom:323.130000px;}
.ya1{bottom:324.930000px;}
.y8e{bottom:326.730000px;}
.yc1{bottom:327.630000px;}
.y29{bottom:333.039000px;}
.y101{bottom:335.550000px;}
.y5e{bottom:344.775000px;}
.ya0{bottom:346.575000px;}
.y8d{bottom:348.375000px;}
.yc0{bottom:349.275000px;}
.y28{bottom:354.639000px;}
.ydf{bottom:354.855000px;}
.y100{bottom:357.195000px;}
.y9e{bottom:362.775000px;}
.y5d{bottom:366.375000px;}
.yea{bottom:368.175000px;}
.y8c{bottom:369.975000px;}
.ybf{bottom:370.875000px;}
.y27{bottom:376.239000px;}
.yff{bottom:378.795000px;}
.ye9{bottom:384.375000px;}
.y5c{bottom:387.975000px;}
.y8b{bottom:391.575000px;}
.ybe{bottom:392.475000px;}
.y26{bottom:397.839000px;}
.yfe{bottom:400.395000px;}
.y5b{bottom:409.575000px;}
.y8a{bottom:413.175000px;}
.ybd{bottom:414.075000px;}
.yfd{bottom:417.315000px;}
.y25{bottom:419.439000px;}
.yde{bottom:420.375000px;}
.y5a{bottom:431.175000px;}
.y89{bottom:434.775000px;}
.ybc{bottom:435.675000px;}
.y24{bottom:440.139000px;}
.y59{bottom:452.775000px;}
.y88{bottom:456.375000px;}
.ybb{bottom:457.275000px;}
.y23{bottom:458.139000px;}
.yfc{bottom:461.235000px;}
.ydd{bottom:464.295000px;}
.y58{bottom:474.375000px;}
.y22{bottom:476.139000px;}
.y87{bottom:477.975000px;}
.yba{bottom:478.875000px;}
.y21{bottom:494.169000px;}
.y57{bottom:495.975000px;}
.y86{bottom:499.575000px;}
.yb9{bottom:500.475000px;}
.yfb{bottom:505.335000px;}
.y20{bottom:512.169000px;}
.y56{bottom:517.575000px;}
.y85{bottom:521.175000px;}
.yb8{bottom:522.075000px;}
.ydc{bottom:529.815000px;}
.y1f{bottom:530.169000px;}
.y55{bottom:539.175000px;}
.y84{bottom:542.775000px;}
.yb7{bottom:543.675000px;}
.y1e{bottom:548.169000px;}
.yfa{bottom:549.255000px;}
.y54{bottom:560.775000px;}
.y83{bottom:564.375000px;}
.yb6{bottom:565.275000px;}
.y1d{bottom:566.169000px;}
.y53{bottom:582.375000px;}
.y1c{bottom:584.169000px;}
.y82{bottom:585.975000px;}
.yb5{bottom:586.875000px;}
.yf9{bottom:593.175000px;}
.yd9{bottom:595.335000px;}
.y1b{bottom:603.069000px;}
.y52{bottom:604.005000px;}
.y81{bottom:607.605000px;}
.yb4{bottom:608.505000px;}
.y1a{bottom:623.769000px;}
.y51{bottom:625.605000px;}
.y80{bottom:629.205000px;}
.yb3{bottom:630.105000px;}
.yf8{bottom:637.125000px;}
.y19{bottom:643.029000px;}
.y18{bottom:644.469000px;}
.y50{bottom:647.205000px;}
.y7f{bottom:650.805000px;}
.yb2{bottom:651.705000px;}
.yd8{bottom:661.065000px;}
.y4f{bottom:668.805000px;}
.y7e{bottom:672.405000px;}
.yb1{bottom:673.305000px;}
.yf7{bottom:681.045000px;}
.y4e{bottom:690.405000px;}
.y7d{bottom:694.005000px;}
.yb0{bottom:694.905000px;}
.y4d{bottom:712.005000px;}
.y7c{bottom:715.605000px;}
.yaf{bottom:716.505000px;}
.yf6{bottom:724.965000px;}
.yd7{bottom:726.585000px;}
.y4c{bottom:733.605000px;}
.y7b{bottom:737.205000px;}
.yae{bottom:738.105000px;}
.y4b{bottom:755.205000px;}
.y7a{bottom:758.805000px;}
.yad{bottom:759.705000px;}
.yf5{bottom:769.065000px;}
.y4a{bottom:776.805000px;}
.y79{bottom:780.405000px;}
.yac{bottom:781.305000px;}
.ye{bottom:786.345000px;}
.yd6{bottom:792.105000px;}
.ycb{bottom:797.505000px;}
.y49{bottom:798.405000px;}
.y78{bottom:802.005000px;}
.yec{bottom:802.905000px;}
.yf4{bottom:812.985000px;}
.y48{bottom:820.005000px;}
.y77{bottom:823.605000px;}
.yeb{bottom:824.505000px;}
.yed{bottom:840.705000px;}
.y47{bottom:841.605000px;}
.y76{bottom:845.205000px;}
.y116{bottom:851.505000px;}
.yf3{bottom:856.905000px;}
.yd4{bottom:857.625000px;}
.y46{bottom:863.205000px;}
.y75{bottom:866.805000px;}
.y115{bottom:869.505000px;}
.y45{bottom:884.850000px;}
.y114{bottom:887.550000px;}
.y74{bottom:888.450000px;}
.yf2{bottom:900.870000px;}
.yd3{bottom:901.590000px;}
.y113{bottom:905.550000px;}
.y44{bottom:906.450000px;}
.y73{bottom:910.050000px;}
.y112{bottom:923.550000px;}
.y43{bottom:928.050000px;}
.y72{bottom:931.650000px;}
.y111{bottom:941.550000px;}
.y7{bottom:941.910000px;}
.yf1{bottom:944.790000px;}
.yd2{bottom:945.510000px;}
.y42{bottom:949.650000px;}
.y71{bottom:953.250000px;}
.y110{bottom:959.550000px;}
.yf0{bottom:967.110000px;}
.y41{bottom:971.250000px;}
.y70{bottom:974.850000px;}
.y10f{bottom:977.550000px;}
.yd0{bottom:989.610000px;}
.y40{bottom:992.850000px;}
.y10e{bottom:995.550000px;}
.y6f{bottom:996.450000px;}
.yef{bottom:1011.210000px;}
.y10d{bottom:1013.550000px;}
.y3f{bottom:1014.450000px;}
.y6e{bottom:1018.050000px;}
.y10c{bottom:1031.550000px;}
.y3e{bottom:1036.050000px;}
.y6d{bottom:1039.650000px;}
.y10b{bottom:1049.550000px;}
.ycd{bottom:1055.130000px;}
.y3d{bottom:1057.650000px;}
.y6c{bottom:1061.250000px;}
.y10a{bottom:1067.550000px;}
.yee{bottom:1076.730000px;}
.y3c{bottom:1079.250000px;}
.y6b{bottom:1082.850000px;}
.y109{bottom:1085.550000px;}
.y3b{bottom:1101.210000px;}
.y6a{bottom:1104.450000px;}
.y3a{bottom:1124.610000px;}
.y69{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.h14{height:21.600000px;}
.h10{height:43.200000px;}
.h12{height:43.236000px;}
.hd{height:49.992188px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h11{height:64.800000px;}
.h13{height:64.836000px;}
.h7{height:67.262400px;}
.h8{height:154.830000px;}
.h6{height:182.340000px;}
.hf{height:267.870000px;}
.he{height:347.430000px;}
.hc{height:508.575000px;}
.h9{height:660.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:70.956000px;}
.w7{width:72.936000px;}
.w9{width:111.456000px;}
.wd{width:181.830000px;}
.w3{width:202.215000px;}
.wc{width:217.290000px;}
.w8{width:243.930000px;}
.we{width:249.150000px;}
.wa{width:290.550000px;}
.w5{width:350.715000px;}
.w6{width:370.155000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x19{left:106.235987px;}
.x10{left:138.995987px;}
.x16{left:157.530000px;}
.x13{left:159.690000px;}
.x2{left:190.290000px;}
.x12{left:217.650000px;}
.xa{left:247.575000px;}
.x9{left:260.175000px;}
.xf{left:271.829987px;}
.xe{left:276.329987px;}
.xc{left:283.754987px;}
.xb{left:285.374987px;}
.x3{left:287.175000px;}
.x5{left:332.175000px;}
.x11{left:342.615000px;}
.x8{left:360.074987px;}
.x7{left:361.875000px;}
.x17{left:375.555000px;}
.x14{left:404.535000px;}
.x6{left:435.675000px;}
.x15{left:516.705000px;}
.x18{left:558.105000px;}
.xd{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.597333pt;}
.ls20{letter-spacing:-0.436267pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.046720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000001pt;}
.ls1a{letter-spacing:0.000003pt;}
.ls13{letter-spacing:0.008960pt;}
.ls6{letter-spacing:0.041600pt;}
.ls17{letter-spacing:0.059520pt;}
.ls7{letter-spacing:0.109333pt;}
.ls9{letter-spacing:0.115200pt;}
.ls19{letter-spacing:0.122880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls1c{letter-spacing:0.203733pt;}
.ls14{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.263467pt;}
.lsd{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.330240pt;}
.ls15{letter-spacing:0.431360pt;}
.ls12{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.842667pt;}
.ls10{letter-spacing:12.800000pt;}
.ls1d{letter-spacing:18.080000pt;}
.lsf{letter-spacing:20.480000pt;}
.lsa{letter-spacing:26.240000pt;}
.lse{letter-spacing:30.720000pt;}
.ls18{letter-spacing:35.200000pt;}
.ls11{letter-spacing:156.160000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls1b{letter-spacing:750.474667pt;}
.wsc{word-spacing:-13.760000pt;}
.ws9{word-spacing:-13.696000pt;}
.wsb{word-spacing:-13.440003pt;}
.wsf{word-spacing:-13.440001pt;}
.ws1{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.248000pt;}
.wsa{word-spacing:-13.184000pt;}
.ws0{word-spacing:-12.992000pt;}
.wse{word-spacing:-11.997867pt;}
.wsd{word-spacing:-11.358933pt;}
.ws4{word-spacing:-11.196800pt;}
.ws2{word-spacing:-11.155200pt;}
.ws3{word-spacing:-11.108480pt;}
.ws7{word-spacing:-10.783360pt;}
.ws5{word-spacing:-10.730240pt;}
.ws10{word-spacing:-10.718933pt;}
.ws6{word-spacing:-10.557867pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._3e{margin-left:-8.512000pt;}
._6{margin-left:-5.877333pt;}
._a{margin-left:-4.864000pt;}
._b{margin-left:-3.663360pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._7{width:1.045760pt;}
._5{width:1.962667pt;}
._23{width:2.943573pt;}
._2f{width:3.904000pt;}
._25{width:5.248000pt;}
._24{width:6.848000pt;}
._3b{width:7.742293pt;}
._20{width:8.810667pt;}
._1c{width:9.920000pt;}
._14{width:11.520000pt;}
._21{width:12.416000pt;}
._12{width:14.912000pt;}
._2c{width:15.872000pt;}
._1a{width:17.664000pt;}
._19{width:18.816000pt;}
._1b{width:20.032000pt;}
._18{width:20.928000pt;}
._3f{width:21.824000pt;}
._2a{width:22.720000pt;}
._2d{width:24.768000pt;}
._10{width:25.898667pt;}
._11{width:27.136000pt;}
._1f{width:28.288000pt;}
._1e{width:29.184000pt;}
._1d{width:30.144000pt;}
._17{width:31.680000pt;}
._38{width:32.682240pt;}
._37{width:33.621333pt;}
._2b{width:34.560000pt;}
._d{width:35.584000pt;}
._e{width:37.184000pt;}
._f{width:38.122240pt;}
._16{width:39.104000pt;}
._15{width:40.192000pt;}
._13{width:41.216000pt;}
._2e{width:42.112000pt;}
._31{width:44.608000pt;}
._36{width:47.274667pt;}
._29{width:48.960000pt;}
._28{width:50.496000pt;}
._22{width:52.608000pt;}
._30{width:54.080000pt;}
._34{width:59.136000pt;}
._26{width:62.656000pt;}
._33{width:71.488000pt;}
._32{width:72.576000pt;}
._3c{width:156.160000pt;}
._2{width:422.368000pt;}
._8{width:484.221440pt;}
._3{width:1151.626667pt;}
._35{width:1294.860373pt;}
._3a{width:1296.140373pt;}
._3d{width:1298.060373pt;}
._39{width:1301.260373pt;}
._27{width:1319.820373pt;}
._c{width:1321.100373pt;}
._9{width:1325.431467pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:0.800000pt;}
.ycc{bottom:1.280000pt;}
.y39{bottom:4.000000pt;}
.ycf{bottom:4.800000pt;}
.y16{bottom:5.120000pt;}
.y98{bottom:5.920000pt;}
.y38{bottom:20.000000pt;}
.yce{bottom:24.000000pt;}
.ydb{bottom:24.026667pt;}
.yd5{bottom:24.040000pt;}
.y15{bottom:24.800000pt;}
.y37{bottom:35.994667pt;}
.y14{bottom:41.600000pt;}
.yd1{bottom:43.200000pt;}
.yda{bottom:43.226667pt;}
.ye1{bottom:43.240000pt;}
.y5{bottom:51.200000pt;}
.yd{bottom:51.680000pt;}
.y36{bottom:51.994667pt;}
.y13{bottom:60.800000pt;}
.y35{bottom:67.994667pt;}
.yc{bottom:70.080000pt;}
.y4{bottom:70.272000pt;}
.y12{bottom:80.360000pt;}
.y34{bottom:84.794667pt;}
.yb{bottom:86.880000pt;}
.y11{bottom:101.160000pt;}
.y33{bottom:103.994667pt;}
.ya{bottom:106.080000pt;}
.ye6{bottom:106.272000pt;}
.ye8{bottom:107.232000pt;}
.y17{bottom:111.072000pt;}
.y68{bottom:114.432000pt;}
.yaa{bottom:116.032000pt;}
.yab{bottom:117.632000pt;}
.yca{bottom:118.432000pt;}
.y10{bottom:121.960000pt;}
.y32{bottom:123.194667pt;}
.yf{bottom:123.240000pt;}
.ye5{bottom:125.472000pt;}
.y9{bottom:125.600000pt;}
.y9d{bottom:126.432000pt;}
.y67{bottom:133.626667pt;}
.ya9{bottom:135.226667pt;}
.y96{bottom:136.826667pt;}
.yc9{bottom:137.626667pt;}
.y31{bottom:142.394667pt;}
.ye4{bottom:144.666667pt;}
.y9c{bottom:145.626667pt;}
.y8{bottom:146.400000pt;}
.y66{bottom:152.826667pt;}
.ya8{bottom:154.426667pt;}
.y95{bottom:156.026667pt;}
.yc8{bottom:156.826667pt;}
.ye3{bottom:159.706667pt;}
.y30{bottom:161.594667pt;}
.y108{bottom:163.866667pt;}
.y9b{bottom:164.826667pt;}
.y65{bottom:172.026667pt;}
.ya7{bottom:173.626667pt;}
.y94{bottom:175.226667pt;}
.yc7{bottom:176.026667pt;}
.ye7{bottom:179.226667pt;}
.y2f{bottom:180.794667pt;}
.y107{bottom:183.066667pt;}
.y9a{bottom:184.026667pt;}
.y64{bottom:191.226667pt;}
.ya6{bottom:192.826667pt;}
.y93{bottom:194.426667pt;}
.yc6{bottom:195.226667pt;}
.y2e{bottom:200.034667pt;}
.y106{bottom:202.266667pt;}
.y99{bottom:203.226667pt;}
.y63{bottom:210.426667pt;}
.ya5{bottom:212.026667pt;}
.y92{bottom:213.626667pt;}
.yc5{bottom:214.426667pt;}
.y97{bottom:217.626667pt;}
.ye2{bottom:217.946667pt;}
.y2d{bottom:219.234667pt;}
.y105{bottom:221.466667pt;}
.y62{bottom:229.626667pt;}
.ya4{bottom:231.226667pt;}
.y91{bottom:232.826667pt;}
.yc4{bottom:233.626667pt;}
.y2c{bottom:238.434667pt;}
.y104{bottom:240.666667pt;}
.y61{bottom:248.826667pt;}
.ya3{bottom:250.426667pt;}
.y90{bottom:252.026667pt;}
.yc3{bottom:252.826667pt;}
.ye0{bottom:257.146667pt;}
.y2b{bottom:257.634667pt;}
.y103{bottom:259.866667pt;}
.y60{bottom:268.026667pt;}
.ya2{bottom:269.626667pt;}
.y8f{bottom:271.226667pt;}
.yc2{bottom:272.026667pt;}
.y2a{bottom:276.834667pt;}
.y102{bottom:279.066667pt;}
.y5f{bottom:287.226667pt;}
.ya1{bottom:288.826667pt;}
.y8e{bottom:290.426667pt;}
.yc1{bottom:291.226667pt;}
.y29{bottom:296.034667pt;}
.y101{bottom:298.266667pt;}
.y5e{bottom:306.466667pt;}
.ya0{bottom:308.066667pt;}
.y8d{bottom:309.666667pt;}
.yc0{bottom:310.466667pt;}
.y28{bottom:315.234667pt;}
.ydf{bottom:315.426667pt;}
.y100{bottom:317.506667pt;}
.y9e{bottom:322.466667pt;}
.y5d{bottom:325.666667pt;}
.yea{bottom:327.266667pt;}
.y8c{bottom:328.866667pt;}
.ybf{bottom:329.666667pt;}
.y27{bottom:334.434667pt;}
.yff{bottom:336.706667pt;}
.ye9{bottom:341.666667pt;}
.y5c{bottom:344.866667pt;}
.y8b{bottom:348.066667pt;}
.ybe{bottom:348.866667pt;}
.y26{bottom:353.634667pt;}
.yfe{bottom:355.906667pt;}
.y5b{bottom:364.066667pt;}
.y8a{bottom:367.266667pt;}
.ybd{bottom:368.066667pt;}
.yfd{bottom:370.946667pt;}
.y25{bottom:372.834667pt;}
.yde{bottom:373.666667pt;}
.y5a{bottom:383.266667pt;}
.y89{bottom:386.466667pt;}
.ybc{bottom:387.266667pt;}
.y24{bottom:391.234667pt;}
.y59{bottom:402.466667pt;}
.y88{bottom:405.666667pt;}
.ybb{bottom:406.466667pt;}
.y23{bottom:407.234667pt;}
.yfc{bottom:409.986667pt;}
.ydd{bottom:412.706667pt;}
.y58{bottom:421.666667pt;}
.y22{bottom:423.234667pt;}
.y87{bottom:424.866667pt;}
.yba{bottom:425.666667pt;}
.y21{bottom:439.261333pt;}
.y57{bottom:440.866667pt;}
.y86{bottom:444.066667pt;}
.yb9{bottom:444.866667pt;}
.yfb{bottom:449.186667pt;}
.y20{bottom:455.261333pt;}
.y56{bottom:460.066667pt;}
.y85{bottom:463.266667pt;}
.yb8{bottom:464.066667pt;}
.ydc{bottom:470.946667pt;}
.y1f{bottom:471.261333pt;}
.y55{bottom:479.266667pt;}
.y84{bottom:482.466667pt;}
.yb7{bottom:483.266667pt;}
.y1e{bottom:487.261333pt;}
.yfa{bottom:488.226667pt;}
.y54{bottom:498.466667pt;}
.y83{bottom:501.666667pt;}
.yb6{bottom:502.466667pt;}
.y1d{bottom:503.261333pt;}
.y53{bottom:517.666667pt;}
.y1c{bottom:519.261333pt;}
.y82{bottom:520.866667pt;}
.yb5{bottom:521.666667pt;}
.yf9{bottom:527.266667pt;}
.yd9{bottom:529.186667pt;}
.y1b{bottom:536.061333pt;}
.y52{bottom:536.893333pt;}
.y81{bottom:540.093333pt;}
.yb4{bottom:540.893333pt;}
.y1a{bottom:554.461333pt;}
.y51{bottom:556.093333pt;}
.y80{bottom:559.293333pt;}
.yb3{bottom:560.093333pt;}
.yf8{bottom:566.333333pt;}
.y19{bottom:571.581333pt;}
.y18{bottom:572.861333pt;}
.y50{bottom:575.293333pt;}
.y7f{bottom:578.493333pt;}
.yb2{bottom:579.293333pt;}
.yd8{bottom:587.613333pt;}
.y4f{bottom:594.493333pt;}
.y7e{bottom:597.693333pt;}
.yb1{bottom:598.493333pt;}
.yf7{bottom:605.373333pt;}
.y4e{bottom:613.693333pt;}
.y7d{bottom:616.893333pt;}
.yb0{bottom:617.693333pt;}
.y4d{bottom:632.893333pt;}
.y7c{bottom:636.093333pt;}
.yaf{bottom:636.893333pt;}
.yf6{bottom:644.413333pt;}
.yd7{bottom:645.853333pt;}
.y4c{bottom:652.093333pt;}
.y7b{bottom:655.293333pt;}
.yae{bottom:656.093333pt;}
.y4b{bottom:671.293333pt;}
.y7a{bottom:674.493333pt;}
.yad{bottom:675.293333pt;}
.yf5{bottom:683.613333pt;}
.y4a{bottom:690.493333pt;}
.y79{bottom:693.693333pt;}
.yac{bottom:694.493333pt;}
.ye{bottom:698.973333pt;}
.yd6{bottom:704.093333pt;}
.ycb{bottom:708.893333pt;}
.y49{bottom:709.693333pt;}
.y78{bottom:712.893333pt;}
.yec{bottom:713.693333pt;}
.yf4{bottom:722.653333pt;}
.y48{bottom:728.893333pt;}
.y77{bottom:732.093333pt;}
.yeb{bottom:732.893333pt;}
.yed{bottom:747.293333pt;}
.y47{bottom:748.093333pt;}
.y76{bottom:751.293333pt;}
.y116{bottom:756.893333pt;}
.yf3{bottom:761.693333pt;}
.yd4{bottom:762.333333pt;}
.y46{bottom:767.293333pt;}
.y75{bottom:770.493333pt;}
.y115{bottom:772.893333pt;}
.y45{bottom:786.533333pt;}
.y114{bottom:788.933333pt;}
.y74{bottom:789.733333pt;}
.yf2{bottom:800.773333pt;}
.yd3{bottom:801.413333pt;}
.y113{bottom:804.933333pt;}
.y44{bottom:805.733333pt;}
.y73{bottom:808.933333pt;}
.y112{bottom:820.933333pt;}
.y43{bottom:824.933333pt;}
.y72{bottom:828.133333pt;}
.y111{bottom:836.933333pt;}
.y7{bottom:837.253333pt;}
.yf1{bottom:839.813333pt;}
.yd2{bottom:840.453333pt;}
.y42{bottom:844.133333pt;}
.y71{bottom:847.333333pt;}
.y110{bottom:852.933333pt;}
.yf0{bottom:859.653333pt;}
.y41{bottom:863.333333pt;}
.y70{bottom:866.533333pt;}
.y10f{bottom:868.933333pt;}
.yd0{bottom:879.653333pt;}
.y40{bottom:882.533333pt;}
.y10e{bottom:884.933333pt;}
.y6f{bottom:885.733333pt;}
.yef{bottom:898.853333pt;}
.y10d{bottom:900.933333pt;}
.y3f{bottom:901.733333pt;}
.y6e{bottom:904.933333pt;}
.y10c{bottom:916.933333pt;}
.y3e{bottom:920.933333pt;}
.y6d{bottom:924.133333pt;}
.y10b{bottom:932.933333pt;}
.ycd{bottom:937.893333pt;}
.y3d{bottom:940.133333pt;}
.y6c{bottom:943.333333pt;}
.y10a{bottom:948.933333pt;}
.yee{bottom:957.093333pt;}
.y3c{bottom:959.333333pt;}
.y6b{bottom:962.533333pt;}
.y109{bottom:964.933333pt;}
.y3b{bottom:978.853333pt;}
.y6a{bottom:981.733333pt;}
.y3a{bottom:999.653333pt;}
.y69{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.h14{height:19.200000pt;}
.h10{height:38.400000pt;}
.h12{height:38.432000pt;}
.hd{height:44.437500pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h11{height:57.600000pt;}
.h13{height:57.632000pt;}
.h7{height:59.788800pt;}
.h8{height:137.626667pt;}
.h6{height:162.080000pt;}
.hf{height:238.106667pt;}
.he{height:308.826667pt;}
.hc{height:452.066667pt;}
.h9{height:587.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:63.072000pt;}
.w7{width:64.832000pt;}
.w9{width:99.072000pt;}
.wd{width:161.626667pt;}
.w3{width:179.746667pt;}
.wc{width:193.146667pt;}
.w8{width:216.826667pt;}
.we{width:221.466667pt;}
.wa{width:258.266667pt;}
.w5{width:311.746667pt;}
.w6{width:329.026667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x19{left:94.431988pt;}
.x10{left:123.551988pt;}
.x16{left:140.026667pt;}
.x13{left:141.946667pt;}
.x2{left:169.146667pt;}
.x12{left:193.466667pt;}
.xa{left:220.066667pt;}
.x9{left:231.266667pt;}
.xf{left:241.626655pt;}
.xe{left:245.626655pt;}
.xc{left:252.226655pt;}
.xb{left:253.666655pt;}
.x3{left:255.266667pt;}
.x5{left:295.266667pt;}
.x11{left:304.546667pt;}
.x8{left:320.066655pt;}
.x7{left:321.666667pt;}
.x17{left:333.826667pt;}
.x14{left:359.586667pt;}
.x6{left:387.266667pt;}
.x15{left:459.293333pt;}
.x18{left:496.093333pt;}
.xd{left:718.373322pt;}
}




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