
    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_138e3881a769daf89a3b3893.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957520;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_6135ae7b686e6603a31c3426.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2fcff13cbf6e0b082ef3d11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c4fc72bd39b24d5a1661743.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_722b2b82af2745652249f96d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f1412bc7453aec2d723d0935.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls8{letter-spacing:0.025920px;}
.ls16{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.144720px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:2.880000px;}
.ls18{letter-spacing:20.160000px;}
.lsc{letter-spacing:25.505280px;}
.lsd{letter-spacing:29.105280px;}
.ls13{letter-spacing:32.705280px;}
.ls15{letter-spacing:34.841280px;}
.lsb{letter-spacing:39.185280px;}
.ls12{letter-spacing:39.881280px;}
.lsf{letter-spacing:39.905280px;}
.lse{letter-spacing:104.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.wsf{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.407600px;}
.ws9{word-spacing:-16.297800px;}
.ws8{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.145400px;}
.wse{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._27{margin-left:-5.477760px;}
._7{margin-left:-4.193280px;}
._2{margin-left:-2.201040px;}
._0{margin-left:-1.170720px;}
._1{width:1.135440px;}
._3{width:2.450160px;}
._4{width:3.525840px;}
._6{width:4.658640px;}
._b{width:5.926800px;}
._f{width:7.076400px;}
._9{width:8.127360px;}
._8{width:9.501840px;}
._10{width:10.929600px;}
._e{width:11.989440px;}
._c{width:13.744800px;}
._13{width:15.508080px;}
._5{width:17.928000px;}
._a{width:19.302480px;}
._11{width:21.329280px;}
._12{width:22.389120px;}
._14{width:23.581440px;}
._15{width:24.840000px;}
._1a{width:25.899840px;}
._18{width:27.416880px;}
._19{width:28.818720px;}
._16{width:30.271680px;}
._17{width:31.716000px;}
._1e{width:33.186240px;}
._1f{width:34.556160px;}
._1b{width:36.034560px;}
._1c{width:37.705680px;}
._24{width:45.639360px;}
._25{width:47.442960px;}
._21{width:54.696000px;}
._23{width:71.256000px;}
._22{width:74.856000px;}
._1d{width:76.440960px;}
._d{width:102.288000px;}
._26{width:143.280000px;}
._20{width:182.856000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:6.300000px;}
.y96{bottom:6.480000px;}
.y105{bottom:6.525000px;}
.y2{bottom:6.840000px;}
.ybd{bottom:11.700000px;}
.y5{bottom:21.600000px;}
.ydf{bottom:28.080000px;}
.y147{bottom:28.110000px;}
.y143{bottom:28.260000px;}
.y4{bottom:40.860000px;}
.y149{bottom:49.860000px;}
.y6c{bottom:113.796000px;}
.y100{bottom:114.876000px;}
.y93{bottom:118.656000px;}
.yf8{bottom:121.356000px;}
.y141{bottom:121.716000px;}
.yc6{bottom:124.956000px;}
.y127{bottom:126.576000px;}
.ya7{bottom:131.796000px;}
.y3d{bottom:132.336000px;}
.y6b{bottom:135.576000px;}
.yff{bottom:136.656000px;}
.y92{bottom:140.436000px;}
.yf7{bottom:143.136000px;}
.y140{bottom:143.496000px;}
.yc5{bottom:146.736000px;}
.y13e{bottom:147.816000px;}
.y126{bottom:148.356000px;}
.y166{bottom:149.076000px;}
.y152{bottom:152.850000px;}
.ya6{bottom:153.570000px;}
.y3c{bottom:154.110000px;}
.y161{bottom:154.470000px;}
.yd3{bottom:156.630000px;}
.y6a{bottom:157.350000px;}
.yfe{bottom:158.430000px;}
.y13f{bottom:161.850000px;}
.y91{bottom:162.390000px;}
.yf6{bottom:165.090000px;}
.y165{bottom:165.270000px;}
.yc4{bottom:168.510000px;}
.y13d{bottom:169.590000px;}
.y125{bottom:170.130000px;}
.y151{bottom:174.630000px;}
.y80{bottom:175.350000px;}
.y3b{bottom:176.070000px;}
.y160{bottom:176.250000px;}
.yd2{bottom:178.590000px;}
.y69{bottom:179.130000px;}
.yfd{bottom:180.210000px;}
.y90{bottom:184.170000px;}
.yf5{bottom:186.870000px;}
.y164{bottom:187.950000px;}
.yc3{bottom:190.290000px;}
.y13c{bottom:191.370000px;}
.y124{bottom:192.090000px;}
.y150{bottom:196.590000px;}
.y7f{bottom:197.310000px;}
.y3a{bottom:197.850000px;}
.y15f{bottom:198.030000px;}
.yd1{bottom:200.370000px;}
.y68{bottom:201.090000px;}
.yfc{bottom:201.990000px;}
.y8f{bottom:205.950000px;}
.yf4{bottom:208.650000px;}
.y163{bottom:210.450000px;}
.yc2{bottom:212.250000px;}
.y13b{bottom:213.330000px;}
.y123{bottom:213.870000px;}
.y14f{bottom:218.370000px;}
.y7e{bottom:219.090000px;}
.y39{bottom:219.630000px;}
.y15e{bottom:219.990000px;}
.yd0{bottom:222.150000px;}
.y67{bottom:222.870000px;}
.yfb{bottom:223.950000px;}
.y8e{bottom:227.730000px;}
.y122{bottom:230.070000px;}
.yf3{bottom:230.430000px;}
.y162{bottom:233.130000px;}
.yc1{bottom:234.030000px;}
.y13a{bottom:235.110000px;}
.y38{bottom:237.630000px;}
.y14e{bottom:240.150000px;}
.y7d{bottom:240.870000px;}
.y15d{bottom:241.770000px;}
.ycf{bottom:243.930000px;}
.y66{bottom:244.650000px;}
.yfa{bottom:245.730000px;}
.y8d{bottom:249.510000px;}
.y37{bottom:251.490000px;}
.yf2{bottom:252.390000px;}
.y121{bottom:252.570000px;}
.yc0{bottom:255.810000px;}
.y139{bottom:256.890000px;}
.y14d{bottom:261.930000px;}
.y7c{bottom:262.650000px;}
.y15c{bottom:263.550000px;}
.yf9{bottom:264.090000px;}
.y36{bottom:265.890000px;}
.y65{bottom:266.430000px;}
.y8c{bottom:267.870000px;}
.yf1{bottom:274.170000px;}
.y120{bottom:275.250000px;}
.ybf{bottom:277.590000px;}
.y138{bottom:278.670000px;}
.y35{bottom:283.170000px;}
.y14c{bottom:283.710000px;}
.y7b{bottom:284.610000px;}
.y15b{bottom:285.330000px;}
.yce{bottom:287.670000px;}
.y64{bottom:288.210000px;}
.yf0{bottom:295.950000px;}
.y11f{bottom:297.750000px;}
.ybe{bottom:299.370000px;}
.y34{bottom:300.450000px;}
.y14b{bottom:305.670000px;}
.y7a{bottom:306.390000px;}
.y15a{bottom:307.290000px;}
.ycd{bottom:309.450000px;}
.y63{bottom:310.170000px;}
.ybc{bottom:315.750000px;}
.y33{bottom:317.730000px;}
.y11e{bottom:320.250000px;}
.y137{bottom:322.410000px;}
.y14a{bottom:327.450000px;}
.y79{bottom:328.170000px;}
.y159{bottom:329.070000px;}
.ycc{bottom:331.230000px;}
.y62{bottom:331.950000px;}
.y32{bottom:335.010000px;}
.yef{bottom:339.555000px;}
.ybb{bottom:343.695000px;}
.y136{bottom:344.235000px;}
.y11d{bottom:349.275000px;}
.y78{bottom:349.995000px;}
.y158{bottom:350.895000px;}
.y31{bottom:352.335000px;}
.ycb{bottom:353.055000px;}
.y61{bottom:353.775000px;}
.yee{bottom:361.515000px;}
.y135{bottom:366.015000px;}
.yba{bottom:366.195000px;}
.y30{bottom:369.435000px;}
.y11c{bottom:371.055000px;}
.y77{bottom:371.775000px;}
.y157{bottom:372.675000px;}
.yca{bottom:375.015000px;}
.y60{bottom:375.555000px;}
.yed{bottom:383.295000px;}
.y2f{bottom:386.715000px;}
.y134{bottom:387.795000px;}
.yb9{bottom:388.875000px;}
.y11b{bottom:393.015000px;}
.y76{bottom:393.735000px;}
.y156{bottom:394.455000px;}
.yc9{bottom:396.795000px;}
.y5f{bottom:397.515000px;}
.y2e{bottom:403.995000px;}
.yec{bottom:405.075000px;}
.y133{bottom:409.575000px;}
.yb8{bottom:411.375000px;}
.y11a{bottom:414.795000px;}
.y75{bottom:415.515000px;}
.y155{bottom:416.415000px;}
.yc8{bottom:418.575000px;}
.y5e{bottom:419.295000px;}
.y2d{bottom:421.275000px;}
.yeb{bottom:426.855000px;}
.y132{bottom:431.535000px;}
.yb7{bottom:434.055000px;}
.y119{bottom:436.575000px;}
.yc7{bottom:436.935000px;}
.y74{bottom:437.295000px;}
.y154{bottom:438.195000px;}
.y2c{bottom:438.555000px;}
.y5d{bottom:441.075000px;}
.yea{bottom:448.815000px;}
.y131{bottom:453.315000px;}
.y2b{bottom:455.835000px;}
.y153{bottom:456.375000px;}
.y118{bottom:458.355000px;}
.y73{bottom:459.075000px;}
.y5c{bottom:462.855000px;}
.ye9{bottom:470.595000px;}
.y2a{bottom:472.935000px;}
.y130{bottom:475.095000px;}
.y117{bottom:480.135000px;}
.y72{bottom:481.035000px;}
.y5b{bottom:484.635000px;}
.y29{bottom:490.215000px;}
.ye8{bottom:492.375000px;}
.y12f{bottom:496.875000px;}
.y71{bottom:497.235000px;}
.y116{bottom:502.095000px;}
.ya5{bottom:502.815000px;}
.y5a{bottom:506.595000px;}
.y28{bottom:507.495000px;}
.ye7{bottom:514.155000px;}
.y148{bottom:518.295000px;}
.y12e{bottom:518.835000px;}
.y70{bottom:519.735000px;}
.y115{bottom:523.875000px;}
.ya4{bottom:524.595000px;}
.y27{bottom:524.775000px;}
.y59{bottom:528.375000px;}
.ye6{bottom:535.935000px;}
.y12d{bottom:540.615000px;}
.y8b{bottom:541.515000px;}
.y26{bottom:542.055000px;}
.y6f{bottom:542.415000px;}
.y114{bottom:545.655000px;}
.ya3{bottom:546.375000px;}
.y58{bottom:550.155000px;}
.ye5{bottom:557.895000px;}
.y25{bottom:559.155000px;}
.y12c{bottom:562.395000px;}
.y6d{bottom:564.915000px;}
.y113{bottom:567.435000px;}
.ya2{bottom:568.155000px;}
.y57{bottom:571.935000px;}
.y24{bottom:576.435000px;}
.ye4{bottom:579.675000px;}
.y12b{bottom:584.175000px;}
.y146{bottom:584.535000px;}
.y112{bottom:589.395000px;}
.ya1{bottom:590.115000px;}
.y23{bottom:593.715000px;}
.y56{bottom:593.895000px;}
.ye3{bottom:595.875000px;}
.y12a{bottom:605.985000px;}
.y22{bottom:611.025000px;}
.y111{bottom:611.205000px;}
.ya0{bottom:611.925000px;}
.y55{bottom:615.705000px;}
.ye2{bottom:618.405000px;}
.y129{bottom:627.945000px;}
.y21{bottom:628.305000px;}
.y145{bottom:628.845000px;}
.y110{bottom:632.985000px;}
.y9f{bottom:633.705000px;}
.y54{bottom:637.485000px;}
.ye1{bottom:641.085000px;}
.y20{bottom:645.585000px;}
.y128{bottom:646.305000px;}
.y10f{bottom:654.765000px;}
.y9e{bottom:655.485000px;}
.y53{bottom:659.265000px;}
.y1f{bottom:662.685000px;}
.ye0{bottom:663.585000px;}
.y144{bottom:673.305000px;}
.y10e{bottom:676.545000px;}
.y9d{bottom:677.445000px;}
.y1e{bottom:679.965000px;}
.y52{bottom:681.045000px;}
.yde{bottom:686.265000px;}
.y1d{bottom:697.245000px;}
.y10d{bottom:698.505000px;}
.y9c{bottom:699.225000px;}
.y51{bottom:703.005000px;}
.y1c{bottom:714.525000px;}
.y142{bottom:717.585000px;}
.y10c{bottom:720.285000px;}
.y9b{bottom:721.005000px;}
.y50{bottom:724.785000px;}
.y1b{bottom:731.805000px;}
.ydd{bottom:736.845000px;}
.y10b{bottom:742.065000px;}
.y9a{bottom:742.785000px;}
.y4f{bottom:746.565000px;}
.y1a{bottom:749.085000px;}
.ydc{bottom:758.805000px;}
.y10a{bottom:763.845000px;}
.y99{bottom:764.565000px;}
.y19{bottom:766.185000px;}
.y4e{bottom:768.345000px;}
.ydb{bottom:780.585000px;}
.y98{bottom:780.945000px;}
.y18{bottom:783.465000px;}
.y109{bottom:785.625000px;}
.yb6{bottom:786.525000px;}
.y4d{bottom:790.125000px;}
.y17{bottom:800.745000px;}
.yda{bottom:802.365000px;}
.y97{bottom:803.445000px;}
.y108{bottom:807.585000px;}
.yb5{bottom:808.305000px;}
.y4c{bottom:812.085000px;}
.y16{bottom:818.025000px;}
.yd9{bottom:824.145000px;}
.y95{bottom:825.945000px;}
.y107{bottom:829.365000px;}
.yb4{bottom:830.085000px;}
.y8a{bottom:831.345000px;}
.y4b{bottom:833.865000px;}
.y15{bottom:835.305000px;}
.y106{bottom:845.565000px;}
.yd8{bottom:846.105000px;}
.y94{bottom:848.625000px;}
.yb3{bottom:851.865000px;}
.y89{bottom:853.305000px;}
.y14{bottom:855.645000px;}
.yd7{bottom:867.885000px;}
.y104{bottom:868.065000px;}
.yb2{bottom:873.870000px;}
.y88{bottom:875.130000px;}
.y13{bottom:876.930000px;}
.y4a{bottom:877.470000px;}
.yd6{bottom:889.710000px;}
.y103{bottom:890.790000px;}
.yb1{bottom:895.650000px;}
.y87{bottom:896.910000px;}
.y49{bottom:899.430000px;}
.y12{bottom:901.950000px;}
.yd5{bottom:911.490000px;}
.y102{bottom:913.290000px;}
.y11{bottom:917.070000px;}
.yb0{bottom:917.430000px;}
.y86{bottom:918.690000px;}
.y48{bottom:921.210000px;}
.yd4{bottom:929.850000px;}
.y10{bottom:935.610000px;}
.y101{bottom:935.970000px;}
.yaf{bottom:939.210000px;}
.y85{bottom:940.650000px;}
.y47{bottom:942.990000px;}
.yf{bottom:953.970000px;}
.yae{bottom:960.990000px;}
.y84{bottom:962.430000px;}
.y46{bottom:964.770000px;}
.ye{bottom:975.750000px;}
.yad{bottom:982.950000px;}
.y83{bottom:984.210000px;}
.y45{bottom:986.550000px;}
.yd{bottom:998.790000px;}
.yac{bottom:1004.730000px;}
.y82{bottom:1005.990000px;}
.y44{bottom:1008.510000px;}
.yab{bottom:1020.930000px;}
.y81{bottom:1024.350000px;}
.yc{bottom:1024.710000px;}
.y43{bottom:1030.290000px;}
.yaa{bottom:1043.430000px;}
.yb{bottom:1050.450000px;}
.y42{bottom:1052.070000px;}
.ya9{bottom:1066.110000px;}
.ya{bottom:1071.870000px;}
.y41{bottom:1073.850000px;}
.ya8{bottom:1088.610000px;}
.y9{bottom:1089.150000px;}
.y40{bottom:1095.810000px;}
.y8{bottom:1106.430000px;}
.y3f{bottom:1117.590000px;}
.y7{bottom:1123.530000px;}
.y3e{bottom:1139.400000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1165.500000px;}
.y1{bottom:1182.240000px;}
.h14{height:21.780000px;}
.h1a{height:21.816000px;}
.h15{height:21.960000px;}
.h1b{height:21.996000px;}
.h2{height:26.640000px;}
.hc{height:27.147656px;}
.h17{height:27.216000px;}
.h11{height:33.683203px;}
.h10{height:34.036523px;}
.h5{height:39.760312px;}
.hf{height:41.726953px;}
.h6{height:42.164648px;}
.h19{height:43.560000px;}
.h1d{height:43.596000px;}
.h1c{height:43.740000px;}
.h13{height:46.251562px;}
.h12{height:46.736719px;}
.h18{height:47.998125px;}
.hd{height:48.027656px;}
.h16{height:48.224531px;}
.he{height:49.255313px;}
.h4{height:50.273438px;}
.h3{height:52.171875px;}
.hb{height:53.224453px;}
.ha{height:54.596250px;}
.h7{height:54.864844px;}
.h8{height:56.345625px;}
.h1e{height:65.340000px;}
.h9{height:79.620469px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:49.140000px;}
.w11{width:49.500000px;}
.w2{width:53.100000px;}
.wb{width:61.740000px;}
.w16{width:64.800000px;}
.w22{width:66.600000px;}
.w24{width:75.960000px;}
.w25{width:76.176000px;}
.w23{width:83.016000px;}
.w20{width:91.080000px;}
.w21{width:91.116000px;}
.w13{width:100.260000px;}
.w1f{width:102.456000px;}
.w15{width:104.760000px;}
.w26{width:105.336000px;}
.wd{width:113.220000px;}
.wc{width:113.256000px;}
.w5{width:114.120000px;}
.w14{width:114.516000px;}
.wa{width:136.656000px;}
.w8{width:136.800000px;}
.w1d{width:156.060000px;}
.w17{width:158.070000px;}
.w1a{width:158.250000px;}
.w9{width:159.510000px;}
.w10{width:163.650000px;}
.w1e{width:164.190000px;}
.w1b{width:169.410000px;}
.w19{width:179.670000px;}
.w18{width:189.030000px;}
.w1c{width:211.530000px;}
.w7{width:226.650000px;}
.w6{width:252.255000px;}
.wf{width:443.415000px;}
.w12{width:443.775000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x14{left:11.520000px;}
.x2a{left:13.680000px;}
.x50{left:15.480000px;}
.x7b{left:17.280000px;}
.x32{left:18.360000px;}
.x30{left:20.520000px;}
.x3b{left:23.040000px;}
.x3c{left:24.480000px;}
.x7d{left:25.560000px;}
.x42{left:26.640000px;}
.x4e{left:28.260000px;}
.x44{left:30.600000px;}
.x74{left:31.710000px;}
.x46{left:33.480000px;}
.x76{left:34.785000px;}
.x12{left:35.994000px;}
.x16{left:40.494000px;}
.x6c{left:44.310000px;}
.x23{left:47.334000px;}
.x26{left:49.860000px;}
.x29{left:51.834000px;}
.x6a{left:53.100000px;}
.x67{left:54.210000px;}
.x18{left:55.620000px;}
.x68{left:56.880000px;}
.x24{left:58.185000px;}
.x5a{left:59.220000px;}
.x28{left:61.560000px;}
.x52{left:66.645000px;}
.x19{left:68.085000px;}
.x6b{left:69.480000px;}
.x54{left:70.785000px;}
.x17{left:72.225000px;}
.x55{left:74.700000px;}
.x69{left:78.660000px;}
.x5b{left:81.360000px;}
.x53{left:86.040000px;}
.x36{left:102.275987px;}
.x1{left:108.036000px;}
.x34{left:113.255987px;}
.x5{left:116.135987px;}
.x5c{left:123.515987px;}
.xf{left:125.315987px;}
.x20{left:126.755987px;}
.x7{left:128.735987px;}
.x37{left:135.035987px;}
.x35{left:140.075987px;}
.xe{left:150.509987px;}
.x60{left:155.549987px;}
.x3{left:161.130000px;}
.x39{left:166.710000px;}
.x57{left:169.949987px;}
.x49{left:171.929987px;}
.x77{left:173.549987px;}
.x1b{left:181.109987px;}
.x6f{left:182.909987px;}
.x48{left:184.169987px;}
.x56{left:189.029987px;}
.x61{left:193.169987px;}
.x3d{left:195.885000px;}
.x3f{left:199.649987px;}
.x4d{left:215.130000px;}
.xa{left:218.369987px;}
.x1e{left:227.909987px;}
.x13{left:231.870000px;}
.x78{left:236.910000px;}
.x2d{left:250.409987px;}
.xb{left:254.189987px;}
.x5e{left:260.669987px;}
.x6{left:267.509987px;}
.x71{left:269.850000px;}
.x6e{left:282.494987px;}
.x41{left:286.095000px;}
.x4c{left:287.354987px;}
.x63{left:289.694987px;}
.x21{left:298.694987px;}
.x2e{left:301.755000px;}
.x65{left:304.274987px;}
.x4b{left:308.054987px;}
.x64{left:313.094987px;}
.x1f{left:316.874987px;}
.x58{left:321.015000px;}
.x5f{left:328.034987px;}
.x9{left:329.654987px;}
.x33{left:331.454987px;}
.x6d{left:342.074987px;}
.x38{left:344.774987px;}
.x47{left:355.214987px;}
.x7e{left:357.734987px;}
.x2f{left:364.215000px;}
.x72{left:373.035000px;}
.x4f{left:374.115000px;}
.x10{left:385.274987px;}
.x43{left:387.075000px;}
.x22{left:388.154987px;}
.x8{left:394.454987px;}
.x79{left:397.335000px;}
.x2c{left:398.954987px;}
.x70{left:410.474987px;}
.x25{left:414.615000px;}
.xc{left:418.574987px;}
.xd{left:420.194987px;}
.x2b{left:425.234987px;}
.x3e{left:434.954987px;}
.x66{left:442.875000px;}
.x4{left:446.474987px;}
.x11{left:459.974987px;}
.x73{left:464.835000px;}
.x7a{left:474.225000px;}
.x31{left:478.185000px;}
.x15{left:484.845000px;}
.x59{left:491.145000px;}
.x45{left:502.305000px;}
.x1c{left:548.924987px;}
.x7c{left:550.905000px;}
.x1d{left:553.784987px;}
.x75{left:556.665000px;}
.x51{left:563.865000px;}
.x27{left:574.845000px;}
.x4a{left:589.424987px;}
.x5d{left:596.444987px;}
.x62{left:604.904987px;}
.x3a{left:610.845000px;}
.x40{left:614.984987px;}
.x1a{left:629.564987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls8{letter-spacing:0.023040pt;}
.ls16{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.128640pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls18{letter-spacing:17.920000pt;}
.lsc{letter-spacing:22.671360pt;}
.lsd{letter-spacing:25.871360pt;}
.ls13{letter-spacing:29.071360pt;}
.ls15{letter-spacing:30.970027pt;}
.lsb{letter-spacing:34.831360pt;}
.ls12{letter-spacing:35.450027pt;}
.lsf{letter-spacing:35.471360pt;}
.lse{letter-spacing:92.800000pt;}
.wsd{word-spacing:-58.880000pt;}
.wsf{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.584533pt;}
.ws9{word-spacing:-14.486933pt;}
.ws8{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.351467pt;}
.wse{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._27{margin-left:-4.869120pt;}
._7{margin-left:-3.727360pt;}
._2{margin-left:-1.956480pt;}
._0{margin-left:-1.040640pt;}
._1{width:1.009280pt;}
._3{width:2.177920pt;}
._4{width:3.134080pt;}
._6{width:4.141013pt;}
._b{width:5.268267pt;}
._f{width:6.290133pt;}
._9{width:7.224320pt;}
._8{width:8.446080pt;}
._10{width:9.715200pt;}
._e{width:10.657280pt;}
._c{width:12.217600pt;}
._13{width:13.784960pt;}
._5{width:15.936000pt;}
._a{width:17.157760pt;}
._11{width:18.959360pt;}
._12{width:19.901440pt;}
._14{width:20.961280pt;}
._15{width:22.080000pt;}
._1a{width:23.022080pt;}
._18{width:24.370560pt;}
._19{width:25.616640pt;}
._16{width:26.908160pt;}
._17{width:28.192000pt;}
._1e{width:29.498880pt;}
._1f{width:30.716587pt;}
._1b{width:32.030720pt;}
._1c{width:33.516160pt;}
._24{width:40.568320pt;}
._25{width:42.171520pt;}
._21{width:48.618667pt;}
._23{width:63.338667pt;}
._22{width:66.538667pt;}
._1d{width:67.947520pt;}
._d{width:90.922667pt;}
._26{width:127.360000pt;}
._20{width:162.538667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:5.600000pt;}
.y96{bottom:5.760000pt;}
.y105{bottom:5.800000pt;}
.y2{bottom:6.080000pt;}
.ybd{bottom:10.400000pt;}
.y5{bottom:19.200000pt;}
.ydf{bottom:24.960000pt;}
.y147{bottom:24.986667pt;}
.y143{bottom:25.120000pt;}
.y4{bottom:36.320000pt;}
.y149{bottom:44.320000pt;}
.y6c{bottom:101.152000pt;}
.y100{bottom:102.112000pt;}
.y93{bottom:105.472000pt;}
.yf8{bottom:107.872000pt;}
.y141{bottom:108.192000pt;}
.yc6{bottom:111.072000pt;}
.y127{bottom:112.512000pt;}
.ya7{bottom:117.152000pt;}
.y3d{bottom:117.632000pt;}
.y6b{bottom:120.512000pt;}
.yff{bottom:121.472000pt;}
.y92{bottom:124.832000pt;}
.yf7{bottom:127.232000pt;}
.y140{bottom:127.552000pt;}
.yc5{bottom:130.432000pt;}
.y13e{bottom:131.392000pt;}
.y126{bottom:131.872000pt;}
.y166{bottom:132.512000pt;}
.y152{bottom:135.866667pt;}
.ya6{bottom:136.506667pt;}
.y3c{bottom:136.986667pt;}
.y161{bottom:137.306667pt;}
.yd3{bottom:139.226667pt;}
.y6a{bottom:139.866667pt;}
.yfe{bottom:140.826667pt;}
.y13f{bottom:143.866667pt;}
.y91{bottom:144.346667pt;}
.yf6{bottom:146.746667pt;}
.y165{bottom:146.906667pt;}
.yc4{bottom:149.786667pt;}
.y13d{bottom:150.746667pt;}
.y125{bottom:151.226667pt;}
.y151{bottom:155.226667pt;}
.y80{bottom:155.866667pt;}
.y3b{bottom:156.506667pt;}
.y160{bottom:156.666667pt;}
.yd2{bottom:158.746667pt;}
.y69{bottom:159.226667pt;}
.yfd{bottom:160.186667pt;}
.y90{bottom:163.706667pt;}
.yf5{bottom:166.106667pt;}
.y164{bottom:167.066667pt;}
.yc3{bottom:169.146667pt;}
.y13c{bottom:170.106667pt;}
.y124{bottom:170.746667pt;}
.y150{bottom:174.746667pt;}
.y7f{bottom:175.386667pt;}
.y3a{bottom:175.866667pt;}
.y15f{bottom:176.026667pt;}
.yd1{bottom:178.106667pt;}
.y68{bottom:178.746667pt;}
.yfc{bottom:179.546667pt;}
.y8f{bottom:183.066667pt;}
.yf4{bottom:185.466667pt;}
.y163{bottom:187.066667pt;}
.yc2{bottom:188.666667pt;}
.y13b{bottom:189.626667pt;}
.y123{bottom:190.106667pt;}
.y14f{bottom:194.106667pt;}
.y7e{bottom:194.746667pt;}
.y39{bottom:195.226667pt;}
.y15e{bottom:195.546667pt;}
.yd0{bottom:197.466667pt;}
.y67{bottom:198.106667pt;}
.yfb{bottom:199.066667pt;}
.y8e{bottom:202.426667pt;}
.y122{bottom:204.506667pt;}
.yf3{bottom:204.826667pt;}
.y162{bottom:207.226667pt;}
.yc1{bottom:208.026667pt;}
.y13a{bottom:208.986667pt;}
.y38{bottom:211.226667pt;}
.y14e{bottom:213.466667pt;}
.y7d{bottom:214.106667pt;}
.y15d{bottom:214.906667pt;}
.ycf{bottom:216.826667pt;}
.y66{bottom:217.466667pt;}
.yfa{bottom:218.426667pt;}
.y8d{bottom:221.786667pt;}
.y37{bottom:223.546667pt;}
.yf2{bottom:224.346667pt;}
.y121{bottom:224.506667pt;}
.yc0{bottom:227.386667pt;}
.y139{bottom:228.346667pt;}
.y14d{bottom:232.826667pt;}
.y7c{bottom:233.466667pt;}
.y15c{bottom:234.266667pt;}
.yf9{bottom:234.746667pt;}
.y36{bottom:236.346667pt;}
.y65{bottom:236.826667pt;}
.y8c{bottom:238.106667pt;}
.yf1{bottom:243.706667pt;}
.y120{bottom:244.666667pt;}
.ybf{bottom:246.746667pt;}
.y138{bottom:247.706667pt;}
.y35{bottom:251.706667pt;}
.y14c{bottom:252.186667pt;}
.y7b{bottom:252.986667pt;}
.y15b{bottom:253.626667pt;}
.yce{bottom:255.706667pt;}
.y64{bottom:256.186667pt;}
.yf0{bottom:263.066667pt;}
.y11f{bottom:264.666667pt;}
.ybe{bottom:266.106667pt;}
.y34{bottom:267.066667pt;}
.y14b{bottom:271.706667pt;}
.y7a{bottom:272.346667pt;}
.y15a{bottom:273.146667pt;}
.ycd{bottom:275.066667pt;}
.y63{bottom:275.706667pt;}
.ybc{bottom:280.666667pt;}
.y33{bottom:282.426667pt;}
.y11e{bottom:284.666667pt;}
.y137{bottom:286.586667pt;}
.y14a{bottom:291.066667pt;}
.y79{bottom:291.706667pt;}
.y159{bottom:292.506667pt;}
.ycc{bottom:294.426667pt;}
.y62{bottom:295.066667pt;}
.y32{bottom:297.786667pt;}
.yef{bottom:301.826667pt;}
.ybb{bottom:305.506667pt;}
.y136{bottom:305.986667pt;}
.y11d{bottom:310.466667pt;}
.y78{bottom:311.106667pt;}
.y158{bottom:311.906667pt;}
.y31{bottom:313.186667pt;}
.ycb{bottom:313.826667pt;}
.y61{bottom:314.466667pt;}
.yee{bottom:321.346667pt;}
.y135{bottom:325.346667pt;}
.yba{bottom:325.506667pt;}
.y30{bottom:328.386667pt;}
.y11c{bottom:329.826667pt;}
.y77{bottom:330.466667pt;}
.y157{bottom:331.266667pt;}
.yca{bottom:333.346667pt;}
.y60{bottom:333.826667pt;}
.yed{bottom:340.706667pt;}
.y2f{bottom:343.746667pt;}
.y134{bottom:344.706667pt;}
.yb9{bottom:345.666667pt;}
.y11b{bottom:349.346667pt;}
.y76{bottom:349.986667pt;}
.y156{bottom:350.626667pt;}
.yc9{bottom:352.706667pt;}
.y5f{bottom:353.346667pt;}
.y2e{bottom:359.106667pt;}
.yec{bottom:360.066667pt;}
.y133{bottom:364.066667pt;}
.yb8{bottom:365.666667pt;}
.y11a{bottom:368.706667pt;}
.y75{bottom:369.346667pt;}
.y155{bottom:370.146667pt;}
.yc8{bottom:372.066667pt;}
.y5e{bottom:372.706667pt;}
.y2d{bottom:374.466667pt;}
.yeb{bottom:379.426667pt;}
.y132{bottom:383.586667pt;}
.yb7{bottom:385.826667pt;}
.y119{bottom:388.066667pt;}
.yc7{bottom:388.386667pt;}
.y74{bottom:388.706667pt;}
.y154{bottom:389.506667pt;}
.y2c{bottom:389.826667pt;}
.y5d{bottom:392.066667pt;}
.yea{bottom:398.946667pt;}
.y131{bottom:402.946667pt;}
.y2b{bottom:405.186667pt;}
.y153{bottom:405.666667pt;}
.y118{bottom:407.426667pt;}
.y73{bottom:408.066667pt;}
.y5c{bottom:411.426667pt;}
.ye9{bottom:418.306667pt;}
.y2a{bottom:420.386667pt;}
.y130{bottom:422.306667pt;}
.y117{bottom:426.786667pt;}
.y72{bottom:427.586667pt;}
.y5b{bottom:430.786667pt;}
.y29{bottom:435.746667pt;}
.ye8{bottom:437.666667pt;}
.y12f{bottom:441.666667pt;}
.y71{bottom:441.986667pt;}
.y116{bottom:446.306667pt;}
.ya5{bottom:446.946667pt;}
.y5a{bottom:450.306667pt;}
.y28{bottom:451.106667pt;}
.ye7{bottom:457.026667pt;}
.y148{bottom:460.706667pt;}
.y12e{bottom:461.186667pt;}
.y70{bottom:461.986667pt;}
.y115{bottom:465.666667pt;}
.ya4{bottom:466.306667pt;}
.y27{bottom:466.466667pt;}
.y59{bottom:469.666667pt;}
.ye6{bottom:476.386667pt;}
.y12d{bottom:480.546667pt;}
.y8b{bottom:481.346667pt;}
.y26{bottom:481.826667pt;}
.y6f{bottom:482.146667pt;}
.y114{bottom:485.026667pt;}
.ya3{bottom:485.666667pt;}
.y58{bottom:489.026667pt;}
.ye5{bottom:495.906667pt;}
.y25{bottom:497.026667pt;}
.y12c{bottom:499.906667pt;}
.y6d{bottom:502.146667pt;}
.y113{bottom:504.386667pt;}
.ya2{bottom:505.026667pt;}
.y57{bottom:508.386667pt;}
.y24{bottom:512.386667pt;}
.ye4{bottom:515.266667pt;}
.y12b{bottom:519.266667pt;}
.y146{bottom:519.586667pt;}
.y112{bottom:523.906667pt;}
.ya1{bottom:524.546667pt;}
.y23{bottom:527.746667pt;}
.y56{bottom:527.906667pt;}
.ye3{bottom:529.666667pt;}
.y12a{bottom:538.653333pt;}
.y22{bottom:543.133333pt;}
.y111{bottom:543.293333pt;}
.ya0{bottom:543.933333pt;}
.y55{bottom:547.293333pt;}
.ye2{bottom:549.693333pt;}
.y129{bottom:558.173333pt;}
.y21{bottom:558.493333pt;}
.y145{bottom:558.973333pt;}
.y110{bottom:562.653333pt;}
.y9f{bottom:563.293333pt;}
.y54{bottom:566.653333pt;}
.ye1{bottom:569.853333pt;}
.y20{bottom:573.853333pt;}
.y128{bottom:574.493333pt;}
.y10f{bottom:582.013333pt;}
.y9e{bottom:582.653333pt;}
.y53{bottom:586.013333pt;}
.y1f{bottom:589.053333pt;}
.ye0{bottom:589.853333pt;}
.y144{bottom:598.493333pt;}
.y10e{bottom:601.373333pt;}
.y9d{bottom:602.173333pt;}
.y1e{bottom:604.413333pt;}
.y52{bottom:605.373333pt;}
.yde{bottom:610.013333pt;}
.y1d{bottom:619.773333pt;}
.y10d{bottom:620.893333pt;}
.y9c{bottom:621.533333pt;}
.y51{bottom:624.893333pt;}
.y1c{bottom:635.133333pt;}
.y142{bottom:637.853333pt;}
.y10c{bottom:640.253333pt;}
.y9b{bottom:640.893333pt;}
.y50{bottom:644.253333pt;}
.y1b{bottom:650.493333pt;}
.ydd{bottom:654.973333pt;}
.y10b{bottom:659.613333pt;}
.y9a{bottom:660.253333pt;}
.y4f{bottom:663.613333pt;}
.y1a{bottom:665.853333pt;}
.ydc{bottom:674.493333pt;}
.y10a{bottom:678.973333pt;}
.y99{bottom:679.613333pt;}
.y19{bottom:681.053333pt;}
.y4e{bottom:682.973333pt;}
.ydb{bottom:693.853333pt;}
.y98{bottom:694.173333pt;}
.y18{bottom:696.413333pt;}
.y109{bottom:698.333333pt;}
.yb6{bottom:699.133333pt;}
.y4d{bottom:702.333333pt;}
.y17{bottom:711.773333pt;}
.yda{bottom:713.213333pt;}
.y97{bottom:714.173333pt;}
.y108{bottom:717.853333pt;}
.yb5{bottom:718.493333pt;}
.y4c{bottom:721.853333pt;}
.y16{bottom:727.133333pt;}
.yd9{bottom:732.573333pt;}
.y95{bottom:734.173333pt;}
.y107{bottom:737.213333pt;}
.yb4{bottom:737.853333pt;}
.y8a{bottom:738.973333pt;}
.y4b{bottom:741.213333pt;}
.y15{bottom:742.493333pt;}
.y106{bottom:751.613333pt;}
.yd8{bottom:752.093333pt;}
.y94{bottom:754.333333pt;}
.yb3{bottom:757.213333pt;}
.y89{bottom:758.493333pt;}
.y14{bottom:760.573333pt;}
.yd7{bottom:771.453333pt;}
.y104{bottom:771.613333pt;}
.yb2{bottom:776.773333pt;}
.y88{bottom:777.893333pt;}
.y13{bottom:779.493333pt;}
.y4a{bottom:779.973333pt;}
.yd6{bottom:790.853333pt;}
.y103{bottom:791.813333pt;}
.yb1{bottom:796.133333pt;}
.y87{bottom:797.253333pt;}
.y49{bottom:799.493333pt;}
.y12{bottom:801.733333pt;}
.yd5{bottom:810.213333pt;}
.y102{bottom:811.813333pt;}
.y11{bottom:815.173333pt;}
.yb0{bottom:815.493333pt;}
.y86{bottom:816.613333pt;}
.y48{bottom:818.853333pt;}
.yd4{bottom:826.533333pt;}
.y10{bottom:831.653333pt;}
.y101{bottom:831.973333pt;}
.yaf{bottom:834.853333pt;}
.y85{bottom:836.133333pt;}
.y47{bottom:838.213333pt;}
.yf{bottom:847.973333pt;}
.yae{bottom:854.213333pt;}
.y84{bottom:855.493333pt;}
.y46{bottom:857.573333pt;}
.ye{bottom:867.333333pt;}
.yad{bottom:873.733333pt;}
.y83{bottom:874.853333pt;}
.y45{bottom:876.933333pt;}
.yd{bottom:887.813333pt;}
.yac{bottom:893.093333pt;}
.y82{bottom:894.213333pt;}
.y44{bottom:896.453333pt;}
.yab{bottom:907.493333pt;}
.y81{bottom:910.533333pt;}
.yc{bottom:910.853333pt;}
.y43{bottom:915.813333pt;}
.yaa{bottom:927.493333pt;}
.yb{bottom:933.733333pt;}
.y42{bottom:935.173333pt;}
.ya9{bottom:947.653333pt;}
.ya{bottom:952.773333pt;}
.y41{bottom:954.533333pt;}
.ya8{bottom:967.653333pt;}
.y9{bottom:968.133333pt;}
.y40{bottom:974.053333pt;}
.y8{bottom:983.493333pt;}
.y3f{bottom:993.413333pt;}
.y7{bottom:998.693333pt;}
.y3e{bottom:1012.800000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1036.000000pt;}
.y1{bottom:1050.880000pt;}
.h14{height:19.360000pt;}
.h1a{height:19.392000pt;}
.h15{height:19.520000pt;}
.h1b{height:19.552000pt;}
.h2{height:23.680000pt;}
.hc{height:24.131250pt;}
.h17{height:24.192000pt;}
.h11{height:29.940625pt;}
.h10{height:30.254687pt;}
.h5{height:35.342500pt;}
.hf{height:37.090625pt;}
.h6{height:37.479688pt;}
.h19{height:38.720000pt;}
.h1d{height:38.752000pt;}
.h1c{height:38.880000pt;}
.h13{height:41.112500pt;}
.h12{height:41.543750pt;}
.h18{height:42.665000pt;}
.hd{height:42.691250pt;}
.h16{height:42.866250pt;}
.he{height:43.782500pt;}
.h4{height:44.687500pt;}
.h3{height:46.375000pt;}
.hb{height:47.310625pt;}
.ha{height:48.530000pt;}
.h7{height:48.768750pt;}
.h8{height:50.085000pt;}
.h1e{height:58.080000pt;}
.h9{height:70.773750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:43.680000pt;}
.w11{width:44.000000pt;}
.w2{width:47.200000pt;}
.wb{width:54.880000pt;}
.w16{width:57.600000pt;}
.w22{width:59.200000pt;}
.w24{width:67.520000pt;}
.w25{width:67.712000pt;}
.w23{width:73.792000pt;}
.w20{width:80.960000pt;}
.w21{width:80.992000pt;}
.w13{width:89.120000pt;}
.w1f{width:91.072000pt;}
.w15{width:93.120000pt;}
.w26{width:93.632000pt;}
.wd{width:100.640000pt;}
.wc{width:100.672000pt;}
.w5{width:101.440000pt;}
.w14{width:101.792000pt;}
.wa{width:121.472000pt;}
.w8{width:121.600000pt;}
.w1d{width:138.720000pt;}
.w17{width:140.506667pt;}
.w1a{width:140.666667pt;}
.w9{width:141.786667pt;}
.w10{width:145.466667pt;}
.w1e{width:145.946667pt;}
.w1b{width:150.586667pt;}
.w19{width:159.706667pt;}
.w18{width:168.026667pt;}
.w1c{width:188.026667pt;}
.w7{width:201.466667pt;}
.w6{width:224.226667pt;}
.wf{width:394.146667pt;}
.w12{width:394.466667pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x14{left:10.240000pt;}
.x2a{left:12.160000pt;}
.x50{left:13.760000pt;}
.x7b{left:15.360000pt;}
.x32{left:16.320000pt;}
.x30{left:18.240000pt;}
.x3b{left:20.480000pt;}
.x3c{left:21.760000pt;}
.x7d{left:22.720000pt;}
.x42{left:23.680000pt;}
.x4e{left:25.120000pt;}
.x44{left:27.200000pt;}
.x74{left:28.186667pt;}
.x46{left:29.760000pt;}
.x76{left:30.920000pt;}
.x12{left:31.994667pt;}
.x16{left:35.994667pt;}
.x6c{left:39.386667pt;}
.x23{left:42.074667pt;}
.x26{left:44.320000pt;}
.x29{left:46.074667pt;}
.x6a{left:47.200000pt;}
.x67{left:48.186667pt;}
.x18{left:49.440000pt;}
.x68{left:50.560000pt;}
.x24{left:51.720000pt;}
.x5a{left:52.640000pt;}
.x28{left:54.720000pt;}
.x52{left:59.240000pt;}
.x19{left:60.520000pt;}
.x6b{left:61.760000pt;}
.x54{left:62.920000pt;}
.x17{left:64.200000pt;}
.x55{left:66.400000pt;}
.x69{left:69.920000pt;}
.x5b{left:72.320000pt;}
.x53{left:76.480000pt;}
.x36{left:90.911988pt;}
.x1{left:96.032000pt;}
.x34{left:100.671988pt;}
.x5{left:103.231988pt;}
.x5c{left:109.791988pt;}
.xf{left:111.391988pt;}
.x20{left:112.671988pt;}
.x7{left:114.431988pt;}
.x37{left:120.031988pt;}
.x35{left:124.511988pt;}
.xe{left:133.786655pt;}
.x60{left:138.266655pt;}
.x3{left:143.226667pt;}
.x39{left:148.186667pt;}
.x57{left:151.066655pt;}
.x49{left:152.826655pt;}
.x77{left:154.266655pt;}
.x1b{left:160.986655pt;}
.x6f{left:162.586655pt;}
.x48{left:163.706655pt;}
.x56{left:168.026655pt;}
.x61{left:171.706655pt;}
.x3d{left:174.120000pt;}
.x3f{left:177.466655pt;}
.x4d{left:191.226667pt;}
.xa{left:194.106655pt;}
.x1e{left:202.586655pt;}
.x13{left:206.106667pt;}
.x78{left:210.586667pt;}
.x2d{left:222.586655pt;}
.xb{left:225.946655pt;}
.x5e{left:231.706655pt;}
.x6{left:237.786655pt;}
.x71{left:239.866667pt;}
.x6e{left:251.106655pt;}
.x41{left:254.306667pt;}
.x4c{left:255.426655pt;}
.x63{left:257.506655pt;}
.x21{left:265.506655pt;}
.x2e{left:268.226667pt;}
.x65{left:270.466655pt;}
.x4b{left:273.826655pt;}
.x64{left:278.306655pt;}
.x1f{left:281.666655pt;}
.x58{left:285.346667pt;}
.x5f{left:291.586655pt;}
.x9{left:293.026655pt;}
.x33{left:294.626655pt;}
.x6d{left:304.066655pt;}
.x38{left:306.466655pt;}
.x47{left:315.746655pt;}
.x7e{left:317.986655pt;}
.x2f{left:323.746667pt;}
.x72{left:331.586667pt;}
.x4f{left:332.546667pt;}
.x10{left:342.466655pt;}
.x43{left:344.066667pt;}
.x22{left:345.026655pt;}
.x8{left:350.626655pt;}
.x79{left:353.186667pt;}
.x2c{left:354.626655pt;}
.x70{left:364.866655pt;}
.x25{left:368.546667pt;}
.xc{left:372.066655pt;}
.xd{left:373.506655pt;}
.x2b{left:377.986655pt;}
.x3e{left:386.626655pt;}
.x66{left:393.666667pt;}
.x4{left:396.866655pt;}
.x11{left:408.866655pt;}
.x73{left:413.186667pt;}
.x7a{left:421.533333pt;}
.x31{left:425.053333pt;}
.x15{left:430.973333pt;}
.x59{left:436.573333pt;}
.x45{left:446.493333pt;}
.x1c{left:487.933322pt;}
.x7c{left:489.693333pt;}
.x1d{left:492.253322pt;}
.x75{left:494.813333pt;}
.x51{left:501.213333pt;}
.x27{left:510.973333pt;}
.x4a{left:523.933322pt;}
.x5d{left:530.173322pt;}
.x62{left:537.693322pt;}
.x3a{left:542.973333pt;}
.x40{left:546.653322pt;}
.x1a{left:559.613322pt;}
}




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