
    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_1e406f81aa5d2b18cf334fb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_50f83c67121218267bb3a8ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_9a9b851c36fc49eab424470c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9619762b4e90f955a4073706.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.728516;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_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_b645828ec7a62d67b41eb02b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3b1e62708887d3f176d8049d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_889dee253e36e96af03c5d29.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939941;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_77a0bdd10e57ff1b34a43186.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995117;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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-97.200000px;}
.v4{vertical-align:-93.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.166800px;}
.lse{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.864000px;}
.ls0{letter-spacing:344.664000px;}
.lsd{letter-spacing:1548.300000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.216000px;}
.wsb{word-spacing:-71.496000px;}
.ws0{word-spacing:-20.566320px;}
.ws9{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.280000px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-6.482400px;}
._c{margin-left:-4.464000px;}
._d{margin-left:-3.456000px;}
._2{margin-left:-2.170800px;}
._0{margin-left:-1.028160px;}
._1{width:1.340640px;}
._6{width:2.430720px;}
._b{width:3.689280px;}
._a{width:5.400000px;}
._10{width:7.056000px;}
._e{width:9.216000px;}
._f{width:10.512000px;}
._5{width:11.520000px;}
._9{width:13.392000px;}
._7{width:20.952000px;}
._8{width:22.419360px;}
._3{width:25.992000px;}
._4{width:27.115680px;}
._13{width:47.952000px;}
._14{width:50.472000px;}
._11{width:51.552000px;}
._12{width:52.608000px;}
._16{width:293.306880px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fs7{font-size:15.120000px;}
.fsb{font-size:18.000000px;}
.fs2{font-size:30.240000px;}
.fs4{font-size:33.120000px;}
.fs1{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y5b{bottom:-4.125000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.945000px;}
.ycf{bottom:4.125000px;}
.ye9{bottom:4.131000px;}
.yc7{bottom:4.140000px;}
.ycb{bottom:4.485000px;}
.ye6{bottom:4.491000px;}
.yc9{bottom:4.500000px;}
.y5a{bottom:7.935000px;}
.y5d{bottom:14.040000px;}
.yc6{bottom:24.840000px;}
.y59{bottom:28.455000px;}
.y62{bottom:36.216000px;}
.y3{bottom:46.656000px;}
.y61{bottom:56.196000px;}
.y2{bottom:66.456000px;}
.y1{bottom:86.436000px;}
.y122{bottom:87.336000px;}
.ye8{bottom:88.425000px;}
.ybb{bottom:98.316000px;}
.y92{bottom:98.676000px;}
.y130{bottom:99.036000px;}
.y121{bottom:108.036000px;}
.ye7{bottom:109.125000px;}
.y100{bottom:109.845000px;}
.y3a{bottom:114.336000px;}
.yba{bottom:118.836000px;}
.y91{bottom:119.376000px;}
.y12f{bottom:119.736000px;}
.y39{bottom:128.196000px;}
.y120{bottom:128.736000px;}
.ye5{bottom:129.825000px;}
.yff{bottom:130.545000px;}
.yf1{bottom:131.625000px;}
.yb9{bottom:139.716000px;}
.y90{bottom:140.076000px;}
.y12e{bottom:140.436000px;}
.y38{bottom:141.876000px;}
.y11f{bottom:149.436000px;}
.ye4{bottom:150.525000px;}
.yfe{bottom:151.245000px;}
.yf0{bottom:152.325000px;}
.y37{bottom:155.550000px;}
.yb8{bottom:160.410000px;}
.y8f{bottom:160.770000px;}
.y12d{bottom:161.130000px;}
.y36{bottom:169.410000px;}
.y11e{bottom:170.130000px;}
.ye3{bottom:171.225000px;}
.yfd{bottom:171.945000px;}
.yef{bottom:173.025000px;}
.yb7{bottom:181.290000px;}
.y8e{bottom:181.470000px;}
.y12c{bottom:181.830000px;}
.y35{bottom:183.270000px;}
.y57{bottom:185.250000px;}
.y11d{bottom:190.830000px;}
.ye1{bottom:191.925000px;}
.yfc{bottom:192.645000px;}
.yee{bottom:193.725000px;}
.y34{bottom:197.130000px;}
.y56{bottom:200.910000px;}
.y8d{bottom:202.170000px;}
.yb6{bottom:202.530000px;}
.y33{bottom:210.810000px;}
.y11c{bottom:211.530000px;}
.yfb{bottom:214.065000px;}
.yed{bottom:214.425000px;}
.y55{bottom:216.390000px;}
.yce{bottom:216.765000px;}
.ye0{bottom:217.830000px;}
.y8c{bottom:222.870000px;}
.yb5{bottom:223.230000px;}
.y32{bottom:224.490000px;}
.y54{bottom:231.690000px;}
.y11b{bottom:232.230000px;}
.yec{bottom:236.025000px;}
.ycd{bottom:237.465000px;}
.y31{bottom:238.530000px;}
.yfa{bottom:239.430000px;}
.y8b{bottom:243.570000px;}
.yb4{bottom:243.930000px;}
.y53{bottom:251.130000px;}
.y30{bottom:252.210000px;}
.y11a{bottom:252.570000px;}
.ycc{bottom:258.165000px;}
.yf9{bottom:260.670000px;}
.yeb{bottom:261.570000px;}
.ydf{bottom:261.930000px;}
.y8a{bottom:264.270000px;}
.yb3{bottom:264.630000px;}
.y2f{bottom:265.890000px;}
.y52{bottom:271.830000px;}
.y119{bottom:273.270000px;}
.yca{bottom:278.865000px;}
.y2e{bottom:279.750000px;}
.yf8{bottom:281.730000px;}
.yea{bottom:282.270000px;}
.yde{bottom:282.630000px;}
.y89{bottom:284.970000px;}
.yb2{bottom:285.330000px;}
.y51{bottom:292.575000px;}
.y2d{bottom:293.655000px;}
.y118{bottom:294.375000px;}
.yc8{bottom:299.595000px;}
.yf7{bottom:302.475000px;}
.ydd{bottom:303.375000px;}
.y88{bottom:305.355000px;}
.yb1{bottom:306.075000px;}
.y2c{bottom:307.515000px;}
.y50{bottom:313.275000px;}
.y117{bottom:315.075000px;}
.y2b{bottom:321.195000px;}
.yf6{bottom:323.175000px;}
.y10b{bottom:323.535000px;}
.ydc{bottom:324.075000px;}
.y87{bottom:326.055000px;}
.yb0{bottom:326.415000px;}
.y12b{bottom:326.775000px;}
.y4f{bottom:333.975000px;}
.y2a{bottom:334.875000px;}
.y116{bottom:335.775000px;}
.yf5{bottom:343.875000px;}
.y10a{bottom:344.235000px;}
.ydb{bottom:344.775000px;}
.y86{bottom:346.755000px;}
.yaf{bottom:347.115000px;}
.y135{bottom:347.475000px;}
.y29{bottom:348.915000px;}
.y4e{bottom:354.675000px;}
.y115{bottom:356.475000px;}
.y28{bottom:362.775000px;}
.yf4{bottom:364.575000px;}
.y109{bottom:364.935000px;}
.yda{bottom:365.475000px;}
.y85{bottom:367.815000px;}
.yae{bottom:368.175000px;}
.y4d{bottom:375.375000px;}
.y27{bottom:376.455000px;}
.y114{bottom:377.175000px;}
.yf3{bottom:385.095000px;}
.y108{bottom:385.635000px;}
.yd9{bottom:386.175000px;}
.yc5{bottom:388.155000px;}
.y84{bottom:388.515000px;}
.yad{bottom:388.875000px;}
.y26{bottom:390.135000px;}
.y4c{bottom:396.075000px;}
.y113{bottom:397.875000px;}
.y25{bottom:403.995000px;}
.yf2{bottom:406.335000px;}
.yd8{bottom:406.875000px;}
.yc4{bottom:408.855000px;}
.y83{bottom:409.215000px;}
.yac{bottom:409.575000px;}
.y4b{bottom:416.775000px;}
.y24{bottom:417.855000px;}
.y112{bottom:418.575000px;}
.y107{bottom:427.035000px;}
.yd7{bottom:427.575000px;}
.y82{bottom:429.915000px;}
.yab{bottom:430.275000px;}
.y23{bottom:431.715000px;}
.y4a{bottom:437.475000px;}
.y111{bottom:438.915000px;}
.y22{bottom:445.395000px;}
.y106{bottom:447.735000px;}
.yd6{bottom:448.275000px;}
.y81{bottom:450.615000px;}
.yaa{bottom:450.975000px;}
.y49{bottom:458.175000px;}
.y21{bottom:459.075000px;}
.y110{bottom:459.615000px;}
.y105{bottom:468.075000px;}
.yd5{bottom:468.615000px;}
.y80{bottom:471.315000px;}
.ya9{bottom:471.675000px;}
.y20{bottom:473.115000px;}
.y48{bottom:478.875000px;}
.y10f{bottom:480.675000px;}
.y1f{bottom:486.975000px;}
.y104{bottom:488.775000px;}
.yd4{bottom:489.315000px;}
.y7f{bottom:492.015000px;}
.y12a{bottom:492.375000px;}
.y47{bottom:499.575000px;}
.y1e{bottom:500.475000px;}
.y10e{bottom:501.375000px;}
.y103{bottom:509.835000px;}
.yd3{bottom:510.375000px;}
.y7e{bottom:512.715000px;}
.y129{bottom:513.075000px;}
.y1d{bottom:514.335000px;}
.y46{bottom:520.275000px;}
.y10d{bottom:522.075000px;}
.y1c{bottom:528.375000px;}
.y102{bottom:530.535000px;}
.yd2{bottom:531.075000px;}
.y7d{bottom:533.415000px;}
.ya8{bottom:533.775000px;}
.y10c{bottom:538.275000px;}
.y45{bottom:540.975000px;}
.y1b{bottom:542.055000px;}
.y101{bottom:551.265000px;}
.yd1{bottom:551.805000px;}
.y7c{bottom:554.145000px;}
.ya7{bottom:554.505000px;}
.y1a{bottom:555.765000px;}
.y44{bottom:561.705000px;}
.yd0{bottom:568.005000px;}
.y19{bottom:569.805000px;}
.y7b{bottom:574.845000px;}
.ya6{bottom:575.205000px;}
.y43{bottom:582.405000px;}
.y18{bottom:584.205000px;}
.y7a{bottom:595.545000px;}
.ya5{bottom:595.905000px;}
.y17{bottom:600.765000px;}
.y42{bottom:603.105000px;}
.y16{bottom:614.625000px;}
.yc3{bottom:615.885000px;}
.y79{bottom:616.245000px;}
.ya4{bottom:616.605000px;}
.y41{bottom:623.805000px;}
.y15{bottom:628.125000px;}
.yc2{bottom:636.585000px;}
.y78{bottom:636.945000px;}
.ya3{bottom:637.305000px;}
.y14{bottom:641.985000px;}
.y40{bottom:644.505000px;}
.y13{bottom:656.025000px;}
.yc1{bottom:657.285000px;}
.y77{bottom:657.645000px;}
.y128{bottom:658.005000px;}
.y3f{bottom:665.205000px;}
.y12{bottom:669.705000px;}
.y76{bottom:678.345000px;}
.y127{bottom:678.705000px;}
.y11{bottom:683.385000px;}
.y3e{bottom:685.905000px;}
.y10{bottom:697.605000px;}
.y75{bottom:699.045000px;}
.ya2{bottom:699.405000px;}
.y3d{bottom:706.605000px;}
.yf{bottom:716.325000px;}
.yc0{bottom:719.385000px;}
.y74{bottom:719.745000px;}
.ya1{bottom:720.105000px;}
.y3c{bottom:727.305000px;}
.ye{bottom:733.425000px;}
.ybf{bottom:740.085000px;}
.y73{bottom:740.445000px;}
.ya0{bottom:740.805000px;}
.y3b{bottom:748.005000px;}
.yd{bottom:750.705000px;}
.y72{bottom:760.965000px;}
.y9f{bottom:761.505000px;}
.yc{bottom:765.105000px;}
.yb{bottom:774.825000px;}
.y71{bottom:781.665000px;}
.y9e{bottom:782.205000px;}
.ya{bottom:783.645000px;}
.y70{bottom:802.365000px;}
.y9d{bottom:802.545000px;}
.y126{bottom:802.905000px;}
.y58{bottom:812.115000px;}
.y6f{bottom:823.110000px;}
.y9c{bottom:823.290000px;}
.y125{bottom:823.650000px;}
.y6e{bottom:843.810000px;}
.y9b{bottom:844.350000px;}
.y6d{bottom:864.510000px;}
.y9a{bottom:865.050000px;}
.y9{bottom:876.030000px;}
.y6c{bottom:885.210000px;}
.y99{bottom:885.750000px;}
.y8{bottom:889.530000px;}
.y6b{bottom:905.910000px;}
.y98{bottom:906.450000px;}
.y7{bottom:917.070000px;}
.y6a{bottom:926.610000px;}
.y134{bottom:926.790000px;}
.y97{bottom:927.150000px;}
.y69{bottom:947.310000px;}
.y133{bottom:947.490000px;}
.y96{bottom:947.850000px;}
.ybe{bottom:967.650000px;}
.y68{bottom:968.010000px;}
.y95{bottom:968.550000px;}
.y6{bottom:968.910000px;}
.ybd{bottom:988.350000px;}
.y67{bottom:988.710000px;}
.y132{bottom:988.890000px;}
.y94{bottom:989.250000px;}
.y66{bottom:1009.410000px;}
.y131{bottom:1009.590000px;}
.y93{bottom:1009.950000px;}
.y65{bottom:1030.110000px;}
.y5f{bottom:1030.290000px;}
.y124{bottom:1030.650000px;}
.ybc{bottom:1050.810000px;}
.y5e{bottom:1050.990000px;}
.y123{bottom:1051.350000px;}
.y60{bottom:1071.000000px;}
.y5{bottom:1106.460000px;}
.y5c{bottom:1108.080000px;}
.y64{bottom:1117.620000px;}
.y4{bottom:1120.680000px;}
.y63{bottom:1138.320000px;}
.h8{height:8.773594px;}
.h9{height:10.830586px;}
.h15{height:18.430664px;}
.h1b{height:20.685000px;}
.h1e{height:20.691000px;}
.h1c{height:20.721000px;}
.h1d{height:21.045000px;}
.h5{height:25.163437px;}
.h3{height:29.678906px;}
.h16{height:29.700000px;}
.h1a{height:41.400000px;}
.h18{height:42.602344px;}
.h2{height:44.518359px;}
.h13{height:45.000000px;}
.hc{height:45.403594px;}
.h7{height:45.457031px;}
.h17{height:47.221875px;}
.he{height:47.344922px;}
.hd{height:48.616875px;}
.h11{height:50.273438px;}
.h1{height:50.326875px;}
.h19{height:51.328125px;}
.h12{height:52.998047px;}
.h6{height:55.760625px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.ha{height:60.226875px;}
.h10{height:70.664062px;}
.h14{height:72.562500px;}
.h4{height:96.508125px;}
.h0{height:1188.000000px;}
.w12{width:109.461000px;}
.wd{width:114.336000px;}
.w10{width:114.876000px;}
.we{width:116.481000px;}
.w5{width:121.536000px;}
.wf{width:128.340000px;}
.w11{width:134.805000px;}
.w4{width:168.675000px;}
.w3{width:197.130000px;}
.w8{width:209.370000px;}
.w6{width:216.015000px;}
.wc{width:229.515000px;}
.wb{width:236.370000px;}
.wa{width:244.335000px;}
.w9{width:249.675000px;}
.w7{width:257.835000px;}
.w2{width:406.440000px;}
.w1{width:783.495000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:4.860000px;}
.x15{left:8.385000px;}
.x44{left:10.425000px;}
.x48{left:13.665000px;}
.x3e{left:16.236000px;}
.x46{left:17.265000px;}
.x25{left:19.800000px;}
.x49{left:21.096000px;}
.x47{left:23.040000px;}
.x42{left:25.920000px;}
.x20{left:28.620000px;}
.x1d{left:31.530000px;}
.x4a{left:32.925000px;}
.x4d{left:34.410000px;}
.x4b{left:37.080000px;}
.x13{left:38.736000px;}
.x1f{left:40.860000px;}
.x29{left:43.410000px;}
.x4c{left:47.145000px;}
.x22{left:48.585000px;}
.x3{left:58.500000px;}
.x23{left:61.005000px;}
.x2a{left:64.110000px;}
.x11{left:67.320000px;}
.x6{left:76.500000px;}
.x18{left:81.000000px;}
.x1b{left:84.630000px;}
.x27{left:89.490000px;}
.x24{left:97.950000px;}
.x28{left:100.470000px;}
.x38{left:103.485000px;}
.x33{left:106.200000px;}
.x32{left:107.490000px;}
.x3b{left:113.250000px;}
.x26{left:114.645000px;}
.x3a{left:117.540000px;}
.x30{left:119.910000px;}
.x39{left:121.710000px;}
.x3c{left:124.230000px;}
.x34{left:126.525000px;}
.x2f{left:128.370000px;}
.x31{left:130.890000px;}
.x50{left:135.036000px;}
.x4{left:139.896000px;}
.x2c{left:179.490000px;}
.x3f{left:195.345000px;}
.x16{left:206.310000px;}
.x1a{left:207.390000px;}
.x1c{left:278.145000px;}
.x40{left:311.835000px;}
.x36{left:325.335000px;}
.x5{left:330.735000px;}
.x2d{left:338.835000px;}
.xf{left:351.435000px;}
.x7{left:369.075000px;}
.x8{left:383.475000px;}
.x10{left:385.275000px;}
.x9{left:393.735000px;}
.xa{left:401.655000px;}
.xb{left:411.915000px;}
.xc{left:423.795000px;}
.xd{left:438.195000px;}
.x41{left:440.175000px;}
.x1e{left:446.835000px;}
.x2{left:450.075000px;}
.x1{left:459.075000px;}
.x19{left:463.575000px;}
.x17{left:472.215000px;}
.xe{left:509.295000px;}
.x14{left:511.560000px;}
.x2e{left:548.220000px;}
.x43{left:555.060000px;}
.x37{left:561.720000px;}
.x21{left:568.380000px;}
.x3d{left:661.605000px;}
.x45{left:689.880000px;}
.x4f{left:717.765000px;}
.x35{left:783.150000px;}
.x4e{left:788.010000px;}
.x2b{left:819.150000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v4{vertical-align:-83.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.148267pt;}
.lse{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls0{letter-spacing:306.368000pt;}
.lsd{letter-spacing:1376.266667pt;}
.ws8{word-spacing:-64.192000pt;}
.wsb{word-spacing:-63.552000pt;}
.ws0{word-spacing:-18.281173pt;}
.ws9{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-5.762133pt;}
._c{margin-left:-3.968000pt;}
._d{margin-left:-3.072000pt;}
._2{margin-left:-1.929600pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.191680pt;}
._6{width:2.160640pt;}
._b{width:3.279360pt;}
._a{width:4.800000pt;}
._10{width:6.272000pt;}
._e{width:8.192000pt;}
._f{width:9.344000pt;}
._5{width:10.240000pt;}
._9{width:11.904000pt;}
._7{width:18.624000pt;}
._8{width:19.928320pt;}
._3{width:23.104000pt;}
._4{width:24.102827pt;}
._13{width:42.624000pt;}
._14{width:44.864000pt;}
._11{width:45.824000pt;}
._12{width:46.762667pt;}
._16{width:260.717227pt;}
.fs6{font-size:10.880000pt;}
.fs7{font-size:13.440000pt;}
.fsb{font-size:16.000000pt;}
.fs2{font-size:26.880000pt;}
.fs4{font-size:29.440000pt;}
.fs1{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y5b{bottom:-3.666667pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.506667pt;}
.ycf{bottom:3.666667pt;}
.ye9{bottom:3.672000pt;}
.yc7{bottom:3.680000pt;}
.ycb{bottom:3.986667pt;}
.ye6{bottom:3.992000pt;}
.yc9{bottom:4.000000pt;}
.y5a{bottom:7.053333pt;}
.y5d{bottom:12.480000pt;}
.yc6{bottom:22.080000pt;}
.y59{bottom:25.293333pt;}
.y62{bottom:32.192000pt;}
.y3{bottom:41.472000pt;}
.y61{bottom:49.952000pt;}
.y2{bottom:59.072000pt;}
.y1{bottom:76.832000pt;}
.y122{bottom:77.632000pt;}
.ye8{bottom:78.600000pt;}
.ybb{bottom:87.392000pt;}
.y92{bottom:87.712000pt;}
.y130{bottom:88.032000pt;}
.y121{bottom:96.032000pt;}
.ye7{bottom:97.000000pt;}
.y100{bottom:97.640000pt;}
.y3a{bottom:101.632000pt;}
.yba{bottom:105.632000pt;}
.y91{bottom:106.112000pt;}
.y12f{bottom:106.432000pt;}
.y39{bottom:113.952000pt;}
.y120{bottom:114.432000pt;}
.ye5{bottom:115.400000pt;}
.yff{bottom:116.040000pt;}
.yf1{bottom:117.000000pt;}
.yb9{bottom:124.192000pt;}
.y90{bottom:124.512000pt;}
.y12e{bottom:124.832000pt;}
.y38{bottom:126.112000pt;}
.y11f{bottom:132.832000pt;}
.ye4{bottom:133.800000pt;}
.yfe{bottom:134.440000pt;}
.yf0{bottom:135.400000pt;}
.y37{bottom:138.266667pt;}
.yb8{bottom:142.586667pt;}
.y8f{bottom:142.906667pt;}
.y12d{bottom:143.226667pt;}
.y36{bottom:150.586667pt;}
.y11e{bottom:151.226667pt;}
.ye3{bottom:152.200000pt;}
.yfd{bottom:152.840000pt;}
.yef{bottom:153.800000pt;}
.yb7{bottom:161.146667pt;}
.y8e{bottom:161.306667pt;}
.y12c{bottom:161.626667pt;}
.y35{bottom:162.906667pt;}
.y57{bottom:164.666667pt;}
.y11d{bottom:169.626667pt;}
.ye1{bottom:170.600000pt;}
.yfc{bottom:171.240000pt;}
.yee{bottom:172.200000pt;}
.y34{bottom:175.226667pt;}
.y56{bottom:178.586667pt;}
.y8d{bottom:179.706667pt;}
.yb6{bottom:180.026667pt;}
.y33{bottom:187.386667pt;}
.y11c{bottom:188.026667pt;}
.yfb{bottom:190.280000pt;}
.yed{bottom:190.600000pt;}
.y55{bottom:192.346667pt;}
.yce{bottom:192.680000pt;}
.ye0{bottom:193.626667pt;}
.y8c{bottom:198.106667pt;}
.yb5{bottom:198.426667pt;}
.y32{bottom:199.546667pt;}
.y54{bottom:205.946667pt;}
.y11b{bottom:206.426667pt;}
.yec{bottom:209.800000pt;}
.ycd{bottom:211.080000pt;}
.y31{bottom:212.026667pt;}
.yfa{bottom:212.826667pt;}
.y8b{bottom:216.506667pt;}
.yb4{bottom:216.826667pt;}
.y53{bottom:223.226667pt;}
.y30{bottom:224.186667pt;}
.y11a{bottom:224.506667pt;}
.ycc{bottom:229.480000pt;}
.yf9{bottom:231.706667pt;}
.yeb{bottom:232.506667pt;}
.ydf{bottom:232.826667pt;}
.y8a{bottom:234.906667pt;}
.yb3{bottom:235.226667pt;}
.y2f{bottom:236.346667pt;}
.y52{bottom:241.626667pt;}
.y119{bottom:242.906667pt;}
.yca{bottom:247.880000pt;}
.y2e{bottom:248.666667pt;}
.yf8{bottom:250.426667pt;}
.yea{bottom:250.906667pt;}
.yde{bottom:251.226667pt;}
.y89{bottom:253.306667pt;}
.yb2{bottom:253.626667pt;}
.y51{bottom:260.066667pt;}
.y2d{bottom:261.026667pt;}
.y118{bottom:261.666667pt;}
.yc8{bottom:266.306667pt;}
.yf7{bottom:268.866667pt;}
.ydd{bottom:269.666667pt;}
.y88{bottom:271.426667pt;}
.yb1{bottom:272.066667pt;}
.y2c{bottom:273.346667pt;}
.y50{bottom:278.466667pt;}
.y117{bottom:280.066667pt;}
.y2b{bottom:285.506667pt;}
.yf6{bottom:287.266667pt;}
.y10b{bottom:287.586667pt;}
.ydc{bottom:288.066667pt;}
.y87{bottom:289.826667pt;}
.yb0{bottom:290.146667pt;}
.y12b{bottom:290.466667pt;}
.y4f{bottom:296.866667pt;}
.y2a{bottom:297.666667pt;}
.y116{bottom:298.466667pt;}
.yf5{bottom:305.666667pt;}
.y10a{bottom:305.986667pt;}
.ydb{bottom:306.466667pt;}
.y86{bottom:308.226667pt;}
.yaf{bottom:308.546667pt;}
.y135{bottom:308.866667pt;}
.y29{bottom:310.146667pt;}
.y4e{bottom:315.266667pt;}
.y115{bottom:316.866667pt;}
.y28{bottom:322.466667pt;}
.yf4{bottom:324.066667pt;}
.y109{bottom:324.386667pt;}
.yda{bottom:324.866667pt;}
.y85{bottom:326.946667pt;}
.yae{bottom:327.266667pt;}
.y4d{bottom:333.666667pt;}
.y27{bottom:334.626667pt;}
.y114{bottom:335.266667pt;}
.yf3{bottom:342.306667pt;}
.y108{bottom:342.786667pt;}
.yd9{bottom:343.266667pt;}
.yc5{bottom:345.026667pt;}
.y84{bottom:345.346667pt;}
.yad{bottom:345.666667pt;}
.y26{bottom:346.786667pt;}
.y4c{bottom:352.066667pt;}
.y113{bottom:353.666667pt;}
.y25{bottom:359.106667pt;}
.yf2{bottom:361.186667pt;}
.yd8{bottom:361.666667pt;}
.yc4{bottom:363.426667pt;}
.y83{bottom:363.746667pt;}
.yac{bottom:364.066667pt;}
.y4b{bottom:370.466667pt;}
.y24{bottom:371.426667pt;}
.y112{bottom:372.066667pt;}
.y107{bottom:379.586667pt;}
.yd7{bottom:380.066667pt;}
.y82{bottom:382.146667pt;}
.yab{bottom:382.466667pt;}
.y23{bottom:383.746667pt;}
.y4a{bottom:388.866667pt;}
.y111{bottom:390.146667pt;}
.y22{bottom:395.906667pt;}
.y106{bottom:397.986667pt;}
.yd6{bottom:398.466667pt;}
.y81{bottom:400.546667pt;}
.yaa{bottom:400.866667pt;}
.y49{bottom:407.266667pt;}
.y21{bottom:408.066667pt;}
.y110{bottom:408.546667pt;}
.y105{bottom:416.066667pt;}
.yd5{bottom:416.546667pt;}
.y80{bottom:418.946667pt;}
.ya9{bottom:419.266667pt;}
.y20{bottom:420.546667pt;}
.y48{bottom:425.666667pt;}
.y10f{bottom:427.266667pt;}
.y1f{bottom:432.866667pt;}
.y104{bottom:434.466667pt;}
.yd4{bottom:434.946667pt;}
.y7f{bottom:437.346667pt;}
.y12a{bottom:437.666667pt;}
.y47{bottom:444.066667pt;}
.y1e{bottom:444.866667pt;}
.y10e{bottom:445.666667pt;}
.y103{bottom:453.186667pt;}
.yd3{bottom:453.666667pt;}
.y7e{bottom:455.746667pt;}
.y129{bottom:456.066667pt;}
.y1d{bottom:457.186667pt;}
.y46{bottom:462.466667pt;}
.y10d{bottom:464.066667pt;}
.y1c{bottom:469.666667pt;}
.y102{bottom:471.586667pt;}
.yd2{bottom:472.066667pt;}
.y7d{bottom:474.146667pt;}
.ya8{bottom:474.466667pt;}
.y10c{bottom:478.466667pt;}
.y45{bottom:480.866667pt;}
.y1b{bottom:481.826667pt;}
.y101{bottom:490.013333pt;}
.yd1{bottom:490.493333pt;}
.y7c{bottom:492.573333pt;}
.ya7{bottom:492.893333pt;}
.y1a{bottom:494.013333pt;}
.y44{bottom:499.293333pt;}
.yd0{bottom:504.893333pt;}
.y19{bottom:506.493333pt;}
.y7b{bottom:510.973333pt;}
.ya6{bottom:511.293333pt;}
.y43{bottom:517.693333pt;}
.y18{bottom:519.293333pt;}
.y7a{bottom:529.373333pt;}
.ya5{bottom:529.693333pt;}
.y17{bottom:534.013333pt;}
.y42{bottom:536.093333pt;}
.y16{bottom:546.333333pt;}
.yc3{bottom:547.453333pt;}
.y79{bottom:547.773333pt;}
.ya4{bottom:548.093333pt;}
.y41{bottom:554.493333pt;}
.y15{bottom:558.333333pt;}
.yc2{bottom:565.853333pt;}
.y78{bottom:566.173333pt;}
.ya3{bottom:566.493333pt;}
.y14{bottom:570.653333pt;}
.y40{bottom:572.893333pt;}
.y13{bottom:583.133333pt;}
.yc1{bottom:584.253333pt;}
.y77{bottom:584.573333pt;}
.y128{bottom:584.893333pt;}
.y3f{bottom:591.293333pt;}
.y12{bottom:595.293333pt;}
.y76{bottom:602.973333pt;}
.y127{bottom:603.293333pt;}
.y11{bottom:607.453333pt;}
.y3e{bottom:609.693333pt;}
.y10{bottom:620.093333pt;}
.y75{bottom:621.373333pt;}
.ya2{bottom:621.693333pt;}
.y3d{bottom:628.093333pt;}
.yf{bottom:636.733333pt;}
.yc0{bottom:639.453333pt;}
.y74{bottom:639.773333pt;}
.ya1{bottom:640.093333pt;}
.y3c{bottom:646.493333pt;}
.ye{bottom:651.933333pt;}
.ybf{bottom:657.853333pt;}
.y73{bottom:658.173333pt;}
.ya0{bottom:658.493333pt;}
.y3b{bottom:664.893333pt;}
.yd{bottom:667.293333pt;}
.y72{bottom:676.413333pt;}
.y9f{bottom:676.893333pt;}
.yc{bottom:680.093333pt;}
.yb{bottom:688.733333pt;}
.y71{bottom:694.813333pt;}
.y9e{bottom:695.293333pt;}
.ya{bottom:696.573333pt;}
.y70{bottom:713.213333pt;}
.y9d{bottom:713.373333pt;}
.y126{bottom:713.693333pt;}
.y58{bottom:721.880000pt;}
.y6f{bottom:731.653333pt;}
.y9c{bottom:731.813333pt;}
.y125{bottom:732.133333pt;}
.y6e{bottom:750.053333pt;}
.y9b{bottom:750.533333pt;}
.y6d{bottom:768.453333pt;}
.y9a{bottom:768.933333pt;}
.y9{bottom:778.693333pt;}
.y6c{bottom:786.853333pt;}
.y99{bottom:787.333333pt;}
.y8{bottom:790.693333pt;}
.y6b{bottom:805.253333pt;}
.y98{bottom:805.733333pt;}
.y7{bottom:815.173333pt;}
.y6a{bottom:823.653333pt;}
.y134{bottom:823.813333pt;}
.y97{bottom:824.133333pt;}
.y69{bottom:842.053333pt;}
.y133{bottom:842.213333pt;}
.y96{bottom:842.533333pt;}
.ybe{bottom:860.133333pt;}
.y68{bottom:860.453333pt;}
.y95{bottom:860.933333pt;}
.y6{bottom:861.253333pt;}
.ybd{bottom:878.533333pt;}
.y67{bottom:878.853333pt;}
.y132{bottom:879.013333pt;}
.y94{bottom:879.333333pt;}
.y66{bottom:897.253333pt;}
.y131{bottom:897.413333pt;}
.y93{bottom:897.733333pt;}
.y65{bottom:915.653333pt;}
.y5f{bottom:915.813333pt;}
.y124{bottom:916.133333pt;}
.ybc{bottom:934.053333pt;}
.y5e{bottom:934.213333pt;}
.y123{bottom:934.533333pt;}
.y60{bottom:952.000000pt;}
.y5{bottom:983.520000pt;}
.y5c{bottom:984.960000pt;}
.y64{bottom:993.440000pt;}
.y4{bottom:996.160000pt;}
.y63{bottom:1011.840000pt;}
.h8{height:7.798750pt;}
.h9{height:9.627187pt;}
.h15{height:16.382812pt;}
.h1b{height:18.386667pt;}
.h1e{height:18.392000pt;}
.h1c{height:18.418667pt;}
.h1d{height:18.706667pt;}
.h5{height:22.367500pt;}
.h3{height:26.381250pt;}
.h16{height:26.400000pt;}
.h1a{height:36.800000pt;}
.h18{height:37.868750pt;}
.h2{height:39.571875pt;}
.h13{height:40.000000pt;}
.hc{height:40.358750pt;}
.h7{height:40.406250pt;}
.h17{height:41.975000pt;}
.he{height:42.084375pt;}
.hd{height:43.215000pt;}
.h11{height:44.687500pt;}
.h1{height:44.735000pt;}
.h19{height:45.625000pt;}
.h12{height:47.109375pt;}
.h6{height:49.565000pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.ha{height:53.535000pt;}
.h10{height:62.812500pt;}
.h14{height:64.500000pt;}
.h4{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w12{width:97.298667pt;}
.wd{width:101.632000pt;}
.w10{width:102.112000pt;}
.we{width:103.538667pt;}
.w5{width:108.032000pt;}
.wf{width:114.080000pt;}
.w11{width:119.826667pt;}
.w4{width:149.933333pt;}
.w3{width:175.226667pt;}
.w8{width:186.106667pt;}
.w6{width:192.013333pt;}
.wc{width:204.013333pt;}
.wb{width:210.106667pt;}
.wa{width:217.186667pt;}
.w9{width:221.933333pt;}
.w7{width:229.186667pt;}
.w2{width:361.280000pt;}
.w1{width:696.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.320000pt;}
.x15{left:7.453333pt;}
.x44{left:9.266667pt;}
.x48{left:12.146667pt;}
.x3e{left:14.432000pt;}
.x46{left:15.346667pt;}
.x25{left:17.600000pt;}
.x49{left:18.752000pt;}
.x47{left:20.480000pt;}
.x42{left:23.040000pt;}
.x20{left:25.440000pt;}
.x1d{left:28.026667pt;}
.x4a{left:29.266667pt;}
.x4d{left:30.586667pt;}
.x4b{left:32.960000pt;}
.x13{left:34.432000pt;}
.x1f{left:36.320000pt;}
.x29{left:38.586667pt;}
.x4c{left:41.906667pt;}
.x22{left:43.186667pt;}
.x3{left:52.000000pt;}
.x23{left:54.226667pt;}
.x2a{left:56.986667pt;}
.x11{left:59.840000pt;}
.x6{left:68.000000pt;}
.x18{left:72.000000pt;}
.x1b{left:75.226667pt;}
.x27{left:79.546667pt;}
.x24{left:87.066667pt;}
.x28{left:89.306667pt;}
.x38{left:91.986667pt;}
.x33{left:94.400000pt;}
.x32{left:95.546667pt;}
.x3b{left:100.666667pt;}
.x26{left:101.906667pt;}
.x3a{left:104.480000pt;}
.x30{left:106.586667pt;}
.x39{left:108.186667pt;}
.x3c{left:110.426667pt;}
.x34{left:112.466667pt;}
.x2f{left:114.106667pt;}
.x31{left:116.346667pt;}
.x50{left:120.032000pt;}
.x4{left:124.352000pt;}
.x2c{left:159.546667pt;}
.x3f{left:173.640000pt;}
.x16{left:183.386667pt;}
.x1a{left:184.346667pt;}
.x1c{left:247.240000pt;}
.x40{left:277.186667pt;}
.x36{left:289.186667pt;}
.x5{left:293.986667pt;}
.x2d{left:301.186667pt;}
.xf{left:312.386667pt;}
.x7{left:328.066667pt;}
.x8{left:340.866667pt;}
.x10{left:342.466667pt;}
.x9{left:349.986667pt;}
.xa{left:357.026667pt;}
.xb{left:366.146667pt;}
.xc{left:376.706667pt;}
.xd{left:389.506667pt;}
.x41{left:391.266667pt;}
.x1e{left:397.186667pt;}
.x2{left:400.066667pt;}
.x1{left:408.066667pt;}
.x19{left:412.066667pt;}
.x17{left:419.746667pt;}
.xe{left:452.706667pt;}
.x14{left:454.720000pt;}
.x2e{left:487.306667pt;}
.x43{left:493.386667pt;}
.x37{left:499.306667pt;}
.x21{left:505.226667pt;}
.x3d{left:588.093333pt;}
.x45{left:613.226667pt;}
.x4f{left:638.013333pt;}
.x35{left:696.133333pt;}
.x4e{left:700.453333pt;}
.x2b{left:728.133333pt;}
}




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