
    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_fe908b88e7c2a8e6386e11ed.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_62d303460b3295a61f1c7343.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_86b936942ebab404b5519b2c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_043279f45f3d0a8bb4ecf27e.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_b57b0f642a733f11d0bae2ac.woff')format("woff");}.ff5{font-family:ff5;line-height:1.377930;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_5809f97a84acabeab55be64b.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_4b7da8b4ec1d67d6f358657d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.220800px;}
.v2{vertical-align:16.295400px;}
.v1{vertical-align:23.142000px;}
.ls2a{letter-spacing:-5.940000px;}
.ls1d{letter-spacing:-4.500000px;}
.ls1a{letter-spacing:-3.900000px;}
.ls15{letter-spacing:-3.780000px;}
.ls13{letter-spacing:-3.480000px;}
.ls37{letter-spacing:-3.450000px;}
.ls1b{letter-spacing:-3.420000px;}
.ls22{letter-spacing:-2.820000px;}
.ls34{letter-spacing:-2.691000px;}
.ls3e{letter-spacing:-2.646000px;}
.ls2b{letter-spacing:-2.580000px;}
.ls16{letter-spacing:-2.220000px;}
.ls36{letter-spacing:-2.208000px;}
.ls2f{letter-spacing:-2.109000px;}
.ls42{letter-spacing:-2.079000px;}
.ls23{letter-spacing:-1.980000px;}
.ls21{letter-spacing:-1.860000px;}
.ls7{letter-spacing:-1.836000px;}
.ls19{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.380000px;}
.ls39{letter-spacing:-1.350000px;}
.ls14{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-1.140000px;}
.ls1f{letter-spacing:-1.020000px;}
.ls30{letter-spacing:-0.972000px;}
.ls20{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.855000px;}
.ls10{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.660000px;}
.ls2e{letter-spacing:-0.627000px;}
.ls29{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.480000px;}
.ls2d{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000300px;}
.ls31{letter-spacing:0.002154px;}
.ls38{letter-spacing:0.008376px;}
.ls33{letter-spacing:0.009228px;}
.ls32{letter-spacing:0.022200px;}
.ls1e{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.063000px;}
.ls28{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.240000px;}
.ls3f{letter-spacing:0.693000px;}
.ls26{letter-spacing:1.020000px;}
.ls12{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.320000px;}
.ls24{letter-spacing:1.500000px;}
.lsd{letter-spacing:2.400000px;}
.ls3c{letter-spacing:4.347000px;}
.ls3b{letter-spacing:4.725000px;}
.ls2{letter-spacing:5.460000px;}
.lse{letter-spacing:5.475000px;}
.ls4{letter-spacing:5.760000px;}
.ls41{letter-spacing:5.850000px;}
.ls1{letter-spacing:6.000000px;}
.ls3d{letter-spacing:6.300000px;}
.ls3a{letter-spacing:7.156800px;}
.ls0{letter-spacing:7.950000px;}
.lsb{letter-spacing:190.560000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-29.025000px;}
.ws3{word-spacing:-28.512000px;}
.ws4c{word-spacing:-26.925000px;}
.wsc{word-spacing:-26.550000px;}
.ws43{word-spacing:-22.050000px;}
.ws38{word-spacing:-21.789000px;}
.ws3f{word-spacing:-19.389000px;}
.ws11{word-spacing:-18.120000px;}
.ws44{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.262000px;}
.ws39{word-spacing:-17.043000px;}
.ws21{word-spacing:-16.980000px;}
.ws18{word-spacing:-16.920000px;}
.ws13{word-spacing:-16.860000px;}
.ws19{word-spacing:-16.740000px;}
.ws25{word-spacing:-16.620000px;}
.ws26{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.500000px;}
.ws46{word-spacing:-15.561000px;}
.ws20{word-spacing:-14.940000px;}
.ws3d{word-spacing:-14.835000px;}
.ws12{word-spacing:-14.820000px;}
.ws1d{word-spacing:-14.460000px;}
.ws37{word-spacing:-14.400000px;}
.ws3c{word-spacing:-14.352000px;}
.ws24{word-spacing:-14.280000px;}
.ws14{word-spacing:-14.160000px;}
.ws1c{word-spacing:-14.040000px;}
.ws3e{word-spacing:-13.593000px;}
.ws1f{word-spacing:-13.440000px;}
.ws40{word-spacing:-13.338000px;}
.ws1a{word-spacing:-12.960000px;}
.ws1e{word-spacing:-12.840000px;}
.ws42{word-spacing:-11.988000px;}
.wsf{word-spacing:-11.340000px;}
.ws41{word-spacing:-11.303787px;}
.ws10{word-spacing:-11.040000px;}
.ws15{word-spacing:-10.920000px;}
.ws45{word-spacing:-10.320849px;}
.ws17{word-spacing:-10.320000px;}
.ws47{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws6{word-spacing:-5.760000px;}
.ws27{word-spacing:-2.400000px;}
.ws32{word-spacing:-1.500000px;}
.ws2c{word-spacing:-1.320000px;}
.ws29{word-spacing:-1.260000px;}
.ws34{word-spacing:-1.020000px;}
.ws4a{word-spacing:-0.693000px;}
.ws48{word-spacing:-0.252000px;}
.ws30{word-spacing:-0.240000px;}
.ws4b{word-spacing:-0.063000px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.120000px;}
.ws9{word-spacing:0.180000px;}
.ws8{word-spacing:0.240000px;}
.wsa{word-spacing:0.360000px;}
.ws33{word-spacing:0.480000px;}
.ws35{word-spacing:0.540000px;}
.ws3a{word-spacing:0.627000px;}
.ws7{word-spacing:0.720000px;}
.wsb{word-spacing:0.855000px;}
.ws31{word-spacing:0.960000px;}
.ws2f{word-spacing:1.020000px;}
.ws2a{word-spacing:1.200000px;}
.ws28{word-spacing:1.440000px;}
.ws2d{word-spacing:1.500000px;}
.ws4d{word-spacing:2.079000px;}
.ws3b{word-spacing:2.109000px;}
.ws2b{word-spacing:2.220000px;}
.ws49{word-spacing:2.646000px;}
.ws36{word-spacing:5.940000px;}
.ws16{word-spacing:109.674000px;}
.ws22{word-spacing:454.980000px;}
.ws23{word-spacing:506.898000px;}
.ws1b{word-spacing:541.320000px;}
.wse{word-spacing:676.530000px;}
.wsd{word-spacing:754.056000px;}
._1e{margin-left:-19.262400px;}
._22{margin-left:-17.409900px;}
._20{margin-left:-7.299600px;}
._6{margin-left:-6.222000px;}
._9{margin-left:-4.848000px;}
._a{margin-left:-2.986500px;}
._5{margin-left:-1.072200px;}
._1{width:1.056000px;}
._3{width:2.106000px;}
._4{width:3.209100px;}
._8{width:4.432200px;}
._2{width:6.318000px;}
._7{width:7.464900px;}
._e{width:8.949300px;}
._f{width:9.999600px;}
._b{width:11.049600px;}
._13{width:12.060000px;}
._c{width:13.253400px;}
._d{width:14.345100px;}
._1a{width:16.215000px;}
._1b{width:17.865600px;}
._12{width:20.986800px;}
._21{width:22.020000px;}
._19{width:25.063200px;}
._1d{width:43.445160px;}
._17{width:312.231000px;}
._15{width:408.100500px;}
._0{width:447.547200px;}
._14{width:450.730200px;}
._23{width:451.741200px;}
._16{width:576.194700px;}
._10{width:578.400000px;}
._18{width:939.774600px;}
._1c{width:942.399600px;}
._1f{width:946.449600px;}
._11{width:948.429600px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsd{font-size:36.729000px;}
.fsa{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y18f{bottom:106.118850px;}
.y170{bottom:106.134600px;}
.y12e{bottom:106.195050px;}
.yac{bottom:106.216800px;}
.y44{bottom:106.231200px;}
.yed{bottom:106.254600px;}
.yd2{bottom:106.290300px;}
.y85{bottom:106.293150px;}
.y10f{bottom:106.296300px;}
.y1f{bottom:106.317600px;}
.y151{bottom:106.355100px;}
.yd1{bottom:123.543300px;}
.y43{bottom:126.534450px;}
.y10e{bottom:126.544800px;}
.y84{bottom:126.630900px;}
.yab{bottom:126.640800px;}
.yec{bottom:126.678600px;}
.y16f{bottom:126.719850px;}
.y1e{bottom:127.172850px;}
.y150{bottom:127.192350px;}
.y12d{bottom:127.646550px;}
.y18e{bottom:127.853850px;}
.yd0{bottom:140.796300px;}
.y42{bottom:146.837700px;}
.y83{bottom:146.968650px;}
.yaa{bottom:147.064800px;}
.yeb{bottom:147.102600px;}
.y1d{bottom:148.028100px;}
.y12c{bottom:149.098050px;}
.y16e{bottom:155.810100px;}
.y14f{bottom:156.534600px;}
.y18d{bottom:158.093850px;}
.ycf{bottom:161.044800px;}
.y41{bottom:167.140950px;}
.y82{bottom:167.306400px;}
.ya9{bottom:167.488800px;}
.yea{bottom:167.526600px;}
.y1c{bottom:168.883350px;}
.y6a{bottom:170.019750px;}
.y12b{bottom:174.802050px;}
.y16d{bottom:176.395350px;}
.y14e{bottom:177.371850px;}
.y18c{bottom:179.828850px;}
.y40{bottom:187.444200px;}
.y81{bottom:187.644150px;}
.ya8{bottom:187.912800px;}
.ye9{bottom:187.950600px;}
.y69{bottom:188.019750px;}
.y1b{bottom:189.738600px;}
.y12a{bottom:196.253550px;}
.y16c{bottom:196.980600px;}
.y18b{bottom:201.563850px;}
.yce{bottom:205.182450px;}
.y68{bottom:206.019750px;}
.y14d{bottom:206.714100px;}
.y3f{bottom:207.747450px;}
.y80{bottom:207.981900px;}
.ya7{bottom:208.336800px;}
.ye8{bottom:208.374600px;}
.y1a{bottom:210.593850px;}
.y16b{bottom:217.565850px;}
.y129{bottom:221.957550px;}
.y18a{bottom:223.298850px;}
.ycd{bottom:225.692700px;}
.y14c{bottom:227.551350px;}
.y3e{bottom:228.050700px;}
.y67{bottom:228.744750px;}
.ya6{bottom:228.760800px;}
.ye7{bottom:228.798600px;}
.y19{bottom:231.449100px;}
.ycc{bottom:246.202950px;}
.y16a{bottom:246.656100px;}
.y66{bottom:246.744750px;}
.y3d{bottom:248.353950px;}
.ya5{bottom:249.184800px;}
.ye6{bottom:249.222600px;}
.y7f{bottom:249.587550px;}
.y128{bottom:251.914050px;}
.y18{bottom:252.304350px;}
.y189{bottom:253.538850px;}
.y10d{bottom:254.678850px;}
.y14b{bottom:256.893600px;}
.y65{bottom:264.744750px;}
.ycb{bottom:266.713200px;}
.y169{bottom:267.241350px;}
.y3c{bottom:268.657200px;}
.ya4{bottom:269.608800px;}
.ye5{bottom:269.646600px;}
.y17{bottom:273.159600px;}
.y127{bottom:273.365550px;}
.y7e{bottom:273.664800px;}
.y10c{bottom:274.930350px;}
.y188{bottom:275.273850px;}
.y14a{bottom:277.730850px;}
.yca{bottom:287.223450px;}
.y64{bottom:287.469750px;}
.y168{bottom:287.826600px;}
.y3b{bottom:288.960450px;}
.ya3{bottom:290.032800px;}
.ye4{bottom:290.070600px;}
.y16{bottom:294.014850px;}
.y10b{bottom:295.181850px;}
.y149{bottom:298.568100px;}
.y126{bottom:303.322050px;}
.y187{bottom:305.513850px;}
.yc9{bottom:307.733700px;}
.y167{bottom:308.411850px;}
.y3a{bottom:309.263700px;}
.y63{bottom:310.194750px;}
.ya2{bottom:310.456800px;}
.ye3{bottom:310.494600px;}
.y15{bottom:314.870100px;}
.y10a{bottom:315.433350px;}
.y148{bottom:319.405350px;}
.y125{bottom:324.773550px;}
.y186{bottom:327.248850px;}
.y62{bottom:328.194750px;}
.yc8{bottom:328.243950px;}
.y39{bottom:329.566950px;}
.ya1{bottom:330.880800px;}
.ye2{bottom:330.918600px;}
.y109{bottom:335.684850px;}
.y14{bottom:335.725350px;}
.y7d{bottom:335.999550px;}
.y166{bottom:337.502100px;}
.y147{bottom:340.242600px;}
.yc7{bottom:348.754200px;}
.y185{bottom:348.983850px;}
.y38{bottom:349.870200px;}
.y61{bottom:350.919750px;}
.ya0{bottom:351.304800px;}
.ye1{bottom:351.342600px;}
.y124{bottom:354.730050px;}
.y108{bottom:355.936350px;}
.y7c{bottom:356.337300px;}
.y165{bottom:358.087350px;}
.y146{bottom:361.079850px;}
.y60{bottom:368.919750px;}
.yc6{bottom:369.264450px;}
.y37{bottom:370.173450px;}
.ye0{bottom:371.677350px;}
.y9f{bottom:371.728800px;}
.y123{bottom:376.181550px;}
.y107{bottom:376.187850px;}
.y7b{bottom:376.675050px;}
.y164{bottom:378.672600px;}
.y184{bottom:379.223850px;}
.y145{bottom:381.917100px;}
.y13{bottom:386.366700px;}
.y5f{bottom:386.919750px;}
.yc5{bottom:389.774700px;}
.y36{bottom:390.476700px;}
.ydf{bottom:392.101350px;}
.y9e{bottom:392.152800px;}
.y106{bottom:396.439350px;}
.y7a{bottom:397.012800px;}
.y122{bottom:397.633050px;}
.y163{bottom:399.257850px;}
.y183{bottom:400.958850px;}
.y144{bottom:402.754350px;}
.y12{bottom:407.966700px;}
.y5e{bottom:409.644750px;}
.yc4{bottom:410.284950px;}
.yde{bottom:412.525350px;}
.y9d{bottom:412.576800px;}
.y105{bottom:416.690850px;}
.y79{bottom:417.350550px;}
.y143{bottom:423.591600px;}
.y121{bottom:427.589550px;}
.y5d{bottom:427.644750px;}
.y162{bottom:428.348100px;}
.y11{bottom:429.566700px;}
.yc3{bottom:430.795200px;}
.y182{bottom:431.198850px;}
.y35{bottom:432.034950px;}
.ydd{bottom:432.949350px;}
.y9c{bottom:433.000800px;}
.y104{bottom:436.942350px;}
.y78{bottom:437.688300px;}
.y142{bottom:444.428850px;}
.y161{bottom:448.933350px;}
.y120{bottom:449.041050px;}
.y5c{bottom:450.369750px;}
.y10{bottom:451.166700px;}
.yc2{bottom:451.305450px;}
.y181{bottom:452.933850px;}
.ydc{bottom:453.373350px;}
.y9b{bottom:453.424800px;}
.y103{bottom:457.193850px;}
.y77{bottom:458.026050px;}
.y5b{bottom:468.369750px;}
.y160{bottom:469.518600px;}
.yc1{bottom:471.815700px;}
.y141{bottom:473.771100px;}
.ydb{bottom:473.797350px;}
.y9a{bottom:473.848800px;}
.y102{bottom:477.445350px;}
.y76{bottom:478.363800px;}
.y11f{bottom:478.997550px;}
.y180{bottom:483.173850px;}
.y15f{bottom:490.103850px;}
.y5a{bottom:491.094750px;}
.yc0{bottom:492.496350px;}
.yda{bottom:494.221350px;}
.y99{bottom:494.272800px;}
.y34{bottom:494.307450px;}
.y140{bottom:494.608350px;}
.y101{bottom:497.696850px;}
.y75{bottom:498.701550px;}
.y11e{bottom:500.449050px;}
.yf{bottom:502.557000px;}
.y17f{bottom:504.908850px;}
.y59{bottom:509.094750px;}
.ybf{bottom:513.006600px;}
.y33{bottom:514.610700px;}
.yd9{bottom:514.645350px;}
.y98{bottom:514.696800px;}
.y100{bottom:517.948350px;}
.y74{bottom:519.039300px;}
.y15e{bottom:519.194100px;}
.y11d{bottom:521.900550px;}
.y13f{bottom:523.950600px;}
.y17e{bottom:526.643850px;}
.y58{bottom:527.094750px;}
.ybe{bottom:533.516850px;}
.ye{bottom:534.660000px;}
.y32{bottom:534.913950px;}
.yd8{bottom:535.069350px;}
.y97{bottom:535.120800px;}
.yff{bottom:538.199850px;}
.y73{bottom:539.377050px;}
.y15d{bottom:539.779350px;}
.y13e{bottom:544.787850px;}
.y57{bottom:545.094750px;}
.y11c{bottom:551.857050px;}
.ybd{bottom:554.027100px;}
.y31{bottom:555.217200px;}
.yd7{bottom:555.493350px;}
.y96{bottom:555.544800px;}
.y17d{bottom:556.883850px;}
.yfe{bottom:558.425850px;}
.y72{bottom:559.714800px;}
.y15c{bottom:560.364600px;}
.y56{bottom:563.094750px;}
.y13d{bottom:565.625100px;}
.y19d{bottom:565.939050px;}
.yd{bottom:566.763000px;}
.y11b{bottom:573.248100px;}
.ybc{bottom:574.537350px;}
.y30{bottom:575.520450px;}
.yd6{bottom:575.917350px;}
.y95{bottom:575.968800px;}
.y17c{bottom:578.618850px;}
.yfd{bottom:578.677350px;}
.y71{bottom:580.052550px;}
.y55{bottom:585.819750px;}
.y19c{bottom:586.189050px;}
.y15b{bottom:589.454850px;}
.y11a{bottom:594.699600px;}
.y13c{bottom:594.967350px;}
.ybb{bottom:595.047600px;}
.y2f{bottom:595.823700px;}
.yd5{bottom:596.341350px;}
.y94{bottom:596.389500px;}
.yc{bottom:598.866000px;}
.yfc{bottom:598.928850px;}
.y70{bottom:600.390300px;}
.y54{bottom:603.819750px;}
.y19b{bottom:606.439050px;}
.y17b{bottom:608.858850px;}
.yba{bottom:615.557850px;}
.y13b{bottom:615.804600px;}
.y2e{bottom:616.126950px;}
.yd4{bottom:616.765350px;}
.y93{bottom:616.806600px;}
.y15a{bottom:618.545100px;}
.yfb{bottom:619.180350px;}
.y6f{bottom:620.728050px;}
.y53{bottom:621.819750px;}
.y119{bottom:624.656100px;}
.y19a{bottom:626.689050px;}
.y17a{bottom:630.593850px;}
.yb{bottom:630.969000px;}
.yb9{bottom:636.068100px;}
.y2d{bottom:636.430200px;}
.y13a{bottom:636.641850px;}
.yd3{bottom:637.189350px;}
.y92{bottom:637.230600px;}
.y159{bottom:639.130350px;}
.yfa{bottom:639.431850px;}
.y6e{bottom:641.065800px;}
.y52{bottom:644.544750px;}
.y118{bottom:646.107600px;}
.y199{bottom:646.939050px;}
.y179{bottom:652.328850px;}
.yb8{bottom:656.578350px;}
.y2c{bottom:656.733450px;}
.y91{bottom:657.613350px;}
.yf9{bottom:659.683350px;}
.y6d{bottom:661.403550px;}
.y139{bottom:661.731600px;}
.y51{bottom:662.544750px;}
.ya{bottom:663.072000px;}
.y117{bottom:667.559100px;}
.y158{bottom:668.220600px;}
.y2b{bottom:677.036700px;}
.yb7{bottom:677.088600px;}
.y90{bottom:678.037350px;}
.yf8{bottom:679.934850px;}
.y50{bottom:680.544750px;}
.y138{bottom:682.568850px;}
.y198{bottom:687.439050px;}
.y157{bottom:688.805850px;}
.y9{bottom:695.178900px;}
.y116{bottom:697.515600px;}
.yb6{bottom:697.598850px;}
.y8f{bottom:698.461350px;}
.y4f{bottom:698.544750px;}
.yf7{bottom:700.186350px;}
.y6c{bottom:702.999900px;}
.y137{bottom:703.406100px;}
.y178{bottom:704.303850px;}
.y197{bottom:707.689050px;}
.y156{bottom:709.391100px;}
.yb5{bottom:718.109100px;}
.y2a{bottom:718.594950px;}
.y8e{bottom:718.885350px;}
.y115{bottom:718.967100px;}
.yf6{bottom:720.437850px;}
.y4e{bottom:721.269750px;}
.y177{bottom:726.038850px;}
.y196{bottom:727.939050px;}
.y136{bottom:728.495850px;}
.y155{bottom:738.481350px;}
.yb4{bottom:738.619350px;}
.y4d{bottom:739.269750px;}
.y8d{bottom:739.309350px;}
.yf5{bottom:740.689350px;}
.y195{bottom:748.189050px;}
.y6b{bottom:748.346250px;}
.y114{bottom:748.923600px;}
.y135{bottom:749.333100px;}
.y176{bottom:756.278850px;}
.y8{bottom:757.081950px;}
.yb3{bottom:759.129600px;}
.y8c{bottom:759.733350px;}
.yf4{bottom:760.940850px;}
.y4c{bottom:761.994750px;}
.y194{bottom:768.439050px;}
.y134{bottom:770.170350px;}
.y113{bottom:770.375100px;}
.y175{bottom:778.013850px;}
.yb2{bottom:779.639850px;}
.y4b{bottom:779.994750px;}
.y8b{bottom:780.157350px;}
.y29{bottom:780.881850px;}
.yf3{bottom:781.192350px;}
.y7{bottom:787.186950px;}
.y193{bottom:788.689050px;}
.y133{bottom:795.260100px;}
.y4a{bottom:797.994750px;}
.y174{bottom:799.748850px;}
.yb1{bottom:800.150100px;}
.y112{bottom:800.331600px;}
.y8a{bottom:800.581350px;}
.y28{bottom:801.185100px;}
.yf2{bottom:801.443850px;}
.y6{bottom:808.786950px;}
.y192{bottom:808.939050px;}
.y132{bottom:816.097350px;}
.yb0{bottom:820.660350px;}
.y49{bottom:820.719750px;}
.y89{bottom:821.005350px;}
.y27{bottom:821.488350px;}
.yf1{bottom:821.695350px;}
.y111{bottom:821.783100px;}
.y173{bottom:829.988850px;}
.y5{bottom:830.386950px;}
.y154{bottom:833.438100px;}
.y131{bottom:836.934600px;}
.y48{bottom:838.719750px;}
.yaf{bottom:841.170600px;}
.y88{bottom:841.429350px;}
.y26{bottom:841.791600px;}
.y191{bottom:841.939050px;}
.yf0{bottom:841.946850px;}
.y110{bottom:851.739600px;}
.y153{bottom:854.023350px;}
.y47{bottom:856.719750px;}
.y172{bottom:860.228850px;}
.y4{bottom:860.491950px;}
.yae{bottom:861.680850px;}
.y87{bottom:861.853350px;}
.y130{bottom:862.024350px;}
.y25{bottom:862.094850px;}
.yef{bottom:862.198350px;}
.y46{bottom:874.719750px;}
.y171{bottom:881.963850px;}
.y3{bottom:882.091950px;}
.yad{bottom:882.191100px;}
.y86{bottom:882.277350px;}
.y24{bottom:882.398100px;}
.yee{bottom:882.449850px;}
.y12f{bottom:882.861600px;}
.y152{bottom:883.113600px;}
.y190{bottom:883.444350px;}
.y45{bottom:897.444750px;}
.y23{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.y21{bottom:966.189000px;}
.y20{bottom:984.189000px;}
.h10{height:37.983820px;}
.hb{height:44.414062px;}
.h13{height:48.530695px;}
.h14{height:49.341797px;}
.h12{height:49.965820px;}
.hc{height:50.068359px;}
.h8{height:51.884766px;}
.h4{height:55.517578px;}
.h3{height:58.293457px;}
.h11{height:60.512695px;}
.h7{height:63.845215px;}
.hd{height:67.236328px;}
.h2{height:69.396973px;}
.h15{height:70.598145px;}
.ha{height:74.948730px;}
.h9{height:77.321777px;}
.hf{height:77.334977px;}
.he{height:77.486777px;}
.h5{height:77.724609px;}
.h6{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x10{left:80.920800px;}
.xe{left:82.464000px;}
.x1{left:83.672550px;}
.x5{left:85.051500px;}
.x7{left:93.227400px;}
.x13{left:104.526750px;}
.x4{left:105.613500px;}
.x11{left:107.296500px;}
.x12{left:122.873250px;}
.xf{left:201.097650px;}
.xd{left:202.455600px;}
.x6{left:212.664000px;}
.x3{left:232.055400px;}
.x2{left:233.415450px;}
.x8{left:331.172400px;}
.x9{left:334.232400px;}
.xa{left:335.372400px;}
.xc{left:574.667400px;}
.xb{left:576.962400px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.529600pt;}
.v2{vertical-align:14.484800pt;}
.v1{vertical-align:20.570667pt;}
.ls2a{letter-spacing:-5.280000pt;}
.ls1d{letter-spacing:-4.000000pt;}
.ls1a{letter-spacing:-3.466667pt;}
.ls15{letter-spacing:-3.360000pt;}
.ls13{letter-spacing:-3.093333pt;}
.ls37{letter-spacing:-3.066667pt;}
.ls1b{letter-spacing:-3.040000pt;}
.ls22{letter-spacing:-2.506667pt;}
.ls34{letter-spacing:-2.392000pt;}
.ls3e{letter-spacing:-2.352000pt;}
.ls2b{letter-spacing:-2.293333pt;}
.ls16{letter-spacing:-1.973333pt;}
.ls36{letter-spacing:-1.962667pt;}
.ls2f{letter-spacing:-1.874667pt;}
.ls42{letter-spacing:-1.848000pt;}
.ls23{letter-spacing:-1.760000pt;}
.ls21{letter-spacing:-1.653333pt;}
.ls7{letter-spacing:-1.632000pt;}
.ls19{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.226667pt;}
.ls39{letter-spacing:-1.200000pt;}
.ls14{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-1.013333pt;}
.ls1f{letter-spacing:-0.906667pt;}
.ls30{letter-spacing:-0.864000pt;}
.ls20{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.760000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls2e{letter-spacing:-0.557333pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.426667pt;}
.ls2d{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000267pt;}
.ls31{letter-spacing:0.001915pt;}
.ls38{letter-spacing:0.007445pt;}
.ls33{letter-spacing:0.008203pt;}
.ls32{letter-spacing:0.019733pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.056000pt;}
.ls28{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.213333pt;}
.ls3f{letter-spacing:0.616000pt;}
.ls26{letter-spacing:0.906667pt;}
.ls12{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.173333pt;}
.ls24{letter-spacing:1.333333pt;}
.lsd{letter-spacing:2.133333pt;}
.ls3c{letter-spacing:3.864000pt;}
.ls3b{letter-spacing:4.200000pt;}
.ls2{letter-spacing:4.853333pt;}
.lse{letter-spacing:4.866667pt;}
.ls4{letter-spacing:5.120000pt;}
.ls41{letter-spacing:5.200000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls3d{letter-spacing:5.600000pt;}
.ls3a{letter-spacing:6.361600pt;}
.ls0{letter-spacing:7.066667pt;}
.lsb{letter-spacing:169.386667pt;}
.ws0{word-spacing:-25.800000pt;}
.ws3{word-spacing:-25.344000pt;}
.ws4c{word-spacing:-23.933333pt;}
.wsc{word-spacing:-23.600000pt;}
.ws43{word-spacing:-19.600000pt;}
.ws38{word-spacing:-19.368000pt;}
.ws3f{word-spacing:-17.234667pt;}
.ws11{word-spacing:-16.106667pt;}
.ws44{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.344000pt;}
.ws39{word-spacing:-15.149333pt;}
.ws21{word-spacing:-15.093333pt;}
.ws18{word-spacing:-15.040000pt;}
.ws13{word-spacing:-14.986667pt;}
.ws19{word-spacing:-14.880000pt;}
.ws25{word-spacing:-14.773333pt;}
.ws26{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws46{word-spacing:-13.832000pt;}
.ws20{word-spacing:-13.280000pt;}
.ws3d{word-spacing:-13.186667pt;}
.ws12{word-spacing:-13.173333pt;}
.ws1d{word-spacing:-12.853333pt;}
.ws37{word-spacing:-12.800000pt;}
.ws3c{word-spacing:-12.757333pt;}
.ws24{word-spacing:-12.693333pt;}
.ws14{word-spacing:-12.586667pt;}
.ws1c{word-spacing:-12.480000pt;}
.ws3e{word-spacing:-12.082667pt;}
.ws1f{word-spacing:-11.946667pt;}
.ws40{word-spacing:-11.856000pt;}
.ws1a{word-spacing:-11.520000pt;}
.ws1e{word-spacing:-11.413333pt;}
.ws42{word-spacing:-10.656000pt;}
.wsf{word-spacing:-10.080000pt;}
.ws41{word-spacing:-10.047811pt;}
.ws10{word-spacing:-9.813333pt;}
.ws15{word-spacing:-9.706667pt;}
.ws45{word-spacing:-9.174088pt;}
.ws17{word-spacing:-9.173333pt;}
.ws47{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws6{word-spacing:-5.120000pt;}
.ws27{word-spacing:-2.133333pt;}
.ws32{word-spacing:-1.333333pt;}
.ws2c{word-spacing:-1.173333pt;}
.ws29{word-spacing:-1.120000pt;}
.ws34{word-spacing:-0.906667pt;}
.ws4a{word-spacing:-0.616000pt;}
.ws48{word-spacing:-0.224000pt;}
.ws30{word-spacing:-0.213333pt;}
.ws4b{word-spacing:-0.056000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.106667pt;}
.ws9{word-spacing:0.160000pt;}
.ws8{word-spacing:0.213333pt;}
.wsa{word-spacing:0.320000pt;}
.ws33{word-spacing:0.426667pt;}
.ws35{word-spacing:0.480000pt;}
.ws3a{word-spacing:0.557333pt;}
.ws7{word-spacing:0.640000pt;}
.wsb{word-spacing:0.760000pt;}
.ws31{word-spacing:0.853333pt;}
.ws2f{word-spacing:0.906667pt;}
.ws2a{word-spacing:1.066667pt;}
.ws28{word-spacing:1.280000pt;}
.ws2d{word-spacing:1.333333pt;}
.ws4d{word-spacing:1.848000pt;}
.ws3b{word-spacing:1.874667pt;}
.ws2b{word-spacing:1.973333pt;}
.ws49{word-spacing:2.352000pt;}
.ws36{word-spacing:5.280000pt;}
.ws16{word-spacing:97.488000pt;}
.ws22{word-spacing:404.426667pt;}
.ws23{word-spacing:450.576000pt;}
.ws1b{word-spacing:481.173333pt;}
.wse{word-spacing:601.360000pt;}
.wsd{word-spacing:670.272000pt;}
._1e{margin-left:-17.122133pt;}
._22{margin-left:-15.475467pt;}
._20{margin-left:-6.488533pt;}
._6{margin-left:-5.530667pt;}
._9{margin-left:-4.309333pt;}
._a{margin-left:-2.654667pt;}
._5{margin-left:-0.953067pt;}
._1{width:0.938667pt;}
._3{width:1.872000pt;}
._4{width:2.852533pt;}
._8{width:3.939733pt;}
._2{width:5.616000pt;}
._7{width:6.635467pt;}
._e{width:7.954933pt;}
._f{width:8.888533pt;}
._b{width:9.821867pt;}
._13{width:10.720000pt;}
._c{width:11.780800pt;}
._d{width:12.751200pt;}
._1a{width:14.413333pt;}
._1b{width:15.880533pt;}
._12{width:18.654933pt;}
._21{width:19.573333pt;}
._19{width:22.278400pt;}
._1d{width:38.617920pt;}
._17{width:277.538667pt;}
._15{width:362.756000pt;}
._0{width:397.819733pt;}
._14{width:400.649067pt;}
._23{width:401.547733pt;}
._16{width:512.173067pt;}
._10{width:514.133333pt;}
._18{width:835.355200pt;}
._1c{width:837.688533pt;}
._1f{width:841.288533pt;}
._11{width:843.048533pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:32.648000pt;}
.fsa{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y18f{bottom:94.327867pt;}
.y170{bottom:94.341867pt;}
.y12e{bottom:94.395600pt;}
.yac{bottom:94.414933pt;}
.y44{bottom:94.427733pt;}
.yed{bottom:94.448533pt;}
.yd2{bottom:94.480267pt;}
.y85{bottom:94.482800pt;}
.y10f{bottom:94.485600pt;}
.y1f{bottom:94.504533pt;}
.y151{bottom:94.537867pt;}
.yd1{bottom:109.816267pt;}
.y43{bottom:112.475067pt;}
.y10e{bottom:112.484267pt;}
.y84{bottom:112.560800pt;}
.yab{bottom:112.569600pt;}
.yec{bottom:112.603200pt;}
.y16f{bottom:112.639867pt;}
.y1e{bottom:113.042533pt;}
.y150{bottom:113.059867pt;}
.y12d{bottom:113.463600pt;}
.y18e{bottom:113.647867pt;}
.yd0{bottom:125.152267pt;}
.y42{bottom:130.522400pt;}
.y83{bottom:130.638800pt;}
.yaa{bottom:130.724267pt;}
.yeb{bottom:130.757867pt;}
.y1d{bottom:131.580533pt;}
.y12c{bottom:132.531600pt;}
.y16e{bottom:138.497867pt;}
.y14f{bottom:139.141867pt;}
.y18d{bottom:140.527867pt;}
.ycf{bottom:143.150933pt;}
.y41{bottom:148.569733pt;}
.y82{bottom:148.716800pt;}
.ya9{bottom:148.878933pt;}
.yea{bottom:148.912533pt;}
.y1c{bottom:150.118533pt;}
.y6a{bottom:151.128667pt;}
.y12b{bottom:155.379600pt;}
.y16d{bottom:156.795867pt;}
.y14e{bottom:157.663867pt;}
.y18c{bottom:159.847867pt;}
.y40{bottom:166.617067pt;}
.y81{bottom:166.794800pt;}
.ya8{bottom:167.033600pt;}
.ye9{bottom:167.067200pt;}
.y69{bottom:167.128667pt;}
.y1b{bottom:168.656533pt;}
.y12a{bottom:174.447600pt;}
.y16c{bottom:175.093867pt;}
.y18b{bottom:179.167867pt;}
.yce{bottom:182.384400pt;}
.y68{bottom:183.128667pt;}
.y14d{bottom:183.745867pt;}
.y3f{bottom:184.664400pt;}
.y80{bottom:184.872800pt;}
.ya7{bottom:185.188267pt;}
.ye8{bottom:185.221867pt;}
.y1a{bottom:187.194533pt;}
.y16b{bottom:193.391867pt;}
.y129{bottom:197.295600pt;}
.y18a{bottom:198.487867pt;}
.ycd{bottom:200.615733pt;}
.y14c{bottom:202.267867pt;}
.y3e{bottom:202.711733pt;}
.y67{bottom:203.328667pt;}
.ya6{bottom:203.342933pt;}
.ye7{bottom:203.376533pt;}
.y19{bottom:205.732533pt;}
.ycc{bottom:218.847067pt;}
.y16a{bottom:219.249867pt;}
.y66{bottom:219.328667pt;}
.y3d{bottom:220.759067pt;}
.ya5{bottom:221.497600pt;}
.ye6{bottom:221.531200pt;}
.y7f{bottom:221.855600pt;}
.y128{bottom:223.923600pt;}
.y18{bottom:224.270533pt;}
.y189{bottom:225.367867pt;}
.y10d{bottom:226.381200pt;}
.y14b{bottom:228.349867pt;}
.y65{bottom:235.328667pt;}
.ycb{bottom:237.078400pt;}
.y169{bottom:237.547867pt;}
.y3c{bottom:238.806400pt;}
.ya4{bottom:239.652267pt;}
.ye5{bottom:239.685867pt;}
.y17{bottom:242.808533pt;}
.y127{bottom:242.991600pt;}
.y7e{bottom:243.257600pt;}
.y10c{bottom:244.382533pt;}
.y188{bottom:244.687867pt;}
.y14a{bottom:246.871867pt;}
.yca{bottom:255.309733pt;}
.y64{bottom:255.528667pt;}
.y168{bottom:255.845867pt;}
.y3b{bottom:256.853733pt;}
.ya3{bottom:257.806933pt;}
.ye4{bottom:257.840533pt;}
.y16{bottom:261.346533pt;}
.y10b{bottom:262.383867pt;}
.y149{bottom:265.393867pt;}
.y126{bottom:269.619600pt;}
.y187{bottom:271.567867pt;}
.yc9{bottom:273.541067pt;}
.y167{bottom:274.143867pt;}
.y3a{bottom:274.901067pt;}
.y63{bottom:275.728667pt;}
.ya2{bottom:275.961600pt;}
.ye3{bottom:275.995200pt;}
.y15{bottom:279.884533pt;}
.y10a{bottom:280.385200pt;}
.y148{bottom:283.915867pt;}
.y125{bottom:288.687600pt;}
.y186{bottom:290.887867pt;}
.y62{bottom:291.728667pt;}
.yc8{bottom:291.772400pt;}
.y39{bottom:292.948400pt;}
.ya1{bottom:294.116267pt;}
.ye2{bottom:294.149867pt;}
.y109{bottom:298.386533pt;}
.y14{bottom:298.422533pt;}
.y7d{bottom:298.666267pt;}
.y166{bottom:300.001867pt;}
.y147{bottom:302.437867pt;}
.yc7{bottom:310.003733pt;}
.y185{bottom:310.207867pt;}
.y38{bottom:310.995733pt;}
.y61{bottom:311.928667pt;}
.ya0{bottom:312.270933pt;}
.ye1{bottom:312.304533pt;}
.y124{bottom:315.315600pt;}
.y108{bottom:316.387867pt;}
.y7c{bottom:316.744267pt;}
.y165{bottom:318.299867pt;}
.y146{bottom:320.959867pt;}
.y60{bottom:327.928667pt;}
.yc6{bottom:328.235067pt;}
.y37{bottom:329.043067pt;}
.ye0{bottom:330.379867pt;}
.y9f{bottom:330.425600pt;}
.y123{bottom:334.383600pt;}
.y107{bottom:334.389200pt;}
.y7b{bottom:334.822267pt;}
.y164{bottom:336.597867pt;}
.y184{bottom:337.087867pt;}
.y145{bottom:339.481867pt;}
.y13{bottom:343.437067pt;}
.y5f{bottom:343.928667pt;}
.yc5{bottom:346.466400pt;}
.y36{bottom:347.090400pt;}
.ydf{bottom:348.534533pt;}
.y9e{bottom:348.580267pt;}
.y106{bottom:352.390533pt;}
.y7a{bottom:352.900267pt;}
.y122{bottom:353.451600pt;}
.y163{bottom:354.895867pt;}
.y183{bottom:356.407867pt;}
.y144{bottom:358.003867pt;}
.y12{bottom:362.637067pt;}
.y5e{bottom:364.128667pt;}
.yc4{bottom:364.697733pt;}
.yde{bottom:366.689200pt;}
.y9d{bottom:366.734933pt;}
.y105{bottom:370.391867pt;}
.y79{bottom:370.978267pt;}
.y143{bottom:376.525867pt;}
.y121{bottom:380.079600pt;}
.y5d{bottom:380.128667pt;}
.y162{bottom:380.753867pt;}
.y11{bottom:381.837067pt;}
.yc3{bottom:382.929067pt;}
.y182{bottom:383.287867pt;}
.y35{bottom:384.031067pt;}
.ydd{bottom:384.843867pt;}
.y9c{bottom:384.889600pt;}
.y104{bottom:388.393200pt;}
.y78{bottom:389.056267pt;}
.y142{bottom:395.047867pt;}
.y161{bottom:399.051867pt;}
.y120{bottom:399.147600pt;}
.y5c{bottom:400.328667pt;}
.y10{bottom:401.037067pt;}
.yc2{bottom:401.160400pt;}
.y181{bottom:402.607867pt;}
.ydc{bottom:402.998533pt;}
.y9b{bottom:403.044267pt;}
.y103{bottom:406.394533pt;}
.y77{bottom:407.134267pt;}
.y5b{bottom:416.328667pt;}
.y160{bottom:417.349867pt;}
.yc1{bottom:419.391733pt;}
.y141{bottom:421.129867pt;}
.ydb{bottom:421.153200pt;}
.y9a{bottom:421.198933pt;}
.y102{bottom:424.395867pt;}
.y76{bottom:425.212267pt;}
.y11f{bottom:425.775600pt;}
.y180{bottom:429.487867pt;}
.y15f{bottom:435.647867pt;}
.y5a{bottom:436.528667pt;}
.yc0{bottom:437.774533pt;}
.yda{bottom:439.307867pt;}
.y99{bottom:439.353600pt;}
.y34{bottom:439.384400pt;}
.y140{bottom:439.651867pt;}
.y101{bottom:442.397200pt;}
.y75{bottom:443.290267pt;}
.y11e{bottom:444.843600pt;}
.yf{bottom:446.717333pt;}
.y17f{bottom:448.807867pt;}
.y59{bottom:452.528667pt;}
.ybf{bottom:456.005867pt;}
.y33{bottom:457.431733pt;}
.yd9{bottom:457.462533pt;}
.y98{bottom:457.508267pt;}
.y100{bottom:460.398533pt;}
.y74{bottom:461.368267pt;}
.y15e{bottom:461.505867pt;}
.y11d{bottom:463.911600pt;}
.y13f{bottom:465.733867pt;}
.y17e{bottom:468.127867pt;}
.y58{bottom:468.528667pt;}
.ybe{bottom:474.237200pt;}
.ye{bottom:475.253333pt;}
.y32{bottom:475.479067pt;}
.yd8{bottom:475.617200pt;}
.y97{bottom:475.662933pt;}
.yff{bottom:478.399867pt;}
.y73{bottom:479.446267pt;}
.y15d{bottom:479.803867pt;}
.y13e{bottom:484.255867pt;}
.y57{bottom:484.528667pt;}
.y11c{bottom:490.539600pt;}
.ybd{bottom:492.468533pt;}
.y31{bottom:493.526400pt;}
.yd7{bottom:493.771867pt;}
.y96{bottom:493.817600pt;}
.y17d{bottom:495.007867pt;}
.yfe{bottom:496.378533pt;}
.y72{bottom:497.524267pt;}
.y15c{bottom:498.101867pt;}
.y56{bottom:500.528667pt;}
.y13d{bottom:502.777867pt;}
.y19d{bottom:503.056933pt;}
.yd{bottom:503.789333pt;}
.y11b{bottom:509.553867pt;}
.ybc{bottom:510.699867pt;}
.y30{bottom:511.573733pt;}
.yd6{bottom:511.926533pt;}
.y95{bottom:511.972267pt;}
.y17c{bottom:514.327867pt;}
.yfd{bottom:514.379867pt;}
.y71{bottom:515.602267pt;}
.y55{bottom:520.728667pt;}
.y19c{bottom:521.056933pt;}
.y15b{bottom:523.959867pt;}
.y11a{bottom:528.621867pt;}
.y13c{bottom:528.859867pt;}
.ybb{bottom:528.931200pt;}
.y2f{bottom:529.621067pt;}
.yd5{bottom:530.081200pt;}
.y94{bottom:530.124000pt;}
.yc{bottom:532.325333pt;}
.yfc{bottom:532.381200pt;}
.y70{bottom:533.680267pt;}
.y54{bottom:536.728667pt;}
.y19b{bottom:539.056933pt;}
.y17b{bottom:541.207867pt;}
.yba{bottom:547.162533pt;}
.y13b{bottom:547.381867pt;}
.y2e{bottom:547.668400pt;}
.yd4{bottom:548.235867pt;}
.y93{bottom:548.272533pt;}
.y15a{bottom:549.817867pt;}
.yfb{bottom:550.382533pt;}
.y6f{bottom:551.758267pt;}
.y53{bottom:552.728667pt;}
.y119{bottom:555.249867pt;}
.y19a{bottom:557.056933pt;}
.y17a{bottom:560.527867pt;}
.yb{bottom:560.861333pt;}
.yb9{bottom:565.393867pt;}
.y2d{bottom:565.715733pt;}
.y13a{bottom:565.903867pt;}
.yd3{bottom:566.390533pt;}
.y92{bottom:566.427200pt;}
.y159{bottom:568.115867pt;}
.yfa{bottom:568.383867pt;}
.y6e{bottom:569.836267pt;}
.y52{bottom:572.928667pt;}
.y118{bottom:574.317867pt;}
.y199{bottom:575.056933pt;}
.y179{bottom:579.847867pt;}
.yb8{bottom:583.625200pt;}
.y2c{bottom:583.763067pt;}
.y91{bottom:584.545200pt;}
.yf9{bottom:586.385200pt;}
.y6d{bottom:587.914267pt;}
.y139{bottom:588.205867pt;}
.y51{bottom:588.928667pt;}
.ya{bottom:589.397333pt;}
.y117{bottom:593.385867pt;}
.y158{bottom:593.973867pt;}
.y2b{bottom:601.810400pt;}
.yb7{bottom:601.856533pt;}
.y90{bottom:602.699867pt;}
.yf8{bottom:604.386533pt;}
.y50{bottom:604.928667pt;}
.y138{bottom:606.727867pt;}
.y198{bottom:611.056933pt;}
.y157{bottom:612.271867pt;}
.y9{bottom:617.936800pt;}
.y116{bottom:620.013867pt;}
.yb6{bottom:620.087867pt;}
.y8f{bottom:620.854533pt;}
.y4f{bottom:620.928667pt;}
.yf7{bottom:622.387867pt;}
.y6c{bottom:624.888800pt;}
.y137{bottom:625.249867pt;}
.y178{bottom:626.047867pt;}
.y197{bottom:629.056933pt;}
.y156{bottom:630.569867pt;}
.yb5{bottom:638.319200pt;}
.y2a{bottom:638.751067pt;}
.y8e{bottom:639.009200pt;}
.y115{bottom:639.081867pt;}
.yf6{bottom:640.389200pt;}
.y4e{bottom:641.128667pt;}
.y177{bottom:645.367867pt;}
.y196{bottom:647.056933pt;}
.y136{bottom:647.551867pt;}
.y155{bottom:656.427867pt;}
.yb4{bottom:656.550533pt;}
.y4d{bottom:657.128667pt;}
.y8d{bottom:657.163867pt;}
.yf5{bottom:658.390533pt;}
.y195{bottom:665.056933pt;}
.y6b{bottom:665.196667pt;}
.y114{bottom:665.709867pt;}
.y135{bottom:666.073867pt;}
.y176{bottom:672.247867pt;}
.y8{bottom:672.961733pt;}
.yb3{bottom:674.781867pt;}
.y8c{bottom:675.318533pt;}
.yf4{bottom:676.391867pt;}
.y4c{bottom:677.328667pt;}
.y194{bottom:683.056933pt;}
.y134{bottom:684.595867pt;}
.y113{bottom:684.777867pt;}
.y175{bottom:691.567867pt;}
.yb2{bottom:693.013200pt;}
.y4b{bottom:693.328667pt;}
.y8b{bottom:693.473200pt;}
.y29{bottom:694.117200pt;}
.yf3{bottom:694.393200pt;}
.y7{bottom:699.721733pt;}
.y193{bottom:701.056933pt;}
.y133{bottom:706.897867pt;}
.y4a{bottom:709.328667pt;}
.y174{bottom:710.887867pt;}
.yb1{bottom:711.244533pt;}
.y112{bottom:711.405867pt;}
.y8a{bottom:711.627867pt;}
.y28{bottom:712.164533pt;}
.yf2{bottom:712.394533pt;}
.y6{bottom:718.921733pt;}
.y192{bottom:719.056933pt;}
.y132{bottom:725.419867pt;}
.yb0{bottom:729.475867pt;}
.y49{bottom:729.528667pt;}
.y89{bottom:729.782533pt;}
.y27{bottom:730.211867pt;}
.yf1{bottom:730.395867pt;}
.y111{bottom:730.473867pt;}
.y173{bottom:737.767867pt;}
.y5{bottom:738.121733pt;}
.y154{bottom:740.833867pt;}
.y131{bottom:743.941867pt;}
.y48{bottom:745.528667pt;}
.yaf{bottom:747.707200pt;}
.y88{bottom:747.937200pt;}
.y26{bottom:748.259200pt;}
.y191{bottom:748.390267pt;}
.yf0{bottom:748.397200pt;}
.y110{bottom:757.101867pt;}
.y153{bottom:759.131867pt;}
.y47{bottom:761.528667pt;}
.y172{bottom:764.647867pt;}
.y4{bottom:764.881733pt;}
.yae{bottom:765.938533pt;}
.y87{bottom:766.091867pt;}
.y130{bottom:766.243867pt;}
.y25{bottom:766.306533pt;}
.yef{bottom:766.398533pt;}
.y46{bottom:777.528667pt;}
.y171{bottom:783.967867pt;}
.y3{bottom:784.081733pt;}
.yad{bottom:784.169867pt;}
.y86{bottom:784.246533pt;}
.y24{bottom:784.353867pt;}
.yee{bottom:784.399867pt;}
.y12f{bottom:784.765867pt;}
.y152{bottom:784.989867pt;}
.y190{bottom:785.283867pt;}
.y45{bottom:797.728667pt;}
.y23{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.y21{bottom:858.834667pt;}
.y20{bottom:874.834667pt;}
.h10{height:33.763396pt;}
.hb{height:39.479167pt;}
.h13{height:43.138396pt;}
.h14{height:43.859375pt;}
.h12{height:44.414062pt;}
.hc{height:44.505208pt;}
.h8{height:46.119792pt;}
.h4{height:49.348958pt;}
.h3{height:51.816406pt;}
.h11{height:53.789062pt;}
.h7{height:56.751302pt;}
.hd{height:59.765625pt;}
.h2{height:61.686198pt;}
.h15{height:62.753906pt;}
.ha{height:66.621094pt;}
.h9{height:68.730469pt;}
.hf{height:68.742202pt;}
.he{height:68.877135pt;}
.h5{height:69.088542pt;}
.h6{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x10{left:71.929600pt;}
.xe{left:73.301333pt;}
.x1{left:74.375600pt;}
.x5{left:75.601333pt;}
.x7{left:82.868800pt;}
.x13{left:92.912667pt;}
.x4{left:93.878667pt;}
.x11{left:95.374667pt;}
.x12{left:109.220667pt;}
.xf{left:178.753467pt;}
.xd{left:179.960533pt;}
.x6{left:189.034667pt;}
.x3{left:206.271467pt;}
.x2{left:207.480400pt;}
.x8{left:294.375467pt;}
.x9{left:297.095467pt;}
.xa{left:298.108800pt;}
.xc{left:510.815467pt;}
.xb{left:512.855467pt;}
}




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