
    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_235496ac2b80e5bf9da840e4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_369925e07a082b1b49a1871c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_03469d81efee5f10dc9ded47.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f1f0a9a76083f9a10c2a1865.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fb4a0206a50e4a4191047f9f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f6606c06153c402042d0ce58.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ffbd250090a6d57d5f5174b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_900327b60c5bbe4bd4f78d07.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_4b24cc109365339c45dcdee6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffc{font-family:ffc;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;}
.m4{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.373300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373300,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-95.040000px;}
.v3{vertical-align:-91.440000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.090600px;}
.lsf{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.025920px;}
.lsd{letter-spacing:0.034560px;}
.ls14{letter-spacing:0.043920px;}
.ls10{letter-spacing:0.090600px;}
.ls3{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.490800px;}
.ls12{letter-spacing:0.810000px;}
.ls8{letter-spacing:12.780000px;}
.lsb{letter-spacing:14.940000px;}
.ls9{letter-spacing:16.025760px;}
.ls1{letter-spacing:553.656000px;}
.ls0{letter-spacing:797.196000px;}
.lsa{letter-spacing:1738.896000px;}
.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;}
}
.wse{word-spacing:-131.760000px;}
.ws11{word-spacing:-126.000000px;}
.wsf{word-spacing:-33.750000px;}
.wsc{word-spacing:-33.300000px;}
.wsb{word-spacing:-33.030600px;}
.ws10{word-spacing:-32.983920px;}
.ws13{word-spacing:-32.849400px;}
.wsd{word-spacing:-32.758800px;}
.ws12{word-spacing:-32.310000px;}
.ws14{word-spacing:-32.130000px;}
.ws1{word-spacing:-23.580000px;}
.ws4{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.401400px;}
.ws0{word-spacing:-21.180000px;}
.ws7{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.700000px;}
.wsa{word-spacing:-19.474560px;}
.ws8{word-spacing:-19.465920px;}
.ws5{word-spacing:-19.431360px;}
.ws9{word-spacing:-19.422720px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-9.642480px;}
._a{margin-left:-8.445840px;}
._6{margin-left:-7.270080px;}
._1{margin-left:-5.561280px;}
._3{margin-left:-4.136080px;}
._4{margin-left:-2.924640px;}
._0{margin-left:-1.728000px;}
._2{width:1.267920px;}
._e{width:2.286240px;}
._15{width:3.821040px;}
._5{width:6.044480px;}
._b{width:7.905600px;}
._2c{width:8.959680px;}
._14{width:10.936080px;}
._7{width:12.802800px;}
._d{width:17.128800px;}
._c{width:18.314640px;}
._31{width:20.554560px;}
._23{width:24.517440px;}
._2a{width:26.088480px;}
._1a{width:29.118960px;}
._1c{width:34.125840px;}
._25{width:35.229600px;}
._29{width:36.629280px;}
._28{width:37.683360px;}
._27{width:38.869200px;}
._18{width:40.055040px;}
._19{width:41.158800px;}
._30{width:42.558480px;}
._26{width:43.744320px;}
._1e{width:44.930160px;}
._17{width:49.673520px;}
._16{width:50.991120px;}
._f{width:54.153360px;}
._11{width:60.873120px;}
._10{width:62.058960px;}
._1f{width:70.278480px;}
._20{width:71.569200px;}
._24{width:72.599760px;}
._13{width:73.917360px;}
._12{width:75.103200px;}
._2f{width:86.713200px;}
._1b{width:88.410960px;}
._2d{width:92.232000px;}
._2e{width:93.335760px;}
._2b{width:104.749200px;}
._1d{width:111.337200px;}
._21{width:146.959920px;}
._22{width:149.094720px;}
._32{width:194.873040px;}
._8{width:1151.156080px;}
.fc1{color:rgb(129,24,16);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fsb{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:74.880000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.fs0{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fsf{font-size:126.000000px;}
.fse{font-size:131.760000px;}
.fsd{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.380000px;}
.yc3{bottom:43.920000px;}
.y89{bottom:60.300000px;}
.y4d{bottom:63.360000px;}
.yc2{bottom:88.200000px;}
.y88{bottom:101.340000px;}
.y4c{bottom:120.456000px;}
.yc1{bottom:132.516000px;}
.y87{bottom:155.730000px;}
.ye7{bottom:159.870000px;}
.y4b{bottom:165.090000px;}
.yb0{bottom:167.790000px;}
.yc0{bottom:186.870000px;}
.y9d{bottom:196.590000px;}
.y73{bottom:203.070000px;}
.ye6{bottom:204.150000px;}
.yd4{bottom:204.690000px;}
.y4a{bottom:209.910000px;}
.y86{bottom:210.090000px;}
.yaf{bottom:213.330000px;}
.y106{bottom:218.730000px;}
.y35{bottom:227.010000px;}
.y9c{bottom:242.130000px;}
.ybf{bottom:243.030000px;}
.y72{bottom:243.930000px;}
.y1a{bottom:244.470000px;}
.ye5{bottom:248.430000px;}
.yd3{bottom:250.230000px;}
.y85{bottom:250.950000px;}
.y49{bottom:254.730000px;}
.yae{bottom:258.870000px;}
.y34{bottom:261.210000px;}
.y105{bottom:263.370000px;}
.y5f{bottom:274.710000px;}
.y19{bottom:279.390000px;}
.y33{bottom:284.970000px;}
.y9b{bottom:287.850000px;}
.ybe{bottom:288.570000px;}
.yf4{bottom:292.170000px;}
.ye4{bottom:292.710000px;}
.yd2{bottom:295.770000px;}
.y48{bottom:299.370000px;}
.y18{bottom:303.870000px;}
.y84{bottom:305.310000px;}
.y104{bottom:308.010000px;}
.y32{bottom:313.410000px;}
.yad{bottom:315.390000px;}
.y5e{bottom:319.350000px;}
.y71{bottom:326.010000px;}
.y31{bottom:331.635000px;}
.yf3{bottom:337.710000px;}
.yd1{bottom:341.310000px;}
.ybd{bottom:342.930000px;}
.y47{bottom:344.010000px;}
.y9a{bottom:344.190000px;}
.ye3{bottom:347.070000px;}
.y30{bottom:348.735000px;}
.y103{bottom:350.850000px;}
.y83{bottom:359.670000px;}
.y5d{bottom:363.990000px;}
.y2f{bottom:366.015000px;}
.y70{bottom:367.770000px;}
.yac{bottom:371.730000px;}
.yd0{bottom:387.075000px;}
.y46{bottom:388.875000px;}
.yf2{bottom:392.115000px;}
.y102{bottom:395.715000px;}
.ybc{bottom:399.315000px;}
.y82{bottom:400.575000px;}
.y99{bottom:400.755000px;}
.ye2{bottom:404.895000px;}
.y2e{bottom:407.055000px;}
.y6f{bottom:410.115000px;}
.yab{bottom:417.315000px;}
.y5c{bottom:422.535000px;}
.y2d{bottom:430.815000px;}
.y45{bottom:432.615000px;}
.y101{bottom:440.355000px;}
.y81{bottom:441.615000px;}
.ybb{bottom:444.855000px;}
.y98{bottom:446.295000px;}
.ye1{bottom:449.535000px;}
.yf1{bottom:450.435000px;}
.y6e{bottom:451.155000px;}
.yaa{bottom:462.855000px;}
.y2c{bottom:463.935000px;}
.y5b{bottom:466.095000px;}
.y44{bottom:477.255000px;}
.ycf{bottom:478.155000px;}
.y17{bottom:478.695000px;}
.y2b{bottom:483.375000px;}
.y100{bottom:485.175000px;}
.y97{bottom:491.835000px;}
.y6d{bottom:492.015000px;}
.ye0{bottom:494.355000px;}
.y80{bottom:495.975000px;}
.yba{bottom:499.395000px;}
.y2a{bottom:503.535000px;}
.y16{bottom:505.155000px;}
.y5a{bottom:510.915000px;}
.ya9{bottom:519.375000px;}
.y43{bottom:522.075000px;}
.yce{bottom:523.695000px;}
.y29{bottom:527.295000px;}
.yff{bottom:529.815000px;}
.y6c{bottom:533.055000px;}
.y7f{bottom:533.955000px;}
.y15{bottom:538.635000px;}
.y96{bottom:548.175000px;}
.ydf{bottom:548.715000px;}
.yf0{bottom:550.335000px;}
.y59{bottom:555.555000px;}
.yb9{bottom:555.915000px;}
.y28{bottom:566.175000px;}
.y42{bottom:566.895000px;}
.ycd{bottom:569.055000px;}
.y14{bottom:571.965000px;}
.yfe{bottom:574.635000px;}
.y6b{bottom:574.995000px;}
.ya8{bottom:575.715000px;}
.y27{bottom:588.885000px;}
.y13{bottom:594.105000px;}
.y58{bottom:600.375000px;}
.yb8{bottom:601.455000px;}
.y7e{bottom:604.695000px;}
.y95{bottom:605.055000px;}
.y26{bottom:605.805000px;}
.yde{bottom:607.035000px;}
.yef{bottom:608.655000px;}
.y41{bottom:611.535000px;}
.ycc{bottom:614.595000px;}
.y6a{bottom:617.295000px;}
.yfd{bottom:619.275000px;}
.y12{bottom:620.925000px;}
.ya7{bottom:621.255000px;}
.y25{bottom:623.085000px;}
.y57{bottom:645.045000px;}
.y7d{bottom:645.765000px;}
.ydd{bottom:652.605000px;}
.y24{bottom:653.685000px;}
.yee{bottom:654.225000px;}
.yb7{bottom:656.025000px;}
.y69{bottom:658.365000px;}
.ycb{bottom:660.165000px;}
.yfc{bottom:664.125000px;}
.ya6{bottom:666.825000px;}
.y94{bottom:668.085000px;}
.y40{bottom:668.625000px;}
.y11{bottom:668.805000px;}
.y10{bottom:690.045000px;}
.ydc{bottom:698.325000px;}
.yed{bottom:699.765000px;}
.y68{bottom:699.945000px;}
.y23{bottom:701.025000px;}
.y56{bottom:702.285000px;}
.y7c{bottom:702.645000px;}
.yca{bottom:705.705000px;}
.y93{bottom:708.945000px;}
.yb6{bottom:712.545000px;}
.y3f{bottom:713.445000px;}
.yf{bottom:713.625000px;}
.ya5{bottom:723.165000px;}
.ye{bottom:735.585000px;}
.y22{bottom:737.205000px;}
.y67{bottom:742.425000px;}
.y55{bottom:747.105000px;}
.y7b{bottom:749.265000px;}
.y92{bottom:749.985000px;}
.yc9{bottom:751.245000px;}
.ydb{bottom:752.685000px;}
.yfb{bottom:753.585000px;}
.yec{bottom:754.485000px;}
.y3e{bottom:758.085000px;}
.yd{bottom:763.125000px;}
.yb5{bottom:768.885000px;}
.y21{bottom:773.565000px;}
.ya4{bottom:779.685000px;}
.y66{bottom:783.465000px;}
.yc{bottom:790.845000px;}
.y91{bottom:791.025000px;}
.y54{bottom:791.745000px;}
.yfa{bottom:798.045000px;}
.y3d{bottom:802.905000px;}
.y7a{bottom:807.945000px;}
.yc8{bottom:808.125000px;}
.y20{bottom:809.565000px;}
.yda{bottom:811.005000px;}
.yeb{bottom:812.625000px;}
.yb{bottom:818.385000px;}
.y65{bottom:824.325000px;}
.ya3{bottom:825.225000px;}
.yb4{bottom:825.405000px;}
.y53{bottom:836.565000px;}
.yf9{bottom:841.965000px;}
.y1f{bottom:843.630000px;}
.y90{bottom:845.025000px;}
.ya{bottom:845.970000px;}
.y3c{bottom:847.545000px;}
.y79{bottom:848.985000px;}
.yd9{bottom:856.545000px;}
.y64{bottom:865.365000px;}
.ya2{bottom:870.765000px;}
.yb3{bottom:870.945000px;}
.y9{bottom:873.690000px;}
.yc7{bottom:875.085000px;}
.y1e{bottom:876.570000px;}
.y52{bottom:881.205000px;}
.y8f{bottom:885.885000px;}
.yf8{bottom:886.605000px;}
.y78{bottom:890.070000px;}
.y3b{bottom:892.410000px;}
.y1d{bottom:897.270000px;}
.y8{bottom:900.510000px;}
.yd8{bottom:902.130000px;}
.y63{bottom:905.730000px;}
.y1c{bottom:911.130000px;}
.yb2{bottom:916.530000px;}
.yc6{bottom:920.850000px;}
.y7{bottom:924.630000px;}
.y51{bottom:926.070000px;}
.ya1{bottom:927.330000px;}
.yf7{bottom:931.470000px;}
.y8e{bottom:940.650000px;}
.y3a{bottom:946.950000px;}
.y77{bottom:948.030000px;}
.y6{bottom:949.830000px;}
.yd7{bottom:956.490000px;}
.yea{bottom:962.070000px;}
.yb1{bottom:972.870000px;}
.yc5{bottom:975.210000px;}
.yf6{bottom:976.110000px;}
.ya0{bottom:983.490000px;}
.y62{bottom:983.670000px;}
.y50{bottom:983.850000px;}
.y39{bottom:984.930000px;}
.y76{bottom:989.070000px;}
.y8d{bottom:995.010000px;}
.y5{bottom:1002.210000px;}
.yd6{bottom:1014.810000px;}
.ye9{bottom:1017.510000px;}
.yf5{bottom:1020.930000px;}
.y4{bottom:1024.710000px;}
.y4f{bottom:1028.670000px;}
.y9f{bottom:1029.030000px;}
.y75{bottom:1030.110000px;}
.yc4{bottom:1031.370000px;}
.y8c{bottom:1035.870000px;}
.y38{bottom:1038.210000px;}
.y1{bottom:1047.390000px;}
.yd5{bottom:1060.350000px;}
.ye8{bottom:1063.050000px;}
.y61{bottom:1065.750000px;}
.y9e{bottom:1074.750000px;}
.y8b{bottom:1076.910000px;}
.y3{bottom:1078.020000px;}
.y37{bottom:1079.070000px;}
.y4e{bottom:1085.550000px;}
.y74{bottom:1087.890000px;}
.y36{bottom:1122.450000px;}
.y60{bottom:1122.630000px;}
.y8a{bottom:1131.270000px;}
.y1b{bottom:1187.820000px;}
.hd{height:5.653125px;}
.h1{height:32.976000px;}
.hf{height:55.824609px;}
.h3{height:58.651172px;}
.h11{height:62.184375px;}
.h10{height:66.757500px;}
.h4{height:70.664062px;}
.h13{height:72.562500px;}
.hb{height:73.490625px;}
.h12{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:82.635820px;}
.h9{height:82.676953px;}
.hc{height:84.898125px;}
.h19{height:91.485703px;}
.h1b{height:91.731445px;}
.h17{height:92.965430px;}
.h8{height:93.983203px;}
.h18{height:94.573828px;}
.h1a{height:95.924883px;}
.h7{height:96.508125px;}
.h5{height:100.342969px;}
.h2{height:108.843750px;}
.h16{height:118.365820px;}
.he{height:119.594180px;}
.h0{height:1188.000000px;}
.h15{height:1263.750000px;}
.h14{height:1263.780000px;}
.w1{width:376.455000px;}
.w4{width:894.000000px;}
.w5{width:894.059987px;}
.w3{width:894.060000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x18{left:95.615987px;}
.x3{left:99.035986px;}
.x17{left:105.155987px;}
.x19{left:106.235987px;}
.x13{left:108.035986px;}
.x1d{left:119.375987px;}
.x1a{left:133.235987px;}
.x1f{left:139.175987px;}
.x1e{left:140.975987px;}
.x1b{left:148.175987px;}
.x1c{left:160.049987px;}
.x20{left:161.669987px;}
.x16{left:256.034987px;}
.x1{left:270.390000px;}
.xc{left:281.009986px;}
.x9{left:284.069986px;}
.x12{left:310.574986px;}
.xb{left:323.714986px;}
.x8{left:325.694986px;}
.xa{left:327.674986px;}
.x10{left:330.014986px;}
.xe{left:346.754986px;}
.x7{left:348.194986px;}
.x4{left:393.374986px;}
.x11{left:403.094986px;}
.x5{left:405.614986px;}
.xd{left:447.914986px;}
.x6{left:458.714986px;}
.x15{left:530.024986px;}
.x14{left:539.024986px;}
.xf{left:627.764986px;}
.x21{left:756.509987px;}
@media print{
.v1{vertical-align:-84.480000pt;}
.v3{vertical-align:-81.280000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.080533pt;}
.lsf{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.023040pt;}
.lsd{letter-spacing:0.030720pt;}
.ls14{letter-spacing:0.039040pt;}
.ls10{letter-spacing:0.080533pt;}
.ls3{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.436267pt;}
.ls12{letter-spacing:0.720000pt;}
.ls8{letter-spacing:11.360000pt;}
.lsb{letter-spacing:13.280000pt;}
.ls9{letter-spacing:14.245120pt;}
.ls1{letter-spacing:492.138667pt;}
.ls0{letter-spacing:708.618667pt;}
.lsa{letter-spacing:1545.685333pt;}
.wse{word-spacing:-117.120000pt;}
.ws11{word-spacing:-112.000000pt;}
.wsf{word-spacing:-30.000000pt;}
.wsc{word-spacing:-29.600000pt;}
.wsb{word-spacing:-29.360533pt;}
.ws10{word-spacing:-29.319040pt;}
.ws13{word-spacing:-29.199467pt;}
.wsd{word-spacing:-29.118933pt;}
.ws12{word-spacing:-28.720000pt;}
.ws14{word-spacing:-28.560000pt;}
.ws1{word-spacing:-20.960000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws2{word-spacing:-19.023467pt;}
.ws0{word-spacing:-18.826667pt;}
.ws7{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.400000pt;}
.wsa{word-spacing:-17.310720pt;}
.ws8{word-spacing:-17.303040pt;}
.ws5{word-spacing:-17.272320pt;}
.ws9{word-spacing:-17.264640pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-8.571093pt;}
._a{margin-left:-7.507413pt;}
._6{margin-left:-6.462293pt;}
._1{margin-left:-4.943360pt;}
._3{margin-left:-3.676516pt;}
._4{margin-left:-2.599680pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.127040pt;}
._e{width:2.032213pt;}
._15{width:3.396480pt;}
._5{width:5.372871pt;}
._b{width:7.027200pt;}
._2c{width:7.964160pt;}
._14{width:9.720960pt;}
._7{width:11.380267pt;}
._d{width:15.225600pt;}
._c{width:16.279680pt;}
._31{width:18.270720pt;}
._23{width:21.793280pt;}
._2a{width:23.189760pt;}
._1a{width:25.883520pt;}
._1c{width:30.334080pt;}
._25{width:31.315200pt;}
._29{width:32.559360pt;}
._28{width:33.496320pt;}
._27{width:34.550400pt;}
._18{width:35.604480pt;}
._19{width:36.585600pt;}
._30{width:37.829760pt;}
._26{width:38.883840pt;}
._1e{width:39.937920pt;}
._17{width:44.154240pt;}
._16{width:45.325440pt;}
._f{width:48.136320pt;}
._11{width:54.109440pt;}
._10{width:55.163520pt;}
._1f{width:62.469760pt;}
._20{width:63.617067pt;}
._24{width:64.533120pt;}
._13{width:65.704320pt;}
._12{width:66.758400pt;}
._2f{width:77.078400pt;}
._1b{width:78.587520pt;}
._2d{width:81.984000pt;}
._2e{width:82.965120pt;}
._2b{width:93.110400pt;}
._1d{width:98.966400pt;}
._21{width:130.631040pt;}
._22{width:132.528640pt;}
._32{width:173.220480pt;}
._8{width:1023.249849pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fsb{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:66.560000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.fs0{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fsf{font-size:112.000000pt;}
.fse{font-size:117.120000pt;}
.fsd{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.560000pt;}
.yc3{bottom:39.040000pt;}
.y89{bottom:53.600000pt;}
.y4d{bottom:56.320000pt;}
.yc2{bottom:78.400000pt;}
.y88{bottom:90.080000pt;}
.y4c{bottom:107.072000pt;}
.yc1{bottom:117.792000pt;}
.y87{bottom:138.426667pt;}
.ye7{bottom:142.106667pt;}
.y4b{bottom:146.746667pt;}
.yb0{bottom:149.146667pt;}
.yc0{bottom:166.106667pt;}
.y9d{bottom:174.746667pt;}
.y73{bottom:180.506667pt;}
.ye6{bottom:181.466667pt;}
.yd4{bottom:181.946667pt;}
.y4a{bottom:186.586667pt;}
.y86{bottom:186.746667pt;}
.yaf{bottom:189.626667pt;}
.y106{bottom:194.426667pt;}
.y35{bottom:201.786667pt;}
.y9c{bottom:215.226667pt;}
.ybf{bottom:216.026667pt;}
.y72{bottom:216.826667pt;}
.y1a{bottom:217.306667pt;}
.ye5{bottom:220.826667pt;}
.yd3{bottom:222.426667pt;}
.y85{bottom:223.066667pt;}
.y49{bottom:226.426667pt;}
.yae{bottom:230.106667pt;}
.y34{bottom:232.186667pt;}
.y105{bottom:234.106667pt;}
.y5f{bottom:244.186667pt;}
.y19{bottom:248.346667pt;}
.y33{bottom:253.306667pt;}
.y9b{bottom:255.866667pt;}
.ybe{bottom:256.506667pt;}
.yf4{bottom:259.706667pt;}
.ye4{bottom:260.186667pt;}
.yd2{bottom:262.906667pt;}
.y48{bottom:266.106667pt;}
.y18{bottom:270.106667pt;}
.y84{bottom:271.386667pt;}
.y104{bottom:273.786667pt;}
.y32{bottom:278.586667pt;}
.yad{bottom:280.346667pt;}
.y5e{bottom:283.866667pt;}
.y71{bottom:289.786667pt;}
.y31{bottom:294.786667pt;}
.yf3{bottom:300.186667pt;}
.yd1{bottom:303.386667pt;}
.ybd{bottom:304.826667pt;}
.y47{bottom:305.786667pt;}
.y9a{bottom:305.946667pt;}
.ye3{bottom:308.506667pt;}
.y30{bottom:309.986667pt;}
.y103{bottom:311.866667pt;}
.y83{bottom:319.706667pt;}
.y5d{bottom:323.546667pt;}
.y2f{bottom:325.346667pt;}
.y70{bottom:326.906667pt;}
.yac{bottom:330.426667pt;}
.yd0{bottom:344.066667pt;}
.y46{bottom:345.666667pt;}
.yf2{bottom:348.546667pt;}
.y102{bottom:351.746667pt;}
.ybc{bottom:354.946667pt;}
.y82{bottom:356.066667pt;}
.y99{bottom:356.226667pt;}
.ye2{bottom:359.906667pt;}
.y2e{bottom:361.826667pt;}
.y6f{bottom:364.546667pt;}
.yab{bottom:370.946667pt;}
.y5c{bottom:375.586667pt;}
.y2d{bottom:382.946667pt;}
.y45{bottom:384.546667pt;}
.y101{bottom:391.426667pt;}
.y81{bottom:392.546667pt;}
.ybb{bottom:395.426667pt;}
.y98{bottom:396.706667pt;}
.ye1{bottom:399.586667pt;}
.yf1{bottom:400.386667pt;}
.y6e{bottom:401.026667pt;}
.yaa{bottom:411.426667pt;}
.y2c{bottom:412.386667pt;}
.y5b{bottom:414.306667pt;}
.y44{bottom:424.226667pt;}
.ycf{bottom:425.026667pt;}
.y17{bottom:425.506667pt;}
.y2b{bottom:429.666667pt;}
.y100{bottom:431.266667pt;}
.y97{bottom:437.186667pt;}
.y6d{bottom:437.346667pt;}
.ye0{bottom:439.426667pt;}
.y80{bottom:440.866667pt;}
.yba{bottom:443.906667pt;}
.y2a{bottom:447.586667pt;}
.y16{bottom:449.026667pt;}
.y5a{bottom:454.146667pt;}
.ya9{bottom:461.666667pt;}
.y43{bottom:464.066667pt;}
.yce{bottom:465.506667pt;}
.y29{bottom:468.706667pt;}
.yff{bottom:470.946667pt;}
.y6c{bottom:473.826667pt;}
.y7f{bottom:474.626667pt;}
.y15{bottom:478.786667pt;}
.y96{bottom:487.266667pt;}
.ydf{bottom:487.746667pt;}
.yf0{bottom:489.186667pt;}
.y59{bottom:493.826667pt;}
.yb9{bottom:494.146667pt;}
.y28{bottom:503.266667pt;}
.y42{bottom:503.906667pt;}
.ycd{bottom:505.826667pt;}
.y14{bottom:508.413333pt;}
.yfe{bottom:510.786667pt;}
.y6b{bottom:511.106667pt;}
.ya8{bottom:511.746667pt;}
.y27{bottom:523.453333pt;}
.y13{bottom:528.093333pt;}
.y58{bottom:533.666667pt;}
.yb8{bottom:534.626667pt;}
.y7e{bottom:537.506667pt;}
.y95{bottom:537.826667pt;}
.y26{bottom:538.493333pt;}
.yde{bottom:539.586667pt;}
.yef{bottom:541.026667pt;}
.y41{bottom:543.586667pt;}
.ycc{bottom:546.306667pt;}
.y6a{bottom:548.706667pt;}
.yfd{bottom:550.466667pt;}
.y12{bottom:551.933333pt;}
.ya7{bottom:552.226667pt;}
.y25{bottom:553.853333pt;}
.y57{bottom:573.373333pt;}
.y7d{bottom:574.013333pt;}
.ydd{bottom:580.093333pt;}
.y24{bottom:581.053333pt;}
.yee{bottom:581.533333pt;}
.yb7{bottom:583.133333pt;}
.y69{bottom:585.213333pt;}
.ycb{bottom:586.813333pt;}
.yfc{bottom:590.333333pt;}
.ya6{bottom:592.733333pt;}
.y94{bottom:593.853333pt;}
.y40{bottom:594.333333pt;}
.y11{bottom:594.493333pt;}
.y10{bottom:613.373333pt;}
.ydc{bottom:620.733333pt;}
.yed{bottom:622.013333pt;}
.y68{bottom:622.173333pt;}
.y23{bottom:623.133333pt;}
.y56{bottom:624.253333pt;}
.y7c{bottom:624.573333pt;}
.yca{bottom:627.293333pt;}
.y93{bottom:630.173333pt;}
.yb6{bottom:633.373333pt;}
.y3f{bottom:634.173333pt;}
.yf{bottom:634.333333pt;}
.ya5{bottom:642.813333pt;}
.ye{bottom:653.853333pt;}
.y22{bottom:655.293333pt;}
.y67{bottom:659.933333pt;}
.y55{bottom:664.093333pt;}
.y7b{bottom:666.013333pt;}
.y92{bottom:666.653333pt;}
.yc9{bottom:667.773333pt;}
.ydb{bottom:669.053333pt;}
.yfb{bottom:669.853333pt;}
.yec{bottom:670.653333pt;}
.y3e{bottom:673.853333pt;}
.yd{bottom:678.333333pt;}
.yb5{bottom:683.453333pt;}
.y21{bottom:687.613333pt;}
.ya4{bottom:693.053333pt;}
.y66{bottom:696.413333pt;}
.yc{bottom:702.973333pt;}
.y91{bottom:703.133333pt;}
.y54{bottom:703.773333pt;}
.yfa{bottom:709.373333pt;}
.y3d{bottom:713.693333pt;}
.y7a{bottom:718.173333pt;}
.yc8{bottom:718.333333pt;}
.y20{bottom:719.613333pt;}
.yda{bottom:720.893333pt;}
.yeb{bottom:722.333333pt;}
.yb{bottom:727.453333pt;}
.y65{bottom:732.733333pt;}
.ya3{bottom:733.533333pt;}
.yb4{bottom:733.693333pt;}
.y53{bottom:743.613333pt;}
.yf9{bottom:748.413333pt;}
.y1f{bottom:749.893333pt;}
.y90{bottom:751.133333pt;}
.ya{bottom:751.973333pt;}
.y3c{bottom:753.373333pt;}
.y79{bottom:754.653333pt;}
.yd9{bottom:761.373333pt;}
.y64{bottom:769.213333pt;}
.ya2{bottom:774.013333pt;}
.yb3{bottom:774.173333pt;}
.y9{bottom:776.613333pt;}
.yc7{bottom:777.853333pt;}
.y1e{bottom:779.173333pt;}
.y52{bottom:783.293333pt;}
.y8f{bottom:787.453333pt;}
.yf8{bottom:788.093333pt;}
.y78{bottom:791.173333pt;}
.y3b{bottom:793.253333pt;}
.y1d{bottom:797.573333pt;}
.y8{bottom:800.453333pt;}
.yd8{bottom:801.893333pt;}
.y63{bottom:805.093333pt;}
.y1c{bottom:809.893333pt;}
.yb2{bottom:814.693333pt;}
.yc6{bottom:818.533333pt;}
.y7{bottom:821.893333pt;}
.y51{bottom:823.173333pt;}
.ya1{bottom:824.293333pt;}
.yf7{bottom:827.973333pt;}
.y8e{bottom:836.133333pt;}
.y3a{bottom:841.733333pt;}
.y77{bottom:842.693333pt;}
.y6{bottom:844.293333pt;}
.yd7{bottom:850.213333pt;}
.yea{bottom:855.173333pt;}
.yb1{bottom:864.773333pt;}
.yc5{bottom:866.853333pt;}
.yf6{bottom:867.653333pt;}
.ya0{bottom:874.213333pt;}
.y62{bottom:874.373333pt;}
.y50{bottom:874.533333pt;}
.y39{bottom:875.493333pt;}
.y76{bottom:879.173333pt;}
.y8d{bottom:884.453333pt;}
.y5{bottom:890.853333pt;}
.yd6{bottom:902.053333pt;}
.ye9{bottom:904.453333pt;}
.yf5{bottom:907.493333pt;}
.y4{bottom:910.853333pt;}
.y4f{bottom:914.373333pt;}
.y9f{bottom:914.693333pt;}
.y75{bottom:915.653333pt;}
.yc4{bottom:916.773333pt;}
.y8c{bottom:920.773333pt;}
.y38{bottom:922.853333pt;}
.y1{bottom:931.013333pt;}
.yd5{bottom:942.533333pt;}
.ye8{bottom:944.933333pt;}
.y61{bottom:947.333333pt;}
.y9e{bottom:955.333333pt;}
.y8b{bottom:957.253333pt;}
.y3{bottom:958.240000pt;}
.y37{bottom:959.173333pt;}
.y4e{bottom:964.933333pt;}
.y74{bottom:967.013333pt;}
.y36{bottom:997.733333pt;}
.y60{bottom:997.893333pt;}
.y8a{bottom:1005.573333pt;}
.y1b{bottom:1055.840000pt;}
.hd{height:5.025000pt;}
.h1{height:29.312000pt;}
.hf{height:49.621875pt;}
.h3{height:52.134375pt;}
.h11{height:55.275000pt;}
.h10{height:59.340000pt;}
.h4{height:62.812500pt;}
.h13{height:64.500000pt;}
.hb{height:65.325000pt;}
.h12{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:73.454062pt;}
.h9{height:73.490625pt;}
.hc{height:75.465000pt;}
.h19{height:81.320625pt;}
.h1b{height:81.539062pt;}
.h17{height:82.635937pt;}
.h8{height:83.540625pt;}
.h18{height:84.065625pt;}
.h1a{height:85.266562pt;}
.h7{height:85.785000pt;}
.h5{height:89.193750pt;}
.h2{height:96.750000pt;}
.h16{height:105.214062pt;}
.he{height:106.305937pt;}
.h0{height:1056.000000pt;}
.h15{height:1123.333333pt;}
.h14{height:1123.360000pt;}
.w1{width:334.626667pt;}
.w4{width:794.666667pt;}
.w5{width:794.719988pt;}
.w3{width:794.720000pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x18{left:84.991988pt;}
.x3{left:88.031988pt;}
.x17{left:93.471988pt;}
.x19{left:94.431988pt;}
.x13{left:96.031988pt;}
.x1d{left:106.111988pt;}
.x1a{left:118.431988pt;}
.x1f{left:123.711988pt;}
.x1e{left:125.311988pt;}
.x1b{left:131.711988pt;}
.x1c{left:142.266655pt;}
.x20{left:143.706655pt;}
.x16{left:227.586655pt;}
.x1{left:240.346667pt;}
.xc{left:249.786655pt;}
.x9{left:252.506655pt;}
.x12{left:276.066655pt;}
.xb{left:287.746655pt;}
.x8{left:289.506655pt;}
.xa{left:291.266655pt;}
.x10{left:293.346655pt;}
.xe{left:308.226655pt;}
.x7{left:309.506655pt;}
.x4{left:349.666655pt;}
.x11{left:358.306655pt;}
.x5{left:360.546655pt;}
.xd{left:398.146655pt;}
.x6{left:407.746655pt;}
.x15{left:471.133321pt;}
.x14{left:479.133321pt;}
.xf{left:558.013321pt;}
.x21{left:672.453321pt;}
}




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