
    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_e6ce742cf26350a60769c595.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_99088d17f774c5bc0a96bf41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_b77f5da12695bb358d12e860.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963667;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_e8eacdd80799c7621e69a165.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_3fbe29bd20b4024220feca92.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d59797c28b1ef459215b3f91.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_03c0d9eeb2d4c95132032a8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962500;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_b1857f89cc59fe869fcb888d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_605cd787bfd4db7497161de7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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);}
.v4{vertical-align:-56.114165px;}
.v3{vertical-align:-36.003574px;}
.v1{vertical-align:-20.373886px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.704253px;}
.v2{vertical-align:29.939356px;}
.v5{vertical-align:66.942650px;}
.v6{vertical-align:72.000002px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:85.025370px;}
.ls2{letter-spacing:107.972075px;}
.ls1{letter-spacing:107.972093px;}
.ls3{letter-spacing:107.972165px;}
.ls7{letter-spacing:107.975019px;}
.ls6{letter-spacing:107.986253px;}
.ls5{letter-spacing:109.500002px;}
.ls4{letter-spacing:111.375004px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(153,153,153),0 0.015em rgb(153,153,153),0.015em 0 rgb(153,153,153),0 -0.015em  rgb(153,153,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(153,153,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-50.388000px;}
.wse{word-spacing:-46.080003px;}
.ws2{word-spacing:-44.640000px;}
.ws15{word-spacing:-38.880001px;}
.ws5{word-spacing:-36.000000px;}
.ws8{word-spacing:-35.400000px;}
.ws18{word-spacing:-34.560001px;}
.ws16{word-spacing:-30.600000px;}
.ws4{word-spacing:-28.800000px;}
.ws17{word-spacing:-28.036801px;}
.wsb{word-spacing:-27.540001px;}
.ws7{word-spacing:-27.360002px;}
.ws14{word-spacing:-26.892001px;}
.ws9{word-spacing:-25.920001px;}
.wsf{word-spacing:-24.480002px;}
.ws6{word-spacing:-24.480000px;}
.wsc{word-spacing:-23.040001px;}
.ws19{word-spacing:-21.420000px;}
.ws13{word-spacing:-19.890001px;}
.ws3{word-spacing:-19.422001px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:184.327516px;}
.ws12{word-spacing:543.928055px;}
.ws10{word-spacing:561.715431px;}
.wsd{word-spacing:1076.090460px;}
.ws11{word-spacing:1408.388883px;}
._c{margin-left:-4039.252041px;}
._15{margin-left:-2851.038467px;}
._14{margin-left:-1512.443389px;}
._17{margin-left:-1352.989719px;}
._1a{margin-left:-28.620001px;}
._1c{margin-left:-21.612598px;}
._7{margin-left:-16.812000px;}
._2{margin-left:-14.076000px;}
._5{margin-left:-12.276000px;}
._9{margin-left:-10.656000px;}
._a{margin-left:-9.282000px;}
._6{margin-left:-8.190000px;}
._b{margin-left:-6.971663px;}
._8{margin-left:-5.616000px;}
._3{margin-left:-4.524000px;}
._1{margin-left:-3.264000px;}
._4{margin-left:-2.091168px;}
._0{margin-left:-1.020000px;}
._19{width:2.871168px;}
._d{width:146.432445px;}
._10{width:212.908921px;}
._18{width:498.740638px;}
._11{width:663.835341px;}
._f{width:772.395164px;}
._e{width:1403.597980px;}
._13{width:1601.554625px;}
._12{width:1683.654718px;}
._1b{width:1706.228164px;}
._16{width:1757.865089px;}
.fc9{color:rgb(5,99,193);}
.fca{color:rgb(46,198,92);}
.fc6{color:rgb(7,17,18);}
.fc5{color:rgb(19,157,61);}
.fc4{color:transparent;}
.fc3{color:rgb(240,177,78);}
.fc2{color:rgb(255,248,236);}
.fcc{color:rgb(0,151,167);}
.fc1{color:rgb(2,8,135);}
.fcb{color:rgb(153,153,153);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:48.000003px;}
.fsd{font-size:60.000000px;}
.fs17{font-size:66.000004px;}
.fsc{font-size:72.000002px;}
.fs6{font-size:78.000005px;}
.fs1b{font-size:84.000000px;}
.fs5{font-size:90.000003px;}
.fs8{font-size:96.000006px;}
.fsb{font-size:102.000000px;}
.fs14{font-size:108.000003px;}
.fs13{font-size:114.000007px;}
.fs19{font-size:118.800004px;}
.fsa{font-size:120.000001px;}
.fs1{font-size:132.000007px;}
.fs12{font-size:138.000001px;}
.fs1f{font-size:144.000005px;}
.fs9{font-size:149.999999px;}
.fs1d{font-size:156.000011px;}
.fs2{font-size:162.000005px;}
.fs7{font-size:167.999999px;}
.fs1e{font-size:174.000012px;}
.fs15{font-size:180.000006px;}
.fs4{font-size:186.000000px;}
.fs1a{font-size:192.000012px;}
.fs16{font-size:198.000006px;}
.fs0{font-size:204.000001px;}
.fs11{font-size:222.000001px;}
.fs10{font-size:234.000007px;}
.fsf{font-size:270.000009px;}
.fs18{font-size:270.599931px;}
.fse{font-size:360.000012px;}
.fs1c{font-size:480.000003px;}
.y6{bottom:-247.348220px;}
.y5{bottom:-227.036274px;}
.y0{bottom:0.000000px;}
.y22{bottom:21.258847px;}
.y29{bottom:28.082245px;}
.y55{bottom:28.560356px;}
.ybb{bottom:33.154481px;}
.y152{bottom:33.457178px;}
.y10{bottom:35.922807px;}
.y9c{bottom:36.740835px;}
.y81{bottom:38.114219px;}
.yca{bottom:43.731184px;}
.ya2{bottom:45.380273px;}
.yff{bottom:45.466542px;}
.y158{bottom:52.209097px;}
.y95{bottom:56.382597px;}
.yd4{bottom:56.653914px;}
.y76{bottom:57.570957px;}
.y90{bottom:58.102317px;}
.ye{bottom:59.322807px;}
.ya1{bottom:61.044616px;}
.y4{bottom:64.198828px;}
.yba{bottom:65.554486px;}
.y51{bottom:66.035908px;}
.y82{bottom:66.912733px;}
.y80{bottom:66.914218px;}
.ye3{bottom:67.837012px;}
.ye5{bottom:67.838407px;}
.yfe{bottom:68.866543px;}
.y9b{bottom:69.140840px;}
.y7d{bottom:69.971945px;}
.y18{bottom:71.395858px;}
.yc9{bottom:72.531197px;}
.y43{bottom:78.305518px;}
.y53{bottom:82.485219px;}
.yd{bottom:83.442809px;}
.yd3{bottom:83.653914px;}
.y121{bottom:84.762332px;}
.ye4{bottom:85.838408px;}
.y8f{bottom:86.902307px;}
.y131{bottom:87.568494px;}
.y6c{bottom:87.767781px;}
.y12b{bottom:88.228772px;}
.y21{bottom:89.361719px;}
.yfd{bottom:92.266555px;}
.ya0{bottom:93.444621px;}
.y64{bottom:94.291973px;}
.yc8{bottom:101.331198px;}
.yac{bottom:101.421715px;}
.yb3{bottom:101.636664px;}
.y9e{bottom:102.283179px;}
.ye2{bottom:103.837014px;}
.y7c{bottom:107.231935px;}
.y65{bottom:107.338653px;}
.y61{bottom:107.338956px;}
.y17{bottom:107.395859px;}
.y120{bottom:108.162344px;}
.y114{bottom:108.162929px;}
.yd2{bottom:110.653915px;}
.y3{bottom:110.728818px;}
.y5d{bottom:111.413718px;}
.y94{bottom:112.368607px;}
.y42{bottom:112.505526px;}
.y36{bottom:113.756114px;}
.yf8{bottom:113.866544px;}
.ydd{bottom:114.651385px;}
.yfc{bottom:115.666544px;}
.y8e{bottom:115.702299px;}
.y130{bottom:119.968499px;}
.y50{bottom:120.035909px;}
.y12a{bottom:120.628780px;}
.y105{bottom:121.772831px;}
.y97{bottom:122.897347px;}
.y149{bottom:125.476241px;}
.y139{bottom:129.621776px;}
.y11f{bottom:131.562345px;}
.y113{bottom:131.562930px;}
.y6f{bottom:131.610760px;}
.y49{bottom:133.741402px;}
.yab{bottom:133.821723px;}
.yb2{bottom:134.036670px;}
.y9d{bottom:134.683185px;}
.y20{bottom:134.961717px;}
.yf7{bottom:137.266548px;}
.yd1{bottom:137.653920px;}
.yfb{bottom:139.066545px;}
.y7b{bottom:144.491925px;}
.y8d{bottom:144.502298px;}
.yf0{bottom:146.140292px;}
.y41{bottom:146.705532px;}
.y13c{bottom:149.800137px;}
.ye9{bottom:150.017847px;}
.y129{bottom:153.028785px;}
.y14c{bottom:153.316999px;}
.y98{bottom:153.983978px;}
.y11e{bottom:154.962346px;}
.y112{bottom:154.962931px;}
.y145{bottom:156.395967px;}
.y6e{bottom:156.525927px;}
.y35{bottom:156.692134px;}
.y148{bottom:157.876242px;}
.yc7{bottom:158.931211px;}
.yfa{bottom:162.466546px;}
.y104{bottom:163.172821px;}
.yd0{bottom:164.653918px;}
.y138{bottom:164.811777px;}
.y48{bottom:166.141403px;}
.yaa{bottom:166.221728px;}
.y28{bottom:167.756206px;}
.y93{bottom:168.354627px;}
.y142{bottom:169.645351px;}
.yef{bottom:176.740287px;}
.y11d{bottom:178.362358px;}
.y111{bottom:178.362943px;}
.y1f{bottom:180.561737px;}
.ye8{bottom:180.617842px;}
.y40{bottom:180.905533px;}
.y7a{bottom:181.751915px;}
.y5b{bottom:182.966161px;}
.y14b{bottom:185.717007px;}
.yc6{bottom:187.731245px;}
.y144{bottom:188.795975px;}
.y5c{bottom:189.133299px;}
.y147{bottom:190.276250px;}
.yb8{bottom:195.586029px;}
.y34{bottom:196.172121px;}
.y4f{bottom:196.575219px;}
.y47{bottom:198.541393px;}
.y12f{bottom:198.856157px;}
.y69{bottom:198.989199px;}
.y11c{bottom:201.762358px;}
.y110{bottom:201.762943px;}
.y141{bottom:202.045352px;}
.ye1{bottom:202.630321px;}
.y103{bottom:204.572833px;}
.yf9{bottom:204.825227px;}
.y151{bottom:206.630076px;}
.yee{bottom:207.340283px;}
.y13b{bottom:208.687127px;}
.ye7{bottom:211.217840px;}
.y3f{bottom:215.105534px;}
.y2d{bottom:215.756110px;}
.ya{bottom:216.343135px;}
.yc5{bottom:216.531246px;}
.y137{bottom:216.891753px;}
.y60{bottom:217.176625px;}
.y14a{bottom:218.117013px;}
.y79{bottom:219.011928px;}
.ye0{bottom:220.630321px;}
.y143{bottom:221.195980px;}
.y146{bottom:222.676255px;}
.yda{bottom:222.985619px;}
.y27{bottom:224.156159px;}
.y11b{bottom:225.162359px;}
.y10f{bottom:225.162944px;}
.y1e{bottom:226.161735px;}
.y39{bottom:227.858028px;}
.yb7{bottom:228.706030px;}
.y4e{bottom:228.975220px;}
.yf6{bottom:230.025221px;}
.y46{bottom:230.941394px;}
.y12e{bottom:231.256158px;}
.y128{bottom:231.568498px;}
.y140{bottom:234.445342px;}
.y150{bottom:235.430088px;}
.y33{bottom:236.516118px;}
.yed{bottom:237.940280px;}
.y92{bottom:242.309092px;}
.y102{bottom:245.972823px;}
.y11a{bottom:248.562360px;}
.y10e{bottom:248.562945px;}
.yd9{bottom:249.985620px;}
.yf5{bottom:255.225220px;}
.y78{bottom:256.271929px;}
.y136{bottom:258.291737px;}
.y4d{bottom:261.375210px;}
.yb6{bottom:261.826031px;}
.y3c{bottom:262.035349px;}
.y45{bottom:263.341402px;}
.y12d{bottom:263.656159px;}
.y127{bottom:263.968504px;}
.y14f{bottom:264.230078px;}
.y59{bottom:264.252780px;}
.y6d{bottom:264.762169px;}
.y2c{bottom:266.756097px;}
.y13f{bottom:266.845343px;}
.y5a{bottom:269.347343px;}
.y1d{bottom:271.761721px;}
.y119{bottom:271.962372px;}
.y10d{bottom:271.962957px;}
.yc4{bottom:274.131259px;}
.y52{bottom:275.931612px;}
.yd8{bottom:276.985621px;}
.y32{bottom:280.316105px;}
.y9{bottom:280.513126px;}
.y26{bottom:280.556123px;}
.ydc{bottom:285.651368px;}
.y132{bottom:285.676946px;}
.y133{bottom:285.678329px;}
.y101{bottom:287.372820px;}
.y14e{bottom:293.030070px;}
.y4c{bottom:293.775211px;}
.yb5{bottom:294.946039px;}
.y118{bottom:295.362361px;}
.y10c{bottom:295.362946px;}
.y44{bottom:295.741408px;}
.y12c{bottom:296.056149px;}
.y13e{bottom:299.245351px;}
.y122{bottom:299.705317px;}
.y37{bottom:299.706600px;}
.yc3{bottom:302.931272px;}
.y13a{bottom:303.862142px;}
.yd7{bottom:303.985622px;}
.y6b{bottom:313.527091px;}
.y135{bottom:314.691736px;}
.y7e{bottom:315.623252px;}
.y84{bottom:315.707235px;}
.y1c{bottom:317.361719px;}
.y2b{bottom:317.756094px;}
.y117{bottom:318.762362px;}
.y10b{bottom:318.762947px;}
.y14d{bottom:321.830068px;}
.y25{bottom:321.956108px;}
.y62{bottom:322.572793px;}
.y38{bottom:323.033008px;}
.y31{bottom:324.116102px;}
.y4b{bottom:326.175219px;}
.y126{bottom:328.456150px;}
.y3b{bottom:328.635354px;}
.y100{bottom:328.772815px;}
.y155{bottom:330.455894px;}
.yd6{bottom:330.985626px;}
.y13d{bottom:331.645356px;}
.yf4{bottom:331.973395px;}
.y12{bottom:333.691722px;}
.yc{bottom:334.570469px;}
.yb4{bottom:335.326041px;}
.ydf{bottom:337.423617px;}
.y91{bottom:337.695561px;}
.y116{bottom:342.162363px;}
.y10a{bottom:342.162948px;}
.y54{bottom:343.028647px;}
.y8b{bottom:344.189525px;}
.y8a{bottom:344.207233px;}
.y83{bottom:344.507234px;}
.y8{bottom:344.683121px;}
.ya6{bottom:344.787834px;}
.y6a{bottom:345.927097px;}
.y58{bottom:348.123220px;}
.y75{bottom:352.849829px;}
.yde{bottom:355.423618px;}
.y134{bottom:356.091731px;}
.yd5{bottom:357.985624px;}
.y11{bottom:358.171721px;}
.y4a{bottom:358.575225px;}
.yb{bottom:358.690471px;}
.yc2{bottom:360.531273px;}
.yf3{bottom:360.773385px;}
.y125{bottom:360.856158px;}
.y77{bottom:362.018175px;}
.y1b{bottom:362.961728px;}
.y30{bottom:367.916111px;}
.y2a{bottom:368.756099px;}
.y8c{bottom:372.989524px;}
.y89{bottom:373.007231px;}
.y24{bottom:378.356107px;}
.yb9{bottom:379.514346px;}
.y88{bottom:380.994810px;}
.y154{bottom:381.455898px;}
.y115{bottom:384.521865px;}
.y63{bottom:384.746022px;}
.y5e{bottom:384.746483px;}
.y74{bottom:387.049837px;}
.yc1{bottom:389.331265px;}
.yf2{bottom:389.573377px;}
.y15{bottom:389.881444px;}
.y124{bottom:393.256163px;}
.y2{bottom:395.369532px;}
.y2f{bottom:396.716103px;}
.y1a{bottom:408.561731px;}
.y7{bottom:408.853112px;}
.y109{bottom:409.721859px;}
.y14{bottom:414.361445px;}
.y3e{bottom:417.155203px;}
.yc0{bottom:418.131264px;}
.yf1{bottom:418.373375px;}
.y23{bottom:419.756101px;}
.y73{bottom:421.249843px;}
.y157{bottom:425.440380px;}
.y2e{bottom:425.516102px;}
.y57{bottom:426.413649px;}
.ycf{bottom:427.325192px;}
.ya5{bottom:428.537832px;}
.y87{bottom:429.594803px;}
.y153{bottom:432.455901px;}
.y9f{bottom:433.462373px;}
.y108{bottom:434.921858px;}
.y19{bottom:439.161729px;}
.ybd{bottom:442.153734px;}
.yad{bottom:442.658602px;}
.y13{bottom:442.801447px;}
.ya8{bottom:442.845346px;}
.y9a{bottom:446.686422px;}
.yec{bottom:449.595012px;}
.yce{bottom:454.325193px;}
.y72{bottom:455.449844px;}
.y68{bottom:455.628168px;}
.y1{bottom:456.569526px;}
.y67{bottom:457.148065px;}
.y3d{bottom:458.555193px;}
.yb1{bottom:462.438443px;}
.y106{bottom:464.221649px;}
.ya4{bottom:468.105392px;}
.ybc{bottom:474.553739px;}
.ya7{bottom:475.245351px;}
.y5f{bottom:476.282077px;}
.yeb{bottom:480.195007px;}
.ycd{bottom:481.325193px;}
.ydb{bottom:483.651381px;}
.y71{bottom:489.649845px;}
.yb0{bottom:494.838444px;}
.ya3{bottom:500.505398px;}
.ybf{bottom:502.818045px;}
.y156{bottom:503.071369px;}
.ycc{bottom:508.325198px;}
.ya9{bottom:509.906935px;}
.y3a{bottom:510.772083px;}
.y96{bottom:510.773473px;}
.y123{bottom:510.792165px;}
.yea{bottom:510.795003px;}
.y7f{bottom:511.007287px;}
.y56{bottom:516.604604px;}
.y86{bottom:519.577370px;}
.y66{bottom:520.927595px;}
.y16{bottom:522.927162px;}
.y70{bottom:524.811256px;}
.y107{bottom:525.119053px;}
.yaf{bottom:527.238452px;}
.yf{bottom:530.651455px;}
.ye6{bottom:531.089526px;}
.ycb{bottom:535.325196px;}
.ybe{bottom:538.818046px;}
.y99{bottom:540.718937px;}
.y85{bottom:548.377369px;}
.yae{bottom:559.638457px;}
.h4{height:36.336002px;}
.h11{height:43.681641px;}
.h10{height:53.280002px;}
.h2d{height:56.786137px;}
.h8{height:57.720004px;}
.h2c{height:62.160000px;}
.h23{height:63.588000px;}
.h27{height:66.600002px;}
.h7{height:68.130002px;}
.h26{height:69.890629px;}
.h1b{height:71.040004px;}
.ha{height:72.672005px;}
.he{height:75.480000px;}
.hf{height:77.214000px;}
.h25{height:78.626956px;}
.h2b{height:79.918253px;}
.h1f{height:79.920003px;}
.h19{height:81.756003px;}
.h18{height:86.298005px;}
.h12{height:87.363282px;}
.h21{height:87.912003px;}
.hd{height:88.800001px;}
.h30{height:89.931603px;}
.hc{height:90.840001px;}
.h2{height:99.924005px;}
.h17{height:104.466001px;}
.h31{height:109.008003px;}
.h1d{height:111.695359px;}
.hb{height:113.549999px;}
.h1e{height:113.882431px;}
.h2a{height:118.092008px;}
.h3{height:118.260004px;}
.h2f{height:122.634004px;}
.h9{height:127.176000px;}
.h2e{height:131.718009px;}
.h1a{height:136.260004px;}
.h6{height:137.640000px;}
.h5{height:140.802000px;}
.h22{height:145.344009px;}
.h24{height:148.698653px;}
.h1{height:148.920000px;}
.h1c{height:149.886005px;}
.h29{height:162.840003px;}
.h16{height:168.054001px;}
.h15{height:177.138006px;}
.h14{height:204.390007px;}
.h20{height:204.844148px;}
.h13{height:262.800008px;}
.h28{height:363.360003px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:25.647639px;}
.x1{left:31.226870px;}
.x30{left:32.748915px;}
.x18{left:35.982284px;}
.x90{left:37.939962px;}
.x17{left:42.875861px;}
.x58{left:45.746591px;}
.x9{left:46.763721px;}
.x73{left:48.711616px;}
.x8{left:50.979912px;}
.x25{left:52.952728px;}
.x66{left:54.714478px;}
.x1e{left:55.826923px;}
.x1a{left:58.544941px;}
.x19{left:60.091908px;}
.x8e{left:63.091395px;}
.x77{left:64.992802px;}
.x67{left:70.631299px;}
.x22{left:76.021702px;}
.x85{left:77.839754px;}
.x79{left:79.936942px;}
.x89{left:84.438976px;}
.x78{left:85.703740px;}
.x5c{left:89.445433px;}
.x59{left:98.707683px;}
.x1b{left:100.939964px;}
.x41{left:103.329003px;}
.x7d{left:107.733671px;}
.x20{left:109.826925px;}
.x1c{left:112.544947px;}
.x5{left:116.881890px;}
.x81{left:120.533618px;}
.x5a{left:124.490251px;}
.x36{left:127.995432px;}
.x62{left:130.559055px;}
.x3b{left:133.199993px;}
.x6b{left:137.704297px;}
.x56{left:140.524977px;}
.x76{left:141.968513px;}
.x65{left:144.576443px;}
.x55{left:161.483999px;}
.x82{left:165.646659px;}
.x42{left:171.068500px;}
.x31{left:177.631678px;}
.x4d{left:181.359268px;}
.x37{left:190.340395px;}
.x4c{left:193.872257px;}
.x80{left:205.433552px;}
.x7e{left:210.797185px;}
.x84{left:216.232184px;}
.x3e{left:217.397103px;}
.x83{left:219.646661px;}
.x4a{left:244.366329px;}
.x11{left:252.992885px;}
.x10{left:255.881595px;}
.x23{left:295.971035px;}
.x24{left:303.462612px;}
.x6a{left:321.227369px;}
.x54{left:324.896683px;}
.x7{left:326.735277px;}
.x86{left:329.673243px;}
.x26{left:335.029961px;}
.x88{left:338.070214px;}
.x87{left:339.865706px;}
.x35{left:341.495640px;}
.x49{left:350.391467px;}
.x2d{left:364.281424px;}
.x6{left:368.036679px;}
.x34{left:377.422235px;}
.x27{left:389.469275px;}
.x7a{left:395.807365px;}
.x74{left:396.951650px;}
.x33{left:405.842255px;}
.x4e{left:412.440954px;}
.x7b{left:428.841708px;}
.x6d{left:431.684519px;}
.x13{left:434.340516px;}
.x4f{left:439.538212px;}
.x28{left:444.313027px;}
.x29{left:445.599940px;}
.x2b{left:448.112270px;}
.x70{left:458.457000px;}
.x6c{left:462.903844px;}
.x68{left:476.716538px;}
.x12{left:480.102076px;}
.x46{left:489.698635px;}
.x69{left:496.564981px;}
.x14{left:508.515148px;}
.x32{left:512.884861px;}
.x50{left:527.390136px;}
.x2a{left:530.312293px;}
.x57{left:538.334232px;}
.x1d{left:539.438483px;}
.x2{left:540.841427px;}
.x3a{left:547.017126px;}
.x3c{left:550.643913px;}
.x3d{left:553.419513px;}
.x8a{left:559.335280px;}
.x2c{left:571.406947px;}
.x8b{left:576.142742px;}
.x38{left:578.914550px;}
.x5d{left:583.792331px;}
.x15{left:586.203404px;}
.x16{left:592.598125px;}
.x40{left:614.295020px;}
.x7f{left:617.762439px;}
.x43{left:625.981565px;}
.x48{left:634.008572px;}
.x5b{left:637.762824px;}
.xd{left:643.177879px;}
.x47{left:645.945613px;}
.xe{left:654.090393px;}
.x44{left:669.856566px;}
.x60{left:673.875022px;}
.x45{left:696.827053px;}
.x8f{left:698.607304px;}
.x6e{left:707.634853px;}
.x3f{left:712.234260px;}
.x2e{left:720.983296px;}
.x7c{left:744.713053px;}
.x75{left:745.857924px;}
.x4b{left:761.774464px;}
.x64{left:777.380931px;}
.x72{left:779.958700px;}
.x6f{left:786.623695px;}
.x71{left:799.201769px;}
.x52{left:801.973315px;}
.x8d{left:810.468979px;}
.x51{left:831.246310px;}
.x5f{left:833.673731px;}
.x8c{left:836.321389px;}
.x5e{left:837.776614px;}
.x63{left:861.002803px;}
.xc{left:862.478063px;}
.xb{left:870.761979px;}
.xa{left:882.888508px;}
.x61{left:887.500457px;}
.x39{left:935.525899px;}
.x53{left:951.127068px;}
.x2f{left:987.762800px;}
.x21{left:1038.688064px;}
.x1f{left:1047.027099px;}
.x3{left:1328.062542px;}
.x4{left:1386.009288px;}
@media print{
.v4{vertical-align:-49.879258pt;}
.v3{vertical-align:-32.003177pt;}
.v1{vertical-align:-18.110121pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.403780pt;}
.v2{vertical-align:26.612761pt;}
.v5{vertical-align:59.504578pt;}
.v6{vertical-align:64.000002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:75.578106pt;}
.ls2{letter-spacing:95.975178pt;}
.ls1{letter-spacing:95.975194pt;}
.ls3{letter-spacing:95.975258pt;}
.ls7{letter-spacing:95.977795pt;}
.ls6{letter-spacing:95.987780pt;}
.ls5{letter-spacing:97.333335pt;}
.ls4{letter-spacing:99.000003pt;}
.ws0{word-spacing:-44.789333pt;}
.wse{word-spacing:-40.960003pt;}
.ws2{word-spacing:-39.680000pt;}
.ws15{word-spacing:-34.560001pt;}
.ws5{word-spacing:-32.000000pt;}
.ws8{word-spacing:-31.466666pt;}
.ws18{word-spacing:-30.720001pt;}
.ws16{word-spacing:-27.200000pt;}
.ws4{word-spacing:-25.600000pt;}
.ws17{word-spacing:-24.921601pt;}
.wsb{word-spacing:-24.480001pt;}
.ws7{word-spacing:-24.320001pt;}
.ws14{word-spacing:-23.904001pt;}
.ws9{word-spacing:-23.040001pt;}
.wsf{word-spacing:-21.760001pt;}
.ws6{word-spacing:-21.760000pt;}
.wsc{word-spacing:-20.480001pt;}
.ws19{word-spacing:-19.040000pt;}
.ws13{word-spacing:-17.680001pt;}
.ws3{word-spacing:-17.264001pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:163.846681pt;}
.ws12{word-spacing:483.491605pt;}
.ws10{word-spacing:499.302605pt;}
.wsd{word-spacing:956.524854pt;}
.ws11{word-spacing:1251.901229pt;}
._c{margin-left:-3590.446259pt;}
._15{margin-left:-2534.256415pt;}
._14{margin-left:-1344.394123pt;}
._17{margin-left:-1202.657528pt;}
._1a{margin-left:-25.440001pt;}
._1c{margin-left:-19.211198pt;}
._7{margin-left:-14.944000pt;}
._2{margin-left:-12.512000pt;}
._5{margin-left:-10.912000pt;}
._9{margin-left:-9.472000pt;}
._a{margin-left:-8.250667pt;}
._6{margin-left:-7.280000pt;}
._b{margin-left:-6.197034pt;}
._8{margin-left:-4.992000pt;}
._3{margin-left:-4.021334pt;}
._1{margin-left:-2.901333pt;}
._4{margin-left:-1.858816pt;}
._0{margin-left:-0.906667pt;}
._19{width:2.552150pt;}
._d{width:130.162173pt;}
._10{width:189.252374pt;}
._18{width:443.325012pt;}
._11{width:590.075859pt;}
._f{width:686.573479pt;}
._e{width:1247.642649pt;}
._13{width:1423.604111pt;}
._12{width:1496.581971pt;}
._1b{width:1516.647257pt;}
._16{width:1562.546746pt;}
.fs3{font-size:42.666669pt;}
.fsd{font-size:53.333334pt;}
.fs17{font-size:58.666670pt;}
.fsc{font-size:64.000002pt;}
.fs6{font-size:69.333338pt;}
.fs1b{font-size:74.666666pt;}
.fs5{font-size:80.000003pt;}
.fs8{font-size:85.333339pt;}
.fsb{font-size:90.666667pt;}
.fs14{font-size:96.000003pt;}
.fs13{font-size:101.333339pt;}
.fs19{font-size:105.600003pt;}
.fsa{font-size:106.666667pt;}
.fs1{font-size:117.333340pt;}
.fs12{font-size:122.666668pt;}
.fs1f{font-size:128.000004pt;}
.fs9{font-size:133.333332pt;}
.fs1d{font-size:138.666676pt;}
.fs2{font-size:144.000005pt;}
.fs7{font-size:149.333333pt;}
.fs1e{font-size:154.666677pt;}
.fs15{font-size:160.000005pt;}
.fs4{font-size:165.333333pt;}
.fs1a{font-size:170.666677pt;}
.fs16{font-size:176.000006pt;}
.fs0{font-size:181.333334pt;}
.fs11{font-size:197.333334pt;}
.fs10{font-size:208.000007pt;}
.fsf{font-size:240.000008pt;}
.fs18{font-size:240.533272pt;}
.fse{font-size:320.000010pt;}
.fs1c{font-size:426.666670pt;}
.y6{bottom:-219.865084pt;}
.y5{bottom:-201.810022pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:18.896753pt;}
.y29{bottom:24.961996pt;}
.y55{bottom:25.386984pt;}
.ybb{bottom:29.470650pt;}
.y152{bottom:29.739714pt;}
.y10{bottom:31.931384pt;}
.y9c{bottom:32.658520pt;}
.y81{bottom:33.879306pt;}
.yca{bottom:38.872164pt;}
.ya2{bottom:40.338020pt;}
.yff{bottom:40.414704pt;}
.y158{bottom:46.408086pt;}
.y95{bottom:50.117864pt;}
.yd4{bottom:50.359034pt;}
.y76{bottom:51.174184pt;}
.y90{bottom:51.646504pt;}
.ye{bottom:52.731384pt;}
.ya1{bottom:54.261880pt;}
.y4{bottom:57.065625pt;}
.yba{bottom:58.270655pt;}
.y51{bottom:58.698585pt;}
.y82{bottom:59.477985pt;}
.y80{bottom:59.479305pt;}
.ye3{bottom:60.299567pt;}
.ye5{bottom:60.300807pt;}
.yfe{bottom:61.214705pt;}
.y9b{bottom:61.458525pt;}
.y7d{bottom:62.197285pt;}
.y18{bottom:63.462985pt;}
.yc9{bottom:64.472175pt;}
.y43{bottom:69.604905pt;}
.y53{bottom:73.320195pt;}
.yd{bottom:74.171386pt;}
.yd3{bottom:74.359035pt;}
.y121{bottom:75.344295pt;}
.ye4{bottom:76.300807pt;}
.y8f{bottom:77.246495pt;}
.y131{bottom:77.838661pt;}
.y6c{bottom:78.015805pt;}
.y12b{bottom:78.425575pt;}
.y21{bottom:79.432639pt;}
.yfd{bottom:82.014715pt;}
.ya0{bottom:83.061885pt;}
.y64{bottom:83.815087pt;}
.yc8{bottom:90.072176pt;}
.yac{bottom:90.152636pt;}
.yb3{bottom:90.343702pt;}
.y9e{bottom:90.918382pt;}
.ye2{bottom:92.299568pt;}
.y7c{bottom:95.317276pt;}
.y65{bottom:95.412136pt;}
.y61{bottom:95.412406pt;}
.y17{bottom:95.462986pt;}
.y120{bottom:96.144306pt;}
.y114{bottom:96.144826pt;}
.yd2{bottom:98.359036pt;}
.y3{bottom:98.425616pt;}
.y5d{bottom:99.034416pt;}
.y94{bottom:99.883206pt;}
.y42{bottom:100.004912pt;}
.y36{bottom:101.116546pt;}
.yf8{bottom:101.214706pt;}
.ydd{bottom:101.912342pt;}
.yfc{bottom:102.814706pt;}
.y8e{bottom:102.846488pt;}
.y130{bottom:106.638666pt;}
.y50{bottom:106.698586pt;}
.y12a{bottom:107.225582pt;}
.y105{bottom:108.242516pt;}
.y97{bottom:109.242086pt;}
.y149{bottom:111.534436pt;}
.y139{bottom:115.219356pt;}
.y11f{bottom:116.944306pt;}
.y113{bottom:116.944826pt;}
.y6f{bottom:116.987342pt;}
.y49{bottom:118.881247pt;}
.yab{bottom:118.952643pt;}
.yb2{bottom:119.143707pt;}
.y9d{bottom:119.718387pt;}
.y20{bottom:119.965971pt;}
.yf7{bottom:122.014710pt;}
.yd1{bottom:122.359040pt;}
.yfb{bottom:123.614707pt;}
.y7b{bottom:128.437267pt;}
.y8d{bottom:128.446487pt;}
.yf0{bottom:129.902482pt;}
.y41{bottom:130.404917pt;}
.y13c{bottom:133.155677pt;}
.ye9{bottom:133.349197pt;}
.y129{bottom:136.025587pt;}
.y14c{bottom:136.281777pt;}
.y98{bottom:136.874647pt;}
.y11e{bottom:137.744307pt;}
.y112{bottom:137.744827pt;}
.y145{bottom:139.018637pt;}
.y6e{bottom:139.134157pt;}
.y35{bottom:139.281897pt;}
.y148{bottom:140.334437pt;}
.yc7{bottom:141.272187pt;}
.yfa{bottom:144.414707pt;}
.y104{bottom:145.042507pt;}
.yd0{bottom:146.359038pt;}
.y138{bottom:146.499357pt;}
.y48{bottom:147.681247pt;}
.yaa{bottom:147.752647pt;}
.y28{bottom:149.116627pt;}
.y93{bottom:149.648558pt;}
.y142{bottom:150.795868pt;}
.yef{bottom:157.102478pt;}
.y11d{bottom:158.544318pt;}
.y111{bottom:158.544838pt;}
.y1f{bottom:160.499322pt;}
.ye8{bottom:160.549193pt;}
.y40{bottom:160.804918pt;}
.y7a{bottom:161.557258pt;}
.y5b{bottom:162.636588pt;}
.y14b{bottom:165.081784pt;}
.yc6{bottom:166.872218pt;}
.y144{bottom:167.818644pt;}
.y5c{bottom:168.118488pt;}
.y147{bottom:169.134444pt;}
.yb8{bottom:173.854248pt;}
.y34{bottom:174.375218pt;}
.y4f{bottom:174.733528pt;}
.y47{bottom:176.481238pt;}
.y12f{bottom:176.761028pt;}
.y69{bottom:176.879288pt;}
.y11c{bottom:179.344318pt;}
.y110{bottom:179.344838pt;}
.y141{bottom:179.595868pt;}
.ye1{bottom:180.115840pt;}
.y103{bottom:181.842519pt;}
.yf9{bottom:182.066869pt;}
.y151{bottom:183.671179pt;}
.yee{bottom:184.302474pt;}
.y13b{bottom:185.499669pt;}
.ye7{bottom:187.749191pt;}
.y3f{bottom:191.204919pt;}
.y2d{bottom:191.783209pt;}
.ya{bottom:192.305009pt;}
.yc5{bottom:192.472219pt;}
.y137{bottom:192.792669pt;}
.y60{bottom:193.045889pt;}
.y14a{bottom:193.881789pt;}
.y79{bottom:194.677269pt;}
.ye0{bottom:196.115841pt;}
.y143{bottom:196.618649pt;}
.y146{bottom:197.934449pt;}
.yda{bottom:198.209439pt;}
.y27{bottom:199.249919pt;}
.y11b{bottom:200.144319pt;}
.y10f{bottom:200.144839pt;}
.y1e{bottom:201.032653pt;}
.y39{bottom:202.540469pt;}
.yb7{bottom:203.294249pt;}
.y4e{bottom:203.533529pt;}
.yf6{bottom:204.466863pt;}
.y46{bottom:205.281239pt;}
.y12e{bottom:205.561029pt;}
.y128{bottom:205.838665pt;}
.y140{bottom:208.395859pt;}
.y150{bottom:209.271189pt;}
.y33{bottom:210.236549pt;}
.yed{bottom:211.502471pt;}
.y92{bottom:215.385860pt;}
.y102{bottom:218.642510pt;}
.y11a{bottom:220.944320pt;}
.y10e{bottom:220.944840pt;}
.yd9{bottom:222.209440pt;}
.yf5{bottom:226.866862pt;}
.y78{bottom:227.797270pt;}
.y136{bottom:229.592655pt;}
.y4d{bottom:232.333520pt;}
.yb6{bottom:232.734250pt;}
.y3c{bottom:232.920310pt;}
.y45{bottom:234.081246pt;}
.y12d{bottom:234.361030pt;}
.y127{bottom:234.638670pt;}
.y14f{bottom:234.871180pt;}
.y59{bottom:234.891360pt;}
.y6d{bottom:235.344150pt;}
.y2c{bottom:237.116530pt;}
.y13f{bottom:237.195860pt;}
.y5a{bottom:239.419860pt;}
.y1d{bottom:241.565974pt;}
.y119{bottom:241.744330pt;}
.y10d{bottom:241.744850pt;}
.yc4{bottom:243.672231pt;}
.y52{bottom:245.272544pt;}
.yd8{bottom:246.209441pt;}
.y32{bottom:249.169871pt;}
.y9{bottom:249.345001pt;}
.y26{bottom:249.383221pt;}
.ydc{bottom:253.912327pt;}
.y132{bottom:253.935063pt;}
.y133{bottom:253.936293pt;}
.y101{bottom:255.442507pt;}
.y14e{bottom:260.471173pt;}
.y4c{bottom:261.133521pt;}
.yb5{bottom:262.174257pt;}
.y118{bottom:262.544321pt;}
.y10c{bottom:262.544841pt;}
.y44{bottom:262.881251pt;}
.y12c{bottom:263.161021pt;}
.y13e{bottom:265.995867pt;}
.y122{bottom:266.404726pt;}
.y37{bottom:266.405866pt;}
.yc3{bottom:269.272241pt;}
.y13a{bottom:270.099681pt;}
.yd7{bottom:270.209441pt;}
.y6b{bottom:278.690748pt;}
.y135{bottom:279.725988pt;}
.y7e{bottom:280.554002pt;}
.y84{bottom:280.628654pt;}
.y1c{bottom:282.099306pt;}
.y2b{bottom:282.449862pt;}
.y117{bottom:283.344322pt;}
.y10b{bottom:283.344842pt;}
.y14d{bottom:286.071172pt;}
.y25{bottom:286.183207pt;}
.y62{bottom:286.731372pt;}
.y38{bottom:287.140452pt;}
.y31{bottom:288.103202pt;}
.y4b{bottom:289.933528pt;}
.y126{bottom:291.961022pt;}
.y3b{bottom:292.120315pt;}
.y100{bottom:292.242502pt;}
.y155{bottom:293.738572pt;}
.yd6{bottom:294.209445pt;}
.y13d{bottom:294.795872pt;}
.yf4{bottom:295.087462pt;}
.y12{bottom:296.614864pt;}
.yc{bottom:297.395972pt;}
.yb4{bottom:298.067592pt;}
.ydf{bottom:299.932104pt;}
.y91{bottom:300.173832pt;}
.y116{bottom:304.144322pt;}
.y10a{bottom:304.144842pt;}
.y54{bottom:304.914352pt;}
.y8b{bottom:305.946245pt;}
.y8a{bottom:305.961985pt;}
.y83{bottom:306.228653pt;}
.y8{bottom:306.384997pt;}
.ya6{bottom:306.478075pt;}
.y6a{bottom:307.490753pt;}
.y58{bottom:309.442863pt;}
.y75{bottom:313.644293pt;}
.yde{bottom:315.932105pt;}
.y134{bottom:316.525983pt;}
.yd5{bottom:318.209444pt;}
.y11{bottom:318.374863pt;}
.y4a{bottom:318.733533pt;}
.yb{bottom:318.835974pt;}
.yc2{bottom:320.472243pt;}
.yf3{bottom:320.687453pt;}
.y125{bottom:320.761029pt;}
.y77{bottom:321.793933pt;}
.y1b{bottom:322.632647pt;}
.y30{bottom:327.036543pt;}
.y2a{bottom:327.783199pt;}
.y8c{bottom:331.546243pt;}
.y89{bottom:331.561983pt;}
.y24{bottom:336.316539pt;}
.yb9{bottom:337.346086pt;}
.y88{bottom:338.662054pt;}
.y154{bottom:339.071910pt;}
.y115{bottom:341.797214pt;}
.y63{bottom:341.996464pt;}
.y5e{bottom:341.996874pt;}
.y74{bottom:344.044300pt;}
.yc1{bottom:346.072236pt;}
.yf2{bottom:346.287446pt;}
.y15{bottom:346.561284pt;}
.y124{bottom:349.561034pt;}
.y2{bottom:351.439584pt;}
.y2f{bottom:352.636536pt;}
.y1a{bottom:363.165983pt;}
.y7{bottom:363.424988pt;}
.y109{bottom:364.197208pt;}
.y14{bottom:368.321285pt;}
.y3e{bottom:370.804625pt;}
.yc0{bottom:371.672235pt;}
.yf1{bottom:371.887445pt;}
.y23{bottom:373.116535pt;}
.y73{bottom:374.444305pt;}
.y157{bottom:378.169227pt;}
.y2e{bottom:378.236535pt;}
.y57{bottom:379.034355pt;}
.ycf{bottom:379.844615pt;}
.ya5{bottom:380.922517pt;}
.y87{bottom:381.862047pt;}
.y153{bottom:384.405245pt;}
.y9f{bottom:385.299887pt;}
.y108{bottom:386.597207pt;}
.y19{bottom:390.365981pt;}
.ybd{bottom:393.025541pt;}
.yad{bottom:393.474313pt;}
.y13{bottom:393.601286pt;}
.ya8{bottom:393.640307pt;}
.y9a{bottom:397.054597pt;}
.yec{bottom:399.640011pt;}
.yce{bottom:403.844616pt;}
.y72{bottom:404.844306pt;}
.y68{bottom:405.002816pt;}
.y1{bottom:405.839579pt;}
.y67{bottom:406.353836pt;}
.y3d{bottom:407.604616pt;}
.yb1{bottom:411.056394pt;}
.y106{bottom:412.641466pt;}
.ya4{bottom:416.093682pt;}
.ybc{bottom:421.825546pt;}
.ya7{bottom:422.440312pt;}
.y5f{bottom:423.361846pt;}
.yeb{bottom:426.840006pt;}
.ycd{bottom:427.844616pt;}
.ydb{bottom:429.912338pt;}
.y71{bottom:435.244307pt;}
.yb0{bottom:439.856395pt;}
.ya3{bottom:444.893687pt;}
.ybf{bottom:446.949373pt;}
.y156{bottom:447.174550pt;}
.ycc{bottom:451.844620pt;}
.ya9{bottom:453.250609pt;}
.y3a{bottom:454.019629pt;}
.y96{bottom:454.020865pt;}
.y123{bottom:454.037480pt;}
.yea{bottom:454.040002pt;}
.y7f{bottom:454.228699pt;}
.y56{bottom:459.204092pt;}
.y86{bottom:461.846551pt;}
.y66{bottom:463.046752pt;}
.y16{bottom:464.824144pt;}
.y70{bottom:466.498895pt;}
.y107{bottom:466.772492pt;}
.yaf{bottom:468.656402pt;}
.yf{bottom:471.690182pt;}
.ye6{bottom:472.079579pt;}
.ycb{bottom:475.844619pt;}
.ybe{bottom:478.949374pt;}
.y99{bottom:480.639055pt;}
.y85{bottom:487.446550pt;}
.yae{bottom:497.456407pt;}
.h4{height:32.298669pt;}
.h11{height:38.828125pt;}
.h10{height:47.360002pt;}
.h2d{height:50.476566pt;}
.h8{height:51.306670pt;}
.h2c{height:55.253333pt;}
.h23{height:56.522666pt;}
.h27{height:59.200002pt;}
.h7{height:60.560002pt;}
.h26{height:62.125004pt;}
.h1b{height:63.146671pt;}
.ha{height:64.597337pt;}
.he{height:67.093334pt;}
.hf{height:68.634667pt;}
.h25{height:69.890627pt;}
.h2b{height:71.038447pt;}
.h1f{height:71.040002pt;}
.h19{height:72.672002pt;}
.h18{height:76.709338pt;}
.h12{height:77.656251pt;}
.h21{height:78.144003pt;}
.hd{height:78.933334pt;}
.h30{height:79.939203pt;}
.hc{height:80.746667pt;}
.h2{height:88.821338pt;}
.h17{height:92.858668pt;}
.h31{height:96.896003pt;}
.h1d{height:99.284763pt;}
.hb{height:100.933333pt;}
.h1e{height:101.228827pt;}
.h2a{height:104.970674pt;}
.h3{height:105.120003pt;}
.h2f{height:109.008003pt;}
.h9{height:113.045333pt;}
.h2e{height:117.082674pt;}
.h1a{height:121.120004pt;}
.h6{height:122.346667pt;}
.h5{height:125.157333pt;}
.h22{height:129.194675pt;}
.h24{height:132.176580pt;}
.h1{height:132.373334pt;}
.h1c{height:133.232004pt;}
.h29{height:144.746669pt;}
.h16{height:149.381334pt;}
.h15{height:157.456005pt;}
.h14{height:181.680006pt;}
.h20{height:182.083687pt;}
.h13{height:233.600007pt;}
.h28{height:322.986669pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:22.797902pt;}
.x1{left:27.757218pt;}
.x30{left:29.110147pt;}
.x18{left:31.984252pt;}
.x90{left:33.724411pt;}
.x17{left:38.111876pt;}
.x58{left:40.663636pt;}
.x9{left:41.567752pt;}
.x73{left:43.299214pt;}
.x8{left:45.315477pt;}
.x25{left:47.069092pt;}
.x66{left:48.635092pt;}
.x1e{left:49.623932pt;}
.x1a{left:52.039948pt;}
.x19{left:53.415030pt;}
.x8e{left:56.081240pt;}
.x77{left:57.771380pt;}
.x67{left:62.783377pt;}
.x22{left:67.574846pt;}
.x85{left:69.190892pt;}
.x79{left:71.055059pt;}
.x89{left:75.056867pt;}
.x78{left:76.181102pt;}
.x5c{left:79.507052pt;}
.x59{left:87.740163pt;}
.x1b{left:89.724413pt;}
.x41{left:91.848003pt;}
.x7d{left:95.763263pt;}
.x20{left:97.623933pt;}
.x1c{left:100.039953pt;}
.x5{left:103.895013pt;}
.x81{left:107.140993pt;}
.x5a{left:110.658001pt;}
.x36{left:113.773718pt;}
.x62{left:116.052494pt;}
.x3b{left:118.399994pt;}
.x6b{left:122.403820pt;}
.x56{left:124.911091pt;}
.x76{left:126.194234pt;}
.x65{left:128.512394pt;}
.x55{left:143.541333pt;}
.x82{left:147.241475pt;}
.x42{left:152.060889pt;}
.x31{left:157.894825pt;}
.x4d{left:161.208238pt;}
.x37{left:169.191462pt;}
.x4c{left:172.330896pt;}
.x80{left:182.607602pt;}
.x7e{left:187.375276pt;}
.x84{left:192.206386pt;}
.x3e{left:193.241869pt;}
.x83{left:195.241476pt;}
.x4a{left:217.214515pt;}
.x11{left:224.882564pt;}
.x10{left:227.450306pt;}
.x23{left:263.085364pt;}
.x24{left:269.744544pt;}
.x6a{left:285.535439pt;}
.x54{left:288.797051pt;}
.x7{left:290.431357pt;}
.x86{left:293.042882pt;}
.x26{left:297.804410pt;}
.x88{left:300.506857pt;}
.x87{left:302.102850pt;}
.x35{left:303.551680pt;}
.x49{left:311.459082pt;}
.x2d{left:323.805710pt;}
.x6{left:327.143714pt;}
.x34{left:335.486431pt;}
.x27{left:346.194911pt;}
.x7a{left:351.828769pt;}
.x74{left:352.845911pt;}
.x33{left:360.748672pt;}
.x4e{left:366.614182pt;}
.x7b{left:381.192629pt;}
.x6d{left:383.719572pt;}
.x13{left:386.080458pt;}
.x4f{left:390.700633pt;}
.x28{left:394.944913pt;}
.x29{left:396.088836pt;}
.x2b{left:398.322018pt;}
.x70{left:407.517333pt;}
.x6c{left:411.470083pt;}
.x68{left:423.748034pt;}
.x12{left:426.757401pt;}
.x46{left:435.287675pt;}
.x69{left:441.391094pt;}
.x14{left:452.013464pt;}
.x32{left:455.897655pt;}
.x50{left:468.791232pt;}
.x2a{left:471.388705pt;}
.x57{left:478.519317pt;}
.x1d{left:479.500873pt;}
.x2{left:480.747935pt;}
.x3a{left:486.237446pt;}
.x3c{left:489.461256pt;}
.x3d{left:491.928456pt;}
.x8a{left:497.186916pt;}
.x2c{left:507.917286pt;}
.x8b{left:512.126881pt;}
.x38{left:514.590711pt;}
.x5d{left:518.926517pt;}
.x15{left:521.069693pt;}
.x16{left:526.753889pt;}
.x40{left:546.040017pt;}
.x7f{left:549.122168pt;}
.x43{left:556.428058pt;}
.x48{left:563.563175pt;}
.x5b{left:566.900288pt;}
.xd{left:571.713670pt;}
.x47{left:574.173878pt;}
.xe{left:581.413683pt;}
.x44{left:595.428059pt;}
.x60{left:599.000019pt;}
.x45{left:619.401825pt;}
.x8f{left:620.984270pt;}
.x6e{left:629.008758pt;}
.x3f{left:633.097120pt;}
.x2e{left:640.874041pt;}
.x7c{left:661.967158pt;}
.x75{left:662.984821pt;}
.x4b{left:677.132857pt;}
.x64{left:691.005272pt;}
.x72{left:693.296622pt;}
.x6f{left:699.221062pt;}
.x71{left:710.401573pt;}
.x52{left:712.865169pt;}
.x8d{left:720.416870pt;}
.x51{left:738.885609pt;}
.x5f{left:741.043317pt;}
.x8c{left:743.396790pt;}
.x5e{left:744.690324pt;}
.x63{left:765.335824pt;}
.xc{left:766.647168pt;}
.xb{left:774.010648pt;}
.xa{left:784.789785pt;}
.x61{left:788.889295pt;}
.x39{left:831.578577pt;}
.x53{left:845.446283pt;}
.x2f{left:878.011378pt;}
.x21{left:923.278280pt;}
.x1f{left:930.690755pt;}
.x3{left:1180.500038pt;}
.x4{left:1232.008256pt;}
}




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