
    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_844facfec6b4917d0ced99e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_69f1e276a01dab65f034bfc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_ffc95ce0db2f0739f70f1808.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_6c4e1ecde50822fb804ba9f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_4725bd37b2810ad873f13a5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_225db5edc5853e7d821c8e25.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.272949;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_5c563cc9a3709ce4519141fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_34f577bca888fa6042fd7dcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_0bb2e5597baea07e40898845.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.291992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_73cbfb16053b2164e59a8b44.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ed0349891be4a292461e542d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.213379;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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);}
.v4{vertical-align:-80.640000px;}
.v2{vertical-align:-57.600000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.520000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005773px;}
.ls15{letter-spacing:0.031104px;}
.ls2{letter-spacing:0.050400px;}
.ls9{letter-spacing:0.062209px;}
.lsa{letter-spacing:0.118369px;}
.ls0{letter-spacing:0.201025px;}
.ls1{letter-spacing:0.403200px;}
.ls6{letter-spacing:0.467713px;}
.ls3{letter-spacing:0.486569px;}
.ls10{letter-spacing:0.659233px;}
.ls17{letter-spacing:0.665280px;}
.ls18{letter-spacing:0.687744px;}
.ls14{letter-spacing:1.471393px;}
.lsb{letter-spacing:1.926857px;}
.lsd{letter-spacing:2.522593px;}
.ls12{letter-spacing:2.911681px;}
.ls11{letter-spacing:8.672833px;}
.ls4{letter-spacing:13.449162px;}
.lsf{letter-spacing:15.874273px;}
.ls16{letter-spacing:17.314561px;}
.ls13{letter-spacing:18.754849px;}
.ls8{letter-spacing:19.735201px;}
.lse{letter-spacing:26.485921px;}
.ls7{letter-spacing:37.351586px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsd{word-spacing:-47.520000px;}
.ws5{word-spacing:-14.446080px;}
.ws6{word-spacing:-13.679850px;}
.ws7{word-spacing:-13.132800px;}
.ws2{word-spacing:-12.476023px;}
.ws3{word-spacing:-11.894400px;}
.wsc{word-spacing:-11.541600px;}
.wse{word-spacing:-11.499840px;}
.ws4{word-spacing:-11.491200px;}
.wsf{word-spacing:-10.834560px;}
.wsa{word-spacing:-10.177920px;}
.ws0{word-spacing:-9.521280px;}
.wsb{word-spacing:-7.551223px;}
.ws1{word-spacing:-6.237943px;}
.ws8{word-spacing:0.000000px;}
._30{margin-left:-11.233706px;}
._c{margin-left:-5.581440px;}
._25{margin-left:-3.280409px;}
._b{margin-left:-2.141639px;}
._2{margin-left:-1.030733px;}
._0{width:1.283040px;}
._5{width:2.708640px;}
._d{width:3.788549px;}
._3{width:4.799520px;}
._4{width:5.940000px;}
._e{width:7.028087px;}
._17{width:8.191319px;}
._6{width:9.218880px;}
._1b{width:10.538927px;}
._18{width:11.824594px;}
._2f{width:13.433760px;}
._10{width:14.622100px;}
._f{width:15.791203px;}
._12{width:17.119274px;}
._29{width:18.183459px;}
._26{width:19.411200px;}
._22{width:20.997721px;}
._21{width:22.301639px;}
._1{width:23.712480px;}
._19{width:24.819533px;}
._1a{width:26.035200px;}
._20{width:27.082439px;}
._1f{width:28.176839px;}
._14{width:29.491200px;}
._13{width:30.532372px;}
._15{width:32.198400px;}
._16{width:33.313677px;}
._1e{width:35.251200px;}
._9{width:36.921070px;}
._a{width:38.210700px;}
._1c{width:39.571200px;}
._1d{width:41.471462px;}
._2a{width:43.488000px;}
._2b{width:44.977597px;}
._8{width:47.178427px;}
._7{width:48.371578px;}
._2e{width:50.422905px;}
._24{width:55.117133px;}
._23{width:56.453037px;}
._2d{width:59.191782px;}
._11{width:60.243533px;}
._2c{width:61.354439px;}
._27{width:69.805133px;}
._28{width:71.066932px;}
.fc4{color:rgb(104,115,25);}
.fc3{color:rgb(105,114,25);}
.fc1{color:rgb(0,0,128);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:24.480000px;}
.fs3{font-size:27.359400px;}
.fsd{font-size:33.119400px;}
.fs1{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fsc{font-size:44.640000px;}
.fs0{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs4{font-size:54.719400px;}
.fsa{font-size:57.600000px;}
.fsb{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:96.479400px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.240000px;}
.ye5{bottom:4.680000px;}
.y8{bottom:56.880000px;}
.y43{bottom:57.960000px;}
.y7{bottom:70.560000px;}
.yb{bottom:73.080000px;}
.y6{bottom:82.440000px;}
.y9{bottom:88.560000px;}
.y5{bottom:94.680000px;}
.yc9{bottom:133.200000px;}
.ye3{bottom:133.560000px;}
.y141{bottom:142.920000px;}
.y9d{bottom:144.360000px;}
.y10e{bottom:145.800000px;}
.y38{bottom:147.600000px;}
.y42{bottom:150.480000px;}
.y71{bottom:150.840000px;}
.y140{bottom:159.840000px;}
.y9c{bottom:160.920000px;}
.y10d{bottom:163.080000px;}
.y37{bottom:164.880000px;}
.ye2{bottom:167.400000px;}
.y70{bottom:168.120000px;}
.yc8{bottom:168.480000px;}
.y41{bottom:172.080000px;}
.y13f{bottom:176.400000px;}
.y9b{bottom:177.840000px;}
.y10c{bottom:181.080000px;}
.y36{bottom:182.160000px;}
.ye1{bottom:183.960000px;}
.y6f{bottom:185.040000px;}
.yc7{bottom:186.120000px;}
.y40{bottom:189.360000px;}
.y13e{bottom:193.320000px;}
.y9a{bottom:194.760000px;}
.y10b{bottom:198.720000px;}
.y35{bottom:199.080000px;}
.y6e{bottom:202.320000px;}
.y3f{bottom:206.640000px;}
.y13d{bottom:210.240000px;}
.ye0{bottom:211.320000px;}
.y99{bottom:211.680000px;}
.yc6{bottom:213.120000px;}
.y34{bottom:216.360000px;}
.y6d{bottom:219.600000px;}
.y13c{bottom:227.160000px;}
.ydf{bottom:227.880000px;}
.y3e{bottom:228.240000px;}
.yc5{bottom:229.680000px;}
.y33{bottom:233.640000px;}
.y10a{bottom:234.000000px;}
.y98{bottom:245.160000px;}
.y3d{bottom:245.520000px;}
.y6c{bottom:246.600000px;}
.y13b{bottom:248.400000px;}
.y32{bottom:250.920000px;}
.y109{bottom:251.640000px;}
.yde{bottom:255.960000px;}
.yc4{bottom:257.760000px;}
.y97{bottom:262.080000px;}
.y3c{bottom:262.440000px;}
.y6b{bottom:263.160000px;}
.y13a{bottom:265.320000px;}
.y31{bottom:267.840000px;}
.y108{bottom:269.280000px;}
.y96{bottom:279.000000px;}
.y139{bottom:281.880000px;}
.y3b{bottom:284.400000px;}
.y30{bottom:285.120000px;}
.y107{bottom:286.920000px;}
.y6a{bottom:291.600000px;}
.ydd{bottom:293.760000px;}
.yc3{bottom:297.000000px;}
.y138{bottom:298.800000px;}
.y3a{bottom:301.320000px;}
.y2f{bottom:302.400000px;}
.y106{bottom:304.560000px;}
.y95{bottom:306.360000px;}
.y194{bottom:307.440000px;}
.yc2{bottom:314.280000px;}
.y137{bottom:315.720000px;}
.y39{bottom:318.240000px;}
.y2e{bottom:319.320000px;}
.y16a{bottom:325.080000px;}
.y69{bottom:329.040000px;}
.yc1{bottom:331.920000px;}
.y136{bottom:332.640000px;}
.y94{bottom:334.440000px;}
.y2d{bottom:336.600000px;}
.ydc{bottom:338.040000px;}
.y169{bottom:339.840000px;}
.y135{bottom:349.200000px;}
.yc0{bottom:349.560000px;}
.y2c{bottom:353.880000px;}
.y168{bottom:354.600000px;}
.ydb{bottom:354.960000px;}
.y105{bottom:360.000000px;}
.y134{bottom:366.120000px;}
.y167{bottom:369.000000px;}
.y2b{bottom:370.800000px;}
.yda{bottom:371.880000px;}
.y93{bottom:372.600000px;}
.ybf{bottom:376.560000px;}
.y68{bottom:376.920000px;}
.y193{bottom:382.680000px;}
.y133{bottom:383.040000px;}
.y166{bottom:383.760000px;}
.y2a{bottom:388.080000px;}
.y92{bottom:389.880000px;}
.ybe{bottom:393.120000px;}
.y67{bottom:394.200000px;}
.y165{bottom:398.520000px;}
.yd9{bottom:399.240000px;}
.y104{bottom:400.680000px;}
.y132{bottom:404.280000px;}
.y29{bottom:405.360000px;}
.y91{bottom:407.160000px;}
.ybd{bottom:409.680000px;}
.y66{bottom:411.120000px;}
.y164{bottom:412.920000px;}
.y103{bottom:417.960000px;}
.y131{bottom:421.200000px;}
.y28{bottom:422.280000px;}
.y192{bottom:424.080000px;}
.yd8{bottom:427.320000px;}
.y163{bottom:427.680000px;}
.y65{bottom:428.400000px;}
.y90{bottom:434.520000px;}
.y102{bottom:435.600000px;}
.ybc{bottom:437.760000px;}
.y130{bottom:438.120000px;}
.y191{bottom:438.480000px;}
.y27{bottom:439.560000px;}
.y162{bottom:442.080000px;}
.y64{bottom:445.680000px;}
.y101{bottom:453.240000px;}
.y12f{bottom:454.680000px;}
.y26{bottom:456.840000px;}
.y8f{bottom:462.600000px;}
.yd7{bottom:465.120000px;}
.y63{bottom:468.000000px;}
.y12e{bottom:471.600000px;}
.y25{bottom:474.120000px;}
.ybb{bottom:477.000000px;}
.y100{bottom:480.600000px;}
.yd6{bottom:482.040000px;}
.y190{bottom:482.400000px;}
.y62{bottom:485.280000px;}
.y161{bottom:486.000000px;}
.y12d{bottom:488.520000px;}
.yba{bottom:494.280000px;}
.y18f{bottom:497.160000px;}
.yd5{bottom:498.960000px;}
.y8e{bottom:500.400000px;}
.y160{bottom:500.760000px;}
.y61{bottom:502.920000px;}
.y12c{bottom:505.440000px;}
.yff{bottom:508.680000px;}
.yb9{bottom:511.920000px;}
.y15f{bottom:515.520000px;}
.y8d{bottom:517.320000px;}
.y24{bottom:518.400000px;}
.y60{bottom:520.560000px;}
.y12b{bottom:522.000000px;}
.yd4{bottom:525.960000px;}
.y18e{bottom:526.320000px;}
.y15e{bottom:529.920000px;}
.y8c{bottom:534.240000px;}
.y5f{bottom:538.200000px;}
.yb8{bottom:538.920000px;}
.y18d{bottom:541.080000px;}
.yd3{bottom:542.520000px;}
.y15d{bottom:544.680000px;}
.yfe{bottom:547.560000px;}
.y8b{bottom:551.160000px;}
.y23{bottom:552.600000px;}
.yb7{bottom:555.480000px;}
.y5e{bottom:555.840000px;}
.y15c{bottom:559.440000px;}
.y22{bottom:563.400000px;}
.y8a{bottom:567.720000px;}
.y18c{bottom:570.240000px;}
.yd2{bottom:570.960000px;}
.y12a{bottom:572.760000px;}
.y5d{bottom:573.480000px;}
.y15b{bottom:573.840000px;}
.yb6{bottom:583.920000px;}
.y89{bottom:584.640000px;}
.y18b{bottom:585.000000px;}
.y21{bottom:587.880000px;}
.y15a{bottom:588.600000px;}
.y129{bottom:589.320000px;}
.y5c{bottom:591.120000px;}
.yfd{bottom:596.520000px;}
.y18a{bottom:599.400000px;}
.y88{bottom:601.560000px;}
.y20{bottom:603.360000px;}
.y128{bottom:606.240000px;}
.y5b{bottom:608.760000px;}
.yd1{bottom:609.120000px;}
.yfc{bottom:613.800000px;}
.y189{bottom:614.160000px;}
.y159{bottom:617.760000px;}
.y87{bottom:618.480000px;}
.y1f{bottom:618.840000px;}
.yb5{bottom:622.800000px;}
.y127{bottom:623.160000px;}
.y5a{bottom:626.400000px;}
.y188{bottom:628.920000px;}
.yfb{bottom:631.440000px;}
.y158{bottom:632.520000px;}
.y1e{bottom:634.320000px;}
.y86{bottom:635.040000px;}
.yb4{bottom:640.080000px;}
.yd0{bottom:643.320000px;}
.y126{bottom:644.760000px;}
.y157{bottom:646.920000px;}
.yfa{bottom:649.080000px;}
.y85{bottom:651.960000px;}
.y1d{bottom:654.840000px;}
.yb3{bottom:657.720000px;}
.y187{bottom:658.080000px;}
.y156{bottom:661.680000px;}
.y125{bottom:662.040000px;}
.yf9{bottom:666.720000px;}
.y84{bottom:668.880000px;}
.y1c{bottom:669.960000px;}
.ycf{bottom:670.680000px;}
.y59{bottom:671.040000px;}
.y186{bottom:672.840000px;}
.yb2{bottom:675.360000px;}
.y155{bottom:676.440000px;}
.y124{bottom:678.960000px;}
.yf8{bottom:684.360000px;}
.y83{bottom:685.800000px;}
.yce{bottom:686.880000px;}
.y185{bottom:687.240000px;}
.y154{bottom:690.840000px;}
.yb1{bottom:693.000000px;}
.y123{bottom:696.240000px;}
.yf7{bottom:702.000000px;}
.y82{bottom:702.360000px;}
.y1b{bottom:703.440000px;}
.y153{bottom:705.600000px;}
.yb0{bottom:710.640000px;}
.y122{bottom:713.520000px;}
.y184{bottom:716.760000px;}
.y81{bottom:719.280000px;}
.ycd{bottom:719.640000px;}
.y152{bottom:720.360000px;}
.y1a{bottom:727.920000px;}
.y121{bottom:730.440000px;}
.y183{bottom:731.160000px;}
.y151{bottom:734.760000px;}
.ycc{bottom:736.200000px;}
.yf6{bottom:737.280000px;}
.yaf{bottom:738.000000px;}
.y19{bottom:743.400000px;}
.y58{bottom:745.200000px;}
.y182{bottom:745.920000px;}
.y80{bottom:746.280000px;}
.y120{bottom:747.720000px;}
.y150{bottom:749.520000px;}
.yf5{bottom:754.920000px;}
.y18{bottom:758.880000px;}
.y181{bottom:760.320000px;}
.y57{bottom:762.840000px;}
.ycb{bottom:763.560000px;}
.y14f{bottom:764.280000px;}
.y11f{bottom:765.000000px;}
.yae{bottom:766.440000px;}
.yf4{bottom:772.560000px;}
.y180{bottom:775.080000px;}
.y14e{bottom:778.680000px;}
.y56{bottom:780.480000px;}
.yca{bottom:780.840000px;}
.y11e{bottom:781.920000px;}
.y17{bottom:788.760000px;}
.y17f{bottom:789.840000px;}
.yf3{bottom:790.200000px;}
.y7f{bottom:791.280000px;}
.y14d{bottom:793.440000px;}
.y55{bottom:798.120000px;}
.y11d{bottom:799.200000px;}
.y17e{bottom:804.240000px;}
.yad{bottom:805.320000px;}
.y14c{bottom:808.200000px;}
.y54{bottom:815.760000px;}
.y11c{bottom:816.480000px;}
.yf2{bottom:817.560000px;}
.y17d{bottom:819.000000px;}
.yac{bottom:822.600000px;}
.y7e{bottom:829.080000px;}
.y53{bottom:833.400000px;}
.y11b{bottom:833.760000px;}
.y16{bottom:835.200000px;}
.yab{bottom:840.240000px;}
.yea{bottom:843.480000px;}
.y7d{bottom:846.000000px;}
.y17c{bottom:848.160000px;}
.y15{bottom:849.960000px;}
.y11a{bottom:850.680000px;}
.y52{bottom:851.040000px;}
.yaa{bottom:857.880000px;}
.ye9{bottom:858.960000px;}
.y7c{bottom:862.920000px;}
.y14{bottom:864.720000px;}
.y14b{bottom:865.440000px;}
.y119{bottom:867.960000px;}
.y51{bottom:868.680000px;}
.ye8{bottom:873.720000px;}
.ya9{bottom:875.520000px;}
.y17b{bottom:877.680000px;}
.y7b{bottom:879.480000px;}
.y13{bottom:883.800000px;}
.yf1{bottom:884.880000px;}
.y50{bottom:886.320000px;}
.y118{bottom:889.560000px;}
.y17a{bottom:892.080000px;}
.ya8{bottom:893.160000px;}
.ye7{bottom:897.120000px;}
.yf0{bottom:902.160000px;}
.y4f{bottom:904.320000px;}
.y7a{bottom:906.840000px;}
.ya7{bottom:910.800000px;}
.ye6{bottom:912.600000px;}
.y12{bottom:919.800000px;}
.y14a{bottom:920.880000px;}
.y179{bottom:921.600000px;}
.y79{bottom:923.400000px;}
.y117{bottom:924.120000px;}
.ye4{bottom:924.480000px;}
.ya6{bottom:928.440000px;}
.y11{bottom:934.560000px;}
.y178{bottom:936.000000px;}
.y149{bottom:937.080000px;}
.y4e{bottom:939.240000px;}
.y116{bottom:941.040000px;}
.ya5{bottom:946.080000px;}
.yef{bottom:947.160000px;}
.y10{bottom:948.960000px;}
.y177{bottom:950.760000px;}
.y78{bottom:951.480000px;}
.y148{bottom:952.920000px;}
.y4d{bottom:956.520000px;}
.y115{bottom:958.320000px;}
.ya4{bottom:963.720000px;}
.y176{bottom:965.160000px;}
.yf{bottom:968.400000px;}
.y147{bottom:968.760000px;}
.y4c{bottom:973.440000px;}
.yee{bottom:975.600000px;}
.y175{bottom:979.920000px;}
.ya3{bottom:981.360000px;}
.y146{bottom:984.600000px;}
.y77{bottom:989.280000px;}
.y114{bottom:992.520000px;}
.y174{bottom:994.680000px;}
.y4b{bottom:995.400000px;}
.ya2{bottom:999.000000px;}
.y145{bottom:1000.800000px;}
.y173{bottom:1009.080000px;}
.y113{bottom:1009.800000px;}
.y4a{bottom:1012.320000px;}
.yed{bottom:1014.480000px;}
.ya1{bottom:1016.640000px;}
.y172{bottom:1023.840000px;}
.y112{bottom:1027.080000px;}
.y49{bottom:1029.600000px;}
.yec{bottom:1031.760000px;}
.y76{bottom:1032.120000px;}
.y144{bottom:1032.840000px;}
.ye{bottom:1033.200000px;}
.y171{bottom:1038.600000px;}
.ya0{bottom:1044.000000px;}
.y75{bottom:1049.040000px;}
.yeb{bottom:1049.400000px;}
.y48{bottom:1051.200000px;}
.y170{bottom:1053.000000px;}
.y9f{bottom:1060.200000px;}
.yd{bottom:1060.920000px;}
.y111{bottom:1061.280000px;}
.y74{bottom:1065.960000px;}
.y16f{bottom:1067.760000px;}
.y47{bottom:1068.480000px;}
.y9e{bottom:1076.760000px;}
.y110{bottom:1078.560000px;}
.y16e{bottom:1082.520000px;}
.y46{bottom:1085.760000px;}
.yc{bottom:1088.280000px;}
.y143{bottom:1090.800000px;}
.y73{bottom:1092.960000px;}
.y16d{bottom:1096.920000px;}
.y45{bottom:1107.360000px;}
.y142{bottom:1107.720000px;}
.y16c{bottom:1111.680000px;}
.y72{bottom:1121.400000px;}
.y10f{bottom:1122.840000px;}
.y44{bottom:1124.280000px;}
.y16b{bottom:1126.080000px;}
.y4{bottom:1157.760000px;}
.y3{bottom:1171.440000px;}
.y2{bottom:1185.120000px;}
.y1{bottom:1198.800000px;}
.h5{height:15.480000px;}
.h8{height:17.280000px;}
.h14{height:21.960000px;}
.hd{height:26.120160px;}
.h4{height:44.557920px;}
.h3{height:45.267840px;}
.h7{height:49.803204px;}
.h1{height:50.703840px;}
.h2{height:51.511680px;}
.hc{height:53.776800px;}
.h15{height:54.633600px;}
.h6{height:58.385600px;}
.he{height:59.315830px;}
.hf{height:61.459200px;}
.h10{height:62.438400px;}
.h13{height:64.532160px;}
.hb{height:67.605120px;}
.h9{height:73.054688px;}
.h12{height:73.406250px;}
.h11{height:76.824000px;}
.ha{height:102.943520px;}
.h0{height:1263.000000px;}
.w4{width:0.720000px;}
.w2{width:3.240000px;}
.w3{width:4.680000px;}
.w6{width:10.080000px;}
.w5{width:10.440000px;}
.w1{width:18.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:95.760000px;}
.xf{left:117.000000px;}
.xe{left:138.240000px;}
.x1{left:325.440000px;}
.x12{left:376.560000px;}
.x10{left:456.840000px;}
.x11{left:478.080000px;}
.xd{left:566.280000px;}
.x7{left:584.280000px;}
.xb{left:609.120000px;}
.xc{left:613.080000px;}
.xa{left:619.920000px;}
.x9{left:656.280000px;}
.x14{left:662.040000px;}
.x8{left:702.360000px;}
.x3{left:769.680000px;}
.x4{left:788.040000px;}
.x5{left:791.280000px;}
.x6{left:795.960000px;}
.x13{left:798.120000px;}
@media print{
.v4{vertical-align:-71.680000pt;}
.v2{vertical-align:-51.200000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.240000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005132pt;}
.ls15{letter-spacing:0.027648pt;}
.ls2{letter-spacing:0.044800pt;}
.ls9{letter-spacing:0.055297pt;}
.lsa{letter-spacing:0.105217pt;}
.ls0{letter-spacing:0.178689pt;}
.ls1{letter-spacing:0.358400pt;}
.ls6{letter-spacing:0.415745pt;}
.ls3{letter-spacing:0.432506pt;}
.ls10{letter-spacing:0.585985pt;}
.ls17{letter-spacing:0.591360pt;}
.ls18{letter-spacing:0.611328pt;}
.ls14{letter-spacing:1.307904pt;}
.lsb{letter-spacing:1.712762pt;}
.lsd{letter-spacing:2.242304pt;}
.ls12{letter-spacing:2.588161pt;}
.ls11{letter-spacing:7.709185pt;}
.ls4{letter-spacing:11.954811pt;}
.lsf{letter-spacing:14.110465pt;}
.ls16{letter-spacing:15.390721pt;}
.ls13{letter-spacing:16.670977pt;}
.ls8{letter-spacing:17.542401pt;}
.lse{letter-spacing:23.543041pt;}
.ls7{letter-spacing:33.201410pt;}
.ws9{word-spacing:-64.000000pt;}
.wsd{word-spacing:-42.240000pt;}
.ws5{word-spacing:-12.840960pt;}
.ws6{word-spacing:-12.159867pt;}
.ws7{word-spacing:-11.673600pt;}
.ws2{word-spacing:-11.089798pt;}
.ws3{word-spacing:-10.572800pt;}
.wsc{word-spacing:-10.259200pt;}
.wse{word-spacing:-10.222080pt;}
.ws4{word-spacing:-10.214400pt;}
.wsf{word-spacing:-9.630720pt;}
.wsa{word-spacing:-9.047040pt;}
.ws0{word-spacing:-8.463360pt;}
.wsb{word-spacing:-6.712198pt;}
.ws1{word-spacing:-5.544838pt;}
.ws8{word-spacing:0.000000pt;}
._30{margin-left:-9.985517pt;}
._c{margin-left:-4.961280pt;}
._25{margin-left:-2.915919pt;}
._b{margin-left:-1.903679pt;}
._2{margin-left:-0.916207pt;}
._0{width:1.140480pt;}
._5{width:2.407680pt;}
._d{width:3.367599pt;}
._3{width:4.266240pt;}
._4{width:5.280000pt;}
._e{width:6.247189pt;}
._17{width:7.281172pt;}
._6{width:8.194560pt;}
._1b{width:9.367935pt;}
._18{width:10.510751pt;}
._2f{width:11.941120pt;}
._10{width:12.997422pt;}
._f{width:14.036625pt;}
._12{width:15.217133pt;}
._29{width:16.163074pt;}
._26{width:17.254400pt;}
._22{width:18.664641pt;}
._21{width:19.823679pt;}
._1{width:21.077760pt;}
._19{width:22.061807pt;}
._1a{width:23.142400pt;}
._20{width:24.073279pt;}
._1f{width:25.046079pt;}
._14{width:26.214400pt;}
._13{width:27.139886pt;}
._15{width:28.620800pt;}
._16{width:29.612158pt;}
._1e{width:31.334400pt;}
._9{width:32.818729pt;}
._a{width:33.965067pt;}
._1c{width:35.174400pt;}
._1d{width:36.863522pt;}
._2a{width:38.656000pt;}
._2b{width:39.980086pt;}
._8{width:41.936379pt;}
._7{width:42.996958pt;}
._2e{width:44.820360pt;}
._24{width:48.993007pt;}
._23{width:50.180478pt;}
._2d{width:52.614917pt;}
._11{width:53.549807pt;}
._2c{width:54.537279pt;}
._27{width:62.049007pt;}
._28{width:63.170606pt;}
.fs9{font-size:21.760000pt;}
.fs3{font-size:24.319467pt;}
.fsd{font-size:29.439467pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fsc{font-size:39.680000pt;}
.fs0{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs4{font-size:48.639467pt;}
.fsa{font-size:51.200000pt;}
.fsb{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:85.759467pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.880000pt;}
.ye5{bottom:4.160000pt;}
.y8{bottom:50.560000pt;}
.y43{bottom:51.520000pt;}
.y7{bottom:62.720000pt;}
.yb{bottom:64.960000pt;}
.y6{bottom:73.280000pt;}
.y9{bottom:78.720000pt;}
.y5{bottom:84.160000pt;}
.yc9{bottom:118.400000pt;}
.ye3{bottom:118.720000pt;}
.y141{bottom:127.040000pt;}
.y9d{bottom:128.320000pt;}
.y10e{bottom:129.600000pt;}
.y38{bottom:131.200000pt;}
.y42{bottom:133.760000pt;}
.y71{bottom:134.080000pt;}
.y140{bottom:142.080000pt;}
.y9c{bottom:143.040000pt;}
.y10d{bottom:144.960000pt;}
.y37{bottom:146.560000pt;}
.ye2{bottom:148.800000pt;}
.y70{bottom:149.440000pt;}
.yc8{bottom:149.760000pt;}
.y41{bottom:152.960000pt;}
.y13f{bottom:156.800000pt;}
.y9b{bottom:158.080000pt;}
.y10c{bottom:160.960000pt;}
.y36{bottom:161.920000pt;}
.ye1{bottom:163.520000pt;}
.y6f{bottom:164.480000pt;}
.yc7{bottom:165.440000pt;}
.y40{bottom:168.320000pt;}
.y13e{bottom:171.840000pt;}
.y9a{bottom:173.120000pt;}
.y10b{bottom:176.640000pt;}
.y35{bottom:176.960000pt;}
.y6e{bottom:179.840000pt;}
.y3f{bottom:183.680000pt;}
.y13d{bottom:186.880000pt;}
.ye0{bottom:187.840000pt;}
.y99{bottom:188.160000pt;}
.yc6{bottom:189.440000pt;}
.y34{bottom:192.320000pt;}
.y6d{bottom:195.200000pt;}
.y13c{bottom:201.920000pt;}
.ydf{bottom:202.560000pt;}
.y3e{bottom:202.880000pt;}
.yc5{bottom:204.160000pt;}
.y33{bottom:207.680000pt;}
.y10a{bottom:208.000000pt;}
.y98{bottom:217.920000pt;}
.y3d{bottom:218.240000pt;}
.y6c{bottom:219.200000pt;}
.y13b{bottom:220.800000pt;}
.y32{bottom:223.040000pt;}
.y109{bottom:223.680000pt;}
.yde{bottom:227.520000pt;}
.yc4{bottom:229.120000pt;}
.y97{bottom:232.960000pt;}
.y3c{bottom:233.280000pt;}
.y6b{bottom:233.920000pt;}
.y13a{bottom:235.840000pt;}
.y31{bottom:238.080000pt;}
.y108{bottom:239.360000pt;}
.y96{bottom:248.000000pt;}
.y139{bottom:250.560000pt;}
.y3b{bottom:252.800000pt;}
.y30{bottom:253.440000pt;}
.y107{bottom:255.040000pt;}
.y6a{bottom:259.200000pt;}
.ydd{bottom:261.120000pt;}
.yc3{bottom:264.000000pt;}
.y138{bottom:265.600000pt;}
.y3a{bottom:267.840000pt;}
.y2f{bottom:268.800000pt;}
.y106{bottom:270.720000pt;}
.y95{bottom:272.320000pt;}
.y194{bottom:273.280000pt;}
.yc2{bottom:279.360000pt;}
.y137{bottom:280.640000pt;}
.y39{bottom:282.880000pt;}
.y2e{bottom:283.840000pt;}
.y16a{bottom:288.960000pt;}
.y69{bottom:292.480000pt;}
.yc1{bottom:295.040000pt;}
.y136{bottom:295.680000pt;}
.y94{bottom:297.280000pt;}
.y2d{bottom:299.200000pt;}
.ydc{bottom:300.480000pt;}
.y169{bottom:302.080000pt;}
.y135{bottom:310.400000pt;}
.yc0{bottom:310.720000pt;}
.y2c{bottom:314.560000pt;}
.y168{bottom:315.200000pt;}
.ydb{bottom:315.520000pt;}
.y105{bottom:320.000000pt;}
.y134{bottom:325.440000pt;}
.y167{bottom:328.000000pt;}
.y2b{bottom:329.600000pt;}
.yda{bottom:330.560000pt;}
.y93{bottom:331.200000pt;}
.ybf{bottom:334.720000pt;}
.y68{bottom:335.040000pt;}
.y193{bottom:340.160000pt;}
.y133{bottom:340.480000pt;}
.y166{bottom:341.120000pt;}
.y2a{bottom:344.960000pt;}
.y92{bottom:346.560000pt;}
.ybe{bottom:349.440000pt;}
.y67{bottom:350.400000pt;}
.y165{bottom:354.240000pt;}
.yd9{bottom:354.880000pt;}
.y104{bottom:356.160000pt;}
.y132{bottom:359.360000pt;}
.y29{bottom:360.320000pt;}
.y91{bottom:361.920000pt;}
.ybd{bottom:364.160000pt;}
.y66{bottom:365.440000pt;}
.y164{bottom:367.040000pt;}
.y103{bottom:371.520000pt;}
.y131{bottom:374.400000pt;}
.y28{bottom:375.360000pt;}
.y192{bottom:376.960000pt;}
.yd8{bottom:379.840000pt;}
.y163{bottom:380.160000pt;}
.y65{bottom:380.800000pt;}
.y90{bottom:386.240000pt;}
.y102{bottom:387.200000pt;}
.ybc{bottom:389.120000pt;}
.y130{bottom:389.440000pt;}
.y191{bottom:389.760000pt;}
.y27{bottom:390.720000pt;}
.y162{bottom:392.960000pt;}
.y64{bottom:396.160000pt;}
.y101{bottom:402.880000pt;}
.y12f{bottom:404.160000pt;}
.y26{bottom:406.080000pt;}
.y8f{bottom:411.200000pt;}
.yd7{bottom:413.440000pt;}
.y63{bottom:416.000000pt;}
.y12e{bottom:419.200000pt;}
.y25{bottom:421.440000pt;}
.ybb{bottom:424.000000pt;}
.y100{bottom:427.200000pt;}
.yd6{bottom:428.480000pt;}
.y190{bottom:428.800000pt;}
.y62{bottom:431.360000pt;}
.y161{bottom:432.000000pt;}
.y12d{bottom:434.240000pt;}
.yba{bottom:439.360000pt;}
.y18f{bottom:441.920000pt;}
.yd5{bottom:443.520000pt;}
.y8e{bottom:444.800000pt;}
.y160{bottom:445.120000pt;}
.y61{bottom:447.040000pt;}
.y12c{bottom:449.280000pt;}
.yff{bottom:452.160000pt;}
.yb9{bottom:455.040000pt;}
.y15f{bottom:458.240000pt;}
.y8d{bottom:459.840000pt;}
.y24{bottom:460.800000pt;}
.y60{bottom:462.720000pt;}
.y12b{bottom:464.000000pt;}
.yd4{bottom:467.520000pt;}
.y18e{bottom:467.840000pt;}
.y15e{bottom:471.040000pt;}
.y8c{bottom:474.880000pt;}
.y5f{bottom:478.400000pt;}
.yb8{bottom:479.040000pt;}
.y18d{bottom:480.960000pt;}
.yd3{bottom:482.240000pt;}
.y15d{bottom:484.160000pt;}
.yfe{bottom:486.720000pt;}
.y8b{bottom:489.920000pt;}
.y23{bottom:491.200000pt;}
.yb7{bottom:493.760000pt;}
.y5e{bottom:494.080000pt;}
.y15c{bottom:497.280000pt;}
.y22{bottom:500.800000pt;}
.y8a{bottom:504.640000pt;}
.y18c{bottom:506.880000pt;}
.yd2{bottom:507.520000pt;}
.y12a{bottom:509.120000pt;}
.y5d{bottom:509.760000pt;}
.y15b{bottom:510.080000pt;}
.yb6{bottom:519.040000pt;}
.y89{bottom:519.680000pt;}
.y18b{bottom:520.000000pt;}
.y21{bottom:522.560000pt;}
.y15a{bottom:523.200000pt;}
.y129{bottom:523.840000pt;}
.y5c{bottom:525.440000pt;}
.yfd{bottom:530.240000pt;}
.y18a{bottom:532.800000pt;}
.y88{bottom:534.720000pt;}
.y20{bottom:536.320000pt;}
.y128{bottom:538.880000pt;}
.y5b{bottom:541.120000pt;}
.yd1{bottom:541.440000pt;}
.yfc{bottom:545.600000pt;}
.y189{bottom:545.920000pt;}
.y159{bottom:549.120000pt;}
.y87{bottom:549.760000pt;}
.y1f{bottom:550.080000pt;}
.yb5{bottom:553.600000pt;}
.y127{bottom:553.920000pt;}
.y5a{bottom:556.800000pt;}
.y188{bottom:559.040000pt;}
.yfb{bottom:561.280000pt;}
.y158{bottom:562.240000pt;}
.y1e{bottom:563.840000pt;}
.y86{bottom:564.480000pt;}
.yb4{bottom:568.960000pt;}
.yd0{bottom:571.840000pt;}
.y126{bottom:573.120000pt;}
.y157{bottom:575.040000pt;}
.yfa{bottom:576.960000pt;}
.y85{bottom:579.520000pt;}
.y1d{bottom:582.080000pt;}
.yb3{bottom:584.640000pt;}
.y187{bottom:584.960000pt;}
.y156{bottom:588.160000pt;}
.y125{bottom:588.480000pt;}
.yf9{bottom:592.640000pt;}
.y84{bottom:594.560000pt;}
.y1c{bottom:595.520000pt;}
.ycf{bottom:596.160000pt;}
.y59{bottom:596.480000pt;}
.y186{bottom:598.080000pt;}
.yb2{bottom:600.320000pt;}
.y155{bottom:601.280000pt;}
.y124{bottom:603.520000pt;}
.yf8{bottom:608.320000pt;}
.y83{bottom:609.600000pt;}
.yce{bottom:610.560000pt;}
.y185{bottom:610.880000pt;}
.y154{bottom:614.080000pt;}
.yb1{bottom:616.000000pt;}
.y123{bottom:618.880000pt;}
.yf7{bottom:624.000000pt;}
.y82{bottom:624.320000pt;}
.y1b{bottom:625.280000pt;}
.y153{bottom:627.200000pt;}
.yb0{bottom:631.680000pt;}
.y122{bottom:634.240000pt;}
.y184{bottom:637.120000pt;}
.y81{bottom:639.360000pt;}
.ycd{bottom:639.680000pt;}
.y152{bottom:640.320000pt;}
.y1a{bottom:647.040000pt;}
.y121{bottom:649.280000pt;}
.y183{bottom:649.920000pt;}
.y151{bottom:653.120000pt;}
.ycc{bottom:654.400000pt;}
.yf6{bottom:655.360000pt;}
.yaf{bottom:656.000000pt;}
.y19{bottom:660.800000pt;}
.y58{bottom:662.400000pt;}
.y182{bottom:663.040000pt;}
.y80{bottom:663.360000pt;}
.y120{bottom:664.640000pt;}
.y150{bottom:666.240000pt;}
.yf5{bottom:671.040000pt;}
.y18{bottom:674.560000pt;}
.y181{bottom:675.840000pt;}
.y57{bottom:678.080000pt;}
.ycb{bottom:678.720000pt;}
.y14f{bottom:679.360000pt;}
.y11f{bottom:680.000000pt;}
.yae{bottom:681.280000pt;}
.yf4{bottom:686.720000pt;}
.y180{bottom:688.960000pt;}
.y14e{bottom:692.160000pt;}
.y56{bottom:693.760000pt;}
.yca{bottom:694.080000pt;}
.y11e{bottom:695.040000pt;}
.y17{bottom:701.120000pt;}
.y17f{bottom:702.080000pt;}
.yf3{bottom:702.400000pt;}
.y7f{bottom:703.360000pt;}
.y14d{bottom:705.280000pt;}
.y55{bottom:709.440000pt;}
.y11d{bottom:710.400000pt;}
.y17e{bottom:714.880000pt;}
.yad{bottom:715.840000pt;}
.y14c{bottom:718.400000pt;}
.y54{bottom:725.120000pt;}
.y11c{bottom:725.760000pt;}
.yf2{bottom:726.720000pt;}
.y17d{bottom:728.000000pt;}
.yac{bottom:731.200000pt;}
.y7e{bottom:736.960000pt;}
.y53{bottom:740.800000pt;}
.y11b{bottom:741.120000pt;}
.y16{bottom:742.400000pt;}
.yab{bottom:746.880000pt;}
.yea{bottom:749.760000pt;}
.y7d{bottom:752.000000pt;}
.y17c{bottom:753.920000pt;}
.y15{bottom:755.520000pt;}
.y11a{bottom:756.160000pt;}
.y52{bottom:756.480000pt;}
.yaa{bottom:762.560000pt;}
.ye9{bottom:763.520000pt;}
.y7c{bottom:767.040000pt;}
.y14{bottom:768.640000pt;}
.y14b{bottom:769.280000pt;}
.y119{bottom:771.520000pt;}
.y51{bottom:772.160000pt;}
.ye8{bottom:776.640000pt;}
.ya9{bottom:778.240000pt;}
.y17b{bottom:780.160000pt;}
.y7b{bottom:781.760000pt;}
.y13{bottom:785.600000pt;}
.yf1{bottom:786.560000pt;}
.y50{bottom:787.840000pt;}
.y118{bottom:790.720000pt;}
.y17a{bottom:792.960000pt;}
.ya8{bottom:793.920000pt;}
.ye7{bottom:797.440000pt;}
.yf0{bottom:801.920000pt;}
.y4f{bottom:803.840000pt;}
.y7a{bottom:806.080000pt;}
.ya7{bottom:809.600000pt;}
.ye6{bottom:811.200000pt;}
.y12{bottom:817.600000pt;}
.y14a{bottom:818.560000pt;}
.y179{bottom:819.200000pt;}
.y79{bottom:820.800000pt;}
.y117{bottom:821.440000pt;}
.ye4{bottom:821.760000pt;}
.ya6{bottom:825.280000pt;}
.y11{bottom:830.720000pt;}
.y178{bottom:832.000000pt;}
.y149{bottom:832.960000pt;}
.y4e{bottom:834.880000pt;}
.y116{bottom:836.480000pt;}
.ya5{bottom:840.960000pt;}
.yef{bottom:841.920000pt;}
.y10{bottom:843.520000pt;}
.y177{bottom:845.120000pt;}
.y78{bottom:845.760000pt;}
.y148{bottom:847.040000pt;}
.y4d{bottom:850.240000pt;}
.y115{bottom:851.840000pt;}
.ya4{bottom:856.640000pt;}
.y176{bottom:857.920000pt;}
.yf{bottom:860.800000pt;}
.y147{bottom:861.120000pt;}
.y4c{bottom:865.280000pt;}
.yee{bottom:867.200000pt;}
.y175{bottom:871.040000pt;}
.ya3{bottom:872.320000pt;}
.y146{bottom:875.200000pt;}
.y77{bottom:879.360000pt;}
.y114{bottom:882.240000pt;}
.y174{bottom:884.160000pt;}
.y4b{bottom:884.800000pt;}
.ya2{bottom:888.000000pt;}
.y145{bottom:889.600000pt;}
.y173{bottom:896.960000pt;}
.y113{bottom:897.600000pt;}
.y4a{bottom:899.840000pt;}
.yed{bottom:901.760000pt;}
.ya1{bottom:903.680000pt;}
.y172{bottom:910.080000pt;}
.y112{bottom:912.960000pt;}
.y49{bottom:915.200000pt;}
.yec{bottom:917.120000pt;}
.y76{bottom:917.440000pt;}
.y144{bottom:918.080000pt;}
.ye{bottom:918.400000pt;}
.y171{bottom:923.200000pt;}
.ya0{bottom:928.000000pt;}
.y75{bottom:932.480000pt;}
.yeb{bottom:932.800000pt;}
.y48{bottom:934.400000pt;}
.y170{bottom:936.000000pt;}
.y9f{bottom:942.400000pt;}
.yd{bottom:943.040000pt;}
.y111{bottom:943.360000pt;}
.y74{bottom:947.520000pt;}
.y16f{bottom:949.120000pt;}
.y47{bottom:949.760000pt;}
.y9e{bottom:957.120000pt;}
.y110{bottom:958.720000pt;}
.y16e{bottom:962.240000pt;}
.y46{bottom:965.120000pt;}
.yc{bottom:967.360000pt;}
.y143{bottom:969.600000pt;}
.y73{bottom:971.520000pt;}
.y16d{bottom:975.040000pt;}
.y45{bottom:984.320000pt;}
.y142{bottom:984.640000pt;}
.y16c{bottom:988.160000pt;}
.y72{bottom:996.800000pt;}
.y10f{bottom:998.080000pt;}
.y44{bottom:999.360000pt;}
.y16b{bottom:1000.960000pt;}
.y4{bottom:1029.120000pt;}
.y3{bottom:1041.280000pt;}
.y2{bottom:1053.440000pt;}
.y1{bottom:1065.600000pt;}
.h5{height:13.760000pt;}
.h8{height:15.360000pt;}
.h14{height:19.520000pt;}
.hd{height:23.217920pt;}
.h4{height:39.607040pt;}
.h3{height:40.238080pt;}
.h7{height:44.269515pt;}
.h1{height:45.070080pt;}
.h2{height:45.788160pt;}
.hc{height:47.801600pt;}
.h15{height:48.563200pt;}
.h6{height:51.898311pt;}
.he{height:52.725182pt;}
.hf{height:54.630400pt;}
.h10{height:55.500800pt;}
.h13{height:57.361920pt;}
.hb{height:60.093440pt;}
.h9{height:64.937500pt;}
.h12{height:65.250000pt;}
.h11{height:68.288000pt;}
.ha{height:91.505351pt;}
.h0{height:1122.666667pt;}
.w4{width:0.640000pt;}
.w2{width:2.880000pt;}
.w3{width:4.160000pt;}
.w6{width:8.960000pt;}
.w5{width:9.280000pt;}
.w1{width:16.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:85.120000pt;}
.xf{left:104.000000pt;}
.xe{left:122.880000pt;}
.x1{left:289.280000pt;}
.x12{left:334.720000pt;}
.x10{left:406.080000pt;}
.x11{left:424.960000pt;}
.xd{left:503.360000pt;}
.x7{left:519.360000pt;}
.xb{left:541.440000pt;}
.xc{left:544.960000pt;}
.xa{left:551.040000pt;}
.x9{left:583.360000pt;}
.x14{left:588.480000pt;}
.x8{left:624.320000pt;}
.x3{left:684.160000pt;}
.x4{left:700.480000pt;}
.x5{left:703.360000pt;}
.x6{left:707.520000pt;}
.x13{left:709.440000pt;}
}




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