
    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_f1f8bdb634c71f2dd26059d6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.134277;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_62d2cf8c4fdededa4170c035.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_955ac47edfde08cdc988ae33.woff')format("woff");}.ff3{font-family:ff3;line-height:1.456055;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_348fde536bcedff915e5ab27.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_58743f58490e6a79cc0fdd65.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_6bd3ac0df4b8024fe7d1b08e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_4f6b352f870fce93d26b820f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.980000px;}
.v1{vertical-align:16.056000px;}
.v3{vertical-align:17.115000px;}
.ls1a{letter-spacing:-6.642000px;}
.ls8{letter-spacing:-4.320000px;}
.ls28{letter-spacing:-2.691000px;}
.ls27{letter-spacing:-2.622000px;}
.ls19{letter-spacing:-2.475000px;}
.ls40{letter-spacing:-2.376000px;}
.ls29{letter-spacing:-2.346000px;}
.ls3e{letter-spacing:-2.280000px;}
.ls2d{letter-spacing:-2.208000px;}
.ls1c{letter-spacing:-1.932000px;}
.ls9{letter-spacing:-1.848000px;}
.ls3f{letter-spacing:-1.728000px;}
.ls20{letter-spacing:-1.656000px;}
.ls32{letter-spacing:-1.215000px;}
.ls11{letter-spacing:-0.855000px;}
.ls1b{letter-spacing:-0.690000px;}
.ls31{letter-spacing:-0.627000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.138000px;}
.ls12{letter-spacing:-0.081000px;}
.ls16{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.ls22{letter-spacing:0.009312px;}
.ls2f{letter-spacing:0.009570px;}
.ls23{letter-spacing:0.009912px;}
.ls1f{letter-spacing:0.621000px;}
.lsf{letter-spacing:0.675000px;}
.ls30{letter-spacing:0.828000px;}
.ls2a{letter-spacing:1.449000px;}
.lsc{letter-spacing:2.100000px;}
.ls3d{letter-spacing:2.160000px;}
.ls37{letter-spacing:2.324700px;}
.lse{letter-spacing:2.400000px;}
.ls2b{letter-spacing:2.553000px;}
.ls36{letter-spacing:2.961000px;}
.ls3a{letter-spacing:3.213000px;}
.ls1{letter-spacing:4.200000px;}
.ls38{letter-spacing:4.951800px;}
.ls3{letter-spacing:5.760000px;}
.ls4{letter-spacing:5.820000px;}
.lsa{letter-spacing:5.880000px;}
.ls10{letter-spacing:6.000000px;}
.ls35{letter-spacing:6.300000px;}
.ls18{letter-spacing:6.831000px;}
.ls1e{letter-spacing:6.900000px;}
.ls24{letter-spacing:8.160156px;}
.ls25{letter-spacing:8.160756px;}
.ls34{letter-spacing:9.972900px;}
.ls17{letter-spacing:473.904000px;}
.ls33{letter-spacing:474.639000px;}
.ls3b{letter-spacing:474.826800px;}
.ls2c{letter-spacing:475.081800px;}
.ls21{letter-spacing:476.506800px;}
.lsb{letter-spacing:502.158600px;}
.ls3c{letter-spacing:952.522800px;}
.ls26{letter-spacing:953.017800px;}
.ls2e{letter-spacing:955.642800px;}
.ls39{letter-spacing:959.692800px;}
.ls1d{letter-spacing:961.672800px;}
.ls14{letter-spacing:990.022800px;}
.ls0{letter-spacing:997.192800px;}
.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;}
}
.ws20{word-spacing:-23.943000px;}
.ws18{word-spacing:-23.874000px;}
.ws32{word-spacing:-22.860000px;}
.ws0{word-spacing:-22.740000px;}
.wsc{word-spacing:-21.750000px;}
.ws2c{word-spacing:-21.546000px;}
.ws28{word-spacing:-19.596000px;}
.ws14{word-spacing:-19.389000px;}
.ws17{word-spacing:-18.600000px;}
.ws27{word-spacing:-18.492000px;}
.ws2b{word-spacing:-17.871000px;}
.ws31{word-spacing:-17.703000px;}
.ws19{word-spacing:-17.043000px;}
.ws1{word-spacing:-16.860000px;}
.ws1a{word-spacing:-16.353000px;}
.ws2e{word-spacing:-15.561000px;}
.ws2a{word-spacing:-15.387000px;}
.ws21{word-spacing:-15.174000px;}
.ws1b{word-spacing:-15.111000px;}
.ws33{word-spacing:-14.820000px;}
.ws26{word-spacing:-14.697000px;}
.ws24{word-spacing:-14.421000px;}
.ws25{word-spacing:-14.352000px;}
.wsd{word-spacing:-13.902000px;}
.ws1c{word-spacing:-13.338000px;}
.ws35{word-spacing:-12.540000px;}
.ws36{word-spacing:-11.610000px;}
.ws13{word-spacing:-11.303787px;}
.ws37{word-spacing:-10.962000px;}
.ws34{word-spacing:-9.829380px;}
.ws22{word-spacing:-6.900000px;}
.ws1e{word-spacing:-6.831000px;}
.ws2f{word-spacing:-6.300000px;}
.wsf{word-spacing:-6.000000px;}
.wsb{word-spacing:-5.880000px;}
.ws4{word-spacing:-5.820000px;}
.ws3{word-spacing:-5.760000px;}
.wsa{word-spacing:-4.200000px;}
.ws30{word-spacing:-3.213000px;}
.wse{word-spacing:-2.400000px;}
.ws38{word-spacing:-2.160000px;}
.ws1f{word-spacing:-1.518000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.069000px;}
.ws11{word-spacing:0.081000px;}
.ws12{word-spacing:0.138000px;}
.ws15{word-spacing:0.180000px;}
.ws5{word-spacing:0.240000px;}
.ws6{word-spacing:0.324000px;}
.ws7{word-spacing:0.540000px;}
.ws2d{word-spacing:0.627000px;}
.ws10{word-spacing:0.855000px;}
.ws23{word-spacing:1.656000px;}
.ws9{word-spacing:1.848000px;}
.ws29{word-spacing:2.208000px;}
.ws8{word-spacing:4.320000px;}
.ws1d{word-spacing:6.642000px;}
._b{margin-left:-26.676000px;}
._19{margin-left:-17.106000px;}
._a{margin-left:-9.485700px;}
._c{margin-left:-8.444100px;}
._1d{margin-left:-7.214400px;}
._6{margin-left:-6.056100px;}
._7{margin-left:-4.944000px;}
._8{margin-left:-3.943800px;}
._2{margin-left:-2.765700px;}
._4{margin-left:-1.506300px;}
._3{width:1.033800px;}
._1{width:2.400000px;}
._9{width:4.009500px;}
._d{width:5.243700px;}
._5{width:6.250800px;}
._13{width:7.803900px;}
._15{width:8.894100px;}
._14{width:10.577700px;}
._f{width:12.036000px;}
._10{width:13.482000px;}
._18{width:14.563500px;}
._1f{width:15.666000px;}
._1a{width:17.091300px;}
._12{width:21.478800px;}
._17{width:23.453400px;}
._1c{width:25.630200px;}
._1b{width:27.704160px;}
._20{width:29.074980px;}
._1e{width:34.256400px;}
._16{width:43.445160px;}
._e{width:62.454000px;}
._11{width:260.610000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y18c{bottom:106.188900px;}
.y14b{bottom:106.215300px;}
.y12c{bottom:106.253250px;}
.y6a{bottom:106.281300px;}
.y8c{bottom:106.290300px;}
.y1ad{bottom:106.296300px;}
.y1c{bottom:106.299150px;}
.y16c{bottom:106.355100px;}
.y42{bottom:109.294800px;}
.y69{bottom:123.534300px;}
.y8b{bottom:123.543300px;}
.y18b{bottom:125.793900px;}
.y1ac{bottom:126.544800px;}
.y12b{bottom:126.625500px;}
.y16b{bottom:126.908850px;}
.y14a{bottom:127.761300px;}
.yac{bottom:127.795200px;}
.y1b{bottom:129.421950px;}
.yea{bottom:130.796700px;}
.y68{bottom:140.787300px;}
.y8a{bottom:140.796300px;}
.yab{bottom:145.048200px;}
.y18a{bottom:145.398900px;}
.y12a{bottom:146.997750px;}
.y1ab{bottom:148.046700px;}
.ye9{bottom:149.291250px;}
.y1a{bottom:151.051950px;}
.y41{bottom:153.364200px;}
.y16a{bottom:155.967600px;}
.y149{bottom:157.812300px;}
.y67{bottom:158.040300px;}
.y89{bottom:161.044800px;}
.y189{bottom:165.003900px;}
.yaa{bottom:165.296700px;}
.ye8{bottom:166.544250px;}
.y129{bottom:167.370000px;}
.y1aa{bottom:169.548750px;}
.y19{bottom:172.681950px;}
.y40{bottom:173.995200px;}
.y66{bottom:175.293300px;}
.y169{bottom:176.521350px;}
.y148{bottom:179.358300px;}
.yca{bottom:182.546700px;}
.ya9{bottom:183.797250px;}
.y188{bottom:184.608900px;}
.y128{bottom:187.742250px;}
.y1a9{bottom:188.049150px;}
.y65{bottom:192.546300px;}
.y18{bottom:194.311950px;}
.y3f{bottom:194.626200px;}
.ya8{bottom:201.050250px;}
.y187{bottom:204.213900px;}
.y88{bottom:205.090500px;}
.y1a8{bottom:205.302150px;}
.y168{bottom:205.580100px;}
.y127{bottom:208.114500px;}
.y10a{bottom:209.361450px;}
.y147{bottom:209.409300px;}
.y64{bottom:212.794800px;}
.y3e{bottom:215.257200px;}
.y17{bottom:215.941950px;}
.ya7{bottom:221.298750px;}
.y186{bottom:223.818900px;}
.y1a7{bottom:225.550650px;}
.y167{bottom:226.133850px;}
.y87{bottom:226.601250px;}
.y126{bottom:228.486750px;}
.y109{bottom:229.750950px;}
.y146{bottom:230.955300px;}
.y63{bottom:231.292200px;}
.y3d{bottom:235.888200px;}
.yc9{bottom:239.802150px;}
.y185{bottom:243.423900px;}
.y1a6{bottom:247.052700px;}
.y86{bottom:248.112000px;}
.y62{bottom:248.545200px;}
.y108{bottom:250.140450px;}
.y16{bottom:250.321950px;}
.y166{bottom:255.192600px;}
.y3c{bottom:256.519200px;}
.yc8{bottom:260.050650px;}
.y145{bottom:261.006300px;}
.y184{bottom:263.028900px;}
.ye7{bottom:265.297650px;}
.ya6{bottom:265.321500px;}
.y1a5{bottom:265.556100px;}
.y61{bottom:265.798200px;}
.y85{bottom:269.622750px;}
.y125{bottom:270.111150px;}
.y107{bottom:270.529950px;}
.y165{bottom:275.746350px;}
.y3b{bottom:277.380450px;}
.y144{bottom:282.552300px;}
.y183{bottom:282.633900px;}
.y1a4{bottom:285.804600px;}
.ye6{bottom:285.859650px;}
.y60{bottom:286.046700px;}
.ya5{bottom:287.298000px;}
.y106{bottom:290.919450px;}
.y84{bottom:291.133500px;}
.y164{bottom:296.300100px;}
.y3a{bottom:298.011450px;}
.y15{bottom:301.711950px;}
.y182{bottom:302.238900px;}
.yc7{bottom:303.988350px;}
.y5f{bottom:304.550250px;}
.ye5{bottom:306.421650px;}
.ya4{bottom:309.315450px;}
.y105{bottom:311.308950px;}
.y143{bottom:312.603300px;}
.y83{bottom:312.644250px;}
.y39{bottom:318.642450px;}
.y181{bottom:321.843900px;}
.yc6{bottom:324.636600px;}
.y5e{bottom:324.798750px;}
.y14{bottom:324.841950px;}
.y163{bottom:325.358850px;}
.ye4{bottom:326.983650px;}
.ya3{bottom:331.291950px;}
.y104{bottom:331.698450px;}
.y124{bottom:332.447250px;}
.y142{bottom:334.149300px;}
.y82{bottom:334.155000px;}
.y38{bottom:339.273450px;}
.y180{bottom:341.448900px;}
.yc5{bottom:345.284850px;}
.y162{bottom:345.912600px;}
.y5d{bottom:346.300650px;}
.ye3{bottom:347.545650px;}
.y13{bottom:347.963100px;}
.y103{bottom:352.087950px;}
.y123{bottom:352.819500px;}
.ya2{bottom:353.268450px;}
.y81{bottom:355.665750px;}
.y37{bottom:359.904450px;}
.y17f{bottom:361.053900px;}
.y141{bottom:364.200300px;}
.yc4{bottom:365.933100px;}
.ye2{bottom:368.107650px;}
.y12{bottom:369.593100px;}
.y102{bottom:372.477450px;}
.y122{bottom:373.191750px;}
.y161{bottom:374.971350px;}
.ya1{bottom:375.244950px;}
.y80{bottom:377.176500px;}
.y36{bottom:380.535450px;}
.y17e{bottom:380.658900px;}
.y140{bottom:385.746300px;}
.yc3{bottom:386.581350px;}
.ye1{bottom:388.669650px;}
.y5c{bottom:390.328200px;}
.y11{bottom:391.223100px;}
.y101{bottom:392.866950px;}
.y121{bottom:393.564000px;}
.y160{bottom:395.525100px;}
.y7f{bottom:398.687250px;}
.y17d{bottom:400.263900px;}
.y35{bottom:401.166450px;}
.yc2{bottom:407.229600px;}
.ye0{bottom:409.231650px;}
.y5b{bottom:410.821200px;}
.y10{bottom:412.853100px;}
.y100{bottom:413.256450px;}
.y120{bottom:413.936250px;}
.y13f{bottom:415.797300px;}
.y15f{bottom:416.078850px;}
.ya0{bottom:419.197950px;}
.y17c{bottom:419.868900px;}
.y7e{bottom:420.198000px;}
.y34{bottom:421.797450px;}
.y5a{bottom:431.314200px;}
.yff{bottom:433.726050px;}
.y11f{bottom:434.308500px;}
.yf{bottom:434.483100px;}
.y15e{bottom:436.632600px;}
.y13e{bottom:437.343300px;}
.y1a3{bottom:437.442750px;}
.y17b{bottom:439.473900px;}
.y9f{bottom:441.174450px;}
.y7d{bottom:441.708750px;}
.y33{bottom:442.428450px;}
.yc1{bottom:448.508850px;}
.ydf{bottom:450.355650px;}
.y59{bottom:451.807200px;}
.yfe{bottom:454.115550px;}
.y11e{bottom:454.546350px;}
.ye{bottom:456.113100px;}
.y1a2{bottom:457.692750px;}
.y32{bottom:463.059450px;}
.y9e{bottom:463.150950px;}
.y7c{bottom:463.219500px;}
.y15d{bottom:465.691350px;}
.y13d{bottom:467.394300px;}
.yc0{bottom:469.157100px;}
.yde{bottom:470.917650px;}
.y17a{bottom:471.828900px;}
.y58{bottom:472.307100px;}
.yfd{bottom:474.505050px;}
.y11d{bottom:474.918600px;}
.y1a1{bottom:477.942750px;}
.y31{bottom:483.690450px;}
.y7b{bottom:484.730250px;}
.y9d{bottom:485.127450px;}
.y15c{bottom:486.245100px;}
.y13c{bottom:488.940300px;}
.ybf{bottom:489.805350px;}
.yd{bottom:490.493100px;}
.ydd{bottom:491.479650px;}
.y57{bottom:492.800100px;}
.yfc{bottom:494.894550px;}
.y11c{bottom:495.290850px;}
.y1a0{bottom:498.192750px;}
.y30{bottom:504.321450px;}
.y7a{bottom:506.241000px;}
.y9c{bottom:507.103950px;}
.ybe{bottom:510.453600px;}
.ydc{bottom:512.041650px;}
.y56{bottom:513.293100px;}
.yfb{bottom:515.284050px;}
.y15b{bottom:515.303850px;}
.y11b{bottom:515.663100px;}
.y13b{bottom:518.991300px;}
.y2f{bottom:524.952450px;}
.y79{bottom:527.751750px;}
.y9b{bottom:529.080450px;}
.y179{bottom:529.703700px;}
.ybd{bottom:531.101850px;}
.y19f{bottom:531.192750px;}
.ydb{bottom:532.603650px;}
.y55{bottom:533.820450px;}
.yfa{bottom:535.673550px;}
.y15a{bottom:535.857600px;}
.y11a{bottom:536.035350px;}
.y13a{bottom:540.537300px;}
.y2e{bottom:545.583450px;}
.y78{bottom:549.262500px;}
.yc{bottom:550.389600px;}
.y9a{bottom:551.056950px;}
.ybc{bottom:551.750100px;}
.yda{bottom:553.165650px;}
.y54{bottom:554.313450px;}
.y119{bottom:556.407600px;}
.y159{bottom:556.411350px;}
.y178{bottom:556.793700px;}
.y139{bottom:562.083300px;}
.y2d{bottom:566.214450px;}
.y77{bottom:570.791100px;}
.ybb{bottom:572.398350px;}
.y19e{bottom:572.697750px;}
.y99{bottom:573.033450px;}
.yd9{bottom:573.727650px;}
.y53{bottom:574.806450px;}
.yf9{bottom:576.452550px;}
.y158{bottom:576.965100px;}
.yb{bottom:579.516600px;}
.y138{bottom:583.629300px;}
.y2c{bottom:586.845450px;}
.y19d{bottom:592.197750px;}
.y76{bottom:592.301850px;}
.yba{bottom:593.046600px;}
.yd8{bottom:594.283500px;}
.y98{bottom:595.009950px;}
.y52{bottom:595.299450px;}
.yf8{bottom:596.842050px;}
.y118{bottom:597.134850px;}
.y157{bottom:606.023850px;}
.y2b{bottom:607.476450px;}
.y19c{bottom:611.697750px;}
.y137{bottom:613.680300px;}
.yb9{bottom:613.694850px;}
.y75{bottom:613.812600px;}
.yd7{bottom:614.845500px;}
.y97{bottom:616.986450px;}
.yf7{bottom:617.231550px;}
.y117{bottom:617.507100px;}
.y156{bottom:626.577600px;}
.y2a{bottom:628.107450px;}
.ya{bottom:629.917050px;}
.y19b{bottom:631.197750px;}
.yb8{bottom:634.343100px;}
.y74{bottom:635.323350px;}
.yd6{bottom:635.407500px;}
.y51{bottom:636.285450px;}
.yf6{bottom:637.621050px;}
.y116{bottom:637.879350px;}
.y177{bottom:645.839850px;}
.y29{bottom:648.738450px;}
.y19a{bottom:650.697750px;}
.yb7{bottom:654.985650px;}
.y155{bottom:655.636350px;}
.yd5{bottom:655.969500px;}
.y50{bottom:656.778450px;}
.y73{bottom:656.834100px;}
.yf5{bottom:658.010550px;}
.y115{bottom:658.251600px;}
.y96{bottom:660.939450px;}
.y9{bottom:663.532050px;}
.y176{bottom:666.188850px;}
.y28{bottom:669.369450px;}
.y199{bottom:670.197750px;}
.yb6{bottom:675.622350px;}
.y4f{bottom:677.271450px;}
.y72{bottom:678.344850px;}
.yf4{bottom:678.400050px;}
.y114{bottom:678.623850px;}
.y95{bottom:682.915950px;}
.y154{bottom:684.695100px;}
.y175{bottom:686.537850px;}
.y136{bottom:687.248850px;}
.y198{bottom:689.697750px;}
.y27{bottom:690.000450px;}
.yb5{bottom:696.270600px;}
.yd4{bottom:697.088550px;}
.y8{bottom:697.159950px;}
.y4e{bottom:697.764450px;}
.yf3{bottom:698.789550px;}
.y113{bottom:698.996100px;}
.y71{bottom:699.855600px;}
.y94{bottom:704.912850px;}
.y153{bottom:705.248850px;}
.y135{bottom:708.794100px;}
.y197{bottom:709.197750px;}
.y26{bottom:710.631450px;}
.y174{bottom:715.391850px;}
.yb4{bottom:716.884350px;}
.yd3{bottom:717.650550px;}
.y4d{bottom:718.257450px;}
.yf2{bottom:719.179050px;}
.y112{bottom:719.368350px;}
.y70{bottom:721.366350px;}
.y152{bottom:725.802600px;}
.y93{bottom:726.889350px;}
.y196{bottom:728.697750px;}
.y134{bottom:730.339350px;}
.y7{bottom:730.787850px;}
.y25{bottom:731.262450px;}
.y173{bottom:735.740850px;}
.yb3{bottom:737.532600px;}
.yd2{bottom:738.212550px;}
.y4c{bottom:738.750450px;}
.yf1{bottom:739.568550px;}
.y111{bottom:739.740600px;}
.y195{bottom:748.197750px;}
.y92{bottom:748.865850px;}
.y133{bottom:751.884600px;}
.y24{bottom:751.893450px;}
.y151{bottom:754.861350px;}
.yb2{bottom:758.180850px;}
.yd1{bottom:758.774550px;}
.y4b{bottom:759.243450px;}
.yf0{bottom:759.958050px;}
.y110{bottom:760.112850px;}
.y6f{bottom:764.387850px;}
.y172{bottom:764.594850px;}
.y194{bottom:767.697750px;}
.y91{bottom:770.842350px;}
.y23{bottom:772.524450px;}
.y132{bottom:773.429850px;}
.y150{bottom:775.415100px;}
.yb1{bottom:778.829100px;}
.yd0{bottom:779.329350px;}
.y4a{bottom:779.736450px;}
.y10f{bottom:780.485100px;}
.y171{bottom:784.943850px;}
.y6e{bottom:785.898600px;}
.y193{bottom:787.197750px;}
.y90{bottom:792.818850px;}
.y22{bottom:793.155450px;}
.y6{bottom:794.171100px;}
.y131{bottom:794.975100px;}
.ycf{bottom:799.891350px;}
.y49{bottom:800.229450px;}
.yef{bottom:800.737050px;}
.y10e{bottom:800.857350px;}
.y14f{bottom:804.473850px;}
.y192{bottom:806.697750px;}
.y6d{bottom:807.409350px;}
.y21{bottom:813.786450px;}
.y170{bottom:813.797850px;}
.y8f{bottom:814.795350px;}
.y130{bottom:816.520350px;}
.yb0{bottom:820.108350px;}
.yce{bottom:820.453350px;}
.y48{bottom:820.722450px;}
.yee{bottom:821.143350px;}
.y10d{bottom:821.229600px;}
.y5{bottom:825.806100px;}
.y191{bottom:826.197750px;}
.y14e{bottom:833.532600px;}
.y16f{bottom:834.146850px;}
.y20{bottom:834.417450px;}
.y8e{bottom:836.771850px;}
.y12f{bottom:838.065600px;}
.yaf{bottom:840.756600px;}
.ycd{bottom:841.015350px;}
.y47{bottom:841.222350px;}
.yed{bottom:841.532850px;}
.y190{bottom:845.697750px;}
.y4{bottom:848.936100px;}
.y6c{bottom:850.162200px;}
.y14d{bottom:854.086350px;}
.y16e{bottom:854.495850px;}
.y12e{bottom:859.610850px;}
.yae{bottom:861.404850px;}
.ycc{bottom:861.577350px;}
.y46{bottom:861.715350px;}
.yec{bottom:861.922350px;}
.y10c{bottom:861.956850px;}
.y18f{bottom:865.197750px;}
.y6b{bottom:875.434200px;}
.y1f{bottom:876.325200px;}
.y3{bottom:880.571100px;}
.y8d{bottom:880.724850px;}
.y12d{bottom:881.156100px;}
.yad{bottom:882.053100px;}
.ycb{bottom:882.139350px;}
.y45{bottom:882.208350px;}
.yeb{bottom:882.311850px;}
.y10b{bottom:882.329100px;}
.y14c{bottom:883.145100px;}
.y16d{bottom:883.349850px;}
.y18e{bottom:884.697750px;}
.y1e{bottom:900.706200px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y18d{bottom:904.197750px;}
.y1d{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.hf{height:34.872492px;}
.hb{height:41.648438px;}
.h14{height:42.228938px;}
.h12{height:46.854492px;}
.h11{height:51.884766px;}
.h4{height:52.060547px;}
.h15{height:54.210938px;}
.h3{height:54.663574px;}
.hd{height:59.869629px;}
.ha{height:60.234375px;}
.h19{height:63.246094px;}
.h2{height:65.075684px;}
.h17{height:69.202331px;}
.he{height:69.269531px;}
.h16{height:69.407531px;}
.h18{height:69.807131px;}
.hc{height:70.281738px;}
.h1a{height:72.884766px;}
.h6{height:74.513672px;}
.h13{height:81.316406px;}
.h9{height:84.328125px;}
.h8{height:93.392578px;}
.h5{height:93.708984px;}
.h7{height:108.421875px;}
.h10{height:1020.472500px;}
.h0{height:1020.472503px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.835022px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:81.463050px;}
.xa{left:82.485900px;}
.x7{left:83.895750px;}
.x1{left:85.039350px;}
.x9{left:103.737900px;}
.x6{left:105.885750px;}
.x8{left:212.664000px;}
.x5{left:230.983950px;}
.x2{left:233.345250px;}
.x3{left:576.616350px;}
.x4{left:639.822150px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.426667pt;}
.v1{vertical-align:14.272000pt;}
.v3{vertical-align:15.213333pt;}
.ls1a{letter-spacing:-5.904000pt;}
.ls8{letter-spacing:-3.840000pt;}
.ls28{letter-spacing:-2.392000pt;}
.ls27{letter-spacing:-2.330667pt;}
.ls19{letter-spacing:-2.200000pt;}
.ls40{letter-spacing:-2.112000pt;}
.ls29{letter-spacing:-2.085333pt;}
.ls3e{letter-spacing:-2.026667pt;}
.ls2d{letter-spacing:-1.962667pt;}
.ls1c{letter-spacing:-1.717333pt;}
.ls9{letter-spacing:-1.642667pt;}
.ls3f{letter-spacing:-1.536000pt;}
.ls20{letter-spacing:-1.472000pt;}
.ls32{letter-spacing:-1.080000pt;}
.ls11{letter-spacing:-0.760000pt;}
.ls1b{letter-spacing:-0.613333pt;}
.ls31{letter-spacing:-0.557333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.122667pt;}
.ls12{letter-spacing:-0.072000pt;}
.ls16{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.ls22{letter-spacing:0.008277pt;}
.ls2f{letter-spacing:0.008507pt;}
.ls23{letter-spacing:0.008811pt;}
.ls1f{letter-spacing:0.552000pt;}
.lsf{letter-spacing:0.600000pt;}
.ls30{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:1.288000pt;}
.lsc{letter-spacing:1.866667pt;}
.ls3d{letter-spacing:1.920000pt;}
.ls37{letter-spacing:2.066400pt;}
.lse{letter-spacing:2.133333pt;}
.ls2b{letter-spacing:2.269333pt;}
.ls36{letter-spacing:2.632000pt;}
.ls3a{letter-spacing:2.856000pt;}
.ls1{letter-spacing:3.733333pt;}
.ls38{letter-spacing:4.401600pt;}
.ls3{letter-spacing:5.120000pt;}
.ls4{letter-spacing:5.173333pt;}
.lsa{letter-spacing:5.226667pt;}
.ls10{letter-spacing:5.333333pt;}
.ls35{letter-spacing:5.600000pt;}
.ls18{letter-spacing:6.072000pt;}
.ls1e{letter-spacing:6.133333pt;}
.ls24{letter-spacing:7.253472pt;}
.ls25{letter-spacing:7.254005pt;}
.ls34{letter-spacing:8.864800pt;}
.ls17{letter-spacing:421.248000pt;}
.ls33{letter-spacing:421.901333pt;}
.ls3b{letter-spacing:422.068267pt;}
.ls2c{letter-spacing:422.294933pt;}
.ls21{letter-spacing:423.561600pt;}
.lsb{letter-spacing:446.363200pt;}
.ls3c{letter-spacing:846.686933pt;}
.ls26{letter-spacing:847.126933pt;}
.ls2e{letter-spacing:849.460267pt;}
.ls39{letter-spacing:853.060267pt;}
.ls1d{letter-spacing:854.820267pt;}
.ls14{letter-spacing:880.020267pt;}
.ls0{letter-spacing:886.393600pt;}
.ws20{word-spacing:-21.282667pt;}
.ws18{word-spacing:-21.221333pt;}
.ws32{word-spacing:-20.320000pt;}
.ws0{word-spacing:-20.213333pt;}
.wsc{word-spacing:-19.333333pt;}
.ws2c{word-spacing:-19.152000pt;}
.ws28{word-spacing:-17.418667pt;}
.ws14{word-spacing:-17.234667pt;}
.ws17{word-spacing:-16.533333pt;}
.ws27{word-spacing:-16.437333pt;}
.ws2b{word-spacing:-15.885333pt;}
.ws31{word-spacing:-15.736000pt;}
.ws19{word-spacing:-15.149333pt;}
.ws1{word-spacing:-14.986667pt;}
.ws1a{word-spacing:-14.536000pt;}
.ws2e{word-spacing:-13.832000pt;}
.ws2a{word-spacing:-13.677333pt;}
.ws21{word-spacing:-13.488000pt;}
.ws1b{word-spacing:-13.432000pt;}
.ws33{word-spacing:-13.173333pt;}
.ws26{word-spacing:-13.064000pt;}
.ws24{word-spacing:-12.818667pt;}
.ws25{word-spacing:-12.757333pt;}
.wsd{word-spacing:-12.357333pt;}
.ws1c{word-spacing:-11.856000pt;}
.ws35{word-spacing:-11.146667pt;}
.ws36{word-spacing:-10.320000pt;}
.ws13{word-spacing:-10.047811pt;}
.ws37{word-spacing:-9.744000pt;}
.ws34{word-spacing:-8.737227pt;}
.ws22{word-spacing:-6.133333pt;}
.ws1e{word-spacing:-6.072000pt;}
.ws2f{word-spacing:-5.600000pt;}
.wsf{word-spacing:-5.333333pt;}
.wsb{word-spacing:-5.226667pt;}
.ws4{word-spacing:-5.173333pt;}
.ws3{word-spacing:-5.120000pt;}
.wsa{word-spacing:-3.733333pt;}
.ws30{word-spacing:-2.856000pt;}
.wse{word-spacing:-2.133333pt;}
.ws38{word-spacing:-1.920000pt;}
.ws1f{word-spacing:-1.349333pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.061333pt;}
.ws11{word-spacing:0.072000pt;}
.ws12{word-spacing:0.122667pt;}
.ws15{word-spacing:0.160000pt;}
.ws5{word-spacing:0.213333pt;}
.ws6{word-spacing:0.288000pt;}
.ws7{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.557333pt;}
.ws10{word-spacing:0.760000pt;}
.ws23{word-spacing:1.472000pt;}
.ws9{word-spacing:1.642667pt;}
.ws29{word-spacing:1.962667pt;}
.ws8{word-spacing:3.840000pt;}
.ws1d{word-spacing:5.904000pt;}
._b{margin-left:-23.712000pt;}
._19{margin-left:-15.205333pt;}
._a{margin-left:-8.431733pt;}
._c{margin-left:-7.505867pt;}
._1d{margin-left:-6.412800pt;}
._6{margin-left:-5.383200pt;}
._7{margin-left:-4.394667pt;}
._8{margin-left:-3.505600pt;}
._2{margin-left:-2.458400pt;}
._4{margin-left:-1.338933pt;}
._3{width:0.918933pt;}
._1{width:2.133333pt;}
._9{width:3.564000pt;}
._d{width:4.661067pt;}
._5{width:5.556267pt;}
._13{width:6.936800pt;}
._15{width:7.905867pt;}
._14{width:9.402400pt;}
._f{width:10.698667pt;}
._10{width:11.984000pt;}
._18{width:12.945333pt;}
._1f{width:13.925333pt;}
._1a{width:15.192267pt;}
._12{width:19.092267pt;}
._17{width:20.847467pt;}
._1c{width:22.782400pt;}
._1b{width:24.625920pt;}
._20{width:25.844427pt;}
._1e{width:30.450133pt;}
._16{width:38.617920pt;}
._e{width:55.514667pt;}
._11{width:231.653333pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y18c{bottom:94.390133pt;}
.y14b{bottom:94.413600pt;}
.y12c{bottom:94.447333pt;}
.y6a{bottom:94.472267pt;}
.y8c{bottom:94.480267pt;}
.y1ad{bottom:94.485600pt;}
.y1c{bottom:94.488133pt;}
.y16c{bottom:94.537867pt;}
.y42{bottom:97.150933pt;}
.y69{bottom:109.808267pt;}
.y8b{bottom:109.816267pt;}
.y18b{bottom:111.816800pt;}
.y1ac{bottom:112.484267pt;}
.y12b{bottom:112.556000pt;}
.y16b{bottom:112.807867pt;}
.y14a{bottom:113.565600pt;}
.yac{bottom:113.595733pt;}
.y1b{bottom:115.041733pt;}
.yea{bottom:116.263733pt;}
.y68{bottom:125.144267pt;}
.y8a{bottom:125.152267pt;}
.yab{bottom:128.931733pt;}
.y18a{bottom:129.243467pt;}
.y12a{bottom:130.664667pt;}
.y1ab{bottom:131.597067pt;}
.ye9{bottom:132.703333pt;}
.y1a{bottom:134.268400pt;}
.y41{bottom:136.323733pt;}
.y16a{bottom:138.637867pt;}
.y149{bottom:140.277600pt;}
.y67{bottom:140.480267pt;}
.y89{bottom:143.150933pt;}
.y189{bottom:146.670133pt;}
.yaa{bottom:146.930400pt;}
.ye8{bottom:148.039333pt;}
.y129{bottom:148.773333pt;}
.y1aa{bottom:150.710000pt;}
.y19{bottom:153.495067pt;}
.y40{bottom:154.662400pt;}
.y66{bottom:155.816267pt;}
.y169{bottom:156.907867pt;}
.y148{bottom:159.429600pt;}
.yca{bottom:162.263733pt;}
.ya9{bottom:163.375333pt;}
.y188{bottom:164.096800pt;}
.y128{bottom:166.882000pt;}
.y1a9{bottom:167.154800pt;}
.y65{bottom:171.152267pt;}
.y18{bottom:172.721733pt;}
.y3f{bottom:173.001067pt;}
.ya8{bottom:178.711333pt;}
.y187{bottom:181.523467pt;}
.y88{bottom:182.302667pt;}
.y1a8{bottom:182.490800pt;}
.y168{bottom:182.737867pt;}
.y127{bottom:184.990667pt;}
.y10a{bottom:186.099067pt;}
.y147{bottom:186.141600pt;}
.y64{bottom:189.150933pt;}
.y3e{bottom:191.339733pt;}
.y17{bottom:191.948400pt;}
.ya7{bottom:196.710000pt;}
.y186{bottom:198.950133pt;}
.y1a7{bottom:200.489467pt;}
.y167{bottom:201.007867pt;}
.y87{bottom:201.423333pt;}
.y126{bottom:203.099333pt;}
.y109{bottom:204.223067pt;}
.y146{bottom:205.293600pt;}
.y63{bottom:205.593067pt;}
.y3d{bottom:209.678400pt;}
.yc9{bottom:213.157467pt;}
.y185{bottom:216.376800pt;}
.y1a6{bottom:219.602400pt;}
.y86{bottom:220.544000pt;}
.y62{bottom:220.929067pt;}
.y108{bottom:222.347067pt;}
.y16{bottom:222.508400pt;}
.y166{bottom:226.837867pt;}
.y3c{bottom:228.017067pt;}
.yc8{bottom:231.156133pt;}
.y145{bottom:232.005600pt;}
.y184{bottom:233.803467pt;}
.ye7{bottom:235.820133pt;}
.ya6{bottom:235.841333pt;}
.y1a5{bottom:236.049867pt;}
.y61{bottom:236.265067pt;}
.y85{bottom:239.664667pt;}
.y125{bottom:240.098800pt;}
.y107{bottom:240.471067pt;}
.y165{bottom:245.107867pt;}
.y3b{bottom:246.560400pt;}
.y144{bottom:251.157600pt;}
.y183{bottom:251.230133pt;}
.y1a4{bottom:254.048533pt;}
.ye6{bottom:254.097467pt;}
.y60{bottom:254.263733pt;}
.ya5{bottom:255.376000pt;}
.y106{bottom:258.595067pt;}
.y84{bottom:258.785333pt;}
.y164{bottom:263.377867pt;}
.y3a{bottom:264.899067pt;}
.y15{bottom:268.188400pt;}
.y182{bottom:268.656800pt;}
.yc7{bottom:270.211867pt;}
.y5f{bottom:270.711333pt;}
.ye5{bottom:272.374800pt;}
.ya4{bottom:274.947067pt;}
.y105{bottom:276.719067pt;}
.y143{bottom:277.869600pt;}
.y83{bottom:277.906000pt;}
.y39{bottom:283.237733pt;}
.y181{bottom:286.083467pt;}
.yc6{bottom:288.565867pt;}
.y5e{bottom:288.710000pt;}
.y14{bottom:288.748400pt;}
.y163{bottom:289.207867pt;}
.ye4{bottom:290.652133pt;}
.ya3{bottom:294.481733pt;}
.y104{bottom:294.843067pt;}
.y124{bottom:295.508667pt;}
.y142{bottom:297.021600pt;}
.y82{bottom:297.026667pt;}
.y38{bottom:301.576400pt;}
.y180{bottom:303.510133pt;}
.yc5{bottom:306.919867pt;}
.y162{bottom:307.477867pt;}
.y5d{bottom:307.822800pt;}
.ye3{bottom:308.929467pt;}
.y13{bottom:309.300533pt;}
.y103{bottom:312.967067pt;}
.y123{bottom:313.617333pt;}
.ya2{bottom:314.016400pt;}
.y81{bottom:316.147333pt;}
.y37{bottom:319.915067pt;}
.y17f{bottom:320.936800pt;}
.y141{bottom:323.733600pt;}
.yc4{bottom:325.273867pt;}
.ye2{bottom:327.206800pt;}
.y12{bottom:328.527200pt;}
.y102{bottom:331.091067pt;}
.y122{bottom:331.726000pt;}
.y161{bottom:333.307867pt;}
.ya1{bottom:333.551067pt;}
.y80{bottom:335.268000pt;}
.y36{bottom:338.253733pt;}
.y17e{bottom:338.363467pt;}
.y140{bottom:342.885600pt;}
.yc3{bottom:343.627867pt;}
.ye1{bottom:345.484133pt;}
.y5c{bottom:346.958400pt;}
.y11{bottom:347.753867pt;}
.y101{bottom:349.215067pt;}
.y121{bottom:349.834667pt;}
.y160{bottom:351.577867pt;}
.y7f{bottom:354.388667pt;}
.y17d{bottom:355.790133pt;}
.y35{bottom:356.592400pt;}
.yc2{bottom:361.981867pt;}
.ye0{bottom:363.761467pt;}
.y5b{bottom:365.174400pt;}
.y10{bottom:366.980533pt;}
.y100{bottom:367.339067pt;}
.y120{bottom:367.943333pt;}
.y13f{bottom:369.597600pt;}
.y15f{bottom:369.847867pt;}
.ya0{bottom:372.620400pt;}
.y17c{bottom:373.216800pt;}
.y7e{bottom:373.509333pt;}
.y34{bottom:374.931067pt;}
.y5a{bottom:383.390400pt;}
.yff{bottom:385.534267pt;}
.y11f{bottom:386.052000pt;}
.yf{bottom:386.207200pt;}
.y15e{bottom:388.117867pt;}
.y13e{bottom:388.749600pt;}
.y1a3{bottom:388.838000pt;}
.y17b{bottom:390.643467pt;}
.y9f{bottom:392.155067pt;}
.y7d{bottom:392.630000pt;}
.y33{bottom:393.269733pt;}
.yc1{bottom:398.674533pt;}
.ydf{bottom:400.316133pt;}
.y59{bottom:401.606400pt;}
.yfe{bottom:403.658267pt;}
.y11e{bottom:404.041200pt;}
.ye{bottom:405.433867pt;}
.y1a2{bottom:406.838000pt;}
.y32{bottom:411.608400pt;}
.y9e{bottom:411.689733pt;}
.y7c{bottom:411.750667pt;}
.y15d{bottom:413.947867pt;}
.y13d{bottom:415.461600pt;}
.yc0{bottom:417.028533pt;}
.yde{bottom:418.593467pt;}
.y17a{bottom:419.403467pt;}
.y58{bottom:419.828533pt;}
.yfd{bottom:421.782267pt;}
.y11d{bottom:422.149867pt;}
.y1a1{bottom:424.838000pt;}
.y31{bottom:429.947067pt;}
.y7b{bottom:430.871333pt;}
.y9d{bottom:431.224400pt;}
.y15c{bottom:432.217867pt;}
.y13c{bottom:434.613600pt;}
.ybf{bottom:435.382533pt;}
.yd{bottom:435.993867pt;}
.ydd{bottom:436.870800pt;}
.y57{bottom:438.044533pt;}
.yfc{bottom:439.906267pt;}
.y11c{bottom:440.258533pt;}
.y1a0{bottom:442.838000pt;}
.y30{bottom:448.285733pt;}
.y7a{bottom:449.992000pt;}
.y9c{bottom:450.759067pt;}
.ybe{bottom:453.736533pt;}
.ydc{bottom:455.148133pt;}
.y56{bottom:456.260533pt;}
.yfb{bottom:458.030267pt;}
.y15b{bottom:458.047867pt;}
.y11b{bottom:458.367200pt;}
.y13b{bottom:461.325600pt;}
.y2f{bottom:466.624400pt;}
.y79{bottom:469.112667pt;}
.y9b{bottom:470.293733pt;}
.y179{bottom:470.847733pt;}
.ybd{bottom:472.090533pt;}
.y19f{bottom:472.171333pt;}
.ydb{bottom:473.425467pt;}
.y55{bottom:474.507067pt;}
.yfa{bottom:476.154267pt;}
.y15a{bottom:476.317867pt;}
.y11a{bottom:476.475867pt;}
.y13a{bottom:480.477600pt;}
.y2e{bottom:484.963067pt;}
.y78{bottom:488.233333pt;}
.yc{bottom:489.235200pt;}
.y9a{bottom:489.828400pt;}
.ybc{bottom:490.444533pt;}
.yda{bottom:491.702800pt;}
.y54{bottom:492.723067pt;}
.y119{bottom:494.584533pt;}
.y159{bottom:494.587867pt;}
.y178{bottom:494.927733pt;}
.y139{bottom:499.629600pt;}
.y2d{bottom:503.301733pt;}
.y77{bottom:507.369867pt;}
.ybb{bottom:508.798533pt;}
.y19e{bottom:509.064667pt;}
.y99{bottom:509.363067pt;}
.yd9{bottom:509.980133pt;}
.y53{bottom:510.939067pt;}
.yf9{bottom:512.402267pt;}
.y158{bottom:512.857867pt;}
.yb{bottom:515.125867pt;}
.y138{bottom:518.781600pt;}
.y2c{bottom:521.640400pt;}
.y19d{bottom:526.398000pt;}
.y76{bottom:526.490533pt;}
.yba{bottom:527.152533pt;}
.yd8{bottom:528.252000pt;}
.y98{bottom:528.897733pt;}
.y52{bottom:529.155067pt;}
.yf8{bottom:530.526267pt;}
.y118{bottom:530.786533pt;}
.y157{bottom:538.687867pt;}
.y2b{bottom:539.979067pt;}
.y19c{bottom:543.731333pt;}
.y137{bottom:545.493600pt;}
.yb9{bottom:545.506533pt;}
.y75{bottom:545.611200pt;}
.yd7{bottom:546.529333pt;}
.y97{bottom:548.432400pt;}
.yf7{bottom:548.650267pt;}
.y117{bottom:548.895200pt;}
.y156{bottom:556.957867pt;}
.y2a{bottom:558.317733pt;}
.ya{bottom:559.926267pt;}
.y19b{bottom:561.064667pt;}
.yb8{bottom:563.860533pt;}
.y74{bottom:564.731867pt;}
.yd6{bottom:564.806667pt;}
.y51{bottom:565.587067pt;}
.yf6{bottom:566.774267pt;}
.y116{bottom:567.003867pt;}
.y177{bottom:574.079867pt;}
.y29{bottom:576.656400pt;}
.y19a{bottom:578.398000pt;}
.yb7{bottom:582.209467pt;}
.y155{bottom:582.787867pt;}
.yd5{bottom:583.084000pt;}
.y50{bottom:583.803067pt;}
.y73{bottom:583.852533pt;}
.yf5{bottom:584.898267pt;}
.y115{bottom:585.112533pt;}
.y96{bottom:587.501733pt;}
.y9{bottom:589.806267pt;}
.y176{bottom:592.167867pt;}
.y28{bottom:594.995067pt;}
.y199{bottom:595.731333pt;}
.yb6{bottom:600.553200pt;}
.y4f{bottom:602.019067pt;}
.y72{bottom:602.973200pt;}
.yf4{bottom:603.022267pt;}
.y114{bottom:603.221200pt;}
.y95{bottom:607.036400pt;}
.y154{bottom:608.617867pt;}
.y175{bottom:610.255867pt;}
.y136{bottom:610.887867pt;}
.y198{bottom:613.064667pt;}
.y27{bottom:613.333733pt;}
.yb5{bottom:618.907200pt;}
.yd4{bottom:619.634267pt;}
.y8{bottom:619.697733pt;}
.y4e{bottom:620.235067pt;}
.yf3{bottom:621.146267pt;}
.y113{bottom:621.329867pt;}
.y71{bottom:622.093867pt;}
.y94{bottom:626.589200pt;}
.y153{bottom:626.887867pt;}
.y135{bottom:630.039200pt;}
.y197{bottom:630.398000pt;}
.y26{bottom:631.672400pt;}
.y174{bottom:635.903867pt;}
.yb4{bottom:637.230533pt;}
.yd3{bottom:637.911600pt;}
.y4d{bottom:638.451067pt;}
.yf2{bottom:639.270267pt;}
.y112{bottom:639.438533pt;}
.y70{bottom:641.214533pt;}
.y152{bottom:645.157867pt;}
.y93{bottom:646.123867pt;}
.y196{bottom:647.731333pt;}
.y134{bottom:649.190533pt;}
.y7{bottom:649.589200pt;}
.y25{bottom:650.011067pt;}
.y173{bottom:653.991867pt;}
.yb3{bottom:655.584533pt;}
.yd2{bottom:656.188933pt;}
.y4c{bottom:656.667067pt;}
.yf1{bottom:657.394267pt;}
.y111{bottom:657.547200pt;}
.y195{bottom:665.064667pt;}
.y92{bottom:665.658533pt;}
.y133{bottom:668.341867pt;}
.y24{bottom:668.349733pt;}
.y151{bottom:670.987867pt;}
.yb2{bottom:673.938533pt;}
.yd1{bottom:674.466267pt;}
.y4b{bottom:674.883067pt;}
.yf0{bottom:675.518267pt;}
.y110{bottom:675.655867pt;}
.y6f{bottom:679.455867pt;}
.y172{bottom:679.639867pt;}
.y194{bottom:682.398000pt;}
.y91{bottom:685.193200pt;}
.y23{bottom:686.688400pt;}
.y132{bottom:687.493200pt;}
.y150{bottom:689.257867pt;}
.yb1{bottom:692.292533pt;}
.yd0{bottom:692.737200pt;}
.y4a{bottom:693.099067pt;}
.y10f{bottom:693.764533pt;}
.y171{bottom:697.727867pt;}
.y6e{bottom:698.576533pt;}
.y193{bottom:699.731333pt;}
.y90{bottom:704.727867pt;}
.y22{bottom:705.027067pt;}
.y6{bottom:705.929867pt;}
.y131{bottom:706.644533pt;}
.ycf{bottom:711.014533pt;}
.y49{bottom:711.315067pt;}
.yef{bottom:711.766267pt;}
.y10e{bottom:711.873200pt;}
.y14f{bottom:715.087867pt;}
.y192{bottom:717.064667pt;}
.y6d{bottom:717.697200pt;}
.y21{bottom:723.365733pt;}
.y170{bottom:723.375867pt;}
.y8f{bottom:724.262533pt;}
.y130{bottom:725.795867pt;}
.yb0{bottom:728.985200pt;}
.yce{bottom:729.291867pt;}
.y48{bottom:729.531067pt;}
.yee{bottom:729.905200pt;}
.y10d{bottom:729.981867pt;}
.y5{bottom:734.049867pt;}
.y191{bottom:734.398000pt;}
.y14e{bottom:740.917867pt;}
.y16f{bottom:741.463867pt;}
.y20{bottom:741.704400pt;}
.y8e{bottom:743.797200pt;}
.y12f{bottom:744.947200pt;}
.yaf{bottom:747.339200pt;}
.ycd{bottom:747.569200pt;}
.y47{bottom:747.753200pt;}
.yed{bottom:748.029200pt;}
.y190{bottom:751.731333pt;}
.y4{bottom:754.609867pt;}
.y6c{bottom:755.699733pt;}
.y14d{bottom:759.187867pt;}
.y16e{bottom:759.551867pt;}
.y12e{bottom:764.098533pt;}
.yae{bottom:765.693200pt;}
.ycc{bottom:765.846533pt;}
.y46{bottom:765.969200pt;}
.yec{bottom:766.153200pt;}
.y10c{bottom:766.183867pt;}
.y18f{bottom:769.064667pt;}
.y6b{bottom:778.163733pt;}
.y1f{bottom:778.955733pt;}
.y3{bottom:782.729867pt;}
.y8d{bottom:782.866533pt;}
.y12d{bottom:783.249867pt;}
.yad{bottom:784.047200pt;}
.ycb{bottom:784.123867pt;}
.y45{bottom:784.185200pt;}
.yeb{bottom:784.277200pt;}
.y10b{bottom:784.292533pt;}
.y14c{bottom:785.017867pt;}
.y16d{bottom:785.199867pt;}
.y18e{bottom:786.398000pt;}
.y1e{bottom:800.627733pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y18d{bottom:803.731333pt;}
.y1d{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.hf{height:30.997771pt;}
.hb{height:37.020833pt;}
.h14{height:37.536833pt;}
.h12{height:41.648438pt;}
.h11{height:46.119792pt;}
.h4{height:46.276042pt;}
.h15{height:48.187500pt;}
.h3{height:48.589844pt;}
.hd{height:53.217448pt;}
.ha{height:53.541667pt;}
.h19{height:56.218750pt;}
.h2{height:57.845052pt;}
.h17{height:61.513183pt;}
.he{height:61.572917pt;}
.h16{height:61.695583pt;}
.h18{height:62.050783pt;}
.hc{height:62.472656pt;}
.h1a{height:64.786458pt;}
.h6{height:66.234375pt;}
.h13{height:72.281250pt;}
.h9{height:74.958333pt;}
.h8{height:83.015625pt;}
.h5{height:83.296875pt;}
.h7{height:96.375000pt;}
.h10{height:907.086667pt;}
.h0{height:907.086669pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.520020pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:72.411600pt;}
.xa{left:73.320800pt;}
.x7{left:74.574000pt;}
.x1{left:75.590533pt;}
.x9{left:92.211467pt;}
.x6{left:94.120667pt;}
.x8{left:189.034667pt;}
.x5{left:205.319067pt;}
.x2{left:207.418000pt;}
.x3{left:512.547867pt;}
.x4{left:568.730800pt;}
}




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