
    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_596d07637e82e7ce1f8c4f2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_cafd7b6db12bea31ac285cd1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_0ac0e7b8b43321c5859a0e07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051270;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_ce8c75d3a35e5284e8de4ae4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_296139d3582dbedaaf9091d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:2.955078;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_c4f8c70763a78a44c762793e.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1c1efe2dbb9f61a023dec256.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051270;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);}
.m2{transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250773,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);}
.v8{vertical-align:-17.280000px;}
.v1{vertical-align:-14.400000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v6{vertical-align:17.280000px;}
.vc{vertical-align:36.000000px;}
.vb{vertical-align:37.440000px;}
.va{vertical-align:42.480000px;}
.v7{vertical-align:45.360000px;}
.v3{vertical-align:54.720000px;}
.v4{vertical-align:62.640000px;}
.v9{vertical-align:87.840000px;}
.ls47{letter-spacing:-1.629607px;}
.ls48{letter-spacing:-1.577346px;}
.ls4{letter-spacing:-0.864000px;}
.ls35{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls36{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.472200px;}
.lsf{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.048960px;}
.ls34{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.132480px;}
.ls19{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.650880px;}
.ls3b{letter-spacing:0.858240px;}
.ls3f{letter-spacing:0.984960px;}
.ls25{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.126080px;}
.lsc{letter-spacing:1.152000px;}
.lsd{letter-spacing:1.224000px;}
.ls46{letter-spacing:1.335043px;}
.ls12{letter-spacing:1.560000px;}
.ls7{letter-spacing:1.584000px;}
.lsb{letter-spacing:1.728000px;}
.ls40{letter-spacing:1.860480px;}
.ls3e{letter-spacing:1.929600px;}
.ls43{letter-spacing:1.980480px;}
.ls8{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.304000px;}
.ls1f{letter-spacing:2.376000px;}
.ls28{letter-spacing:2.801520px;}
.ls2d{letter-spacing:2.981520px;}
.ls38{letter-spacing:3.124800px;}
.ls42{letter-spacing:3.168000px;}
.ls39{letter-spacing:3.304800px;}
.ls14{letter-spacing:3.744000px;}
.ls3a{letter-spacing:3.827520px;}
.ls22{letter-spacing:3.902400px;}
.ls32{letter-spacing:4.082400px;}
.ls23{letter-spacing:4.109760px;}
.ls20{letter-spacing:4.130640px;}
.ls1b{letter-spacing:4.356720px;}
.ls30{letter-spacing:4.536720px;}
.ls1e{letter-spacing:4.622400px;}
.ls21{letter-spacing:4.829760px;}
.ls11{letter-spacing:5.160000px;}
.ls17{letter-spacing:5.184000px;}
.ls10{letter-spacing:7.500000px;}
.ls33{letter-spacing:8.760000px;}
.ls13{letter-spacing:8.784000px;}
.ls16{letter-spacing:17.424000px;}
.ls41{letter-spacing:19.128000px;}
.ls26{letter-spacing:19.656000px;}
.ls1c{letter-spacing:19.970640px;}
.ls2b{letter-spacing:20.376000px;}
.ls1d{letter-spacing:20.669760px;}
.ls27{letter-spacing:20.690640px;}
.ls2a{letter-spacing:24.652080px;}
.ls1a{letter-spacing:24.660720px;}
.lsa{letter-spacing:26.928000px;}
.ls2e{letter-spacing:83.880000px;}
.ls31{letter-spacing:242.280000px;}
.ls45{letter-spacing:243.996364px;}
.ls29{letter-spacing:343.260000px;}
.ls2c{letter-spacing:362.700000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws17{word-spacing:-66.240000px;}
.ws18{word-spacing:-51.120000px;}
.ws19{word-spacing:-48.240000px;}
.ws11{word-spacing:-28.182480px;}
.wsc{word-spacing:-28.158480px;}
.ws2{word-spacing:-16.632000px;}
.ws15{word-spacing:-16.488000px;}
.ws9{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.271994px;}
.ws4{word-spacing:-16.056000px;}
.ws16{word-spacing:-15.768000px;}
.ws14{word-spacing:-15.624000px;}
.ws1{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.921280px;}
.ws1e{word-spacing:-12.133209px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:29.016000px;}
.wsa{word-spacing:53.712000px;}
.ws10{word-spacing:101.016000px;}
.ws1f{word-spacing:145.314391px;}
.ws1a{word-spacing:162.539290px;}
.ws1b{word-spacing:175.993763px;}
.ws1c{word-spacing:182.874696px;}
.ws1d{word-spacing:190.549053px;}
.wsf{word-spacing:245.736000px;}
.ws12{word-spacing:259.416000px;}
.wse{word-spacing:270.216000px;}
.wsb{word-spacing:315.036000px;}
._34{margin-left:-9.360000px;}
._33{margin-left:-7.920000px;}
._36{margin-left:-6.758880px;}
._37{margin-left:-5.008320px;}
._20{margin-left:-3.913920px;}
._c{margin-left:-2.710080px;}
._0{margin-left:-1.192320px;}
._5{width:1.224000px;}
._12{width:2.488320px;}
._b{width:4.176000px;}
._a{width:5.184000px;}
._11{width:6.952320px;}
._10{width:8.136000px;}
._15{width:9.288000px;}
._17{width:10.368000px;}
._1f{width:12.096000px;}
._6{width:13.320000px;}
._13{width:14.328000px;}
._2f{width:15.726720px;}
._29{width:17.712000px;}
._25{width:19.088640px;}
._16{width:20.160000px;}
._1e{width:21.312000px;}
._4{width:23.328000px;}
._3{width:24.552000px;}
._28{width:26.136000px;}
._2b{width:28.255680px;}
._2a{width:29.272320px;}
._1b{width:30.816000px;}
._1a{width:31.824000px;}
._8{width:33.840000px;}
._7{width:35.248320px;}
._f{width:36.288000px;}
._e{width:37.440000px;}
._2c{width:38.592000px;}
._9{width:40.104000px;}
._14{width:41.760000px;}
._21{width:43.168320px;}
._d{width:44.496000px;}
._35{width:46.224000px;}
._2e{width:48.024000px;}
._1d{width:49.248000px;}
._1c{width:50.328000px;}
._2d{width:51.552000px;}
._31{width:52.920000px;}
._27{width:54.360000px;}
._26{width:55.368000px;}
._3a{width:57.096000px;}
._39{width:58.392000px;}
._32{width:59.688000px;}
._19{width:61.496640px;}
._18{width:63.504000px;}
._24{width:66.312000px;}
._23{width:67.320000px;}
._30{width:72.000000px;}
._48{width:73.008000px;}
._38{width:74.376000px;}
._22{width:94.392000px;}
._49{width:96.192000px;}
._3b{width:101.232000px;}
._47{width:140.256000px;}
._46{width:141.888000px;}
._3f{width:171.423262px;}
._42{width:174.842111px;}
._3e{width:185.531953px;}
._3d{width:206.323697px;}
._4b{width:272.880000px;}
._4a{width:274.104000px;}
._41{width:294.001071px;}
._45{width:300.168000px;}
._40{width:301.472558px;}
._43{width:304.690913px;}
._44{width:318.991547px;}
._1{width:366.184320px;}
._3c{width:851.184000px;}
._2{width:1430.369760px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:46.560202px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs7{font-size:53.686764px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y146{bottom:3.598914px;}
.y14c{bottom:8.076763px;}
.y145{bottom:21.498461px;}
.y14b{bottom:31.356389px;}
.y14a{bottom:54.636490px;}
.y2{bottom:58.536000px;}
.y149{bottom:77.886897px;}
.y148{bottom:101.166998px;}
.y121{bottom:115.596000px;}
.y11d{bottom:119.016000px;}
.y5d{bottom:119.376000px;}
.yed{bottom:121.716000px;}
.yf7{bottom:122.796000px;}
.y147{bottom:124.453038px;}
.y4d{bottom:127.836000px;}
.y141{bottom:129.636000px;}
.y26{bottom:133.956000px;}
.y10c{bottom:135.756000px;}
.ye0{bottom:137.196000px;}
.y120{bottom:138.816000px;}
.y80{bottom:141.336000px;}
.y11c{bottom:144.216000px;}
.y5c{bottom:144.576000px;}
.y78{bottom:145.116000px;}
.yf6{bottom:146.016000px;}
.yec{bottom:147.096000px;}
.y4c{bottom:153.030000px;}
.y143{bottom:153.101815px;}
.y140{bottom:154.830000px;}
.ybd{bottom:158.970000px;}
.y25{bottom:159.150000px;}
.y10b{bottom:161.130000px;}
.y9e{bottom:161.490000px;}
.y11f{bottom:162.030000px;}
.ydf{bottom:162.570000px;}
.y7f{bottom:166.530000px;}
.yf5{bottom:169.230000px;}
.y11b{bottom:169.410000px;}
.y5b{bottom:169.950000px;}
.y77{bottom:170.310000px;}
.yeb{bottom:172.290000px;}
.y4b{bottom:178.410000px;}
.y13f{bottom:180.210000px;}
.y11e{bottom:180.750000px;}
.ybc{bottom:183.810000px;}
.y24{bottom:184.350000px;}
.y10a{bottom:186.330000px;}
.y9d{bottom:186.690000px;}
.yde{bottom:187.770000px;}
.y7e{bottom:191.910000px;}
.yf4{bottom:192.450000px;}
.y11a{bottom:194.790000px;}
.y5a{bottom:195.150000px;}
.y76{bottom:195.510000px;}
.yea{bottom:197.670000px;}
.y4a{bottom:203.610000px;}
.y13e{bottom:205.410000px;}
.ybb{bottom:207.750000px;}
.y23{bottom:209.730000px;}
.yf3{bottom:211.170000px;}
.y109{bottom:211.530000px;}
.y9c{bottom:211.890000px;}
.ydd{bottom:213.150000px;}
.y7d{bottom:217.110000px;}
.y119{bottom:219.990000px;}
.y59{bottom:220.530000px;}
.y75{bottom:220.890000px;}
.ye9{bottom:222.870000px;}
.y49{bottom:228.810000px;}
.y13d{bottom:230.790000px;}
.y22{bottom:234.930000px;}
.y108{bottom:236.910000px;}
.y9b{bottom:237.270000px;}
.ydc{bottom:238.350000px;}
.y7c{bottom:242.310000px;}
.y118{bottom:245.370000px;}
.y58{bottom:245.730000px;}
.y74{bottom:246.090000px;}
.ye8{bottom:248.070000px;}
.yba{bottom:250.410000px;}
.y48{bottom:254.190000px;}
.y13c{bottom:255.990000px;}
.y21{bottom:260.310000px;}
.y107{bottom:262.110000px;}
.y9a{bottom:262.470000px;}
.ydb{bottom:263.550000px;}
.y7b{bottom:267.690000px;}
.y117{bottom:270.570000px;}
.y57{bottom:270.930000px;}
.y73{bottom:271.470000px;}
.ye7{bottom:273.450000px;}
.yb9{bottom:275.790000px;}
.y47{bottom:279.390000px;}
.y13b{bottom:281.190000px;}
.y20{bottom:285.510000px;}
.y106{bottom:287.310000px;}
.y99{bottom:287.850000px;}
.yda{bottom:288.930000px;}
.y7a{bottom:292.575000px;}
.y116{bottom:295.815000px;}
.y56{bottom:296.355000px;}
.y72{bottom:296.715000px;}
.ye6{bottom:298.695000px;}
.yb8{bottom:301.035000px;}
.y46{bottom:304.815000px;}
.y13a{bottom:306.615000px;}
.y1f{bottom:310.755000px;}
.y79{bottom:311.295000px;}
.y105{bottom:312.735000px;}
.y98{bottom:313.095000px;}
.yd9{bottom:314.175000px;}
.y115{bottom:321.195000px;}
.y55{bottom:321.555000px;}
.y71{bottom:321.915000px;}
.ye5{bottom:324.075000px;}
.yb7{bottom:326.415000px;}
.y45{bottom:330.015000px;}
.y139{bottom:331.815000px;}
.y1e{bottom:336.135000px;}
.y104{bottom:337.575000px;}
.y97{bottom:338.295000px;}
.yd8{bottom:339.375000px;}
.y114{bottom:346.395000px;}
.y54{bottom:346.755000px;}
.y70{bottom:347.295000px;}
.ye4{bottom:348.735000px;}
.yb6{bottom:351.615000px;}
.y44{bottom:355.215000px;}
.y138{bottom:357.015000px;}
.y103{bottom:360.615000px;}
.y1d{bottom:361.335000px;}
.y96{bottom:363.675000px;}
.yd7{bottom:364.755000px;}
.y113{bottom:371.595000px;}
.ye3{bottom:371.955000px;}
.y53{bottom:372.135000px;}
.y6f{bottom:372.495000px;}
.yb5{bottom:376.815000px;}
.y43{bottom:380.595000px;}
.y137{bottom:382.395000px;}
.y102{bottom:383.835000px;}
.y1c{bottom:386.535000px;}
.y95{bottom:388.875000px;}
.yd6{bottom:389.955000px;}
.ye2{bottom:395.175000px;}
.y112{bottom:396.975000px;}
.y52{bottom:397.335000px;}
.y6e{bottom:397.695000px;}
.yb4{bottom:402.195000px;}
.y101{bottom:402.555000px;}
.y42{bottom:405.795000px;}
.y136{bottom:407.595000px;}
.y1b{bottom:411.915000px;}
.ye1{bottom:413.895000px;}
.y94{bottom:414.255000px;}
.yd5{bottom:415.335000px;}
.y111{bottom:422.175000px;}
.y51{bottom:422.715000px;}
.y6d{bottom:423.075000px;}
.yb3{bottom:427.395000px;}
.y41{bottom:430.995000px;}
.y135{bottom:432.975000px;}
.y1a{bottom:437.115000px;}
.y93{bottom:439.455000px;}
.yd4{bottom:440.535000px;}
.y50{bottom:447.375000px;}
.y110{bottom:447.555000px;}
.y6c{bottom:448.275000px;}
.yb2{bottom:452.775000px;}
.y40{bottom:456.375000px;}
.y134{bottom:458.175000px;}
.y19{bottom:462.495000px;}
.y92{bottom:464.655000px;}
.yd3{bottom:465.735000px;}
.y4f{bottom:470.595000px;}
.y10f{bottom:472.215000px;}
.y6b{bottom:473.655000px;}
.yb1{bottom:477.975000px;}
.y3f{bottom:481.575000px;}
.y133{bottom:483.375000px;}
.y18{bottom:487.695000px;}
.y4e{bottom:489.315000px;}
.y91{bottom:490.035000px;}
.yd2{bottom:491.115000px;}
.y10e{bottom:495.435000px;}
.y6a{bottom:498.855000px;}
.yb0{bottom:503.175000px;}
.y3e{bottom:506.955000px;}
.y132{bottom:508.755000px;}
.y17{bottom:512.895000px;}
.y10d{bottom:514.155000px;}
.y90{bottom:515.235000px;}
.yd1{bottom:516.315000px;}
.y69{bottom:524.055000px;}
.yaf{bottom:528.195000px;}
.y3d{bottom:532.155000px;}
.y131{bottom:533.955000px;}
.y16{bottom:538.275000px;}
.yad{bottom:539.535000px;}
.y8f{bottom:540.435000px;}
.yd0{bottom:541.695000px;}
.y68{bottom:549.465000px;}
.yae{bottom:552.165000px;}
.y3c{bottom:557.385000px;}
.y130{bottom:559.185000px;}
.y15{bottom:563.505000px;}
.y8e{bottom:565.845000px;}
.ycf{bottom:566.925000px;}
.y67{bottom:574.665000px;}
.y3b{bottom:582.765000px;}
.y12f{bottom:584.565000px;}
.y14{bottom:588.885000px;}
.y8d{bottom:591.045000px;}
.yce{bottom:592.125000px;}
.yac{bottom:594.825000px;}
.y66{bottom:600.045000px;}
.y3a{bottom:607.965000px;}
.y12e{bottom:609.765000px;}
.yf2{bottom:612.645000px;}
.y13{bottom:614.085000px;}
.y8c{bottom:616.425000px;}
.ycd{bottom:617.505000px;}
.yab{bottom:620.205000px;}
.y65{bottom:625.245000px;}
.y39{bottom:633.345000px;}
.y12d{bottom:635.145000px;}
.yf1{bottom:635.865000px;}
.y12{bottom:639.285000px;}
.y8b{bottom:641.625000px;}
.ycc{bottom:642.705000px;}
.yaa{bottom:645.405000px;}
.y64{bottom:650.445000px;}
.y38{bottom:658.545000px;}
.yf0{bottom:658.905000px;}
.y12c{bottom:660.345000px;}
.y11{bottom:664.665000px;}
.y8a{bottom:666.825000px;}
.ycb{bottom:667.905000px;}
.ya9{bottom:670.605000px;}
.y63{bottom:675.825000px;}
.yef{bottom:677.805000px;}
.y37{bottom:683.745000px;}
.y12b{bottom:685.545000px;}
.y10{bottom:689.865000px;}
.y89{bottom:692.205000px;}
.yca{bottom:693.285000px;}
.ya8{bottom:695.625000px;}
.y62{bottom:700.485000px;}
.ya6{bottom:706.965000px;}
.y36{bottom:709.125000px;}
.y12a{bottom:710.925000px;}
.yf{bottom:715.065000px;}
.y88{bottom:717.405000px;}
.yc9{bottom:718.485000px;}
.ya7{bottom:719.565000px;}
.y61{bottom:723.705000px;}
.y35{bottom:734.325000px;}
.y129{bottom:736.125000px;}
.ye{bottom:740.445000px;}
.y87{bottom:742.605000px;}
.yc8{bottom:743.865000px;}
.y60{bottom:746.925000px;}
.y34{bottom:759.525000px;}
.y128{bottom:761.505000px;}
.ya5{bottom:762.225000px;}
.yd{bottom:765.645000px;}
.y86{bottom:767.985000px;}
.yc7{bottom:769.065000px;}
.y5f{bottom:769.965000px;}
.y33{bottom:784.905000px;}
.y127{bottom:786.705000px;}
.ya4{bottom:787.605000px;}
.y5e{bottom:788.865000px;}
.yc{bottom:791.025000px;}
.y85{bottom:793.185000px;}
.yc6{bottom:794.265000px;}
.y32{bottom:810.150000px;}
.y126{bottom:811.950000px;}
.ya3{bottom:812.850000px;}
.yb{bottom:816.270000px;}
.yc5{bottom:819.690000px;}
.y84{bottom:824.010000px;}
.y83{bottom:835.350000px;}
.y31{bottom:835.530000px;}
.y125{bottom:837.330000px;}
.ya2{bottom:838.230000px;}
.ya{bottom:841.110000px;}
.yc4{bottom:844.890000px;}
.y142{bottom:857.352360px;}
.y124{bottom:857.670000px;}
.y30{bottom:860.730000px;}
.ya1{bottom:863.430000px;}
.y9{bottom:864.150000px;}
.yc3{bottom:870.090000px;}
.y100{bottom:875.490000px;}
.y82{bottom:882.330000px;}
.y2f{bottom:885.930000px;}
.y8{bottom:887.910000px;}
.ya0{bottom:888.450000px;}
.y81{bottom:894.390000px;}
.yc2{bottom:895.470000px;}
.y9f{bottom:899.790000px;}
.yff{bottom:900.690000px;}
.y2e{bottom:911.310000px;}
.y7{bottom:913.110000px;}
.yc1{bottom:920.670000px;}
.yfe{bottom:926.070000px;}
.y2d{bottom:936.510000px;}
.y6{bottom:942.450000px;}
.yc0{bottom:945.690000px;}
.yfd{bottom:951.270000px;}
.ybe{bottom:957.030000px;}
.y2c{bottom:961.710000px;}
.ybf{bottom:969.630000px;}
.yfc{bottom:976.470000px;}
.y5{bottom:980.250000px;}
.y2b{bottom:987.090000px;}
.y144{bottom:997.923304px;}
.yfb{bottom:1001.850000px;}
.y2a{bottom:1012.290000px;}
.y4{bottom:1014.270000px;}
.yfa{bottom:1027.050000px;}
.y29{bottom:1037.670000px;}
.y3{bottom:1039.470000px;}
.y123{bottom:1041.270000px;}
.yf9{bottom:1052.430000px;}
.y1{bottom:1056.570000px;}
.y28{bottom:1062.900000px;}
.y122{bottom:1064.520000px;}
.yf8{bottom:1072.980000px;}
.yee{bottom:1074.420000px;}
.y27{bottom:1118.340000px;}
.hf{height:20.778398px;}
.h11{height:26.445234px;}
.h14{height:34.920152px;}
.h15{height:40.717442px;}
.h13{height:46.871061px;}
.h5{height:50.585625px;}
.h10{height:57.830625px;}
.h1{height:57.927656px;}
.h2{height:62.859375px;}
.h4{height:62.964844px;}
.h7{height:74.004654px;}
.h3{height:94.289062px;}
.he{height:116.793281px;}
.h6{height:126.949219px;}
.hc{height:164.389219px;}
.ha{height:172.309219px;}
.h9{height:175.189219px;}
.h12{height:175.491578px;}
.h8{height:181.669219px;}
.hb{height:257.269219px;}
.hd{height:257.389219px;}
.h0{height:1188.000000px;}
.w2{width:114.526689px;}
.w1{width:755.071931px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:5.385286px;}
.x26{left:14.327006px;}
.x29{left:22.363235px;}
.x2a{left:34.879260px;}
.x2{left:81.000000px;}
.x4{left:85.680000px;}
.x9{left:108.036000px;}
.x1f{left:123.336000px;}
.xf{left:135.036000px;}
.x22{left:155.370000px;}
.x13{left:189.030000px;}
.x12{left:202.890000px;}
.x20{left:212.790000px;}
.x21{left:233.130000px;}
.x14{left:246.810000px;}
.x7{left:308.910000px;}
.x5{left:334.335000px;}
.x8{left:371.775000px;}
.x6{left:394.095000px;}
.xe{left:432.075000px;}
.x3{left:459.075000px;}
.x27{left:471.945567px;}
.xa{left:486.075000px;}
.xb{left:513.075000px;}
.x17{left:519.045000px;}
.x1a{left:530.385000px;}
.x10{left:540.105000px;}
.x11{left:560.445000px;}
.x15{left:568.365000px;}
.x18{left:608.505000px;}
.x1b{left:609.585000px;}
.xc{left:627.585000px;}
.x1e{left:637.845000px;}
.x19{left:653.865000px;}
.x1d{left:657.285000px;}
.x1c{left:659.805000px;}
.x16{left:679.965000px;}
.x24{left:777.930000px;}
.x23{left:833.550000px;}
.x25{left:834.810000px;}
.xd{left:837.150000px;}
.x1{left:918.150000px;}
@media print{
.v8{vertical-align:-15.360000pt;}
.v1{vertical-align:-12.800000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v6{vertical-align:15.360000pt;}
.vc{vertical-align:32.000000pt;}
.vb{vertical-align:33.280000pt;}
.va{vertical-align:37.760000pt;}
.v7{vertical-align:40.320000pt;}
.v3{vertical-align:48.640000pt;}
.v4{vertical-align:55.680000pt;}
.v9{vertical-align:78.080000pt;}
.ls47{letter-spacing:-1.448540pt;}
.ls48{letter-spacing:-1.402085pt;}
.ls4{letter-spacing:-0.768000pt;}
.ls35{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls36{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.419733pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.043520pt;}
.ls34{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.117760pt;}
.ls19{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.578560pt;}
.ls3b{letter-spacing:0.762880pt;}
.ls3f{letter-spacing:0.875520pt;}
.ls25{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:1.000960pt;}
.lsc{letter-spacing:1.024000pt;}
.lsd{letter-spacing:1.088000pt;}
.ls46{letter-spacing:1.186704pt;}
.ls12{letter-spacing:1.386667pt;}
.ls7{letter-spacing:1.408000pt;}
.lsb{letter-spacing:1.536000pt;}
.ls40{letter-spacing:1.653760pt;}
.ls3e{letter-spacing:1.715200pt;}
.ls43{letter-spacing:1.760427pt;}
.ls8{letter-spacing:1.920000pt;}
.ls9{letter-spacing:2.048000pt;}
.ls1f{letter-spacing:2.112000pt;}
.ls28{letter-spacing:2.490240pt;}
.ls2d{letter-spacing:2.650240pt;}
.ls38{letter-spacing:2.777600pt;}
.ls42{letter-spacing:2.816000pt;}
.ls39{letter-spacing:2.937600pt;}
.ls14{letter-spacing:3.328000pt;}
.ls3a{letter-spacing:3.402240pt;}
.ls22{letter-spacing:3.468800pt;}
.ls32{letter-spacing:3.628800pt;}
.ls23{letter-spacing:3.653120pt;}
.ls20{letter-spacing:3.671680pt;}
.ls1b{letter-spacing:3.872640pt;}
.ls30{letter-spacing:4.032640pt;}
.ls1e{letter-spacing:4.108800pt;}
.ls21{letter-spacing:4.293120pt;}
.ls11{letter-spacing:4.586667pt;}
.ls17{letter-spacing:4.608000pt;}
.ls10{letter-spacing:6.666667pt;}
.ls33{letter-spacing:7.786667pt;}
.ls13{letter-spacing:7.808000pt;}
.ls16{letter-spacing:15.488000pt;}
.ls41{letter-spacing:17.002667pt;}
.ls26{letter-spacing:17.472000pt;}
.ls1c{letter-spacing:17.751680pt;}
.ls2b{letter-spacing:18.112000pt;}
.ls1d{letter-spacing:18.373120pt;}
.ls27{letter-spacing:18.391680pt;}
.ls2a{letter-spacing:21.912960pt;}
.ls1a{letter-spacing:21.920640pt;}
.lsa{letter-spacing:23.936000pt;}
.ls2e{letter-spacing:74.560000pt;}
.ls31{letter-spacing:215.360000pt;}
.ls45{letter-spacing:216.885657pt;}
.ls29{letter-spacing:305.120000pt;}
.ls2c{letter-spacing:322.400000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws17{word-spacing:-58.880000pt;}
.ws18{word-spacing:-45.440000pt;}
.ws19{word-spacing:-42.880000pt;}
.ws11{word-spacing:-25.051093pt;}
.wsc{word-spacing:-25.029760pt;}
.ws2{word-spacing:-14.784000pt;}
.ws15{word-spacing:-14.656000pt;}
.ws9{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.463995pt;}
.ws4{word-spacing:-14.272000pt;}
.ws16{word-spacing:-14.016000pt;}
.ws14{word-spacing:-13.888000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.263360pt;}
.ws1e{word-spacing:-10.785074pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:25.792000pt;}
.wsa{word-spacing:47.744000pt;}
.ws10{word-spacing:89.792000pt;}
.ws1f{word-spacing:129.168348pt;}
.ws1a{word-spacing:144.479369pt;}
.ws1b{word-spacing:156.438901pt;}
.ws1c{word-spacing:162.555285pt;}
.ws1d{word-spacing:169.376936pt;}
.wsf{word-spacing:218.432000pt;}
.ws12{word-spacing:230.592000pt;}
.wse{word-spacing:240.192000pt;}
.wsb{word-spacing:280.032000pt;}
._34{margin-left:-8.320000pt;}
._33{margin-left:-7.040000pt;}
._36{margin-left:-6.007893pt;}
._37{margin-left:-4.451840pt;}
._20{margin-left:-3.479040pt;}
._c{margin-left:-2.408960pt;}
._0{margin-left:-1.059840pt;}
._5{width:1.088000pt;}
._12{width:2.211840pt;}
._b{width:3.712000pt;}
._a{width:4.608000pt;}
._11{width:6.179840pt;}
._10{width:7.232000pt;}
._15{width:8.256000pt;}
._17{width:9.216000pt;}
._1f{width:10.752000pt;}
._6{width:11.840000pt;}
._13{width:12.736000pt;}
._2f{width:13.979307pt;}
._29{width:15.744000pt;}
._25{width:16.967680pt;}
._16{width:17.920000pt;}
._1e{width:18.944000pt;}
._4{width:20.736000pt;}
._3{width:21.824000pt;}
._28{width:23.232000pt;}
._2b{width:25.116160pt;}
._2a{width:26.019840pt;}
._1b{width:27.392000pt;}
._1a{width:28.288000pt;}
._8{width:30.080000pt;}
._7{width:31.331840pt;}
._f{width:32.256000pt;}
._e{width:33.280000pt;}
._2c{width:34.304000pt;}
._9{width:35.648000pt;}
._14{width:37.120000pt;}
._21{width:38.371840pt;}
._d{width:39.552000pt;}
._35{width:41.088000pt;}
._2e{width:42.688000pt;}
._1d{width:43.776000pt;}
._1c{width:44.736000pt;}
._2d{width:45.824000pt;}
._31{width:47.040000pt;}
._27{width:48.320000pt;}
._26{width:49.216000pt;}
._3a{width:50.752000pt;}
._39{width:51.904000pt;}
._32{width:53.056000pt;}
._19{width:54.663680pt;}
._18{width:56.448000pt;}
._24{width:58.944000pt;}
._23{width:59.840000pt;}
._30{width:64.000000pt;}
._48{width:64.896000pt;}
._38{width:66.112000pt;}
._22{width:83.904000pt;}
._49{width:85.504000pt;}
._3b{width:89.984000pt;}
._47{width:124.672000pt;}
._46{width:126.122667pt;}
._3f{width:152.376233pt;}
._42{width:155.415210pt;}
._3e{width:164.917292pt;}
._3d{width:183.398842pt;}
._4b{width:242.560000pt;}
._4a{width:243.648000pt;}
._41{width:261.334285pt;}
._45{width:266.816000pt;}
._40{width:267.975607pt;}
._43{width:270.836367pt;}
._44{width:283.548042pt;}
._1{width:325.497173pt;}
._3c{width:756.608000pt;}
._2{width:1271.439787pt;}
.fs5{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:41.386846pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs7{font-size:47.721568pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:3.199034pt;}
.y14c{bottom:7.179345pt;}
.y145{bottom:19.109743pt;}
.y14b{bottom:27.872345pt;}
.y14a{bottom:48.565769pt;}
.y2{bottom:52.032000pt;}
.y149{bottom:69.232797pt;}
.y148{bottom:89.926220pt;}
.y121{bottom:102.752000pt;}
.y11d{bottom:105.792000pt;}
.y5d{bottom:106.112000pt;}
.yed{bottom:108.192000pt;}
.yf7{bottom:109.152000pt;}
.y147{bottom:110.624922pt;}
.y4d{bottom:113.632000pt;}
.y141{bottom:115.232000pt;}
.y26{bottom:119.072000pt;}
.y10c{bottom:120.672000pt;}
.ye0{bottom:121.952000pt;}
.y120{bottom:123.392000pt;}
.y80{bottom:125.632000pt;}
.y11c{bottom:128.192000pt;}
.y5c{bottom:128.512000pt;}
.y78{bottom:128.992000pt;}
.yf6{bottom:129.792000pt;}
.yec{bottom:130.752000pt;}
.y4c{bottom:136.026667pt;}
.y143{bottom:136.090502pt;}
.y140{bottom:137.626667pt;}
.ybd{bottom:141.306667pt;}
.y25{bottom:141.466667pt;}
.y10b{bottom:143.226667pt;}
.y9e{bottom:143.546667pt;}
.y11f{bottom:144.026667pt;}
.ydf{bottom:144.506667pt;}
.y7f{bottom:148.026667pt;}
.yf5{bottom:150.426667pt;}
.y11b{bottom:150.586667pt;}
.y5b{bottom:151.066667pt;}
.y77{bottom:151.386667pt;}
.yeb{bottom:153.146667pt;}
.y4b{bottom:158.586667pt;}
.y13f{bottom:160.186667pt;}
.y11e{bottom:160.666667pt;}
.ybc{bottom:163.386667pt;}
.y24{bottom:163.866667pt;}
.y10a{bottom:165.626667pt;}
.y9d{bottom:165.946667pt;}
.yde{bottom:166.906667pt;}
.y7e{bottom:170.586667pt;}
.yf4{bottom:171.066667pt;}
.y11a{bottom:173.146667pt;}
.y5a{bottom:173.466667pt;}
.y76{bottom:173.786667pt;}
.yea{bottom:175.706667pt;}
.y4a{bottom:180.986667pt;}
.y13e{bottom:182.586667pt;}
.ybb{bottom:184.666667pt;}
.y23{bottom:186.426667pt;}
.yf3{bottom:187.706667pt;}
.y109{bottom:188.026667pt;}
.y9c{bottom:188.346667pt;}
.ydd{bottom:189.466667pt;}
.y7d{bottom:192.986667pt;}
.y119{bottom:195.546667pt;}
.y59{bottom:196.026667pt;}
.y75{bottom:196.346667pt;}
.ye9{bottom:198.106667pt;}
.y49{bottom:203.386667pt;}
.y13d{bottom:205.146667pt;}
.y22{bottom:208.826667pt;}
.y108{bottom:210.586667pt;}
.y9b{bottom:210.906667pt;}
.ydc{bottom:211.866667pt;}
.y7c{bottom:215.386667pt;}
.y118{bottom:218.106667pt;}
.y58{bottom:218.426667pt;}
.y74{bottom:218.746667pt;}
.ye8{bottom:220.506667pt;}
.yba{bottom:222.586667pt;}
.y48{bottom:225.946667pt;}
.y13c{bottom:227.546667pt;}
.y21{bottom:231.386667pt;}
.y107{bottom:232.986667pt;}
.y9a{bottom:233.306667pt;}
.ydb{bottom:234.266667pt;}
.y7b{bottom:237.946667pt;}
.y117{bottom:240.506667pt;}
.y57{bottom:240.826667pt;}
.y73{bottom:241.306667pt;}
.ye7{bottom:243.066667pt;}
.yb9{bottom:245.146667pt;}
.y47{bottom:248.346667pt;}
.y13b{bottom:249.946667pt;}
.y20{bottom:253.786667pt;}
.y106{bottom:255.386667pt;}
.y99{bottom:255.866667pt;}
.yda{bottom:256.826667pt;}
.y7a{bottom:260.066667pt;}
.y116{bottom:262.946667pt;}
.y56{bottom:263.426667pt;}
.y72{bottom:263.746667pt;}
.ye6{bottom:265.506667pt;}
.yb8{bottom:267.586667pt;}
.y46{bottom:270.946667pt;}
.y13a{bottom:272.546667pt;}
.y1f{bottom:276.226667pt;}
.y79{bottom:276.706667pt;}
.y105{bottom:277.986667pt;}
.y98{bottom:278.306667pt;}
.yd9{bottom:279.266667pt;}
.y115{bottom:285.506667pt;}
.y55{bottom:285.826667pt;}
.y71{bottom:286.146667pt;}
.ye5{bottom:288.066667pt;}
.yb7{bottom:290.146667pt;}
.y45{bottom:293.346667pt;}
.y139{bottom:294.946667pt;}
.y1e{bottom:298.786667pt;}
.y104{bottom:300.066667pt;}
.y97{bottom:300.706667pt;}
.yd8{bottom:301.666667pt;}
.y114{bottom:307.906667pt;}
.y54{bottom:308.226667pt;}
.y70{bottom:308.706667pt;}
.ye4{bottom:309.986667pt;}
.yb6{bottom:312.546667pt;}
.y44{bottom:315.746667pt;}
.y138{bottom:317.346667pt;}
.y103{bottom:320.546667pt;}
.y1d{bottom:321.186667pt;}
.y96{bottom:323.266667pt;}
.yd7{bottom:324.226667pt;}
.y113{bottom:330.306667pt;}
.ye3{bottom:330.626667pt;}
.y53{bottom:330.786667pt;}
.y6f{bottom:331.106667pt;}
.yb5{bottom:334.946667pt;}
.y43{bottom:338.306667pt;}
.y137{bottom:339.906667pt;}
.y102{bottom:341.186667pt;}
.y1c{bottom:343.586667pt;}
.y95{bottom:345.666667pt;}
.yd6{bottom:346.626667pt;}
.ye2{bottom:351.266667pt;}
.y112{bottom:352.866667pt;}
.y52{bottom:353.186667pt;}
.y6e{bottom:353.506667pt;}
.yb4{bottom:357.506667pt;}
.y101{bottom:357.826667pt;}
.y42{bottom:360.706667pt;}
.y136{bottom:362.306667pt;}
.y1b{bottom:366.146667pt;}
.ye1{bottom:367.906667pt;}
.y94{bottom:368.226667pt;}
.yd5{bottom:369.186667pt;}
.y111{bottom:375.266667pt;}
.y51{bottom:375.746667pt;}
.y6d{bottom:376.066667pt;}
.yb3{bottom:379.906667pt;}
.y41{bottom:383.106667pt;}
.y135{bottom:384.866667pt;}
.y1a{bottom:388.546667pt;}
.y93{bottom:390.626667pt;}
.yd4{bottom:391.586667pt;}
.y50{bottom:397.666667pt;}
.y110{bottom:397.826667pt;}
.y6c{bottom:398.466667pt;}
.yb2{bottom:402.466667pt;}
.y40{bottom:405.666667pt;}
.y134{bottom:407.266667pt;}
.y19{bottom:411.106667pt;}
.y92{bottom:413.026667pt;}
.yd3{bottom:413.986667pt;}
.y4f{bottom:418.306667pt;}
.y10f{bottom:419.746667pt;}
.y6b{bottom:421.026667pt;}
.yb1{bottom:424.866667pt;}
.y3f{bottom:428.066667pt;}
.y133{bottom:429.666667pt;}
.y18{bottom:433.506667pt;}
.y4e{bottom:434.946667pt;}
.y91{bottom:435.586667pt;}
.yd2{bottom:436.546667pt;}
.y10e{bottom:440.386667pt;}
.y6a{bottom:443.426667pt;}
.yb0{bottom:447.266667pt;}
.y3e{bottom:450.626667pt;}
.y132{bottom:452.226667pt;}
.y17{bottom:455.906667pt;}
.y10d{bottom:457.026667pt;}
.y90{bottom:457.986667pt;}
.yd1{bottom:458.946667pt;}
.y69{bottom:465.826667pt;}
.yaf{bottom:469.506667pt;}
.y3d{bottom:473.026667pt;}
.y131{bottom:474.626667pt;}
.y16{bottom:478.466667pt;}
.yad{bottom:479.586667pt;}
.y8f{bottom:480.386667pt;}
.yd0{bottom:481.506667pt;}
.y68{bottom:488.413333pt;}
.yae{bottom:490.813333pt;}
.y3c{bottom:495.453333pt;}
.y130{bottom:497.053333pt;}
.y15{bottom:500.893333pt;}
.y8e{bottom:502.973333pt;}
.ycf{bottom:503.933333pt;}
.y67{bottom:510.813333pt;}
.y3b{bottom:518.013333pt;}
.y12f{bottom:519.613333pt;}
.y14{bottom:523.453333pt;}
.y8d{bottom:525.373333pt;}
.yce{bottom:526.333333pt;}
.yac{bottom:528.733333pt;}
.y66{bottom:533.373333pt;}
.y3a{bottom:540.413333pt;}
.y12e{bottom:542.013333pt;}
.yf2{bottom:544.573333pt;}
.y13{bottom:545.853333pt;}
.y8c{bottom:547.933333pt;}
.ycd{bottom:548.893333pt;}
.yab{bottom:551.293333pt;}
.y65{bottom:555.773333pt;}
.y39{bottom:562.973333pt;}
.y12d{bottom:564.573333pt;}
.yf1{bottom:565.213333pt;}
.y12{bottom:568.253333pt;}
.y8b{bottom:570.333333pt;}
.ycc{bottom:571.293333pt;}
.yaa{bottom:573.693333pt;}
.y64{bottom:578.173333pt;}
.y38{bottom:585.373333pt;}
.yf0{bottom:585.693333pt;}
.y12c{bottom:586.973333pt;}
.y11{bottom:590.813333pt;}
.y8a{bottom:592.733333pt;}
.ycb{bottom:593.693333pt;}
.ya9{bottom:596.093333pt;}
.y63{bottom:600.733333pt;}
.yef{bottom:602.493333pt;}
.y37{bottom:607.773333pt;}
.y12b{bottom:609.373333pt;}
.y10{bottom:613.213333pt;}
.y89{bottom:615.293333pt;}
.yca{bottom:616.253333pt;}
.ya8{bottom:618.333333pt;}
.y62{bottom:622.653333pt;}
.ya6{bottom:628.413333pt;}
.y36{bottom:630.333333pt;}
.y12a{bottom:631.933333pt;}
.yf{bottom:635.613333pt;}
.y88{bottom:637.693333pt;}
.yc9{bottom:638.653333pt;}
.ya7{bottom:639.613333pt;}
.y61{bottom:643.293333pt;}
.y35{bottom:652.733333pt;}
.y129{bottom:654.333333pt;}
.ye{bottom:658.173333pt;}
.y87{bottom:660.093333pt;}
.yc8{bottom:661.213333pt;}
.y60{bottom:663.933333pt;}
.y34{bottom:675.133333pt;}
.y128{bottom:676.893333pt;}
.ya5{bottom:677.533333pt;}
.yd{bottom:680.573333pt;}
.y86{bottom:682.653333pt;}
.yc7{bottom:683.613333pt;}
.y5f{bottom:684.413333pt;}
.y33{bottom:697.693333pt;}
.y127{bottom:699.293333pt;}
.ya4{bottom:700.093333pt;}
.y5e{bottom:701.213333pt;}
.yc{bottom:703.133333pt;}
.y85{bottom:705.053333pt;}
.yc6{bottom:706.013333pt;}
.y32{bottom:720.133333pt;}
.y126{bottom:721.733333pt;}
.ya3{bottom:722.533333pt;}
.yb{bottom:725.573333pt;}
.yc5{bottom:728.613333pt;}
.y84{bottom:732.453333pt;}
.y83{bottom:742.533333pt;}
.y31{bottom:742.693333pt;}
.y125{bottom:744.293333pt;}
.ya2{bottom:745.093333pt;}
.ya{bottom:747.653333pt;}
.yc4{bottom:751.013333pt;}
.y142{bottom:762.090987pt;}
.y124{bottom:762.373333pt;}
.y30{bottom:765.093333pt;}
.ya1{bottom:767.493333pt;}
.y9{bottom:768.133333pt;}
.yc3{bottom:773.413333pt;}
.y100{bottom:778.213333pt;}
.y82{bottom:784.293333pt;}
.y2f{bottom:787.493333pt;}
.y8{bottom:789.253333pt;}
.ya0{bottom:789.733333pt;}
.y81{bottom:795.013333pt;}
.yc2{bottom:795.973333pt;}
.y9f{bottom:799.813333pt;}
.yff{bottom:800.613333pt;}
.y2e{bottom:810.053333pt;}
.y7{bottom:811.653333pt;}
.yc1{bottom:818.373333pt;}
.yfe{bottom:823.173333pt;}
.y2d{bottom:832.453333pt;}
.y6{bottom:837.733333pt;}
.yc0{bottom:840.613333pt;}
.yfd{bottom:845.573333pt;}
.ybe{bottom:850.693333pt;}
.y2c{bottom:854.853333pt;}
.ybf{bottom:861.893333pt;}
.yfc{bottom:867.973333pt;}
.y5{bottom:871.333333pt;}
.y2b{bottom:877.413333pt;}
.y144{bottom:887.042937pt;}
.yfb{bottom:890.533333pt;}
.y2a{bottom:899.813333pt;}
.y4{bottom:901.573333pt;}
.yfa{bottom:912.933333pt;}
.y29{bottom:922.373333pt;}
.y3{bottom:923.973333pt;}
.y123{bottom:925.573333pt;}
.yf9{bottom:935.493333pt;}
.y1{bottom:939.173333pt;}
.y28{bottom:944.800000pt;}
.y122{bottom:946.240000pt;}
.yf8{bottom:953.760000pt;}
.yee{bottom:955.040000pt;}
.y27{bottom:994.080000pt;}
.hf{height:18.469687pt;}
.h11{height:23.506875pt;}
.h14{height:31.040135pt;}
.h15{height:36.193282pt;}
.h13{height:41.663166pt;}
.h5{height:44.965000pt;}
.h10{height:51.405000pt;}
.h1{height:51.491250pt;}
.h2{height:55.875000pt;}
.h4{height:55.968750pt;}
.h7{height:65.781915pt;}
.h3{height:83.812500pt;}
.he{height:103.816250pt;}
.h6{height:112.843750pt;}
.hc{height:146.123750pt;}
.ha{height:153.163750pt;}
.h9{height:155.723750pt;}
.h12{height:155.992514pt;}
.h8{height:161.483750pt;}
.hb{height:228.683750pt;}
.hd{height:228.790417pt;}
.h0{height:1056.000000pt;}
.w2{width:101.801502pt;}
.w1{width:671.175050pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:4.786921pt;}
.x26{left:12.735116pt;}
.x29{left:19.878431pt;}
.x2a{left:31.003786pt;}
.x2{left:72.000000pt;}
.x4{left:76.160000pt;}
.x9{left:96.032000pt;}
.x1f{left:109.632000pt;}
.xf{left:120.032000pt;}
.x22{left:138.106667pt;}
.x13{left:168.026667pt;}
.x12{left:180.346667pt;}
.x20{left:189.146667pt;}
.x21{left:207.226667pt;}
.x14{left:219.386667pt;}
.x7{left:274.586667pt;}
.x5{left:297.186667pt;}
.x8{left:330.466667pt;}
.x6{left:350.306667pt;}
.xe{left:384.066667pt;}
.x3{left:408.066667pt;}
.x27{left:419.507170pt;}
.xa{left:432.066667pt;}
.xb{left:456.066667pt;}
.x17{left:461.373333pt;}
.x1a{left:471.453333pt;}
.x10{left:480.093333pt;}
.x11{left:498.173333pt;}
.x15{left:505.213333pt;}
.x18{left:540.893333pt;}
.x1b{left:541.853333pt;}
.xc{left:557.853333pt;}
.x1e{left:566.973333pt;}
.x19{left:581.213333pt;}
.x1d{left:584.253333pt;}
.x1c{left:586.493333pt;}
.x16{left:604.413333pt;}
.x24{left:691.493333pt;}
.x23{left:740.933333pt;}
.x25{left:742.053333pt;}
.xd{left:744.133333pt;}
.x1{left:816.133333pt;}
}




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