
    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_de57fc26da32449d3652a14f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_235dd2d544896d78f5eb6bfc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_789271ef6bf83ef547f8d4c1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_382224000e1216387b4bc52f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_2c5af284e3b9c25cd9fcd23c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_d9844b944d1537378774d11e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_c736e85d4ca2cbbb34c037c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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:ff8;src:url('chunks/assets/font_d08c132071cc62369dfe04a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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:ff9;src:url('chunks/assets/font_dc5947736d6c358ab03ce23a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.109375;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:ffa;src:url('chunks/assets/font_028b2c62e1ca469e9e91cf97.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915039;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:ffb;src:url('chunks/assets/font_6f15822ac9d8977ac7657a39.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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:ffc;src:url('chunks/assets/font_702eadd45e2e4e090437d2b7.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v3{vertical-align:-94.795653px;}
.v5{vertical-align:-55.195629px;}
.v1{vertical-align:-25.779061px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:103.204434px;}
.v2{vertical-align:234.244407px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000027px;}
.lsa{letter-spacing:0.000180px;}
.ls4{letter-spacing:0.007020px;}
.ls3{letter-spacing:0.007043px;}
.ls5{letter-spacing:0.007065px;}
.ls8{letter-spacing:82.890003px;}
.ls1{letter-spacing:107.960711px;}
.ls6{letter-spacing:108.000354px;}
.ls9{letter-spacing:108.008778px;}
.ls2{letter-spacing:138.885601px;}
.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;}
}
.ws22{word-spacing:-72.000002px;}
.ws1b{word-spacing:-63.990002px;}
.ws0{word-spacing:-47.700002px;}
.ws17{word-spacing:-46.500000px;}
.ws18{word-spacing:-43.200001px;}
.ws1a{word-spacing:-42.000000px;}
.ws20{word-spacing:-39.600002px;}
.ws6{word-spacing:-36.570000px;}
.ws7{word-spacing:-31.200002px;}
.ws25{word-spacing:-30.132001px;}
.ws5{word-spacing:-28.039502px;}
.ws3{word-spacing:-27.000001px;}
.ws9{word-spacing:-25.110001px;}
.ws1c{word-spacing:-23.850001px;}
.wsa{word-spacing:-23.532002px;}
.ws26{word-spacing:-23.436000px;}
.ws19{word-spacing:-23.268000px;}
.ws21{word-spacing:-23.226751px;}
.ws23{word-spacing:-22.260000px;}
.ws1f{word-spacing:-21.762002px;}
.wsc{word-spacing:-21.600001px;}
.wsf{word-spacing:-21.330001px;}
.ws10{word-spacing:-19.944001px;}
.ws24{word-spacing:-19.908000px;}
.ws1e{word-spacing:-18.486001px;}
.wsd{word-spacing:-18.000001px;}
.ws1d{word-spacing:-16.620000px;}
.wse{word-spacing:-13.200001px;}
.ws1{word-spacing:-11.376001px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:86.451304px;}
.ws11{word-spacing:165.120152px;}
.ws8{word-spacing:247.957786px;}
.ws13{word-spacing:403.332885px;}
.ws15{word-spacing:590.244895px;}
.ws16{word-spacing:632.616898px;}
.ws12{word-spacing:648.786899px;}
.ws14{word-spacing:648.918899px;}
.wsb{word-spacing:1037.355606px;}
._5{margin-left:-1681.509353px;}
._14{margin-left:-12.340050px;}
._3{margin-left:-11.040000px;}
._12{margin-left:-9.360001px;}
._11{margin-left:-8.299199px;}
._4{margin-left:-7.080000px;}
._1{margin-left:-5.220000px;}
._7{margin-left:-4.130400px;}
._0{margin-left:-2.700000px;}
._2{margin-left:-1.620000px;}
._8{width:1.106460px;}
._10{width:80.640147px;}
._13{width:107.981088px;}
._c{width:117.336149px;}
._b{width:154.032151px;}
._a{width:194.943274px;}
._d{width:209.010154px;}
._f{width:245.706156px;}
._e{width:681.984900px;}
._9{width:788.112906px;}
._6{width:1285.630916px;}
.fc12{color:rgb(0,151,167);}
.fcf{color:rgb(68,68,68);}
.fc11{color:rgb(14,14,14);}
.fce{color:rgb(231,50,76);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc8{color:rgb(0,0,0);}
.fcc{color:rgb(187,187,187);}
.fc7{color:rgb(69,84,107);}
.fcd{color:rgb(186,33,33);}
.fc4{color:transparent;}
.fc5{color:rgb(36,59,84);}
.fc2{color:rgb(0,176,240);}
.fcb{color:rgb(0,128,0);}
.fc3{color:rgb(138,148,156);}
.fc6{color:rgb(10,186,240);}
.fc10{color:rgb(34,34,34);}
.fc9{color:rgb(45,173,222);}
.fca{color:rgb(17,85,204);}
.fs3{font-size:48.000003px;}
.fs2{font-size:55.230599px;}
.fs14{font-size:60.000000px;}
.fs5{font-size:66.000004px;}
.fse{font-size:72.000002px;}
.fs8{font-size:78.000005px;}
.fs15{font-size:83.250003px;}
.fs13{font-size:84.000000px;}
.fsd{font-size:88.800006px;}
.fsc{font-size:90.000003px;}
.fs9{font-size:100.500006px;}
.fs7{font-size:108.000003px;}
.fs4{font-size:120.000001px;}
.fs1{font-size:138.000001px;}
.fsa{font-size:156.000011px;}
.fs17{font-size:162.000005px;}
.fsb{font-size:167.999999px;}
.fs0{font-size:180.000006px;}
.fs12{font-size:186.000000px;}
.fs6{font-size:216.000007px;}
.fs10{font-size:270.000009px;}
.fs11{font-size:276.000003px;}
.fs16{font-size:288.000009px;}
.fsf{font-size:446.638829px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.881797px;}
.y3f{bottom:6.612956px;}
.yc2{bottom:15.833254px;}
.y7{bottom:18.054917px;}
.y53{bottom:20.623290px;}
.yf0{bottom:24.302571px;}
.y9{bottom:24.464569px;}
.y3b{bottom:31.824319px;}
.yc1{bottom:33.833254px;}
.y6{bottom:35.334915px;}
.y52{bottom:40.873291px;}
.ya{bottom:45.206341px;}
.ye2{bottom:46.355900px;}
.ya5{bottom:51.748407px;}
.yc0{bottom:51.833255px;}
.y75{bottom:51.958928px;}
.y93{bottom:56.186397px;}
.y2b{bottom:59.403650px;}
.y51{bottom:61.123291px;}
.yd3{bottom:64.198884px;}
.y95{bottom:68.080419px;}
.y74{bottom:73.558907px;}
.y111{bottom:74.766954px;}
.y1d{bottom:75.445824px;}
.ya4{bottom:76.948431px;}
.ye1{bottom:78.823389px;}
.y92{bottom:81.386421px;}
.yfb{bottom:90.704509px;}
.y107{bottom:91.147011px;}
.y50{bottom:92.239431px;}
.y83{bottom:92.614652px;}
.y94{bottom:95.080417px;}
.y73{bottom:95.158907px;}
.ya3{bottom:102.148454px;}
.y1c{bottom:102.445825px;}
.y110{bottom:102.486955px;}
.y2a{bottom:103.108416px;}
.yeb{bottom:103.798829px;}
.yd2{bottom:103.798863px;}
.y91{bottom:106.586444px;}
.ye0{bottom:111.290868px;}
.y4f{bottom:112.489432px;}
.ybf{bottom:114.307072px;}
.y72{bottom:116.758908px;}
.y5c{bottom:116.839402px;}
.y82{bottom:117.814642px;}
.y106{bottom:120.127023px;}
.yfa{bottom:121.754510px;}
.yea{bottom:123.598841px;}
.yd1{bottom:123.598875px;}
.ya2{bottom:127.348488px;}
.y1b{bottom:129.445829px;}
.y10f{bottom:130.206978px;}
.y90{bottom:131.786479px;}
.yb5{bottom:133.498864px;}
.y29{bottom:135.076417px;}
.y71{bottom:138.358909px;}
.y4e{bottom:142.093740px;}
.y81{bottom:143.014643px;}
.yd0{bottom:143.398886px;}
.ydf{bottom:143.758369px;}
.y4{bottom:143.786280px;}
.y11c{bottom:148.578291px;}
.y119{bottom:148.913130px;}
.y105{bottom:149.107002px;}
.y5b{bottom:149.239380px;}
.ybe{bottom:149.407073px;}
.ya1{bottom:152.548512px;}
.yf9{bottom:152.804534px;}
.yb4{bottom:153.298864px;}
.yd7{bottom:156.178358px;}
.y1a{bottom:156.445828px;}
.y8f{bottom:156.986502px;}
.y70{bottom:159.958898px;}
.y4d{bottom:162.343741px;}
.ye9{bottom:163.198853px;}
.ycf{bottom:163.198887px;}
.y14{bottom:164.319668px;}
.y80{bottom:168.214632px;}
.y61{bottom:170.758876px;}
.y28{bottom:173.044415px;}
.yb3{bottom:173.098876px;}
.y10e{bottom:175.926957px;}
.yde{bottom:176.225870px;}
.ya0{bottom:177.748512px;}
.y104{bottom:178.086991px;}
.y11b{bottom:178.818289px;}
.y6f{bottom:181.558899px;}
.y5a{bottom:181.639404px;}
.y8e{bottom:182.186503px;}
.y4c{bottom:182.593741px;}
.ye8{bottom:182.998865px;}
.yce{bottom:182.998899px;}
.yf8{bottom:183.854535px;}
.ybd{bottom:184.507096px;}
.yd6{bottom:191.278359px;}
.y60{bottom:192.358877px;}
.ye3{bottom:192.849783px;}
.yb2{bottom:192.898888px;}
.y78{bottom:193.309330px;}
.y7f{bottom:193.414622px;}
.y2f{bottom:198.654923px;}
.y13{bottom:198.992181px;}
.ye7{bottom:202.798866px;}
.ycd{bottom:202.798900px;}
.y9f{bottom:202.948502px;}
.y6e{bottom:203.158888px;}
.y10d{bottom:203.646958px;}
.y27{bottom:205.012416px;}
.y3{bottom:206.186275px;}
.y103{bottom:207.066992px;}
.y8d{bottom:207.386492px;}
.y118{bottom:208.313177px;}
.ydd{bottom:208.693371px;}
.yb1{bottom:212.698877px;}
.y41{bottom:212.839379px;}
.y65{bottom:212.850019px;}
.y18{bottom:213.890579px;}
.y5f{bottom:213.958866px;}
.y4b{bottom:215.215784px;}
.y32{bottom:216.613787px;}
.y7e{bottom:218.614623px;}
.ybc{bottom:219.607098px;}
.ye6{bottom:222.598878px;}
.ycc{bottom:222.598895px;}
.y6d{bottom:224.758889px;}
.yd5{bottom:226.378360px;}
.y9e{bottom:228.148503px;}
.y59{bottom:229.039390px;}
.yb0{bottom:232.498872px;}
.y8c{bottom:232.586493px;}
.y5e{bottom:235.558867px;}
.y31{bottom:236.413788px;}
.ydc{bottom:241.160872px;}
.ye5{bottom:242.398878px;}
.ycb{bottom:242.398890px;}
.y26{bottom:242.980413px;}
.y7d{bottom:243.814612px;}
.yf7{bottom:245.954559px;}
.y6c{bottom:246.358890px;}
.y4a{bottom:247.837826px;}
.y40{bottom:247.939380px;}
.y10c{bottom:249.366960px;}
.yaa{bottom:250.678350px;}
.y117{bottom:251.513167px;}
.yaf{bottom:252.298872px;}
.y9d{bottom:253.348492px;}
.y102{bottom:254.046982px;}
.ybb{bottom:254.707099px;}
.y8b{bottom:257.786483px;}
.y58{bottom:261.439391px;}
.yd4{bottom:261.478361px;}
.y2e{bottom:261.734631px;}
.ye4{bottom:262.198879px;}
.yca{bottom:262.198890px;}
.y6b{bottom:267.958890px;}
.y12{bottom:268.337149px;}
.y7c{bottom:269.014607px;}
.y77{bottom:271.069310px;}
.ydb{bottom:273.628362px;}
.y25{bottom:274.948414px;}
.yf6{bottom:277.004549px;}
.y10b{bottom:277.086961px;}
.ya9{bottom:277.678351px;}
.y9c{bottom:278.548482px;}
.y49{bottom:278.953999px;}
.y64{bottom:279.810010px;}
.yc9{bottom:281.998891px;}
.y8a{bottom:282.986472px;}
.y2{bottom:285.636349px;}
.y17{bottom:289.558340px;}
.y6a{bottom:289.558884px;}
.yba{bottom:289.807100px;}
.y7b{bottom:294.214614px;}
.y5d{bottom:295.797781px;}
.y116{bottom:296.333169px;}
.yec{bottom:296.578351px;}
.y3e{bottom:298.039366px;}
.y48{bottom:299.204000px;}
.y101{bottom:301.026984px;}
.yc8{bottom:301.798891px;}
.y11{bottom:303.009639px;}
.y9b{bottom:303.748483px;}
.ya8{bottom:304.678352px;}
.y10a{bottom:304.806962px;}
.yae{bottom:305.728933px;}
.yf5{bottom:308.054539px;}
.y89{bottom:308.186473px;}
.y2d{bottom:308.708816px;}
.y57{bottom:308.839378px;}
.y11a{bottom:309.412903px;}
.y69{bottom:311.158881px;}
.y24{bottom:312.916412px;}
.y7a{bottom:319.414608px;}
.y16{bottom:321.958341px;}
.y9a{bottom:328.948472px;}
.y100{bottom:330.006974px;}
.y115{bottom:330.353159px;}
.ya7{bottom:331.678352px;}
.y47{bottom:331.826054px;}
.y109{bottom:332.526962px;}
.y68{bottom:332.758883px;}
.y3d{bottom:333.139379px;}
.y88{bottom:333.386462px;}
.yda{bottom:338.563346px;}
.y1{bottom:339.636346px;}
.yad{bottom:340.828934px;}
.y56{bottom:341.239379px;}
.yee{bottom:342.688804px;}
.yb9{bottom:342.907090px;}
.y35{bottom:343.109641px;}
.y79{bottom:344.614606px;}
.y23{bottom:350.884403px;}
.y99{bottom:354.148468px;}
.y76{bottom:356.029312px;}
.y63{bottom:357.569990px;}
.y87{bottom:358.586458px;}
.yff{bottom:358.986971px;}
.y34{bottom:363.927097px;}
.y46{bottom:364.448096px;}
.ya6{bottom:366.778349px;}
.y38{bottom:367.128152px;}
.yf4{bottom:370.154529px;}
.yd9{bottom:371.030848px;}
.y10{bottom:372.354625px;}
.y114{bottom:373.553154px;}
.yac{bottom:375.928931px;}
.yb8{bottom:378.007091px;}
.y108{bottom:378.246966px;}
.y98{bottom:379.348474px;}
.y22{bottom:382.852399px;}
.y3c{bottom:383.239377px;}
.y86{bottom:383.786464px;}
.y55{bottom:388.639377px;}
.y15{bottom:390.358344px;}
.y45{bottom:395.564236px;}
.y37{bottom:398.115882px;}
.y33{bottom:400.417002px;}
.yf3{bottom:401.204526px;}
.y67{bottom:401.878345px;}
.yd8{bottom:403.498343px;}
.y97{bottom:404.548468px;}
.yfe{bottom:405.966967px;}
.y85{bottom:408.986458px;}
.yab{bottom:411.028926px;}
.yb7{bottom:413.107088px;}
.y21{bottom:414.820392px;}
.y44{bottom:415.814236px;}
.y113{bottom:416.753150px;}
.y36{bottom:417.915883px;}
.y3a{bottom:418.339373px;}
.y54{bottom:421.039376px;}
.y62{bottom:428.969987px;}
.y96{bottom:429.748467px;}
.y30{bottom:430.835777px;}
.yf2{bottom:432.254526px;}
.y84{bottom:434.186457px;}
.yf{bottom:441.699621px;}
.yed{bottom:446.368808px;}
.y20{bottom:446.788390px;}
.yb6{bottom:448.207084px;}
.y43{bottom:448.436279px;}
.y39{bottom:453.439369px;}
.y1f{bottom:454.493741px;}
.y112{bottom:459.953141px;}
.y2c{bottom:460.000396px;}
.yf1{bottom:463.304522px;}
.yfd{bottom:467.743651px;}
.yc{bottom:469.377042px;}
.yc5{bottom:474.460200px;}
.ye{bottom:476.372122px;}
.y42{bottom:481.058332px;}
.yc7{bottom:481.075196px;}
.y66{bottom:481.137999px;}
.yc6{bottom:499.075197px;}
.yc4{bottom:504.880197px;}
.yef{bottom:512.577046px;}
.y8{bottom:515.983644px;}
.yfc{bottom:528.223646px;}
.yb{bottom:530.097992px;}
.y1e{bottom:531.492994px;}
.y19{bottom:541.617994px;}
.yc3{bottom:547.341732px;}
.yd{bottom:556.017991px;}
.h7{height:35.040002px;}
.h3{height:40.236354px;}
.h1e{height:43.710938px;}
.h1d{height:46.599612px;}
.h12{height:46.860003px;}
.h14{height:48.049807px;}
.h15{height:48.082034px;}
.h1b{height:48.832033px;}
.h4{height:50.400003px;}
.h17{height:50.835939px;}
.h13{height:52.453127px;}
.h1c{height:61.195312px;}
.h11{height:65.700002px;}
.h6{height:69.300004px;}
.h10{height:76.680002px;}
.he{height:78.840003px;}
.h1f{height:81.900006px;}
.h20{height:87.412503px;}
.h22{height:88.200000px;}
.hf{height:93.240006px;}
.hd{height:94.500003px;}
.ha{height:105.525007px;}
.h9{height:113.400004px;}
.hb{height:113.880008px;}
.h5{height:126.000001px;}
.h2{height:144.900001px;}
.h23{height:170.100005px;}
.hc{height:176.399999px;}
.h1{height:189.000006px;}
.h1a{height:195.300000px;}
.h8{height:226.800007px;}
.h18{height:283.500009px;}
.h19{height:289.800003px;}
.h21{height:302.400010px;}
.h16{height:404.766439px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x36{left:15.794292px;}
.x16{left:18.814962px;}
.x30{left:25.928151px;}
.x6{left:27.081291px;}
.x17{left:32.415985px;}
.xa{left:36.814962px;}
.xb{left:43.218809px;}
.x14{left:46.939963px;}
.x32{left:50.224875px;}
.x3e{left:51.236225px;}
.x15{left:54.000002px;}
.x12{left:55.514769px;}
.x2c{left:57.903549px;}
.xf{left:64.234332px;}
.xe{left:70.268813px;}
.x18{left:72.814964px;}
.x7{left:74.250002px;}
.x1{left:77.379720px;}
.x33{left:90.814964px;}
.x3f{left:105.236227px;}
.x40{left:109.937771px;}
.x10{left:286.313094px;}
.xc{left:305.669337px;}
.x4{left:306.738661px;}
.x38{left:316.125010px;}
.x2a{left:344.212672px;}
.xd{left:348.927165px;}
.x3{left:404.944527px;}
.x41{left:409.138821px;}
.x1d{left:421.065345px;}
.x19{left:422.707671px;}
.x27{left:436.987218px;}
.x2{left:444.129398px;}
.x2b{left:462.008895px;}
.x2d{left:482.107695px;}
.x1e{left:496.056247px;}
.x35{left:510.967749px;}
.x34{left:523.632786px;}
.x3c{left:541.870484px;}
.x11{left:549.072051px;}
.x3d{left:577.328756px;}
.x3a{left:596.561511px;}
.x1a{left:621.775909px;}
.x1b{left:631.271590px;}
.x3b{left:637.151600px;}
.x25{left:639.770713px;}
.x1f{left:645.172162px;}
.x29{left:678.944947px;}
.x2f{left:709.703798px;}
.x2e{left:710.967510px;}
.x31{left:720.245082px;}
.x24{left:725.270716px;}
.x39{left:732.203798px;}
.x26{left:749.016811px;}
.x37{left:756.000024px;}
.x28{left:758.719487px;}
.x20{left:765.795384px;}
.x1c{left:770.871257px;}
.x21{left:806.181826px;}
.x22{left:840.386910px;}
.x5{left:844.174911px;}
.x13{left:854.031515px;}
.x23{left:931.899012px;}
.x8{left:1013.124001px;}
.x9{left:1059.017389px;}
@media print{
.v3{vertical-align:-84.262803pt;}
.v5{vertical-align:-49.062782pt;}
.v1{vertical-align:-22.914721pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:91.737275pt;}
.v2{vertical-align:208.217251pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000024pt;}
.lsa{letter-spacing:0.000160pt;}
.ls4{letter-spacing:0.006240pt;}
.ls3{letter-spacing:0.006260pt;}
.ls5{letter-spacing:0.006280pt;}
.ls8{letter-spacing:73.680002pt;}
.ls1{letter-spacing:95.965076pt;}
.ls6{letter-spacing:96.000315pt;}
.ls9{letter-spacing:96.007803pt;}
.ls2{letter-spacing:123.453868pt;}
.ws22{word-spacing:-64.000002pt;}
.ws1b{word-spacing:-56.880002pt;}
.ws0{word-spacing:-42.400001pt;}
.ws17{word-spacing:-41.333333pt;}
.ws18{word-spacing:-38.400001pt;}
.ws1a{word-spacing:-37.333333pt;}
.ws20{word-spacing:-35.200002pt;}
.ws6{word-spacing:-32.506667pt;}
.ws7{word-spacing:-27.733335pt;}
.ws25{word-spacing:-26.784001pt;}
.ws5{word-spacing:-24.924002pt;}
.ws3{word-spacing:-24.000001pt;}
.ws9{word-spacing:-22.320001pt;}
.ws1c{word-spacing:-21.200001pt;}
.wsa{word-spacing:-20.917335pt;}
.ws26{word-spacing:-20.832000pt;}
.ws19{word-spacing:-20.682667pt;}
.ws21{word-spacing:-20.646001pt;}
.ws23{word-spacing:-19.786667pt;}
.ws1f{word-spacing:-19.344001pt;}
.wsc{word-spacing:-19.200001pt;}
.wsf{word-spacing:-18.960001pt;}
.ws10{word-spacing:-17.728001pt;}
.ws24{word-spacing:-17.696000pt;}
.ws1e{word-spacing:-16.432001pt;}
.wsd{word-spacing:-16.000001pt;}
.ws1d{word-spacing:-14.773333pt;}
.wse{word-spacing:-11.733334pt;}
.ws1{word-spacing:-10.112001pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:76.845603pt;}
.ws11{word-spacing:146.773468pt;}
.ws8{word-spacing:220.406920pt;}
.ws13{word-spacing:358.518120pt;}
.ws15{word-spacing:524.662129pt;}
.ws16{word-spacing:562.326131pt;}
.ws12{word-spacing:576.699465pt;}
.ws14{word-spacing:576.816799pt;}
.wsb{word-spacing:922.093872pt;}
._5{margin-left:-1494.674981pt;}
._14{margin-left:-10.968933pt;}
._3{margin-left:-9.813333pt;}
._12{margin-left:-8.320001pt;}
._11{margin-left:-7.377065pt;}
._4{margin-left:-6.293333pt;}
._1{margin-left:-4.640000pt;}
._7{margin-left:-3.671467pt;}
._0{margin-left:-2.400000pt;}
._2{margin-left:-1.440000pt;}
._8{width:0.983520pt;}
._10{width:71.680131pt;}
._13{width:95.983189pt;}
._c{width:104.298799pt;}
._b{width:136.917468pt;}
._a{width:173.282910pt;}
._d{width:185.786804pt;}
._f{width:218.405472pt;}
._e{width:606.208800pt;}
._9{width:700.544805pt;}
._6{width:1142.783037pt;}
.fs3{font-size:42.666669pt;}
.fs2{font-size:49.093866pt;}
.fs14{font-size:53.333334pt;}
.fs5{font-size:58.666670pt;}
.fse{font-size:64.000002pt;}
.fs8{font-size:69.333338pt;}
.fs15{font-size:74.000002pt;}
.fs13{font-size:74.666666pt;}
.fsd{font-size:78.933339pt;}
.fsc{font-size:80.000003pt;}
.fs9{font-size:89.333339pt;}
.fs7{font-size:96.000003pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:122.666668pt;}
.fsa{font-size:138.666676pt;}
.fs17{font-size:144.000005pt;}
.fsb{font-size:149.333333pt;}
.fs0{font-size:160.000005pt;}
.fs12{font-size:165.333333pt;}
.fs6{font-size:192.000006pt;}
.fs10{font-size:240.000008pt;}
.fs11{font-size:245.333336pt;}
.fs16{font-size:256.000008pt;}
.fsf{font-size:397.012293pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.450486pt;}
.y3f{bottom:5.878183pt;}
.yc2{bottom:14.074003pt;}
.y7{bottom:16.048815pt;}
.y53{bottom:18.331813pt;}
.yf0{bottom:21.602285pt;}
.y9{bottom:21.746283pt;}
.y3b{bottom:28.288284pt;}
.yc1{bottom:30.074004pt;}
.y6{bottom:31.408814pt;}
.y52{bottom:36.331814pt;}
.ya{bottom:40.183414pt;}
.ye2{bottom:41.205244pt;}
.ya5{bottom:45.998584pt;}
.yc0{bottom:46.074004pt;}
.y75{bottom:46.185714pt;}
.y93{bottom:49.943464pt;}
.y2b{bottom:52.803244pt;}
.y51{bottom:54.331814pt;}
.yd3{bottom:57.065675pt;}
.y95{bottom:60.515928pt;}
.y74{bottom:65.385695pt;}
.y111{bottom:66.459515pt;}
.y1d{bottom:67.062955pt;}
.ya4{bottom:68.398605pt;}
.ye1{bottom:70.065235pt;}
.y92{bottom:72.343485pt;}
.yfb{bottom:80.626230pt;}
.y107{bottom:81.019565pt;}
.y50{bottom:81.990605pt;}
.y83{bottom:82.324135pt;}
.y94{bottom:84.515926pt;}
.y73{bottom:84.585695pt;}
.ya3{bottom:90.798626pt;}
.y1c{bottom:91.062956pt;}
.y110{bottom:91.099516pt;}
.y2a{bottom:91.651926pt;}
.yeb{bottom:92.265626pt;}
.yd2{bottom:92.265656pt;}
.y91{bottom:94.743506pt;}
.ye0{bottom:98.925216pt;}
.y4f{bottom:99.990606pt;}
.ybf{bottom:101.606286pt;}
.y72{bottom:103.785696pt;}
.y5c{bottom:103.857246pt;}
.y82{bottom:104.724126pt;}
.y106{bottom:106.779576pt;}
.yfa{bottom:108.226231pt;}
.yea{bottom:109.865636pt;}
.yd1{bottom:109.865666pt;}
.ya2{bottom:113.198656pt;}
.y1b{bottom:115.062959pt;}
.y10f{bottom:115.739536pt;}
.y90{bottom:117.143536pt;}
.yb5{bottom:118.665657pt;}
.y29{bottom:120.067927pt;}
.y71{bottom:122.985697pt;}
.y4e{bottom:126.305547pt;}
.y81{bottom:127.124127pt;}
.yd0{bottom:127.465677pt;}
.ydf{bottom:127.785217pt;}
.y4{bottom:127.810027pt;}
.y11c{bottom:132.069592pt;}
.y119{bottom:132.367227pt;}
.y105{bottom:132.539557pt;}
.y5b{bottom:132.657227pt;}
.ybe{bottom:132.806287pt;}
.ya1{bottom:135.598677pt;}
.yf9{bottom:135.826252pt;}
.yb4{bottom:136.265657pt;}
.yd7{bottom:138.825207pt;}
.y1a{bottom:139.062958pt;}
.y8f{bottom:139.543557pt;}
.y70{bottom:142.185687pt;}
.y4d{bottom:144.305547pt;}
.ye9{bottom:145.065647pt;}
.ycf{bottom:145.065677pt;}
.y14{bottom:146.061927pt;}
.y80{bottom:149.524118pt;}
.y61{bottom:151.785668pt;}
.y28{bottom:153.817258pt;}
.yb3{bottom:153.865668pt;}
.y10e{bottom:156.379518pt;}
.yde{bottom:156.645218pt;}
.ya0{bottom:157.998678pt;}
.y104{bottom:158.299548pt;}
.y11b{bottom:158.949590pt;}
.y6f{bottom:161.385688pt;}
.y5a{bottom:161.457248pt;}
.y8e{bottom:161.943558pt;}
.y4c{bottom:162.305548pt;}
.ye8{bottom:162.665658pt;}
.yce{bottom:162.665688pt;}
.yf8{bottom:163.426253pt;}
.ybd{bottom:164.006308pt;}
.yd6{bottom:170.025208pt;}
.y60{bottom:170.985668pt;}
.ye3{bottom:171.422029pt;}
.yb2{bottom:171.465678pt;}
.y78{bottom:171.830515pt;}
.y7f{bottom:171.924108pt;}
.y2f{bottom:176.582153pt;}
.y13{bottom:176.881938pt;}
.ye7{bottom:180.265658pt;}
.ycd{bottom:180.265688pt;}
.y9f{bottom:180.398668pt;}
.y6e{bottom:180.585678pt;}
.y10d{bottom:181.019519pt;}
.y27{bottom:182.233259pt;}
.y3{bottom:183.276689pt;}
.y103{bottom:184.059549pt;}
.y8d{bottom:184.343549pt;}
.y118{bottom:185.167269pt;}
.ydd{bottom:185.505219pt;}
.yb1{bottom:189.065669pt;}
.y41{bottom:189.190559pt;}
.y65{bottom:189.200017pt;}
.y18{bottom:190.124959pt;}
.y5f{bottom:190.185659pt;}
.y4b{bottom:191.302919pt;}
.y32{bottom:192.545589pt;}
.y7e{bottom:194.324109pt;}
.ybc{bottom:195.206309pt;}
.ye6{bottom:197.865669pt;}
.ycc{bottom:197.865684pt;}
.y6d{bottom:199.785679pt;}
.yd5{bottom:201.225209pt;}
.y9e{bottom:202.798669pt;}
.y59{bottom:203.590569pt;}
.yb0{bottom:206.665664pt;}
.y8c{bottom:206.743549pt;}
.y5e{bottom:209.385659pt;}
.y31{bottom:210.145589pt;}
.ydc{bottom:214.365220pt;}
.ye5{bottom:215.465670pt;}
.ycb{bottom:215.465680pt;}
.y26{bottom:215.982590pt;}
.y7d{bottom:216.724100pt;}
.yf7{bottom:218.626275pt;}
.y6c{bottom:218.985680pt;}
.y4a{bottom:220.300290pt;}
.y40{bottom:220.390560pt;}
.y10c{bottom:221.659520pt;}
.yaa{bottom:222.825200pt;}
.y117{bottom:223.567260pt;}
.yaf{bottom:224.265664pt;}
.y9d{bottom:225.198660pt;}
.y102{bottom:225.819540pt;}
.ybb{bottom:226.406310pt;}
.y8b{bottom:229.143540pt;}
.y58{bottom:232.390570pt;}
.yd4{bottom:232.425210pt;}
.y2e{bottom:232.653005pt;}
.ye4{bottom:233.065670pt;}
.yca{bottom:233.065680pt;}
.y6b{bottom:238.185680pt;}
.y12{bottom:238.521910pt;}
.y7c{bottom:239.124095pt;}
.y77{bottom:240.950497pt;}
.ydb{bottom:243.225211pt;}
.y25{bottom:244.398591pt;}
.yf6{bottom:246.226266pt;}
.y10b{bottom:246.299521pt;}
.ya9{bottom:246.825201pt;}
.y9c{bottom:247.598651pt;}
.y49{bottom:247.959111pt;}
.y64{bottom:248.720009pt;}
.yc9{bottom:250.665681pt;}
.y8a{bottom:251.543531pt;}
.y2{bottom:253.898977pt;}
.y17{bottom:257.385191pt;}
.y6a{bottom:257.385675pt;}
.yba{bottom:257.606311pt;}
.y7b{bottom:261.524101pt;}
.y5d{bottom:262.931361pt;}
.y116{bottom:263.407261pt;}
.yec{bottom:263.625201pt;}
.y3e{bottom:264.923881pt;}
.y48{bottom:265.959111pt;}
.y101{bottom:267.579541pt;}
.yc8{bottom:268.265681pt;}
.y11{bottom:269.341901pt;}
.y9b{bottom:269.998651pt;}
.ya8{bottom:270.825201pt;}
.y10a{bottom:270.939521pt;}
.yae{bottom:271.759051pt;}
.yf5{bottom:273.826256pt;}
.y89{bottom:273.943531pt;}
.y2d{bottom:274.407837pt;}
.y57{bottom:274.523892pt;}
.y11a{bottom:275.033692pt;}
.y69{bottom:276.585672pt;}
.y24{bottom:278.147922pt;}
.y7a{bottom:283.924096pt;}
.y16{bottom:286.185192pt;}
.y9a{bottom:292.398642pt;}
.y100{bottom:293.339532pt;}
.y115{bottom:293.647252pt;}
.ya7{bottom:294.825202pt;}
.y47{bottom:294.956492pt;}
.y109{bottom:295.579522pt;}
.y68{bottom:295.785674pt;}
.y3d{bottom:296.123892pt;}
.y88{bottom:296.343522pt;}
.yda{bottom:300.945196pt;}
.y1{bottom:301.898974pt;}
.yad{bottom:302.959052pt;}
.y56{bottom:303.323892pt;}
.yee{bottom:304.612270pt;}
.yb9{bottom:304.806302pt;}
.y35{bottom:304.986347pt;}
.y79{bottom:306.324095pt;}
.y23{bottom:311.897247pt;}
.y99{bottom:314.798638pt;}
.y76{bottom:316.470500pt;}
.y63{bottom:317.839991pt;}
.y87{bottom:318.743518pt;}
.yff{bottom:319.099530pt;}
.y34{bottom:323.490753pt;}
.y46{bottom:323.953863pt;}
.ya6{bottom:326.025199pt;}
.y38{bottom:326.336135pt;}
.yf4{bottom:329.026248pt;}
.yd9{bottom:329.805198pt;}
.y10{bottom:330.981889pt;}
.y114{bottom:332.047248pt;}
.yac{bottom:334.159049pt;}
.yb8{bottom:336.006303pt;}
.y108{bottom:336.219525pt;}
.y98{bottom:337.198644pt;}
.y22{bottom:340.313244pt;}
.y3c{bottom:340.657224pt;}
.y86{bottom:341.143524pt;}
.y55{bottom:345.457224pt;}
.y15{bottom:346.985195pt;}
.y45{bottom:351.612654pt;}
.y37{bottom:353.880784pt;}
.y33{bottom:355.926224pt;}
.yf3{bottom:356.626245pt;}
.y67{bottom:357.225195pt;}
.yd8{bottom:358.665194pt;}
.y97{bottom:359.598638pt;}
.yfe{bottom:360.859526pt;}
.y85{bottom:363.543518pt;}
.yab{bottom:365.359045pt;}
.yb7{bottom:367.206300pt;}
.y21{bottom:368.729238pt;}
.y44{bottom:369.612655pt;}
.y113{bottom:370.447245pt;}
.y36{bottom:371.480785pt;}
.y3a{bottom:371.857221pt;}
.y54{bottom:374.257223pt;}
.y62{bottom:381.306655pt;}
.y96{bottom:381.998637pt;}
.y30{bottom:382.965135pt;}
.yf2{bottom:384.226245pt;}
.y84{bottom:385.943517pt;}
.yf{bottom:392.621885pt;}
.yed{bottom:396.772273pt;}
.y20{bottom:397.145235pt;}
.yb6{bottom:398.406296pt;}
.y43{bottom:398.610025pt;}
.y39{bottom:403.057217pt;}
.y1f{bottom:403.994437pt;}
.y112{bottom:408.847237pt;}
.y2c{bottom:408.889241pt;}
.yf1{bottom:411.826242pt;}
.yfd{bottom:415.772134pt;}
.yc{bottom:417.224037pt;}
.yc5{bottom:421.742400pt;}
.ye{bottom:423.441886pt;}
.y42{bottom:427.607406pt;}
.yc7{bottom:427.622396pt;}
.y66{bottom:427.678221pt;}
.yc6{bottom:443.622397pt;}
.yc4{bottom:448.782397pt;}
.yef{bottom:455.624041pt;}
.y8{bottom:458.652128pt;}
.yfc{bottom:469.532130pt;}
.yb{bottom:471.198215pt;}
.y1e{bottom:472.438217pt;}
.y19{bottom:481.438217pt;}
.yc3{bottom:486.525984pt;}
.yd{bottom:494.238215pt;}
.h7{height:31.146669pt;}
.h3{height:35.765648pt;}
.h1e{height:38.854167pt;}
.h1d{height:41.421877pt;}
.h12{height:41.653336pt;}
.h14{height:42.710940pt;}
.h15{height:42.739586pt;}
.h1b{height:43.406251pt;}
.h4{height:44.800003pt;}
.h17{height:45.187501pt;}
.h13{height:46.625001pt;}
.h1c{height:54.395833pt;}
.h11{height:58.400002pt;}
.h6{height:61.600003pt;}
.h10{height:68.160002pt;}
.he{height:70.080002pt;}
.h1f{height:72.800005pt;}
.h20{height:77.700002pt;}
.h22{height:78.400000pt;}
.hf{height:82.880005pt;}
.hd{height:84.000003pt;}
.ha{height:93.800006pt;}
.h9{height:100.800003pt;}
.hb{height:101.226674pt;}
.h5{height:112.000001pt;}
.h2{height:128.800001pt;}
.h23{height:151.200005pt;}
.hc{height:156.799999pt;}
.h1{height:168.000005pt;}
.h1a{height:173.600000pt;}
.h8{height:201.600006pt;}
.h18{height:252.000008pt;}
.h19{height:257.600003pt;}
.h21{height:268.800009pt;}
.h16{height:359.792390pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x36{left:14.039370pt;}
.x16{left:16.724411pt;}
.x30{left:23.047246pt;}
.x6{left:24.072259pt;}
.x17{left:28.814209pt;}
.xa{left:32.724411pt;}
.xb{left:38.416719pt;}
.x14{left:41.724411pt;}
.x32{left:44.644333pt;}
.x3e{left:45.543311pt;}
.x15{left:48.000002pt;}
.x12{left:49.346462pt;}
.x2c{left:51.469822pt;}
.xf{left:57.097184pt;}
.xe{left:62.461167pt;}
.x18{left:64.724412pt;}
.x7{left:66.000002pt;}
.x1{left:68.781973pt;}
.x33{left:80.724413pt;}
.x3f{left:93.543313pt;}
.x40{left:97.722463pt;}
.x10{left:254.500528pt;}
.xc{left:271.706078pt;}
.x4{left:272.656587pt;}
.x38{left:281.000009pt;}
.x2a{left:305.966820pt;}
.xd{left:310.157480pt;}
.x3{left:359.950690pt;}
.x41{left:363.678952pt;}
.x1d{left:374.280306pt;}
.x19{left:375.740152pt;}
.x27{left:388.433082pt;}
.x2{left:394.781687pt;}
.x2b{left:410.674573pt;}
.x2d{left:428.540174pt;}
.x1e{left:440.938886pt;}
.x35{left:454.193555pt;}
.x34{left:465.451365pt;}
.x3c{left:481.662652pt;}
.x11{left:488.064046pt;}
.x3d{left:513.181116pt;}
.x3a{left:530.276899pt;}
.x1a{left:552.689697pt;}
.x1b{left:561.130302pt;}
.x3b{left:566.356978pt;}
.x25{left:568.685078pt;}
.x1f{left:573.486366pt;}
.x29{left:603.506619pt;}
.x2f{left:630.847820pt;}
.x2e{left:631.971120pt;}
.x31{left:640.217850pt;}
.x24{left:644.685081pt;}
.x39{left:650.847821pt;}
.x26{left:665.792721pt;}
.x37{left:672.000022pt;}
.x28{left:674.417322pt;}
.x20{left:680.707008pt;}
.x1c{left:685.218895pt;}
.x21{left:716.606068pt;}
.x22{left:747.010587pt;}
.x5{left:750.377699pt;}
.x13{left:759.139124pt;}
.x23{left:828.354678pt;}
.x8{left:900.554668pt;}
.x9{left:941.348790pt;}
}




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