
    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_a967132da832689e9eea6950.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128000;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_82383476882bc3f3059230c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140000;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_e70cbd172fef9a8143fb63b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.817000;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_52dcc76354d49de4ae81cab7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_ac0c5aa46705b8e4954a37b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;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_f57b36d29ee957ebfafc56dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.992400px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:23.976000px;}
.lsd{letter-spacing:-3.960000px;}
.lsa{letter-spacing:-2.430000px;}
.ls15{letter-spacing:-2.160000px;}
.lse{letter-spacing:-1.872000px;}
.ls4{letter-spacing:-1.800000px;}
.lsb{letter-spacing:-1.620000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.404000px;}
.ls9{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.756000px;}
.ls2{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.209880px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000120px;}
.ls6{letter-spacing:0.000240px;}
.ls20{letter-spacing:0.031200px;}
.ls1f{letter-spacing:0.070800px;}
.ls17{letter-spacing:0.209520px;}
.ls18{letter-spacing:0.209880px;}
.ls7{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.720000px;}
.ls0{letter-spacing:201.600000px;}
.ls12{letter-spacing:397.764000px;}
.ls8{letter-spacing:462.402000px;}
.ls1e{letter-spacing:603.990000px;}
.ls13{letter-spacing:615.060000px;}
.ls16{letter-spacing:687.528000px;}
.ls1c{letter-spacing:759.456000px;}
.ls1d{letter-spacing:778.356000px;}
.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;}
}
.wsa{word-spacing:-14.760000px;}
.ws6{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.680000px;}
.ws7{word-spacing:-12.258000px;}
.wsc{word-spacing:-10.896000px;}
.ws0{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.440000px;}
.ws1b{word-spacing:-9.600000px;}
.ws4{word-spacing:-9.180000px;}
.ws1d{word-spacing:-8.880000px;}
.wsb{word-spacing:-8.605080px;}
.ws1{word-spacing:-8.395200px;}
.wsd{word-spacing:-8.185320px;}
.ws1c{word-spacing:-5.596800px;}
.ws2{word-spacing:0.000000px;}
.ws10{word-spacing:144.936000px;}
.ws14{word-spacing:148.068000px;}
.ws17{word-spacing:173.988000px;}
.wsf{word-spacing:196.776000px;}
.ws13{word-spacing:199.908000px;}
.ws11{word-spacing:222.696000px;}
.ws15{word-spacing:227.448000px;}
.wse{word-spacing:230.796000px;}
.ws1a{word-spacing:250.398000px;}
.ws16{word-spacing:254.988000px;}
.ws18{word-spacing:274.212000px;}
.ws19{word-spacing:284.418000px;}
.ws12{word-spacing:289.008000px;}
.ws8{word-spacing:327.348000px;}
.ws3{word-spacing:426.114000px;}
._0{margin-left:-8.640000px;}
._1d{margin-left:-6.660000px;}
._4{margin-left:-4.865400px;}
._1{margin-left:-3.849600px;}
._7{margin-left:-2.370600px;}
._3{margin-left:-1.355400px;}
._6{width:1.296000px;}
._a{width:2.496600px;}
._2{width:3.840000px;}
._8{width:5.250600px;}
._b{width:6.327600px;}
._1c{width:7.466400px;}
._20{width:8.524800px;}
._1e{width:9.606600px;}
._22{width:10.944000px;}
._21{width:12.139200px;}
._1f{width:13.343400px;}
._35{width:16.601400px;}
._84{width:22.960800px;}
._23{width:60.071400px;}
._6a{width:152.987400px;}
._80{width:157.464000px;}
._5f{width:161.136000px;}
._7b{width:164.489400px;}
._60{width:170.262000px;}
._83{width:172.746000px;}
._39{width:174.150000px;}
._e{width:182.016000px;}
._c{width:186.096000px;}
._f{width:187.505400px;}
._53{width:189.828000px;}
._5e{width:191.322000px;}
._13{width:194.112000px;}
._5{width:198.936000px;}
._9{width:201.600000px;}
._5d{width:202.716000px;}
._57{width:204.300000px;}
._1a{width:205.632000px;}
._5c{width:208.116000px;}
._12{width:211.104000px;}
._11{width:213.216000px;}
._1b{width:217.152000px;}
._d{width:219.792000px;}
._17{width:222.624000px;}
._7e{width:223.668000px;}
._16{width:224.736000px;}
._6b{width:225.936000px;}
._41{width:228.852000px;}
._49{width:229.932000px;}
._19{width:236.256000px;}
._63{width:238.896000px;}
._64{width:241.218000px;}
._4a{width:246.564000px;}
._69{width:248.022000px;}
._42{width:250.344000px;}
._40{width:253.211400px;}
._4b{width:256.278600px;}
._72{width:258.228000px;}
._45{width:259.524000px;}
._36{width:261.090000px;}
._43{width:264.600000px;}
._75{width:265.788000px;}
._62{width:267.948000px;}
._48{width:269.082000px;}
._47{width:272.484000px;}
._51{width:274.644000px;}
._46{width:279.288000px;}
._3b{width:281.178000px;}
._59{width:282.690000px;}
._77{width:284.250600px;}
._6e{width:286.200000px;}
._7f{width:287.609400px;}
._52{width:290.525400px;}
._6f{width:291.821400px;}
._79{width:292.998600px;}
._81{width:294.462000px;}
._4c{width:296.784000px;}
._7d{width:297.972000px;}
._4d{width:298.998000px;}
._74{width:300.618000px;}
._54{width:303.210000px;}
._4e{width:304.619400px;}
._58{width:306.990000px;}
._6d{width:309.582000px;}
._55{width:311.688000px;}
._44{width:317.700000px;}
._3e{width:322.596000px;}
._56{width:323.892000px;}
._68{width:330.642000px;}
._5b{width:336.798000px;}
._7a{width:342.144000px;}
._67{width:348.996600px;}
._65{width:352.512000px;}
._37{width:363.582000px;}
._3a{width:364.980600px;}
._78{width:367.896600px;}
._73{width:371.412000px;}
._27{width:373.194000px;}
._71{width:374.220000px;}
._30{width:378.221400px;}
._76{width:382.212000px;}
._82{width:383.508000px;}
._2c{width:387.223200px;}
._3c{width:388.373400px;}
._61{width:408.996000px;}
._24{width:418.554000px;}
._2b{width:428.058000px;}
._25{width:436.914000px;}
._2a{width:445.278600px;}
._28{width:453.168000px;}
._14{width:454.752000px;}
._18{width:466.272000px;}
._15{width:468.960000px;}
._33{width:473.693400px;}
._2f{width:478.332000px;}
._50{width:485.460000px;}
._4f{width:492.102000px;}
._29{width:494.640000px;}
._2e{width:501.714000px;}
._6c{width:504.624600px;}
._31{width:512.460000px;}
._2d{width:519.210000px;}
._34{width:521.532000px;}
._66{width:524.016000px;}
._26{width:527.094000px;}
._10{width:531.713400px;}
._3f{width:540.553800px;}
._32{width:543.078000px;}
._38{width:545.562000px;}
._7c{width:555.768000px;}
._3d{width:558.522000px;}
._5a{width:631.746000px;}
._70{width:663.606000px;}
.fc1{color:rgb(210,35,42);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fs5{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.195700px;}
.y57{bottom:91.417350px;}
.yd5{bottom:93.508050px;}
.y122{bottom:93.732450px;}
.yc3{bottom:95.657700px;}
.y56{bottom:104.917350px;}
.y13f{bottom:106.293300px;}
.y18{bottom:106.299300px;}
.yd4{bottom:107.008050px;}
.yc2{bottom:109.157700px;}
.y16a{bottom:109.309800px;}
.y8e{bottom:115.567950px;}
.y7d{bottom:117.367950px;}
.y55{bottom:118.417350px;}
.y60{bottom:119.467950px;}
.y17{bottom:119.799300px;}
.yd3{bottom:120.508050px;}
.y169{bottom:122.809800px;}
.ya9{bottom:126.067950px;}
.y13e{bottom:126.177300px;}
.yc1{bottom:129.041700px;}
.y105{bottom:129.051600px;}
.y144{bottom:130.267950px;}
.y121{bottom:130.685850px;}
.y16{bottom:133.299300px;}
.y8d{bottom:137.167950px;}
.y7c{bottom:138.967950px;}
.yd2{bottom:140.392050px;}
.y5f{bottom:141.067950px;}
.yc0{bottom:142.541700px;}
.y143{bottom:143.767950px;}
.y104{bottom:145.251600px;}
.y15{bottom:146.799300px;}
.ya8{bottom:147.667950px;}
.y168{bottom:149.809800px;}
.y120{bottom:152.285850px;}
.yd1{bottom:153.892050px;}
.ybf{bottom:156.041700px;}
.y8c{bottom:158.767950px;}
.y7b{bottom:160.567950px;}
.y103{bottom:161.451600px;}
.y54{bottom:161.635050px;}
.y13d{bottom:162.667800px;}
.y5e{bottom:162.667950px;}
.y167{bottom:163.309800px;}
.yd0{bottom:167.392050px;}
.ya7{bottom:169.267950px;}
.yeb{bottom:169.956600px;}
.y142{bottom:170.767950px;}
.y11f{bottom:173.885850px;}
.ybe{bottom:175.925700px;}
.y102{bottom:177.651600px;}
.y8b{bottom:180.367950px;}
.ycf{bottom:180.892050px;}
.y7a{bottom:182.167950px;}
.y53{bottom:183.235050px;}
.y13c{bottom:184.267800px;}
.y5d{bottom:184.267950px;}
.yea{bottom:186.156600px;}
.ybd{bottom:189.425700px;}
.y166{bottom:190.309800px;}
.ya6{bottom:190.867950px;}
.y14{bottom:193.417950px;}
.yce{bottom:194.392050px;}
.y11e{bottom:195.485850px;}
.y141{bottom:197.767950px;}
.y8a{bottom:201.967950px;}
.ye9{bottom:202.356600px;}
.y79{bottom:203.767950px;}
.y165{bottom:203.809800px;}
.y101{bottom:204.057600px;}
.y52{bottom:204.835050px;}
.y13b{bottom:205.867800px;}
.y5c{bottom:205.867950px;}
.ya5{bottom:212.467950px;}
.ycd{bottom:214.276050px;}
.y13{bottom:215.017950px;}
.y11d{bottom:217.085850px;}
.y140{bottom:224.767950px;}
.y78{bottom:225.367950px;}
.y51{bottom:226.435050px;}
.y13a{bottom:227.467800px;}
.y5b{bottom:227.467950px;}
.y100{bottom:228.060600px;}
.ye8{bottom:228.762600px;}
.y164{bottom:230.809800px;}
.ya4{bottom:234.067950px;}
.ycc{bottom:234.160050px;}
.y12{bottom:236.617950px;}
.y11c{bottom:238.685850px;}
.ybc{bottom:239.767950px;}
.y163{bottom:244.309800px;}
.y89{bottom:245.125950px;}
.y77{bottom:246.967950px;}
.ycb{bottom:247.660050px;}
.y50{bottom:248.035050px;}
.y139{bottom:249.067800px;}
.y5a{bottom:249.067950px;}
.ye7{bottom:249.768600px;}
.yff{bottom:252.063600px;}
.ya3{bottom:255.667950px;}
.y11{bottom:258.217950px;}
.y11b{bottom:260.285850px;}
.yca{bottom:261.160050px;}
.ybb{bottom:261.367950px;}
.y76{bottom:268.567950px;}
.ye6{bottom:269.262600px;}
.y4f{bottom:269.635050px;}
.y138{bottom:270.667800px;}
.y59{bottom:270.667950px;}
.y162{bottom:271.309800px;}
.y88{bottom:271.531950px;}
.yfe{bottom:273.069600px;}
.ya2{bottom:277.267950px;}
.y10{bottom:279.817950px;}
.yc9{bottom:281.044050px;}
.y11a{bottom:281.885850px;}
.yba{bottom:282.967950px;}
.y161{bottom:284.809800px;}
.y75{bottom:290.167950px;}
.ye5{bottom:290.268600px;}
.y4e{bottom:291.235050px;}
.y137{bottom:292.267800px;}
.y58{bottom:292.267950px;}
.y87{bottom:292.537950px;}
.yc8{bottom:294.544050px;}
.yfd{bottom:297.072600px;}
.ya1{bottom:298.867950px;}
.yf{bottom:301.417950px;}
.y119{bottom:303.485850px;}
.yb9{bottom:304.567950px;}
.yc7{bottom:308.044050px;}
.ye4{bottom:309.762600px;}
.y160{bottom:311.809800px;}
.y4d{bottom:312.835050px;}
.y86{bottom:313.543950px;}
.y136{bottom:313.867800px;}
.y31{bottom:313.867950px;}
.yfc{bottom:321.075600px;}
.ye{bottom:323.017950px;}
.y118{bottom:325.085850px;}
.y15f{bottom:325.309800px;}
.yb8{bottom:326.167950px;}
.yc6{bottom:327.928050px;}
.y74{bottom:333.267450px;}
.y4c{bottom:334.435050px;}
.y85{bottom:334.549950px;}
.y135{bottom:335.467800px;}
.y30{bottom:335.467950px;}
.ya0{bottom:342.031950px;}
.yd{bottom:344.617950px;}
.yfb{bottom:345.078600px;}
.y117{bottom:346.685850px;}
.yb7{bottom:347.767950px;}
.yc5{bottom:347.812050px;}
.ye3{bottom:351.761100px;}
.y15e{bottom:352.309800px;}
.y73{bottom:354.867450px;}
.y84{bottom:355.555950px;}
.y4b{bottom:356.035050px;}
.y134{bottom:357.067800px;}
.y2f{bottom:357.067950px;}
.y9f{bottom:358.231950px;}
.yc4{bottom:361.312050px;}
.y72{bottom:365.073450px;}
.y15d{bottom:365.809800px;}
.yc{bottom:366.217950px;}
.y116{bottom:368.285850px;}
.yfa{bottom:369.081600px;}
.yb6{bottom:369.367950px;}
.y83{bottom:376.561950px;}
.y4a{bottom:377.635050px;}
.y133{bottom:378.667800px;}
.y2e{bottom:378.667950px;}
.y9e{bottom:384.637950px;}
.y71{bottom:386.079450px;}
.y115{bottom:389.885850px;}
.yb5{bottom:390.967950px;}
.y15c{bottom:392.807700px;}
.yf9{bottom:393.084600px;}
.ye2{bottom:393.759600px;}
.y82{bottom:397.567950px;}
.y49{bottom:399.235050px;}
.y132{bottom:400.267800px;}
.y2d{bottom:400.267950px;}
.y9d{bottom:405.643950px;}
.y70{bottom:407.085450px;}
.yb{bottom:409.417950px;}
.y114{bottom:411.485850px;}
.yb4{bottom:412.567950px;}
.yf8{bottom:417.087600px;}
.y15b{bottom:419.807700px;}
.y48{bottom:420.835050px;}
.y131{bottom:421.867800px;}
.y2c{bottom:421.867950px;}
.y9c{bottom:426.649950px;}
.y6f{bottom:428.091450px;}
.y81{bottom:429.319950px;}
.y113{bottom:433.085850px;}
.y15a{bottom:433.307700px;}
.yb3{bottom:434.167950px;}
.ye1{bottom:435.758100px;}
.yf7{bottom:441.090600px;}
.y47{bottom:442.435050px;}
.y130{bottom:443.467800px;}
.y2b{bottom:443.467950px;}
.y7f{bottom:445.519950px;}
.y9b{bottom:447.655950px;}
.y6e{bottom:449.097450px;}
.ya{bottom:452.767950px;}
.y112{bottom:454.685850px;}
.yb2{bottom:455.767950px;}
.y159{bottom:460.307700px;}
.y80{bottom:461.719950px;}
.y46{bottom:464.035050px;}
.y12f{bottom:465.067800px;}
.y2a{bottom:465.067950px;}
.yf6{bottom:465.093600px;}
.y9a{bottom:468.661950px;}
.y6d{bottom:470.103450px;}
.y158{bottom:473.807700px;}
.y9{bottom:474.516450px;}
.y111{bottom:476.285850px;}
.yb1{bottom:477.367950px;}
.ye0{bottom:477.756600px;}
.y45{bottom:485.635050px;}
.y12e{bottom:486.667800px;}
.y29{bottom:486.667950px;}
.y157{bottom:487.307700px;}
.yf5{bottom:489.096600px;}
.y6c{bottom:491.109450px;}
.y7e{bottom:492.067950px;}
.y8{bottom:493.267950px;}
.y110{bottom:497.885850px;}
.y99{bottom:503.167950px;}
.y44{bottom:507.235050px;}
.y12d{bottom:508.267800px;}
.y28{bottom:508.267950px;}
.y7{bottom:512.017950px;}
.y6b{bottom:512.115450px;}
.yf4{bottom:513.099600px;}
.y156{bottom:514.307700px;}
.ydf{bottom:519.755100px;}
.yb0{bottom:520.539450px;}
.y155{bottom:527.807700px;}
.y12c{bottom:529.867800px;}
.y27{bottom:529.867950px;}
.y6{bottom:530.767950px;}
.y6a{bottom:533.121450px;}
.yf3{bottom:537.102600px;}
.y98{bottom:540.967950px;}
.y10f{bottom:541.083450px;}
.y154{bottom:541.307700px;}
.yaf{bottom:546.945450px;}
.y43{bottom:550.435050px;}
.y12b{bottom:551.467800px;}
.y26{bottom:551.467950px;}
.y69{bottom:554.127450px;}
.y10e{bottom:557.283450px;}
.yf2{bottom:561.105600px;}
.yde{bottom:561.753600px;}
.y97{bottom:562.567950px;}
.y42{bottom:566.635050px;}
.yae{bottom:567.951450px;}
.y5{bottom:568.267950px;}
.y153{bottom:568.307700px;}
.y12a{bottom:573.067800px;}
.y25{bottom:573.067950px;}
.y68{bottom:575.133450px;}
.y41{bottom:576.843450px;}
.y152{bottom:581.807700px;}
.ydd{bottom:582.759600px;}
.y10d{bottom:583.689450px;}
.y96{bottom:584.167950px;}
.yf1{bottom:585.108600px;}
.y40{bottom:592.575450px;}
.y129{bottom:594.667800px;}
.y24{bottom:594.667950px;}
.y67{bottom:596.139450px;}
.y4{bottom:601.267950px;}
.ydc{bottom:602.253600px;}
.y95{bottom:605.767950px;}
.y151{bottom:608.807700px;}
.yf0{bottom:609.111600px;}
.y3f{bottom:609.579450px;}
.yad{bottom:609.949950px;}
.y128{bottom:616.267800px;}
.y23{bottom:616.267950px;}
.y66{bottom:617.145450px;}
.y150{bottom:622.307700px;}
.ydb{bottom:623.259600px;}
.y10c{bottom:626.578950px;}
.y3e{bottom:629.979450px;}
.yac{bottom:630.955950px;}
.yef{bottom:633.114600px;}
.y3{bottom:634.267950px;}
.y22{bottom:637.867950px;}
.y65{bottom:638.151450px;}
.yda{bottom:642.753600px;}
.y94{bottom:648.937950px;}
.y14f{bottom:649.307700px;}
.y3d{bottom:649.551450px;}
.yab{bottom:651.961950px;}
.yee{bottom:657.117600px;}
.y64{bottom:659.157450px;}
.y127{bottom:659.467800px;}
.y21{bottom:659.467950px;}
.y14e{bottom:662.807700px;}
.yd9{bottom:663.759600px;}
.y3c{bottom:666.555450px;}
.y2{bottom:667.267950px;}
.y10b{bottom:668.928450px;}
.y93{bottom:675.343950px;}
.y63{bottom:680.163450px;}
.y126{bottom:681.067800px;}
.y20{bottom:681.067950px;}
.yed{bottom:681.120600px;}
.yd8{bottom:683.253600px;}
.y3b{bottom:684.999450px;}
.yaa{bottom:686.467950px;}
.y14d{bottom:689.807700px;}
.y10a{bottom:692.931450px;}
.y92{bottom:696.349950px;}
.y62{bottom:701.169450px;}
.y125{bottom:702.667800px;}
.y1f{bottom:702.667950px;}
.y14c{bottom:703.307700px;}
.yd7{bottom:704.259600px;}
.yec{bottom:705.123600px;}
.y3a{bottom:705.999450px;}
.y14b{bottom:716.807700px;}
.y109{bottom:716.934450px;}
.y91{bottom:717.355950px;}
.y124{bottom:724.267800px;}
.y1e{bottom:724.267950px;}
.y39{bottom:727.779450px;}
.y61{bottom:729.667950px;}
.y90{bottom:738.361950px;}
.yd6{bottom:743.261100px;}
.y14a{bottom:743.807700px;}
.y38{bottom:745.635450px;}
.y123{bottom:745.867800px;}
.y1d{bottom:745.867950px;}
.y149{bottom:757.307700px;}
.y108{bottom:759.067950px;}
.y37{bottom:763.491450px;}
.y1c{bottom:767.467950px;}
.y8f{bottom:772.867950px;}
.y107{bottom:783.070950px;}
.y148{bottom:784.307700px;}
.y36{bottom:785.607450px;}
.y1b{bottom:789.067950px;}
.y147{bottom:797.807700px;}
.y34{bottom:804.315450px;}
.y1a{bottom:810.667950px;}
.y16b{bottom:811.307700px;}
.y106{bottom:813.067950px;}
.y35{bottom:818.715450px;}
.y146{bottom:824.807700px;}
.y19{bottom:832.267950px;}
.y33{bottom:836.799300px;}
.y145{bottom:838.307700px;}
.y32{bottom:913.594050px;}
.hc{height:33.888000px;}
.hd{height:38.124000px;}
.h2{height:40.224000px;}
.ha{height:40.800000px;}
.hb{height:43.350000px;}
.h7{height:45.252000px;}
.hf{height:45.900000px;}
.h8{height:50.400000px;}
.h9{height:50.832000px;}
.h10{height:53.611056px;}
.h6{height:60.336000px;}
.he{height:61.200000px;}
.h5{height:65.364000px;}
.h4{height:80.448000px;}
.h3{height:81.600000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x28{left:66.501450px;}
.x23{left:78.496200px;}
.xb{left:106.299150px;}
.x13{left:109.045500px;}
.x27{left:114.142950px;}
.x2c{left:116.235450px;}
.x2b{left:120.231450px;}
.x21{left:136.943250px;}
.xc{left:143.892750px;}
.x12{left:152.745000px;}
.x2{left:154.699800px;}
.x22{left:159.739200px;}
.x3{left:166.483800px;}
.x4{left:168.859800px;}
.x2d{left:179.577450px;}
.x10{left:181.390800px;}
.x1e{left:183.228450px;}
.x1f{left:186.684600px;}
.x15{left:189.013200px;}
.x1d{left:192.151950px;}
.x16{left:204.511200px;}
.x2e{left:205.962450px;}
.xd{left:219.671100px;}
.x14{left:221.750700px;}
.x11{left:222.877500px;}
.xa{left:225.023550px;}
.x9{left:236.903550px;}
.x2a{left:243.661950px;}
.x20{left:247.481250px;}
.x29{left:250.155450px;}
.x5{left:253.843800px;}
.xf{left:256.839300px;}
.x8{left:259.259550px;}
.x24{left:261.083700px;}
.x25{left:264.350700px;}
.xe{left:274.419300px;}
.x26{left:282.184200px;}
.x17{left:286.172700px;}
.x18{left:288.386700px;}
.x6{left:296.858550px;}
.x19{left:302.332200px;}
.x1{left:331.517550px;}
.x7{left:338.357550px;}
.x1c{left:422.279700px;}
.x1b{left:423.494700px;}
.x1a{left:435.536700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.215467pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:21.312000pt;}
.lsd{letter-spacing:-3.520000pt;}
.lsa{letter-spacing:-2.160000pt;}
.ls15{letter-spacing:-1.920000pt;}
.lse{letter-spacing:-1.664000pt;}
.ls4{letter-spacing:-1.600000pt;}
.lsb{letter-spacing:-1.440000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.248000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.672000pt;}
.ls2{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.186560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000107pt;}
.ls6{letter-spacing:0.000213pt;}
.ls20{letter-spacing:0.027733pt;}
.ls1f{letter-spacing:0.062933pt;}
.ls17{letter-spacing:0.186240pt;}
.ls18{letter-spacing:0.186560pt;}
.ls7{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls0{letter-spacing:179.200000pt;}
.ls12{letter-spacing:353.568000pt;}
.ls8{letter-spacing:411.024000pt;}
.ls1e{letter-spacing:536.880000pt;}
.ls13{letter-spacing:546.720000pt;}
.ls16{letter-spacing:611.136000pt;}
.ls1c{letter-spacing:675.072000pt;}
.ls1d{letter-spacing:691.872000pt;}
.wsa{word-spacing:-13.120000pt;}
.ws6{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws7{word-spacing:-10.896000pt;}
.wsc{word-spacing:-9.685333pt;}
.ws0{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.533333pt;}
.ws4{word-spacing:-8.160000pt;}
.ws1d{word-spacing:-7.893333pt;}
.wsb{word-spacing:-7.648960pt;}
.ws1{word-spacing:-7.462400pt;}
.wsd{word-spacing:-7.275840pt;}
.ws1c{word-spacing:-4.974933pt;}
.ws2{word-spacing:0.000000pt;}
.ws10{word-spacing:128.832000pt;}
.ws14{word-spacing:131.616000pt;}
.ws17{word-spacing:154.656000pt;}
.wsf{word-spacing:174.912000pt;}
.ws13{word-spacing:177.696000pt;}
.ws11{word-spacing:197.952000pt;}
.ws15{word-spacing:202.176000pt;}
.wse{word-spacing:205.152000pt;}
.ws1a{word-spacing:222.576000pt;}
.ws16{word-spacing:226.656000pt;}
.ws18{word-spacing:243.744000pt;}
.ws19{word-spacing:252.816000pt;}
.ws12{word-spacing:256.896000pt;}
.ws8{word-spacing:290.976000pt;}
.ws3{word-spacing:378.768000pt;}
._0{margin-left:-7.680000pt;}
._1d{margin-left:-5.920000pt;}
._4{margin-left:-4.324800pt;}
._1{margin-left:-3.421867pt;}
._7{margin-left:-2.107200pt;}
._3{margin-left:-1.204800pt;}
._6{width:1.152000pt;}
._a{width:2.219200pt;}
._2{width:3.413333pt;}
._8{width:4.667200pt;}
._b{width:5.624533pt;}
._1c{width:6.636800pt;}
._20{width:7.577600pt;}
._1e{width:8.539200pt;}
._22{width:9.728000pt;}
._21{width:10.790400pt;}
._1f{width:11.860800pt;}
._35{width:14.756800pt;}
._84{width:20.409600pt;}
._23{width:53.396800pt;}
._6a{width:135.988800pt;}
._80{width:139.968000pt;}
._5f{width:143.232000pt;}
._7b{width:146.212800pt;}
._60{width:151.344000pt;}
._83{width:153.552000pt;}
._39{width:154.800000pt;}
._e{width:161.792000pt;}
._c{width:165.418667pt;}
._f{width:166.671467pt;}
._53{width:168.736000pt;}
._5e{width:170.064000pt;}
._13{width:172.544000pt;}
._5{width:176.832000pt;}
._9{width:179.200000pt;}
._5d{width:180.192000pt;}
._57{width:181.600000pt;}
._1a{width:182.784000pt;}
._5c{width:184.992000pt;}
._12{width:187.648000pt;}
._11{width:189.525333pt;}
._1b{width:193.024000pt;}
._d{width:195.370667pt;}
._17{width:197.888000pt;}
._7e{width:198.816000pt;}
._16{width:199.765333pt;}
._6b{width:200.832000pt;}
._41{width:203.424000pt;}
._49{width:204.384000pt;}
._19{width:210.005333pt;}
._63{width:212.352000pt;}
._64{width:214.416000pt;}
._4a{width:219.168000pt;}
._69{width:220.464000pt;}
._42{width:222.528000pt;}
._40{width:225.076800pt;}
._4b{width:227.803200pt;}
._72{width:229.536000pt;}
._45{width:230.688000pt;}
._36{width:232.080000pt;}
._43{width:235.200000pt;}
._75{width:236.256000pt;}
._62{width:238.176000pt;}
._48{width:239.184000pt;}
._47{width:242.208000pt;}
._51{width:244.128000pt;}
._46{width:248.256000pt;}
._3b{width:249.936000pt;}
._59{width:251.280000pt;}
._77{width:252.667200pt;}
._6e{width:254.400000pt;}
._7f{width:255.652800pt;}
._52{width:258.244800pt;}
._6f{width:259.396800pt;}
._79{width:260.443200pt;}
._81{width:261.744000pt;}
._4c{width:263.808000pt;}
._7d{width:264.864000pt;}
._4d{width:265.776000pt;}
._74{width:267.216000pt;}
._54{width:269.520000pt;}
._4e{width:270.772800pt;}
._58{width:272.880000pt;}
._6d{width:275.184000pt;}
._55{width:277.056000pt;}
._44{width:282.400000pt;}
._3e{width:286.752000pt;}
._56{width:287.904000pt;}
._68{width:293.904000pt;}
._5b{width:299.376000pt;}
._7a{width:304.128000pt;}
._67{width:310.219200pt;}
._65{width:313.344000pt;}
._37{width:323.184000pt;}
._3a{width:324.427200pt;}
._78{width:327.019200pt;}
._73{width:330.144000pt;}
._27{width:331.728000pt;}
._71{width:332.640000pt;}
._30{width:336.196800pt;}
._76{width:339.744000pt;}
._82{width:340.896000pt;}
._2c{width:344.198400pt;}
._3c{width:345.220800pt;}
._61{width:363.552000pt;}
._24{width:372.048000pt;}
._2b{width:380.496000pt;}
._25{width:388.368000pt;}
._2a{width:395.803200pt;}
._28{width:402.816000pt;}
._14{width:404.224000pt;}
._18{width:414.464000pt;}
._15{width:416.853333pt;}
._33{width:421.060800pt;}
._2f{width:425.184000pt;}
._50{width:431.520000pt;}
._4f{width:437.424000pt;}
._29{width:439.680000pt;}
._2e{width:445.968000pt;}
._6c{width:448.555200pt;}
._31{width:455.520000pt;}
._2d{width:461.520000pt;}
._34{width:463.584000pt;}
._66{width:465.792000pt;}
._26{width:468.528000pt;}
._10{width:472.634133pt;}
._3f{width:480.492267pt;}
._32{width:482.736000pt;}
._38{width:484.944000pt;}
._7c{width:494.016000pt;}
._3d{width:496.464000pt;}
._5a{width:561.552000pt;}
._70{width:589.872000pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fs5{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:52.618400pt;}
.y57{bottom:81.259867pt;}
.yd5{bottom:83.118267pt;}
.y122{bottom:83.317733pt;}
.yc3{bottom:85.029067pt;}
.y56{bottom:93.259867pt;}
.y13f{bottom:94.482933pt;}
.y18{bottom:94.488267pt;}
.yd4{bottom:95.118267pt;}
.yc2{bottom:97.029067pt;}
.y16a{bottom:97.164267pt;}
.y8e{bottom:102.727067pt;}
.y7d{bottom:104.327067pt;}
.y55{bottom:105.259867pt;}
.y60{bottom:106.193733pt;}
.y17{bottom:106.488267pt;}
.yd3{bottom:107.118267pt;}
.y169{bottom:109.164267pt;}
.ya9{bottom:112.060400pt;}
.y13e{bottom:112.157600pt;}
.yc1{bottom:114.703733pt;}
.y105{bottom:114.712533pt;}
.y144{bottom:115.793733pt;}
.y121{bottom:116.165200pt;}
.y16{bottom:118.488267pt;}
.y8d{bottom:121.927067pt;}
.y7c{bottom:123.527067pt;}
.yd2{bottom:124.792933pt;}
.y5f{bottom:125.393733pt;}
.yc0{bottom:126.703733pt;}
.y143{bottom:127.793733pt;}
.y104{bottom:129.112533pt;}
.y15{bottom:130.488267pt;}
.ya8{bottom:131.260400pt;}
.y168{bottom:133.164267pt;}
.y120{bottom:135.365200pt;}
.yd1{bottom:136.792933pt;}
.ybf{bottom:138.703733pt;}
.y8c{bottom:141.127067pt;}
.y7b{bottom:142.727067pt;}
.y103{bottom:143.512533pt;}
.y54{bottom:143.675600pt;}
.y13d{bottom:144.593600pt;}
.y5e{bottom:144.593733pt;}
.y167{bottom:145.164267pt;}
.yd0{bottom:148.792933pt;}
.ya7{bottom:150.460400pt;}
.yeb{bottom:151.072533pt;}
.y142{bottom:151.793733pt;}
.y11f{bottom:154.565200pt;}
.ybe{bottom:156.378400pt;}
.y102{bottom:157.912533pt;}
.y8b{bottom:160.327067pt;}
.ycf{bottom:160.792933pt;}
.y7a{bottom:161.927067pt;}
.y53{bottom:162.875600pt;}
.y13c{bottom:163.793600pt;}
.y5d{bottom:163.793733pt;}
.yea{bottom:165.472533pt;}
.ybd{bottom:168.378400pt;}
.y166{bottom:169.164267pt;}
.ya6{bottom:169.660400pt;}
.y14{bottom:171.927067pt;}
.yce{bottom:172.792933pt;}
.y11e{bottom:173.765200pt;}
.y141{bottom:175.793733pt;}
.y8a{bottom:179.527067pt;}
.ye9{bottom:179.872533pt;}
.y79{bottom:181.127067pt;}
.y165{bottom:181.164267pt;}
.y101{bottom:181.384533pt;}
.y52{bottom:182.075600pt;}
.y13b{bottom:182.993600pt;}
.y5c{bottom:182.993733pt;}
.ya5{bottom:188.860400pt;}
.ycd{bottom:190.467600pt;}
.y13{bottom:191.127067pt;}
.y11d{bottom:192.965200pt;}
.y140{bottom:199.793733pt;}
.y78{bottom:200.327067pt;}
.y51{bottom:201.275600pt;}
.y13a{bottom:202.193600pt;}
.y5b{bottom:202.193733pt;}
.y100{bottom:202.720533pt;}
.ye8{bottom:203.344533pt;}
.y164{bottom:205.164267pt;}
.ya4{bottom:208.060400pt;}
.ycc{bottom:208.142267pt;}
.y12{bottom:210.327067pt;}
.y11c{bottom:212.165200pt;}
.ybc{bottom:213.127067pt;}
.y163{bottom:217.164267pt;}
.y89{bottom:217.889733pt;}
.y77{bottom:219.527067pt;}
.ycb{bottom:220.142267pt;}
.y50{bottom:220.475600pt;}
.y139{bottom:221.393600pt;}
.y5a{bottom:221.393733pt;}
.ye7{bottom:222.016533pt;}
.yff{bottom:224.056533pt;}
.ya3{bottom:227.260400pt;}
.y11{bottom:229.527067pt;}
.y11b{bottom:231.365200pt;}
.yca{bottom:232.142267pt;}
.ybb{bottom:232.327067pt;}
.y76{bottom:238.727067pt;}
.ye6{bottom:239.344533pt;}
.y4f{bottom:239.675600pt;}
.y138{bottom:240.593600pt;}
.y59{bottom:240.593733pt;}
.y162{bottom:241.164267pt;}
.y88{bottom:241.361733pt;}
.yfe{bottom:242.728533pt;}
.ya2{bottom:246.460400pt;}
.y10{bottom:248.727067pt;}
.yc9{bottom:249.816933pt;}
.y11a{bottom:250.565200pt;}
.yba{bottom:251.527067pt;}
.y161{bottom:253.164267pt;}
.y75{bottom:257.927067pt;}
.ye5{bottom:258.016533pt;}
.y4e{bottom:258.875600pt;}
.y137{bottom:259.793600pt;}
.y58{bottom:259.793733pt;}
.y87{bottom:260.033733pt;}
.yc8{bottom:261.816933pt;}
.yfd{bottom:264.064533pt;}
.ya1{bottom:265.660400pt;}
.yf{bottom:267.927067pt;}
.y119{bottom:269.765200pt;}
.yb9{bottom:270.727067pt;}
.yc7{bottom:273.816933pt;}
.ye4{bottom:275.344533pt;}
.y160{bottom:277.164267pt;}
.y4d{bottom:278.075600pt;}
.y86{bottom:278.705733pt;}
.y136{bottom:278.993600pt;}
.y31{bottom:278.993733pt;}
.yfc{bottom:285.400533pt;}
.ye{bottom:287.127067pt;}
.y118{bottom:288.965200pt;}
.y15f{bottom:289.164267pt;}
.yb8{bottom:289.927067pt;}
.yc6{bottom:291.491600pt;}
.y74{bottom:296.237733pt;}
.y4c{bottom:297.275600pt;}
.y85{bottom:297.377733pt;}
.y135{bottom:298.193600pt;}
.y30{bottom:298.193733pt;}
.ya0{bottom:304.028400pt;}
.yd{bottom:306.327067pt;}
.yfb{bottom:306.736533pt;}
.y117{bottom:308.165200pt;}
.yb7{bottom:309.127067pt;}
.yc5{bottom:309.166267pt;}
.ye3{bottom:312.676533pt;}
.y15e{bottom:313.164267pt;}
.y73{bottom:315.437733pt;}
.y84{bottom:316.049733pt;}
.y4b{bottom:316.475600pt;}
.y134{bottom:317.393600pt;}
.y2f{bottom:317.393733pt;}
.y9f{bottom:318.428400pt;}
.yc4{bottom:321.166267pt;}
.y72{bottom:324.509733pt;}
.y15d{bottom:325.164267pt;}
.yc{bottom:325.527067pt;}
.y116{bottom:327.365200pt;}
.yfa{bottom:328.072533pt;}
.yb6{bottom:328.327067pt;}
.y83{bottom:334.721733pt;}
.y4a{bottom:335.675600pt;}
.y133{bottom:336.593600pt;}
.y2e{bottom:336.593733pt;}
.y9e{bottom:341.900400pt;}
.y71{bottom:343.181733pt;}
.y115{bottom:346.565200pt;}
.yb5{bottom:347.527067pt;}
.y15c{bottom:349.162400pt;}
.yf9{bottom:349.408533pt;}
.ye2{bottom:350.008533pt;}
.y82{bottom:353.393733pt;}
.y49{bottom:354.875600pt;}
.y132{bottom:355.793600pt;}
.y2d{bottom:355.793733pt;}
.y9d{bottom:360.572400pt;}
.y70{bottom:361.853733pt;}
.yb{bottom:363.927067pt;}
.y114{bottom:365.765200pt;}
.yb4{bottom:366.727067pt;}
.yf8{bottom:370.744533pt;}
.y15b{bottom:373.162400pt;}
.y48{bottom:374.075600pt;}
.y131{bottom:374.993600pt;}
.y2c{bottom:374.993733pt;}
.y9c{bottom:379.244400pt;}
.y6f{bottom:380.525733pt;}
.y81{bottom:381.617733pt;}
.y113{bottom:384.965200pt;}
.y15a{bottom:385.162400pt;}
.yb3{bottom:385.927067pt;}
.ye1{bottom:387.340533pt;}
.yf7{bottom:392.080533pt;}
.y47{bottom:393.275600pt;}
.y130{bottom:394.193600pt;}
.y2b{bottom:394.193733pt;}
.y7f{bottom:396.017733pt;}
.y9b{bottom:397.916400pt;}
.y6e{bottom:399.197733pt;}
.ya{bottom:402.460400pt;}
.y112{bottom:404.165200pt;}
.yb2{bottom:405.127067pt;}
.y159{bottom:409.162400pt;}
.y80{bottom:410.417733pt;}
.y46{bottom:412.475600pt;}
.y12f{bottom:413.393600pt;}
.y2a{bottom:413.393733pt;}
.yf6{bottom:413.416533pt;}
.y9a{bottom:416.588400pt;}
.y6d{bottom:417.869733pt;}
.y158{bottom:421.162400pt;}
.y9{bottom:421.792400pt;}
.y111{bottom:423.365200pt;}
.yb1{bottom:424.327067pt;}
.ye0{bottom:424.672533pt;}
.y45{bottom:431.675600pt;}
.y12e{bottom:432.593600pt;}
.y29{bottom:432.593733pt;}
.y157{bottom:433.162400pt;}
.yf5{bottom:434.752533pt;}
.y6c{bottom:436.541733pt;}
.y7e{bottom:437.393733pt;}
.y8{bottom:438.460400pt;}
.y110{bottom:442.565200pt;}
.y99{bottom:447.260400pt;}
.y44{bottom:450.875600pt;}
.y12d{bottom:451.793600pt;}
.y28{bottom:451.793733pt;}
.y7{bottom:455.127067pt;}
.y6b{bottom:455.213733pt;}
.yf4{bottom:456.088533pt;}
.y156{bottom:457.162400pt;}
.ydf{bottom:462.004533pt;}
.yb0{bottom:462.701733pt;}
.y155{bottom:469.162400pt;}
.y12c{bottom:470.993600pt;}
.y27{bottom:470.993733pt;}
.y6{bottom:471.793733pt;}
.y6a{bottom:473.885733pt;}
.yf3{bottom:477.424533pt;}
.y98{bottom:480.860400pt;}
.y10f{bottom:480.963067pt;}
.y154{bottom:481.162400pt;}
.yaf{bottom:486.173733pt;}
.y43{bottom:489.275600pt;}
.y12b{bottom:490.193600pt;}
.y26{bottom:490.193733pt;}
.y69{bottom:492.557733pt;}
.y10e{bottom:495.363067pt;}
.yf2{bottom:498.760533pt;}
.yde{bottom:499.336533pt;}
.y97{bottom:500.060400pt;}
.y42{bottom:503.675600pt;}
.yae{bottom:504.845733pt;}
.y5{bottom:505.127067pt;}
.y153{bottom:505.162400pt;}
.y12a{bottom:509.393600pt;}
.y25{bottom:509.393733pt;}
.y68{bottom:511.229733pt;}
.y41{bottom:512.749733pt;}
.y152{bottom:517.162400pt;}
.ydd{bottom:518.008533pt;}
.y10d{bottom:518.835067pt;}
.y96{bottom:519.260400pt;}
.yf1{bottom:520.096533pt;}
.y40{bottom:526.733733pt;}
.y129{bottom:528.593600pt;}
.y24{bottom:528.593733pt;}
.y67{bottom:529.901733pt;}
.y4{bottom:534.460400pt;}
.ydc{bottom:535.336533pt;}
.y95{bottom:538.460400pt;}
.y151{bottom:541.162400pt;}
.yf0{bottom:541.432533pt;}
.y3f{bottom:541.848400pt;}
.yad{bottom:542.177733pt;}
.y128{bottom:547.793600pt;}
.y23{bottom:547.793733pt;}
.y66{bottom:548.573733pt;}
.y150{bottom:553.162400pt;}
.ydb{bottom:554.008533pt;}
.y10c{bottom:556.959067pt;}
.y3e{bottom:559.981733pt;}
.yac{bottom:560.849733pt;}
.yef{bottom:562.768533pt;}
.y3{bottom:563.793733pt;}
.y22{bottom:566.993733pt;}
.y65{bottom:567.245733pt;}
.yda{bottom:571.336533pt;}
.y94{bottom:576.833733pt;}
.y14f{bottom:577.162400pt;}
.y3d{bottom:577.379067pt;}
.yab{bottom:579.521733pt;}
.yee{bottom:584.104533pt;}
.y64{bottom:585.917733pt;}
.y127{bottom:586.193600pt;}
.y21{bottom:586.193733pt;}
.y14e{bottom:589.162400pt;}
.yd9{bottom:590.008533pt;}
.y3c{bottom:592.493733pt;}
.y2{bottom:593.127067pt;}
.y10b{bottom:594.603067pt;}
.y93{bottom:600.305733pt;}
.y63{bottom:604.589733pt;}
.y126{bottom:605.393600pt;}
.y20{bottom:605.393733pt;}
.yed{bottom:605.440533pt;}
.yd8{bottom:607.336533pt;}
.y3b{bottom:608.888400pt;}
.yaa{bottom:610.193733pt;}
.y14d{bottom:613.162400pt;}
.y10a{bottom:615.939067pt;}
.y92{bottom:618.977733pt;}
.y62{bottom:623.261733pt;}
.y125{bottom:624.593600pt;}
.y1f{bottom:624.593733pt;}
.y14c{bottom:625.162400pt;}
.yd7{bottom:626.008533pt;}
.yec{bottom:626.776533pt;}
.y3a{bottom:627.555067pt;}
.y14b{bottom:637.162400pt;}
.y109{bottom:637.275067pt;}
.y91{bottom:637.649733pt;}
.y124{bottom:643.793600pt;}
.y1e{bottom:643.793733pt;}
.y39{bottom:646.915067pt;}
.y61{bottom:648.593733pt;}
.y90{bottom:656.321733pt;}
.yd6{bottom:660.676533pt;}
.y14a{bottom:661.162400pt;}
.y38{bottom:662.787067pt;}
.y123{bottom:662.993600pt;}
.y1d{bottom:662.993733pt;}
.y149{bottom:673.162400pt;}
.y108{bottom:674.727067pt;}
.y37{bottom:678.659067pt;}
.y1c{bottom:682.193733pt;}
.y8f{bottom:686.993733pt;}
.y107{bottom:696.063067pt;}
.y148{bottom:697.162400pt;}
.y36{bottom:698.317733pt;}
.y1b{bottom:701.393733pt;}
.y147{bottom:709.162400pt;}
.y34{bottom:714.947067pt;}
.y1a{bottom:720.593733pt;}
.y16b{bottom:721.162400pt;}
.y106{bottom:722.727067pt;}
.y35{bottom:727.747067pt;}
.y146{bottom:733.162400pt;}
.y19{bottom:739.793733pt;}
.y33{bottom:743.821600pt;}
.y145{bottom:745.162400pt;}
.y32{bottom:812.083600pt;}
.hc{height:30.122667pt;}
.hd{height:33.888000pt;}
.h2{height:35.754667pt;}
.ha{height:36.266667pt;}
.hb{height:38.533333pt;}
.h7{height:40.224000pt;}
.hf{height:40.800000pt;}
.h8{height:44.800000pt;}
.h9{height:45.184000pt;}
.h10{height:47.654272pt;}
.h6{height:53.632000pt;}
.he{height:54.400000pt;}
.h5{height:58.101333pt;}
.h4{height:71.509333pt;}
.h3{height:72.533333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x28{left:59.112400pt;}
.x23{left:69.774400pt;}
.xb{left:94.488133pt;}
.x13{left:96.929333pt;}
.x27{left:101.460400pt;}
.x2c{left:103.320400pt;}
.x2b{left:106.872400pt;}
.x21{left:121.727333pt;}
.xc{left:127.904667pt;}
.x12{left:135.773333pt;}
.x2{left:137.510933pt;}
.x22{left:141.990400pt;}
.x3{left:147.985600pt;}
.x4{left:150.097600pt;}
.x2d{left:159.624400pt;}
.x10{left:161.236267pt;}
.x1e{left:162.869733pt;}
.x1f{left:165.941867pt;}
.x15{left:168.011733pt;}
.x1d{left:170.801733pt;}
.x16{left:181.787733pt;}
.x2e{left:183.077733pt;}
.xd{left:195.263200pt;}
.x14{left:197.111733pt;}
.x11{left:198.113333pt;}
.xa{left:200.020933pt;}
.x9{left:210.580933pt;}
.x2a{left:216.588400pt;}
.x20{left:219.983333pt;}
.x29{left:222.360400pt;}
.x5{left:225.638933pt;}
.xf{left:228.301600pt;}
.x8{left:230.452933pt;}
.x24{left:232.074400pt;}
.x25{left:234.978400pt;}
.xe{left:243.928267pt;}
.x26{left:250.830400pt;}
.x17{left:254.375733pt;}
.x18{left:256.343733pt;}
.x6{left:263.874267pt;}
.x19{left:268.739733pt;}
.x1{left:294.682267pt;}
.x7{left:300.762267pt;}
.x1c{left:375.359733pt;}
.x1b{left:376.439733pt;}
.x1a{left:387.143733pt;}
}




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