
    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_1f540542f3356f2b7409031f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_98b677e8ba4e27072b4c6392.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_813b464fd7b25b7a0a86761c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d077c22e862313874a0bd123.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_9742fb93b4839b69c8c3ec74.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854492;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_803bfc3be82b3f175dafca02.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_2fd58b2252695e45597cc280.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_22d7a5bc2f8a4d48720414c5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.152359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152359,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-2.346000px;}
.lse{letter-spacing:-2.332495px;}
.ls2{letter-spacing:-0.495600px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270600px;}
.ls8{letter-spacing:-0.240000px;}
.ls1f{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.148800px;}
.lsa{letter-spacing:-0.094800px;}
.ls4{letter-spacing:-0.046800px;}
.lsc{letter-spacing:-0.038880px;}
.ls5{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.010800px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls1e{letter-spacing:0.126600px;}
.ls19{letter-spacing:0.126720px;}
.ls11{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.190800px;}
.ls1a{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.328200px;}
.ls1c{letter-spacing:0.348000px;}
.lsb{letter-spacing:0.357000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.366000px;}
.ls17{letter-spacing:0.388080px;}
.ls15{letter-spacing:0.459600px;}
.ls14{letter-spacing:0.532800px;}
.ls13{letter-spacing:0.708000px;}
.ls1d{letter-spacing:0.732000px;}
.ls12{letter-spacing:2.692800px;}
.ls18{letter-spacing:22.986720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-16.028825px;}
.ws11{word-spacing:-13.879200px;}
.ws10{word-spacing:-13.513200px;}
.ws8{word-spacing:-13.504200px;}
.wse{word-spacing:-13.279800px;}
.ws12{word-spacing:-13.273800px;}
.wsf{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.108320px;}
.ws2{word-spacing:-13.100400px;}
.ws1{word-spacing:-12.998400px;}
.ws13{word-spacing:-12.940800px;}
.ws0{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.342200px;}
.ws7{word-spacing:-9.092400px;}
.ws3{word-spacing:-7.884000px;}
.ws4{word-spacing:-7.632000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:58.269626px;}
.wsa{word-spacing:139.433085px;}
._34{margin-left:-9.547200px;}
._24{margin-left:-5.387951px;}
._2f{margin-left:-4.292747px;}
._8{margin-left:-2.629440px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.139840px;}
._19{width:3.241440px;}
._7{width:4.541760px;}
._17{width:5.542800px;}
._f{width:6.700560px;}
._c{width:7.768800px;}
._10{width:9.005280px;}
._16{width:10.058160px;}
._5{width:11.286000px;}
._1c{width:13.170000px;}
._20{width:14.334720px;}
._1a{width:15.597360px;}
._11{width:16.912080px;}
._1e{width:18.630480px;}
._15{width:19.720800px;}
._b{width:21.274560px;}
._21{width:22.970400px;}
._d{width:24.210240px;}
._e{width:25.689360px;}
._18{width:26.712720px;}
._14{width:28.632480px;}
._35{width:29.999520px;}
._33{width:31.671120px;}
._23{width:33.293760px;}
._22{width:34.362000px;}
._1b{width:35.815200px;}
._32{width:38.970960px;}
._1f{width:40.098960px;}
._31{width:41.158320px;}
._30{width:42.513120px;}
._9{width:44.887200px;}
._a{width:46.493280px;}
._12{width:52.656000px;}
._13{width:53.843760px;}
._36{width:65.437200px;}
._0{width:75.000000px;}
._2d{width:78.129752px;}
._2c{width:79.302635px;}
._27{width:87.223679px;}
._26{width:91.069756px;}
._28{width:103.751281px;}
._2a{width:104.871878px;}
._3{width:181.620000px;}
._6{width:200.280000px;}
._25{width:448.645499px;}
._29{width:483.098358px;}
._2e{width:500.090466px;}
._2b{width:567.856647px;}
._1d{width:1070.092200px;}
.fc3{color:rgb(47,85,151);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsa{font-size:64.115300px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:5.343066px;}
.y90{bottom:9.659769px;}
.y8e{bottom:20.310267px;}
.y8b{bottom:26.750641px;}
.y55{bottom:32.760000px;}
.y54{bottom:46.080000px;}
.y8a{bottom:48.157792px;}
.y7{bottom:56.520000px;}
.y53{bottom:56.700000px;}
.y52{bottom:67.320000px;}
.y89{bottom:69.529558px;}
.y6{bottom:70.596000px;}
.y51{bottom:84.780000px;}
.y88{bottom:90.936694px;}
.y100{bottom:110.196000px;}
.yfa{bottom:113.256000px;}
.ycd{bottom:114.696000px;}
.y40{bottom:121.896000px;}
.y137{bottom:122.256000px;}
.yff{bottom:127.656000px;}
.yf9{bottom:130.896000px;}
.ycc{bottom:132.156000px;}
.y50{bottom:137.880000px;}
.y3f{bottom:139.356000px;}
.y84{bottom:139.896000px;}
.yfe{bottom:145.296000px;}
.yf8{bottom:148.356000px;}
.ycb{bottom:149.796000px;}
.y4f{bottom:151.920000px;}
.y3e{bottom:156.990000px;}
.y83{bottom:157.350000px;}
.yfd{bottom:162.930000px;}
.y4e{bottom:165.960000px;}
.yf7{bottom:165.990000px;}
.yca{bottom:167.430000px;}
.y3d{bottom:174.630000px;}
.y82{bottom:174.990000px;}
.y4d{bottom:180.000000px;}
.yfc{bottom:180.570000px;}
.yf6{bottom:183.630000px;}
.yc9{bottom:185.070000px;}
.y3c{bottom:192.270000px;}
.y81{bottom:192.630000px;}
.y4c{bottom:194.040000px;}
.yfb{bottom:198.030000px;}
.yf5{bottom:201.270000px;}
.yc8{bottom:202.530000px;}
.y4b{bottom:208.080000px;}
.y3b{bottom:209.730000px;}
.y80{bottom:210.270000px;}
.y112{bottom:215.670000px;}
.yf4{bottom:218.730000px;}
.yc7{bottom:220.170000px;}
.y4a{bottom:222.120000px;}
.y3a{bottom:227.370000px;}
.y7f{bottom:227.730000px;}
.y111{bottom:233.310000px;}
.y49{bottom:234.900000px;}
.yf3{bottom:236.370000px;}
.yc6{bottom:237.810000px;}
.y48{bottom:243.360000px;}
.y39{bottom:245.010000px;}
.y7e{bottom:245.370000px;}
.y110{bottom:250.770000px;}
.yf2{bottom:254.010000px;}
.y132{bottom:255.270000px;}
.y47{bottom:257.445000px;}
.yc5{bottom:259.770000px;}
.y38{bottom:262.470000px;}
.y7d{bottom:263.010000px;}
.y10f{bottom:268.410000px;}
.yf1{bottom:271.470000px;}
.y46{bottom:271.485000px;}
.y131{bottom:272.910000px;}
.yc4{bottom:277.410000px;}
.y37{bottom:280.110000px;}
.y7c{bottom:280.470000px;}
.y45{bottom:285.525000px;}
.y10e{bottom:286.050000px;}
.yf0{bottom:289.110000px;}
.y130{bottom:290.550000px;}
.yc3{bottom:295.050000px;}
.y36{bottom:297.750000px;}
.y7b{bottom:298.110000px;}
.y44{bottom:299.565000px;}
.y10d{bottom:303.510000px;}
.yef{bottom:306.750000px;}
.y12f{bottom:308.010000px;}
.y43{bottom:312.165000px;}
.yc2{bottom:312.510000px;}
.y35{bottom:315.210000px;}
.y7a{bottom:315.750000px;}
.y10c{bottom:321.150000px;}
.y42{bottom:323.325000px;}
.yee{bottom:324.210000px;}
.y12e{bottom:325.650000px;}
.yc1{bottom:330.150000px;}
.y34{bottom:332.850000px;}
.y79{bottom:333.210000px;}
.y10b{bottom:338.835000px;}
.yed{bottom:341.895000px;}
.y12d{bottom:343.335000px;}
.yc0{bottom:347.835000px;}
.y33{bottom:350.535000px;}
.y78{bottom:350.895000px;}
.y10a{bottom:356.295000px;}
.yec{bottom:359.535000px;}
.y12c{bottom:360.795000px;}
.ybf{bottom:365.295000px;}
.y32{bottom:368.175000px;}
.y77{bottom:368.535000px;}
.y109{bottom:373.935000px;}
.yeb{bottom:377.175000px;}
.y12b{bottom:378.435000px;}
.ybe{bottom:382.935000px;}
.y31{bottom:385.635000px;}
.y76{bottom:386.175000px;}
.y108{bottom:391.575000px;}
.yea{bottom:394.635000px;}
.y12a{bottom:396.075000px;}
.ybd{bottom:400.575000px;}
.y30{bottom:403.275000px;}
.y75{bottom:403.635000px;}
.y107{bottom:409.215000px;}
.ye9{bottom:412.275000px;}
.y129{bottom:413.715000px;}
.ybc{bottom:418.215000px;}
.y2f{bottom:420.915000px;}
.y74{bottom:421.275000px;}
.y106{bottom:426.675000px;}
.ye8{bottom:429.915000px;}
.y128{bottom:431.175000px;}
.ybb{bottom:435.675000px;}
.y2e{bottom:438.375000px;}
.y73{bottom:438.915000px;}
.y105{bottom:444.315000px;}
.ye7{bottom:447.375000px;}
.y127{bottom:448.815000px;}
.yba{bottom:453.315000px;}
.y2d{bottom:456.015000px;}
.y72{bottom:456.375000px;}
.y104{bottom:461.955000px;}
.ye6{bottom:465.015000px;}
.y126{bottom:466.455000px;}
.yb9{bottom:470.955000px;}
.y2c{bottom:473.655000px;}
.y71{bottom:474.015000px;}
.ye5{bottom:482.655000px;}
.y103{bottom:483.915000px;}
.yb8{bottom:488.415000px;}
.y70{bottom:491.655000px;}
.y2b{bottom:493.095000px;}
.ye4{bottom:500.115000px;}
.y102{bottom:501.555000px;}
.yb7{bottom:506.055000px;}
.y6f{bottom:509.115000px;}
.y2a{bottom:509.295000px;}
.ye3{bottom:517.755000px;}
.y125{bottom:519.195000px;}
.y101{bottom:523.515000px;}
.yb6{bottom:523.695000px;}
.y6e{bottom:526.755000px;}
.y29{bottom:526.935000px;}
.ye2{bottom:535.395000px;}
.y124{bottom:536.655000px;}
.yb5{bottom:541.155000px;}
.y28{bottom:544.395000px;}
.ye1{bottom:552.855000px;}
.y123{bottom:554.295000px;}
.yb4{bottom:558.795000px;}
.y6d{bottom:561.855000px;}
.y27{bottom:562.035000px;}
.y135{bottom:570.495000px;}
.y122{bottom:571.935000px;}
.ye0{bottom:574.995000px;}
.yb3{bottom:576.435000px;}
.y6c{bottom:579.495000px;}
.y26{bottom:579.675000px;}
.y134{bottom:588.135000px;}
.y121{bottom:589.575000px;}
.ydf{bottom:592.635000px;}
.y136{bottom:593.895000px;}
.yb2{bottom:594.075000px;}
.y25{bottom:597.135000px;}
.y120{bottom:607.065000px;}
.y133{bottom:610.125000px;}
.yde{bottom:610.305000px;}
.yb1{bottom:611.565000px;}
.y24{bottom:614.805000px;}
.y41{bottom:622.725000px;}
.y11f{bottom:624.705000px;}
.ydd{bottom:627.765000px;}
.yb0{bottom:629.205000px;}
.y6b{bottom:632.265000px;}
.y23{bottom:632.445000px;}
.y11e{bottom:642.345000px;}
.ydc{bottom:645.405000px;}
.yaf{bottom:646.845000px;}
.y22{bottom:649.905000px;}
.y11d{bottom:659.805000px;}
.ydb{bottom:663.045000px;}
.yae{bottom:664.305000px;}
.y21{bottom:667.545000px;}
.y11c{bottom:677.445000px;}
.yda{bottom:680.505000px;}
.yad{bottom:681.945000px;}
.y6a{bottom:685.005000px;}
.y20{bottom:685.185000px;}
.y11b{bottom:695.085000px;}
.yd9{bottom:698.145000px;}
.yac{bottom:699.585000px;}
.y69{bottom:702.645000px;}
.y1f{bottom:702.825000px;}
.y11a{bottom:712.545000px;}
.yd8{bottom:715.785000px;}
.yab{bottom:717.045000px;}
.y1e{bottom:720.285000px;}
.y119{bottom:730.185000px;}
.yd7{bottom:733.245000px;}
.yaa{bottom:734.685000px;}
.y68{bottom:737.745000px;}
.y1d{bottom:737.925000px;}
.y118{bottom:747.825000px;}
.yd6{bottom:750.885000px;}
.ya9{bottom:752.325000px;}
.y67{bottom:755.385000px;}
.y1c{bottom:755.565000px;}
.y87{bottom:759.396527px;}
.y117{bottom:765.465000px;}
.yd5{bottom:768.525000px;}
.ya8{bottom:769.965000px;}
.y1b{bottom:773.025000px;}
.y116{bottom:782.925000px;}
.yd4{bottom:786.165000px;}
.ya7{bottom:787.425000px;}
.y1a{bottom:790.665000px;}
.y115{bottom:800.565000px;}
.yd3{bottom:803.625000px;}
.ya6{bottom:805.065000px;}
.y66{bottom:808.125000px;}
.y19{bottom:808.305000px;}
.y114{bottom:818.205000px;}
.yd2{bottom:821.265000px;}
.ya5{bottom:822.705000px;}
.y18{bottom:825.765000px;}
.y113{bottom:835.665000px;}
.yd1{bottom:838.905000px;}
.ya4{bottom:840.165000px;}
.y17{bottom:843.405000px;}
.y8d{bottom:846.051792px;}
.yd0{bottom:856.365000px;}
.ya3{bottom:857.805000px;}
.y65{bottom:860.865000px;}
.y16{bottom:861.045000px;}
.y92{bottom:867.423491px;}
.y91{bottom:867.423514px;}
.y8f{bottom:867.423536px;}
.ycf{bottom:874.050000px;}
.ya2{bottom:875.490000px;}
.y15{bottom:878.550000px;}
.ya1{bottom:892.950000px;}
.yce{bottom:896.010000px;}
.y14{bottom:896.190000px;}
.ya0{bottom:910.590000px;}
.y64{bottom:913.650000px;}
.y13{bottom:913.830000px;}
.y9f{bottom:928.230000px;}
.y63{bottom:931.290000px;}
.y12{bottom:931.470000px;}
.y9e{bottom:945.690000px;}
.y11{bottom:948.930000px;}
.y9d{bottom:963.330000px;}
.y10{bottom:966.210000px;}
.y62{bottom:966.570000px;}
.y9c{bottom:980.970000px;}
.yf{bottom:981.690000px;}
.y61{bottom:984.030000px;}
.ye{bottom:996.090000px;}
.y9b{bottom:998.610000px;}
.y60{bottom:1001.670000px;}
.yd{bottom:1012.470000px;}
.y9a{bottom:1016.070000px;}
.y5f{bottom:1019.310000px;}
.yc{bottom:1031.010000px;}
.y99{bottom:1033.710000px;}
.y5e{bottom:1036.770000px;}
.yb{bottom:1046.670000px;}
.y98{bottom:1051.350000px;}
.y5d{bottom:1054.410000px;}
.y97{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5c{bottom:1072.050000px;}
.y96{bottom:1086.450000px;}
.y5b{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.y95{bottom:1104.090000px;}
.y5a{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y94{bottom:1121.550000px;}
.y59{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y93{bottom:1139.220000px;}
.y58{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y86{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y57{bottom:1175.220000px;}
.y85{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y56{bottom:1197.540000px;}
.he{height:20.117109px;}
.h15{height:28.908521px;}
.hf{height:30.480469px;}
.h2{height:36.336094px;}
.h3{height:38.100586px;}
.h7{height:40.843828px;}
.h4{height:41.974453px;}
.h13{height:44.768007px;}
.hb{height:45.720703px;}
.h9{height:46.986328px;}
.h10{height:50.273438px;}
.h14{height:50.280279px;}
.hc{height:50.597578px;}
.h5{height:51.998203px;}
.h8{height:56.084062px;}
.h11{height:58.819922px;}
.ha{height:62.648438px;}
.h6{height:65.837812px;}
.h12{height:136.935076px;}
.hd{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:97.789170px;}
.w6{width:165.138363px;}
.w7{width:165.164240px;}
.w3{width:221.970000px;}
.w4{width:595.817835px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.293855px;}
.x10{left:9.725440px;}
.x14{left:60.871321px;}
.x12{left:66.055346px;}
.x16{left:69.315847px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.xe{left:110.106620px;}
.x4{left:121.895987px;}
.x18{left:127.655987px;}
.xb{left:134.994000px;}
.x3{left:137.555987px;}
.xd{left:147.811915px;}
.xa{left:159.509987px;}
.x5{left:212.069987px;}
.x6{left:226.649987px;}
.x17{left:236.549987px;}
.x7{left:241.049987px;}
.x11{left:246.248006px;}
.x9{left:342.614987px;}
.x13{left:412.041918px;}
.x8{left:446.654987px;}
.xc{left:552.704987px;}
.x15{left:577.818577px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-2.085333pt;}
.lse{letter-spacing:-2.073329pt;}
.ls2{letter-spacing:-0.440533pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240533pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.132267pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls4{letter-spacing:-0.041600pt;}
.lsc{letter-spacing:-0.034560pt;}
.ls5{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls1e{letter-spacing:0.112533pt;}
.ls19{letter-spacing:0.112640pt;}
.ls11{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.169600pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.291733pt;}
.ls1c{letter-spacing:0.309333pt;}
.lsb{letter-spacing:0.317333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.325333pt;}
.ls17{letter-spacing:0.344960pt;}
.ls15{letter-spacing:0.408533pt;}
.ls14{letter-spacing:0.473600pt;}
.ls13{letter-spacing:0.629333pt;}
.ls1d{letter-spacing:0.650667pt;}
.ls12{letter-spacing:2.393600pt;}
.ls18{letter-spacing:20.432640pt;}
.wsc{word-spacing:-14.247844pt;}
.ws11{word-spacing:-12.337067pt;}
.ws10{word-spacing:-12.011733pt;}
.ws8{word-spacing:-12.003733pt;}
.wse{word-spacing:-11.804267pt;}
.ws12{word-spacing:-11.798933pt;}
.wsf{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.651840pt;}
.ws2{word-spacing:-11.644800pt;}
.ws1{word-spacing:-11.554133pt;}
.ws13{word-spacing:-11.502933pt;}
.ws0{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.193067pt;}
.ws7{word-spacing:-8.082133pt;}
.ws3{word-spacing:-7.008000pt;}
.ws4{word-spacing:-6.784000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:51.795223pt;}
.wsa{word-spacing:123.940520pt;}
._34{margin-left:-8.486400pt;}
._24{margin-left:-4.789290pt;}
._2f{margin-left:-3.815775pt;}
._8{margin-left:-2.337280pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:1.902080pt;}
._19{width:2.881280pt;}
._7{width:4.037120pt;}
._17{width:4.926933pt;}
._f{width:5.956053pt;}
._c{width:6.905600pt;}
._10{width:8.004693pt;}
._16{width:8.940587pt;}
._5{width:10.032000pt;}
._1c{width:11.706667pt;}
._20{width:12.741973pt;}
._1a{width:13.864320pt;}
._11{width:15.032960pt;}
._1e{width:16.560427pt;}
._15{width:17.529600pt;}
._b{width:18.910720pt;}
._21{width:20.418133pt;}
._d{width:21.520213pt;}
._e{width:22.834987pt;}
._18{width:23.744640pt;}
._14{width:25.451093pt;}
._35{width:26.666240pt;}
._33{width:28.152107pt;}
._23{width:29.594453pt;}
._22{width:30.544000pt;}
._1b{width:31.835733pt;}
._32{width:34.640853pt;}
._1f{width:35.643520pt;}
._31{width:36.585173pt;}
._30{width:37.789440pt;}
._9{width:39.899733pt;}
._a{width:41.327360pt;}
._12{width:46.805333pt;}
._13{width:47.861120pt;}
._36{width:58.166400pt;}
._0{width:66.666667pt;}
._2d{width:69.448668pt;}
._2c{width:70.491231pt;}
._27{width:77.532159pt;}
._26{width:80.950894pt;}
._28{width:92.223361pt;}
._2a{width:93.219447pt;}
._3{width:161.440000pt;}
._6{width:178.026667pt;}
._25{width:398.795999pt;}
._29{width:429.420763pt;}
._2e{width:444.524858pt;}
._2b{width:504.761464pt;}
._1d{width:951.193067pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsa{font-size:56.991378pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:4.749392pt;}
.y90{bottom:8.586461pt;}
.y8e{bottom:18.053571pt;}
.y8b{bottom:23.778348pt;}
.y55{bottom:29.120000pt;}
.y54{bottom:40.960000pt;}
.y8a{bottom:42.806926pt;}
.y7{bottom:50.240000pt;}
.y53{bottom:50.400000pt;}
.y52{bottom:59.840000pt;}
.y89{bottom:61.804052pt;}
.y6{bottom:62.752000pt;}
.y51{bottom:75.360000pt;}
.y88{bottom:80.832617pt;}
.y100{bottom:97.952000pt;}
.yfa{bottom:100.672000pt;}
.ycd{bottom:101.952000pt;}
.y40{bottom:108.352000pt;}
.y137{bottom:108.672000pt;}
.yff{bottom:113.472000pt;}
.yf9{bottom:116.352000pt;}
.ycc{bottom:117.472000pt;}
.y50{bottom:122.560000pt;}
.y3f{bottom:123.872000pt;}
.y84{bottom:124.352000pt;}
.yfe{bottom:129.152000pt;}
.yf8{bottom:131.872000pt;}
.ycb{bottom:133.152000pt;}
.y4f{bottom:135.040000pt;}
.y3e{bottom:139.546667pt;}
.y83{bottom:139.866667pt;}
.yfd{bottom:144.826667pt;}
.y4e{bottom:147.520000pt;}
.yf7{bottom:147.546667pt;}
.yca{bottom:148.826667pt;}
.y3d{bottom:155.226667pt;}
.y82{bottom:155.546667pt;}
.y4d{bottom:160.000000pt;}
.yfc{bottom:160.506667pt;}
.yf6{bottom:163.226667pt;}
.yc9{bottom:164.506667pt;}
.y3c{bottom:170.906667pt;}
.y81{bottom:171.226667pt;}
.y4c{bottom:172.480000pt;}
.yfb{bottom:176.026667pt;}
.yf5{bottom:178.906667pt;}
.yc8{bottom:180.026667pt;}
.y4b{bottom:184.960000pt;}
.y3b{bottom:186.426667pt;}
.y80{bottom:186.906667pt;}
.y112{bottom:191.706667pt;}
.yf4{bottom:194.426667pt;}
.yc7{bottom:195.706667pt;}
.y4a{bottom:197.440000pt;}
.y3a{bottom:202.106667pt;}
.y7f{bottom:202.426667pt;}
.y111{bottom:207.386667pt;}
.y49{bottom:208.800000pt;}
.yf3{bottom:210.106667pt;}
.yc6{bottom:211.386667pt;}
.y48{bottom:216.320000pt;}
.y39{bottom:217.786667pt;}
.y7e{bottom:218.106667pt;}
.y110{bottom:222.906667pt;}
.yf2{bottom:225.786667pt;}
.y132{bottom:226.906667pt;}
.y47{bottom:228.840000pt;}
.yc5{bottom:230.906667pt;}
.y38{bottom:233.306667pt;}
.y7d{bottom:233.786667pt;}
.y10f{bottom:238.586667pt;}
.yf1{bottom:241.306667pt;}
.y46{bottom:241.320000pt;}
.y131{bottom:242.586667pt;}
.yc4{bottom:246.586667pt;}
.y37{bottom:248.986667pt;}
.y7c{bottom:249.306667pt;}
.y45{bottom:253.800000pt;}
.y10e{bottom:254.266667pt;}
.yf0{bottom:256.986667pt;}
.y130{bottom:258.266667pt;}
.yc3{bottom:262.266667pt;}
.y36{bottom:264.666667pt;}
.y7b{bottom:264.986667pt;}
.y44{bottom:266.280000pt;}
.y10d{bottom:269.786667pt;}
.yef{bottom:272.666667pt;}
.y12f{bottom:273.786667pt;}
.y43{bottom:277.480000pt;}
.yc2{bottom:277.786667pt;}
.y35{bottom:280.186667pt;}
.y7a{bottom:280.666667pt;}
.y10c{bottom:285.466667pt;}
.y42{bottom:287.400000pt;}
.yee{bottom:288.186667pt;}
.y12e{bottom:289.466667pt;}
.yc1{bottom:293.466667pt;}
.y34{bottom:295.866667pt;}
.y79{bottom:296.186667pt;}
.y10b{bottom:301.186667pt;}
.yed{bottom:303.906667pt;}
.y12d{bottom:305.186667pt;}
.yc0{bottom:309.186667pt;}
.y33{bottom:311.586667pt;}
.y78{bottom:311.906667pt;}
.y10a{bottom:316.706667pt;}
.yec{bottom:319.586667pt;}
.y12c{bottom:320.706667pt;}
.ybf{bottom:324.706667pt;}
.y32{bottom:327.266667pt;}
.y77{bottom:327.586667pt;}
.y109{bottom:332.386667pt;}
.yeb{bottom:335.266667pt;}
.y12b{bottom:336.386667pt;}
.ybe{bottom:340.386667pt;}
.y31{bottom:342.786667pt;}
.y76{bottom:343.266667pt;}
.y108{bottom:348.066667pt;}
.yea{bottom:350.786667pt;}
.y12a{bottom:352.066667pt;}
.ybd{bottom:356.066667pt;}
.y30{bottom:358.466667pt;}
.y75{bottom:358.786667pt;}
.y107{bottom:363.746667pt;}
.ye9{bottom:366.466667pt;}
.y129{bottom:367.746667pt;}
.ybc{bottom:371.746667pt;}
.y2f{bottom:374.146667pt;}
.y74{bottom:374.466667pt;}
.y106{bottom:379.266667pt;}
.ye8{bottom:382.146667pt;}
.y128{bottom:383.266667pt;}
.ybb{bottom:387.266667pt;}
.y2e{bottom:389.666667pt;}
.y73{bottom:390.146667pt;}
.y105{bottom:394.946667pt;}
.ye7{bottom:397.666667pt;}
.y127{bottom:398.946667pt;}
.yba{bottom:402.946667pt;}
.y2d{bottom:405.346667pt;}
.y72{bottom:405.666667pt;}
.y104{bottom:410.626667pt;}
.ye6{bottom:413.346667pt;}
.y126{bottom:414.626667pt;}
.yb9{bottom:418.626667pt;}
.y2c{bottom:421.026667pt;}
.y71{bottom:421.346667pt;}
.ye5{bottom:429.026667pt;}
.y103{bottom:430.146667pt;}
.yb8{bottom:434.146667pt;}
.y70{bottom:437.026667pt;}
.y2b{bottom:438.306667pt;}
.ye4{bottom:444.546667pt;}
.y102{bottom:445.826667pt;}
.yb7{bottom:449.826667pt;}
.y6f{bottom:452.546667pt;}
.y2a{bottom:452.706667pt;}
.ye3{bottom:460.226667pt;}
.y125{bottom:461.506667pt;}
.y101{bottom:465.346667pt;}
.yb6{bottom:465.506667pt;}
.y6e{bottom:468.226667pt;}
.y29{bottom:468.386667pt;}
.ye2{bottom:475.906667pt;}
.y124{bottom:477.026667pt;}
.yb5{bottom:481.026667pt;}
.y28{bottom:483.906667pt;}
.ye1{bottom:491.426667pt;}
.y123{bottom:492.706667pt;}
.yb4{bottom:496.706667pt;}
.y6d{bottom:499.426667pt;}
.y27{bottom:499.586667pt;}
.y135{bottom:507.106667pt;}
.y122{bottom:508.386667pt;}
.ye0{bottom:511.106667pt;}
.yb3{bottom:512.386667pt;}
.y6c{bottom:515.106667pt;}
.y26{bottom:515.266667pt;}
.y134{bottom:522.786667pt;}
.y121{bottom:524.066667pt;}
.ydf{bottom:526.786667pt;}
.y136{bottom:527.906667pt;}
.yb2{bottom:528.066667pt;}
.y25{bottom:530.786667pt;}
.y120{bottom:539.613333pt;}
.y133{bottom:542.333333pt;}
.yde{bottom:542.493333pt;}
.yb1{bottom:543.613333pt;}
.y24{bottom:546.493333pt;}
.y41{bottom:553.533333pt;}
.y11f{bottom:555.293333pt;}
.ydd{bottom:558.013333pt;}
.yb0{bottom:559.293333pt;}
.y6b{bottom:562.013333pt;}
.y23{bottom:562.173333pt;}
.y11e{bottom:570.973333pt;}
.ydc{bottom:573.693333pt;}
.yaf{bottom:574.973333pt;}
.y22{bottom:577.693333pt;}
.y11d{bottom:586.493333pt;}
.ydb{bottom:589.373333pt;}
.yae{bottom:590.493333pt;}
.y21{bottom:593.373333pt;}
.y11c{bottom:602.173333pt;}
.yda{bottom:604.893333pt;}
.yad{bottom:606.173333pt;}
.y6a{bottom:608.893333pt;}
.y20{bottom:609.053333pt;}
.y11b{bottom:617.853333pt;}
.yd9{bottom:620.573333pt;}
.yac{bottom:621.853333pt;}
.y69{bottom:624.573333pt;}
.y1f{bottom:624.733333pt;}
.y11a{bottom:633.373333pt;}
.yd8{bottom:636.253333pt;}
.yab{bottom:637.373333pt;}
.y1e{bottom:640.253333pt;}
.y119{bottom:649.053333pt;}
.yd7{bottom:651.773333pt;}
.yaa{bottom:653.053333pt;}
.y68{bottom:655.773333pt;}
.y1d{bottom:655.933333pt;}
.y118{bottom:664.733333pt;}
.yd6{bottom:667.453333pt;}
.ya9{bottom:668.733333pt;}
.y67{bottom:671.453333pt;}
.y1c{bottom:671.613333pt;}
.y87{bottom:675.019135pt;}
.y117{bottom:680.413333pt;}
.yd5{bottom:683.133333pt;}
.ya8{bottom:684.413333pt;}
.y1b{bottom:687.133333pt;}
.y116{bottom:695.933333pt;}
.yd4{bottom:698.813333pt;}
.ya7{bottom:699.933333pt;}
.y1a{bottom:702.813333pt;}
.y115{bottom:711.613333pt;}
.yd3{bottom:714.333333pt;}
.ya6{bottom:715.613333pt;}
.y66{bottom:718.333333pt;}
.y19{bottom:718.493333pt;}
.y114{bottom:727.293333pt;}
.yd2{bottom:730.013333pt;}
.ya5{bottom:731.293333pt;}
.y18{bottom:734.013333pt;}
.y113{bottom:742.813333pt;}
.yd1{bottom:745.693333pt;}
.ya4{bottom:746.813333pt;}
.y17{bottom:749.693333pt;}
.y8d{bottom:752.046038pt;}
.yd0{bottom:761.213333pt;}
.ya3{bottom:762.493333pt;}
.y65{bottom:765.213333pt;}
.y16{bottom:765.373333pt;}
.y92{bottom:771.043103pt;}
.y91{bottom:771.043123pt;}
.y8f{bottom:771.043143pt;}
.ycf{bottom:776.933333pt;}
.ya2{bottom:778.213333pt;}
.y15{bottom:780.933333pt;}
.ya1{bottom:793.733333pt;}
.yce{bottom:796.453333pt;}
.y14{bottom:796.613333pt;}
.ya0{bottom:809.413333pt;}
.y64{bottom:812.133333pt;}
.y13{bottom:812.293333pt;}
.y9f{bottom:825.093333pt;}
.y63{bottom:827.813333pt;}
.y12{bottom:827.973333pt;}
.y9e{bottom:840.613333pt;}
.y11{bottom:843.493333pt;}
.y9d{bottom:856.293333pt;}
.y10{bottom:858.853333pt;}
.y62{bottom:859.173333pt;}
.y9c{bottom:871.973333pt;}
.yf{bottom:872.613333pt;}
.y61{bottom:874.693333pt;}
.ye{bottom:885.413333pt;}
.y9b{bottom:887.653333pt;}
.y60{bottom:890.373333pt;}
.yd{bottom:899.973333pt;}
.y9a{bottom:903.173333pt;}
.y5f{bottom:906.053333pt;}
.yc{bottom:916.453333pt;}
.y99{bottom:918.853333pt;}
.y5e{bottom:921.573333pt;}
.yb{bottom:930.373333pt;}
.y98{bottom:934.533333pt;}
.y5d{bottom:937.253333pt;}
.y97{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5c{bottom:952.933333pt;}
.y96{bottom:965.733333pt;}
.y5b{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.y95{bottom:981.413333pt;}
.y5a{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y94{bottom:996.933333pt;}
.y59{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y93{bottom:1012.640000pt;}
.y58{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y86{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y57{bottom:1044.640000pt;}
.y85{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y56{bottom:1064.480000pt;}
.he{height:17.881875pt;}
.h15{height:25.696463pt;}
.hf{height:27.093750pt;}
.h2{height:32.298750pt;}
.h3{height:33.867188pt;}
.h7{height:36.305625pt;}
.h4{height:37.310625pt;}
.h13{height:39.793784pt;}
.hb{height:40.640625pt;}
.h9{height:41.765625pt;}
.h10{height:44.687500pt;}
.h14{height:44.693581pt;}
.hc{height:44.975625pt;}
.h5{height:46.220625pt;}
.h8{height:49.852500pt;}
.h11{height:52.284375pt;}
.ha{height:55.687500pt;}
.h6{height:58.522500pt;}
.h12{height:121.720067pt;}
.hd{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:86.923707pt;}
.w6{width:146.789656pt;}
.w7{width:146.812658pt;}
.w3{width:197.306667pt;}
.w4{width:529.615853pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.150093pt;}
.x10{left:8.644835pt;}
.x14{left:54.107841pt;}
.x12{left:58.715863pt;}
.x16{left:61.614086pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.xe{left:97.872551pt;}
.x4{left:108.351988pt;}
.x18{left:113.471988pt;}
.xb{left:119.994667pt;}
.x3{left:122.271988pt;}
.xd{left:131.388369pt;}
.xa{left:141.786655pt;}
.x5{left:188.506655pt;}
.x6{left:201.466655pt;}
.x17{left:210.266655pt;}
.x7{left:214.266655pt;}
.x11{left:218.887117pt;}
.x9{left:304.546655pt;}
.x13{left:366.259482pt;}
.x8{left:397.026655pt;}
.xc{left:491.293322pt;}
.x15{left:513.616513pt;}
}




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