
    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_903925d60a88189108c8a96f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c41d24ad10c916184de0811f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_77a515469b7de6e4905eccfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.737305;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_21a6e74b8d3484eee2ca0ccd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.733887;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_c2d34b1cefa559108763b9dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041992;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_5e9c3cd1bf098eaf8b892f0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_adba4bb762ce516e1511fead.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.073334px;}
.ls7{letter-spacing:0.073379px;}
.ls5{letter-spacing:0.073424px;}
.ls6{letter-spacing:0.073514px;}
.lsa{letter-spacing:107.972021px;}
.ls9{letter-spacing:107.986172px;}
.ls4{letter-spacing:107.986185px;}
.ls1{letter-spacing:108.509344px;}
.ls3{letter-spacing:160.752906px;}
.ls2{letter-spacing:228.145043px;}
.lsd{letter-spacing:316.822181px;}
.lsb{letter-spacing:324.509351px;}
.lsc{letter-spacing:347.073477px;}
.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;}
}
.ws16{word-spacing:-39.888001px;}
.ws8{word-spacing:-29.916001px;}
.ws10{word-spacing:-26.592002px;}
.ws5{word-spacing:-21.606002px;}
.ws1{word-spacing:-20.832000px;}
.ws19{word-spacing:-19.944001px;}
.ws9{word-spacing:-19.344001px;}
.ws21{word-spacing:-17.856001px;}
.ws23{word-spacing:-1.607985px;}
.ws1c{word-spacing:-0.078000px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:34.702214px;}
.ws1f{word-spacing:60.336002px;}
.ws18{word-spacing:88.272003px;}
.ws1b{word-spacing:111.983983px;}
.wse{word-spacing:116.160000px;}
.wsf{word-spacing:119.911517px;}
.wsd{word-spacing:131.192756px;}
.ws14{word-spacing:144.671982px;}
.ws6{word-spacing:145.055985px;}
.ws26{word-spacing:153.036015px;}
.ws17{word-spacing:178.188022px;}
.ws4{word-spacing:184.068022px;}
.ws22{word-spacing:192.888006px;}
.ws13{word-spacing:194.280015px;}
.ws12{word-spacing:200.244015px;}
.wsa{word-spacing:211.259998px;}
.ws7{word-spacing:216.797999px;}
.ws20{word-spacing:233.352007px;}
.ws1d{word-spacing:243.179992px;}
.ws1a{word-spacing:248.639993px;}
.wsc{word-spacing:252.707922px;}
.ws2{word-spacing:344.004022px;}
.ws3{word-spacing:349.380022px;}
.ws15{word-spacing:359.124022px;}
.ws27{word-spacing:385.032029px;}
.ws24{word-spacing:385.116029px;}
.ws1e{word-spacing:409.512037px;}
.ws25{word-spacing:410.280022px;}
.wsb{word-spacing:885.580788px;}
._0{margin-left:-12.432000px;}
._5a{margin-left:-11.256000px;}
._23{margin-left:-9.828001px;}
._2{margin-left:-8.436000px;}
._e{margin-left:-7.104072px;}
._f{margin-left:-5.280072px;}
._4{margin-left:-4.032000px;}
._9{margin-left:-2.688000px;}
._3{margin-left:-1.442328px;}
._5{width:1.088095px;}
._d{width:2.981999px;}
._2f{width:41.805875px;}
._34{width:45.208625px;}
._81{width:56.556023px;}
._6e{width:64.874278px;}
._80{width:72.782350px;}
._42{width:76.185885px;}
._84{width:77.318350px;}
._1b{width:80.493877px;}
._57{width:83.092740px;}
._39{width:88.367973px;}
._2b{width:92.813973px;}
._22{width:103.240629px;}
._7e{width:106.200023px;}
._1{width:107.986325px;}
._b{width:113.442678px;}
._36{width:114.929991px;}
._2d{width:116.221785px;}
._25{width:127.055976px;}
._c{width:128.304007px;}
._6a{width:132.177860px;}
._3d{width:134.273993px;}
._40{width:135.504001px;}
._49{width:136.944002px;}
._13{width:138.030916px;}
._78{width:141.048005px;}
._16{width:150.845977px;}
._6{width:152.330350px;}
._10{width:153.576023px;}
._18{width:154.909788px;}
._37{width:155.915978px;}
._2a{width:157.374917px;}
._2c{width:158.765995px;}
._4a{width:160.127910px;}
._1f{width:173.313884px;}
._6b{width:174.575441px;}
._6f{width:175.935864px;}
._17{width:178.109996px;}
._a{width:181.128022px;}
._33{width:182.361885px;}
._77{width:183.600006px;}
._12{width:193.176030px;}
._24{width:194.603980px;}
._1d{width:197.453997px;}
._5d{width:200.088006px;}
._19{width:202.601998px;}
._8{width:203.724022px;}
._65{width:208.115990px;}
._5e{width:211.745990px;}
._5c{width:213.066255px;}
._3f{width:214.475990px;}
._62{width:216.797999px;}
._21{width:221.049887px;}
._6d{width:222.267651px;}
._30{width:225.998310px;}
._86{width:227.580022px;}
._7f{width:230.030350px;}
._7b{width:232.406880px;}
._73{width:233.638671px;}
._61{width:236.142000px;}
._48{width:237.791995px;}
._32{width:243.899984px;}
._68{width:244.958319px;}
._87{width:246.530358px;}
._41{width:248.327993px;}
._75{width:251.208008px;}
._52{width:253.740030px;}
._38{width:257.823890px;}
._29{width:260.144321px;}
._31{width:263.633985px;}
._3b{width:264.921890px;}
._64{width:267.983994px;}
._55{width:270.134357px;}
._35{width:277.241986px;}
._1c{width:284.030314px;}
._3a{width:286.682314px;}
._79{width:288.172664px;}
._7a{width:289.946337px;}
._15{width:296.219996px;}
._20{width:301.931988px;}
._27{width:303.609893px;}
._71{width:304.905640px;}
._3c{width:310.823989px;}
._70{width:312.803977px;}
._2e{width:318.545989px;}
._1e{width:321.665989px;}
._26{width:325.370317px;}
._85{width:329.442685px;}
._72{width:330.489642px;}
._4d{width:332.159981px;}
._58{width:338.712022px;}
._11{width:344.270349px;}
._28{width:349.511991px;}
._51{width:352.224009px;}
._1a{width:357.233992px;}
._7{width:370.632022px;}
._59{width:372.494349px;}
._6c{width:377.253878px;}
._5b{width:379.200022px;}
._66{width:392.276330px;}
._67{width:398.115907px;}
._54{width:405.948029px;}
._53{width:407.174365px;}
._83{width:408.686365px;}
._4e{width:422.399986px;}
._56{width:432.744029px;}
._7c{width:435.155997px;}
._82{width:436.511995px;}
._7d{width:458.844056px;}
._76{width:471.384015px;}
._4b{width:475.199990px;}
._74{width:516.930026px;}
._45{width:526.655986px;}
._4c{width:566.015995px;}
._43{width:638.303993px;}
._46{width:659.903994px;}
._3e{width:829.451975px;}
._44{width:845.472006px;}
._60{width:910.914014px;}
._63{width:915.984015px;}
._5f{width:1008.804021px;}
._14{width:1160.220024px;}
._69{width:1236.816029px;}
._4f{width:1432.224043px;}
._50{width:1533.792036px;}
._47{width:2614.512071px;}
.fc5{color:rgb(255,153,0);}
.fc4{color:rgb(255,255,0);}
.fc3{color:rgb(255,187,0);}
.fc2{color:rgb(0,255,0);}
.fc6{color:transparent;}
.fc1{color:rgb(0,255,255);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:72.000002px;}
.fs9{font-size:78.000005px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:96.000006px;}
.fsc{font-size:102.000000px;}
.fs3{font-size:108.000003px;}
.fs0{font-size:114.000007px;}
.fs2{font-size:120.000001px;}
.fs4{font-size:132.000007px;}
.fsa{font-size:144.000005px;}
.fs7{font-size:149.999999px;}
.fs1{font-size:167.999999px;}
.fs8{font-size:180.000006px;}
.y0{bottom:0.000000px;}
.y133{bottom:19.839542px;}
.y115{bottom:22.095139px;}
.y180{bottom:24.615161px;}
.y51{bottom:26.340360px;}
.y16e{bottom:27.039565px;}
.yaf{bottom:27.058121px;}
.y33{bottom:27.494981px;}
.y6e{bottom:31.455207px;}
.y158{bottom:37.574937px;}
.yec{bottom:39.421676px;}
.y12f{bottom:43.239520px;}
.y120{bottom:45.495005px;}
.ya5{bottom:46.574854px;}
.ycb{bottom:48.061517px;}
.y1e{bottom:48.554948px;}
.y17f{bottom:49.455140px;}
.y16d{bottom:50.439543px;}
.y6d{bottom:58.365207px;}
.y18a{bottom:58.807557px;}
.yae{bottom:60.178134px;}
.y3e{bottom:65.474983px;}
.y96{bottom:65.585376px;}
.y18c{bottom:66.554949px;}
.y12e{bottom:66.639510px;}
.y50{bottom:73.140328px;}
.ya4{bottom:73.484821px;}
.y169{bottom:73.839544px;}
.y144{bottom:74.240878px;}
.y17e{bottom:74.295129px;}
.y1d{bottom:77.534961px;}
.y28{bottom:77.535028px;}
.yca{bottom:81.181540px;}
.y6c{bottom:85.275175px;}
.y32{bottom:85.455006px;}
.y114{bottom:85.995118px;}
.y11f{bottom:88.694988px;}
.yd0{bottom:88.985365px;}
.yeb{bottom:89.101655px;}
.y8c{bottom:91.464325px;}
.ybe{bottom:92.114822px;}
.y157{bottom:95.534961px;}
.y4f{bottom:96.540329px;}
.y83{bottom:97.239457px;}
.y168{bottom:97.239522px;}
.ya3{bottom:100.394799px;}
.y195{bottom:100.680250px;}
.y143{bottom:103.220874px;}
.y4{bottom:103.801203px;}
.y100{bottom:105.185318px;}
.yee{bottom:106.147091px;}
.y1c{bottom:106.514984px;}
.yd3{bottom:110.239578px;}
.y11e{bottom:110.294984px;}
.y19e{bottom:110.474984px;}
.y6b{bottom:112.185153px;}
.y113{bottom:112.905097px;}
.y132{bottom:113.439489px;}
.yea{bottom:113.941633px;}
.yc9{bottom:114.301541px;}
.y13d{bottom:116.540433px;}
.yad{bottom:117.778115px;}
.ybd{bottom:119.024800px;}
.y8b{bottom:120.444320px;}
.y82{bottom:120.639435px;}
.y16c{bottom:120.639511px;}
.y59{bottom:121.920251px;}
.y17d{bottom:123.975097px;}
.y156{bottom:124.514985px;}
.ya2{bottom:127.304789px;}
.y106{bottom:128.580611px;}
.yff{bottom:128.585297px;}
.yed{bottom:130.897092px;}
.y194{bottom:133.800251px;}
.yd2{bottom:134.989582px;}
.y27{bottom:135.135019px;}
.y1b{bottom:135.494985px;}
.y14b{bottom:135.990851px;}
.y12d{bottom:136.839467px;}
.ye9{bottom:138.781634px;}
.y6a{bottom:139.095143px;}
.y19d{bottom:139.455008px;}
.yb4{bottom:140.465299px;}
.y4e{bottom:143.340296px;}
.y31{bottom:143.415030px;}
.y81{bottom:144.039436px;}
.y167{bottom:144.039501px;}
.ybc{bottom:145.934778px;}
.yac{bottom:146.578114px;}
.y17c{bottom:148.815098px;}
.y58{bottom:150.900263px;}
.y3d{bottom:152.415030px;}
.y11d{bottom:153.494985px;}
.y189{bottom:154.124742px;}
.y95{bottom:159.185322px;}
.y12c{bottom:160.239456px;}
.ye8{bottom:163.621613px;}
.y69{bottom:166.005121px;}
.y112{bottom:166.725065px;}
.y166{bottom:167.439490px;}
.yb3{bottom:169.265300px;}
.y30{bottom:172.395042px;}
.ybb{bottom:172.844768px;}
.y17b{bottom:173.655076px;}
.y13c{bottom:174.500426px;}
.y11c{bottom:175.094986px;}
.yfe{bottom:175.385298px;}
.y1ab{bottom:178.400664px;}
.ya1{bottom:181.124746px;}
.y3c{bottom:181.395043px;}
.ycf{bottom:182.585301px;}
.y12b{bottom:183.639435px;}
.ye7{bottom:188.461591px;}
.y1a6{bottom:190.395043px;}
.y80{bottom:190.839403px;}
.y16b{bottom:190.839469px;}
.y193{bottom:191.400264px;}
.y26{bottom:192.734998px;}
.y68{bottom:192.915099px;}
.y4d{bottom:193.380275px;}
.y1a{bottom:193.455009px;}
.y111{bottom:193.635054px;}
.y14a{bottom:193.950842px;}
.y19c{bottom:197.415032px;}
.yfd{bottom:198.785265px;}
.y46{bottom:199.839407px;}
.y2f{bottom:201.375043px;}
.y94{bottom:205.985301px;}
.y1aa{bottom:207.380661px;}
.ya0{bottom:208.034746px;}
.y3b{bottom:210.375044px;}
.y155{bottom:211.455010px;}
.yc8{bottom:212.401556px;}
.ye6{bottom:213.301580px;}
.y7f{bottom:214.239393px;}
.y165{bottom:214.239458px;}
.y1a5{bottom:219.375044px;}
.yab{bottom:219.665336px;}
.y67{bottom:219.825100px;}
.y192{bottom:220.200276px;}
.y89{bottom:221.355033px;}
.y105{bottom:222.180569px;}
.y19{bottom:222.435021px;}
.y45{bottom:223.239396px;}
.y17a{bottom:223.335044px;}
.y77{bottom:228.639382px;}
.yce{bottom:229.385302px;}
.y2e{bottom:230.355033px;}
.y131{bottom:230.439436px;}
.y188{bottom:234.854689px;}
.y9f{bottom:234.944714px;}
.y1a9{bottom:236.360657px;}
.y7e{bottom:237.639382px;}
.y164{bottom:237.639436px;}
.ye5{bottom:238.141570px;}
.y3a{bottom:239.355033px;}
.yc7{bottom:241.381568px;}
.y3{bottom:243.481173px;}
.yfc{bottom:245.585278px;}
.y66{bottom:246.735067px;}
.y110{bottom:247.455011px;}
.y179{bottom:248.175034px;}
.yaa{bottom:248.465348px;}
.y191{bottom:249.000277px;}
.y25{bottom:250.334989px;}
.y88{bottom:250.335022px;}
.y18{bottom:251.415034px;}
.y76{bottom:252.039405px;}
.y93{bottom:252.785269px;}
.yba{bottom:253.574714px;}
.y12a{bottom:253.839403px;}
.y142{bottom:254.565022px;}
.y19b{bottom:255.375045px;}
.yb2{bottom:255.665337px;}
.y2d{bottom:259.335023px;}
.y7d{bottom:261.039406px;}
.y163{bottom:261.039437px;}
.y187{bottom:261.764667px;}
.ye4{bottom:262.981548px;}
.yd9{bottom:265.182514px;}
.y57{bottom:266.820255px;}
.y39{bottom:268.335023px;}
.y104{bottom:268.980570px;}
.yfb{bottom:268.985279px;}
.y154{bottom:269.415034px;}
.y44{bottom:270.039420px;}
.yc6{bottom:270.361580px;}
.y178{bottom:273.015012px;}
.y65{bottom:273.645046px;}
.y10f{bottom:274.364989px;}
.y11b{bottom:275.355034px;}
.y13b{bottom:275.428699px;}
.ycd{bottom:276.185259px;}
.y129{bottom:277.239393px;}
.y1a4{bottom:277.335023px;}
.y17{bottom:280.395046px;}
.yb9{bottom:280.484693px;}
.y149{bottom:280.890822px;}
.yf4{bottom:283.031911px;}
.y141{bottom:283.545012px;}
.y19a{bottom:284.355035px;}
.y162{bottom:284.439438px;}
.ye3{bottom:287.821527px;}
.y186{bottom:288.674657px;}
.y4c{bottom:291.840267px;}
.y2{bottom:293.881175px;}
.y56{bottom:295.800256px;}
.y153{bottom:298.395046px;}
.y75{bottom:298.839407px;}
.yc5{bottom:299.341581px;}
.y64{bottom:300.555024px;}
.y13a{bottom:302.338700px;}
.yf{bottom:302.933516px;}
.y11a{bottom:304.335024px;}
.ya9{bottom:306.065362px;}
.y1a3{bottom:306.315024px;}
.yb8{bottom:307.394671px;}
.yf3{bottom:307.781912px;}
.y161{bottom:307.839405px;}
.y7c{bottom:307.839407px;}
.y16{bottom:309.375047px;}
.yf6{bottom:312.255002px;}
.yd8{bottom:314.682516px;}
.y103{bottom:315.780583px;}
.yfa{bottom:315.785291px;}
.y43{bottom:316.839433px;}
.y74{bottom:322.239419px;}
.y177{bottom:322.694991px;}
.y128{bottom:324.039417px;}
.y152{bottom:327.375047px;}
.y63{bottom:327.465014px;}
.y10e{bottom:328.185014px;}
.yc4{bottom:328.321571px;}
.y139{bottom:329.248701px;}
.y160{bottom:331.239417px;}
.y7b{bottom:331.239419px;}
.yf2{bottom:332.531912px;}
.y119{bottom:333.315025px;}
.yb7{bottom:334.304672px;}
.ye{bottom:337.133506px;}
.y87{bottom:337.275014px;}
.ye2{bottom:337.501528px;}
.y15{bottom:338.355036px;}
.y140{bottom:341.505003px;}
.yb1{bottom:342.065339px;}
.y199{bottom:342.315025px;}
.y9e{bottom:342.584661px;}
.y73{bottom:345.639419px;}
.y2c{bottom:346.275014px;}
.y92{bottom:346.385295px;}
.y127{bottom:347.439429px;}
.y176{bottom:347.534992px;}
.y4b{bottom:349.800258px;}
.y55{bottom:353.760247px;}
.y62{bottom:354.375014px;}
.y15f{bottom:354.639418px;}
.y10d{bottom:355.095003px;}
.y38{bottom:355.275014px;}
.y138{bottom:356.158702px;}
.y151{bottom:356.355037px;}
.yf1{bottom:357.281924px;}
.y118{bottom:362.295015px;}
.y102{bottom:362.580585px;}
.yf9{bottom:362.585304px;}
.y42{bottom:363.639446px;}
.yd7{bottom:364.182517px;}
.y1a2{bottom:364.275015px;}
.y86{bottom:366.255004px;}
.y14{bottom:367.335026px;}
.y9d{bottom:369.494650px;}
.y91{bottom:369.785295px;}
.yf5{bottom:370.214995px;}
.y13f{bottom:370.485000px;}
.y126{bottom:370.839429px;}
.yd{bottom:371.333496px;}
.y175{bottom:372.374992px;}
.y1{bottom:373.441178px;}
.y2b{bottom:375.255004px;}
.y24{bottom:376.335026px;}
.y16a{bottom:378.039418px;}
.y7a{bottom:378.039421px;}
.y4a{bottom:378.780248px;}
.y61{bottom:381.285004px;}
.y54{bottom:382.740237px;}
.y137{bottom:383.068698px;}
.y37{bottom:384.255004px;}
.y150{bottom:385.335027px;}
.yc3{bottom:386.281561px;}
.y41{bottom:387.039447px;}
.ye1{bottom:387.181530px;}
.yd6{bottom:388.932518px;}
.y72{bottom:392.439432px;}
.ya8{bottom:392.465353px;}
.y1a1{bottom:393.255004px;}
.y85{bottom:395.235001px;}
.y185{bottom:396.314649px;}
.y9c{bottom:396.404651px;}
.y190{bottom:396.780248px;}
.y13e{bottom:399.464996px;}
.y198{bottom:400.275016px;}
.y15e{bottom:401.439430px;}
.y79{bottom:401.439433px;}
.y2a{bottom:404.235001px;}
.y23{bottom:405.135027px;}
.yc{bottom:405.533497px;}
.yf0{bottom:406.781926px;}
.y60{bottom:408.195005px;}
.y10c{bottom:408.915005px;}
.yf8{bottom:409.385306px;}
.y136{bottom:409.978697px;}
.y53{bottom:411.720234px;}
.ye0{bottom:412.021530px;}
.y36{bottom:413.235002px;}
.y18b{bottom:414.315028px;}
.yc2{bottom:415.261551px;}
.y71{bottom:415.839433px;}
.y90{bottom:416.585308px;}
.y130{bottom:417.639442px;}
.y117{bottom:420.255005px;}
.y1a8{bottom:421.147079px;}
.y174{bottom:422.054994px;}
.y1a0{bottom:422.235002px;}
.y9b{bottom:423.314652px;}
.y84{bottom:424.214996px;}
.y15d{bottom:424.839431px;}
.y78{bottom:424.839433px;}
.y18f{bottom:425.760249px;}
.yb0{bottom:428.465308px;}
.y197{bottom:429.255006px;}
.y9{bottom:430.702436px;}
.y29{bottom:433.214997px;}
.y22{bottom:433.935017px;}
.y5f{bottom:435.105006px;}
.y10b{bottom:435.825006px;}
.y49{bottom:436.740238px;}
.ydf{bottom:436.861531px;}
.y135{bottom:436.888696px;}
.yd5{bottom:438.432520px;}
.ycc{bottom:439.985309px;}
.y125{bottom:441.039443px;}
.y35{bottom:442.214997px;}
.y14f{bottom:443.295017px;}
.yc1{bottom:444.241552px;}
.yb6{bottom:444.644664px;}
.y1a7{bottom:445.897079px;}
.y173{bottom:446.894995px;}
.y15c{bottom:448.239432px;}
.y148{bottom:449.340225px;}
.y184{bottom:450.134646px;}
.y19f{bottom:451.214997px;}
.y101{bottom:452.220588px;}
.y13{bottom:454.275018px;}
.y18e{bottom:454.740239px;}
.yef{bottom:456.281928px;}
.yde{bottom:461.701532px;}
.y5e{bottom:462.015007px;}
.y10a{bottom:462.734995px;}
.y21{bottom:462.735007px;}
.y8{bottom:463.102426px;}
.yd4{bottom:463.182520px;}
.y8f{bottom:463.385310px;}
.y134{bottom:463.798694px;}
.y124{bottom:464.439444px;}
.y48{bottom:465.720236px;}
.y15b{bottom:471.639438px;}
.y172{bottom:471.734996px;}
.y40{bottom:472.359449px;}
.y147{bottom:472.740232px;}
.yc0{bottom:473.221541px;}
.yb{bottom:476.093510px;}
.y183{bottom:477.044645px;}
.y9a{bottom:477.134649px;}
.y116{bottom:478.214998px;}
.ya7{bottom:478.865322px;}
.y12{bottom:483.255007px;}
.yf7{bottom:483.545308px;}
.ydd{bottom:486.541533px;}
.y8e{bottom:486.785310px;}
.y196{bottom:487.214998px;}
.y70{bottom:487.839442px;}
.y123{bottom:487.839444px;}
.y121{bottom:488.925003px;}
.y109{bottom:489.645002px;}
.y20{bottom:491.534999px;}
.y47{bottom:494.700231px;}
.y15a{bottom:495.039445px;}
.y7{bottom:495.502427px;}
.y146{bottom:496.140232px;}
.y14e{bottom:501.255008px;}
.yb5{bottom:502.604649px;}
.y182{bottom:503.954643px;}
.y99{bottom:504.044648px;}
.ydc{bottom:511.381534px;}
.y11{bottom:512.235005px;}
.y18d{bottom:512.700232px;}
.y5a{bottom:515.756694px;}
.y5d{bottom:515.835002px;}
.y108{bottom:516.554997px;}
.y6f{bottom:520.239448px;}
.y1f{bottom:520.334997px;}
.y171{bottom:521.414997px;}
.y34{bottom:522.859250px;}
.y6{bottom:527.902435px;}
.y14d{bottom:530.235005px;}
.y181{bottom:530.864642px;}
.y98{bottom:530.954647px;}
.ybf{bottom:531.181534px;}
.y3f{bottom:533.756692px;}
.ydb{bottom:536.221534px;}
.y8d{bottom:537.545312px;}
.y122{bottom:538.599446px;}
.y8a{bottom:540.859249px;}
.y10{bottom:541.215000px;}
.y5c{bottom:542.745000px;}
.y159{bottom:544.359446px;}
.y145{bottom:546.180234px;}
.y170{bottom:546.254998px;}
.y52{bottom:549.859251px;}
.ya{bottom:552.413501px;}
.yd1{bottom:555.301535px;}
.y97{bottom:557.864645px;}
.y14c{bottom:559.215001px;}
.y5{bottom:560.302440px;}
.yda{bottom:561.061535px;}
.ya6{bottom:564.545314px;}
.y5b{bottom:569.654999px;}
.y16f{bottom:571.094999px;}
.y107{bottom:572.895001px;}
.h12{height:52.417970px;}
.h11{height:52.453127px;}
.hc{height:56.824223px;}
.h15{height:58.500002px;}
.h14{height:59.299809px;}
.h10{height:61.195312px;}
.hd{height:63.375004px;}
.h9{height:63.861328px;}
.h6{height:68.250000px;}
.h7{height:69.937504px;}
.h13{height:77.545899px;}
.h4{height:78.205081px;}
.he{height:78.626956px;}
.h1{height:83.050786px;}
.hb{height:87.363282px;}
.h3{height:87.421876px;}
.h5{height:96.099615px;}
.hf{height:104.835941px;}
.h8{height:109.204101px;}
.h2{height:122.308593px;}
.ha{height:131.044926px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x31{left:20.382876px;}
.x14{left:21.507876px;}
.x1f{left:28.928151px;}
.x15{left:36.733330px;}
.x37{left:40.136813px;}
.xc{left:44.093505px;}
.x33{left:49.544293px;}
.x11{left:58.544293px;}
.x2d{left:64.125002px;}
.x12{left:65.382876px;}
.xf{left:67.346460px;}
.x38{left:68.991145px;}
.xd{left:73.071852px;}
.x9{left:74.199368px;}
.x16{left:75.507877px;}
.x1{left:76.718506px;}
.x36{left:78.670278px;}
.x1b{left:80.093506px;}
.xa{left:82.125003px;}
.x39{left:83.382876px;}
.x27{left:85.544294px;}
.x20{left:89.997050px;}
.x6{left:91.125003px;}
.x28{left:100.769749px;}
.x22{left:112.544295px;}
.x2b{left:115.149675px;}
.x13{left:119.382878px;}
.x10{left:120.507878px;}
.x1c{left:127.845477px;}
.x2{left:130.718507px;}
.x2e{left:133.350462px;}
.x3a{left:136.125004px;}
.x34{left:139.768706px;}
.x21{left:145.769753px;}
.x29{left:154.769754px;}
.x1a{left:190.125006px;}
.x25{left:191.382869px;}
.x2a{left:193.544297px;}
.x7{left:199.125006px;}
.x3b{left:218.760836px;}
.x30{left:236.382881px;}
.x32{left:238.544299px;}
.x26{left:245.382870px;}
.xb{left:248.417918px;}
.x1e{left:251.997055px;}
.x1d{left:359.997058px;}
.x2f{left:442.637317px;}
.x4{left:493.559060px;}
.x5{left:503.348479px;}
.x8{left:542.199395px;}
.x23{left:546.762347px;}
.x17{left:550.125018px;}
.x18{left:565.350472px;}
.x35{left:571.544310px;}
.x19{left:604.125019px;}
.x2c{left:671.537121px;}
.x24{left:744.292678px;}
.xe{left:747.194373px;}
.x3{left:871.818924px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.065186pt;}
.ls7{letter-spacing:0.065226pt;}
.ls5{letter-spacing:0.065266pt;}
.ls6{letter-spacing:0.065346pt;}
.lsa{letter-spacing:95.975130pt;}
.ls9{letter-spacing:95.987708pt;}
.ls4{letter-spacing:95.987720pt;}
.ls1{letter-spacing:96.452750pt;}
.ls3{letter-spacing:142.891472pt;}
.ls2{letter-spacing:202.795594pt;}
.lsd{letter-spacing:281.619716pt;}
.lsb{letter-spacing:288.452757pt;}
.lsc{letter-spacing:308.509757pt;}
.ws16{word-spacing:-35.456001pt;}
.ws8{word-spacing:-26.592001pt;}
.ws10{word-spacing:-23.637335pt;}
.ws5{word-spacing:-19.205335pt;}
.ws1{word-spacing:-18.517333pt;}
.ws19{word-spacing:-17.728001pt;}
.ws9{word-spacing:-17.194668pt;}
.ws21{word-spacing:-15.872001pt;}
.ws23{word-spacing:-1.429320pt;}
.ws1c{word-spacing:-0.069333pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:30.846413pt;}
.ws1f{word-spacing:53.632002pt;}
.ws18{word-spacing:78.464003pt;}
.ws1b{word-spacing:99.541318pt;}
.wse{word-spacing:103.253333pt;}
.wsf{word-spacing:106.588015pt;}
.wsd{word-spacing:116.615783pt;}
.ws14{word-spacing:128.597317pt;}
.ws6{word-spacing:128.938654pt;}
.ws26{word-spacing:136.032013pt;}
.ws17{word-spacing:158.389353pt;}
.ws4{word-spacing:163.616020pt;}
.ws22{word-spacing:171.456005pt;}
.ws13{word-spacing:172.693346pt;}
.ws12{word-spacing:177.994680pt;}
.wsa{word-spacing:187.786665pt;}
.ws7{word-spacing:192.709332pt;}
.ws20{word-spacing:207.424007pt;}
.ws1d{word-spacing:216.159993pt;}
.ws1a{word-spacing:221.013327pt;}
.wsc{word-spacing:224.629264pt;}
.ws2{word-spacing:305.781353pt;}
.ws3{word-spacing:310.560019pt;}
.ws15{word-spacing:319.221353pt;}
.ws27{word-spacing:342.250693pt;}
.ws24{word-spacing:342.325359pt;}
.ws1e{word-spacing:364.010700pt;}
.ws25{word-spacing:364.693353pt;}
.wsb{word-spacing:787.182923pt;}
._0{margin-left:-11.050667pt;}
._5a{margin-left:-10.005333pt;}
._23{margin-left:-8.736001pt;}
._2{margin-left:-7.498667pt;}
._e{margin-left:-6.314731pt;}
._f{margin-left:-4.693398pt;}
._4{margin-left:-3.584000pt;}
._9{margin-left:-2.389333pt;}
._3{margin-left:-1.282069pt;}
._5{width:0.967196pt;}
._d{width:2.650666pt;}
._2f{width:37.160777pt;}
._34{width:40.185444pt;}
._81{width:50.272020pt;}
._6e{width:57.666025pt;}
._80{width:64.695423pt;}
._42{width:67.720787pt;}
._84{width:68.727423pt;}
._1b{width:71.550113pt;}
._57{width:73.860214pt;}
._39{width:78.549309pt;}
._2b{width:82.501310pt;}
._22{width:91.769448pt;}
._7e{width:94.400020pt;}
._1{width:95.987844pt;}
._b{width:100.837936pt;}
._36{width:102.159992pt;}
._2d{width:103.308253pt;}
._25{width:112.938645pt;}
._c{width:114.048006pt;}
._6a{width:117.491432pt;}
._3d{width:119.354660pt;}
._40{width:120.448001pt;}
._49{width:121.728002pt;}
._13{width:122.694147pt;}
._78{width:125.376004pt;}
._16{width:134.085313pt;}
._6{width:135.404756pt;}
._10{width:136.512020pt;}
._18{width:137.697589pt;}
._37{width:138.591980pt;}
._2a{width:139.888815pt;}
._2c{width:141.125329pt;}
._4a{width:142.335920pt;}
._1f{width:154.056786pt;}
._6b{width:155.178170pt;}
._6f{width:156.387434pt;}
._17{width:158.319996pt;}
._a{width:161.002687pt;}
._33{width:162.099453pt;}
._77{width:163.200005pt;}
._12{width:171.712027pt;}
._24{width:172.981316pt;}
._1d{width:175.514664pt;}
._5d{width:177.856006pt;}
._19{width:180.090665pt;}
._8{width:181.088020pt;}
._65{width:184.991991pt;}
._5e{width:188.218658pt;}
._5c{width:189.392227pt;}
._3f{width:190.645325pt;}
._62{width:192.709332pt;}
._21{width:196.488789pt;}
._6d{width:197.571245pt;}
._30{width:200.887387pt;}
._86{width:202.293353pt;}
._7f{width:204.471422pt;}
._7b{width:206.583893pt;}
._73{width:207.678819pt;}
._61{width:209.904000pt;}
._48{width:211.370662pt;}
._32{width:216.799986pt;}
._68{width:217.740728pt;}
._87{width:219.138096pt;}
._41{width:220.735993pt;}
._75{width:223.296007pt;}
._52{width:225.546693pt;}
._38{width:229.176791pt;}
._29{width:231.239396pt;}
._31{width:234.341320pt;}
._3b{width:235.486125pt;}
._64{width:238.207995pt;}
._55{width:240.119429pt;}
._35{width:246.437321pt;}
._1c{width:252.471390pt;}
._3a{width:254.828724pt;}
._79{width:256.153479pt;}
._7a{width:257.730077pt;}
._15{width:263.306663pt;}
._20{width:268.383989pt;}
._27{width:269.875460pt;}
._71{width:271.027236pt;}
._3c{width:276.287990pt;}
._70{width:278.047979pt;}
._2e{width:283.151990pt;}
._1e{width:285.925324pt;}
._26{width:289.218060pt;}
._85{width:292.837942pt;}
._72{width:293.768571pt;}
._4d{width:295.253316pt;}
._58{width:301.077353pt;}
._11{width:306.018088pt;}
._28{width:310.677326pt;}
._51{width:313.088008pt;}
._1a{width:317.541326pt;}
._7{width:329.450686pt;}
._59{width:331.106088pt;}
._6c{width:335.336780pt;}
._5b{width:337.066686pt;}
._66{width:348.690071pt;}
._67{width:353.880806pt;}
._54{width:360.842693pt;}
._53{width:361.932769pt;}
._83{width:363.276769pt;}
._4e{width:375.466654pt;}
._56{width:384.661359pt;}
._7c{width:386.805331pt;}
._82{width:388.010662pt;}
._7d{width:407.861383pt;}
._76{width:419.008013pt;}
._4b{width:422.399991pt;}
._74{width:459.493356pt;}
._45{width:468.138654pt;}
._4c{width:503.125329pt;}
._43{width:567.381327pt;}
._46{width:586.581328pt;}
._3e{width:737.290645pt;}
._44{width:751.530672pt;}
._60{width:809.701346pt;}
._63{width:814.208013pt;}
._5f{width:896.714686pt;}
._14{width:1031.306688pt;}
._69{width:1099.392026pt;}
._4f{width:1273.088039pt;}
._50{width:1363.370699pt;}
._47{width:2324.010730pt;}
.fsb{font-size:64.000002pt;}
.fs9{font-size:69.333338pt;}
.fs5{font-size:74.666666pt;}
.fs6{font-size:85.333339pt;}
.fsc{font-size:90.666667pt;}
.fs3{font-size:96.000003pt;}
.fs0{font-size:101.333339pt;}
.fs2{font-size:106.666667pt;}
.fs4{font-size:117.333340pt;}
.fsa{font-size:128.000004pt;}
.fs7{font-size:133.333332pt;}
.fs1{font-size:149.333333pt;}
.fs8{font-size:160.000005pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:17.635148pt;}
.y115{bottom:19.640123pt;}
.y180{bottom:21.880143pt;}
.y51{bottom:23.413653pt;}
.y16e{bottom:24.035168pt;}
.yaf{bottom:24.051663pt;}
.y33{bottom:24.439984pt;}
.y6e{bottom:27.960184pt;}
.y158{bottom:33.399944pt;}
.yec{bottom:35.041490pt;}
.y12f{bottom:38.435129pt;}
.y120{bottom:40.440004pt;}
.ya5{bottom:41.399870pt;}
.ycb{bottom:42.721348pt;}
.y1e{bottom:43.159954pt;}
.y17f{bottom:43.960124pt;}
.y16d{bottom:44.835149pt;}
.y6d{bottom:51.880184pt;}
.y18a{bottom:52.273384pt;}
.yae{bottom:53.491674pt;}
.y3e{bottom:58.199985pt;}
.y96{bottom:58.298112pt;}
.y18c{bottom:59.159955pt;}
.y12e{bottom:59.235120pt;}
.y50{bottom:65.013625pt;}
.ya4{bottom:65.319841pt;}
.y169{bottom:65.635150pt;}
.y144{bottom:65.991892pt;}
.y17e{bottom:66.040115pt;}
.y1d{bottom:68.919965pt;}
.y28{bottom:68.920025pt;}
.yca{bottom:72.161369pt;}
.y6c{bottom:75.800155pt;}
.y32{bottom:75.960005pt;}
.y114{bottom:76.440105pt;}
.y11f{bottom:78.839989pt;}
.yd0{bottom:79.098102pt;}
.yeb{bottom:79.201471pt;}
.y8c{bottom:81.301622pt;}
.ybe{bottom:81.879841pt;}
.y157{bottom:84.919965pt;}
.y4f{bottom:85.813625pt;}
.y83{bottom:86.435072pt;}
.y168{bottom:86.435130pt;}
.ya3{bottom:89.239822pt;}
.y195{bottom:89.493556pt;}
.y143{bottom:91.751888pt;}
.y4{bottom:92.267736pt;}
.y100{bottom:93.498061pt;}
.yee{bottom:94.352970pt;}
.y1c{bottom:94.679986pt;}
.yd3{bottom:97.990736pt;}
.y11e{bottom:98.039986pt;}
.y19e{bottom:98.199986pt;}
.y6b{bottom:99.720136pt;}
.y113{bottom:100.360086pt;}
.y132{bottom:100.835101pt;}
.yea{bottom:101.281452pt;}
.yc9{bottom:101.601370pt;}
.y13d{bottom:103.591496pt;}
.yad{bottom:104.691658pt;}
.ybd{bottom:105.799822pt;}
.y8b{bottom:107.061618pt;}
.y82{bottom:107.235053pt;}
.y16c{bottom:107.235121pt;}
.y59{bottom:108.373556pt;}
.y17d{bottom:110.200086pt;}
.y156{bottom:110.679986pt;}
.ya2{bottom:113.159812pt;}
.y106{bottom:114.293876pt;}
.yff{bottom:114.298041pt;}
.yed{bottom:116.352970pt;}
.y194{bottom:118.933557pt;}
.yd2{bottom:119.990740pt;}
.y27{bottom:120.120017pt;}
.y1b{bottom:120.439987pt;}
.y14b{bottom:120.880757pt;}
.y12d{bottom:121.635082pt;}
.ye9{bottom:123.361453pt;}
.y6a{bottom:123.640127pt;}
.y19d{bottom:123.960007pt;}
.yb4{bottom:124.858044pt;}
.y4e{bottom:127.413597pt;}
.y31{bottom:127.480027pt;}
.y81{bottom:128.035054pt;}
.y167{bottom:128.035112pt;}
.ybc{bottom:129.719803pt;}
.yac{bottom:130.291657pt;}
.y17c{bottom:132.280087pt;}
.y58{bottom:134.133567pt;}
.y3d{bottom:135.480027pt;}
.y11d{bottom:136.439987pt;}
.y189{bottom:136.999771pt;}
.y95{bottom:141.498064pt;}
.y12c{bottom:142.435072pt;}
.ye8{bottom:145.441433pt;}
.y69{bottom:147.560107pt;}
.y112{bottom:148.200057pt;}
.y166{bottom:148.835102pt;}
.yb3{bottom:150.458045pt;}
.y30{bottom:153.240038pt;}
.ybb{bottom:153.639794pt;}
.y17b{bottom:154.360068pt;}
.y13c{bottom:155.111490pt;}
.y11c{bottom:155.639988pt;}
.yfe{bottom:155.898043pt;}
.y1ab{bottom:158.578368pt;}
.ya1{bottom:160.999774pt;}
.y3c{bottom:161.240038pt;}
.ycf{bottom:162.298045pt;}
.y12b{bottom:163.235053pt;}
.ye7{bottom:167.521414pt;}
.y1a6{bottom:169.240038pt;}
.y80{bottom:169.635025pt;}
.y16b{bottom:169.635083pt;}
.y193{bottom:170.133568pt;}
.y26{bottom:171.319998pt;}
.y68{bottom:171.480088pt;}
.y4d{bottom:171.893578pt;}
.y1a{bottom:171.960008pt;}
.y111{bottom:172.120048pt;}
.y14a{bottom:172.400748pt;}
.y19c{bottom:175.480028pt;}
.yfd{bottom:176.698013pt;}
.y46{bottom:177.635028pt;}
.y2f{bottom:179.000038pt;}
.y94{bottom:183.098046pt;}
.y1aa{bottom:184.338366pt;}
.ya0{bottom:184.919775pt;}
.y3b{bottom:187.000039pt;}
.y155{bottom:187.960009pt;}
.yc8{bottom:188.801383pt;}
.ye6{bottom:189.601405pt;}
.y7f{bottom:190.435016pt;}
.y165{bottom:190.435074pt;}
.y1a5{bottom:195.000039pt;}
.yab{bottom:195.258077pt;}
.y67{bottom:195.400089pt;}
.y192{bottom:195.733579pt;}
.y89{bottom:196.760029pt;}
.y105{bottom:197.493839pt;}
.y19{bottom:197.720019pt;}
.y45{bottom:198.435019pt;}
.y17a{bottom:198.520039pt;}
.y77{bottom:203.235006pt;}
.yce{bottom:203.898046pt;}
.y2e{bottom:204.760029pt;}
.y131{bottom:204.835054pt;}
.y188{bottom:208.759723pt;}
.y9f{bottom:208.839745pt;}
.y1a9{bottom:210.098361pt;}
.y7e{bottom:211.235006pt;}
.y164{bottom:211.235054pt;}
.ye5{bottom:211.681395pt;}
.y3a{bottom:212.760030pt;}
.yc7{bottom:214.561394pt;}
.y3{bottom:216.427710pt;}
.yfc{bottom:218.298025pt;}
.y66{bottom:219.320060pt;}
.y110{bottom:219.960010pt;}
.y179{bottom:220.600030pt;}
.yaa{bottom:220.858087pt;}
.y191{bottom:221.333580pt;}
.y25{bottom:222.519990pt;}
.y88{bottom:222.520020pt;}
.y18{bottom:223.480030pt;}
.y76{bottom:224.035027pt;}
.y93{bottom:224.698017pt;}
.yba{bottom:225.399746pt;}
.y12a{bottom:225.635025pt;}
.y142{bottom:226.280020pt;}
.y19b{bottom:227.000040pt;}
.yb2{bottom:227.258077pt;}
.y2d{bottom:230.520020pt;}
.y7d{bottom:232.035027pt;}
.y163{bottom:232.035055pt;}
.y187{bottom:232.679704pt;}
.ye4{bottom:233.761376pt;}
.yd9{bottom:235.717790pt;}
.y57{bottom:237.173560pt;}
.y39{bottom:238.520020pt;}
.y104{bottom:239.093840pt;}
.yfb{bottom:239.098025pt;}
.y154{bottom:239.480030pt;}
.y44{bottom:240.035040pt;}
.yc6{bottom:240.321404pt;}
.y178{bottom:242.680010pt;}
.y65{bottom:243.240041pt;}
.y10f{bottom:243.879991pt;}
.y11b{bottom:244.760031pt;}
.y13b{bottom:244.825511pt;}
.ycd{bottom:245.498008pt;}
.y129{bottom:246.435016pt;}
.y1a4{bottom:246.520021pt;}
.y17{bottom:249.240041pt;}
.yb9{bottom:249.319727pt;}
.y149{bottom:249.680731pt;}
.yf4{bottom:251.583921pt;}
.y141{bottom:252.040011pt;}
.y19a{bottom:252.760031pt;}
.y162{bottom:252.835056pt;}
.ye3{bottom:255.841357pt;}
.y186{bottom:256.599695pt;}
.y4c{bottom:259.413571pt;}
.y2{bottom:261.227711pt;}
.y56{bottom:262.933561pt;}
.y153{bottom:265.240041pt;}
.y75{bottom:265.635028pt;}
.yc5{bottom:266.081405pt;}
.y64{bottom:267.160021pt;}
.y13a{bottom:268.745511pt;}
.yf{bottom:269.274236pt;}
.y11a{bottom:270.520021pt;}
.ya9{bottom:272.058099pt;}
.y1a3{bottom:272.280021pt;}
.yb8{bottom:273.239707pt;}
.yf3{bottom:273.583921pt;}
.y161{bottom:273.635026pt;}
.y7c{bottom:273.635028pt;}
.y16{bottom:275.000042pt;}
.yf6{bottom:277.560002pt;}
.yd8{bottom:279.717792pt;}
.y103{bottom:280.693852pt;}
.yfa{bottom:280.698037pt;}
.y43{bottom:281.635052pt;}
.y74{bottom:286.435039pt;}
.y177{bottom:286.839992pt;}
.y128{bottom:288.035037pt;}
.y152{bottom:291.000042pt;}
.y63{bottom:291.080012pt;}
.y10e{bottom:291.720012pt;}
.yc4{bottom:291.841396pt;}
.y139{bottom:292.665512pt;}
.y160{bottom:294.435037pt;}
.y7b{bottom:294.435039pt;}
.yf2{bottom:295.583922pt;}
.y119{bottom:296.280022pt;}
.yb7{bottom:297.159708pt;}
.ye{bottom:299.674227pt;}
.y87{bottom:299.800012pt;}
.ye2{bottom:300.001358pt;}
.y15{bottom:300.760032pt;}
.y140{bottom:303.560002pt;}
.yb1{bottom:304.058079pt;}
.y199{bottom:304.280022pt;}
.y9e{bottom:304.519698pt;}
.y73{bottom:307.235040pt;}
.y2c{bottom:307.800013pt;}
.y92{bottom:307.898040pt;}
.y127{bottom:308.835048pt;}
.y176{bottom:308.919993pt;}
.y4b{bottom:310.933563pt;}
.y55{bottom:314.453553pt;}
.y62{bottom:315.000013pt;}
.y15f{bottom:315.235038pt;}
.y10d{bottom:315.640003pt;}
.y38{bottom:315.800013pt;}
.y138{bottom:316.585513pt;}
.y151{bottom:316.760033pt;}
.yf1{bottom:317.583933pt;}
.y118{bottom:322.040013pt;}
.y102{bottom:322.293853pt;}
.yf9{bottom:322.298048pt;}
.y42{bottom:323.235063pt;}
.yd7{bottom:323.717793pt;}
.y1a2{bottom:323.800013pt;}
.y86{bottom:325.560003pt;}
.y14{bottom:326.520023pt;}
.y9d{bottom:328.439689pt;}
.y91{bottom:328.698040pt;}
.yf5{bottom:329.079995pt;}
.y13f{bottom:329.320000pt;}
.y126{bottom:329.635048pt;}
.yd{bottom:330.074218pt;}
.y175{bottom:330.999993pt;}
.y1{bottom:331.947713pt;}
.y2b{bottom:333.560003pt;}
.y24{bottom:334.520023pt;}
.y16a{bottom:336.035038pt;}
.y7a{bottom:336.035040pt;}
.y4a{bottom:336.693553pt;}
.y61{bottom:338.920004pt;}
.y54{bottom:340.213544pt;}
.y137{bottom:340.505510pt;}
.y37{bottom:341.560004pt;}
.y150{bottom:342.520024pt;}
.yc3{bottom:343.361388pt;}
.y41{bottom:344.035064pt;}
.ye1{bottom:344.161360pt;}
.yd6{bottom:345.717794pt;}
.y72{bottom:348.835051pt;}
.ya8{bottom:348.858092pt;}
.y1a1{bottom:349.560004pt;}
.y85{bottom:351.320001pt;}
.y185{bottom:352.279688pt;}
.y9c{bottom:352.359690pt;}
.y190{bottom:352.693554pt;}
.y13e{bottom:355.079996pt;}
.y198{bottom:355.800014pt;}
.y15e{bottom:356.835049pt;}
.y79{bottom:356.835051pt;}
.y2a{bottom:359.320001pt;}
.y23{bottom:360.120024pt;}
.yc{bottom:360.474219pt;}
.yf0{bottom:361.583934pt;}
.y60{bottom:362.840004pt;}
.y10c{bottom:363.480004pt;}
.yf8{bottom:363.898049pt;}
.y136{bottom:364.425508pt;}
.y53{bottom:365.973541pt;}
.ye0{bottom:366.241360pt;}
.y36{bottom:367.320001pt;}
.y18b{bottom:368.280025pt;}
.yc2{bottom:369.121379pt;}
.y71{bottom:369.635052pt;}
.y90{bottom:370.298052pt;}
.y130{bottom:371.235060pt;}
.y117{bottom:373.560005pt;}
.y1a8{bottom:374.352959pt;}
.y174{bottom:375.159995pt;}
.y1a0{bottom:375.320002pt;}
.y9b{bottom:376.279691pt;}
.y84{bottom:377.079997pt;}
.y15d{bottom:377.635050pt;}
.y78{bottom:377.635052pt;}
.y18f{bottom:378.453555pt;}
.yb0{bottom:380.858052pt;}
.y197{bottom:381.560005pt;}
.y9{bottom:382.846610pt;}
.y29{bottom:385.079997pt;}
.y22{bottom:385.720015pt;}
.y5f{bottom:386.760005pt;}
.y10b{bottom:387.400005pt;}
.y49{bottom:388.213545pt;}
.ydf{bottom:388.321361pt;}
.y135{bottom:388.345507pt;}
.yd5{bottom:389.717795pt;}
.ycc{bottom:391.098052pt;}
.y125{bottom:392.035060pt;}
.y35{bottom:393.079997pt;}
.y14f{bottom:394.040015pt;}
.yc1{bottom:394.881379pt;}
.yb6{bottom:395.239701pt;}
.y1a7{bottom:396.352959pt;}
.y173{bottom:397.239995pt;}
.y15c{bottom:398.435050pt;}
.y148{bottom:399.413534pt;}
.y184{bottom:400.119686pt;}
.y19f{bottom:401.079998pt;}
.y101{bottom:401.973856pt;}
.y13{bottom:403.800016pt;}
.y18e{bottom:404.213546pt;}
.yef{bottom:405.583936pt;}
.yde{bottom:410.401362pt;}
.y5e{bottom:410.680006pt;}
.y10a{bottom:411.319996pt;}
.y21{bottom:411.320006pt;}
.y8{bottom:411.646601pt;}
.yd4{bottom:411.717796pt;}
.y8f{bottom:411.898053pt;}
.y134{bottom:412.265506pt;}
.y124{bottom:412.835061pt;}
.y48{bottom:413.973543pt;}
.y15b{bottom:419.235056pt;}
.y172{bottom:419.319996pt;}
.y40{bottom:419.875066pt;}
.y147{bottom:420.213539pt;}
.yc0{bottom:420.641370pt;}
.yb{bottom:423.194231pt;}
.y183{bottom:424.039684pt;}
.y9a{bottom:424.119688pt;}
.y116{bottom:425.079998pt;}
.ya7{bottom:425.658064pt;}
.y12{bottom:429.560006pt;}
.yf7{bottom:429.818051pt;}
.ydd{bottom:432.481363pt;}
.y8e{bottom:432.698054pt;}
.y196{bottom:433.079999pt;}
.y70{bottom:433.635060pt;}
.y123{bottom:433.635062pt;}
.y121{bottom:434.600003pt;}
.y109{bottom:435.240002pt;}
.y20{bottom:436.919999pt;}
.y47{bottom:439.733539pt;}
.y15a{bottom:440.035062pt;}
.y7{bottom:440.446602pt;}
.y146{bottom:441.013540pt;}
.y14e{bottom:445.560007pt;}
.yb5{bottom:446.759688pt;}
.y182{bottom:447.959683pt;}
.y99{bottom:448.039687pt;}
.ydc{bottom:454.561363pt;}
.y11{bottom:455.320004pt;}
.y18d{bottom:455.733539pt;}
.y5a{bottom:458.450394pt;}
.y5d{bottom:458.520001pt;}
.y108{bottom:459.159997pt;}
.y6f{bottom:462.435065pt;}
.y1f{bottom:462.519998pt;}
.y171{bottom:463.479998pt;}
.y34{bottom:464.763778pt;}
.y6{bottom:469.246609pt;}
.y14d{bottom:471.320005pt;}
.y181{bottom:471.879682pt;}
.y98{bottom:471.959686pt;}
.ybf{bottom:472.161364pt;}
.y3f{bottom:474.450393pt;}
.ydb{bottom:476.641364pt;}
.y8d{bottom:477.818055pt;}
.y122{bottom:478.755063pt;}
.y8a{bottom:480.763777pt;}
.y10{bottom:481.080000pt;}
.y5c{bottom:482.440000pt;}
.y159{bottom:483.875063pt;}
.y145{bottom:485.493541pt;}
.y170{bottom:485.559998pt;}
.y52{bottom:488.763778pt;}
.ya{bottom:491.034223pt;}
.yd1{bottom:493.601365pt;}
.y97{bottom:495.879685pt;}
.y14c{bottom:497.080001pt;}
.y5{bottom:498.046614pt;}
.yda{bottom:498.721365pt;}
.ya6{bottom:501.818056pt;}
.y5b{bottom:506.359999pt;}
.y16f{bottom:507.639999pt;}
.y107{bottom:509.240001pt;}
.h12{height:46.593751pt;}
.h11{height:46.625001pt;}
.hc{height:50.510420pt;}
.h15{height:52.000002pt;}
.h14{height:52.710941pt;}
.h10{height:54.395833pt;}
.hd{height:56.333337pt;}
.h9{height:56.765625pt;}
.h6{height:60.666666pt;}
.h7{height:62.166671pt;}
.h13{height:68.929688pt;}
.h4{height:69.515627pt;}
.he{height:69.890627pt;}
.h1{height:73.822921pt;}
.hb{height:77.656251pt;}
.h3{height:77.708334pt;}
.h5{height:85.421880pt;}
.hf{height:93.187503pt;}
.h8{height:97.070312pt;}
.h2{height:108.718750pt;}
.ha{height:116.484379pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x31{left:18.118112pt;}
.x14{left:19.118112pt;}
.x1f{left:25.713912pt;}
.x15{left:32.651849pt;}
.x37{left:35.677167pt;}
.xc{left:39.194226pt;}
.x33{left:44.039371pt;}
.x11{left:52.039372pt;}
.x2d{left:57.000002pt;}
.x12{left:58.118112pt;}
.xf{left:59.863520pt;}
.x38{left:61.325462pt;}
.xd{left:64.952757pt;}
.x9{left:65.954994pt;}
.x16{left:67.118113pt;}
.x1{left:68.194227pt;}
.x36{left:69.929136pt;}
.x1b{left:71.194227pt;}
.xa{left:73.000002pt;}
.x39{left:74.118112pt;}
.x27{left:76.039372pt;}
.x20{left:79.997378pt;}
.x6{left:81.000003pt;}
.x28{left:89.573110pt;}
.x22{left:100.039373pt;}
.x2b{left:102.355266pt;}
.x13{left:106.118113pt;}
.x10{left:107.118113pt;}
.x1c{left:113.640424pt;}
.x2{left:116.194229pt;}
.x2e{left:118.533744pt;}
.x3a{left:121.000004pt;}
.x34{left:124.238850pt;}
.x21{left:129.573114pt;}
.x29{left:137.573114pt;}
.x1a{left:169.000005pt;}
.x25{left:170.118105pt;}
.x2a{left:172.039376pt;}
.x7{left:177.000006pt;}
.x3b{left:194.454076pt;}
.x30{left:210.118117pt;}
.x32{left:212.039377pt;}
.x26{left:218.118107pt;}
.xb{left:220.815927pt;}
.x1e{left:223.997382pt;}
.x1d{left:319.997385pt;}
.x2f{left:393.455393pt;}
.x4{left:438.719164pt;}
.x5{left:447.420870pt;}
.x8{left:481.955017pt;}
.x23{left:486.010976pt;}
.x17{left:489.000016pt;}
.x18{left:502.533753pt;}
.x35{left:508.039386pt;}
.x19{left:537.000017pt;}
.x2c{left:596.921885pt;}
.x24{left:661.593491pt;}
.xe{left:664.172776pt;}
.x3{left:774.950155pt;}
}




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