
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_351e3ddfed028282da9a013b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_217035e2a0067fe32d4771b6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_b3c285b078ac21e5f6294236.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_add453ac0ad451289cef1291.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_aeeb23e9f46343b6f6472000.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0981ce8b66afcc621dd33056.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.232800px;}
.lsb{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.038880px;}
.ls17{letter-spacing:-0.014760px;}
.ls18{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.095400px;}
.ls13{letter-spacing:0.105600px;}
.ls16{letter-spacing:0.115800px;}
.ls11{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.160800px;}
.lsa{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls15{letter-spacing:47.726640px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.387200px;}
.wsb{word-spacing:-13.342800px;}
.ws10{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.332000px;}
.wsa{word-spacing:-13.321800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.213080px;}
.wse{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.187520px;}
.ws11{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._19{margin-left:-4.157881px;}
._2{margin-left:-3.126000px;}
._14{margin-left:-2.114042px;}
._0{margin-left:-1.110000px;}
._1{width:1.249644px;}
._6{width:2.344800px;}
._7{width:3.667200px;}
._8{width:4.685401px;}
._3{width:5.711400px;}
._4{width:7.395000px;}
._c{width:9.090154px;}
._5{width:10.461000px;}
._b{width:11.723400px;}
._12{width:14.849640px;}
._a{width:15.931800px;}
._d{width:17.735400px;}
._11{width:18.757440px;}
._10{width:20.140200px;}
._9{width:21.943800px;}
._15{width:22.986002px;}
._13{width:24.102960px;}
._e{width:25.250400px;}
._f{width:26.257836px;}
._1d{width:27.294480px;}
._1b{width:28.677240px;}
._1c{width:30.147960px;}
._27{width:31.382640px;}
._32{width:32.994720px;}
._16{width:34.629120px;}
._17{width:35.984320px;}
._25{width:37.063800px;}
._26{width:38.439160px;}
._18{width:40.581000px;}
._1a{width:42.389640px;}
._28{width:43.477236px;}
._38{width:49.358520px;}
._20{width:53.687160px;}
._21{width:55.389842px;}
._29{width:61.683120px;}
._2a{width:63.426600px;}
._33{width:83.976480px;}
._37{width:85.479240px;}
._2d{width:96.719160px;}
._36{width:106.521480px;}
._34{width:107.898840px;}
._31{width:113.328360px;}
._39{width:141.282000px;}
._3a{width:142.424280px;}
._35{width:147.873000px;}
._2e{width:153.023760px;}
._2c{width:164.969280px;}
._2b{width:166.171680px;}
._2f{width:196.679160px;}
._30{width:202.507680px;}
._22{width:220.520160px;}
._24{width:281.000880px;}
._1e{width:289.237320px;}
._1f{width:290.810282px;}
._23{width:305.109000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:7.830000px;}
.y10f{bottom:7.860000px;}
.y4a{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yea{bottom:112.170000px;}
.ya2{bottom:112.980000px;}
.y58{bottom:117.750000px;}
.y139{bottom:121.800000px;}
.ye9{bottom:129.720000px;}
.ya1{bottom:130.530000px;}
.yc4{bottom:134.130000px;}
.y57{bottom:135.300000px;}
.y138{bottom:139.350000px;}
.y153{bottom:144.120000px;}
.y27{bottom:147.270000px;}
.ya0{bottom:148.170000px;}
.yc3{bottom:151.680000px;}
.y56{bottom:152.850000px;}
.y85{bottom:154.290000px;}
.y137{bottom:156.990000px;}
.y152{bottom:161.670000px;}
.y26{bottom:164.820000px;}
.y9f{bottom:165.720000px;}
.yc2{bottom:169.230000px;}
.y55{bottom:170.490000px;}
.y10a{bottom:174.270000px;}
.y136{bottom:174.540000px;}
.y151{bottom:179.310000px;}
.y25{bottom:182.370000px;}
.ye8{bottom:182.910000px;}
.yc1{bottom:186.870000px;}
.y54{bottom:188.040000px;}
.y84{bottom:189.840000px;}
.y135{bottom:192.180000px;}
.y24{bottom:200.010000px;}
.ye7{bottom:200.460000px;}
.y9e{bottom:201.270000px;}
.yc0{bottom:204.420000px;}
.y83{bottom:205.230000px;}
.y53{bottom:205.680000px;}
.y150{bottom:205.860000px;}
.y134{bottom:209.730000px;}
.y109{bottom:209.910000px;}
.y23{bottom:217.560000px;}
.ye6{bottom:218.100000px;}
.y9d{bottom:218.910000px;}
.ybf{bottom:222.060000px;}
.y52{bottom:223.230000px;}
.y14f{bottom:223.500000px;}
.y133{bottom:227.280000px;}
.y108{bottom:227.460000px;}
.y82{bottom:232.950000px;}
.ye5{bottom:235.650000px;}
.y9c{bottom:236.460000px;}
.ybe{bottom:239.610000px;}
.y14e{bottom:241.050000px;}
.y132{bottom:244.920000px;}
.y107{bottom:245.100000px;}
.y51{bottom:249.780000px;}
.y22{bottom:253.200000px;}
.y9b{bottom:254.100000px;}
.ybd{bottom:257.160000px;}
.y81{bottom:260.580000px;}
.y131{bottom:262.470000px;}
.y106{bottom:262.650000px;}
.y14d{bottom:267.600000px;}
.y21{bottom:270.750000px;}
.ye4{bottom:270.840000px;}
.y9a{bottom:271.650000px;}
.y130{bottom:280.110000px;}
.y105{bottom:280.200000px;}
.y170{bottom:284.610000px;}
.y14c{bottom:285.240000px;}
.y50{bottom:285.690000px;}
.y20{bottom:288.300000px;}
.ye3{bottom:288.390000px;}
.y99{bottom:289.200000px;}
.ybc{bottom:292.800000px;}
.y12f{bottom:297.660000px;}
.y104{bottom:297.840000px;}
.y16f{bottom:302.250000px;}
.y14b{bottom:302.790000px;}
.y1f{bottom:305.940000px;}
.y98{bottom:306.840000px;}
.ybb{bottom:310.350000px;}
.ye2{bottom:314.940000px;}
.y103{bottom:315.390000px;}
.y16e{bottom:319.800000px;}
.y1e{bottom:323.490000px;}
.y12e{bottom:324.210000px;}
.y97{bottom:324.390000px;}
.yba{bottom:327.990000px;}
.y14a{bottom:329.430000px;}
.y4f{bottom:331.770000px;}
.y102{bottom:332.940000px;}
.y80{bottom:337.440000px;}
.y1d{bottom:341.130000px;}
.yb9{bottom:345.540000px;}
.y16d{bottom:346.440000px;}
.y149{bottom:346.980000px;}
.ye1{bottom:350.580000px;}
.y96{bottom:350.940000px;}
.y1c{bottom:358.680000px;}
.y4e{bottom:359.490000px;}
.y12d{bottom:359.850000px;}
.yb8{bottom:363.090000px;}
.y16c{bottom:363.990000px;}
.y148{bottom:364.530000px;}
.ye0{bottom:368.130000px;}
.y101{bottom:368.580000px;}
.y7f{bottom:372.990000px;}
.y12c{bottom:377.400000px;}
.yb7{bottom:380.730000px;}
.y16b{bottom:381.540000px;}
.ydf{bottom:385.770000px;}
.y100{bottom:386.130000px;}
.y95{bottom:386.580000px;}
.y4c{bottom:387.210000px;}
.y7e{bottom:390.540000px;}
.y147{bottom:391.440000px;}
.y1b{bottom:394.230000px;}
.y12b{bottom:395.040000px;}
.yb6{bottom:398.280000px;}
.y16a{bottom:399.180000px;}
.yde{bottom:403.320000px;}
.yff{bottom:403.770000px;}
.y94{bottom:404.130000px;}
.y7d{bottom:408.180000px;}
.y1a{bottom:411.870000px;}
.y12a{bottom:412.590000px;}
.y4b{bottom:414.840000px;}
.yb5{bottom:415.920000px;}
.yfe{bottom:421.320000px;}
.y93{bottom:421.770000px;}
.y7c{bottom:425.730000px;}
.y19{bottom:429.420000px;}
.y129{bottom:430.140000px;}
.yb4{bottom:433.470000px;}
.ydd{bottom:438.870000px;}
.y92{bottom:439.320000px;}
.y146{bottom:439.770000px;}
.y49{bottom:442.560000px;}
.y7b{bottom:443.370000px;}
.y18{bottom:447.060000px;}
.y128{bottom:447.780000px;}
.yb3{bottom:451.020000px;}
.ydc{bottom:456.510000px;}
.y91{bottom:456.870000px;}
.y145{bottom:457.320000px;}
.y169{bottom:460.920000px;}
.y17{bottom:464.610000px;}
.y127{bottom:465.330000px;}
.yb2{bottom:468.660000px;}
.ydb{bottom:474.090000px;}
.y90{bottom:474.540000px;}
.y144{bottom:474.900000px;}
.y168{bottom:478.500000px;}
.y7a{bottom:478.950000px;}
.y16{bottom:482.190000px;}
.y126{bottom:482.910000px;}
.yb1{bottom:486.240000px;}
.y48{bottom:491.730000px;}
.y8f{bottom:492.090000px;}
.y143{bottom:492.540000px;}
.y79{bottom:496.500000px;}
.y15{bottom:499.830000px;}
.y125{bottom:500.550000px;}
.y167{bottom:505.140000px;}
.yda{bottom:509.280000px;}
.y8e{bottom:509.730000px;}
.y142{bottom:510.090000px;}
.yb0{bottom:512.880000px;}
.y78{bottom:514.140000px;}
.y14{bottom:517.380000px;}
.y124{bottom:518.100000px;}
.yfd{bottom:518.280000px;}
.y166{bottom:522.690000px;}
.y47{bottom:527.280000px;}
.y141{bottom:527.730000px;}
.y77{bottom:531.690000px;}
.y123{bottom:535.740000px;}
.y165{bottom:540.330000px;}
.y13{bottom:544.290000px;}
.y46{bottom:544.830000px;}
.y140{bottom:545.280000px;}
.yaf{bottom:548.700000px;}
.y76{bottom:549.330000px;}
.y122{bottom:553.290000px;}
.yfc{bottom:553.830000px;}
.y45{bottom:562.470000px;}
.y8d{bottom:562.830000px;}
.y164{bottom:566.880000px;}
.yfb{bottom:571.470000px;}
.y44{bottom:580.020000px;}
.y8c{bottom:580.470000px;}
.y163{bottom:584.430000px;}
.y75{bottom:584.880000px;}
.y121{bottom:588.840000px;}
.yfa{bottom:589.020000px;}
.y12{bottom:592.890000px;}
.yae{bottom:597.030000px;}
.y43{bottom:597.660000px;}
.y8b{bottom:598.020000px;}
.y162{bottom:602.070000px;}
.y74{bottom:602.430000px;}
.y120{bottom:606.480000px;}
.yf9{bottom:606.660000px;}
.y13f{bottom:607.380000px;}
.yad{bottom:612.330000px;}
.y42{bottom:615.210000px;}
.y8a{bottom:615.660000px;}
.y73{bottom:620.070000px;}
.y11f{bottom:624.030000px;}
.yf8{bottom:624.210000px;}
.y161{bottom:628.620000px;}
.y11{bottom:629.880000px;}
.y89{bottom:633.210000px;}
.y72{bottom:637.620000px;}
.yac{bottom:640.050000px;}
.y11e{bottom:641.670000px;}
.yd9{bottom:641.760000px;}
.y160{bottom:646.260000px;}
.y10{bottom:647.520000px;}
.y41{bottom:650.760000px;}
.y13e{bottom:655.620000px;}
.y11d{bottom:659.220000px;}
.yf7{bottom:659.400000px;}
.y15f{bottom:663.810000px;}
.yf{bottom:665.070000px;}
.yab{bottom:667.770000px;}
.y40{bottom:668.400000px;}
.y71{bottom:673.260000px;}
.y11c{bottom:676.770000px;}
.yf6{bottom:676.950000px;}
.yd8{bottom:677.670000px;}
.ye{bottom:682.710000px;}
.y3f{bottom:685.950000px;}
.y15e{bottom:690.360000px;}
.y70{bottom:690.810000px;}
.y11b{bottom:694.410000px;}
.yf5{bottom:694.590000px;}
.yaa{bottom:695.490000px;}
.yd{bottom:700.260000px;}
.y3e{bottom:703.590000px;}
.y15d{bottom:708.000000px;}
.y6f{bottom:708.360000px;}
.y11a{bottom:711.960000px;}
.yc{bottom:717.810000px;}
.y3d{bottom:721.140000px;}
.ya9{bottom:723.210000px;}
.y15c{bottom:725.550000px;}
.y6e{bottom:726.000000px;}
.y119{bottom:729.600000px;}
.yf4{bottom:730.140000px;}
.yb{bottom:735.450000px;}
.y3c{bottom:738.690000px;}
.y6d{bottom:743.550000px;}
.y118{bottom:747.150000px;}
.y88{bottom:747.690000px;}
.ya8{bottom:750.930000px;}
.y15b{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.yd7{bottom:761.190000px;}
.y3b{bottom:765.330000px;}
.y15a{bottom:769.740000px;}
.y6c{bottom:770.190000px;}
.y117{bottom:773.700000px;}
.ya7{bottom:778.650000px;}
.yd6{bottom:778.740000px;}
.y9{bottom:779.910000px;}
.yf3{bottom:782.880000px;}
.y87{bottom:783.330000px;}
.y159{bottom:787.290000px;}
.yd5{bottom:796.290000px;}
.yf2{bottom:800.520000px;}
.y3a{bottom:800.880000px;}
.y6b{bottom:805.740000px;}
.ya6{bottom:806.370000px;}
.y116{bottom:809.610000px;}
.y158{bottom:813.930000px;}
.yf1{bottom:818.070000px;}
.y39{bottom:818.520000px;}
.y6a{bottom:823.290000px;}
.y8{bottom:828.240000px;}
.y157{bottom:831.480000px;}
.yd4{bottom:831.930000px;}
.ya5{bottom:834.000000px;}
.yf0{bottom:835.620000px;}
.y38{bottom:836.070000px;}
.y69{bottom:840.930000px;}
.yd3{bottom:849.480000px;}
.yef{bottom:853.260000px;}
.y37{bottom:853.620000px;}
.y115{bottom:857.940000px;}
.y156{bottom:858.030000px;}
.y68{bottom:858.480000px;}
.ya4{bottom:861.720000px;}
.y7{bottom:863.790000px;}
.yd2{bottom:867.030000px;}
.y36{bottom:871.260000px;}
.y114{bottom:872.880000px;}
.y155{bottom:875.670000px;}
.y67{bottom:876.030000px;}
.yee{bottom:879.810000px;}
.yd1{bottom:884.670000px;}
.y35{bottom:888.810000px;}
.y154{bottom:893.220000px;}
.y66{bottom:893.670000px;}
.y6{bottom:899.610000px;}
.y113{bottom:900.240000px;}
.yd0{bottom:902.220000px;}
.y86{bottom:906.450000px;}
.ya3{bottom:910.860000px;}
.y65{bottom:911.220000px;}
.yed{bottom:915.720000px;}
.ycf{bottom:919.860000px;}
.y34{bottom:924.450000px;}
.y112{bottom:927.600000px;}
.y64{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.yce{bottom:937.410000px;}
.y33{bottom:942.000000px;}
.y63{bottom:946.410000px;}
.y111{bottom:954.870000px;}
.ycd{bottom:954.960000px;}
.y32{bottom:959.550000px;}
.y62{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.y31{bottom:977.190000px;}
.y61{bottom:981.600000px;}
.y110{bottom:982.230000px;}
.ycc{bottom:990.600000px;}
.y30{bottom:994.740000px;}
.y60{bottom:999.150000px;}
.ycb{bottom:1008.150000px;}
.y10e{bottom:1009.590000px;}
.y3{bottom:1009.980000px;}
.y2f{bottom:1012.320000px;}
.y5f{bottom:1016.820000px;}
.y13d{bottom:1017.180000px;}
.yca{bottom:1025.820000px;}
.y2e{bottom:1029.960000px;}
.y5e{bottom:1034.370000px;}
.y13c{bottom:1034.820000px;}
.y10d{bottom:1036.890000px;}
.yc9{bottom:1043.370000px;}
.y2d{bottom:1047.510000px;}
.y5d{bottom:1051.920000px;}
.y13b{bottom:1052.370000px;}
.yc8{bottom:1060.920000px;}
.y10c{bottom:1064.250000px;}
.y2c{bottom:1065.150000px;}
.y5c{bottom:1069.560000px;}
.y13a{bottom:1069.920000px;}
.yc7{bottom:1078.560000px;}
.y5b{bottom:1087.110000px;}
.yec{bottom:1087.560000px;}
.y10b{bottom:1091.610000px;}
.y2b{bottom:1091.700000px;}
.yc6{bottom:1096.110000px;}
.yeb{bottom:1105.110000px;}
.yc5{bottom:1113.750000px;}
.y5a{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y59{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:53.640000px;}
.wb{width:68.490000px;}
.w6{width:197.310000px;}
.w5{width:260.040000px;}
.w3{width:261.900000px;}
.w4{width:265.800000px;}
.w7{width:268.560000px;}
.wa{width:358.410000px;}
.w8{width:359.850000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.020000px;}
.x1{left:68.040000px;}
.x7{left:83.160000px;}
.xf{left:111.239987px;}
.x4{left:182.550000px;}
.x2{left:202.799987px;}
.xd{left:232.860000px;}
.xb{left:239.700000px;}
.x8{left:343.740000px;}
.x6{left:444.990000px;}
.xa{left:446.609987px;}
.x9{left:541.590000px;}
.xe{left:591.990000px;}
.xc{left:600.090000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.206933pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.034560pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls18{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.084800pt;}
.ls13{letter-spacing:0.093867pt;}
.ls16{letter-spacing:0.102933pt;}
.ls11{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.142933pt;}
.lsa{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls15{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.899733pt;}
.wsb{word-spacing:-11.860267pt;}
.ws10{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.850667pt;}
.wsa{word-spacing:-11.841600pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.744960pt;}
.wse{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.722240pt;}
.ws11{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._19{margin-left:-3.695894pt;}
._2{margin-left:-2.778666pt;}
._14{margin-left:-1.879148pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.110795pt;}
._6{width:2.084267pt;}
._7{width:3.259733pt;}
._8{width:4.164801pt;}
._3{width:5.076800pt;}
._4{width:6.573334pt;}
._c{width:8.080137pt;}
._5{width:9.298667pt;}
._b{width:10.420800pt;}
._12{width:13.199680pt;}
._a{width:14.161600pt;}
._d{width:15.764800pt;}
._11{width:16.673280pt;}
._10{width:17.902400pt;}
._9{width:19.505600pt;}
._15{width:20.432002pt;}
._13{width:21.424853pt;}
._e{width:22.444800pt;}
._f{width:23.340299pt;}
._1d{width:24.261760pt;}
._1b{width:25.490880pt;}
._1c{width:26.798187pt;}
._27{width:27.895680pt;}
._32{width:29.328640pt;}
._16{width:30.781440pt;}
._17{width:31.986062pt;}
._25{width:32.945600pt;}
._26{width:34.168142pt;}
._18{width:36.072000pt;}
._1a{width:37.679680pt;}
._28{width:38.646432pt;}
._38{width:43.874240pt;}
._20{width:47.721920pt;}
._21{width:49.235415pt;}
._29{width:54.829440pt;}
._2a{width:56.379200pt;}
._33{width:74.645760pt;}
._37{width:75.981547pt;}
._2d{width:85.972587pt;}
._36{width:94.685760pt;}
._34{width:95.910080pt;}
._31{width:100.736320pt;}
._39{width:125.584000pt;}
._3a{width:126.599360pt;}
._35{width:131.442667pt;}
._2e{width:136.021120pt;}
._2c{width:146.639360pt;}
._2b{width:147.708160pt;}
._2f{width:174.825920pt;}
._30{width:180.006827pt;}
._22{width:196.017920pt;}
._24{width:249.778560pt;}
._1e{width:257.099840pt;}
._1f{width:258.498028pt;}
._23{width:271.208000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:6.960000pt;}
.y10f{bottom:6.986667pt;}
.y4a{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yea{bottom:99.706667pt;}
.ya2{bottom:100.426667pt;}
.y58{bottom:104.666667pt;}
.y139{bottom:108.266667pt;}
.ye9{bottom:115.306667pt;}
.ya1{bottom:116.026667pt;}
.yc4{bottom:119.226667pt;}
.y57{bottom:120.266667pt;}
.y138{bottom:123.866667pt;}
.y153{bottom:128.106667pt;}
.y27{bottom:130.906667pt;}
.ya0{bottom:131.706667pt;}
.yc3{bottom:134.826667pt;}
.y56{bottom:135.866667pt;}
.y85{bottom:137.146667pt;}
.y137{bottom:139.546667pt;}
.y152{bottom:143.706667pt;}
.y26{bottom:146.506667pt;}
.y9f{bottom:147.306667pt;}
.yc2{bottom:150.426667pt;}
.y55{bottom:151.546667pt;}
.y10a{bottom:154.906667pt;}
.y136{bottom:155.146667pt;}
.y151{bottom:159.386667pt;}
.y25{bottom:162.106667pt;}
.ye8{bottom:162.586667pt;}
.yc1{bottom:166.106667pt;}
.y54{bottom:167.146667pt;}
.y84{bottom:168.746667pt;}
.y135{bottom:170.826667pt;}
.y24{bottom:177.786667pt;}
.ye7{bottom:178.186667pt;}
.y9e{bottom:178.906667pt;}
.yc0{bottom:181.706667pt;}
.y83{bottom:182.426667pt;}
.y53{bottom:182.826667pt;}
.y150{bottom:182.986667pt;}
.y134{bottom:186.426667pt;}
.y109{bottom:186.586667pt;}
.y23{bottom:193.386667pt;}
.ye6{bottom:193.866667pt;}
.y9d{bottom:194.586667pt;}
.ybf{bottom:197.386667pt;}
.y52{bottom:198.426667pt;}
.y14f{bottom:198.666667pt;}
.y133{bottom:202.026667pt;}
.y108{bottom:202.186667pt;}
.y82{bottom:207.066667pt;}
.ye5{bottom:209.466667pt;}
.y9c{bottom:210.186667pt;}
.ybe{bottom:212.986667pt;}
.y14e{bottom:214.266667pt;}
.y132{bottom:217.706667pt;}
.y107{bottom:217.866667pt;}
.y51{bottom:222.026667pt;}
.y22{bottom:225.066667pt;}
.y9b{bottom:225.866667pt;}
.ybd{bottom:228.586667pt;}
.y81{bottom:231.626667pt;}
.y131{bottom:233.306667pt;}
.y106{bottom:233.466667pt;}
.y14d{bottom:237.866667pt;}
.y21{bottom:240.666667pt;}
.ye4{bottom:240.746667pt;}
.y9a{bottom:241.466667pt;}
.y130{bottom:248.986667pt;}
.y105{bottom:249.066667pt;}
.y170{bottom:252.986667pt;}
.y14c{bottom:253.546667pt;}
.y50{bottom:253.946667pt;}
.y20{bottom:256.266667pt;}
.ye3{bottom:256.346667pt;}
.y99{bottom:257.066667pt;}
.ybc{bottom:260.266667pt;}
.y12f{bottom:264.586667pt;}
.y104{bottom:264.746667pt;}
.y16f{bottom:268.666667pt;}
.y14b{bottom:269.146667pt;}
.y1f{bottom:271.946667pt;}
.y98{bottom:272.746667pt;}
.ybb{bottom:275.866667pt;}
.ye2{bottom:279.946667pt;}
.y103{bottom:280.346667pt;}
.y16e{bottom:284.266667pt;}
.y1e{bottom:287.546667pt;}
.y12e{bottom:288.186667pt;}
.y97{bottom:288.346667pt;}
.yba{bottom:291.546667pt;}
.y14a{bottom:292.826667pt;}
.y4f{bottom:294.906667pt;}
.y102{bottom:295.946667pt;}
.y80{bottom:299.946667pt;}
.y1d{bottom:303.226667pt;}
.yb9{bottom:307.146667pt;}
.y16d{bottom:307.946667pt;}
.y149{bottom:308.426667pt;}
.ye1{bottom:311.626667pt;}
.y96{bottom:311.946667pt;}
.y1c{bottom:318.826667pt;}
.y4e{bottom:319.546667pt;}
.y12d{bottom:319.866667pt;}
.yb8{bottom:322.746667pt;}
.y16c{bottom:323.546667pt;}
.y148{bottom:324.026667pt;}
.ye0{bottom:327.226667pt;}
.y101{bottom:327.626667pt;}
.y7f{bottom:331.546667pt;}
.y12c{bottom:335.466667pt;}
.yb7{bottom:338.426667pt;}
.y16b{bottom:339.146667pt;}
.ydf{bottom:342.906667pt;}
.y100{bottom:343.226667pt;}
.y95{bottom:343.626667pt;}
.y4c{bottom:344.186667pt;}
.y7e{bottom:347.146667pt;}
.y147{bottom:347.946667pt;}
.y1b{bottom:350.426667pt;}
.y12b{bottom:351.146667pt;}
.yb6{bottom:354.026667pt;}
.y16a{bottom:354.826667pt;}
.yde{bottom:358.506667pt;}
.yff{bottom:358.906667pt;}
.y94{bottom:359.226667pt;}
.y7d{bottom:362.826667pt;}
.y1a{bottom:366.106667pt;}
.y12a{bottom:366.746667pt;}
.y4b{bottom:368.746667pt;}
.yb5{bottom:369.706667pt;}
.yfe{bottom:374.506667pt;}
.y93{bottom:374.906667pt;}
.y7c{bottom:378.426667pt;}
.y19{bottom:381.706667pt;}
.y129{bottom:382.346667pt;}
.yb4{bottom:385.306667pt;}
.ydd{bottom:390.106667pt;}
.y92{bottom:390.506667pt;}
.y146{bottom:390.906667pt;}
.y49{bottom:393.386667pt;}
.y7b{bottom:394.106667pt;}
.y18{bottom:397.386667pt;}
.y128{bottom:398.026667pt;}
.yb3{bottom:400.906667pt;}
.ydc{bottom:405.786667pt;}
.y91{bottom:406.106667pt;}
.y145{bottom:406.506667pt;}
.y169{bottom:409.706667pt;}
.y17{bottom:412.986667pt;}
.y127{bottom:413.626667pt;}
.yb2{bottom:416.586667pt;}
.ydb{bottom:421.413333pt;}
.y90{bottom:421.813333pt;}
.y144{bottom:422.133333pt;}
.y168{bottom:425.333333pt;}
.y7a{bottom:425.733333pt;}
.y16{bottom:428.613333pt;}
.y126{bottom:429.253333pt;}
.yb1{bottom:432.213333pt;}
.y48{bottom:437.093333pt;}
.y8f{bottom:437.413333pt;}
.y143{bottom:437.813333pt;}
.y79{bottom:441.333333pt;}
.y15{bottom:444.293333pt;}
.y125{bottom:444.933333pt;}
.y167{bottom:449.013333pt;}
.yda{bottom:452.693333pt;}
.y8e{bottom:453.093333pt;}
.y142{bottom:453.413333pt;}
.yb0{bottom:455.893333pt;}
.y78{bottom:457.013333pt;}
.y14{bottom:459.893333pt;}
.y124{bottom:460.533333pt;}
.yfd{bottom:460.693333pt;}
.y166{bottom:464.613333pt;}
.y47{bottom:468.693333pt;}
.y141{bottom:469.093333pt;}
.y77{bottom:472.613333pt;}
.y123{bottom:476.213333pt;}
.y165{bottom:480.293333pt;}
.y13{bottom:483.813333pt;}
.y46{bottom:484.293333pt;}
.y140{bottom:484.693333pt;}
.yaf{bottom:487.733333pt;}
.y76{bottom:488.293333pt;}
.y122{bottom:491.813333pt;}
.yfc{bottom:492.293333pt;}
.y45{bottom:499.973333pt;}
.y8d{bottom:500.293333pt;}
.y164{bottom:503.893333pt;}
.yfb{bottom:507.973333pt;}
.y44{bottom:515.573333pt;}
.y8c{bottom:515.973333pt;}
.y163{bottom:519.493333pt;}
.y75{bottom:519.893333pt;}
.y121{bottom:523.413333pt;}
.yfa{bottom:523.573333pt;}
.y12{bottom:527.013333pt;}
.yae{bottom:530.693333pt;}
.y43{bottom:531.253333pt;}
.y8b{bottom:531.573333pt;}
.y162{bottom:535.173333pt;}
.y74{bottom:535.493333pt;}
.y120{bottom:539.093333pt;}
.yf9{bottom:539.253333pt;}
.y13f{bottom:539.893333pt;}
.yad{bottom:544.293333pt;}
.y42{bottom:546.853333pt;}
.y8a{bottom:547.253333pt;}
.y73{bottom:551.173333pt;}
.y11f{bottom:554.693333pt;}
.yf8{bottom:554.853333pt;}
.y161{bottom:558.773333pt;}
.y11{bottom:559.893333pt;}
.y89{bottom:562.853333pt;}
.y72{bottom:566.773333pt;}
.yac{bottom:568.933333pt;}
.y11e{bottom:570.373333pt;}
.yd9{bottom:570.453333pt;}
.y160{bottom:574.453333pt;}
.y10{bottom:575.573333pt;}
.y41{bottom:578.453333pt;}
.y13e{bottom:582.773333pt;}
.y11d{bottom:585.973333pt;}
.yf7{bottom:586.133333pt;}
.y15f{bottom:590.053333pt;}
.yf{bottom:591.173333pt;}
.yab{bottom:593.573333pt;}
.y40{bottom:594.133333pt;}
.y71{bottom:598.453333pt;}
.y11c{bottom:601.573333pt;}
.yf6{bottom:601.733333pt;}
.yd8{bottom:602.373333pt;}
.ye{bottom:606.853333pt;}
.y3f{bottom:609.733333pt;}
.y15e{bottom:613.653333pt;}
.y70{bottom:614.053333pt;}
.y11b{bottom:617.253333pt;}
.yf5{bottom:617.413333pt;}
.yaa{bottom:618.213333pt;}
.yd{bottom:622.453333pt;}
.y3e{bottom:625.413333pt;}
.y15d{bottom:629.333333pt;}
.y6f{bottom:629.653333pt;}
.y11a{bottom:632.853333pt;}
.yc{bottom:638.053333pt;}
.y3d{bottom:641.013333pt;}
.ya9{bottom:642.853333pt;}
.y15c{bottom:644.933333pt;}
.y6e{bottom:645.333333pt;}
.y119{bottom:648.533333pt;}
.yf4{bottom:649.013333pt;}
.yb{bottom:653.733333pt;}
.y3c{bottom:656.613333pt;}
.y6d{bottom:660.933333pt;}
.y118{bottom:664.133333pt;}
.y88{bottom:664.613333pt;}
.ya8{bottom:667.493333pt;}
.y15b{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.yd7{bottom:676.613333pt;}
.y3b{bottom:680.293333pt;}
.y15a{bottom:684.213333pt;}
.y6c{bottom:684.613333pt;}
.y117{bottom:687.733333pt;}
.ya7{bottom:692.133333pt;}
.yd6{bottom:692.213333pt;}
.y9{bottom:693.253333pt;}
.yf3{bottom:695.893333pt;}
.y87{bottom:696.293333pt;}
.y159{bottom:699.813333pt;}
.yd5{bottom:707.813333pt;}
.yf2{bottom:711.573333pt;}
.y3a{bottom:711.893333pt;}
.y6b{bottom:716.213333pt;}
.ya6{bottom:716.773333pt;}
.y116{bottom:719.653333pt;}
.y158{bottom:723.493333pt;}
.yf1{bottom:727.173333pt;}
.y39{bottom:727.573333pt;}
.y6a{bottom:731.813333pt;}
.y8{bottom:736.213333pt;}
.y157{bottom:739.093333pt;}
.yd4{bottom:739.493333pt;}
.ya5{bottom:741.333333pt;}
.yf0{bottom:742.773333pt;}
.y38{bottom:743.173333pt;}
.y69{bottom:747.493333pt;}
.yd3{bottom:755.093333pt;}
.yef{bottom:758.453333pt;}
.y37{bottom:758.773333pt;}
.y115{bottom:762.613333pt;}
.y156{bottom:762.693333pt;}
.y68{bottom:763.093333pt;}
.ya4{bottom:765.973333pt;}
.y7{bottom:767.813333pt;}
.yd2{bottom:770.693333pt;}
.y36{bottom:774.453333pt;}
.y114{bottom:775.893333pt;}
.y155{bottom:778.373333pt;}
.y67{bottom:778.693333pt;}
.yee{bottom:782.053333pt;}
.yd1{bottom:786.373333pt;}
.y35{bottom:790.053333pt;}
.y154{bottom:793.973333pt;}
.y66{bottom:794.373333pt;}
.y6{bottom:799.653333pt;}
.y113{bottom:800.213333pt;}
.yd0{bottom:801.973333pt;}
.y86{bottom:805.733333pt;}
.ya3{bottom:809.653333pt;}
.y65{bottom:809.973333pt;}
.yed{bottom:813.973333pt;}
.ycf{bottom:817.653333pt;}
.y34{bottom:821.733333pt;}
.y112{bottom:824.533333pt;}
.y64{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.yce{bottom:833.253333pt;}
.y33{bottom:837.333333pt;}
.y63{bottom:841.253333pt;}
.y111{bottom:848.773333pt;}
.ycd{bottom:848.853333pt;}
.y32{bottom:852.933333pt;}
.y62{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.y31{bottom:868.613333pt;}
.y61{bottom:872.533333pt;}
.y110{bottom:873.093333pt;}
.ycc{bottom:880.533333pt;}
.y30{bottom:884.213333pt;}
.y60{bottom:888.133333pt;}
.ycb{bottom:896.133333pt;}
.y10e{bottom:897.413333pt;}
.y3{bottom:897.760000pt;}
.y2f{bottom:899.840000pt;}
.y5f{bottom:903.840000pt;}
.y13d{bottom:904.160000pt;}
.yca{bottom:911.840000pt;}
.y2e{bottom:915.520000pt;}
.y5e{bottom:919.440000pt;}
.y13c{bottom:919.840000pt;}
.y10d{bottom:921.680000pt;}
.yc9{bottom:927.440000pt;}
.y2d{bottom:931.120000pt;}
.y5d{bottom:935.040000pt;}
.y13b{bottom:935.440000pt;}
.yc8{bottom:943.040000pt;}
.y10c{bottom:946.000000pt;}
.y2c{bottom:946.800000pt;}
.y5c{bottom:950.720000pt;}
.y13a{bottom:951.040000pt;}
.yc7{bottom:958.720000pt;}
.y5b{bottom:966.320000pt;}
.yec{bottom:966.720000pt;}
.y10b{bottom:970.320000pt;}
.y2b{bottom:970.400000pt;}
.yc6{bottom:974.320000pt;}
.yeb{bottom:982.320000pt;}
.yc5{bottom:990.000000pt;}
.y5a{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y59{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:47.680000pt;}
.wb{width:60.880000pt;}
.w6{width:175.386667pt;}
.w5{width:231.146667pt;}
.w3{width:232.800000pt;}
.w4{width:236.266667pt;}
.w7{width:238.720000pt;}
.wa{width:318.586667pt;}
.w8{width:319.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.240000pt;}
.x1{left:60.480000pt;}
.x7{left:73.920000pt;}
.xf{left:98.879988pt;}
.x4{left:162.266667pt;}
.x2{left:180.266655pt;}
.xd{left:206.986667pt;}
.xb{left:213.066667pt;}
.x8{left:305.546667pt;}
.x6{left:395.546667pt;}
.xa{left:396.986655pt;}
.x9{left:481.413333pt;}
.xe{left:526.213333pt;}
.xc{left:533.413333pt;}
.x3{left:704.053322pt;}
}




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