
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_906106db73759574d6f6e626.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0dd0f9d9d5329983e2bdd5fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b796bb7153545e271b7f1a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8fecf5ec5636c825f8de3279.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6cc091f85ada80f77f8ff448.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_2fcbdfc9c0895165161d0a58.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_6662919eeb5ef54c3415674b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.786000px;}
.ls4{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.431400px;}
.ls10{letter-spacing:-0.414000px;}
.ls12{letter-spacing:-0.326400px;}
.lsb{letter-spacing:-0.303000px;}
.ls27{letter-spacing:-0.301200px;}
.ls20{letter-spacing:-0.240600px;}
.ls24{letter-spacing:-0.226800px;}
.ls23{letter-spacing:-0.186600px;}
.ls21{letter-spacing:-0.115800px;}
.ls1b{letter-spacing:-0.107400px;}
.ls28{letter-spacing:-0.069600px;}
.lsa{letter-spacing:-0.064800px;}
.ls19{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.041040px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.023760px;}
.ls1c{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.066000px;}
.ls30{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.140400px;}
.ls1e{letter-spacing:0.174000px;}
.ls1d{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.175200px;}
.ls1f{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.190200px;}
.lse{letter-spacing:0.195000px;}
.ls2f{letter-spacing:0.220200px;}
.ls2a{letter-spacing:0.243600px;}
.ls5{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.306000px;}
.ls29{letter-spacing:0.334800px;}
.ls26{letter-spacing:0.382320px;}
.ls1a{letter-spacing:0.433440px;}
.lsc{letter-spacing:0.479400px;}
.ls2d{letter-spacing:0.479520px;}
.ls25{letter-spacing:0.654000px;}
.ls16{letter-spacing:0.780000px;}
.ls22{letter-spacing:0.906000px;}
.ls15{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2e{letter-spacing:12.186720px;}
.ls2c{letter-spacing:42.570720px;}
.ls2b{letter-spacing:46.026720px;}
.ls17{letter-spacing:202.638240px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws13{word-spacing:-14.531760px;}
.ws1{word-spacing:-14.506440px;}
.ws16{word-spacing:-13.840560px;}
.ws10{word-spacing:-13.811760px;}
.ws17{word-spacing:-13.749360px;}
.wsc{word-spacing:-13.700760px;}
.wsa{word-spacing:-13.692360px;}
.ws8{word-spacing:-13.680960px;}
.ws14{word-spacing:-13.646160px;}
.ws1a{word-spacing:-13.599360px;}
.ws11{word-spacing:-13.566360px;}
.ws18{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.464720px;}
.wse{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.440960px;}
.ws15{word-spacing:-13.436160px;}
.ws19{word-spacing:-13.398360px;}
.ws12{word-spacing:-13.319160px;}
.ws9{word-spacing:-13.202760px;}
.wsb{word-spacing:-13.179360px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-582.156960px;}
._8{margin-left:-5.544960px;}
._7{margin-left:-4.313760px;}
._6{margin-left:-3.312000px;}
._12{margin-left:-2.302560px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:3.084960px;}
._b{width:4.900320px;}
._f{width:6.418800px;}
._e{width:7.589520px;}
._c{width:8.964000px;}
._a{width:10.039680px;}
._18{width:11.294640px;}
._d{width:12.370320px;}
._17{width:14.684640px;}
._15{width:15.836400px;}
._13{width:17.210880px;}
._14{width:18.406080px;}
._16{width:19.820400px;}
._1b{width:20.856240px;}
._11{width:22.341600px;}
._10{width:23.612400px;}
._1c{width:26.692800px;}
._1e{width:30.955680px;}
._19{width:52.878240px;}
._1d{width:95.914800px;}
._1a{width:202.638240px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y6e{bottom:-8.640000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:6.840000px;}
.yd4{bottom:6.885000px;}
.y68{bottom:7.374000px;}
.y69{bottom:7.914000px;}
.yd8{bottom:8.280000px;}
.yda{bottom:9.360000px;}
.y103{bottom:11.160000px;}
.y100{bottom:11.520000px;}
.y109{bottom:17.280000px;}
.y113{bottom:18.900000px;}
.y105{bottom:27.894000px;}
.yc9{bottom:27.900000px;}
.y112{bottom:39.960000px;}
.ycd{bottom:48.960000px;}
.yd1{bottom:49.005000px;}
.yfd{bottom:50.400000px;}
.yd6{bottom:52.920000px;}
.y6{bottom:58.500000px;}
.yc6{bottom:70.020000px;}
.yfc{bottom:71.460000px;}
.ya0{bottom:87.516000px;}
.y66{bottom:88.956000px;}
.yc5{bottom:91.080000px;}
.y31{bottom:95.076000px;}
.y108{bottom:95.976000px;}
.y13c{bottom:100.296000px;}
.y6c{bottom:100.476000px;}
.yfa{bottom:102.276000px;}
.y13d{bottom:103.536000px;}
.yc3{bottom:106.956000px;}
.y9f{bottom:108.576000px;}
.y65{bottom:110.016000px;}
.y30{bottom:116.136000px;}
.y10a{bottom:117.036000px;}
.y13b{bottom:121.356000px;}
.y6a{bottom:121.536000px;}
.yf9{bottom:123.336000px;}
.yc2{bottom:128.016000px;}
.y9e{bottom:129.636000px;}
.y64{bottom:131.076000px;}
.y2f{bottom:137.196000px;}
.y104{bottom:139.536000px;}
.y13a{bottom:142.416000px;}
.y67{bottom:143.496000px;}
.yf8{bottom:144.396000px;}
.yc1{bottom:149.076000px;}
.y9d{bottom:150.690000px;}
.y63{bottom:152.130000px;}
.y2e{bottom:158.250000px;}
.y107{bottom:160.590000px;}
.y139{bottom:163.470000px;}
.yf7{bottom:165.450000px;}
.yc0{bottom:170.130000px;}
.y9c{bottom:171.750000px;}
.y62{bottom:173.190000px;}
.y2d{bottom:179.310000px;}
.y106{bottom:181.650000px;}
.y138{bottom:184.530000px;}
.yf6{bottom:186.510000px;}
.ybf{bottom:191.190000px;}
.y9b{bottom:192.810000px;}
.y61{bottom:194.250000px;}
.y2c{bottom:200.370000px;}
.yfb{bottom:204.150000px;}
.y137{bottom:205.590000px;}
.yf5{bottom:207.570000px;}
.ybe{bottom:212.250000px;}
.y9a{bottom:213.870000px;}
.y60{bottom:215.310000px;}
.y2b{bottom:221.430000px;}
.y136{bottom:226.650000px;}
.yf4{bottom:228.630000px;}
.ybd{bottom:233.310000px;}
.y99{bottom:234.930000px;}
.y102{bottom:235.110000px;}
.y5f{bottom:236.370000px;}
.y2a{bottom:242.490000px;}
.y135{bottom:247.710000px;}
.yf3{bottom:249.690000px;}
.ybc{bottom:254.370000px;}
.y98{bottom:255.990000px;}
.y5e{bottom:257.430000px;}
.y101{bottom:257.790000px;}
.y29{bottom:263.370000px;}
.y134{bottom:268.770000px;}
.yf2{bottom:270.750000px;}
.y6d{bottom:275.070000px;}
.ybb{bottom:275.430000px;}
.y97{bottom:277.050000px;}
.y5d{bottom:278.490000px;}
.yff{bottom:280.290000px;}
.y28{bottom:284.430000px;}
.y133{bottom:289.830000px;}
.yf1{bottom:291.810000px;}
.yba{bottom:296.490000px;}
.y96{bottom:298.110000px;}
.y5c{bottom:299.550000px;}
.y27{bottom:305.490000px;}
.y132{bottom:310.890000px;}
.yfe{bottom:312.330000px;}
.yf0{bottom:312.870000px;}
.yb9{bottom:317.550000px;}
.y95{bottom:319.170000px;}
.y5b{bottom:320.610000px;}
.y26{bottom:326.550000px;}
.y131{bottom:331.995000px;}
.yef{bottom:333.975000px;}
.yb8{bottom:338.655000px;}
.y94{bottom:340.275000px;}
.y5a{bottom:341.715000px;}
.y25{bottom:347.655000px;}
.y130{bottom:353.055000px;}
.yee{bottom:355.035000px;}
.yb7{bottom:359.715000px;}
.y93{bottom:361.335000px;}
.y59{bottom:362.775000px;}
.y24{bottom:368.715000px;}
.y12f{bottom:374.115000px;}
.yed{bottom:376.095000px;}
.yb6{bottom:380.775000px;}
.y92{bottom:382.215000px;}
.y58{bottom:383.835000px;}
.y23{bottom:389.775000px;}
.y12e{bottom:395.175000px;}
.yec{bottom:397.155000px;}
.yb5{bottom:401.835000px;}
.y91{bottom:403.275000px;}
.y57{bottom:404.895000px;}
.y22{bottom:412.995000px;}
.y12d{bottom:416.235000px;}
.yeb{bottom:418.215000px;}
.yb4{bottom:422.895000px;}
.y90{bottom:424.335000px;}
.y56{bottom:425.955000px;}
.y12c{bottom:437.295000px;}
.yea{bottom:439.275000px;}
.y21{bottom:443.235000px;}
.yb3{bottom:443.955000px;}
.y8f{bottom:445.395000px;}
.y55{bottom:447.015000px;}
.y12b{bottom:458.355000px;}
.ye9{bottom:460.335000px;}
.y20{bottom:464.295000px;}
.yb2{bottom:465.015000px;}
.y8e{bottom:466.455000px;}
.y54{bottom:468.075000px;}
.y12a{bottom:479.415000px;}
.ye8{bottom:481.395000px;}
.y1f{bottom:485.355000px;}
.yb1{bottom:486.075000px;}
.y8d{bottom:487.515000px;}
.y53{bottom:489.135000px;}
.yb0{bottom:500.295000px;}
.y129{bottom:500.475000px;}
.ye7{bottom:502.455000px;}
.y1e{bottom:506.415000px;}
.y8c{bottom:508.575000px;}
.y52{bottom:510.195000px;}
.yaf{bottom:521.355000px;}
.y128{bottom:521.535000px;}
.ye6{bottom:523.515000px;}
.y1d{bottom:527.475000px;}
.y8b{bottom:529.635000px;}
.y51{bottom:531.255000px;}
.y127{bottom:542.595000px;}
.yae{bottom:543.135000px;}
.ye5{bottom:544.575000px;}
.y1c{bottom:548.535000px;}
.y8a{bottom:550.695000px;}
.y50{bottom:552.315000px;}
.y126{bottom:563.655000px;}
.yad{bottom:564.915000px;}
.ye4{bottom:565.635000px;}
.y1b{bottom:569.595000px;}
.y89{bottom:571.755000px;}
.y4f{bottom:573.375000px;}
.y125{bottom:584.535000px;}
.yac{bottom:585.975000px;}
.ye3{bottom:586.695000px;}
.y1a{bottom:590.655000px;}
.y88{bottom:592.815000px;}
.y4e{bottom:594.435000px;}
.y124{bottom:605.625000px;}
.yab{bottom:607.065000px;}
.ye2{bottom:607.785000px;}
.y19{bottom:611.745000px;}
.y87{bottom:613.905000px;}
.y4d{bottom:615.525000px;}
.y123{bottom:626.685000px;}
.yaa{bottom:628.125000px;}
.ye1{bottom:628.845000px;}
.y18{bottom:632.805000px;}
.y86{bottom:634.965000px;}
.y4c{bottom:636.585000px;}
.y122{bottom:647.745000px;}
.ya9{bottom:649.185000px;}
.ye0{bottom:649.905000px;}
.y17{bottom:653.865000px;}
.y85{bottom:656.025000px;}
.y4b{bottom:657.645000px;}
.y121{bottom:668.805000px;}
.ya8{bottom:670.965000px;}
.y16{bottom:674.925000px;}
.y84{bottom:677.085000px;}
.y4a{bottom:678.705000px;}
.y120{bottom:689.865000px;}
.ydf{bottom:692.025000px;}
.y15{bottom:695.985000px;}
.y83{bottom:698.145000px;}
.y49{bottom:699.765000px;}
.y11f{bottom:710.925000px;}
.yde{bottom:713.085000px;}
.y14{bottom:717.045000px;}
.y82{bottom:719.205000px;}
.y48{bottom:720.825000px;}
.y11e{bottom:731.985000px;}
.ydd{bottom:734.145000px;}
.y13{bottom:738.105000px;}
.y81{bottom:740.265000px;}
.y47{bottom:741.885000px;}
.y11d{bottom:753.045000px;}
.ydc{bottom:755.205000px;}
.y12{bottom:759.165000px;}
.y80{bottom:761.325000px;}
.y46{bottom:762.945000px;}
.ydb{bottom:769.425000px;}
.y11c{bottom:774.105000px;}
.y11{bottom:780.225000px;}
.y7f{bottom:782.385000px;}
.y45{bottom:784.005000px;}
.yd5{bottom:792.645000px;}
.y11b{bottom:795.165000px;}
.y10{bottom:801.105000px;}
.y7e{bottom:803.445000px;}
.y44{bottom:805.065000px;}
.yd9{bottom:816.225000px;}
.yf{bottom:824.505000px;}
.y43{bottom:825.945000px;}
.yd7{bottom:837.285000px;}
.ye{bottom:845.565000px;}
.y42{bottom:847.005000px;}
.y11a{bottom:858.345000px;}
.yd0{bottom:859.785000px;}
.y7d{bottom:866.670000px;}
.y41{bottom:868.110000px;}
.yd{bottom:871.890000px;}
.y119{bottom:872.610000px;}
.yd3{bottom:880.890000px;}
.y7c{bottom:887.730000px;}
.y40{bottom:889.170000px;}
.yc{bottom:892.950000px;}
.y116{bottom:895.290000px;}
.yd2{bottom:901.950000px;}
.y7b{bottom:908.790000px;}
.y3f{bottom:910.230000px;}
.yb{bottom:914.010000px;}
.y118{bottom:916.350000px;}
.ycc{bottom:923.010000px;}
.y7a{bottom:929.850000px;}
.ya{bottom:930.750000px;}
.y3e{bottom:931.290000px;}
.y117{bottom:937.410000px;}
.ycf{bottom:944.070000px;}
.y79{bottom:950.910000px;}
.y3d{bottom:952.350000px;}
.y9{bottom:953.070000px;}
.y111{bottom:959.190000px;}
.ya7{bottom:960.810000px;}
.yce{bottom:965.130000px;}
.y78{bottom:971.970000px;}
.y3c{bottom:973.410000px;}
.y8{bottom:978.090000px;}
.y115{bottom:981.690000px;}
.ya6{bottom:981.870000px;}
.yc4{bottom:986.910000px;}
.y77{bottom:993.030000px;}
.y3b{bottom:994.470000px;}
.ya5{bottom:1003.650000px;}
.y114{bottom:1004.190000px;}
.ycb{bottom:1007.970000px;}
.y7{bottom:1011.750000px;}
.y76{bottom:1014.090000px;}
.y3a{bottom:1015.530000px;}
.ya4{bottom:1025.610000px;}
.y10e{bottom:1026.870000px;}
.yca{bottom:1029.030000px;}
.y75{bottom:1035.150000px;}
.y39{bottom:1036.590000px;}
.ya3{bottom:1046.670000px;}
.y110{bottom:1047.930000px;}
.yc8{bottom:1050.090000px;}
.y5{bottom:1052.070000px;}
.y74{bottom:1056.210000px;}
.y38{bottom:1057.650000px;}
.ya2{bottom:1067.730000px;}
.y10f{bottom:1068.990000px;}
.yc7{bottom:1071.150000px;}
.y73{bottom:1077.270000px;}
.y37{bottom:1078.710000px;}
.y4{bottom:1084.290000px;}
.ya1{bottom:1089.510000px;}
.y10b{bottom:1091.490000px;}
.y72{bottom:1092.210000px;}
.y36{bottom:1099.770000px;}
.y10d{bottom:1112.550000px;}
.y71{bottom:1113.990000px;}
.y3{bottom:1116.330000px;}
.y35{bottom:1120.830000px;}
.y10c{bottom:1133.640000px;}
.y70{bottom:1135.080000px;}
.y34{bottom:1141.920000px;}
.y2{bottom:1148.580000px;}
.y6f{bottom:1156.140000px;}
.y33{bottom:1162.980000px;}
.y1{bottom:1183.140000px;}
.y32{bottom:1193.940000px;}
.he{height:6.660000px;}
.hd{height:21.060000px;}
.h10{height:21.096000px;}
.hc{height:22.140000px;}
.h16{height:22.500000px;}
.h17{height:23.580000px;}
.h1a{height:29.520000px;}
.h19{height:30.420000px;}
.h7{height:38.671172px;}
.h12{height:42.120000px;}
.h9{height:45.578672px;}
.hb{height:45.637031px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h13{height:63.180000px;}
.h14{height:63.216000px;}
.h3{height:65.884219px;}
.h1b{height:66.060000px;}
.h15{height:67.140000px;}
.h6{height:67.824844px;}
.hf{height:68.084282px;}
.h4{height:98.051133px;}
.h11{height:105.300000px;}
.h18{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:23.760000px;}
.w9{width:70.200000px;}
.we{width:73.836000px;}
.w8{width:87.336000px;}
.wf{width:96.120000px;}
.w14{width:102.240000px;}
.w15{width:102.276000px;}
.w17{width:102.420000px;}
.w16{width:102.780000px;}
.w1d{width:111.420000px;}
.w1e{width:111.456000px;}
.w1c{width:111.816000px;}
.w4{width:123.660000px;}
.w5{width:131.256000px;}
.w19{width:136.836000px;}
.w12{width:147.096000px;}
.w1b{width:158.610000px;}
.w10{width:165.270000px;}
.wa{width:201.630000px;}
.w7{width:241.230000px;}
.wc{width:263.370000px;}
.w3{width:315.975000px;}
.wd{width:330.510000px;}
.w11{width:335.235000px;}
.wb{width:337.035000px;}
.w13{width:512.025000px;}
.w1a{width:604.725000px;}
.w1f{width:741.570000px;}
.w18{width:760.650000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.xb{left:10.800000px;}
.x1{left:53.999987px;}
.x11{left:62.094000px;}
.x21{left:64.799987px;}
.x16{left:65.880000px;}
.x5{left:70.559987px;}
.x1d{left:75.780000px;}
.x22{left:80.999987px;}
.x4{left:91.439987px;}
.x3{left:99.035987px;}
.x2{left:108.035987px;}
.x12{left:113.616000px;}
.xc{left:145.836000px;}
.x6{left:161.130000px;}
.x17{left:212.970000px;}
.x19{left:315.255000px;}
.x1e{left:371.235000px;}
.xd{left:387.075000px;}
.x1a{left:418.035000px;}
.x13{left:444.135000px;}
.xe{left:474.405000px;}
.x8{left:477.105000px;}
.x10{left:482.865000px;}
.x14{left:517.965000px;}
.x1b{left:520.305000px;}
.xf{left:544.605000px;}
.x1f{left:594.465000px;}
.x9{left:600.765000px;}
.x15{left:614.085000px;}
.x1c{left:622.725000px;}
.xa{left:681.090000px;}
.x20{left:705.930000px;}
.x18{left:725.010000px;}
.x23{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.698667pt;}
.ls4{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.383467pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls12{letter-spacing:-0.290133pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls27{letter-spacing:-0.267733pt;}
.ls20{letter-spacing:-0.213867pt;}
.ls24{letter-spacing:-0.201600pt;}
.ls23{letter-spacing:-0.165867pt;}
.ls21{letter-spacing:-0.102933pt;}
.ls1b{letter-spacing:-0.095467pt;}
.ls28{letter-spacing:-0.061867pt;}
.lsa{letter-spacing:-0.057600pt;}
.ls19{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.036480pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.021120pt;}
.ls1c{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058667pt;}
.ls30{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.124800pt;}
.ls1e{letter-spacing:0.154667pt;}
.ls1d{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.155733pt;}
.ls1f{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.169067pt;}
.lse{letter-spacing:0.173333pt;}
.ls2f{letter-spacing:0.195733pt;}
.ls2a{letter-spacing:0.216533pt;}
.ls5{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.272000pt;}
.ls29{letter-spacing:0.297600pt;}
.ls26{letter-spacing:0.339840pt;}
.ls1a{letter-spacing:0.385280pt;}
.lsc{letter-spacing:0.426133pt;}
.ls2d{letter-spacing:0.426240pt;}
.ls25{letter-spacing:0.581333pt;}
.ls16{letter-spacing:0.693333pt;}
.ls22{letter-spacing:0.805333pt;}
.ls15{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2e{letter-spacing:10.832640pt;}
.ls2c{letter-spacing:37.840640pt;}
.ls2b{letter-spacing:40.912640pt;}
.ls17{letter-spacing:180.122880pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws13{word-spacing:-12.917120pt;}
.ws1{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.302720pt;}
.ws10{word-spacing:-12.277120pt;}
.ws17{word-spacing:-12.221653pt;}
.wsc{word-spacing:-12.178453pt;}
.wsa{word-spacing:-12.170987pt;}
.ws8{word-spacing:-12.160853pt;}
.ws14{word-spacing:-12.129920pt;}
.ws1a{word-spacing:-12.088320pt;}
.ws11{word-spacing:-12.058987pt;}
.ws18{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.968640pt;}
.wse{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.947520pt;}
.ws15{word-spacing:-11.943253pt;}
.ws19{word-spacing:-11.909653pt;}
.ws12{word-spacing:-11.839253pt;}
.ws9{word-spacing:-11.735787pt;}
.wsb{word-spacing:-11.714987pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.472853pt;}
._8{margin-left:-4.928853pt;}
._7{margin-left:-3.834453pt;}
._6{margin-left:-2.944000pt;}
._12{margin-left:-2.046720pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.742187pt;}
._b{width:4.355840pt;}
._f{width:5.705600pt;}
._e{width:6.746240pt;}
._c{width:7.968000pt;}
._a{width:8.924160pt;}
._18{width:10.039680pt;}
._d{width:10.995840pt;}
._17{width:13.053013pt;}
._15{width:14.076800pt;}
._13{width:15.298560pt;}
._14{width:16.360960pt;}
._16{width:17.618133pt;}
._1b{width:18.538880pt;}
._11{width:19.859200pt;}
._10{width:20.988800pt;}
._1c{width:23.726933pt;}
._1e{width:27.516160pt;}
._19{width:47.002880pt;}
._1d{width:85.257600pt;}
._1a{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y6e{bottom:-7.680000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.080000pt;}
.yd4{bottom:6.120000pt;}
.y68{bottom:6.554667pt;}
.y69{bottom:7.034667pt;}
.yd8{bottom:7.360000pt;}
.yda{bottom:8.320000pt;}
.y103{bottom:9.920000pt;}
.y100{bottom:10.240000pt;}
.y109{bottom:15.360000pt;}
.y113{bottom:16.800000pt;}
.y105{bottom:24.794667pt;}
.yc9{bottom:24.800000pt;}
.y112{bottom:35.520000pt;}
.ycd{bottom:43.520000pt;}
.yd1{bottom:43.560000pt;}
.yfd{bottom:44.800000pt;}
.yd6{bottom:47.040000pt;}
.y6{bottom:52.000000pt;}
.yc6{bottom:62.240000pt;}
.yfc{bottom:63.520000pt;}
.ya0{bottom:77.792000pt;}
.y66{bottom:79.072000pt;}
.yc5{bottom:80.960000pt;}
.y31{bottom:84.512000pt;}
.y108{bottom:85.312000pt;}
.y13c{bottom:89.152000pt;}
.y6c{bottom:89.312000pt;}
.yfa{bottom:90.912000pt;}
.y13d{bottom:92.032000pt;}
.yc3{bottom:95.072000pt;}
.y9f{bottom:96.512000pt;}
.y65{bottom:97.792000pt;}
.y30{bottom:103.232000pt;}
.y10a{bottom:104.032000pt;}
.y13b{bottom:107.872000pt;}
.y6a{bottom:108.032000pt;}
.yf9{bottom:109.632000pt;}
.yc2{bottom:113.792000pt;}
.y9e{bottom:115.232000pt;}
.y64{bottom:116.512000pt;}
.y2f{bottom:121.952000pt;}
.y104{bottom:124.032000pt;}
.y13a{bottom:126.592000pt;}
.y67{bottom:127.552000pt;}
.yf8{bottom:128.352000pt;}
.yc1{bottom:132.512000pt;}
.y9d{bottom:133.946667pt;}
.y63{bottom:135.226667pt;}
.y2e{bottom:140.666667pt;}
.y107{bottom:142.746667pt;}
.y139{bottom:145.306667pt;}
.yf7{bottom:147.066667pt;}
.yc0{bottom:151.226667pt;}
.y9c{bottom:152.666667pt;}
.y62{bottom:153.946667pt;}
.y2d{bottom:159.386667pt;}
.y106{bottom:161.466667pt;}
.y138{bottom:164.026667pt;}
.yf6{bottom:165.786667pt;}
.ybf{bottom:169.946667pt;}
.y9b{bottom:171.386667pt;}
.y61{bottom:172.666667pt;}
.y2c{bottom:178.106667pt;}
.yfb{bottom:181.466667pt;}
.y137{bottom:182.746667pt;}
.yf5{bottom:184.506667pt;}
.ybe{bottom:188.666667pt;}
.y9a{bottom:190.106667pt;}
.y60{bottom:191.386667pt;}
.y2b{bottom:196.826667pt;}
.y136{bottom:201.466667pt;}
.yf4{bottom:203.226667pt;}
.ybd{bottom:207.386667pt;}
.y99{bottom:208.826667pt;}
.y102{bottom:208.986667pt;}
.y5f{bottom:210.106667pt;}
.y2a{bottom:215.546667pt;}
.y135{bottom:220.186667pt;}
.yf3{bottom:221.946667pt;}
.ybc{bottom:226.106667pt;}
.y98{bottom:227.546667pt;}
.y5e{bottom:228.826667pt;}
.y101{bottom:229.146667pt;}
.y29{bottom:234.106667pt;}
.y134{bottom:238.906667pt;}
.yf2{bottom:240.666667pt;}
.y6d{bottom:244.506667pt;}
.ybb{bottom:244.826667pt;}
.y97{bottom:246.266667pt;}
.y5d{bottom:247.546667pt;}
.yff{bottom:249.146667pt;}
.y28{bottom:252.826667pt;}
.y133{bottom:257.626667pt;}
.yf1{bottom:259.386667pt;}
.yba{bottom:263.546667pt;}
.y96{bottom:264.986667pt;}
.y5c{bottom:266.266667pt;}
.y27{bottom:271.546667pt;}
.y132{bottom:276.346667pt;}
.yfe{bottom:277.626667pt;}
.yf0{bottom:278.106667pt;}
.yb9{bottom:282.266667pt;}
.y95{bottom:283.706667pt;}
.y5b{bottom:284.986667pt;}
.y26{bottom:290.266667pt;}
.y131{bottom:295.106667pt;}
.yef{bottom:296.866667pt;}
.yb8{bottom:301.026667pt;}
.y94{bottom:302.466667pt;}
.y5a{bottom:303.746667pt;}
.y25{bottom:309.026667pt;}
.y130{bottom:313.826667pt;}
.yee{bottom:315.586667pt;}
.yb7{bottom:319.746667pt;}
.y93{bottom:321.186667pt;}
.y59{bottom:322.466667pt;}
.y24{bottom:327.746667pt;}
.y12f{bottom:332.546667pt;}
.yed{bottom:334.306667pt;}
.yb6{bottom:338.466667pt;}
.y92{bottom:339.746667pt;}
.y58{bottom:341.186667pt;}
.y23{bottom:346.466667pt;}
.y12e{bottom:351.266667pt;}
.yec{bottom:353.026667pt;}
.yb5{bottom:357.186667pt;}
.y91{bottom:358.466667pt;}
.y57{bottom:359.906667pt;}
.y22{bottom:367.106667pt;}
.y12d{bottom:369.986667pt;}
.yeb{bottom:371.746667pt;}
.yb4{bottom:375.906667pt;}
.y90{bottom:377.186667pt;}
.y56{bottom:378.626667pt;}
.y12c{bottom:388.706667pt;}
.yea{bottom:390.466667pt;}
.y21{bottom:393.986667pt;}
.yb3{bottom:394.626667pt;}
.y8f{bottom:395.906667pt;}
.y55{bottom:397.346667pt;}
.y12b{bottom:407.426667pt;}
.ye9{bottom:409.186667pt;}
.y20{bottom:412.706667pt;}
.yb2{bottom:413.346667pt;}
.y8e{bottom:414.626667pt;}
.y54{bottom:416.066667pt;}
.y12a{bottom:426.146667pt;}
.ye8{bottom:427.906667pt;}
.y1f{bottom:431.426667pt;}
.yb1{bottom:432.066667pt;}
.y8d{bottom:433.346667pt;}
.y53{bottom:434.786667pt;}
.yb0{bottom:444.706667pt;}
.y129{bottom:444.866667pt;}
.ye7{bottom:446.626667pt;}
.y1e{bottom:450.146667pt;}
.y8c{bottom:452.066667pt;}
.y52{bottom:453.506667pt;}
.yaf{bottom:463.426667pt;}
.y128{bottom:463.586667pt;}
.ye6{bottom:465.346667pt;}
.y1d{bottom:468.866667pt;}
.y8b{bottom:470.786667pt;}
.y51{bottom:472.226667pt;}
.y127{bottom:482.306667pt;}
.yae{bottom:482.786667pt;}
.ye5{bottom:484.066667pt;}
.y1c{bottom:487.586667pt;}
.y8a{bottom:489.506667pt;}
.y50{bottom:490.946667pt;}
.y126{bottom:501.026667pt;}
.yad{bottom:502.146667pt;}
.ye4{bottom:502.786667pt;}
.y1b{bottom:506.306667pt;}
.y89{bottom:508.226667pt;}
.y4f{bottom:509.666667pt;}
.y125{bottom:519.586667pt;}
.yac{bottom:520.866667pt;}
.ye3{bottom:521.506667pt;}
.y1a{bottom:525.026667pt;}
.y88{bottom:526.946667pt;}
.y4e{bottom:528.386667pt;}
.y124{bottom:538.333333pt;}
.yab{bottom:539.613333pt;}
.ye2{bottom:540.253333pt;}
.y19{bottom:543.773333pt;}
.y87{bottom:545.693333pt;}
.y4d{bottom:547.133333pt;}
.y123{bottom:557.053333pt;}
.yaa{bottom:558.333333pt;}
.ye1{bottom:558.973333pt;}
.y18{bottom:562.493333pt;}
.y86{bottom:564.413333pt;}
.y4c{bottom:565.853333pt;}
.y122{bottom:575.773333pt;}
.ya9{bottom:577.053333pt;}
.ye0{bottom:577.693333pt;}
.y17{bottom:581.213333pt;}
.y85{bottom:583.133333pt;}
.y4b{bottom:584.573333pt;}
.y121{bottom:594.493333pt;}
.ya8{bottom:596.413333pt;}
.y16{bottom:599.933333pt;}
.y84{bottom:601.853333pt;}
.y4a{bottom:603.293333pt;}
.y120{bottom:613.213333pt;}
.ydf{bottom:615.133333pt;}
.y15{bottom:618.653333pt;}
.y83{bottom:620.573333pt;}
.y49{bottom:622.013333pt;}
.y11f{bottom:631.933333pt;}
.yde{bottom:633.853333pt;}
.y14{bottom:637.373333pt;}
.y82{bottom:639.293333pt;}
.y48{bottom:640.733333pt;}
.y11e{bottom:650.653333pt;}
.ydd{bottom:652.573333pt;}
.y13{bottom:656.093333pt;}
.y81{bottom:658.013333pt;}
.y47{bottom:659.453333pt;}
.y11d{bottom:669.373333pt;}
.ydc{bottom:671.293333pt;}
.y12{bottom:674.813333pt;}
.y80{bottom:676.733333pt;}
.y46{bottom:678.173333pt;}
.ydb{bottom:683.933333pt;}
.y11c{bottom:688.093333pt;}
.y11{bottom:693.533333pt;}
.y7f{bottom:695.453333pt;}
.y45{bottom:696.893333pt;}
.yd5{bottom:704.573333pt;}
.y11b{bottom:706.813333pt;}
.y10{bottom:712.093333pt;}
.y7e{bottom:714.173333pt;}
.y44{bottom:715.613333pt;}
.yd9{bottom:725.533333pt;}
.yf{bottom:732.893333pt;}
.y43{bottom:734.173333pt;}
.yd7{bottom:744.253333pt;}
.ye{bottom:751.613333pt;}
.y42{bottom:752.893333pt;}
.y11a{bottom:762.973333pt;}
.yd0{bottom:764.253333pt;}
.y7d{bottom:770.373333pt;}
.y41{bottom:771.653333pt;}
.yd{bottom:775.013333pt;}
.y119{bottom:775.653333pt;}
.yd3{bottom:783.013333pt;}
.y7c{bottom:789.093333pt;}
.y40{bottom:790.373333pt;}
.yc{bottom:793.733333pt;}
.y116{bottom:795.813333pt;}
.yd2{bottom:801.733333pt;}
.y7b{bottom:807.813333pt;}
.y3f{bottom:809.093333pt;}
.yb{bottom:812.453333pt;}
.y118{bottom:814.533333pt;}
.ycc{bottom:820.453333pt;}
.y7a{bottom:826.533333pt;}
.ya{bottom:827.333333pt;}
.y3e{bottom:827.813333pt;}
.y117{bottom:833.253333pt;}
.ycf{bottom:839.173333pt;}
.y79{bottom:845.253333pt;}
.y3d{bottom:846.533333pt;}
.y9{bottom:847.173333pt;}
.y111{bottom:852.613333pt;}
.ya7{bottom:854.053333pt;}
.yce{bottom:857.893333pt;}
.y78{bottom:863.973333pt;}
.y3c{bottom:865.253333pt;}
.y8{bottom:869.413333pt;}
.y115{bottom:872.613333pt;}
.ya6{bottom:872.773333pt;}
.yc4{bottom:877.253333pt;}
.y77{bottom:882.693333pt;}
.y3b{bottom:883.973333pt;}
.ya5{bottom:892.133333pt;}
.y114{bottom:892.613333pt;}
.ycb{bottom:895.973333pt;}
.y7{bottom:899.333333pt;}
.y76{bottom:901.413333pt;}
.y3a{bottom:902.693333pt;}
.ya4{bottom:911.653333pt;}
.y10e{bottom:912.773333pt;}
.yca{bottom:914.693333pt;}
.y75{bottom:920.133333pt;}
.y39{bottom:921.413333pt;}
.ya3{bottom:930.373333pt;}
.y110{bottom:931.493333pt;}
.yc8{bottom:933.413333pt;}
.y5{bottom:935.173333pt;}
.y74{bottom:938.853333pt;}
.y38{bottom:940.133333pt;}
.ya2{bottom:949.093333pt;}
.y10f{bottom:950.213333pt;}
.yc7{bottom:952.133333pt;}
.y73{bottom:957.573333pt;}
.y37{bottom:958.853333pt;}
.y4{bottom:963.813333pt;}
.ya1{bottom:968.453333pt;}
.y10b{bottom:970.213333pt;}
.y72{bottom:970.853333pt;}
.y36{bottom:977.573333pt;}
.y10d{bottom:988.933333pt;}
.y71{bottom:990.213333pt;}
.y3{bottom:992.293333pt;}
.y35{bottom:996.293333pt;}
.y10c{bottom:1007.680000pt;}
.y70{bottom:1008.960000pt;}
.y34{bottom:1015.040000pt;}
.y2{bottom:1020.960000pt;}
.y6f{bottom:1027.680000pt;}
.y33{bottom:1033.760000pt;}
.y1{bottom:1051.680000pt;}
.y32{bottom:1061.280000pt;}
.he{height:5.920000pt;}
.hd{height:18.720000pt;}
.h10{height:18.752000pt;}
.hc{height:19.680000pt;}
.h16{height:20.000000pt;}
.h17{height:20.960000pt;}
.h1a{height:26.240000pt;}
.h19{height:27.040000pt;}
.h7{height:34.374375pt;}
.h12{height:37.440000pt;}
.h9{height:40.514375pt;}
.hb{height:40.566250pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h13{height:56.160000pt;}
.h14{height:56.192000pt;}
.h3{height:58.563750pt;}
.h1b{height:58.720000pt;}
.h15{height:59.680000pt;}
.h6{height:60.288750pt;}
.hf{height:60.519362pt;}
.h4{height:87.156562pt;}
.h11{height:93.600000pt;}
.h18{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:21.120000pt;}
.w9{width:62.400000pt;}
.we{width:65.632000pt;}
.w8{width:77.632000pt;}
.wf{width:85.440000pt;}
.w14{width:90.880000pt;}
.w15{width:90.912000pt;}
.w17{width:91.040000pt;}
.w16{width:91.360000pt;}
.w1d{width:99.040000pt;}
.w1e{width:99.072000pt;}
.w1c{width:99.392000pt;}
.w4{width:109.920000pt;}
.w5{width:116.672000pt;}
.w19{width:121.632000pt;}
.w12{width:130.752000pt;}
.w1b{width:140.986667pt;}
.w10{width:146.906667pt;}
.wa{width:179.226667pt;}
.w7{width:214.426667pt;}
.wc{width:234.106667pt;}
.w3{width:280.866667pt;}
.wd{width:293.786667pt;}
.w11{width:297.986667pt;}
.wb{width:299.586667pt;}
.w13{width:455.133333pt;}
.w1a{width:537.533333pt;}
.w1f{width:659.173333pt;}
.w18{width:676.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.xb{left:9.600000pt;}
.x1{left:47.999988pt;}
.x11{left:55.194667pt;}
.x21{left:57.599988pt;}
.x16{left:58.560000pt;}
.x5{left:62.719988pt;}
.x1d{left:67.360000pt;}
.x22{left:71.999988pt;}
.x4{left:81.279988pt;}
.x3{left:88.031988pt;}
.x2{left:96.031988pt;}
.x12{left:100.992000pt;}
.xc{left:129.632000pt;}
.x6{left:143.226667pt;}
.x17{left:189.306667pt;}
.x19{left:280.226667pt;}
.x1e{left:329.986667pt;}
.xd{left:344.066667pt;}
.x1a{left:371.586667pt;}
.x13{left:394.786667pt;}
.xe{left:421.693333pt;}
.x8{left:424.093333pt;}
.x10{left:429.213333pt;}
.x14{left:460.413333pt;}
.x1b{left:462.493333pt;}
.xf{left:484.093333pt;}
.x1f{left:528.413333pt;}
.x9{left:534.013333pt;}
.x15{left:545.853333pt;}
.x1c{left:553.533333pt;}
.xa{left:605.413333pt;}
.x20{left:627.493333pt;}
.x18{left:644.453333pt;}
.x23{left:746.053322pt;}
}




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