
    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_706421c27fb26a22fd3d2d10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_68e2c2efdbafecf66de9ca56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_44eacf342ddff69482aaf38d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fe8cde13aa607211c6bd95b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_0c0df566924b95dd486770f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_f235b9df0a87f0dbe16601ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.859863;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_cd3a9c83b39b57b69eab34c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_b7ef5e2282d07a7ceb39e780.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_30ab8b28cd2b6a1be46413e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_9228a05c8ec9e1c7c4098abf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921875;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_905931e3780a31e93da12dd5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.092773;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);}
.v1{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:3.600000px;}
.ls3{letter-spacing:645.660000px;}
.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;}
}
.wsd{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.060000px;}
.wsc{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._b{margin-left:-4.320000px;}
._c{margin-left:-2.448000px;}
._1{margin-left:-1.020240px;}
._3{width:1.005840px;}
._4{width:2.021520px;}
._7{width:3.816000px;}
._1f{width:5.096160px;}
._2{width:6.279840px;}
._0{width:7.459920px;}
._5{width:9.072000px;}
._6{width:10.152000px;}
._22{width:11.232000px;}
._1a{width:12.312000px;}
._20{width:13.562640px;}
._16{width:15.095520px;}
._15{width:16.512480px;}
._23{width:17.588160px;}
._d{width:19.396800px;}
._a{width:20.664000px;}
._14{width:21.828240px;}
._10{width:23.112000px;}
._f{width:24.336000px;}
._21{width:25.440480px;}
._1e{width:27.300240px;}
._24{width:28.440000px;}
._19{width:32.760000px;}
._11{width:33.768000px;}
._12{width:35.424000px;}
._1b{width:44.280000px;}
._18{width:56.880000px;}
._e{width:58.752000px;}
._17{width:63.792000px;}
._1c{width:72.576000px;}
._1d{width:73.802160px;}
._8{width:76.464000px;}
._9{width:135.936000px;}
._13{width:169.128000px;}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs6{font-size:33.120000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y74{bottom:5.040000px;}
.y43{bottom:5.220000px;}
.yba{bottom:7.740000px;}
.y49{bottom:14.940000px;}
.y7{bottom:15.300000px;}
.yc3{bottom:16.920000px;}
.yd5{bottom:27.000000px;}
.yd9{bottom:27.360000px;}
.y48{bottom:32.040000px;}
.ydb{bottom:32.220000px;}
.y6{bottom:33.300000px;}
.yc2{bottom:34.200000px;}
.y4a{bottom:42.876000px;}
.y46{bottom:44.136000px;}
.ybd{bottom:44.280000px;}
.yd4{bottom:46.800000px;}
.y47{bottom:49.320000px;}
.yda{bottom:49.500000px;}
.yd7{bottom:51.300000px;}
.yc1{bottom:51.480000px;}
.y4{bottom:60.480000px;}
.ybc{bottom:64.125000px;}
.yd6{bottom:68.580000px;}
.yc0{bottom:68.805000px;}
.y3{bottom:80.316000px;}
.ybf{bottom:86.085000px;}
.ybe{bottom:103.185000px;}
.yc6{bottom:141.876000px;}
.y9e{bottom:142.596000px;}
.yc5{bottom:145.656000px;}
.y136{bottom:154.110000px;}
.yc4{bottom:159.330000px;}
.yfe{bottom:159.870000px;}
.y9d{bottom:166.350000px;}
.y11c{bottom:167.430000px;}
.y72{bottom:172.290000px;}
.y135{bottom:177.870000px;}
.y40{bottom:182.370000px;}
.yfd{bottom:183.630000px;}
.y9c{bottom:190.110000px;}
.y11b{bottom:191.190000px;}
.y71{bottom:196.050000px;}
.y3f{bottom:206.130000px;}
.yfc{bottom:207.390000px;}
.y9b{bottom:213.870000px;}
.y11a{bottom:215.130000px;}
.y134{bottom:216.750000px;}
.y70{bottom:219.810000px;}
.ybb{bottom:221.070000px;}
.y3e{bottom:229.890000px;}
.yfb{bottom:231.150000px;}
.y9a{bottom:237.810000px;}
.y119{bottom:238.890000px;}
.y133{bottom:240.510000px;}
.y6f{bottom:243.750000px;}
.y3d{bottom:253.650000px;}
.yfa{bottom:254.910000px;}
.y99{bottom:261.570000px;}
.y118{bottom:262.650000px;}
.y6e{bottom:267.510000px;}
.y3c{bottom:277.590000px;}
.yf9{bottom:278.895000px;}
.y132{bottom:279.255000px;}
.y98{bottom:285.375000px;}
.y117{bottom:286.455000px;}
.y6d{bottom:291.315000px;}
.y3b{bottom:301.350000px;}
.yf8{bottom:302.655000px;}
.y131{bottom:303.195000px;}
.y97{bottom:309.135000px;}
.y116{bottom:310.395000px;}
.y6c{bottom:315.075000px;}
.y3a{bottom:325.110000px;}
.yf7{bottom:326.415000px;}
.y96{bottom:333.075000px;}
.y115{bottom:334.155000px;}
.yb9{bottom:338.655000px;}
.y6b{bottom:339.015000px;}
.y130{bottom:341.895000px;}
.y39{bottom:348.915000px;}
.yf6{bottom:350.175000px;}
.y95{bottom:356.835000px;}
.y114{bottom:357.915000px;}
.y6a{bottom:362.775000px;}
.yb8{bottom:370.695000px;}
.y38{bottom:372.855000px;}
.yf5{bottom:374.115000px;}
.y94{bottom:380.595000px;}
.y12f{bottom:380.775000px;}
.y113{bottom:381.675000px;}
.y69{bottom:386.535000px;}
.yb7{bottom:394.455000px;}
.y37{bottom:396.615000px;}
.yf4{bottom:397.875000px;}
.y93{bottom:404.355000px;}
.y12e{bottom:404.535000px;}
.y112{bottom:405.435000px;}
.y68{bottom:410.295000px;}
.yb6{bottom:418.215000px;}
.y36{bottom:420.375000px;}
.yf3{bottom:421.635000px;}
.y92{bottom:428.295000px;}
.y111{bottom:429.375000px;}
.y67{bottom:434.235000px;}
.yb5{bottom:442.155000px;}
.y12d{bottom:443.415000px;}
.y35{bottom:444.135000px;}
.yf2{bottom:445.395000px;}
.y91{bottom:452.055000px;}
.y110{bottom:453.135000px;}
.y66{bottom:457.995000px;}
.yb4{bottom:465.915000px;}
.y12c{bottom:467.175000px;}
.y34{bottom:468.075000px;}
.yf1{bottom:469.335000px;}
.y90{bottom:475.815000px;}
.y10f{bottom:476.895000px;}
.y65{bottom:481.755000px;}
.yb3{bottom:489.675000px;}
.y33{bottom:491.835000px;}
.yf0{bottom:493.095000px;}
.y8f{bottom:499.575000px;}
.y10e{bottom:500.655000px;}
.y64{bottom:505.515000px;}
.y12b{bottom:505.875000px;}
.yb2{bottom:513.435000px;}
.y32{bottom:515.595000px;}
.yef{bottom:516.855000px;}
.y8e{bottom:523.335000px;}
.y10d{bottom:524.595000px;}
.y63{bottom:529.455000px;}
.y12a{bottom:529.815000px;}
.yb1{bottom:537.375000px;}
.y31{bottom:539.355000px;}
.yee{bottom:540.615000px;}
.y8d{bottom:547.275000px;}
.y10c{bottom:548.355000px;}
.y62{bottom:553.215000px;}
.y129{bottom:553.575000px;}
.yb0{bottom:561.165000px;}
.y30{bottom:563.115000px;}
.yed{bottom:564.585000px;}
.y8c{bottom:571.065000px;}
.y10b{bottom:572.145000px;}
.y61{bottom:577.005000px;}
.y128{bottom:577.365000px;}
.yaf{bottom:584.925000px;}
.y2f{bottom:587.055000px;}
.yec{bottom:588.345000px;}
.y8b{bottom:594.825000px;}
.y10a{bottom:595.905000px;}
.y60{bottom:600.765000px;}
.yad{bottom:608.685000px;}
.y2e{bottom:610.845000px;}
.yeb{bottom:612.105000px;}
.yae{bottom:615.525000px;}
.y127{bottom:616.245000px;}
.y8a{bottom:618.585000px;}
.y109{bottom:619.845000px;}
.y5f{bottom:624.525000px;}
.yac{bottom:632.625000px;}
.y2d{bottom:634.605000px;}
.yea{bottom:635.865000px;}
.y126{bottom:640.005000px;}
.y89{bottom:642.525000px;}
.y108{bottom:643.605000px;}
.y5e{bottom:648.465000px;}
.yab{bottom:656.025000px;}
.y2c{bottom:658.365000px;}
.ye9{bottom:659.805000px;}
.y88{bottom:666.285000px;}
.y107{bottom:667.365000px;}
.y5d{bottom:672.225000px;}
.y125{bottom:678.885000px;}
.yaa{bottom:680.145000px;}
.y2b{bottom:682.305000px;}
.ye8{bottom:683.565000px;}
.y87{bottom:690.045000px;}
.y106{bottom:691.125000px;}
.y5c{bottom:695.985000px;}
.y124{bottom:702.645000px;}
.ya9{bottom:703.905000px;}
.y2a{bottom:706.065000px;}
.ye7{bottom:707.325000px;}
.y86{bottom:713.805000px;}
.y105{bottom:715.065000px;}
.y5b{bottom:719.745000px;}
.ya8{bottom:727.845000px;}
.y29{bottom:729.825000px;}
.ye6{bottom:731.085000px;}
.y85{bottom:737.745000px;}
.y23{bottom:738.105000px;}
.y104{bottom:738.465000px;}
.y123{bottom:741.345000px;}
.y5a{bottom:743.685000px;}
.ya7{bottom:751.605000px;}
.y28{bottom:753.585000px;}
.ye5{bottom:755.025000px;}
.y22{bottom:757.185000px;}
.y103{bottom:759.345000px;}
.y84{bottom:761.505000px;}
.y59{bottom:767.445000px;}
.ya6{bottom:775.005000px;}
.y21{bottom:775.905000px;}
.y27{bottom:777.525000px;}
.ye4{bottom:778.785000px;}
.y122{bottom:780.225000px;}
.y102{bottom:783.285000px;}
.y83{bottom:785.265000px;}
.y58{bottom:791.205000px;}
.y20{bottom:793.005000px;}
.ya5{bottom:798.765000px;}
.y26{bottom:801.285000px;}
.ye3{bottom:802.185000px;}
.y121{bottom:803.985000px;}
.y101{bottom:807.045000px;}
.y82{bottom:809.025000px;}
.y1f{bottom:812.445000px;}
.y57{bottom:814.965000px;}
.ya4{bottom:822.885000px;}
.y25{bottom:825.045000px;}
.ye2{bottom:826.305000px;}
.y100{bottom:830.985000px;}
.y1e{bottom:831.345000px;}
.y81{bottom:832.965000px;}
.y56{bottom:838.950000px;}
.y120{bottom:842.910000px;}
.ya3{bottom:845.610000px;}
.y24{bottom:848.445000px;}
.y41{bottom:848.805000px;}
.ye1{bottom:850.110000px;}
.y1d{bottom:850.245000px;}
.yff{bottom:854.790000px;}
.y80{bottom:856.770000px;}
.y55{bottom:862.710000px;}
.ya2{bottom:863.070000px;}
.y11f{bottom:866.670000px;}
.ye0{bottom:874.050000px;}
.ycc{bottom:875.490000px;}
.yd0{bottom:876.600000px;}
.ya1{bottom:878.550000px;}
.y7f{bottom:880.530000px;}
.y54{bottom:886.470000px;}
.y17{bottom:888.810000px;}
.ycb{bottom:897.090000px;}
.ydf{bottom:897.810000px;}
.ycf{bottom:898.200000px;}
.ya0{bottom:902.310000px;}
.y7e{bottom:903.930000px;}
.y11e{bottom:905.550000px;}
.y16{bottom:907.710000px;}
.y53{bottom:910.230000px;}
.yca{bottom:918.690000px;}
.yce{bottom:919.800000px;}
.yde{bottom:921.570000px;}
.y9f{bottom:926.070000px;}
.y11d{bottom:926.250000px;}
.y15{bottom:926.790000px;}
.y7d{bottom:927.510000px;}
.y52{bottom:934.170000px;}
.yc9{bottom:940.110000px;}
.ycd{bottom:941.220000px;}
.ydd{bottom:945.330000px;}
.y14{bottom:945.690000px;}
.y7c{bottom:950.010000px;}
.y51{bottom:957.930000px;}
.y13{bottom:964.770000px;}
.ydc{bottom:969.270000px;}
.y7b{bottom:973.770000px;}
.y50{bottom:981.690000px;}
.y12{bottom:983.670000px;}
.yd8{bottom:986.370000px;}
.y1c{bottom:991.050000px;}
.y5{bottom:992.670000px;}
.y7a{bottom:997.530000px;}
.yd2{bottom:1001.130000px;}
.y11{bottom:1005.450000px;}
.y13a{bottom:1006.350000px;}
.y79{bottom:1021.290000px;}
.yd1{bottom:1022.550000px;}
.y10{bottom:1027.230000px;}
.y4f{bottom:1029.390000px;}
.y139{bottom:1030.110000px;}
.y1b{bottom:1037.850000px;}
.y78{bottom:1045.230000px;}
.yf{bottom:1046.850000px;}
.yd3{bottom:1050.090000px;}
.y4e{bottom:1053.150000px;}
.y138{bottom:1054.050000px;}
.y1a{bottom:1057.650000px;}
.ye{bottom:1067.730000px;}
.y77{bottom:1068.990000px;}
.y4d{bottom:1076.910000px;}
.y137{bottom:1077.810000px;}
.y19{bottom:1081.050000px;}
.yd{bottom:1082.850000px;}
.yc8{bottom:1090.110000px;}
.y76{bottom:1092.750000px;}
.y4c{bottom:1096.890000px;}
.yc{bottom:1097.790000px;}
.yc7{bottom:1105.635000px;}
.yb{bottom:1112.730000px;}
.y4b{bottom:1116.330000px;}
.y75{bottom:1116.510000px;}
.ya{bottom:1127.850000px;}
.y18{bottom:1141.200000px;}
.y9{bottom:1142.820000px;}
.y45{bottom:1155.420000px;}
.y8{bottom:1157.760000px;}
.y42{bottom:1170.720000px;}
.y73{bottom:1171.980000px;}
.y44{bottom:1174.860000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1219.860000px;}
.h13{height:5.163750px;}
.h14{height:19.440000px;}
.h10{height:19.620000px;}
.h17{height:23.940000px;}
.h19{height:27.298828px;}
.hd{height:29.691562px;}
.h15{height:32.273438px;}
.h16{height:43.246406px;}
.h8{height:44.860781px;}
.h4{height:47.700000px;}
.h1a{height:48.410156px;}
.h3{height:49.255313px;}
.h11{height:50.229844px;}
.hb{height:53.077852px;}
.h1c{height:53.428008px;}
.h2{height:53.573906px;}
.h1b{height:54.069961px;}
.h5{height:58.833281px;}
.h6{height:59.383125px;}
.h12{height:62.820000px;}
.h1e{height:63.000000px;}
.hc{height:63.949219px;}
.he{height:64.546875px;}
.h7{height:75.519844px;}
.h1d{height:82.116000px;}
.h9{height:85.052461px;}
.ha{height:90.807891px;}
.h18{height:116.676000px;}
.hf{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:109.260000px;}
.w3{width:163.290000px;}
.w9{width:201.450000px;}
.wb{width:201.630000px;}
.w8{width:435.495000px;}
.we{width:527.865000px;}
.wa{width:623.085000px;}
.w6{width:623.265000px;}
.wc{width:892.979973px;}
.w7{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x1d{left:8.100000px;}
.x23{left:11.520000px;}
.x15{left:13.500000px;}
.x18{left:15.840000px;}
.x6{left:25.559987px;}
.x7{left:34.019987px;}
.xf{left:36.179987px;}
.x5{left:37.620000px;}
.x16{left:40.134000px;}
.x1f{left:42.120000px;}
.x19{left:95.940000px;}
.x14{left:127.655987px;}
.x12{left:129.276000px;}
.x27{left:132.155987px;}
.x1b{left:143.676000px;}
.x1a{left:180.749987px;}
.x25{left:191.205000px;}
.x10{left:224.129987px;}
.x1{left:227.729987px;}
.x24{left:237.630000px;}
.xe{left:239.609987px;}
.xd{left:260.849987px;}
.x8{left:269.309987px;}
.x20{left:273.989987px;}
.x9{left:276.554987px;}
.x2{left:280.874987px;}
.x2c{left:289.049987px;}
.x2a{left:297.689987px;}
.x2b{left:299.129987px;}
.x31{left:325.904987px;}
.x1e{left:330.015000px;}
.x26{left:343.694987px;}
.x32{left:351.464987px;}
.x21{left:367.994973px;}
.x22{left:374.114987px;}
.x29{left:391.889987px;}
.xa{left:397.154987px;}
.x28{left:404.309987px;}
.xc{left:424.514987px;}
.x1c{left:445.389000px;}
.x2d{left:456.509987px;}
.x2e{left:501.869987px;}
.x2f{left:504.209987px;}
.x11{left:514.004987px;}
.x30{left:518.249987px;}
.xb{left:519.584987px;}
.x17{left:564.045000px;}
.x4{left:664.349987px;}
.x3{left:667.589987px;}
.x13{left:750.569987px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls3{letter-spacing:573.920000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.720000pt;}
.wsc{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._b{margin-left:-3.840000pt;}
._c{margin-left:-2.176000pt;}
._1{margin-left:-0.906880pt;}
._3{width:0.894080pt;}
._4{width:1.796907pt;}
._7{width:3.392000pt;}
._1f{width:4.529920pt;}
._2{width:5.582080pt;}
._0{width:6.631040pt;}
._5{width:8.064000pt;}
._6{width:9.024000pt;}
._22{width:9.984000pt;}
._1a{width:10.944000pt;}
._20{width:12.055680pt;}
._16{width:13.418240pt;}
._15{width:14.677760pt;}
._23{width:15.633920pt;}
._d{width:17.241600pt;}
._a{width:18.368000pt;}
._14{width:19.402880pt;}
._10{width:20.544000pt;}
._f{width:21.632000pt;}
._21{width:22.613760pt;}
._1e{width:24.266880pt;}
._24{width:25.280000pt;}
._19{width:29.120000pt;}
._11{width:30.016000pt;}
._12{width:31.488000pt;}
._1b{width:39.360000pt;}
._18{width:50.560000pt;}
._e{width:52.224000pt;}
._17{width:56.704000pt;}
._1c{width:64.512000pt;}
._1d{width:65.601920pt;}
._8{width:67.968000pt;}
._9{width:120.832000pt;}
._13{width:150.336000pt;}
.fs9{font-size:5.120000pt;}
.fs6{font-size:29.440000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:4.480000pt;}
.y43{bottom:4.640000pt;}
.yba{bottom:6.880000pt;}
.y49{bottom:13.280000pt;}
.y7{bottom:13.600000pt;}
.yc3{bottom:15.040000pt;}
.yd5{bottom:24.000000pt;}
.yd9{bottom:24.320000pt;}
.y48{bottom:28.480000pt;}
.ydb{bottom:28.640000pt;}
.y6{bottom:29.600000pt;}
.yc2{bottom:30.400000pt;}
.y4a{bottom:38.112000pt;}
.y46{bottom:39.232000pt;}
.ybd{bottom:39.360000pt;}
.yd4{bottom:41.600000pt;}
.y47{bottom:43.840000pt;}
.yda{bottom:44.000000pt;}
.yd7{bottom:45.600000pt;}
.yc1{bottom:45.760000pt;}
.y4{bottom:53.760000pt;}
.ybc{bottom:57.000000pt;}
.yd6{bottom:60.960000pt;}
.yc0{bottom:61.160000pt;}
.y3{bottom:71.392000pt;}
.ybf{bottom:76.520000pt;}
.ybe{bottom:91.720000pt;}
.yc6{bottom:126.112000pt;}
.y9e{bottom:126.752000pt;}
.yc5{bottom:129.472000pt;}
.y136{bottom:136.986667pt;}
.yc4{bottom:141.626667pt;}
.yfe{bottom:142.106667pt;}
.y9d{bottom:147.866667pt;}
.y11c{bottom:148.826667pt;}
.y72{bottom:153.146667pt;}
.y135{bottom:158.106667pt;}
.y40{bottom:162.106667pt;}
.yfd{bottom:163.226667pt;}
.y9c{bottom:168.986667pt;}
.y11b{bottom:169.946667pt;}
.y71{bottom:174.266667pt;}
.y3f{bottom:183.226667pt;}
.yfc{bottom:184.346667pt;}
.y9b{bottom:190.106667pt;}
.y11a{bottom:191.226667pt;}
.y134{bottom:192.666667pt;}
.y70{bottom:195.386667pt;}
.ybb{bottom:196.506667pt;}
.y3e{bottom:204.346667pt;}
.yfb{bottom:205.466667pt;}
.y9a{bottom:211.386667pt;}
.y119{bottom:212.346667pt;}
.y133{bottom:213.786667pt;}
.y6f{bottom:216.666667pt;}
.y3d{bottom:225.466667pt;}
.yfa{bottom:226.586667pt;}
.y99{bottom:232.506667pt;}
.y118{bottom:233.466667pt;}
.y6e{bottom:237.786667pt;}
.y3c{bottom:246.746667pt;}
.yf9{bottom:247.906667pt;}
.y132{bottom:248.226667pt;}
.y98{bottom:253.666667pt;}
.y117{bottom:254.626667pt;}
.y6d{bottom:258.946667pt;}
.y3b{bottom:267.866667pt;}
.yf8{bottom:269.026667pt;}
.y131{bottom:269.506667pt;}
.y97{bottom:274.786667pt;}
.y116{bottom:275.906667pt;}
.y6c{bottom:280.066667pt;}
.y3a{bottom:288.986667pt;}
.yf7{bottom:290.146667pt;}
.y96{bottom:296.066667pt;}
.y115{bottom:297.026667pt;}
.yb9{bottom:301.026667pt;}
.y6b{bottom:301.346667pt;}
.y130{bottom:303.906667pt;}
.y39{bottom:310.146667pt;}
.yf6{bottom:311.266667pt;}
.y95{bottom:317.186667pt;}
.y114{bottom:318.146667pt;}
.y6a{bottom:322.466667pt;}
.yb8{bottom:329.506667pt;}
.y38{bottom:331.426667pt;}
.yf5{bottom:332.546667pt;}
.y94{bottom:338.306667pt;}
.y12f{bottom:338.466667pt;}
.y113{bottom:339.266667pt;}
.y69{bottom:343.586667pt;}
.yb7{bottom:350.626667pt;}
.y37{bottom:352.546667pt;}
.yf4{bottom:353.666667pt;}
.y93{bottom:359.426667pt;}
.y12e{bottom:359.586667pt;}
.y112{bottom:360.386667pt;}
.y68{bottom:364.706667pt;}
.yb6{bottom:371.746667pt;}
.y36{bottom:373.666667pt;}
.yf3{bottom:374.786667pt;}
.y92{bottom:380.706667pt;}
.y111{bottom:381.666667pt;}
.y67{bottom:385.986667pt;}
.yb5{bottom:393.026667pt;}
.y12d{bottom:394.146667pt;}
.y35{bottom:394.786667pt;}
.yf2{bottom:395.906667pt;}
.y91{bottom:401.826667pt;}
.y110{bottom:402.786667pt;}
.y66{bottom:407.106667pt;}
.yb4{bottom:414.146667pt;}
.y12c{bottom:415.266667pt;}
.y34{bottom:416.066667pt;}
.yf1{bottom:417.186667pt;}
.y90{bottom:422.946667pt;}
.y10f{bottom:423.906667pt;}
.y65{bottom:428.226667pt;}
.yb3{bottom:435.266667pt;}
.y33{bottom:437.186667pt;}
.yf0{bottom:438.306667pt;}
.y8f{bottom:444.066667pt;}
.y10e{bottom:445.026667pt;}
.y64{bottom:449.346667pt;}
.y12b{bottom:449.666667pt;}
.yb2{bottom:456.386667pt;}
.y32{bottom:458.306667pt;}
.yef{bottom:459.426667pt;}
.y8e{bottom:465.186667pt;}
.y10d{bottom:466.306667pt;}
.y63{bottom:470.626667pt;}
.y12a{bottom:470.946667pt;}
.yb1{bottom:477.666667pt;}
.y31{bottom:479.426667pt;}
.yee{bottom:480.546667pt;}
.y8d{bottom:486.466667pt;}
.y10c{bottom:487.426667pt;}
.y62{bottom:491.746667pt;}
.y129{bottom:492.066667pt;}
.yb0{bottom:498.813333pt;}
.y30{bottom:500.546667pt;}
.yed{bottom:501.853333pt;}
.y8c{bottom:507.613333pt;}
.y10b{bottom:508.573333pt;}
.y61{bottom:512.893333pt;}
.y128{bottom:513.213333pt;}
.yaf{bottom:519.933333pt;}
.y2f{bottom:521.826667pt;}
.yec{bottom:522.973333pt;}
.y8b{bottom:528.733333pt;}
.y10a{bottom:529.693333pt;}
.y60{bottom:534.013333pt;}
.yad{bottom:541.053333pt;}
.y2e{bottom:542.973333pt;}
.yeb{bottom:544.093333pt;}
.yae{bottom:547.133333pt;}
.y127{bottom:547.773333pt;}
.y8a{bottom:549.853333pt;}
.y109{bottom:550.973333pt;}
.y5f{bottom:555.133333pt;}
.yac{bottom:562.333333pt;}
.y2d{bottom:564.093333pt;}
.yea{bottom:565.213333pt;}
.y126{bottom:568.893333pt;}
.y89{bottom:571.133333pt;}
.y108{bottom:572.093333pt;}
.y5e{bottom:576.413333pt;}
.yab{bottom:583.133333pt;}
.y2c{bottom:585.213333pt;}
.ye9{bottom:586.493333pt;}
.y88{bottom:592.253333pt;}
.y107{bottom:593.213333pt;}
.y5d{bottom:597.533333pt;}
.y125{bottom:603.453333pt;}
.yaa{bottom:604.573333pt;}
.y2b{bottom:606.493333pt;}
.ye8{bottom:607.613333pt;}
.y87{bottom:613.373333pt;}
.y106{bottom:614.333333pt;}
.y5c{bottom:618.653333pt;}
.y124{bottom:624.573333pt;}
.ya9{bottom:625.693333pt;}
.y2a{bottom:627.613333pt;}
.ye7{bottom:628.733333pt;}
.y86{bottom:634.493333pt;}
.y105{bottom:635.613333pt;}
.y5b{bottom:639.773333pt;}
.ya8{bottom:646.973333pt;}
.y29{bottom:648.733333pt;}
.ye6{bottom:649.853333pt;}
.y85{bottom:655.773333pt;}
.y23{bottom:656.093333pt;}
.y104{bottom:656.413333pt;}
.y123{bottom:658.973333pt;}
.y5a{bottom:661.053333pt;}
.ya7{bottom:668.093333pt;}
.y28{bottom:669.853333pt;}
.ye5{bottom:671.133333pt;}
.y22{bottom:673.053333pt;}
.y103{bottom:674.973333pt;}
.y84{bottom:676.893333pt;}
.y59{bottom:682.173333pt;}
.ya6{bottom:688.893333pt;}
.y21{bottom:689.693333pt;}
.y27{bottom:691.133333pt;}
.ye4{bottom:692.253333pt;}
.y122{bottom:693.533333pt;}
.y102{bottom:696.253333pt;}
.y83{bottom:698.013333pt;}
.y58{bottom:703.293333pt;}
.y20{bottom:704.893333pt;}
.ya5{bottom:710.013333pt;}
.y26{bottom:712.253333pt;}
.ye3{bottom:713.053333pt;}
.y121{bottom:714.653333pt;}
.y101{bottom:717.373333pt;}
.y82{bottom:719.133333pt;}
.y1f{bottom:722.173333pt;}
.y57{bottom:724.413333pt;}
.ya4{bottom:731.453333pt;}
.y25{bottom:733.373333pt;}
.ye2{bottom:734.493333pt;}
.y100{bottom:738.653333pt;}
.y1e{bottom:738.973333pt;}
.y81{bottom:740.413333pt;}
.y56{bottom:745.733333pt;}
.y120{bottom:749.253333pt;}
.ya3{bottom:751.653333pt;}
.y24{bottom:754.173333pt;}
.y41{bottom:754.493333pt;}
.ye1{bottom:755.653333pt;}
.y1d{bottom:755.773333pt;}
.yff{bottom:759.813333pt;}
.y80{bottom:761.573333pt;}
.y55{bottom:766.853333pt;}
.ya2{bottom:767.173333pt;}
.y11f{bottom:770.373333pt;}
.ye0{bottom:776.933333pt;}
.ycc{bottom:778.213333pt;}
.yd0{bottom:779.200000pt;}
.ya1{bottom:780.933333pt;}
.y7f{bottom:782.693333pt;}
.y54{bottom:787.973333pt;}
.y17{bottom:790.053333pt;}
.ycb{bottom:797.413333pt;}
.ydf{bottom:798.053333pt;}
.ycf{bottom:798.400000pt;}
.ya0{bottom:802.053333pt;}
.y7e{bottom:803.493333pt;}
.y11e{bottom:804.933333pt;}
.y16{bottom:806.853333pt;}
.y53{bottom:809.093333pt;}
.yca{bottom:816.613333pt;}
.yce{bottom:817.600000pt;}
.yde{bottom:819.173333pt;}
.y9f{bottom:823.173333pt;}
.y11d{bottom:823.333333pt;}
.y15{bottom:823.813333pt;}
.y7d{bottom:824.453333pt;}
.y52{bottom:830.373333pt;}
.yc9{bottom:835.653333pt;}
.ycd{bottom:836.640000pt;}
.ydd{bottom:840.293333pt;}
.y14{bottom:840.613333pt;}
.y7c{bottom:844.453333pt;}
.y51{bottom:851.493333pt;}
.y13{bottom:857.573333pt;}
.ydc{bottom:861.573333pt;}
.y7b{bottom:865.573333pt;}
.y50{bottom:872.613333pt;}
.y12{bottom:874.373333pt;}
.yd8{bottom:876.773333pt;}
.y1c{bottom:880.933333pt;}
.y5{bottom:882.373333pt;}
.y7a{bottom:886.693333pt;}
.yd2{bottom:889.893333pt;}
.y11{bottom:893.733333pt;}
.y13a{bottom:894.533333pt;}
.y79{bottom:907.813333pt;}
.yd1{bottom:908.933333pt;}
.y10{bottom:913.093333pt;}
.y4f{bottom:915.013333pt;}
.y139{bottom:915.653333pt;}
.y1b{bottom:922.533333pt;}
.y78{bottom:929.093333pt;}
.yf{bottom:930.533333pt;}
.yd3{bottom:933.413333pt;}
.y4e{bottom:936.133333pt;}
.y138{bottom:936.933333pt;}
.y1a{bottom:940.133333pt;}
.ye{bottom:949.093333pt;}
.y77{bottom:950.213333pt;}
.y4d{bottom:957.253333pt;}
.y137{bottom:958.053333pt;}
.y19{bottom:960.933333pt;}
.yd{bottom:962.533333pt;}
.yc8{bottom:968.986667pt;}
.y76{bottom:971.333333pt;}
.y4c{bottom:975.013333pt;}
.yc{bottom:975.813333pt;}
.yc7{bottom:982.786667pt;}
.yb{bottom:989.093333pt;}
.y4b{bottom:992.293333pt;}
.y75{bottom:992.453333pt;}
.ya{bottom:1002.533333pt;}
.y18{bottom:1014.400000pt;}
.y9{bottom:1015.840000pt;}
.y45{bottom:1027.040000pt;}
.y8{bottom:1029.120000pt;}
.y42{bottom:1040.640000pt;}
.y73{bottom:1041.760000pt;}
.y44{bottom:1044.320000pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1084.320000pt;}
.h13{height:4.590000pt;}
.h14{height:17.280000pt;}
.h10{height:17.440000pt;}
.h17{height:21.280000pt;}
.h19{height:24.265625pt;}
.hd{height:26.392500pt;}
.h15{height:28.687500pt;}
.h16{height:38.441250pt;}
.h8{height:39.876250pt;}
.h4{height:42.400000pt;}
.h1a{height:43.031250pt;}
.h3{height:43.782500pt;}
.h11{height:44.648750pt;}
.hb{height:47.180312pt;}
.h1c{height:47.491563pt;}
.h2{height:47.621250pt;}
.h1b{height:48.062188pt;}
.h5{height:52.296250pt;}
.h6{height:52.785000pt;}
.h12{height:55.840000pt;}
.h1e{height:56.000000pt;}
.hc{height:56.843750pt;}
.he{height:57.375000pt;}
.h7{height:67.128750pt;}
.h1d{height:72.992000pt;}
.h9{height:75.602187pt;}
.ha{height:80.718125pt;}
.h18{height:103.712000pt;}
.hf{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:97.120000pt;}
.w3{width:145.146667pt;}
.w9{width:179.066667pt;}
.wb{width:179.226667pt;}
.w8{width:387.106667pt;}
.we{width:469.213333pt;}
.wa{width:553.853333pt;}
.w6{width:554.013333pt;}
.wc{width:793.759976pt;}
.w7{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.200000pt;}
.x23{left:10.240000pt;}
.x15{left:12.000000pt;}
.x18{left:14.080000pt;}
.x6{left:22.719988pt;}
.x7{left:30.239988pt;}
.xf{left:32.159988pt;}
.x5{left:33.440000pt;}
.x16{left:35.674667pt;}
.x1f{left:37.440000pt;}
.x19{left:85.280000pt;}
.x14{left:113.471988pt;}
.x12{left:114.912000pt;}
.x27{left:117.471988pt;}
.x1b{left:127.712000pt;}
.x1a{left:160.666655pt;}
.x25{left:169.960000pt;}
.x10{left:199.226655pt;}
.x1{left:202.426655pt;}
.x24{left:211.226667pt;}
.xe{left:212.986655pt;}
.xd{left:231.866655pt;}
.x8{left:239.386655pt;}
.x20{left:243.546655pt;}
.x9{left:245.826655pt;}
.x2{left:249.666655pt;}
.x2c{left:256.933322pt;}
.x2a{left:264.613322pt;}
.x2b{left:265.893322pt;}
.x31{left:289.693322pt;}
.x1e{left:293.346667pt;}
.x26{left:305.506655pt;}
.x32{left:312.413322pt;}
.x21{left:327.106643pt;}
.x22{left:332.546655pt;}
.x29{left:348.346655pt;}
.xa{left:353.026655pt;}
.x28{left:359.386655pt;}
.xc{left:377.346655pt;}
.x1c{left:395.901333pt;}
.x2d{left:405.786655pt;}
.x2e{left:446.106655pt;}
.x2f{left:448.186655pt;}
.x11{left:456.893321pt;}
.x30{left:460.666655pt;}
.xb{left:461.853321pt;}
.x17{left:501.373333pt;}
.x4{left:590.533321pt;}
.x3{left:593.413321pt;}
.x13{left:667.173322pt;}
}




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