
    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_86dbeb3fe50cdea22e36e557.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_1e890ad210295427e0c224cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_60f45327a33f75692b7870b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_18803b6c123d323daf1e3fe2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.212000;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_e56fc70c12aa63924ff1a8ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_e1a46dbf6eb5312928b3967e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a829e90cbdf5758cdbc3271e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.034000;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_b482ea7f6f8c95e56a2d7fe6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5a23e08ae67f24aa0359247a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.793945;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_0227c8a80facb4f5d4481db3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_4a7830e389ec32e67d0b3485.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005859;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_34eb4476964989e4b499a113.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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:ffd;src:url('chunks/assets/font_d089f5024c69c3cfd5691ccb.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_61768fba5042699b5dcd4bf4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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:fff;src:url('chunks/assets/font_90eb17c22243d05a6441fbea.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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:ff10;src:url('chunks/assets/font_a8eea0cf50155f4ddcd74783.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.930000;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;}
.m2{transform:matrix(0.243208,0.057877,-0.057792,0.243228,0,0);-ms-transform:matrix(0.243208,0.057877,-0.057792,0.243228,0,0);-webkit-transform:matrix(0.243208,0.057877,-0.057792,0.243228,0,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);}
.v2{vertical-align:-55.695395px;}
.v6{vertical-align:-27.256496px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.373525px;}
.v3{vertical-align:57.600011px;}
.v1{vertical-align:86.015082px;}
.v4{vertical-align:115.199990px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.012645px;}
.ls1c{letter-spacing:0.089910px;}
.lsb{letter-spacing:0.122845px;}
.ls19{letter-spacing:0.123115px;}
.ls14{letter-spacing:0.123295px;}
.ls1a{letter-spacing:0.123475px;}
.lsc{letter-spacing:0.123565px;}
.ls1b{letter-spacing:0.134518px;}
.ls15{letter-spacing:0.134698px;}
.ls5{letter-spacing:0.220500px;}
.ls8{letter-spacing:0.239580px;}
.ls7{letter-spacing:0.239670px;}
.ls6{letter-spacing:0.247950px;}
.lsa{letter-spacing:6.929550px;}
.ls9{letter-spacing:6.929730px;}
.ls11{letter-spacing:32.995105px;}
.ls10{letter-spacing:32.995110px;}
.ls1{letter-spacing:63.014065px;}
.lse{letter-spacing:64.780636px;}
.ls2{letter-spacing:64.814065px;}
.lsf{letter-spacing:69.140011px;}
.ls16{letter-spacing:81.760548px;}
.ls18{letter-spacing:108.000417px;}
.ls3{letter-spacing:108.000566px;}
.ls12{letter-spacing:110.242177px;}
.ls17{letter-spacing:111.375418px;}
.ls4{letter-spacing:155.983619px;}
.lsd{letter-spacing:162.507811px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-74.592002px;}
.ws6{word-spacing:-52.214402px;}
.ws17{word-spacing:-38.448001px;}
.ws3{word-spacing:-33.240000px;}
.ws8{word-spacing:-31.080000px;}
.ws9{word-spacing:-27.972001px;}
.ws14{word-spacing:-26.592002px;}
.wsa{word-spacing:-24.864002px;}
.ws15{word-spacing:-16.620000px;}
.ws5{word-spacing:-9.972000px;}
.ws1{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:63.913812px;}
.ws4{word-spacing:94.786820px;}
.ws16{word-spacing:104.112566px;}
.wsc{word-spacing:119.847830px;}
.ws11{word-spacing:205.028685px;}
.wsf{word-spacing:269.216884px;}
.wsb{word-spacing:319.000472px;}
.ws2{word-spacing:322.602603px;}
.wse{word-spacing:352.818267px;}
.wsd{word-spacing:361.771220px;}
.ws12{word-spacing:446.990345px;}
.ws13{word-spacing:1081.178194px;}
._7{margin-left:-15.840001px;}
._28{margin-left:-13.684103px;}
._29{margin-left:-12.210007px;}
._27{margin-left:-9.634800px;}
._6{margin-left:-7.920000px;}
._3{margin-left:-6.600000px;}
._2{margin-left:-4.440000px;}
._2b{margin-left:-3.300000px;}
._0{margin-left:-1.944000px;}
._8{width:1.150515px;}
._26{width:2.927385px;}
._15{width:3.948000px;}
._1b{width:4.956000px;}
._e{width:8.820000px;}
._c{width:11.088000px;}
._10{width:14.700000px;}
._16{width:15.708000px;}
._14{width:16.968000px;}
._f{width:18.228000px;}
._17{width:20.748000px;}
._11{width:23.016000px;}
._18{width:24.192000px;}
._1a{width:25.200000px;}
._13{width:32.928000px;}
._20{width:35.812801px;}
._d{width:41.496000px;}
._1e{width:48.556802px;}
._12{width:57.540000px;}
._1{width:63.000097px;}
._1d{width:65.080802px;}
._1f{width:74.368802px;}
._2a{width:81.000425px;}
._19{width:82.404000px;}
._2c{width:90.000565px;}
._25{width:107.043157px;}
._23{width:132.385407px;}
._4{width:137.998850px;}
._5{width:144.014067px;}
._22{width:218.009547px;}
._21{width:230.968807px;}
._24{width:288.503953px;}
._9{width:586.945651px;}
._1c{width:1538.396254px;}
._b{width:1747.196267px;}
._a{width:2662.931273px;}
.fce{color:rgb(5,99,193);}
.fcd{color:rgb(102,0,0);}
.fc0{color:rgb(0,136,161);}
.fc8{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(127,127,127);}
.fc9{color:rgb(216,216,216);}
.fcb{color:rgb(65,60,58);}
.fc5{color:rgb(154,154,156);}
.fca{color:transparent;}
.fc6{color:rgb(255,121,121);}
.fc7{color:rgb(255,0,0);}
.fc3{color:rgb(70,120,134);}
.fcc{color:rgb(11,83,148);}
.fs7{font-size:36.000001px;}
.fs18{font-size:60.000000px;}
.fsb{font-size:72.000002px;}
.fs11{font-size:84.000000px;}
.fsc{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fs16{font-size:111.599990px;}
.fsf{font-size:114.000007px;}
.fs5{font-size:120.000001px;}
.fs15{font-size:130.199998px;}
.fs10{font-size:140.400000px;}
.fs2{font-size:144.000005px;}
.fs8{font-size:156.000011px;}
.fs6{font-size:167.999999px;}
.fse{font-size:192.000012px;}
.fs12{font-size:192.000026px;}
.fs9{font-size:201.600006px;}
.fsd{font-size:216.000007px;}
.fs19{font-size:233.100021px;}
.fs1{font-size:240.000002px;}
.fs3{font-size:252.000008px;}
.fs17{font-size:259.199986px;}
.fs14{font-size:264.000014px;}
.fs0{font-size:288.000009px;}
.fsa{font-size:324.000010px;}
.fs13{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y55{bottom:27.008694px;}
.y53{bottom:27.570345px;}
.y103{bottom:29.211388px;}
.y5c{bottom:44.664440px;}
.y52{bottom:47.010345px;}
.y38{bottom:47.783001px;}
.y54{bottom:48.608694px;}
.y5a{bottom:51.466296px;}
.y35{bottom:72.663400px;}
.yf2{bottom:91.462286px;}
.y118{bottom:100.587622px;}
.y96{bottom:119.361004px;}
.y44{bottom:119.787244px;}
.yf1{bottom:122.398268px;}
.y34{bottom:126.663402px;}
.y64{bottom:132.306110px;}
.yae{bottom:132.844591px;}
.yf0{bottom:145.834269px;}
.y116{bottom:146.703399px;}
.ya9{bottom:149.769952px;}
.y122{bottom:151.678869px;}
.y4d{bottom:152.358493px;}
.y77{bottom:152.578779px;}
.y1f{bottom:153.664123px;}
.yb0{bottom:155.027794px;}
.yfe{bottom:156.627035px;}
.y12{bottom:158.321006px;}
.y9a{bottom:165.717994px;}
.yad{bottom:168.136973px;}
.y95{bottom:170.192995px;}
.y18{bottom:172.080688px;}
.y43{bottom:172.689268px;}
.yef{bottom:176.770251px;}
.y84{bottom:177.412266px;}
.ya8{bottom:178.569950px;}
.y115{bottom:179.103389px;}
.y33{bottom:180.663404px;}
.y2b{bottom:180.850255px;}
.yaf{bottom:183.827792px;}
.y51{bottom:189.393078px;}
.y59{bottom:190.507910px;}
.yc8{bottom:191.745584px;}
.y99{bottom:194.517993px;}
.y121{bottom:194.878859px;}
.yb2{bottom:196.707155px;}
.y75{bottom:198.364582px;}
.yfd{bottom:198.687018px;}
.y11{bottom:205.119208px;}
.y4c{bottom:205.260483px;}
.yee{bottom:207.706244px;}
.ya7{bottom:209.619369px;}
.y3b{bottom:209.848537px;}
.y4b{bottom:211.020472px;}
.y83{bottom:211.432256px;}
.y6d{bottom:213.556571px;}
.ydc{bottom:214.134101px;}
.y63{bottom:214.357796px;}
.y58{bottom:219.307909px;}
.yac{bottom:219.436969px;}
.yc7{bottom:220.545584px;}
.y94{bottom:221.024985px;}
.yb1{bottom:225.507154px;}
.y1e{bottom:225.664125px;}
.yd4{bottom:229.216425px;}
.y10c{bottom:229.438860px;}
.y114{bottom:229.503391px;}
.y5{bottom:231.188269px;}
.ycc{bottom:233.259576px;}
.y32{bottom:234.663405px;}
.y2a{bottom:234.850257px;}
.y74{bottom:236.920583px;}
.y120{bottom:238.078860px;}
.ya6{bottom:238.419366px;}
.yed{bottom:238.642238px;}
.y102{bottom:239.828269px;}
.yfc{bottom:240.747012px;}
.y82{bottom:245.452246px;}
.y126{bottom:245.463406px;}
.y42{bottom:247.626297px;}
.y6c{bottom:249.196572px;}
.y10{bottom:251.917409px;}
.yb4{bottom:255.180337px;}
.y17{bottom:262.080691px;}
.y3a{bottom:262.750533px;}
.yd3{bottom:263.884426px;}
.ydb{bottom:266.802103px;}
.y62{bottom:268.357798px;}
.ya5{bottom:269.468763px;}
.yab{bottom:269.476971px;}
.yec{bottom:269.578231px;}
.y24{bottom:270.708418px;}
.y93{bottom:271.856975px;}
.y10b{bottom:272.638850px;}
.y4{bottom:274.388270px;}
.y81{bottom:279.472236px;}
.y1d{bottom:279.664127px;}
.y4a{bottom:280.197467px;}
.y11f{bottom:281.278851px;}
.yfb{bottom:282.806972px;}
.yb7{bottom:283.157232px;}
.ya4{bottom:283.868758px;}
.yb3{bottom:283.980336px;}
.y73{bottom:284.836562px;}
.y6b{bottom:287.752573px;}
.y31{bottom:288.663407px;}
.yf{bottom:298.715645px;}
.yeb{bottom:300.514180px;}
.y41{bottom:300.528310px;}
.yba{bottom:306.456707px;}
.y113{bottom:312.487454px;}
.y80{bottom:313.492225px;}
.yc1{bottom:314.590256px;}
.y10a{bottom:315.838852px;}
.yd2{bottom:316.552428px;}
.yde{bottom:316.860430px;}
.yfa{bottom:317.366973px;}
.yda{bottom:319.470104px;}
.y92{bottom:322.688970px;}
.y72{bottom:323.392563px;}
.y11e{bottom:324.478852px;}
.ya3{bottom:329.318203px;}
.yea{bottom:331.450196px;}
.y49{bottom:333.099446px;}
.y29{bottom:333.850260px;}
.yb9{bottom:335.256701px;}
.y6a{bottom:335.668564px;}
.yc9{bottom:335.920757px;}
.ycb{bottom:336.593732px;}
.y39{bottom:337.687525px;}
.y117{bottom:341.189175px;}
.y30{bottom:342.663409px;}
.ya2{bottom:343.718198px;}
.ye{bottom:344.796251px;}
.y112{bottom:344.887455px;}
.yaa{bottom:346.275921px;}
.y7f{bottom:347.512238px;}
.y8c{bottom:347.512474px;}
.y1c{bottom:351.664129px;}
.y23{bottom:351.708420px;}
.y16{bottom:352.080694px;}
.y50{bottom:352.689049px;}
.y109{bottom:359.038819px;}
.yf9{bottom:359.426978px;}
.ye9{bottom:362.386201px;}
.yb8{bottom:364.056702px;}
.y11d{bottom:367.678820px;}
.yd1{bottom:369.220441px;}
.y71{bottom:371.308576px;}
.yd9{bottom:372.138117px;}
.y69{bottom:374.224554px;}
.y40{bottom:375.465339px;}
.y61{bottom:376.357801px;}
.y8d{bottom:376.966876px;}
.yd{bottom:377.196241px;}
.y111{bottom:377.287456px;}
.y7e{bottom:381.532228px;}
.y8b{bottom:381.532464px;}
.y28{bottom:387.850261px;}
.ya1{bottom:389.167597px;}
.ye8{bottom:393.322205px;}
.y3{bottom:396.498549px;}
.y2f{bottom:396.663411px;}
.yf8{bottom:401.486983px;}
.y108{bottom:402.238821px;}
.ya0{bottom:403.567592px;}
.ybd{bottom:404.245551px;}
.y22{bottom:405.708422px;}
.y127{bottom:407.703812px;}
.y48{bottom:408.036452px;}
.yc{bottom:409.596249px;}
.y70{bottom:409.864566px;}
.y7d{bottom:415.552217px;}
.y8a{bottom:415.552454px;}
.y101{bottom:417.234544px;}
.yc0{bottom:418.789412px;}
.ye0{bottom:419.365619px;}
.yd0{bottom:421.888443px;}
.y68{bottom:422.140555px;}
.y1b{bottom:423.664131px;}
.yd8{bottom:424.806119px;}
.ye7{bottom:425.039410px;}
.y60{bottom:430.357803px;}
.y4f{bottom:430.449029px;}
.ybc{bottom:433.045555px;}
.y98{bottom:438.580273px;}
.yb{bottom:441.996254px;}
.y15{bottom:442.080697px;}
.y110{bottom:442.087447px;}
.yf7{bottom:443.547000px;}
.y107{bottom:445.438811px;}
.ybf{bottom:447.589413px;}
.y91{bottom:448.280921px;}
.y9f{bottom:449.017037px;}
.y7c{bottom:449.572207px;}
.y89{bottom:449.572443px;}
.y3f{bottom:450.402367px;}
.y2e{bottom:450.663412px;}
.y11c{bottom:454.078811px;}
.yb6{bottom:456.913566px;}
.y6f{bottom:457.780567px;}
.y67{bottom:460.696545px;}
.y47{bottom:460.938443px;}
.ybb{bottom:461.845554px;}
.y9e{bottom:463.417031px;}
.ye6{bottom:466.600197px;}
.y97{bottom:467.380272px;}
.ycf{bottom:474.556427px;}
.ya{bottom:475.116258px;}
.yd7{bottom:477.474104px;}
.yf6{bottom:478.107001px;}
.y7b{bottom:483.592208px;}
.y88{bottom:483.592445px;}
.y100{bottom:483.906387px;}
.y5f{bottom:484.357805px;}
.y21{bottom:486.708425px;}
.y27{bottom:486.850265px;}
.y10f{bottom:492.487449px;}
.y2{bottom:493.249422px;}
.y14{bottom:496.080699px;}
.y6e{bottom:496.336546px;}
.y11b{bottom:497.278808px;}
.ydd{bottom:498.300407px;}
.ye5{bottom:498.317390px;}
.y90{bottom:499.112911px;}
.yc6{bottom:499.573583px;}
.y3e{bottom:503.304369px;}
.y2d{bottom:504.663414px;}
.y1a{bottom:504.664134px;}
.y4e{bottom:508.209032px;}
.y125{bottom:513.303414px;}
.y46{bottom:513.840422px;}
.ydf{bottom:516.565622px;}
.y9d{bottom:517.582380px;}
.y7a{bottom:517.612205px;}
.y87{bottom:517.612441px;}
.yf5{bottom:520.166994px;}
.y9{bottom:521.914482px;}
.y10e{bottom:524.887438px;}
.ye4{bottom:525.659391px;}
.yce{bottom:527.224435px;}
.yc5{bottom:528.373577px;}
.yd6{bottom:530.142111px;}
.y106{bottom:531.838814px;}
.yc3{bottom:535.051765px;}
.y5e{bottom:538.357795px;}
.y11a{bottom:540.478814px;}
.y20{bottom:540.708426px;}
.y26{bottom:540.850262px;}
.y66{bottom:544.252548px;}
.y8f{bottom:549.944906px;}
.y13{bottom:550.080700px;}
.y79{bottom:551.632204px;}
.y86{bottom:551.632440px;}
.yff{bottom:553.890384px;}
.y124{bottom:556.503416px;}
.yc4{bottom:557.173578px;}
.y9c{bottom:557.347734px;}
.y2c{bottom:558.663416px;}
.y19{bottom:558.664136px;}
.yb5{bottom:559.238147px;}
.yf4{bottom:562.226991px;}
.yc2{bottom:563.851765px;}
.ye3{bottom:568.001389px;}
.y8{bottom:568.712717px;}
.y1{bottom:571.009414px;}
.yca{bottom:571.377752px;}
.y9b{bottom:571.747729px;}
.y105{bottom:575.038815px;}
.y10d{bottom:575.287441px;}
.ybe{bottom:577.477328px;}
.y3d{bottom:578.241375px;}
.ycd{bottom:579.892438px;}
.y65{bottom:579.892550px;}
.yd5{bottom:582.810114px;}
.y119{bottom:583.678815px;}
.y78{bottom:585.652203px;}
.y85{bottom:585.652439px;}
.y45{bottom:588.777417px;}
.y5d{bottom:592.357788px;}
.y8e{bottom:604.748615px;}
.y37{bottom:605.868884px;}
.y7{bottom:615.393895px;}
.y56{bottom:623.868258px;}
.y76{bottom:626.394324px;}
.y25{bottom:626.890270px;}
.ye2{bottom:631.561627px;}
.y5b{bottom:661.053775px;}
.yf3{bottom:667.201617px;}
.y57{bottom:674.977624px;}
.y36{bottom:687.948886px;}
.y3c{bottom:693.708881px;}
.y123{bottom:695.901645px;}
.y6{bottom:696.907718px;}
.y104{bottom:696.922245px;}
.ye1{bottom:702.841623px;}
.hc{height:26.244141px;}
.h26{height:43.740235px;}
.h13{height:55.089846px;}
.h1b{height:64.271484px;}
.h1d{height:66.703129px;}
.h29{height:69.984379px;}
.h5{height:73.195315px;}
.h15{height:73.453130px;}
.h1f{height:75.826655px;}
.h27{height:78.626956px;}
.h28{height:78.732424px;}
.h24{height:81.356829px;}
.h19{height:82.634768px;}
.hb{height:87.363282px;}
.hd{height:87.480469px;}
.h18{height:91.816407px;}
.h23{height:94.916307px;}
.h1a{height:100.226953px;}
.h7{height:101.736003px;}
.he{height:104.835941px;}
.h10{height:104.976566px;}
.h9{height:110.016004px;}
.h6{height:113.040001px;}
.hf{height:113.724617px;}
.h3{height:115.344004px;}
.ha{height:122.308593px;}
.h1c{height:124.303140px;}
.h14{height:128.542968px;}
.h8{height:135.648004px;}
.h20{height:146.906270px;}
.h17{height:165.269537px;}
.h16{height:177.831489px;}
.h1e{height:181.903119px;}
.h2a{height:186.713117px;}
.h22{height:187.440010px;}
.h2{height:192.240001px;}
.h4{height:201.852006px;}
.h25{height:207.619189px;}
.h11{height:220.359382px;}
.h1{height:230.688007px;}
.h12{height:247.904305px;}
.h21{height:255.600008px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1d{left:51.894330px;}
.x37{left:78.758825px;}
.x39{left:82.402475px;}
.x36{left:85.999288px;}
.x6{left:93.297400px;}
.x38{left:94.428823px;}
.x47{left:95.490692px;}
.x6d{left:97.125006px;}
.x46{left:100.030594px;}
.x10{left:102.247356px;}
.x66{left:103.275003px;}
.xb{left:104.518702px;}
.x6c{left:106.062049px;}
.xd{left:107.686679px;}
.x9{left:109.866289px;}
.x26{left:112.409052px;}
.x6e{left:114.380739px;}
.x28{left:115.856333px;}
.x33{left:117.409560px;}
.x2f{left:119.143230px;}
.x3b{left:124.163083px;}
.x30{left:125.282472px;}
.x35{left:128.076874px;}
.x12{left:133.379318px;}
.x5d{left:136.125004px;}
.xa{left:138.219805px;}
.x13{left:139.229613px;}
.x29{left:144.476892px;}
.x57{left:149.625005px;}
.x1f{left:155.498641px;}
.x67{left:157.275005px;}
.xc{left:158.518704px;}
.x6f{left:161.124924px;}
.xe{left:163.774563px;}
.x5e{left:165.958509px;}
.x60{left:168.521490px;}
.x18{left:179.971616px;}
.x7{left:182.627128px;}
.x16{left:187.379320px;}
.x14{left:188.817808px;}
.x5f{left:190.125006px;}
.x62{left:196.963583px;}
.x2{left:202.644786px;}
.xf{left:212.518706px;}
.x5b{left:229.185455px;}
.x15{left:236.967521px;}
.x1c{left:241.198250px;}
.x3d{left:254.872963px;}
.x63{left:289.272288px;}
.x5a{left:319.651075px;}
.x24{left:337.478040px;}
.x3{left:351.848666px;}
.x22{left:354.844395px;}
.x3a{left:358.141689px;}
.x58{left:379.226600px;}
.x25{left:380.745597px;}
.x3c{left:388.742862px;}
.x69{left:399.835617px;}
.x68{left:402.643723px;}
.x6b{left:413.601489px;}
.x4{left:433.704468px;}
.x6a{left:436.393724px;}
.x52{left:440.481385px;}
.x51{left:442.332496px;}
.x65{left:443.882838px;}
.x8{left:447.087783px;}
.x49{left:449.139532px;}
.x48{left:457.299654px;}
.x4a{left:458.641127px;}
.x1a{left:481.883337px;}
.x1{left:494.748353px;}
.x5c{left:509.445219px;}
.x34{left:516.201654px;}
.x19{left:521.378600px;}
.x1b{left:553.725378px;}
.x55{left:561.998351px;}
.x44{left:563.143425px;}
.x64{left:578.229139px;}
.x5{left:581.538697px;}
.x3e{left:613.490722px;}
.x61{left:647.469651px;}
.x45{left:714.377543px;}
.x2a{left:740.253882px;}
.x2d{left:744.293481px;}
.x2b{left:745.383325px;}
.x1e{left:757.568319px;}
.x20{left:770.465425px;}
.x2c{left:774.003884px;}
.x3f{left:801.694803px;}
.x4b{left:810.024317px;}
.x56{left:834.465303px;}
.x40{left:899.313070px;}
.x4c{left:967.036292px;}
.x4d{left:973.819793px;}
.x23{left:990.779821px;}
.x2e{left:1001.767138px;}
.x27{left:1024.253504px;}
.x31{left:1037.088356px;}
.x32{left:1041.111589px;}
.x41{left:1060.945515px;}
.x54{left:1069.753326px;}
.x53{left:1072.300264px;}
.x21{left:1104.614248px;}
.x59{left:1142.434499px;}
.x42{left:1174.937741px;}
.x4f{left:1189.436396px;}
.x50{left:1200.103718px;}
.x4e{left:1240.359522px;}
.x43{left:1271.230679px;}
.x17{left:1325.245059px;}
.x11{left:1330.250431px;}
@media print{
.v2{vertical-align:-49.507018pt;}
.v6{vertical-align:-24.227997pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.109800pt;}
.v3{vertical-align:51.200010pt;}
.v1{vertical-align:76.457850pt;}
.v4{vertical-align:102.399991pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.011240pt;}
.ls1c{letter-spacing:0.079920pt;}
.lsb{letter-spacing:0.109196pt;}
.ls19{letter-spacing:0.109436pt;}
.ls14{letter-spacing:0.109596pt;}
.ls1a{letter-spacing:0.109756pt;}
.lsc{letter-spacing:0.109836pt;}
.ls1b{letter-spacing:0.119572pt;}
.ls15{letter-spacing:0.119732pt;}
.ls5{letter-spacing:0.196000pt;}
.ls8{letter-spacing:0.212960pt;}
.ls7{letter-spacing:0.213040pt;}
.ls6{letter-spacing:0.220400pt;}
.lsa{letter-spacing:6.159600pt;}
.ls9{letter-spacing:6.159760pt;}
.ls11{letter-spacing:29.328982pt;}
.ls10{letter-spacing:29.328986pt;}
.ls1{letter-spacing:56.012502pt;}
.lse{letter-spacing:57.582787pt;}
.ls2{letter-spacing:57.612502pt;}
.lsf{letter-spacing:61.457787pt;}
.ls16{letter-spacing:72.676042pt;}
.ls18{letter-spacing:96.000371pt;}
.ls3{letter-spacing:96.000503pt;}
.ls12{letter-spacing:97.993046pt;}
.ls17{letter-spacing:99.000371pt;}
.ls4{letter-spacing:138.652106pt;}
.lsd{letter-spacing:144.451388pt;}
.ws7{word-spacing:-66.304002pt;}
.ws6{word-spacing:-46.412801pt;}
.ws17{word-spacing:-34.176001pt;}
.ws3{word-spacing:-29.546667pt;}
.ws8{word-spacing:-27.626667pt;}
.ws9{word-spacing:-24.864001pt;}
.ws14{word-spacing:-23.637335pt;}
.wsa{word-spacing:-22.101335pt;}
.ws15{word-spacing:-14.773333pt;}
.ws5{word-spacing:-8.864000pt;}
.ws1{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:56.812277pt;}
.ws4{word-spacing:84.254951pt;}
.ws16{word-spacing:92.544503pt;}
.wsc{word-spacing:106.531405pt;}
.ws11{word-spacing:182.247720pt;}
.wsf{word-spacing:239.303897pt;}
.wsb{word-spacing:283.555976pt;}
.ws2{word-spacing:286.757869pt;}
.wse{word-spacing:313.616237pt;}
.wsd{word-spacing:321.574418pt;}
.ws12{word-spacing:397.324751pt;}
.ws13{word-spacing:961.047284pt;}
._7{margin-left:-14.080000pt;}
._28{margin-left:-12.163647pt;}
._29{margin-left:-10.853340pt;}
._27{margin-left:-8.564267pt;}
._6{margin-left:-7.040000pt;}
._3{margin-left:-5.866667pt;}
._2{margin-left:-3.946667pt;}
._2b{margin-left:-2.933333pt;}
._0{margin-left:-1.728000pt;}
._8{width:1.022680pt;}
._26{width:2.602120pt;}
._15{width:3.509333pt;}
._1b{width:4.405333pt;}
._e{width:7.840000pt;}
._c{width:9.856000pt;}
._10{width:13.066667pt;}
._16{width:13.962667pt;}
._14{width:15.082667pt;}
._f{width:16.202667pt;}
._17{width:18.442667pt;}
._11{width:20.458667pt;}
._18{width:21.504000pt;}
._1a{width:22.400000pt;}
._13{width:29.269333pt;}
._20{width:31.833601pt;}
._d{width:36.885333pt;}
._1e{width:43.161601pt;}
._12{width:51.146666pt;}
._1{width:56.000086pt;}
._1d{width:57.849602pt;}
._1f{width:66.105602pt;}
._2a{width:72.000378pt;}
._19{width:73.248000pt;}
._2c{width:80.000503pt;}
._25{width:95.149473pt;}
._23{width:117.675917pt;}
._4{width:122.665645pt;}
._5{width:128.012504pt;}
._22{width:193.786264pt;}
._21{width:205.305607pt;}
._24{width:256.447958pt;}
._9{width:521.729468pt;}
._1c{width:1367.463336pt;}
._b{width:1553.063348pt;}
._a{width:2367.050020pt;}
.fs7{font-size:32.000001pt;}
.fs18{font-size:53.333334pt;}
.fsb{font-size:64.000002pt;}
.fs11{font-size:74.666666pt;}
.fsc{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fs16{font-size:99.199991pt;}
.fsf{font-size:101.333339pt;}
.fs5{font-size:106.666667pt;}
.fs15{font-size:115.733332pt;}
.fs10{font-size:124.800000pt;}
.fs2{font-size:128.000004pt;}
.fs8{font-size:138.666676pt;}
.fs6{font-size:149.333333pt;}
.fse{font-size:170.666677pt;}
.fs12{font-size:170.666690pt;}
.fs9{font-size:179.200006pt;}
.fsd{font-size:192.000006pt;}
.fs19{font-size:207.200019pt;}
.fs1{font-size:213.333335pt;}
.fs3{font-size:224.000007pt;}
.fs17{font-size:230.399987pt;}
.fs14{font-size:234.666680pt;}
.fs0{font-size:256.000008pt;}
.fsa{font-size:288.000009pt;}
.fs13{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:24.007728pt;}
.y53{bottom:24.506974pt;}
.y103{bottom:25.965678pt;}
.y5c{bottom:39.701724pt;}
.y52{bottom:41.786973pt;}
.y38{bottom:42.473778pt;}
.y54{bottom:43.207728pt;}
.y5a{bottom:45.747818pt;}
.y35{bottom:64.589689pt;}
.yf2{bottom:81.299810pt;}
.y118{bottom:89.411220pt;}
.y96{bottom:106.098670pt;}
.y44{bottom:106.477550pt;}
.yf1{bottom:108.798460pt;}
.y34{bottom:112.589691pt;}
.y64{bottom:117.605431pt;}
.yae{bottom:118.084081pt;}
.yf0{bottom:129.630461pt;}
.y116{bottom:130.403021pt;}
.ya9{bottom:133.128846pt;}
.y122{bottom:134.825661pt;}
.y4d{bottom:135.429771pt;}
.y77{bottom:135.625581pt;}
.y1f{bottom:136.590331pt;}
.yb0{bottom:137.802483pt;}
.yfe{bottom:139.224031pt;}
.y12{bottom:140.729783pt;}
.y9a{bottom:147.304884pt;}
.yad{bottom:149.455087pt;}
.y95{bottom:151.282662pt;}
.y18{bottom:152.960612pt;}
.y43{bottom:153.501572pt;}
.yef{bottom:157.129112pt;}
.y84{bottom:157.699792pt;}
.ya8{bottom:158.728844pt;}
.y115{bottom:159.203012pt;}
.y33{bottom:160.589692pt;}
.y2b{bottom:160.755782pt;}
.yaf{bottom:163.402482pt;}
.y51{bottom:168.349402pt;}
.y59{bottom:169.340364pt;}
.yc8{bottom:170.440519pt;}
.y99{bottom:172.904882pt;}
.y121{bottom:173.225653pt;}
.yb2{bottom:174.850805pt;}
.y75{bottom:176.324073pt;}
.yfd{bottom:176.610683pt;}
.y11{bottom:182.328185pt;}
.y4c{bottom:182.453763pt;}
.yee{bottom:184.627773pt;}
.ya7{bottom:186.328328pt;}
.y3b{bottom:186.532033pt;}
.y4b{bottom:187.573753pt;}
.y83{bottom:187.939783pt;}
.y6d{bottom:189.828063pt;}
.ydc{bottom:190.341423pt;}
.y63{bottom:190.540263pt;}
.y58{bottom:194.940363pt;}
.yac{bottom:195.055083pt;}
.yc7{bottom:196.040519pt;}
.y94{bottom:196.466653pt;}
.yb1{bottom:200.450803pt;}
.y1e{bottom:200.590333pt;}
.yd4{bottom:203.747933pt;}
.y10c{bottom:203.945653pt;}
.y114{bottom:204.003014pt;}
.y5{bottom:205.500684pt;}
.ycc{bottom:207.341845pt;}
.y32{bottom:208.589694pt;}
.y2a{bottom:208.755784pt;}
.y74{bottom:210.596074pt;}
.y120{bottom:211.625654pt;}
.ya6{bottom:211.928326pt;}
.yed{bottom:212.126434pt;}
.y102{bottom:213.180684pt;}
.yfc{bottom:213.997344pt;}
.y82{bottom:218.179774pt;}
.y126{bottom:218.189694pt;}
.y42{bottom:220.112264pt;}
.y6c{bottom:221.508064pt;}
.y10{bottom:223.926586pt;}
.yb4{bottom:226.826966pt;}
.y17{bottom:232.960614pt;}
.y3a{bottom:233.556029pt;}
.yd3{bottom:234.563934pt;}
.ydb{bottom:237.157425pt;}
.y62{bottom:238.540265pt;}
.ya5{bottom:239.527790pt;}
.yab{bottom:239.535086pt;}
.yec{bottom:239.625095pt;}
.y24{bottom:240.629705pt;}
.y93{bottom:241.650645pt;}
.y10b{bottom:242.345645pt;}
.y4{bottom:243.900685pt;}
.y81{bottom:248.419765pt;}
.y1d{bottom:248.590335pt;}
.y4a{bottom:249.064415pt;}
.y11f{bottom:250.025645pt;}
.yfb{bottom:251.383975pt;}
.yb7{bottom:251.695317pt;}
.ya4{bottom:252.327785pt;}
.yb3{bottom:252.426965pt;}
.y73{bottom:253.188055pt;}
.y6b{bottom:255.780065pt;}
.y31{bottom:256.589695pt;}
.yf{bottom:265.525017pt;}
.yeb{bottom:267.123716pt;}
.y41{bottom:267.136276pt;}
.yba{bottom:272.405962pt;}
.y113{bottom:277.766626pt;}
.y80{bottom:278.659756pt;}
.yc1{bottom:279.635783pt;}
.y10a{bottom:280.745646pt;}
.yd2{bottom:281.379936pt;}
.yde{bottom:281.653716pt;}
.yfa{bottom:282.103976pt;}
.yda{bottom:283.973426pt;}
.y92{bottom:286.834640pt;}
.y72{bottom:287.460056pt;}
.y11e{bottom:288.425646pt;}
.ya3{bottom:292.727291pt;}
.yea{bottom:294.622396pt;}
.y49{bottom:296.088396pt;}
.y29{bottom:296.755786pt;}
.yb9{bottom:298.005956pt;}
.y6a{bottom:298.372057pt;}
.yc9{bottom:298.596229pt;}
.ycb{bottom:299.194429pt;}
.y39{bottom:300.166689pt;}
.y117{bottom:303.279267pt;}
.y30{bottom:304.589697pt;}
.ya2{bottom:305.527287pt;}
.ye{bottom:306.485557pt;}
.y112{bottom:306.566627pt;}
.yaa{bottom:307.800819pt;}
.y7f{bottom:308.899767pt;}
.y8c{bottom:308.899977pt;}
.y1c{bottom:312.590337pt;}
.y23{bottom:312.629707pt;}
.y16{bottom:312.960617pt;}
.y50{bottom:313.501377pt;}
.y109{bottom:319.145617pt;}
.yf9{bottom:319.490647pt;}
.ye9{bottom:322.121067pt;}
.yb8{bottom:323.605957pt;}
.y11d{bottom:326.825617pt;}
.yd1{bottom:328.195947pt;}
.y71{bottom:330.052068pt;}
.yd9{bottom:330.789438pt;}
.y69{bottom:332.644048pt;}
.y40{bottom:333.746968pt;}
.y61{bottom:334.540268pt;}
.y8d{bottom:335.081668pt;}
.yd{bottom:335.285548pt;}
.y111{bottom:335.366628pt;}
.y7e{bottom:339.139758pt;}
.y8b{bottom:339.139968pt;}
.y28{bottom:344.755788pt;}
.ya1{bottom:345.926753pt;}
.ye8{bottom:349.619738pt;}
.y3{bottom:352.443154pt;}
.y2f{bottom:352.589698pt;}
.yf8{bottom:356.877318pt;}
.y108{bottom:357.545618pt;}
.ya0{bottom:358.726748pt;}
.ybd{bottom:359.329378pt;}
.y22{bottom:360.629709pt;}
.y127{bottom:362.403389pt;}
.y48{bottom:362.699069pt;}
.yc{bottom:364.085555pt;}
.y70{bottom:364.324059pt;}
.y7d{bottom:369.379749pt;}
.y8a{bottom:369.379959pt;}
.y101{bottom:370.875150pt;}
.yc0{bottom:372.257255pt;}
.ye0{bottom:372.769439pt;}
.yd0{bottom:375.011949pt;}
.y68{bottom:375.236049pt;}
.y1b{bottom:376.590339pt;}
.yd8{bottom:377.605439pt;}
.ye7{bottom:377.812809pt;}
.y60{bottom:382.540269pt;}
.y4f{bottom:382.621359pt;}
.ybc{bottom:384.929382pt;}
.y98{bottom:389.849131pt;}
.yb{bottom:392.885560pt;}
.y15{bottom:392.960620pt;}
.y110{bottom:392.966620pt;}
.yf7{bottom:394.264000pt;}
.y107{bottom:395.945610pt;}
.ybf{bottom:397.857256pt;}
.y91{bottom:398.471930pt;}
.y9f{bottom:399.126255pt;}
.y7c{bottom:399.619740pt;}
.y89{bottom:399.619950pt;}
.y3f{bottom:400.357660pt;}
.y2e{bottom:400.589700pt;}
.y11c{bottom:403.625610pt;}
.yb6{bottom:406.145392pt;}
.y6f{bottom:406.916060pt;}
.y67{bottom:409.508040pt;}
.y47{bottom:409.723060pt;}
.ybb{bottom:410.529381pt;}
.y9e{bottom:411.926250pt;}
.ye6{bottom:414.755730pt;}
.y97{bottom:415.449130pt;}
.ycf{bottom:421.827935pt;}
.ya{bottom:422.325562pt;}
.yd7{bottom:424.421426pt;}
.yf6{bottom:424.984001pt;}
.y7b{bottom:429.859741pt;}
.y88{bottom:429.859951pt;}
.y100{bottom:430.139011pt;}
.y5f{bottom:430.540271pt;}
.y21{bottom:432.629711pt;}
.y27{bottom:432.755791pt;}
.y10f{bottom:437.766621pt;}
.y2{bottom:438.443931pt;}
.y14{bottom:440.960621pt;}
.y6e{bottom:441.188041pt;}
.y11b{bottom:442.025607pt;}
.ydd{bottom:442.933695pt;}
.ye5{bottom:442.948791pt;}
.y90{bottom:443.655921pt;}
.yc6{bottom:444.065407pt;}
.y3e{bottom:447.381661pt;}
.y2d{bottom:448.589701pt;}
.y1a{bottom:448.590341pt;}
.y4e{bottom:451.741361pt;}
.y125{bottom:456.269702pt;}
.y46{bottom:456.747042pt;}
.ydf{bottom:459.169442pt;}
.y9d{bottom:460.073227pt;}
.y7a{bottom:460.099738pt;}
.y87{bottom:460.099948pt;}
.yf5{bottom:462.370662pt;}
.y9{bottom:463.923984pt;}
.y10e{bottom:466.566612pt;}
.ye4{bottom:467.252792pt;}
.yce{bottom:468.643942pt;}
.yc5{bottom:469.665402pt;}
.yd6{bottom:471.237432pt;}
.y106{bottom:472.745612pt;}
.yc3{bottom:475.601569pt;}
.y5e{bottom:478.540262pt;}
.y11a{bottom:480.425612pt;}
.y20{bottom:480.629712pt;}
.y26{bottom:480.755788pt;}
.y66{bottom:483.780042pt;}
.y8f{bottom:488.839917pt;}
.y13{bottom:488.960623pt;}
.y79{bottom:490.339737pt;}
.y86{bottom:490.339947pt;}
.yff{bottom:492.347008pt;}
.y124{bottom:494.669703pt;}
.yc4{bottom:495.265403pt;}
.y9c{bottom:495.420208pt;}
.y2c{bottom:496.589703pt;}
.y19{bottom:496.590343pt;}
.yb5{bottom:497.100575pt;}
.yf4{bottom:499.757325pt;}
.yc2{bottom:501.201569pt;}
.ye3{bottom:504.890123pt;}
.y8{bottom:505.522415pt;}
.y1{bottom:507.563923pt;}
.yca{bottom:507.891335pt;}
.y9b{bottom:508.220203pt;}
.y105{bottom:511.145613pt;}
.y10d{bottom:511.366614pt;}
.ybe{bottom:513.313180pt;}
.y3d{bottom:513.992333pt;}
.ycd{bottom:515.459944pt;}
.y65{bottom:515.460044pt;}
.yd5{bottom:518.053435pt;}
.y119{bottom:518.825614pt;}
.y78{bottom:520.579736pt;}
.y85{bottom:520.579946pt;}
.y45{bottom:523.357704pt;}
.y5d{bottom:526.540256pt;}
.y8e{bottom:537.554324pt;}
.y37{bottom:538.550119pt;}
.y7{bottom:547.016795pt;}
.y56{bottom:554.549563pt;}
.y76{bottom:556.794955pt;}
.y25{bottom:557.235796pt;}
.ye2{bottom:561.388113pt;}
.y5b{bottom:587.603356pt;}
.yf3{bottom:593.068104pt;}
.y57{bottom:599.980110pt;}
.y36{bottom:611.510121pt;}
.y3c{bottom:616.630117pt;}
.y123{bottom:618.579240pt;}
.y6{bottom:619.473527pt;}
.y104{bottom:619.486440pt;}
.ye1{bottom:624.748109pt;}
.hc{height:23.328126pt;}
.h26{height:38.880209pt;}
.h13{height:48.968752pt;}
.h1b{height:57.130208pt;}
.h1d{height:59.291670pt;}
.h29{height:62.208337pt;}
.h5{height:65.062502pt;}
.h15{height:65.291671pt;}
.h1f{height:67.401471pt;}
.h27{height:69.890627pt;}
.h28{height:69.984377pt;}
.h24{height:72.317181pt;}
.h19{height:73.453127pt;}
.hb{height:77.656251pt;}
.hd{height:77.760417pt;}
.h18{height:81.614584pt;}
.h23{height:84.370051pt;}
.h1a{height:89.090625pt;}
.h7{height:90.432003pt;}
.he{height:93.187503pt;}
.h10{height:93.312503pt;}
.h9{height:97.792003pt;}
.h6{height:100.480001pt;}
.hf{height:101.088549pt;}
.h3{height:102.528003pt;}
.ha{height:108.718750pt;}
.h1c{height:110.491680pt;}
.h14{height:114.260416pt;}
.h8{height:120.576004pt;}
.h20{height:130.583351pt;}
.h17{height:146.906255pt;}
.h16{height:158.072434pt;}
.h1e{height:161.691662pt;}
.h2a{height:165.967215pt;}
.h22{height:166.613342pt;}
.h2{height:170.880001pt;}
.h4{height:179.424006pt;}
.h25{height:184.550390pt;}
.h11{height:195.875006pt;}
.h1{height:205.056007pt;}
.h12{height:220.359382pt;}
.h21{height:227.200007pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:46.128293pt;}
.x37{left:70.007844pt;}
.x39{left:73.246644pt;}
.x36{left:76.443811pt;}
.x6{left:82.931023pt;}
.x38{left:83.936732pt;}
.x47{left:84.880615pt;}
.x6d{left:86.333339pt;}
.x46{left:88.916084pt;}
.x10{left:90.886539pt;}
.x66{left:91.800003pt;}
.xb{left:92.905513pt;}
.x6c{left:94.277377pt;}
.xd{left:95.721492pt;}
.x9{left:97.658923pt;}
.x26{left:99.919157pt;}
.x6e{left:101.671768pt;}
.x28{left:102.983407pt;}
.x33{left:104.364053pt;}
.x2f{left:105.905093pt;}
.x3b{left:110.367185pt;}
.x30{left:111.362198pt;}
.x35{left:113.846111pt;}
.x12{left:118.559394pt;}
.x5d{left:121.000004pt;}
.xa{left:122.862049pt;}
.x13{left:123.759656pt;}
.x29{left:128.423904pt;}
.x57{left:133.000004pt;}
.x1f{left:138.221014pt;}
.x67{left:139.800004pt;}
.xc{left:140.905515pt;}
.x6f{left:143.222155pt;}
.xe{left:145.577390pt;}
.x5e{left:147.518675pt;}
.x60{left:149.796880pt;}
.x18{left:159.974770pt;}
.x7{left:162.335225pt;}
.x16{left:166.559395pt;}
.x14{left:167.838051pt;}
.x5f{left:169.000005pt;}
.x62{left:175.078741pt;}
.x2{left:180.128699pt;}
.xf{left:188.905516pt;}
.x5b{left:203.720405pt;}
.x15{left:210.637797pt;}
.x1c{left:214.398445pt;}
.x3d{left:226.553745pt;}
.x63{left:257.130922pt;}
.x5a{left:284.134289pt;}
.x24{left:299.980480pt;}
.x3{left:312.754370pt;}
.x22{left:315.417240pt;}
.x3a{left:318.348168pt;}
.x58{left:337.090311pt;}
.x25{left:338.440531pt;}
.x3c{left:345.549211pt;}
.x69{left:355.409438pt;}
.x68{left:357.905531pt;}
.x6b{left:367.645768pt;}
.x4{left:385.515082pt;}
.x6a{left:387.905532pt;}
.x52{left:391.539009pt;}
.x51{left:393.184441pt;}
.x65{left:394.562523pt;}
.x8{left:397.411363pt;}
.x49{left:399.235140pt;}
.x48{left:406.488581pt;}
.x4a{left:407.681002pt;}
.x1a{left:428.340744pt;}
.x1{left:439.776314pt;}
.x5c{left:452.840194pt;}
.x34{left:458.845915pt;}
.x19{left:463.447645pt;}
.x1b{left:492.200336pt;}
.x55{left:499.554090pt;}
.x44{left:500.571933pt;}
.x64{left:513.981456pt;}
.x5{left:516.923287pt;}
.x3e{left:545.325086pt;}
.x61{left:575.528578pt;}
.x45{left:635.002260pt;}
.x2a{left:658.003451pt;}
.x2d{left:661.594205pt;}
.x2b{left:662.562955pt;}
.x1e{left:673.394062pt;}
.x20{left:684.858156pt;}
.x2c{left:688.003452pt;}
.x3f{left:712.617603pt;}
.x4b{left:720.021615pt;}
.x56{left:741.746936pt;}
.x40{left:799.389396pt;}
.x4c{left:859.587816pt;}
.x4d{left:865.617594pt;}
.x23{left:880.693174pt;}
.x2e{left:890.459678pt;}
.x27{left:910.447559pt;}
.x31{left:921.856317pt;}
.x32{left:925.432524pt;}
.x41{left:943.062680pt;}
.x54{left:950.891845pt;}
.x53{left:953.155791pt;}
.x21{left:981.879331pt;}
.x59{left:1015.497332pt;}
.x42{left:1044.389103pt;}
.x4f{left:1057.276797pt;}
.x50{left:1066.758860pt;}
.x4e{left:1102.541797pt;}
.x43{left:1129.982826pt;}
.x17{left:1177.995608pt;}
.x11{left:1182.444828pt;}
}




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